[
  {
    "input": "input : list = [-4, 3]\noutput : list = [-6, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(reverse([-4, 3]),-2))))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [5, -3, 1, 3, -5]\noutput : list = [5, 3, 1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(reverse(sort_asc([5, -3, 1, 3, -5])))))",
    "io_inp": [
      5,
      -3,
      1,
      3,
      -5
    ],
    "io_out": [
      5,
      3,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -3, -5, -3, 3]\noutput : list = [3, -2, -3, -3, -5]",
    "output": "generated_output : list = sort_des([-2, -3, -5, -3, 3])",
    "io_inp": [
      -2,
      -3,
      -5,
      -3,
      3
    ],
    "io_out": [
      3,
      -2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, 0, -3, 2, -3]\noutput : list = [-4, 0, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop([3, 1, 0, -3, 2, -3],2)),-2)))",
    "io_inp": [
      3,
      1,
      0,
      -3,
      2,
      -3
    ],
    "io_out": [
      -4,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop(input,2)),-2)))"
  },
  {
    "input": "input : list = [5, -3, 1, -5]\noutput : list = [-5, 1, -3, 5]",
    "output": "generated_output : list = reverse([5, -3, 1, -5])",
    "io_inp": [
      5,
      -3,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, 0, 1, 5, -5]\noutput : list = [-6, -7, -3, -2, 2, -8]",
    "output": "generated_output : list = add_n([-3, -4, 0, 1, 5, -5],-3)",
    "io_inp": [
      -3,
      -4,
      0,
      1,
      5,
      -5
    ],
    "io_out": [
      -6,
      -7,
      -3,
      -2,
      2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, 2, 3]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(take([4, -1, 2, 3],1)),-1),-3))",
    "io_inp": [
      4,
      -1,
      2,
      3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(take(input,1)),-1),-3))"
  },
  {
    "input": "input : list = [-3, 5, -1]\noutput : list = [7, 1, -17]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(mul_n([-3, 5, -1],-3),-3),1),23))",
    "io_inp": [
      -3,
      5,
      -1
    ],
    "io_out": [
      7,
      1,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(mul_n(input,-3),-3),1),23))"
  },
  {
    "input": "input : list = [-1, -3, 4, -3, 3]\noutput : list = [4, 3, -1, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-1, -3, 4, -3, 3])))",
    "io_inp": [
      -1,
      -3,
      4,
      -3,
      3
    ],
    "io_out": [
      4,
      3,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-5, -1, 4, 2, 1]\noutput : list = [-24, -12, -6, 6, 30]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_des(mul_n([-5, -1, 4, 2, 1],3)),33)),-2)",
    "io_inp": [
      -5,
      -1,
      4,
      2,
      1
    ],
    "io_out": [
      -24,
      -12,
      -6,
      6,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_des(mul_n(input,3)),33)),-2)"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(reverse([-2, 0, 4]),1),5),4),1)",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(reverse(input),1),5),4),1)"
  },
  {
    "input": "input : list = [3, -5, -2, -4]\noutput : list = [-5, -4, -2, 3]",
    "output": "generated_output : list = reverse(sort_des([3, -5, -2, -4]))",
    "io_inp": [
      3,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [1, -5, -3, -5, 5, 2]\noutput : list = [40, -248, -152, -248, 232, 88]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(mul_n([1, -5, -3, -5, 5, 2],2),-3),4),-4),-2)",
    "io_inp": [
      1,
      -5,
      -3,
      -5,
      5,
      2
    ],
    "io_out": [
      40,
      -248,
      -152,
      -248,
      232,
      88
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(mul_n(input,2),-3),4),-4),-2)"
  },
  {
    "input": "input : list = [2, 0, -1, -2, 3]\noutput : list = [5, 3, 2, 1, 6]",
    "output": "generated_output : list = sub_n([2, 0, -1, -2, 3],-3)",
    "io_inp": [
      2,
      0,
      -1,
      -2,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 1, -4, 4, 1, -2]\noutput : list = [4, 6, 1, 9, 6, 3]",
    "output": "generated_output : list = sub_n([-1, 1, -4, 4, 1, -2],-5)",
    "io_inp": [
      -1,
      1,
      -4,
      4,
      1,
      -2
    ],
    "io_out": [
      4,
      6,
      1,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -2, -3, 3, 3]\noutput : list = [5, 6, 5, 11, 11]",
    "output": "generated_output : list = add_n(sub_n([-3, -2, -3, 3, 3],-4),4)",
    "io_inp": [
      -3,
      -2,
      -3,
      3,
      3
    ],
    "io_out": [
      5,
      6,
      5,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),4)"
  },
  {
    "input": "input : list = [-5, -4, -1, -5]\noutput : list = [3, 7, 4, 3]",
    "output": "generated_output : list = take(reverse(add_n(take(add_n([-5, -4, -1, -5],3),17),5)),22)",
    "io_inp": [
      -5,
      -4,
      -1,
      -5
    ],
    "io_out": [
      3,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(add_n(input,3),17),5)),22)"
  },
  {
    "input": "input : list = [3, -5, -5, 0, 5, 1]\noutput : list = [-29, 43, 43, -2, -47, -11]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(reverse([3, -5, -5, 0, 5, 1]),3)),-3),2)",
    "io_inp": [
      3,
      -5,
      -5,
      0,
      5,
      1
    ],
    "io_out": [
      -29,
      43,
      43,
      -2,
      -47,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(reverse(input),3)),-3),2)"
  },
  {
    "input": "input : list = [-4, -3, 4, 5, -4, -3]\noutput : list = [1, 2, 9, 10, 1, 2]",
    "output": "generated_output : list = sub_n([-4, -3, 4, 5, -4, -3],-5)",
    "io_inp": [
      -4,
      -3,
      4,
      5,
      -4,
      -3
    ],
    "io_out": [
      1,
      2,
      9,
      10,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 4, -2, 1, 5]\noutput : list = [6, 3, 9, 0]",
    "output": "generated_output : list = sub_n(drop(reverse([-5, 4, -2, 1, 5]),1),-5)",
    "io_inp": [
      -5,
      4,
      -2,
      1,
      5
    ],
    "io_out": [
      6,
      3,
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(input),1),-5)"
  },
  {
    "input": "input : list = [3, 2, -2, 1, -2]\noutput : list = [3, 2, 1, -2, -2]",
    "output": "generated_output : list = take(sort_des([3, 2, -2, 1, -2]),25)",
    "io_inp": [
      3,
      2,
      -2,
      1,
      -2
    ],
    "io_out": [
      3,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),25)"
  },
  {
    "input": "input : list = [-3, -5, -5, -2, -1, -3]\noutput : list = [-6, -7, -8, -10, -10]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(drop([-3, -5, -5, -2, -1, -3],1),3),-3),1))",
    "io_inp": [
      -3,
      -5,
      -5,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(drop(input,1),3),-3),1))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc([4, -2])",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-16, -4]",
    "output": "generated_output : list = mul_n(sort_des([1, 4]),-4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-2, -5, -2, -4]\noutput : list = [-6, -9, -6, -8]",
    "output": "generated_output : list = sub_n(take(sub_n(take(add_n([-2, -5, -2, -4],-3),6),-3),24),4)",
    "io_inp": [
      -2,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -9,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(add_n(input,-3),6),-3),24),4)"
  },
  {
    "input": "input : list = [-3, 5, 2, 4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(drop([-3, 5, 2, 4],2))),4),1)",
    "io_inp": [
      -3,
      5,
      2,
      4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(drop(input,2))),4),1)"
  },
  {
    "input": "input : list = [2, -5, 1, -2, -1]\noutput : list = [-16, -24, -28, -40]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(drop([2, -5, 1, -2, -1],1),5),4),36))",
    "io_inp": [
      2,
      -5,
      1,
      -2,
      -1
    ],
    "io_out": [
      -16,
      -24,
      -28,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(drop(input,1),5),4),36))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(drop(reverse(sub_n(sub_n([3, -3],-1),-1)),1))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(sub_n(sub_n(input,-1),-1)),1))"
  },
  {
    "input": "input : list = [3, 2, 4, 1, -1]\noutput : list = [-1, 1, 2, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(drop([3, 2, 4, 1, -1],1)))))",
    "io_inp": [
      3,
      2,
      4,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, 4, 5, -4, 3, -2]\noutput : list = [-9, -21, -27, 27, -15, 15]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(mul_n([2, 4, 5, -4, 3, -2],3),-2),4),2),3)",
    "io_inp": [
      2,
      4,
      5,
      -4,
      3,
      -2
    ],
    "io_out": [
      -9,
      -21,
      -27,
      27,
      -15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(mul_n(input,3),-2),4),2),3)"
  },
  {
    "input": "input : list = [-5, -5, 4, 2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(drop([-5, -5, 4, 2, -5],3)))),33)",
    "io_inp": [
      -5,
      -5,
      4,
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(drop(input,3)))),33)"
  },
  {
    "input": "input : list = [1, -3, 0, -2, -3]\noutput : list = [1, 1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(reverse([1, -3, 0, -2, -3]),4),14)))",
    "io_inp": [
      1,
      -3,
      0,
      -2,
      -3
    ],
    "io_out": [
      1,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(reverse(input),4),14)))"
  },
  {
    "input": "input : list = [-2, 0, -5, 5, 1]\noutput : list = [-2, -6, -7, -9, -12]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-2, 0, -5, 5, 1],2)),5)",
    "io_inp": [
      -2,
      0,
      -5,
      5,
      1
    ],
    "io_out": [
      -2,
      -6,
      -7,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,2)),5)"
  },
  {
    "input": "input : list = [-5, -3, 1, -5, -5]\noutput : list = [5, 1, -1, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(add_n([-5, -3, 1, -5, -5],4)))))",
    "io_inp": [
      -5,
      -3,
      1,
      -5,
      -5
    ],
    "io_out": [
      5,
      1,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(add_n(input,4)))))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-20, 10]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(sub_n([5, -1],-2),12),5),2),-5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(sub_n(input,-2),12),5),2),-5)"
  },
  {
    "input": "input : list = [3, -1, 0, -3]\noutput : list = [-5, -9]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(take([3, -1, 0, -3],2),16),-4),2),-2)",
    "io_inp": [
      3,
      -1,
      0,
      -3
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(take(input,2),16),-4),2),-2)"
  },
  {
    "input": "input : list = [2, -5, 3, 0, 4]\noutput : list = [-5, 0, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([2, -5, 3, 0, 4])",
    "io_inp": [
      2,
      -5,
      3,
      0,
      4
    ],
    "io_out": [
      -5,
      0,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, 3, -4]\noutput : list = [12, -12, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(mul_n([-4, -3, 3, -4],1))),4))",
    "io_inp": [
      -4,
      -3,
      3,
      -4
    ],
    "io_out": [
      12,
      -12,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(mul_n(input,1))),4))"
  },
  {
    "input": "input : list = [1, -3, 0, -4, 2]\noutput : list = [0, -4, -1, -5, 1]",
    "output": "generated_output : list = add_n([1, -3, 0, -4, 2],-1)",
    "io_inp": [
      1,
      -3,
      0,
      -4,
      2
    ],
    "io_out": [
      0,
      -4,
      -1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -5, 2, -4]\noutput : list = [-2, -8, -9, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(sort_asc([-5, -5, 2, -4]),1)),-5))",
    "io_inp": [
      -5,
      -5,
      2,
      -4
    ],
    "io_out": [
      -2,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(sort_asc(input),1)),-5))"
  },
  {
    "input": "input : list = [5, -1, -3, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(take([5, -1, -3, 2],1))),12))",
    "io_inp": [
      5,
      -1,
      -3,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(take(input,1))),12))"
  },
  {
    "input": "input : list = [-1, -1, -1, -5, -4]\noutput : list = [15, 12, 3, 3, 3]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([-1, -1, -1, -5, -4]),1),-3)",
    "io_inp": [
      -1,
      -1,
      -1,
      -5,
      -4
    ],
    "io_out": [
      15,
      12,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),1),-3)"
  },
  {
    "input": "input : list = [-2, 2, 3, -3, 0]\noutput : list = [-2, -3, -5, -7, -8]",
    "output": "generated_output : list = sort_des(add_n([-2, 2, 3, -3, 0],-5))",
    "io_inp": [
      -2,
      2,
      3,
      -3,
      0
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(sub_n([3, -1],1),7),-4)),4)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(sub_n(input,1),7),-4)),4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [7, 5]",
    "output": "generated_output : list = reverse(sub_n(add_n([3, 5],-3),-5))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-3),-5))"
  },
  {
    "input": "input : list = [2, 4, -3]\noutput : list = [-3, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 4, -3])",
    "io_inp": [
      2,
      4,
      -3
    ],
    "io_out": [
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [0, -10]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(drop([-1, -5, 5],1)))),-5)",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(drop(input,1)))),-5)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [4, 1, -3]",
    "output": "generated_output : list = sort_des([4, 1, -3])",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [-14, -8, -11]",
    "output": "generated_output : list = add_n(mul_n([4, 2, 3],-3),-2)",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      -14,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),-2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(reverse([3, 3])))),3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(reverse(input)))),3)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n([5, -2, -1],2))",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [-2, -2, 0, 0, -3, -3]\noutput : list = [48, 48, 32, 0, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(drop([-2, -2, 0, 0, -3, -3],1),-4)),4))",
    "io_inp": [
      -2,
      -2,
      0,
      0,
      -3,
      -3
    ],
    "io_out": [
      48,
      48,
      32,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(drop(input,1),-4)),4))"
  },
  {
    "input": "input : list = [-2, 0, 4, -4]\noutput : list = [0, 2, 6, -2]",
    "output": "generated_output : list = add_n([-2, 0, 4, -4],2)",
    "io_inp": [
      -2,
      0,
      4,
      -4
    ],
    "io_out": [
      0,
      2,
      6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(take(add_n(take(sort_asc([2, -2]),5),-5),24))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(sort_asc(input),5),-5),24))"
  },
  {
    "input": "input : list = [5, -5, 4, -3]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(take(add_n(drop(sort_des([5, -5, 4, -3]),2),5),31),10)",
    "io_inp": [
      5,
      -5,
      4,
      -3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(take(add_n(drop(sort_des(input),2),5),31),10)"
  },
  {
    "input": "input : list = [-1, -5, 4, -5, -4]\noutput : list = [5, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(take([-1, -5, 4, -5, -4],2)),-5),-5))",
    "io_inp": [
      -1,
      -5,
      4,
      -5,
      -4
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(take(input,2)),-5),-5))"
  },
  {
    "input": "input : list = [3, 5, -1, -5, 4, 5]\noutput : list = [1, 1, 0, -1, -5, -9]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(reverse([3, 5, -1, -5, 4, 5]))),-4),54)",
    "io_inp": [
      3,
      5,
      -1,
      -5,
      4,
      5
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(reverse(input))),-4),54)"
  },
  {
    "input": "input : list = [-1, -1, 4, 3, -3, -3]\noutput : list = [-11, -11, -9, -9, -5, -4]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(sort_des([-1, -1, 4, 3, -3, -3])),3),16),5)",
    "io_inp": [
      -1,
      -1,
      4,
      3,
      -3,
      -3
    ],
    "io_out": [
      -11,
      -11,
      -9,
      -9,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(sort_des(input)),3),16),5)"
  },
  {
    "input": "input : list = [0, -5, 0, 5]\noutput : list = [2, -3, 2, 7]",
    "output": "generated_output : list = add_n([0, -5, 0, 5],2)",
    "io_inp": [
      0,
      -5,
      0,
      5
    ],
    "io_out": [
      2,
      -3,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_des([-2, -2, 3]),-2)),1))",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_des(input),-2)),1))"
  },
  {
    "input": "input : list = [2, -5, 1, 2]\noutput : list = [-27, -9, -6, -6]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(add_n([2, -5, 1, 2],1),5)),3))",
    "io_inp": [
      2,
      -5,
      1,
      2
    ],
    "io_out": [
      -27,
      -9,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(add_n(input,1),5)),3))"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse(sort_asc([-3, -4, -5])),2),-1),-3)",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(sort_asc(input)),2),-1),-3)"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [-5, -4, 5]",
    "output": "generated_output : list = sort_asc([-4, -5, 5])",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      -5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, 5, -2, 4]\noutput : list = [-2, 0, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 0, 5, -2, 4])",
    "io_inp": [
      5,
      0,
      5,
      -2,
      4
    ],
    "io_out": [
      -2,
      0,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 1, -3, -3, -4]\noutput : list = [0, 12, 12, 12, 15]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(mul_n([-3, 1, -3, -3, -4],-3),3),4),-2))",
    "io_inp": [
      -3,
      1,
      -3,
      -3,
      -4
    ],
    "io_out": [
      0,
      12,
      12,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(mul_n(input,-3),3),4),-2))"
  },
  {
    "input": "input : list = [2, 4, 3, -5, 4, 5]\noutput : list = [24, 20, 20, 16, 12, -16]",
    "output": "generated_output : list = take(mul_n(sub_n(take(sort_des([2, 4, 3, -5, 4, 5]),15),-1),4),36)",
    "io_inp": [
      2,
      4,
      3,
      -5,
      4,
      5
    ],
    "io_out": [
      24,
      20,
      20,
      16,
      12,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(sort_des(input),15),-1),4),36)"
  },
  {
    "input": "input : list = [-5, -3, -3, 0, -4, -4]\noutput : list = [12, 9, 9, 6, 6, -3]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(reverse([-5, -3, -3, 0, -4, -4])),-4),3),-3)",
    "io_inp": [
      -5,
      -3,
      -3,
      0,
      -4,
      -4
    ],
    "io_out": [
      12,
      9,
      9,
      6,
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(reverse(input)),-4),3),-3)"
  },
  {
    "input": "input : list = [4, 5, -5, 5, -1, 0]\noutput : list = [8, 10, -10, 10, -2, 0]",
    "output": "generated_output : list = mul_n([4, 5, -5, 5, -1, 0],2)",
    "io_inp": [
      4,
      5,
      -5,
      5,
      -1,
      0
    ],
    "io_out": [
      8,
      10,
      -10,
      10,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [15, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(sort_asc([1, -2]),-4)),-2),5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(sort_asc(input),-4)),-2),5)"
  },
  {
    "input": "input : list = [-2, 1, -2, -3, 2, -2]\noutput : list = [-5, -2, -5, -6, -1, -5]",
    "output": "generated_output : list = add_n([-2, 1, -2, -3, 2, -2],-3)",
    "io_inp": [
      -2,
      1,
      -2,
      -3,
      2,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -5,
      -6,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(reverse([-1, 3, 0])))))",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [5, 4, -1, -2, -3, 1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(take(drop([5, 4, -1, -2, -3, 1],4),13),5)",
    "io_inp": [
      5,
      4,
      -1,
      -2,
      -3,
      1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,4),13),5)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([-3, 3])",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, 2, 4, -5, -1]\noutput : list = [0, -6, -8, -14, -16, -18]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(reverse([-2, 3, 2, 4, -5, -1]),26)),5),-2)",
    "io_inp": [
      -2,
      3,
      2,
      4,
      -5,
      -1
    ],
    "io_out": [
      0,
      -6,
      -8,
      -14,
      -16,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(reverse(input),26)),5),-2)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc([-5, -3])",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [6, 5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(reverse([4, 5]))),-1))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(drop([-2, 1, 5],1))",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [2, -5, -3, 1, 3, -4]\noutput : list = [5, -2, 0, 4, 6, -1]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(sub_n([2, -5, -3, 1, 3, -4],-4)),1)),10)",
    "io_inp": [
      2,
      -5,
      -3,
      1,
      3,
      -4
    ],
    "io_out": [
      5,
      -2,
      0,
      4,
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(sub_n(input,-4)),1)),10)"
  },
  {
    "input": "input : list = [-1, 1, -1, 1, 0]\noutput : list = [-1, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(take(reverse([-1, 1, -1, 1, 0]),4))",
    "io_inp": [
      -1,
      1,
      -1,
      1,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),4))"
  },
  {
    "input": "input : list = [5, 2, -4, 3, -3]\noutput : list = [15, -15, 20, -10, -25]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n([5, 2, -4, 3, -3],5),5),-5)),-1)",
    "io_inp": [
      5,
      2,
      -4,
      3,
      -3
    ],
    "io_out": [
      15,
      -15,
      20,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n(input,5),5),-5)),-1)"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [-5, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(reverse([-5, 3, 0])))))",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      -5,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [5, 3, 5, 0, 4]\noutput : list = [4, 7, 8, 9, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([5, 3, 5, 0, 4]),4))",
    "io_inp": [
      5,
      3,
      5,
      0,
      4
    ],
    "io_out": [
      4,
      7,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-3, 4, 0, 4, 4, 2]\noutput : list = [2, 4, 4, 0, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, 0, 4, 4, 2])",
    "io_inp": [
      -3,
      4,
      0,
      4,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      4,
      0,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, -1, 1]\noutput : list = [-10, 10, -50, -20]",
    "output": "generated_output : list = mul_n(mul_n(reverse([2, 5, -1, 1]),5),-2)",
    "io_inp": [
      2,
      5,
      -1,
      1
    ],
    "io_out": [
      -10,
      10,
      -50,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),5),-2)"
  },
  {
    "input": "input : list = [-5, 4, 5, 2]\noutput : list = [-36, -8, 0, 4]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(add_n([-5, 4, 5, 2],-4)),4),32))",
    "io_inp": [
      -5,
      4,
      5,
      2
    ],
    "io_out": [
      -36,
      -8,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(add_n(input,-4)),4),32))"
  },
  {
    "input": "input : list = [-2, 3, 4, -5]\noutput : list = [-5, 4, 3, -2]",
    "output": "generated_output : list = reverse([-2, 3, 4, -5])",
    "io_inp": [
      -2,
      3,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [-16, -12, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des([4, 3, -1]),-4),-5)),5)",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      -16,
      -12,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des(input),-4),-5)),5)"
  },
  {
    "input": "input : list = [-3, 0, 4, 2, 2, 5]\noutput : list = [7, 4, 4, 6, 2, -1]",
    "output": "generated_output : list = mul_n(take(reverse(take(add_n([-3, 0, 4, 2, 2, 5],2),15)),35),1)",
    "io_inp": [
      -3,
      0,
      4,
      2,
      2,
      5
    ],
    "io_out": [
      7,
      4,
      4,
      6,
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(add_n(input,2),15)),35),1)"
  },
  {
    "input": "input : list = [-4, 0, -1]\noutput : list = [3]",
    "output": "generated_output : list = take(reverse(take(sort_des(sub_n([-4, 0, -1],-3)),1)),29)",
    "io_inp": [
      -4,
      0,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_des(sub_n(input,-3)),1)),29)"
  },
  {
    "input": "input : list = [-5, -3, 1, 0, 0, 5]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(drop(mul_n([-5, -3, 1, 0, 0, 5],1),5))),-2)",
    "io_inp": [
      -5,
      -3,
      1,
      0,
      0,
      5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(drop(mul_n(input,1),5))),-2)"
  },
  {
    "input": "input : list = [-4, -4, 2, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(take([-4, -4, 2, 4],2),3)),-1))",
    "io_inp": [
      -4,
      -4,
      2,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(take(input,2),3)),-1))"
  },
  {
    "input": "input : list = [1, -3, 3, -1, -5, 5]\noutput : list = [6, 14, 2, 10, 18, -2]",
    "output": "generated_output : list = mul_n(sub_n([1, -3, 3, -1, -5, 5],4),-2)",
    "io_inp": [
      1,
      -3,
      3,
      -1,
      -5,
      5
    ],
    "io_out": [
      6,
      14,
      2,
      10,
      18,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,4),-2)"
  },
  {
    "input": "input : list = [-4, 0, -2, 1, -3, 3]\noutput : list = [3, -9, -3, -12, 0, -18]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n([-4, 0, -2, 1, -3, 3],3))),-3)",
    "io_inp": [
      -4,
      0,
      -2,
      1,
      -3,
      3
    ],
    "io_out": [
      3,
      -9,
      -3,
      -12,
      0,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(input,3))),-3)"
  },
  {
    "input": "input : list = [5, 3, -3, -2, -1, 2]\noutput : list = [-24, -20, -16, -4, 0, 8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(add_n([5, 3, -3, -2, -1, 2],-4)),1),4))",
    "io_inp": [
      5,
      3,
      -3,
      -2,
      -1,
      2
    ],
    "io_out": [
      -24,
      -20,
      -16,
      -4,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(add_n(input,-4)),1),4))"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, 2, -4]))",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 3, -1, 4, 5, 1]\noutput : list = [-7, -5, -5, -3, -2, -1]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(add_n([1, 3, -1, 4, 5, 1],-3)))),-3)",
    "io_inp": [
      1,
      3,
      -1,
      4,
      5,
      1
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(add_n(input,-3)))),-3)"
  },
  {
    "input": "input : list = [-4, 2, 2, 2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = take([-4, 2, 2, 2, -4],2)",
    "io_inp": [
      -4,
      2,
      2,
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -2, -4, 1]\noutput : list = [16, 6, -9, -19]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([3, -2, -4, 1],5)),-1)",
    "io_inp": [
      3,
      -2,
      -4,
      1
    ],
    "io_out": [
      16,
      6,
      -9,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,5)),-1)"
  },
  {
    "input": "input : list = [5, -2, -1, 5, 3]\noutput : list = [0, -7, -6, 0, -2]",
    "output": "generated_output : list = add_n(take(add_n(sub_n([5, -2, -1, 5, 3],-2),-5),18),-2)",
    "io_inp": [
      5,
      -2,
      -1,
      5,
      3
    ],
    "io_out": [
      0,
      -7,
      -6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(input,-2),-5),18),-2)"
  },
  {
    "input": "input : list = [0, -5, -5, 3]\noutput : list = [-6, 10, 10, 0]",
    "output": "generated_output : list = mul_n(reverse([0, -5, -5, 3]),-2)",
    "io_inp": [
      0,
      -5,
      -5,
      3
    ],
    "io_out": [
      -6,
      10,
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [5, -2, 2, -2, -1]\noutput : list = [-29, -14, 1, 6, 6]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_des(sort_asc([5, -2, 2, -2, -1])),-5),-1),5)",
    "io_inp": [
      5,
      -2,
      2,
      -2,
      -1
    ],
    "io_out": [
      -29,
      -14,
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_des(sort_asc(input)),-5),-1),5)"
  },
  {
    "input": "input : list = [0, 1, -5, 0, -2]\noutput : list = [2, 3, -3, 2, 0]",
    "output": "generated_output : list = sub_n([0, 1, -5, 0, -2],-2)",
    "io_inp": [
      0,
      1,
      -5,
      0,
      -2
    ],
    "io_out": [
      2,
      3,
      -3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, 2, 3, 4, -4, -4]\noutput : list = [8, 7, 7, 6, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n([3, 2, 3, 4, -4, -4],-3),-3)),-4))",
    "io_inp": [
      3,
      2,
      3,
      4,
      -4,
      -4
    ],
    "io_out": [
      8,
      7,
      7,
      6,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n(input,-3),-3)),-4))"
  },
  {
    "input": "input : list = [4, -2, 0, 5, 3]\noutput : list = [0, 2, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(take([4, -2, 0, 5, 3],3),21))),-2)",
    "io_inp": [
      4,
      -2,
      0,
      5,
      3
    ],
    "io_out": [
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(take(input,3),21))),-2)"
  },
  {
    "input": "input : list = [-4, 5, 4, 3, -3, -1]\noutput : list = [-9, 0, -1, -2, -8, -6]",
    "output": "generated_output : list = add_n([-4, 5, 4, 3, -3, -1],-5)",
    "io_inp": [
      -4,
      5,
      4,
      3,
      -3,
      -1
    ],
    "io_out": [
      -9,
      0,
      -1,
      -2,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 3, 0, 5, 1]\noutput : list = [14, 4, 2, -2, -6]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(sort_asc([-5, 3, 0, 5, 1]),-2))),-2)",
    "io_inp": [
      -5,
      3,
      0,
      5,
      1
    ],
    "io_out": [
      14,
      4,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(sort_asc(input),-2))),-2)"
  },
  {
    "input": "input : list = [-2, 3, 0, 0, -3]\noutput : list = [1, -2, -2, -4, -5]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(sort_des([-2, 3, 0, 0, -3])),6),2))",
    "io_inp": [
      -2,
      3,
      0,
      0,
      -3
    ],
    "io_out": [
      1,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(sort_des(input)),6),2))"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = sort_des(add_n(take(take(reverse([0, -4, -3]),17),12),2))",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(reverse(input),17),12),2))"
  },
  {
    "input": "input : list = [2, 1, 1, 2, -3]\noutput : list = [-27, 9, 9, 18, 18]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_des([2, 1, 1, 2, -3]),-3),-3)))",
    "io_inp": [
      2,
      1,
      1,
      2,
      -3
    ],
    "io_out": [
      -27,
      9,
      9,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_des(input),-3),-3)))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [15, -6]",
    "output": "generated_output : list = mul_n([-5, 2],-3)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      15,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [0, -1, -1, 2, 3]\noutput : list = [-3, -3, 0, 6, 9]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des([0, -1, -1, 2, 3]),3)),7)",
    "io_inp": [
      0,
      -1,
      -1,
      2,
      3
    ],
    "io_out": [
      -3,
      -3,
      0,
      6,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(input),3)),7)"
  },
  {
    "input": "input : list = [-4, -3, -5, -2, 2, 0]\noutput : list = [9, 1, 17, 29, 21, 25]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(add_n([-4, -3, -5, -2, 2, 0],-1),-2),2)),5)",
    "io_inp": [
      -4,
      -3,
      -5,
      -2,
      2,
      0
    ],
    "io_out": [
      9,
      1,
      17,
      29,
      21,
      25
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(add_n(input,-1),-2),2)),5)"
  },
  {
    "input": "input : list = [0, 3, -4, 3]\noutput : list = [1, 5, 8, 8]",
    "output": "generated_output : list = add_n(sort_asc([0, 3, -4, 3]),5)",
    "io_inp": [
      0,
      3,
      -4,
      3
    ],
    "io_out": [
      1,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [3, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(drop([3, -3, 4],1))",
    "io_inp": [
      3,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [0, 3, -4, -4, 4, 1]\noutput : list = [0, -3, 4]",
    "output": "generated_output : list = mul_n(take([0, 3, -4, -4, 4, 1],3),-1)",
    "io_inp": [
      0,
      3,
      -4,
      -4,
      4,
      1
    ],
    "io_out": [
      0,
      -3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-1)"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [2, 1]",
    "output": "generated_output : list = sub_n(take(drop([-3, 4, 3],1),10),2)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,1),10),2)"
  },
  {
    "input": "input : list = [-1, 0, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(take(drop(sub_n(drop([-1, 0, -2],1),-5),1),24),3)",
    "io_inp": [
      -1,
      0,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(take(drop(sub_n(drop(input,1),-5),1),24),3)"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [-9, -6, -3]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(sub_n([2, -1, -4],2),3),10)))",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(sub_n(input,2),3),10)))"
  },
  {
    "input": "input : list = [-3, 0, -2, -4, -1, -5]\noutput : list = [75]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(take([-3, 0, -2, -4, -1, -5],1),3),-5),-3),5)",
    "io_inp": [
      -3,
      0,
      -2,
      -4,
      -1,
      -5
    ],
    "io_out": [
      75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(take(input,1),3),-5),-3),5)"
  },
  {
    "input": "input : list = [2, 4, -4, -5, 3]\noutput : list = [4, 6, -2, -3, 5]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(reverse([2, 4, -4, -5, 3]),-1),1),1))",
    "io_inp": [
      2,
      4,
      -4,
      -5,
      3
    ],
    "io_out": [
      4,
      6,
      -2,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(reverse(input),-1),1),1))"
  },
  {
    "input": "input : list = [-3, -2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_des(sort_des(take(take([-3, -2, -3],1),3))),11)",
    "io_inp": [
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(take(input,1),3))),11)"
  },
  {
    "input": "input : list = [3, 3, -1, -4, -4]\noutput : list = [-1, -1, 2, 6]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(drop([3, 3, -1, -4, -4],1)),1)),-3)",
    "io_inp": [
      3,
      3,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(drop(input,1)),1)),-3)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(sort_asc([3, -1]))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -4, -4, -5]\noutput : list = [-3, -6, -6, -15]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(sub_n([-1, -4, -4, -5],-3),3))),-3)",
    "io_inp": [
      -1,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -3,
      -6,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(sub_n(input,-3),3))),-3)"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [7, 3, 11]",
    "output": "generated_output : list = sub_n(sub_n([0, -4, 4],-3),-4)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      7,
      3,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-4)"
  },
  {
    "input": "input : list = [4, -3, 0, -5]\noutput : list = [25, 15, 0, -20]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(mul_n([4, -3, 0, -5],-5)))))",
    "io_inp": [
      4,
      -3,
      0,
      -5
    ],
    "io_out": [
      25,
      15,
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc([0, 4])),16)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc(input)),16)))"
  },
  {
    "input": "input : list = [5, 0, 0, 0]\noutput : list = [5, 0, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([5, 0, 0, 0])))",
    "io_inp": [
      5,
      0,
      0,
      0
    ],
    "io_out": [
      5,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 5, 2, 2, 0]\noutput : list = [6, 3, 3, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sort_asc([-1, 5, 2, 2, 0]),-1))))",
    "io_inp": [
      -1,
      5,
      2,
      2,
      0
    ],
    "io_out": [
      6,
      3,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = drop([0, 0, -1],1)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 5, -4, 1]\noutput : list = [60, 12, 0, -48]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(reverse([0, 5, -4, 1]),-4))),-3)",
    "io_inp": [
      0,
      5,
      -4,
      1
    ],
    "io_out": [
      60,
      12,
      0,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(reverse(input),-4))),-3)"
  },
  {
    "input": "input : list = [-3, 4, 1, 5, 2]\noutput : list = [-3, 1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([-3, 4, 1, 5, 2])",
    "io_inp": [
      -3,
      4,
      1,
      5,
      2
    ],
    "io_out": [
      -3,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, 1, 0]\noutput : list = [32, 40]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take([4, 5, 1, 0],2)),2),4)",
    "io_inp": [
      4,
      5,
      1,
      0
    ],
    "io_out": [
      32,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(input,2)),2),4)"
  },
  {
    "input": "input : list = [1, -1, -5, -3]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(take([1, -1, -5, -3],1),-4)),4),-4)",
    "io_inp": [
      1,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(take(input,1),-4)),4),-4)"
  },
  {
    "input": "input : list = [0, 2, -2, -5, 5, 0]\noutput : list = [-20, -14, -10, -10, -6, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sort_des([0, 2, -2, -5, 5, 0]),-5),-2)))",
    "io_inp": [
      0,
      2,
      -2,
      -5,
      5,
      0
    ],
    "io_out": [
      -20,
      -14,
      -10,
      -10,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sort_des(input),-5),-2)))"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [4, 1, -5]",
    "output": "generated_output : list = sort_des([1, 4, -5])",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -5, 1, 1, 0]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(take([5, -5, 1, 1, 0],1))),-3))",
    "io_inp": [
      5,
      -5,
      1,
      1,
      0
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(take(input,1))),-3))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(sub_n([-5, 1],-4)),-5),1))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(sub_n(input,-4)),-5),1))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-6, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des([2, -2]),-1)),-3),3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des(input),-1)),-3),3)"
  },
  {
    "input": "input : list = [-2, 0, 1, 2]\noutput : list = [-2, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-2, 0, 1, 2])))",
    "io_inp": [
      -2,
      0,
      1,
      2
    ],
    "io_out": [
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [4, -1, 4, -2, 1]\noutput : list = [6, 3, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des(drop([4, -1, 4, -2, 1],2)),-4)),-1)",
    "io_inp": [
      4,
      -1,
      4,
      -2,
      1
    ],
    "io_out": [
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(drop(input,2)),-4)),-1)"
  },
  {
    "input": "input : list = [-2, 3, 3, -1]\noutput : list = [5, -15, -15, 1]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(sub_n([-2, 3, 3, -1],-1),-4),2),-5),4)",
    "io_inp": [
      -2,
      3,
      3,
      -1
    ],
    "io_out": [
      5,
      -15,
      -15,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(sub_n(input,-1),-4),2),-5),4)"
  },
  {
    "input": "input : list = [-4, -2, -1, 5]\noutput : list = [10, 4, 3, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(reverse([-4, -2, -1, 5]))),26),-5)",
    "io_inp": [
      -4,
      -2,
      -1,
      5
    ],
    "io_out": [
      10,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(reverse(input))),26),-5)"
  },
  {
    "input": "input : list = [2, 2, 2, -3]\noutput : list = [6, 6, 6, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([2, 2, 2, -3]),-5),1)",
    "io_inp": [
      2,
      2,
      2,
      -3
    ],
    "io_out": [
      6,
      6,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-5),1)"
  },
  {
    "input": "input : list = [2, -1, -3, 5]\noutput : list = [5, 2, -1, -3]",
    "output": "generated_output : list = sort_des([2, -1, -3, 5])",
    "io_inp": [
      2,
      -1,
      -3,
      5
    ],
    "io_out": [
      5,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 40]",
    "output": "generated_output : list = mul_n(mul_n([0, 5],4),2)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),2)"
  },
  {
    "input": "input : list = [-5, 5, 5, -3, -1]\noutput : list = [9, 3, -15, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(drop([-5, 5, 5, -3, -1],1),-3)))",
    "io_inp": [
      -5,
      5,
      5,
      -3,
      -1
    ],
    "io_out": [
      9,
      3,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(drop(input,1),-3)))"
  },
  {
    "input": "input : list = [-5, 3, -5, -1]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(take(reverse(reverse(mul_n([-5, 3, -5, -1],-2))),1))",
    "io_inp": [
      -5,
      3,
      -5,
      -1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(reverse(mul_n(input,-2))),1))"
  },
  {
    "input": "input : list = [-4, 3, -1, 1]\noutput : list = [-21, -15, -9, 0]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_des([-4, 3, -1, 1])),-4),-3))",
    "io_inp": [
      -4,
      3,
      -1,
      1
    ],
    "io_out": [
      -21,
      -15,
      -9,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_des(input)),-4),-3))"
  },
  {
    "input": "input : list = [-2, -1, 3, 0, 1, -1]\noutput : list = [4, -4, -8, -12, -12, -16]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(add_n([-2, -1, 3, 0, 1, -1],-2),4))))",
    "io_inp": [
      -2,
      -1,
      3,
      0,
      1,
      -1
    ],
    "io_out": [
      4,
      -4,
      -8,
      -12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(add_n(input,-2),4))))"
  },
  {
    "input": "input : list = [-2, 2, 3, -4]\noutput : list = [8, 7, 3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([-2, 2, 3, -4],5)))",
    "io_inp": [
      -2,
      2,
      3,
      -4
    ],
    "io_out": [
      8,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,5)))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [2, -1]",
    "output": "generated_output : list = sub_n([0, -3],-2)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 1, -4, 1, 2, 1]\noutput : list = [-300, 0, 75, 75, 75, 150]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(mul_n([0, 1, -4, 1, 2, 1],5)),31),3),5)",
    "io_inp": [
      0,
      1,
      -4,
      1,
      2,
      1
    ],
    "io_out": [
      -300,
      0,
      75,
      75,
      75,
      150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(mul_n(input,5)),31),3),5)"
  },
  {
    "input": "input : list = [-5, -1, -3, 4, -5, 5]\noutput : list = [-2, 2, 0, 7, -2, 8]",
    "output": "generated_output : list = add_n([-5, -1, -3, 4, -5, 5],3)",
    "io_inp": [
      -5,
      -1,
      -3,
      4,
      -5,
      5
    ],
    "io_out": [
      -2,
      2,
      0,
      7,
      -2,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, 12]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(sort_des([-4, 0]),-3))),42)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(sort_des(input),-3))),42)"
  },
  {
    "input": "input : list = [3, 1, 2, -5, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = take(take([3, 1, 2, -5, 1],2),15)",
    "io_inp": [
      3,
      1,
      2,
      -5,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(take(input,2),15)"
  },
  {
    "input": "input : list = [-4, 0, -2, 4]\noutput : list = [-28]",
    "output": "generated_output : list = drop(reverse(sort_asc(mul_n(sub_n([-4, 0, -2, 4],3),4))),3)",
    "io_inp": [
      -4,
      0,
      -2,
      4
    ],
    "io_out": [
      -28
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_asc(mul_n(sub_n(input,3),4))),3)"
  },
  {
    "input": "input : list = [4, 5, -2, 5, 0]\noutput : list = [-24, -20]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(take([4, 5, -2, 5, 0],2),1))),-4)",
    "io_inp": [
      4,
      5,
      -2,
      5,
      0
    ],
    "io_out": [
      -24,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(take(input,2),1))),-4)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-9, -2]",
    "output": "generated_output : list = add_n(sort_asc([-5, 2]),-4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, -3, 1, 4, -3, -5]\noutput : list = [-18, -30, -30, -36, -54, -72]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(sub_n([-2, -3, 1, 4, -3, -5],-4)),-4),-3),2)",
    "io_inp": [
      -2,
      -3,
      1,
      4,
      -3,
      -5
    ],
    "io_out": [
      -18,
      -30,
      -30,
      -36,
      -54,
      -72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(sub_n(input,-4)),-4),-3),2)"
  },
  {
    "input": "input : list = [5, 2, 5, 4, -2, -2]\noutput : list = [5, 4, -2, -2]",
    "output": "generated_output : list = drop([5, 2, 5, 4, -2, -2],2)",
    "io_inp": [
      5,
      2,
      5,
      4,
      -2,
      -2
    ],
    "io_out": [
      5,
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, 1, -1, 2]\noutput : list = [16, 8, 8, 4]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(sub_n([1, 1, -1, 2],3),-4))),42)",
    "io_inp": [
      1,
      1,
      -1,
      2
    ],
    "io_out": [
      16,
      8,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(sub_n(input,3),-4))),42)"
  },
  {
    "input": "input : list = [-2, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = drop([-2, 3, 2],1)",
    "io_inp": [
      -2,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [0, -20]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(drop([-4, 5, 0],1)),10),5),4)",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(drop(input,1)),10),5),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-9, -1]",
    "output": "generated_output : list = add_n(take(add_n(reverse(sort_des([-5, 3])),1),12),-5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(sort_des(input)),1),12),-5)"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [-2, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n([-4, -5, 1],-2))",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      -2,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [0, 6]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(sort_des([2, -4]))),-4),36)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(sort_des(input))),-4),36)"
  },
  {
    "input": "input : list = [4, -2, 1, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(drop([4, -2, 1, 3],2),3),-4),3),-3)",
    "io_inp": [
      4,
      -2,
      1,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(drop(input,2),3),-4),3),-3)"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [3, 5, 8]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_des([0, 5, 2])),-3)),19)",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      3,
      5,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_des(input)),-3)),19)"
  },
  {
    "input": "input : list = [0, -4, 0, -5, -1]\noutput : list = [0, 0, 2, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc([0, -4, 0, -5, -1])),-2))",
    "io_inp": [
      0,
      -4,
      0,
      -5,
      -1
    ],
    "io_out": [
      0,
      0,
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(input)),-2))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(add_n([2, 3],2),1)),1))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(add_n(input,2),1)),1))"
  },
  {
    "input": "input : list = [0, 1, -1, -1, 5, 3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(take([0, 1, -1, -1, 5, 3],1)),5)))",
    "io_inp": [
      0,
      1,
      -1,
      -1,
      5,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(take(input,1)),5)))"
  },
  {
    "input": "input : list = [-1, 0, 0, -4, 5]\noutput : list = [24, 4, 4, 84, -96]",
    "output": "generated_output : list = add_n(mul_n(mul_n([-1, 0, 0, -4, 5],-5),4),4)",
    "io_inp": [
      -1,
      0,
      0,
      -4,
      5
    ],
    "io_out": [
      24,
      4,
      4,
      84,
      -96
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,-5),4),4)"
  },
  {
    "input": "input : list = [3, 2, -4, -1, 5, 5]\noutput : list = [-50, -75]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse(take([3, 2, -4, -1, 5, 5],2)),1),-5),5)",
    "io_inp": [
      3,
      2,
      -4,
      -1,
      5,
      5
    ],
    "io_out": [
      -50,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(take(input,2)),1),-5),5)"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [8, 2, -2]",
    "output": "generated_output : list = sort_des(add_n(add_n([5, -5, -1],5),-2))",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      8,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,5),-2))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [3, 3, -1]",
    "output": "generated_output : list = take(sort_des(take(reverse(sort_des([-1, 3, 3])),15)),7)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(sort_des(input)),15)),7)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(sort_des(take(take(sort_asc([-5, 3]),1),9)),4)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(sort_asc(input),1),9)),4)"
  },
  {
    "input": "input : list = [-1, -3, 2, -1]\noutput : list = [0, 3, 3, 5]",
    "output": "generated_output : list = take(take(add_n(mul_n(sort_des([-1, -3, 2, -1]),-1),2),34),48)",
    "io_inp": [
      -1,
      -3,
      2,
      -1
    ],
    "io_out": [
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(sort_des(input),-1),2),34),48)"
  },
  {
    "input": "input : list = [1, 4, 4]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(take([1, 4, 4],1))),20))",
    "io_inp": [
      1,
      4,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(take(input,1))),20))"
  },
  {
    "input": "input : list = [4, -4, 5, 1, -4, 1]\noutput : list = [5, 4, 1, 1, -4, -4]",
    "output": "generated_output : list = sort_des([4, -4, 5, 1, -4, 1])",
    "io_inp": [
      4,
      -4,
      5,
      1,
      -4,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, 4, -3, 4]\noutput : list = [-16, -16, 9, 14, 19]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(mul_n([-1, -2, 4, -3, 4],-5)),3),-1))",
    "io_inp": [
      -1,
      -2,
      4,
      -3,
      4
    ],
    "io_out": [
      -16,
      -16,
      9,
      14,
      19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(mul_n(input,-5)),3),-1))"
  },
  {
    "input": "input : list = [2, -1, -5, -4]\noutput : list = [6, 3, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(reverse([2, -1, -5, -4])),12),-4))",
    "io_inp": [
      2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      6,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(reverse(input)),12),-4))"
  },
  {
    "input": "input : list = [0, -1, 3, 4, 5, 3]\noutput : list = [-4, -8, -6, -4, 4, 2]",
    "output": "generated_output : list = reverse(add_n(mul_n([0, -1, 3, 4, 5, 3],-2),2))",
    "io_inp": [
      0,
      -1,
      3,
      4,
      5,
      3
    ],
    "io_out": [
      -4,
      -8,
      -6,
      -4,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-2),2))"
  },
  {
    "input": "input : list = [4, -4, -5, 3]\noutput : list = [4, 3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des([4, -4, -5, 3]))))",
    "io_inp": [
      4,
      -4,
      -5,
      3
    ],
    "io_out": [
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [-2, 3, -5]\noutput : list = [-4, 1, -7]",
    "output": "generated_output : list = add_n([-2, 3, -5],-2)",
    "io_inp": [
      -2,
      3,
      -5
    ],
    "io_out": [
      -4,
      1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 5, 3, -4, -4]\noutput : list = [-24, -16, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(take([-1, 5, 3, -4, -4],3)),1)),-4)",
    "io_inp": [
      -1,
      5,
      3,
      -4,
      -4
    ],
    "io_out": [
      -24,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(take(input,3)),1)),-4)"
  },
  {
    "input": "input : list = [-1, 1, 2, 5, -3, -4]\noutput : list = [-81, -61, -21, 19, 39, 99]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(sort_des([-1, 1, 2, 5, -3, -4])),-5),-4),1)",
    "io_inp": [
      -1,
      1,
      2,
      5,
      -3,
      -4
    ],
    "io_out": [
      -81,
      -61,
      -21,
      19,
      39,
      99
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(sort_des(input)),-5),-4),1)"
  },
  {
    "input": "input : list = [5, 2, 4, -5]\noutput : list = [-9, -2, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_des([5, 2, 4, -5]))),-4))",
    "io_inp": [
      5,
      2,
      4,
      -5
    ],
    "io_out": [
      -9,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [-1, 2, -1, -5, -3, -4]\noutput : list = [2, -1, -1, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-1, 2, -1, -5, -3, -4])",
    "io_inp": [
      -1,
      2,
      -1,
      -5,
      -3,
      -4
    ],
    "io_out": [
      2,
      -1,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-35, -15]",
    "output": "generated_output : list = reverse(mul_n(add_n([2, -2],-5),5))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -35,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-5),5))"
  },
  {
    "input": "input : list = [-3, -2, -1, 5]\noutput : list = [-3, -9, -10, -11]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(sub_n([-3, -2, -1, 5],4)))),4)",
    "io_inp": [
      -3,
      -2,
      -1,
      5
    ],
    "io_out": [
      -3,
      -9,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(sub_n(input,4)))),4)"
  },
  {
    "input": "input : list = [4, -3, 4]\noutput : list = [8]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take([4, -3, 4],1),-4)))",
    "io_inp": [
      4,
      -3,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(input,1),-4)))"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sub_n([-5, -2, -1],-5)))))",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [-3, 1, 2, 3]\noutput : list = [-12, -8, -7, -6]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n([-3, 1, 2, 3],4),5)))",
    "io_inp": [
      -3,
      1,
      2,
      3
    ],
    "io_out": [
      -12,
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(input,4),5)))"
  },
  {
    "input": "input : list = [3, -3, 5, 1, -1]\noutput : list = [4, -2, 6, 2, 0]",
    "output": "generated_output : list = add_n(sub_n([3, -3, 5, 1, -1],-4),-3)",
    "io_inp": [
      3,
      -3,
      5,
      1,
      -1
    ],
    "io_out": [
      4,
      -2,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-3)"
  },
  {
    "input": "input : list = [-4, 0, -5, 5, 2]\noutput : list = [-7, -3, -8, 2, -1]",
    "output": "generated_output : list = add_n(sub_n([-4, 0, -5, 5, 2],5),2)",
    "io_inp": [
      -4,
      0,
      -5,
      5,
      2
    ],
    "io_out": [
      -7,
      -3,
      -8,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),2)"
  },
  {
    "input": "input : list = [-5, 1, 4, 2, -1]\noutput : list = [19, 3, -5, -9, -17]",
    "output": "generated_output : list = sort_des(add_n(mul_n([-5, 1, 4, 2, -1],-4),-1))",
    "io_inp": [
      -5,
      1,
      4,
      2,
      -1
    ],
    "io_out": [
      19,
      3,
      -5,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,-4),-1))"
  },
  {
    "input": "input : list = [-3, 1, 0, -1]\noutput : list = [-6, -2, 0, 2]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(sort_des([-3, 1, 0, -1]))),2))",
    "io_inp": [
      -3,
      1,
      0,
      -1
    ],
    "io_out": [
      -6,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(sort_asc([-2, -5]),2),20),-2),-1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(sort_asc(input),2),20),-2),-1)"
  },
  {
    "input": "input : list = [-3, 0, 5, 3, 1]\noutput : list = [6, 9, 10, 12, 14]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n([-3, 0, 5, 3, 1],-4),5)))",
    "io_inp": [
      -3,
      0,
      5,
      3,
      1
    ],
    "io_out": [
      6,
      9,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(input,-4),5)))"
  },
  {
    "input": "input : list = [-2, 3, -1, -2, 5, 1]\noutput : list = [-4, -4, -3, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-2, 3, -1, -2, 5, 1],2)))",
    "io_inp": [
      -2,
      3,
      -1,
      -2,
      5,
      1
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-5]",
    "output": "generated_output : list = take(sort_des(take(take(take([-5, -3, 3],1),6),2)),9)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(take(input,1),6),2)),9)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [3, -2]",
    "output": "generated_output : list = sub_n(reverse([-1, 4]),1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [2, 5, -5, 2, 0]\noutput : list = [0, 3, -7, 0, -2]",
    "output": "generated_output : list = sub_n([2, 5, -5, 2, 0],2)",
    "io_inp": [
      2,
      5,
      -5,
      2,
      0
    ],
    "io_out": [
      0,
      3,
      -7,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, -1, 4, -2]\noutput : list = [-152, -52, 73, -77]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(add_n([-5, -1, 4, -2],-1),-5),-5),4),2)",
    "io_inp": [
      -5,
      -1,
      4,
      -2
    ],
    "io_out": [
      -152,
      -52,
      73,
      -77
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(add_n(input,-1),-5),-5),4),2)"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [5, 6, 9]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(reverse([0, -3, -4]),-5),5),-2),3)",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(reverse(input),-5),5),-2),3)"
  },
  {
    "input": "input : list = [-4, -5, -1, -5, -5, 1]\noutput : list = [1, -1, -4, -5, -5, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n([-4, -5, -1, -5, -5, 1],-1),28))),-1)",
    "io_inp": [
      -4,
      -5,
      -1,
      -5,
      -5,
      1
    ],
    "io_out": [
      1,
      -1,
      -4,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n(input,-1),28))),-1)"
  },
  {
    "input": "input : list = [1, 5, 1, 4]\noutput : list = [-3, -4, -7]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(drop([1, 5, 1, 4],1)),27),-5),-3)",
    "io_inp": [
      1,
      5,
      1,
      4
    ],
    "io_out": [
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(drop(input,1)),27),-5),-3)"
  },
  {
    "input": "input : list = [-5, 1, 3, 3, 4]\noutput : list = [2, 2, 3]",
    "output": "generated_output : list = sort_asc(drop(take(add_n([-5, 1, 3, 3, 4],-1),23),2))",
    "io_inp": [
      -5,
      1,
      3,
      3,
      4
    ],
    "io_out": [
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(take(add_n(input,-1),23),2))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [4, 2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc([-2, 0]),-3))),1)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc(input),-3))),1)"
  },
  {
    "input": "input : list = [0, -4, -2, -1, 3]\noutput : list = [0, 2, 3, 4, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse([0, -4, -2, -1, 3]),-5),1))",
    "io_inp": [
      0,
      -4,
      -2,
      -1,
      3
    ],
    "io_out": [
      0,
      2,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(input),-5),1))"
  },
  {
    "input": "input : list = [2, -3, -2, -3]\noutput : list = [-5, 3, 5, 5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(mul_n([2, -3, -2, -3],-2)))),1)",
    "io_inp": [
      2,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -5,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(mul_n(input,-2)))),1)"
  },
  {
    "input": "input : list = [0, -4, -5, 5, 1, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(take([0, -4, -5, 5, 1, -2],1),19)),36))",
    "io_inp": [
      0,
      -4,
      -5,
      5,
      1,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(take(input,1),19)),36))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(add_n([-4, 0],4)),10)))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(add_n(input,4)),10)))"
  },
  {
    "input": "input : list = [5, -3, 2, 2, -3]\noutput : list = [-3, -3, 7, 7, 13]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n([5, -3, 2, 2, -3],2),3)),8)",
    "io_inp": [
      5,
      -3,
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -3,
      7,
      7,
      13
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(input,2),3)),8)"
  },
  {
    "input": "input : list = [2, 1, 4, 3, 0, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(sort_asc(take(take(drop([2, 1, 4, 3, 0, -1],4),8),15)),-1)",
    "io_inp": [
      2,
      1,
      4,
      3,
      0,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(drop(input,4),8),15)),-1)"
  },
  {
    "input": "input : list = [-1, 1, -2, 2]\noutput : list = [-29, -24, -14, -9]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(add_n([-1, 1, -2, 2],-4),5),5)),-4)",
    "io_inp": [
      -1,
      1,
      -2,
      2
    ],
    "io_out": [
      -29,
      -24,
      -14,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(add_n(input,-4),5),5)),-4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(take(take(take(sub_n([-3, -5],-2),12),18),10))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(sub_n(input,-2),12),18),10))"
  },
  {
    "input": "input : list = [-1, 2, 0, -1, 5, -5]\noutput : list = [8, 0, -4, -4]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(take([-1, 2, 0, -1, 5, -5],4)),1)),4)",
    "io_inp": [
      -1,
      2,
      0,
      -1,
      5,
      -5
    ],
    "io_out": [
      8,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(take(input,4)),1)),4)"
  },
  {
    "input": "input : list = [-2, -2, -4]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(drop([-2, -2, -4],1),4)),2))",
    "io_inp": [
      -2,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(drop(input,1),4)),2))"
  },
  {
    "input": "input : list = [3, -3, -2, -3, 2, 2]\noutput : list = [-3, -3, -2, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([3, -3, -2, -3, 2, 2])))",
    "io_inp": [
      3,
      -3,
      -2,
      -3,
      2,
      2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(take([-3, 0, 0],1),5)",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-5, 5, 0, -2, 0]\noutput : list = [5, 0, 0, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 5, 0, -2, 0])",
    "io_inp": [
      -5,
      5,
      0,
      -2,
      0
    ],
    "io_out": [
      5,
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 0, 3]\noutput : list = [-6, -5, -2]",
    "output": "generated_output : list = take(add_n([-1, 0, 3],-5),17)",
    "io_inp": [
      -1,
      0,
      3
    ],
    "io_out": [
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),17)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-7, -2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(mul_n([0, -5],1),1),1)),-2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(mul_n(input,1),1),1)),-2)"
  },
  {
    "input": "input : list = [0, -4, 5, 3]\noutput : list = [3, -1, 8, 6]",
    "output": "generated_output : list = add_n([0, -4, 5, 3],3)",
    "io_inp": [
      0,
      -4,
      5,
      3
    ],
    "io_out": [
      3,
      -1,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, 0, 4, 0, -4, -1]\noutput : list = [2, -2, 2, -2, -6, -3]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n([4, 0, 4, 0, -4, -1],-2),-5),-4),-5)",
    "io_inp": [
      4,
      0,
      4,
      0,
      -4,
      -1
    ],
    "io_out": [
      2,
      -2,
      2,
      -2,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(input,-2),-5),-4),-5)"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [-20, -16, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(mul_n([-5, -4, 1],4)))))",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      -20,
      -16,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-2, 5, -2, 4, 5, 5]\noutput : list = [-2, 5, -2, 4, 5, 5]",
    "output": "generated_output : list = add_n(take(take(sub_n(add_n([-2, 5, -2, 4, 5, 5],3),1),23),42),-2)",
    "io_inp": [
      -2,
      5,
      -2,
      4,
      5,
      5
    ],
    "io_out": [
      -2,
      5,
      -2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(add_n(input,3),1),23),42),-2)"
  },
  {
    "input": "input : list = [-2, 0, -3, 1, -2]\noutput : list = [6, 9, 9, 15, 18]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(sort_des([-2, 0, -3, 1, -2]))),-5),3)",
    "io_inp": [
      -2,
      0,
      -3,
      1,
      -2
    ],
    "io_out": [
      6,
      9,
      9,
      15,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(sort_des(input))),-5),3)"
  },
  {
    "input": "input : list = [4, -5, -3, -4, 3]\noutput : list = [-10, -7, 11, 14, 17]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n([4, -5, -3, -4, 3],-3))),2))",
    "io_inp": [
      4,
      -5,
      -3,
      -4,
      3
    ],
    "io_out": [
      -10,
      -7,
      11,
      14,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n(input,-3))),2))"
  },
  {
    "input": "input : list = [-1, -4, -1, 4]\noutput : list = [1, -2, 1, 6]",
    "output": "generated_output : list = sub_n([-1, -4, -1, 4],-2)",
    "io_inp": [
      -1,
      -4,
      -1,
      4
    ],
    "io_out": [
      1,
      -2,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -1, 2, 1, 1, -1]\noutput : list = [2, 4, 7]",
    "output": "generated_output : list = sub_n(take([-3, -1, 2, 1, 1, -1],3),-5)",
    "io_inp": [
      -3,
      -1,
      2,
      1,
      1,
      -1
    ],
    "io_out": [
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-5)"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [-11, -10, -4]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(add_n([-5, 2, -4],-2)),24),-3),1)",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      -11,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(add_n(input,-2)),24),-3),1)"
  },
  {
    "input": "input : list = [-4, 1, 1, 0]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(take([-4, 1, 1, 0],2)),23)))",
    "io_inp": [
      -4,
      1,
      1,
      0
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(take(input,2)),23)))"
  },
  {
    "input": "input : list = [0, 5, -3, 3, 4]\noutput : list = [6, 5, 4, 1, -2]",
    "output": "generated_output : list = add_n(take(sort_des(add_n([0, 5, -3, 3, 4],-1)),24),2)",
    "io_inp": [
      0,
      5,
      -3,
      3,
      4
    ],
    "io_out": [
      6,
      5,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(input,-1)),24),2)"
  },
  {
    "input": "input : list = [-4, -5, -4, -5]\noutput : list = [-42, -32, -42, -32]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(mul_n([-4, -5, -4, -5],5),4),5)),2)",
    "io_inp": [
      -4,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -42,
      -32,
      -42,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(mul_n(input,5),4),5)),2)"
  },
  {
    "input": "input : list = [-2, 0, 4, -5, 5]\noutput : list = [-5, -4, 0, 2, 5]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 0, 4, -5, 5],-1))",
    "io_inp": [
      -2,
      0,
      4,
      -5,
      5
    ],
    "io_out": [
      -5,
      -4,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-4, -5, 5, 2, 4]\noutput : list = [-131, -104, -50, 112, 139]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(mul_n([-4, -5, 5, 2, 4],-3)),3),3),-4)",
    "io_inp": [
      -4,
      -5,
      5,
      2,
      4
    ],
    "io_out": [
      -131,
      -104,
      -50,
      112,
      139
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(mul_n(input,-3)),3),3),-4)"
  },
  {
    "input": "input : list = [1, -5, -5, -2, -1]\noutput : list = [20, 20, 8, 4, -4]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(reverse([1, -5, -5, -2, -1]))),-4))",
    "io_inp": [
      1,
      -5,
      -5,
      -2,
      -1
    ],
    "io_out": [
      20,
      20,
      8,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [-9, -1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-5, 5, 3]),4))",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      -9,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),4))"
  },
  {
    "input": "input : list = [0, 1, -5, -2, 0, 5]\noutput : list = [-21, -6, 4, 4, 9, 29]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(reverse([0, 1, -5, -2, 0, 5])),5),4)",
    "io_inp": [
      0,
      1,
      -5,
      -2,
      0,
      5
    ],
    "io_out": [
      -21,
      -6,
      4,
      4,
      9,
      29
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(reverse(input)),5),4)"
  },
  {
    "input": "input : list = [3, 1, 3, 5, 4, 4]\noutput : list = [1, 3, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([3, 1, 3, 5, 4, 4]))",
    "io_inp": [
      3,
      1,
      3,
      5,
      4,
      4
    ],
    "io_out": [
      1,
      3,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 5, -5, -4]\noutput : list = [-3, 7, -3, -2]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(sub_n([-5, 5, -5, -4],-1),-1))),51)",
    "io_inp": [
      -5,
      5,
      -5,
      -4
    ],
    "io_out": [
      -3,
      7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(sub_n(input,-1),-1))),51)"
  },
  {
    "input": "input : list = [-3, -4, -4, -2, -5, 3]\noutput : list = [80, 64, 64, 48, 32, -48]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([-3, -4, -4, -2, -5, 3],4)),-4)",
    "io_inp": [
      -3,
      -4,
      -4,
      -2,
      -5,
      3
    ],
    "io_out": [
      80,
      64,
      64,
      48,
      32,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,4)),-4)"
  },
  {
    "input": "input : list = [5, 4, -1]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = take(sort_des(take(reverse([5, 4, -1]),10)),7)",
    "io_inp": [
      5,
      4,
      -1
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(input),10)),7)"
  },
  {
    "input": "input : list = [-2, -4, 2, -4]\noutput : list = [1, 3, -3, 3]",
    "output": "generated_output : list = mul_n(add_n([-2, -4, 2, -4],1),-1)",
    "io_inp": [
      -2,
      -4,
      2,
      -4
    ],
    "io_out": [
      1,
      3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-1)"
  },
  {
    "input": "input : list = [-2, 4, 1, -2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(sort_des([-2, 4, 1, -2])),-5),2))",
    "io_inp": [
      -2,
      4,
      1,
      -2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(sort_des(input)),-5),2))"
  },
  {
    "input": "input : list = [-2, -3, -5, -3]\noutput : list = [-2, -3, -3, -5]",
    "output": "generated_output : list = take(sort_des([-2, -3, -5, -3]),11)",
    "io_inp": [
      -2,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),11)"
  },
  {
    "input": "input : list = [2, 0, 2, 4, 3, 3]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take([2, 0, 2, 4, 3, 3],1))))",
    "io_inp": [
      2,
      0,
      2,
      4,
      3,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(input,1))))"
  },
  {
    "input": "input : list = [5, 3, 5]\noutput : list = [10, 6, 10]",
    "output": "generated_output : list = take(mul_n(mul_n([5, 3, 5],-1),-2),5)",
    "io_inp": [
      5,
      3,
      5
    ],
    "io_out": [
      10,
      6,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-1),-2),5)"
  },
  {
    "input": "input : list = [-5, 2, -1, 4, 2, -1]\noutput : list = [16, 8, 8, -4, -4, -20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des([-5, 2, -1, 4, 2, -1]),4)))",
    "io_inp": [
      -5,
      2,
      -1,
      4,
      2,
      -1
    ],
    "io_out": [
      16,
      8,
      8,
      -4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(input),4)))"
  },
  {
    "input": "input : list = [2, 0, 4, 5, -3, 2]\noutput : list = [-10, -12, -8, -7, -15, -10]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(add_n([2, 0, 4, 5, -3, 2],-4)),4)),-4)",
    "io_inp": [
      2,
      0,
      4,
      5,
      -3,
      2
    ],
    "io_out": [
      -10,
      -12,
      -8,
      -7,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(add_n(input,-4)),4)),-4)"
  },
  {
    "input": "input : list = [3, -5, -2]\noutput : list = [-1, -6, -9]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(sub_n([3, -5, -2],4)),2),4),2)",
    "io_inp": [
      3,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(sub_n(input,4)),2),4),2)"
  },
  {
    "input": "input : list = [-1, 0, 1, 1]\noutput : list = [-2, -2, -3, -4]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(sub_n([-1, 0, 1, 1],4))),2),-3)",
    "io_inp": [
      -1,
      0,
      1,
      1
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(sub_n(input,4))),2),-3)"
  },
  {
    "input": "input : list = [2, -5, 0, -1, 5, 4]\noutput : list = [13, 1, -2, -8, -14, -17]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(sub_n([2, -5, 0, -1, 5, 4],-1))),-3),1)",
    "io_inp": [
      2,
      -5,
      0,
      -1,
      5,
      4
    ],
    "io_out": [
      13,
      1,
      -2,
      -8,
      -14,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(sub_n(input,-1))),-3),1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(add_n(take(sort_asc(sort_asc([-1, -2])),25),2),2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(sort_asc(input)),25),2),2)"
  },
  {
    "input": "input : list = [1, -5, -4, 5, -4]\noutput : list = [0, 1, 1, 6, 10]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse([1, -5, -4, 5, -4]),12)),-5)",
    "io_inp": [
      1,
      -5,
      -4,
      5,
      -4
    ],
    "io_out": [
      0,
      1,
      1,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(input),12)),-5)"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-9, -8]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(drop([-5, -5, -4],1),6),4)))",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -9,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(drop(input,1),6),4)))"
  },
  {
    "input": "input : list = [-4, 4, -1, 1]\noutput : list = [-4, -1, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 4, -1, 1]))",
    "io_inp": [
      -4,
      4,
      -1,
      1
    ],
    "io_out": [
      -4,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, -3, 3, -3, 2, -4]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(take(take(take([5, -3, 3, -3, 2, -4],2),26),25))",
    "io_inp": [
      5,
      -3,
      3,
      -3,
      2,
      -4
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(input,2),26),25))"
  },
  {
    "input": "input : list = [2, 4, -1, -3, 5]\noutput : list = [9, 1, 3, 8, 6]",
    "output": "generated_output : list = reverse(take(add_n(reverse(reverse([2, 4, -1, -3, 5])),4),25))",
    "io_inp": [
      2,
      4,
      -1,
      -3,
      5
    ],
    "io_out": [
      9,
      1,
      3,
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(reverse(input)),4),25))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [15, -3]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(mul_n([1, -2],2),4),9),1),3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(mul_n(input,2),4),9),1),3)"
  },
  {
    "input": "input : list = [0, -1, 4, -2, -2, 5]\noutput : list = [9, 8, 4, 3, 2, 2]",
    "output": "generated_output : list = sort_des(reverse(sub_n([0, -1, 4, -2, -2, 5],-4)))",
    "io_inp": [
      0,
      -1,
      4,
      -2,
      -2,
      5
    ],
    "io_out": [
      9,
      8,
      4,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [1, -4, 2, 0]\noutput : list = [-28, -24, -20, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_asc([1, -4, 2, 0]),19),-5),-4))",
    "io_inp": [
      1,
      -4,
      2,
      0
    ],
    "io_out": [
      -28,
      -24,
      -20,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_asc(input),19),-5),-4))"
  },
  {
    "input": "input : list = [-5, 1, 0, 5]\noutput : list = [-5, 0, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 1, 0, 5]))",
    "io_inp": [
      -5,
      1,
      0,
      5
    ],
    "io_out": [
      -5,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [2, -10]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(reverse([-3, 3]),-5),4),-3),2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(reverse(input),-5),4),-3),2)"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [-10, -14]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(sub_n([-5, -1, -3],5),2)),-4))",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(sub_n(input,5),2)),-4))"
  },
  {
    "input": "input : list = [1, -5, -5, 2, -1]\noutput : list = [-5, -5, -1, 1, 2]",
    "output": "generated_output : list = take(sort_asc([1, -5, -5, 2, -1]),22)",
    "io_inp": [
      1,
      -5,
      -5,
      2,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),22)"
  },
  {
    "input": "input : list = [5, 5, -1, -2, 2, 5]\noutput : list = [6, 3, -6, -15, -15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(drop([5, 5, -1, -2, 2, 5],1)))),-3)",
    "io_inp": [
      5,
      5,
      -1,
      -2,
      2,
      5
    ],
    "io_out": [
      6,
      3,
      -6,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(drop(input,1)))),-3)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [11, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(reverse([-3, -2]),9)),-5),4)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      11,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(reverse(input),9)),-5),4)"
  },
  {
    "input": "input : list = [2, -3, 4, -5, -5]\noutput : list = [-8, 7, -14, 13, 13]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse([2, -3, 4, -5, -5]),-3)),-2)",
    "io_inp": [
      2,
      -3,
      4,
      -5,
      -5
    ],
    "io_out": [
      -8,
      7,
      -14,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(input),-3)),-2)"
  },
  {
    "input": "input : list = [-5, 2, 2, -3, 0]\noutput : list = [10, -4, -4, 6, 0]",
    "output": "generated_output : list = mul_n(reverse(reverse([-5, 2, 2, -3, 0])),-2)",
    "io_inp": [
      -5,
      2,
      2,
      -3,
      0
    ],
    "io_out": [
      10,
      -4,
      -4,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(input)),-2)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [1, 6, 6]",
    "output": "generated_output : list = reverse(take(reverse(take(sub_n([-4, 1, 1],-5),3)),7))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(sub_n(input,-5),3)),7))"
  },
  {
    "input": "input : list = [0, 4, 5]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 4, 5])",
    "io_inp": [
      0,
      4,
      5
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, 3, 0]\noutput : list = [4, 3, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([4, -1, 3, 0])))",
    "io_inp": [
      4,
      -1,
      3,
      0
    ],
    "io_out": [
      4,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [-1, 4, -3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(reverse([0, 5, -2]),-4),-4),1))",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      -1,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(reverse(input),-4),-4),1))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse([0, 5])",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, -4, -2, -3, 1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(reverse(drop([0, -1, -4, -2, -3, 1],4)),-2)",
    "io_inp": [
      0,
      -1,
      -4,
      -2,
      -3,
      1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,4)),-2)"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [75, 45, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(sort_des([2, -1, 4]),-1),3),5),13)",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      75,
      45,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(sort_des(input),-1),3),5),13)"
  },
  {
    "input": "input : list = [3, 4, 1, -2, 5, -3]\noutput : list = [15, 10, -5, -15, -20, -25]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc([3, 4, 1, -2, 5, -3])),-5),43)",
    "io_inp": [
      3,
      4,
      1,
      -2,
      5,
      -3
    ],
    "io_out": [
      15,
      10,
      -5,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(input)),-5),43)"
  },
  {
    "input": "input : list = [-5, 3, 1, 3, -2]\noutput : list = [12, 12, 4, -8, -20]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(sort_asc([-5, 3, 1, 3, -2])),4),37))",
    "io_inp": [
      -5,
      3,
      1,
      3,
      -2
    ],
    "io_out": [
      12,
      12,
      4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(sort_asc(input)),4),37))"
  },
  {
    "input": "input : list = [4, 4, -4, 5]\noutput : list = [5, 4, 4, -4]",
    "output": "generated_output : list = reverse(sort_asc([4, 4, -4, 5]))",
    "io_inp": [
      4,
      4,
      -4,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [5, 13]",
    "output": "generated_output : list = take(sub_n(add_n(take(mul_n([2, 4],4),9),-5),-2),12)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      5,
      13
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(mul_n(input,4),9),-5),-2),12)"
  },
  {
    "input": "input : list = [-5, 4, 0, -4]\noutput : list = [-25, -21, -5, 11]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_des([-5, 4, 0, -4]),4)),1),4)",
    "io_inp": [
      -5,
      4,
      0,
      -4
    ],
    "io_out": [
      -25,
      -21,
      -5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_des(input),4)),1),4)"
  },
  {
    "input": "input : list = [-1, 1, -2]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(take([-1, 1, -2],1),-4),-1)),2)",
    "io_inp": [
      -1,
      1,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(take(input,1),-4),-1)),2)"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [-5, -9, -11]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(sub_n([-3, 0, -2],5),2))),-5)",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      -5,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(sub_n(input,5),2))),-5)"
  },
  {
    "input": "input : list = [3, -4, 0, 1, 5]\noutput : list = [-21, -15, -9, -6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(add_n([3, -4, 0, 1, 5],2)),-3)))",
    "io_inp": [
      3,
      -4,
      0,
      1,
      5
    ],
    "io_out": [
      -21,
      -15,
      -9,
      -6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(add_n(input,2)),-3)))"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(sort_asc([0, -2, 0]),-5),20),-5))",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(sort_asc(input),-5),20),-5))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-9, -4]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_des([2, 3]),5),-1),5),-1)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_des(input),5),-1),5),-1)"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [5, 3, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_asc([0, 2, -3])),-4),4),-5)",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_asc(input)),-4),4),-5)"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_des([-3, 4, -4])),-1)",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [-3, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(drop([-1, -1, 0],1))),-1),-4)",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(drop(input,1))),-1),-4)"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([-1, 1, -1])),-1)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [3, -4, -2, -1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -4, -2, -1],1)",
    "io_inp": [
      3,
      -4,
      -2,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -1, -3, 0, 4, -5]\noutput : list = [-5, -3, -1, -1, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sort_asc([-1, -1, -3, 0, 4, -5])),34)))",
    "io_inp": [
      -1,
      -1,
      -3,
      0,
      4,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sort_asc(input)),34)))"
  },
  {
    "input": "input : list = [-5, 3, -3, 2]\noutput : list = [3, 2, -3, -5]",
    "output": "generated_output : list = sort_des([-5, 3, -3, 2])",
    "io_inp": [
      -5,
      3,
      -3,
      2
    ],
    "io_out": [
      3,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, -3, -5, 4]\noutput : list = [16, 16, 16, -12, -20]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(sort_asc([4, 4, -3, -5, 4]),2)),2),4)",
    "io_inp": [
      4,
      4,
      -3,
      -5,
      4
    ],
    "io_out": [
      16,
      16,
      16,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(sort_asc(input),2)),2),4)"
  },
  {
    "input": "input : list = [1, 2, 2, 4, -5]\noutput : list = [9, 10, 10, 12, 3]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sub_n([1, 2, 2, 4, -5],-1),9),4),1),-3)",
    "io_inp": [
      1,
      2,
      2,
      4,
      -5
    ],
    "io_out": [
      9,
      10,
      10,
      12,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sub_n(input,-1),9),4),1),-3)"
  },
  {
    "input": "input : list = [5, 0, -1, -3, 1, -5]\noutput : list = [-40, -30, -20, -10]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(drop([5, 0, -1, -3, 1, -5],2),-3))),5)",
    "io_inp": [
      5,
      0,
      -1,
      -3,
      1,
      -5
    ],
    "io_out": [
      -40,
      -30,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(drop(input,2),-3))),5)"
  },
  {
    "input": "input : list = [-1, 0, 0, -3, 4, -2]\noutput : list = [0, 0, -3, 4, -2]",
    "output": "generated_output : list = drop([-1, 0, 0, -3, 4, -2],1)",
    "io_inp": [
      -1,
      0,
      0,
      -3,
      4,
      -2
    ],
    "io_out": [
      0,
      0,
      -3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 4, 1, 4, 2]\noutput : list = [-10, -10, -8, -6, -4]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(mul_n([3, 4, 1, 4, 2],-2),1),15)),2)",
    "io_inp": [
      3,
      4,
      1,
      4,
      2
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(mul_n(input,-2),1),15)),2)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [6, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(drop(add_n([-4, 2, 0],3),1))),-1)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(drop(add_n(input,3),1))),-1)"
  },
  {
    "input": "input : list = [1, -5, 3, 5, 0, -4]\noutput : list = [-2, -1, 3, 4, 6, 8]",
    "output": "generated_output : list = sort_asc(sub_n([1, -5, 3, 5, 0, -4],-3))",
    "io_inp": [
      1,
      -5,
      3,
      5,
      0,
      -4
    ],
    "io_out": [
      -2,
      -1,
      3,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-3))"
  },
  {
    "input": "input : list = [2, 3, 1, -5]\noutput : list = [-27, -18, -9, 45]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n(sort_asc([2, 3, 1, -5]),-1),3)),3)",
    "io_inp": [
      2,
      3,
      1,
      -5
    ],
    "io_out": [
      -27,
      -18,
      -9,
      45
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(sort_asc(input),-1),3)),3)"
  },
  {
    "input": "input : list = [-1, -4, 3, -4, 4, -1]\noutput : list = [-2, -5, 2, -5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take([-1, -4, 3, -4, 4, -1],4),1),5),5)",
    "io_inp": [
      -1,
      -4,
      3,
      -4,
      4,
      -1
    ],
    "io_out": [
      -2,
      -5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(input,4),1),5),5)"
  },
  {
    "input": "input : list = [-4, 3, -1]\noutput : list = [1, 4, 8]",
    "output": "generated_output : list = sort_asc(add_n([-4, 3, -1],5))",
    "io_inp": [
      -4,
      3,
      -1
    ],
    "io_out": [
      1,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [5, 2, 3]\noutput : list = [-27]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take([5, 2, 3],1),-3),-1),-3)",
    "io_inp": [
      5,
      2,
      3
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(input,1),-3),-1),-3)"
  },
  {
    "input": "input : list = [-4, -3, 1, 4, 3]\noutput : list = [-9, -8, -4, -1, -2]",
    "output": "generated_output : list = take(add_n([-4, -3, 1, 4, 3],-5),16)",
    "io_inp": [
      -4,
      -3,
      1,
      4,
      3
    ],
    "io_out": [
      -9,
      -8,
      -4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),16)"
  },
  {
    "input": "input : list = [-1, -4, 4, -4]\noutput : list = [-6, -6, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(sub_n([-1, -4, 4, -4],3),4)),2))",
    "io_inp": [
      -1,
      -4,
      4,
      -4
    ],
    "io_out": [
      -6,
      -6,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(sub_n(input,3),4)),2))"
  },
  {
    "input": "input : list = [0, 2, -5, 5, -3]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(take([0, 2, -5, 5, -3],3)))))",
    "io_inp": [
      0,
      2,
      -5,
      5,
      -3
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(take(input,3)))))"
  },
  {
    "input": "input : list = [-4, 3, 1, 2]\noutput : list = [-5, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n([-4, 3, 1, 2],-1),6))",
    "io_inp": [
      -4,
      3,
      1,
      2
    ],
    "io_out": [
      -5,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-1),6))"
  },
  {
    "input": "input : list = [5, -3, 1, -1, 3, -4]\noutput : list = [8, 0, 4, 2, 6, -1]",
    "output": "generated_output : list = add_n([5, -3, 1, -1, 3, -4],3)",
    "io_inp": [
      5,
      -3,
      1,
      -1,
      3,
      -4
    ],
    "io_out": [
      8,
      0,
      4,
      2,
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [-3, -5, 5]",
    "output": "generated_output : list = reverse([5, -5, -3])",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [-1, -7, -8]",
    "output": "generated_output : list = reverse(add_n([-3, -2, 4],-5))",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      -1,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [0, 4, 4]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = reverse([0, 4, 4])",
    "io_inp": [
      0,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [3, 2, 7]",
    "output": "generated_output : list = sub_n([1, 0, 5],-2)",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      3,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, 3, -1, -4]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(take(sub_n(drop(sort_asc([2, 3, -1, -4]),3),2),15),-2)",
    "io_inp": [
      2,
      3,
      -1,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(drop(sort_asc(input),3),2),15),-2)"
  },
  {
    "input": "input : list = [3, 5, 3, 0, 3, 4]\noutput : list = [4, 3, 3, 0]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(drop([3, 5, 3, 0, 3, 4],2)))),44)",
    "io_inp": [
      3,
      5,
      3,
      0,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(drop(input,2)))),44)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(add_n([-1, 2],5),1),10)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(add_n(input,5),1),10)))"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(mul_n(drop([-4, 3, 1],1),1))",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,1),1))"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [20, -12]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(mul_n([3, -5, 1],-4),2))))",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      20,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(mul_n(input,-4),2))))"
  },
  {
    "input": "input : list = [5, 3, -4, -4, -2, 5]\noutput : list = [5, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(drop([5, 3, -4, -4, -2, 5],3)))",
    "io_inp": [
      5,
      3,
      -4,
      -4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,3)))"
  },
  {
    "input": "input : list = [0, 3, 3]\noutput : list = [-6, -12, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sub_n([0, 3, 3],-3)),-2)))",
    "io_inp": [
      0,
      3,
      3
    ],
    "io_out": [
      -6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sub_n(input,-3)),-2)))"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [20]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(take([-5, 0, -5],1),-4))))",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(take(input,1),-4))))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = reverse([-5, -5])",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, 3, 1, -1]\noutput : list = [4, 3, 1, 1, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse([1, 4, 3, 1, -1]))))",
    "io_inp": [
      1,
      4,
      3,
      1,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [-5, 2, 2, -3, 3]\noutput : list = [-2, 5, 5, 0, 6]",
    "output": "generated_output : list = add_n([-5, 2, 2, -3, 3],3)",
    "io_inp": [
      -5,
      2,
      2,
      -3,
      3
    ],
    "io_out": [
      -2,
      5,
      5,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, -2, 3, 1, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(take([-2, -2, 3, 1, -2],2))),2))",
    "io_inp": [
      -2,
      -2,
      3,
      1,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(take(input,2))),2))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [27, 6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sub_n([-2, 5],-4),1)),3))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      27,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sub_n(input,-4),1)),3))"
  },
  {
    "input": "input : list = [3, 2, 1, 5, 5, 0]\noutput : list = [-8, -10, -12, -14, -18, -18]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sort_des([3, 2, 1, 5, 5, 0]),4),-2)),13)",
    "io_inp": [
      3,
      2,
      1,
      5,
      5,
      0
    ],
    "io_out": [
      -8,
      -10,
      -12,
      -14,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sort_des(input),4),-2)),13)"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [20, 0, -8]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n([5, 3, -2],-3)),-4))",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      20,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(input,-3)),-4))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-16, 12]",
    "output": "generated_output : list = take(take(mul_n([4, -3],-4),12),8)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-4),12),8)"
  },
  {
    "input": "input : list = [-3, -1, 0, 4]\noutput : list = [12, 0, -3, -9]",
    "output": "generated_output : list = sort_des(take(mul_n(take(reverse([-3, -1, 0, 4]),10),3),24))",
    "io_inp": [
      -3,
      -1,
      0,
      4
    ],
    "io_out": [
      12,
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(reverse(input),10),3),24))"
  },
  {
    "input": "input : list = [1, 4, -3, -1, 0]\noutput : list = [-5, -3, -1, 5]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(sort_des([1, 4, -3, -1, 0]),4)),2),-3)",
    "io_inp": [
      1,
      4,
      -3,
      -1,
      0
    ],
    "io_out": [
      -5,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(sort_des(input),4)),2),-3)"
  },
  {
    "input": "input : list = [1, -5, -2, -4]\noutput : list = [8, -1, -7, -10]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_des([1, -5, -2, -4]),3),-5)))",
    "io_inp": [
      1,
      -5,
      -2,
      -4
    ],
    "io_out": [
      8,
      -1,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_des(input),3),-5)))"
  },
  {
    "input": "input : list = [5, -5, 3]\noutput : list = [20, -12, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(sort_des([5, -5, 3]),18))),-4)",
    "io_inp": [
      5,
      -5,
      3
    ],
    "io_out": [
      20,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(sort_des(input),18))),-4)"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [2, 0, 3]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sub_n([3, 1, 4],1),9)),1))",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      2,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sub_n(input,1),9)),1))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-13, -17]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n([3, 2],-1)),4),-5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -13,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(input,-1)),4),-5)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-6, 3]",
    "output": "generated_output : list = sort_asc(sub_n([-4, 5],2))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [5, 3, -3, 3]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take(take([5, 3, -3, 3],2),5),-3),-4))",
    "io_inp": [
      5,
      3,
      -3,
      3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(take(input,2),5),-3),-4))"
  },
  {
    "input": "input : list = [3, 5, -2, -3]\noutput : list = [-3, 5, -23, -27]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(add_n([3, 5, -2, -3],1),-4),21),4),-3)",
    "io_inp": [
      3,
      5,
      -2,
      -3
    ],
    "io_out": [
      -3,
      5,
      -23,
      -27
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(add_n(input,1),-4),21),4),-3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sub_n([-1, 4],1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, 5, 2, -2, -3, 3]\noutput : list = [-4, -2, -1, 0, 3, 4]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(sub_n([1, 5, 2, -2, -3, 3],1))),-1))",
    "io_inp": [
      1,
      5,
      2,
      -2,
      -3,
      3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(sub_n(input,1))),-1))"
  },
  {
    "input": "input : list = [0, -2, 2, 4, -1]\noutput : list = [2, 3, 4, 6, 8]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(add_n([0, -2, 2, 4, -1],5),-2)),1),3)",
    "io_inp": [
      0,
      -2,
      2,
      4,
      -1
    ],
    "io_out": [
      2,
      3,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(add_n(input,5),-2)),1),3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-5, -6]",
    "output": "generated_output : list = take(add_n(take(take(sort_des([-1, -2]),15),15),-4),40)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(sort_des(input),15),15),-4),40)"
  },
  {
    "input": "input : list = [-4, -3, 4, 3]\noutput : list = [-16, -12, 12, 16]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des([-4, -3, 4, 3]),-4)))",
    "io_inp": [
      -4,
      -3,
      4,
      3
    ],
    "io_out": [
      -16,
      -12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(input),-4)))"
  },
  {
    "input": "input : list = [5, 4, 5, -5, -2]\noutput : list = [10]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(take([5, 4, 5, -5, -2],1))),2))",
    "io_inp": [
      5,
      4,
      5,
      -5,
      -2
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(take(input,1))),2))"
  },
  {
    "input": "input : list = [0, 5, 1, 4]\noutput : list = [25, 30, 45, 50]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([0, 5, 1, 4]),5),5)",
    "io_inp": [
      0,
      5,
      1,
      4
    ],
    "io_out": [
      25,
      30,
      45,
      50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),5),5)"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(sort_asc([-3, 0, -2]),-4),-2),-3),25)",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(sort_asc(input),-4),-2),-3),25)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [60, -60]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sort_des([3, -3])),-4),5))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      60,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sort_des(input)),-4),5))"
  },
  {
    "input": "input : list = [-2, 0, -2, -3, 2]\noutput : list = [10, 8, 6, 6, 5]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(add_n([-2, 0, -2, -3, 2],3))),5))",
    "io_inp": [
      -2,
      0,
      -2,
      -3,
      2
    ],
    "io_out": [
      10,
      8,
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(add_n(input,3))),5))"
  },
  {
    "input": "input : list = [4, 2, 4, 4]\noutput : list = [2, 4, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([4, 2, 4, 4])))",
    "io_inp": [
      4,
      2,
      4,
      4
    ],
    "io_out": [
      2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [0, -4, -1, -4, -2, -5]\noutput : list = [2, 18, 6, 18]",
    "output": "generated_output : list = add_n(mul_n(take(take(mul_n([0, -4, -1, -4, -2, -5],4),4),33),-1),2)",
    "io_inp": [
      0,
      -4,
      -1,
      -4,
      -2,
      -5
    ],
    "io_out": [
      2,
      18,
      6,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(mul_n(input,4),4),33),-1),2)"
  },
  {
    "input": "input : list = [4, -3, -1, 0]\noutput : list = [-1, -2, -4, 3]",
    "output": "generated_output : list = add_n(reverse(reverse(take(reverse([4, -3, -1, 0]),16))),-1)",
    "io_inp": [
      4,
      -3,
      -1,
      0
    ],
    "io_out": [
      -1,
      -2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(reverse(input),16))),-1)"
  },
  {
    "input": "input : list = [4, -5, 2, 0]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(add_n(take(sort_asc(drop([4, -5, 2, 0],2)),16),-4))",
    "io_inp": [
      4,
      -5,
      2,
      0
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_asc(drop(input,2)),16),-4))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(mul_n([2, 2],-2),2)),20),-2)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(mul_n(input,-2),2)),20),-2)"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [-10, 2, 8]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(sort_asc([-4, 2, 5]))),2),-2)",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      -10,
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(sort_asc(input))),2),-2)"
  },
  {
    "input": "input : list = [1, 1, -1, 1, -3, 1]\noutput : list = [-1, 1, -3, 1]",
    "output": "generated_output : list = drop([1, 1, -1, 1, -3, 1],2)",
    "io_inp": [
      1,
      1,
      -1,
      1,
      -3,
      1
    ],
    "io_out": [
      -1,
      1,
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 3, -5, -4, 3, 5]\noutput : list = [40, 16, 48, 44, 16, 8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([-3, 3, -5, -4, 3, 5],2),5),-4)",
    "io_inp": [
      -3,
      3,
      -5,
      -4,
      3,
      5
    ],
    "io_out": [
      40,
      16,
      48,
      44,
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,2),5),-4)"
  },
  {
    "input": "input : list = [-3, -1, 4, -1, -4]\noutput : list = [-1, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(sort_asc([-3, -1, 4, -1, -4]),4))))",
    "io_inp": [
      -3,
      -1,
      4,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [-3, 3, 2, -1, -5, 0]\noutput : list = [3, -3, -2, 1, 5, 0]",
    "output": "generated_output : list = mul_n([-3, 3, 2, -1, -5, 0],-1)",
    "io_inp": [
      -3,
      3,
      2,
      -1,
      -5,
      0
    ],
    "io_out": [
      3,
      -3,
      -2,
      1,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, -3, -2, 1, -1]\noutput : list = [-1, -10, -4]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(drop([0, -3, -2, 1, -1],2),-3),1),-3),5)",
    "io_inp": [
      0,
      -3,
      -2,
      1,
      -1
    ],
    "io_out": [
      -1,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(drop(input,2),-3),1),-3),5)"
  },
  {
    "input": "input : list = [-2, 1, -2, 1]\noutput : list = [-1, 2, -1, 2]",
    "output": "generated_output : list = add_n(sub_n([-2, 1, -2, 1],4),5)",
    "io_inp": [
      -2,
      1,
      -2,
      1
    ],
    "io_out": [
      -1,
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),5)"
  },
  {
    "input": "input : list = [2, -2, -1, 5, -2]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take(reverse(take([2, -2, -1, 5, -2],1)),22),5)",
    "io_inp": [
      2,
      -2,
      -1,
      5,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(input,1)),22),5)"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(take([0, 5, -5],1))),24))",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(take(input,1))),24))"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [13, 1, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n([0, -3, -3],4),4),-3)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      13,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,4),4),-3)"
  },
  {
    "input": "input : list = [-1, 1, 5, 1, -5]\noutput : list = [-5, -1, 1, 1, 5]",
    "output": "generated_output : list = sort_asc([-1, 1, 5, 1, -5])",
    "io_inp": [
      -1,
      1,
      5,
      1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse([1, 3])",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, -5, 4, -1, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(drop(sort_asc(sub_n([-2, -4, -5, 4, -1, 1],3)),4))",
    "io_inp": [
      -2,
      -4,
      -5,
      4,
      -1,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_asc(sub_n(input,3)),4))"
  },
  {
    "input": "input : list = [-3, 1, -4, -3]\noutput : list = [18, 15, 15, 3]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc([-3, 1, -4, -3]),14),2),-3)",
    "io_inp": [
      -3,
      1,
      -4,
      -3
    ],
    "io_out": [
      18,
      15,
      15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(input),14),2),-3)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [4, 20, -12]",
    "output": "generated_output : list = reverse(mul_n([3, -5, -1],-4))",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      4,
      20,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-44, -20]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(reverse([2, -4]),-5),-4)),-4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -44,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(reverse(input),-5),-4)),-4)"
  },
  {
    "input": "input : list = [-3, 4, 1]\noutput : list = [2, 6, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n([-3, 4, 1],1))),-1),5)",
    "io_inp": [
      -3,
      4,
      1
    ],
    "io_out": [
      2,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n(input,1))),-1),5)"
  },
  {
    "input": "input : list = [1, -4, 2, -3]\noutput : list = [4, -1]",
    "output": "generated_output : list = take(take(sort_des(sub_n(take([1, -4, 2, -3],2),-3)),14),14)",
    "io_inp": [
      1,
      -4,
      2,
      -3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(take(input,2),-3)),14),14)"
  },
  {
    "input": "input : list = [-1, 2, 5]\noutput : list = [-4, 8, 20]",
    "output": "generated_output : list = mul_n(sort_asc([-1, 2, 5]),4)",
    "io_inp": [
      -1,
      2,
      5
    ],
    "io_out": [
      -4,
      8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(reverse([3, 0])),17),-1),2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(reverse(input)),17),-1),2)"
  },
  {
    "input": "input : list = [2, -1, 0, 4, 3, 3]\noutput : list = [4, 2, 0, -1]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(take([2, -1, 0, 4, 3, 3],4)))))",
    "io_inp": [
      2,
      -1,
      0,
      4,
      3,
      3
    ],
    "io_out": [
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(take(input,4)))))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n([5, 3],-3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 3, -5, 1, 0, 5]\noutput : list = [2, 4, 6, 7, 9, 12]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sort_des([-2, 3, -5, 1, 0, 5]),-1)),-3),-4)",
    "io_inp": [
      -2,
      3,
      -5,
      1,
      0,
      5
    ],
    "io_out": [
      2,
      4,
      6,
      7,
      9,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sort_des(input),-1)),-3),-4)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [-15, 15, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(reverse([-4, -3, 3])),-5),34))",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      -15,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(reverse(input)),-5),34))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-6, -3]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(sub_n([1, -2],2)),2)))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(sub_n(input,2)),2)))"
  },
  {
    "input": "input : list = [-4, -3, -2, -3]\noutput : list = [-3, -2, -3]",
    "output": "generated_output : list = take(take(take(reverse(drop([-4, -3, -2, -3],1)),7),36),4)",
    "io_inp": [
      -4,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(drop(input,1)),7),36),4)"
  },
  {
    "input": "input : list = [5, -4, -3, -2, 1, -1]\noutput : list = [-103, -23, 17, 37, 57, 77]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(sort_des([5, -4, -3, -2, 1, -1]),-5),4),27),-3)",
    "io_inp": [
      5,
      -4,
      -3,
      -2,
      1,
      -1
    ],
    "io_out": [
      -103,
      -23,
      17,
      37,
      57,
      77
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(sort_des(input),-5),4),27),-3)"
  },
  {
    "input": "input : list = [-4, -4, -5, 1, -5]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(take([-4, -4, -5, 1, -5],1),2))),5)",
    "io_inp": [
      -4,
      -4,
      -5,
      1,
      -5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(take(input,1),2))),5)"
  },
  {
    "input": "input : list = [-2, 3, -2, 1]\noutput : list = [10, 4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(drop([-2, 3, -2, 1],2)),3),-2))",
    "io_inp": [
      -2,
      3,
      -2,
      1
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(drop(input,2)),3),-2))"
  },
  {
    "input": "input : list = [4, 2, -4, -3, -1]\noutput : list = [4, 2, -4, -3, -1]",
    "output": "generated_output : list = sub_n(sub_n(add_n([4, 2, -4, -3, -1],1),2),-1)",
    "io_inp": [
      4,
      2,
      -4,
      -3,
      -1
    ],
    "io_out": [
      4,
      2,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,1),2),-1)"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [9, 1]",
    "output": "generated_output : list = take(take(sort_des(sub_n(mul_n([-4, -2, 2],2),-5)),2),35)",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(mul_n(input,2),-5)),2),35)"
  },
  {
    "input": "input : list = [3, 0, -5, 2]\noutput : list = [27]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(drop(sort_des([3, 0, -5, 2]),3),-5),-2))",
    "io_inp": [
      3,
      0,
      -5,
      2
    ],
    "io_out": [
      27
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(drop(sort_des(input),3),-5),-2))"
  },
  {
    "input": "input : list = [3, 5, 4, 2, -2, 4]\noutput : list = [4, -2, 2, 4, 5]",
    "output": "generated_output : list = take(reverse([3, 5, 4, 2, -2, 4]),5)",
    "io_inp": [
      3,
      5,
      4,
      2,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [2, 2, -1, -2]\noutput : list = [5, 5, 2, 1]",
    "output": "generated_output : list = sub_n([2, 2, -1, -2],-3)",
    "io_inp": [
      2,
      2,
      -1,
      -2
    ],
    "io_out": [
      5,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 2, 1, -4, 5]\noutput : list = [7, -2]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(drop([-2, 2, 1, -4, 5],3),22)),1),2)",
    "io_inp": [
      -2,
      2,
      1,
      -4,
      5
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(drop(input,3),22)),1),2)"
  },
  {
    "input": "input : list = [4, 3, 4, 0]\noutput : list = [-4, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(add_n([4, 3, 4, 0],-4)),25)))",
    "io_inp": [
      4,
      3,
      4,
      0
    ],
    "io_out": [
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(add_n(input,-4)),25)))"
  },
  {
    "input": "input : list = [5, -1, -2, 1, 0]\noutput : list = [-7, -6, -5, -4, 0]",
    "output": "generated_output : list = sort_asc(add_n([5, -1, -2, 1, 0],-5))",
    "io_inp": [
      5,
      -1,
      -2,
      1,
      0
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [-5, -1, 3, -4]\noutput : list = [23, 11]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take([-5, -1, 3, -4],2)),-3),-3),-5)",
    "io_inp": [
      -5,
      -1,
      3,
      -4
    ],
    "io_out": [
      23,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take(input,2)),-3),-3),-5)"
  },
  {
    "input": "input : list = [3, 0, 4]\noutput : list = [8, 0, 6]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(sub_n([3, 0, 4],2),2)),25),4)",
    "io_inp": [
      3,
      0,
      4
    ],
    "io_out": [
      8,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(sub_n(input,2),2)),25),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [81, -15]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_asc([-5, 3]),3),-5),-4),-1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      81,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_asc(input),3),-5),-4),-1)"
  },
  {
    "input": "input : list = [-5, -5, -5, -3]\noutput : list = [2, 0, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des([-5, -5, -5, -3]),-5)",
    "io_inp": [
      -5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      2,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [4, -5, 5, 2, 2]\noutput : list = [-14, 0, 0, 4, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(add_n([4, -5, 5, 2, 2],2),4))),2)",
    "io_inp": [
      4,
      -5,
      5,
      2,
      2
    ],
    "io_out": [
      -14,
      0,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(add_n(input,2),4))),2)"
  },
  {
    "input": "input : list = [-3, -1, 4, 5, 0, 4]\noutput : list = [5, 7, 8, 12, 12, 13]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sub_n([-3, -1, 4, 5, 0, 4],-4),-1),-2),-1))",
    "io_inp": [
      -3,
      -1,
      4,
      5,
      0,
      4
    ],
    "io_out": [
      5,
      7,
      8,
      12,
      12,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sub_n(input,-4),-1),-2),-1))"
  },
  {
    "input": "input : list = [0, -2, -4, 3]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(take([0, -2, -4, 3],1))),-5))",
    "io_inp": [
      0,
      -2,
      -4,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(take(input,1))),-5))"
  },
  {
    "input": "input : list = [-4, -3, 2, 5, 2]\noutput : list = [-15, -6]",
    "output": "generated_output : list = sort_asc(take(mul_n(drop([-4, -3, 2, 5, 2],3),-3),17))",
    "io_inp": [
      -4,
      -3,
      2,
      5,
      2
    ],
    "io_out": [
      -15,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(drop(input,3),-3),17))"
  },
  {
    "input": "input : list = [4, 3, 5, 2, -5, 0]\noutput : list = [9, 8, 7, 6, 4, -1]",
    "output": "generated_output : list = sub_n(sort_des([4, 3, 5, 2, -5, 0]),-4)",
    "io_inp": [
      4,
      3,
      5,
      2,
      -5,
      0
    ],
    "io_out": [
      9,
      8,
      7,
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(take([-4, -5, 1],1)),2),-3))",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(take(input,1)),2),-3))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sub_n([-1, -2],1),1),12),3),2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sub_n(input,1),1),12),3),2)"
  },
  {
    "input": "input : list = [5, 2, -2, -3, -3, 3]\noutput : list = [300, 180, 120, -120, -180, -180]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(mul_n([5, 2, -2, -3, -3, 3],3))),5),4)",
    "io_inp": [
      5,
      2,
      -2,
      -3,
      -3,
      3
    ],
    "io_out": [
      300,
      180,
      120,
      -120,
      -180,
      -180
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(mul_n(input,3))),5),4)"
  },
  {
    "input": "input : list = [-4, 2, -2, -1, 2, -4]\noutput : list = [-3, -3, -6, -7, -9, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(reverse([-4, 2, -2, -1, 2, -4])),-5)))",
    "io_inp": [
      -4,
      2,
      -2,
      -1,
      2,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [4, -1, 3, -5, 5]\noutput : list = [8, 3, 7, -1, 9]",
    "output": "generated_output : list = take(sub_n([4, -1, 3, -5, 5],-4),15)",
    "io_inp": [
      4,
      -1,
      3,
      -5,
      5
    ],
    "io_out": [
      8,
      3,
      7,
      -1,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),15)"
  },
  {
    "input": "input : list = [5, -1, -5, 4, 2, 2]\noutput : list = [-17, -14, -8, -8, 1, 13]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(mul_n([5, -1, -5, 4, 2, 2],-3),2),12),-4))",
    "io_inp": [
      5,
      -1,
      -5,
      4,
      2,
      2
    ],
    "io_out": [
      -17,
      -14,
      -8,
      -8,
      1,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(mul_n(input,-3),2),12),-4))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [2, 1]",
    "output": "generated_output : list = add_n(add_n([0, -1],4),-2)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),-2)"
  },
  {
    "input": "input : list = [-1, 3, -4, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take([-1, 3, -4, -4],1))))",
    "io_inp": [
      -1,
      3,
      -4,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(input,1))))"
  },
  {
    "input": "input : list = [-2, 1, -1]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 1, -1]))",
    "io_inp": [
      -2,
      1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -4, 0, -3]\noutput : list = [-3, -5, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(sort_des([-2, -4, 0, -3])),-1),2))",
    "io_inp": [
      -2,
      -4,
      0,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(sort_des(input)),-1),2))"
  },
  {
    "input": "input : list = [-4, 1, -2, 4]\noutput : list = [2, 8, 14, 18]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(sort_des([-4, 1, -2, 4]),6),-5)),-2)",
    "io_inp": [
      -4,
      1,
      -2,
      4
    ],
    "io_out": [
      2,
      8,
      14,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(sort_des(input),6),-5)),-2)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, 12]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(reverse([0, -3]))),-4))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(sort_asc([-5, -4, -1])),-2)),24)",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(sort_asc(input)),-2)),24)"
  },
  {
    "input": "input : list = [3, 3, 1, -4, 0, -4]\noutput : list = [-4, 0, -4]",
    "output": "generated_output : list = drop([3, 3, 1, -4, 0, -4],3)",
    "io_inp": [
      3,
      3,
      1,
      -4,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [4, 4]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n([3, 3],-3)),3),4)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(input,-3)),3),4)"
  },
  {
    "input": "input : list = [-2, 3, 2, 5, -5, 5]\noutput : list = [10, 10, 8, 7, 3, 0]",
    "output": "generated_output : list = add_n(sort_des([-2, 3, 2, 5, -5, 5]),5)",
    "io_inp": [
      -2,
      3,
      2,
      5,
      -5,
      5
    ],
    "io_out": [
      10,
      10,
      8,
      7,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-4, -3, -3, 4]\noutput : list = [4, -3, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(sort_asc([-4, -3, -3, 4])),32)))",
    "io_inp": [
      -4,
      -3,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(sort_asc(input)),32)))"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = sort_des([3, -3, -1])",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, -3, -3, 1]\noutput : list = [-6, -6, -2, -2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sort_asc([5, 1, -3, -3, 1]))),3))",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      1
    ],
    "io_out": [
      -6,
      -6,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [12, 10, 6]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(sort_asc([-3, 1, 3]),5),4)),23)",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      12,
      10,
      6
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(sort_asc(input),5),4)),23)"
  },
  {
    "input": "input : list = [-5, -1, -5, 5]\noutput : list = [-5, -5, -1, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(sort_asc([-5, -1, -5, 5]),19)),31))",
    "io_inp": [
      -5,
      -1,
      -5,
      5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(sort_asc(input),19)),31))"
  },
  {
    "input": "input : list = [0, -1, 3, -2, -4, 3]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(take([0, -1, 3, -2, -4, 3],1)))),3)",
    "io_inp": [
      0,
      -1,
      3,
      -2,
      -4,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(take(input,1)))),3)"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [9]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n(take([5, -4, 4],1),4))))",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(take(input,1),4))))"
  },
  {
    "input": "input : list = [2, 2, -5, -5, -3]\noutput : list = [-1, -1, -6, -8, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_asc([2, 2, -5, -5, -3]),22)),3))",
    "io_inp": [
      2,
      2,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_asc(input),22)),3))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc([4, -5])",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(sub_n(take(add_n(sub_n([-4, -3],-5),2),3),-1),3)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(add_n(sub_n(input,-5),2),3),-1),3)"
  },
  {
    "input": "input : list = [1, 2, 3, 3, -3, -2]\noutput : list = [3, 3, 2, 1, -2, -3]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc([1, 2, 3, 3, -3, -2]))))",
    "io_inp": [
      1,
      2,
      3,
      3,
      -3,
      -2
    ],
    "io_out": [
      3,
      3,
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(sub_n([3, 3],-2),1))),10)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(sub_n(input,-2),1))),10)"
  },
  {
    "input": "input : list = [0, -5, 0, -2, -3, 3]\noutput : list = [3, 0, 0, -2, -3, -5]",
    "output": "generated_output : list = sort_des([0, -5, 0, -2, -3, 3])",
    "io_inp": [
      0,
      -5,
      0,
      -2,
      -3,
      3
    ],
    "io_out": [
      3,
      0,
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 4, 5, -4, -3, 5]\noutput : list = [2, 3, 4, -5, -4, 4]",
    "output": "generated_output : list = sub_n([3, 4, 5, -4, -3, 5],1)",
    "io_inp": [
      3,
      4,
      5,
      -4,
      -3,
      5
    ],
    "io_out": [
      2,
      3,
      4,
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, -3, 3, -5]\noutput : list = [-16, -13, 5, 11]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(mul_n([4, -3, 3, -5],-3),4)),34))",
    "io_inp": [
      4,
      -3,
      3,
      -5
    ],
    "io_out": [
      -16,
      -13,
      5,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(mul_n(input,-3),4)),34))"
  },
  {
    "input": "input : list = [-5, -5, -3]\noutput : list = [-10, -10, -8]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(reverse([-5, -5, -3]),5))))",
    "io_inp": [
      -5,
      -5,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = reverse(sort_asc([-4, 2, 4]))",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 4, -1, -4]\noutput : list = [-1, -6, -9, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(sort_des([-4, 4, -1, -4]),-1)),4))",
    "io_inp": [
      -4,
      4,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(sort_des(input),-1)),4))"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [15, 9, -12]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(sort_asc([-5, 4, -3]),-3))))",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      15,
      9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [2, -4, 0, -1, -2, -2]\noutput : list = [2, 0, -1, -2, -2, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n([2, -4, 0, -1, -2, -2],-4))),4)",
    "io_inp": [
      2,
      -4,
      0,
      -1,
      -2,
      -2
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(input,-4))),4)"
  },
  {
    "input": "input : list = [4, 5, -4, -1, 5]\noutput : list = [5, 5, 4, -1, -4]",
    "output": "generated_output : list = sort_des([4, 5, -4, -1, 5])",
    "io_inp": [
      4,
      5,
      -4,
      -1,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, 0, 2, 0]\noutput : list = [0, 2, 0, -3, 4]",
    "output": "generated_output : list = reverse([4, -3, 0, 2, 0])",
    "io_inp": [
      4,
      -3,
      0,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      0,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(sort_asc([-4, 1]),2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(add_n([1, -2],2),-1),2)))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(add_n(input,2),-1),2)))"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [-16, -4, -10]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(add_n([-1, 3, 1],-4),4),1),3),4)",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      -16,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(add_n(input,-4),4),1),3),4)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = take(sort_des(reverse(take(reverse([-5, -4, 3]),13))),45)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(reverse(input),13))),45)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-15, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n([5, 1],4),5)))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -15,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(input,4),5)))"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(take([-1, -2, -1],1)),4)),-3)",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(take(input,1)),4)),-3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(sort_asc([-4, 0]),4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [0, 2, 0, 3]\noutput : list = [-5, -3, -5, -2]",
    "output": "generated_output : list = sub_n([0, 2, 0, 3],5)",
    "io_inp": [
      0,
      2,
      0,
      3
    ],
    "io_out": [
      -5,
      -3,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(reverse(add_n(take(sort_des([-1, 0]),10),-2)))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(sort_des(input),10),-2)))"
  },
  {
    "input": "input : list = [-2, -5, 3, -5]\noutput : list = [-6, -15, 9, -15]",
    "output": "generated_output : list = take(mul_n([-2, -5, 3, -5],3),8)",
    "io_inp": [
      -2,
      -5,
      3,
      -5
    ],
    "io_out": [
      -6,
      -15,
      9,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),8)"
  },
  {
    "input": "input : list = [3, -5, 0, -5]\noutput : list = [-5, -5, 0, 3]",
    "output": "generated_output : list = sort_asc([3, -5, 0, -5])",
    "io_inp": [
      3,
      -5,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, 0])",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, -2, -3, 5, -2]\noutput : list = [-18, -12, -12, 30]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(drop([-1, -1, -2, -3, 5, -2],2),2),3)))",
    "io_inp": [
      -1,
      -1,
      -2,
      -3,
      5,
      -2
    ],
    "io_out": [
      -18,
      -12,
      -12,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(drop(input,2),2),3)))"
  },
  {
    "input": "input : list = [-3, 2, -4, 4, -4, -5]\noutput : list = [-5, -4, -4, -3, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-3, 2, -4, 4, -4, -5],1)))",
    "io_inp": [
      -3,
      2,
      -4,
      4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,1)))"
  },
  {
    "input": "input : list = [-1, 0, 2]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = add_n([-1, 0, 2],-2)",
    "io_inp": [
      -1,
      0,
      2
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, -5, -3, 3, 4]\noutput : list = [4, 3, 2, -3, -5]",
    "output": "generated_output : list = sort_des([2, -5, -3, 3, 4])",
    "io_inp": [
      2,
      -5,
      -3,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -1, 1, -1, 4]\noutput : list = [-6, -9, -11, -11, -11, -12]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(reverse([-2, -1, -1, 1, -1, 4])),3),-2),5)",
    "io_inp": [
      -2,
      -1,
      -1,
      1,
      -1,
      4
    ],
    "io_out": [
      -6,
      -9,
      -11,
      -11,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(reverse(input)),3),-2),5)"
  },
  {
    "input": "input : list = [4, 4, -3, -5]\noutput : list = [-5, -3, 4]",
    "output": "generated_output : list = take(sort_asc([4, 4, -3, -5]),3)",
    "io_inp": [
      4,
      4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),3)"
  },
  {
    "input": "input : list = [4, -5, 5]\noutput : list = [8, -1, 9]",
    "output": "generated_output : list = sub_n(add_n([4, -5, 5],-1),-5)",
    "io_inp": [
      4,
      -5,
      5
    ],
    "io_out": [
      8,
      -1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),-5)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [1, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n([0, -4, 2],-1)))),3)",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n(input,-1)))),3)"
  },
  {
    "input": "input : list = [2, -3, -3, -1, -1, 3]\noutput : list = [15, 10, -5, -5, -15, -15]",
    "output": "generated_output : list = take(mul_n(reverse(take(sort_asc([2, -3, -3, -1, -1, 3]),29)),5),28)",
    "io_inp": [
      2,
      -3,
      -3,
      -1,
      -1,
      3
    ],
    "io_out": [
      15,
      10,
      -5,
      -5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(sort_asc(input),29)),5),28)"
  },
  {
    "input": "input : list = [1, -4, 1, -1, -2]\noutput : list = [-8, -8, 8, 16, 32]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n([1, -4, 1, -1, -2],-2),4),34))",
    "io_inp": [
      1,
      -4,
      1,
      -1,
      -2
    ],
    "io_out": [
      -8,
      -8,
      8,
      16,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(input,-2),4),34))"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [-7, -19]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(drop([0, 3, 0],1),-3),-4)),5)",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      -7,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(drop(input,1),-3),-4)),5)"
  },
  {
    "input": "input : list = [-4, -4, 2, 1]\noutput : list = [4, 2, -8, -8]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(mul_n([-4, -4, 2, 1],-1)),-2)))",
    "io_inp": [
      -4,
      -4,
      2,
      1
    ],
    "io_out": [
      4,
      2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(mul_n(input,-1)),-2)))"
  },
  {
    "input": "input : list = [5, -4, -5, 3, -5, 2]\noutput : list = [10, 8, 7, 1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des([5, -4, -5, 3, -5, 2]),-5)",
    "io_inp": [
      5,
      -4,
      -5,
      3,
      -5,
      2
    ],
    "io_out": [
      10,
      8,
      7,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = reverse(sub_n([1, -5],1))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [2, -5, -4]",
    "output": "generated_output : list = add_n(mul_n(add_n([-5, 2, 1],-1),-1),-4)",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      2,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-1),-1),-4)"
  },
  {
    "input": "input : list = [3, -3, 4, 5, 1, 3]\noutput : list = [15, 10, 5, 5, -5, -25]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(add_n([3, -3, 4, 5, 1, 3],-2)),5)))",
    "io_inp": [
      3,
      -3,
      4,
      5,
      1,
      3
    ],
    "io_out": [
      15,
      10,
      5,
      5,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(add_n(input,-2)),5)))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-3, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sort_des([-1, -1, -4])),1),1))",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sort_des(input)),1),1))"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [6, 6, 5]",
    "output": "generated_output : list = sub_n(reverse(take(add_n(sort_asc([2, 1, 2]),2),18)),-2)",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(sort_asc(input),2),18)),-2)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [5, 8]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse([3, 0]),-1),-2),-4)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(input),-1),-2),-4)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-9, -5]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(sort_asc([-2, -1]),9),4),4),-5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(sort_asc(input),9),4),4),-5)"
  },
  {
    "input": "input : list = [-5, -5, -2]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(sort_asc(take(take([-5, -5, -2],1),17)),5)",
    "io_inp": [
      -5,
      -5,
      -2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(input,1),17)),5)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [9, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(mul_n([-1, 2],2),13))),5)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(mul_n(input,2),13))),5)"
  },
  {
    "input": "input : list = [1, -4, 5]\noutput : list = [10, -50, 58]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(mul_n([1, -4, 5],-1),18),4),-3),-2)",
    "io_inp": [
      1,
      -4,
      5
    ],
    "io_out": [
      10,
      -50,
      58
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(mul_n(input,-1),18),4),-3),-2)"
  },
  {
    "input": "input : list = [-1, -2, 2, 5, 1, -1]\noutput : list = [-9, -6, -2, -3]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(take([-1, -2, 2, 5, 1, -1],4),17)),-1),-4)",
    "io_inp": [
      -1,
      -2,
      2,
      5,
      1,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(take(input,4),17)),-1),-4)"
  },
  {
    "input": "input : list = [0, -4, -1, -4]\noutput : list = [6, 86, 26, 86]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(mul_n([0, -4, -1, -4],-5),4),3),-1),-2)",
    "io_inp": [
      0,
      -4,
      -1,
      -4
    ],
    "io_out": [
      6,
      86,
      26,
      86
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(mul_n(input,-5),4),3),-1),-2)"
  },
  {
    "input": "input : list = [3, 3, 1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take([3, 3, 1],1),2),-2))",
    "io_inp": [
      3,
      3,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(input,1),2),-2))"
  },
  {
    "input": "input : list = [-1, 4, 3, 5, -3]\noutput : list = [4, 3, 2, -2, -4]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc([-1, 4, 3, 5, -3]),-1),24))",
    "io_inp": [
      -1,
      4,
      3,
      5,
      -3
    ],
    "io_out": [
      4,
      3,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(input),-1),24))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-4, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des(sort_asc([2, -2]))),2),-1)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(sort_asc(input))),2),-1)"
  },
  {
    "input": "input : list = [2, -5, 4, 3, 0, 5]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = sort_des(take([2, -5, 4, 3, 0, 5],3))",
    "io_inp": [
      2,
      -5,
      4,
      3,
      0,
      5
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(sort_des([0, 2]))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -3, -1, 2, 0]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse(sub_n(add_n(drop(sub_n([-2, -3, -1, 2, 0],-3),3),-4),4))",
    "io_inp": [
      -2,
      -3,
      -1,
      2,
      0
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(drop(sub_n(input,-3),3),-4),4))"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [-4, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sort_des([4, -5, 1])),3),-4))",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sort_des(input)),3),-4))"
  },
  {
    "input": "input : list = [5, -5, -5, -3, -4]\noutput : list = [9, -1, -1]",
    "output": "generated_output : list = add_n(take([5, -5, -5, -3, -4],3),4)",
    "io_inp": [
      5,
      -5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      9,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),4)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [16, -16]",
    "output": "generated_output : list = mul_n([4, -4],4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [3, 5, 2]\noutput : list = [-36]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(take([3, 5, 2],1)),-4),3),12)",
    "io_inp": [
      3,
      5,
      2
    ],
    "io_out": [
      -36
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(take(input,1)),-4),3),12)"
  },
  {
    "input": "input : list = [4, -4, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(take([4, -4, 0],1),-2),4),-4))",
    "io_inp": [
      4,
      -4,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(take(input,1),-2),4),-4))"
  },
  {
    "input": "input : list = [-1, 1, -5, -4, 5, -1]\noutput : list = [-10, -9, -6, -6, -4, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(reverse([-1, 1, -5, -4, 5, -1]),7))),5)",
    "io_inp": [
      -1,
      1,
      -5,
      -4,
      5,
      -1
    ],
    "io_out": [
      -10,
      -9,
      -6,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(reverse(input),7))),5)"
  },
  {
    "input": "input : list = [-1, -4, -5, 5]\noutput : list = [-5, -4, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(reverse([-1, -4, -5, 5]),3)),-1),1)",
    "io_inp": [
      -1,
      -4,
      -5,
      5
    ],
    "io_out": [
      -5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(reverse(input),3)),-1),1)"
  },
  {
    "input": "input : list = [-4, -1, -2, 2, 3, 1]\noutput : list = [-7, -5, -6, -10, -9, -12]",
    "output": "generated_output : list = sub_n(take(take(reverse(sub_n([-4, -1, -2, 2, 3, 1],3)),16),7),5)",
    "io_inp": [
      -4,
      -1,
      -2,
      2,
      3,
      1
    ],
    "io_out": [
      -7,
      -5,
      -6,
      -10,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(sub_n(input,3)),16),7),5)"
  },
  {
    "input": "input : list = [-2, -5, 2, -4, 1, -3]\noutput : list = [2, 1, -2, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-2, -5, 2, -4, 1, -3]))",
    "io_inp": [
      -2,
      -5,
      2,
      -4,
      1,
      -3
    ],
    "io_out": [
      2,
      1,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-18, 0]",
    "output": "generated_output : list = reverse(sub_n(take(take(mul_n([1, -5],3),13),9),3))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -18,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(mul_n(input,3),13),9),3))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_des(sub_n([-5, -2],-2)),3),3))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_des(sub_n(input,-2)),3),3))"
  },
  {
    "input": "input : list = [-3, 4, -3, -3]\noutput : list = [4, -3, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-3, 4, -3, -3])))",
    "io_inp": [
      -3,
      4,
      -3,
      -3
    ],
    "io_out": [
      4,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, -4, 5, 5, -3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(take([3, -4, 5, 5, -3],2)))))",
    "io_inp": [
      3,
      -4,
      5,
      5,
      -3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [-4, -1, 1, -5, 0, 0]\noutput : list = [-8, -7, -4, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(take([-4, -1, 1, -5, 0, 0],4)))),3)",
    "io_inp": [
      -4,
      -1,
      1,
      -5,
      0,
      0
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(take(input,4)))),3)"
  },
  {
    "input": "input : list = [-3, -5, -1, 4, 5]\noutput : list = [10, 9, 4, 2, 0]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(sort_asc([-3, -5, -1, 4, 5]),1),1)),5)",
    "io_inp": [
      -3,
      -5,
      -1,
      4,
      5
    ],
    "io_out": [
      10,
      9,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(sort_asc(input),1),1)),5)"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(drop([1, -4, -5],1)),2)),5)",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(drop(input,1)),2)),5)"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [6, 7]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(drop([1, 2, 3],1),3),5)),4)",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(drop(input,1),3),5)),4)"
  },
  {
    "input": "input : list = [-5, -3, -3, -2, 3]\noutput : list = [-6, -4, -4, -3, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-5, -3, -3, -2, 3]),1),1)",
    "io_inp": [
      -5,
      -3,
      -3,
      -2,
      3
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),1),1)"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [34, 10, -8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(reverse([-3, 0, 4]),3)),-5),2)",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      34,
      10,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(reverse(input),3)),-5),2)"
  },
  {
    "input": "input : list = [2, -4, 2, -2, -1]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(drop([2, -4, 2, -2, -1],3))),-4))",
    "io_inp": [
      2,
      -4,
      2,
      -2,
      -1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(drop(input,3))),-4))"
  },
  {
    "input": "input : list = [-2, -3, 4, 2, -5]\noutput : list = [3, 1, -3, -4, -6]",
    "output": "generated_output : list = reverse(add_n(add_n(take(sort_asc([-2, -3, 4, 2, -5]),6),-3),2))",
    "io_inp": [
      -2,
      -3,
      4,
      2,
      -5
    ],
    "io_out": [
      3,
      1,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(sort_asc(input),6),-3),2))"
  },
  {
    "input": "input : list = [2, -5, -4, -1, 0]\noutput : list = [25, 20, 5, 0, -10]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc([2, -5, -4, -1, 0]),-1),36),5)",
    "io_inp": [
      2,
      -5,
      -4,
      -1,
      0
    ],
    "io_out": [
      25,
      20,
      5,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(input),-1),36),5)"
  },
  {
    "input": "input : list = [0, -4, 4, -4, -5, -5]\noutput : list = [-5, -5, -4, 4]",
    "output": "generated_output : list = reverse(sort_des(drop([0, -4, 4, -4, -5, -5],2)))",
    "io_inp": [
      0,
      -4,
      4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [6, 15, 78]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(add_n([4, 5, -3],-5),-3),2),3))",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      6,
      15,
      78
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(add_n(input,-5),-3),2),3))"
  },
  {
    "input": "input : list = [2, 3, 1, 3, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(take([2, 3, 1, 3, -2],1),5))),-1)",
    "io_inp": [
      2,
      3,
      1,
      3,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(take(input,1),5))),-1)"
  },
  {
    "input": "input : list = [-5, 2, 3, 2, 4]\noutput : list = [10, 9, 8, 8, 1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(reverse([-5, 2, 3, 2, 4])),5)),-1)",
    "io_inp": [
      -5,
      2,
      3,
      2,
      4
    ],
    "io_out": [
      10,
      9,
      8,
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(reverse(input)),5)),-1)"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [0, 6, 15]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des([2, 0, 5]),11)),3)",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      0,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(input),11)),3)"
  },
  {
    "input": "input : list = [0, -2, -1, 0]\noutput : list = [-2, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([0, -2, -1, 0])))",
    "io_inp": [
      0,
      -2,
      -1,
      0
    ],
    "io_out": [
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = sort_des(sort_des([2, 3, -1]))",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -4, -4, 3, -5, 1]\noutput : list = [9]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(take([2, -4, -4, 3, -5, 1],1)),-2),1),-5)",
    "io_inp": [
      2,
      -4,
      -4,
      3,
      -5,
      1
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(take(input,1)),-2),1),-5)"
  },
  {
    "input": "input : list = [-1, 0, 1, 3]\noutput : list = [2, -3, -8, -18]",
    "output": "generated_output : list = add_n(mul_n([-1, 0, 1, 3],-5),-3)",
    "io_inp": [
      -1,
      0,
      1,
      3
    ],
    "io_out": [
      2,
      -3,
      -8,
      -18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-3, 2, -4, 2, -3]\noutput : list = [7, 7, 2, 2, 1]",
    "output": "generated_output : list = add_n(sort_des(sub_n([-3, 2, -4, 2, -3],-2)),3)",
    "io_inp": [
      -3,
      2,
      -4,
      2,
      -3
    ],
    "io_out": [
      7,
      7,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,-2)),3)"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [-5, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse([4, -5, 3])))",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [2, 5, 0, 5]\noutput : list = [-40, -10, 35, 35]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(sub_n([2, 5, 0, 5],1),3),-5),5))",
    "io_inp": [
      2,
      5,
      0,
      5
    ],
    "io_out": [
      -40,
      -10,
      35,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(sub_n(input,1),3),-5),5))"
  },
  {
    "input": "input : list = [0, -4, 0, -3, 2]\noutput : list = [2, -3, 0, -4, 0]",
    "output": "generated_output : list = reverse([0, -4, 0, -3, 2])",
    "io_inp": [
      0,
      -4,
      0,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      0,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, 2, 0]\noutput : list = [-1, 4, 2, 0]",
    "output": "generated_output : list = take(sub_n(add_n([-1, 4, 2, 0],2),2),11)",
    "io_inp": [
      -1,
      4,
      2,
      0
    ],
    "io_out": [
      -1,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,2),2),11)"
  },
  {
    "input": "input : list = [4, 4, -3, -3, 0]\noutput : list = [4, 4, -3]",
    "output": "generated_output : list = take(take([4, 4, -3, -3, 0],3),17)",
    "io_inp": [
      4,
      4,
      -3,
      -3,
      0
    ],
    "io_out": [
      4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(take(input,3),17)"
  },
  {
    "input": "input : list = [-5, 4, -4, -1, -4]\noutput : list = [25, 20, 20, 5, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc([-5, 4, -4, -1, -4]),-3)),3),-5)",
    "io_inp": [
      -5,
      4,
      -4,
      -1,
      -4
    ],
    "io_out": [
      25,
      20,
      20,
      5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc(input),-3)),3),-5)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [4, -5]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(sub_n([-5, -2],-1),3),4),4),-1)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(sub_n(input,-1),3),4),4),-1)"
  },
  {
    "input": "input : list = [1, -2, 2, 5, 1]\noutput : list = [2, 8, 8, 10, 16]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sort_asc([1, -2, 2, 5, 1]),-5),-2)),2)",
    "io_inp": [
      1,
      -2,
      2,
      5,
      1
    ],
    "io_out": [
      2,
      8,
      8,
      10,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sort_asc(input),-5),-2)),2)"
  },
  {
    "input": "input : list = [4, -1, -2, 0]\noutput : list = [4, 0, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des([4, -1, -2, 0])))",
    "io_inp": [
      4,
      -1,
      -2,
      0
    ],
    "io_out": [
      4,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [4, 4, -5]\noutput : list = [5, 5, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sort_des([4, 4, -5]))),-1))",
    "io_inp": [
      4,
      4,
      -5
    ],
    "io_out": [
      5,
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [-2, 2, 5, 1, -4]\noutput : list = [5, 2, 1, -2, -4]",
    "output": "generated_output : list = sort_des([-2, 2, 5, 1, -4])",
    "io_inp": [
      -2,
      2,
      5,
      1,
      -4
    ],
    "io_out": [
      5,
      2,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 2, 4, 3, 4, 0]\noutput : list = [-25, 0, 10, 15, 20, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(sort_asc([-5, 2, 4, 3, 4, 0]),4),4)),5)",
    "io_inp": [
      -5,
      2,
      4,
      3,
      4,
      0
    ],
    "io_out": [
      -25,
      0,
      10,
      15,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(sort_asc(input),4),4)),5)"
  },
  {
    "input": "input : list = [-1, -1, 5, 2]\noutput : list = [0, 0, 3, 6]",
    "output": "generated_output : list = add_n(sort_asc([-1, -1, 5, 2]),1)",
    "io_inp": [
      -1,
      -1,
      5,
      2
    ],
    "io_out": [
      0,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [0, 8]",
    "output": "generated_output : list = sub_n([-5, 3],-5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 0, -1, 3, -3]\noutput : list = [3, 7, 1]",
    "output": "generated_output : list = drop(reverse(take(sub_n(reverse([-1, 0, -1, 3, -3]),-4),18)),2)",
    "io_inp": [
      -1,
      0,
      -1,
      3,
      -3
    ],
    "io_out": [
      3,
      7,
      1
    ],
    "output_masked": "generated_output : list = drop(reverse(take(sub_n(reverse(input),-4),18)),2)"
  },
  {
    "input": "input : list = [-2, 5, 5, 0, 2]\noutput : list = [16, 8, 0, -12, -12]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sub_n([-2, 5, 5, 0, 2],2)))),-4)",
    "io_inp": [
      -2,
      5,
      5,
      0,
      2
    ],
    "io_out": [
      16,
      8,
      0,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sub_n(input,2)))),-4)"
  },
  {
    "input": "input : list = [-4, 4, 3, 5, -1]\noutput : list = [64, 16, -48, -64, -80]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(reverse([-4, 4, 3, 5, -1]),4),-4)),24)",
    "io_inp": [
      -4,
      4,
      3,
      5,
      -1
    ],
    "io_out": [
      64,
      16,
      -48,
      -64,
      -80
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(reverse(input),4),-4)),24)"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [-15, 12, -6]",
    "output": "generated_output : list = mul_n([-5, 4, -2],3)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      -15,
      12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 2, 1, -3, 2]\noutput : list = [30, 22, -10, -18, -18]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(mul_n([-4, 2, 1, -3, 2],-4),3),2),4))",
    "io_inp": [
      -4,
      2,
      1,
      -3,
      2
    ],
    "io_out": [
      30,
      22,
      -10,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(mul_n(input,-4),3),2),4))"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(take([-4, -4, 3],1))),2),18)",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(take(input,1))),2),18)"
  },
  {
    "input": "input : list = [-3, 5, -2, 3, -4]\noutput : list = [-5, -3, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(mul_n([-3, 5, -2, 3, -4],-1))),13))",
    "io_inp": [
      -3,
      5,
      -2,
      3,
      -4
    ],
    "io_out": [
      -5,
      -3,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(mul_n(input,-1))),13))"
  },
  {
    "input": "input : list = [-3, 5, 1, -5, -2, 4]\noutput : list = [-5, -3, -2, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(reverse([-3, 5, 1, -5, -2, 4])))))",
    "io_inp": [
      -3,
      5,
      1,
      -5,
      -2,
      4
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-16, -12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([-4, -3]),4))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -16,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-4, -3, -3, -1]\noutput : list = [-3, 3, 3, 6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n(sort_des([-4, -3, -3, -1]),2)),-3))",
    "io_inp": [
      -4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(sort_des(input),2)),-3))"
  },
  {
    "input": "input : list = [-1, 1, 0, -2, 1, 4]\noutput : list = [6, 3, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(take([-1, 1, 0, -2, 1, 4],3),1))),-3)",
    "io_inp": [
      -1,
      1,
      0,
      -2,
      1,
      4
    ],
    "io_out": [
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(take(input,3),1))),-3)"
  },
  {
    "input": "input : list = [-2, -4, 2]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = sort_des([-2, -4, 2])",
    "io_inp": [
      -2,
      -4,
      2
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, 4, 0]\noutput : list = [2, 1, -3, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(sort_asc([-1, 5, 4, 0]),-2),1)),6)",
    "io_inp": [
      -1,
      5,
      4,
      0
    ],
    "io_out": [
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(sort_asc(input),-2),1)),6)"
  },
  {
    "input": "input : list = [-3, -1, -5, 1, -1, 0]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(reverse(sub_n(drop([-3, -1, -5, 1, -1, 0],4),-5)))",
    "io_inp": [
      -3,
      -1,
      -5,
      1,
      -1,
      0
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(drop(input,4),-5)))"
  },
  {
    "input": "input : list = [1, 2, 0, 5]\noutput : list = [-6, -5, -7, -2]",
    "output": "generated_output : list = add_n(sub_n([1, 2, 0, 5],3),-4)",
    "io_inp": [
      1,
      2,
      0,
      5
    ],
    "io_out": [
      -6,
      -5,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),-4)"
  },
  {
    "input": "input : list = [-3, 5, 1]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = sort_asc([-3, 5, 1])",
    "io_inp": [
      -3,
      5,
      1
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_des([-4, -5]),-1))))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-32, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(drop([-5, -4, 3],1),5))),-4)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -32,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(drop(input,1),5))),-4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([5, 0])))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -3, 4, 5, -5, -3]\noutput : list = [5, 4, 2, -3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([2, -3, 4, 5, -5, -3]))",
    "io_inp": [
      2,
      -3,
      4,
      5,
      -5,
      -3
    ],
    "io_out": [
      5,
      4,
      2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, 4, -4, 0]\noutput : list = [40, 30, 20, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(sub_n([2, 4, -4, 0],-4))),5))",
    "io_inp": [
      2,
      4,
      -4,
      0
    ],
    "io_out": [
      40,
      30,
      20,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(sub_n(input,-4))),5))"
  },
  {
    "input": "input : list = [-3, 3, 5, 4]\noutput : list = [-5, 1, 3, 2]",
    "output": "generated_output : list = add_n(take(add_n(take(sub_n([-3, 3, 5, 4],5),6),1),34),2)",
    "io_inp": [
      -3,
      3,
      5,
      4
    ],
    "io_out": [
      -5,
      1,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sub_n(input,5),6),1),34),2)"
  },
  {
    "input": "input : list = [-5, 0, -2, -2, -1]\noutput : list = [0, 2, 4, 4, 10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_des([-5, 0, -2, -2, -1])))),-2)",
    "io_inp": [
      -5,
      0,
      -2,
      -2,
      -1
    ],
    "io_out": [
      0,
      2,
      4,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(add_n([-3, -2, 0],-2),1),-2)))",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(add_n(input,-2),1),-2)))"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [15, 5, 10]",
    "output": "generated_output : list = take(take(mul_n([-3, -1, -2],-5),5),17)",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      15,
      5,
      10
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-5),5),17)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [6, -1]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(sub_n([4, -3],1))),33),-3)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(sub_n(input,1))),33),-3)"
  },
  {
    "input": "input : list = [-3, -1, -1, -1, -3, -4]\noutput : list = [3, 1, 1, 1, 3, 4]",
    "output": "generated_output : list = mul_n([-3, -1, -1, -1, -3, -4],-1)",
    "io_inp": [
      -3,
      -1,
      -1,
      -1,
      -3,
      -4
    ],
    "io_out": [
      3,
      1,
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 1, -4, -5]\noutput : list = [1, 1]",
    "output": "generated_output : list = take([1, 1, -4, -5],2)",
    "io_inp": [
      1,
      1,
      -4,
      -5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [27, -27]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(mul_n([5, -4],-2)),-3)),-3)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      27,
      -27
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(mul_n(input,-2)),-3)),-3)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [6, 6, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(add_n([-5, 5, 5],3))),1),2)",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(add_n(input,3))),1),2)"
  },
  {
    "input": "input : list = [3, 4, -5, -1, -5, 0]\noutput : list = [-5, -1, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(take(take(take([3, 4, -5, -1, -5, 0],4),5),32)))",
    "io_inp": [
      3,
      4,
      -5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -5,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(take(input,4),5),32)))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [36, 72]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(reverse([1, 2]),3),4)),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      36,
      72
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(reverse(input),3),4)),3)"
  },
  {
    "input": "input : list = [4, -3, 1, -1, -1]\noutput : list = [14, -14]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(take([4, -3, 1, -1, -1],2)),-4)),2)",
    "io_inp": [
      4,
      -3,
      1,
      -1,
      -1
    ],
    "io_out": [
      14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(take(input,2)),-4)),2)"
  },
  {
    "input": "input : list = [5, 4, -5, 3]\noutput : list = [-13, 11]",
    "output": "generated_output : list = sub_n(mul_n(drop([5, 4, -5, 3],2),3),-2)",
    "io_inp": [
      5,
      4,
      -5,
      3
    ],
    "io_out": [
      -13,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,2),3),-2)"
  },
  {
    "input": "input : list = [-3, 3, 5, -1, 4]\noutput : list = [-3]",
    "output": "generated_output : list = take(reverse(take([-3, 3, 5, -1, 4],1)),18)",
    "io_inp": [
      -3,
      3,
      5,
      -1,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),18)"
  },
  {
    "input": "input : list = [1, -3, 0, 4]\noutput : list = [9, 6, 5, 2]",
    "output": "generated_output : list = sort_des(sub_n([1, -3, 0, 4],-5))",
    "io_inp": [
      1,
      -3,
      0,
      4
    ],
    "io_out": [
      9,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [27, 9, 15]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(mul_n([4, -2, 0],1),2),3),20),3)",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      27,
      9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(mul_n(input,1),2),3),20),3)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-9, 15]",
    "output": "generated_output : list = take(mul_n([3, -5],-3),13)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -9,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),13)"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [-3, -4, -5]",
    "output": "generated_output : list = sort_des(take(reverse([-3, -5, -4]),5))",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),5))"
  },
  {
    "input": "input : list = [-1, -3, 0, -2, 0]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(drop(mul_n([-1, -3, 0, -2, 0],5),4))),-4)",
    "io_inp": [
      -1,
      -3,
      0,
      -2,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(drop(mul_n(input,5),4))),-4)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, 25]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(mul_n([1, 5],5),1),2),30),1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      25
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(mul_n(input,5),1),2),30),1)"
  },
  {
    "input": "input : list = [0, 1, 4, 1]\noutput : list = [6, 3, 3, 2]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sort_asc([0, 1, 4, 1])),-2)),34)",
    "io_inp": [
      0,
      1,
      4,
      1
    ],
    "io_out": [
      6,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sort_asc(input)),-2)),34)"
  },
  {
    "input": "input : list = [4, 0, 4, 5, -5, -5]\noutput : list = [41, 21, 41]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n(take([4, 0, 4, 5, -5, -5],3),-5)),5),-4)",
    "io_inp": [
      4,
      0,
      4,
      5,
      -5,
      -5
    ],
    "io_out": [
      41,
      21,
      41
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(take(input,3),-5)),5),-4)"
  },
  {
    "input": "input : list = [-4, -4, 4, 2]\noutput : list = [-4, -4, 2, 4]",
    "output": "generated_output : list = sort_asc([-4, -4, 4, 2])",
    "io_inp": [
      -4,
      -4,
      4,
      2
    ],
    "io_out": [
      -4,
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, 4]\noutput : list = [1, 6, 10]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n([-5, 0, 4],2),1)),5)",
    "io_inp": [
      -5,
      0,
      4
    ],
    "io_out": [
      1,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(input,2),1)),5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [3, -2]",
    "output": "generated_output : list = sub_n(sort_des([-1, 4]),1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [2, -4, -3, 2, 2, 4]\noutput : list = [-1, -3, -3, -3, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(reverse([2, -4, -3, 2, 2, 4]),-5))",
    "io_inp": [
      2,
      -4,
      -3,
      2,
      2,
      4
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [-4, 3, 1, -4, 3]\noutput : list = [14, 7, 12, 14, 7]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sub_n([-4, 3, 1, -4, 3],-4),-2),-5)),10)",
    "io_inp": [
      -4,
      3,
      1,
      -4,
      3
    ],
    "io_out": [
      14,
      7,
      12,
      14,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sub_n(input,-4),-2),-5)),10)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(reverse([5, 0]))),4),5)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(reverse(input))),4),5)"
  },
  {
    "input": "input : list = [-2, 2, -5, 3, -2]\noutput : list = [-4, -9]",
    "output": "generated_output : list = add_n(take(sub_n(take(drop([-2, 2, -5, 3, -2],3),12),2),8),-5)",
    "io_inp": [
      -2,
      2,
      -5,
      3,
      -2
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(drop(input,3),12),2),8),-5)"
  },
  {
    "input": "input : list = [-1, 3, -1, -2]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = reverse(reverse(drop([-1, 3, -1, -2],1)))",
    "io_inp": [
      -1,
      3,
      -1,
      -2
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, 0, 0, 0, 1]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(sort_des(take([-4, 0, 0, 0, 1],1)),-1)",
    "io_inp": [
      -4,
      0,
      0,
      0,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-1)"
  },
  {
    "input": "input : list = [0, -1, -2, 2]\noutput : list = [-3, -5, -6, -7]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n([0, -1, -2, 2],1),3)),-3)",
    "io_inp": [
      0,
      -1,
      -2,
      2
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(input,1),3)),-3)"
  },
  {
    "input": "input : list = [-3, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(drop([-3, 0, -4],1)),12)))",
    "io_inp": [
      -3,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(drop(input,1)),12)))"
  },
  {
    "input": "input : list = [3, 4, -5, 1, -4, 2]\noutput : list = [-51, -66, 69, -21, 54, -36]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(reverse([3, 4, -5, 1, -4, 2])),-5),2),3)",
    "io_inp": [
      3,
      4,
      -5,
      1,
      -4,
      2
    ],
    "io_out": [
      -51,
      -66,
      69,
      -21,
      54,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(reverse(input)),-5),2),3)"
  },
  {
    "input": "input : list = [-5, 3, -2, -2, 0, -2]\noutput : list = [10, 4, 4, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(mul_n([-5, 3, -2, -2, 0, -2],-2),4))))",
    "io_inp": [
      -5,
      3,
      -2,
      -2,
      0,
      -2
    ],
    "io_out": [
      10,
      4,
      4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(mul_n(input,-2),4))))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [1, 19]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(mul_n([4, -2],3)),2),-5))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      1,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(mul_n(input,3)),2),-5))"
  },
  {
    "input": "input : list = [-2, 5, -1, -5, 0]\noutput : list = [-9, 0, 3, 6, 21]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(add_n([-2, 5, -1, -5, 0],2)),3),17))",
    "io_inp": [
      -2,
      5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -9,
      0,
      3,
      6,
      21
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(add_n(input,2)),3),17))"
  },
  {
    "input": "input : list = [-2, 1, 3, 1, 2]\noutput : list = [4, 3, 2, 2, -1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n([-2, 1, 3, 1, 2],-3),1),2))",
    "io_inp": [
      -2,
      1,
      3,
      1,
      2
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(input,-3),1),2))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_des([0, 2]),2),-3),2),3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_des(input),2),-3),2),3)"
  },
  {
    "input": "input : list = [2, -3, -1, 4, -4]\noutput : list = [-35, -30, -20, -5, 5]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([2, -3, -1, 4, -4],-3),5))",
    "io_inp": [
      2,
      -3,
      -1,
      4,
      -4
    ],
    "io_out": [
      -35,
      -30,
      -20,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,-3),5))"
  },
  {
    "input": "input : list = [3, -1, 0, -4, 3, -5]\noutput : list = [6, 0, -2, -8, -10]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse(drop([3, -1, 0, -4, 3, -5],1)))),2)",
    "io_inp": [
      3,
      -1,
      0,
      -4,
      3,
      -5
    ],
    "io_out": [
      6,
      0,
      -2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-2, 1, -4]",
    "output": "generated_output : list = sub_n([-3, 0, -5],-1)",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, -4, -3, -5, 0, 4]\noutput : list = [-12, -10, -8, -2, 6, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(add_n([5, -4, -3, -5, 0, 4],-4),1)),-2),2)",
    "io_inp": [
      5,
      -4,
      -3,
      -5,
      0,
      4
    ],
    "io_out": [
      -12,
      -10,
      -8,
      -2,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(add_n(input,-4),1)),-2),2)"
  },
  {
    "input": "input : list = [2, 1, 4, -1, -4]\noutput : list = [8, 6, 5, 3, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(add_n([2, 1, 4, -1, -4],4),22))))",
    "io_inp": [
      2,
      1,
      4,
      -1,
      -4
    ],
    "io_out": [
      8,
      6,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(add_n(input,4),22))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [6, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(add_n([-4, 4],2)))),9)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(add_n(input,2)))),9)"
  },
  {
    "input": "input : list = [-2, 4, -1, -5, 4, 0]\noutput : list = [-4, 2, 4, 6, 14, 14]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sort_asc([-2, 4, -1, -5, 4, 0])),-5),2),2)",
    "io_inp": [
      -2,
      4,
      -1,
      -5,
      4,
      0
    ],
    "io_out": [
      -4,
      2,
      4,
      6,
      14,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sort_asc(input)),-5),2),2)"
  },
  {
    "input": "input : list = [-2, 2, -3]\noutput : list = [44]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(take([-2, 2, -3],1)),-5),-4),-4)",
    "io_inp": [
      -2,
      2,
      -3
    ],
    "io_out": [
      44
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(take(input,1)),-5),-4),-4)"
  },
  {
    "input": "input : list = [3, -5, 3, -2, -5]\noutput : list = [3, -5, 3]",
    "output": "generated_output : list = take([3, -5, 3, -2, -5],3)",
    "io_inp": [
      3,
      -5,
      3,
      -2,
      -5
    ],
    "io_out": [
      3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -1, -1, -1, -2, 5]\noutput : list = [30, 12, 6, 6, 6, -30]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(reverse([-5, -1, -1, -1, -2, 5]),2)),-3))",
    "io_inp": [
      -5,
      -1,
      -1,
      -1,
      -2,
      5
    ],
    "io_out": [
      30,
      12,
      6,
      6,
      6,
      -30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(reverse(input),2)),-3))"
  },
  {
    "input": "input : list = [2, 2, 0, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse(reverse(take([2, 2, 0, -1],2)))",
    "io_inp": [
      2,
      2,
      0,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(drop([-4, -3, -3],1),-4)),14))",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(drop(input,1),-4)),14))"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [6, 0, -21]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(sub_n([-5, 2, 4],4)),-2)),3)",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      6,
      0,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(sub_n(input,4)),-2)),3)"
  },
  {
    "input": "input : list = [3, -2, 2, -1, -1]\noutput : list = [18, 15, 6, 6, 3]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n([3, -2, 2, -1, -1],3)))),3)",
    "io_inp": [
      3,
      -2,
      2,
      -1,
      -1
    ],
    "io_out": [
      18,
      15,
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n(input,3)))),3)"
  },
  {
    "input": "input : list = [0, 5, 0, 4]\noutput : list = [20, 16, 0, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse(mul_n([0, 5, 0, 4],4)))))",
    "io_inp": [
      0,
      5,
      0,
      4
    ],
    "io_out": [
      20,
      16,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-3, 5, -1, -4, 3]\noutput : list = [2, -5, -2]",
    "output": "generated_output : list = reverse(take(drop(add_n(add_n([-3, 5, -1, -4, 3],-5),4),2),9))",
    "io_inp": [
      -3,
      5,
      -1,
      -4,
      3
    ],
    "io_out": [
      2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(drop(add_n(add_n(input,-5),4),2),9))"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = take(sort_asc([-3, -1, 3]),6)",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),6)"
  },
  {
    "input": "input : list = [-5, -5, -2, -5, 3, 4]\noutput : list = [8, 7, 2, -1, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sub_n(sub_n([-5, -5, -2, -5, 3, 4],-5),4)),-3))",
    "io_inp": [
      -5,
      -5,
      -2,
      -5,
      3,
      4
    ],
    "io_out": [
      8,
      7,
      2,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sub_n(sub_n(input,-5),4)),-3))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n([1, 0],3)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, 2, 0, -4]\noutput : list = [2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(take([1, 2, 0, -4],1)))),1)",
    "io_inp": [
      1,
      2,
      0,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(take(input,1)))),1)"
  },
  {
    "input": "input : list = [-3, -5, -2, 4]\noutput : list = [-4, -2, -1, 5]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-3, -5, -2, 4],-1)))",
    "io_inp": [
      -3,
      -5,
      -2,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [3, 2, -4, 2]\noutput : list = [-21, -19, -19, -7]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(mul_n([3, 2, -4, 2],1),-5)),-2),-5)",
    "io_inp": [
      3,
      2,
      -4,
      2
    ],
    "io_out": [
      -21,
      -19,
      -19,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(mul_n(input,1),-5)),-2),-5)"
  },
  {
    "input": "input : list = [-1, 1, 5, 5, -4]\noutput : list = [-3, 0, 2, 6, 6]",
    "output": "generated_output : list = sort_asc(sub_n([-1, 1, 5, 5, -4],-1))",
    "io_inp": [
      -1,
      1,
      5,
      5,
      -4
    ],
    "io_out": [
      -3,
      0,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-4, 3, -5, -2, 4]\noutput : list = [-7, 0, -8, -5, 1]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(reverse([-4, 3, -5, -2, 4]),1),-2),41))",
    "io_inp": [
      -4,
      3,
      -5,
      -2,
      4
    ],
    "io_out": [
      -7,
      0,
      -8,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(reverse(input),1),-2),41))"
  },
  {
    "input": "input : list = [1, -2, -5, -2, -5]\noutput : list = [-5, -5, -2, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([1, -2, -5, -2, -5])))",
    "io_inp": [
      1,
      -2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, 4, -4]\noutput : list = [-2, 6, -2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([-4, 4, -4],2),1),-5)",
    "io_inp": [
      -4,
      4,
      -4
    ],
    "io_out": [
      -2,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,2),1),-5)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(drop([0, -3, 5],1)))))",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [0, 5, -4]\noutput : list = [6, 1, -3]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc([0, 5, -4])),1),2))",
    "io_inp": [
      0,
      5,
      -4
    ],
    "io_out": [
      6,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc(input)),1),2))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [33, -3]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([3, -3],2),-5),3)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      33,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,2),-5),3)"
  },
  {
    "input": "input : list = [1, 2, 4, 1, 4, -2]\noutput : list = [-3, -4, -6, -3, -6, 0]",
    "output": "generated_output : list = mul_n(add_n([1, 2, 4, 1, 4, -2],2),-1)",
    "io_inp": [
      1,
      2,
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -3,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),-1)"
  },
  {
    "input": "input : list = [4, 4, -1, 5, 1]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(take([4, 4, -1, 5, 1],1),2),-2)))",
    "io_inp": [
      4,
      4,
      -1,
      5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(take(input,1),2),-2)))"
  },
  {
    "input": "input : list = [0, -2, -3, -2, 4, 1]\noutput : list = [-1, 0, 0, 2, 3, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des([0, -2, -3, -2, 4, 1])),2)",
    "io_inp": [
      0,
      -2,
      -3,
      -2,
      4,
      1
    ],
    "io_out": [
      -1,
      0,
      0,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),2)"
  },
  {
    "input": "input : list = [3, -1, -2, -2, 0, -2]\noutput : list = [-2, 6, -2, -2, 2, 18]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(reverse([3, -1, -2, -2, 0, -2]),4),-2),4),2)",
    "io_inp": [
      3,
      -1,
      -2,
      -2,
      0,
      -2
    ],
    "io_out": [
      -2,
      6,
      -2,
      -2,
      2,
      18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(reverse(input),4),-2),4),2)"
  },
  {
    "input": "input : list = [2, -2, -2, 5]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take([2, -2, -2, 5],1),-4)),-5)",
    "io_inp": [
      2,
      -2,
      -2,
      5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(input,1),-4)),-5)"
  },
  {
    "input": "input : list = [3, 0, -3, -3]\noutput : list = [-3, -6, -9, -9]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(mul_n([3, 0, -3, -3],-1),-3),-1),3))",
    "io_inp": [
      3,
      0,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(mul_n(input,-1),-3),-1),3))"
  },
  {
    "input": "input : list = [5, 0, -3, -4, 2, 0]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(drop([5, 0, -3, -4, 2, 0],4)),-5)))",
    "io_inp": [
      5,
      0,
      -3,
      -4,
      2,
      0
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(drop(input,4)),-5)))"
  },
  {
    "input": "input : list = [-4, -1, -3, 2, -2]\noutput : list = [4, 1, 0, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(add_n([-4, -1, -3, 2, -2],4)))),2)",
    "io_inp": [
      -4,
      -1,
      -3,
      2,
      -2
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(add_n(input,4)))),2)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-5, -5, 0]",
    "output": "generated_output : list = sort_asc([-5, -5, 0])",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 2, -4, 0, -1, -3]\noutput : list = [-132, -132, -102, -42, -12, 48]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(mul_n([-4, 2, -4, 0, -1, -3],2),5),4)),3)",
    "io_inp": [
      -4,
      2,
      -4,
      0,
      -1,
      -3
    ],
    "io_out": [
      -132,
      -132,
      -102,
      -42,
      -12,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(mul_n(input,2),5),4)),3)"
  },
  {
    "input": "input : list = [0, -1, 4, 3, 1]\noutput : list = [4, 6, 7, 2, 3]",
    "output": "generated_output : list = reverse(add_n([0, -1, 4, 3, 1],3))",
    "io_inp": [
      0,
      -1,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      6,
      7,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [4, -5, 5, -1, 2]\noutput : list = [-1, -10, 0, -6, -3]",
    "output": "generated_output : list = add_n([4, -5, 5, -1, 2],-5)",
    "io_inp": [
      4,
      -5,
      5,
      -1,
      2
    ],
    "io_out": [
      -1,
      -10,
      0,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 0, -1, -4, -1, 1]\noutput : list = [-24, -16, -16, -4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(drop([-3, 0, -1, -4, -1, 1],2)),5),-4))",
    "io_inp": [
      -3,
      0,
      -1,
      -4,
      -1,
      1
    ],
    "io_out": [
      -24,
      -16,
      -16,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(drop(input,2)),5),-4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [10, 7]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(sort_asc([2, 5])))),5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      10,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [-5, 2, -2, -5, 3]\noutput : list = [12, 10, 2, -4, -4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_des(add_n([-5, 2, -2, -5, 3],5)),2)),2)",
    "io_inp": [
      -5,
      2,
      -2,
      -5,
      3
    ],
    "io_out": [
      12,
      10,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_des(add_n(input,5)),2)),2)"
  },
  {
    "input": "input : list = [-4, 3, 4, 5, 2]\noutput : list = [-5, 1, 2, 3, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(sort_asc([-4, 3, 4, 5, 2])))),1)",
    "io_inp": [
      -4,
      3,
      4,
      5,
      2
    ],
    "io_out": [
      -5,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [4, 4, -4, 1, -3]\noutput : list = [2, 2, -6, -1, -5]",
    "output": "generated_output : list = sub_n([4, 4, -4, 1, -3],2)",
    "io_inp": [
      4,
      4,
      -4,
      1,
      -3
    ],
    "io_out": [
      2,
      2,
      -6,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -4, -3, -4, 1]\noutput : list = [1, -4, -3, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, -3, -4, 1])",
    "io_inp": [
      3,
      -4,
      -3,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      -3,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [18, 18, 30]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sub_n([1, 1, 5],-5),3))),16)",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      18,
      18,
      30
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sub_n(input,-5),3))),16)"
  },
  {
    "input": "input : list = [-5, -4, -5, 2, -4, -5]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(sort_asc(take([-5, -4, -5, 2, -4, -5],1)))",
    "io_inp": [
      -5,
      -4,
      -5,
      2,
      -4,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(take(sub_n(add_n(reverse([-5, -1]),1),-3),17))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(add_n(reverse(input),1),-3),17))"
  },
  {
    "input": "input : list = [2, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(sub_n([2, -5, -5],-5),-5))),2)",
    "io_inp": [
      2,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(sub_n(input,-5),-5))),2)"
  },
  {
    "input": "input : list = [-5, 2, -4, 1, -5, -2]\noutput : list = [-22, -10]",
    "output": "generated_output : list = drop(mul_n(take(add_n(mul_n([-5, 2, -4, 1, -5, -2],-2),1),36),-2),4)",
    "io_inp": [
      -5,
      2,
      -4,
      1,
      -5,
      -2
    ],
    "io_out": [
      -22,
      -10
    ],
    "output_masked": "generated_output : list = drop(mul_n(take(add_n(mul_n(input,-2),1),36),-2),4)"
  },
  {
    "input": "input : list = [0, 2, -5, 1, 5, -4]\noutput : list = [1, 0, -4, -5]",
    "output": "generated_output : list = drop(sort_des(reverse(sort_asc(reverse([0, 2, -5, 1, 5, -4])))),2)",
    "io_inp": [
      0,
      2,
      -5,
      1,
      5,
      -4
    ],
    "io_out": [
      1,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(sort_asc(reverse(input)))),2)"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(take([0, -4, -3],1))),5))",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(take(input,1))),5))"
  },
  {
    "input": "input : list = [5, -5, 2, -4, 1, 5]\noutput : list = [1, -15]",
    "output": "generated_output : list = drop(sub_n(mul_n([5, -5, 2, -4, 1, 5],-4),-5),4)",
    "io_inp": [
      5,
      -5,
      2,
      -4,
      1,
      5
    ],
    "io_out": [
      1,
      -15
    ],
    "output_masked": "generated_output : list = drop(sub_n(mul_n(input,-4),-5),4)"
  },
  {
    "input": "input : list = [3, -1, -1, -5, 0]\noutput : list = [10, 2, 2, 0, -6]",
    "output": "generated_output : list = take(sort_des(mul_n([3, -1, -1, -5, 0],-2)),35)",
    "io_inp": [
      3,
      -1,
      -1,
      -5,
      0
    ],
    "io_out": [
      10,
      2,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,-2)),35)"
  },
  {
    "input": "input : list = [4, -5, -1, 2, 3, 5]\noutput : list = [5, -4, 0, 3, 4, 6]",
    "output": "generated_output : list = add_n(add_n([4, -5, -1, 2, 3, 5],5),-4)",
    "io_inp": [
      4,
      -5,
      -1,
      2,
      3,
      5
    ],
    "io_out": [
      5,
      -4,
      0,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-4)"
  },
  {
    "input": "input : list = [5, 0, -2, -5, 3]\noutput : list = [0, -8, -5, -3, 2]",
    "output": "generated_output : list = reverse(sub_n([5, 0, -2, -5, 3],3))",
    "io_inp": [
      5,
      0,
      -2,
      -5,
      3
    ],
    "io_out": [
      0,
      -8,
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [21, 15, 0]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n([-2, 3, -4],3),16)),-3)",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      21,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(input,3),16)),-3)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(add_n([3, 3],-5),6)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),6)"
  },
  {
    "input": "input : list = [2, 2, 1, 2, 2, -4]\noutput : list = [-12, -12, -12, -8, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(drop(mul_n([2, 2, 1, 2, 2, -4],-4),1),4)))",
    "io_inp": [
      2,
      2,
      1,
      2,
      2,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -12,
      -8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(drop(mul_n(input,-4),1),4)))"
  },
  {
    "input": "input : list = [3, 4, -2, 0, -1]\noutput : list = [3, 4, -2, 0, -1]",
    "output": "generated_output : list = reverse(reverse([3, 4, -2, 0, -1]))",
    "io_inp": [
      3,
      4,
      -2,
      0,
      -1
    ],
    "io_out": [
      3,
      4,
      -2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 2, -2, -3, 2, -2]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(sub_n(drop([-5, 2, -2, -3, 2, -2],4),4))",
    "io_inp": [
      -5,
      2,
      -2,
      -3,
      2,
      -2
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,4),4))"
  },
  {
    "input": "input : list = [5, -5, 1, -5, 2, 2]\noutput : list = [8, 5, 5, 4, -2, -2]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc([5, -5, 1, -5, 2, 2]),-4),3),-4))",
    "io_inp": [
      5,
      -5,
      1,
      -5,
      2,
      2
    ],
    "io_out": [
      8,
      5,
      5,
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc(input),-4),3),-4))"
  },
  {
    "input": "input : list = [-3, -1, 0, 2, -1, 3]\noutput : list = [-3, -1, -1, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -1, 0, 2, -1, 3]))",
    "io_inp": [
      -3,
      -1,
      0,
      2,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -2, -5, -4, -3, -4]\noutput : list = [8, 0, -4, -8, -8, -12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(sub_n([0, -2, -5, -4, -3, -4],-2),27),4)))",
    "io_inp": [
      0,
      -2,
      -5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      8,
      0,
      -4,
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(sub_n(input,-2),27),4)))"
  },
  {
    "input": "input : list = [-5, 3, -5, -4, 1]\noutput : list = [-375, -375, -300, 75, 225]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(mul_n([-5, 3, -5, -4, 1],-5)),5),-3))",
    "io_inp": [
      -5,
      3,
      -5,
      -4,
      1
    ],
    "io_out": [
      -375,
      -375,
      -300,
      75,
      225
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(mul_n(input,-5)),5),-3))"
  },
  {
    "input": "input : list = [1, -4, 2, -2]\noutput : list = [12, 9, 0, -6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n([1, -4, 2, -2],3))),1),-5)",
    "io_inp": [
      1,
      -4,
      2,
      -2
    ],
    "io_out": [
      12,
      9,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n(input,3))),1),-5)"
  },
  {
    "input": "input : list = [-4, -2, -5, -5, 1]\noutput : list = [-5, -5, -4, -2, 1]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sort_des([-4, -2, -5, -5, 1])),15),40))",
    "io_inp": [
      -4,
      -2,
      -5,
      -5,
      1
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sort_des(input)),15),40))"
  },
  {
    "input": "input : list = [4, -3, 5, -3, 1]\noutput : list = [-6, -6, 2, 8, 10]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(reverse([4, -3, 5, -3, 1]))),2))",
    "io_inp": [
      4,
      -3,
      5,
      -3,
      1
    ],
    "io_out": [
      -6,
      -6,
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(reverse(input))),2))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc([-5, 5])",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, 1, -3, 5, 2]\noutput : list = [2, 5, -3, 1, -2, -5]",
    "output": "generated_output : list = reverse([-5, -2, 1, -3, 5, 2])",
    "io_inp": [
      -5,
      -2,
      1,
      -3,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      -3,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, -1, 3, 4, -2]\noutput : list = [14, 11, 8, -4, -4, -7]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(mul_n([5, -1, -1, 3, 4, -2],3)),-1),28))",
    "io_inp": [
      5,
      -1,
      -1,
      3,
      4,
      -2
    ],
    "io_out": [
      14,
      11,
      8,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(mul_n(input,3)),-1),28))"
  },
  {
    "input": "input : list = [1, -1, 0, -1]\noutput : list = [2, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(drop([1, -1, 0, -1],1)))),3)",
    "io_inp": [
      1,
      -1,
      0,
      -1
    ],
    "io_out": [
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(drop(input,1)))),3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-150, -50]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-1, 3],-5),5),5)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -150,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-5),5),5)"
  },
  {
    "input": "input : list = [5, -1, -4, -1]\noutput : list = [8, -16, -16, -28]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(sort_asc([5, -1, -4, -1]),-5),2)),4)",
    "io_inp": [
      5,
      -1,
      -4,
      -1
    ],
    "io_out": [
      8,
      -16,
      -16,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(sort_asc(input),-5),2)),4)"
  },
  {
    "input": "input : list = [4, -3, 0, 5, -3, -3]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(take([4, -3, 0, 5, -3, -3],3)))),51)",
    "io_inp": [
      4,
      -3,
      0,
      5,
      -3,
      -3
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(take(input,3)))),51)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(reverse([-5, 0]))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, 5, -1, -1, 2, 2]\noutput : list = [0, -3, -3, -4, -6, -6]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc([1, 5, -1, -1, 2, 2]),-2)),3)",
    "io_inp": [
      1,
      5,
      -1,
      -1,
      2,
      2
    ],
    "io_out": [
      0,
      -3,
      -3,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(input),-2)),3)"
  },
  {
    "input": "input : list = [0, 1, -4, -5]\noutput : list = [-5, -4, 0, 1]",
    "output": "generated_output : list = sort_asc([0, 1, -4, -5])",
    "io_inp": [
      0,
      1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse([-5, 4])",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, 3]\noutput : list = [0, -2, 6]",
    "output": "generated_output : list = take(reverse(add_n(take(reverse([-3, -5, 3]),3),3)),36)",
    "io_inp": [
      -3,
      -5,
      3
    ],
    "io_out": [
      0,
      -2,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(reverse(input),3),3)),36)"
  },
  {
    "input": "input : list = [-2, -3, -2, 1, 2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(take([-2, -3, -2, 1, 2],2))",
    "io_inp": [
      -2,
      -3,
      -2,
      1,
      2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des([-4, 2])",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, 5, -4, 4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = drop(take(sub_n([-5, -2, 5, -4, 4, 0],4),17),4)",
    "io_inp": [
      -5,
      -2,
      5,
      -4,
      4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(input,4),17),4)"
  },
  {
    "input": "input : list = [3, 1, -2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(take([3, 1, -2],1),-1))))",
    "io_inp": [
      3,
      1,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(take(input,1),-1))))"
  },
  {
    "input": "input : list = [1, 5, -2, 5, -3, 5]\noutput : list = [0, 0, 0, -4, -7, -8]",
    "output": "generated_output : list = sort_des(sort_des(add_n([1, 5, -2, 5, -3, 5],-5)))",
    "io_inp": [
      1,
      5,
      -2,
      5,
      -3,
      5
    ],
    "io_out": [
      0,
      0,
      0,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-5)))"
  },
  {
    "input": "input : list = [-2, -4, -3, 5, 1, 3]\noutput : list = [8, 16]",
    "output": "generated_output : list = take(mul_n([-2, -4, -3, 5, 1, 3],-4),2)",
    "io_inp": [
      -2,
      -4,
      -3,
      5,
      1,
      3
    ],
    "io_out": [
      8,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),2)"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [28, 18, -12]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse([-3, 1, -2]),2)),-5),-2)",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      28,
      18,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse(input),2)),-5),-2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-8, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(reverse([-4, -5])))),2)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(reverse(input)))),2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [7, 7]",
    "output": "generated_output : list = add_n(add_n([2, 2],1),4)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,1),4)"
  },
  {
    "input": "input : list = [-2, -1, 3, 0]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take([-2, -1, 3, 0],2)",
    "io_inp": [
      -2,
      -1,
      3,
      0
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [16, 18, 20]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(add_n([3, 1, 2],3),-4))),2)",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      16,
      18,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(add_n(input,3),-4))),2)"
  },
  {
    "input": "input : list = [3, -1, -2, 0]\noutput : list = [3, 0, -1, -2]",
    "output": "generated_output : list = sort_des([3, -1, -2, 0])",
    "io_inp": [
      3,
      -1,
      -2,
      0
    ],
    "io_out": [
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, 1, 2]\noutput : list = [1, 1, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_asc([-1, 2, 1, 2]),1))))",
    "io_inp": [
      -1,
      2,
      1,
      2
    ],
    "io_out": [
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-4, 0, 4, 0, -2]\noutput : list = [0, 2, 4, 4, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sort_des([-4, 0, 4, 0, -2]),-3)),5),4)",
    "io_inp": [
      -4,
      0,
      4,
      0,
      -2
    ],
    "io_out": [
      0,
      2,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sort_des(input),-3)),5),4)"
  },
  {
    "input": "input : list = [-4, 5, 0, -1]\noutput : list = [23, 14, 11, -4]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n([-4, 5, 0, -1],4)),-3),-1)",
    "io_inp": [
      -4,
      5,
      0,
      -1
    ],
    "io_out": [
      23,
      14,
      11,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(input,4)),-3),-1)"
  },
  {
    "input": "input : list = [3, 3, -1, 2, 0]\noutput : list = [0, 0, -1, -3, -4]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(reverse([3, 3, -1, 2, 0]),-4)),1))",
    "io_inp": [
      3,
      3,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(reverse(input),-4)),1))"
  },
  {
    "input": "input : list = [0, 5, -4, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(reverse(take([0, 5, -4, 5],2)))",
    "io_inp": [
      0,
      5,
      -4,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-15, -9]",
    "output": "generated_output : list = mul_n(take(take(add_n(sub_n([-1, -3],-1),5),12),13),-3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(sub_n(input,-1),5),12),13),-3)"
  },
  {
    "input": "input : list = [-4, 3, -1, 4, -2, 3]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 3, -1, 4, -2, 3],1)",
    "io_inp": [
      -4,
      3,
      -1,
      4,
      -2,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 5, 0]\noutput : list = [-1, -1, -6]",
    "output": "generated_output : list = add_n(take(take(sub_n(sort_des([5, 5, 0]),5),23),28),-1)",
    "io_inp": [
      5,
      5,
      0
    ],
    "io_out": [
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(sort_des(input),5),23),28),-1)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [10, 8]",
    "output": "generated_output : list = drop(mul_n(sub_n(sort_des(sub_n([-4, -3, 4],-3)),-5),2),1)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = drop(mul_n(sub_n(sort_des(sub_n(input,-3)),-5),2),1)"
  },
  {
    "input": "input : list = [1, 3, 2, 3, -3, -4]\noutput : list = [-4, -3, 1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([1, 3, 2, 3, -3, -4])",
    "io_inp": [
      1,
      3,
      2,
      3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4, 2, 2, 4]\noutput : list = [-3, 3, 3, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n([4, -4, 2, 2, 4],1)))",
    "io_inp": [
      4,
      -4,
      2,
      2,
      4
    ],
    "io_out": [
      -3,
      3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,1)))"
  },
  {
    "input": "input : list = [0, -4, -1, 1]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n([0, -4, -1, 1],1),-1)),1))",
    "io_inp": [
      0,
      -4,
      -1,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n(input,1),-1)),1))"
  },
  {
    "input": "input : list = [-1, 2, 5, -5]\noutput : list = [11]",
    "output": "generated_output : list = drop(add_n(sort_asc(sub_n(drop([-1, 2, 5, -5],2),-5)),1),1)",
    "io_inp": [
      -1,
      2,
      5,
      -5
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(sub_n(drop(input,2),-5)),1),1)"
  },
  {
    "input": "input : list = [0, -1, -1, -5, 4, -1]\noutput : list = [12, 8, 7, 7, 7, 3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(sort_asc([0, -1, -1, -5, 4, -1])),-5),1),-3)",
    "io_inp": [
      0,
      -1,
      -1,
      -5,
      4,
      -1
    ],
    "io_out": [
      12,
      8,
      7,
      7,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(sort_asc(input)),-5),1),-3)"
  },
  {
    "input": "input : list = [-4, -2, 3, 4, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(take([-4, -2, 3, 4, -3],1),1),1),1),24)",
    "io_inp": [
      -4,
      -2,
      3,
      4,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(take(input,1),1),1),1),24)"
  },
  {
    "input": "input : list = [2, 1, -2, -2, 4]\noutput : list = [8, 4, -8, -8, 16]",
    "output": "generated_output : list = take(mul_n(reverse(take(reverse([2, 1, -2, -2, 4]),9)),4),41)",
    "io_inp": [
      2,
      1,
      -2,
      -2,
      4
    ],
    "io_out": [
      8,
      4,
      -8,
      -8,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(reverse(input),9)),4),41)"
  },
  {
    "input": "input : list = [-5, 1, 5, 2, -3, 0]\noutput : list = [-5]",
    "output": "generated_output : list = take(mul_n(drop(sort_des(reverse([-5, 1, 5, 2, -3, 0])),5),1),24)",
    "io_inp": [
      -5,
      1,
      5,
      2,
      -3,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(sort_des(reverse(input)),5),1),24)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(sort_asc([0, -1])),11)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(sort_asc(input)),11)))"
  },
  {
    "input": "input : list = [3, -3, -1, 4]\noutput : list = [3, -12]",
    "output": "generated_output : list = sort_des(take(mul_n(drop([3, -3, -1, 4],2),-3),19))",
    "io_inp": [
      3,
      -3,
      -1,
      4
    ],
    "io_out": [
      3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(drop(input,2),-3),19))"
  },
  {
    "input": "input : list = [-1, 1, -4, -3]\noutput : list = [-4, 0, 4, 6]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(sub_n([-1, 1, -4, -3],1),12),-2)),-2)",
    "io_inp": [
      -1,
      1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(sub_n(input,1),12),-2)),-2)"
  },
  {
    "input": "input : list = [0, 4, 4, 2]\noutput : list = [-4, 0, 0, -2]",
    "output": "generated_output : list = sub_n([0, 4, 4, 2],4)",
    "io_inp": [
      0,
      4,
      4,
      2
    ],
    "io_out": [
      -4,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [-300]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(take([5, -4, 4],1),-5),-3),9),-4)",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      -300
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(take(input,1),-5),-3),9),-4)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [20, 10]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n([-1, -2],3),2),5),2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      20,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(input,3),2),5),2)"
  },
  {
    "input": "input : list = [-5, 4, 5, -1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = drop([-5, 4, 5, -1, 5],3)",
    "io_inp": [
      -5,
      4,
      5,
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [0, 0, 9]",
    "output": "generated_output : list = sub_n([-4, -4, 5],-4)",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      0,
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, 2, 2, 0]\noutput : list = [-4, -2, -2, -3]",
    "output": "generated_output : list = take(add_n(add_n(take(reverse([1, 2, 2, 0]),19),1),-5),33)",
    "io_inp": [
      1,
      2,
      2,
      0
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(reverse(input),19),1),-5),33)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-12, 12, 16]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-4, 3, -3],-4)))",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-1, -4, 5, 3]\noutput : list = [4]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des(take([-1, -4, 5, 3],1)))),5)",
    "io_inp": [
      -1,
      -4,
      5,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(take(input,1)))),5)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [5, 9]",
    "output": "generated_output : list = take(mul_n(reverse(take(add_n([2, 4, 0],5),5)),1),2)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(add_n(input,5),5)),1),2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = reverse(sort_des([3, -5]))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -2, 1, -1, 0]\noutput : list = [-2, -1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, -2, 1, -1, 0]))",
    "io_inp": [
      4,
      -2,
      1,
      -1,
      0
    ],
    "io_out": [
      -2,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = reverse([3, 0, -1])",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, -1, -4, 0, -3]\noutput : list = [2, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(drop([-2, -3, -1, -4, 0, -3],4)))),5)",
    "io_inp": [
      -2,
      -3,
      -1,
      -4,
      0,
      -3
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(drop(input,4)))),5)"
  },
  {
    "input": "input : list = [1, -4, 1, 3]\noutput : list = [5, -20, 5]",
    "output": "generated_output : list = take(mul_n([1, -4, 1, 3],5),3)",
    "io_inp": [
      1,
      -4,
      1,
      3
    ],
    "io_out": [
      5,
      -20,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(input,5),3)"
  },
  {
    "input": "input : list = [-2, -3, -4, 0, -2]\noutput : list = [0, -8, -8, -12, -16]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([-2, -3, -4, 0, -2]),4))",
    "io_inp": [
      -2,
      -3,
      -4,
      0,
      -2
    ],
    "io_out": [
      0,
      -8,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -16]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(reverse([-4, 0])))),4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(reverse(input)))),4)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-20, 5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(sub_n([2, -3],-3),-1))),-5)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(sub_n(input,-3),-1))),-5)"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [-8, -14, 1]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(mul_n([3, -2, 0],3),5),5),2))",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      -8,
      -14,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(mul_n(input,3),5),5),2))"
  },
  {
    "input": "input : list = [5, 1, 4, 1, -4]\noutput : list = [20, -5, -20, -5, -25]",
    "output": "generated_output : list = mul_n(reverse([5, 1, 4, 1, -4]),-5)",
    "io_inp": [
      5,
      1,
      4,
      1,
      -4
    ],
    "io_out": [
      20,
      -5,
      -20,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [0, 2, -4]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = sort_asc([0, 2, -4])",
    "io_inp": [
      0,
      2,
      -4
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = drop([-3, -2, 3],1)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 0, 5, -2, 0]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(take([2, 0, 5, -2, 0],1)),29)))",
    "io_inp": [
      2,
      0,
      5,
      -2,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(take(input,1)),29)))"
  },
  {
    "input": "input : list = [3, -5, -2, -5, 0, 4]\noutput : list = [-60, -50, -20, 0, 30, 30]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(sub_n([3, -5, -2, -5, 0, 4],-2),5)),-2))",
    "io_inp": [
      3,
      -5,
      -2,
      -5,
      0,
      4
    ],
    "io_out": [
      -60,
      -50,
      -20,
      0,
      30,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(sub_n(input,-2),5)),-2))"
  },
  {
    "input": "input : list = [5, 1, 0, -4, 5, 1]\noutput : list = [8, 0, -2, -2, -10, -10]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(sort_des([5, 1, 0, -4, 5, 1]),1),7),-2))",
    "io_inp": [
      5,
      1,
      0,
      -4,
      5,
      1
    ],
    "io_out": [
      8,
      0,
      -2,
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(sort_des(input),1),7),-2))"
  },
  {
    "input": "input : list = [-5, -3, 4, 3, -5, -3]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(take(sort_asc(take([-5, -3, 4, 3, -5, -3],1)),31),-3)",
    "io_inp": [
      -5,
      -3,
      4,
      3,
      -5,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(input,1)),31),-3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [20, 15]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([4, 3],-4),4),5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      20,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,-4),4),5)"
  },
  {
    "input": "input : list = [-1, -2, -4, 4, 0]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n([-1, -2, -4, 4, 0],2),1)",
    "io_inp": [
      -1,
      -2,
      -4,
      4,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),1)"
  },
  {
    "input": "input : list = [4, -2, 0, -5]\noutput : list = [-10, -7, -5, -1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sub_n([4, -2, 0, -5],-1),5),2)),1)",
    "io_inp": [
      4,
      -2,
      0,
      -5
    ],
    "io_out": [
      -10,
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sub_n(input,-1),5),2)),1)"
  },
  {
    "input": "input : list = [0, -4, 1, 3]\noutput : list = [0]",
    "output": "generated_output : list = take(mul_n(take(mul_n([0, -4, 1, 3],2),1),1),2)",
    "io_inp": [
      0,
      -4,
      1,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(input,2),1),1),2)"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [-2, -12]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(drop([4, -1, -2],1),-5),3),-2),2)",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(drop(input,1),-5),3),-2),2)"
  },
  {
    "input": "input : list = [-3, 5, -3, -4, 0]\noutput : list = [-4, -3, -3, 0, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(reverse([-3, 5, -3, -4, 0]),17))),27)",
    "io_inp": [
      -3,
      5,
      -3,
      -4,
      0
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(reverse(input),17))),27)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_des([2, 5]),3)),10),2)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_des(input),3)),10),2)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-15, -12, 6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(mul_n([2, -5, -4],1),4),3)))",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -15,
      -12,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(mul_n(input,1),4),3)))"
  },
  {
    "input": "input : list = [-5, -2, 3, -3, 5]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(add_n(take([-5, -2, 3, -3, 5],2),-2),4)))",
    "io_inp": [
      -5,
      -2,
      3,
      -3,
      5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(add_n(take(input,2),-2),4)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [9, 0]",
    "output": "generated_output : list = sub_n(mul_n([5, -4],1),-4)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-4)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [15, -5, -20]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(mul_n([-3, 4, 0],5),13))),-5)",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      15,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(mul_n(input,5),13))),-5)"
  },
  {
    "input": "input : list = [1, 3, -1, 0]\noutput : list = [0, -1, 3, 1]",
    "output": "generated_output : list = reverse([1, 3, -1, 0])",
    "io_inp": [
      1,
      3,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 1, -2, -2]\noutput : list = [0, -3, -3, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des([-5, 1, -2, -2]),1)),41)",
    "io_inp": [
      -5,
      1,
      -2,
      -2
    ],
    "io_out": [
      0,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(input),1)),41)"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [1, 0, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([-4, 0, -3]),-1),-3)",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),-1),-3)"
  },
  {
    "input": "input : list = [-4, -4, -1, 3]\noutput : list = [-4, -4, -1, 3]",
    "output": "generated_output : list = sort_asc([-4, -4, -1, 3])",
    "io_inp": [
      -4,
      -4,
      -1,
      3
    ],
    "io_out": [
      -4,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -4, 2]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(take([-2, 1, -4, 2],1),18),3),-2),4)",
    "io_inp": [
      -2,
      1,
      -4,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(take(input,1),18),3),-2),4)"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [-16, -4]",
    "output": "generated_output : list = mul_n(drop(reverse([-1, -4, 3]),1),4)",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(reverse(input),1),4)"
  },
  {
    "input": "input : list = [5, 3, -3, -2, -3, -5]\noutput : list = [5, 3]",
    "output": "generated_output : list = take([5, 3, -3, -2, -3, -5],2)",
    "io_inp": [
      5,
      3,
      -3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -3, -2]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sort_des(add_n([-5, -3, -2],5))",
    "io_inp": [
      -5,
      -3,
      -2
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [1, 3, 0, 3, -5, 4]\noutput : list = [-8, -3, -2, 0, 0, 1]",
    "output": "generated_output : list = sub_n(sort_asc([1, 3, 0, 3, -5, 4]),3)",
    "io_inp": [
      1,
      3,
      0,
      3,
      -5,
      4
    ],
    "io_out": [
      -8,
      -3,
      -2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(sub_n([-1, 4],5))),22))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(sub_n(input,5))),22))"
  },
  {
    "input": "input : list = [-1, 0, 4, -1, 1, 5]\noutput : list = [4, 5, 9, 4, 6, 10]",
    "output": "generated_output : list = take(sub_n([-1, 0, 4, -1, 1, 5],-5),13)",
    "io_inp": [
      -1,
      0,
      4,
      -1,
      1,
      5
    ],
    "io_out": [
      4,
      5,
      9,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),13)"
  },
  {
    "input": "input : list = [5, -5, 5, 1]\noutput : list = [-5, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc([5, -5, 5, 1])),26)))",
    "io_inp": [
      5,
      -5,
      5,
      1
    ],
    "io_out": [
      -5,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc(input)),26)))"
  },
  {
    "input": "input : list = [-3, 2, -1, 3]\noutput : list = [4, 3, 0, -2]",
    "output": "generated_output : list = sort_des(take(add_n(take(sort_asc([-3, 2, -1, 3]),14),1),35))",
    "io_inp": [
      -3,
      2,
      -1,
      3
    ],
    "io_out": [
      4,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(sort_asc(input),14),1),35))"
  },
  {
    "input": "input : list = [4, -1, 4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(take(drop([4, -1, 4],1),12),20),3))",
    "io_inp": [
      4,
      -1,
      4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(drop(input,1),12),20),3))"
  },
  {
    "input": "input : list = [3, -3, 4, 0, 4, -2]\noutput : list = [4, 4, 3, 0, -2, -3]",
    "output": "generated_output : list = sort_des([3, -3, 4, 0, 4, -2])",
    "io_inp": [
      3,
      -3,
      4,
      0,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [12, 20]",
    "output": "generated_output : list = mul_n([-3, -5],-4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 0, -3, 4]\noutput : list = [-3, -2, 0, 4]",
    "output": "generated_output : list = sort_asc([-2, 0, -3, 4])",
    "io_inp": [
      -2,
      0,
      -3,
      4
    ],
    "io_out": [
      -3,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-6, -1]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(sub_n([-1, 4],4),-1))))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(sub_n(input,4),-1))))"
  },
  {
    "input": "input : list = [5, -2, -1, 4, -4, -3]\noutput : list = [-4, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(drop(take(sort_des(sort_des([5, -2, -1, 4, -4, -3])),20),2))",
    "io_inp": [
      5,
      -2,
      -1,
      4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(take(sort_des(sort_des(input)),20),2))"
  },
  {
    "input": "input : list = [-3, 5, -2, -2, -3, -5]\noutput : list = [0, 2, 3, 3, 10, 2]",
    "output": "generated_output : list = sub_n(reverse([-3, 5, -2, -2, -3, -5]),-5)",
    "io_inp": [
      -3,
      5,
      -2,
      -2,
      -3,
      -5
    ],
    "io_out": [
      0,
      2,
      3,
      3,
      10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-2, -1, -3, 4, -5]\noutput : list = [4, -1, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-2, -1, -3, 4, -5])",
    "io_inp": [
      -2,
      -1,
      -3,
      4,
      -5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, -5, -3, -5, -2]\noutput : list = [-8, -8, -8, -6, -5, 0]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(sort_asc([3, -5, -5, -3, -5, -2]),-1),-1),-3),29)",
    "io_inp": [
      3,
      -5,
      -5,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(sort_asc(input),-1),-1),-3),29)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [4, -2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(sub_n([1, -5],2)),5)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(sub_n(input,2)),5)))"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [-3, 2, -3]",
    "output": "generated_output : list = take(reverse([-3, 2, -3]),13)",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),13)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n([-5, 2],5)),4)),1)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n(input,5)),4)),1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-2, -11]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(add_n([5, -4],-3)),5),1))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(add_n(input,-3)),5),1))"
  },
  {
    "input": "input : list = [-3, 0, -3, -3, 0, 3]\noutput : list = [-6, -3, -6, -6, -3, 0]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(sub_n([-3, 0, -3, -3, 0, 3],-5),-3),3),-4),4)",
    "io_inp": [
      -3,
      0,
      -3,
      -3,
      0,
      3
    ],
    "io_out": [
      -6,
      -3,
      -6,
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(sub_n(input,-5),-3),3),-4),4)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(sub_n([1, -4],-3),8))))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(sub_n(input,-3),8))))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc([-3, -1]))),24)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(input))),24)"
  },
  {
    "input": "input : list = [-4, 3, 4]\noutput : list = [-4, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(sub_n([-4, 3, 4],4),1))),4)",
    "io_inp": [
      -4,
      3,
      4
    ],
    "io_out": [
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(sub_n(input,4),1))),4)"
  },
  {
    "input": "input : list = [-5, -3, -4, -2]\noutput : list = [-8, -6, -7, -5]",
    "output": "generated_output : list = sub_n([-5, -3, -4, -2],3)",
    "io_inp": [
      -5,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -6,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(drop([-4, -1, -4],1)))),1)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [-3, -3, -2, -2]\noutput : list = [25, 25, 20, 20]",
    "output": "generated_output : list = take(take(take(mul_n(sub_n([-3, -3, -2, -2],2),-5),18),10),29)",
    "io_inp": [
      -3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      25,
      25,
      20,
      20
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(sub_n(input,2),-5),18),10),29)"
  },
  {
    "input": "input : list = [5, -2, -4, 4]\noutput : list = [-4, -2, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -2, -4, 4])",
    "io_inp": [
      5,
      -2,
      -4,
      4
    ],
    "io_out": [
      -4,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, 5, 3, 3]\noutput : list = [2, 2, 4, 3, -1]",
    "output": "generated_output : list = take(sub_n(take(reverse(add_n([0, 4, 5, 3, 3],-3)),32),-2),41)",
    "io_inp": [
      0,
      4,
      5,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(add_n(input,-3)),32),-2),41)"
  },
  {
    "input": "input : list = [-4, -5, 4, 3, 0, 0]\noutput : list = [-8, -9, 0, -1, -4, -4]",
    "output": "generated_output : list = add_n([-4, -5, 4, 3, 0, 0],-4)",
    "io_inp": [
      -4,
      -5,
      4,
      3,
      0,
      0
    ],
    "io_out": [
      -8,
      -9,
      0,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = drop([3, 3, 3],1)",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(mul_n(take([3, 4, 0],1),2))",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),2))"
  },
  {
    "input": "input : list = [0, 3, -3, 2, 4, 3]\noutput : list = [-10, -7, -5, -4, -4, -3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sort_des([0, 3, -3, 2, 4, 3]),4))),-3)",
    "io_inp": [
      0,
      3,
      -3,
      2,
      4,
      3
    ],
    "io_out": [
      -10,
      -7,
      -5,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sort_des(input),4))),-3)"
  },
  {
    "input": "input : list = [-1, 0, -4, -3, -1, 4]\noutput : list = [-56, 4, 19, 19, 49, 64]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(mul_n([-1, 0, -4, -3, -1, 4],3),15),-5),4))",
    "io_inp": [
      -1,
      0,
      -4,
      -3,
      -1,
      4
    ],
    "io_out": [
      -56,
      4,
      19,
      19,
      49,
      64
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(mul_n(input,3),15),-5),4))"
  },
  {
    "input": "input : list = [3, 2, 5, 0, 3, -3]\noutput : list = [-6, -5, -8, -3, -6, 0]",
    "output": "generated_output : list = mul_n(add_n([3, 2, 5, 0, 3, -3],3),-1)",
    "io_inp": [
      3,
      2,
      5,
      0,
      3,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -8,
      -3,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-1)"
  },
  {
    "input": "input : list = [3, 2, -2, -1, 0]\noutput : list = [5, 7, 9]",
    "output": "generated_output : list = take(reverse(drop(sub_n(mul_n([3, 2, -2, -1, 0],-2),-5),2)),6)",
    "io_inp": [
      3,
      2,
      -2,
      -1,
      0
    ],
    "io_out": [
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(drop(sub_n(mul_n(input,-2),-5),2)),6)"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [3, 1, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(reverse([0, -5, 2])))),-1)",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [2, 3, -5, 5]\noutput : list = [-500, -300, -200, 500]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(mul_n([2, 3, -5, 5],5),5),-4)))",
    "io_inp": [
      2,
      3,
      -5,
      5
    ],
    "io_out": [
      -500,
      -300,
      -200,
      500
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(mul_n(input,5),5),-4)))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-8, -40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(add_n([5, -3],5))),4),-1)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -8,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(add_n(input,5))),4),-1)"
  },
  {
    "input": "input : list = [5, 1, -3, -5]\noutput : list = [16, 8, 0, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n([5, 1, -3, -5],3),2),2)),4)",
    "io_inp": [
      5,
      1,
      -3,
      -5
    ],
    "io_out": [
      16,
      8,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n(input,3),2),2)),4)"
  },
  {
    "input": "input : list = [-3, 0, -3, 3]\noutput : list = [-20, 10, -5]",
    "output": "generated_output : list = reverse(add_n(mul_n(drop([-3, 0, -3, 3],1),-5),-5))",
    "io_inp": [
      -3,
      0,
      -3,
      3
    ],
    "io_out": [
      -20,
      10,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(drop(input,1),-5),-5))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [5, -10]",
    "output": "generated_output : list = sort_des(mul_n([-2, 1],5))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [2, 4, 2, 0, -3]\noutput : list = [-1, 1, -1, -3, -6]",
    "output": "generated_output : list = add_n([2, 4, 2, 0, -3],-3)",
    "io_inp": [
      2,
      4,
      2,
      0,
      -3
    ],
    "io_out": [
      -1,
      1,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, 2, 2, 3, -4]\noutput : list = [-34, -18, -18, -26]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(mul_n([4, 2, 2, 3, -4],-4),4),2),4),-2)",
    "io_inp": [
      4,
      2,
      2,
      3,
      -4
    ],
    "io_out": [
      -34,
      -18,
      -18,
      -26
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(mul_n(input,-4),4),2),4),-2)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n([4, -1],-2)))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-2)))"
  },
  {
    "input": "input : list = [5, 5, -3, 1]\noutput : list = [14]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(take([5, 5, -3, 1],1),5)),3),-4)",
    "io_inp": [
      5,
      5,
      -3,
      1
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(take(input,1),5)),3),-4)"
  },
  {
    "input": "input : list = [-1, 1, -3, -4, 5]\noutput : list = [1, -3, -5, -7, -8]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des([-1, 1, -3, -4, 5])),-4))",
    "io_inp": [
      -1,
      1,
      -3,
      -4,
      5
    ],
    "io_out": [
      1,
      -3,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(input)),-4))"
  },
  {
    "input": "input : list = [2, -4, 2, 4, -2, -2]\noutput : list = [0, -24, 0, 8, -16, -16]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n(sub_n([2, -4, 2, 4, -2, -2],1),1)),4))",
    "io_inp": [
      2,
      -4,
      2,
      4,
      -2,
      -2
    ],
    "io_out": [
      0,
      -24,
      0,
      8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(sub_n(input,1),1)),4))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(sort_asc([1, -2]),4)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),4)"
  },
  {
    "input": "input : list = [1, -2, -5, -4]\noutput : list = [-6, -15, -24, -21]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n([1, -2, -5, -4],3),-2),-4),-3)",
    "io_inp": [
      1,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -15,
      -24,
      -21
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(input,3),-2),-4),-3)"
  },
  {
    "input": "input : list = [2, 0, 0, 0, -1]\noutput : list = [7, 5, 5, 5, 4]",
    "output": "generated_output : list = sub_n(sort_des([2, 0, 0, 0, -1]),-5)",
    "io_inp": [
      2,
      0,
      0,
      0,
      -1
    ],
    "io_out": [
      7,
      5,
      5,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-3, -3, 4, 1, 3, -4]\noutput : list = [9]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(mul_n([-3, -3, 4, 1, 3, -4],-3),1),1)))",
    "io_inp": [
      -3,
      -3,
      4,
      1,
      3,
      -4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(mul_n(input,-3),1),1)))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc([-3, 5])",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 1, -1, -5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = drop([-5, 1, -1, -5, 4],3)",
    "io_inp": [
      -5,
      1,
      -1,
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, 4, 0, -1, 5, 0]\noutput : list = [30, 24, 24, 6, 0, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(add_n([3, 4, 0, -1, 5, 0],-4),-3),26),2))",
    "io_inp": [
      3,
      4,
      0,
      -1,
      5,
      0
    ],
    "io_out": [
      30,
      24,
      24,
      6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(add_n(input,-4),-3),26),2))"
  },
  {
    "input": "input : list = [1, 4, -5, -4, 5, 2]\noutput : list = [10, 9, 7, 6, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(sub_n([1, 4, -5, -4, 5, 2],-3))),2))",
    "io_inp": [
      1,
      4,
      -5,
      -4,
      5,
      2
    ],
    "io_out": [
      10,
      9,
      7,
      6,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(sub_n(input,-3))),2))"
  },
  {
    "input": "input : list = [4, 2, -2, 5, 0]\noutput : list = [-4, -2, 2, -5, 0]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([4, 2, -2, 5, 0],-3),3),-1)",
    "io_inp": [
      4,
      2,
      -2,
      5,
      0
    ],
    "io_out": [
      -4,
      -2,
      2,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,-3),3),-1)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(sort_asc([5, 1, -5]),2),-1),-4),1)",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(sort_asc(input),2),-1),-4),1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [15, 40]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(add_n([4, -1],4))),5))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      15,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(add_n(input,4))),5))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(reverse([0, -5]))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 0, 1, -2, -5]\noutput : list = [-11, 4, 7, -2, -11]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n([-5, 0, 1, -2, -5],5),5),3),4)",
    "io_inp": [
      -5,
      0,
      1,
      -2,
      -5
    ],
    "io_out": [
      -11,
      4,
      7,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(input,5),5),3),4)"
  },
  {
    "input": "input : list = [4, 0, 5, 4]\noutput : list = [4, 0, 5, 4]",
    "output": "generated_output : list = reverse(reverse([4, 0, 5, 4]))",
    "io_inp": [
      4,
      0,
      5,
      4
    ],
    "io_out": [
      4,
      0,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -3, 5, 2, 4]\noutput : list = [-4, -5, -5, -7, -12]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(add_n([4, -3, 5, 2, 4],-4)))),5)",
    "io_inp": [
      4,
      -3,
      5,
      2,
      4
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(add_n(input,-4)))),5)"
  },
  {
    "input": "input : list = [3, 4, -2, -3, 2, -3]\noutput : list = [0, 0, 1, 5, 6, 7]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n(sub_n([3, 4, -2, -3, 2, -3],-3),1))))",
    "io_inp": [
      3,
      4,
      -2,
      -3,
      2,
      -3
    ],
    "io_out": [
      0,
      0,
      1,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(sub_n(input,-3),1))))"
  },
  {
    "input": "input : list = [-4, -5, 0, -3, -4]\noutput : list = [-11, -13]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(add_n([-4, -5, 0, -3, -4],-1),2),2),-3),4)",
    "io_inp": [
      -4,
      -5,
      0,
      -3,
      -4
    ],
    "io_out": [
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(add_n(input,-1),2),2),-3),4)"
  },
  {
    "input": "input : list = [-2, 5, 0, 0, 0, -5]\noutput : list = [9, 4, 4, 4, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc([-2, 5, 0, 0, 0, -5]),-1)),-3)",
    "io_inp": [
      -2,
      5,
      0,
      0,
      0,
      -5
    ],
    "io_out": [
      9,
      4,
      4,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(input),-1)),-3)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(mul_n([0, -2],2),7))),2)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(mul_n(input,2),7))),2)"
  },
  {
    "input": "input : list = [0, 5, -5, 3, -1]\noutput : list = [-12, -24, 0, -30, -15]",
    "output": "generated_output : list = mul_n(reverse(sub_n([0, 5, -5, 3, -1],-5)),-3)",
    "io_inp": [
      0,
      5,
      -5,
      3,
      -1
    ],
    "io_out": [
      -12,
      -24,
      0,
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-5)),-3)"
  },
  {
    "input": "input : list = [-1, -5, 4, 0, 1]\noutput : list = [-4, -2, -10, 8]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(drop([-1, -5, 4, 0, 1],1)),1),-2),46)",
    "io_inp": [
      -1,
      -5,
      4,
      0,
      1
    ],
    "io_out": [
      -4,
      -2,
      -10,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(drop(input,1)),1),-2),46)"
  },
  {
    "input": "input : list = [0, 4, 2, 5, 5]\noutput : list = [5, 9, 7, 10]",
    "output": "generated_output : list = take(add_n([0, 4, 2, 5, 5],5),4)",
    "io_inp": [
      0,
      4,
      2,
      5,
      5
    ],
    "io_out": [
      5,
      9,
      7,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),4)"
  },
  {
    "input": "input : list = [-1, 4, 2, -2, -2]\noutput : list = [6, 6, 2, 0, 5]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse([-1, 4, 2, -2, -2]),4),22),-1)",
    "io_inp": [
      -1,
      4,
      2,
      -2,
      -2
    ],
    "io_out": [
      6,
      6,
      2,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(input),4),22),-1)"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [-12, -6, -4]",
    "output": "generated_output : list = take(mul_n(sort_des(take(sub_n([1, 5, 2],-1),7)),-2),27)",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      -12,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(sub_n(input,-1),7)),-2),27)"
  },
  {
    "input": "input : list = [4, 5, -3, -3, -1, 3]\noutput : list = [3, 3, 1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des([4, 5, -3, -3, -1, 3])),-1)))",
    "io_inp": [
      4,
      5,
      -3,
      -3,
      -1,
      3
    ],
    "io_out": [
      3,
      3,
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-4, 0, 0, 0]\noutput : list = [65, 65, 65, 45]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(add_n([-4, 0, 0, 0],4)),5),4),5)",
    "io_inp": [
      -4,
      0,
      0,
      0
    ],
    "io_out": [
      65,
      65,
      65,
      45
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(add_n(input,4)),5),4),5)"
  },
  {
    "input": "input : list = [0, -2, 0, -1, 0, 5]\noutput : list = [4, -1, -2, -1, -3, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(take(reverse([0, -2, 0, -1, 0, 5]),12)),-1))",
    "io_inp": [
      0,
      -2,
      0,
      -1,
      0,
      5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(reverse(input),12)),-1))"
  },
  {
    "input": "input : list = [-3, -5, -3, 5]\noutput : list = [-8, -10, -8, 0]",
    "output": "generated_output : list = sub_n([-3, -5, -3, 5],5)",
    "io_inp": [
      -3,
      -5,
      -3,
      5
    ],
    "io_out": [
      -8,
      -10,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, 5, 3, 2, 3]\noutput : list = [3, 2, 3, 5, -2]",
    "output": "generated_output : list = reverse([-2, 5, 3, 2, 3])",
    "io_inp": [
      -2,
      5,
      3,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      3,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, 3, -5]\noutput : list = [3, 8, 8, 0]",
    "output": "generated_output : list = sub_n([-2, 3, 3, -5],-5)",
    "io_inp": [
      -2,
      3,
      3,
      -5
    ],
    "io_out": [
      3,
      8,
      8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, -4, 3, -2, -3]\noutput : list = [-6, -5, -4, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse([4, -4, 3, -2, -3]),3)),5)",
    "io_inp": [
      4,
      -4,
      3,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(input),3)),5)"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [0, 5, 5]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(sort_asc([0, -5, 0]))),5))",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [0, 4, 12]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_des([1, 3, 4])),-4)),-4)",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      0,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_des(input)),-4)),-4)"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [2, 3, 1]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(reverse([0, 2, 1]),1),2),-3),-1)",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      2,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(reverse(input),1),2),-3),-1)"
  },
  {
    "input": "input : list = [2, 4, -5, -1]\noutput : list = [-3, 1, 4, 6]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(sort_des([2, 4, -5, -1])),10),2))",
    "io_inp": [
      2,
      4,
      -5,
      -1
    ],
    "io_out": [
      -3,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(sort_des(input)),10),2))"
  },
  {
    "input": "input : list = [-2, 4, 0, -5, -5]\noutput : list = [9, 3]",
    "output": "generated_output : list = add_n(add_n(sort_des(take([-2, 4, 0, -5, -5],2)),2),3)",
    "io_inp": [
      -2,
      4,
      0,
      -5,
      -5
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(input,2)),2),3)"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [-7, -4, -2]",
    "output": "generated_output : list = sub_n([-5, -2, 0],2)",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, 2, 4, 2, 1]\noutput : list = [5, 6, 6, 8, 9]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sub_n([5, 2, 4, 2, 1],-4))),1),-1)",
    "io_inp": [
      5,
      2,
      4,
      2,
      1
    ],
    "io_out": [
      5,
      6,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sub_n(input,-4))),1),-1)"
  },
  {
    "input": "input : list = [0, 4, -1, -3]\noutput : list = [-3, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([0, 4, -1, -3])",
    "io_inp": [
      0,
      4,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n([1, 5],-1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 1, 0, 3, 2, 3]\noutput : list = [-27, 0, 9, 18, 27, 27]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc([-3, 1, 0, 3, 2, 3])),3),3)",
    "io_inp": [
      -3,
      1,
      0,
      3,
      2,
      3
    ],
    "io_out": [
      -27,
      0,
      9,
      18,
      27,
      27
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(input)),3),3)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = drop([-3, 5, -2],1)",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 5, -1]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(take([-4, 5, -1],1),1),2)),2)",
    "io_inp": [
      -4,
      5,
      -1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(take(input,1),1),2)),2)"
  },
  {
    "input": "input : list = [3, 1, -5, 2, -5, -3]\noutput : list = [9, 8, 7, 3, 1, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([3, 1, -5, 2, -5, -3]),-3),-3)",
    "io_inp": [
      3,
      1,
      -5,
      2,
      -5,
      -3
    ],
    "io_out": [
      9,
      8,
      7,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-3),-3)"
  },
  {
    "input": "input : list = [5, -1, -4, -4, -2]\noutput : list = [-2, -4, -4, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -4, -4, -2])",
    "io_inp": [
      5,
      -1,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, 1, -2, 3, -2]\noutput : list = [1, 2, 2, 2, 5, 7]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(add_n([-2, -3, 1, -2, 3, -2],4))),42),1)",
    "io_inp": [
      -2,
      -3,
      1,
      -2,
      3,
      -2
    ],
    "io_out": [
      1,
      2,
      2,
      2,
      5,
      7
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(add_n(input,4))),42),1)"
  },
  {
    "input": "input : list = [-3, 4, -2, -1, -5]\noutput : list = [-2, 5, -1, 0, -4]",
    "output": "generated_output : list = take(add_n([-3, 4, -2, -1, -5],1),12)",
    "io_inp": [
      -3,
      4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -2,
      5,
      -1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),12)"
  },
  {
    "input": "input : list = [-2, 5, 4, 0]\noutput : list = [-2, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(sort_asc([-2, 5, 4, 0])))))",
    "io_inp": [
      -2,
      5,
      4,
      0
    ],
    "io_out": [
      -2,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [-7, -4, -7]",
    "output": "generated_output : list = add_n([-3, 0, -3],-4)",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      -7,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 4, 1, -4]\noutput : list = [-4, -4, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, 4, 1, -4]))",
    "io_inp": [
      -4,
      4,
      1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -5, 1, -3, 5, -2]\noutput : list = [-25, -15, -10, -5, 5, 25]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(mul_n([-1, -5, 1, -3, 5, -2],5),19))),33)",
    "io_inp": [
      -1,
      -5,
      1,
      -3,
      5,
      -2
    ],
    "io_out": [
      -25,
      -15,
      -10,
      -5,
      5,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(mul_n(input,5),19))),33)"
  },
  {
    "input": "input : list = [5, -4, -4, -3, -1]\noutput : list = [10, 1]",
    "output": "generated_output : list = add_n(take([5, -4, -4, -3, -1],2),5)",
    "io_inp": [
      5,
      -4,
      -4,
      -3,
      -1
    ],
    "io_out": [
      10,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(add_n([-1, -5],-2))),-1))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(add_n(input,-2))),-1))"
  },
  {
    "input": "input : list = [-3, -2, 0, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(sort_des(drop([-3, -2, 0, 0, 3],3)))",
    "io_inp": [
      -3,
      -2,
      0,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,3)))"
  },
  {
    "input": "input : list = [2, -2, -3, 5, 3]\noutput : list = [7, 3, 2, 10, 8]",
    "output": "generated_output : list = add_n([2, -2, -3, 5, 3],5)",
    "io_inp": [
      2,
      -2,
      -3,
      5,
      3
    ],
    "io_out": [
      7,
      3,
      2,
      10,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, 5, 2]\noutput : list = [8, 8, 5, -1]",
    "output": "generated_output : list = add_n(sort_des([-4, 5, 5, 2]),3)",
    "io_inp": [
      -4,
      5,
      5,
      2
    ],
    "io_out": [
      8,
      8,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [2, -4, -5, 0]\noutput : list = [9, -6]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(drop([2, -4, -5, 0],2)),23),-3),3)",
    "io_inp": [
      2,
      -4,
      -5,
      0
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(drop(input,2)),23),-3),3)"
  },
  {
    "input": "input : list = [-4, -1, -5, 5, 5, -1]\noutput : list = [-4, -1, -5, 5, 5, -1]",
    "output": "generated_output : list = reverse(reverse([-4, -1, -5, 5, 5, -1]))",
    "io_inp": [
      -4,
      -1,
      -5,
      5,
      5,
      -1
    ],
    "io_out": [
      -4,
      -1,
      -5,
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des([-3, 0])",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(sub_n([4, -2, -3],-2)),-3)),19)",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(sub_n(input,-2)),-3)),19)"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [-22, -17, 3]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc([1, -4, -3])),5),2)",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      -22,
      -17,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(input)),5),2)"
  },
  {
    "input": "input : list = [-4, -3, 4, -4, 1, 0]\noutput : list = [7, -2, -5, -14, -17, -17]",
    "output": "generated_output : list = add_n(mul_n(sort_des([-4, -3, 4, -4, 1, 0]),3),-5)",
    "io_inp": [
      -4,
      -3,
      4,
      -4,
      1,
      0
    ],
    "io_out": [
      7,
      -2,
      -5,
      -14,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),3),-5)"
  },
  {
    "input": "input : list = [1, 0, -3, -2, 4, -1]\noutput : list = [2, 3, 4, 5, 6, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(add_n([1, 0, -3, -2, 4, -1],5)))))",
    "io_inp": [
      1,
      0,
      -3,
      -2,
      4,
      -1
    ],
    "io_out": [
      2,
      3,
      4,
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(add_n(input,5)))))"
  },
  {
    "input": "input : list = [-4, 1, 2, -1, -2, 5]\noutput : list = [-22, -12, -7, 3, 8, 23]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(mul_n([-4, 1, 2, -1, -2, 5],-1)),5),2),-1)",
    "io_inp": [
      -4,
      1,
      2,
      -1,
      -2,
      5
    ],
    "io_out": [
      -22,
      -12,
      -7,
      3,
      8,
      23
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(mul_n(input,-1)),5),2),-1)"
  },
  {
    "input": "input : list = [0, 3, 2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(sub_n([0, 3, 2],3)),-1),3),37)",
    "io_inp": [
      0,
      3,
      2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(sub_n(input,3)),-1),3),37)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [44, 24, 4]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(reverse([-5, -1, 3]),-5),5),-4),38)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      44,
      24,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(reverse(input),-5),5),-4),38)"
  },
  {
    "input": "input : list = [2, 0, 3, -3]\noutput : list = [-3, 3, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, 3, -3])",
    "io_inp": [
      2,
      0,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = sub_n([-5, 0],-5)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -3, -2]\noutput : list = [50, 50, 75]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(sort_asc([-2, -3, -2]))),-5),5)",
    "io_inp": [
      -2,
      -3,
      -2
    ],
    "io_out": [
      50,
      50,
      75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(sort_asc(input))),-5),5)"
  },
  {
    "input": "input : list = [0, 1, 3, 4, 1, -1]\noutput : list = [1]",
    "output": "generated_output : list = take(drop([0, 1, 3, 4, 1, -1],4),1)",
    "io_inp": [
      0,
      1,
      3,
      4,
      1,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,4),1)"
  },
  {
    "input": "input : list = [5, 4, 2, -3, 2, -5]\noutput : list = [0, -10, -35, -35, -45]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(sub_n([5, 4, 2, -3, 2, -5],-5),23)),5),-5)",
    "io_inp": [
      5,
      4,
      2,
      -3,
      2,
      -5
    ],
    "io_out": [
      0,
      -10,
      -35,
      -35,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(sub_n(input,-5),23)),5),-5)"
  },
  {
    "input": "input : list = [-3, -3, 3, -5, -5]\noutput : list = [-5, -5, -3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(drop([-3, -3, 3, -5, -5],1)))",
    "io_inp": [
      -3,
      -3,
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [1, 4, 2, 1, 5]\noutput : list = [5, 4, 2, 1, 1]",
    "output": "generated_output : list = sort_des([1, 4, 2, 1, 5])",
    "io_inp": [
      1,
      4,
      2,
      1,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -4, -4, -1, 5]\noutput : list = [21, 21, 6, -9, -24]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n([2, -4, -4, -1, 5],-1)),-5),-4))",
    "io_inp": [
      2,
      -4,
      -4,
      -1,
      5
    ],
    "io_out": [
      21,
      21,
      6,
      -9,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n(input,-1)),-5),-4))"
  },
  {
    "input": "input : list = [4, 3, 3]\noutput : list = [-11, -9, -9]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse([4, 3, 3]),-2)),-3)",
    "io_inp": [
      4,
      3,
      3
    ],
    "io_out": [
      -11,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(input),-2)),-3)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n([0, -1],-4),2)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(input,-4),2)))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sort_asc([1, 0]))),5),-5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sort_asc(input))),5),-5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des([2, 2])",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(sort_des([3, 1]),-1),-1),33),-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(sort_des(input),-1),-1),33),-4)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(sub_n([1, -1],-1))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-1))"
  },
  {
    "input": "input : list = [2, -4, -5]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(take([2, -4, -5],1)),3)),1)",
    "io_inp": [
      2,
      -4,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(take(input,1)),3)),1)"
  },
  {
    "input": "input : list = [5, 0, -2, -2, 0]\noutput : list = [-2, -2, 0, 0, 5]",
    "output": "generated_output : list = reverse(sort_des([5, 0, -2, -2, 0]))",
    "io_inp": [
      5,
      0,
      -2,
      -2,
      0
    ],
    "io_out": [
      -2,
      -2,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, 0, 3, 1, -3]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(add_n(drop([4, 0, 3, 1, -3],3),5)),-1),5)",
    "io_inp": [
      4,
      0,
      3,
      1,
      -3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(add_n(drop(input,3),5)),-1),5)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-9, 0]",
    "output": "generated_output : list = add_n([-4, 5],-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -5, -4, 2]\noutput : list = [-2, 4, 5, 5]",
    "output": "generated_output : list = mul_n(sort_des(take(take(reverse([-5, -5, -4, 2]),18),17)),-1)",
    "io_inp": [
      -5,
      -5,
      -4,
      2
    ],
    "io_out": [
      -2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(reverse(input),18),17)),-1)"
  },
  {
    "input": "input : list = [-1, 2, -2, 3, 2]\noutput : list = [-2, 2, 3]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(drop([-1, 2, -2, 3, 2],2))),31))",
    "io_inp": [
      -1,
      2,
      -2,
      3,
      2
    ],
    "io_out": [
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(drop(input,2))),31))"
  },
  {
    "input": "input : list = [0, -4, 0, 1, -4]\noutput : list = [1, 1, 5, 5, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des([0, -4, 0, 1, -4])),5)",
    "io_inp": [
      0,
      -4,
      0,
      1,
      -4
    ],
    "io_out": [
      1,
      1,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),5)"
  },
  {
    "input": "input : list = [4, 0, 4, 2]\noutput : list = [2, 4, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sub_n([4, 0, 4, 2],3))),5))",
    "io_inp": [
      4,
      0,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sub_n(input,3))),5))"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [3]",
    "output": "generated_output : list = take(reverse(sort_asc(take(take([3, 5, -5],1),10))),36)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(take(input,1),10))),36)"
  },
  {
    "input": "input : list = [3, 2, 1]\noutput : list = [-3, -6]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(drop([3, 2, 1],1),-3)),31))",
    "io_inp": [
      3,
      2,
      1
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(drop(input,1),-3)),31))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-3, 0],-1)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(mul_n([-2, 0],1)),-3)))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(mul_n(input,1)),-3)))"
  },
  {
    "input": "input : list = [5, -1, -2, -5, 5]\noutput : list = [-10, -60, -45, -40, -10]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(reverse([5, -1, -2, -5, 5]),3),4),8),5)",
    "io_inp": [
      5,
      -1,
      -2,
      -5,
      5
    ],
    "io_out": [
      -10,
      -60,
      -45,
      -40,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(reverse(input),3),4),8),5)"
  },
  {
    "input": "input : list = [4, -4, -5, -3]\noutput : list = [-5, -4, -3, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, -4, -5, -3]))",
    "io_inp": [
      4,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 0, 3, 0, -4]\noutput : list = [-2, 2, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(add_n(reverse([0, 0, 3, 0, -4]),2))",
    "io_inp": [
      0,
      0,
      3,
      0,
      -4
    ],
    "io_out": [
      -2,
      2,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),2))"
  },
  {
    "input": "input : list = [4, 5, 4, 1]\noutput : list = [72, 64, 64, 40]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(add_n([4, 5, 4, 1],3),-1),4)),2)",
    "io_inp": [
      4,
      5,
      4,
      1
    ],
    "io_out": [
      72,
      64,
      64,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(add_n(input,3),-1),4)),2)"
  },
  {
    "input": "input : list = [1, 5, -4, 4, 5]\noutput : list = [0, 5, 8, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc([1, 5, -4, 4, 5]),4)))",
    "io_inp": [
      1,
      5,
      -4,
      4,
      5
    ],
    "io_out": [
      0,
      5,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [-1, 3, -3]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sub_n(reverse(take(take(drop([-1, 3, -3],1),12),2)),4)",
    "io_inp": [
      -1,
      3,
      -3
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(drop(input,1),12),2)),4)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [7, 3]",
    "output": "generated_output : list = mul_n(add_n([3, -1],4),1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),1)"
  },
  {
    "input": "input : list = [2, -3, 4, -4]\noutput : list = [-5, 3]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(drop([2, -3, 4, -4],2)),-1),33),1)",
    "io_inp": [
      2,
      -3,
      4,
      -4
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(drop(input,2)),-1),33),1)"
  },
  {
    "input": "input : list = [-5, -5, -5, -2, -2, 0]\noutput : list = [-58, -58, -58, -28, -28, -8]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n(mul_n([-5, -5, -5, -2, -2, 0],-5),4)),17),-2)",
    "io_inp": [
      -5,
      -5,
      -5,
      -2,
      -2,
      0
    ],
    "io_out": [
      -58,
      -58,
      -58,
      -28,
      -28,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(mul_n(input,-5),4)),17),-2)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [-10, -8, -6]",
    "output": "generated_output : list = add_n(reverse(reverse(take(mul_n([-5, -3, -1],1),18))),-5)",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(mul_n(input,1),18))),-5)"
  },
  {
    "input": "input : list = [-2, 1, -5, 5, -3, -5]\noutput : list = [-72, -40, -16, -8, 8, 8]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(add_n([-2, 1, -5, 5, -3, -5],4),4)),-2),28)",
    "io_inp": [
      -2,
      1,
      -5,
      5,
      -3,
      -5
    ],
    "io_out": [
      -72,
      -40,
      -16,
      -8,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(add_n(input,4),4)),-2),28)"
  },
  {
    "input": "input : list = [-3, 2, -3, 5, -3]\noutput : list = [-3, -6, -11, -11, -11]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse([-3, 2, -3, 5, -3]),-4)),4)",
    "io_inp": [
      -3,
      2,
      -3,
      5,
      -3
    ],
    "io_out": [
      -3,
      -6,
      -11,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(input),-4)),4)"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [1, -8, -11]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n([4, 1, 5],-3))),-4)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      1,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(input,-3))),-4)"
  },
  {
    "input": "input : list = [-5, 5, -3, -5, -2]\noutput : list = [7, 7]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc([-5, 5, -3, -5, -2]),2),-1),2)",
    "io_inp": [
      -5,
      5,
      -3,
      -5,
      -2
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(input),2),-1),2)"
  },
  {
    "input": "input : list = [-4, 5, 4, -1, -2, -5]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = take(sort_des([-4, 5, 4, -1, -2, -5]),3)",
    "io_inp": [
      -4,
      5,
      4,
      -1,
      -2,
      -5
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),3)"
  },
  {
    "input": "input : list = [3, -5, 4, 0, 3]\noutput : list = [3, 0, 4, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 4, 0, 3])",
    "io_inp": [
      3,
      -5,
      4,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      4,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2, -4, -4, -4, -2]\noutput : list = [1, 1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(drop([-5, -2, -4, -4, -4, -2],1)),-4),-1))",
    "io_inp": [
      -5,
      -2,
      -4,
      -4,
      -4,
      -2
    ],
    "io_out": [
      1,
      1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(drop(input,1)),-4),-1))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [100, 40]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(mul_n([-5, -2],5))),2),-4)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      100,
      40
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(mul_n(input,5))),2),-4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(sub_n([-3, -5],1)),3)),22)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(sub_n(input,1)),3)),22)"
  },
  {
    "input": "input : list = [-3, -1, 0, 1, -2, 1]\noutput : list = [-6, -6, -7, -8, -9, -10]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(sort_des([-3, -1, 0, 1, -2, 1]),-4),3)),30)",
    "io_inp": [
      -3,
      -1,
      0,
      1,
      -2,
      1
    ],
    "io_out": [
      -6,
      -6,
      -7,
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(sort_des(input),-4),3)),30)"
  },
  {
    "input": "input : list = [-4, -2, -3, 5, 4]\noutput : list = [-16, -12, -8, 16, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des([-4, -2, -3, 5, 4]),4),27))",
    "io_inp": [
      -4,
      -2,
      -3,
      5,
      4
    ],
    "io_out": [
      -16,
      -12,
      -8,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(input),4),27))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [5, 3]",
    "output": "generated_output : list = sub_n([1, -1],-4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -2, 3, 5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = drop([-3, -2, 3, 5, -1],3)",
    "io_inp": [
      -3,
      -2,
      3,
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, -5, -1, 1, 4, -3]\noutput : list = [90, 135, 75, 45, 0, 105]",
    "output": "generated_output : list = mul_n(take(mul_n(take(sub_n([-2, -5, -1, 1, 4, -3],4),23),-3),10),5)",
    "io_inp": [
      -2,
      -5,
      -1,
      1,
      4,
      -3
    ],
    "io_out": [
      90,
      135,
      75,
      45,
      0,
      105
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(sub_n(input,4),23),-3),10),5)"
  },
  {
    "input": "input : list = [4, 3, 4, 2]\noutput : list = [8, 7, 8, 6]",
    "output": "generated_output : list = add_n(add_n(add_n([4, 3, 4, 2],-4),3),5)",
    "io_inp": [
      4,
      3,
      4,
      2
    ],
    "io_out": [
      8,
      7,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-4),3),5)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [-9, -5, -2]",
    "output": "generated_output : list = sub_n([-5, -1, 2],4)",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      -9,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, -3, -5]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = add_n([-2, -3, -5],2)",
    "io_inp": [
      -2,
      -3,
      -5
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-8, -4, 6]",
    "output": "generated_output : list = mul_n(mul_n([-4, -2, 3],-2),-1)",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -8,
      -4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),-1)"
  },
  {
    "input": "input : list = [-5, 3, -4, -5, 5]\noutput : list = [4, -6, -5, 2, -6]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n([-5, 3, -4, -5, 5],-1),1),-1))",
    "io_inp": [
      -5,
      3,
      -4,
      -5,
      5
    ],
    "io_out": [
      4,
      -6,
      -5,
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(input,-1),1),-1))"
  },
  {
    "input": "input : list = [-1, -3, 2, -2, 5]\noutput : list = [5, 2, -1, -2, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 2, -2, 5])",
    "io_inp": [
      -1,
      -3,
      2,
      -2,
      5
    ],
    "io_out": [
      5,
      2,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, -2, 2, 4]\noutput : list = [-15, -9, -9, 3, 27]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(mul_n([5, 4, -2, 2, 4],-2)),5),3))",
    "io_inp": [
      5,
      4,
      -2,
      2,
      4
    ],
    "io_out": [
      -15,
      -9,
      -9,
      3,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(mul_n(input,-2)),5),3))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [16, 36]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(reverse([-5, 0])),4),-4))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      16,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(reverse(input)),4),-4))"
  },
  {
    "input": "input : list = [-3, 4, 1, 2, 4, 0]\noutput : list = [19, -1, -6, -16]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(take([-3, 4, 1, 2, 4, 0],4),-5),4)))",
    "io_inp": [
      -3,
      4,
      1,
      2,
      4,
      0
    ],
    "io_out": [
      19,
      -1,
      -6,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(take(input,4),-5),4)))"
  },
  {
    "input": "input : list = [-4, 0, 1, 3, -2]\noutput : list = [-4, -2, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([-4, 0, 1, 3, -2])",
    "io_inp": [
      -4,
      0,
      1,
      3,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 2, 3, 5]\noutput : list = [9, 7, 6]",
    "output": "generated_output : list = sort_des(add_n(take(take(drop([-1, -4, 2, 3, 5],2),12),29),4))",
    "io_inp": [
      -1,
      -4,
      2,
      3,
      5
    ],
    "io_out": [
      9,
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(drop(input,2),12),29),4))"
  },
  {
    "input": "input : list = [-4, 1, 2, 0, 2, -5]\noutput : list = [1, -4]",
    "output": "generated_output : list = drop(reverse([-4, 1, 2, 0, 2, -5]),4)",
    "io_inp": [
      -4,
      1,
      2,
      0,
      2,
      -5
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = drop(reverse(input),4)"
  },
  {
    "input": "input : list = [-1, 3, 2, -4]\noutput : list = [1, 4, 7, 8]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse(reverse([-1, 3, 2, -4])),-5)))",
    "io_inp": [
      -1,
      3,
      2,
      -4
    ],
    "io_out": [
      1,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [0, -2, -5, -5, 3]\noutput : list = [-6, 0, 4, 10, 10]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(mul_n([0, -2, -5, -5, 3],-2)))),48)",
    "io_inp": [
      0,
      -2,
      -5,
      -5,
      3
    ],
    "io_out": [
      -6,
      0,
      4,
      10,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(mul_n(input,-2)))),48)"
  },
  {
    "input": "input : list = [1, 5, -1, 2, -3]\noutput : list = [-6, -2, 2, 4, 10]",
    "output": "generated_output : list = mul_n(sort_asc([1, 5, -1, 2, -3]),2)",
    "io_inp": [
      1,
      5,
      -1,
      2,
      -3
    ],
    "io_out": [
      -6,
      -2,
      2,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [52, 16]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(sub_n([-5, 4],-1),-5),23),-4),-4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      52,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(sub_n(input,-1),-5),23),-4),-4)"
  },
  {
    "input": "input : list = [0, 0, 1, -5]\noutput : list = [14, 9, 9, -16]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(add_n([0, 0, 1, -5],4),-3),5),-4))",
    "io_inp": [
      0,
      0,
      1,
      -5
    ],
    "io_out": [
      14,
      9,
      9,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(add_n(input,4),-3),5),-4))"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [3, 2, -6]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(sub_n([-4, 4, 5],3))),1),44)",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      3,
      2,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(sub_n(input,3))),1),44)"
  },
  {
    "input": "input : list = [3, -5, 4, -1, 5, 5]\noutput : list = [7, 7, 1, 6, -3, 5]",
    "output": "generated_output : list = take(reverse(sub_n([3, -5, 4, -1, 5, 5],-2)),29)",
    "io_inp": [
      3,
      -5,
      4,
      -1,
      5,
      5
    ],
    "io_out": [
      7,
      7,
      1,
      6,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,-2)),29)"
  },
  {
    "input": "input : list = [-4, -1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(drop([-4, -1, -1],1),7)",
    "io_inp": [
      -4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),7)"
  },
  {
    "input": "input : list = [2, 4, 1, 3, 2, 0]\noutput : list = [-2, -3, -4, -5]",
    "output": "generated_output : list = add_n(take(sort_des(take(drop([2, 4, 1, 3, 2, 0],2),9)),40),-5)",
    "io_inp": [
      2,
      4,
      1,
      3,
      2,
      0
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(drop(input,2),9)),40),-5)"
  },
  {
    "input": "input : list = [2, 1, 1, 1, -5, -1]\noutput : list = [-6, -2, 0, 0, 0, 1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n([2, 1, 1, 1, -5, -1],-1)),-2),2)",
    "io_inp": [
      2,
      1,
      1,
      1,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -2,
      0,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(input,-1)),-2),2)"
  },
  {
    "input": "input : list = [4, -1, 4]\noutput : list = [0, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(sub_n([4, -1, 4],-3),2),1)),-3)",
    "io_inp": [
      4,
      -1,
      4
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(sub_n(input,-3),2),1)),-3)"
  },
  {
    "input": "input : list = [0, -2, -4, 0, 3, -3]\noutput : list = [0, 1, 2, 4, 4, 7]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(reverse([0, -2, -4, 0, 3, -3]),-4))))",
    "io_inp": [
      0,
      -2,
      -4,
      0,
      3,
      -3
    ],
    "io_out": [
      0,
      1,
      2,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(reverse(input),-4))))"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-5, -4, 2]",
    "output": "generated_output : list = sort_asc([2, -5, -4])",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, 4, -1]\noutput : list = [3]",
    "output": "generated_output : list = reverse(take([3, 5, 4, -1],1))",
    "io_inp": [
      3,
      5,
      4,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-2, 0, -3, -3, 4]\noutput : list = [16, 16, 8, -8, -40]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(add_n([-2, 0, -3, -3, 4],1),-2),10),4))",
    "io_inp": [
      -2,
      0,
      -3,
      -3,
      4
    ],
    "io_out": [
      16,
      16,
      8,
      -8,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(add_n(input,1),-2),10),4))"
  },
  {
    "input": "input : list = [0, 2, -3, 0, 3]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(take([0, 2, -3, 0, 3],2))",
    "io_inp": [
      0,
      2,
      -3,
      0,
      3
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [5, 3, 1, 0, 4]\noutput : list = [9, 8, 7, 5, 4]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sub_n([5, 3, 1, 0, 4],2)),1)),5)",
    "io_inp": [
      5,
      3,
      1,
      0,
      4
    ],
    "io_out": [
      9,
      8,
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sub_n(input,2)),1)),5)"
  },
  {
    "input": "input : list = [4, 1, -3, -3, 2, 5]\noutput : list = [-1, -4, -8, -8, -3, 0]",
    "output": "generated_output : list = add_n([4, 1, -3, -3, 2, 5],-5)",
    "io_inp": [
      4,
      1,
      -3,
      -3,
      2,
      5
    ],
    "io_out": [
      -1,
      -4,
      -8,
      -8,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(add_n([4, -2, -2],1))),-1),32)",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(add_n(input,1))),-1),32)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-2, -8, -9]",
    "output": "generated_output : list = sort_des(sub_n([-4, 3, -3],5))",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -2,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(sort_des(add_n([0, -1],-2)),14)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-2)),14)"
  },
  {
    "input": "input : list = [4, -5, -1, 5]\noutput : list = [2, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(drop([4, -5, -1, 5],2),-3))))",
    "io_inp": [
      4,
      -5,
      -1,
      5
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(drop(input,2),-3))))"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [25, 31, 25]",
    "output": "generated_output : list = add_n(take(mul_n(add_n([-2, -4, -2],-5),-3),20),4)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      25,
      31,
      25
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(add_n(input,-5),-3),20),4)"
  },
  {
    "input": "input : list = [1, -4, 4, 0]\noutput : list = [-2, -5, -6, -10]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(reverse([1, -4, 4, 0]),5))),1)",
    "io_inp": [
      1,
      -4,
      4,
      0
    ],
    "io_out": [
      -2,
      -5,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(reverse(input),5))),1)"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [5, 5, 1]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sub_n([4, 0, 0],5)),25),31),-1)",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sub_n(input,5)),25),31),-1)"
  },
  {
    "input": "input : list = [-2, 5, 4, 1, -1]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = drop([-2, 5, 4, 1, -1],2)",
    "io_inp": [
      -2,
      5,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = take(sort_asc(sort_des([-2, 0, 1])),7)",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),7)"
  },
  {
    "input": "input : list = [-1, 1, -1, 2]\noutput : list = [-4, -5, -7, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sub_n([-1, 1, -1, 2],2)),3),-5),4)",
    "io_inp": [
      -1,
      1,
      -1,
      2
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sub_n(input,2)),3),-5),4)"
  },
  {
    "input": "input : list = [3, -2, -1, 0]\noutput : list = [3, 0, -1, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(take(sort_des([3, -2, -1, 0]),21))),30)",
    "io_inp": [
      3,
      -2,
      -1,
      0
    ],
    "io_out": [
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(sort_des(input),21))),30)"
  },
  {
    "input": "input : list = [5, 2, -1, 4]\noutput : list = [1, 7, 11, 13]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n([5, 2, -1, 4],2),17)),3)",
    "io_inp": [
      5,
      2,
      -1,
      4
    ],
    "io_out": [
      1,
      7,
      11,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(input,2),17)),3)"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = drop([-4, 5, -3],1)",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -4, 2, 4]\noutput : list = [2, 2, 0, -6]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(reverse([4, -4, 2, 4])),4),2),4)",
    "io_inp": [
      4,
      -4,
      2,
      4
    ],
    "io_out": [
      2,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(reverse(input)),4),2),4)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse(take(drop([5, 1, 3],1),4))",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),4))"
  },
  {
    "input": "input : list = [5, -3, -1, 3]\noutput : list = [-3, -1, 3, 5]",
    "output": "generated_output : list = sort_asc([5, -3, -1, 3])",
    "io_inp": [
      5,
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3, 0, 1, -4]\noutput : list = [-3, 0, -3, -4, 1]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(add_n([0, -3, 0, 1, -4],3),-1),18)))",
    "io_inp": [
      0,
      -3,
      0,
      1,
      -4
    ],
    "io_out": [
      -3,
      0,
      -3,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(add_n(input,3),-1),18)))"
  },
  {
    "input": "input : list = [5, -3, 3, 4]\noutput : list = [-3, 0, 3, 21]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n([5, -3, 3, 4],3),-3)),3))",
    "io_inp": [
      5,
      -3,
      3,
      4
    ],
    "io_out": [
      -3,
      0,
      3,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n(input,3),-3)),3))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [0, -7]",
    "output": "generated_output : list = take(sort_des(add_n([-2, 5],-5)),12)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-5)),12)"
  },
  {
    "input": "input : list = [2, -1, -4, 4]\noutput : list = [8, 0, 3, 6]",
    "output": "generated_output : list = reverse(add_n([2, -1, -4, 4],4))",
    "io_inp": [
      2,
      -1,
      -4,
      4
    ],
    "io_out": [
      8,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [-4, 5, -3, 2, 0, 1]\noutput : list = [4, 1, 0, -1, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n([-4, 5, -3, 2, 0, 1],-2),23))),-3)",
    "io_inp": [
      -4,
      5,
      -3,
      2,
      0,
      1
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n(input,-2),23))),-3)"
  },
  {
    "input": "input : list = [-2, 2, -5, 0]\noutput : list = [2, 27, -8, 12]",
    "output": "generated_output : list = sub_n(mul_n(take(take(reverse([-2, 2, -5, 0]),13),17),-5),-2)",
    "io_inp": [
      -2,
      2,
      -5,
      0
    ],
    "io_out": [
      2,
      27,
      -8,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(take(reverse(input),13),17),-5),-2)"
  },
  {
    "input": "input : list = [-4, 3, 5, -1]\noutput : list = [-24, 4, 12, -12]",
    "output": "generated_output : list = mul_n(add_n([-4, 3, 5, -1],-2),4)",
    "io_inp": [
      -4,
      3,
      5,
      -1
    ],
    "io_out": [
      -24,
      4,
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),4)"
  },
  {
    "input": "input : list = [-5, 3, 1, 4, -2]\noutput : list = [24, 0, 6, -3, 15]",
    "output": "generated_output : list = add_n(mul_n(add_n([-5, 3, 1, 4, -2],-4),-3),-3)",
    "io_inp": [
      -5,
      3,
      1,
      4,
      -2
    ],
    "io_out": [
      24,
      0,
      6,
      -3,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-4),-3),-3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [12, 6]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(sort_asc([1, 4]),2),4)),4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(sort_asc(input),2),4)),4)"
  },
  {
    "input": "input : list = [-3, -4, -1, 3]\noutput : list = [3, -1, -3, -4]",
    "output": "generated_output : list = take(sort_des(reverse(reverse([-3, -4, -1, 3]))),25)",
    "io_inp": [
      -3,
      -4,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(input))),25)"
  },
  {
    "input": "input : list = [-4, 0, 1, 0]\noutput : list = [6, 1, 1, -19]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sort_asc([-4, 0, 1, 0])),5),-1))",
    "io_inp": [
      -4,
      0,
      1,
      0
    ],
    "io_out": [
      6,
      1,
      1,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sort_asc(input)),5),-1))"
  },
  {
    "input": "input : list = [-2, -3, -5, -2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take([-2, -3, -5, -2],2),-1)),-5)",
    "io_inp": [
      -2,
      -3,
      -5,
      -2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(input,2),-1)),-5)"
  },
  {
    "input": "input : list = [1, 1, -1, -2, -1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_des(drop([1, 1, -1, -2, -1, 5],4)))))",
    "io_inp": [
      1,
      1,
      -1,
      -2,
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_des(drop(input,4)))))"
  },
  {
    "input": "input : list = [0, 1, -4, -5]\noutput : list = [9, 12]",
    "output": "generated_output : list = mul_n(add_n(take([0, 1, -4, -5],2),3),3)",
    "io_inp": [
      0,
      1,
      -4,
      -5
    ],
    "io_out": [
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,2),3),3)"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take([-4, 3, 2],1))",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-5, -2, 1, -5]\noutput : list = [-5, -5, -2, 1]",
    "output": "generated_output : list = sort_asc([-5, -2, 1, -5])",
    "io_inp": [
      -5,
      -2,
      1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = take(take(reverse(sort_des(sub_n([-3, -4, 0],-1))),16),32)",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(sub_n(input,-1))),16),32)"
  },
  {
    "input": "input : list = [-4, 2, 2, 3, 1, 0]\noutput : list = [5, 1, 0, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(mul_n(sort_des([-4, 2, 2, 3, 1, 0]),-1)),-1))",
    "io_inp": [
      -4,
      2,
      2,
      3,
      1,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(mul_n(sort_des(input),-1)),-1))"
  },
  {
    "input": "input : list = [2, 2, 2, -5, 3]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(sub_n(take([2, 2, 2, -5, 3],2),2),5)",
    "io_inp": [
      2,
      2,
      2,
      -5,
      3
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,2),2),5)"
  },
  {
    "input": "input : list = [-1, 2, 4, -5]\noutput : list = [-5, 4, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, 4, -5])",
    "io_inp": [
      -1,
      2,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, -1, -5, 1, 5]\noutput : list = [-4, 0, 0, 1, 2, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des([0, -1, -1, -5, 1, 5])),1)",
    "io_inp": [
      0,
      -1,
      -1,
      -5,
      1,
      5
    ],
    "io_out": [
      -4,
      0,
      0,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [5, 3, -3, 5, 3, 3]\noutput : list = [-9, -3, -3, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(sub_n([5, 3, -3, 5, 3, 3],4)),2)))",
    "io_inp": [
      5,
      3,
      -3,
      5,
      3,
      3
    ],
    "io_out": [
      -9,
      -3,
      -3,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(sub_n(input,4)),2)))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(sub_n([-2, -2],-4))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-5, 0, -1, 4, 4]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(take([-5, 0, -1, 4, 4],1)),15)),5)",
    "io_inp": [
      -5,
      0,
      -1,
      4,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(take(input,1)),15)),5)"
  },
  {
    "input": "input : list = [-3, 0, -2, 1, 1]\noutput : list = [-2, -1, 1, 2, 2]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(sort_des([-3, 0, -2, 1, 1])),1),-1),3)",
    "io_inp": [
      -3,
      0,
      -2,
      1,
      1
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(sort_des(input)),1),-1),3)"
  },
  {
    "input": "input : list = [-4, 2, -5, 3]\noutput : list = [-4, -8, -32, -36]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(sub_n([-4, 2, -5, 3],-1),12),5),4))",
    "io_inp": [
      -4,
      2,
      -5,
      3
    ],
    "io_out": [
      -4,
      -8,
      -32,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(sub_n(input,-1),12),5),4))"
  },
  {
    "input": "input : list = [-5, 5, -2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(take([-5, 5, -2],1))),-1),5)",
    "io_inp": [
      -5,
      5,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(take(input,1))),-1),5)"
  },
  {
    "input": "input : list = [4, 5, -3, 5, 3]\noutput : list = [4, 2, 10, 2, 3]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(mul_n([4, 5, -3, 5, 3],-1),-2)),20),5)",
    "io_inp": [
      4,
      5,
      -3,
      5,
      3
    ],
    "io_out": [
      4,
      2,
      10,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(mul_n(input,-1),-2)),20),5)"
  },
  {
    "input": "input : list = [3, -1, -5, -2, 0, -5]\noutput : list = [-16, -16, -4, 0, 4, 16]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(sort_des([3, -1, -5, -2, 0, -5]),9),4)),4)",
    "io_inp": [
      3,
      -1,
      -5,
      -2,
      0,
      -5
    ],
    "io_out": [
      -16,
      -16,
      -4,
      0,
      4,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(sort_des(input),9),4)),4)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [-2, 2, 6]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(sort_asc([-1, 3, -5]),3))),22)",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(sort_asc(input),3))),22)"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [-26, 14, -1]",
    "output": "generated_output : list = sub_n(add_n(mul_n([5, -3, 0],-5),-3),-2)",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      -26,
      14,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-5),-3),-2)"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [-10, 10, 14]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(mul_n([-3, -4, 2],-2),17),-1),2))",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      -10,
      10,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(mul_n(input,-2),17),-1),2))"
  },
  {
    "input": "input : list = [-4, -3, 5, -1, 3, -3]\noutput : list = [-8, -2, -6, 0, -8, -9]",
    "output": "generated_output : list = sub_n(add_n(reverse([-4, -3, 5, -1, 3, -3]),-3),2)",
    "io_inp": [
      -4,
      -3,
      5,
      -1,
      3,
      -3
    ],
    "io_out": [
      -8,
      -2,
      -6,
      0,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-3),2)"
  },
  {
    "input": "input : list = [4, -4, -1, 2, -1]\noutput : list = [-24, -12, -12, 0, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([4, -4, -1, 2, -1]),2),4)",
    "io_inp": [
      4,
      -4,
      -1,
      2,
      -1
    ],
    "io_out": [
      -24,
      -12,
      -12,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),2),4)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-60, -60]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sort_des([2, 2]),-3),-5),2),-1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -60,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sort_des(input),-3),-5),2),-1)"
  },
  {
    "input": "input : list = [-5, -5, 2, 3]\noutput : list = [1, 0, -7, -7]",
    "output": "generated_output : list = reverse(add_n([-5, -5, 2, 3],-2))",
    "io_inp": [
      -5,
      -5,
      2,
      3
    ],
    "io_out": [
      1,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [0, -4, 4, -2, 1, -4]\noutput : list = [-1, 11, -13, 5, -4, 11]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(mul_n([0, -4, 4, -2, 1, -4],-3),1)),-1))",
    "io_inp": [
      0,
      -4,
      4,
      -2,
      1,
      -4
    ],
    "io_out": [
      -1,
      11,
      -13,
      5,
      -4,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(mul_n(input,-3),1)),-1))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-20, -16]",
    "output": "generated_output : list = mul_n([-5, -4],4)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 4, -4, -2]\noutput : list = [9, 7, 3, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n([2, 4, -4, -2],2)),3))",
    "io_inp": [
      2,
      4,
      -4,
      -2
    ],
    "io_out": [
      9,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(input,2)),3))"
  },
  {
    "input": "input : list = [1, -1, 3, -2]\noutput : list = [-2, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des([1, -1, 3, -2]))",
    "io_inp": [
      1,
      -1,
      3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 5, -1],1)",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 4, 5]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(take([0, 4, 5],1),-4),-5)))",
    "io_inp": [
      0,
      4,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(take(input,1),-4),-5)))"
  },
  {
    "input": "input : list = [-3, 3, 3, -1, -4, 1]\noutput : list = [-4, -3, -1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([-3, 3, 3, -1, -4, 1])",
    "io_inp": [
      -3,
      3,
      3,
      -1,
      -4,
      1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, 2, -3, -5, -3]\noutput : list = [25, 15, 15, 10, -10, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_des([4, -2, 2, -3, -5, -3]))),-5))",
    "io_inp": [
      4,
      -2,
      2,
      -3,
      -5,
      -3
    ],
    "io_out": [
      25,
      15,
      15,
      10,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-4, 5, 1, 5, 3]\noutput : list = [0, 0, -2, -4]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(sort_des([-4, 5, 1, 5, 3])),-5)),4)",
    "io_inp": [
      -4,
      5,
      1,
      5,
      3
    ],
    "io_out": [
      0,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(sort_des(input)),-5)),4)"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(take([4, -1, 1],1),-4),8),-4))",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(take(input,1),-4),8),-4))"
  },
  {
    "input": "input : list = [-1, 0, 0, -3, -2]\noutput : list = [2, 3, 3, 0, 1]",
    "output": "generated_output : list = add_n([-1, 0, 0, -3, -2],3)",
    "io_inp": [
      -1,
      0,
      0,
      -3,
      -2
    ],
    "io_out": [
      2,
      3,
      3,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, -5, 5, -3]\noutput : list = [16, 8, -24, -24]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(mul_n(sort_des([5, -5, 5, -3]),-4),-1),5))",
    "io_inp": [
      5,
      -5,
      5,
      -3
    ],
    "io_out": [
      16,
      8,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(mul_n(sort_des(input),-4),-1),5))"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [0, 30, 30]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(sub_n([-1, -1, 5],4),-4),3),-5))",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      0,
      30,
      30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(sub_n(input,4),-4),3),-5))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-4, -8]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n([0, 2],5),2),2))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(input,5),2),2))"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [-6, 2, -5]",
    "output": "generated_output : list = sub_n(add_n([-5, 3, -4],-3),-2)",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      -6,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),-2)"
  },
  {
    "input": "input : list = [0, 2, 4, 2]\noutput : list = [-18]",
    "output": "generated_output : list = mul_n(take(drop(take(mul_n([0, 2, 4, 2],-3),17),3),28),3)",
    "io_inp": [
      0,
      2,
      4,
      2
    ],
    "io_out": [
      -18
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(take(mul_n(input,-3),17),3),28),3)"
  },
  {
    "input": "input : list = [3, -1, -5, -3, 2, -4]\noutput : list = [-4, 2, -3, -5, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, -5, -3, 2, -4])",
    "io_inp": [
      3,
      -1,
      -5,
      -3,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -3,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, -5, -4]\noutput : list = [-10, -5, 20, 35]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(add_n([1, 4, -5, -4],3),-5)),-1))",
    "io_inp": [
      1,
      4,
      -5,
      -4
    ],
    "io_out": [
      -10,
      -5,
      20,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(add_n(input,3),-5)),-1))"
  },
  {
    "input": "input : list = [0, -4, 3, 5, 2]\noutput : list = [6, 4, 3, 1, -3]",
    "output": "generated_output : list = sort_des(take(take(sub_n(sub_n([0, -4, 3, 5, 2],2),-3),12),31))",
    "io_inp": [
      0,
      -4,
      3,
      5,
      2
    ],
    "io_out": [
      6,
      4,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(sub_n(input,2),-3),12),31))"
  },
  {
    "input": "input : list = [4, -2, -1]\noutput : list = [-11, 9, 13]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(sort_asc([4, -2, -1]),-4),-4),-1))",
    "io_inp": [
      4,
      -2,
      -1
    ],
    "io_out": [
      -11,
      9,
      13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(sort_asc(input),-4),-4),-1))"
  },
  {
    "input": "input : list = [0, 2, 5, 2, -2]\noutput : list = [5, 2, 2, 0, -2]",
    "output": "generated_output : list = sort_des(reverse([0, 2, 5, 2, -2]))",
    "io_inp": [
      0,
      2,
      5,
      2,
      -2
    ],
    "io_out": [
      5,
      2,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, 2, 1, -1, -4]\noutput : list = [10, 10, 5, -5, -20]",
    "output": "generated_output : list = mul_n([2, 2, 1, -1, -4],5)",
    "io_inp": [
      2,
      2,
      1,
      -1,
      -4
    ],
    "io_out": [
      10,
      10,
      5,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-4, -4, -1, -2, -4, 3]\noutput : list = [-2, -4, 3]",
    "output": "generated_output : list = drop([-4, -4, -1, -2, -4, 3],3)",
    "io_inp": [
      -4,
      -4,
      -1,
      -2,
      -4,
      3
    ],
    "io_out": [
      -2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [23, 20, 8]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(sub_n([-3, 1, 2],-4)),3),5))",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      23,
      20,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(sub_n(input,-4)),3),5))"
  },
  {
    "input": "input : list = [-4, -5, -3, 4, 4]\noutput : list = [-20, -20, 15, 20, 25]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sort_asc([-4, -5, -3, 4, 4]),-5),12)),44)",
    "io_inp": [
      -4,
      -5,
      -3,
      4,
      4
    ],
    "io_out": [
      -20,
      -20,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sort_asc(input),-5),12)),44)"
  },
  {
    "input": "input : list = [-5, 3, -2, -4]\noutput : list = [-8, 16, 1, -5]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(sub_n([-5, 3, -2, -4],-2)),3)),1)",
    "io_inp": [
      -5,
      3,
      -2,
      -4
    ],
    "io_out": [
      -8,
      16,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(sub_n(input,-2)),3)),1)"
  },
  {
    "input": "input : list = [-4, 3, 1, 5]\noutput : list = [1, 8, 6, 10]",
    "output": "generated_output : list = sub_n([-4, 3, 1, 5],-5)",
    "io_inp": [
      -4,
      3,
      1,
      5
    ],
    "io_out": [
      1,
      8,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 3, -5, 5, -1]\noutput : list = [4, 4, 8, 12, 14]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_asc([-5, 3, -5, 5, -1]),-5))),4)",
    "io_inp": [
      -5,
      3,
      -5,
      5,
      -1
    ],
    "io_out": [
      4,
      4,
      8,
      12,
      14
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_asc(input),-5))),4)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = add_n(sort_asc(take(take(add_n([-2, 2],-5),5),16)),2)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(add_n(input,-5),5),16)),2)"
  },
  {
    "input": "input : list = [5, -2, -4, -3, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(take([5, -2, -4, -3, 1],1),-1),5)),26)",
    "io_inp": [
      5,
      -2,
      -4,
      -3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(take(input,1),-1),5)),26)"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [5, 4, -3]",
    "output": "generated_output : list = take(add_n([3, 2, -5],2),17)",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),17)"
  },
  {
    "input": "input : list = [3, 1, -1, 1, 4]\noutput : list = [1, -1, -3, -1, 2]",
    "output": "generated_output : list = add_n([3, 1, -1, 1, 4],-2)",
    "io_inp": [
      3,
      1,
      -1,
      1,
      4
    ],
    "io_out": [
      1,
      -1,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-2, -9]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(drop([2, -5, 2],1),5))),-1)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(drop(input,1),5))),-1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-4, -11]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sort_asc([-3, 4]),12)),-3),5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -4,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sort_asc(input),12)),-3),5)"
  },
  {
    "input": "input : list = [-2, -2, 1, -4, 2, -5]\noutput : list = [-2, 5, -1, 4, 1, 1]",
    "output": "generated_output : list = add_n(sub_n(reverse([-2, -2, 1, -4, 2, -5]),-1),2)",
    "io_inp": [
      -2,
      -2,
      1,
      -4,
      2,
      -5
    ],
    "io_out": [
      -2,
      5,
      -1,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),-1),2)"
  },
  {
    "input": "input : list = [-1, 1, -5, -5, 1]\noutput : list = [-4, -2, -8]",
    "output": "generated_output : list = add_n(add_n(take([-1, 1, -5, -5, 1],3),-4),1)",
    "io_inp": [
      -1,
      1,
      -5,
      -5,
      1
    ],
    "io_out": [
      -4,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,3),-4),1)"
  },
  {
    "input": "input : list = [5, 1, 5, -3]\noutput : list = [-25, 55]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(mul_n(drop([5, 1, 5, -3],2),-2),1)),-5)",
    "io_inp": [
      5,
      1,
      5,
      -3
    ],
    "io_out": [
      -25,
      55
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(mul_n(drop(input,2),-2),1)),-5)"
  },
  {
    "input": "input : list = [-3, -1, 3, 2, -5, 4]\noutput : list = [2, -5, 4]",
    "output": "generated_output : list = drop([-3, -1, 3, 2, -5, 4],3)",
    "io_inp": [
      -3,
      -1,
      3,
      2,
      -5,
      4
    ],
    "io_out": [
      2,
      -5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [-36, -31, -1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(sub_n([4, -2, -3],5),8),5)),-4)",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      -36,
      -31,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(sub_n(input,5),8),5)),-4)"
  },
  {
    "input": "input : list = [1, -5, -1, 5, -4]\noutput : list = [-10, 2, 8, 17, 20]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(mul_n([1, -5, -1, 5, -4],-3))),9),-5)",
    "io_inp": [
      1,
      -5,
      -1,
      5,
      -4
    ],
    "io_out": [
      -10,
      2,
      8,
      17,
      20
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(mul_n(input,-3))),9),-5)"
  },
  {
    "input": "input : list = [2, 1, -5, -4, -3, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(take([2, 1, -5, -4, -3, 1],2))",
    "io_inp": [
      2,
      1,
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [2, 1, -4, -5, 5, 3]\noutput : list = [13, 9]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(take([2, 1, -4, -5, 5, 3],2)),4),5))",
    "io_inp": [
      2,
      1,
      -4,
      -5,
      5,
      3
    ],
    "io_out": [
      13,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(take(input,2)),4),5))"
  },
  {
    "input": "input : list = [1, -3, -2, 5]\noutput : list = [1]",
    "output": "generated_output : list = take(sub_n(sort_des(take(sort_des([1, -3, -2, 5]),1)),4),3)",
    "io_inp": [
      1,
      -3,
      -2,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(sort_des(input),1)),4),3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = mul_n([1, 0],-5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [5, 5, 8]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(sort_des([2, 2, 5]),5)),17),-2)",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(sort_des(input),5)),17),-2)"
  },
  {
    "input": "input : list = [5, -5, 0, 2]\noutput : list = [-47, 3, -22, -32]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(add_n([5, -5, 0, 2],4))),-5),2)",
    "io_inp": [
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      -47,
      3,
      -22,
      -32
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(add_n(input,4))),-5),2)"
  },
  {
    "input": "input : list = [2, -3, 5, -4]\noutput : list = [-4, 5, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 5, -4])",
    "io_inp": [
      2,
      -3,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(mul_n(take(sort_asc(drop([1, 1, -2],1)),21),-1),21)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_asc(drop(input,1)),21),-1),21)"
  },
  {
    "input": "input : list = [-5, 4, 2]\noutput : list = [2, 4, -5]",
    "output": "generated_output : list = reverse([-5, 4, 2])",
    "io_inp": [
      -5,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, -3, -3]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(take(take([1, 2, -3, -3],1),3),-4)",
    "io_inp": [
      1,
      2,
      -3,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,1),3),-4)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [2, -3, -3]",
    "output": "generated_output : list = reverse([-3, -3, 2])",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [9, 0]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_des([-4, 5])),-1)),-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_des(input)),-1)),-5)"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [-22, 8]",
    "output": "generated_output : list = add_n(mul_n(sub_n(drop([-3, -5, 1],1),-1),5),-2)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      -22,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(drop(input,1),-1),5),-2)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = mul_n([0, 5],1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-4, 4, -2, 0, 1, 5]\noutput : list = [-4, -2, 0, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, 4, -2, 0, 1, 5]))",
    "io_inp": [
      -4,
      4,
      -2,
      0,
      1,
      5
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 3, 0, 5, -2, 1]\noutput : list = [2, 0, 0, -2, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse([3, 3, 0, 5, -2, 1])),-3))",
    "io_inp": [
      3,
      3,
      0,
      5,
      -2,
      1
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(input)),-3))"
  },
  {
    "input": "input : list = [-2, 1, 5, 1, -5]\noutput : list = [-5, -2, 1, 1, 5]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n([-2, 1, 5, 1, -5],3)),3),27)",
    "io_inp": [
      -2,
      1,
      5,
      1,
      -5
    ],
    "io_out": [
      -5,
      -2,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(input,3)),3),27)"
  },
  {
    "input": "input : list = [2, -3, -4, -5]\noutput : list = [24, 21, 18, 3]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(sort_asc([2, -3, -4, -5]),-3))),-3)",
    "io_inp": [
      2,
      -3,
      -4,
      -5
    ],
    "io_out": [
      24,
      21,
      18,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(sort_asc(input),-3))),-3)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = take(mul_n(reverse([1, 1]),1),16)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),1),16)"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take([5, 1, -1],1),4)",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),4)"
  },
  {
    "input": "input : list = [3, 5, 0, -3]\noutput : list = [5, 7, 2, -1]",
    "output": "generated_output : list = sub_n([3, 5, 0, -3],-2)",
    "io_inp": [
      3,
      5,
      0,
      -3
    ],
    "io_out": [
      5,
      7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 1, -4, 5, -1, -1]\noutput : list = [5, 1, 0, -1, -1, -4]",
    "output": "generated_output : list = take(sort_des([0, 1, -4, 5, -1, -1]),12)",
    "io_inp": [
      0,
      1,
      -4,
      5,
      -1,
      -1
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),12)"
  },
  {
    "input": "input : list = [-4, -2, -1]\noutput : list = [51, 21, 6]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(mul_n([-4, -2, -1],5),1),-3),-3),17)",
    "io_inp": [
      -4,
      -2,
      -1
    ],
    "io_out": [
      51,
      21,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(mul_n(input,5),1),-3),-3),17)"
  },
  {
    "input": "input : list = [4, 1, -3, -5, -1]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(take([4, 1, -3, -5, -1],1)),-1),25),-4)",
    "io_inp": [
      4,
      1,
      -3,
      -5,
      -1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(take(input,1)),-1),25),-4)"
  },
  {
    "input": "input : list = [-1, 1, -3, 4, 5]\noutput : list = [13, 8, -27, -7, -17]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n([-1, 1, -3, 4, 5],5)),5),-3),-4)",
    "io_inp": [
      -1,
      1,
      -3,
      4,
      5
    ],
    "io_out": [
      13,
      8,
      -27,
      -7,
      -17
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n(input,5)),5),-3),-4)"
  },
  {
    "input": "input : list = [1, -1, 3, 0, -3]\noutput : list = [15, 5, 25]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take([1, -1, 3, 0, -3],3),1),5),-5)",
    "io_inp": [
      1,
      -1,
      3,
      0,
      -3
    ],
    "io_out": [
      15,
      5,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(input,3),1),5),-5)"
  },
  {
    "input": "input : list = [1, 4, 4, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(drop([1, 4, 4, 2, 5],3))),40))",
    "io_inp": [
      1,
      4,
      4,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(drop(input,3))),40))"
  },
  {
    "input": "input : list = [-1, -4, -4, -1, 2, 5]\noutput : list = [5, 2, -1, -4, -4, -1]",
    "output": "generated_output : list = reverse([-1, -4, -4, -1, 2, 5])",
    "io_inp": [
      -1,
      -4,
      -4,
      -1,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -1,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [5, 17]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(mul_n([-1, 2],4),-5),6),1),3)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      5,
      17
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(mul_n(input,4),-5),6),1),3)"
  },
  {
    "input": "input : list = [0, -1, 4]\noutput : list = [2, 1, 6]",
    "output": "generated_output : list = sub_n([0, -1, 4],-2)",
    "io_inp": [
      0,
      -1,
      4
    ],
    "io_out": [
      2,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 1, -3, 3, 2, 0]\noutput : list = [-3, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(take(drop([-3, 1, -3, 3, 2, 0],1),6))",
    "io_inp": [
      -3,
      1,
      -3,
      3,
      2,
      0
    ],
    "io_out": [
      -3,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,1),6))"
  },
  {
    "input": "input : list = [-5, 0, -1, -3, 3]\noutput : list = [-8, -3, -4, -6, 0]",
    "output": "generated_output : list = sub_n([-5, 0, -1, -3, 3],3)",
    "io_inp": [
      -5,
      0,
      -1,
      -3,
      3
    ],
    "io_out": [
      -8,
      -3,
      -4,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, 3, -3, -4, 1]\noutput : list = [39, 30, -6, -24, -24]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(sort_des([3, 3, -3, -4, 1]),3),-1)),-3)",
    "io_inp": [
      3,
      3,
      -3,
      -4,
      1
    ],
    "io_out": [
      39,
      30,
      -6,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(sort_des(input),3),-1)),-3)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [14, 10]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(sort_asc([-3, -4]),-4),7),5),-3)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      14,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(sort_asc(input),-4),7),5),-3)"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [24]",
    "output": "generated_output : list = mul_n(take(add_n(take(take([5, -3, 3],1),1),3),22),3)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(take(input,1),1),3),22),3)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [-7, -6, -2]",
    "output": "generated_output : list = take(sub_n([-3, -2, 2],4),12)",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),12)"
  },
  {
    "input": "input : list = [0, -1, -1, 4, 3]\noutput : list = [-6, -7, -7, -2, -3]",
    "output": "generated_output : list = sub_n(add_n(add_n([0, -1, -1, 4, 3],-2),-2),2)",
    "io_inp": [
      0,
      -1,
      -1,
      4,
      3
    ],
    "io_out": [
      -6,
      -7,
      -7,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-2),-2),2)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [9, 5, 8]",
    "output": "generated_output : list = sub_n([5, 1, 4],-4)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      9,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 0, -1, -4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(sort_des([-4, 0, -1, -4, -5])),2)))",
    "io_inp": [
      -4,
      0,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [-3, -4, 2, 5]\noutput : list = [-3, -2, 3, 6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([-3, -4, 2, 5],1)),1)",
    "io_inp": [
      -3,
      -4,
      2,
      5
    ],
    "io_out": [
      -3,
      -2,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,1)),1)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [2, 12]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(sub_n([3, -2],-3)),23),2))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      2,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(sub_n(input,-3)),23),2))"
  },
  {
    "input": "input : list = [-2, 2, -5, -4]\noutput : list = [-9, -8, -2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(drop([-2, 2, -5, -4],1),4))),29)",
    "io_inp": [
      -2,
      2,
      -5,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(drop(input,1),4))),29)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [-12, 4, 8]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n([-2, 3, -1],-4))))",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      -12,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [0, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_des([-5, 1]))),-5))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [4, 2, 3, 1, 0]\noutput : list = [5, 6, 7, 8, 9]",
    "output": "generated_output : list = add_n(reverse(sort_des([4, 2, 3, 1, 0])),5)",
    "io_inp": [
      4,
      2,
      3,
      1,
      0
    ],
    "io_out": [
      5,
      6,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),5)"
  },
  {
    "input": "input : list = [1, 2, 4, -1, 5]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(sub_n(take([1, 2, 4, -1, 5],2),-2))",
    "io_inp": [
      1,
      2,
      4,
      -1,
      5
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,2),-2))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [12, 32]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(sub_n([3, -2],3)),-4),4),4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      12,
      32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(sub_n(input,3)),-4),4),4)"
  },
  {
    "input": "input : list = [-2, 5, 2, 1]\noutput : list = [-4, 2, 4, 10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(reverse([-2, 5, 2, 1]),8))),2)",
    "io_inp": [
      -2,
      5,
      2,
      1
    ],
    "io_out": [
      -4,
      2,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(reverse(input),8))),2)"
  },
  {
    "input": "input : list = [0, -4, -4, 5]\noutput : list = [5, 0, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(sort_des([0, -4, -4, 5])),25)))",
    "io_inp": [
      0,
      -4,
      -4,
      5
    ],
    "io_out": [
      5,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(sort_des(input)),25)))"
  },
  {
    "input": "input : list = [-5, -4, -5, 2]\noutput : list = [-3, -9, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(sort_des([-5, -4, -5, 2]),5),5)),1)",
    "io_inp": [
      -5,
      -4,
      -5,
      2
    ],
    "io_out": [
      -3,
      -9,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(sort_des(input),5),5)),1)"
  },
  {
    "input": "input : list = [2, 5, 4, 2]\noutput : list = [3, 2, 0, 0]",
    "output": "generated_output : list = sort_des(add_n([2, 5, 4, 2],-2))",
    "io_inp": [
      2,
      5,
      4,
      2
    ],
    "io_out": [
      3,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [5, 2, 3, -1, -4]\noutput : list = [-4, -1, 2, 3, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse([5, 2, 3, -1, -4])))),40)",
    "io_inp": [
      5,
      2,
      3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse(input)))),40)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des([3, 2])",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1, 2, -3, 0, 3]\noutput : list = [5, 4, 4, 3, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des([2, 1, 2, -3, 0, 3]),-2)",
    "io_inp": [
      2,
      1,
      2,
      -3,
      0,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-4, -4, 2]\noutput : list = [-64, 32]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_des(drop([-4, -4, 2],1)),-4),-4))",
    "io_inp": [
      -4,
      -4,
      2
    ],
    "io_out": [
      -64,
      32
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_des(drop(input,1)),-4),-4))"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [7]",
    "output": "generated_output : list = take(add_n(add_n(add_n(take([4, -1, -3],1),-2),3),2),31)",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(take(input,1),-2),3),2),31)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-7, -9]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(sort_asc([-4, -2]))),8),-5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(sort_asc(input))),8),-5)"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([-3, -5, 0]))",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-12, -8]",
    "output": "generated_output : list = sub_n(mul_n([-4, -3],4),-4)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),-4)"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = take(drop([1, 5, -5],1),8)",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),8)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [18, 2]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(sub_n([3, -5],4)),-2)),13)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      18,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(sub_n(input,4)),-2)),13)"
  },
  {
    "input": "input : list = [-3, -2, -3, 1, 4]\noutput : list = [-27, -27, -18]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take([-3, -2, -3, 1, 4],3),3))),3)",
    "io_inp": [
      -3,
      -2,
      -3,
      1,
      4
    ],
    "io_out": [
      -27,
      -27,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take(input,3),3))),3)"
  },
  {
    "input": "input : list = [-4, 5, -3, 0, 4, -5]\noutput : list = [-125, -100, -75, 0, 100, 125]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(sort_asc([-4, 5, -3, 0, 4, -5])),-5),-5))",
    "io_inp": [
      -4,
      5,
      -3,
      0,
      4,
      -5
    ],
    "io_out": [
      -125,
      -100,
      -75,
      0,
      100,
      125
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(sort_asc(input)),-5),-5))"
  },
  {
    "input": "input : list = [1, 0, -2, -1, -2]\noutput : list = [-5, -5, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(drop([1, 0, -2, -1, -2],2),3),1)))",
    "io_inp": [
      1,
      0,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(drop(input,2),3),1)))"
  },
  {
    "input": "input : list = [-1, -3, -2, -3, 0]\noutput : list = [-17, -17, -16, -15, -14]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(add_n([-1, -3, -2, -3, 0],-3),3)),-5),-3)",
    "io_inp": [
      -1,
      -3,
      -2,
      -3,
      0
    ],
    "io_out": [
      -17,
      -17,
      -16,
      -15,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(add_n(input,-3),3)),-5),-3)"
  },
  {
    "input": "input : list = [-4, -3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(drop([-4, -3, -1],1))",
    "io_inp": [
      -4,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-3, -3, -5, 0, 2, 0]\noutput : list = [4, 9, 9, 11]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(drop([-3, -3, -5, 0, 2, 0],2),4),-5)),36)",
    "io_inp": [
      -3,
      -3,
      -5,
      0,
      2,
      0
    ],
    "io_out": [
      4,
      9,
      9,
      11
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(drop(input,2),4),-5)),36)"
  },
  {
    "input": "input : list = [-4, 1, 4, -3]\noutput : list = [-4, -3, 1, 4]",
    "output": "generated_output : list = sort_asc([-4, 1, 4, -3])",
    "io_inp": [
      -4,
      1,
      4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, -2, -5]\noutput : list = [-6, 2, -5, -8]",
    "output": "generated_output : list = add_n([-3, 5, -2, -5],-3)",
    "io_inp": [
      -3,
      5,
      -2,
      -5
    ],
    "io_out": [
      -6,
      2,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, -4, -3, 5, -5, 0]\noutput : list = [5, 0, 1, 9, -1, 4]",
    "output": "generated_output : list = add_n([1, -4, -3, 5, -5, 0],4)",
    "io_inp": [
      1,
      -4,
      -3,
      5,
      -5,
      0
    ],
    "io_out": [
      5,
      0,
      1,
      9,
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n([3, 0],-2))),2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(input,-2))),2)"
  },
  {
    "input": "input : list = [-1, 0, 3, -1, -4, -3]\noutput : list = [4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(take([-1, 0, 3, -1, -4, -3],1)))),5)",
    "io_inp": [
      -1,
      0,
      3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(take(input,1)))),5)"
  },
  {
    "input": "input : list = [-3, 4, -5, -4, -1, -2]\noutput : list = [28, -35, 46, 37]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(take([-3, 4, -5, -4, -1, -2],4),3),-3),-3),2)",
    "io_inp": [
      -3,
      4,
      -5,
      -4,
      -1,
      -2
    ],
    "io_out": [
      28,
      -35,
      46,
      37
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(take(input,4),3),-3),-3),2)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [5, -1]",
    "output": "generated_output : list = add_n(reverse([-3, 3]),2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, -5, 4, 4, 5, 1]\noutput : list = [1, 5, 4, 4, -5, -4]",
    "output": "generated_output : list = reverse([-4, -5, 4, 4, 5, 1])",
    "io_inp": [
      -4,
      -5,
      4,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      4,
      4,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [3, 2, 6]",
    "output": "generated_output : list = sub_n([1, 0, 4],-2)",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      3,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, 5, 5, 4]\noutput : list = [5, 5, 4]",
    "output": "generated_output : list = drop([2, 5, 5, 4],1)",
    "io_inp": [
      2,
      5,
      5,
      4
    ],
    "io_out": [
      5,
      5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [3, -21]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(reverse([3, -5]),2),-2),3))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      3,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(reverse(input),2),-2),3))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(add_n([-5, 1],5)),-5),-5),-5)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(add_n(input,5)),-5),-5),-5)"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = drop([-2, 0, 0],1)",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [-5, 4, -2]",
    "output": "generated_output : list = mul_n([5, -4, 2],-1)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      -5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -4, -4, 4]\noutput : list = [-9, 3, 3, -29]",
    "output": "generated_output : list = take(sub_n(take(mul_n(add_n([-1, -4, -4, 4],2),-4),13),5),28)",
    "io_inp": [
      -1,
      -4,
      -4,
      4
    ],
    "io_out": [
      -9,
      3,
      3,
      -29
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(add_n(input,2),-4),13),5),28)"
  },
  {
    "input": "input : list = [5, 2, -5, 2, -2]\noutput : list = [-20, -5, -5, 15, 30]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des([5, 2, -5, 2, -2]),1),-2),-5)",
    "io_inp": [
      5,
      2,
      -5,
      2,
      -2
    ],
    "io_out": [
      -20,
      -5,
      -5,
      15,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(input),1),-2),-5)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(add_n([2, 5, 1],1),1),5),-4))",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(add_n(input,1),1),5),-4))"
  },
  {
    "input": "input : list = [-2, 5, -1, 0, -2]\noutput : list = [16, 0, 8, -40, 16]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(mul_n([-2, 5, -1, 0, -2],-2)),2),24),2)",
    "io_inp": [
      -2,
      5,
      -1,
      0,
      -2
    ],
    "io_out": [
      16,
      0,
      8,
      -40,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(mul_n(input,-2)),2),24),2)"
  },
  {
    "input": "input : list = [2, 2, 3, 2, 0]\noutput : list = [3, 2, 2, 2, 0]",
    "output": "generated_output : list = sort_des([2, 2, 3, 2, 0])",
    "io_inp": [
      2,
      2,
      3,
      2,
      0
    ],
    "io_out": [
      3,
      2,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, -3, -4, -2, 2]\noutput : list = [-9, -8, -7, -5, -4, -3]",
    "output": "generated_output : list = take(add_n(sort_asc([0, 1, -3, -4, -2, 2]),-5),26)",
    "io_inp": [
      0,
      1,
      -3,
      -4,
      -2,
      2
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),-5),26)"
  },
  {
    "input": "input : list = [-4, -4, 4, -2]\noutput : list = [-2, -2, 6, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(reverse(sub_n([-4, -4, 4, -2],1)),3)),1)",
    "io_inp": [
      -4,
      -4,
      4,
      -2
    ],
    "io_out": [
      -2,
      -2,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(reverse(sub_n(input,1)),3)),1)"
  },
  {
    "input": "input : list = [5, 5, 4, 2, 2]\noutput : list = [6, 7, 7]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(take([5, 5, 4, 2, 2],3)),-2),12),18)",
    "io_inp": [
      5,
      5,
      4,
      2,
      2
    ],
    "io_out": [
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(take(input,3)),-2),12),18)"
  },
  {
    "input": "input : list = [5, -3, 0, 5]\noutput : list = [7, 7, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(take(sort_asc([5, -3, 0, 5]),21),28)),-2)",
    "io_inp": [
      5,
      -3,
      0,
      5
    ],
    "io_out": [
      7,
      7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(sort_asc(input),21),28)),-2)"
  },
  {
    "input": "input : list = [-3, -3, -5, 0]\noutput : list = [1, -4, -2, -2]",
    "output": "generated_output : list = sub_n(reverse([-3, -3, -5, 0]),-1)",
    "io_inp": [
      -3,
      -3,
      -5,
      0
    ],
    "io_out": [
      1,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-2, -5, 1, 4, -5, -3]\noutput : list = [-2, -5, 1, 4, -5, -3]",
    "output": "generated_output : list = sub_n(add_n(sub_n(add_n(add_n([-2, -5, 1, 4, -5, -3],4),1),-2),-5),2)",
    "io_inp": [
      -2,
      -5,
      1,
      4,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -5,
      1,
      4,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(add_n(add_n(input,4),1),-2),-5),2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(add_n([0, 2],-5)))))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [5, -5, -3, 5]\noutput : list = [-5, 35, 45]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(drop([5, -5, -3, 5],1))),4),-5)",
    "io_inp": [
      5,
      -5,
      -3,
      5
    ],
    "io_out": [
      -5,
      35,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(drop(input,1))),4),-5)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(reverse(take(add_n(sort_asc([5, 3]),-2),21)))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(sort_asc(input),-2),21)))"
  },
  {
    "input": "input : list = [3, 2, 3, 5]\noutput : list = [2, 0, 0, -1]",
    "output": "generated_output : list = sort_des(take(take(sub_n(sub_n([3, 2, 3, 5],-1),4),17),33))",
    "io_inp": [
      3,
      2,
      3,
      5
    ],
    "io_out": [
      2,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(sub_n(input,-1),4),17),33))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-20, -16]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-4, -5],4)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -20,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [5, -1, -1, -5]\noutput : list = [-10, 2]",
    "output": "generated_output : list = take(mul_n([5, -1, -1, -5],-2),2)",
    "io_inp": [
      5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-2),2)"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 3, -5],1)",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -4, 4, 2, 1]\noutput : list = [-18, -18]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(take([-4, -4, 4, 2, 1],2),-1),5)),-3)",
    "io_inp": [
      -4,
      -4,
      4,
      2,
      1
    ],
    "io_out": [
      -18,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(take(input,2),-1),5)),-3)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-3, -11]",
    "output": "generated_output : list = reverse(take(add_n(mul_n(sort_des([2, 0]),-4),-3),12))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -3,
      -11
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(sort_des(input),-4),-3),12))"
  },
  {
    "input": "input : list = [2, -4, -4, 2, 0, -2]\noutput : list = [-10, -10, 0, 10, 20, 20]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_asc([2, -4, -4, 2, 0, -2]))),-2),5)",
    "io_inp": [
      2,
      -4,
      -4,
      2,
      0,
      -2
    ],
    "io_out": [
      -10,
      -10,
      0,
      10,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_asc(input))),-2),5)"
  },
  {
    "input": "input : list = [-5, -3, 1, -5, 5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take([-5, -3, 1, -5, 5],2)",
    "io_inp": [
      -5,
      -3,
      1,
      -5,
      5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 1, 2, -2, -5, 2]\noutput : list = [5, 5, 4, 4, 1, -2]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(sort_des([1, 1, 2, -2, -5, 2]),-3),30),3),-3)",
    "io_inp": [
      1,
      1,
      2,
      -2,
      -5,
      2
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(sort_des(input),-3),30),3),-3)"
  },
  {
    "input": "input : list = [-5, 4, -1, -2, 2, 5]\noutput : list = [2, 11, 6, 5, 9, 12]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n([-5, 4, -1, -2, 2, 5],2),-5)))",
    "io_inp": [
      -5,
      4,
      -1,
      -2,
      2,
      5
    ],
    "io_out": [
      2,
      11,
      6,
      5,
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(input,2),-5)))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-6, -1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(sub_n([1, -4],1),14),-3),4))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(sub_n(input,1),14),-3),4))"
  },
  {
    "input": "input : list = [0, 4, 1, 2]\noutput : list = [2, 6, 3, 4]",
    "output": "generated_output : list = add_n(add_n([0, 4, 1, 2],3),-1)",
    "io_inp": [
      0,
      4,
      1,
      2
    ],
    "io_out": [
      2,
      6,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-1)"
  },
  {
    "input": "input : list = [-4, -1, 0, -5, 0, -4]\noutput : list = [0, 0, -2, -8, -8, -10]",
    "output": "generated_output : list = sort_des(mul_n(take(take(reverse([-4, -1, 0, -5, 0, -4]),20),26),2))",
    "io_inp": [
      -4,
      -1,
      0,
      -5,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      -2,
      -8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(reverse(input),20),26),2))"
  },
  {
    "input": "input : list = [5, 0, 4, 1]\noutput : list = [8, 3, 7, 4]",
    "output": "generated_output : list = sub_n([5, 0, 4, 1],-3)",
    "io_inp": [
      5,
      0,
      4,
      1
    ],
    "io_out": [
      8,
      3,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [7, -23]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(reverse([5, -1])),1),-5),3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      7,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(reverse(input)),1),-5),3)"
  },
  {
    "input": "input : list = [4, -4, 5, 3, 0, -2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(drop(drop([4, -4, 5, 3, 0, -2],4),1)),1))",
    "io_inp": [
      4,
      -4,
      5,
      3,
      0,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(drop(drop(input,4),1)),1))"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [-4, -1, -9]",
    "output": "generated_output : list = add_n([1, 4, -4],-5)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, 1, 4, 2, 4]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(take([5, 1, 4, 2, 4],3),9)),8))",
    "io_inp": [
      5,
      1,
      4,
      2,
      4
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(take(input,3),9)),8))"
  },
  {
    "input": "input : list = [1, -1, 3, -5]\noutput : list = [-4, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(sub_n([1, -1, 3, -5],4),2)),-3))",
    "io_inp": [
      1,
      -1,
      3,
      -5
    ],
    "io_out": [
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(sub_n(input,4),2)),-3))"
  },
  {
    "input": "input : list = [2, 5, 3, -3]\noutput : list = [-3, 3, 5, 2]",
    "output": "generated_output : list = reverse([2, 5, 3, -3])",
    "io_inp": [
      2,
      5,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, 0, 3, 3, 2]\noutput : list = [4, -1]",
    "output": "generated_output : list = take([4, -1, 0, 3, 3, 2],2)",
    "io_inp": [
      4,
      -1,
      0,
      3,
      3,
      2
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -5, -3, 4, -1]\noutput : list = [-9, -7]",
    "output": "generated_output : list = add_n(sort_asc(drop(sort_des([3, -5, -3, 4, -1]),3)),-4)",
    "io_inp": [
      3,
      -5,
      -3,
      4,
      -1
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(sort_des(input),3)),-4)"
  },
  {
    "input": "input : list = [-3, 1, 4, 2, -1, 3]\noutput : list = [-7, -5, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(reverse([-3, 1, 4, 2, -1, 3]),4),22)))",
    "io_inp": [
      -3,
      1,
      4,
      2,
      -1,
      3
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(reverse(input),4),22)))"
  },
  {
    "input": "input : list = [-2, 5, -1]\noutput : list = [-3, 3, -4]",
    "output": "generated_output : list = take(take(reverse(sub_n(sub_n([-2, 5, -1],-3),5)),7),3)",
    "io_inp": [
      -2,
      5,
      -1
    ],
    "io_out": [
      -3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(sub_n(input,-3),5)),7),3)"
  },
  {
    "input": "input : list = [-4, 1, -4, 0]\noutput : list = [-20, -20, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(mul_n([-4, 1, -4, 0],5)),18)))",
    "io_inp": [
      -4,
      1,
      -4,
      0
    ],
    "io_out": [
      -20,
      -20,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(mul_n(input,5)),18)))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [11, 16]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(sub_n([-2, 3],-4),5),4),7))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      11,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(sub_n(input,-4),5),4),7))"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-6, -4, 6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc([-3, 3, -2])),2)))",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -6,
      -4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [3, 1, 1, 4, -5]\noutput : list = [1, 4, -5]",
    "output": "generated_output : list = drop([3, 1, 1, 4, -5],2)",
    "io_inp": [
      3,
      1,
      1,
      4,
      -5
    ],
    "io_out": [
      1,
      4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(sub_n(drop(sort_des(sort_des([-4, 0, 0])),1),-5))",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(sort_des(sort_des(input)),1),-5))"
  },
  {
    "input": "input : list = [-1, -1, -1, -5]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(take([-1, -1, -1, -5],2),-1),1)),3)",
    "io_inp": [
      -1,
      -1,
      -1,
      -5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(take(input,2),-1),1)),3)"
  },
  {
    "input": "input : list = [-3, 0, 1, -2]\noutput : list = [-3, -2, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse([-3, 0, 1, -2]))",
    "io_inp": [
      -3,
      0,
      1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, -2, 5]\noutput : list = [1, -6, -6]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(add_n([-2, -2, 5],-4)),-1),26),-1)",
    "io_inp": [
      -2,
      -2,
      5
    ],
    "io_out": [
      1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(add_n(input,-4)),-1),26),-1)"
  },
  {
    "input": "input : list = [-4, -2, -5, -4]\noutput : list = [0, -1, 2, 0]",
    "output": "generated_output : list = sub_n(reverse([-4, -2, -5, -4]),-4)",
    "io_inp": [
      -4,
      -2,
      -5,
      -4
    ],
    "io_out": [
      0,
      -1,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [5, -1, -5, -5, 2]\noutput : list = [27, 12, -3, -23, -23]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n([5, -1, -5, -5, 2],5)),-2)))",
    "io_inp": [
      5,
      -1,
      -5,
      -5,
      2
    ],
    "io_out": [
      27,
      12,
      -3,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n(input,5)),-2)))"
  },
  {
    "input": "input : list = [-1, 1, 3, 4, 1, 4]\noutput : list = [-1, 1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(drop(reverse([-1, 1, 3, 4, 1, 4]),1))))",
    "io_inp": [
      -1,
      1,
      3,
      4,
      1,
      4
    ],
    "io_out": [
      -1,
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(drop(reverse(input),1))))"
  },
  {
    "input": "input : list = [3, 4, 2, 3, -1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(take([3, 4, 2, 3, -1],1),3)),-1))",
    "io_inp": [
      3,
      4,
      2,
      3,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(take(input,1),3)),-1))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des([-2, 5])",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 1, 1, 3, 3]\noutput : list = [-8, -4, -4, -2]",
    "output": "generated_output : list = take(add_n([-3, 1, 1, 3, 3],-5),4)",
    "io_inp": [
      -3,
      1,
      1,
      3,
      3
    ],
    "io_out": [
      -8,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),4)"
  },
  {
    "input": "input : list = [5, 3, -2, 0, 1, 4]\noutput : list = [-8, -6, -5, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n([5, 3, -2, 0, 1, 4],4)),-2))",
    "io_inp": [
      5,
      3,
      -2,
      0,
      1,
      4
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(input,4)),-2))"
  },
  {
    "input": "input : list = [-3, 0, 5, 3]\noutput : list = [0, 48]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take([-3, 0, 5, 3],2),-4))),4)",
    "io_inp": [
      -3,
      0,
      5,
      3
    ],
    "io_out": [
      0,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take(input,2),-4))),4)"
  },
  {
    "input": "input : list = [-4, -5, -4, -1, -1]\noutput : list = [-12, -12, -15, -15, -16]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_des([-4, -5, -4, -1, -1]),1),3),-5),2)",
    "io_inp": [
      -4,
      -5,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -15,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_des(input),1),3),-5),2)"
  },
  {
    "input": "input : list = [3, -1, -1, -3, 5]\noutput : list = [7]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(drop([3, -1, -1, -3, 5],3))),2),1)",
    "io_inp": [
      3,
      -1,
      -1,
      -3,
      5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(drop(input,3))),2),1)"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [-8, -2, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc([-5, 1, 4])),-2)))",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      -8,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [1, 5, -3, 3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sort_des(take([1, 5, -3, 3],1)))",
    "io_inp": [
      1,
      5,
      -3,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [16]",
    "output": "generated_output : list = mul_n(reverse(sub_n(drop(sort_des([4, -1, -3]),2),5)),-2)",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(drop(sort_des(input),2),5)),-2)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [2, 17]",
    "output": "generated_output : list = sub_n(reverse(mul_n([3, 0],5)),-2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      2,
      17
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,5)),-2)"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [-4, -8, -7]",
    "output": "generated_output : list = sub_n([0, -4, -3],4)",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(sub_n([-1, 3],-1),3))),2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(sub_n(input,-1),3))),2)"
  },
  {
    "input": "input : list = [2, 4, 0, -5, -2, 4]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(drop(take([2, 4, 0, -5, -2, 4],4),1),16)))",
    "io_inp": [
      2,
      4,
      0,
      -5,
      -2,
      4
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(drop(take(input,4),1),16)))"
  },
  {
    "input": "input : list = [5, 3, -2, 1, 4]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(take([5, 3, -2, 1, 4],3)))))",
    "io_inp": [
      5,
      3,
      -2,
      1,
      4
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(take(input,3)))))"
  },
  {
    "input": "input : list = [3, -3, 4]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sub_n([3, -3, 4],-3)),1)))",
    "io_inp": [
      3,
      -3,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sub_n(input,-3)),1)))"
  },
  {
    "input": "input : list = [-4, 0, 3, 1, 5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = take(add_n(sort_des(take([-4, 0, 3, 1, 5, 1],2)),5),32)",
    "io_inp": [
      -4,
      0,
      3,
      1,
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(input,2)),5),32)"
  },
  {
    "input": "input : list = [4, 4, 5, -3, -4, 0]\noutput : list = [5, 4, 4, 0, -3, -4]",
    "output": "generated_output : list = sort_des(reverse([4, 4, 5, -3, -4, 0]))",
    "io_inp": [
      4,
      4,
      5,
      -3,
      -4,
      0
    ],
    "io_out": [
      5,
      4,
      4,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -1, -4, 5, 2, 0]\noutput : list = [5, 0, -3, 6, 3, 1]",
    "output": "generated_output : list = add_n(take(reverse(add_n(reverse([4, -1, -4, 5, 2, 0]),4)),33),-3)",
    "io_inp": [
      4,
      -1,
      -4,
      5,
      2,
      0
    ],
    "io_out": [
      5,
      0,
      -3,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(add_n(reverse(input),4)),33),-3)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [1, -1, 1]",
    "output": "generated_output : list = add_n(reverse([-2, -4, -2]),3)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [2, 1, -5]\noutput : list = [-16, 8, 12]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(add_n([2, 1, -5],1)))),4)",
    "io_inp": [
      2,
      1,
      -5
    ],
    "io_out": [
      -16,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(add_n(input,1)))),4)"
  },
  {
    "input": "input : list = [-3, 4, 4, -4, -2]\noutput : list = [-20, 15, 15, -25, -15]",
    "output": "generated_output : list = mul_n(sub_n([-3, 4, 4, -4, -2],1),5)",
    "io_inp": [
      -3,
      4,
      4,
      -4,
      -2
    ],
    "io_out": [
      -20,
      15,
      15,
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),5)"
  },
  {
    "input": "input : list = [3, 3, 5, 0, 3, 1]\noutput : list = [8, 7, 5, 5, 5, 3]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sort_asc([3, 3, 5, 0, 3, 1]),21),-3),-1),-5)",
    "io_inp": [
      3,
      3,
      5,
      0,
      3,
      1
    ],
    "io_out": [
      8,
      7,
      5,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sort_asc(input),21),-3),-1),-5)"
  },
  {
    "input": "input : list = [5, -1, -1, -3]\noutput : list = [-2, 0, 0, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(reverse([5, -1, -1, -3])))),1)",
    "io_inp": [
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -2,
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(reverse(input)))),1)"
  },
  {
    "input": "input : list = [5, -4, 2, -2]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(mul_n(take(take([5, -4, 2, -2],1),20),-1),12),33)",
    "io_inp": [
      5,
      -4,
      2,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(take(input,1),20),-1),12),33)"
  },
  {
    "input": "input : list = [-3, 3, -3, 0]\noutput : list = [3, 0, -3, -3]",
    "output": "generated_output : list = sort_des([-3, 3, -3, 0])",
    "io_inp": [
      -3,
      3,
      -3,
      0
    ],
    "io_out": [
      3,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, -3]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = sub_n(sub_n([0, -1, -3],-4),2)",
    "io_inp": [
      0,
      -1,
      -3
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),2)"
  },
  {
    "input": "input : list = [0, -5, -1, -5, 1]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = take(take(sort_des(sub_n(drop([0, -5, -1, -5, 1],2),-3)),43),47)",
    "io_inp": [
      0,
      -5,
      -1,
      -5,
      1
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(drop(input,2),-3)),43),47)"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [-3, -6, -7]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(sub_n([0, 4, 1],4),2)),-3),-2)",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(sub_n(input,4),2)),-3),-2)"
  },
  {
    "input": "input : list = [-2, 2, -5, -4, -2, 4]\noutput : list = [-1, -3, -7, -7, -9, -10]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n(sort_des([-2, 2, -5, -4, -2, 4]),5))))",
    "io_inp": [
      -2,
      2,
      -5,
      -4,
      -2,
      4
    ],
    "io_out": [
      -1,
      -3,
      -7,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [1, -4, 5, 1]\noutput : list = [-30, -10, -10, 15]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_des([1, -4, 5, 1]),-3)),2),-5)",
    "io_inp": [
      1,
      -4,
      5,
      1
    ],
    "io_out": [
      -30,
      -10,
      -10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_des(input),-3)),2),-5)"
  },
  {
    "input": "input : list = [-1, -5, 0, 1, -3]\noutput : list = [0, -4, 1, 2, -2]",
    "output": "generated_output : list = sub_n([-1, -5, 0, 1, -3],-1)",
    "io_inp": [
      -1,
      -5,
      0,
      1,
      -3
    ],
    "io_out": [
      0,
      -4,
      1,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = reverse(reverse(sub_n([1, -1],5)))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,5)))"
  },
  {
    "input": "input : list = [4, 4, -5, 5, 2, -1]\noutput : list = [-5, -1, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 4, -5, 5, 2, -1])",
    "io_inp": [
      4,
      4,
      -5,
      5,
      2,
      -1
    ],
    "io_out": [
      -5,
      -1,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-6, -5, 1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sub_n([2, -5, -4],5),-2),3),5))",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sub_n(input,5),-2),3),5))"
  },
  {
    "input": "input : list = [4, 1, -3, -2, 1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(drop([4, 1, -3, -2, 1],1),-1)),1))",
    "io_inp": [
      4,
      1,
      -3,
      -2,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(drop(input,1),-1)),1))"
  },
  {
    "input": "input : list = [0, -2, -3, 3, 5]\noutput : list = [10, 8, 5, 3, 2]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des(reverse([0, -2, -3, 3, 5])))),5)",
    "io_inp": [
      0,
      -2,
      -3,
      3,
      5
    ],
    "io_out": [
      10,
      8,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(reverse(input)))),5)"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [0, 7, 9]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(add_n([5, -4, 3],4)),6)))",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      0,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(add_n(input,4)),6)))"
  },
  {
    "input": "input : list = [-3, 1, -5, 5, 0, -1]\noutput : list = [-9, -3, 3, 6, 9, 21]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(sub_n([-3, 1, -5, 5, 0, -1],-2),3))))",
    "io_inp": [
      -3,
      1,
      -5,
      5,
      0,
      -1
    ],
    "io_out": [
      -9,
      -3,
      3,
      6,
      9,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(sub_n(input,-2),3))))"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [-6, -6, 6]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(mul_n([-2, -2, 4],-1),-2),-2)))",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(mul_n(input,-1),-2),-2)))"
  },
  {
    "input": "input : list = [-2, 3, -2, 4, 3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(take([-2, 3, -2, 4, 3],1)),4),-1))",
    "io_inp": [
      -2,
      3,
      -2,
      4,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(take(input,1)),4),-1))"
  },
  {
    "input": "input : list = [1, -5, 4, 3]\noutput : list = [-19, -25, 29, -7]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(mul_n([1, -5, 4, 3],-3),2),1)),1)",
    "io_inp": [
      1,
      -5,
      4,
      3
    ],
    "io_out": [
      -19,
      -25,
      29,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(mul_n(input,-3),2),1)),1)"
  },
  {
    "input": "input : list = [4, 1, -3, 0]\noutput : list = [1, -2, -3, -6]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([4, 1, -3, 0],-3)))",
    "io_inp": [
      4,
      1,
      -3,
      0
    ],
    "io_out": [
      1,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-3)))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(add_n([0, 5],3)))),5)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(add_n(input,3)))),5)"
  },
  {
    "input": "input : list = [1, -5, -2, 3, 0, -5]\noutput : list = [-5, -5, -2, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -5, -2, 3, 0, -5])",
    "io_inp": [
      1,
      -5,
      -2,
      3,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, -1, -3, 0]\noutput : list = [7, 5, 4, 2, 5]",
    "output": "generated_output : list = add_n(add_n([2, 0, -1, -3, 0],3),2)",
    "io_inp": [
      2,
      0,
      -1,
      -3,
      0
    ],
    "io_out": [
      7,
      5,
      4,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),2)"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-39, 41, -99]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n([-5, 2, -2],-5),-1)),-4),-5)",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -39,
      41,
      -99
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n(input,-5),-1)),-4),-5)"
  },
  {
    "input": "input : list = [3, 0, 0, 3, 3]\noutput : list = [3, 3, 3, 0, 0]",
    "output": "generated_output : list = take(sort_des(take(reverse(reverse([3, 0, 0, 3, 3])),17)),46)",
    "io_inp": [
      3,
      0,
      0,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(reverse(input)),17)),46)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-10, -8, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc([-3, 0, -5]),5)))",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [1, 5, -2, 3]\noutput : list = [-6, 0, 4, 8]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(add_n([1, 5, -2, 3],1),3),2),-2))",
    "io_inp": [
      1,
      5,
      -2,
      3
    ],
    "io_out": [
      -6,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(add_n(input,1),3),2),-2))"
  },
  {
    "input": "input : list = [-4, 5, -1, 2, 5]\noutput : list = [-12, 15, -3, 6, 15]",
    "output": "generated_output : list = mul_n([-4, 5, -1, 2, 5],3)",
    "io_inp": [
      -4,
      5,
      -1,
      2,
      5
    ],
    "io_out": [
      -12,
      15,
      -3,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, 4, 1, -4, -3, -1]\noutput : list = [-5, 4, 1, -4, -3, -1]",
    "output": "generated_output : list = reverse(reverse([-5, 4, 1, -4, -3, -1]))",
    "io_inp": [
      -5,
      4,
      1,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -5,
      4,
      1,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(drop(sort_des([-3, 4]),1)),-5))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(drop(sort_des(input),1)),-5))"
  },
  {
    "input": "input : list = [-5, 5, 0, 4, 0, -3]\noutput : list = [-9, -6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(drop([-5, 5, 0, 4, 0, -3],4)),-2)),-4)",
    "io_inp": [
      -5,
      5,
      0,
      4,
      0,
      -3
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(drop(input,4)),-2)),-4)"
  },
  {
    "input": "input : list = [-1, -4, -2, 3, -4]\noutput : list = [0, -3, -1, 4, -3]",
    "output": "generated_output : list = add_n([-1, -4, -2, 3, -4],1)",
    "io_inp": [
      -1,
      -4,
      -2,
      3,
      -4
    ],
    "io_out": [
      0,
      -3,
      -1,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -1, 1]\noutput : list = [-7, -6, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc([-2, -1, 1]),-3)),1),-1)",
    "io_inp": [
      -2,
      -1,
      1
    ],
    "io_out": [
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc(input),-3)),1),-1)"
  },
  {
    "input": "input : list = [-4, -4, 5, 4, -1, -5]\noutput : list = [25, 20, 20, 5, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_des([-4, -4, 5, 4, -1, -5])),-5)))",
    "io_inp": [
      -4,
      -4,
      5,
      4,
      -1,
      -5
    ],
    "io_out": [
      25,
      20,
      20,
      5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_des(input)),-5)))"
  },
  {
    "input": "input : list = [2, -1, 2, 4, 3]\noutput : list = [0, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_asc([2, -1, 2, 4, 3])),2),3))",
    "io_inp": [
      2,
      -1,
      2,
      4,
      3
    ],
    "io_out": [
      0,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_asc(input)),2),3))"
  },
  {
    "input": "input : list = [-4, -4, -2, -1, -5]\noutput : list = [-5, -4, -4, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sort_asc([-4, -4, -2, -1, -5])),5)))",
    "io_inp": [
      -4,
      -4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [-2, 1, 3, 0, 5, 5]\noutput : list = [8, 0, -4, -12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(take([-2, 1, 3, 0, 5, 5],4)),1),4))",
    "io_inp": [
      -2,
      1,
      3,
      0,
      5,
      5
    ],
    "io_out": [
      8,
      0,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(take(input,4)),1),4))"
  },
  {
    "input": "input : list = [1, -4, 2, 0]\noutput : list = [-7, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(reverse([1, -4, 2, 0])),-3)))",
    "io_inp": [
      1,
      -4,
      2,
      0
    ],
    "io_out": [
      -7,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [5, -2, -4, -4, 0, -3]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(drop(add_n([5, -2, -4, -4, 0, -3],1),4))",
    "io_inp": [
      5,
      -2,
      -4,
      -4,
      0,
      -3
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(input,1),4))"
  },
  {
    "input": "input : list = [3, 5, 0, -4]\noutput : list = [8, 0, -6, -10]",
    "output": "generated_output : list = sort_des(mul_n([3, 5, 0, -4],-2))",
    "io_inp": [
      3,
      5,
      0,
      -4
    ],
    "io_out": [
      8,
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [3, -2, 5, 3, 4]\noutput : list = [9, 8, 7]",
    "output": "generated_output : list = take(add_n(sort_des(drop([3, -2, 5, 3, 4],2)),4),9)",
    "io_inp": [
      3,
      -2,
      5,
      3,
      4
    ],
    "io_out": [
      9,
      8,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(drop(input,2)),4),9)"
  },
  {
    "input": "input : list = [-2, 2, -1, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([-2, 2, -1, 4, -4],3)",
    "io_inp": [
      -2,
      2,
      -1,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, 3, 4, -1, -2, 4]\noutput : list = [-4, 12, 16, -4, -8, 16]",
    "output": "generated_output : list = mul_n([-1, 3, 4, -1, -2, 4],4)",
    "io_inp": [
      -1,
      3,
      4,
      -1,
      -2,
      4
    ],
    "io_out": [
      -4,
      12,
      16,
      -4,
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, 4, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 4, -1],1)",
    "io_inp": [
      -1,
      4,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 0, 3, 0, -1]\noutput : list = [-4, -3, -3, 0, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(reverse([4, 0, 3, 0, -1]))),-1),-4)",
    "io_inp": [
      4,
      0,
      3,
      0,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(reverse(input))),-1),-4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_asc([0, 5]),-3),11)))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_asc(input),-3),11)))"
  },
  {
    "input": "input : list = [5, -4, -4, 2, -2]\noutput : list = [-2, 2, -4, -4, 5]",
    "output": "generated_output : list = reverse([5, -4, -4, 2, -2])",
    "io_inp": [
      5,
      -4,
      -4,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, 2, 2, 5]\noutput : list = [3, 4, 4, 7, 7]",
    "output": "generated_output : list = take(add_n(reverse(take(sort_des([5, 1, 2, 2, 5]),10)),2),30)",
    "io_inp": [
      5,
      1,
      2,
      2,
      5
    ],
    "io_out": [
      3,
      4,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(sort_des(input),10)),2),30)"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [3, 5, 0]",
    "output": "generated_output : list = reverse([0, 5, 3])",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -5, 4, 3, -2, -5]\noutput : list = [33, 24, 9]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(drop([5, -5, 4, 3, -2, -5],3),-5)),-1),-3)",
    "io_inp": [
      5,
      -5,
      4,
      3,
      -2,
      -5
    ],
    "io_out": [
      33,
      24,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(drop(input,3),-5)),-1),-3)"
  },
  {
    "input": "input : list = [-4, 1, 0, -1, 0, -4]\noutput : list = [-6, -2, -2, 2, 14, 14]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sort_asc([-4, 1, 0, -1, 0, -4]),-4),-1)),-1)",
    "io_inp": [
      -4,
      1,
      0,
      -1,
      0,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -2,
      2,
      14,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sort_asc(input),-4),-1)),-1)"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [-11, -1, 1]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(sort_asc([4, -1, -2]),18)),-2),-3)",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      -11,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(sort_asc(input),18)),-2),-3)"
  },
  {
    "input": "input : list = [-5, 1, -1, 3, 1]\noutput : list = [-36, -24, -24, -12, 12]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_des(sub_n([-5, 1, -1, 3, 1],-3)),2),-3),8)",
    "io_inp": [
      -5,
      1,
      -1,
      3,
      1
    ],
    "io_out": [
      -36,
      -24,
      -24,
      -12,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_des(sub_n(input,-3)),2),-3),8)"
  },
  {
    "input": "input : list = [-3, 2, -5, -3]\noutput : list = [-21, -31, 4, -21]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(add_n([-3, 2, -5, -3],-2),5),-4)),4)",
    "io_inp": [
      -3,
      2,
      -5,
      -3
    ],
    "io_out": [
      -21,
      -31,
      4,
      -21
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(add_n(input,-2),5),-4)),4)"
  },
  {
    "input": "input : list = [0, 2, -1, 4, 3]\noutput : list = [0, -8, 4, -16, -12]",
    "output": "generated_output : list = mul_n([0, 2, -1, 4, 3],-4)",
    "io_inp": [
      0,
      2,
      -1,
      4,
      3
    ],
    "io_out": [
      0,
      -8,
      4,
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, -4, -2, -5, -4, 2]\noutput : list = [-1, -6, -4, -7, -6, 0]",
    "output": "generated_output : list = add_n([1, -4, -2, -5, -4, 2],-2)",
    "io_inp": [
      1,
      -4,
      -2,
      -5,
      -4,
      2
    ],
    "io_out": [
      -1,
      -6,
      -4,
      -7,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -5, 3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop([-4, -5, 3, 4],2)",
    "io_inp": [
      -4,
      -5,
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -3, -2]\noutput : list = [15]",
    "output": "generated_output : list = reverse(mul_n(take(drop(add_n([-2, -3, -2],-3),2),13),-3))",
    "io_inp": [
      -2,
      -3,
      -2
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(drop(add_n(input,-3),2),13),-3))"
  },
  {
    "input": "input : list = [4, -1, 1, 4, 2]\noutput : list = [60]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(take([4, -1, 1, 4, 2],1),-1),4),4),-5)",
    "io_inp": [
      4,
      -1,
      1,
      4,
      2
    ],
    "io_out": [
      60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(take(input,1),-1),4),4),-5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-11, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(add_n([-1, -5],-5),5),1)))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -11,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(add_n(input,-5),5),1)))"
  },
  {
    "input": "input : list = [2, 1, 3, 1, 2, 1]\noutput : list = [7, 6, 6, 5, 5, 5]",
    "output": "generated_output : list = sort_des(sub_n([2, 1, 3, 1, 2, 1],-4))",
    "io_inp": [
      2,
      1,
      3,
      1,
      2,
      1
    ],
    "io_out": [
      7,
      6,
      6,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [0, -1, -1, 4]\noutput : list = [-2, -2, -12]",
    "output": "generated_output : list = take(add_n(mul_n(drop(sub_n([0, -1, -1, 4],-3),1),-2),2),25)",
    "io_inp": [
      0,
      -1,
      -1,
      4
    ],
    "io_out": [
      -2,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(drop(sub_n(input,-3),1),-2),2),25)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sort_des([0, 0])))),5)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [72, 0, 120]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(mul_n([5, 0, 3],-4),12),3),-2))",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      72,
      0,
      120
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(mul_n(input,-4),12),3),-2))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [3, 9]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(sub_n([-1, 5],-1),3))))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(sub_n(input,-1),3))))"
  },
  {
    "input": "input : list = [2, -1, -5, -5, -5]\noutput : list = [-5, -5, -5, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, -5, -5, -5])",
    "io_inp": [
      2,
      -1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [-3, -7, -10]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(sort_des([3, -1, -4]),-4)),3),5)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(sort_des(input),-4)),3),5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc([-5, 3])",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -1, 5, 1]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(take([-2, 1, -1, 5, 1],1))),4),4)",
    "io_inp": [
      -2,
      1,
      -1,
      5,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(take(input,1))),4),4)"
  },
  {
    "input": "input : list = [2, -5, -4, 4, 4]\noutput : list = [0, 1, 7, 9, 9]",
    "output": "generated_output : list = add_n(sort_asc([2, -5, -4, 4, 4]),5)",
    "io_inp": [
      2,
      -5,
      -4,
      4,
      4
    ],
    "io_out": [
      0,
      1,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-4, 4, -5]\noutput : list = [9]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(take([-4, 4, -5],1)),-3),-3))",
    "io_inp": [
      -4,
      4,
      -5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(take(input,1)),-3),-3))"
  },
  {
    "input": "input : list = [1, 3, 1, -2, -4]\noutput : list = [-13, -5, 7, 7, 15]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(sort_asc([1, 3, 1, -2, -4]),2),2)),-3)",
    "io_inp": [
      1,
      3,
      1,
      -2,
      -4
    ],
    "io_out": [
      -13,
      -5,
      7,
      7,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(sort_asc(input),2),2)),-3)"
  },
  {
    "input": "input : list = [-3, -3, 3, -4, 3]\noutput : list = [10, 10, 40, 40, 45]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(reverse([-3, -3, 3, -4, 3]),-1),5),5))",
    "io_inp": [
      -3,
      -3,
      3,
      -4,
      3
    ],
    "io_out": [
      10,
      10,
      40,
      40,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(reverse(input),-1),5),5))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(sort_asc([0, 4]),8)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),8)"
  },
  {
    "input": "input : list = [-5, 0, -4, 5, 0]\noutput : list = [21, 6, 6, -6, -9]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(sort_des([-5, 0, -4, 5, 0]),-3)),3),-3)",
    "io_inp": [
      -5,
      0,
      -4,
      5,
      0
    ],
    "io_out": [
      21,
      6,
      6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(sort_des(input),-3)),3),-3)"
  },
  {
    "input": "input : list = [-4, -3, -1, 2]\noutput : list = [-16, -12, -4, 8]",
    "output": "generated_output : list = take(mul_n([-4, -3, -1, 2],4),22)",
    "io_inp": [
      -4,
      -3,
      -1,
      2
    ],
    "io_out": [
      -16,
      -12,
      -4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),22)"
  },
  {
    "input": "input : list = [3, 5, 4, 1]\noutput : list = [4, 6, 5, 2]",
    "output": "generated_output : list = sub_n([3, 5, 4, 1],-1)",
    "io_inp": [
      3,
      5,
      4,
      1
    ],
    "io_out": [
      4,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(reverse([2, -3]))))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [0, 0, -120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des([-2, 0, 0]),5),-3),-4)",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(input),5),-3),-4)"
  },
  {
    "input": "input : list = [1, 0, 5, -2, -4, 3]\noutput : list = [1, -1, -3, -4, -6, -8]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(reverse([1, 0, 5, -2, -4, 3]),-2),1)),-2)",
    "io_inp": [
      1,
      0,
      5,
      -2,
      -4,
      3
    ],
    "io_out": [
      1,
      -1,
      -3,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(reverse(input),-2),1)),-2)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = reverse([-3, 5])",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3, -3, 1, 0]\noutput : list = [-4, -4, -4, 0]",
    "output": "generated_output : list = take(sub_n([-3, -3, -3, 1, 0],1),4)",
    "io_inp": [
      -3,
      -3,
      -3,
      1,
      0
    ],
    "io_out": [
      -4,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),4)"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [20, 6, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(sort_asc([-4, 5, 3]),5)),-2),-2)",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      20,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(sort_asc(input),5)),-2),-2)"
  },
  {
    "input": "input : list = [5, 0, 0, 5, -1, 3]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(take([5, 0, 0, 5, -1, 3],2),-5),4))",
    "io_inp": [
      5,
      0,
      0,
      5,
      -1,
      3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(input,2),-5),4))"
  },
  {
    "input": "input : list = [-1, -3, 0]\noutput : list = [3, 0, 2]",
    "output": "generated_output : list = reverse(take(sub_n(take(add_n([-1, -3, 0],-2),12),-5),24))",
    "io_inp": [
      -1,
      -3,
      0
    ],
    "io_out": [
      3,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(add_n(input,-2),12),-5),24))"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(reverse([-5, -4, -2])),2),-1),2)",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(reverse(input)),2),-1),2)"
  },
  {
    "input": "input : list = [-2, 4, 1, 2]\noutput : list = [3, 1, 0, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse([-2, 4, 1, 2])),-1))",
    "io_inp": [
      -2,
      4,
      1,
      2
    ],
    "io_out": [
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(input)),-1))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-4, -3],1),-3))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,1),-3))"
  },
  {
    "input": "input : list = [-3, 0, -4]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(sort_asc([-3, 0, -4]),1),13)))",
    "io_inp": [
      -3,
      0,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(sort_asc(input),1),13)))"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [-6]",
    "output": "generated_output : list = take(sort_des(sort_asc(drop(add_n([0, 3, -1],-5),2))),15)",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(drop(add_n(input,-5),2))),15)"
  },
  {
    "input": "input : list = [-5, 0, 0, 4, -3]\noutput : list = [-1, 2, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(drop([-5, 0, 0, 4, -3],2))),2),12)",
    "io_inp": [
      -5,
      0,
      0,
      4,
      -3
    ],
    "io_out": [
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(drop(input,2))),2),12)"
  },
  {
    "input": "input : list = [4, 3, 3, 0, -3, -5]\noutput : list = [5, 4, 4, 1, -2, -4]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(sort_asc([4, 3, 3, 0, -3, -5]),-1))))",
    "io_inp": [
      4,
      3,
      3,
      0,
      -3,
      -5
    ],
    "io_out": [
      5,
      4,
      4,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [4, -4, -1, 0, 5, -5]\noutput : list = [-8, 8, 2, 0, -10, 10]",
    "output": "generated_output : list = mul_n([4, -4, -1, 0, 5, -5],-2)",
    "io_inp": [
      4,
      -4,
      -1,
      0,
      5,
      -5
    ],
    "io_out": [
      -8,
      8,
      2,
      0,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 1, -5, -4, -1]\noutput : list = [-120, -105, -60, -30, 15]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sub_n([4, 1, -5, -4, -1],3),-3),35)),-5)",
    "io_inp": [
      4,
      1,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -120,
      -105,
      -60,
      -30,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sub_n(input,3),-3),35)),-5)"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [-16]",
    "output": "generated_output : list = take(take(mul_n(sub_n(take([-5, 1, 2],1),3),2),14),37)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(take(input,1),3),2),14),37)"
  },
  {
    "input": "input : list = [-3, 0, 0, -3, -4, 3]\noutput : list = [14, 7, 8, 11, 11, 8]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(add_n([-3, 0, 0, -3, -4, 3],1),3)),3),4)",
    "io_inp": [
      -3,
      0,
      0,
      -3,
      -4,
      3
    ],
    "io_out": [
      14,
      7,
      8,
      11,
      11,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(add_n(input,1),3)),3),4)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [16, 4]",
    "output": "generated_output : list = mul_n([-4, -1],-4)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -1, 2],1)",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -1, -4]\noutput : list = [4, -1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(sort_des([-1, 4, -1, -4])))))",
    "io_inp": [
      -1,
      4,
      -1,
      -4
    ],
    "io_out": [
      4,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, -4, -1]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = add_n(sort_des(reverse([0, -4, -1])),2)",
    "io_inp": [
      0,
      -4,
      -1
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(take([-1, 3, 0],1))),30))",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(take(input,1))),30))"
  },
  {
    "input": "input : list = [1, -4, 0, 4]\noutput : list = [0, 10, 2, -6]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(mul_n([1, -4, 0, 4],-2),21)),-2))",
    "io_inp": [
      1,
      -4,
      0,
      4
    ],
    "io_out": [
      0,
      10,
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(mul_n(input,-2),21)),-2))"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [2, -2, -8]",
    "output": "generated_output : list = take(add_n([5, 1, -5],-3),5)",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),5)"
  },
  {
    "input": "input : list = [-2, -5, 1, 0, 0, -3]\noutput : list = [-2, -5, -5, -11, -14, -20]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(mul_n([-2, -5, 1, 0, 0, -3],3),5),2)),2)",
    "io_inp": [
      -2,
      -5,
      1,
      0,
      0,
      -3
    ],
    "io_out": [
      -2,
      -5,
      -5,
      -11,
      -14,
      -20
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(mul_n(input,3),5),2)),2)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(sub_n([5, 1],2)),-3),-3))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(sub_n(input,2)),-3),-3))"
  },
  {
    "input": "input : list = [-5, 4, 3, -4, -2, 1]\noutput : list = [8, 7, 5, 2, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des([-5, 4, 3, -4, -2, 1]),-4)",
    "io_inp": [
      -5,
      4,
      3,
      -4,
      -2,
      1
    ],
    "io_out": [
      8,
      7,
      5,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_asc([-2, 1, -3])),-4),4),22)",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_asc(input)),-4),4),22)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [10]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(take([-5, 1, 5],1),4),-5),3),-2)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(take(input,1),4),-5),3),-2)"
  },
  {
    "input": "input : list = [-4, 5, 3, -2, 1]\noutput : list = [-9, -7, -4, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(sort_asc([-4, 5, 3, -2, 1])),2)),-3)",
    "io_inp": [
      -4,
      5,
      3,
      -2,
      1
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(sort_asc(input)),2)),-3)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take([3, 5, -1],1))",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [5, -3, 0, 3, 5, -3]\noutput : list = [-10, 6, 0, -6, -10, 6]",
    "output": "generated_output : list = mul_n([5, -3, 0, 3, 5, -3],-2)",
    "io_inp": [
      5,
      -3,
      0,
      3,
      5,
      -3
    ],
    "io_out": [
      -10,
      6,
      0,
      -6,
      -10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 3, -4, 4, 5]\noutput : list = [5, 4, 3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(sort_des([-4, 3, -4, 4, 5])))))",
    "io_inp": [
      -4,
      3,
      -4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, 0, -2, -5, 4]\noutput : list = [-9, -6, -4, -4, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_des([0, 0, -2, -5, 4]),15)),4))",
    "io_inp": [
      0,
      0,
      -2,
      -5,
      4
    ],
    "io_out": [
      -9,
      -6,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_des(input),15)),4))"
  },
  {
    "input": "input : list = [-1, -3, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_asc(reverse(take([-1, -3, -2],1))),18)",
    "io_inp": [
      -1,
      -3,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(input,1))),18)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(reverse([-1, 0]),-2)),13))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(reverse(input),-2)),13))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-4, -1]),-3),-2)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),-3),-2)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_des([-5, -3, -1]))",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [9, 3, 6]",
    "output": "generated_output : list = mul_n([3, 1, 2],3)",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      9,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-15]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(sort_asc([-5, -3, 2])),3),1))",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(sort_asc(input)),3),1))"
  },
  {
    "input": "input : list = [4, -3, -2, -4]\noutput : list = [4, 3, 2, -4]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(mul_n([4, -3, -2, -4],-1),5)),5),44)",
    "io_inp": [
      4,
      -3,
      -2,
      -4
    ],
    "io_out": [
      4,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(mul_n(input,-1),5)),5),44)"
  },
  {
    "input": "input : list = [-5, 5, 2, -4]\noutput : list = [7, 4, -2, -3]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(sort_asc([-5, 5, 2, -4]))),26),2)",
    "io_inp": [
      -5,
      5,
      2,
      -4
    ],
    "io_out": [
      7,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(sort_asc(input))),26),2)"
  },
  {
    "input": "input : list = [-3, 4, -1, -4, -3]\noutput : list = [-6, 8, -2, -8, -6]",
    "output": "generated_output : list = mul_n(take(take(mul_n([-3, 4, -1, -4, -3],-1),26),8),-2)",
    "io_inp": [
      -3,
      4,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -6,
      8,
      -2,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(input,-1),26),8),-2)"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [-10, -5, 10]",
    "output": "generated_output : list = mul_n([2, 1, -2],-5)",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      -10,
      -5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc([5, 5])",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, 4]\noutput : list = [5, 4, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(mul_n([-3, -2, 5, 4],1)))))",
    "io_inp": [
      -3,
      -2,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [-1, -1, -3, -4]\noutput : list = [10, 10, 20, 25]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(add_n([-1, -1, -3, -4],-1),-1),5),32))",
    "io_inp": [
      -1,
      -1,
      -3,
      -4
    ],
    "io_out": [
      10,
      10,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(add_n(input,-1),-1),5),32))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [7, 4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n([0, -3],-1))),-4))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n(input,-1))),-4))"
  },
  {
    "input": "input : list = [1, 3, -5, 5, -5, -3]\noutput : list = [-13, -19, 11, -19, 5, -1]",
    "output": "generated_output : list = sub_n(mul_n(reverse([1, 3, -5, 5, -5, -3]),3),4)",
    "io_inp": [
      1,
      3,
      -5,
      5,
      -5,
      -3
    ],
    "io_out": [
      -13,
      -19,
      11,
      -19,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),3),4)"
  },
  {
    "input": "input : list = [-2, 4, -3, -2, 0, 4]\noutput : list = [4, 4, 0, -2, -2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc([-2, 4, -3, -2, 0, 4]),10))",
    "io_inp": [
      -2,
      4,
      -3,
      -2,
      0,
      4
    ],
    "io_out": [
      4,
      4,
      0,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),10))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(reverse([2, 0]),6))),5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(reverse(input),6))),5)"
  },
  {
    "input": "input : list = [5, 0, -5, -4]\noutput : list = [-10, -9, -5, 0]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n([5, 0, -5, -4],5),17)))",
    "io_inp": [
      5,
      0,
      -5,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(input,5),17)))"
  },
  {
    "input": "input : list = [-4, 0, -1, -4]\noutput : list = [0, 4, 3, 0]",
    "output": "generated_output : list = add_n([-4, 0, -1, -4],4)",
    "io_inp": [
      -4,
      0,
      -1,
      -4
    ],
    "io_out": [
      0,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, 0, -1, -1, -4]\noutput : list = [-4, -9, -10, -10, -13]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse([5, 0, -1, -1, -4]),5)),4)",
    "io_inp": [
      5,
      0,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -9,
      -10,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(input),5)),4)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [1, 6]",
    "output": "generated_output : list = sub_n(sort_asc([-2, 3]),-3)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-4, -2, 4]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(reverse([-3, -2, 1])),2),30),2)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(reverse(input)),2),30),2)"
  },
  {
    "input": "input : list = [2, -2, 2, 2]\noutput : list = [-5, -1, -1, -1]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(sort_asc([2, -2, 2, 2])),-3)),26)",
    "io_inp": [
      2,
      -2,
      2,
      2
    ],
    "io_out": [
      -5,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(sort_asc(input)),-3)),26)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [8, 2]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n([0, 2],-3),5),1),3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(input,-3),5),1),3)"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [-3, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_asc([2, -2, 5]),9))),1)",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_asc(input),9))),1)"
  },
  {
    "input": "input : list = [-4, -5, 4, -1, 0, -1]\noutput : list = [-12, 3, 0, 3]",
    "output": "generated_output : list = drop(mul_n([-4, -5, 4, -1, 0, -1],-3),2)",
    "io_inp": [
      -4,
      -5,
      4,
      -1,
      0,
      -1
    ],
    "io_out": [
      -12,
      3,
      0,
      3
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,-3),2)"
  },
  {
    "input": "input : list = [-2, -1, -3, 4, -3, 1]\noutput : list = [4, -3, 1]",
    "output": "generated_output : list = drop([-2, -1, -3, 4, -3, 1],3)",
    "io_inp": [
      -2,
      -1,
      -3,
      4,
      -3,
      1
    ],
    "io_out": [
      4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [-6, 1, -6]",
    "output": "generated_output : list = add_n(reverse(sub_n([-4, 3, -4],-2)),-4)",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      -6,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-2)),-4)"
  },
  {
    "input": "input : list = [-4, -2, 2, 4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take([-4, -2, 2, 4],2)",
    "io_inp": [
      -4,
      -2,
      2,
      4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 5, 0, 5, 2, 4]\noutput : list = [-1, -3, -5, -5, -6, -6]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(sort_des([4, 5, 0, 5, 2, 4]),6)),-1),1)",
    "io_inp": [
      4,
      5,
      0,
      5,
      2,
      4
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(sort_des(input),6)),-1),1)"
  },
  {
    "input": "input : list = [2, 0, -2, -4]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(take([2, 0, -2, -4],2)),4),-2))",
    "io_inp": [
      2,
      0,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(take(input,2)),4),-2))"
  },
  {
    "input": "input : list = [-3, 2, 0]\noutput : list = [6, 4, 1]",
    "output": "generated_output : list = sort_des(sub_n([-3, 2, 0],-4))",
    "io_inp": [
      -3,
      2,
      0
    ],
    "io_out": [
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-2, -1, 4, 3, -1, 5]\noutput : list = [-10, -8, -6, 2, 2, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(sort_asc([-2, -1, 4, 3, -1, 5]),-2))))",
    "io_inp": [
      -2,
      -1,
      4,
      3,
      -1,
      5
    ],
    "io_out": [
      -10,
      -8,
      -6,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [-4, 4, -5, 0]\noutput : list = [-2, -10, -18, -20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(reverse([-4, 4, -5, 0]),5),2)))",
    "io_inp": [
      -4,
      4,
      -5,
      0
    ],
    "io_out": [
      -2,
      -10,
      -18,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(reverse(input),5),2)))"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [1, -8, -9]",
    "output": "generated_output : list = add_n(take(take(reverse(sort_asc([-4, -5, 5])),24),21),-4)",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      1,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(sort_asc(input)),24),21),-4)"
  },
  {
    "input": "input : list = [3, -3, 0, 3, 4]\noutput : list = [2, 1, 1, -2, -5]",
    "output": "generated_output : list = add_n(add_n(sort_des([3, -3, 0, 3, 4]),1),-3)",
    "io_inp": [
      3,
      -3,
      0,
      3,
      4
    ],
    "io_out": [
      2,
      1,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),1),-3)"
  },
  {
    "input": "input : list = [-2, 3, 3, -2]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(take(reverse(reverse(take([-2, 3, 3, -2],1))),32),-5)",
    "io_inp": [
      -2,
      3,
      3,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(take(input,1))),32),-5)"
  },
  {
    "input": "input : list = [3, -2, 0, -5, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take([3, -2, 0, -5, 2],1))",
    "io_inp": [
      3,
      -2,
      0,
      -5,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [0, 2, 3, 5]\noutput : list = [-8, -4, -2, 2]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(reverse([0, 2, 3, 5]),9)),-1),-2)",
    "io_inp": [
      0,
      2,
      3,
      5
    ],
    "io_out": [
      -8,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(reverse(input),9)),-1),-2)"
  },
  {
    "input": "input : list = [-3, 0, -4, 3, 2, -2]\noutput : list = [80, 60, 40, 0, -40, -60]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(mul_n([-3, 0, -4, 3, 2, -2],5),-4),1)))",
    "io_inp": [
      -3,
      0,
      -4,
      3,
      2,
      -2
    ],
    "io_out": [
      80,
      60,
      40,
      0,
      -40,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(mul_n(input,5),-4),1)))"
  },
  {
    "input": "input : list = [2, -2, 4, -3]\noutput : list = [2, -2]",
    "output": "generated_output : list = take([2, -2, 4, -3],2)",
    "io_inp": [
      2,
      -2,
      4,
      -3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -1, -2, -3, 5, 2]\noutput : list = [17, 13, 9, 5, -3, -15]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(reverse([0, -1, -2, -3, 5, 2])),-4)),-5)",
    "io_inp": [
      0,
      -1,
      -2,
      -3,
      5,
      2
    ],
    "io_out": [
      17,
      13,
      9,
      5,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(reverse(input)),-4)),-5)"
  },
  {
    "input": "input : list = [-5, 2, -4, 1, -2]\noutput : list = [-14, -12, -8, -2, 0]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sort_des([-5, 2, -4, 1, -2])),2),2),2)",
    "io_inp": [
      -5,
      2,
      -4,
      1,
      -2
    ],
    "io_out": [
      -14,
      -12,
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sort_des(input)),2),2),2)"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [5, 5, 2]",
    "output": "generated_output : list = sort_des([5, 2, 5])",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, 2, -1]\noutput : list = [72, 68, 60, 48]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(sub_n([4, 5, 2, -1],-5),-5),3)),4)",
    "io_inp": [
      4,
      5,
      2,
      -1
    ],
    "io_out": [
      72,
      68,
      60,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(sub_n(input,-5),-5),3)),4)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n(take(take(sort_des(add_n([1, 4],-5)),8),12),-1)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(add_n(input,-5)),8),12),-1)"
  },
  {
    "input": "input : list = [2, 0, 3, -2, 4]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc(drop([2, 0, 3, -2, 4],2)),-2),2),-3)",
    "io_inp": [
      2,
      0,
      3,
      -2,
      4
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(drop(input,2)),-2),2),-3)"
  },
  {
    "input": "input : list = [-1, -4, -3, -5, 0]\noutput : list = [0, -2, -6, -8, -10]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(reverse([-1, -4, -3, -5, 0]),-2),12)),-1)",
    "io_inp": [
      -1,
      -4,
      -3,
      -5,
      0
    ],
    "io_out": [
      0,
      -2,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(reverse(input),-2),12)),-1)"
  },
  {
    "input": "input : list = [3, -2, 3, 5, 0]\noutput : list = [-2, 0, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([3, -2, 3, 5, 0])",
    "io_inp": [
      3,
      -2,
      3,
      5,
      0
    ],
    "io_out": [
      -2,
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, 4, 1]\noutput : list = [8, 7, 4, 2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sort_des([-1, 5, 4, 1]))),-3))",
    "io_inp": [
      -1,
      5,
      4,
      1
    ],
    "io_out": [
      8,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [3, 1, -1, 0, -2]\noutput : list = [-1, -3, -5, -4, -6]",
    "output": "generated_output : list = sub_n([3, 1, -1, 0, -2],4)",
    "io_inp": [
      3,
      1,
      -1,
      0,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, 5, -4, 1, -4]\noutput : list = [8, -2, 8, -10, 2]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(reverse([-1, 5, -4, 1, -4]),-1),2),2),-1)",
    "io_inp": [
      -1,
      5,
      -4,
      1,
      -4
    ],
    "io_out": [
      8,
      -2,
      8,
      -10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(reverse(input),-1),2),2),-1)"
  },
  {
    "input": "input : list = [-3, 2, -2, -4, 3, -3]\noutput : list = [6, 5, 1, 0, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc([-3, 2, -2, -4, 3, -3]),-4)),-1)",
    "io_inp": [
      -3,
      2,
      -2,
      -4,
      3,
      -3
    ],
    "io_out": [
      6,
      5,
      1,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(input),-4)),-1)"
  },
  {
    "input": "input : list = [-4, 1, 5, 2]\noutput : list = [-4, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([-4, 1, 5, 2])",
    "io_inp": [
      -4,
      1,
      5,
      2
    ],
    "io_out": [
      -4,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [-2, 2, 7]",
    "output": "generated_output : list = add_n(sort_asc([0, -4, 5]),2)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      -2,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [0, -4, -3, 1]\noutput : list = [-2, -3, -6, -7]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_asc([0, -4, -3, 1]),3))))",
    "io_inp": [
      0,
      -4,
      -3,
      1
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-5, 3, -5, 5]\noutput : list = [20, -10]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(drop([-5, 3, -5, 5],2)),3),-5),1)",
    "io_inp": [
      -5,
      3,
      -5,
      5
    ],
    "io_out": [
      20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(drop(input,2)),3),-5),1)"
  },
  {
    "input": "input : list = [-2, -5, -4, 0]\noutput : list = [0, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-2, -5, -4, 0])",
    "io_inp": [
      -2,
      -5,
      -4,
      0
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3, -4, 5, 2]\noutput : list = [-3, -3, 3, 4, 6]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sort_asc([-4, 3, -4, 5, 2]),24),-4),3),23)",
    "io_inp": [
      -4,
      3,
      -4,
      5,
      2
    ],
    "io_out": [
      -3,
      -3,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sort_asc(input),24),-4),3),23)"
  },
  {
    "input": "input : list = [-3, 1, -2, 4]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(mul_n(take(drop([-3, 1, -2, 4],2),10),-1))",
    "io_inp": [
      -3,
      1,
      -2,
      4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(drop(input,2),10),-1))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(add_n([1, 5],-5)),-1),9))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(add_n(input,-5)),-1),9))"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 5, 3],1)",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 0, -4, -5]\noutput : list = [0, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-3, 0, -4, -5])",
    "io_inp": [
      -3,
      0,
      -4,
      -5
    ],
    "io_out": [
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, -2, 0, 0, -5]\noutput : list = [-10, 10]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(take([-4, 0, -2, 0, 0, -5],2),2)),5),3)",
    "io_inp": [
      -4,
      0,
      -2,
      0,
      0,
      -5
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(take(input,2),2)),5),3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-1, -7]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(add_n([5, -1],-1),1),-3),2),18)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(add_n(input,-1),1),-3),2),18)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sort_des([-2, 2]),-4),5),-4),3)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sort_des(input),-4),5),-4),3)"
  },
  {
    "input": "input : list = [2, -4, -5, -4, 0, 3]\noutput : list = [8, 5, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(drop([2, -4, -5, -4, 0, 3],2),11),5)))",
    "io_inp": [
      2,
      -4,
      -5,
      -4,
      0,
      3
    ],
    "io_out": [
      8,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(drop(input,2),11),5)))"
  },
  {
    "input": "input : list = [4, -2, -1]\noutput : list = [-19, 1]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des([4, -2, -1]),-4),2)),-3)",
    "io_inp": [
      4,
      -2,
      -1
    ],
    "io_out": [
      -19,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des(input),-4),2)),-3)"
  },
  {
    "input": "input : list = [-1, -2, 2, -3, 5]\noutput : list = [2, -8, 8]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(drop([-1, -2, 2, -3, 5],2),11),-2),2),2)",
    "io_inp": [
      -1,
      -2,
      2,
      -3,
      5
    ],
    "io_out": [
      2,
      -8,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(drop(input,2),11),-2),2),2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [24, 3]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(reverse([2, -5]),-3),4),32),5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      24,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(reverse(input),-3),4),32),5)"
  },
  {
    "input": "input : list = [2, 3, -2, -5, -4]\noutput : list = [13, 8, -12, -22, -27]",
    "output": "generated_output : list = sort_des(sub_n(reverse(mul_n([2, 3, -2, -5, -4],5)),2))",
    "io_inp": [
      2,
      3,
      -2,
      -5,
      -4
    ],
    "io_out": [
      13,
      8,
      -12,
      -22,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(mul_n(input,5)),2))"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(take([-4, -4, -5],1))),1),1)",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(take(input,1))),1),1)"
  },
  {
    "input": "input : list = [0, -1, -1, -4]\noutput : list = [-4, -1, -1, 0]",
    "output": "generated_output : list = sort_asc([0, -1, -1, -4])",
    "io_inp": [
      0,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, -5, 0, -1, -4]\noutput : list = [3, 3, 2, -1, -2, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(sub_n([-5, 0, -5, 0, -1, -4],-3))),29))",
    "io_inp": [
      -5,
      0,
      -5,
      0,
      -1,
      -4
    ],
    "io_out": [
      3,
      3,
      2,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(sub_n(input,-3))),29))"
  },
  {
    "input": "input : list = [-2, -3, 0, 4]\noutput : list = [3, -1, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc([-2, -3, 0, 4]),1),4)),5)",
    "io_inp": [
      -2,
      -3,
      0,
      4
    ],
    "io_out": [
      3,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc(input),1),4)),5)"
  },
  {
    "input": "input : list = [-1, 2, 2]\noutput : list = [2, 5, 5]",
    "output": "generated_output : list = add_n([-1, 2, 2],3)",
    "io_inp": [
      -1,
      2,
      2
    ],
    "io_out": [
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, 1, 0, 4, -5]\noutput : list = [1, 0, 4, -5]",
    "output": "generated_output : list = drop([-1, 1, 0, 4, -5],1)",
    "io_inp": [
      -1,
      1,
      0,
      4,
      -5
    ],
    "io_out": [
      1,
      0,
      4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [-10, -12, -14]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sort_asc([3, 5, 4])),-3),-1),-2)",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      -10,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sort_asc(input)),-3),-1),-2)"
  },
  {
    "input": "input : list = [3, 4, 5, 5]\noutput : list = [10, 10, 8, 6]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(sort_asc([3, 4, 5, 5])),2),5))",
    "io_inp": [
      3,
      4,
      5,
      5
    ],
    "io_out": [
      10,
      10,
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(sort_asc(input)),2),5))"
  },
  {
    "input": "input : list = [-3, -2, -3, 3, 0, 1]\noutput : list = [-3, 3, 0, 1]",
    "output": "generated_output : list = drop([-3, -2, -3, 3, 0, 1],2)",
    "io_inp": [
      -3,
      -2,
      -3,
      3,
      0,
      1
    ],
    "io_out": [
      -3,
      3,
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -4, -4, 2, 4]\noutput : list = [-4, -4, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([0, -4, -4, 2, 4])",
    "io_inp": [
      0,
      -4,
      -4,
      2,
      4
    ],
    "io_out": [
      -4,
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 5, -1, 1, 1, -2]\noutput : list = [-2, -1, 1, 1, 2, 5]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc([2, 5, -1, 1, 1, -2]))),36)",
    "io_inp": [
      2,
      5,
      -1,
      1,
      1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(input))),36)"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [8, 9, 9]",
    "output": "generated_output : list = take(add_n(sort_asc([5, 4, 5]),4),17)",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),4),17)"
  },
  {
    "input": "input : list = [-2, -5, -1, -4, 2]\noutput : list = [-3, -2, 0, 1, 4]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(add_n([-2, -5, -1, -4, 2],5)),30),-3))",
    "io_inp": [
      -2,
      -5,
      -1,
      -4,
      2
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(add_n(input,5)),30),-3))"
  },
  {
    "input": "input : list = [-4, 4, 4, 3]\noutput : list = [4, 4, 3, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(reverse([-4, 4, 4, 3])))))",
    "io_inp": [
      -4,
      4,
      4,
      3
    ],
    "io_out": [
      4,
      4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [1, 2, 4, -4]\noutput : list = [12, -8, -12, -20]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_asc(mul_n([1, 2, 4, -4],-4)),27)),4)",
    "io_inp": [
      1,
      2,
      4,
      -4
    ],
    "io_out": [
      12,
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_asc(mul_n(input,-4)),27)),4)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(sub_n([1, -3],-4),-5)),-5))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(sub_n(input,-4),-5)),-5))"
  },
  {
    "input": "input : list = [1, 1, 2, -2]\noutput : list = [5, 5, 6, 2]",
    "output": "generated_output : list = add_n(reverse(reverse([1, 1, 2, -2])),4)",
    "io_inp": [
      1,
      1,
      2,
      -2
    ],
    "io_out": [
      5,
      5,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),4)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(sort_des([-4, -3])),-1)))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-1, -5, 3, 1]\noutput : list = [-5, -15, 25, 5]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse([-1, -5, 3, 1]))),-5)",
    "io_inp": [
      -1,
      -5,
      3,
      1
    ],
    "io_out": [
      -5,
      -15,
      25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(input))),-5)"
  },
  {
    "input": "input : list = [1, 4, 3]\noutput : list = [2, 5, 4]",
    "output": "generated_output : list = sub_n([1, 4, 3],-1)",
    "io_inp": [
      1,
      4,
      3
    ],
    "io_out": [
      2,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, 2, -3, 2, 3]\noutput : list = [-5, -1, 0, 0, 1]",
    "output": "generated_output : list = add_n(take(sort_asc(take(reverse([1, 2, -3, 2, 3]),13)),19),-2)",
    "io_inp": [
      1,
      2,
      -3,
      2,
      3
    ],
    "io_out": [
      -5,
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(reverse(input),13)),19),-2)"
  },
  {
    "input": "input : list = [-5, 4, -4]\noutput : list = [-20, 20]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(drop([-5, 4, -4],1))),-5))",
    "io_inp": [
      -5,
      4,
      -4
    ],
    "io_out": [
      -20,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(drop(input,1))),-5))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(reverse([-5, -4]),-1),21)))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(reverse(input),-1),21)))"
  },
  {
    "input": "input : list = [-2, -4, 1, 0, 5, 5]\noutput : list = [0, 0, -4, -5, -7, -9]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_asc([-2, -4, 1, 0, 5, 5]),5)),17),27)",
    "io_inp": [
      -2,
      -4,
      1,
      0,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      -4,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_asc(input),5)),17),27)"
  },
  {
    "input": "input : list = [-1, 5, 0, -4]\noutput : list = [-4, -1, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 5, 0, -4]))",
    "io_inp": [
      -1,
      5,
      0,
      -4
    ],
    "io_out": [
      -4,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -3, 5, 0, 5, 5]\noutput : list = [0, 60, -60, 15, -60, -60]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([1, -3, 5, 0, 5, 5],1),5),-3)",
    "io_inp": [
      1,
      -3,
      5,
      0,
      5,
      5
    ],
    "io_out": [
      0,
      60,
      -60,
      15,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,1),5),-3)"
  },
  {
    "input": "input : list = [0, 3, -2, 1, -5]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(reverse(take([0, 3, -2, 1, -5],2)))",
    "io_inp": [
      0,
      3,
      -2,
      1,
      -5
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [1, 2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = drop([1, 2, -1],1)",
    "io_inp": [
      1,
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-25, -17]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([-5, -3],-1),-4),5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -25,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,-1),-4),5)"
  },
  {
    "input": "input : list = [-5, -3, -3, 2, -5]\noutput : list = [20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(take([-5, -3, -3, 2, -5],1)),-4)))",
    "io_inp": [
      -5,
      -3,
      -3,
      2,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(take(input,1)),-4)))"
  },
  {
    "input": "input : list = [-4, 2, 0, 3, 3]\noutput : list = [-6, 0, -2, 1, 1]",
    "output": "generated_output : list = reverse(sub_n(take(take(reverse([-4, 2, 0, 3, 3]),5),10),2))",
    "io_inp": [
      -4,
      2,
      0,
      3,
      3
    ],
    "io_out": [
      -6,
      0,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(reverse(input),5),10),2))"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [0, 3, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(sub_n([-1, 2, -1],1),-1))),-3)",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      0,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(sub_n(input,1),-1))),-3)"
  },
  {
    "input": "input : list = [-5, -2, 3, -3, -4]\noutput : list = [-6, -5, -4, -3, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_des([-5, -2, 3, -3, -4]))),1),56)",
    "io_inp": [
      -5,
      -2,
      3,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_des(input))),1),56)"
  },
  {
    "input": "input : list = [3, -1, 5, 3]\noutput : list = [15, 13, 13, 9]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(add_n([3, -1, 5, 3],4),-4),22),2))",
    "io_inp": [
      3,
      -1,
      5,
      3
    ],
    "io_out": [
      15,
      13,
      13,
      9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(add_n(input,4),-4),22),2))"
  },
  {
    "input": "input : list = [2, -3, 2, 4, -4, 0]\noutput : list = [11, 9, 9, 7, 4, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(take(sort_asc([2, -3, 2, 4, -4, 0]),24),2)),5)",
    "io_inp": [
      2,
      -3,
      2,
      4,
      -4,
      0
    ],
    "io_out": [
      11,
      9,
      9,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(sort_asc(input),24),2)),5)"
  },
  {
    "input": "input : list = [0, 3, 3, -5]\noutput : list = [-10, -5, -2, -2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([0, 3, 3, -5])),-5)",
    "io_inp": [
      0,
      3,
      3,
      -5
    ],
    "io_out": [
      -10,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [3, -4, -3, -3, 0, -5]\noutput : list = [2, -1, -4, -4, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc([3, -4, -3, -3, 0, -5])),1))",
    "io_inp": [
      3,
      -4,
      -3,
      -3,
      0,
      -5
    ],
    "io_out": [
      2,
      -1,
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(input)),1))"
  },
  {
    "input": "input : list = [-3, 2, -2]\noutput : list = [2, 3, 7]",
    "output": "generated_output : list = sub_n(sort_asc([-3, 2, -2]),-5)",
    "io_inp": [
      -3,
      2,
      -2
    ],
    "io_out": [
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-20, 12]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(mul_n([-3, 5],-4)),2)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -20,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(mul_n(input,-4)),2)))"
  },
  {
    "input": "input : list = [1, -1, 2, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(drop([1, -1, 2, 0],2),-2)),1),37)",
    "io_inp": [
      1,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(drop(input,2),-2)),1),37)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-4, -2, -2]",
    "output": "generated_output : list = take(sort_asc([-2, -4, -2]),17)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),17)"
  },
  {
    "input": "input : list = [0, -2, -2, 2, 1, 0]\noutput : list = [3, 9, 9, -3, 0, 3]",
    "output": "generated_output : list = add_n(mul_n([0, -2, -2, 2, 1, 0],-3),3)",
    "io_inp": [
      0,
      -2,
      -2,
      2,
      1,
      0
    ],
    "io_out": [
      3,
      9,
      9,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),3)"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [19, -9, -17]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([5, -2, -4],4),1))",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      19,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,4),1))"
  },
  {
    "input": "input : list = [1, 2, 3, 3, -2]\noutput : list = [-1, -6]",
    "output": "generated_output : list = add_n(drop([1, 2, 3, 3, -2],3),-4)",
    "io_inp": [
      1,
      2,
      3,
      3,
      -2
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-4)"
  },
  {
    "input": "input : list = [5, 0, 5, -4, -1]\noutput : list = [2, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(take([5, 0, 5, -4, -1],2)))),-2)",
    "io_inp": [
      5,
      0,
      5,
      -4,
      -1
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(take(input,2)))),-2)"
  },
  {
    "input": "input : list = [5, -2, 5, 1, -4, -4]\noutput : list = [24]",
    "output": "generated_output : list = take(mul_n(drop(take(mul_n([5, -2, 5, 1, -4, -4],-3),8),5),2),40)",
    "io_inp": [
      5,
      -2,
      5,
      1,
      -4,
      -4
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(take(mul_n(input,-3),8),5),2),40)"
  },
  {
    "input": "input : list = [-4, 1, 0, 1, -1, -2]\noutput : list = [6, -4, -2, -4, 0, 2]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(sub_n([-4, 1, 0, 1, -1, -2],-1),-2)),37))",
    "io_inp": [
      -4,
      1,
      0,
      1,
      -1,
      -2
    ],
    "io_out": [
      6,
      -4,
      -2,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(sub_n(input,-1),-2)),37))"
  },
  {
    "input": "input : list = [-5, 5, -2, 4, 3]\noutput : list = [5, 15, 8, 14, 13]",
    "output": "generated_output : list = reverse(take(add_n(reverse(add_n([-5, 5, -2, 4, 3],5)),5),14))",
    "io_inp": [
      -5,
      5,
      -2,
      4,
      3
    ],
    "io_out": [
      5,
      15,
      8,
      14,
      13
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(add_n(input,5)),5),14))"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sort_asc(take(drop(sub_n([3, 5, -2],-4),2),3)))",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(drop(sub_n(input,-4),2),3)))"
  },
  {
    "input": "input : list = [-5, -4, 2]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = sub_n([-5, -4, 2],-1)",
    "io_inp": [
      -5,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 5, -1]\noutput : list = [-9, -6, 0]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(add_n([-4, 5, -1],-1),1),3),11))",
    "io_inp": [
      -4,
      5,
      -1
    ],
    "io_out": [
      -9,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(add_n(input,-1),1),3),11))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [34, 46]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sub_n([0, 2],-5),3),2),4))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      34,
      46
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sub_n(input,-5),3),2),4))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [20, 15]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_asc([3, 4]),3),3),5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      20,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_asc(input),3),3),5))"
  },
  {
    "input": "input : list = [3, 3, -3, 5, 5]\noutput : list = [48, -112, -112]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(drop([3, 3, -3, 5, 5],2),5),-3),-4),1)",
    "io_inp": [
      3,
      3,
      -3,
      5,
      5
    ],
    "io_out": [
      48,
      -112,
      -112
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(drop(input,2),5),-3),-4),1)"
  },
  {
    "input": "input : list = [5, 4, 1, 2]\noutput : list = [-3, -4, -6, -7]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(sort_des([5, 4, 1, 2]),-4)),-3),1)",
    "io_inp": [
      5,
      4,
      1,
      2
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(sort_des(input),-4)),-3),1)"
  },
  {
    "input": "input : list = [5, 1, 1, -1, 1]\noutput : list = [-2, -8, -2, -2, 10]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n([5, 1, 1, -1, 1],-1),-3)),5)",
    "io_inp": [
      5,
      1,
      1,
      -1,
      1
    ],
    "io_out": [
      -2,
      -8,
      -2,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(input,-1),-3)),5)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [5, -15]",
    "output": "generated_output : list = add_n(mul_n(mul_n([0, -2],5),2),5)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      5,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,5),2),5)"
  },
  {
    "input": "input : list = [4, -4, -4, -1, -1]\noutput : list = [6, 1, 1, -2, -2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(sort_des([4, -4, -4, -1, -1]),-3))),1)",
    "io_inp": [
      4,
      -4,
      -4,
      -1,
      -1
    ],
    "io_out": [
      6,
      1,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(sort_des(input),-3))),1)"
  },
  {
    "input": "input : list = [5, 5, -2, 1, -2, -2]\noutput : list = [5]",
    "output": "generated_output : list = take(take(sort_des([5, 5, -2, 1, -2, -2]),1),8)",
    "io_inp": [
      5,
      5,
      -2,
      1,
      -2,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),1),8)"
  },
  {
    "input": "input : list = [-1, 3, 2, -5, 4]\noutput : list = [-12, 2, 4, -4]",
    "output": "generated_output : list = mul_n(drop(take(reverse(add_n([-1, 3, 2, -5, 4],-1)),24),1),2)",
    "io_inp": [
      -1,
      3,
      2,
      -5,
      4
    ],
    "io_out": [
      -12,
      2,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(reverse(add_n(input,-1)),24),1),2)"
  },
  {
    "input": "input : list = [4, 4, 3, 3, -5]\noutput : list = [-5, 3, 3, 4, 4]",
    "output": "generated_output : list = reverse(sort_des([4, 4, 3, 3, -5]))",
    "io_inp": [
      4,
      4,
      3,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [-20, -28]",
    "output": "generated_output : list = take(mul_n(add_n([2, 4, 2],3),-4),2)",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      -20,
      -28
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,3),-4),2)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sort_asc([-4, -4]),5),4),31),1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sort_asc(input),5),4),31),1)"
  },
  {
    "input": "input : list = [-4, -2, -3]\noutput : list = [-7, -6, -5]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(sub_n([-4, -2, -3],5),9)),2))",
    "io_inp": [
      -4,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(sub_n(input,5),9)),2))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des([0, 2])",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des([-3, 4])",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, 0, -3, -4, 0]\noutput : list = [-12]",
    "output": "generated_output : list = add_n(mul_n(take(take(take([-3, 0, 0, -3, -4, 0],4),1),12),5),3)",
    "io_inp": [
      -3,
      0,
      0,
      -3,
      -4,
      0
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(take(input,4),1),12),5),3)"
  },
  {
    "input": "input : list = [0, 1, -3, 0, 0]\noutput : list = [-6, -3, -3, -3, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(sort_des([0, 1, -3, 0, 0])))),3)",
    "io_inp": [
      0,
      1,
      -3,
      0,
      0
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [-3, -2, -2, 2]\noutput : list = [-4, -8, -8, -9]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n([-3, -2, -2, 2],-2),4)))",
    "io_inp": [
      -3,
      -2,
      -2,
      2
    ],
    "io_out": [
      -4,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(input,-2),4)))"
  },
  {
    "input": "input : list = [3, 5, -3, -3]\noutput : list = [-3, -3, 3, 5]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(sort_asc([3, 5, -3, -3]),-2),-5),37),3)",
    "io_inp": [
      3,
      5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(sort_asc(input),-2),-5),37),3)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sub_n([0, -1],-5)),20)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sub_n(input,-5)),20)))"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [5, 8, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sub_n([5, 0, 3],1),-4))),-2)",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      5,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sub_n(input,1),-4))),-2)"
  },
  {
    "input": "input : list = [5, 4, 0]\noutput : list = [4, 8, 9]",
    "output": "generated_output : list = reverse(sub_n(sub_n([5, 4, 0],-3),-1))",
    "io_inp": [
      5,
      4,
      0
    ],
    "io_out": [
      4,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,-3),-1))"
  },
  {
    "input": "input : list = [-4, 4, -5, -2]\noutput : list = [-9, -1, -10, -7]",
    "output": "generated_output : list = sub_n([-4, 4, -5, -2],5)",
    "io_inp": [
      -4,
      4,
      -5,
      -2
    ],
    "io_out": [
      -9,
      -1,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, -3, 1]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(take([-2, -3, 1],1),1))))",
    "io_inp": [
      -2,
      -3,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(take(input,1),1))))"
  },
  {
    "input": "input : list = [-3, -1, -3, 3, -5]\noutput : list = [-5, -3, -3, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-3, -1, -3, 3, -5]))",
    "io_inp": [
      -3,
      -1,
      -3,
      3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -1, -5, 0, 2, 4]\noutput : list = [-6, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(drop([-2, -1, -5, 0, 2, 4],2),-1)),34))",
    "io_inp": [
      -2,
      -1,
      -5,
      0,
      2,
      4
    ],
    "io_out": [
      -6,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(drop(input,2),-1)),34))"
  },
  {
    "input": "input : list = [1, -3, 5, 4]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(take([1, -3, 5, 4],1),1)),-1))",
    "io_inp": [
      1,
      -3,
      5,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(take(input,1),1)),-1))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n(add_n(take(add_n(reverse([-5, 3]),3),10),-4),3)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(reverse(input),3),10),-4),3)"
  },
  {
    "input": "input : list = [-2, 5, -2, 4, 0]\noutput : list = [10, -18, 10, -14, 2]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(reverse([-2, 5, -2, 4, 0])),-4),32),-2)",
    "io_inp": [
      -2,
      5,
      -2,
      4,
      0
    ],
    "io_out": [
      10,
      -18,
      10,
      -14,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(reverse(input)),-4),32),-2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = add_n(take(add_n([4, -5],1),3),1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,1),3),1)"
  },
  {
    "input": "input : list = [1, 2, 3, 1, 5]\noutput : list = [-45, -35, -30, -25, -25]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(add_n([1, 2, 3, 1, 5],4))),16),-5)",
    "io_inp": [
      1,
      2,
      3,
      1,
      5
    ],
    "io_out": [
      -45,
      -35,
      -30,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(add_n(input,4))),16),-5)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [8, 5]",
    "output": "generated_output : list = sub_n([3, 0],-5)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -4, 2, -5, 3, 1]\noutput : list = [1, 3, -5, 2, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, 2, -5, 3, 1])",
    "io_inp": [
      -2,
      -4,
      2,
      -5,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -5,
      2,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = add_n([-2, 2],-3)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -1, -1, 2, 3]\noutput : list = [-4, -1, 8, 8, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n([-1, -1, -1, 2, 3],-3))),30),-5)",
    "io_inp": [
      -1,
      -1,
      -1,
      2,
      3
    ],
    "io_out": [
      -4,
      -1,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n(input,-3))),30),-5)"
  },
  {
    "input": "input : list = [-5, 3, -2]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse(take(sub_n(take(drop([-5, 3, -2],1),11),2),6))",
    "io_inp": [
      -5,
      3,
      -2
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(drop(input,1),11),2),6))"
  },
  {
    "input": "input : list = [-4, 1, -3, 1]\noutput : list = [1, 2, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc([-4, 1, -3, 1]),-5)",
    "io_inp": [
      -4,
      1,
      -3,
      1
    ],
    "io_out": [
      1,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-5, -2, 0, -4, 5]\noutput : list = [0, -5, -7, -9, -10]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc([-5, -2, 0, -4, 5])),-4)),-1)",
    "io_inp": [
      -5,
      -2,
      0,
      -4,
      5
    ],
    "io_out": [
      0,
      -5,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc(input)),-4)),-1)"
  },
  {
    "input": "input : list = [3, 3, 4, 5, -4]\noutput : list = [13, 13]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n(take([3, 3, 4, 5, -4],2),-2)),2),3)",
    "io_inp": [
      3,
      3,
      4,
      5,
      -4
    ],
    "io_out": [
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(take(input,2),-2)),2),3)"
  },
  {
    "input": "input : list = [0, 5, 2, 0]\noutput : list = [-23, 2]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(take([0, 5, 2, 0],2),14),-5),-2))",
    "io_inp": [
      0,
      5,
      2,
      0
    ],
    "io_out": [
      -23,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(take(input,2),14),-5),-2))"
  },
  {
    "input": "input : list = [2, 5, 3, 2, -5, 1]\noutput : list = [-3, 0, 18]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(drop([2, 5, 3, 2, -5, 1],3),-3))),3)",
    "io_inp": [
      2,
      5,
      3,
      2,
      -5,
      1
    ],
    "io_out": [
      -3,
      0,
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(drop(input,3),-3))),3)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-17, 11]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(reverse([-2, 5])),-4),3))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -17,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(reverse(input)),-4),3))"
  },
  {
    "input": "input : list = [1, 0, -1, -4, -5, 3]\noutput : list = [-15, -12, -3, 0, 3, 9]",
    "output": "generated_output : list = mul_n(sort_asc([1, 0, -1, -4, -5, 3]),3)",
    "io_inp": [
      1,
      0,
      -1,
      -4,
      -5,
      3
    ],
    "io_out": [
      -15,
      -12,
      -3,
      0,
      3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [2, 4, 1, 3]\noutput : list = [4, 6, 3, 5]",
    "output": "generated_output : list = take(sub_n(take(sub_n(sub_n([2, 4, 1, 3],-3),-3),25),4),27)",
    "io_inp": [
      2,
      4,
      1,
      3
    ],
    "io_out": [
      4,
      6,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(sub_n(input,-3),-3),25),4),27)"
  },
  {
    "input": "input : list = [0, -4, -2, 2, 3, 4]\noutput : list = [0, -1, -2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(drop([0, -4, -2, 2, 3, 4],2),4)))",
    "io_inp": [
      0,
      -4,
      -2,
      2,
      3,
      4
    ],
    "io_out": [
      0,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(drop(input,2),4)))"
  },
  {
    "input": "input : list = [1, 5, 3, -1, 2]\noutput : list = [3, 0, 4]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(drop([1, 5, 3, -1, 2],2),1),15)),-1)",
    "io_inp": [
      1,
      5,
      3,
      -1,
      2
    ],
    "io_out": [
      3,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(drop(input,2),1),15)),-1)"
  },
  {
    "input": "input : list = [-4, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(drop([-4, -4, -4],1))",
    "io_inp": [
      -4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [5, -5, 3, 4]\noutput : list = [-2, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sub_n([5, -5, 3, 4],-3)))))",
    "io_inp": [
      5,
      -5,
      3,
      4
    ],
    "io_out": [
      -2,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [5, 1, 4, -1]\noutput : list = [5, 1, 4, -1]",
    "output": "generated_output : list = reverse(reverse(take(add_n(add_n([5, 1, 4, -1],4),-4),13)))",
    "io_inp": [
      5,
      1,
      4,
      -1
    ],
    "io_out": [
      5,
      1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(add_n(input,4),-4),13)))"
  },
  {
    "input": "input : list = [3, -4, -1, 2, -5, 4]\noutput : list = [3, -6]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(drop([3, -4, -1, 2, -5, 4],4)),1),11))",
    "io_inp": [
      3,
      -4,
      -1,
      2,
      -5,
      4
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(drop(input,4)),1),11))"
  },
  {
    "input": "input : list = [-1, -2, 1, 1, 5]\noutput : list = [-3, -2, 0, 0, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-1, -2, 1, 1, 5]),1))",
    "io_inp": [
      -1,
      -2,
      1,
      1,
      5
    ],
    "io_out": [
      -3,
      -2,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [0, -4, 4, -1]\noutput : list = [20, -5]",
    "output": "generated_output : list = mul_n(drop([0, -4, 4, -1],2),5)",
    "io_inp": [
      0,
      -4,
      4,
      -1
    ],
    "io_out": [
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [-2, 3, 5, 4, 2, -1]\noutput : list = [-18, -3]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(sub_n([-2, 3, 5, 4, 2, -1],-3),2),-3)))",
    "io_inp": [
      -2,
      3,
      5,
      4,
      2,
      -1
    ],
    "io_out": [
      -18,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(sub_n(input,-3),2),-3)))"
  },
  {
    "input": "input : list = [2, 0, 3, -4, -3]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(reverse([2, 0, 3, -4, -3])),3),40))",
    "io_inp": [
      2,
      0,
      3,
      -4,
      -3
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(reverse(input)),3),40))"
  },
  {
    "input": "input : list = [-1, 2, 0, 3, -4, -1]\noutput : list = [11, -4, 31, 16, 26, 11]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(sub_n([-1, 2, 0, 3, -4, -1],-3),5),5),-4))",
    "io_inp": [
      -1,
      2,
      0,
      3,
      -4,
      -1
    ],
    "io_out": [
      11,
      -4,
      31,
      16,
      26,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(sub_n(input,-3),5),5),-4))"
  },
  {
    "input": "input : list = [-2, -3, 4, 5, -4]\noutput : list = [0, 9, 8, 1, 2]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(add_n([-2, -3, 4, 5, -4],-2),1),-5)),22)",
    "io_inp": [
      -2,
      -3,
      4,
      5,
      -4
    ],
    "io_out": [
      0,
      9,
      8,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(add_n(input,-2),1),-5)),22)"
  },
  {
    "input": "input : list = [-1, -1, 5, -4]\noutput : list = [12, 3, 3, -15]",
    "output": "generated_output : list = mul_n(take(take(take(sort_asc([-1, -1, 5, -4]),16),32),4),-3)",
    "io_inp": [
      -1,
      -1,
      5,
      -4
    ],
    "io_out": [
      12,
      3,
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(sort_asc(input),16),32),4),-3)"
  },
  {
    "input": "input : list = [-4, 5, 2, 4, -1, 2]\noutput : list = [100, 85, 55, 55, 10, -35]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(mul_n([-4, 5, 2, 4, -1, 2],3)),-5),5))",
    "io_inp": [
      -4,
      5,
      2,
      4,
      -1,
      2
    ],
    "io_out": [
      100,
      85,
      55,
      55,
      10,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(mul_n(input,3)),-5),5))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -7]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(reverse([-4, -1]),1),4),1),28)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(reverse(input),1),4),1),28)"
  },
  {
    "input": "input : list = [-1, -1, 4, -2, 2]\noutput : list = [-11, 9, -21, 4, 4]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-1, -1, 4, -2, 2],-5),1))",
    "io_inp": [
      -1,
      -1,
      4,
      -2,
      2
    ],
    "io_out": [
      -11,
      9,
      -21,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-5),1))"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [0, -6]",
    "output": "generated_output : list = mul_n(add_n(take(take(sub_n([3, 0, 2],1),2),23),-2),2)",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(sub_n(input,1),2),23),-2),2)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [9, 5]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(reverse([-2, 2])),-4),-3),38)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(reverse(input)),-4),-3),38)"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [6, 0, 4]",
    "output": "generated_output : list = sub_n([2, -4, 0],-4)",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      6,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [2, 5, -3, 0, -1, 3]\noutput : list = [1, -1, -2, -4, -5, -7]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n([2, 5, -3, 0, -1, 3],-4)),17))",
    "io_inp": [
      2,
      5,
      -3,
      0,
      -1,
      3
    ],
    "io_out": [
      1,
      -1,
      -2,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(input,-4)),17))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-36, -12]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sort_des([1, -5]),-4),4)),18)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -36,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sort_des(input),-4),4)),18)"
  },
  {
    "input": "input : list = [5, 0, 3, 4, 2, 1]\noutput : list = [1, 0, -1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([5, 0, 3, 4, 2, 1],4)))",
    "io_inp": [
      5,
      0,
      3,
      4,
      2,
      1
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,4)))"
  },
  {
    "input": "input : list = [-5, 4, 1, -2, 2, 4]\noutput : list = [-5, -2, 1, 2, 4, 4]",
    "output": "generated_output : list = take(sort_asc([-5, 4, 1, -2, 2, 4]),6)",
    "io_inp": [
      -5,
      4,
      1,
      -2,
      2,
      4
    ],
    "io_out": [
      -5,
      -2,
      1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),6)"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [12, 12, 6]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([-2, -1, -2]),-2),3)",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      12,
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),-2),3)"
  },
  {
    "input": "input : list = [-1, 3, 4, -2, 0, -1]\noutput : list = [4, 0, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(drop([-1, 3, 4, -2, 0, -1],2)))",
    "io_inp": [
      -1,
      3,
      4,
      -2,
      0,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-4, -5],-4)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [0, -2, 3, 3, 1, -4]\noutput : list = [-40, 10, 30]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(drop([0, -2, 3, 3, 1, -4],3),4),2)),5)",
    "io_inp": [
      0,
      -2,
      3,
      3,
      1,
      -4
    ],
    "io_out": [
      -40,
      10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(drop(input,3),4),2)),5)"
  },
  {
    "input": "input : list = [-1, -2, -4]\noutput : list = [-8, -16, -32]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n([-1, -2, -4],4),-5),5),2)",
    "io_inp": [
      -1,
      -2,
      -4
    ],
    "io_out": [
      -8,
      -16,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(input,4),-5),5),2)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = sort_asc([-2, -2, -3])",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0, -1, 2]\noutput : list = [9, 7, 6, 4]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(sort_des([-3, 0, -1, 2])),24),5),2)",
    "io_inp": [
      -3,
      0,
      -1,
      2
    ],
    "io_out": [
      9,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(sort_des(input)),24),5),2)"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(take([5, 0, -3],1),-3)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [4, -2, 4, 4, 4, 3]\noutput : list = [-8, -8, -8, -8, -7, -2]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([4, -2, 4, 4, 4, 3],-4)),-1)",
    "io_inp": [
      4,
      -2,
      4,
      4,
      4,
      3
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -8,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-4)),-1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-15, -3]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(mul_n([-4, -1],4)),2),1))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -15,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(mul_n(input,4)),2),1))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sub_n([-3, 2],4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 4, 2, 5, 1, 0]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(take([2, 4, 2, 5, 1, 0],2))",
    "io_inp": [
      2,
      4,
      2,
      5,
      1,
      0
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -3, -3],1)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -5, -5, 5, -4, -5]\noutput : list = [19, 5, 5, 25, 7, 5]",
    "output": "generated_output : list = sub_n(mul_n(add_n([2, -5, -5, 5, -4, -5],5),2),-5)",
    "io_inp": [
      2,
      -5,
      -5,
      5,
      -4,
      -5
    ],
    "io_out": [
      19,
      5,
      5,
      25,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,5),2),-5)"
  },
  {
    "input": "input : list = [3, 4, 0, -2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = reverse(drop([3, 4, 0, -2, 3],3))",
    "io_inp": [
      3,
      4,
      0,
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [-4, 0, 4, 1]\noutput : list = [-1, -4, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(drop([-4, 0, 4, 1],1))),-1))",
    "io_inp": [
      -4,
      0,
      4,
      1
    ],
    "io_out": [
      -1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(drop(input,1))),-1))"
  },
  {
    "input": "input : list = [3, -1, 2, -4]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take([3, -1, 2, -4],1)),2))",
    "io_inp": [
      3,
      -1,
      2,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(input,1)),2))"
  },
  {
    "input": "input : list = [-1, 1, 3, -5, 1, 2]\noutput : list = [-25, -20, -15, -15, -5, 15]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-1, 1, 3, -5, 1, 2]),-2),-5)",
    "io_inp": [
      -1,
      1,
      3,
      -5,
      1,
      2
    ],
    "io_out": [
      -25,
      -20,
      -15,
      -15,
      -5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),-2),-5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [5, 10]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n([-3, 2],5)),3))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(input,5)),3))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-45, -30]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n(mul_n([3, 2],5),1),1),-2),-3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -45,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(mul_n(input,5),1),1),-2),-3)"
  },
  {
    "input": "input : list = [3, 2, 5, 2]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(drop([3, 2, 5, 2],2),4),-2)),40)",
    "io_inp": [
      3,
      2,
      5,
      2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(drop(input,2),4),-2)),40)"
  },
  {
    "input": "input : list = [-3, 3, 5, 0, 4, 1]\noutput : list = [-10, -8, -6, -2, 0, 6]",
    "output": "generated_output : list = mul_n(sort_des([-3, 3, 5, 0, 4, 1]),-2)",
    "io_inp": [
      -3,
      3,
      5,
      0,
      4,
      1
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-2, -1, -3]\noutput : list = [-4, 0, -2]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(add_n([-2, -1, -3],3),7),2)),4)",
    "io_inp": [
      -2,
      -1,
      -3
    ],
    "io_out": [
      -4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(add_n(input,3),7),2)),4)"
  },
  {
    "input": "input : list = [4, 2, -2, -1, -1]\noutput : list = [-2, -6, -14, -12, -12]",
    "output": "generated_output : list = mul_n(add_n(take(mul_n(add_n([4, 2, -2, -1, -1],-1),-1),18),4),-2)",
    "io_inp": [
      4,
      2,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -14,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(mul_n(add_n(input,-1),-1),18),4),-2)"
  },
  {
    "input": "input : list = [2, -1, 4, -5, 4, 4]\noutput : list = [2, -1, 4, -5, 4, 4]",
    "output": "generated_output : list = reverse(reverse([2, -1, 4, -5, 4, 4]))",
    "io_inp": [
      2,
      -1,
      4,
      -5,
      4,
      4
    ],
    "io_out": [
      2,
      -1,
      4,
      -5,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, -2, 5, 1, 0]\noutput : list = [-2, 0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([2, -2, 5, 1, 0])",
    "io_inp": [
      2,
      -2,
      5,
      1,
      0
    ],
    "io_out": [
      -2,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, -2, 2, -1]\noutput : list = [0, -1, -7, -3, -6]",
    "output": "generated_output : list = take(add_n([5, 4, -2, 2, -1],-5),16)",
    "io_inp": [
      5,
      4,
      -2,
      2,
      -1
    ],
    "io_out": [
      0,
      -1,
      -7,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),16)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [1, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n([-4, 0],4)),1)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,4)),1)"
  },
  {
    "input": "input : list = [5, 1, -3, 3]\noutput : list = [-6, -2, 0, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(sort_asc([5, 1, -3, 3]),12)),-3))",
    "io_inp": [
      5,
      1,
      -3,
      3
    ],
    "io_out": [
      -6,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(sort_asc(input),12)),-3))"
  },
  {
    "input": "input : list = [4, 1, -3, -4, 4, -5]\noutput : list = [-5, -11]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(take([4, 1, -3, -4, 4, -5],2)),-2),2),3)",
    "io_inp": [
      4,
      1,
      -3,
      -4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(take(input,2)),-2),2),3)"
  },
  {
    "input": "input : list = [4, -5, -4, 0]\noutput : list = [30, 26, 10, -6]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(mul_n([4, -5, -4, 0],-4)),5)),5)",
    "io_inp": [
      4,
      -5,
      -4,
      0
    ],
    "io_out": [
      30,
      26,
      10,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(mul_n(input,-4)),5)),5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [40, 0]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n([-3, 5],3)))),5)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      40,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n(input,3)))),5)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [28, 19]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_des(add_n([3, 0],5)),-3),3),-5)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      28,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_des(add_n(input,5)),-3),3),-5)"
  },
  {
    "input": "input : list = [-4, -5, 2, -4, 1]\noutput : list = [-1, -2, -7, -7, -8]",
    "output": "generated_output : list = add_n(add_n(sort_des([-4, -5, 2, -4, 1]),-5),2)",
    "io_inp": [
      -4,
      -5,
      2,
      -4,
      1
    ],
    "io_out": [
      -1,
      -2,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-5),2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = add_n([-1, 4],-3)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -2, 2, 4, -3, 1]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take([-1, -2, 2, 4, -3, 1],3))))",
    "io_inp": [
      -1,
      -2,
      2,
      4,
      -3,
      1
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(input,3))))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n(reverse([4, 1]),3),-4)))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(reverse(input),3),-4)))"
  },
  {
    "input": "input : list = [-5, 0, 5, 0]\noutput : list = [-6, 24, -6, -36]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n([-5, 0, 5, 0],-3),-2),5)),-2)",
    "io_inp": [
      -5,
      0,
      5,
      0
    ],
    "io_out": [
      -6,
      24,
      -6,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n(input,-3),-2),5)),-2)"
  },
  {
    "input": "input : list = [-3, -1, -2, -5, -2, 0]\noutput : list = [-3, -4, -5]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(take([-3, -1, -2, -5, -2, 0],3)),1)),1)",
    "io_inp": [
      -3,
      -1,
      -2,
      -5,
      -2,
      0
    ],
    "io_out": [
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(take(input,3)),1)),1)"
  },
  {
    "input": "input : list = [-5, -3, 5, -3, 5]\noutput : list = [-43, 77, -43, 77]",
    "output": "generated_output : list = drop(add_n(add_n(mul_n(mul_n([-5, -3, 5, -3, 5],-5),-3),1),1),1)",
    "io_inp": [
      -5,
      -3,
      5,
      -3,
      5
    ],
    "io_out": [
      -43,
      77,
      -43,
      77
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(mul_n(mul_n(input,-5),-3),1),1),1)"
  },
  {
    "input": "input : list = [3, 1, 5, -4, -4]\noutput : list = [15, 5, -5, -30, -30]",
    "output": "generated_output : list = mul_n(add_n(sort_des([3, 1, 5, -4, -4]),-2),5)",
    "io_inp": [
      3,
      1,
      5,
      -4,
      -4
    ],
    "io_out": [
      15,
      5,
      -5,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),-2),5)"
  },
  {
    "input": "input : list = [0, 3, 5, -3, 2]\noutput : list = [0, 15, 25, -15, 10]",
    "output": "generated_output : list = mul_n([0, 3, 5, -3, 2],5)",
    "io_inp": [
      0,
      3,
      5,
      -3,
      2
    ],
    "io_out": [
      0,
      15,
      25,
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(reverse([-5, 2, 0]))),26))",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(reverse(input))),26))"
  },
  {
    "input": "input : list = [-3, -1, 5, -4, -1, -2]\noutput : list = [32, 0, -96, 48, 0, 16]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(add_n([-3, -1, 5, -4, -1, -2],-4),-5),38),-4),4)",
    "io_inp": [
      -3,
      -1,
      5,
      -4,
      -1,
      -2
    ],
    "io_out": [
      32,
      0,
      -96,
      48,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(add_n(input,-4),-5),38),-4),4)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [64, 64]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(mul_n([4, 4],-2),4),-2)))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      64,
      64
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(mul_n(input,-2),4),-2)))"
  },
  {
    "input": "input : list = [5, 3, 3, -4, -3]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 3, 3, -4, -3],1)",
    "io_inp": [
      5,
      3,
      3,
      -4,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [5, 3]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(mul_n([-2, 0],-1),-4),4),27),-3)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(mul_n(input,-1),-4),4),27),-3)"
  },
  {
    "input": "input : list = [2, -1, -3, 0, -5, 2]\noutput : list = [-3, -1, 1, 2, 4, 4]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(sort_des([2, -1, -3, 0, -5, 2]),-4),28),-2))",
    "io_inp": [
      2,
      -1,
      -3,
      0,
      -5,
      2
    ],
    "io_out": [
      -3,
      -1,
      1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(sort_des(input),-4),28),-2))"
  },
  {
    "input": "input : list = [-3, -5, 0, -2]\noutput : list = [-1, -3, -4, -6]",
    "output": "generated_output : list = add_n(add_n(take(reverse(sort_asc([-3, -5, 0, -2])),14),-4),3)",
    "io_inp": [
      -3,
      -5,
      0,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(sort_asc(input)),14),-4),3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-10, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(mul_n([-5, 1],2),6))))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(mul_n(input,2),6))))"
  },
  {
    "input": "input : list = [-2, -3, -4, -5, -1]\noutput : list = [0, -2, -4, -6, -8]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_asc([-2, -3, -4, -5, -1]),1),2)))",
    "io_inp": [
      -2,
      -3,
      -4,
      -5,
      -1
    ],
    "io_out": [
      0,
      -2,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_asc(input),1),2)))"
  },
  {
    "input": "input : list = [2, 1, 0, -5, -4, 4]\noutput : list = [4, -4, -5, 0, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, 0, -5, -4, 4])",
    "io_inp": [
      2,
      1,
      0,
      -5,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      -5,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, -2, -2]\noutput : list = [0, -1, -3, -3]",
    "output": "generated_output : list = sort_des(add_n(take(take(sort_asc([0, 1, -2, -2]),8),5),-1))",
    "io_inp": [
      0,
      1,
      -2,
      -2
    ],
    "io_out": [
      0,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(sort_asc(input),8),5),-1))"
  },
  {
    "input": "input : list = [5, -4, -1, 3]\noutput : list = [-15, 5, 20, -25]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(mul_n([5, -4, -1, 3],1),-5)),20),1)",
    "io_inp": [
      5,
      -4,
      -1,
      3
    ],
    "io_out": [
      -15,
      5,
      20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(mul_n(input,1),-5)),20),1)"
  },
  {
    "input": "input : list = [3, -2, -4, 0, 5]\noutput : list = [0, 2, 4, 7, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([3, -2, -4, 0, 5],-4)))",
    "io_inp": [
      3,
      -2,
      -4,
      0,
      5
    ],
    "io_out": [
      0,
      2,
      4,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [5, 5, 2, -4, -2, 0]\noutput : list = [-19, -19, -10, -4, 2, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(reverse([5, 5, 2, -4, -2, 0]),-3),-5),1))",
    "io_inp": [
      5,
      5,
      2,
      -4,
      -2,
      0
    ],
    "io_out": [
      -19,
      -19,
      -10,
      -4,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(reverse(input),-3),-5),1))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-3]",
    "output": "generated_output : list = take(sub_n(take(sort_asc([-2, 0]),1),1),4)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(input),1),1),4)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-20, -2]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n([5, -4],2),3)),-2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -20,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(input,2),3)),-2)"
  },
  {
    "input": "input : list = [3, -1, 1, 2, 0]\noutput : list = [12, 7, 2, -3, -8]",
    "output": "generated_output : list = add_n(sort_des(mul_n([3, -1, 1, 2, 0],5)),-3)",
    "io_inp": [
      3,
      -1,
      1,
      2,
      0
    ],
    "io_out": [
      12,
      7,
      2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,5)),-3)"
  },
  {
    "input": "input : list = [-2, 5, -4, 2, -1]\noutput : list = [9, -26, 19, -11, 4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n(mul_n([-2, 5, -4, 2, -1],-5),4),1),3),-1)",
    "io_inp": [
      -2,
      5,
      -4,
      2,
      -1
    ],
    "io_out": [
      9,
      -26,
      19,
      -11,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(mul_n(input,-5),4),1),3),-1)"
  },
  {
    "input": "input : list = [2, 0, 0, -5, 5]\noutput : list = [6, 4, 4, -1, 9]",
    "output": "generated_output : list = take(add_n([2, 0, 0, -5, 5],4),6)",
    "io_inp": [
      2,
      0,
      0,
      -5,
      5
    ],
    "io_out": [
      6,
      4,
      4,
      -1,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),6)"
  },
  {
    "input": "input : list = [-5, 5, -2, 0, 3, 5]\noutput : list = [-18, -12, -8, -2, 2]",
    "output": "generated_output : list = take(mul_n(take(add_n(sort_asc([-5, 5, -2, 0, 3, 5]),-4),5),2),38)",
    "io_inp": [
      -5,
      5,
      -2,
      0,
      3,
      5
    ],
    "io_out": [
      -18,
      -12,
      -8,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(take(add_n(sort_asc(input),-4),5),2),38)"
  },
  {
    "input": "input : list = [3, 5, 1, 2]\noutput : list = [-3, -2, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc([3, 5, 1, 2]),-4)",
    "io_inp": [
      3,
      5,
      1,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-5, -1, 4, -1]\noutput : list = [-80, 20, 100]",
    "output": "generated_output : list = mul_n(mul_n(drop(mul_n(reverse([-5, -1, 4, -1]),2),1),5),-2)",
    "io_inp": [
      -5,
      -1,
      4,
      -1
    ],
    "io_out": [
      -80,
      20,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(mul_n(reverse(input),2),1),5),-2)"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(drop([-1, 0, 1],1),-4),-4)),4)",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(drop(input,1),-4),-4)),4)"
  },
  {
    "input": "input : list = [2, 0, 2, -5, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = reverse(take(mul_n(take(sub_n([2, 0, 2, -5, 4],-2),13),1),2))",
    "io_inp": [
      2,
      0,
      2,
      -5,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(sub_n(input,-2),13),1),2))"
  },
  {
    "input": "input : list = [1, 2, -4, 5, 5, -5]\noutput : list = [0, 1, 6, 7, 10, 10]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(sort_des([1, 2, -4, 5, 5, -5])))),-5)",
    "io_inp": [
      1,
      2,
      -4,
      5,
      5,
      -5
    ],
    "io_out": [
      0,
      1,
      6,
      7,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [5, -2, -5, 1]\noutput : list = [5, 1, -2, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n(sort_asc([5, -2, -5, 1]),1))),1)",
    "io_inp": [
      5,
      -2,
      -5,
      1
    ],
    "io_out": [
      5,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(sort_asc(input),1))),1)"
  },
  {
    "input": "input : list = [-2, -1, -1, 5]\noutput : list = [-2, -1, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -1, -1, 5]))",
    "io_inp": [
      -2,
      -1,
      -1,
      5
    ],
    "io_out": [
      -2,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [0, -4, -6]",
    "output": "generated_output : list = take(sort_des(take(add_n(reverse([5, 1, -1]),-5),11)),28)",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(reverse(input),-5),11)),28)"
  },
  {
    "input": "input : list = [-1, 1, 1]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = reverse(reverse(reverse(take(mul_n([-1, 1, 1],1),17))))",
    "io_inp": [
      -1,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(mul_n(input,1),17))))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [12, -20]",
    "output": "generated_output : list = sort_des(mul_n([-5, 3],4))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [-4, 1, -2, -4, -5]\noutput : list = [-8, -7]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(reverse([-4, 1, -2, -4, -5]),2)),-3))",
    "io_inp": [
      -4,
      1,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(reverse(input),2)),-3))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [8, 5]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n([0, 3],-5)),3),-2),-1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n(input,-5)),3),-2),-1)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, 7]",
    "output": "generated_output : list = add_n([-5, 2],5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, 2, 2, -2, 4, -2]\noutput : list = [-13, -4, -4, 8, 8, 14]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des(add_n([-5, 2, 2, -2, 4, -2],-1)),3),5))",
    "io_inp": [
      -5,
      2,
      2,
      -2,
      4,
      -2
    ],
    "io_out": [
      -13,
      -4,
      -4,
      8,
      8,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(add_n(input,-1)),3),5))"
  },
  {
    "input": "input : list = [-3, 2, -1]\noutput : list = [22]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(take([-3, 2, -1],1),-5)),-4),2)",
    "io_inp": [
      -3,
      2,
      -1
    ],
    "io_out": [
      22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(take(input,1),-5)),-4),2)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(sort_des([-5, -5])),26)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(sort_des(input)),26)))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-2, -10]",
    "output": "generated_output : list = sub_n(sort_des([-5, 3]),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-3, -3, 0, -5, -2]\noutput : list = [20, 14, 14, 11, 5]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(mul_n([-3, -3, 0, -5, -2],-3)),28),-5))",
    "io_inp": [
      -3,
      -3,
      0,
      -5,
      -2
    ],
    "io_out": [
      20,
      14,
      14,
      11,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(mul_n(input,-3)),28),-5))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-5, 2]",
    "output": "generated_output : list = add_n(reverse([4, -3]),-2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [0, -2, -5, 5]\noutput : list = [44, 32, 24, 4]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(sort_des([0, -2, -5, 5]),-1),-5)),-4)",
    "io_inp": [
      0,
      -2,
      -5,
      5
    ],
    "io_out": [
      44,
      32,
      24,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(sort_des(input),-1),-5)),-4)"
  },
  {
    "input": "input : list = [-3, -2, -4]\noutput : list = [-9, 0, 9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(add_n([-3, -2, -4],3),-3))),3)",
    "io_inp": [
      -3,
      -2,
      -4
    ],
    "io_out": [
      -9,
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(add_n(input,3),-3))),3)"
  },
  {
    "input": "input : list = [0, -2, 2, -4, 4]\noutput : list = [54, 36, 18, 0, -18]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_asc([0, -2, 2, -4, 4]),-2)),3),3)",
    "io_inp": [
      0,
      -2,
      2,
      -4,
      4
    ],
    "io_out": [
      54,
      36,
      18,
      0,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_asc(input),-2)),3),3)"
  },
  {
    "input": "input : list = [4, -2, -5, -1]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(take([4, -2, -5, -1],1)),-4)),3)",
    "io_inp": [
      4,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(take(input,1)),-4)),3)"
  },
  {
    "input": "input : list = [-2, -3, 2, -5, 5]\noutput : list = [0, -4, -5, -7]",
    "output": "generated_output : list = add_n(take(add_n(drop(sort_des([-2, -3, 2, -5, 5]),1),-1),35),-1)",
    "io_inp": [
      -2,
      -3,
      2,
      -5,
      5
    ],
    "io_out": [
      0,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(drop(sort_des(input),1),-1),35),-1)"
  },
  {
    "input": "input : list = [4, 5, 1, -5]\noutput : list = [5, 4, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc([4, 5, 1, -5]))",
    "io_inp": [
      4,
      5,
      1,
      -5
    ],
    "io_out": [
      5,
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -4, -4, -5]\noutput : list = [-20, -20, -20, -25]",
    "output": "generated_output : list = mul_n([-4, -4, -4, -5],5)",
    "io_inp": [
      -4,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -20,
      -20,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, 4, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(take([2, 4, -2],1)),18)))",
    "io_inp": [
      2,
      4,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(take(input,1)),18)))"
  },
  {
    "input": "input : list = [-5, -5, -3, -1]\noutput : list = [-9, -9, -7, -5]",
    "output": "generated_output : list = add_n([-5, -5, -3, -1],-4)",
    "io_inp": [
      -5,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -4, 0, 1, -5, 4]\noutput : list = [20, 5, 0, -15, -20, -25]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sort_des([-3, -4, 0, 1, -5, 4]),5))))",
    "io_inp": [
      -3,
      -4,
      0,
      1,
      -5,
      4
    ],
    "io_out": [
      20,
      5,
      0,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [-5, -2, 5, -5, 5]\noutput : list = [20, 20, 6, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-5, -2, 5, -5, 5],5)),2)",
    "io_inp": [
      -5,
      -2,
      5,
      -5,
      5
    ],
    "io_out": [
      20,
      20,
      6,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,5)),2)"
  },
  {
    "input": "input : list = [4, -1, 1, 3, -5, -3]\noutput : list = [-2, 0, 2, 4, 6, 7]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(reverse([4, -1, 1, 3, -5, -3])),28),-2),-5)",
    "io_inp": [
      4,
      -1,
      1,
      3,
      -5,
      -3
    ],
    "io_out": [
      -2,
      0,
      2,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(reverse(input)),28),-2),-5)"
  },
  {
    "input": "input : list = [3, 1, -2, -3, 3, -2]\noutput : list = [10, 0, -15, -20, 10, -15]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(sub_n([3, 1, -2, -3, 3, -2],2),23),-1),5),1)",
    "io_inp": [
      3,
      1,
      -2,
      -3,
      3,
      -2
    ],
    "io_out": [
      10,
      0,
      -15,
      -20,
      10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(sub_n(input,2),23),-1),5),1)"
  },
  {
    "input": "input : list = [-2, 2, -2, -3, 1, 2]\noutput : list = [-33, -30, -30, -21, -18, -18]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(sub_n([-2, 2, -2, -3, 1, 2],4),5)),3),-3)",
    "io_inp": [
      -2,
      2,
      -2,
      -3,
      1,
      2
    ],
    "io_out": [
      -33,
      -30,
      -30,
      -21,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(sub_n(input,4),5)),3),-3)"
  },
  {
    "input": "input : list = [1, -4, -3, 4]\noutput : list = [8, 5, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(mul_n([1, -4, -3, 4],1),-1)),-3))",
    "io_inp": [
      1,
      -4,
      -3,
      4
    ],
    "io_out": [
      8,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(mul_n(input,1),-1)),-3))"
  },
  {
    "input": "input : list = [1, 3, -4, 3, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(drop([1, 3, -4, 3, 1],3))),40),-1)",
    "io_inp": [
      1,
      3,
      -4,
      3,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(drop(input,3))),40),-1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(add_n([1, 0],-3),1),2),1),5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(add_n(input,-3),1),2),1),5)"
  },
  {
    "input": "input : list = [-2, 0, -1]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc([-2, 0, -1])))),-1)",
    "io_inp": [
      -2,
      0,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [4, -3, -2, 5, 5, -2]\noutput : list = [20, 15, 15, -15, -20, -20]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(mul_n([4, -3, -2, 5, 5, -2],-5),-5),14)))",
    "io_inp": [
      4,
      -3,
      -2,
      5,
      5,
      -2
    ],
    "io_out": [
      20,
      15,
      15,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(mul_n(input,-5),-5),14)))"
  },
  {
    "input": "input : list = [5, -2, -3, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc(take([5, -2, -3, 5],2))",
    "io_inp": [
      5,
      -2,
      -3,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [4, -2, -1, -2, 5]\noutput : list = [5, 4, -1, -2, -2]",
    "output": "generated_output : list = sort_des(take(reverse([4, -2, -1, -2, 5]),13))",
    "io_inp": [
      4,
      -2,
      -1,
      -2,
      5
    ],
    "io_out": [
      5,
      4,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),13))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [8, 6]",
    "output": "generated_output : list = sort_des(sort_des(add_n([4, 2],4)))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,4)))"
  },
  {
    "input": "input : list = [-5, 3, 2, 5, -4]\noutput : list = [13, 11, 10, 4, 3]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(add_n([-5, 3, 2, 5, -4],3))),39),5)",
    "io_inp": [
      -5,
      3,
      2,
      5,
      -4
    ],
    "io_out": [
      13,
      11,
      10,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(add_n(input,3))),39),5)"
  },
  {
    "input": "input : list = [-1, -2, 1, 5]\noutput : list = [20, 18, 24, 32]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n(sub_n([-1, -2, 1, 5],-4),3),2),3),-5)",
    "io_inp": [
      -1,
      -2,
      1,
      5
    ],
    "io_out": [
      20,
      18,
      24,
      32
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(sub_n(input,-4),3),2),3),-5)"
  },
  {
    "input": "input : list = [1, -3, -4, -5]\noutput : list = [-4, -5, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(drop([1, -3, -4, -5],1),1))),1)",
    "io_inp": [
      1,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(drop(input,1),1))),1)"
  },
  {
    "input": "input : list = [5, 2, -5, 0, 2]\noutput : list = [-7, -2, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n([5, 2, -5, 0, 2],2))))",
    "io_inp": [
      5,
      2,
      -5,
      0,
      2
    ],
    "io_out": [
      -7,
      -2,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(input,2))))"
  },
  {
    "input": "input : list = [0, -5, 3]\noutput : list = [2, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(add_n([0, -5, 3],-2)),2),-1))",
    "io_inp": [
      0,
      -5,
      3
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(add_n(input,-2)),2),-1))"
  },
  {
    "input": "input : list = [-5, 0, 2, 3, 5]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(take([-5, 0, 2, 3, 5],3)),1)))",
    "io_inp": [
      -5,
      0,
      2,
      3,
      5
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(take(input,3)),1)))"
  },
  {
    "input": "input : list = [-1, 5, -4, 1]\noutput : list = [-4, -10, -1, -6]",
    "output": "generated_output : list = sub_n(mul_n([-1, 5, -4, 1],-1),5)",
    "io_inp": [
      -1,
      5,
      -4,
      1
    ],
    "io_out": [
      -4,
      -10,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [-3, 3, 5, -5, -4]\noutput : list = [-4, -5, 5, 3, -3]",
    "output": "generated_output : list = reverse([-3, 3, 5, -5, -4])",
    "io_inp": [
      -3,
      3,
      5,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, 0, -5, -1]\noutput : list = [-12, -4, -2, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(sub_n([3, 3, 0, -5, -1],1)),2)))",
    "io_inp": [
      3,
      3,
      0,
      -5,
      -1
    ],
    "io_out": [
      -12,
      -4,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(sub_n(input,1)),2)))"
  },
  {
    "input": "input : list = [1, 2, 3, -2]\noutput : list = [-4, -1, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([1, 2, 3, -2])),-2)",
    "io_inp": [
      1,
      2,
      3,
      -2
    ],
    "io_out": [
      -4,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [0, 4, -2, -4, -2, 0]\noutput : list = [0, -2, -4, -2, 4, 0]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(reverse([0, 4, -2, -4, -2, 0]))),1),46)",
    "io_inp": [
      0,
      4,
      -2,
      -4,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      -4,
      -2,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(reverse(input))),1),46)"
  },
  {
    "input": "input : list = [-2, 2, 3, 0]\noutput : list = [27, 17, -3, -23]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(mul_n([-2, 2, 3, 0],5),2),2),-5))",
    "io_inp": [
      -2,
      2,
      3,
      0
    ],
    "io_out": [
      27,
      17,
      -3,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(mul_n(input,5),2),2),-5))"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-2, -5, 2]",
    "output": "generated_output : list = sub_n([1, -2, 5],3)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, 0, 1, -5, 4, -2]\noutput : list = [-11, -11, -8, -6, -5, -2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sub_n([-5, 0, 1, -5, 4, -2],1)),2),-3))",
    "io_inp": [
      -5,
      0,
      1,
      -5,
      4,
      -2
    ],
    "io_out": [
      -11,
      -11,
      -8,
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sub_n(input,1)),2),-3))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(sort_asc([-3, 1]),-4),3),4))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(sort_asc(input),-4),3),4))"
  },
  {
    "input": "input : list = [1, 5, -4, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = take([1, 5, -4, 5],2)",
    "io_inp": [
      1,
      5,
      -4,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 2, -5, -4, -2]\noutput : list = [2, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(drop([-2, 2, -5, -4, -2],2),-4))",
    "io_inp": [
      -2,
      2,
      -5,
      -4,
      -2
    ],
    "io_out": [
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,2),-4))"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [6, -3, 2]",
    "output": "generated_output : list = take(sub_n(take(add_n(add_n([5, -4, 1],-1),1),26),-1),17)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      6,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(add_n(input,-1),1),26),-1),17)"
  },
  {
    "input": "input : list = [-1, 2, 2, -1, 5]\noutput : list = [2, -1, 5]",
    "output": "generated_output : list = drop([-1, 2, 2, -1, 5],2)",
    "io_inp": [
      -1,
      2,
      2,
      -1,
      5
    ],
    "io_out": [
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = take(reverse(take(sort_asc(sort_asc([-4, 4, 2])),5)),32)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(sort_asc(input)),5)),32)"
  },
  {
    "input": "input : list = [-2, -4, 5, 4, -5]\noutput : list = [5, 4, -2, -4, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des([-2, -4, 5, 4, -5])),10))",
    "io_inp": [
      -2,
      -4,
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(input)),10))"
  },
  {
    "input": "input : list = [1, 4, 5, -3]\noutput : list = [-3, 1, 4, 5]",
    "output": "generated_output : list = sort_asc([1, 4, 5, -3])",
    "io_inp": [
      1,
      4,
      5,
      -3
    ],
    "io_out": [
      -3,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, 2, 0, 5, 2]\noutput : list = [-4, 1, 3, 3, 3, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(reverse([-5, 2, 2, 0, 5, 2]))),5),-4)",
    "io_inp": [
      -5,
      2,
      2,
      0,
      5,
      2
    ],
    "io_out": [
      -4,
      1,
      3,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(reverse(input))),5),-4)"
  },
  {
    "input": "input : list = [-3, 1, 5, -5]\noutput : list = [-25]",
    "output": "generated_output : list = sort_des(mul_n(reverse(drop(sort_asc([-3, 1, 5, -5]),3)),-5))",
    "io_inp": [
      -3,
      1,
      5,
      -5
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(drop(sort_asc(input),3)),-5))"
  },
  {
    "input": "input : list = [-5, -2, -3, 5, 4, -2]\noutput : list = [2, 5, 4, 12, 11]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(add_n([-5, -2, -3, 5, 4, -2],5),5),4),1),3)",
    "io_inp": [
      -5,
      -2,
      -3,
      5,
      4,
      -2
    ],
    "io_out": [
      2,
      5,
      4,
      12,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(add_n(input,5),5),4),1),3)"
  },
  {
    "input": "input : list = [5, -5, -4, 3, -2]\noutput : list = [15, 11, 1, -3, -5]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sort_des([5, -5, -4, 3, -2]),6),2),-3),2)",
    "io_inp": [
      5,
      -5,
      -4,
      3,
      -2
    ],
    "io_out": [
      15,
      11,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sort_des(input),6),2),-3),2)"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = sort_des([-1, -1, -2])",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, 1, 3]\noutput : list = [-2, 4, 2, 4]",
    "output": "generated_output : list = sub_n([-3, 3, 1, 3],-1)",
    "io_inp": [
      -3,
      3,
      1,
      3
    ],
    "io_out": [
      -2,
      4,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 5, 0, 0]\noutput : list = [-3, 7, 2, 2]",
    "output": "generated_output : list = add_n([-5, 5, 0, 0],2)",
    "io_inp": [
      -5,
      5,
      0,
      0
    ],
    "io_out": [
      -3,
      7,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = take(take(sort_asc([4, 0, 1]),4),25)",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),4),25)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [10, 4]",
    "output": "generated_output : list = reverse(mul_n([2, 5],2))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [0, 4, 5, 3, -2, 2]\noutput : list = [4, 0, 5, 7, 6, 2]",
    "output": "generated_output : list = reverse(sub_n([0, 4, 5, 3, -2, 2],-2))",
    "io_inp": [
      0,
      4,
      5,
      3,
      -2,
      2
    ],
    "io_out": [
      4,
      0,
      5,
      7,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [1, 2, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(reverse([2, -4, -3])),5)))",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      1,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(reverse(input)),5)))"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [2, 5, 10]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(reverse([5, 0, -3]))),5))",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      2,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(reverse(input))),5))"
  },
  {
    "input": "input : list = [1, 0, -1, 1, 5, -5]\noutput : list = [20, 4, 0, -4, -4, -20]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(sort_des([1, 0, -1, 1, 5, -5])),-4),34))",
    "io_inp": [
      1,
      0,
      -1,
      1,
      5,
      -5
    ],
    "io_out": [
      20,
      4,
      0,
      -4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(sort_des(input)),-4),34))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [1, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(add_n([2, -3],-3),1),-3),-5))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(add_n(input,-3),1),-3),-5))"
  },
  {
    "input": "input : list = [5, 3, 0, -5, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = add_n(take([5, 3, 0, -5, 1],2),-2)",
    "io_inp": [
      5,
      3,
      0,
      -5,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-2)"
  },
  {
    "input": "input : list = [-3, 5, 1, 3, 0, -4]\noutput : list = [-7, -5, -3, -2, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n([-3, 5, 1, 3, 0, -4],3)),-1)),5)",
    "io_inp": [
      -3,
      5,
      1,
      3,
      0,
      -4
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n(input,3)),-1)),5)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n([-3, -3, 1],4)),1),-1))",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n(input,4)),1),-1))"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [0, 8, 12]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sub_n([-3, -5, -2],-3)),5),3),4)",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      0,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sub_n(input,-3)),5),3),4)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_des([-1, 5])),4)))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(sub_n([4, 0],4))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-3, -3, 2, 3, -1]\noutput : list = [-8, -8, -6, -3, -2]",
    "output": "generated_output : list = take(add_n(sort_asc([-3, -3, 2, 3, -1]),-5),11)",
    "io_inp": [
      -3,
      -3,
      2,
      3,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),-5),11)"
  },
  {
    "input": "input : list = [4, 2, -4, 0, 4]\noutput : list = [3, 1, -5, -1, 3]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n([4, 2, -4, 0, 4],1),2),3),2)",
    "io_inp": [
      4,
      2,
      -4,
      0,
      4
    ],
    "io_out": [
      3,
      1,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(input,1),2),3),2)"
  },
  {
    "input": "input : list = [-2, 4, 0, 2, 3, 1]\noutput : list = [0, 2, 3, 4, 5, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des([-2, 4, 0, 2, 3, 1]),-2)))",
    "io_inp": [
      -2,
      4,
      0,
      2,
      3,
      1
    ],
    "io_out": [
      0,
      2,
      3,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(input),-2)))"
  },
  {
    "input": "input : list = [-4, -5, -5]\noutput : list = [-16, -20]",
    "output": "generated_output : list = reverse(take(reverse(take(mul_n([-4, -5, -5],4),2)),24))",
    "io_inp": [
      -4,
      -5,
      -5
    ],
    "io_out": [
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(mul_n(input,4),2)),24))"
  },
  {
    "input": "input : list = [5, -3, 5, -2]\noutput : list = [11, 11, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(sub_n([5, -3, 5, -2],-3)),11)),-3)",
    "io_inp": [
      5,
      -3,
      5,
      -2
    ],
    "io_out": [
      11,
      11,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(sub_n(input,-3)),11)),-3)"
  },
  {
    "input": "input : list = [0, 2, 5, -1, -5, 2]\noutput : list = [-15, -25, -40]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(take([0, 2, 5, -1, -5, 2],3),-3)),23),-5)",
    "io_inp": [
      0,
      2,
      5,
      -1,
      -5,
      2
    ],
    "io_out": [
      -15,
      -25,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(take(input,3),-3)),23),-5)"
  },
  {
    "input": "input : list = [5, -3, -2, -3, 5, -5]\noutput : list = [6, -2, -1, -2, 6, -4]",
    "output": "generated_output : list = take(sub_n([5, -3, -2, -3, 5, -5],-1),30)",
    "io_inp": [
      5,
      -3,
      -2,
      -3,
      5,
      -5
    ],
    "io_out": [
      6,
      -2,
      -1,
      -2,
      6,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),30)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [8, 5]",
    "output": "generated_output : list = add_n(add_n([5, 2],-2),5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),5)"
  },
  {
    "input": "input : list = [5, 1, 4, 4]\noutput : list = [-30, -10, -25, -25]",
    "output": "generated_output : list = mul_n(add_n([5, 1, 4, 4],1),-5)",
    "io_inp": [
      5,
      1,
      4,
      4
    ],
    "io_out": [
      -30,
      -10,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-5)"
  },
  {
    "input": "input : list = [4, 0, -1, 5, 2]\noutput : list = [-25, -20, -10, 0, 5]",
    "output": "generated_output : list = sort_asc(mul_n([4, 0, -1, 5, 2],-5))",
    "io_inp": [
      4,
      0,
      -1,
      5,
      2
    ],
    "io_out": [
      -25,
      -20,
      -10,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [5, 4]",
    "output": "generated_output : list = sub_n(add_n([0, -1],3),-2)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sub_n([2, 1, -4],1)))))",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [1, 2, -3, 1, -3, -2]\noutput : list = [-3, -3, -2, 1, 1, 2]",
    "output": "generated_output : list = sort_asc([1, 2, -3, 1, -3, -2])",
    "io_inp": [
      1,
      2,
      -3,
      1,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(reverse([5, 4]),5),-1)))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(reverse(input),5),-1)))"
  },
  {
    "input": "input : list = [-3, 5, 1]\noutput : list = [-5, 3, -1]",
    "output": "generated_output : list = add_n(add_n([-3, 5, 1],-5),3)",
    "io_inp": [
      -3,
      5,
      1
    ],
    "io_out": [
      -5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),3)"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-25, -35, -40]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(add_n([-2, -3, 0],-5)))),5)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -25,
      -35,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(add_n(input,-5)))),5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [6, 1]",
    "output": "generated_output : list = take(take(sub_n(reverse([-3, 2]),-4),14),13)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(input),-4),14),13)"
  },
  {
    "input": "input : list = [0, 4, 0, 0]\noutput : list = [20, 20, 20, 40]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sub_n([0, 4, 0, 0],-4)))),5)",
    "io_inp": [
      0,
      4,
      0,
      0
    ],
    "io_out": [
      20,
      20,
      20,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sub_n(input,-4)))),5)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [15, 20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc([2, 1]),-5),3),5)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(input),-5),3),5)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-15, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(sort_asc([-5, 5]),6)),-3))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(sort_asc(input),6)),-3))"
  },
  {
    "input": "input : list = [4, 1, -4, 4, -1]\noutput : list = [-20, 80, -80, 20, 80]",
    "output": "generated_output : list = mul_n(reverse(mul_n([4, 1, -4, 4, -1],-4)),-5)",
    "io_inp": [
      4,
      1,
      -4,
      4,
      -1
    ],
    "io_out": [
      -20,
      80,
      -80,
      20,
      80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-4)),-5)"
  },
  {
    "input": "input : list = [-4, 1, -3, 1]\noutput : list = [-1, 7, -1, 9]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(sub_n([-4, 1, -3, 1],-1),-1)),2),3)",
    "io_inp": [
      -4,
      1,
      -3,
      1
    ],
    "io_out": [
      -1,
      7,
      -1,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(sub_n(input,-1),-1)),2),3)"
  },
  {
    "input": "input : list = [4, -2, 1, -3, -2, 1]\noutput : list = [4]",
    "output": "generated_output : list = take(reverse(take([4, -2, 1, -3, -2, 1],1)),18)",
    "io_inp": [
      4,
      -2,
      1,
      -3,
      -2,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),18)"
  },
  {
    "input": "input : list = [-5, -2, 5, 0]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(drop([-5, -2, 5, 0],2)),-4)))",
    "io_inp": [
      -5,
      -2,
      5,
      0
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(drop(input,2)),-4)))"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(drop([5, -2, -4],1),7),-4)))",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(drop(input,1),7),-4)))"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [8, 1]",
    "output": "generated_output : list = add_n(add_n(take(take(drop([-3, 4, -3],1),11),21),-1),5)",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(drop(input,1),11),21),-1),5)"
  },
  {
    "input": "input : list = [0, 3, -4, -2]\noutput : list = [8, 11, 4, 6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(add_n([0, 3, -4, -2],5),-2),-4),4),-1)",
    "io_inp": [
      0,
      3,
      -4,
      -2
    ],
    "io_out": [
      8,
      11,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(add_n(input,5),-2),-4),4),-1)"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = drop([0, 5, -2],1)",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [20, -10]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(mul_n([2, -4],-5),2))))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      20,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(mul_n(input,-5),2))))"
  },
  {
    "input": "input : list = [-4, 0, 0, -2, 0, 4]\noutput : list = [-6, -2, -2, -4, -2, 2]",
    "output": "generated_output : list = add_n(add_n([-4, 0, 0, -2, 0, 4],-4),2)",
    "io_inp": [
      -4,
      0,
      0,
      -2,
      0,
      4
    ],
    "io_out": [
      -6,
      -2,
      -2,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),2)"
  },
  {
    "input": "input : list = [3, -4, -3, 0]\noutput : list = [3, 0, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc([3, -4, -3, 0]))",
    "io_inp": [
      3,
      -4,
      -3,
      0
    ],
    "io_out": [
      3,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -2, 0, 1, 3, 1]\noutput : list = [-5, -3, -2, -2, -1, 0]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(sort_des([2, -2, 0, 1, 3, 1])),-2),-5),56)",
    "io_inp": [
      2,
      -2,
      0,
      1,
      3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(sort_des(input)),-2),-5),56)"
  },
  {
    "input": "input : list = [5, -3, 5, -1, 5, 2]\noutput : list = [-9, -7, -4, -1, -1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_des([5, -3, 5, -1, 5, 2]),-2),-2),2))",
    "io_inp": [
      5,
      -3,
      5,
      -1,
      5,
      2
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_des(input),-2),-2),2))"
  },
  {
    "input": "input : list = [2, 5, 4, -4, -1]\noutput : list = [5, 17, 13]",
    "output": "generated_output : list = sub_n(mul_n(take([2, 5, 4, -4, -1],3),4),3)",
    "io_inp": [
      2,
      5,
      4,
      -4,
      -1
    ],
    "io_out": [
      5,
      17,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,3),4),3)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc([-2, 0]),-1)))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(input),-1)))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, -3, -1, 0, -1]\noutput : list = [0, 4, 8, 8, 16, 20]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(mul_n([1, -4, -3, -1, 0, -1],-4),4)),28))",
    "io_inp": [
      1,
      -4,
      -3,
      -1,
      0,
      -1
    ],
    "io_out": [
      0,
      4,
      8,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(mul_n(input,-4),4)),28))"
  },
  {
    "input": "input : list = [3, 2, 0, 3, -2]\noutput : list = [3, 2, 0, -2]",
    "output": "generated_output : list = drop(sort_des([3, 2, 0, 3, -2]),1)",
    "io_inp": [
      3,
      2,
      0,
      3,
      -2
    ],
    "io_out": [
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),1)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n([-3, 0],-1))))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(input,-1))))"
  },
  {
    "input": "input : list = [-2, -2, -4, 4, 5]\noutput : list = [-6, -6, -8, 0, 1]",
    "output": "generated_output : list = add_n([-2, -2, -4, 4, 5],-4)",
    "io_inp": [
      -2,
      -2,
      -4,
      4,
      5
    ],
    "io_out": [
      -6,
      -6,
      -8,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 2, -2, 3, 2]\noutput : list = [3, 2, 2, -1, -2]",
    "output": "generated_output : list = take(sort_des([-1, 2, -2, 3, 2]),17)",
    "io_inp": [
      -1,
      2,
      -2,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),17)"
  },
  {
    "input": "input : list = [4, 4, 0, -1, -3, 2]\noutput : list = [-12, -12, -4, 4, 8, 16]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(mul_n([4, 4, 0, -1, -3, 2],-1)),-4),-5),4)",
    "io_inp": [
      4,
      4,
      0,
      -1,
      -3,
      2
    ],
    "io_out": [
      -12,
      -12,
      -4,
      4,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(mul_n(input,-1)),-4),-5),4)"
  },
  {
    "input": "input : list = [-3, 5, -1, -1, 5]\noutput : list = [1, 1, -5, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des([-3, 5, -1, -1, 5]),4)",
    "io_inp": [
      -3,
      5,
      -1,
      -1,
      5
    ],
    "io_out": [
      1,
      1,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [5, 1, 4, 3, 2, -4]\noutput : list = [-6, -1, 0, 1, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sort_asc([5, 1, 4, 3, 2, -4])))),-2)",
    "io_inp": [
      5,
      1,
      4,
      3,
      2,
      -4
    ],
    "io_out": [
      -6,
      -1,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [-4, 0, -1, 0, 2, 4]\noutput : list = [-40, -20, 0, 10, 0, 40]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(mul_n([-4, 0, -1, 0, 2, 4],-2)),-4),4),5)",
    "io_inp": [
      -4,
      0,
      -1,
      0,
      2,
      4
    ],
    "io_out": [
      -40,
      -20,
      0,
      10,
      0,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(mul_n(input,-2)),-4),4),5)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(add_n([2, -3],-2))),29))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(add_n(input,-2))),29))"
  },
  {
    "input": "input : list = [3, -2, -4, 2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(take([3, -2, -4, 2],2))",
    "io_inp": [
      3,
      -2,
      -4,
      2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [12, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse([0, 4]),-1),-3))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(input),-1),-3))"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [-6, -4, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(sort_des([0, 4, 3]),-2),-2)))",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(sort_des(input),-2),-2)))"
  },
  {
    "input": "input : list = [5, -4, -3, 1]\noutput : list = [-11, -10, -6, -2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(sort_des([5, -4, -3, 1]),2))),-5)",
    "io_inp": [
      5,
      -4,
      -3,
      1
    ],
    "io_out": [
      -11,
      -10,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(sort_des(input),2))),-5)"
  },
  {
    "input": "input : list = [0, -1, 0, 5, -3, 0]\noutput : list = [5, -3, 0]",
    "output": "generated_output : list = drop([0, -1, 0, 5, -3, 0],3)",
    "io_inp": [
      0,
      -1,
      0,
      5,
      -3,
      0
    ],
    "io_out": [
      5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, -2, -5, -1, 1, 1]\noutput : list = [5, 5, -5, -25]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(drop([4, -2, -5, -1, 1, 1],2)))),5)",
    "io_inp": [
      4,
      -2,
      -5,
      -1,
      1,
      1
    ],
    "io_out": [
      5,
      5,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(drop(input,2)))),5)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [35, -45]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n([-5, 5],4),2))),5)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      35,
      -45
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n(input,4),2))),5)"
  },
  {
    "input": "input : list = [-5, -4, -3, 4, -1, -2]\noutput : list = [3, -2, -3, -4, -5, -6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(reverse([-5, -4, -3, 4, -1, -2]))),1),2)",
    "io_inp": [
      -5,
      -4,
      -3,
      4,
      -1,
      -2
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(reverse(input))),1),2)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [-25, -20, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sort_des([-3, 5, 4]))),-5))",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      -25,
      -20,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [4, 3, -4, -5, 0]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(take([4, 3, -4, -5, 0],1),-1),-1),3),2)",
    "io_inp": [
      4,
      3,
      -4,
      -5,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(take(input,1),-1),-1),3),2)"
  },
  {
    "input": "input : list = [4, 4, -5, -1, 3, 5]\noutput : list = [7, 5, 1, -3, 6]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(drop([4, 4, -5, -1, 3, 5],1)),3),5),38)",
    "io_inp": [
      4,
      4,
      -5,
      -1,
      3,
      5
    ],
    "io_out": [
      7,
      5,
      1,
      -3,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(drop(input,1)),3),5),38)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [-19, -27, -35]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(add_n([3, 1, 5],3),-4),-3)),32)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      -19,
      -27,
      -35
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(add_n(input,3),-4),-3)),32)"
  },
  {
    "input": "input : list = [0, -3, 2, 0, -5, -3]\noutput : list = [16, 8, 8, -4, -4, -12]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(sort_asc([0, -3, 2, 0, -5, -3]),-4),4),43))",
    "io_inp": [
      0,
      -3,
      2,
      0,
      -5,
      -3
    ],
    "io_out": [
      16,
      8,
      8,
      -4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(sort_asc(input),-4),4),43))"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = sort_asc(take(add_n([3, 2, 2],-2),13))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-2),13))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [7, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(sort_des([3, -4]),3)),-1))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(sort_des(input),3)),-1))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 7]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n([4, 1],4),-1),19))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(input,4),-1),19))"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-20, 20]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(drop([5, -3, -5],1),4)),5),-4)",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(drop(input,1),4)),5),-4)"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = sort_des([2, -2, 3])",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [-4, 2, -2]",
    "output": "generated_output : list = sub_n([-2, 4, 0],2)",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      -4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, -2, -2, -5, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take([-3, -2, -2, -5, -2],2)",
    "io_inp": [
      -3,
      -2,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 1, 5, 0, -3]\noutput : list = [0, 4, 5, 8, 8]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_des(sub_n([-3, 1, 5, 0, -3],1)),4)),-1)",
    "io_inp": [
      -3,
      1,
      5,
      0,
      -3
    ],
    "io_out": [
      0,
      4,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_des(sub_n(input,1)),4)),-1)"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(reverse(drop([4, 4, -4],1)))",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [16, 8]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(add_n([-3, -1],-1)),-4)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(add_n(input,-1)),-4)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [40, 15]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(add_n([-5, 0],-4),-5),4),-5))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      40,
      15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(add_n(input,-4),-5),4),-5))"
  },
  {
    "input": "input : list = [5, 1, -3, -1, -2, -3]\noutput : list = [-2, -3, -4]",
    "output": "generated_output : list = take(reverse(reverse(add_n(drop([5, 1, -3, -1, -2, -3],3),-1))),50)",
    "io_inp": [
      5,
      1,
      -3,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(drop(input,3),-1))),50)"
  },
  {
    "input": "input : list = [3, 5, 4, -2]\noutput : list = [-2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([3, 5, 4, -2])",
    "io_inp": [
      3,
      5,
      4,
      -2
    ],
    "io_out": [
      -2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0, 3, -5, -5]\noutput : list = [19, 19, -1, -5, -13]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n([1, 0, 3, -5, -5],-4)),-1))",
    "io_inp": [
      1,
      0,
      3,
      -5,
      -5
    ],
    "io_out": [
      19,
      19,
      -1,
      -5,
      -13
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(input,-4)),-1))"
  },
  {
    "input": "input : list = [5, -2, 1, -3, 3, 3]\noutput : list = [4, 4, -2, 2, -1, 6]",
    "output": "generated_output : list = reverse(add_n([5, -2, 1, -3, 3, 3],1))",
    "io_inp": [
      5,
      -2,
      1,
      -3,
      3,
      3
    ],
    "io_out": [
      4,
      4,
      -2,
      2,
      -1,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [-3, 4, 1, -4]\noutput : list = [-7, 0, -3, -8]",
    "output": "generated_output : list = sub_n([-3, 4, 1, -4],4)",
    "io_inp": [
      -3,
      4,
      1,
      -4
    ],
    "io_out": [
      -7,
      0,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [-5, 2, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des([2, 2, -5]))),32)",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(input))),32)"
  },
  {
    "input": "input : list = [0, -3, 3]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(drop([0, -3, 3],1),-1))))",
    "io_inp": [
      0,
      -3,
      3
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(drop(input,1),-1))))"
  },
  {
    "input": "input : list = [-5, -5, -2, -2, 4, 4]\noutput : list = [-5, -5, 4, 4, 22, 22]",
    "output": "generated_output : list = add_n(mul_n(add_n([-5, -5, -2, -2, 4, 4],5),3),-5)",
    "io_inp": [
      -5,
      -5,
      -2,
      -2,
      4,
      4
    ],
    "io_out": [
      -5,
      -5,
      4,
      4,
      22,
      22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,5),3),-5)"
  },
  {
    "input": "input : list = [1, 5, 4, 4, 4]\noutput : list = [0, 3, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse([1, 5, 4, 4, 4]),-1))",
    "io_inp": [
      1,
      5,
      4,
      4,
      4
    ],
    "io_out": [
      0,
      3,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [0, -3, 5, 2]\noutput : list = [-1, -4, -6, -9]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([0, -3, 5, 2],2)),4)",
    "io_inp": [
      0,
      -3,
      5,
      2
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,2)),4)"
  },
  {
    "input": "input : list = [0, -4, 0, 4, 3]\noutput : list = [20, 24, 8, -8, 8]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(add_n([0, -4, 0, 4, 3],4),2),-4)),2)",
    "io_inp": [
      0,
      -4,
      0,
      4,
      3
    ],
    "io_out": [
      20,
      24,
      8,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(add_n(input,4),2),-4)),2)"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(sub_n([-5, -4, -2],-5),1))),1)",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(sub_n(input,-5),1))),1)"
  },
  {
    "input": "input : list = [-2, 0, 5, -5, 2]\noutput : list = [-3, -1, 4, -6, 1]",
    "output": "generated_output : list = add_n([-2, 0, 5, -5, 2],-1)",
    "io_inp": [
      -2,
      0,
      5,
      -5,
      2
    ],
    "io_out": [
      -3,
      -1,
      4,
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 5, -5, 3]\noutput : list = [5, 3, 0, -5]",
    "output": "generated_output : list = take(sort_des([0, 5, -5, 3]),10)",
    "io_inp": [
      0,
      5,
      -5,
      3
    ],
    "io_out": [
      5,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),10)"
  },
  {
    "input": "input : list = [-4, -2, 4, 2, -4, 0]\noutput : list = [-1, -3, -5, -7, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(drop([-4, -2, 4, 2, -4, 0],1))),5))",
    "io_inp": [
      -4,
      -2,
      4,
      2,
      -4,
      0
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(drop(input,1))),5))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [2, -2]",
    "output": "generated_output : list = sub_n(reverse([0, 4]),2)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-3, 0, -4, -5, 0, 4]\noutput : list = [-7, -6, -5, -2, -2, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([-3, 0, -4, -5, 0, 4]),-2),4)",
    "io_inp": [
      -3,
      0,
      -4,
      -5,
      0,
      4
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),-2),4)"
  },
  {
    "input": "input : list = [3, 5, 5, 5]\noutput : list = [5, 5, 5, 3]",
    "output": "generated_output : list = sort_des(reverse([3, 5, 5, 5]))",
    "io_inp": [
      3,
      5,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, -4, 3]\noutput : list = [5, -2, 4]",
    "output": "generated_output : list = reverse(add_n(sub_n([2, -4, 3],1),3))",
    "io_inp": [
      2,
      -4,
      3
    ],
    "io_out": [
      5,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,1),3))"
  },
  {
    "input": "input : list = [1, -5, 3]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(drop([1, -5, 3],1),-1)),-2))",
    "io_inp": [
      1,
      -5,
      3
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(drop(input,1),-1)),-2))"
  },
  {
    "input": "input : list = [-4, -2, 0, -4, 4]\noutput : list = [18, 18, 12, 6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n([-4, -2, 0, -4, 4],2)),-3)",
    "io_inp": [
      -4,
      -2,
      0,
      -4,
      4
    ],
    "io_out": [
      18,
      18,
      12,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(input,2)),-3)"
  },
  {
    "input": "input : list = [0, 0, -1, 2]\noutput : list = [-1, 0, 0, 2]",
    "output": "generated_output : list = sort_asc([0, 0, -1, 2])",
    "io_inp": [
      0,
      0,
      -1,
      2
    ],
    "io_out": [
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, 4, -4, -4, -3]\noutput : list = [12, -12, -12, -9]",
    "output": "generated_output : list = drop(take(mul_n([-5, -3, 4, -4, -4, -3],3),23),2)",
    "io_inp": [
      -5,
      -3,
      4,
      -4,
      -4,
      -3
    ],
    "io_out": [
      12,
      -12,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = drop(take(mul_n(input,3),23),2)"
  },
  {
    "input": "input : list = [2, -1, 0, 4, -1]\noutput : list = [-1, 0, 4, -1]",
    "output": "generated_output : list = drop([2, -1, 0, 4, -1],1)",
    "io_inp": [
      2,
      -1,
      0,
      4,
      -1
    ],
    "io_out": [
      -1,
      0,
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -3, 1, -5, 1, 0]\noutput : list = [-3, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(take([3, -3, 1, -5, 1, 0],3),4),19)))",
    "io_inp": [
      3,
      -3,
      1,
      -5,
      1,
      0
    ],
    "io_out": [
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(take(input,3),4),19)))"
  },
  {
    "input": "input : list = [3, -1, 3, 5, -4, -4]\noutput : list = [3, 1, 1, -3, -6, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc([3, -1, 3, 5, -4, -4]),-1),-3))",
    "io_inp": [
      3,
      -1,
      3,
      5,
      -4,
      -4
    ],
    "io_out": [
      3,
      1,
      1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(input),-1),-3))"
  },
  {
    "input": "input : list = [-5, 3, -5, 1, -2]\noutput : list = [-5, -5, 3]",
    "output": "generated_output : list = sort_asc(take([-5, 3, -5, 1, -2],3))",
    "io_inp": [
      -5,
      3,
      -5,
      1,
      -2
    ],
    "io_out": [
      -5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [4, 1, -4, 1, 5, -1]\noutput : list = [-1, 5, 1, -4, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, -4, 1, 5, -1])",
    "io_inp": [
      4,
      1,
      -4,
      1,
      5,
      -1
    ],
    "io_out": [
      -1,
      5,
      1,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5, 3, 2]\noutput : list = [4, 3, 2, -5]",
    "output": "generated_output : list = sort_des([4, -5, 3, 2])",
    "io_inp": [
      4,
      -5,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, 2, 0, 1]\noutput : list = [5, 10]",
    "output": "generated_output : list = add_n(mul_n(drop([-5, 0, 2, 0, 1],3),5),5)",
    "io_inp": [
      -5,
      0,
      2,
      0,
      1
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,3),5),5)"
  },
  {
    "input": "input : list = [-3, -2, -1, -3, -4]\noutput : list = [0, -1]",
    "output": "generated_output : list = add_n(sort_des(take([-3, -2, -1, -3, -4],2)),2)",
    "io_inp": [
      -3,
      -2,
      -1,
      -3,
      -4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,2)),2)"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [-1, -8, 0]",
    "output": "generated_output : list = add_n([4, -3, 5],-5)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      -1,
      -8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [3, -5, 3, -3, 1]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(take([3, -5, 3, -3, 1],1)))),30)",
    "io_inp": [
      3,
      -5,
      3,
      -3,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(take(input,1)))),30)"
  },
  {
    "input": "input : list = [2, 4, 4, 3, 2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(mul_n(reverse(drop([2, 4, 4, 3, 2, 2],4)),3))",
    "io_inp": [
      2,
      4,
      4,
      3,
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(drop(input,4)),3))"
  },
  {
    "input": "input : list = [0, 2, 3, -2, -2, -2]\noutput : list = [7, 9, 10, 5, 5, 5]",
    "output": "generated_output : list = add_n(add_n([0, 2, 3, -2, -2, -2],5),2)",
    "io_inp": [
      0,
      2,
      3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      7,
      9,
      10,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),2)"
  },
  {
    "input": "input : list = [-5, 2, 4, 0]\noutput : list = [40, 0, -16, -32]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(mul_n([-5, 2, 4, 0],-2),4),4),4))",
    "io_inp": [
      -5,
      2,
      4,
      0
    ],
    "io_out": [
      40,
      0,
      -16,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(mul_n(input,-2),4),4),4))"
  },
  {
    "input": "input : list = [0, 5, 3, -2, 2]\noutput : list = [-5, -3, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sub_n([0, 5, 3, -2, 2],3)))))",
    "io_inp": [
      0,
      5,
      3,
      -2,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [5, -1, -7]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(reverse([1, -1, -3])),3),-2),4)",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      5,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(reverse(input)),3),-2),4)"
  },
  {
    "input": "input : list = [-1, -1, 3, -4, 1, 0]\noutput : list = [0, -2, -3, -4, -4, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sort_asc([-1, -1, 3, -4, 1, 0]),1))),-2)",
    "io_inp": [
      -1,
      -1,
      3,
      -4,
      1,
      0
    ],
    "io_out": [
      0,
      -2,
      -3,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sort_asc(input),1))),-2)"
  },
  {
    "input": "input : list = [-1, 5, -3, -3]\noutput : list = [5, -3, -3]",
    "output": "generated_output : list = drop([-1, 5, -3, -3],1)",
    "io_inp": [
      -1,
      5,
      -3,
      -3
    ],
    "io_out": [
      5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(drop([5, 4, 3],1))))",
    "io_inp": [
      5,
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(drop(input,1))))"
  },
  {
    "input": "input : list = [-4, 1, 5, 4]\noutput : list = [7, 6, 3, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(add_n([-4, 1, 5, 4],4))),2))",
    "io_inp": [
      -4,
      1,
      5,
      4
    ],
    "io_out": [
      7,
      6,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(add_n(input,4))),2))"
  },
  {
    "input": "input : list = [-1, 4, 2, -5, -2]\noutput : list = [7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(sub_n([-1, 4, 2, -5, -2],-3),1)),-3),2)",
    "io_inp": [
      -1,
      4,
      2,
      -5,
      -2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(sub_n(input,-3),1)),-3),2)"
  },
  {
    "input": "input : list = [2, -1, -5]\noutput : list = [-5, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(reverse([2, -1, -5])))))",
    "io_inp": [
      2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, -5, 1]\noutput : list = [-16, -16, -4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(mul_n([-5, -5, 1],2),-1)),5))",
    "io_inp": [
      -5,
      -5,
      1
    ],
    "io_out": [
      -16,
      -16,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(mul_n(input,2),-1)),5))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n([-3, -3],5)),-1),-4)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(input,5)),-1),-4)"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [3, 3, 2]",
    "output": "generated_output : list = sort_des([2, 3, 3])",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-1, -9]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_des([3, -5])),2),2),-4)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_des(input)),2),2),-4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-4, -9]",
    "output": "generated_output : list = sort_des(add_n(sub_n([0, 5],4),-5))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,4),-5))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-5, 15]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n([-2, 2],5),5)),23)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -5,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(input,5),5)),23)"
  },
  {
    "input": "input : list = [5, 3, 4]\noutput : list = [2, 1, 3]",
    "output": "generated_output : list = add_n(reverse(sub_n([5, 3, 4],4)),2)",
    "io_inp": [
      5,
      3,
      4
    ],
    "io_out": [
      2,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,4)),2)"
  },
  {
    "input": "input : list = [-4, 4, 2, -2, 1, -5]\noutput : list = [-3, 0, 6, 15, 18, 24]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_asc([-4, 4, 2, -2, 1, -5]),-3),-1),1),-3)",
    "io_inp": [
      -4,
      4,
      2,
      -2,
      1,
      -5
    ],
    "io_out": [
      -3,
      0,
      6,
      15,
      18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_asc(input),-3),-1),1),-3)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [1, -2]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(drop([2, 0, -3],1)),2)),1)",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(drop(input,1)),2)),1)"
  },
  {
    "input": "input : list = [-4, 0, 2, 1, 2, -2]\noutput : list = [-2, 2, 4, 3, 4, 0]",
    "output": "generated_output : list = take(add_n(add_n(add_n(sub_n([-4, 0, 2, 1, 2, -2],-2),-5),1),4),11)",
    "io_inp": [
      -4,
      0,
      2,
      1,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      4,
      3,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(sub_n(input,-2),-5),1),4),11)"
  },
  {
    "input": "input : list = [5, -3, 1, 5, 0, 3]\noutput : list = [4, 12, 8, 4, 9, 6]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n([5, -3, 1, 5, 0, 3],-1),-1),5),3)",
    "io_inp": [
      5,
      -3,
      1,
      5,
      0,
      3
    ],
    "io_out": [
      4,
      12,
      8,
      4,
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(input,-1),-1),5),3)"
  },
  {
    "input": "input : list = [0, -5, 4, -3, -5]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(take([0, -5, 4, -3, -5],1),5),7)))",
    "io_inp": [
      0,
      -5,
      4,
      -3,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(take(input,1),5),7)))"
  },
  {
    "input": "input : list = [-1, 3, -3]\noutput : list = [-3, 3, -1]",
    "output": "generated_output : list = reverse([-1, 3, -3])",
    "io_inp": [
      -1,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, -1, 3]\noutput : list = [5, 3, -1, -4]",
    "output": "generated_output : list = take(sort_des(take(reverse(sort_des([-4, 5, -1, 3])),29)),14)",
    "io_inp": [
      -4,
      5,
      -1,
      3
    ],
    "io_out": [
      5,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(sort_des(input)),29)),14)"
  },
  {
    "input": "input : list = [-1, -3, 0, 2, -1]\noutput : list = [-9, -3, -3, 0, 6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([-1, -3, 0, 2, -1])),3)",
    "io_inp": [
      -1,
      -3,
      0,
      2,
      -1
    ],
    "io_out": [
      -9,
      -3,
      -3,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [3, 0, 5, 1, -1]\noutput : list = [0, 1, 2, 4, 6]",
    "output": "generated_output : list = sort_asc(add_n([3, 0, 5, 1, -1],1))",
    "io_inp": [
      3,
      0,
      5,
      1,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [2, -1, -5, -5, -5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(take(take(add_n(mul_n([2, -1, -5, -5, -5],-5),5),1),28))",
    "io_inp": [
      2,
      -1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(mul_n(input,-5),5),1),28))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_des([2, 2]),-1),-1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),-1),-1)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [5, 5, 1]",
    "output": "generated_output : list = sort_des(sub_n([0, 0, -4],-5))",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [3, -2, -5, 2, -4]\noutput : list = [1, 2, 4, 8, 9]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(sort_des([3, -2, -5, 2, -4]),2)),4),46)",
    "io_inp": [
      3,
      -2,
      -5,
      2,
      -4
    ],
    "io_out": [
      1,
      2,
      4,
      8,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(sort_des(input),2)),4),46)"
  },
  {
    "input": "input : list = [-1, 1, -5, -3, 5, -4]\noutput : list = [4, 6]",
    "output": "generated_output : list = take(sort_asc(add_n(take(take([-1, 1, -5, -3, 5, -4],2),18),5)),37)",
    "io_inp": [
      -1,
      1,
      -5,
      -3,
      5,
      -4
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(take(input,2),18),5)),37)"
  },
  {
    "input": "input : list = [4, 4, -4, 3, -5]\noutput : list = [22, 22, -18, 17, -23]",
    "output": "generated_output : list = add_n(mul_n([4, 4, -4, 3, -5],5),2)",
    "io_inp": [
      4,
      4,
      -4,
      3,
      -5
    ],
    "io_out": [
      22,
      22,
      -18,
      17,
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse([-4, 2])",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 2, 1, -5, -4, -1]\noutput : list = [181, 145, 37, -35, -71, -107]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(mul_n([3, 2, 1, -5, -4, -1],-4),-3),-3)),1)",
    "io_inp": [
      3,
      2,
      1,
      -5,
      -4,
      -1
    ],
    "io_out": [
      181,
      145,
      37,
      -35,
      -71,
      -107
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(mul_n(input,-4),-3),-3)),1)"
  },
  {
    "input": "input : list = [-2, -5, -4, -4, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = take([-2, -5, -4, -4, -2],2)",
    "io_inp": [
      -2,
      -5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sort_des([5, 2]),1),3),-1))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sort_des(input),1),3),-1))"
  },
  {
    "input": "input : list = [-1, 3, 3, -3, -4, 0]\noutput : list = [9, -3]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(take([-1, 3, 3, -3, -4, 0],2),8))),3)",
    "io_inp": [
      -1,
      3,
      3,
      -3,
      -4,
      0
    ],
    "io_out": [
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(take(input,2),8))),3)"
  },
  {
    "input": "input : list = [2, 0, -5, 1, 3, 4]\noutput : list = [4, 3, 1, -5, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, -5, 1, 3, 4])",
    "io_inp": [
      2,
      0,
      -5,
      1,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      1,
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 1, 4, -2]\noutput : list = [7, 6, 3, 0, -3]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([-5, 5, 1, 4, -2],2)))",
    "io_inp": [
      -5,
      5,
      1,
      4,
      -2
    ],
    "io_out": [
      7,
      6,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,2)))"
  },
  {
    "input": "input : list = [-2, 5, -5, 4, -4, 0]\noutput : list = [7, 0]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(take([-2, 5, -5, 4, -4, 0],2),-3)),-1),26)",
    "io_inp": [
      -2,
      5,
      -5,
      4,
      -4,
      0
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(take(input,2),-3)),-1),26)"
  },
  {
    "input": "input : list = [-5, 4, -1, 0, 4, -2]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(reverse(drop(sort_asc([-5, 4, -1, 0, 4, -2]),4)))",
    "io_inp": [
      -5,
      4,
      -1,
      0,
      4,
      -2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [3, 3, 5, -4, 0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(drop([3, 3, 5, -4, 0, -4],4))",
    "io_inp": [
      3,
      3,
      5,
      -4,
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(input,4))"
  },
  {
    "input": "input : list = [1, -3, -2, 3, 4, -1]\noutput : list = [4, 3, 1, -1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse([1, -3, -2, 3, 4, -1]))",
    "io_inp": [
      1,
      -3,
      -2,
      3,
      4,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([4, 3]))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 4, 4, 2]\noutput : list = [7, 7, 5, 4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des([1, 4, 4, 2]))),-3)",
    "io_inp": [
      1,
      4,
      4,
      2
    ],
    "io_out": [
      7,
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(input))),-3)"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [10, 6]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(drop([-4, -2, 2],1)),4),4),24)",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(drop(input,1)),4),4),24)"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take([5, 0, -1],1),4),-3))",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(input,1),4),-3))"
  },
  {
    "input": "input : list = [-5, -5, -5, 3, 3]\noutput : list = [3, 3, -5, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(sort_des([-5, -5, -5, 3, 3]),17))))",
    "io_inp": [
      -5,
      -5,
      -5,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(sort_des(input),17))))"
  },
  {
    "input": "input : list = [2, -4, 4, 5, 4, 3]\noutput : list = [5, 4, 4, 3, 2, -4]",
    "output": "generated_output : list = sort_des([2, -4, 4, 5, 4, 3])",
    "io_inp": [
      2,
      -4,
      4,
      5,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take([0, 0, 5],1))),3))",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take(input,1))),3))"
  },
  {
    "input": "input : list = [2, 0, -3, 1, 3, 2]\noutput : list = [2, 3, 1, -3, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, -3, 1, 3, 2])",
    "io_inp": [
      2,
      0,
      -3,
      1,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      1,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3, -2]\noutput : list = [-3, -3, -2]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_asc([-3, -3, -2])))),10)",
    "io_inp": [
      -3,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_asc(input)))),10)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-28, -24]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc([4, 5]),-2),-4))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -28,
      -24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(input),-2),-4))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-10, 0]",
    "output": "generated_output : list = take(take(take(add_n(sort_asc([-5, 5]),-5),23),10),37)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(sort_asc(input),-5),23),10),37)"
  },
  {
    "input": "input : list = [5, 3, -2, -3, 0]\noutput : list = [0, -2, -5, -7, -8]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sub_n([5, 3, -2, -3, 0],2)),3)))",
    "io_inp": [
      5,
      3,
      -2,
      -3,
      0
    ],
    "io_out": [
      0,
      -2,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sub_n(input,2)),3)))"
  },
  {
    "input": "input : list = [0, 4, -3, 3]\noutput : list = [-20, 25, 70, 85]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n([0, 4, -3, 3],-3),-5),-5))",
    "io_inp": [
      0,
      4,
      -3,
      3
    ],
    "io_out": [
      -20,
      25,
      70,
      85
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(input,-3),-5),-5))"
  },
  {
    "input": "input : list = [4, -1, 2, 3, -4]\noutput : list = [3, 2, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(drop([4, -1, 2, 3, -4],1)),24)))",
    "io_inp": [
      4,
      -1,
      2,
      3,
      -4
    ],
    "io_out": [
      3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(drop(input,1)),24)))"
  },
  {
    "input": "input : list = [-2, -4, 3, 1]\noutput : list = [3, 1, 8, 6]",
    "output": "generated_output : list = sub_n([-2, -4, 3, 1],-5)",
    "io_inp": [
      -2,
      -4,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 0, 0, 5, 1, -4]\noutput : list = [-4, 1, 5, 0, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, 0, 5, 1, -4])",
    "io_inp": [
      -2,
      0,
      0,
      5,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      5,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-9, -8]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(reverse([-2, -3])),2)),-4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(reverse(input)),2)),-4)"
  },
  {
    "input": "input : list = [2, -2, -5, 2, -4]\noutput : list = [3, 3, -1, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(sub_n([2, -2, -5, 2, -4],-1)))",
    "io_inp": [
      2,
      -2,
      -5,
      2,
      -4
    ],
    "io_out": [
      3,
      3,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [3, -2, -3, 1, -1, 0]\noutput : list = [-27, -9, 0, 9, 18, 27]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(sort_des([3, -2, -3, 1, -1, 0])),3),-3))",
    "io_inp": [
      3,
      -2,
      -3,
      1,
      -1,
      0
    ],
    "io_out": [
      -27,
      -9,
      0,
      9,
      18,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(sort_des(input)),3),-3))"
  },
  {
    "input": "input : list = [4, 1, -3, -4, 2, -4]\noutput : list = [12, 24, 40, 44, 20, 44]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(sub_n([4, 1, -3, -4, 2, -4],4),3))),-4)",
    "io_inp": [
      4,
      1,
      -3,
      -4,
      2,
      -4
    ],
    "io_out": [
      12,
      24,
      40,
      44,
      20,
      44
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(sub_n(input,4),3))),-4)"
  },
  {
    "input": "input : list = [-2, 5, 4, 3, 0]\noutput : list = [10, 7, 4, -5, -11]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(reverse([-2, 5, 4, 3, 0]),3),-5)))",
    "io_inp": [
      -2,
      5,
      4,
      3,
      0
    ],
    "io_out": [
      10,
      7,
      4,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(reverse(input),3),-5)))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-2, -7]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(sub_n([0, -5],-1),11),-4),-4),-3)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(sub_n(input,-1),11),-4),-4),-3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(sub_n(sub_n(add_n([-4, -1],3),-1),1),22),1)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(add_n(input,3),-1),1),22),1)"
  },
  {
    "input": "input : list = [1, 1, 1, 5, -3, 2]\noutput : list = [4, -1, 7, 3, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(sub_n([1, 1, 1, 5, -3, 2],-5)),1),5),-2)",
    "io_inp": [
      1,
      1,
      1,
      5,
      -3,
      2
    ],
    "io_out": [
      4,
      -1,
      7,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(sub_n(input,-5)),1),5),-2)"
  },
  {
    "input": "input : list = [2, -2, 1, -5, -3, 4]\noutput : list = [7]",
    "output": "generated_output : list = add_n(reverse(take([2, -2, 1, -5, -3, 4],1)),5)",
    "io_inp": [
      2,
      -2,
      1,
      -5,
      -3,
      4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,1)),5)"
  },
  {
    "input": "input : list = [2, 0, 3, 3, 4]\noutput : list = [4, 3, 3, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc([2, 0, 3, 3, 4]))",
    "io_inp": [
      2,
      0,
      3,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -3, 3],1)",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 2, 1, 2, -1]\noutput : list = [8, -8, -16, -20, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(add_n([-5, 2, 1, 2, -1],5))),2),-4)",
    "io_inp": [
      -5,
      2,
      1,
      2,
      -1
    ],
    "io_out": [
      8,
      -8,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(add_n(input,5))),2),-4)"
  },
  {
    "input": "input : list = [4, 3, -2, 5, -5, -5]\noutput : list = [-8, -8, -5, 0, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([4, 3, -2, 5, -5, -5])),3)",
    "io_inp": [
      4,
      3,
      -2,
      5,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -5,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [-5, -1, -4, -1, 3, 3]\noutput : list = [-56, -56, -24, -24, 0, 8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(sub_n([-5, -1, -4, -1, 3, 3],-4),2))),-4)",
    "io_inp": [
      -5,
      -1,
      -4,
      -1,
      3,
      3
    ],
    "io_out": [
      -56,
      -56,
      -24,
      -24,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(sub_n(input,-4),2))),-4)"
  },
  {
    "input": "input : list = [2, -5, 1, 1, 4]\noutput : list = [25, 1, 1, -3, -11]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(sort_des([2, -5, 1, 1, 4]),-4)),5),7)",
    "io_inp": [
      2,
      -5,
      1,
      1,
      4
    ],
    "io_out": [
      25,
      1,
      1,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(sort_des(input),-4)),5),7)"
  },
  {
    "input": "input : list = [-3, 3, 0, 0, 3]\noutput : list = [1, 1, 4, 4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(drop([-3, 3, 0, 0, 3],1)))),1)",
    "io_inp": [
      -3,
      3,
      0,
      0,
      3
    ],
    "io_out": [
      1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [-4, -3, 0, 3, -5]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = take([-4, -3, 0, 3, -5],3)",
    "io_inp": [
      -4,
      -3,
      0,
      3,
      -5
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, 0, -1, 3, -4]\noutput : list = [6, 3, 2, 2, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(add_n([-1, 0, -1, 3, -4],3)))))",
    "io_inp": [
      -1,
      0,
      -1,
      3,
      -4
    ],
    "io_out": [
      6,
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(add_n(input,3)))))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [0, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([2, -4])),2)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),2)"
  },
  {
    "input": "input : list = [-3, 4, 3, 0]\noutput : list = [13, 12, 9, 6]",
    "output": "generated_output : list = add_n(sub_n(add_n(add_n(sort_des([-3, 4, 3, 0]),3),3),-5),-2)",
    "io_inp": [
      -3,
      4,
      3,
      0
    ],
    "io_out": [
      13,
      12,
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(add_n(sort_des(input),3),3),-5),-2)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n([3, 5, 4],1)),1)",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,1)),1)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [20, -20]",
    "output": "generated_output : list = mul_n(sort_asc([5, -5]),-4)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-3, 1, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop([-3, 1, 2, 5],2)",
    "io_inp": [
      -3,
      1,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 5, -4, -4, 3, 4]\noutput : list = [-48, -36, 60]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(take([-3, 5, -4, -4, 3, 4],3)),-4),-3))",
    "io_inp": [
      -3,
      5,
      -4,
      -4,
      3,
      4
    ],
    "io_out": [
      -48,
      -36,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(take(input,3)),-4),-3))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sub_n(sort_asc([0, 0]),1)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-1, 4, 1, 5]\noutput : list = [10, 6, 9, 4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n(reverse([-1, 4, 1, 5]),1),-5),5),4)",
    "io_inp": [
      -1,
      4,
      1,
      5
    ],
    "io_out": [
      10,
      6,
      9,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(reverse(input),1),-5),5),4)"
  },
  {
    "input": "input : list = [2, 2, 3, 4, 3, -3]\noutput : list = [-3, 2, 2, 3, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(sort_asc([2, 2, 3, 4, 3, -3])),1)),1)",
    "io_inp": [
      2,
      2,
      3,
      4,
      3,
      -3
    ],
    "io_out": [
      -3,
      2,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(sort_asc(input)),1)),1)"
  },
  {
    "input": "input : list = [-2, 5, -2, 2, 5]\noutput : list = [3, 3, 0, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(sub_n([-2, 5, -2, 2, 5],-3)),5)))",
    "io_inp": [
      -2,
      5,
      -2,
      2,
      5
    ],
    "io_out": [
      3,
      3,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(sub_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [3, -4, 1, 5, 0, 1]\noutput : list = [8, 0, -2, -2]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_asc([3, -4, 1, 5, 0, 1])),4),1),-2)",
    "io_inp": [
      3,
      -4,
      1,
      5,
      0,
      1
    ],
    "io_out": [
      8,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_asc(input)),4),1),-2)"
  },
  {
    "input": "input : list = [-5, -2, 0, 1]\noutput : list = [0, 3, 5, 6]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n([-5, -2, 0, 1],5)),30))",
    "io_inp": [
      -5,
      -2,
      0,
      1
    ],
    "io_out": [
      0,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(input,5)),30))"
  },
  {
    "input": "input : list = [5, -5, 0, 5, -1]\noutput : list = [9, -1]",
    "output": "generated_output : list = add_n(take([5, -5, 0, 5, -1],2),4)",
    "io_inp": [
      5,
      -5,
      0,
      5,
      -1
    ],
    "io_out": [
      9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),4)"
  },
  {
    "input": "input : list = [-4, 5, -1, -4, -5, 3]\noutput : list = [7, 5, 1, -2, -2, -3]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc([-4, 5, -1, -4, -5, 3]),-3),2),-3))",
    "io_inp": [
      -4,
      5,
      -1,
      -4,
      -5,
      3
    ],
    "io_out": [
      7,
      5,
      1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc(input),-3),2),-3))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-21, -33]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(add_n([-1, -4],-5),4),-1),2),31)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -21,
      -33
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(add_n(input,-5),4),-1),2),31)"
  },
  {
    "input": "input : list = [5, 5, -2, 1, -2]\noutput : list = [0, 0, -4, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n([5, 5, -2, 1, -2],5))",
    "io_inp": [
      5,
      5,
      -2,
      1,
      -2
    ],
    "io_out": [
      0,
      0,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [-4, -4, -4, 2]\noutput : list = [-4, -4, -4, 2]",
    "output": "generated_output : list = sort_asc([-4, -4, -4, 2])",
    "io_inp": [
      -4,
      -4,
      -4,
      2
    ],
    "io_out": [
      -4,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, 0, 3, 0]\noutput : list = [2, 3, 3, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(add_n([5, -1, 0, 3, 0],3)),7)))",
    "io_inp": [
      5,
      -1,
      0,
      3,
      0
    ],
    "io_out": [
      2,
      3,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(add_n(input,3)),7)))"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [9, 9, -9]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(sort_asc([-3, 3, 3]),10),3)))",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      9,
      9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(sort_asc(input),10),3)))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [0, 6]",
    "output": "generated_output : list = sub_n([-2, 4],-2)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 1, 5, 2]\noutput : list = [-6, 3, 6]",
    "output": "generated_output : list = mul_n(take(take(reverse(sort_des([-2, 1, 5, 2])),6),3),3)",
    "io_inp": [
      -2,
      1,
      5,
      2
    ],
    "io_out": [
      -6,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(sort_des(input)),6),3),3)"
  },
  {
    "input": "input : list = [3, 4, -3, 1, 2]\noutput : list = [5, 4, 3, 2, -2]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(reverse([3, 4, -3, 1, 2]),1))),14)",
    "io_inp": [
      3,
      4,
      -3,
      1,
      2
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(reverse(input),1))),14)"
  },
  {
    "input": "input : list = [2, -4, -4, -2, -1]\noutput : list = [6, -3, -6, -12, -12]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([2, -4, -4, -2, -1]),3))",
    "io_inp": [
      2,
      -4,
      -4,
      -2,
      -1
    ],
    "io_out": [
      6,
      -3,
      -6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [3, -1, 5, -5]\noutput : list = [-6, -2, 2, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(sort_asc([3, -1, 5, -5]),2),-3)),18)",
    "io_inp": [
      3,
      -1,
      5,
      -5
    ],
    "io_out": [
      -6,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(sort_asc(input),2),-3)),18)"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [2, -5, 4]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(sub_n([2, -5, 4],-3),-2),-1),-3),1)",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      2,
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(sub_n(input,-3),-2),-1),-3),1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-10, -2]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(mul_n([-1, -2],2),1)),4),2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(mul_n(input,2),1)),4),2)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(take(take(sort_des([2, 1]),8),18)))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(sort_des(input),8),18)))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = add_n(add_n(reverse([1, 3]),-3),5)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),-3),5)"
  },
  {
    "input": "input : list = [2, 5, 4, 2, -3, -1]\noutput : list = [-1, 2, 1, -1, -6, -4]",
    "output": "generated_output : list = sub_n([2, 5, 4, 2, -3, -1],3)",
    "io_inp": [
      2,
      5,
      4,
      2,
      -3,
      -1
    ],
    "io_out": [
      -1,
      2,
      1,
      -1,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 0, -3, -1, 3]\noutput : list = [0, -3, -1, 3]",
    "output": "generated_output : list = drop([1, 0, -3, -1, 3],1)",
    "io_inp": [
      1,
      0,
      -3,
      -1,
      3
    ],
    "io_out": [
      0,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 4, 3, 3, 1]\noutput : list = [12, 14, 14, 15, 6]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(sub_n([-5, 4, 3, 3, 1],-3)),1),-5),2)",
    "io_inp": [
      -5,
      4,
      3,
      3,
      1
    ],
    "io_out": [
      12,
      14,
      14,
      15,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(sub_n(input,-3)),1),-5),2)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [9, 4]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(mul_n([2, 3],5),-2)),4),10)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(mul_n(input,5),-2)),4),10)"
  },
  {
    "input": "input : list = [1, 3, 5, -1, -1]\noutput : list = [2, 2, -2, -6, -10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sort_asc([1, 3, 5, -1, -1])))),-2)",
    "io_inp": [
      1,
      3,
      5,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [4, -3, 4]\noutput : list = [2, 2, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(sub_n([4, -3, 4],-1),-1))),-2)",
    "io_inp": [
      4,
      -3,
      4
    ],
    "io_out": [
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(sub_n(input,-1),-1))),-2)"
  },
  {
    "input": "input : list = [3, 5, 0, 5, -1]\noutput : list = [6, 7, 10, 12, 12]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sub_n([3, 5, 0, 5, -1],-5)),2)))",
    "io_inp": [
      3,
      5,
      0,
      5,
      -1
    ],
    "io_out": [
      6,
      7,
      10,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sub_n(input,-5)),2)))"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [5, 6, 8]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(add_n([5, 3, 2],-3),-1),-5)),25)",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(add_n(input,-3),-1),-5)),25)"
  },
  {
    "input": "input : list = [0, 4, 4, 5, 1]\noutput : list = [-3, -4, -4, -7, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(sub_n([0, 4, 4, 5, 1],4),4))))",
    "io_inp": [
      0,
      4,
      4,
      5,
      1
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(sub_n(input,4),4))))"
  },
  {
    "input": "input : list = [1, 1, 4, 5]\noutput : list = [32, 28, 16, 16]",
    "output": "generated_output : list = take(mul_n(take(reverse(sub_n([1, 1, 4, 5],-3)),24),4),34)",
    "io_inp": [
      1,
      1,
      4,
      5
    ],
    "io_out": [
      32,
      28,
      16,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(sub_n(input,-3)),24),4),34)"
  },
  {
    "input": "input : list = [0, -5, 2, 1, 2]\noutput : list = [3, -2, 5, 4, 5]",
    "output": "generated_output : list = sub_n([0, -5, 2, 1, 2],-3)",
    "io_inp": [
      0,
      -5,
      2,
      1,
      2
    ],
    "io_out": [
      3,
      -2,
      5,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -4, 5, 5, 0, 3]\noutput : list = [7, -17, 10, 10, -5, 4]",
    "output": "generated_output : list = add_n(mul_n([4, -4, 5, 5, 0, 3],3),-5)",
    "io_inp": [
      4,
      -4,
      5,
      5,
      0,
      3
    ],
    "io_out": [
      7,
      -17,
      10,
      10,
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),-5)"
  },
  {
    "input": "input : list = [5, 1, -1, -3, 4]\noutput : list = [60, 180, 300, 480, 540]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sub_n([5, 1, -1, -3, 4],-4),-3),-5),4))",
    "io_inp": [
      5,
      1,
      -1,
      -3,
      4
    ],
    "io_out": [
      60,
      180,
      300,
      480,
      540
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sub_n(input,-4),-3),-5),4))"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(drop([-5, -5, -4],1))",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [4, 4, 1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc([-1, -1, -4])),5))",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(input)),5))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [0, -30]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_des([-1, 5]),-5),5)))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      0,
      -30
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_des(input),-5),5)))"
  },
  {
    "input": "input : list = [3, 4, -3, -4]\noutput : list = [18, 10, -46, -38]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(mul_n([3, 4, -3, -4],-4)),-2),5),2)",
    "io_inp": [
      3,
      4,
      -3,
      -4
    ],
    "io_out": [
      18,
      10,
      -46,
      -38
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(mul_n(input,-4)),-2),5),2)"
  },
  {
    "input": "input : list = [5, 1, -1, 0]\noutput : list = [-1, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 1, -1, 0])",
    "io_inp": [
      5,
      1,
      -1,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, -1, -1, 3, -5]\noutput : list = [6]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(take([4, 5, -1, -1, 3, -5],1),4),3),5),38)",
    "io_inp": [
      4,
      5,
      -1,
      -1,
      3,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(take(input,1),4),3),5),38)"
  },
  {
    "input": "input : list = [-4, 4, 0, -2]\noutput : list = [-9, -1, -5, -7]",
    "output": "generated_output : list = sub_n([-4, 4, 0, -2],5)",
    "io_inp": [
      -4,
      4,
      0,
      -2
    ],
    "io_out": [
      -9,
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([-4, -5, 3])))",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [-8, -7, -5]",
    "output": "generated_output : list = add_n([-3, -2, 0],-5)",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      -8,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 0, 1, 4]\noutput : list = [4, 1, 0, -2]",
    "output": "generated_output : list = sort_des([-2, 0, 1, 4])",
    "io_inp": [
      -2,
      0,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 1, -1, 3, 5]\noutput : list = [10, 6, 6]",
    "output": "generated_output : list = sort_des(reverse(take(take(sub_n([1, 5, 1, -1, 3, 5],-5),26),3)))",
    "io_inp": [
      1,
      5,
      1,
      -1,
      3,
      5
    ],
    "io_out": [
      10,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sub_n(input,-5),26),3)))"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [-8, -5, -7]",
    "output": "generated_output : list = sub_n(add_n(reverse([1, 3, 0]),-3),5)",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      -8,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-3),5)"
  },
  {
    "input": "input : list = [-5, 4, -4, 5]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(take([-5, 4, -4, 5],2))",
    "io_inp": [
      -5,
      4,
      -4,
      5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-3, 4, -4, -5]\noutput : list = [8, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(take([-3, 4, -4, -5],2)))),-4)",
    "io_inp": [
      -3,
      4,
      -4,
      -5
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(take(input,2)))),-4)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [-4, 17, -10]",
    "output": "generated_output : list = sub_n(add_n(mul_n([-2, 5, -4],3),-2),-4)",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      -4,
      17,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,3),-2),-4)"
  },
  {
    "input": "input : list = [-3, 1, 5, -4, -1, -1]\noutput : list = [10, 6, 4, 4, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(take(take(sort_des([-3, 1, 5, -4, -1, -1]),29),8),5))",
    "io_inp": [
      -3,
      1,
      5,
      -4,
      -1,
      -1
    ],
    "io_out": [
      10,
      6,
      4,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(sort_des(input),29),8),5))"
  },
  {
    "input": "input : list = [-3, -5, -2, -5]\noutput : list = [40, 60, 100, 100]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(mul_n([-3, -5, -2, -5],5)),-4)))",
    "io_inp": [
      -3,
      -5,
      -2,
      -5
    ],
    "io_out": [
      40,
      60,
      100,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(mul_n(input,5)),-4)))"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [-10, -4, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_des(mul_n([4, 1, -1],3)),-3)),-4)",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      -10,
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_des(mul_n(input,3)),-3)),-4)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-32, -44]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sort_asc([-4, -1]),3),4),4))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -32,
      -44
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sort_asc(input),3),4),4))"
  },
  {
    "input": "input : list = [1, 4, 1, 3]\noutput : list = [-3, -1, -4, -1]",
    "output": "generated_output : list = mul_n(reverse([1, 4, 1, 3]),-1)",
    "io_inp": [
      1,
      4,
      1,
      3
    ],
    "io_out": [
      -3,
      -1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [5, -1, 2, 4, -4, -2]\noutput : list = [-9, -8, -6, -3, -2, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_des([5, -1, 2, 4, -4, -2]),4))),-1)",
    "io_inp": [
      5,
      -1,
      2,
      4,
      -4,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -6,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_des(input),4))),-1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(reverse([4, 4]),-2))))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [5, 2, 0, 2]\noutput : list = [5, 2, 2, 0]",
    "output": "generated_output : list = sort_des([5, 2, 0, 2])",
    "io_inp": [
      5,
      2,
      0,
      2
    ],
    "io_out": [
      5,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, -4, -5, 4]\noutput : list = [-2, -1, 4, 6, 7]",
    "output": "generated_output : list = reverse(sort_des(take(take(sub_n([3, 1, -4, -5, 4],-3),23),26)))",
    "io_inp": [
      3,
      1,
      -4,
      -5,
      4
    ],
    "io_out": [
      -2,
      -1,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(sub_n(input,-3),23),26)))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-1, -17]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(sub_n([2, -2],2),5),-4)),-3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -1,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(sub_n(input,2),5),-4)),-3)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(sub_n([3, 0],-1),12))))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(sub_n(input,-1),12))))"
  },
  {
    "input": "input : list = [5, -1, 2, 0]\noutput : list = [6, -6, 0, -4]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([5, -1, 2, 0],1),2),4)",
    "io_inp": [
      5,
      -1,
      2,
      0
    ],
    "io_out": [
      6,
      -6,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,1),2),4)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [3, 4, 4]",
    "output": "generated_output : list = sub_n([-2, -1, -1],-5)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -3, -3, 2, 1, -5]\noutput : list = [-29, -5, -1, -21, -21, -21]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(sub_n([-3, -3, -3, 2, 1, -5],1),21),4),5))",
    "io_inp": [
      -3,
      -3,
      -3,
      2,
      1,
      -5
    ],
    "io_out": [
      -29,
      -5,
      -1,
      -21,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(sub_n(input,1),21),4),5))"
  },
  {
    "input": "input : list = [-5, 2, 4, -5]\noutput : list = [-3, -3, 4, 6]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(sub_n([-5, 2, 4, -5],-2))),16))",
    "io_inp": [
      -5,
      2,
      4,
      -5
    ],
    "io_out": [
      -3,
      -3,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(sub_n(input,-2))),16))"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [5, 1, -2]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(sub_n([-5, -2, 2],-3)),18),-1),-1)",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(sub_n(input,-3)),18),-1),-1)"
  },
  {
    "input": "input : list = [-2, -1, -5, 4, 3, -5]\noutput : list = [-20, -8, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(take([-2, -1, -5, 4, 3, -5],3)),4)))",
    "io_inp": [
      -2,
      -1,
      -5,
      4,
      3,
      -5
    ],
    "io_out": [
      -20,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(take(input,3)),4)))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(sub_n([0, 1],4),9),2)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(sub_n(input,4),9),2)))"
  },
  {
    "input": "input : list = [5, 0, -3, 0, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(take(drop(sort_asc(sort_des([5, 0, -3, 0, 0])),3),5))",
    "io_inp": [
      5,
      0,
      -3,
      0,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(drop(sort_asc(sort_des(input)),3),5))"
  },
  {
    "input": "input : list = [-2, -5, 4, 1, -5]\noutput : list = [-5, -5, 1, 4]",
    "output": "generated_output : list = sort_asc(drop([-2, -5, 4, 1, -5],1))",
    "io_inp": [
      -2,
      -5,
      4,
      1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [1, -1, -3, 0, -3, 3]\noutput : list = [-5, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(take([1, -1, -3, 0, -3, 3],4),-3)),-1))",
    "io_inp": [
      1,
      -1,
      -3,
      0,
      -3,
      3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(take(input,4),-3)),-1))"
  },
  {
    "input": "input : list = [5, 1, 2, 0, -1, -4]\noutput : list = [-60, -24, -12, 0, 12, 48]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(mul_n([5, 1, 2, 0, -1, -4],3)),-4)))",
    "io_inp": [
      5,
      1,
      2,
      0,
      -1,
      -4
    ],
    "io_out": [
      -60,
      -24,
      -12,
      0,
      12,
      48
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(mul_n(input,3)),-4)))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(reverse([0, -5]),-1),-4),1))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(reverse(input),-1),-4),1))"
  },
  {
    "input": "input : list = [-3, 0, 1, -2, -4, -5]\noutput : list = [-8, -5, -4, -7]",
    "output": "generated_output : list = sub_n(take([-3, 0, 1, -2, -4, -5],4),5)",
    "io_inp": [
      -3,
      0,
      1,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,4),5)"
  },
  {
    "input": "input : list = [-2, -1, -2, 5, -3]\noutput : list = [-3, -2, -2, -1, 5]",
    "output": "generated_output : list = sort_asc([-2, -1, -2, 5, -3])",
    "io_inp": [
      -2,
      -1,
      -2,
      5,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5, 0, -1, 2]\noutput : list = [-1, -4, -3, -8, -7]",
    "output": "generated_output : list = add_n(reverse(take(take(add_n([-4, -5, 0, -1, 2],-1),14),21)),-2)",
    "io_inp": [
      -4,
      -5,
      0,
      -1,
      2
    ],
    "io_out": [
      -1,
      -4,
      -3,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(add_n(input,-1),14),21)),-2)"
  },
  {
    "input": "input : list = [-3, 2, -2]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc([-3, 2, -2]))",
    "io_inp": [
      -3,
      2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -2, -4, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(take([3, -2, -4, -2],2)),-3),2),-3)",
    "io_inp": [
      3,
      -2,
      -4,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(take(input,2)),-3),2),-3)"
  },
  {
    "input": "input : list = [-3, -5, 1, -3, 1]\noutput : list = [1, -3, 1, -5, -3]",
    "output": "generated_output : list = take(reverse(take(reverse(reverse([-3, -5, 1, -3, 1])),14)),47)",
    "io_inp": [
      -3,
      -5,
      1,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      1,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(reverse(input)),14)),47)"
  },
  {
    "input": "input : list = [2, 1, 3, -5, -1, 5]\noutput : list = [-10, -4, -3, -2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(take([2, 1, 3, -5, -1, 5],4),5))))",
    "io_inp": [
      2,
      1,
      3,
      -5,
      -1,
      5
    ],
    "io_out": [
      -10,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(take(input,4),5))))"
  },
  {
    "input": "input : list = [-1, 2, -3]\noutput : list = [-3, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, -3])",
    "io_inp": [
      -1,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2, -5, -1, -4, 4]\noutput : list = [0, -4, -7, -3, -6, 2]",
    "output": "generated_output : list = take(add_n([2, -2, -5, -1, -4, 4],-2),13)",
    "io_inp": [
      2,
      -2,
      -5,
      -1,
      -4,
      4
    ],
    "io_out": [
      0,
      -4,
      -7,
      -3,
      -6,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),13)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [2, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, 2])",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 2, 3, 3, -5, -1]\noutput : list = [6, -4, -6, -6, 10, 2]",
    "output": "generated_output : list = mul_n([-3, 2, 3, 3, -5, -1],-2)",
    "io_inp": [
      -3,
      2,
      3,
      3,
      -5,
      -1
    ],
    "io_out": [
      6,
      -4,
      -6,
      -6,
      10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(take([5, -1, 1],1)),-1)),22)",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(take(input,1)),-1)),22)"
  },
  {
    "input": "input : list = [-2, 0, 4, 3, 1, -3]\noutput : list = [-3, -2, 0, 1, 3, 4]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des([-2, 0, 4, 3, 1, -3]),7)),1)",
    "io_inp": [
      -2,
      0,
      4,
      3,
      1,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(input),7)),1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc([-5, -3])",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, 2, 2, -4, 3]\noutput : list = [-3, -3, -1, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n([-4, -2, 2, 2, -4, 3],3),4)))",
    "io_inp": [
      -4,
      -2,
      2,
      2,
      -4,
      3
    ],
    "io_out": [
      -3,
      -3,
      -1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(input,3),4)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [4, 6]",
    "output": "generated_output : list = reverse(take(take(sub_n([1, -1],-5),15),24))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(input,-5),15),24))"
  },
  {
    "input": "input : list = [3, 2, 0, -4]\noutput : list = [12, 8, 0, -16]",
    "output": "generated_output : list = sort_des(mul_n([3, 2, 0, -4],4))",
    "io_inp": [
      3,
      2,
      0,
      -4
    ],
    "io_out": [
      12,
      8,
      0,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [0, 25, 35]",
    "output": "generated_output : list = reverse(sort_des(mul_n(add_n(sort_des([0, 2, -5]),5),5)))",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      0,
      25,
      35
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(add_n(sort_des(input),5),5)))"
  },
  {
    "input": "input : list = [-4, 4, -2, 1, 2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(take([-4, 4, -2, 1, 2],1))",
    "io_inp": [
      -4,
      4,
      -2,
      1,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = drop([0, 1, 5],1)",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2, -2]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_asc([2, 2, -2])),-2)))",
    "io_inp": [
      2,
      2,
      -2
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [3, 1, -3, 3, -4]\noutput : list = [2, 2, 0, -4, -5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(reverse([3, 1, -3, 3, -4]),16)),1))",
    "io_inp": [
      3,
      1,
      -3,
      3,
      -4
    ],
    "io_out": [
      2,
      2,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(reverse(input),16)),1))"
  },
  {
    "input": "input : list = [4, 5, -4, -1]\noutput : list = [80, 64, -16, -64]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n([4, 5, -4, -1],4)),4))",
    "io_inp": [
      4,
      5,
      -4,
      -1
    ],
    "io_out": [
      80,
      64,
      -16,
      -64
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(input,4)),4))"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-5, 2, -3]",
    "output": "generated_output : list = add_n([-4, 3, -2],-1)",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -5, -4, 5]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(take([-2, -5, -4, 5],1),-3)),2))",
    "io_inp": [
      -2,
      -5,
      -4,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(take(input,1),-3)),2))"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [-5, 10, 45]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(add_n([2, -5, 5],-5),1),-5)))",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      -5,
      10,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(add_n(input,-5),1),-5)))"
  },
  {
    "input": "input : list = [3, -5, -2, 3]\noutput : list = [3]",
    "output": "generated_output : list = add_n(drop(take(sub_n(sub_n([3, -5, -2, 3],5),-2),30),3),3)",
    "io_inp": [
      3,
      -5,
      -2,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(take(sub_n(sub_n(input,5),-2),30),3),3)"
  },
  {
    "input": "input : list = [-1, -5, 0, 1, -5]\noutput : list = [-4, -5, -6, -10, -10]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n([-1, -5, 0, 1, -5],-5))))",
    "io_inp": [
      -1,
      -5,
      0,
      1,
      -5
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(input,-5))))"
  },
  {
    "input": "input : list = [-5, 1, -5, -5, 4, 5]\noutput : list = [16, -8, 16, 16, -20, -24]",
    "output": "generated_output : list = add_n(mul_n([-5, 1, -5, -5, 4, 5],-4),-4)",
    "io_inp": [
      -5,
      1,
      -5,
      -5,
      4,
      5
    ],
    "io_out": [
      16,
      -8,
      16,
      16,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),-4)"
  },
  {
    "input": "input : list = [2, -2, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take(drop([2, -2, -5, 5],2),4)",
    "io_inp": [
      2,
      -2,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,2),4)"
  },
  {
    "input": "input : list = [4, -4, 1, 4]\noutput : list = [9, -11, -23, -23]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n([4, -4, 1, 4],-1)),-4),3)",
    "io_inp": [
      4,
      -4,
      1,
      4
    ],
    "io_out": [
      9,
      -11,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(input,-1)),-4),3)"
  },
  {
    "input": "input : list = [-4, 4, -1, 0, -4]\noutput : list = [-14, -14, -11, -10, -6]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(add_n([-4, 4, -1, 0, -4],-4),1),4)),-3)",
    "io_inp": [
      -4,
      4,
      -1,
      0,
      -4
    ],
    "io_out": [
      -14,
      -14,
      -11,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(add_n(input,-4),1),4)),-3)"
  },
  {
    "input": "input : list = [-2, 1, 1, 0]\noutput : list = [-2, -1, -1, -4]",
    "output": "generated_output : list = reverse(take(add_n([-2, 1, 1, 0],-2),10))",
    "io_inp": [
      -2,
      1,
      1,
      0
    ],
    "io_out": [
      -2,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-2),10))"
  },
  {
    "input": "input : list = [3, 2, -3, 5, -4]\noutput : list = [-4, -3, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([3, 2, -3, 5, -4]))",
    "io_inp": [
      3,
      2,
      -3,
      5,
      -4
    ],
    "io_out": [
      -4,
      -3,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -5, 2, 5]\noutput : list = [-12, 30, -12, -30]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([2, -5, 2, 5],-1),-2),-3)",
    "io_inp": [
      2,
      -5,
      2,
      5
    ],
    "io_out": [
      -12,
      30,
      -12,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-1),-2),-3)"
  },
  {
    "input": "input : list = [-3, -1, 3, 2, 5]\noutput : list = [4, -8, -4, -20, -28]",
    "output": "generated_output : list = mul_n(reverse(add_n([-3, -1, 3, 2, 5],-4)),4)",
    "io_inp": [
      -3,
      -1,
      3,
      2,
      5
    ],
    "io_out": [
      4,
      -8,
      -4,
      -20,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-4)),4)"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [-5, -5, 2]",
    "output": "generated_output : list = reverse(reverse([-5, -5, 2]))",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      -5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, -1, -4, -5, 1]\noutput : list = [0, 6, 9]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(take([5, -1, -4, -5, 1],3),-1)),-5))",
    "io_inp": [
      5,
      -1,
      -4,
      -5,
      1
    ],
    "io_out": [
      0,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(take(input,3),-1)),-5))"
  },
  {
    "input": "input : list = [-3, -5, -4, 2, -3]\noutput : list = [5, 4, 3, -2]",
    "output": "generated_output : list = sort_des(drop(take(reverse(mul_n([-3, -5, -4, 2, -3],-1)),18),1))",
    "io_inp": [
      -3,
      -5,
      -4,
      2,
      -3
    ],
    "io_out": [
      5,
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(take(reverse(mul_n(input,-1)),18),1))"
  },
  {
    "input": "input : list = [-5, 4, -1, -3, -5, -4]\noutput : list = [-3, -4, -2, 0, 5, -4]",
    "output": "generated_output : list = take(reverse(add_n([-5, 4, -1, -3, -5, -4],1)),22)",
    "io_inp": [
      -5,
      4,
      -1,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -2,
      0,
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,1)),22)"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [2, 5, 2]",
    "output": "generated_output : list = reverse(take(add_n(take(sub_n([-3, 0, -3],-1),13),4),7))",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      2,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(sub_n(input,-1),13),4),7))"
  },
  {
    "input": "input : list = [-1, -4, 4, 4]\noutput : list = [2, -4, 12, 12]",
    "output": "generated_output : list = add_n(mul_n([-1, -4, 4, 4],2),4)",
    "io_inp": [
      -1,
      -4,
      4,
      4
    ],
    "io_out": [
      2,
      -4,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),4)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [3, 12]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(add_n([5, -4],4))),3))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(add_n(input,4))),3))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(reverse([-2, 0]),1),21)))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(reverse(input),1),21)))"
  },
  {
    "input": "input : list = [-5, -2, 0, -2]\noutput : list = [6, 3, 1, 3]",
    "output": "generated_output : list = take(mul_n(sub_n(take(add_n([-5, -2, 0, -2],4),10),5),-1),4)",
    "io_inp": [
      -5,
      -2,
      0,
      -2
    ],
    "io_out": [
      6,
      3,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(add_n(input,4),10),5),-1),4)"
  },
  {
    "input": "input : list = [0, 4, 1, -1, 4, -3]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = drop(sort_des([0, 4, 1, -1, 4, -3]),3)",
    "io_inp": [
      0,
      4,
      1,
      -1,
      4,
      -3
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),3)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [2, -7]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n(sub_n([4, -5],5),5),2),2),-4)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(sub_n(input,5),5),2),2),-4)"
  },
  {
    "input": "input : list = [1, -3, 2, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(take([1, -3, 2, -1],2),2),5)),3)",
    "io_inp": [
      1,
      -3,
      2,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(take(input,2),2),5)),3)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des([1, -4])))))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, -4, -3, 2]\noutput : list = [-7, -6, -6, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(add_n([-3, -4, -3, 2],-5)),-2),21))",
    "io_inp": [
      -3,
      -4,
      -3,
      2
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(add_n(input,-5)),-2),21))"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [4, 5, 5]",
    "output": "generated_output : list = take(sort_asc([5, 4, 5]),16)",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),16)"
  },
  {
    "input": "input : list = [5, -5, -2, -2]\noutput : list = [20, 8, 8, -20]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(reverse([5, -5, -2, -2])),14)),-4)",
    "io_inp": [
      5,
      -5,
      -2,
      -2
    ],
    "io_out": [
      20,
      8,
      8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(reverse(input)),14)),-4)"
  },
  {
    "input": "input : list = [0, 4, 4, -1, 4, -4]\noutput : list = [-4, 0, 0, -5, 0, -8]",
    "output": "generated_output : list = sub_n([0, 4, 4, -1, 4, -4],4)",
    "io_inp": [
      0,
      4,
      4,
      -1,
      4,
      -4
    ],
    "io_out": [
      -4,
      0,
      0,
      -5,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, 3, -3, 2]\noutput : list = [3, -2, 4]",
    "output": "generated_output : list = take(sub_n(reverse([-1, 3, -3, 2]),-1),3)",
    "io_inp": [
      -1,
      3,
      -3,
      2
    ],
    "io_out": [
      3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),-1),3)"
  },
  {
    "input": "input : list = [-5, -5, 1]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = sub_n(add_n([-5, -5, 1],1),-3)",
    "io_inp": [
      -5,
      -5,
      1
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),-3)"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = add_n([4, 4, -3],1)",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, -2, 2, 2]\noutput : list = [7, -20, -29, -29]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sub_n([1, -2, 2, 2],-1),3)),-3),-2)",
    "io_inp": [
      1,
      -2,
      2,
      2
    ],
    "io_out": [
      7,
      -20,
      -29,
      -29
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sub_n(input,-1),3)),-3),-2)"
  },
  {
    "input": "input : list = [4, 1, 0, -3, 2]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(take([4, 1, 0, -3, 2],1),2),2)),-1)",
    "io_inp": [
      4,
      1,
      0,
      -3,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(take(input,1),2),2)),-1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sub_n([2, 5],-3),-2)),3),-5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sub_n(input,-3),-2)),3),-5)"
  },
  {
    "input": "input : list = [2, 1, -2, -1, -1]\noutput : list = [1, -2, -8, -11]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(drop(reverse([2, 1, -2, -1, -1]),1)),-3),-5)",
    "io_inp": [
      2,
      1,
      -2,
      -1,
      -1
    ],
    "io_out": [
      1,
      -2,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(drop(reverse(input),1)),-3),-5)"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(reverse(drop([5, -2, -4],1)))",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-1, 3, -5, -1, 2, -3]\noutput : list = [-55, -35, 25, 25, 65, 105]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(mul_n([-1, 3, -5, -1, 2, -3],-5),6),4)),5)",
    "io_inp": [
      -1,
      3,
      -5,
      -1,
      2,
      -3
    ],
    "io_out": [
      -55,
      -35,
      25,
      25,
      65,
      105
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(mul_n(input,-5),6),4)),5)"
  },
  {
    "input": "input : list = [0, -2, 5, 0, 4]\noutput : list = [-4, -6, 1, -4, 0]",
    "output": "generated_output : list = take(add_n([0, -2, 5, 0, 4],-4),17)",
    "io_inp": [
      0,
      -2,
      5,
      0,
      4
    ],
    "io_out": [
      -4,
      -6,
      1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),17)"
  },
  {
    "input": "input : list = [-4, -5, -4, 3, -4, -1]\noutput : list = [-3, -2, -2, -2, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([-4, -5, -4, 3, -4, -1],1)),-3)",
    "io_inp": [
      -4,
      -5,
      -4,
      3,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,1)),-3)"
  },
  {
    "input": "input : list = [2, -4, -5, 1]\noutput : list = [0, -6, -5, 1]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(reverse([2, -4, -5, 1]),-3),-1),-3),10)",
    "io_inp": [
      2,
      -4,
      -5,
      1
    ],
    "io_out": [
      0,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(reverse(input),-3),-1),-3),10)"
  },
  {
    "input": "input : list = [-3, -1, -3, 1]\noutput : list = [0, 0, 2, 4]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(sub_n([-3, -1, -3, 1],-1)),24)),-2)",
    "io_inp": [
      -3,
      -1,
      -3,
      1
    ],
    "io_out": [
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(sub_n(input,-1)),24)),-2)"
  },
  {
    "input": "input : list = [2, 2, -1, -1]\noutput : list = [-2, -2, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(reverse([2, 2, -1, -1])))),1)",
    "io_inp": [
      2,
      2,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(reverse(input)))),1)"
  },
  {
    "input": "input : list = [5, 2, 2]\noutput : list = [5, 2, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([5, 2, 2])))",
    "io_inp": [
      5,
      2,
      2
    ],
    "io_out": [
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-2, 1, -1, -5, -3]\noutput : list = [1, 4, 2, -2, 0]",
    "output": "generated_output : list = add_n([-2, 1, -1, -5, -3],3)",
    "io_inp": [
      -2,
      1,
      -1,
      -5,
      -3
    ],
    "io_out": [
      1,
      4,
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 3, -4, 0]\noutput : list = [9, -15]",
    "output": "generated_output : list = drop(reverse(mul_n([-5, 3, -4, 0],3)),2)",
    "io_inp": [
      -5,
      3,
      -4,
      0
    ],
    "io_out": [
      9,
      -15
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(input,3)),2)"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [-2, 3, 7]",
    "output": "generated_output : list = sort_asc(sub_n([-4, 1, 5],-2))",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      -2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [3, 2, -5, 5, -3, 2]\noutput : list = [6, 4, 3, 3, -2, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([3, 2, -5, 5, -3, 2]),1),-1)",
    "io_inp": [
      3,
      2,
      -5,
      5,
      -3,
      2
    ],
    "io_out": [
      6,
      4,
      3,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),1),-1)"
  },
  {
    "input": "input : list = [-2, 0, 0, 2]\noutput : list = [1, -1, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n([-2, 0, 0, 2],1))",
    "io_inp": [
      -2,
      0,
      0,
      2
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,1))"
  },
  {
    "input": "input : list = [-2, -1, 0, 5, -5, -3]\noutput : list = [-6, -1, 0, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(reverse([-2, -1, 0, 5, -5, -3])),1),-1))",
    "io_inp": [
      -2,
      -1,
      0,
      5,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -1,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(reverse(input)),1),-1))"
  },
  {
    "input": "input : list = [-3, 4, 5, 2, -3, -1]\noutput : list = [-9, 5, 7, 1, -9, -5]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n([-3, 4, 5, 2, -3, -1],2),2),33),-1)",
    "io_inp": [
      -3,
      4,
      5,
      2,
      -3,
      -1
    ],
    "io_out": [
      -9,
      5,
      7,
      1,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(input,2),2),33),-1)"
  },
  {
    "input": "input : list = [4, 2, 2]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_asc([4, 2, 2]),-1),4)),-1)",
    "io_inp": [
      4,
      2,
      2
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_asc(input),-1),4)),-1)"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [-6, -8, -4]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(sub_n([4, 5, 3],1),-2)),5))",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      -6,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(sub_n(input,1),-2)),5))"
  },
  {
    "input": "input : list = [0, 3, 4, 4, 2, -5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take([0, 3, 4, 4, 2, -5],1),5)",
    "io_inp": [
      0,
      3,
      4,
      4,
      2,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(drop([-2, 0, 1],1)),-1)",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [-1, 4, -1, 5, -5]\noutput : list = [20, 16, -4, -4, -20]",
    "output": "generated_output : list = take(take(mul_n(take(sort_des([-1, 4, -1, 5, -5]),21),4),23),18)",
    "io_inp": [
      -1,
      4,
      -1,
      5,
      -5
    ],
    "io_out": [
      20,
      16,
      -4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(sort_des(input),21),4),23),18)"
  },
  {
    "input": "input : list = [0, 0, 0, -1, -5, -3]\noutput : list = [-3, -3, -3, -4]",
    "output": "generated_output : list = take(take(take(sub_n(sort_des([0, 0, 0, -1, -5, -3]),3),14),4),12)",
    "io_inp": [
      0,
      0,
      0,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(sort_des(input),3),14),4),12)"
  },
  {
    "input": "input : list = [-2, 2, 3, -2, -2, -1]\noutput : list = [84, 84, 84, 72, 36, 24]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(sort_des([-2, 2, 3, -2, -2, -1])),-5),4),-3)",
    "io_inp": [
      -2,
      2,
      3,
      -2,
      -2,
      -1
    ],
    "io_out": [
      84,
      84,
      84,
      72,
      36,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(sort_des(input)),-5),4),-3)"
  },
  {
    "input": "input : list = [4, -4, 1, -2, -3]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(take([4, -4, 1, -2, -3],3)))),36)",
    "io_inp": [
      4,
      -4,
      1,
      -2,
      -3
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(take(input,3)))),36)"
  },
  {
    "input": "input : list = [-4, 0, 4, -3, -4]\noutput : list = [4, 0, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-4, 0, 4, -3, -4])",
    "io_inp": [
      -4,
      0,
      4,
      -3,
      -4
    ],
    "io_out": [
      4,
      0,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, -4, 4]\noutput : list = [4, 0, -1, -4]",
    "output": "generated_output : list = take(sort_des(reverse([0, -1, -4, 4])),12)",
    "io_inp": [
      0,
      -1,
      -4,
      4
    ],
    "io_out": [
      4,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),12)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([3, -4])))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n([-3, -1],3))))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(input,3))))"
  },
  {
    "input": "input : list = [5, 0, 0, -3, 2]\noutput : list = [3, 0, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_des([5, 0, 0, -3, 2]),4),-2)))",
    "io_inp": [
      5,
      0,
      0,
      -3,
      2
    ],
    "io_out": [
      3,
      0,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_des(input),4),-2)))"
  },
  {
    "input": "input : list = [3, 4, 1, -5, 1]\noutput : list = [-5, 1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc([3, 4, 1, -5, 1])",
    "io_inp": [
      3,
      4,
      1,
      -5,
      1
    ],
    "io_out": [
      -5,
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, 4, 2, -1]\noutput : list = [5, 0, 4, 2, -1]",
    "output": "generated_output : list = reverse(reverse([5, 0, 4, 2, -1]))",
    "io_inp": [
      5,
      0,
      4,
      2,
      -1
    ],
    "io_out": [
      5,
      0,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, 2, 1, -4, -1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 2, 1, -4, -1],1)",
    "io_inp": [
      4,
      2,
      1,
      -4,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 0, 0, -5, 3]\noutput : list = [-20, 0, 0, -20, 12]",
    "output": "generated_output : list = reverse(mul_n(reverse([-5, 0, 0, -5, 3]),4))",
    "io_inp": [
      -5,
      0,
      0,
      -5,
      3
    ],
    "io_out": [
      -20,
      0,
      0,
      -20,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),4))"
  },
  {
    "input": "input : list = [-5, -2, 1, 4, -5, -5]\noutput : list = [4, 1, -2, -5, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -2, 1, 4, -5, -5])",
    "io_inp": [
      -5,
      -2,
      1,
      4,
      -5,
      -5
    ],
    "io_out": [
      4,
      1,
      -2,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4, 0, -2]\noutput : list = [-1, -2, 2, 0]",
    "output": "generated_output : list = add_n([-3, -4, 0, -2],2)",
    "io_inp": [
      -3,
      -4,
      0,
      -2
    ],
    "io_out": [
      -1,
      -2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [5, 3, 2, -2]\noutput : list = [21]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(reverse([5, 3, 2, -2]),2),3)),1)",
    "io_inp": [
      5,
      3,
      2,
      -2
    ],
    "io_out": [
      21
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(reverse(input),2),3)),1)"
  },
  {
    "input": "input : list = [-3, 1, -3, 2, -4]\noutput : list = [12, -4, 12, -8, 16]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(reverse([-3, 1, -3, 2, -4]),1),2),-2))",
    "io_inp": [
      -3,
      1,
      -3,
      2,
      -4
    ],
    "io_out": [
      12,
      -4,
      12,
      -8,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(reverse(input),1),2),-2))"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [-16, -8, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse([0, 2, 1])),-4),2)",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      -16,
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(input)),-4),2)"
  },
  {
    "input": "input : list = [4, 4, 3, -3]\noutput : list = [-3, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([4, 4, 3, -3])))",
    "io_inp": [
      4,
      4,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, 0, -2, 3, 3]\noutput : list = [3, 3, 0, -2, -4]",
    "output": "generated_output : list = sort_des([-4, 0, -2, 3, 3])",
    "io_inp": [
      -4,
      0,
      -2,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc([3, -1])",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, 2, -3]\noutput : list = [45, 30, -30, -60]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sort_des([4, -2, 2, -3]),-3),5)))",
    "io_inp": [
      4,
      -2,
      2,
      -3
    ],
    "io_out": [
      45,
      30,
      -30,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sort_des(input),-3),5)))"
  },
  {
    "input": "input : list = [-5, -5, 0, -1, -3, 0]\noutput : list = [12, 12, 6, 0, -3, -3]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(add_n([-5, -5, 0, -1, -3, 0],1)),-3)),33)",
    "io_inp": [
      -5,
      -5,
      0,
      -1,
      -3,
      0
    ],
    "io_out": [
      12,
      12,
      6,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(add_n(input,1)),-3)),33)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [3, 3, 4]",
    "output": "generated_output : list = reverse(take(take(sort_des(add_n([2, 3, 2],1)),18),26))",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(add_n(input,1)),18),26))"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [-5, 4, 1]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(reverse([4, -5, -2]),17)),-1),-1)",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(reverse(input),17)),-1),-1)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = sub_n(sort_des([2, 3]),-3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [5, -1, -4]\noutput : list = [5, -1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([5, -1, -4])))",
    "io_inp": [
      5,
      -1,
      -4
    ],
    "io_out": [
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [2, -3, -1, 1, 5, -4]\noutput : list = [19, 15, 7, -1, -5, -17]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(sub_n([2, -3, -1, 1, 5, -4],-1),2)),-4),-1)",
    "io_inp": [
      2,
      -3,
      -1,
      1,
      5,
      -4
    ],
    "io_out": [
      19,
      15,
      7,
      -1,
      -5,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(sub_n(input,-1),2)),-4),-1)"
  },
  {
    "input": "input : list = [0, -3, 3]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(take([0, -3, 3],1),5),-4)),2)",
    "io_inp": [
      0,
      -3,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(take(input,1),5),-4)),2)"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [4, 0, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(reverse([-1, -2, 3]))),1))",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [2, -3, 1, -2, 0, 3]\noutput : list = [-2, -4, -5, -7, -8]",
    "output": "generated_output : list = sort_des(add_n(drop([2, -3, 1, -2, 0, 3],1),-5))",
    "io_inp": [
      2,
      -3,
      1,
      -2,
      0,
      3
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),-5))"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(mul_n(drop(add_n(reverse([4, 3, -2]),1),1),-1))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(add_n(reverse(input),1),1),-1))"
  },
  {
    "input": "input : list = [4, 5, -4, -1, 2, -2]\noutput : list = [1, 3, 4, 7, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(sort_asc([4, 5, -4, -1, 2, -2]),23),5)))",
    "io_inp": [
      4,
      5,
      -4,
      -1,
      2,
      -2
    ],
    "io_out": [
      1,
      3,
      4,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(sort_asc(input),23),5)))"
  },
  {
    "input": "input : list = [-4, 1, 1, -3, -3, 3]\noutput : list = [4, -1, -1, 3, 3, -3]",
    "output": "generated_output : list = mul_n([-4, 1, 1, -3, -3, 3],-1)",
    "io_inp": [
      -4,
      1,
      1,
      -3,
      -3,
      3
    ],
    "io_out": [
      4,
      -1,
      -1,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -2, -5, -2, -2, 3]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(take(sort_des([-4, -2, -5, -2, -2, 3]),22),2)),2)",
    "io_inp": [
      -4,
      -2,
      -5,
      -2,
      -2,
      3
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(sort_des(input),22),2)),2)"
  },
  {
    "input": "input : list = [-4, -1, 4, 5]\noutput : list = [-16, -4, 16]",
    "output": "generated_output : list = take(mul_n([-4, -1, 4, 5],4),3)",
    "io_inp": [
      -4,
      -1,
      4,
      5
    ],
    "io_out": [
      -16,
      -4,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-25, 7]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(sort_asc([-3, 5]),8),-4)),-5)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -25,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(sort_asc(input),8),-4)),-5)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = add_n([-5, -1, 3],1)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des([3, 1]))))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [-1, 0, -4, 3, 3]\noutput : list = [-2, 4, 6, 12, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(sub_n([-1, 0, -4, 3, 3],-3),-1),-2),35))",
    "io_inp": [
      -1,
      0,
      -4,
      3,
      3
    ],
    "io_out": [
      -2,
      4,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(sub_n(input,-3),-1),-2),35))"
  },
  {
    "input": "input : list = [1, 5, 3, -5]\noutput : list = [3, 7, 5, -3]",
    "output": "generated_output : list = add_n(add_n(sub_n([1, 5, 3, -5],2),2),2)",
    "io_inp": [
      1,
      5,
      3,
      -5
    ],
    "io_out": [
      3,
      7,
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,2),2),2)"
  },
  {
    "input": "input : list = [-2, -4, 4, -1, -3, -3]\noutput : list = [-7, -9, -1, -6, -8, -8]",
    "output": "generated_output : list = sub_n([-2, -4, 4, -1, -3, -3],5)",
    "io_inp": [
      -2,
      -4,
      4,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -9,
      -1,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, 4, 1, -2, -4, 2]\noutput : list = [-20, 10]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop([-2, 4, 1, -2, -4, 2],4)),5)))",
    "io_inp": [
      -2,
      4,
      1,
      -2,
      -4,
      2
    ],
    "io_out": [
      -20,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop(input,4)),5)))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-2, 8]",
    "output": "generated_output : list = take(reverse(add_n(reverse([-5, 5]),3)),25)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -2,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(input),3)),25)"
  },
  {
    "input": "input : list = [-3, 1, 2, 2, 3]\noutput : list = [45, -15, -30, -30, -45]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-3, 1, 2, 2, 3],3),-5),1)",
    "io_inp": [
      -3,
      1,
      2,
      2,
      3
    ],
    "io_out": [
      45,
      -15,
      -30,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,3),-5),1)"
  },
  {
    "input": "input : list = [4, 5, 0, -3, -1, -2]\noutput : list = [-9, -8, -7, -6, -2, -1]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(add_n([4, 5, 0, -3, -1, -2],-5)),28),1))",
    "io_inp": [
      4,
      5,
      0,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(add_n(input,-5)),28),1))"
  },
  {
    "input": "input : list = [4, 1, 1, -1, 2]\noutput : list = [2, -1, 1, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 1, -1, 2])",
    "io_inp": [
      4,
      1,
      1,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, -4, 5]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(take([3, -2, -4, 5],1)),2)),-2)",
    "io_inp": [
      3,
      -2,
      -4,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(take(input,1)),2)),-2)"
  },
  {
    "input": "input : list = [-5, -1, 4]\noutput : list = [24, 8, -12]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(reverse([-5, -1, 4])),-4)),-4)",
    "io_inp": [
      -5,
      -1,
      4
    ],
    "io_out": [
      24,
      8,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(reverse(input)),-4)),-4)"
  },
  {
    "input": "input : list = [-1, 4, 4, -1, -5, 4]\noutput : list = [-4, -4, -9]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(take([-1, 4, 4, -1, -5, 4],3)),4)),-4)",
    "io_inp": [
      -1,
      4,
      4,
      -1,
      -5,
      4
    ],
    "io_out": [
      -4,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(take(input,3)),4)),-4)"
  },
  {
    "input": "input : list = [1, -4, -1, 1]\noutput : list = [1, 1, -1, -4]",
    "output": "generated_output : list = sort_des([1, -4, -1, 1])",
    "io_inp": [
      1,
      -4,
      -1,
      1
    ],
    "io_out": [
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [43, 43, 33]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(sort_asc([-2, -4, -4]),-2),3),-5),2)",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      43,
      43,
      33
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(sort_asc(input),-2),3),-5),2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n([4, 4],-3))))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(input,-3))))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n(mul_n([2, 2],-2),5)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),5)"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [96, 128, 320]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_des([1, 2, -5]),-5),-2),-4),-4)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      96,
      128,
      320
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_des(input),-5),-2),-4),-4)"
  },
  {
    "input": "input : list = [4, 5, 1, 2]\noutput : list = [-15, -20, -30, -35]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(add_n([4, 5, 1, 2],2)),-5)))",
    "io_inp": [
      4,
      5,
      1,
      2
    ],
    "io_out": [
      -15,
      -20,
      -30,
      -35
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(add_n(input,2)),-5)))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-4, 1]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc([-2, 3])),1),1),-1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc(input)),1),1),-1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(sort_des([0, 0]))),31))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(sort_des(input))),31))"
  },
  {
    "input": "input : list = [-4, 5, 4, 4, 4]\noutput : list = [4, 4, 4, 5]",
    "output": "generated_output : list = reverse(take(drop([-4, 5, 4, 4, 4],1),10))",
    "io_inp": [
      -4,
      5,
      4,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),10))"
  },
  {
    "input": "input : list = [-5, 0, 2, 5, -3]\noutput : list = [60]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(take([-5, 0, 2, 5, -3],1),4)),-3))",
    "io_inp": [
      -5,
      0,
      2,
      5,
      -3
    ],
    "io_out": [
      60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(take(input,1),4)),-3))"
  },
  {
    "input": "input : list = [5, -3, 5, 3, -1, -4]\noutput : list = [48, 36, 12, -36, -60, -60]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(sort_des([5, -3, 5, 3, -1, -4]),3)),-4),14)",
    "io_inp": [
      5,
      -3,
      5,
      3,
      -1,
      -4
    ],
    "io_out": [
      48,
      36,
      12,
      -36,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(sort_des(input),3)),-4),14)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(reverse(take(sort_des([0, -5]),15)))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(input),15)))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [45, 75]",
    "output": "generated_output : list = reverse(mul_n(take(take(mul_n([-5, -3],5),9),2),-3))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      45,
      75
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(mul_n(input,5),9),2),-3))"
  },
  {
    "input": "input : list = [-1, 1, -4, 4]\noutput : list = [1, 4, 6, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_des([-1, 1, -4, 4]),5),19)))",
    "io_inp": [
      -1,
      1,
      -4,
      4
    ],
    "io_out": [
      1,
      4,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_des(input),5),19)))"
  },
  {
    "input": "input : list = [-2, 3, 4]\noutput : list = [2, 7, 8]",
    "output": "generated_output : list = sub_n([-2, 3, 4],-4)",
    "io_inp": [
      -2,
      3,
      4
    ],
    "io_out": [
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [13, 7, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(mul_n([1, -3, 4],2)))),-5)",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      13,
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(mul_n(input,2)))),-5)"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = drop([4, -4, -4],1)",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 1, 3, 4, -5]\noutput : list = [-5, 4, 3, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 3, 4, -5])",
    "io_inp": [
      4,
      1,
      3,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-14, -11]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(reverse([2, -1])),5),4),-4)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -14,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(reverse(input)),5),4),-4)"
  },
  {
    "input": "input : list = [-5, 1, 2, -1, -1, -1]\noutput : list = [80, -16, -32, 16, 16, 16]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n([-5, 1, 2, -1, -1, -1],-4),-4),-1),38)",
    "io_inp": [
      -5,
      1,
      2,
      -1,
      -1,
      -1
    ],
    "io_out": [
      80,
      -16,
      -32,
      16,
      16,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(input,-4),-4),-1),38)"
  },
  {
    "input": "input : list = [-2, -3, -3, 5, 4, -1]\noutput : list = [-3, -3, -2, -1, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([-2, -3, -3, 5, 4, -1],3),3))",
    "io_inp": [
      -2,
      -3,
      -3,
      5,
      4,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,3),3))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(reverse(add_n(take(sort_asc([-5, -4]),1),3)),1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(sort_asc(input),1),3)),1)"
  },
  {
    "input": "input : list = [-1, -2, 3, 1, 4, -5]\noutput : list = [-4, -2, 2, 6, 8, 14]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_des([-1, -2, 3, 1, 4, -5]),1)),1),-2)",
    "io_inp": [
      -1,
      -2,
      3,
      1,
      4,
      -5
    ],
    "io_out": [
      -4,
      -2,
      2,
      6,
      8,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_des(input),1)),1),-2)"
  },
  {
    "input": "input : list = [3, 4, -4, 3, 1]\noutput : list = [-25, -20, -20, -10, 15]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sub_n([3, 4, -4, 3, 1],-2),2)),3),-5)",
    "io_inp": [
      3,
      4,
      -4,
      3,
      1
    ],
    "io_out": [
      -25,
      -20,
      -20,
      -10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sub_n(input,-2),2)),3),-5)"
  },
  {
    "input": "input : list = [3, 5, 0, 3]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n(take([3, 5, 0, 3],2),-5))),1)",
    "io_inp": [
      3,
      5,
      0,
      3
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(take(input,2),-5))),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-16, 12]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(sort_des([4, -3]),-4))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [1, -3, 0, 1]\noutput : list = [-1, -5, -2, -1]",
    "output": "generated_output : list = take(add_n([1, -3, 0, 1],-2),8)",
    "io_inp": [
      1,
      -3,
      0,
      1
    ],
    "io_out": [
      -1,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),8)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, -5, -1]\noutput : list = [-1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sub_n([-3, -2, -5, -1],-4))",
    "io_inp": [
      -3,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [1, 6]",
    "output": "generated_output : list = add_n([-2, 3],3)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, 3, 1, 4, -2]\noutput : list = [4, 3, 1, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(take(drop([-3, 3, 1, 4, -2],1),10),16)))",
    "io_inp": [
      -3,
      3,
      1,
      4,
      -2
    ],
    "io_out": [
      4,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(drop(input,1),10),16)))"
  },
  {
    "input": "input : list = [-1, -1, -1, 0]\noutput : list = [-4, -4, -3]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(drop([-1, -1, -1, 0],1))),-3))",
    "io_inp": [
      -1,
      -1,
      -1,
      0
    ],
    "io_out": [
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(drop(input,1))),-3))"
  },
  {
    "input": "input : list = [2, 4, -1, -1, 1, 1]\noutput : list = [2, 2, 0]",
    "output": "generated_output : list = add_n(add_n(reverse(drop([2, 4, -1, -1, 1, 1],3)),-1),2)",
    "io_inp": [
      2,
      4,
      -1,
      -1,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(drop(input,3)),-1),2)"
  },
  {
    "input": "input : list = [5, 0, 2, -5, -1, -3]\noutput : list = [1, 3, -1, 6, 4, 9]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(sub_n([5, 0, 2, -5, -1, -3],-3)))),-1)",
    "io_inp": [
      5,
      0,
      2,
      -5,
      -1,
      -3
    ],
    "io_out": [
      1,
      3,
      -1,
      6,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(sub_n(input,-3)))),-1)"
  },
  {
    "input": "input : list = [-5, 0, 5, 0, 5, 4]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(drop([-5, 0, 5, 0, 5, 4],3),4),-5)))",
    "io_inp": [
      -5,
      0,
      5,
      0,
      5,
      4
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(drop(input,3),4),-5)))"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = drop([-1, -1, -5],1)",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -3, -1, 1, -4, -5]\noutput : list = [7, 3]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(sort_des([5, -3, -1, 1, -4, -5]),-2),2)))",
    "io_inp": [
      5,
      -3,
      -1,
      1,
      -4,
      -5
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(sort_des(input),-2),2)))"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [1, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(reverse([5, 5, 1]),2),-1),-1))",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(reverse(input),2),-1),-1))"
  },
  {
    "input": "input : list = [5, -1, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(reverse(take(reverse([5, -1, -4]),1)),-3)",
    "io_inp": [
      5,
      -1,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(input),1)),-3)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des([3, -2])",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, -1, -3, -1, -5]\noutput : list = [-20, -14, -8, -8, 7, 7]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(mul_n([4, 4, -1, -3, -1, -5],3))),32),-5)",
    "io_inp": [
      4,
      4,
      -1,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -20,
      -14,
      -8,
      -8,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(mul_n(input,3))),32),-5)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc([0, 5, 4]),2),-2)),19)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc(input),2),-2)),19)"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [-1, -1, -4]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(reverse([-1, -4, -1])))),15)",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(reverse(input)))),15)"
  },
  {
    "input": "input : list = [2, 4, -3, -3, 2]\noutput : list = [10, 10, -5, -5, -11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(mul_n([2, 4, -3, -3, 2],1)),-3),-1))",
    "io_inp": [
      2,
      4,
      -3,
      -3,
      2
    ],
    "io_out": [
      10,
      10,
      -5,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(mul_n(input,1)),-3),-1))"
  },
  {
    "input": "input : list = [5, 1, 2]\noutput : list = [2, 3, 6]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des([5, 1, 2]))),-1),28)",
    "io_inp": [
      5,
      1,
      2
    ],
    "io_out": [
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des(input))),-1),28)"
  },
  {
    "input": "input : list = [-2, -2, 0]\noutput : list = [3, 1, 1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_des([-2, -2, 0])))),3)",
    "io_inp": [
      -2,
      -2,
      0
    ],
    "io_out": [
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [0, 5, -5, 5, 1, -4]\noutput : list = [16, 16, 0, -4, -20, -24]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(mul_n([0, 5, -5, 5, 1, -4],4),-1),-4),-1))",
    "io_inp": [
      0,
      5,
      -5,
      5,
      1,
      -4
    ],
    "io_out": [
      16,
      16,
      0,
      -4,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(mul_n(input,4),-1),-4),-1))"
  },
  {
    "input": "input : list = [-1, -4, 3, 4, 2]\noutput : list = [3, 4, 2]",
    "output": "generated_output : list = drop([-1, -4, 3, 4, 2],2)",
    "io_inp": [
      -1,
      -4,
      3,
      4,
      2
    ],
    "io_out": [
      3,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -2, -4, 4]\noutput : list = [2, 0, 8]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(drop([2, -2, -4, 4],1),-5),-3),26),4)",
    "io_inp": [
      2,
      -2,
      -4,
      4
    ],
    "io_out": [
      2,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(drop(input,1),-5),-3),26),4)"
  },
  {
    "input": "input : list = [4, 0, 5, 5, -3, -4]\noutput : list = [-6, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(drop([4, 0, 5, 5, -3, -4],4)),3))",
    "io_inp": [
      4,
      0,
      5,
      5,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(drop(input,4)),3))"
  },
  {
    "input": "input : list = [-2, 0, 5, -4, 0, 1]\noutput : list = [-20, -12, -4, -4, 0, 16]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(mul_n([-2, 0, 5, -4, 0, 1],4),-4))),52)",
    "io_inp": [
      -2,
      0,
      5,
      -4,
      0,
      1
    ],
    "io_out": [
      -20,
      -12,
      -4,
      -4,
      0,
      16
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(mul_n(input,4),-4))),52)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-1, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(mul_n([-4, -5],2),5)),-2))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(mul_n(input,2),5)),-2))"
  },
  {
    "input": "input : list = [1, 1, -2, -5, 3]\noutput : list = [10, 10, 7, 4, 12]",
    "output": "generated_output : list = add_n(sub_n([1, 1, -2, -5, 3],-5),4)",
    "io_inp": [
      1,
      1,
      -2,
      -5,
      3
    ],
    "io_out": [
      10,
      10,
      7,
      4,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),4)"
  },
  {
    "input": "input : list = [-3, 1, -5, 1, 2]\noutput : list = [3, 2, 2, -2, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(sort_des([-3, 1, -5, 1, 2]),-2))),-1)",
    "io_inp": [
      -3,
      1,
      -5,
      1,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(sort_des(input),-2))),-1)"
  },
  {
    "input": "input : list = [5, -3, 2, -1, 0, 2]\noutput : list = [7, 4, 4, 2, 1, -1]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des([5, -3, 2, -1, 0, 2]),-2)),19)",
    "io_inp": [
      5,
      -3,
      2,
      -1,
      0,
      2
    ],
    "io_out": [
      7,
      4,
      4,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(input),-2)),19)"
  },
  {
    "input": "input : list = [-5, 5, 2, -5, 4, 5]\noutput : list = [9, 9, 8, 6, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(add_n([-5, 5, 2, -5, 4, 5],4)))))",
    "io_inp": [
      -5,
      5,
      2,
      -5,
      4,
      5
    ],
    "io_out": [
      9,
      9,
      8,
      6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(add_n(input,4)))))"
  },
  {
    "input": "input : list = [-3, -5, -4, -1]\noutput : list = [-65, -115, -90, -15]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n([-3, -5, -4, -1],-5),-2),10),-5)",
    "io_inp": [
      -3,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -65,
      -115,
      -90,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(input,-5),-2),10),-5)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = reverse(sort_asc([5, -5]))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [-20]",
    "output": "generated_output : list = sort_des(drop(sort_des(mul_n([2, 2, -5],4)),2))",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(mul_n(input,4)),2))"
  },
  {
    "input": "input : list = [-2, 0, -5, -4, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(take([-2, 0, -5, -4, 1],2))),4),1)",
    "io_inp": [
      -2,
      0,
      -5,
      -4,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(take(input,2))),4),1)"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 1])",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sub_n([-2, -4, -2],1),3)),-1))",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sub_n(input,1),3)),-1))"
  },
  {
    "input": "input : list = [-4, 1, 1, -2, -2, 3]\noutput : list = [-3, -3, -6, -6, -8]",
    "output": "generated_output : list = sort_des(take(add_n([-4, 1, 1, -2, -2, 3],-4),5))",
    "io_inp": [
      -4,
      1,
      1,
      -2,
      -2,
      3
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,-4),5))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [2, 10]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_des([3, -5])),4),-4),1)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      2,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_des(input)),4),-4),1)"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [-6, 0, 2]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(add_n([2, -4, 4],-3),1)),26))",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      -6,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(add_n(input,-3),1)),26))"
  },
  {
    "input": "input : list = [1, -3, -2, -3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(drop(sub_n(sort_asc(reverse([1, -3, -2, -3])),-3),3))",
    "io_inp": [
      1,
      -3,
      -2,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(sort_asc(reverse(input)),-3),3))"
  },
  {
    "input": "input : list = [5, -2, -3]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take(take([5, -2, -3],1),15),4)",
    "io_inp": [
      5,
      -2,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),15),4)"
  },
  {
    "input": "input : list = [-1, 3, 1, 1, 4]\noutput : list = [-1, 1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc([-1, 3, 1, 1, 4])",
    "io_inp": [
      -1,
      3,
      1,
      1,
      4
    ],
    "io_out": [
      -1,
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -5, 2, -4, 2, -5]\noutput : list = [-9, 12, -6, 12, -9, 15]",
    "output": "generated_output : list = mul_n(reverse(take(take(sub_n([3, -5, 2, -4, 2, -5],-2),9),25)),3)",
    "io_inp": [
      3,
      -5,
      2,
      -4,
      2,
      -5
    ],
    "io_out": [
      -9,
      12,
      -6,
      12,
      -9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(sub_n(input,-2),9),25)),3)"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [9, 7, -3]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(mul_n([-1, 4, 5],2),-1))))",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      9,
      7,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(mul_n(input,2),-1))))"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [2]",
    "output": "generated_output : list = take(add_n(sort_des(take([0, 4, -1],1)),2),5)",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(input,1)),2),5)"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [-2, 1, 5]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(sort_asc([2, -2, -5]),-1),1),4),1)",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(sort_asc(input),-1),1),4),1)"
  },
  {
    "input": "input : list = [3, 4, -1, 1]\noutput : list = [-1, 1, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(sort_des([3, 4, -1, 1]),-2))),-2)",
    "io_inp": [
      3,
      4,
      -1,
      1
    ],
    "io_out": [
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(sort_des(input),-2))),-2)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 16]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc([1, 4])),4),12)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(input)),4),12)"
  },
  {
    "input": "input : list = [-3, 4, 0, -3, -2]\noutput : list = [-6, 1, -3, -6, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(reverse([-3, 4, 0, -3, -2])))),-3)",
    "io_inp": [
      -3,
      4,
      0,
      -3,
      -2
    ],
    "io_out": [
      -6,
      1,
      -3,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [21, -3, -6]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n([-5, 3, 4],1),-3),2)),1)",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      21,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n(input,1),-3),2)),1)"
  },
  {
    "input": "input : list = [1, 5, -1, 1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(take([1, 5, -1, 1],1),-2),4)))",
    "io_inp": [
      1,
      5,
      -1,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(take(input,1),-2),4)))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse([-3, 2]),-3)),3)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(input),-3)),3)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sort_des([0, 1]))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, 2, -3, 0]\noutput : list = [-6, -3, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(sort_asc([4, 2, -3, 0]),-3))))",
    "io_inp": [
      4,
      2,
      -3,
      0
    ],
    "io_out": [
      -6,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [-3, 2, 4, -2]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-3, 2, 4, -2],1)))",
    "io_inp": [
      -3,
      2,
      4,
      -2
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [3, 2, 3]\noutput : list = [14, 14, 10]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse([3, 2, 3]),4)),-2)",
    "io_inp": [
      3,
      2,
      3
    ],
    "io_out": [
      14,
      14,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(input),4)),-2)"
  },
  {
    "input": "input : list = [-1, 3, 0, 3, 2, -1]\noutput : list = [3, 3, 2, 0, -1, -1]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc([-1, 3, 0, 3, 2, -1]),14)))",
    "io_inp": [
      -1,
      3,
      0,
      3,
      2,
      -1
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(input),14)))"
  },
  {
    "input": "input : list = [4, -3, -3, -5, 2]\noutput : list = [-3, -1, -1, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(sort_asc([4, -3, -3, -5, 2]),5))),2)",
    "io_inp": [
      4,
      -3,
      -3,
      -5,
      2
    ],
    "io_out": [
      -3,
      -1,
      -1,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(sort_asc(input),5))),2)"
  },
  {
    "input": "input : list = [1, 0, 2, 4]\noutput : list = [6, 5, 7, 9]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(reverse([1, 0, 2, 4]),-4)),26),-1)",
    "io_inp": [
      1,
      0,
      2,
      4
    ],
    "io_out": [
      6,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(reverse(input),-4)),26),-1)"
  },
  {
    "input": "input : list = [-5, 4, 2, 5, 1]\noutput : list = [-2, 7, 5, 8, 4]",
    "output": "generated_output : list = add_n([-5, 4, 2, 5, 1],3)",
    "io_inp": [
      -5,
      4,
      2,
      5,
      1
    ],
    "io_out": [
      -2,
      7,
      5,
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, 5, -2, -5]\noutput : list = [0, 20, -8, -20]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n(sub_n([0, 5, -2, -5],-1),1),-1),34),4)",
    "io_inp": [
      0,
      5,
      -2,
      -5
    ],
    "io_out": [
      0,
      20,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(sub_n(input,-1),1),-1),34),4)"
  },
  {
    "input": "input : list = [0, -1, -4, 0, -3, -2]\noutput : list = [0, 0, -1, -2, -3, -4]",
    "output": "generated_output : list = sort_des([0, -1, -4, 0, -3, -2])",
    "io_inp": [
      0,
      -1,
      -4,
      0,
      -3,
      -2
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, 2, -3]\noutput : list = [0, -2, -7, -9]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_asc([-5, 4, 2, -3]))),-1),-3)",
    "io_inp": [
      -5,
      4,
      2,
      -3
    ],
    "io_out": [
      0,
      -2,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_asc(input))),-1),-3)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(take(sub_n([-1, 2],3),11))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,3),11))"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [-16, -8, 0]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(sort_asc([4, 2, 0]),11),16),-4))",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      -16,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(sort_asc(input),11),16),-4))"
  },
  {
    "input": "input : list = [-2, 0, -5, -1, 2, 0]\noutput : list = [0, 6, -3, -15, 0, -6]",
    "output": "generated_output : list = mul_n(reverse([-2, 0, -5, -1, 2, 0]),3)",
    "io_inp": [
      -2,
      0,
      -5,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      6,
      -3,
      -15,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [0, -2, 0, 1, -3]\noutput : list = [-8, -10]",
    "output": "generated_output : list = sort_des(add_n(add_n(take([0, -2, 0, 1, -3],2),-3),-5))",
    "io_inp": [
      0,
      -2,
      0,
      1,
      -3
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(input,2),-3),-5))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-2, -16]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(sub_n([-4, 3],-5))),-2))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -2,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(sub_n(input,-5))),-2))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [2, 12]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(sub_n([1, -4],5),3),-2),5),-2)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      2,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(sub_n(input,5),3),-2),5),-2)"
  },
  {
    "input": "input : list = [-4, 3, 4]\noutput : list = [10]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(take([-4, 3, 4],1),1)),-3),-2)",
    "io_inp": [
      -4,
      3,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(take(input,1),1)),-3),-2)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = add_n([1, -3, -5],2)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, -5, -5]\noutput : list = [-5, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, -5])",
    "io_inp": [
      2,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 0, 3, -5, -4, 2]\noutput : list = [-9, 9]",
    "output": "generated_output : list = add_n(mul_n(sort_des(drop([4, 0, 3, -5, -4, 2],4)),-3),-3)",
    "io_inp": [
      4,
      0,
      3,
      -5,
      -4,
      2
    ],
    "io_out": [
      -9,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(drop(input,4)),-3),-3)"
  },
  {
    "input": "input : list = [-1, -2, -3, -4, -3, -4]\noutput : list = [9, 9, 12, 12]",
    "output": "generated_output : list = mul_n(sort_des(drop(reverse(sort_asc([-1, -2, -3, -4, -3, -4])),2)),-3)",
    "io_inp": [
      -1,
      -2,
      -3,
      -4,
      -3,
      -4
    ],
    "io_out": [
      9,
      9,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(reverse(sort_asc(input)),2)),-3)"
  },
  {
    "input": "input : list = [5, 2, 0, 1, 5, 2]\noutput : list = [3, 0, -3, -3, -12, -12]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(sub_n([5, 2, 0, 1, 5, 2],3)),-3),-4),-2)",
    "io_inp": [
      5,
      2,
      0,
      1,
      5,
      2
    ],
    "io_out": [
      3,
      0,
      -3,
      -3,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(sub_n(input,3)),-3),-4),-2)"
  },
  {
    "input": "input : list = [0, 4, 3, -1]\noutput : list = [4, 3, 0, -1]",
    "output": "generated_output : list = take(sort_des([0, 4, 3, -1]),10)",
    "io_inp": [
      0,
      4,
      3,
      -1
    ],
    "io_out": [
      4,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),10)"
  },
  {
    "input": "input : list = [-1, 0, 0, 1, 0, -5]\noutput : list = [0, -1, -1, -1, -2, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(reverse([-1, 0, 0, 1, 0, -5]),2)),1))",
    "io_inp": [
      -1,
      0,
      0,
      1,
      0,
      -5
    ],
    "io_out": [
      0,
      -1,
      -1,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(reverse(input),2)),1))"
  },
  {
    "input": "input : list = [0, 2, 5]\noutput : list = [-20, -8, 0]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc(sort_asc([0, 2, 5]))),-4),22)",
    "io_inp": [
      0,
      2,
      5
    ],
    "io_out": [
      -20,
      -8,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(sort_asc(input))),-4),22)"
  },
  {
    "input": "input : list = [-1, 2, 1, 2]\noutput : list = [11, 11]",
    "output": "generated_output : list = drop(add_n(mul_n(sort_asc(sort_des([-1, 2, 1, 2])),4),3),2)",
    "io_inp": [
      -1,
      2,
      1,
      2
    ],
    "io_out": [
      11,
      11
    ],
    "output_masked": "generated_output : list = drop(add_n(mul_n(sort_asc(sort_des(input)),4),3),2)"
  },
  {
    "input": "input : list = [-2, -5, -3, -2, 4]\noutput : list = [4, -2, -2, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(sort_asc([-2, -5, -3, -2, 4])))))",
    "io_inp": [
      -2,
      -5,
      -3,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, 2, 1, 0, -5, 0]\noutput : list = [-29, -29, -25, -21, -21, -1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(add_n([2, 2, 1, 0, -5, 0],5),4),-1)),-1)",
    "io_inp": [
      2,
      2,
      1,
      0,
      -5,
      0
    ],
    "io_out": [
      -29,
      -29,
      -25,
      -21,
      -21,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(add_n(input,5),4),-1)),-1)"
  },
  {
    "input": "input : list = [-5, 3, 0, 0, -4]\noutput : list = [-5, -4, 0, 0, 3]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(add_n([-5, 3, 0, 0, -4],3),1),15)),-3)",
    "io_inp": [
      -5,
      3,
      0,
      0,
      -4
    ],
    "io_out": [
      -5,
      -4,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(add_n(input,3),1),15)),-3)"
  },
  {
    "input": "input : list = [1, -5, -4, -4]\noutput : list = [-5, -4, -4, 1]",
    "output": "generated_output : list = take(sort_asc([1, -5, -4, -4]),18)",
    "io_inp": [
      1,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),18)"
  },
  {
    "input": "input : list = [-4, 3, 2, 1, 0, 3]\noutput : list = [-11, -14, -13, -12, -11, -18]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(add_n([-4, 3, 2, 1, 0, 3],1),-5)),5),5)",
    "io_inp": [
      -4,
      3,
      2,
      1,
      0,
      3
    ],
    "io_out": [
      -11,
      -14,
      -13,
      -12,
      -11,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(add_n(input,1),-5)),5),5)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des([1, -3])",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [21, 21, 6]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n([1, -4, -4],3),-3)),7)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      21,
      21,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(input,3),-3)),7)"
  },
  {
    "input": "input : list = [-5, -4, 2, 4]\noutput : list = [8, 4, -8, -10]",
    "output": "generated_output : list = take(mul_n(sort_des([-5, -4, 2, 4]),2),20)",
    "io_inp": [
      -5,
      -4,
      2,
      4
    ],
    "io_out": [
      8,
      4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),2),20)"
  },
  {
    "input": "input : list = [4, -2, -3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(drop([4, -2, -3, -3],2)))),-3)",
    "io_inp": [
      4,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(drop(input,2)))),-3)"
  },
  {
    "input": "input : list = [-1, 0, 2, 2, 2, -2]\noutput : list = [6, 6, 6, 4, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des([-1, 0, 2, 2, 2, -2])),4)",
    "io_inp": [
      -1,
      0,
      2,
      2,
      2,
      -2
    ],
    "io_out": [
      6,
      6,
      6,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [5, 4, -3, 2, 4]\noutput : list = [-15, -12, 9, -6, -12]",
    "output": "generated_output : list = mul_n([5, 4, -3, 2, 4],-3)",
    "io_inp": [
      5,
      4,
      -3,
      2,
      4
    ],
    "io_out": [
      -15,
      -12,
      9,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, 1, -1, 2]\noutput : list = [-1, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([5, 1, -1, 2])",
    "io_inp": [
      5,
      1,
      -1,
      2
    ],
    "io_out": [
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, -1, -2, 3]\noutput : list = [-60, 40, 20, 40, -60]",
    "output": "generated_output : list = reverse(mul_n(take(take(mul_n([3, -2, -1, -2, 3],-5),25),24),4))",
    "io_inp": [
      3,
      -2,
      -1,
      -2,
      3
    ],
    "io_out": [
      -60,
      40,
      20,
      40,
      -60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(mul_n(input,-5),25),24),4))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [7, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(take(add_n([4, -5],3),3))),35)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(add_n(input,3),3))),35)"
  },
  {
    "input": "input : list = [-5, 3, -3, -5]\noutput : list = [-5, -5, -3, 3]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(add_n([-5, 3, -3, -5],-2)),21)),2)",
    "io_inp": [
      -5,
      3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(add_n(input,-2)),21)),2)"
  },
  {
    "input": "input : list = [-2, 5, 2, -5, 1]\noutput : list = [-11, -8, -5, -4, -1]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(add_n([-2, 5, 2, -5, 1],-3)),-3),29))",
    "io_inp": [
      -2,
      5,
      2,
      -5,
      1
    ],
    "io_out": [
      -11,
      -8,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(add_n(input,-3)),-3),29))"
  },
  {
    "input": "input : list = [3, 5, 4, -1, -1, 3]\noutput : list = [-9, -15, -12, 3, 3, -9]",
    "output": "generated_output : list = mul_n([3, 5, 4, -1, -1, 3],-3)",
    "io_inp": [
      3,
      5,
      4,
      -1,
      -1,
      3
    ],
    "io_out": [
      -9,
      -15,
      -12,
      3,
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, 4, -2, 3, -4]\noutput : list = [20, 20]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(take([4, 4, -2, 3, -4],2),5)),-2),-2)",
    "io_inp": [
      4,
      4,
      -2,
      3,
      -4
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(take(input,2),5)),-2),-2)"
  },
  {
    "input": "input : list = [-5, 3, 2, 4]\noutput : list = [12]",
    "output": "generated_output : list = sort_asc(drop(take(mul_n(drop([-5, 3, 2, 4],1),3),28),2))",
    "io_inp": [
      -5,
      3,
      2,
      4
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_asc(drop(take(mul_n(drop(input,1),3),28),2))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-9, -7]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(sub_n([-4, -2],1))),-4),45)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(sub_n(input,1))),-4),45)"
  },
  {
    "input": "input : list = [-1, -4, -2, 2, -3]\noutput : list = [5, 0, -20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(drop([-1, -4, -2, 2, -3],2),-2),-5)))",
    "io_inp": [
      -1,
      -4,
      -2,
      2,
      -3
    ],
    "io_out": [
      5,
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(drop(input,2),-2),-5)))"
  },
  {
    "input": "input : list = [4, -3, 2, -4]\noutput : list = [-1, -8, -3, -9]",
    "output": "generated_output : list = sub_n([4, -3, 2, -4],5)",
    "io_inp": [
      4,
      -3,
      2,
      -4
    ],
    "io_out": [
      -1,
      -8,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, 3, -1, 5, 0]\noutput : list = [21, -6, -15, -42, -60]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_asc([-4, 3, -1, 5, 0]),3),4),-1),-3)",
    "io_inp": [
      -4,
      3,
      -1,
      5,
      0
    ],
    "io_out": [
      21,
      -6,
      -15,
      -42,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_asc(input),3),4),-1),-3)"
  },
  {
    "input": "input : list = [4, 4, -1, 5]\noutput : list = [-4, -10]",
    "output": "generated_output : list = take(mul_n(sub_n(take(drop([4, 4, -1, 5],2),17),-5),-1),32)",
    "io_inp": [
      4,
      4,
      -1,
      5
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(drop(input,2),17),-5),-1),32)"
  },
  {
    "input": "input : list = [3, -2, 4, 3]\noutput : list = [-15, 10, -20, -15]",
    "output": "generated_output : list = mul_n([3, -2, 4, 3],-5)",
    "io_inp": [
      3,
      -2,
      4,
      3
    ],
    "io_out": [
      -15,
      10,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -2, -1, -1, -2]\noutput : list = [-2, -2, -1, -1, -1]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc([-1, -2, -1, -1, -2])))))",
    "io_inp": [
      -1,
      -2,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, 0, -3]\noutput : list = [5, 1, 7]",
    "output": "generated_output : list = add_n(mul_n([-2, 0, -3],-2),1)",
    "io_inp": [
      -2,
      0,
      -3
    ],
    "io_out": [
      5,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),1)"
  },
  {
    "input": "input : list = [-5, -1, 1, 5, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -1, 1, 5, 1],1)",
    "io_inp": [
      -5,
      -1,
      1,
      5,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 1, -4, -4, 2]\noutput : list = [10, 6, 1, 1, 7]",
    "output": "generated_output : list = sub_n([5, 1, -4, -4, 2],-5)",
    "io_inp": [
      5,
      1,
      -4,
      -4,
      2
    ],
    "io_out": [
      10,
      6,
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-80, 0]",
    "output": "generated_output : list = reverse(mul_n(mul_n([0, 4],4),-5))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -80,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,4),-5))"
  },
  {
    "input": "input : list = [-5, 2, -2, 4, 0, 5]\noutput : list = [20, -10, -30, -50, -70, -80]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(add_n([-5, 2, -2, 4, 0, 5],1)),2),-4),-5)",
    "io_inp": [
      -5,
      2,
      -2,
      4,
      0,
      5
    ],
    "io_out": [
      20,
      -10,
      -30,
      -50,
      -70,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(add_n(input,1)),2),-4),-5)"
  },
  {
    "input": "input : list = [3, -3, -4, 3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(take([3, -3, -4, 3],1),-1),14),29))",
    "io_inp": [
      3,
      -3,
      -4,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(take(input,1),-1),14),29))"
  },
  {
    "input": "input : list = [-4, -4, -5, 4, 1, -5]\noutput : list = [-4, -4, -5, 4, 1, -5]",
    "output": "generated_output : list = take(take(mul_n([-4, -4, -5, 4, 1, -5],1),27),27)",
    "io_inp": [
      -4,
      -4,
      -5,
      4,
      1,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -5,
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,1),27),27)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [8, 10]",
    "output": "generated_output : list = sub_n(reverse(take(reverse([3, 5]),6)),-5)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(input),6)),-5)"
  },
  {
    "input": "input : list = [-5, -4, 3, 0]\noutput : list = [-6, -5, 2, -1]",
    "output": "generated_output : list = sub_n(add_n([-5, -4, 3, 0],1),2)",
    "io_inp": [
      -5,
      -4,
      3,
      0
    ],
    "io_out": [
      -6,
      -5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),2)"
  },
  {
    "input": "input : list = [5, 1, -2, -3, -5]\noutput : list = [-11, -7, -5, 1, 9]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(mul_n([5, 1, -2, -3, -5],2),1))),1)",
    "io_inp": [
      5,
      1,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -11,
      -7,
      -5,
      1,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(mul_n(input,2),1))),1)"
  },
  {
    "input": "input : list = [5, -5, -3, -4, -4]\noutput : list = [6, -2, -3, -3, -4]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(reverse([5, -5, -3, -4, -4]))),1))",
    "io_inp": [
      5,
      -5,
      -3,
      -4,
      -4
    ],
    "io_out": [
      6,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = reverse(add_n([2, 3],3))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [20, 5, -15]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(reverse([-4, 0, 3]),1)),5),14)",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      20,
      5,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(reverse(input),1)),5),14)"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [3, 6, 6]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(sub_n([-1, 2, -1],5)),-1)),37)",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(sub_n(input,5)),-1)),37)"
  },
  {
    "input": "input : list = [4, 2, -2, 4, 2]\noutput : list = [-28, 32, 32, 62, 62]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(reverse([4, 2, -2, 4, 2]),-3),-5),2))",
    "io_inp": [
      4,
      2,
      -2,
      4,
      2
    ],
    "io_out": [
      -28,
      32,
      32,
      62,
      62
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(reverse(input),-3),-5),2))"
  },
  {
    "input": "input : list = [2, -4, 2, 5, 1, 4]\noutput : list = [-48, 27, 42, 42, 72, 87]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(mul_n([2, -4, 2, 5, 1, 4],-1),5),-4),-3))",
    "io_inp": [
      2,
      -4,
      2,
      5,
      1,
      4
    ],
    "io_out": [
      -48,
      27,
      42,
      42,
      72,
      87
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(mul_n(input,-1),5),-4),-3))"
  },
  {
    "input": "input : list = [-3, 4, -5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(drop([-3, 4, -5, 2],2)))))",
    "io_inp": [
      -3,
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [0, -3, -4, 4]\noutput : list = [46, 6, -24, -34]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(mul_n([0, -3, -4, 4],5),3)),2))",
    "io_inp": [
      0,
      -3,
      -4,
      4
    ],
    "io_out": [
      46,
      6,
      -24,
      -34
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(mul_n(input,5),3)),2))"
  },
  {
    "input": "input : list = [-3, 5, -1, -1, -1, -5]\noutput : list = [-1, 3, 3, 3, 9, 1]",
    "output": "generated_output : list = add_n(reverse([-3, 5, -1, -1, -1, -5]),4)",
    "io_inp": [
      -3,
      5,
      -1,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -1,
      3,
      3,
      3,
      9,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [-13]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(take([-2, -5, 2],1),5))),3)",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(take(input,1),5))),3)"
  },
  {
    "input": "input : list = [-4, 2, 2, 5, 0, -4]\noutput : list = [0, 0, 4, 6, 6, 9]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n([-4, 2, 2, 5, 0, -4],1)),5))",
    "io_inp": [
      -4,
      2,
      2,
      5,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      4,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(input,1)),5))"
  },
  {
    "input": "input : list = [-3, -4, 0, -1, 0, 0]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(drop([-3, -4, 0, -1, 0, 0],4)),5),1))",
    "io_inp": [
      -3,
      -4,
      0,
      -1,
      0,
      0
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(drop(input,4)),5),1))"
  },
  {
    "input": "input : list = [-4, -3, 2, 2, 1]\noutput : list = [8, 6, -2, -4, -4]",
    "output": "generated_output : list = mul_n(take(sort_asc([-4, -3, 2, 2, 1]),10),-2)",
    "io_inp": [
      -4,
      -3,
      2,
      2,
      1
    ],
    "io_out": [
      8,
      6,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),10),-2)"
  },
  {
    "input": "input : list = [0, -4, -4, 5, -3]\noutput : list = [4, -1, -4, -5, -5]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(sort_des([0, -4, -4, 5, -3])),-2)),3)",
    "io_inp": [
      0,
      -4,
      -4,
      5,
      -3
    ],
    "io_out": [
      4,
      -1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(sort_des(input)),-2)),3)"
  },
  {
    "input": "input : list = [2, -5, 5, -3, -2]\noutput : list = [-6, -4, -3, 1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(reverse([2, -5, 5, -3, -2])),19),1))",
    "io_inp": [
      2,
      -5,
      5,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(reverse(input)),19),1))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [0, 36]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(reverse([2, 5])),-2),-4),-3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      0,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(reverse(input)),-2),-4),-3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_des([-5, -2]),2),2),19))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_des(input),2),2),19))"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-17, -9, -29]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(mul_n([-5, 0, -2],4),5),23)),4)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -17,
      -9,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(mul_n(input,4),5),23)),4)"
  },
  {
    "input": "input : list = [4, -5, 4, 0, 4]\noutput : list = [-3, -3, -3, -7, -12]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(sort_asc([4, -5, 4, 0, 4]),3),1),5))",
    "io_inp": [
      4,
      -5,
      4,
      0,
      4
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(sort_asc(input),3),1),5))"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [14, 24, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(add_n([5, -4, 1],-3),-4),-1),-2))",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      14,
      24,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(add_n(input,-3),-4),-1),-2))"
  },
  {
    "input": "input : list = [-3, 5, 2, 4, 3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = mul_n(take([-3, 5, 2, 4, 3],2),1)",
    "io_inp": [
      -3,
      5,
      2,
      4,
      3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),1)"
  },
  {
    "input": "input : list = [-2, 1, -4, 1]\noutput : list = [3, -2, 3, 0]",
    "output": "generated_output : list = take(take(add_n(sub_n(reverse([-2, 1, -4, 1]),-1),1),7),10)",
    "io_inp": [
      -2,
      1,
      -4,
      1
    ],
    "io_out": [
      3,
      -2,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(reverse(input),-1),1),7),10)"
  },
  {
    "input": "input : list = [2, 0, 2, 2, 3, -3]\noutput : list = [9, 11, 11, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(take([2, 0, 2, 2, 3, -3],4),10),5),4))",
    "io_inp": [
      2,
      0,
      2,
      2,
      3,
      -3
    ],
    "io_out": [
      9,
      11,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(take(input,4),10),5),4))"
  },
  {
    "input": "input : list = [3, 1, 5, -2]\noutput : list = [-1, -3, 1, -6]",
    "output": "generated_output : list = sub_n([3, 1, 5, -2],4)",
    "io_inp": [
      3,
      1,
      5,
      -2
    ],
    "io_out": [
      -1,
      -3,
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, -4, -4, 5, 5]\noutput : list = [-32, 40, 40]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(drop([-5, -4, -4, 5, 5],2)),-1),2),-4)",
    "io_inp": [
      -5,
      -4,
      -4,
      5,
      5
    ],
    "io_out": [
      -32,
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(drop(input,2)),-1),2),-4)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([3, -3])",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, -5, -2, -2]\noutput : list = [-10, -4, -4, 4, 4]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des([2, 2, -5, -2, -2]),2)),34)",
    "io_inp": [
      2,
      2,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -10,
      -4,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(input),2)),34)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(sort_asc([4, -4]),1))),-1)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(sort_asc(input),1))),-1)"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [-3, 2, 4]",
    "output": "generated_output : list = take(sort_asc([2, -3, 4]),8)",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),8)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [6, 12]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(sub_n([4, -2],-5))),6),3)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(sub_n(input,-5))),6),3)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [0, 4, 2]",
    "output": "generated_output : list = add_n(add_n(sub_n([0, 4, 2],-1),-5),4)",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      0,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,-1),-5),4)"
  },
  {
    "input": "input : list = [-3, 3, -4, -5, 5]\noutput : list = [-77, 73, -102, -127, 123]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(mul_n([-3, 3, -4, -5, 5],1),-5),-1),-5),-3)",
    "io_inp": [
      -3,
      3,
      -4,
      -5,
      5
    ],
    "io_out": [
      -77,
      73,
      -102,
      -127,
      123
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(mul_n(input,1),-5),-1),-5),-3)"
  },
  {
    "input": "input : list = [-5, -5, 3, 4]\noutput : list = [17, 17, -15, -19]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(reverse([-5, -5, 3, 4])),-4)),3)",
    "io_inp": [
      -5,
      -5,
      3,
      4
    ],
    "io_out": [
      17,
      17,
      -15,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(reverse(input)),-4)),3)"
  },
  {
    "input": "input : list = [-4, 3, 0, 4, 0, 3]\noutput : list = [-16, 0, 0, 12, 12, 16]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sort_asc([-4, 3, 0, 4, 0, 3]),4),35)),51)",
    "io_inp": [
      -4,
      3,
      0,
      4,
      0,
      3
    ],
    "io_out": [
      -16,
      0,
      0,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sort_asc(input),4),35)),51)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [12, 9]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_des([-1, -2])),2),-3))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_des(input)),2),-3))"
  },
  {
    "input": "input : list = [4, -5, -1, -2]\noutput : list = [4, -1, -2]",
    "output": "generated_output : list = take(take(sort_des(reverse(sort_des([4, -5, -1, -2]))),24),3)",
    "io_inp": [
      4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(sort_des(input))),24),3)"
  },
  {
    "input": "input : list = [5, -2, 0, -3, 0]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(drop([5, -2, 0, -3, 0],2)),-1)))",
    "io_inp": [
      5,
      -2,
      0,
      -3,
      0
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(drop(input,2)),-1)))"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-12, 0, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(add_n([-5, 2, -2],2),-3))))",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -12,
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(add_n(input,2),-3))))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-20, -5]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(reverse([-4, -1])),22)),5)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(reverse(input)),22)),5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-9, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sort_des([-3, 0]),-2),-4)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sort_des(input),-2),-4)))"
  },
  {
    "input": "input : list = [-5, 1, 2, -1, -5]\noutput : list = [-5, -5, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([-5, 1, 2, -1, -5])))",
    "io_inp": [
      -5,
      1,
      2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [-10, 5, 15]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(mul_n([-3, 0, 2],5))),5))",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      -10,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(mul_n(input,5))),5))"
  },
  {
    "input": "input : list = [-4, 4, 1, -1, -3]\noutput : list = [-3, 5, 2, 0, -2]",
    "output": "generated_output : list = sub_n([-4, 4, 1, -1, -3],-1)",
    "io_inp": [
      -4,
      4,
      1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      5,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 3, 3, 4]\noutput : list = [-40, 60, 60, 80]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(sort_asc([-2, 3, 3, 4]),1),-5),12),-4)",
    "io_inp": [
      -2,
      3,
      3,
      4
    ],
    "io_out": [
      -40,
      60,
      60,
      80
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(sort_asc(input),1),-5),12),-4)"
  },
  {
    "input": "input : list = [1, -3, 1, -3, 2, 0]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(drop([1, -3, 1, -3, 2, 0],4))),-1),27)",
    "io_inp": [
      1,
      -3,
      1,
      -3,
      2,
      0
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(drop(input,4))),-1),27)"
  },
  {
    "input": "input : list = [-4, -2, 3, -1, -5, -5]\noutput : list = [2, -2, -3, -5, -6]",
    "output": "generated_output : list = take(take(sub_n(take(sort_des([-4, -2, 3, -1, -5, -5]),5),1),12),17)",
    "io_inp": [
      -4,
      -2,
      3,
      -1,
      -5,
      -5
    ],
    "io_out": [
      2,
      -2,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(sort_des(input),5),1),12),17)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(take(sort_asc(take(reverse([3, -2]),5)),19),30)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(reverse(input),5)),19),30)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(drop(sort_des(add_n([-1, 4],-2)),1))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(add_n(input,-2)),1))"
  },
  {
    "input": "input : list = [3, 2, 1, 4, -1, 3]\noutput : list = [-37, 11, -49, -13, -25, -37]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n(reverse([3, 2, 1, 4, -1, 3]),3),23),-4),-1)",
    "io_inp": [
      3,
      2,
      1,
      4,
      -1,
      3
    ],
    "io_out": [
      -37,
      11,
      -49,
      -13,
      -25,
      -37
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(reverse(input),3),23),-4),-1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [13, -7]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(reverse([-5, 5])),-2),3),20)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      13,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(reverse(input)),-2),3),20)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([3, -2],2)))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-2, 3, -1, 5]\noutput : list = [16]",
    "output": "generated_output : list = take(drop(mul_n(sort_asc(sub_n([-2, 3, -1, 5],-3)),2),3),14)",
    "io_inp": [
      -2,
      3,
      -1,
      5
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(sort_asc(sub_n(input,-3)),2),3),14)"
  },
  {
    "input": "input : list = [5, -1, 4, 5, 4, 3]\noutput : list = [-2, 28]",
    "output": "generated_output : list = reverse(take(add_n(mul_n(add_n([5, -1, 4, 5, 4, 3],1),5),-2),2))",
    "io_inp": [
      5,
      -1,
      4,
      5,
      4,
      3
    ],
    "io_out": [
      -2,
      28
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(add_n(input,1),5),-2),2))"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [-16, 16, 20]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(sort_des([-4, 4, 5]),-4),4)),-1)",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      -16,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(sort_des(input),-4),4)),-1)"
  },
  {
    "input": "input : list = [-5, -2, 5, -3, -5, 3]\noutput : list = [-9, -6, 1, -7, -9, -1]",
    "output": "generated_output : list = add_n(sub_n([-5, -2, 5, -3, -5, 3],3),-1)",
    "io_inp": [
      -5,
      -2,
      5,
      -3,
      -5,
      3
    ],
    "io_out": [
      -9,
      -6,
      1,
      -7,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),-1)"
  },
  {
    "input": "input : list = [3, -2, -3, 5, 1, 0]\noutput : list = [-3, -2, 0, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([3, -2, -3, 5, 1, 0])",
    "io_inp": [
      3,
      -2,
      -3,
      5,
      1,
      0
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, 4, 1, 4]\noutput : list = [-5, -20, -20, -25]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(drop([-2, 5, 4, 1, 4],1),-5))))",
    "io_inp": [
      -2,
      5,
      4,
      1,
      4
    ],
    "io_out": [
      -5,
      -20,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(drop(input,1),-5))))"
  },
  {
    "input": "input : list = [5, 5, 4, -3]\noutput : list = [25, 25, 20, -15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(sort_des([5, 5, 4, -3]),12))),5)",
    "io_inp": [
      5,
      5,
      4,
      -3
    ],
    "io_out": [
      25,
      25,
      20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(sort_des(input),12))),5)"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [-19, 6, -4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(mul_n([0, -2, 3],5),-1),-1)),5)",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      -19,
      6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(mul_n(input,5),-1),-1)),5)"
  },
  {
    "input": "input : list = [-2, 0, 4, -4]\noutput : list = [23, -1, -49, 47]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([-2, 0, 4, -4],4),-3),1)",
    "io_inp": [
      -2,
      0,
      4,
      -4
    ],
    "io_out": [
      23,
      -1,
      -49,
      47
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,4),-3),1)"
  },
  {
    "input": "input : list = [4, -4, 0, -1]\noutput : list = [9, 5, 4, 1]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(reverse([4, -4, 0, -1]))),-5))",
    "io_inp": [
      4,
      -4,
      0,
      -1
    ],
    "io_out": [
      9,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(reverse(input))),-5))"
  },
  {
    "input": "input : list = [-5, 3, 2, 1, -3]\noutput : list = [2, 1, 0, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n([-5, 3, 2, 1, -3],-4)))),5)",
    "io_inp": [
      -5,
      3,
      2,
      1,
      -3
    ],
    "io_out": [
      2,
      1,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n(input,-4)))),5)"
  },
  {
    "input": "input : list = [-3, 1, 5, 0, -3, 3]\noutput : list = [-6, -2, 2]",
    "output": "generated_output : list = sub_n(take([-3, 1, 5, 0, -3, 3],3),3)",
    "io_inp": [
      -3,
      1,
      5,
      0,
      -3,
      3
    ],
    "io_out": [
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),3)"
  },
  {
    "input": "input : list = [2, 1, -4, 2]\noutput : list = [14, 14, 5, -40]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(mul_n([2, 1, -4, 2],-3),-3),1)),3)",
    "io_inp": [
      2,
      1,
      -4,
      2
    ],
    "io_out": [
      14,
      14,
      5,
      -40
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(mul_n(input,-3),-3),1)),3)"
  },
  {
    "input": "input : list = [4, -4, -4, 1, -1]\noutput : list = [-3, -1, -6, -6, 2]",
    "output": "generated_output : list = add_n(sub_n(reverse([4, -4, -4, 1, -1]),-1),-3)",
    "io_inp": [
      4,
      -4,
      -4,
      1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -6,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),-1),-3)"
  },
  {
    "input": "input : list = [3, -5, -4, 3, 3, -3]\noutput : list = [1, -7, -6, 1, 1, -5]",
    "output": "generated_output : list = add_n([3, -5, -4, 3, 3, -3],-2)",
    "io_inp": [
      3,
      -5,
      -4,
      3,
      3,
      -3
    ],
    "io_out": [
      1,
      -7,
      -6,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 4, -1, -4]\noutput : list = [-18, -9, 6, -12]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(add_n([-2, 4, -1, -4],-2),12),-1),-3))",
    "io_inp": [
      -2,
      4,
      -1,
      -4
    ],
    "io_out": [
      -18,
      -9,
      6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(add_n(input,-2),12),-1),-3))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-50, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sort_asc([-1, 5]),-5))),-5)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -50,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sort_asc(input),-5))),-5)"
  },
  {
    "input": "input : list = [2, 5, -3, 3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 5, -3, 3],1)",
    "io_inp": [
      2,
      5,
      -3,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(reverse([3, 1, -3]))),9))",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(reverse(input))),9))"
  },
  {
    "input": "input : list = [-5, 3, -4, 2, -3, -4]\noutput : list = [11, 9, -1, -3, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(mul_n([-5, 3, -4, 2, -3, -4],2),13)),5))",
    "io_inp": [
      -5,
      3,
      -4,
      2,
      -3,
      -4
    ],
    "io_out": [
      11,
      9,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(mul_n(input,2),13)),5))"
  },
  {
    "input": "input : list = [-1, 2, -5, -5, 5]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 2, -5, -5, 5],1)",
    "io_inp": [
      -1,
      2,
      -5,
      -5,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [-1, -1, 14]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_des([0, -5, 0]),-3),3)),4)",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      -1,
      -1,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_des(input),-3),3)),4)"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [5, -3, -23]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(sort_des([0, 2, -5]))),4),-3)",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      5,
      -3,
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(sort_des(input))),4),-3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [8, 2]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(sort_des([-5, -2]),1)),-2),7)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(sort_des(input),1)),-2),7)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [-5, -5, -20]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(mul_n([1, 4, 1],-5),1))))",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      -5,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(mul_n(input,-5),1))))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n([0, 3],4)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [1, -2, -2, 3, -1, -2]\noutput : list = [-4, -6, -8, -9, -9, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(add_n([1, -2, -2, 3, -1, -2],-4))),-3))",
    "io_inp": [
      1,
      -2,
      -2,
      3,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -6,
      -8,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(add_n(input,-4))),-3))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-8, -2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(sub_n([3, -3],3),-2))))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(sub_n(input,3),-2))))"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [6]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(take([2, 1, 4],1)),-1),-5))",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(take(input,1)),-1),-5))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-25, 5]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des([5, -1])),-5))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -25,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(input)),-5))"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [-45, 35, -15]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(mul_n([-4, 4, -1],-2),4),8),-3),-5)",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      -45,
      35,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(mul_n(input,-2),4),8),-3),-5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [10, 9]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(add_n([2, 3],2))),-2),-3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      10,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(add_n(input,2))),-2),-3)"
  },
  {
    "input": "input : list = [4, 2, 4, 3, 2]\noutput : list = [-62, -62, -42, -22, -22]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sub_n([4, 2, 4, 3, 2],5),5),4)),-2)",
    "io_inp": [
      4,
      2,
      4,
      3,
      2
    ],
    "io_out": [
      -62,
      -62,
      -42,
      -22,
      -22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sub_n(input,5),5),4)),-2)"
  },
  {
    "input": "input : list = [-4, 0, 2, 2]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 0, 2, 2],1)",
    "io_inp": [
      -4,
      0,
      2,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [12, 2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(reverse([0, -5]),2),-1)),-2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      12,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(reverse(input),2),-1)),-2)"
  },
  {
    "input": "input : list = [-5, 0, 3, -5]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(take([-5, 0, 3, -5],1),3),2)),5)",
    "io_inp": [
      -5,
      0,
      3,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(take(input,1),3),2)),5)"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [-3, -3, 3]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(sort_asc([-1, 2, -1]),1),2),1),13)",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(sort_asc(input),1),2),1),13)"
  },
  {
    "input": "input : list = [3, 3, 5, -1, -2, 0]\noutput : list = [3, 4, 5, 8, 8, 10]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(sort_des([3, 3, 5, -1, -2, 0])),-5)))",
    "io_inp": [
      3,
      3,
      5,
      -1,
      -2,
      0
    ],
    "io_out": [
      3,
      4,
      5,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(sort_des(input)),-5)))"
  },
  {
    "input": "input : list = [-5, -3, -2, -5]\noutput : list = [25]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take([-5, -3, -2, -5],1))),-5)",
    "io_inp": [
      -5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(input,1))),-5)"
  },
  {
    "input": "input : list = [-1, 1, -5, 3, -3, 0]\noutput : list = [1, -1, -2, -3, -5, -7]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_asc([-1, 1, -5, 3, -3, 0])),2),21))",
    "io_inp": [
      -1,
      1,
      -5,
      3,
      -3,
      0
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_asc(input)),2),21))"
  },
  {
    "input": "input : list = [-1, -3, 0, 2]\noutput : list = [2, 5, 7]",
    "output": "generated_output : list = add_n(drop([-1, -3, 0, 2],1),5)",
    "io_inp": [
      -1,
      -3,
      0,
      2
    ],
    "io_out": [
      2,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [5, -2, 5, -5, -3]\noutput : list = [5, -5, -3]",
    "output": "generated_output : list = drop([5, -2, 5, -5, -3],2)",
    "io_inp": [
      5,
      -2,
      5,
      -5,
      -3
    ],
    "io_out": [
      5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 0, -5]\noutput : list = [103, 43, 3]",
    "output": "generated_output : list = sort_des(reverse(add_n(mul_n(mul_n([-2, 0, -5],4),-5),3)))",
    "io_inp": [
      -2,
      0,
      -5
    ],
    "io_out": [
      103,
      43,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(mul_n(mul_n(input,4),-5),3)))"
  },
  {
    "input": "input : list = [1, 2, -1, -2]\noutput : list = [0, -1, -3, -4]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(reverse([1, 2, -1, -2])),6)),-2)",
    "io_inp": [
      1,
      2,
      -1,
      -2
    ],
    "io_out": [
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(reverse(input)),6)),-2)"
  },
  {
    "input": "input : list = [-5, 2, 0, -4, 0]\noutput : list = [15, -6, 0, 12, 0]",
    "output": "generated_output : list = mul_n([-5, 2, 0, -4, 0],-3)",
    "io_inp": [
      -5,
      2,
      0,
      -4,
      0
    ],
    "io_out": [
      15,
      -6,
      0,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -1, 0, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(take([-2, -1, 0, -3],1)))))",
    "io_inp": [
      -2,
      -1,
      0,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-3, 2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(drop([-3, 2, 0],1)))),2)",
    "io_inp": [
      -3,
      2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [3, 0, -4, -2]\noutput : list = [-4, -2, 0, 3]",
    "output": "generated_output : list = take(sort_asc([3, 0, -4, -2]),20)",
    "io_inp": [
      3,
      0,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),20)"
  },
  {
    "input": "input : list = [0, 0, -1, 2]\noutput : list = [5, -4]",
    "output": "generated_output : list = take(add_n(take(reverse(mul_n([0, 0, -1, 2],3)),2),-1),41)",
    "io_inp": [
      0,
      0,
      -1,
      2
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(mul_n(input,3)),2),-1),41)"
  },
  {
    "input": "input : list = [2, 1, -2, 1, -5, 3]\noutput : list = [-10, -7, -4, -4, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(add_n([2, 1, -2, 1, -5, 3],-4),18),4)),-5)",
    "io_inp": [
      2,
      1,
      -2,
      1,
      -5,
      3
    ],
    "io_out": [
      -10,
      -7,
      -4,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(add_n(input,-4),18),4)),-5)"
  },
  {
    "input": "input : list = [2, -4, 0, 2]\noutput : list = [5, -1, 3, 5]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(reverse([2, -4, 0, 2]),1),29)),4)",
    "io_inp": [
      2,
      -4,
      0,
      2
    ],
    "io_out": [
      5,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(reverse(input),1),29)),4)"
  },
  {
    "input": "input : list = [1, 5, 5, 4]\noutput : list = [-25, -25, -20]",
    "output": "generated_output : list = mul_n(drop([1, 5, 5, 4],1),-5)",
    "io_inp": [
      1,
      5,
      5,
      4
    ],
    "io_out": [
      -25,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [4, 4, -1, 3, -2, -2]\noutput : list = [0, 0, -5, -1, -6, -6]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(reverse([4, 4, -1, 3, -2, -2]),5),-3),-4))",
    "io_inp": [
      4,
      4,
      -1,
      3,
      -2,
      -2
    ],
    "io_out": [
      0,
      0,
      -5,
      -1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(reverse(input),5),-3),-4))"
  },
  {
    "input": "input : list = [1, 5, -1, -3, 1]\noutput : list = [-5, -1, -1, 1, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n([1, 5, -1, -3, 1],-1))),5)",
    "io_inp": [
      1,
      5,
      -1,
      -3,
      1
    ],
    "io_out": [
      -5,
      -1,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(input,-1))),5)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [4, 8]",
    "output": "generated_output : list = sub_n(sort_asc([1, 5]),-3)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [2, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(sort_des([-3, 0, -3]),1)),3))",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(sort_des(input),1)),3))"
  },
  {
    "input": "input : list = [3, -1, 5, -5]\noutput : list = [1, 5, 9, 11]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(add_n([3, -1, 5, -5],1)),23),5))",
    "io_inp": [
      3,
      -1,
      5,
      -5
    ],
    "io_out": [
      1,
      5,
      9,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(add_n(input,1)),23),5))"
  },
  {
    "input": "input : list = [-5, -4, -3, -2, -5]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(take(take(sort_des(take([-5, -4, -3, -2, -5],1)),21),5),3)",
    "io_inp": [
      -5,
      -4,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(take(input,1)),21),5),3)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [4, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des(sub_n([-4, -2],-3)))),3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(sub_n(input,-3)))),3)"
  },
  {
    "input": "input : list = [-3, 5, 4, -4]\noutput : list = [-15]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(take([-3, 5, 4, -4],1),5)),-1),-1)",
    "io_inp": [
      -3,
      5,
      4,
      -4
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(take(input,1),5)),-1),-1)"
  },
  {
    "input": "input : list = [1, 4, -1, 4]\noutput : list = [4, 4, 1, -1]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(sort_des([1, 4, -1, 4])),-2)),-2)",
    "io_inp": [
      1,
      4,
      -1,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(sort_des(input)),-2)),-2)"
  },
  {
    "input": "input : list = [-4, -4, 3, 2, 0, 4]\noutput : list = [20, 0, 140, 140]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(take([-4, -4, 3, 2, 0, 4],4),-3),4),-5))",
    "io_inp": [
      -4,
      -4,
      3,
      2,
      0,
      4
    ],
    "io_out": [
      20,
      0,
      140,
      140
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(take(input,4),-3),4),-5))"
  },
  {
    "input": "input : list = [0, 0, -5, 1, 0]\noutput : list = [-6, -1, -1, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_des([0, 0, -5, 1, 0]),1))))",
    "io_inp": [
      0,
      0,
      -5,
      1,
      0
    ],
    "io_out": [
      -6,
      -1,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n([5, 3],-4)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, 5, 5, -3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 5, 5, -3],1)",
    "io_inp": [
      3,
      5,
      5,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [-6, -5, -4]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(sort_asc([-3, -4, -5]))),3),4)",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(sort_asc(input))),3),4)"
  },
  {
    "input": "input : list = [2, -1, 5, 2]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -1, 5, 2],1)",
    "io_inp": [
      2,
      -1,
      5,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -3, 1, -3]\noutput : list = [-4, 0, -4, -4]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n([-3, -3, 1, -3],-3),-4),1))",
    "io_inp": [
      -3,
      -3,
      1,
      -3
    ],
    "io_out": [
      -4,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(input,-3),-4),1))"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [4, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(sub_n([2, 3, 2],3)),-5)),27)",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(sub_n(input,3)),-5)),27)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(reverse(drop([1, -2, 3],1)))",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = reverse([-2, 1])",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 5, 1]\noutput : list = [-10, 15, -25, -5]",
    "output": "generated_output : list = take(mul_n([2, -3, 5, 1],-5),17)",
    "io_inp": [
      2,
      -3,
      5,
      1
    ],
    "io_out": [
      -10,
      15,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),17)"
  },
  {
    "input": "input : list = [-1, 5, 5, 5, 3]\noutput : list = [40, 40, 40, 32]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(drop([-1, 5, 5, 5, 3],1)),5)),4)",
    "io_inp": [
      -1,
      5,
      5,
      5,
      3
    ],
    "io_out": [
      40,
      40,
      40,
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(drop(input,1)),5)),4)"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [7, 2, 6]",
    "output": "generated_output : list = sub_n(take(add_n([2, -3, 1],4),11),-1)",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      7,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,4),11),-1)"
  },
  {
    "input": "input : list = [0, 3, 4]\noutput : list = [-3, 9, 13]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(mul_n([0, 3, 4],-4),3)),-1))",
    "io_inp": [
      0,
      3,
      4
    ],
    "io_out": [
      -3,
      9,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(mul_n(input,-4),3)),-1))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(add_n([2, -1],4),-5))),-4)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(add_n(input,4),-5))),-4)"
  },
  {
    "input": "input : list = [-5, 0, -4, -1, -1]\noutput : list = [30, 5, 25, 10, 10]",
    "output": "generated_output : list = mul_n(add_n([-5, 0, -4, -1, -1],-1),-5)",
    "io_inp": [
      -5,
      0,
      -4,
      -1,
      -1
    ],
    "io_out": [
      30,
      5,
      25,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-5)"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [6, 10]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(drop([2, 3, -1],1),-5)),2),39)",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(drop(input,1),-5)),2),39)"
  },
  {
    "input": "input : list = [2, -5, 3, 5, -4]\noutput : list = [-8, -1, 1]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(drop([2, -5, 3, 5, -4],2)))),-4)",
    "io_inp": [
      2,
      -5,
      3,
      5,
      -4
    ],
    "io_out": [
      -8,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(drop(input,2)))),-4)"
  },
  {
    "input": "input : list = [-2, 3, -1, -3, -2]\noutput : list = [-4, -6]",
    "output": "generated_output : list = take(sort_des(take(mul_n(reverse([-2, 3, -1, -3, -2]),2),2)),2)",
    "io_inp": [
      -2,
      3,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(reverse(input),2),2)),2)"
  },
  {
    "input": "input : list = [-5, -5, 0, -1]\noutput : list = [-5, -5, -1, 0]",
    "output": "generated_output : list = sort_asc(reverse([-5, -5, 0, -1]))",
    "io_inp": [
      -5,
      -5,
      0,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, 4, 1, -2, -5, -5]\noutput : list = [15, 15, 6, -3, -12, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(sort_des([4, 4, 1, -2, -5, -5])),-3)))",
    "io_inp": [
      4,
      4,
      1,
      -2,
      -5,
      -5
    ],
    "io_out": [
      15,
      15,
      6,
      -3,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [5, 0, 2, -3]\noutput : list = [2, 5, 7, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sub_n([5, 0, 2, -3],-5)))))",
    "io_inp": [
      5,
      0,
      2,
      -3
    ],
    "io_out": [
      2,
      5,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [5, 1, -5, 4, 5]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(take([5, 1, -5, 4, 5],1))",
    "io_inp": [
      5,
      1,
      -5,
      4,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [0, 0, -3, 1, 4]\noutput : list = [3, 12, 24, 15, 15]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(add_n([0, 0, -3, 1, 4],-1),-4),-3),30))",
    "io_inp": [
      0,
      0,
      -3,
      1,
      4
    ],
    "io_out": [
      3,
      12,
      24,
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(add_n(input,-1),-4),-3),30))"
  },
  {
    "input": "input : list = [4, -1, 3, 5, 1, 3]\noutput : list = [9, 8, 7, 7, 5, 3]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sub_n([4, -1, 3, 5, 1, 3],-4)),20)),53)",
    "io_inp": [
      4,
      -1,
      3,
      5,
      1,
      3
    ],
    "io_out": [
      9,
      8,
      7,
      7,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sub_n(input,-4)),20)),53)"
  },
  {
    "input": "input : list = [-3, 2, -2]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = sort_des([-3, 2, -2])",
    "io_inp": [
      -3,
      2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [5, 3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(sort_des([3, 5, -3]),16),16)))",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(sort_des(input),16),16)))"
  },
  {
    "input": "input : list = [1, -3, -1, -1, 4]\noutput : list = [4, 1, -1, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc([1, -3, -1, -1, 4]))",
    "io_inp": [
      1,
      -3,
      -1,
      -1,
      4
    ],
    "io_out": [
      4,
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -1, -5, 0, -3, -2]\noutput : list = [0, 10, 20, 30, 30, 50]",
    "output": "generated_output : list = mul_n(sort_des(take(reverse(mul_n([-3, -1, -5, 0, -3, -2],5)),25)),-2)",
    "io_inp": [
      -3,
      -1,
      -5,
      0,
      -3,
      -2
    ],
    "io_out": [
      0,
      10,
      20,
      30,
      30,
      50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(reverse(mul_n(input,5)),25)),-2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(reverse([-4, -2]))),25)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(reverse(input))),25)"
  },
  {
    "input": "input : list = [1, 4, 0, 4]\noutput : list = [-18, -9, -21, -9]",
    "output": "generated_output : list = take(mul_n(add_n(add_n([1, 4, 0, 4],-5),-2),3),31)",
    "io_inp": [
      1,
      4,
      0,
      4
    ],
    "io_out": [
      -18,
      -9,
      -21,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(input,-5),-2),3),31)"
  },
  {
    "input": "input : list = [-1, 2, -5]\noutput : list = [11, 8, 4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(sort_des([-1, 2, -5])),-4),-5))",
    "io_inp": [
      -1,
      2,
      -5
    ],
    "io_out": [
      11,
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(sort_des(input)),-4),-5))"
  },
  {
    "input": "input : list = [1, 5, -1, -3, 5, -1]\noutput : list = [4, 4, 0, -2, -2, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(reverse([1, 5, -1, -3, 5, -1]))),1))",
    "io_inp": [
      1,
      5,
      -1,
      -3,
      5,
      -1
    ],
    "io_out": [
      4,
      4,
      0,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(reverse(input))),1))"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(drop([5, -1, 4],1),1)),10))",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(drop(input,1),1)),10))"
  },
  {
    "input": "input : list = [3, -4, -4, -3, 4, -5]\noutput : list = [-5, 4, -3]",
    "output": "generated_output : list = reverse(drop([3, -4, -4, -3, 4, -5],3))",
    "io_inp": [
      3,
      -4,
      -4,
      -3,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [2, -2, 2, 5, 0, -3]\noutput : list = [6, -6]",
    "output": "generated_output : list = mul_n(take([2, -2, 2, 5, 0, -3],2),3)",
    "io_inp": [
      2,
      -2,
      2,
      5,
      0,
      -3
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),3)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-100, -1000]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_des([4, -5]),-5),-4),-5),5)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -100,
      -1000
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_des(input),-5),-4),-5),5)"
  },
  {
    "input": "input : list = [-1, 3, 2, 2]\noutput : list = [4, 8, 7, 7]",
    "output": "generated_output : list = sub_n([-1, 3, 2, 2],-5)",
    "io_inp": [
      -1,
      3,
      2,
      2
    ],
    "io_out": [
      4,
      8,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [0, 0, 6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(add_n([-3, -3, 3],5)))),2)",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(add_n(input,5)))),2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-12, -12]",
    "output": "generated_output : list = mul_n(take(sort_des([3, 3]),4),-4)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),4),-4)"
  },
  {
    "input": "input : list = [0, 0, -3, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(sub_n(drop(take(sort_asc([0, 0, -3, -3]),20),3),5))",
    "io_inp": [
      0,
      0,
      -3,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(take(sort_asc(input),20),3),5))"
  },
  {
    "input": "input : list = [-1, -4, 5, 3, 4, -4]\noutput : list = [3, 4, -4]",
    "output": "generated_output : list = drop([-1, -4, 5, 3, 4, -4],3)",
    "io_inp": [
      -1,
      -4,
      5,
      3,
      4,
      -4
    ],
    "io_out": [
      3,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, -5, 5, -2]\noutput : list = [8]",
    "output": "generated_output : list = take(sort_des(drop(mul_n(drop([-1, -5, 5, -2],2),-4),1)),36)",
    "io_inp": [
      -1,
      -5,
      5,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(mul_n(drop(input,2),-4),1)),36)"
  },
  {
    "input": "input : list = [2, -4, 1, 4]\noutput : list = [2, 0, -1, -6]",
    "output": "generated_output : list = take(sub_n(take(sub_n(sort_des([2, -4, 1, 4]),1),24),1),29)",
    "io_inp": [
      2,
      -4,
      1,
      4
    ],
    "io_out": [
      2,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(sort_des(input),1),24),1),29)"
  },
  {
    "input": "input : list = [4, 0, 2, -1, 1]\noutput : list = [-17, -11, -8, -5, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(mul_n([4, 0, 2, -1, 1],-3),-5))),1)",
    "io_inp": [
      4,
      0,
      2,
      -1,
      1
    ],
    "io_out": [
      -17,
      -11,
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(mul_n(input,-3),-5))),1)"
  },
  {
    "input": "input : list = [0, -2, -2, 0, -2]\noutput : list = [-2, -2, -2, 0, 0]",
    "output": "generated_output : list = sort_asc([0, -2, -2, 0, -2])",
    "io_inp": [
      0,
      -2,
      -2,
      0,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4, -1, 3, 4]\noutput : list = [-1, -1, 1, 1, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(mul_n([3, 4, -1, 3, 4],-2)),-4),-3))",
    "io_inp": [
      3,
      4,
      -1,
      3,
      4
    ],
    "io_out": [
      -1,
      -1,
      1,
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(mul_n(input,-2)),-4),-3))"
  },
  {
    "input": "input : list = [4, -3, -3, 4]\noutput : list = [7, 0, 0, 7]",
    "output": "generated_output : list = sub_n([4, -3, -3, 4],-3)",
    "io_inp": [
      4,
      -3,
      -3,
      4
    ],
    "io_out": [
      7,
      0,
      0,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, -2, 4]\noutput : list = [5, 6, 11, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n([4, -1, -2, 4],-5)),-2))",
    "io_inp": [
      4,
      -1,
      -2,
      4
    ],
    "io_out": [
      5,
      6,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(input,-5)),-2))"
  },
  {
    "input": "input : list = [-4, 4, -1, -1]\noutput : list = [-25, -10, -10, -1]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(sort_des([-4, 4, -1, -1]),3),-3),31),4)",
    "io_inp": [
      -4,
      4,
      -1,
      -1
    ],
    "io_out": [
      -25,
      -10,
      -10,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(sort_des(input),3),-3),31),4)"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [6, 7, 9]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(add_n([4, 1, 2],1),4))))",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(add_n(input,1),4))))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(mul_n([4, -5],1),1),3)))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(mul_n(input,1),1),3)))"
  },
  {
    "input": "input : list = [-4, -3, 4, -1, 5, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(sort_des([-4, -3, 4, -1, 5, -2]),-4)),2),-2)",
    "io_inp": [
      -4,
      -3,
      4,
      -1,
      5,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(sort_des(input),-4)),2),-2)"
  },
  {
    "input": "input : list = [0, 5, 4, 4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(drop([0, 5, 4, 4, 1],3))",
    "io_inp": [
      0,
      5,
      4,
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [-5, -5, -4, 0, 0]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(take([-5, -5, -4, 0, 0],1)),-4),29),-2)",
    "io_inp": [
      -5,
      -5,
      -4,
      0,
      0
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(take(input,1)),-4),29),-2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(sort_des([2, 2]),-3)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-10, -20]",
    "output": "generated_output : list = sort_des(take(mul_n(take(drop([-4, -4, -2],1),9),5),24))",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(drop(input,1),9),5),24))"
  },
  {
    "input": "input : list = [4, 3, 5]\noutput : list = [3, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 3, 5])",
    "io_inp": [
      4,
      3,
      5
    ],
    "io_out": [
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, -3, -4]\noutput : list = [-3, -3, -3, -4]",
    "output": "generated_output : list = sort_des([-3, -3, -3, -4])",
    "io_inp": [
      -3,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, -3, 2, 1, 3]\noutput : list = [-2, -3, -4, -4, -7, -8]",
    "output": "generated_output : list = take(take(sort_des(sort_asc(add_n([-2, 1, -3, 2, 1, 3],-5))),9),34)",
    "io_inp": [
      -2,
      1,
      -3,
      2,
      1,
      3
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(add_n(input,-5))),9),34)"
  },
  {
    "input": "input : list = [-5, -2, 5, 1]\noutput : list = [-25, -13, -4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sub_n([-5, -2, 5, 1],-2),-2),-3)),-2)",
    "io_inp": [
      -5,
      -2,
      5,
      1
    ],
    "io_out": [
      -25,
      -13,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sub_n(input,-2),-2),-3)),-2)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [6, 6, 6]",
    "output": "generated_output : list = sub_n(reverse([5, 5, 5]),-1)",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = add_n([-4, 1],3)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(take([-3, -3, 2],1),-2),20),5),-3)",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(take(input,1),-2),20),5),-3)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc([4, 1]),3),21)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),3),21)"
  },
  {
    "input": "input : list = [-3, -4, 5, 2, 2]\noutput : list = [-3, -3, 0, -9, -8]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(reverse([-3, -4, 5, 2, 2]),5))),27)",
    "io_inp": [
      -3,
      -4,
      5,
      2,
      2
    ],
    "io_out": [
      -3,
      -3,
      0,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(reverse(input),5))),27)"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [-10, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(sub_n([5, -4, 4],3),2)),-5))",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      -10,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(sub_n(input,3),2)),-5))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-7, -2]",
    "output": "generated_output : list = take(sub_n([-2, 3],5),13)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),13)"
  },
  {
    "input": "input : list = [4, -5, -2, 1, 5]\noutput : list = [7, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(take(drop([4, -5, -2, 1, 5],3),12),-1)),3)",
    "io_inp": [
      4,
      -5,
      -2,
      1,
      5
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(drop(input,3),12),-1)),3)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -3, 2],1)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -1, -3, -4, 1, 1]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(take([3, -1, -3, -4, 1, 1],1),10),11)),-3)",
    "io_inp": [
      3,
      -1,
      -3,
      -4,
      1,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(take(input,1),10),11)),-3)"
  },
  {
    "input": "input : list = [2, -4, 3, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = add_n(drop([2, -4, 3, -1],2),-3)",
    "io_inp": [
      2,
      -4,
      3,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-5, 3, 0, -4]\noutput : list = [-11, -3, -6, -10]",
    "output": "generated_output : list = sub_n(add_n([-5, 3, 0, -4],-1),5)",
    "io_inp": [
      -5,
      3,
      0,
      -4
    ],
    "io_out": [
      -11,
      -3,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [2, 8]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(add_n([-2, 4],3),3)),-1))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(add_n(input,3),3)),-1))"
  },
  {
    "input": "input : list = [-4, 1, 2, -3]\noutput : list = [3, 4, 8, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-4, 1, 2, -3],-2),-5))",
    "io_inp": [
      -4,
      1,
      2,
      -3
    ],
    "io_out": [
      3,
      4,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-2),-5))"
  },
  {
    "input": "input : list = [4, -1, -3, 2, 5]\noutput : list = [-1, -6, -8, -3, 0]",
    "output": "generated_output : list = take(take(sub_n(sub_n(sub_n([4, -1, -3, 2, 5],-2),4),3),8),34)",
    "io_inp": [
      4,
      -1,
      -3,
      2,
      5
    ],
    "io_out": [
      -1,
      -6,
      -8,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(sub_n(input,-2),4),3),8),34)"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(take(drop([4, -2, -5],1),16),2)",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,1),16),2)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [17, 9]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(mul_n([3, 1],4)),1),9),-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      17,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(mul_n(input,4)),1),9),-4)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [-17, -12]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(drop([-1, 1, -4],1),-5)),-4),-4)",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      -17,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(drop(input,1),-5)),-4),-4)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-4, -9]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sort_des([-3, 2])),2)),-4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sort_des(input)),2)),-4)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(sort_asc([0, 1]),-1),-2)),-2)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(sort_asc(input),-1),-2)),-2)"
  },
  {
    "input": "input : list = [-5, 5, 2, 1, 2, -2]\noutput : list = [5, 2, 1, 2, -2]",
    "output": "generated_output : list = drop([-5, 5, 2, 1, 2, -2],1)",
    "io_inp": [
      -5,
      5,
      2,
      1,
      2,
      -2
    ],
    "io_out": [
      5,
      2,
      1,
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [-5, -10, -3]",
    "output": "generated_output : list = add_n(reverse(take(sub_n([4, -3, 2],3),5)),-4)",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      -5,
      -10,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(input,3),5)),-4)"
  },
  {
    "input": "input : list = [-1, 3, -3, -5, 3, 1]\noutput : list = [-9, -7, -5, -3, -1, -1]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(sort_des([-1, 3, -3, -5, 3, 1])),-4)))",
    "io_inp": [
      -1,
      3,
      -3,
      -5,
      3,
      1
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [0, -1, -2, 5, -2, -2]\noutput : list = [40, 40, 40, 20, 0, -100]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sort_asc([0, -1, -2, 5, -2, -2]),-4),5)))",
    "io_inp": [
      0,
      -1,
      -2,
      5,
      -2,
      -2
    ],
    "io_out": [
      40,
      40,
      40,
      20,
      0,
      -100
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sort_asc(input),-4),5)))"
  },
  {
    "input": "input : list = [3, 4, 4, 2, -5, 5]\noutput : list = [3, 4, 4, 2]",
    "output": "generated_output : list = take([3, 4, 4, 2, -5, 5],4)",
    "io_inp": [
      3,
      4,
      4,
      2,
      -5,
      5
    ],
    "io_out": [
      3,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-4, -3, 4, 0]\noutput : list = [0, -48, 36, 48]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-4, -3, 4, 0],4)),-3)",
    "io_inp": [
      -4,
      -3,
      4,
      0
    ],
    "io_out": [
      0,
      -48,
      36,
      48
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,4)),-3)"
  },
  {
    "input": "input : list = [4, -4, -5, -5, 0]\noutput : list = [8, 0, -8, -10, -10]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([4, -4, -5, -5, 0])),2)",
    "io_inp": [
      4,
      -4,
      -5,
      -5,
      0
    ],
    "io_out": [
      8,
      0,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-1, 4, 5, 3]\noutput : list = [-3, 9, 12, 15]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(mul_n([-1, 4, 5, 3],3)))),5)",
    "io_inp": [
      -1,
      4,
      5,
      3
    ],
    "io_out": [
      -3,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(mul_n(input,3)))),5)"
  },
  {
    "input": "input : list = [4, 3, -2, 2]\noutput : list = [-2, -4, -14, -6]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(reverse([4, 3, -2, 2]),-5),2),36))",
    "io_inp": [
      4,
      3,
      -2,
      2
    ],
    "io_out": [
      -2,
      -4,
      -14,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(reverse(input),-5),2),36))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([-2, 3],5)))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,5)))"
  },
  {
    "input": "input : list = [3, 2, 2, 3]\noutput : list = [2, 2, 3, 3]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse([3, 2, 2, 3])))),41)",
    "io_inp": [
      3,
      2,
      2,
      3
    ],
    "io_out": [
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse(input)))),41)"
  },
  {
    "input": "input : list = [1, -5, -1, -2]\noutput : list = [-5, -2, -1, 1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(sort_asc([1, -5, -1, -2]))),-5),5)",
    "io_inp": [
      1,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(sort_asc(input))),-5),5)"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [2, 3, 7]",
    "output": "generated_output : list = take(take(sort_asc(add_n(sub_n([3, -1, -2],-5),-1)),31),13)",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(sub_n(input,-5),-1)),31),13)"
  },
  {
    "input": "input : list = [-1, 4, -1, -5, 0, -1]\noutput : list = [4, 0, -1, -1, -1, -5]",
    "output": "generated_output : list = take(reverse(take(take(sort_asc([-1, 4, -1, -5, 0, -1]),8),30)),17)",
    "io_inp": [
      -1,
      4,
      -1,
      -5,
      0,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(sort_asc(input),8),30)),17)"
  },
  {
    "input": "input : list = [4, -2, 5, 3, 1]\noutput : list = [-13, -1, 7, 11, 15]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des(sort_asc([4, -2, 5, 3, 1])),4),-5))",
    "io_inp": [
      4,
      -2,
      5,
      3,
      1
    ],
    "io_out": [
      -13,
      -1,
      7,
      11,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(sort_asc(input)),4),-5))"
  },
  {
    "input": "input : list = [3, -3, 0, 0]\noutput : list = [2, 2, -1, 5]",
    "output": "generated_output : list = add_n(reverse([3, -3, 0, 0]),2)",
    "io_inp": [
      3,
      -3,
      0,
      0
    ],
    "io_out": [
      2,
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-5, 5, -3, 0]\noutput : list = [0, -60, 100, -100]",
    "output": "generated_output : list = take(take(mul_n(reverse(mul_n([-5, 5, -3, 0],5)),4),26),15)",
    "io_inp": [
      -5,
      5,
      -3,
      0
    ],
    "io_out": [
      0,
      -60,
      100,
      -100
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(mul_n(input,5)),4),26),15)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(sort_des([5, 4]),5),6)))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(sort_des(input),5),6)))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sort_des([-1, 4])),16),26))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sort_des(input)),16),26))"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [-9, 12, 12]",
    "output": "generated_output : list = mul_n(take(take(sort_des(reverse([3, -4, -4])),13),20),-3)",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      -9,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(reverse(input)),13),20),-3)"
  },
  {
    "input": "input : list = [0, 2, 2, -3, 3, -4]\noutput : list = [-4, -3, 0, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(mul_n([0, 2, 2, -3, 3, -4],1))",
    "io_inp": [
      0,
      2,
      2,
      -3,
      3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-4, 2, -2, 4, 0, -2]\noutput : list = [-4, -2, -2, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des([-4, 2, -2, 4, 0, -2]))))",
    "io_inp": [
      -4,
      2,
      -2,
      4,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [1, -4, -4]",
    "output": "generated_output : list = take(reverse(reverse([1, -4, -4])),16)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),16)"
  },
  {
    "input": "input : list = [3, 5, -3, -3]\noutput : list = [29, 21, -3, -3]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_des([3, 5, -3, -3]),1),-2),-2),-5)",
    "io_inp": [
      3,
      5,
      -3,
      -3
    ],
    "io_out": [
      29,
      21,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_des(input),1),-2),-2),-5)"
  },
  {
    "input": "input : list = [-2, 4, 3, 3, 1, 4]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(take([-2, 4, 3, 3, 1, 4],1)))))",
    "io_inp": [
      -2,
      4,
      3,
      3,
      1,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [22, -8, 10]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(mul_n([1, -5, 5],3)),-5),1),-2)",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      22,
      -8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(mul_n(input,3)),-5),1),-2)"
  },
  {
    "input": "input : list = [-3, -3, -1, -1, 5, -1]\noutput : list = [1, -5]",
    "output": "generated_output : list = sub_n(drop([-3, -3, -1, -1, 5, -1],4),4)",
    "io_inp": [
      -3,
      -3,
      -1,
      -1,
      5,
      -1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),4)"
  },
  {
    "input": "input : list = [-2, -2, -4, -4, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(drop([-2, -2, -4, -4, -4],3))),-4),50)",
    "io_inp": [
      -2,
      -2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(drop(input,3))),-4),50)"
  },
  {
    "input": "input : list = [1, 2, -2, -2, 0]\noutput : list = [-7, -7, -5, -4, -3]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(mul_n([1, 2, -2, -2, 0],1)),-5),12))",
    "io_inp": [
      1,
      2,
      -2,
      -2,
      0
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(mul_n(input,1)),-5),12))"
  },
  {
    "input": "input : list = [4, 5, -4, -4]\noutput : list = [10, 9, 1, 1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([4, 5, -4, -4],1),-5))",
    "io_inp": [
      4,
      5,
      -4,
      -4
    ],
    "io_out": [
      10,
      9,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,1),-5))"
  },
  {
    "input": "input : list = [-2, -4, 0, 5, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -4, 0, 5, -5],1)",
    "io_inp": [
      -2,
      -4,
      0,
      5,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -4, 0, 1, 1, 4]\noutput : list = [-12, -24, -24, -28, -40, -44]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(add_n([-3, -4, 0, 1, 1, 4],-4)),3)),4)",
    "io_inp": [
      -3,
      -4,
      0,
      1,
      1,
      4
    ],
    "io_out": [
      -12,
      -24,
      -24,
      -28,
      -40,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(add_n(input,-4)),3)),4)"
  },
  {
    "input": "input : list = [-3, -1, 3, 2, -1, 0]\noutput : list = [-60, -20, -20, 0, 40, 60]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(mul_n([-3, -1, 3, 2, -1, 0],4)))),5)",
    "io_inp": [
      -3,
      -1,
      3,
      2,
      -1,
      0
    ],
    "io_out": [
      -60,
      -20,
      -20,
      0,
      40,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(mul_n(input,4)))),5)"
  },
  {
    "input": "input : list = [-1, 2, -2, -4, 4]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = sort_des(take([-1, 2, -2, -4, 4],3))",
    "io_inp": [
      -1,
      2,
      -2,
      -4,
      4
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [2, -10, 0]",
    "output": "generated_output : list = mul_n(add_n([3, -3, 2],-2),2)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      2,
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),2)"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(take([-3, 0, 5],1),7))),-2)",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(take(input,1),7))),-2)"
  },
  {
    "input": "input : list = [4, -1, -4, -2, -4]\noutput : list = [6, -4, -6, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n([4, -1, -4, -2, -4],-1))),2)",
    "io_inp": [
      4,
      -1,
      -4,
      -2,
      -4
    ],
    "io_out": [
      6,
      -4,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(input,-1))),2)"
  },
  {
    "input": "input : list = [1, -1, 5, -1]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -1, 5, -1],1)",
    "io_inp": [
      1,
      -1,
      5,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -1, -1, -1]\noutput : list = [-24, -9, -9, -9, -9]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([-1, 4, -1, -1, -1],4),-3))",
    "io_inp": [
      -1,
      4,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -24,
      -9,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,4),-3))"
  },
  {
    "input": "input : list = [3, -5, 2, 1, 2]\noutput : list = [2, 2, 1, -5]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(drop([3, -5, 2, 1, 2],1)),-4),7),-4)",
    "io_inp": [
      3,
      -5,
      2,
      1,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(drop(input,1)),-4),7),-4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([3, -2])))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [2, -3, -4, -1, 0]\noutput : list = [11]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(take([2, -3, -4, -1, 0],1))),4),5)",
    "io_inp": [
      2,
      -3,
      -4,
      -1,
      0
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(take(input,1))),4),5)"
  },
  {
    "input": "input : list = [-1, -1, 0, 4, -5, -2]\noutput : list = [4, 0, -1, -1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([-1, -1, 0, 4, -5, -2]))",
    "io_inp": [
      -1,
      -1,
      0,
      4,
      -5,
      -2
    ],
    "io_out": [
      4,
      0,
      -1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, -4, 4, -2, -1]\noutput : list = [4, 0, -1, -2, -4]",
    "output": "generated_output : list = sort_des([0, -4, 4, -2, -1])",
    "io_inp": [
      0,
      -4,
      4,
      -2,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5, 5, 4, 2, -1]\noutput : list = [-1, 2, 4]",
    "output": "generated_output : list = take(sort_asc(drop([-4, -5, 5, 4, 2, -1],3)),36)",
    "io_inp": [
      -4,
      -5,
      5,
      4,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,3)),36)"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [-4, 10, 10]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(reverse([5, -2, 5]),2))))",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      -4,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [3, 5, -2, -1]\noutput : list = [3, 1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(reverse([3, 5, -2, -1]),5),3)))",
    "io_inp": [
      3,
      5,
      -2,
      -1
    ],
    "io_out": [
      3,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(reverse(input),5),3)))"
  },
  {
    "input": "input : list = [-5, 2, 2, -4]\noutput : list = [2, 2, -4]",
    "output": "generated_output : list = drop([-5, 2, 2, -4],1)",
    "io_inp": [
      -5,
      2,
      2,
      -4
    ],
    "io_out": [
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 4, -3, -4, 1]\noutput : list = [-8, -7, -6, -2, 1]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc(sort_des([-5, 4, -3, -4, 1])),2),3),-4)",
    "io_inp": [
      -5,
      4,
      -3,
      -4,
      1
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(sort_des(input)),2),3),-4)"
  },
  {
    "input": "input : list = [4, -5, 0, 2, 4]\noutput : list = [-21, -13, -5, 15, -21]",
    "output": "generated_output : list = add_n(mul_n(take(reverse(mul_n([4, -5, 0, 2, 4],1)),25),-4),-5)",
    "io_inp": [
      4,
      -5,
      0,
      2,
      4
    ],
    "io_out": [
      -21,
      -13,
      -5,
      15,
      -21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(mul_n(input,1)),25),-4),-5)"
  },
  {
    "input": "input : list = [5, 1, 1]\noutput : list = [-20, -4, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([5, 1, 1]),-4))",
    "io_inp": [
      5,
      1,
      1
    ],
    "io_out": [
      -20,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [3, 5, 3, -5, 3]\noutput : list = [7, 9, 7, -1, 7]",
    "output": "generated_output : list = sub_n([3, 5, 3, -5, 3],-4)",
    "io_inp": [
      3,
      5,
      3,
      -5,
      3
    ],
    "io_out": [
      7,
      9,
      7,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-40, -80]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(mul_n([-2, -4],-4),-5))))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -40,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(mul_n(input,-4),-5))))"
  },
  {
    "input": "input : list = [3, -4, -3, -3, -3, 2]\noutput : list = [-25, -20, 5, 5, 5, 10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sort_des([3, -4, -3, -3, -3, 2]),-2),-5)))",
    "io_inp": [
      3,
      -4,
      -3,
      -3,
      -3,
      2
    ],
    "io_out": [
      -25,
      -20,
      5,
      5,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sort_des(input),-2),-5)))"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [-52, -92, -32]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(reverse([-1, -4, -2]),16),-5),-3),-4)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      -52,
      -92,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(reverse(input),16),-5),-3),-4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [8, -32]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(sort_asc([5, -5]),-3),21)),4)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      8,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(sort_asc(input),-3),21)),4)"
  },
  {
    "input": "input : list = [-3, -5, 2, -1, -1]\noutput : list = [2, -1, -1, -3, -5]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc([-3, -5, 2, -1, -1])),-1)),1)",
    "io_inp": [
      -3,
      -5,
      2,
      -1,
      -1
    ],
    "io_out": [
      2,
      -1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc(input)),-1)),1)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n([1, 2],4),-2))))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n(input,4),-2))))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(sort_des([0, -5]))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(mul_n([1, 0],-2),4)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),4)"
  },
  {
    "input": "input : list = [1, 1, -2, -3]\noutput : list = [-8, -7, -4, -4]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(sub_n([1, 1, -2, -3],5)))))",
    "io_inp": [
      1,
      1,
      -2,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(sub_n(input,5)))))"
  },
  {
    "input": "input : list = [-1, -5, -4, -4, 4]\noutput : list = [-6, -5, -5, -2, 3]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(sub_n([-1, -5, -4, -4, 4],-2)),33),-3))",
    "io_inp": [
      -1,
      -5,
      -4,
      -4,
      4
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(sub_n(input,-2)),33),-3))"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = drop([1, -2, -4],1)",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -4, -3, 3]\noutput : list = [-2, -8, -9, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des([-4, -4, -3, 3]),-5))",
    "io_inp": [
      -4,
      -4,
      -3,
      3
    ],
    "io_out": [
      -2,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-1, 0, 1, 4, -4, -3]\noutput : list = [3, 0, -1, -2, -4, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([-1, 0, 1, 4, -4, -3]),1))",
    "io_inp": [
      -1,
      0,
      1,
      4,
      -4,
      -3
    ],
    "io_out": [
      3,
      0,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [-5, -7, -9]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n(add_n([-5, -3, -1],-5),3)),5),2)",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(add_n(input,-5),3)),5),2)"
  },
  {
    "input": "input : list = [-1, 1, 2, -3, -5, -5]\noutput : list = [-2, 2, 4, -6, -10, -10]",
    "output": "generated_output : list = mul_n([-1, 1, 2, -3, -5, -5],2)",
    "io_inp": [
      -1,
      1,
      2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -2,
      2,
      4,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, -1, 2, -1]\noutput : list = [-8, -8, -8, -5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_asc([-1, -1, 2, -1])),-3),1),3)",
    "io_inp": [
      -1,
      -1,
      2,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_asc(input)),-3),1),3)"
  },
  {
    "input": "input : list = [5, -3, -3, -4]\noutput : list = [-4, -3, -3, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(sub_n([5, -3, -3, -4],3),-2)),1))",
    "io_inp": [
      5,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(sub_n(input,3),-2)),1))"
  },
  {
    "input": "input : list = [3, -4, 1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -4, 1],1)",
    "io_inp": [
      3,
      -4,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -1, -5, -2, -4]\noutput : list = [-2, -1, 1, 2, 7]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(reverse([4, -1, -5, -2, -4])),2)),1)",
    "io_inp": [
      4,
      -1,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(reverse(input)),2)),1)"
  },
  {
    "input": "input : list = [3, -4, -5, -1, -2]\noutput : list = [5, 25, 30, 40, 45]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_des([3, -4, -5, -1, -2]))),4),-5)",
    "io_inp": [
      3,
      -4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      5,
      25,
      30,
      40,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_des(input))),4),-5)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(add_n([0, -2],5),-1))),31)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(add_n(input,5),-1))),31)"
  },
  {
    "input": "input : list = [-2, -4, -3, 5]\noutput : list = [5, -3, -4, -2]",
    "output": "generated_output : list = take(take(reverse([-2, -4, -3, 5]),14),8)",
    "io_inp": [
      -2,
      -4,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),14),8)"
  },
  {
    "input": "input : list = [3, 0, -2, -4]\noutput : list = [-12, 0, 8, 16]",
    "output": "generated_output : list = mul_n([3, 0, -2, -4],-4)",
    "io_inp": [
      3,
      0,
      -2,
      -4
    ],
    "io_out": [
      -12,
      0,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-38, -29, 43]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(mul_n([-3, 5, -4],-3)),-3),2))",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -38,
      -29,
      43
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(mul_n(input,-3)),-3),2))"
  },
  {
    "input": "input : list = [-2, 5, 4, -4, 3, -5]\noutput : list = [-3, -2, 0, 5, 6, 7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc([-2, 5, 4, -4, 3, -5]))),1),3)",
    "io_inp": [
      -2,
      5,
      4,
      -4,
      3,
      -5
    ],
    "io_out": [
      -3,
      -2,
      0,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc(input))),1),3)"
  },
  {
    "input": "input : list = [4, 0, 1, -5, 0]\noutput : list = [4, 9, 9, 10, 13]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sub_n([4, 0, 1, -5, 0],-4),-5))))",
    "io_inp": [
      4,
      0,
      1,
      -5,
      0
    ],
    "io_out": [
      4,
      9,
      9,
      10,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sub_n(input,-4),-5))))"
  },
  {
    "input": "input : list = [0, 0, 2]\noutput : list = [-1, -1, 1]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(sort_asc([0, 0, 2]))),21),-1)",
    "io_inp": [
      0,
      0,
      2
    ],
    "io_out": [
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(sort_asc(input))),21),-1)"
  },
  {
    "input": "input : list = [-5, 4, 5, 1]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(drop([-5, 4, 5, 1],1)))))",
    "io_inp": [
      -5,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(reverse([-1, 1]),5)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [0, -1, 5, -1]\noutput : list = [-1, -1, 0, 5]",
    "output": "generated_output : list = take(sort_asc([0, -1, 5, -1]),11)",
    "io_inp": [
      0,
      -1,
      5,
      -1
    ],
    "io_out": [
      -1,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, 3]))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [5]",
    "output": "generated_output : list = take(take([5, 2, 5],1),12)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(input,1),12)"
  },
  {
    "input": "input : list = [4, -3, -5, 4, 4]\noutput : list = [4, 4, 4, -3, -5]",
    "output": "generated_output : list = sort_des([4, -3, -5, 4, 4])",
    "io_inp": [
      4,
      -3,
      -5,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, 5, 2, -4]\noutput : list = [6, 18, 24, 4, 10]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(sub_n([-2, -5, 5, 2, -4],-3),2),4),-4))",
    "io_inp": [
      -2,
      -5,
      5,
      2,
      -4
    ],
    "io_out": [
      6,
      18,
      24,
      4,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(sub_n(input,-3),2),4),-4))"
  },
  {
    "input": "input : list = [4, 5, 3, 0]\noutput : list = [-5, -6, -7, -10]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(sort_des([4, 5, 3, 0]),-5),5)))",
    "io_inp": [
      4,
      5,
      3,
      0
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(sort_des(input),-5),5)))"
  },
  {
    "input": "input : list = [0, -2, 1, -4, -1]\noutput : list = [5, 15, 0, 25, 10]",
    "output": "generated_output : list = mul_n(sub_n([0, -2, 1, -4, -1],1),-5)",
    "io_inp": [
      0,
      -2,
      1,
      -4,
      -1
    ],
    "io_out": [
      5,
      15,
      0,
      25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [3, -4, 5, -1]\noutput : list = [-8, -5, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc([3, -4, 5, -1]),4)",
    "io_inp": [
      3,
      -4,
      5,
      -1
    ],
    "io_out": [
      -8,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [1, 0, 2, -5, -1, 0]\noutput : list = [11, -1, -4, -4, -7, -10]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(reverse([1, 0, 2, -5, -1, 0])),-3),4))",
    "io_inp": [
      1,
      0,
      2,
      -5,
      -1,
      0
    ],
    "io_out": [
      11,
      -1,
      -4,
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(reverse(input)),-3),4))"
  },
  {
    "input": "input : list = [-1, -1, 0, 3, -1, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, 0, 3, -1, 3],1)",
    "io_inp": [
      -1,
      -1,
      0,
      3,
      -1,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 2, 3, 3, -4, 5]\noutput : list = [5, -4, 3, 3, 2, 0]",
    "output": "generated_output : list = reverse([0, 2, 3, 3, -4, 5])",
    "io_inp": [
      0,
      2,
      3,
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      3,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5, 0, -5, 4]\noutput : list = [4, -5, 0]",
    "output": "generated_output : list = take([4, -5, 0, -5, 4],3)",
    "io_inp": [
      4,
      -5,
      0,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [15, 10, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sort_des([2, 0, 3]),5))))",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      15,
      10,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [-2, 0, 4, -2]\noutput : list = [4, 0, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-2, 0, 4, -2]))",
    "io_inp": [
      -2,
      0,
      4,
      -2
    ],
    "io_out": [
      4,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 4, 3, 2, 1, 0]\noutput : list = [48, 43, 38, 33, 28, 23]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_asc([5, 4, 3, 2, 1, 0])),5),5),2)",
    "io_inp": [
      5,
      4,
      3,
      2,
      1,
      0
    ],
    "io_out": [
      48,
      43,
      38,
      33,
      28,
      23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_asc(input)),5),5),2)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(take([0, -2, -5],1),-3),14)),5)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(take(input,1),-3),14)),5)"
  },
  {
    "input": "input : list = [-4, 3, 2, 2, 5, 5]\noutput : list = [0, -120, -120, -140, -180, -180]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sub_n([-4, 3, 2, 2, 5, 5],-1)),3),5),-4)",
    "io_inp": [
      -4,
      3,
      2,
      2,
      5,
      5
    ],
    "io_out": [
      0,
      -120,
      -120,
      -140,
      -180,
      -180
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sub_n(input,-1)),3),5),-4)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-25, 5]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 1]),5)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-3, -5, -9]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(reverse([1, -3, -5]),-1),-5)),-3)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(reverse(input),-1),-5)),-3)"
  },
  {
    "input": "input : list = [-2, -3, -4, 2]\noutput : list = [-2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sort_des([-2, -3, -4, 2])),2)))",
    "io_inp": [
      -2,
      -3,
      -4,
      2
    ],
    "io_out": [
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-1, 1])),1)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [-1, -3, 2, -3, 1, -5]\noutput : list = [-7, -5, -5, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_asc([-1, -3, 2, -3, 1, -5]),4),-3),-1))",
    "io_inp": [
      -1,
      -3,
      2,
      -3,
      1,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_asc(input),4),-3),-1))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc([-2, -5])",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4, -5, -4]\noutput : list = [-33, -21, 63, 75]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(sort_asc([3, 4, -5, -4]),4)),5),-3)",
    "io_inp": [
      3,
      4,
      -5,
      -4
    ],
    "io_out": [
      -33,
      -21,
      63,
      75
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(sort_asc(input),4)),5),-3)"
  },
  {
    "input": "input : list = [4, 5, -5, -1, -2]\noutput : list = [-5, -2, -1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des([4, 5, -5, -1, -2]))))",
    "io_inp": [
      4,
      5,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = reverse(sort_asc([-1, 0, -1]))",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = drop([-3, -3, 1],1)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 2, 1, -2, 5, -4]\noutput : list = [-40, 20, 40, 80]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(take([4, 2, 1, -2, 5, -4],4)),4),5),42)",
    "io_inp": [
      4,
      2,
      1,
      -2,
      5,
      -4
    ],
    "io_out": [
      -40,
      20,
      40,
      80
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(take(input,4)),4),5),42)"
  },
  {
    "input": "input : list = [4, -5, 4, -4]\noutput : list = [-6]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(drop([4, -5, 4, -4],1),1)),1),34)",
    "io_inp": [
      4,
      -5,
      4,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(drop(input,1),1)),1),34)"
  },
  {
    "input": "input : list = [-4, 3, -5, -4, -3, 1]\noutput : list = [0, -7, -7, -8]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(take([-4, 3, -5, -4, -3, 1],4),1)),2),-1)",
    "io_inp": [
      -4,
      3,
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      0,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(take(input,4),1)),2),-1)"
  },
  {
    "input": "input : list = [2, -1, 2]\noutput : list = [-8, -5]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(drop([2, -1, 2],1),3),1),-5),2)",
    "io_inp": [
      2,
      -1,
      2
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(drop(input,1),3),1),-5),2)"
  },
  {
    "input": "input : list = [4, 0, 0, -5, 5, -4]\noutput : list = [-8, -7, -3, -3, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(sub_n([4, 0, 0, -5, 5, -4],2)),4)),3)",
    "io_inp": [
      4,
      0,
      0,
      -5,
      5,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -3,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(sub_n(input,2)),4)),3)"
  },
  {
    "input": "input : list = [-1, -1, 0, 5, -5, 3]\noutput : list = [-6, -5, 0, -10, -2]",
    "output": "generated_output : list = sub_n(drop([-1, -1, 0, 5, -5, 3],1),5)",
    "io_inp": [
      -1,
      -1,
      0,
      5,
      -5,
      3
    ],
    "io_out": [
      -6,
      -5,
      0,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [-1, 2, -5, 1]\noutput : list = [-4, -2, 2, 10]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des([-1, 2, -5, 1]))),-2)",
    "io_inp": [
      -1,
      2,
      -5,
      1
    ],
    "io_out": [
      -4,
      -2,
      2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [12, 11]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([1, 0],-5),-3),-3)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      12,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,-5),-3),-3)"
  },
  {
    "input": "input : list = [-1, 5, -1, 3, -4]\noutput : list = [-4, -1, -1, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sort_des([-1, 5, -1, 3, -4])),22)))",
    "io_inp": [
      -1,
      5,
      -1,
      3,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sort_des(input)),22)))"
  },
  {
    "input": "input : list = [3, -1, -5, 5, 1]\noutput : list = [-9, 3, 15, -15, -3]",
    "output": "generated_output : list = mul_n([3, -1, -5, 5, 1],-3)",
    "io_inp": [
      3,
      -1,
      -5,
      5,
      1
    ],
    "io_out": [
      -9,
      3,
      15,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5, 3, 5, -3]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(take([1, -5, 3, 5, -3],1),-4)),1),4)",
    "io_inp": [
      1,
      -5,
      3,
      5,
      -3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(take(input,1),-4)),1),4)"
  },
  {
    "input": "input : list = [3, -4, 4, -2, 2]\noutput : list = [4, 3, 2, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_asc([3, -4, 4, -2, 2])))))",
    "io_inp": [
      3,
      -4,
      4,
      -2,
      2
    ],
    "io_out": [
      4,
      3,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, -5, -4, 2, -3]\noutput : list = [4, -5, -4]",
    "output": "generated_output : list = take([4, -5, -4, 2, -3],3)",
    "io_inp": [
      4,
      -5,
      -4,
      2,
      -3
    ],
    "io_out": [
      4,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, 0, 5, -5]\noutput : list = [2, -3, -3, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(reverse([0, 0, 5, -5]))),3),13)",
    "io_inp": [
      0,
      0,
      5,
      -5
    ],
    "io_out": [
      2,
      -3,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(reverse(input))),3),13)"
  },
  {
    "input": "input : list = [-5, -4, -5, -2, 0]\noutput : list = [-4, -5, -2, 0]",
    "output": "generated_output : list = drop([-5, -4, -5, -2, 0],1)",
    "io_inp": [
      -5,
      -4,
      -5,
      -2,
      0
    ],
    "io_out": [
      -4,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [2, 2, 1]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(sort_des([2, 1, 2])),1),1))",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(sort_des(input)),1),1))"
  },
  {
    "input": "input : list = [-4, 5, 2, -1, -2, -5]\noutput : list = [-7, -6, -4, -3, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-4, 5, 2, -1, -2, -5]),-2))",
    "io_inp": [
      -4,
      5,
      2,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-1, 2, -1, 4, 2, -3]\noutput : list = [7, 4, 4]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(take([-1, 2, -1, 4, 2, -3],3)),-5),15))",
    "io_inp": [
      -1,
      2,
      -1,
      4,
      2,
      -3
    ],
    "io_out": [
      7,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(take(input,3)),-5),15))"
  },
  {
    "input": "input : list = [4, -4, 3, -4]\noutput : list = [-4, 3, -4, 4]",
    "output": "generated_output : list = reverse([4, -4, 3, -4])",
    "io_inp": [
      4,
      -4,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [3, 1, 4]",
    "output": "generated_output : list = sub_n([-2, -4, -1],-5)",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, -4, -5, 1, 0, 2]\noutput : list = [10, -20, -25, 5, 0, 10]",
    "output": "generated_output : list = reverse(mul_n(reverse([2, -4, -5, 1, 0, 2]),5))",
    "io_inp": [
      2,
      -4,
      -5,
      1,
      0,
      2
    ],
    "io_out": [
      10,
      -20,
      -25,
      5,
      0,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [1, 2, 0, 0, 2]\noutput : list = [2, 2, 1, 0, 0]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse([1, 2, 0, 0, 2])),10))",
    "io_inp": [
      1,
      2,
      0,
      0,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(input)),10))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse([5, 2]))))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [11, 6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(sort_des([0, 5]),-1),-3),4))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      11,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(sort_des(input),-1),-3),4))"
  },
  {
    "input": "input : list = [-2, 4, -3, 5, 2]\noutput : list = [9, 6, -6, -12, -15]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-2, 4, -3, 5, 2])),-3)",
    "io_inp": [
      -2,
      4,
      -3,
      5,
      2
    ],
    "io_out": [
      9,
      6,
      -6,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [-5, -3, 5, -1]\noutput : list = [-5, 1, -7, -9]",
    "output": "generated_output : list = add_n(reverse([-5, -3, 5, -1]),-4)",
    "io_inp": [
      -5,
      -3,
      5,
      -1
    ],
    "io_out": [
      -5,
      1,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [8, 6, 5]",
    "output": "generated_output : list = sort_des(take(sub_n([3, 1, 0],-5),5))",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      8,
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,-5),5))"
  },
  {
    "input": "input : list = [1, 3, -2, 0]\noutput : list = [-5, -3, -2, 0]",
    "output": "generated_output : list = reverse(sort_des(add_n(reverse(sort_asc([1, 3, -2, 0])),-3)))",
    "io_inp": [
      1,
      3,
      -2,
      0
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(reverse(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [0, -2, 4, 3, 0, 1]\noutput : list = [-2, 0, 0, 1, 3, 4]",
    "output": "generated_output : list = sort_asc([0, -2, 4, 3, 0, 1])",
    "io_inp": [
      0,
      -2,
      4,
      3,
      0,
      1
    ],
    "io_out": [
      -2,
      0,
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, -5, 0, 5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(drop([5, -4, -5, 0, 5],3),2),-3)))",
    "io_inp": [
      5,
      -4,
      -5,
      0,
      5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(drop(input,3),2),-3)))"
  },
  {
    "input": "input : list = [1, -3, -3, -4]\noutput : list = [-4, -3, -3, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(reverse([1, -3, -3, -4]),12)),32))",
    "io_inp": [
      1,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(reverse(input),12)),32))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [5, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(add_n([-5, 4],-1),10))),2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(add_n(input,-1),10))),2)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = mul_n(reverse([4, -2]),1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-3, -3, -4, -5, -2]\noutput : list = [-20, -16, -12, -12, -8]",
    "output": "generated_output : list = sort_asc(mul_n([-3, -3, -4, -5, -2],4))",
    "io_inp": [
      -3,
      -3,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -20,
      -16,
      -12,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(drop([-5, 0, -1],1),5))),-5)",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(drop(input,1),5))),-5)"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [10, 15]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(drop([-1, 3, -2],1),5),4),3))",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(drop(input,1),5),4),3))"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [2, 0]",
    "output": "generated_output : list = sub_n(reverse(drop([4, -3, -1],1)),-3)",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,1)),-3)"
  },
  {
    "input": "input : list = [0, 3, -5, 1, -2]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(take([0, 3, -5, 1, -2],2)),-1)))",
    "io_inp": [
      0,
      3,
      -5,
      1,
      -2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(take(input,2)),-1)))"
  },
  {
    "input": "input : list = [0, -4, -2, -3]\noutput : list = [-8, -7, -6]",
    "output": "generated_output : list = sort_asc(add_n(take(drop([0, -4, -2, -3],1),15),-4))",
    "io_inp": [
      0,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(drop(input,1),15),-4))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des([2, -2])",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(reverse([-2, -1])),1),1),10)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(reverse(input)),1),1),10)"
  },
  {
    "input": "input : list = [0, -2, -5, 5, 0, -2]\noutput : list = [-7, 3, -2, -4]",
    "output": "generated_output : list = reverse(reverse(sub_n(drop([0, -2, -5, 5, 0, -2],2),2)))",
    "io_inp": [
      0,
      -2,
      -5,
      5,
      0,
      -2
    ],
    "io_out": [
      -7,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(drop(input,2),2)))"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(add_n([4, 2, 3],-1))),-2),-5)",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(add_n(input,-1))),-2),-5)"
  },
  {
    "input": "input : list = [-4, 5, 2, 1]\noutput : list = [5, 2, 1, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(reverse([-4, 5, 2, 1])))),40)",
    "io_inp": [
      -4,
      5,
      2,
      1
    ],
    "io_out": [
      5,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(reverse(input)))),40)"
  },
  {
    "input": "input : list = [-1, -5, 3, -4]\noutput : list = [0, -4, 4, -3]",
    "output": "generated_output : list = add_n([-1, -5, 3, -4],1)",
    "io_inp": [
      -1,
      -5,
      3,
      -4
    ],
    "io_out": [
      0,
      -4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [2, 5, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(sort_asc([-3, 4, 0]),-5),24)))",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      2,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(sort_asc(input),-5),24)))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des([-3, 3])))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, 2, 5, -1]\noutput : list = [28, 10, -8, -26]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(mul_n([-4, 2, 5, -1],2),3)),2),-4)",
    "io_inp": [
      -4,
      2,
      5,
      -1
    ],
    "io_out": [
      28,
      10,
      -8,
      -26
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(mul_n(input,2),3)),2),-4)"
  },
  {
    "input": "input : list = [3, 0, -4, -5, -1]\noutput : list = [4, 16, 20, 32, 36]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(sub_n([3, 0, -4, -5, -1],5),4),-3)),-4)",
    "io_inp": [
      3,
      0,
      -4,
      -5,
      -1
    ],
    "io_out": [
      4,
      16,
      20,
      32,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(sub_n(input,5),4),-3)),-4)"
  },
  {
    "input": "input : list = [-2, 2, 2, -3, -4, 3]\noutput : list = [15, 11, 7, -9, -9, -13]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(sort_asc([-2, 2, 2, -3, -4, 3])),25),-4),-1)",
    "io_inp": [
      -2,
      2,
      2,
      -3,
      -4,
      3
    ],
    "io_out": [
      15,
      11,
      7,
      -9,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(sort_asc(input)),25),-4),-1)"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(take([5, -3, -5],1)))",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-20, 8, -12]",
    "output": "generated_output : list = mul_n(sub_n([-3, 4, -1],2),4)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -20,
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(add_n([-3, -2],-1),7),2)))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(add_n(input,-1),7),2)))"
  },
  {
    "input": "input : list = [3, -2, -4, -1, 2, 4]\noutput : list = [-7, -5, -4, -1, 0, 1]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(add_n([3, -2, -4, -1, 2, 4],4),4)),-3),28)",
    "io_inp": [
      3,
      -2,
      -4,
      -1,
      2,
      4
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(add_n(input,4),4)),-3),28)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = mul_n(sort_des([3, -3, 2]),-1)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [3, -4, 3, 1, -4, 0]\noutput : list = [20, 12]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(drop([3, -4, 3, 1, -4, 0],4),-5),-1),-2),4)",
    "io_inp": [
      3,
      -4,
      3,
      1,
      -4,
      0
    ],
    "io_out": [
      20,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(drop(input,4),-5),-1),-2),4)"
  },
  {
    "input": "input : list = [0, -1, -1, 4]\noutput : list = [-7, -7, -4, 8]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(sort_asc([0, -1, -1, 4]),3),-4)))",
    "io_inp": [
      0,
      -1,
      -1,
      4
    ],
    "io_out": [
      -7,
      -7,
      -4,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(sort_asc(input),3),-4)))"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [10, 3, 3]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_des([-2, 5, 5])),-3),-1),-5)",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      10,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_des(input)),-3),-1),-5)"
  },
  {
    "input": "input : list = [-3, 4, 3, -4, 5]\noutput : list = [-9, 9, -5, -7, 7]",
    "output": "generated_output : list = reverse(add_n(mul_n([-3, 4, 3, -4, 5],-2),1))",
    "io_inp": [
      -3,
      4,
      3,
      -4,
      5
    ],
    "io_out": [
      -9,
      9,
      -5,
      -7,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-2),1))"
  },
  {
    "input": "input : list = [-5, 2, -4, -5, -5]\noutput : list = [20, -8, 16, 20, 20]",
    "output": "generated_output : list = mul_n([-5, 2, -4, -5, -5],-4)",
    "io_inp": [
      -5,
      2,
      -4,
      -5,
      -5
    ],
    "io_out": [
      20,
      -8,
      16,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [24, 24]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(mul_n([-4, -4],-5),4)),23))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(mul_n(input,-5),4)),23))"
  },
  {
    "input": "input : list = [2, -5, -5, 5]\noutput : list = [4, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(take(drop([2, -5, -5, 5],1),10)),1),2)",
    "io_inp": [
      2,
      -5,
      -5,
      5
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(drop(input,1),10)),1),2)"
  },
  {
    "input": "input : list = [3, -5, -3, -4, 2]\noutput : list = [1, 0, -5, -6, -7]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(reverse([3, -5, -3, -4, 2]))),-2),-4)",
    "io_inp": [
      3,
      -5,
      -3,
      -4,
      2
    ],
    "io_out": [
      1,
      0,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(reverse(input))),-2),-4)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-5]",
    "output": "generated_output : list = take(reverse(take([-5, 1, -3],1)),12)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),12)"
  },
  {
    "input": "input : list = [-3, -4, 1, -3, -3]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(take([-3, -4, 1, -3, -3],1),21),5)),-5)",
    "io_inp": [
      -3,
      -4,
      1,
      -3,
      -3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(take(input,1),21),5)),-5)"
  },
  {
    "input": "input : list = [-3, 5, -3, 1]\noutput : list = [40, 40, 120, 200]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(sort_asc([-3, 5, -3, 1]),3),2),5),4)",
    "io_inp": [
      -3,
      5,
      -3,
      1
    ],
    "io_out": [
      40,
      40,
      120,
      200
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(sort_asc(input),3),2),5),4)"
  },
  {
    "input": "input : list = [2, -1, -1, 4, 1, -2]\noutput : list = [-2, -2, 3, 0, -3]",
    "output": "generated_output : list = sub_n(add_n(drop(reverse(reverse([2, -1, -1, 4, 1, -2])),1),3),4)",
    "io_inp": [
      2,
      -1,
      -1,
      4,
      1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(reverse(reverse(input)),1),3),4)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [-5, -3, 1]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(sort_asc([-5, -3, 1])))),45)",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(sort_asc(input)))),45)"
  },
  {
    "input": "input : list = [4, 1, 2, 0, 0, 1]\noutput : list = [0, 0, 5, 5, 10, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_des([4, 1, 2, 0, 0, 1]))),5))",
    "io_inp": [
      4,
      1,
      2,
      0,
      0,
      1
    ],
    "io_out": [
      0,
      0,
      5,
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_des(input))),5))"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [-7, 0, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(mul_n([-4, -2, 5],-1))),27),-2)",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      -7,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(mul_n(input,-1))),27),-2)"
  },
  {
    "input": "input : list = [2, -1, 5, -4, 3, 4]\noutput : list = [-7, -4, -1, 0, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(add_n([2, -1, 5, -4, 3, 4],-4),-1))))",
    "io_inp": [
      2,
      -1,
      5,
      -4,
      3,
      4
    ],
    "io_out": [
      -7,
      -4,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(add_n(input,-4),-1))))"
  },
  {
    "input": "input : list = [4, 4, -1]\noutput : list = [7, 7, 2]",
    "output": "generated_output : list = sub_n([4, 4, -1],-3)",
    "io_inp": [
      4,
      4,
      -1
    ],
    "io_out": [
      7,
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [5, 3, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_des([4, 2, 1]),10))),-1)",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_des(input),10))),-1)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(drop([0, 4, 2],1)))))",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [-2, -4, 1, 5]\noutput : list = [-4, 1, 5]",
    "output": "generated_output : list = drop([-2, -4, 1, 5],1)",
    "io_inp": [
      -2,
      -4,
      1,
      5
    ],
    "io_out": [
      -4,
      1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -1, 3, 4, 0]\noutput : list = [3, -9, -13, -25, -29]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(mul_n([-4, -1, 3, 4, 0],-4),-3)),5),5)",
    "io_inp": [
      -4,
      -1,
      3,
      4,
      0
    ],
    "io_out": [
      3,
      -9,
      -13,
      -25,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(mul_n(input,-4),-3)),5),5)"
  },
  {
    "input": "input : list = [-4, -5, 2, -2, -4, 0]\noutput : list = [-120, -100, -100, -60, -20, 20]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sort_asc([-4, -5, 2, -2, -4, 0])),4),4),5)",
    "io_inp": [
      -4,
      -5,
      2,
      -2,
      -4,
      0
    ],
    "io_out": [
      -120,
      -100,
      -100,
      -60,
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sort_asc(input)),4),4),5)"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc([2, 0, 4]))),7)",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(input))),7)"
  },
  {
    "input": "input : list = [-5, 3, -1, -1, 5]\noutput : list = [12, 10, 6, 6, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des(add_n([-5, 3, -1, -1, 5],5))),-5),-3)",
    "io_inp": [
      -5,
      3,
      -1,
      -1,
      5
    ],
    "io_out": [
      12,
      10,
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(add_n(input,5))),-5),-3)"
  },
  {
    "input": "input : list = [-1, 2, 3, 0, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(take([-1, 2, 3, 0, -3],1),-3),-1),-4))",
    "io_inp": [
      -1,
      2,
      3,
      0,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(take(input,1),-3),-1),-4))"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [5, 4, -3]",
    "output": "generated_output : list = sort_des(sort_asc([4, 5, -3]))",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -1, 4, 2, 4]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(take([1, -1, 4, 2, 4],1)))))",
    "io_inp": [
      1,
      -1,
      4,
      2,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-4, -3, 5]",
    "output": "generated_output : list = add_n(add_n([-4, -3, 5],-3),3)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),3)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-6, -15]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sort_des([0, -3]),2)),3))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -6,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sort_des(input),2)),3))"
  },
  {
    "input": "input : list = [5, -1, 5, -2, -1]\noutput : list = [2, -4, 2, -5, -4]",
    "output": "generated_output : list = add_n([5, -1, 5, -2, -1],-3)",
    "io_inp": [
      5,
      -1,
      5,
      -2,
      -1
    ],
    "io_out": [
      2,
      -4,
      2,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5, 1, 2, 0, 1]\noutput : list = [1, 0, 2, 1, -5, 1]",
    "output": "generated_output : list = reverse([1, -5, 1, 2, 0, 1])",
    "io_inp": [
      1,
      -5,
      1,
      2,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      2,
      1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -1, 0, -5, 2]\noutput : list = [-3, 0, 1, -4, 3]",
    "output": "generated_output : list = take(sub_n([-4, -1, 0, -5, 2],-1),15)",
    "io_inp": [
      -4,
      -1,
      0,
      -5,
      2
    ],
    "io_out": [
      -3,
      0,
      1,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),15)"
  },
  {
    "input": "input : list = [1, -4, 5, 4, -5]\noutput : list = [8, -32, 40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(take([1, -4, 5, 4, -5],3))),4),2)",
    "io_inp": [
      1,
      -4,
      5,
      4,
      -5
    ],
    "io_out": [
      8,
      -32,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(take(input,3))),4),2)"
  },
  {
    "input": "input : list = [0, -3, -2, 2, 4]\noutput : list = [-4, -7, -6, -2, 0]",
    "output": "generated_output : list = add_n([0, -3, -2, 2, 4],-4)",
    "io_inp": [
      0,
      -3,
      -2,
      2,
      4
    ],
    "io_out": [
      -4,
      -7,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [3, 6, -15]",
    "output": "generated_output : list = mul_n([1, 2, -5],3)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      3,
      6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, -2, 4, 4, -4]\noutput : list = [-3, -3, -27, -31, -35]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_des(sort_asc([-3, -2, 4, 4, -4])),4),4),3)",
    "io_inp": [
      -3,
      -2,
      4,
      4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -27,
      -31,
      -35
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_des(sort_asc(input)),4),4),3)"
  },
  {
    "input": "input : list = [2, -4, 1]\noutput : list = [2, -3, 3]",
    "output": "generated_output : list = add_n(reverse(add_n([2, -4, 1],-4)),5)",
    "io_inp": [
      2,
      -4,
      1
    ],
    "io_out": [
      2,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,-4)),5)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-6, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-5, -2],3)))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -6,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,3)))"
  },
  {
    "input": "input : list = [4, -1, 0, 3, 3]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(drop(sort_des(sort_asc(sub_n([4, -1, 0, 3, 3],4))),3))",
    "io_inp": [
      4,
      -1,
      0,
      3,
      3
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_des(sort_asc(sub_n(input,4))),3))"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [4, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc([-2, 4, -5]))",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -1, -4, -5, 2, 1]\noutput : list = [-4, -1, -4]",
    "output": "generated_output : list = take([-4, -1, -4, -5, 2, 1],3)",
    "io_inp": [
      -4,
      -1,
      -4,
      -5,
      2,
      1
    ],
    "io_out": [
      -4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, -1, 2, -5]\noutput : list = [160, 120, 60, -20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(add_n([4, -1, 2, -5],4),-5)),2),-2)",
    "io_inp": [
      4,
      -1,
      2,
      -5
    ],
    "io_out": [
      160,
      120,
      60,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(add_n(input,4),-5)),2),-2)"
  },
  {
    "input": "input : list = [3, -4, 5, -1, -1, -4]\noutput : list = [-8, -8, -5, -5, -1, 1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des([3, -4, 5, -1, -1, -4]),4)))",
    "io_inp": [
      3,
      -4,
      5,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -5,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(input),4)))"
  },
  {
    "input": "input : list = [-1, 5, -3, 5, 5]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(take([-1, 5, -3, 5, 5],1),2),-3),2),3)",
    "io_inp": [
      -1,
      5,
      -3,
      5,
      5
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(take(input,1),2),-3),2),3)"
  },
  {
    "input": "input : list = [4, 3, 1]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 3, 1])",
    "io_inp": [
      4,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 0, -5, 1, -2]\noutput : list = [-125, -100, -50, 0, 25]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(mul_n([-4, 0, -5, 1, -2],-5),10),-1)),5)",
    "io_inp": [
      -4,
      0,
      -5,
      1,
      -2
    ],
    "io_out": [
      -125,
      -100,
      -50,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(mul_n(input,-5),10),-1)),5)"
  },
  {
    "input": "input : list = [-3, 2, 1, -1]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(take([-3, 2, 1, -1],1),1)),4),3)",
    "io_inp": [
      -3,
      2,
      1,
      -1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(take(input,1),1)),4),3)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des([-4, 1])",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([4, 4])),1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-2, 3, 2, -1, 3]\noutput : list = [6, 3, -6, -9, -9]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sort_des([-2, 3, 2, -1, 3]),-3))))",
    "io_inp": [
      -2,
      3,
      2,
      -1,
      3
    ],
    "io_out": [
      6,
      3,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [2, 3, -4, 0]\noutput : list = [15, 10]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(take([2, 3, -4, 0],2),5),3)))",
    "io_inp": [
      2,
      3,
      -4,
      0
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(take(input,2),5),3)))"
  },
  {
    "input": "input : list = [0, 1, 2, -4, 2]\noutput : list = [80, 0, -20, -40, -40]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(mul_n([0, 1, 2, -4, 2],1),-5),4)))",
    "io_inp": [
      0,
      1,
      2,
      -4,
      2
    ],
    "io_out": [
      80,
      0,
      -20,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(mul_n(input,1),-5),4)))"
  },
  {
    "input": "input : list = [0, 1, 1, -4, 2, 2]\noutput : list = [5, 5, 4, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse(drop(reverse([0, 1, 1, -4, 2, 2]),2))),4)",
    "io_inp": [
      0,
      1,
      1,
      -4,
      2,
      2
    ],
    "io_out": [
      5,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(drop(reverse(input),2))),4)"
  },
  {
    "input": "input : list = [4, 5, -2, -4, 0, -3]\noutput : list = [-3, 0, -4, -2, 5, 4]",
    "output": "generated_output : list = mul_n(reverse([4, 5, -2, -4, 0, -3]),1)",
    "io_inp": [
      4,
      5,
      -2,
      -4,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      -4,
      -2,
      5,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [-5, -2, -3]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sub_n([-3, 0, -1],-1),2),-5),4),-4)",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sub_n(input,-1),2),-5),4),-4)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sort_asc([-4, 1])))))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 2, -3, 4]\noutput : list = [-1, 5, 0, 7]",
    "output": "generated_output : list = add_n([-4, 2, -3, 4],3)",
    "io_inp": [
      -4,
      2,
      -3,
      4
    ],
    "io_out": [
      -1,
      5,
      0,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, -3, -1, 0, 2]\noutput : list = [-2, 0, 2, 4, 8]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(sort_des([-2, -3, -1, 0, 2])),2),4),11)",
    "io_inp": [
      -2,
      -3,
      -1,
      0,
      2
    ],
    "io_out": [
      -2,
      0,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(sort_des(input)),2),4),11)"
  },
  {
    "input": "input : list = [-1, 0, 4, -2, -4, -2]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop([-1, 0, 4, -2, -4, -2],4),5))))",
    "io_inp": [
      -1,
      0,
      4,
      -2,
      -4,
      -2
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop(input,4),5))))"
  },
  {
    "input": "input : list = [5, -3, -2, 2, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(drop([5, -3, -2, 2, -4, -4],4))",
    "io_inp": [
      5,
      -3,
      -2,
      2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,4))"
  },
  {
    "input": "input : list = [1, -5, -4, -5]\noutput : list = [1, -4, -5, -5]",
    "output": "generated_output : list = sort_des([1, -5, -4, -5])",
    "io_inp": [
      1,
      -5,
      -4,
      -5
    ],
    "io_out": [
      1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -4, -4],1)",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -3, -1, -2, -3]\noutput : list = [-7, -7, -3, 1, 25]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(mul_n([5, -3, -1, -2, -3],2)),2),5),16)",
    "io_inp": [
      5,
      -3,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -3,
      1,
      25
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(mul_n(input,2)),2),5),16)"
  },
  {
    "input": "input : list = [0, -3, 4, -2, -2, 2]\noutput : list = [4, -11, 24, -6]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(take([0, -3, 4, -2, -2, 2],4),27),5),4),1)",
    "io_inp": [
      0,
      -3,
      4,
      -2,
      -2,
      2
    ],
    "io_out": [
      4,
      -11,
      24,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(take(input,4),27),5),4),1)"
  },
  {
    "input": "input : list = [1, 0, -1, 1, 1, 4]\noutput : list = [1, 0, -1, 1]",
    "output": "generated_output : list = take(take(take([1, 0, -1, 1, 1, 4],4),9),12)",
    "io_inp": [
      1,
      0,
      -1,
      1,
      1,
      4
    ],
    "io_out": [
      1,
      0,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(take(take(input,4),9),12)"
  },
  {
    "input": "input : list = [4, 0, 5, -3]\noutput : list = [-2, -10, 0, -16]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sub_n([4, 0, 5, -3],5),2),2),1),2)",
    "io_inp": [
      4,
      0,
      5,
      -3
    ],
    "io_out": [
      -2,
      -10,
      0,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sub_n(input,5),2),2),1),2)"
  },
  {
    "input": "input : list = [-2, -1, 2]\noutput : list = [-7, -6, -3]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(reverse([-2, -1, 2]),13)),-5))",
    "io_inp": [
      -2,
      -1,
      2
    ],
    "io_out": [
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(reverse(input),13)),-5))"
  },
  {
    "input": "input : list = [4, 2, 1, -4]\noutput : list = [16, 8, 4, -16]",
    "output": "generated_output : list = mul_n([4, 2, 1, -4],4)",
    "io_inp": [
      4,
      2,
      1,
      -4
    ],
    "io_out": [
      16,
      8,
      4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [0, 4, 0, -4]\noutput : list = [7, 3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(take([0, 4, 0, -4],2),13),-4)),-1)",
    "io_inp": [
      0,
      4,
      0,
      -4
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(take(input,2),13),-4)),-1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-16, -20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des([1, 0]),-5),4)))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des(input),-5),4)))"
  },
  {
    "input": "input : list = [5, 5, 1, -4, -2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 5, 1, -4, -2],1)",
    "io_inp": [
      5,
      5,
      1,
      -4,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(mul_n([-2, -5],1))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sub_n([3, 3],-2))),-5),3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sub_n(input,-2))),-5),3)"
  },
  {
    "input": "input : list = [3, -1, 1, 2]\noutput : list = [-1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(sort_des([3, -1, 1, 2]),9),20)))",
    "io_inp": [
      3,
      -1,
      1,
      2
    ],
    "io_out": [
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(sort_des(input),9),20)))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(reverse([-4, 1])),3)),30)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(reverse(input)),3)),30)"
  },
  {
    "input": "input : list = [-4, 3, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n(take(sort_asc(take(drop([-4, 3, 4],1),11)),29),1)",
    "io_inp": [
      -4,
      3,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(drop(input,1),11)),29),1)"
  },
  {
    "input": "input : list = [4, 1, 4, 1]\noutput : list = [5, 5, 2, 2]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(reverse([4, 1, 4, 1]),1))),28)",
    "io_inp": [
      4,
      1,
      4,
      1
    ],
    "io_out": [
      5,
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(reverse(input),1))),28)"
  },
  {
    "input": "input : list = [-3, 0, 3, -1]\noutput : list = [-9, -1]",
    "output": "generated_output : list = take(take(sub_n(mul_n(drop([-3, 0, 3, -1],2),-2),3),37),41)",
    "io_inp": [
      -3,
      0,
      3,
      -1
    ],
    "io_out": [
      -9,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(drop(input,2),-2),3),37),41)"
  },
  {
    "input": "input : list = [1, 3, 2, -5, 5]\noutput : list = [5, 3, 2, 1, -5]",
    "output": "generated_output : list = take(take(sort_des([1, 3, 2, -5, 5]),16),21)",
    "io_inp": [
      1,
      3,
      2,
      -5,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),16),21)"
  },
  {
    "input": "input : list = [5, 4, 5, -3, 4, 3]\noutput : list = [5, 4, 5, -3]",
    "output": "generated_output : list = take(take(take(take([5, 4, 5, -3, 4, 3],4),6),14),28)",
    "io_inp": [
      5,
      4,
      5,
      -3,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(take(take(take(input,4),6),14),28)"
  },
  {
    "input": "input : list = [-4, 4, 1]\noutput : list = [-2, 6, 3]",
    "output": "generated_output : list = sub_n([-4, 4, 1],-2)",
    "io_inp": [
      -4,
      4,
      1
    ],
    "io_out": [
      -2,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 3, -4, -2, -4]\noutput : list = [0, 8, 1, 3, 1]",
    "output": "generated_output : list = sub_n(take(take(sub_n(sub_n([-5, 3, -4, -2, -4],-5),5),34),28),-5)",
    "io_inp": [
      -5,
      3,
      -4,
      -2,
      -4
    ],
    "io_out": [
      0,
      8,
      1,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(sub_n(input,-5),5),34),28),-5)"
  },
  {
    "input": "input : list = [-2, 4, -5, 1]\noutput : list = [-4, 5, -1]",
    "output": "generated_output : list = mul_n(drop([-2, 4, -5, 1],1),-1)",
    "io_inp": [
      -2,
      4,
      -5,
      1
    ],
    "io_out": [
      -4,
      5,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [0, 2, 5, 4]\noutput : list = [0, 4, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([0, 2, 5, 4]),2))",
    "io_inp": [
      0,
      2,
      5,
      4
    ],
    "io_out": [
      0,
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [-3, -5, 1, 3]\noutput : list = [-7, -5, -1, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(sub_n([-3, -5, 1, 3],-3),-1)),-4))",
    "io_inp": [
      -3,
      -5,
      1,
      3
    ],
    "io_out": [
      -7,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(sub_n(input,-3),-1)),-4))"
  },
  {
    "input": "input : list = [-3, 5, -1, 1, 3, -3]\noutput : list = [20, 12, 4, -4, -12, -12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-3, 5, -1, 1, 3, -3])),4)",
    "io_inp": [
      -3,
      5,
      -1,
      1,
      3,
      -3
    ],
    "io_out": [
      20,
      12,
      4,
      -4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [4, 3, 5, 5, -3, -3]\noutput : list = [-4, -7, -10, -10]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(take([4, 3, 5, 5, -3, -3],4),3),-3),-4))",
    "io_inp": [
      4,
      3,
      5,
      5,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -7,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(take(input,4),3),-3),-4))"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [11, 9, 6]",
    "output": "generated_output : list = sub_n(take(take(sub_n([1, -1, -4],-5),5),15),-5)",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      11,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(input,-5),5),15),-5)"
  },
  {
    "input": "input : list = [3, -1, -3, 2]\noutput : list = [2, -3, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, -3, 2])",
    "io_inp": [
      3,
      -1,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-32, -112]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n([3, -2],5),-4))),-4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -32,
      -112
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n(input,5),-4))),-4)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc([-2, 2, -2]),-2)))",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(input),-2)))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [15, -25]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc([-5, 3]))),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(input))),5)"
  },
  {
    "input": "input : list = [-5, 2, -3, -5]\noutput : list = [-7, 0, -5, -7]",
    "output": "generated_output : list = add_n([-5, 2, -3, -5],-2)",
    "io_inp": [
      -5,
      2,
      -3,
      -5
    ],
    "io_out": [
      -7,
      0,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [-4, 4, 28]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc([-5, 3, 1]),2),-4))",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      -4,
      4,
      28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(input),2),-4))"
  },
  {
    "input": "input : list = [4, 1, -3, -5, 0]\noutput : list = [-5, -3, 0, 1, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse([4, 1, -3, -5, 0]))),39)",
    "io_inp": [
      4,
      1,
      -3,
      -5,
      0
    ],
    "io_out": [
      -5,
      -3,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(input))),39)"
  },
  {
    "input": "input : list = [0, 1, 3, -1, -1, -5]\noutput : list = [-108, -36, 0, 36, 36, 180]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(mul_n([0, 1, 3, -1, -1, -5],-4)),-3),-3))",
    "io_inp": [
      0,
      1,
      3,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -108,
      -36,
      0,
      36,
      36,
      180
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(mul_n(input,-4)),-3),-3))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-14, -8]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_des([-4, -1]),4),2),2))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -14,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_des(input),4),2),2))"
  },
  {
    "input": "input : list = [-4, 4, 5, -2, 2]\noutput : list = [-8, 0, 1, -6, -2]",
    "output": "generated_output : list = sub_n([-4, 4, 5, -2, 2],4)",
    "io_inp": [
      -4,
      4,
      5,
      -2,
      2
    ],
    "io_out": [
      -8,
      0,
      1,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [-3, 0, -15]",
    "output": "generated_output : list = mul_n([1, 0, 5],-3)",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      -3,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 1, 0, -1, 4, -3]\noutput : list = [4, 0, -1, -3]",
    "output": "generated_output : list = sort_des(take(drop([-2, 1, 0, -1, 4, -3],2),9))",
    "io_inp": [
      -2,
      1,
      0,
      -1,
      4,
      -3
    ],
    "io_out": [
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,2),9))"
  },
  {
    "input": "input : list = [-1, -3, -4, -2]\noutput : list = [0, -2, -3, -1]",
    "output": "generated_output : list = sub_n([-1, -3, -4, -2],-1)",
    "io_inp": [
      -1,
      -3,
      -4,
      -2
    ],
    "io_out": [
      0,
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-16, 0, 2]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(add_n([-3, 5, -4],3)),28),-2))",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -16,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(add_n(input,3)),28),-2))"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(take([-5, 0, 5],1),2)),24),-2)",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(take(input,1),2)),24),-2)"
  },
  {
    "input": "input : list = [5, -2, -4, 2, -5, 2]\noutput : list = [-5, -4, -2, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse([5, -2, -4, 2, -5, 2]))",
    "io_inp": [
      5,
      -2,
      -4,
      2,
      -5,
      2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-4, 3, 2, -4, 1]\noutput : list = [3, 2, 1, -4, -4]",
    "output": "generated_output : list = sort_des([-4, 3, 2, -4, 1])",
    "io_inp": [
      -4,
      3,
      2,
      -4,
      1
    ],
    "io_out": [
      3,
      2,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, -3, 0, 1, -4]\noutput : list = [5, 5, 20, 5, 0, 25]",
    "output": "generated_output : list = mul_n(sub_n([0, 0, -3, 0, 1, -4],1),-5)",
    "io_inp": [
      0,
      0,
      -3,
      0,
      1,
      -4
    ],
    "io_out": [
      5,
      5,
      20,
      5,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [-1, -5, 2, 3, 0, -2]\noutput : list = [2, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(take([-1, -5, 2, 3, 0, -2],3)))",
    "io_inp": [
      -1,
      -5,
      2,
      3,
      0,
      -2
    ],
    "io_out": [
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,3)))"
  },
  {
    "input": "input : list = [2, 3, 3, 2, 2, 0]\noutput : list = [5, 7, 7, 8, 8, 7]",
    "output": "generated_output : list = sub_n(add_n(reverse([2, 3, 3, 2, 2, 0]),1),-4)",
    "io_inp": [
      2,
      3,
      3,
      2,
      2,
      0
    ],
    "io_out": [
      5,
      7,
      7,
      8,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),1),-4)"
  },
  {
    "input": "input : list = [1, -2, 1, 3]\noutput : list = [1, -2, 1, 3]",
    "output": "generated_output : list = take(mul_n([1, -2, 1, 3],1),8)",
    "io_inp": [
      1,
      -2,
      1,
      3
    ],
    "io_out": [
      1,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,1),8)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [15, -25]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sort_des([-3, 5]),-5))))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [1, 2, 4, 4, -3, 3]\noutput : list = [8, 4, -4, -4, 24, 0]",
    "output": "generated_output : list = take(mul_n(add_n([1, 2, 4, 4, -3, 3],-3),-4),18)",
    "io_inp": [
      1,
      2,
      4,
      4,
      -3,
      3
    ],
    "io_out": [
      8,
      4,
      -4,
      -4,
      24,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-3),-4),18)"
  },
  {
    "input": "input : list = [-3, -5, -4, 1, -2]\noutput : list = [0, -3, -4, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(add_n([-3, -5, -4, 1, -2],-4))),-3))",
    "io_inp": [
      -3,
      -5,
      -4,
      1,
      -2
    ],
    "io_out": [
      0,
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(add_n(input,-4))),-3))"
  },
  {
    "input": "input : list = [2, -1, 0, 2, 3]\noutput : list = [4, 1, 2, 4, 5]",
    "output": "generated_output : list = add_n([2, -1, 0, 2, 3],2)",
    "io_inp": [
      2,
      -1,
      0,
      2,
      3
    ],
    "io_out": [
      4,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, 0, 1, 4, -5, 3]\noutput : list = [1, 4, -5, 3]",
    "output": "generated_output : list = drop([-1, 0, 1, 4, -5, 3],2)",
    "io_inp": [
      -1,
      0,
      1,
      4,
      -5,
      3
    ],
    "io_out": [
      1,
      4,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 3, 0, 5, 0]\noutput : list = [5, 3, 0, 0, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 0, 5, 0])",
    "io_inp": [
      -5,
      3,
      0,
      5,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, -1]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = add_n(take(take(take(sort_asc([-5, 1, -1]),12),23),4),1)",
    "io_inp": [
      -5,
      1,
      -1
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(take(sort_asc(input),12),23),4),1)"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [-3, 1, -5]",
    "output": "generated_output : list = take(add_n([1, 5, -1],-4),15)",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      -3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),15)"
  },
  {
    "input": "input : list = [1, -3, 1, 0, -4]\noutput : list = [-4, -3, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(add_n([1, -3, 1, 0, -4],2)),29),2))",
    "io_inp": [
      1,
      -3,
      1,
      0,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(add_n(input,2)),29),2))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(sub_n([-3, 0],1),4),-1)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(sub_n(input,1),4),-1)))"
  },
  {
    "input": "input : list = [1, -2, -5, -2]\noutput : list = [125, 50, 50, -25]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(sort_asc([1, -2, -5, -2]),-4),5)),5)",
    "io_inp": [
      1,
      -2,
      -5,
      -2
    ],
    "io_out": [
      125,
      50,
      50,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(sort_asc(input),-4),5)),5)"
  },
  {
    "input": "input : list = [0, -1, -2, -2]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = drop([0, -1, -2, -2],1)",
    "io_inp": [
      0,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 1, 5, 5, 1, -1]\noutput : list = [-5, -2, 0, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n([-4, 1, 5, 5, 1, -1],1))",
    "io_inp": [
      -4,
      1,
      5,
      5,
      1,
      -1
    ],
    "io_out": [
      -5,
      -2,
      0,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [-7]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(take([0, -2, 2],1),-4)),3))",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(take(input,1),-4)),3))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-10, 0]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse([-2, 0]),5)),4),-4)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse(input),5)),4),-4)"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [55, -25, -65]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n([-1, -3, 3],-5),-4),5))",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      55,
      -25,
      -65
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(input,-5),-4),5))"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [0, -16, 0]",
    "output": "generated_output : list = add_n(mul_n([1, 5, 1],-4),4)",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      0,
      -16,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),4)"
  },
  {
    "input": "input : list = [2, 3, 3, 4, 2, -3]\noutput : list = [1, -1, -6]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(drop([2, 3, 3, 4, 2, -3],3)),12),-3))",
    "io_inp": [
      2,
      3,
      3,
      4,
      2,
      -3
    ],
    "io_out": [
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(drop(input,3)),12),-3))"
  },
  {
    "input": "input : list = [3, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([3, -3, -3],1)",
    "io_inp": [
      3,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [-21, -15, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(add_n([-1, 5, -3],-4)),3)))",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      -21,
      -15,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(add_n(input,-4)),3)))"
  },
  {
    "input": "input : list = [3, 2, 3, -4]\noutput : list = [14, 9, 14, -21]",
    "output": "generated_output : list = take(sub_n(add_n(take(mul_n([3, 2, 3, -4],5),18),4),5),33)",
    "io_inp": [
      3,
      2,
      3,
      -4
    ],
    "io_out": [
      14,
      9,
      14,
      -21
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(mul_n(input,5),18),4),5),33)"
  },
  {
    "input": "input : list = [-5, -1, 3, -2]\noutput : list = [8, 4, 0, 5]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(mul_n([-5, -1, 3, -2],-1),14),-3)))",
    "io_inp": [
      -5,
      -1,
      3,
      -2
    ],
    "io_out": [
      8,
      4,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(mul_n(input,-1),14),-3)))"
  },
  {
    "input": "input : list = [1, 0, 3, 4]\noutput : list = [-12, 0, 24, 36]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(sort_des([1, 0, 3, 4]),3)),3),4)",
    "io_inp": [
      1,
      0,
      3,
      4
    ],
    "io_out": [
      -12,
      0,
      24,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(sort_des(input),3)),3),4)"
  },
  {
    "input": "input : list = [-2, -1, -1, 0, -3]\noutput : list = [16, 12, 8, 8, 4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n([-2, -1, -1, 0, -3],1),-4)))",
    "io_inp": [
      -2,
      -1,
      -1,
      0,
      -3
    ],
    "io_out": [
      16,
      12,
      8,
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(input,1),-4)))"
  },
  {
    "input": "input : list = [-3, 3, 1, 1, -4]\noutput : list = [20, 80, 60, 60, 10]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(add_n([-3, 3, 1, 1, -4],4),-2),2),-5),28)",
    "io_inp": [
      -3,
      3,
      1,
      1,
      -4
    ],
    "io_out": [
      20,
      80,
      60,
      60,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(add_n(input,4),-2),2),-5),28)"
  },
  {
    "input": "input : list = [4, 5, 4, 0, 1, 1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(drop(reverse([4, 5, 4, 0, 1, 1]),4))),-5)",
    "io_inp": [
      4,
      5,
      4,
      0,
      1,
      1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(drop(reverse(input),4))),-5)"
  },
  {
    "input": "input : list = [2, -3, -2, -4, 5]\noutput : list = [-7, -4, -1, 11, 20]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_des([2, -3, -2, -4, 5]),3)),-5))",
    "io_inp": [
      2,
      -3,
      -2,
      -4,
      5
    ],
    "io_out": [
      -7,
      -4,
      -1,
      11,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_des(input),3)),-5))"
  },
  {
    "input": "input : list = [-4, 5, -1, 2]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(sort_des([-4, 5, -1, 2]),2),3)))",
    "io_inp": [
      -4,
      5,
      -1,
      2
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(sort_des(input),2),3)))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(take(reverse([1, 1]),11))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),11))"
  },
  {
    "input": "input : list = [-1, 1, 5, -1, -4]\noutput : list = [-5, -3, 1, -5, -8]",
    "output": "generated_output : list = sub_n([-1, 1, 5, -1, -4],4)",
    "io_inp": [
      -1,
      1,
      5,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -3,
      1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, 2, 0, -5, -4, 5]\noutput : list = [-36, -21, -31, -56, -51, -6]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n(sub_n([-1, 2, 0, -5, -4, 5],4),-3),5),5),1)",
    "io_inp": [
      -1,
      2,
      0,
      -5,
      -4,
      5
    ],
    "io_out": [
      -36,
      -21,
      -31,
      -56,
      -51,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(sub_n(input,4),-3),5),5),1)"
  },
  {
    "input": "input : list = [1, -4, 5, -5]\noutput : list = [8, -2]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(drop([1, -4, 5, -5],2),-5),2),2))",
    "io_inp": [
      1,
      -4,
      5,
      -5
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(drop(input,2),-5),2),2))"
  },
  {
    "input": "input : list = [1, -5, 1, -4, 4]\noutput : list = [4, 1, 1, -4, -5]",
    "output": "generated_output : list = take(take(sort_des([1, -5, 1, -4, 4]),22),6)",
    "io_inp": [
      1,
      -5,
      1,
      -4,
      4
    ],
    "io_out": [
      4,
      1,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),22),6)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [-16, -4]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(drop([3, -1, -4],1),2),2)),37)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(drop(input,1),2),2)),37)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [12, 12, 12]",
    "output": "generated_output : list = sub_n(mul_n([2, 2, 2],5),-2)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      12,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-2)"
  },
  {
    "input": "input : list = [-3, 4, 3, 4]\noutput : list = [6, 5, 6, -1]",
    "output": "generated_output : list = add_n(take(take(reverse(sub_n([-3, 4, 3, 4],-1)),23),26),1)",
    "io_inp": [
      -3,
      4,
      3,
      4
    ],
    "io_out": [
      6,
      5,
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(sub_n(input,-1)),23),26),1)"
  },
  {
    "input": "input : list = [-2, 1, 3, 0, -5, 3]\noutput : list = [3, 6, 8, 5, 0, 8]",
    "output": "generated_output : list = add_n([-2, 1, 3, 0, -5, 3],5)",
    "io_inp": [
      -2,
      1,
      3,
      0,
      -5,
      3
    ],
    "io_out": [
      3,
      6,
      8,
      5,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, 1, -2, 0, 4, -5]\noutput : list = [4, 1, 0, -2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 1, -2, 0, 4, -5])",
    "io_inp": [
      -5,
      1,
      -2,
      0,
      4,
      -5
    ],
    "io_out": [
      4,
      1,
      0,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [5, 5, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(sub_n([3, 3, 4],-2),8))))",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(sub_n(input,-2),8))))"
  },
  {
    "input": "input : list = [2, -2, -1, 5, -4, -1]\noutput : list = [-1, 1, 2, 2, 5, 8]",
    "output": "generated_output : list = sort_asc(add_n([2, -2, -1, 5, -4, -1],3))",
    "io_inp": [
      2,
      -2,
      -1,
      5,
      -4,
      -1
    ],
    "io_out": [
      -1,
      1,
      2,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, 3, -5, 5]\noutput : list = [-12, -12, -4, -2]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(sort_asc([-5, 3, -5, 5]),4),2),-1),23)",
    "io_inp": [
      -5,
      3,
      -5,
      5
    ],
    "io_out": [
      -12,
      -12,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(sort_asc(input),4),2),-1),23)"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [7]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(add_n([3, 1, 2],4),1))))",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(add_n(input,4),1))))"
  },
  {
    "input": "input : list = [-2, 2, -3]\noutput : list = [8, -8, 12]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n([-2, 2, -3],-4),4),-4),7)",
    "io_inp": [
      -2,
      2,
      -3
    ],
    "io_out": [
      8,
      -8,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(input,-4),4),-4),7)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [10, 10]",
    "output": "generated_output : list = sub_n([5, 5],-5)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 4, -4, -3, -3]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(take([-3, 4, -4, -3, -3],1)))),-1)",
    "io_inp": [
      -3,
      4,
      -4,
      -3,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(take(input,1)))),-1)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = add_n(sub_n([0, -3, -3],-2),2)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),2)"
  },
  {
    "input": "input : list = [-4, -5, -2, 2, 3, 3]\noutput : list = [-4, -5, -2, 2]",
    "output": "generated_output : list = take([-4, -5, -2, 2, 3, 3],4)",
    "io_inp": [
      -4,
      -5,
      -2,
      2,
      3,
      3
    ],
    "io_out": [
      -4,
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-3, -5, -4, -5, 2, -2]\noutput : list = [-104, -104, -84, -64, -44, 36]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n([-3, -5, -4, -5, 2, -2],-5),31)),-4),4)",
    "io_inp": [
      -3,
      -5,
      -4,
      -5,
      2,
      -2
    ],
    "io_out": [
      -104,
      -104,
      -84,
      -64,
      -44,
      36
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n(input,-5),31)),-4),4)"
  },
  {
    "input": "input : list = [-1, -5, -5, 3]\noutput : list = [1, -7]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(take([-1, -5, -5, 3],2))),2),3)",
    "io_inp": [
      -1,
      -5,
      -5,
      3
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(take(input,2))),2),3)"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [9, 8, 2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(sub_n([4, -3, 3],-3),1),-1)))",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      9,
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(sub_n(input,-3),1),-1)))"
  },
  {
    "input": "input : list = [0, -1, -5, 2, -2, 2]\noutput : list = [0, 0, -4, -6, -8, -14]",
    "output": "generated_output : list = take(sub_n(take(sort_des(mul_n([0, -1, -5, 2, -2, 2],2)),20),4),44)",
    "io_inp": [
      0,
      -1,
      -5,
      2,
      -2,
      2
    ],
    "io_out": [
      0,
      0,
      -4,
      -6,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(mul_n(input,2)),20),4),44)"
  },
  {
    "input": "input : list = [4, -5, 4, -1, -3, 1]\noutput : list = [-13, -11, -9, -7, -4, -4]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(sub_n([4, -5, 4, -1, -3, 1],3)),5)))",
    "io_inp": [
      4,
      -5,
      4,
      -1,
      -3,
      1
    ],
    "io_out": [
      -13,
      -11,
      -9,
      -7,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(sub_n(input,3)),5)))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [7, 6]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse([2, 3]),4)))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [-5, 3, -2]\noutput : list = [3, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 3, -2])",
    "io_inp": [
      -5,
      3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, -1, -2, 0, -2]\noutput : list = [-2, -2, -2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([4, -2, -1, -2, 0, -2])",
    "io_inp": [
      4,
      -2,
      -1,
      -2,
      0,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1, 5, 1, -5]\noutput : list = [-6, 0, 0, 3, 4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(reverse([4, 1, 5, 1, -5])),2),3),-4)",
    "io_inp": [
      4,
      1,
      5,
      1,
      -5
    ],
    "io_out": [
      -6,
      0,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(reverse(input)),2),3),-4)"
  },
  {
    "input": "input : list = [3, 4, 0, -5]\noutput : list = [-3, 2, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n([3, 4, 0, -5],-2))",
    "io_inp": [
      3,
      4,
      0,
      -5
    ],
    "io_out": [
      -3,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take(mul_n(take(sort_asc(take([1, -1, 4],1)),14),-1),31)",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_asc(take(input,1)),14),-1),31)"
  },
  {
    "input": "input : list = [3, 2, 4, -2]\noutput : list = [-6, 12]",
    "output": "generated_output : list = reverse(mul_n(drop([3, 2, 4, -2],2),3))",
    "io_inp": [
      3,
      2,
      4,
      -2
    ],
    "io_out": [
      -6,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,2),3))"
  },
  {
    "input": "input : list = [-2, -5, 1, 0, -3, 3]\noutput : list = [-6, -9, -3, -4, -7, -1]",
    "output": "generated_output : list = add_n([-2, -5, 1, 0, -3, 3],-4)",
    "io_inp": [
      -2,
      -5,
      1,
      0,
      -3,
      3
    ],
    "io_out": [
      -6,
      -9,
      -3,
      -4,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 0, 5, -5, 1]\noutput : list = [-5, -1, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([-1, 0, 5, -5, 1])",
    "io_inp": [
      -1,
      0,
      5,
      -5,
      1
    ],
    "io_out": [
      -5,
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [5, 9]",
    "output": "generated_output : list = reverse(take(add_n(add_n(sub_n([2, -2],-2),2),3),26))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(sub_n(input,-2),2),3),26))"
  },
  {
    "input": "input : list = [-1, 0, -4, 0]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take([-1, 0, -4, 0],1),-3),4))",
    "io_inp": [
      -1,
      0,
      -4,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(input,1),-3),4))"
  },
  {
    "input": "input : list = [-3, 5, -2, 2, 0, 1]\noutput : list = [-60, -40, 0, 20, 40, 100]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(mul_n([-3, 5, -2, 2, 0, 1],-5))),21),-4)",
    "io_inp": [
      -3,
      5,
      -2,
      2,
      0,
      1
    ],
    "io_out": [
      -60,
      -40,
      0,
      20,
      40,
      100
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(mul_n(input,-5))),21),-4)"
  },
  {
    "input": "input : list = [4, -1, 0, 3, -5, -1]\noutput : list = [8, 3, 4, 7, -1, 3]",
    "output": "generated_output : list = sub_n([4, -1, 0, 3, -5, -1],-4)",
    "io_inp": [
      4,
      -1,
      0,
      3,
      -5,
      -1
    ],
    "io_out": [
      8,
      3,
      4,
      7,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 2, 0, 0, 5, 3]\noutput : list = [-2, 0, 0, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse([-2, 2, 0, 0, 5, 3]))",
    "io_inp": [
      -2,
      2,
      0,
      0,
      5,
      3
    ],
    "io_out": [
      -2,
      0,
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, 4, 1, 4, 4, 5]\noutput : list = [-8, -6, -6, -6, 0, 4]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(reverse([-1, 4, 1, 4, 4, 5]),20),-1)),-2)",
    "io_inp": [
      -1,
      4,
      1,
      4,
      4,
      5
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -6,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(reverse(input),20),-1)),-2)"
  },
  {
    "input": "input : list = [-1, -1, -1, -4, 0]\noutput : list = [1]",
    "output": "generated_output : list = add_n(take([-1, -1, -1, -4, 0],1),2)",
    "io_inp": [
      -1,
      -1,
      -1,
      -4,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),2)"
  },
  {
    "input": "input : list = [-3, 0, 4, 3, 3, 3]\noutput : list = [-15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(take([-3, 0, 4, 3, 3, 3],1),16)),5))",
    "io_inp": [
      -3,
      0,
      4,
      3,
      3,
      3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(take(input,1),16)),5))"
  },
  {
    "input": "input : list = [-3, -2, -4, -1, 4, -3]\noutput : list = [-6, 1, -4, -7, -5]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(drop([-3, -2, -4, -1, 4, -3],1),3),-3)),3)",
    "io_inp": [
      -3,
      -2,
      -4,
      -1,
      4,
      -3
    ],
    "io_out": [
      -6,
      1,
      -4,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(drop(input,1),3),-3)),3)"
  },
  {
    "input": "input : list = [-3, 3, -4, 2]\noutput : list = [-2, 4, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(reverse([-3, 3, -4, 2]),3)),-1),-3)",
    "io_inp": [
      -3,
      3,
      -4,
      2
    ],
    "io_out": [
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(reverse(input),3)),-1),-3)"
  },
  {
    "input": "input : list = [3, -3, -4, -5]\noutput : list = [25, 1, -3, -7]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(sub_n([3, -3, -4, -5],-5),-1),4)),3)",
    "io_inp": [
      3,
      -3,
      -4,
      -5
    ],
    "io_out": [
      25,
      1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(sub_n(input,-5),-1),4)),3)"
  },
  {
    "input": "input : list = [3, 5, -1, 3]\noutput : list = [5, 3, 3, -1]",
    "output": "generated_output : list = sort_des([3, 5, -1, 3])",
    "io_inp": [
      3,
      5,
      -1,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc([2, 1, -2])",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, -1, -5]\noutput : list = [15, -5, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(drop([4, 3, -1, -5],1))),5))",
    "io_inp": [
      4,
      3,
      -1,
      -5
    ],
    "io_out": [
      15,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(drop(input,1))),5))"
  },
  {
    "input": "input : list = [1, 2, 4]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(drop(sort_asc(sort_asc(reverse([1, 2, 4]))),2),2)",
    "io_inp": [
      1,
      2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(sort_asc(reverse(input))),2),2)"
  },
  {
    "input": "input : list = [-4, 5, 5, -4]\noutput : list = [-7, 2]",
    "output": "generated_output : list = sort_asc(add_n(take([-4, 5, 5, -4],2),-3))",
    "io_inp": [
      -4,
      5,
      5,
      -4
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,2),-3))"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [20, 0, -20]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(mul_n([-5, -1, 3],5)),-5)),20)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      20,
      0,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(mul_n(input,5)),-5)),20)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n([0, 2, 3],2),-3))),-2)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n(input,2),-3))),-2)"
  },
  {
    "input": "input : list = [-2, -4, -5, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -4, -5, 0],1)",
    "io_inp": [
      -2,
      -4,
      -5,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-6, -15]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n([4, 1],-1),6),-3))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -6,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(input,-1),6),-3))"
  },
  {
    "input": "input : list = [-1, 0, -4, 5, 1]\noutput : list = [1, 5, -4, 0, -1]",
    "output": "generated_output : list = take(reverse([-1, 0, -4, 5, 1]),13)",
    "io_inp": [
      -1,
      0,
      -4,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      -4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),13)"
  },
  {
    "input": "input : list = [2, 1, -1, 4]\noutput : list = [12, -3, 3, 6]",
    "output": "generated_output : list = reverse(mul_n([2, 1, -1, 4],3))",
    "io_inp": [
      2,
      1,
      -1,
      4
    ],
    "io_out": [
      12,
      -3,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [-1, 7, 4]",
    "output": "generated_output : list = add_n(reverse(add_n([0, 3, -5],2)),2)",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      -1,
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,2)),2)"
  },
  {
    "input": "input : list = [-1, 2, 2, 3]\noutput : list = [-1, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(sort_des([-1, 2, 2, 3]))),28))",
    "io_inp": [
      -1,
      2,
      2,
      3
    ],
    "io_out": [
      -1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(sort_des(input))),28))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [6, 6, -6]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-5, 1, 1],2),-4))",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      6,
      6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,2),-4))"
  },
  {
    "input": "input : list = [1, 2, 4, -4, 1]\noutput : list = [-5, -7, -8, -8, -13]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n([1, 2, 4, -4, 1],5)),27),4))",
    "io_inp": [
      1,
      2,
      4,
      -4,
      1
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -8,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n(input,5)),27),4))"
  },
  {
    "input": "input : list = [3, 3, 2, -5, 1]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(drop([3, 3, 2, -5, 1],2),2))))",
    "io_inp": [
      3,
      3,
      2,
      -5,
      1
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(drop(input,2),2))))"
  },
  {
    "input": "input : list = [1, -2, 3, -4, -4, -4]\noutput : list = [-12, -12, -12, -6, 9]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(drop([1, -2, 3, -4, -4, -4],1),9)),3))",
    "io_inp": [
      1,
      -2,
      3,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -12,
      -6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(drop(input,1),9)),3))"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [-8, 0, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(add_n([1, 4, 2],-2),4)),2))",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      -8,
      0,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(add_n(input,-2),4)),2))"
  },
  {
    "input": "input : list = [4, -4, 0]\noutput : list = [4]",
    "output": "generated_output : list = take(reverse(take([4, -4, 0],1)),22)",
    "io_inp": [
      4,
      -4,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),22)"
  },
  {
    "input": "input : list = [-3, 5, 1, -4, 2, 3]\noutput : list = [-8, -2, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(take(drop([-3, 5, 1, -4, 2, 3],3),26)),-4))",
    "io_inp": [
      -3,
      5,
      1,
      -4,
      2,
      3
    ],
    "io_out": [
      -8,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(drop(input,3),26)),-4))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [30, 18]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n([5, 1],-5),6)),3)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      30,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(input,-5),6)),3)"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(sort_des([0, -2, 2])),-3),30))",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(sort_des(input)),-3),30))"
  },
  {
    "input": "input : list = [4, -4, 5, -4, -1, -5]\noutput : list = [-13, -12, -12, -9, -4, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(reverse([4, -4, 5, -4, -1, -5]),-1)),5),2)",
    "io_inp": [
      4,
      -4,
      5,
      -4,
      -1,
      -5
    ],
    "io_out": [
      -13,
      -12,
      -12,
      -9,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(reverse(input),-1)),5),2)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = take(take(sort_asc([-5, 3]),13),24)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),13),24)"
  },
  {
    "input": "input : list = [-3, 1, -2, 4, 2]\noutput : list = [-5, -9, -6, -12, -10]",
    "output": "generated_output : list = add_n(reverse(sub_n(mul_n(reverse([-3, 1, -2, 4, 2]),-1),4)),-4)",
    "io_inp": [
      -3,
      1,
      -2,
      4,
      2
    ],
    "io_out": [
      -5,
      -9,
      -6,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(mul_n(reverse(input),-1),4)),-4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [4, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(add_n([5, 0],1),3),-2),-4),-3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(add_n(input,1),3),-2),-4),-3)"
  },
  {
    "input": "input : list = [-3, -3, -2, -5]\noutput : list = [-7, -7, -9]",
    "output": "generated_output : list = drop(reverse(reverse(add_n(sort_des([-3, -3, -2, -5]),-4))),1)",
    "io_inp": [
      -3,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = drop(reverse(reverse(add_n(sort_des(input),-4))),1)"
  },
  {
    "input": "input : list = [-1, 0, 4, -5, 4]\noutput : list = [5, 32, 5]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(drop([-1, 0, 4, -5, 4],2),5),-3),-3),1)",
    "io_inp": [
      -1,
      0,
      4,
      -5,
      4
    ],
    "io_out": [
      5,
      32,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(drop(input,2),5),-3),-3),1)"
  },
  {
    "input": "input : list = [2, -4, 1, -5, 5]\noutput : list = [0, 15, 20, 45, 50]",
    "output": "generated_output : list = mul_n(add_n(sort_des([2, -4, 1, -5, 5]),-5),-5)",
    "io_inp": [
      2,
      -4,
      1,
      -5,
      5
    ],
    "io_out": [
      0,
      15,
      20,
      45,
      50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),-5),-5)"
  },
  {
    "input": "input : list = [1, -1, 0]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(sort_des(take([1, -1, 0],1)),1)",
    "io_inp": [
      1,
      -1,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,1)),1)"
  },
  {
    "input": "input : list = [0, -5, 4, -3, 2]\noutput : list = [-1, -6, 3, -4, 1]",
    "output": "generated_output : list = reverse(add_n(reverse([0, -5, 4, -3, 2]),-1))",
    "io_inp": [
      0,
      -5,
      4,
      -3,
      2
    ],
    "io_out": [
      -1,
      -6,
      3,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 4, 1])",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(sort_asc([5, -3]),10)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),10)"
  },
  {
    "input": "input : list = [4, 2, -3, -1, 0, 2]\noutput : list = [4, 2, 2, 0, -1, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sub_n([4, 2, -3, -1, 0, 2],2),10))),-2)",
    "io_inp": [
      4,
      2,
      -3,
      -1,
      0,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sub_n(input,2),10))),-2)"
  },
  {
    "input": "input : list = [4, -4, 0, 3, -5, -4]\noutput : list = [-1, -2, 6, 3, -1, 7]",
    "output": "generated_output : list = reverse(sub_n([4, -4, 0, 3, -5, -4],-3))",
    "io_inp": [
      4,
      -4,
      0,
      3,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -2,
      6,
      3,
      -1,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-3, -5, 2, 5, 5]\noutput : list = [5, 5, 2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -5, 2, 5, 5])",
    "io_inp": [
      -3,
      -5,
      2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5, 1, -1, 5, 5]\noutput : list = [-13, -12, -9, -7, -3, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([-4, -5, 1, -1, 5, 5]),5),3)",
    "io_inp": [
      -4,
      -5,
      1,
      -1,
      5,
      5
    ],
    "io_out": [
      -13,
      -12,
      -9,
      -7,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),5),3)"
  },
  {
    "input": "input : list = [-1, 3, 4, -5, -3, -1]\noutput : list = [-6, -18]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(drop([-1, 3, 4, -5, -3, -1],4))),-3),-2)",
    "io_inp": [
      -1,
      3,
      4,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(drop(input,4))),-3),-2)"
  },
  {
    "input": "input : list = [2, 2, 4, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = drop([2, 2, 4, -3, 3],3)",
    "io_inp": [
      2,
      2,
      4,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, 3, -4, 4, -5]\noutput : list = [4, 4, -17, 7, -20]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n(sub_n([3, 3, -4, 4, -5],3),4),5),3),-1)",
    "io_inp": [
      3,
      3,
      -4,
      4,
      -5
    ],
    "io_out": [
      4,
      4,
      -17,
      7,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(sub_n(input,3),4),5),3),-1)"
  },
  {
    "input": "input : list = [3, -4, -1, 4]\noutput : list = [-27, -24, -12, -3]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_asc(sub_n([3, -4, -1, 4],-5)),8)),-3)",
    "io_inp": [
      3,
      -4,
      -1,
      4
    ],
    "io_out": [
      -27,
      -24,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_asc(sub_n(input,-5)),8)),-3)"
  },
  {
    "input": "input : list = [-5, 2, 0, -5]\noutput : list = [-10, -10, 5, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(mul_n([-5, 2, 0, -5],3))),-5))",
    "io_inp": [
      -5,
      2,
      0,
      -5
    ],
    "io_out": [
      -10,
      -10,
      5,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(mul_n(input,3))),-5))"
  },
  {
    "input": "input : list = [1, 4, -1, 3]\noutput : list = [-6, -4, -2, -1]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(mul_n([1, 4, -1, 3],1))),-5),1)",
    "io_inp": [
      1,
      4,
      -1,
      3
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(mul_n(input,1))),-5),1)"
  },
  {
    "input": "input : list = [3, 2, -1, -2]\noutput : list = [18, 12, -6, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(mul_n([3, 2, -1, -2],-2)))),-3)",
    "io_inp": [
      3,
      2,
      -1,
      -2
    ],
    "io_out": [
      18,
      12,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(mul_n(input,-2)))),-3)"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [-2, -2, 3]",
    "output": "generated_output : list = mul_n([-2, -2, 3],1)",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [5, -1, -5, 0]\noutput : list = [4, -1, -2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n([5, -1, -5, 0],1)))))",
    "io_inp": [
      5,
      -1,
      -5,
      0
    ],
    "io_out": [
      4,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_des([-1, -1]),4))),4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_des(input),4))),4)"
  },
  {
    "input": "input : list = [-5, 1, -3, 0, 0]\noutput : list = [0, 0, -3, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, -3, 0, 0])",
    "io_inp": [
      -5,
      1,
      -3,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, 0, -4, -2, -5]\noutput : list = [-25, 3, -5, 11, 3, 15]",
    "output": "generated_output : list = add_n(mul_n([5, -2, 0, -4, -2, -5],-4),-5)",
    "io_inp": [
      5,
      -2,
      0,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -25,
      3,
      -5,
      11,
      3,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),-5)"
  },
  {
    "input": "input : list = [1, 2, -1]\noutput : list = [-5, 7, 3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n([1, 2, -1],4),-2),3))",
    "io_inp": [
      1,
      2,
      -1
    ],
    "io_out": [
      -5,
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(input,4),-2),3))"
  },
  {
    "input": "input : list = [-2, 0, 5, 4, -2]\noutput : list = [-1, -1, 1, 5, 6]",
    "output": "generated_output : list = sort_asc(take(reverse(take(add_n([-2, 0, 5, 4, -2],1),8)),29))",
    "io_inp": [
      -2,
      0,
      5,
      4,
      -2
    ],
    "io_out": [
      -1,
      -1,
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(add_n(input,1),8)),29))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(sort_asc([3, 5])))))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, 5, -5, -1]\noutput : list = [-7, 5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(mul_n(take([-1, 5, -5, -1],2),-2),3)))",
    "io_inp": [
      -1,
      5,
      -5,
      -1
    ],
    "io_out": [
      -7,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(mul_n(take(input,2),-2),3)))"
  },
  {
    "input": "input : list = [-4, -2, -2, 0, 0]\noutput : list = [0, 0, 8, 8]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(drop([-4, -2, -2, 0, 0],1),9),-4),-2),4)",
    "io_inp": [
      -4,
      -2,
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(drop(input,1),9),-4),-2),4)"
  },
  {
    "input": "input : list = [1, 4, 4, -5, 1]\noutput : list = [-12, -12, -3, -3, 15]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([1, 4, 4, -5, 1])),-3)",
    "io_inp": [
      1,
      4,
      4,
      -5,
      1
    ],
    "io_out": [
      -12,
      -12,
      -3,
      -3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [0, -1, -3, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = drop([0, -1, -3, 1, 3],3)",
    "io_inp": [
      0,
      -1,
      -3,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, -1, -3, -2, 5, 2]\noutput : list = [0, -6, -8, -7, 0, -3]",
    "output": "generated_output : list = sub_n(reverse(reverse([5, -1, -3, -2, 5, 2])),5)",
    "io_inp": [
      5,
      -1,
      -3,
      -2,
      5,
      2
    ],
    "io_out": [
      0,
      -6,
      -8,
      -7,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),5)"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [0, 4, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse([-1, 4, -5])),22),-5)",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      0,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(input)),22),-5)"
  },
  {
    "input": "input : list = [5, 1, 3, -5, 0]\noutput : list = [-6, -1, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(sort_des([5, 1, 3, -5, 0])),-1)))",
    "io_inp": [
      5,
      1,
      3,
      -5,
      0
    ],
    "io_out": [
      -6,
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [2, 3, 1, 3, -1, -3]\noutput : list = [-1, -1, -2, -3, -5, -7]",
    "output": "generated_output : list = sort_des(take(sub_n([2, 3, 1, 3, -1, -3],4),27))",
    "io_inp": [
      2,
      3,
      1,
      3,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,4),27))"
  },
  {
    "input": "input : list = [-4, 0, -1, 2]\noutput : list = [-6, -2, -3, 0]",
    "output": "generated_output : list = add_n([-4, 0, -1, 2],-2)",
    "io_inp": [
      -4,
      0,
      -1,
      2
    ],
    "io_out": [
      -6,
      -2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, -2, 0, -2]\noutput : list = [-12, -8, -4, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sort_asc([2, -2, 0, -2]),4)),-2))",
    "io_inp": [
      2,
      -2,
      0,
      -2
    ],
    "io_out": [
      -12,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sort_asc(input),4)),-2))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [15, 30]",
    "output": "generated_output : list = mul_n(sub_n([1, 4],-2),5)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      15,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),5)"
  },
  {
    "input": "input : list = [0, 5, -5, 1, -2]\noutput : list = [5, 1, 0, -2, -5]",
    "output": "generated_output : list = sort_des([0, 5, -5, 1, -2])",
    "io_inp": [
      0,
      5,
      -5,
      1,
      -2
    ],
    "io_out": [
      5,
      1,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, -5, 3, 1, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = drop([4, -1, -5, 3, 1, -3],4)",
    "io_inp": [
      4,
      -1,
      -5,
      3,
      1,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [35, 25, -15]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des([5, 3, -5]),1),5),5))",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      35,
      25,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des(input),1),5),5))"
  },
  {
    "input": "input : list = [0, -2, 5, -3]\noutput : list = [0, -5, -7, -8]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(sort_asc([0, -2, 5, -3]),21)),-5))",
    "io_inp": [
      0,
      -2,
      5,
      -3
    ],
    "io_out": [
      0,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(sort_asc(input),21)),-5))"
  },
  {
    "input": "input : list = [4, 5, 3, -1, 4, 3]\noutput : list = [-20, -22, -18, -10, -20, -18]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(add_n([4, 5, 3, -1, 4, 3],1),5),-2),14),1)",
    "io_inp": [
      4,
      5,
      3,
      -1,
      4,
      3
    ],
    "io_out": [
      -20,
      -22,
      -18,
      -10,
      -20,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(add_n(input,1),5),-2),14),1)"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [-8, 20, 24]",
    "output": "generated_output : list = mul_n(add_n([3, -4, -5],-1),-4)",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      -8,
      20,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-4)"
  },
  {
    "input": "input : list = [1, 5, 0, -2, 3, 2]\noutput : list = [1, 5, 0, -2, 3, 2]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(sub_n([1, 5, 0, -2, 3, 2],-3),-1),1),-1),-2)",
    "io_inp": [
      1,
      5,
      0,
      -2,
      3,
      2
    ],
    "io_out": [
      1,
      5,
      0,
      -2,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(sub_n(input,-3),-1),1),-1),-2)"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [10, 5, 0]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(mul_n([5, 0, -5],1))),3),2)",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      10,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(mul_n(input,1))),3),2)"
  },
  {
    "input": "input : list = [2, 3, 4, 5, 3]\noutput : list = [-2, -3, -4, -5, -3]",
    "output": "generated_output : list = mul_n([2, 3, 4, 5, 3],-1)",
    "io_inp": [
      2,
      3,
      4,
      5,
      3
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -3, -2, -3, 5, -1]\noutput : list = [8, 20, 4, 6, 4, 2]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-4, -3, -2, -3, 5, -1],-5),2))",
    "io_inp": [
      -4,
      -3,
      -2,
      -3,
      5,
      -1
    ],
    "io_out": [
      8,
      20,
      4,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,-5),2))"
  },
  {
    "input": "input : list = [-1, -3, -2, -5, 3]\noutput : list = [-5, -7, -6, -9, -1]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sub_n([-1, -3, -2, -5, 3],1),4),-2),-3),44)",
    "io_inp": [
      -1,
      -3,
      -2,
      -5,
      3
    ],
    "io_out": [
      -5,
      -7,
      -6,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sub_n(input,1),4),-2),-3),44)"
  },
  {
    "input": "input : list = [-4, 1, 0, -3]\noutput : list = [2, 0, -6]",
    "output": "generated_output : list = mul_n(drop([-4, 1, 0, -3],1),2)",
    "io_inp": [
      -4,
      1,
      0,
      -3
    ],
    "io_out": [
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-4, 1, -1, 3]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(reverse([-4, 1, -1, 3])),1)),-2)",
    "io_inp": [
      -4,
      1,
      -1,
      3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(reverse(input)),1)),-2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_des(sort_des(drop(sort_des([-3, -3]),1))),19)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(drop(sort_des(input),1))),19)"
  },
  {
    "input": "input : list = [0, 3, 2]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(reverse([0, 3, 2])))))",
    "io_inp": [
      0,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [0, -3, -1, -4, -1]\noutput : list = [-3, -4, -4, -6, -7]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sort_asc([0, -3, -1, -4, -1]))),3))",
    "io_inp": [
      0,
      -3,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [4, 4, 3]\noutput : list = [3, 4, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc([4, 4, 3]))),-3),3)",
    "io_inp": [
      4,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc(input))),-3),3)"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [4, -16]",
    "output": "generated_output : list = take(take(mul_n(reverse(add_n([-2, 1, -4],3)),-4),2),25)",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      4,
      -16
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(add_n(input,3)),-4),2),25)"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [2, 2, -7]",
    "output": "generated_output : list = sub_n(sort_des([-4, 5, 5]),3)",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      2,
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [3, -2, -2, -4, 0, 4]\noutput : list = [4, 2, 2, 0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(drop([3, -2, -2, -4, 0, 4],1),1),-1)))",
    "io_inp": [
      3,
      -2,
      -2,
      -4,
      0,
      4
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(drop(input,1),1),-1)))"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [-17, -17, -22]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(reverse([3, 3, 4]),4),-5),-2))",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      -17,
      -17,
      -22
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(reverse(input),4),-5),-2))"
  },
  {
    "input": "input : list = [4, 1, 1]\noutput : list = [6, 6, 9]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(reverse([4, 1, 1]),5))))",
    "io_inp": [
      4,
      1,
      1
    ],
    "io_out": [
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-4, 2, -1, 3, -3, -5]\noutput : list = [6, 5, 2, 0, -1, -2]",
    "output": "generated_output : list = add_n(take(take(add_n(sort_des([-4, 2, -1, 3, -3, -5]),5),18),28),-2)",
    "io_inp": [
      -4,
      2,
      -1,
      3,
      -3,
      -5
    ],
    "io_out": [
      6,
      5,
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(sort_des(input),5),18),28),-2)"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(reverse(take([1, 0, 1],1)),-4)",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,1)),-4)"
  },
  {
    "input": "input : list = [-3, 2, -1, -5]\noutput : list = [-5, -3, -1, 2]",
    "output": "generated_output : list = sort_asc([-3, 2, -1, -5])",
    "io_inp": [
      -3,
      2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-75, 125]",
    "output": "generated_output : list = take(mul_n(mul_n(take(mul_n([-3, 5],5),10),-5),-1),33)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -75,
      125
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(mul_n(input,5),10),-5),-1),33)"
  },
  {
    "input": "input : list = [-3, -2, -1, -4, 3]\noutput : list = [-23]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_des(take([-3, -2, -1, -4, 3],1)),-3),-2),-5)",
    "io_inp": [
      -3,
      -2,
      -1,
      -4,
      3
    ],
    "io_out": [
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_des(take(input,1)),-3),-2),-5)"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(take([4, 0, 5],1)),-4)))",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(take(input,1)),-4)))"
  },
  {
    "input": "input : list = [-4, -5, 2]\noutput : list = [-3, -2, 4]",
    "output": "generated_output : list = take(take(take(sort_asc(sub_n([-4, -5, 2],-2)),12),16),26)",
    "io_inp": [
      -4,
      -5,
      2
    ],
    "io_out": [
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(take(take(sort_asc(sub_n(input,-2)),12),16),26)"
  },
  {
    "input": "input : list = [5, 1, 1]\noutput : list = [-19, -7, -7]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(mul_n([5, 1, 1],-3))),4),4)",
    "io_inp": [
      5,
      1,
      1
    ],
    "io_out": [
      -19,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(mul_n(input,-3))),4),4)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [-44, 100]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(drop([-1, -4, 5],1),4),6),-5),4)",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      -44,
      100
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(drop(input,1),4),6),-5),4)"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [20, 5, 35]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(sub_n([-2, 1, -5],2)),-5)),44)",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      20,
      5,
      35
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(sub_n(input,2)),-5)),44)"
  },
  {
    "input": "input : list = [5, 4, 4, 0, -5]\noutput : list = [5, 10, 14, 14, 15]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(reverse([5, 4, 4, 0, -5]),-5))),5)",
    "io_inp": [
      5,
      4,
      4,
      0,
      -5
    ],
    "io_out": [
      5,
      10,
      14,
      14,
      15
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(reverse(input),-5))),5)"
  },
  {
    "input": "input : list = [-4, 3, -3, 0]\noutput : list = [-5, 2, -4, -1]",
    "output": "generated_output : list = add_n(take(take(sub_n(add_n([-4, 3, -3, 0],2),-1),9),8),-4)",
    "io_inp": [
      -4,
      3,
      -3,
      0
    ],
    "io_out": [
      -5,
      2,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(add_n(input,2),-1),9),8),-4)"
  },
  {
    "input": "input : list = [-1, 3, -3]\noutput : list = [4]",
    "output": "generated_output : list = reverse(reverse(add_n(take([-1, 3, -3],1),5)))",
    "io_inp": [
      -1,
      3,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(input,1),5)))"
  },
  {
    "input": "input : list = [-4, 5, 1, -4, 4, -4]\noutput : list = [20, -16, 0, 20, -12, 20]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n([-4, 5, 1, -4, 4, -4],-4)),4))",
    "io_inp": [
      -4,
      5,
      1,
      -4,
      4,
      -4
    ],
    "io_out": [
      20,
      -16,
      0,
      20,
      -12,
      20
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(input,-4)),4))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [1, 2]",
    "output": "generated_output : list = add_n(take(take(reverse(sort_des([-2, -1])),21),34),3)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(sort_des(input)),21),34),3)"
  },
  {
    "input": "input : list = [-5, -3, -3, 0, 2]\noutput : list = [4, 4, -2, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(drop([-5, -3, -3, 0, 2],1),-2))),-2)",
    "io_inp": [
      -5,
      -3,
      -3,
      0,
      2
    ],
    "io_out": [
      4,
      4,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(drop(input,1),-2))),-2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [1, 10]",
    "output": "generated_output : list = add_n(take(take(sort_asc(add_n([-4, 5],1)),11),33),4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      1,
      10
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(add_n(input,1)),11),33),4)"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [0, 7, 9]",
    "output": "generated_output : list = add_n(mul_n([-4, 3, 5],1),4)",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      0,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),4)"
  },
  {
    "input": "input : list = [2, 5, -3, 4, 5]\noutput : list = [-5, -5, 0, 10, 35]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n([2, 5, -3, 4, 5],-4),-5),34)))",
    "io_inp": [
      2,
      5,
      -3,
      4,
      5
    ],
    "io_out": [
      -5,
      -5,
      0,
      10,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n(input,-4),-5),34)))"
  },
  {
    "input": "input : list = [3, 0, 1, 3, 4, 4]\noutput : list = [3, 3, 1, 0]",
    "output": "generated_output : list = drop(sort_des(reverse([3, 0, 1, 3, 4, 4])),2)",
    "io_inp": [
      3,
      0,
      1,
      3,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [-4, 1, -3, -4, 5]\noutput : list = [-1, 4, 0, -1, 8]",
    "output": "generated_output : list = add_n([-4, 1, -3, -4, 5],3)",
    "io_inp": [
      -4,
      1,
      -3,
      -4,
      5
    ],
    "io_out": [
      -1,
      4,
      0,
      -1,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, 3, 2, 1, -5]\noutput : list = [-9, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(drop(add_n([2, 3, 2, 1, -5],-4),1))",
    "io_inp": [
      2,
      3,
      2,
      1,
      -5
    ],
    "io_out": [
      -9,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(input,-4),1))"
  },
  {
    "input": "input : list = [-3, -3, -1, -5]\noutput : list = [15, 9, 3]",
    "output": "generated_output : list = sort_des(mul_n(drop([-3, -3, -1, -5],1),-3))",
    "io_inp": [
      -3,
      -3,
      -1,
      -5
    ],
    "io_out": [
      15,
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,1),-3))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, 0, -1, -4]\noutput : list = [4, 0, -1, -4, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc([-5, 4, 0, -1, -4]),25))",
    "io_inp": [
      -5,
      4,
      0,
      -1,
      -4
    ],
    "io_out": [
      4,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),25))"
  },
  {
    "input": "input : list = [0, 5, 0, 5, 0]\noutput : list = [7, 7, 2, 2, 2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_des([0, 5, 0, 5, 0]),-1),-5),4))",
    "io_inp": [
      0,
      5,
      0,
      5,
      0
    ],
    "io_out": [
      7,
      7,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_des(input),-1),-5),4))"
  },
  {
    "input": "input : list = [0, 5, 2, 1, -4, -2]\noutput : list = [-5, -2, -1, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc([0, 5, 2, 1, -4, -2]),24),-1))",
    "io_inp": [
      0,
      5,
      2,
      1,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(input),24),-1))"
  },
  {
    "input": "input : list = [4, 2, 3, 5, -4, -3]\noutput : list = [5, 4, -1, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(sort_asc([4, 2, 3, 5, -4, -3]),4)),-2))",
    "io_inp": [
      4,
      2,
      3,
      5,
      -4,
      -3
    ],
    "io_out": [
      5,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(sort_asc(input),4)),-2))"
  },
  {
    "input": "input : list = [-1, -5, 2]\noutput : list = [5, 25, -10]",
    "output": "generated_output : list = mul_n([-1, -5, 2],-5)",
    "io_inp": [
      -1,
      -5,
      2
    ],
    "io_out": [
      5,
      25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(sub_n([2, 2],1))),5),-2)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(sub_n(input,1))),5),-2)"
  },
  {
    "input": "input : list = [3, 5, 0, -5, -4]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(sort_des([3, 5, 0, -5, -4]),-2),1),4))",
    "io_inp": [
      3,
      5,
      0,
      -5,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(sort_des(input),-2),1),4))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [8, 7]",
    "output": "generated_output : list = sort_des(sub_n([4, 5],-3))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [3, -5, 4, -5, -1, -2]\noutput : list = [-6, -6, 0, 2, 12]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(drop([3, -5, 4, -5, -1, -2],1),2))),2)",
    "io_inp": [
      3,
      -5,
      4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -6,
      0,
      2,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(drop(input,1),2))),2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-14, -10]",
    "output": "generated_output : list = add_n(add_n(mul_n([3, 2],-4),-1),-1)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -14,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,-4),-1),-1)"
  },
  {
    "input": "input : list = [3, 2, 1]\noutput : list = [-1, -5, -9]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des([3, 2, 1]),-4),-3))",
    "io_inp": [
      3,
      2,
      1
    ],
    "io_out": [
      -1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(input),-4),-3))"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [-11, -5, 13]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(sort_asc([-5, 1, 3])),-3),2),1)",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      -11,
      -5,
      13
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(sort_asc(input)),-3),2),1)"
  },
  {
    "input": "input : list = [-1, -2, 2]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(drop([-1, -2, 2],1))),-2),1)",
    "io_inp": [
      -1,
      -2,
      2
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(drop(input,1))),-2),1)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [5, 11]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(mul_n([0, 1],2),-1),3),4),4)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      5,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(mul_n(input,2),-1),3),4),4)"
  },
  {
    "input": "input : list = [-4, -3, 1, 2, 1, -1]\noutput : list = [-9]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(take([-4, -3, 1, 2, 1, -1],1),3),3)),12)",
    "io_inp": [
      -4,
      -3,
      1,
      2,
      1,
      -1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(take(input,1),3),3)),12)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [12, 9]",
    "output": "generated_output : list = add_n(add_n([5, 2],3),4)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),4)"
  },
  {
    "input": "input : list = [0, 5, 2, 2, -4]\noutput : list = [-1, -13, -13, -19, -9]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(sub_n([0, 5, 2, 2, -4],-4),24),-2),1))",
    "io_inp": [
      0,
      5,
      2,
      2,
      -4
    ],
    "io_out": [
      -1,
      -13,
      -13,
      -19,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(sub_n(input,-4),24),-2),1))"
  },
  {
    "input": "input : list = [-3, 5, -2, 3, 3]\noutput : list = [210, 10, 185, 60, 60]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(sub_n([-3, 5, -2, 3, 3],3),-3),5),3),-5)",
    "io_inp": [
      -3,
      5,
      -2,
      3,
      3
    ],
    "io_out": [
      210,
      10,
      185,
      60,
      60
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(sub_n(input,3),-3),5),3),-5)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n([0, 0],3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, 3, 2, 3, -4]\noutput : list = [3, 3, 2, 0, -4]",
    "output": "generated_output : list = take(sort_des(reverse(take(sort_asc([0, 3, 2, 3, -4]),11))),36)",
    "io_inp": [
      0,
      3,
      2,
      3,
      -4
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(sort_asc(input),11))),36)"
  },
  {
    "input": "input : list = [0, -5, 3, -4, -5]\noutput : list = [24, 9]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(take([0, -5, 3, -4, -5],2),-4),4)),3)",
    "io_inp": [
      0,
      -5,
      3,
      -4,
      -5
    ],
    "io_out": [
      24,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(take(input,2),-4),4)),3)"
  },
  {
    "input": "input : list = [-1, 4, 3, 1, -2, -3]\noutput : list = [-12, -9, -3, 3, 6, 9]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(reverse([-1, 4, 3, 1, -2, -3]),3),24),-1))",
    "io_inp": [
      -1,
      4,
      3,
      1,
      -2,
      -3
    ],
    "io_out": [
      -12,
      -9,
      -3,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(reverse(input),3),24),-1))"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [-48]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(take([3, -4, -4],1)),4)),-4)",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(take(input,1)),4)),-4)"
  },
  {
    "input": "input : list = [-4, 2, -5, -5, -5]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(drop(sort_des([-4, 2, -5, -5, -5]),3))),4)",
    "io_inp": [
      -4,
      2,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(drop(sort_des(input),3))),4)"
  },
  {
    "input": "input : list = [0, -3, 1, 0, 4, -1]\noutput : list = [8, 0, -4, -4, -8, -20]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des([0, -3, 1, 0, 4, -1]),-4),-5)),-1)",
    "io_inp": [
      0,
      -3,
      1,
      0,
      4,
      -1
    ],
    "io_out": [
      8,
      0,
      -4,
      -4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des(input),-4),-5)),-1)"
  },
  {
    "input": "input : list = [3, -3, -1, -4]\noutput : list = [3, -3]",
    "output": "generated_output : list = take([3, -3, -1, -4],2)",
    "io_inp": [
      3,
      -3,
      -1,
      -4
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -4, 1, -4, 5, -5]\noutput : list = [5, -15, 3, -7, 3, 1]",
    "output": "generated_output : list = reverse(add_n(mul_n([-3, -4, 1, -4, 5, -5],-2),-5))",
    "io_inp": [
      -3,
      -4,
      1,
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      -15,
      3,
      -7,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-2),-5))"
  },
  {
    "input": "input : list = [-5, 5, 0, 3, 3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des(take([-5, 5, 0, 3, 3],1)),-4)))",
    "io_inp": [
      -5,
      5,
      0,
      3,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(take(input,1)),-4)))"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [1, 5, 1]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n(reverse([-1, 3, -1]),-2),-4),-4),-4)",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      1,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(reverse(input),-2),-4),-4),-4)"
  },
  {
    "input": "input : list = [-3, 3, 0, -2]\noutput : list = [-15, 15, 0, -10]",
    "output": "generated_output : list = mul_n([-3, 3, 0, -2],5)",
    "io_inp": [
      -3,
      3,
      0,
      -2
    ],
    "io_out": [
      -15,
      15,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, -2, 2, 3]\noutput : list = [3, 2, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(sort_des([-1, -2, 2, 3])),24)))",
    "io_inp": [
      -1,
      -2,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(sort_des(input)),24)))"
  },
  {
    "input": "input : list = [3, -4, 1, 3, -5]\noutput : list = [-7, 0]",
    "output": "generated_output : list = take(take(add_n(reverse(take([3, -4, 1, 3, -5],2)),-3),26),48)",
    "io_inp": [
      3,
      -4,
      1,
      3,
      -5
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(take(input,2)),-3),26),48)"
  },
  {
    "input": "input : list = [1, 4, 5, 3]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(take([1, 4, 5, 3],1),12),-2)))",
    "io_inp": [
      1,
      4,
      5,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(take(input,1),12),-2)))"
  },
  {
    "input": "input : list = [3, 0, 4, 3, 5]\noutput : list = [0, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([3, 0, 4, 3, 5])))",
    "io_inp": [
      3,
      0,
      4,
      3,
      5
    ],
    "io_out": [
      0,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, -5, -3, -3]\noutput : list = [6, 4]",
    "output": "generated_output : list = drop(take(add_n(add_n(sort_des([-3, -5, -3, -3]),5),4),26),2)",
    "io_inp": [
      -3,
      -5,
      -3,
      -3
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = drop(take(add_n(add_n(sort_des(input),5),4),26),2)"
  },
  {
    "input": "input : list = [4, -3, 2, -1, 0, 3]\noutput : list = [-6, -4, -3, -1, 0]",
    "output": "generated_output : list = take(sub_n(take(sub_n(sort_asc([4, -3, 2, -1, 0, 3]),1),10),2),5)",
    "io_inp": [
      4,
      -3,
      2,
      -1,
      0,
      3
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(sort_asc(input),1),10),2),5)"
  },
  {
    "input": "input : list = [4, 1, 3, 5, 5, -3]\noutput : list = [-5, -1, 1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(sort_asc([4, 1, 3, 5, 5, -3])),14),2))",
    "io_inp": [
      4,
      1,
      3,
      5,
      5,
      -3
    ],
    "io_out": [
      -5,
      -1,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(sort_asc(input)),14),2))"
  },
  {
    "input": "input : list = [2, 1, -1]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc([2, 1, -1])),-4)",
    "io_inp": [
      2,
      1,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(take([3, -5, 4],1),3),1),2),26)",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(take(input,1),3),1),2),26)"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [-13, -43, -43]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(add_n([-2, 4, 4],3),-5),-3),5))",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      -13,
      -43,
      -43
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(add_n(input,3),-5),-3),5))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc([4, -5])",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, -5, 3, -3]\noutput : list = [19, 11, 3, 3, -13]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(reverse([-1, -1, -5, 3, -3])),-4),1))",
    "io_inp": [
      -1,
      -1,
      -5,
      3,
      -3
    ],
    "io_out": [
      19,
      11,
      3,
      3,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(reverse(input)),-4),1))"
  },
  {
    "input": "input : list = [-5, 2, -1, -1, 2]\noutput : list = [-4, 0, 0, 3, 3]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc([-5, 2, -1, -1, 2]),1)),22))",
    "io_inp": [
      -5,
      2,
      -1,
      -1,
      2
    ],
    "io_out": [
      -4,
      0,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc(input),1)),22))"
  },
  {
    "input": "input : list = [2, 0, 5, -1]\noutput : list = [4, 1, -1, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(add_n([2, 0, 5, -1],-2),-5)),5),-1)",
    "io_inp": [
      2,
      0,
      5,
      -1
    ],
    "io_out": [
      4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(add_n(input,-2),-5)),5),-1)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take([3, -4, 4],1),-4)",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [2, 1, 4, 5]\noutput : list = [1, 0, 3, 4]",
    "output": "generated_output : list = add_n([2, 1, 4, 5],-1)",
    "io_inp": [
      2,
      1,
      4,
      5
    ],
    "io_out": [
      1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [12, -12]",
    "output": "generated_output : list = mul_n(reverse([-4, 4]),3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-2, 3, -1, 1]\noutput : list = [5, 6, 8, 10]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(sub_n([-2, 3, -1, 1],-4),3))))",
    "io_inp": [
      -2,
      3,
      -1,
      1
    ],
    "io_out": [
      5,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(sub_n(input,-4),3))))"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-9, -10, -12]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(sort_asc([-2, -1, -4]),-5),2),-5))",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(sort_asc(input),-5),2),-5))"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop([-3, 2, 5],1)",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse([-3, 0, -3])),1))",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(input)),1))"
  },
  {
    "input": "input : list = [1, 0, -3, 5, -1]\noutput : list = [4, 28, -4, 8, 12]",
    "output": "generated_output : list = mul_n(add_n(reverse([1, 0, -3, 5, -1]),2),4)",
    "io_inp": [
      1,
      0,
      -3,
      5,
      -1
    ],
    "io_out": [
      4,
      28,
      -4,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),2),4)"
  },
  {
    "input": "input : list = [3, 2, -3, -4]\noutput : list = [9, 10, 15, 16]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(mul_n([3, 2, -3, -4],-1),4)),5),3)",
    "io_inp": [
      3,
      2,
      -3,
      -4
    ],
    "io_out": [
      9,
      10,
      15,
      16
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(mul_n(input,-1),4)),5),3)"
  },
  {
    "input": "input : list = [-1, -2, -1, -1, 2, 0]\noutput : list = [4, 8, 4]",
    "output": "generated_output : list = take(mul_n(take([-1, -2, -1, -1, 2, 0],3),-4),33)",
    "io_inp": [
      -1,
      -2,
      -1,
      -1,
      2,
      0
    ],
    "io_out": [
      4,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,3),-4),33)"
  },
  {
    "input": "input : list = [2, -5, -4, -4, -1, 3]\noutput : list = [5, 4, 1, -2, -2, -3]",
    "output": "generated_output : list = sort_des(add_n([2, -5, -4, -4, -1, 3],2))",
    "io_inp": [
      2,
      -5,
      -4,
      -4,
      -1,
      3
    ],
    "io_out": [
      5,
      4,
      1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [1, -2, -4]",
    "output": "generated_output : list = take(take(sort_des(sort_asc([-2, -4, 1])),4),11)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(input)),4),11)"
  },
  {
    "input": "input : list = [-3, -1, 2, 2, 5]\noutput : list = [1, 7, 16, 16, 25]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(mul_n([-3, -1, 2, 2, 5],3),-1)),4),-5)",
    "io_inp": [
      -3,
      -1,
      2,
      2,
      5
    ],
    "io_out": [
      1,
      7,
      16,
      16,
      25
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(mul_n(input,3),-1)),4),-5)"
  },
  {
    "input": "input : list = [0, -1, -2, -3, 2, -1]\noutput : list = [-1, -2, 3, 0]",
    "output": "generated_output : list = mul_n(drop(take(take(add_n([0, -1, -2, -3, 2, -1],1),11),37),2),1)",
    "io_inp": [
      0,
      -1,
      -2,
      -3,
      2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(take(add_n(input,1),11),37),2),1)"
  },
  {
    "input": "input : list = [-1, -3, -1, 4, 0]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(take(take([-1, -3, -1, 4, 0],2),4),21)",
    "io_inp": [
      -1,
      -3,
      -1,
      4,
      0
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(take(take(input,2),4),21)"
  },
  {
    "input": "input : list = [1, 4, 2, 3, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(reverse(reverse([1, 4, 2, 3, 4])),2)",
    "io_inp": [
      1,
      4,
      2,
      3,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),2)"
  },
  {
    "input": "input : list = [4, -1, -5, 2]\noutput : list = [-3, -10]",
    "output": "generated_output : list = take(sub_n(reverse([4, -1, -5, 2]),5),2)",
    "io_inp": [
      4,
      -1,
      -5,
      2
    ],
    "io_out": [
      -3,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),5),2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-8]",
    "output": "generated_output : list = drop(mul_n(sort_asc(mul_n(sort_asc([0, -4]),-1)),-2),1)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_asc(mul_n(sort_asc(input),-1)),-2),1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-14, -10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(reverse([-4, -2]),2),1)),5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -14,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(reverse(input),2),1)),5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse([0, 3])",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, 5, -2, 3, -5]\noutput : list = [5, -2, -2, -3]",
    "output": "generated_output : list = mul_n(sort_des(drop(reverse(mul_n([-2, -3, 5, -2, 3, -5],1)),2)),1)",
    "io_inp": [
      -2,
      -3,
      5,
      -2,
      3,
      -5
    ],
    "io_out": [
      5,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(reverse(mul_n(input,1)),2)),1)"
  },
  {
    "input": "input : list = [3, 2, -2, 5, 0]\noutput : list = [-2, 5, 0]",
    "output": "generated_output : list = drop([3, 2, -2, 5, 0],2)",
    "io_inp": [
      3,
      2,
      -2,
      5,
      0
    ],
    "io_out": [
      -2,
      5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 2, 0, -4, 5, 3]\noutput : list = [12, 4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(drop([3, 2, 0, -4, 5, 3],4),4),3),-5))",
    "io_inp": [
      3,
      2,
      0,
      -4,
      5,
      3
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(drop(input,4),4),3),-5))"
  },
  {
    "input": "input : list = [3, -4, -4, 2, 4, 5]\noutput : list = [12, -16, -16, 8, 16, 20]",
    "output": "generated_output : list = mul_n([3, -4, -4, 2, 4, 5],4)",
    "io_inp": [
      3,
      -4,
      -4,
      2,
      4,
      5
    ],
    "io_out": [
      12,
      -16,
      -16,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sub_n([4, 1],3),1)),-5))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sub_n(input,3),1)),-5))"
  },
  {
    "input": "input : list = [1, 2, 3, -5, -2, -2]\noutput : list = [6, 4, 2, -4, -4, -10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([1, 2, 3, -5, -2, -2],2)))",
    "io_inp": [
      1,
      2,
      3,
      -5,
      -2,
      -2
    ],
    "io_out": [
      6,
      4,
      2,
      -4,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,2)))"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [-2, -4, 3]",
    "output": "generated_output : list = reverse(add_n([5, -2, 0],-2))",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      -2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [15, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des([-4, -1]),4),5)))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des(input),4),5)))"
  },
  {
    "input": "input : list = [4, -3, 4, 2]\noutput : list = [-4, 3, -4, -2]",
    "output": "generated_output : list = mul_n([4, -3, 4, 2],-1)",
    "io_inp": [
      4,
      -3,
      4,
      2
    ],
    "io_out": [
      -4,
      3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -3, 1, 2, -5, -4]\noutput : list = [-4, -3, -2, -1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-2, -3, 1, 2, -5, -4]),-1)",
    "io_inp": [
      -2,
      -3,
      1,
      2,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-4, 2, -2, -3, 5]\noutput : list = [-5, 1, -3, -4, 4]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n([-4, 2, -2, -3, 5],4),-5),-3),-3)",
    "io_inp": [
      -4,
      2,
      -2,
      -3,
      5
    ],
    "io_out": [
      -5,
      1,
      -3,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(input,4),-5),-3),-3)"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [-6, -5, -5]",
    "output": "generated_output : list = sub_n([-3, -2, -2],3)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, 4, -3, 0, -2, 1]\noutput : list = [40, 25, 20, 20, 10, 5]",
    "output": "generated_output : list = mul_n(add_n(sort_des([0, 4, -3, 0, -2, 1]),4),5)",
    "io_inp": [
      0,
      4,
      -3,
      0,
      -2,
      1
    ],
    "io_out": [
      40,
      25,
      20,
      20,
      10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),4),5)"
  },
  {
    "input": "input : list = [-3, 0, -4, -3]\noutput : list = [-16, -12, -12, 0]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 0, -4, -3],4))",
    "io_inp": [
      -3,
      0,
      -4,
      -3
    ],
    "io_out": [
      -16,
      -12,
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [4, -4, -4, 1, 0]\noutput : list = [0, 0, -8, -10, -16]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(add_n([4, -4, -4, 1, 0],4)))),-2)",
    "io_inp": [
      4,
      -4,
      -4,
      1,
      0
    ],
    "io_out": [
      0,
      0,
      -8,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(add_n(input,4)))),-2)"
  },
  {
    "input": "input : list = [2, 1, 0, 3, 2, -4]\noutput : list = [6, 6, 5, 4, 0]",
    "output": "generated_output : list = drop(sort_des(sort_asc(add_n(reverse([2, 1, 0, 3, 2, -4]),4))),1)",
    "io_inp": [
      2,
      1,
      0,
      3,
      2,
      -4
    ],
    "io_out": [
      6,
      6,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_asc(add_n(reverse(input),4))),1)"
  },
  {
    "input": "input : list = [-2, 5, 5, -1]\noutput : list = [6, 6, 0]",
    "output": "generated_output : list = sub_n(drop([-2, 5, 5, -1],1),-1)",
    "io_inp": [
      -2,
      5,
      5,
      -1
    ],
    "io_out": [
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [2, 0, -5, -1, -1, -5]\noutput : list = [-5, -1, -1, -5, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, -5, -1, -1, -5])",
    "io_inp": [
      2,
      0,
      -5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -1,
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5, 0, -3, -1]\noutput : list = [3, 0, 5, 2, 4]",
    "output": "generated_output : list = add_n(sub_n([-2, -5, 0, -3, -1],-2),3)",
    "io_inp": [
      -2,
      -5,
      0,
      -3,
      -1
    ],
    "io_out": [
      3,
      0,
      5,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),3)"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [-3, 2, -4]",
    "output": "generated_output : list = reverse([-4, 2, -3])",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 0, -1, 2, -1]\noutput : list = [-1, -1, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([4, 0, -1, 2, -1])",
    "io_inp": [
      4,
      0,
      -1,
      2,
      -1
    ],
    "io_out": [
      -1,
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 2, 2, 1, 3, 0]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = take([4, 2, 2, 1, 3, 0],3)",
    "io_inp": [
      4,
      2,
      2,
      1,
      3,
      0
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(sort_des([-3, 1]))),2))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(sort_des(input))),2))"
  },
  {
    "input": "input : list = [0, -4, 2, -2]\noutput : list = [-5, -1, -7]",
    "output": "generated_output : list = reverse(sub_n(take(take(drop([0, -4, 2, -2],1),6),21),3))",
    "io_inp": [
      0,
      -4,
      2,
      -2
    ],
    "io_out": [
      -5,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(drop(input,1),6),21),3))"
  },
  {
    "input": "input : list = [-5, 4, -3, 5, 1]\noutput : list = [9, 8, 5, 1, -1]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc([-5, 4, -3, 5, 1]),-4),12))",
    "io_inp": [
      -5,
      4,
      -3,
      5,
      1
    ],
    "io_out": [
      9,
      8,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(input),-4),12))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [1, -6]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(reverse([5, -2]))),-4))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-1, 3, -2, -2, 5]\noutput : list = [-28, -24, -8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(take([-1, 3, -2, -2, 5],3),5),2)),2)",
    "io_inp": [
      -1,
      3,
      -2,
      -2,
      5
    ],
    "io_out": [
      -28,
      -24,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(take(input,3),5),2)),2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc([1, -1])",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -1, -4, 5]\noutput : list = [-7, -10, -13, -4]",
    "output": "generated_output : list = add_n(add_n(take(take(add_n([2, -1, -4, 5],-3),10),22),-1),-5)",
    "io_inp": [
      2,
      -1,
      -4,
      5
    ],
    "io_out": [
      -7,
      -10,
      -13,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(add_n(input,-3),10),22),-1),-5)"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc([3, 2, -2]))))",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [-13, -9, -3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(mul_n([-5, -3, 0],2))),9),3)",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      -13,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(mul_n(input,2))),9),3)"
  },
  {
    "input": "input : list = [-5, -1, 2, -3, 2]\noutput : list = [2, 2, -1, -3, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(take(reverse([-5, -1, 2, -3, 2]),18)),41))",
    "io_inp": [
      -5,
      -1,
      2,
      -3,
      2
    ],
    "io_out": [
      2,
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(reverse(input),18)),41))"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [-8, -5]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(drop(reverse([-4, -1, 2]),1),4)))",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(drop(reverse(input),1),4)))"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-8, -8, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n([-5, -5, -4],-1),1),-5)",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,-1),1),-5)"
  },
  {
    "input": "input : list = [3, 4, -2, -3, -4]\noutput : list = [-12, -9, -6, 12]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(drop([3, 4, -2, -3, -4],1)),-3),-1))",
    "io_inp": [
      3,
      4,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -12,
      -9,
      -6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(drop(input,1)),-3),-1))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-16, 12]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(reverse([4, -3]),4)),5),-1)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(reverse(input),4)),5),-1)"
  },
  {
    "input": "input : list = [-1, 0, 5, 5]\noutput : list = [4, 5, 10, 10]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(add_n([-1, 0, 5, 5],2),12)),-1),-4)",
    "io_inp": [
      -1,
      0,
      5,
      5
    ],
    "io_out": [
      4,
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(add_n(input,2),12)),-1),-4)"
  },
  {
    "input": "input : list = [5, 4, -3, 3, 1]\noutput : list = [15, 12, 9, 3, -9]",
    "output": "generated_output : list = mul_n(sort_des([5, 4, -3, 3, 1]),3)",
    "io_inp": [
      5,
      4,
      -3,
      3,
      1
    ],
    "io_out": [
      15,
      12,
      9,
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-5, 3, 5]\noutput : list = [-3, -5, -13]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n(sort_des([-5, 3, 5]),-5),1),1),-1)",
    "io_inp": [
      -5,
      3,
      5
    ],
    "io_out": [
      -3,
      -5,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(sort_des(input),-5),1),1),-1)"
  },
  {
    "input": "input : list = [4, -4, 0, 0, -4]\noutput : list = [5, 1, 1, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(add_n([4, -4, 0, 0, -4],1)))))",
    "io_inp": [
      4,
      -4,
      0,
      0,
      -4
    ],
    "io_out": [
      5,
      1,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(add_n(input,1)))))"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 5, -4],1)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -5, 1, 3, 3]\noutput : list = [16, -2, -8, -8, -8]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(sort_des([3, -5, 1, 3, 3])),-3),1))",
    "io_inp": [
      3,
      -5,
      1,
      3,
      3
    ],
    "io_out": [
      16,
      -2,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(sort_des(input)),-3),1))"
  },
  {
    "input": "input : list = [3, -3, 2, -2]\noutput : list = [12, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(take([3, -3, 2, -2],2))),4))",
    "io_inp": [
      3,
      -3,
      2,
      -2
    ],
    "io_out": [
      12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(take(input,2))),4))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(sort_asc([-5, 5]),5),5)))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(sort_asc(input),5),5)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n([4, 3],4)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, -3, 5, -5, 3, 2]\noutput : list = [-1, 1, 9, -1, 7, 6]",
    "output": "generated_output : list = add_n(add_n(sub_n([-5, -3, 5, -5, 3, 2],2),5),1)",
    "io_inp": [
      -5,
      -3,
      5,
      -5,
      3,
      2
    ],
    "io_out": [
      -1,
      1,
      9,
      -1,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,2),5),1)"
  },
  {
    "input": "input : list = [3, -4, -4, -1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(sort_des(drop([3, -4, -4, -1],2)),-4)",
    "io_inp": [
      3,
      -4,
      -4,
      -1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,2)),-4)"
  },
  {
    "input": "input : list = [-1, -2, 1, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = mul_n(drop([-1, -2, 1, 0],2),3)",
    "io_inp": [
      -1,
      -2,
      1,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(sort_asc([2, -1]),3),2),4))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(sort_asc(input),3),2),4))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [7, 7]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sort_asc([4, 4]),3),1),-2),1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sort_asc(input),3),1),-2),1)"
  },
  {
    "input": "input : list = [5, -2, 3, 3, -5, -2]\noutput : list = [-29, -19, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take([5, -2, 3, 3, -5, -2],3)),-5),4)",
    "io_inp": [
      5,
      -2,
      3,
      3,
      -5,
      -2
    ],
    "io_out": [
      -29,
      -19,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(input,3)),-5),4)"
  },
  {
    "input": "input : list = [-2, 1, 4, 2, -5, -2]\noutput : list = [4, 2, -5, -2]",
    "output": "generated_output : list = drop([-2, 1, 4, 2, -5, -2],2)",
    "io_inp": [
      -2,
      1,
      4,
      2,
      -5,
      -2
    ],
    "io_out": [
      4,
      2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 3, 0, -1, -2]\noutput : list = [-2, -1, 0, 3]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_asc(drop([-2, 3, 0, -1, -2],1)),2),-3),-1)",
    "io_inp": [
      -2,
      3,
      0,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_asc(drop(input,1)),2),-3),-1)"
  },
  {
    "input": "input : list = [-4, -5, 2, -5, 5]\noutput : list = [-8, -9, -2, -9, 1]",
    "output": "generated_output : list = sub_n([-4, -5, 2, -5, 5],4)",
    "io_inp": [
      -4,
      -5,
      2,
      -5,
      5
    ],
    "io_out": [
      -8,
      -9,
      -2,
      -9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sort_asc(sub_n([-5, 0],2))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [5, -5, 0, 2]\noutput : list = [8, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(drop([5, -5, 0, 2],2),2)),-4))",
    "io_inp": [
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(drop(input,2),2)),-4))"
  },
  {
    "input": "input : list = [-2, -4, -3, -1]\noutput : list = [-4, -3, -2, -1]",
    "output": "generated_output : list = sort_asc([-2, -4, -3, -1])",
    "io_inp": [
      -2,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, 0, -4, -4]\noutput : list = [-10, -8, 0, 8, 8]",
    "output": "generated_output : list = take(sort_asc(reverse(take(mul_n([5, 4, 0, -4, -4],-2),16))),27)",
    "io_inp": [
      5,
      4,
      0,
      -4,
      -4
    ],
    "io_out": [
      -10,
      -8,
      0,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(mul_n(input,-2),16))),27)"
  },
  {
    "input": "input : list = [-5, -1, 1, 5]\noutput : list = [5, 1, -1, -5]",
    "output": "generated_output : list = sort_des([-5, -1, 1, 5])",
    "io_inp": [
      -5,
      -1,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 5, 5, 5]\noutput : list = [-20, -20, -20, -8, 0]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc([2, 0, 5, 5, 5]),-4)),18)",
    "io_inp": [
      2,
      0,
      5,
      5,
      5
    ],
    "io_out": [
      -20,
      -20,
      -20,
      -8,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(input),-4)),18)"
  },
  {
    "input": "input : list = [-1, -1, 2, -1]\noutput : list = [-1, 2, -1, -1]",
    "output": "generated_output : list = reverse([-1, -1, 2, -1])",
    "io_inp": [
      -1,
      -1,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1, -5, 2, -1, 1]\noutput : list = [-1, 3, 5, 5, 6, 6]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sub_n([2, 1, -5, 2, -1, 1],-4)))),38)",
    "io_inp": [
      2,
      1,
      -5,
      2,
      -1,
      1
    ],
    "io_out": [
      -1,
      3,
      5,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sub_n(input,-4)))),38)"
  },
  {
    "input": "input : list = [2, 4, 1, 2, -1]\noutput : list = [-7, -15, -3, -7, 5]",
    "output": "generated_output : list = add_n(take(take(mul_n(add_n([2, 4, 1, 2, -1],1),-4),21),5),5)",
    "io_inp": [
      2,
      4,
      1,
      2,
      -1
    ],
    "io_out": [
      -7,
      -15,
      -3,
      -7,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(add_n(input,1),-4),21),5),5)"
  },
  {
    "input": "input : list = [-3, 2, 4, -4]\noutput : list = [34, -16]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take([-3, 2, 4, -4],2),5),-2),4)",
    "io_inp": [
      -3,
      2,
      4,
      -4
    ],
    "io_out": [
      34,
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(input,2),5),-2),4)"
  },
  {
    "input": "input : list = [-5, 1, -3, 3, 5]\noutput : list = [-5, 1, -3]",
    "output": "generated_output : list = take([-5, 1, -3, 3, 5],3)",
    "io_inp": [
      -5,
      1,
      -3,
      3,
      5
    ],
    "io_out": [
      -5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des([-2, -1])",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2, 3, -1, 2]\noutput : list = [2, 7, 8, 4, 7]",
    "output": "generated_output : list = add_n([-3, 2, 3, -1, 2],5)",
    "io_inp": [
      -3,
      2,
      3,
      -1,
      2
    ],
    "io_out": [
      2,
      7,
      8,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [11]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take([5, 5, 3],1),-5)),-1)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(input,1),-5)),-1)"
  },
  {
    "input": "input : list = [-1, -3, 1, -4, -4]\noutput : list = [-5, 20, 20]",
    "output": "generated_output : list = mul_n(sort_des(drop([-1, -3, 1, -4, -4],2)),-5)",
    "io_inp": [
      -1,
      -3,
      1,
      -4,
      -4
    ],
    "io_out": [
      -5,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,2)),-5)"
  },
  {
    "input": "input : list = [-3, 3, 1, -3, 5, -5]\noutput : list = [-5, 1, -1, -5, 3, -7]",
    "output": "generated_output : list = add_n([-3, 3, 1, -3, 5, -5],-2)",
    "io_inp": [
      -3,
      3,
      1,
      -3,
      5,
      -5
    ],
    "io_out": [
      -5,
      1,
      -1,
      -5,
      3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -2, -1, 5, -2, -3]\noutput : list = [-6, 0, -1, -7, 0, 1]",
    "output": "generated_output : list = add_n(mul_n([4, -2, -1, 5, -2, -3],-1),-2)",
    "io_inp": [
      4,
      -2,
      -1,
      5,
      -2,
      -3
    ],
    "io_out": [
      -6,
      0,
      -1,
      -7,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),-2)"
  },
  {
    "input": "input : list = [-2, -3, 0, 0, 3]\noutput : list = [-24, -15, -15, -6, -9]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-2, -3, 0, 0, 3]),-5),-3)",
    "io_inp": [
      -2,
      -3,
      0,
      0,
      3
    ],
    "io_out": [
      -24,
      -15,
      -15,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-5),-3)"
  },
  {
    "input": "input : list = [-2, -2, 2, -4, 2]\noutput : list = [2, -2, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(take([-2, -2, 2, -4, 2],3),6)),-1),-1)",
    "io_inp": [
      -2,
      -2,
      2,
      -4,
      2
    ],
    "io_out": [
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(take(input,3),6)),-1),-1)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n([2, -5],-2)))))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [-4, 2, 0, -4]\noutput : list = [2, 0, -4, -4]",
    "output": "generated_output : list = sort_des([-4, 2, 0, -4])",
    "io_inp": [
      -4,
      2,
      0,
      -4
    ],
    "io_out": [
      2,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, 5, -2, -4, -4]\noutput : list = [0, -5, 1, -6, -8, -8]",
    "output": "generated_output : list = add_n([4, -1, 5, -2, -4, -4],-4)",
    "io_inp": [
      4,
      -1,
      5,
      -2,
      -4,
      -4
    ],
    "io_out": [
      0,
      -5,
      1,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, 1, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop([2, 1, 1, -1],2)",
    "io_inp": [
      2,
      1,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 1, 3, 4, -2]\noutput : list = [2, 8, 14]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(take([5, 1, 3, 4, -2],3),3),1)))",
    "io_inp": [
      5,
      1,
      3,
      4,
      -2
    ],
    "io_out": [
      2,
      8,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(take(input,3),3),1)))"
  },
  {
    "input": "input : list = [5, -1, -5, -1, -2, -2]\noutput : list = [14, 8, 8, 7, 7, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(sort_des([5, -1, -5, -1, -2, -2]))),-4),5)",
    "io_inp": [
      5,
      -1,
      -5,
      -1,
      -2,
      -2
    ],
    "io_out": [
      14,
      8,
      8,
      7,
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(sort_des(input))),-4),5)"
  },
  {
    "input": "input : list = [4, -3, 1, 1, -2]\noutput : list = [4, 0, -12, -12]",
    "output": "generated_output : list = mul_n(sort_asc(drop(sort_des(sub_n([4, -3, 1, 1, -2],-2)),1)),-4)",
    "io_inp": [
      4,
      -3,
      1,
      1,
      -2
    ],
    "io_out": [
      4,
      0,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(sort_des(sub_n(input,-2)),1)),-4)"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [8, 2, -6]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_des([-1, -4, 3]))),-2))",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      8,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [0, 4, 4, 3, -4, 1]\noutput : list = [-1]",
    "output": "generated_output : list = drop(add_n(sub_n(sub_n(mul_n([0, 4, 4, 3, -4, 1],1),-4),4),-2),5)",
    "io_inp": [
      0,
      4,
      4,
      3,
      -4,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(sub_n(mul_n(input,1),-4),4),-2),5)"
  },
  {
    "input": "input : list = [3, 4, 5]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = reverse(add_n([3, 4, 5],-5))",
    "io_inp": [
      3,
      4,
      5
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [-7, -2]",
    "output": "generated_output : list = add_n(sub_n(mul_n(drop([-1, -2, 3],1),1),3),-2)",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(drop(input,1),1),3),-2)"
  },
  {
    "input": "input : list = [2, -1, -4, -3, -4, 2]\noutput : list = [40, 40, 16, 0, -8, -8]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sub_n([2, -1, -4, -3, -4, 2],-3),2),4)))",
    "io_inp": [
      2,
      -1,
      -4,
      -3,
      -4,
      2
    ],
    "io_out": [
      40,
      40,
      16,
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sub_n(input,-3),2),4)))"
  },
  {
    "input": "input : list = [-4, -2, -3, 5, 0, -5]\noutput : list = [-5, -4, -3, -2, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse([-4, -2, -3, 5, 0, -5]))",
    "io_inp": [
      -4,
      -2,
      -3,
      5,
      0,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, 2, 0, -2]\noutput : list = [2, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(sort_asc([-1, 2, 0, -2])))))",
    "io_inp": [
      -1,
      2,
      0,
      -2
    ],
    "io_out": [
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [3, -27, -12]",
    "output": "generated_output : list = add_n(mul_n([-1, 5, 2],-5),-2)",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      3,
      -27,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-9, -9]",
    "output": "generated_output : list = mul_n(take(take(reverse(reverse([-3, -3])),3),8),3)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(reverse(input)),3),8),3)"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(sort_des(take([-2, -4, 1],1)))",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [5, 4, 0, -1, -2, 4]\noutput : list = [-1, 0, 1, 5, 5, 6]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des([5, 4, 0, -1, -2, 4]))),-1),21)",
    "io_inp": [
      5,
      4,
      0,
      -1,
      -2,
      4
    ],
    "io_out": [
      -1,
      0,
      1,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des(input))),-1),21)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-7, -2]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n([3, -2],-4),1),8),-1)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(input,-4),1),8),-1)"
  },
  {
    "input": "input : list = [5, 1, 1, 5]\noutput : list = [1, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 1, 1, 5])",
    "io_inp": [
      5,
      1,
      1,
      5
    ],
    "io_out": [
      1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = take(sort_des(take(sort_des(drop([5, -4, -1],1)),4)),36)",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(drop(input,1)),4)),36)"
  },
  {
    "input": "input : list = [4, 2, -2, -4, -1, 0]\noutput : list = [2, 0, -6, -2, 6, 10]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(add_n([4, 2, -2, -4, -1, 0],1),-2)),22),-1)",
    "io_inp": [
      4,
      2,
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      2,
      0,
      -6,
      -2,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(add_n(input,1),-2)),22),-1)"
  },
  {
    "input": "input : list = [1, 3, -1, -1, -3, -5]\noutput : list = [-5, -3, -1, -1, 1, 3]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc([1, 3, -1, -1, -3, -5]),17)))",
    "io_inp": [
      1,
      3,
      -1,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(input),17)))"
  },
  {
    "input": "input : list = [3, 3, 4, -5, -2, -5]\noutput : list = [-1, -1, 2, 7, 7, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(add_n([3, 3, 4, -5, -2, -5],5))),40),1)",
    "io_inp": [
      3,
      3,
      4,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -1,
      2,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(add_n(input,5))),40),1)"
  },
  {
    "input": "input : list = [1, -1, -3, 1]\noutput : list = [6, 6, 4, 2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(sort_des([1, -1, -3, 1])))),-5)",
    "io_inp": [
      1,
      -1,
      -3,
      1
    ],
    "io_out": [
      6,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [-3, -2, -3, 3, -1]\noutput : list = [5, 10, 5, 35, 15]",
    "output": "generated_output : list = mul_n(take(sub_n(take(sub_n([-3, -2, -3, 3, -1],-2),17),-2),26),5)",
    "io_inp": [
      -3,
      -2,
      -3,
      3,
      -1
    ],
    "io_out": [
      5,
      10,
      5,
      35,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(sub_n(input,-2),17),-2),26),5)"
  },
  {
    "input": "input : list = [1, 4, -1, -3, 4, -5]\noutput : list = [3, 6, 1, -1, 6, -3]",
    "output": "generated_output : list = take(sub_n(sub_n([1, 4, -1, -3, 4, -5],-3),1),34)",
    "io_inp": [
      1,
      4,
      -1,
      -3,
      4,
      -5
    ],
    "io_out": [
      3,
      6,
      1,
      -1,
      6,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,-3),1),34)"
  },
  {
    "input": "input : list = [-5, 0, 2, 4, 4, 4]\noutput : list = [7, 7, 7, 5, 3]",
    "output": "generated_output : list = take(take(sort_des(add_n(drop([-5, 0, 2, 4, 4, 4],1),3)),16),26)",
    "io_inp": [
      -5,
      0,
      2,
      4,
      4,
      4
    ],
    "io_out": [
      7,
      7,
      7,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(drop(input,1),3)),16),26)"
  },
  {
    "input": "input : list = [2, 2, -1, 3, -3]\noutput : list = [3, 2, 2, -1, -3]",
    "output": "generated_output : list = sort_des([2, 2, -1, 3, -3])",
    "io_inp": [
      2,
      2,
      -1,
      3,
      -3
    ],
    "io_out": [
      3,
      2,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 2, 0, -5]\noutput : list = [-1, 1, 2, 0, -5]",
    "output": "generated_output : list = reverse(reverse([-1, 1, 2, 0, -5]))",
    "io_inp": [
      -1,
      1,
      2,
      0,
      -5
    ],
    "io_out": [
      -1,
      1,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, -1, 3, 2, 4]\noutput : list = [10, -2, 10, 7, 13]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n([3, -1, 3, 2, 4],3),-3),19),2)",
    "io_inp": [
      3,
      -1,
      3,
      2,
      4
    ],
    "io_out": [
      10,
      -2,
      10,
      7,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(input,3),-3),19),2)"
  },
  {
    "input": "input : list = [3, 4, 5, 4]\noutput : list = [3, 4, 4, 5]",
    "output": "generated_output : list = take(reverse(sort_des([3, 4, 5, 4])),7)",
    "io_inp": [
      3,
      4,
      5,
      4
    ],
    "io_out": [
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),7)"
  },
  {
    "input": "input : list = [0, 2, 1, 3, -4]\noutput : list = [-6, -2, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(reverse([0, 2, 1, 3, -4]),11),3),-1))",
    "io_inp": [
      0,
      2,
      1,
      3,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(reverse(input),11),3),-1))"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [0, 6, 6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(reverse([-1, 5, 5]),4),-5)),2)",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(reverse(input),4),-5)),2)"
  },
  {
    "input": "input : list = [-3, -3, -1, -2, 4]\noutput : list = [4, -1, -2, -3, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(reverse([-3, -3, -1, -2, 4])))),45)",
    "io_inp": [
      -3,
      -3,
      -1,
      -2,
      4
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(reverse(input)))),45)"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n([-3, -4, -1],5))))",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(input,5))))"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [9, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n([-5, -5, 4],-5))",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      9,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [4, 4, 0, -5]\noutput : list = [0, 10]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(drop([4, 4, 0, -5],2),-2))),18)",
    "io_inp": [
      4,
      4,
      0,
      -5
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(drop(input,2),-2))),18)"
  },
  {
    "input": "input : list = [-3, 1, 1]\noutput : list = [7, 11, 11]",
    "output": "generated_output : list = add_n(sub_n([-3, 1, 1],-5),5)",
    "io_inp": [
      -3,
      1,
      1
    ],
    "io_out": [
      7,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),5)"
  },
  {
    "input": "input : list = [4, -5, -4, -4, 3, 2]\noutput : list = [9, 8, 7, 1, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(sort_asc([4, -5, -4, -4, 3, 2]),1)),-4))",
    "io_inp": [
      4,
      -5,
      -4,
      -4,
      3,
      2
    ],
    "io_out": [
      9,
      8,
      7,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(sort_asc(input),1)),-4))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = mul_n([4, 2],-1)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 1, -5, 3]\noutput : list = [-5, 1, -5, 3]",
    "output": "generated_output : list = reverse(reverse([-5, 1, -5, 3]))",
    "io_inp": [
      -5,
      1,
      -5,
      3
    ],
    "io_out": [
      -5,
      1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, 4, -4, 3, 3, -4]\noutput : list = [13, -8]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(drop([1, 4, -4, 3, 3, -4],4)),3)),4)",
    "io_inp": [
      1,
      4,
      -4,
      3,
      3,
      -4
    ],
    "io_out": [
      13,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(drop(input,4)),3)),4)"
  },
  {
    "input": "input : list = [-4, -5, -5, -2, 1]\noutput : list = [-5, -2, 1]",
    "output": "generated_output : list = drop([-4, -5, -5, -2, 1],2)",
    "io_inp": [
      -4,
      -5,
      -5,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-5, -17]",
    "output": "generated_output : list = add_n(take(mul_n([2, 5],-4),5),3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -5,
      -17
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,-4),5),3)"
  },
  {
    "input": "input : list = [1, 0, 2, 3, 5]\noutput : list = [-70, -40, -25, -10, 5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(mul_n([1, 0, 2, 3, 5],-5)),3)),5)",
    "io_inp": [
      1,
      0,
      2,
      3,
      5
    ],
    "io_out": [
      -70,
      -40,
      -25,
      -10,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(mul_n(input,-5)),3)),5)"
  },
  {
    "input": "input : list = [5, 2, -3, -4]\noutput : list = [-11, -2, 13, 16]",
    "output": "generated_output : list = add_n(take(mul_n(take(sort_des([5, 2, -3, -4]),15),-3),7),4)",
    "io_inp": [
      5,
      2,
      -3,
      -4
    ],
    "io_out": [
      -11,
      -2,
      13,
      16
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(take(sort_des(input),15),-3),7),4)"
  },
  {
    "input": "input : list = [3, -1, 5, -1, 2]\noutput : list = [3, 1, 0, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n([3, -1, 5, -1, 2],2))",
    "io_inp": [
      3,
      -1,
      5,
      -1,
      2
    ],
    "io_out": [
      3,
      1,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [3, 3, -5, -4, -5, -5]\noutput : list = [-5, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(drop(sort_des([3, 3, -5, -4, -5, -5]),3))))",
    "io_inp": [
      3,
      3,
      -5,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(drop(sort_des(input),3))))"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [-4, 0, -3]",
    "output": "generated_output : list = sub_n([0, 4, 1],4)",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      -4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, 4, 4, 4, 2, 2]\noutput : list = [4, 4, 2, 2]",
    "output": "generated_output : list = drop([3, 4, 4, 4, 2, 2],2)",
    "io_inp": [
      3,
      4,
      4,
      4,
      2,
      2
    ],
    "io_out": [
      4,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -3, 0, 2, -1, 4]\noutput : list = [5, -20]",
    "output": "generated_output : list = sort_des(mul_n(take(take(drop([0, -3, 0, 2, -1, 4],4),12),6),-5))",
    "io_inp": [
      0,
      -3,
      0,
      2,
      -1,
      4
    ],
    "io_out": [
      5,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(drop(input,4),12),6),-5))"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [1, -4, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(reverse([5, 0, -2])),4)),10)",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(reverse(input)),4)),10)"
  },
  {
    "input": "input : list = [-4, -3, 0, 5, 3, 4]\noutput : list = [-16, -12, 0, 12, 16, 20]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(sort_des([-4, -3, 0, 5, 3, 4])),2),7),2)",
    "io_inp": [
      -4,
      -3,
      0,
      5,
      3,
      4
    ],
    "io_out": [
      -16,
      -12,
      0,
      12,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(sort_des(input)),2),7),2)"
  },
  {
    "input": "input : list = [1, 3, 1, 2, 0, -3]\noutput : list = [0, 3, 4, 4, 5, 6]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(sort_des([1, 3, 1, 2, 0, -3]),-4)),-1))",
    "io_inp": [
      1,
      3,
      1,
      2,
      0,
      -3
    ],
    "io_out": [
      0,
      3,
      4,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(sort_des(input),-4)),-1))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-22, -22]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des([3, 3]),4),-2)),2)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -22,
      -22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des(input),4),-2)),2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-2, 10]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(mul_n([5, -1],2)))))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -2,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse([3, -4])",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -2, -3, 2, -1, -5]\noutput : list = [0, 8, 12, -8, 4, 20]",
    "output": "generated_output : list = mul_n([0, -2, -3, 2, -1, -5],-4)",
    "io_inp": [
      0,
      -2,
      -3,
      2,
      -1,
      -5
    ],
    "io_out": [
      0,
      8,
      12,
      -8,
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [4, 0, 5, 0, -1, -3]\noutput : list = [-3, -1, 0, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 0, 5, 0, -1, -3])",
    "io_inp": [
      4,
      0,
      5,
      0,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [7, 2]",
    "output": "generated_output : list = add_n(add_n([3, -2],5),-1)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n([1, 0],1))))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(input,1))))"
  },
  {
    "input": "input : list = [-3, 4, -2, 5, -1, 4]\noutput : list = [-6, -5, -4, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(reverse([-3, 4, -2, 5, -1, 4]),-3)),33))",
    "io_inp": [
      -3,
      4,
      -2,
      5,
      -1,
      4
    ],
    "io_out": [
      -6,
      -5,
      -4,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(reverse(input),-3)),33))"
  },
  {
    "input": "input : list = [2, -4, 5, 1, 2, -3]\noutput : list = [30, -15, -6, -42, 39, -15]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(mul_n([2, -4, 5, 1, 2, -3],-3),1)),3),54)",
    "io_inp": [
      2,
      -4,
      5,
      1,
      2,
      -3
    ],
    "io_out": [
      30,
      -15,
      -6,
      -42,
      39,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(mul_n(input,-3),1)),3),54)"
  },
  {
    "input": "input : list = [5, 3, 5, -2]\noutput : list = [135, 135, 85, -40]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(mul_n([5, 3, 5, -2],-5),2)),-5))",
    "io_inp": [
      5,
      3,
      5,
      -2
    ],
    "io_out": [
      135,
      135,
      85,
      -40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(mul_n(input,-5),2)),-5))"
  },
  {
    "input": "input : list = [-5, 4, 3, 2, -3]\noutput : list = [-21, -15, 0, 3, 6]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(sort_des([-5, 4, 3, 2, -3]),3)),-1),-5)",
    "io_inp": [
      -5,
      4,
      3,
      2,
      -3
    ],
    "io_out": [
      -21,
      -15,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(sort_des(input),3)),-1),-5)"
  },
  {
    "input": "input : list = [1, -4, -5, 4, 1, 3]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(reverse(reverse(reverse(take([1, -4, -5, 4, 1, 3],2)))),12)",
    "io_inp": [
      1,
      -4,
      -5,
      4,
      1,
      3
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(take(input,2)))),12)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(take(take(sort_des(reverse([4, 0])),23),21))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(reverse(input)),23),21))"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(reverse([2, -2, 5]),2)),-2))",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(reverse(input),2)),-2))"
  },
  {
    "input": "input : list = [-1, 3, 1, 2, -3, 3]\noutput : list = [-1, 3, 1, 2, -3, 3]",
    "output": "generated_output : list = reverse(reverse([-1, 3, 1, 2, -3, 3]))",
    "io_inp": [
      -1,
      3,
      1,
      2,
      -3,
      3
    ],
    "io_out": [
      -1,
      3,
      1,
      2,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(sort_des(drop([4, 4, 1],1)))",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-5, -5, 1, 2]\noutput : list = [60, 50, -10]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(drop([-5, -5, 1, 2],1),-4)),5),2)",
    "io_inp": [
      -5,
      -5,
      1,
      2
    ],
    "io_out": [
      60,
      50,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(drop(input,1),-4)),5),2)"
  },
  {
    "input": "input : list = [5, -2, 5, -5]\noutput : list = [4]",
    "output": "generated_output : list = take(sub_n(reverse(drop(sub_n([5, -2, 5, -5],-5),3)),-4),38)",
    "io_inp": [
      5,
      -2,
      5,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(drop(sub_n(input,-5),3)),-4),38)"
  },
  {
    "input": "input : list = [0, -4, 0, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = take([0, -4, 0, 0],2)",
    "io_inp": [
      0,
      -4,
      0,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -3, 1, 5, -2, 0]\noutput : list = [2, -3]",
    "output": "generated_output : list = take([2, -3, 1, 5, -2, 0],2)",
    "io_inp": [
      2,
      -3,
      1,
      5,
      -2,
      0
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 3, 4, -5, 4]\noutput : list = [-6, 15, 18, 21, 21]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sub_n([2, 3, 4, -5, 4],-3)),31),33),3)",
    "io_inp": [
      2,
      3,
      4,
      -5,
      4
    ],
    "io_out": [
      -6,
      15,
      18,
      21,
      21
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sub_n(input,-3)),31),33),3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sort_asc([-5, -2])),4)),5)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sort_asc(input)),4)),5)"
  },
  {
    "input": "input : list = [-5, -3, 5, 0]\noutput : list = [1, -4, -7, -9]",
    "output": "generated_output : list = sort_des(take(sub_n(take(sort_asc([-5, -3, 5, 0]),7),4),11))",
    "io_inp": [
      -5,
      -3,
      5,
      0
    ],
    "io_out": [
      1,
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(sort_asc(input),7),4),11))"
  },
  {
    "input": "input : list = [5, -1, 2, -3, -4, -1]\noutput : list = [1, -5, -2, -7, -8, -5]",
    "output": "generated_output : list = sub_n([5, -1, 2, -3, -4, -1],4)",
    "io_inp": [
      5,
      -1,
      2,
      -3,
      -4,
      -1
    ],
    "io_out": [
      1,
      -5,
      -2,
      -7,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, -4, -1, -5, -5]\noutput : list = [-14, 1, 16, 21, 21]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(sort_asc([2, -4, -1, -5, -5])),-5),4))",
    "io_inp": [
      2,
      -4,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -14,
      1,
      16,
      21,
      21
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(sort_asc(input)),-5),4))"
  },
  {
    "input": "input : list = [0, -5, -3, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(take([0, -5, -3, 2],1))),2))",
    "io_inp": [
      0,
      -5,
      -3,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(take(input,1))),2))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des([0, 0])),-3),-5)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(input)),-3),-5)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(reverse([-4, -3])))),37)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(reverse(input)))),37)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(sort_asc([-2, -5])),4),19))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(sort_asc(input)),4),19))"
  },
  {
    "input": "input : list = [0, 4, 2, -3, 1]\noutput : list = [-4, -6, -7, -8, -11]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des([0, 4, 2, -3, 1]),2),-5),-5)",
    "io_inp": [
      0,
      4,
      2,
      -3,
      1
    ],
    "io_out": [
      -4,
      -6,
      -7,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(input),2),-5),-5)"
  },
  {
    "input": "input : list = [-3, 5, 1, 4]\noutput : list = [4, 1, 5, -3]",
    "output": "generated_output : list = reverse(mul_n([-3, 5, 1, 4],1))",
    "io_inp": [
      -3,
      5,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-1, -5, 4]\noutput : list = [2]",
    "output": "generated_output : list = drop(sort_asc(reverse(sub_n(reverse([-1, -5, 4]),2))),2)",
    "io_inp": [
      -1,
      -5,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(sort_asc(reverse(sub_n(reverse(input),2))),2)"
  },
  {
    "input": "input : list = [4, -1, 0, -4, -5]\noutput : list = [-1, 0, 3, 4, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([4, -1, 0, -4, -5],-4)))",
    "io_inp": [
      4,
      -1,
      0,
      -4,
      -5
    ],
    "io_out": [
      -1,
      0,
      3,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [1, 4, -4, -3, 3]\noutput : list = [-30, -25, -5, 5, 10]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_asc([1, 4, -4, -3, 3]),4),4),-2),5)",
    "io_inp": [
      1,
      4,
      -4,
      -3,
      3
    ],
    "io_out": [
      -30,
      -25,
      -5,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_asc(input),4),4),-2),5)"
  },
  {
    "input": "input : list = [-4, -3, -1, 4, -3, -3]\noutput : list = [4, -1, -3, -3, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(mul_n([-4, -3, -1, 4, -3, -3],1)),12)))",
    "io_inp": [
      -4,
      -3,
      -1,
      4,
      -3,
      -3
    ],
    "io_out": [
      4,
      -1,
      -3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(mul_n(input,1)),12)))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [2, 26]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(mul_n([3, -1],3),8),4)),2)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      2,
      26
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(mul_n(input,3),8),4)),2)"
  },
  {
    "input": "input : list = [-3, 0, -3, -1]\noutput : list = [-1, -2, -4, -4]",
    "output": "generated_output : list = add_n(take(sort_des(add_n([-3, 0, -3, -1],2)),24),-3)",
    "io_inp": [
      -3,
      0,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(input,2)),24),-3)"
  },
  {
    "input": "input : list = [0, -1, -1, 3]\noutput : list = [8, 4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(drop([0, -1, -1, 3],2)))),5)",
    "io_inp": [
      0,
      -1,
      -1,
      3
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(drop(input,2)))),5)"
  },
  {
    "input": "input : list = [2, 5, 4, -4]\noutput : list = [7, 6, 4, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n([2, 5, 4, -4],-2))),17)",
    "io_inp": [
      2,
      5,
      4,
      -4
    ],
    "io_out": [
      7,
      6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(input,-2))),17)"
  },
  {
    "input": "input : list = [-4, -4, 5, 5, -1, 0]\noutput : list = [4, 4, -14, -14, -2, -4]",
    "output": "generated_output : list = add_n(mul_n([-4, -4, 5, 5, -1, 0],-2),-4)",
    "io_inp": [
      -4,
      -4,
      5,
      5,
      -1,
      0
    ],
    "io_out": [
      4,
      4,
      -14,
      -14,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),-4)"
  },
  {
    "input": "input : list = [0, -4, -3, -1]\noutput : list = [0, 1, 3, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_des([0, -4, -3, -1])))),-1)",
    "io_inp": [
      0,
      -4,
      -3,
      -1
    ],
    "io_out": [
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [2, 3, -3, 0, 2, 2]\noutput : list = [-2, -2, -6, -12, 0, -2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(add_n([2, 3, -3, 0, 2, 2],-4)),2),-1),-1)",
    "io_inp": [
      2,
      3,
      -3,
      0,
      2,
      2
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -12,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(add_n(input,-4)),2),-1),-1)"
  },
  {
    "input": "input : list = [-3, 2, 0, -3]\noutput : list = [5, 3, 0, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(sort_des([-3, 2, 0, -3]),10),-3),3),-3)",
    "io_inp": [
      -3,
      2,
      0,
      -3
    ],
    "io_out": [
      5,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(sort_des(input),10),-3),3),-3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [63, 83]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(mul_n([4, 3],-4),-5)),5),3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      63,
      83
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(mul_n(input,-4),-5)),5),3)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(sort_des([2, 0])),24)))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(sort_des(input)),24)))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse([0, 4])),7))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(input)),7))"
  },
  {
    "input": "input : list = [2, 0, 1, 4]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(take([2, 0, 1, 4],1),1),4)),-3)",
    "io_inp": [
      2,
      0,
      1,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(take(input,1),1),4)),-3)"
  },
  {
    "input": "input : list = [-1, 3, 4, 4]\noutput : list = [4, 4, 3, -1]",
    "output": "generated_output : list = sort_des([-1, 3, 4, 4])",
    "io_inp": [
      -1,
      3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, -2, -3, -3]\noutput : list = [-8, -8, -7, -9, -4]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n([1, -4, -2, -3, -3],5))))",
    "io_inp": [
      1,
      -4,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(input,5))))"
  },
  {
    "input": "input : list = [3, -2, 2]\noutput : list = [3, 7, 8]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(sub_n([3, -2, 2],-5),13)),13))",
    "io_inp": [
      3,
      -2,
      2
    ],
    "io_out": [
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(sub_n(input,-5),13)),13))"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [-1, -1, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-4, -4, 4],-3)))",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      -1,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-9, -5]",
    "output": "generated_output : list = reverse(sub_n([-1, -5],4))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-5, -1, -5, -2, 0, 3]\noutput : list = [25, 25, 10, 5, 0, -15]",
    "output": "generated_output : list = sort_des(mul_n([-5, -1, -5, -2, 0, 3],-5))",
    "io_inp": [
      -5,
      -1,
      -5,
      -2,
      0,
      3
    ],
    "io_out": [
      25,
      25,
      10,
      5,
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-4, 0, -2, 5, 3, -3]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(take([-4, 0, -2, 5, 3, -3],1),-1),1)),3)",
    "io_inp": [
      -4,
      0,
      -2,
      5,
      3,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(take(input,1),-1),1)),3)"
  },
  {
    "input": "input : list = [-5, -5, 1]\noutput : list = [3, -15, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(reverse([-5, -5, 1])),3)))",
    "io_inp": [
      -5,
      -5,
      1
    ],
    "io_out": [
      3,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(reverse(input)),3)))"
  },
  {
    "input": "input : list = [2, -2, 0, -1, -2]\noutput : list = [-8, 8, 0, 4, 8]",
    "output": "generated_output : list = mul_n([2, -2, 0, -1, -2],-4)",
    "io_inp": [
      2,
      -2,
      0,
      -1,
      -2
    ],
    "io_out": [
      -8,
      8,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 5, -4, 1, -4]\noutput : list = [3, 5, -4]",
    "output": "generated_output : list = take([3, 5, -4, 1, -4],3)",
    "io_inp": [
      3,
      5,
      -4,
      1,
      -4
    ],
    "io_out": [
      3,
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, 5, -5, 5]\noutput : list = [-32, -8, 48, 48]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sort_asc([-2, 5, -5, 5]),1)),-2),-4)",
    "io_inp": [
      -2,
      5,
      -5,
      5
    ],
    "io_out": [
      -32,
      -8,
      48,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sort_asc(input),1)),-2),-4)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [10, -6]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(reverse([3, -5])),13),15),-2)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(reverse(input)),13),15),-2)"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = reverse(reverse([5, 4, 2]))",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, -4, -2, 2, 4]\noutput : list = [27, 21, 15, 9, 3]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(add_n([0, -4, -2, 2, 4],-5),3),-1)))",
    "io_inp": [
      0,
      -4,
      -2,
      2,
      4
    ],
    "io_out": [
      27,
      21,
      15,
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(add_n(input,-5),3),-1)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = take(sort_des([-5, 1]),6)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),6)"
  },
  {
    "input": "input : list = [2, 0, -4, -2, 1, 3]\noutput : list = [3, 2, 1, 0, -2]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse([2, 0, -4, -2, 1, 3])),5),1)",
    "io_inp": [
      2,
      0,
      -4,
      -2,
      1,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(input)),5),1)"
  },
  {
    "input": "input : list = [-5, -3, 2, 5, 5, 1]\noutput : list = [-8, -4, 4, 6, 12, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(reverse([-5, -3, 2, 5, 5, 1]),1))),2)",
    "io_inp": [
      -5,
      -3,
      2,
      5,
      5,
      1
    ],
    "io_out": [
      -8,
      -4,
      4,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(reverse(input),1))),2)"
  },
  {
    "input": "input : list = [4, 5, 1, 3]\noutput : list = [-25, -20, -15, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc([4, 5, 1, 3]))),-5)",
    "io_inp": [
      4,
      5,
      1,
      3
    ],
    "io_out": [
      -25,
      -20,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [-4, 0, 5, -5]\noutput : list = [25, -15]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(drop([-4, 0, 5, -5],2)),-4),5)",
    "io_inp": [
      -4,
      0,
      5,
      -5
    ],
    "io_out": [
      25,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(drop(input,2)),-4),5)"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [-5]",
    "output": "generated_output : list = take(sub_n(take([-2, 1, 3],1),3),24)",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),3),24)"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [0, -8]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(drop([0, 3, -1],1)),2),-1),5)",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(drop(input,1)),2),-1),5)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(add_n([-5, -3],1)))))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(add_n(input,1)))))"
  },
  {
    "input": "input : list = [0, -2, 2, 5, -5, -2]\noutput : list = [-2, -4, -6, -6, -9]",
    "output": "generated_output : list = mul_n(sort_des(add_n(drop(sort_des([0, -2, 2, 5, -5, -2]),1),-4)),1)",
    "io_inp": [
      0,
      -2,
      2,
      5,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(drop(sort_des(input),1),-4)),1)"
  },
  {
    "input": "input : list = [2, -5, 5, -4]\noutput : list = [-4, 10, -10, 8]",
    "output": "generated_output : list = mul_n([2, -5, 5, -4],-2)",
    "io_inp": [
      2,
      -5,
      5,
      -4
    ],
    "io_out": [
      -4,
      10,
      -10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -5, -3, 5, 4, -5]\noutput : list = [28, 28, 18, 13, -17, -22]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(mul_n([-2, -5, -3, 5, 4, -5],-5),7)),-3))",
    "io_inp": [
      -2,
      -5,
      -3,
      5,
      4,
      -5
    ],
    "io_out": [
      28,
      28,
      18,
      13,
      -17,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(mul_n(input,-5),7)),-3))"
  },
  {
    "input": "input : list = [-3, 2, 2, 3]\noutput : list = [4, 3, 3, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des([-3, 2, 2, 3]),-1)))",
    "io_inp": [
      -3,
      2,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(input),-1)))"
  },
  {
    "input": "input : list = [0, 1, 2, 1, 2]\noutput : list = [8, 8, 7, 7, 6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sub_n([0, 1, 2, 1, 2],-1),23))),-5)",
    "io_inp": [
      0,
      1,
      2,
      1,
      2
    ],
    "io_out": [
      8,
      8,
      7,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sub_n(input,-1),23))),-5)"
  },
  {
    "input": "input : list = [4, -4, -3]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(mul_n([4, -4, -3],-1),1),22)),1)",
    "io_inp": [
      4,
      -4,
      -3
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(mul_n(input,-1),1),22)),1)"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(mul_n([0, 0, 3],1),-2),2)))",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(mul_n(input,1),-2),2)))"
  },
  {
    "input": "input : list = [5, -5, 3, 3]\noutput : list = [95, -25, -25]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(mul_n([5, -5, 3, 3],3),4),-5)),3)",
    "io_inp": [
      5,
      -5,
      3,
      3
    ],
    "io_out": [
      95,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(mul_n(input,3),4),-5)),3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-10, 15]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(sub_n([-5, 0],-2),-1)),5),43)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -10,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(sub_n(input,-2),-1)),5),43)"
  },
  {
    "input": "input : list = [5, -4, -1, -3, -4, -4]\noutput : list = [3, -3, -5, -6, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([5, -4, -1, -3, -4, -4]),2))",
    "io_inp": [
      5,
      -4,
      -1,
      -3,
      -4,
      -4
    ],
    "io_out": [
      3,
      -3,
      -5,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [-3, -5, 4, 1]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_des(take([-3, -5, 4, 1],1)),1)",
    "io_inp": [
      -3,
      -5,
      4,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),1)"
  },
  {
    "input": "input : list = [-1, -4, 5, -4, 4]\noutput : list = [-4, -4, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(drop([-1, -4, 5, -4, 4],1)))",
    "io_inp": [
      -1,
      -4,
      5,
      -4,
      4
    ],
    "io_out": [
      -4,
      -4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [30, 3]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(add_n([-4, 5],-5),-3),-2)),5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      30,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(add_n(input,-5),-3),-2)),5)"
  },
  {
    "input": "input : list = [-4, 4, -3]\noutput : list = [17, 14, -7]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des([-4, 4, -3]),-3)),-5)",
    "io_inp": [
      -4,
      4,
      -3
    ],
    "io_out": [
      17,
      14,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(input),-3)),-5)"
  },
  {
    "input": "input : list = [1, -4, 1, -4]\noutput : list = [6, 6, 1, 1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(sort_asc([1, -4, 1, -4])))),-5)",
    "io_inp": [
      1,
      -4,
      1,
      -4
    ],
    "io_out": [
      6,
      6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [-1, -2, 5, -5, -3]\noutput : list = [-3, -5, 5, -2, -1]",
    "output": "generated_output : list = reverse([-1, -2, 5, -5, -3])",
    "io_inp": [
      -1,
      -2,
      5,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [-20, -15, -5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_des([3, 1, 4])),-5)))",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      -20,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_des(input)),-5)))"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [25, 15, -10]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(reverse([2, -5, -3]),5),-1)),1)",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      25,
      15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(reverse(input),5),-1)),1)"
  },
  {
    "input": "input : list = [-2, 1, 5, 0, -2, 2]\noutput : list = [0, 5, 1, -2]",
    "output": "generated_output : list = reverse(take([-2, 1, 5, 0, -2, 2],4))",
    "io_inp": [
      -2,
      1,
      5,
      0,
      -2,
      2
    ],
    "io_out": [
      0,
      5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(input,4))"
  },
  {
    "input": "input : list = [5, 1, -4, -4, 1, -4]\noutput : list = [-20, -4, 16, 16, -4, 16]",
    "output": "generated_output : list = take(mul_n([5, 1, -4, -4, 1, -4],-4),9)",
    "io_inp": [
      5,
      1,
      -4,
      -4,
      1,
      -4
    ],
    "io_out": [
      -20,
      -4,
      16,
      16,
      -4,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),9)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = take(take(sort_asc(sort_des([0, -2, 4])),16),28)",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(input)),16),28)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [6, 13]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(reverse([-3, 4])),4)),-5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      6,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(reverse(input)),4)),-5)"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = drop([3, -1, 4],1)",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -5, 4, 0, 0]\noutput : list = [3, 3, -1, -1, -6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(sort_des([4, -5, 4, 0, 0]))),-3),4)",
    "io_inp": [
      4,
      -5,
      4,
      0,
      0
    ],
    "io_out": [
      3,
      3,
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(sort_des(input))),-3),4)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(sort_des([-5, -2])),7)))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(sort_des(input)),7)))"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [-3, -6, -9]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(sub_n([-2, -5, 1],4)),27)))",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(sub_n(input,4)),27)))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [7, 7, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc([4, 4, -3]),-2)),-1)",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      7,
      7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(input),-2)),-1)"
  },
  {
    "input": "input : list = [0, -5, 0, -4]\noutput : list = [-15, -3, -18]",
    "output": "generated_output : list = mul_n(add_n(reverse(drop([0, -5, 0, -4],1)),-1),3)",
    "io_inp": [
      0,
      -5,
      0,
      -4
    ],
    "io_out": [
      -15,
      -3,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(drop(input,1)),-1),3)"
  },
  {
    "input": "input : list = [3, -1, 5, 2, -5]\noutput : list = [-10, 4, 10, -2, 6]",
    "output": "generated_output : list = reverse(mul_n([3, -1, 5, 2, -5],2))",
    "io_inp": [
      3,
      -1,
      5,
      2,
      -5
    ],
    "io_out": [
      -10,
      4,
      10,
      -2,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [0, 5, -4, -5, -1, -3]\noutput : list = [-2, -1, 0, 2, 3, 8]",
    "output": "generated_output : list = add_n(sort_asc(take(take(mul_n([0, 5, -4, -5, -1, -3],1),22),10)),3)",
    "io_inp": [
      0,
      5,
      -4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -1,
      0,
      2,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(mul_n(input,1),22),10)),3)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [1, 7, 8]",
    "output": "generated_output : list = take(sort_asc(take(add_n(sort_asc([-2, 4, 5]),3),12)),32)",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(sort_asc(input),3),12)),32)"
  },
  {
    "input": "input : list = [0, -2, -4, -2, 1]\noutput : list = [-4, -2, -2, 0, 1]",
    "output": "generated_output : list = sort_asc([0, -2, -4, -2, 1])",
    "io_inp": [
      0,
      -2,
      -4,
      -2,
      1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4, 3]\noutput : list = [12, 11, 4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(sub_n([4, -4, 3],-5),-3))))",
    "io_inp": [
      4,
      -4,
      3
    ],
    "io_out": [
      12,
      11,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(sub_n(input,-5),-3))))"
  },
  {
    "input": "input : list = [1, -2, -3, -5, 2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = mul_n(take([1, -2, -3, -5, 2],2),-2)",
    "io_inp": [
      1,
      -2,
      -3,
      -5,
      2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-2)"
  },
  {
    "input": "input : list = [3, 3, 3, -5]\noutput : list = [31, -1, -1, -1]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(sub_n([3, 3, 3, -5],3),-4),1),15))",
    "io_inp": [
      3,
      3,
      3,
      -5
    ],
    "io_out": [
      31,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(sub_n(input,3),-4),1),15))"
  },
  {
    "input": "input : list = [-1, -5, 1, -2, 1]\noutput : list = [-5, -2, -1, 1, 1]",
    "output": "generated_output : list = reverse(sort_des(reverse([-1, -5, 1, -2, 1])))",
    "io_inp": [
      -1,
      -5,
      1,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [0, 3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = drop([0, 3, 1],1)",
    "io_inp": [
      0,
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -2, 1, 5, -3]\noutput : list = [45, 42, 39, 30, 18]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(sort_asc([-4, -2, 1, 5, -3]),5),5),-3),3)",
    "io_inp": [
      -4,
      -2,
      1,
      5,
      -3
    ],
    "io_out": [
      45,
      42,
      39,
      30,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(sort_asc(input),5),5),-3),3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-12, -6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(reverse([-5, 1]),9),-4)),-3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(reverse(input),9),-4)),-3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n(sub_n([1, 2],4),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),3)"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [-14, -8, 2]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(sort_asc([-4, 4, -1]),-5),2),-4),47)",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      -14,
      -8,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(sort_asc(input),-5),2),-4),47)"
  },
  {
    "input": "input : list = [2, 4, 4, 1, -1]\noutput : list = [-16, -16, -8, -4, 4]",
    "output": "generated_output : list = mul_n(sort_des(reverse([2, 4, 4, 1, -1])),-4)",
    "io_inp": [
      2,
      4,
      4,
      1,
      -1
    ],
    "io_out": [
      -16,
      -16,
      -8,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-4)"
  },
  {
    "input": "input : list = [-1, -3, -4, -3]\noutput : list = [20, 25, 20, 10]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n([-1, -3, -4, -3],-5)),2),5),2)",
    "io_inp": [
      -1,
      -3,
      -4,
      -3
    ],
    "io_out": [
      20,
      25,
      20,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n(input,-5)),2),5),2)"
  },
  {
    "input": "input : list = [3, 5, -5, 3]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(take(take(sort_asc(take([3, 5, -5, 3],2)),22),16),13)",
    "io_inp": [
      3,
      5,
      -5,
      3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(take(take(sort_asc(take(input,2)),22),16),13)"
  },
  {
    "input": "input : list = [3, -2, -5, -3, -1]\noutput : list = [-180, -140, -120, -100, -20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sub_n([3, -2, -5, -3, -1],4))),-4),-5)",
    "io_inp": [
      3,
      -2,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -180,
      -140,
      -120,
      -100,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sub_n(input,4))),-4),-5)"
  },
  {
    "input": "input : list = [1, 3, -2, 0]\noutput : list = [-12, 8, 0]",
    "output": "generated_output : list = mul_n(drop([1, 3, -2, 0],1),-4)",
    "io_inp": [
      1,
      3,
      -2,
      0
    ],
    "io_out": [
      -12,
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [0, -5, -2, 3, -4, -2]\noutput : list = [-3, -5, 2, -3, -6, -1]",
    "output": "generated_output : list = add_n(take(reverse([0, -5, -2, 3, -4, -2]),27),-1)",
    "io_inp": [
      0,
      -5,
      -2,
      3,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -5,
      2,
      -3,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),27),-1)"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [5, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -5, 5])",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, -3, -2, 2]\noutput : list = [9, 6]",
    "output": "generated_output : list = take(add_n(reverse(add_n(take([-4, -1, -3, -2, 2],2),5)),5),3)",
    "io_inp": [
      -4,
      -1,
      -3,
      -2,
      2
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(take(input,2),5)),5),3)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(mul_n([0, 0],-1)),-2),-4))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(mul_n(input,-1)),-2),-4))"
  },
  {
    "input": "input : list = [-2, -3, -2, -5, 0]\noutput : list = [6, 1, 4, 3, 4]",
    "output": "generated_output : list = add_n(add_n(take(reverse([-2, -3, -2, -5, 0]),16),4),2)",
    "io_inp": [
      -2,
      -3,
      -2,
      -5,
      0
    ],
    "io_out": [
      6,
      1,
      4,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(input),16),4),2)"
  },
  {
    "input": "input : list = [-1, 1, -2, -1]\noutput : list = [3, 5, 2, 3]",
    "output": "generated_output : list = add_n([-1, 1, -2, -1],4)",
    "io_inp": [
      -1,
      1,
      -2,
      -1
    ],
    "io_out": [
      3,
      5,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [10, 9, 6]",
    "output": "generated_output : list = sort_des(add_n(sort_des([5, 1, 4]),5))",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      10,
      9,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [3, 3, -3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(drop([3, 3, -3, -5],2))),4))",
    "io_inp": [
      3,
      3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(drop(input,2))),4))"
  },
  {
    "input": "input : list = [0, 1, 3, -2, -3, -5]\noutput : list = [-21, -13, -9, -1, 3, 11]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([0, 1, 3, -2, -3, -5]),4),-1)",
    "io_inp": [
      0,
      1,
      3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -21,
      -13,
      -9,
      -1,
      3,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),4),-1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse([-1, 0])),-5),-1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(input)),-5),-1)"
  },
  {
    "input": "input : list = [-1, -3, -5, 1, 0, 1]\noutput : list = [-7, -9, -11, -5, -6, -5]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(add_n([-1, -3, -5, 1, 0, 1],-1)),-1)),-4)",
    "io_inp": [
      -1,
      -3,
      -5,
      1,
      0,
      1
    ],
    "io_out": [
      -7,
      -9,
      -11,
      -5,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(add_n(input,-1)),-1)),-4)"
  },
  {
    "input": "input : list = [5, 5, 5, 1, -1]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = take(drop([5, 5, 5, 1, -1],2),4)",
    "io_inp": [
      5,
      5,
      5,
      1,
      -1
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(input,2),4)"
  },
  {
    "input": "input : list = [2, 2, 4, 3]\noutput : list = [4, 3, 2, 2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(reverse([2, 2, 4, 3])))))",
    "io_inp": [
      2,
      2,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(add_n([-5, 4],-5),-2),5)),2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(add_n(input,-5),-2),5)),2)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-19, 21]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([4, -4]),5),1)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -19,
      21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),5),1)"
  },
  {
    "input": "input : list = [-3, -1, 4]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(take([-3, -1, 4],1),-1),-4),4))",
    "io_inp": [
      -3,
      -1,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(take(input,1),-1),-4),4))"
  },
  {
    "input": "input : list = [-2, -1, -5, -2, -1]\noutput : list = [-9, -6, -5, -5]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(drop([-2, -1, -5, -2, -1],1))),-1),-3)",
    "io_inp": [
      -2,
      -1,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(drop(input,1))),-1),-3)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [10, 1]",
    "output": "generated_output : list = take(sub_n(reverse(take(drop([-1, -4, 5],1),8)),-5),31)",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      10,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(drop(input,1),8)),-5),31)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(take(reverse(take(sort_des([-1, 1]),2)),20))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(sort_des(input),2)),20))"
  },
  {
    "input": "input : list = [-4, 3, -5, 2, -1]\noutput : list = [-4, 3, -5, 2, -1]",
    "output": "generated_output : list = reverse(reverse([-4, 3, -5, 2, -1]))",
    "io_inp": [
      -4,
      3,
      -5,
      2,
      -1
    ],
    "io_out": [
      -4,
      3,
      -5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, 2, -1, -1, -2]\noutput : list = [2, -1, -1, -2]",
    "output": "generated_output : list = drop([1, 2, -1, -1, -2],1)",
    "io_inp": [
      1,
      2,
      -1,
      -1,
      -2
    ],
    "io_out": [
      2,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 5, 3, 0, 1, 2]\noutput : list = [-8, -9, -10, -7, -5, -9]",
    "output": "generated_output : list = reverse(add_n(sub_n([1, 5, 3, 0, 1, 2],5),-5))",
    "io_inp": [
      1,
      5,
      3,
      0,
      1,
      2
    ],
    "io_out": [
      -8,
      -9,
      -10,
      -7,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,5),-5))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-10, 5]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(sub_n([-2, -5],2),7),5)),5)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(sub_n(input,2),7),5)),5)"
  },
  {
    "input": "input : list = [2, 3, 5, 0, 2, 5]\noutput : list = [0, 8, 8, 12, 20, 20]",
    "output": "generated_output : list = mul_n(sort_asc([2, 3, 5, 0, 2, 5]),4)",
    "io_inp": [
      2,
      3,
      5,
      0,
      2,
      5
    ],
    "io_out": [
      0,
      8,
      8,
      12,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [12, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(reverse([0, 2]),5)),-2),-3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(reverse(input),5)),-2),-3)"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(add_n([-2, -3, -4],4),1),23)))",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(add_n(input,4),1),23)))"
  },
  {
    "input": "input : list = [5, -2, -5, 4]\noutput : list = [-10, -7]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(sort_asc([5, -2, -5, 4]),2),5)),36)",
    "io_inp": [
      5,
      -2,
      -5,
      4
    ],
    "io_out": [
      -10,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(sort_asc(input),2),5)),36)"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(add_n(drop(reverse(mul_n([3, -5, -5],3)),2),-2))",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(reverse(mul_n(input,3)),2),-2))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = reverse([2, -1])",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, 0, 1]\noutput : list = [-13, -16, -16, -19]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(add_n(add_n([1, 2, 0, 1],5),-1)),-3),-1)",
    "io_inp": [
      1,
      2,
      0,
      1
    ],
    "io_out": [
      -13,
      -16,
      -16,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(add_n(add_n(input,5),-1)),-3),-1)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [3, 4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(reverse([-5, -4]),1))),-1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(reverse(input),1))),-1)"
  },
  {
    "input": "input : list = [5, -3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = drop([5, -3, 1],1)",
    "io_inp": [
      5,
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -3, 3, 2]\noutput : list = [-1, -5, 1, 0]",
    "output": "generated_output : list = sub_n([1, -3, 3, 2],2)",
    "io_inp": [
      1,
      -3,
      3,
      2
    ],
    "io_out": [
      -1,
      -5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -4, 5, -5]\noutput : list = [-25, -20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(drop([-4, -4, 5, -5],1)),5),1))",
    "io_inp": [
      -4,
      -4,
      5,
      -5
    ],
    "io_out": [
      -25,
      -20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(drop(input,1)),5),1))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(reverse([5, -1]))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, -1, 4, 2, 3]\noutput : list = [2, 1, 1, 0, -3]",
    "output": "generated_output : list = add_n(sort_des([3, -1, 4, 2, 3]),-2)",
    "io_inp": [
      3,
      -1,
      4,
      2,
      3
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [4, 7, -2]",
    "output": "generated_output : list = take(sub_n(sub_n(take(reverse([-4, 5, 2]),15),-5),3),41)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      4,
      7,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(reverse(input),15),-5),3),41)"
  },
  {
    "input": "input : list = [-3, 3, 1, 0]\noutput : list = [-8, -5, -4, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(reverse([-3, 3, 1, 0]))),5))",
    "io_inp": [
      -3,
      3,
      1,
      0
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(reverse(input))),5))"
  },
  {
    "input": "input : list = [1, 3, 5]\noutput : list = [6, 4, 2]",
    "output": "generated_output : list = reverse(sub_n([1, 3, 5],-1))",
    "io_inp": [
      1,
      3,
      5
    ],
    "io_out": [
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [2, 1, 1, -3, 4, 5]\noutput : list = [5, 4, 4, 0, 7]",
    "output": "generated_output : list = take(sub_n(take(add_n(sub_n([2, 1, 1, -3, 4, 5],5),3),18),-5),5)",
    "io_inp": [
      2,
      1,
      1,
      -3,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      0,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(sub_n(input,5),3),18),-5),5)"
  },
  {
    "input": "input : list = [1, -5, 2, -1, 1, 2]\noutput : list = [-19, -3, 5, 5, 9, 9]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(mul_n([1, -5, 2, -1, 1, 2],1)),1),4),1)",
    "io_inp": [
      1,
      -5,
      2,
      -1,
      1,
      2
    ],
    "io_out": [
      -19,
      -3,
      5,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(mul_n(input,1)),1),4),1)"
  },
  {
    "input": "input : list = [0, -4, 5, 1]\noutput : list = [-2, 2, -7]",
    "output": "generated_output : list = add_n(add_n(take(reverse([0, -4, 5, 1]),3),1),-4)",
    "io_inp": [
      0,
      -4,
      5,
      1
    ],
    "io_out": [
      -2,
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(input),3),1),-4)"
  },
  {
    "input": "input : list = [5, -5, -4, -1, 5]\noutput : list = [-18, -14, -2, 22]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(drop([5, -5, -4, -1, 5],1),4))),2)",
    "io_inp": [
      5,
      -5,
      -4,
      -1,
      5
    ],
    "io_out": [
      -18,
      -14,
      -2,
      22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(drop(input,1),4))),2)"
  },
  {
    "input": "input : list = [3, -1, -1, -5, -3, -1]\noutput : list = [-15, -3, -3, 9, 3, -3]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(mul_n([3, -1, -1, -5, -3, -1],-1),3),-5),3),18)",
    "io_inp": [
      3,
      -1,
      -1,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -15,
      -3,
      -3,
      9,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(mul_n(input,-1),3),-5),3),18)"
  },
  {
    "input": "input : list = [0, 0, 3, 1]\noutput : list = [3, 1, 0, 0]",
    "output": "generated_output : list = reverse(sort_asc([0, 0, 3, 1]))",
    "io_inp": [
      0,
      0,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -5, 4, 3]\noutput : list = [-5, 4, 3]",
    "output": "generated_output : list = drop([2, -5, 4, 3],1)",
    "io_inp": [
      2,
      -5,
      4,
      3
    ],
    "io_out": [
      -5,
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 2, 0, 4, 0]\noutput : list = [0, 0, 25, 50, 100]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(mul_n([1, 2, 0, 4, 0],5)),5)))",
    "io_inp": [
      1,
      2,
      0,
      4,
      0
    ],
    "io_out": [
      0,
      0,
      25,
      50,
      100
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(mul_n(input,5)),5)))"
  },
  {
    "input": "input : list = [3, -4, -3, -4, 4]\noutput : list = [4, 3, -3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des([3, -4, -3, -4, 4]))",
    "io_inp": [
      3,
      -4,
      -3,
      -4,
      4
    ],
    "io_out": [
      4,
      3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [21, 12]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n([-2, 1],-3)),-5),3),-3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      21,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n(input,-3)),-5),3),-3)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [-3, -5, 2]",
    "output": "generated_output : list = take(sub_n(reverse([3, -4, -2]),1),9)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),1),9)"
  },
  {
    "input": "input : list = [-1, -3, -5, 2]\noutput : list = [2, 6, 10, -4]",
    "output": "generated_output : list = mul_n([-1, -3, -5, 2],-2)",
    "io_inp": [
      -1,
      -3,
      -5,
      2
    ],
    "io_out": [
      2,
      6,
      10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 1, -1, 0]\noutput : list = [-5, 1]",
    "output": "generated_output : list = reverse(reverse(take([-5, 1, -1, 0],2)))",
    "io_inp": [
      -5,
      1,
      -1,
      0
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [5, 0, -4, -1, -2, -3]\noutput : list = [13, 3, 1, -1, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(reverse([5, 0, -4, -1, -2, -3])),2),3))",
    "io_inp": [
      5,
      0,
      -4,
      -1,
      -2,
      -3
    ],
    "io_out": [
      13,
      3,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(reverse(input)),2),3))"
  },
  {
    "input": "input : list = [-3, -2, -5, -1, -4]\noutput : list = [-4, -3, -6, -2, -5]",
    "output": "generated_output : list = sub_n(add_n([-3, -2, -5, -1, -4],1),2)",
    "io_inp": [
      -3,
      -2,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -6,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),2)"
  },
  {
    "input": "input : list = [-1, 1, 4, -4, -4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(drop([-1, 1, 4, -4, -4, 4],4))),6))",
    "io_inp": [
      -1,
      1,
      4,
      -4,
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(drop(input,4))),6))"
  },
  {
    "input": "input : list = [-2, -2, -5, -1]\noutput : list = [3, 2, 2, -1]",
    "output": "generated_output : list = add_n(sort_des([-2, -2, -5, -1]),4)",
    "io_inp": [
      -2,
      -2,
      -5,
      -1
    ],
    "io_out": [
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-4, 5, 3, -1, 3, 5]\noutput : list = [-7, 2, 0, -4, 0, 2]",
    "output": "generated_output : list = add_n([-4, 5, 3, -1, 3, 5],-3)",
    "io_inp": [
      -4,
      5,
      3,
      -1,
      3,
      5
    ],
    "io_out": [
      -7,
      2,
      0,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 0, 5, -3, -2, 1]\noutput : list = [-100, -20, 0, 20, 40, 60]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(sort_asc([-1, 0, 5, -3, -2, 1])),-4),5),45)",
    "io_inp": [
      -1,
      0,
      5,
      -3,
      -2,
      1
    ],
    "io_out": [
      -100,
      -20,
      0,
      20,
      40,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(sort_asc(input)),-4),5),45)"
  },
  {
    "input": "input : list = [3, -5, 3, -3, 5]\noutput : list = [-5, 3, -3, 5]",
    "output": "generated_output : list = drop([3, -5, 3, -3, 5],1)",
    "io_inp": [
      3,
      -5,
      3,
      -3,
      5
    ],
    "io_out": [
      -5,
      3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(sub_n([2, 4, 0],1),3),1)))",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(sub_n(input,1),3),1)))"
  },
  {
    "input": "input : list = [5, 2, -4]\noutput : list = [-20, -8, 16]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(mul_n([5, 2, -4],-4),1),-4),5),27)",
    "io_inp": [
      5,
      2,
      -4
    ],
    "io_out": [
      -20,
      -8,
      16
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(mul_n(input,-4),1),-4),5),27)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [4]",
    "output": "generated_output : list = take(take([4, -5, 2],1),7)",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(input,1),7)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(take([2, 3, 2],1),7))))",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(take(input,1),7))))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sort_asc([0, 1]),1),1)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sort_asc(input),1),1)))"
  },
  {
    "input": "input : list = [-4, 2, 3, 3, 4, -5]\noutput : list = [-5, -4, 2, 3, 3, 4]",
    "output": "generated_output : list = take(reverse(sort_des(take(sort_asc([-4, 2, 3, 3, 4, -5]),11))),32)",
    "io_inp": [
      -4,
      2,
      3,
      3,
      4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(sort_asc(input),11))),32)"
  },
  {
    "input": "input : list = [0, 5, -5, -1, 3, 1]\noutput : list = [4, 0, -1, -2, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(add_n([0, 5, -5, -1, 3, 1],1),1),-1),-1))",
    "io_inp": [
      0,
      5,
      -5,
      -1,
      3,
      1
    ],
    "io_out": [
      4,
      0,
      -1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(add_n(input,1),1),-1),-1))"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(drop([5, 5, 2],1),3))),2)",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(drop(input,1),3))),2)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc([-1, -4])",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(mul_n([-5, 5],-1),9)),13))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(mul_n(input,-1),9)),13))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-5, -11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(add_n([-2, 0],5),1),-3),-1))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(add_n(input,5),1),-3),-1))"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [-30, 0, 15]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(reverse([1, 0, -2]),-3),-5),1),10)",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      -30,
      0,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(reverse(input),-3),-5),1),10)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [0, 14]",
    "output": "generated_output : list = reverse(mul_n(sub_n([4, -3],-3),2))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      0,
      14
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,-3),2))"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(sort_des([-5, -2, 0]),-3),-4),1),3)",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(sort_des(input),-3),-4),1),3)"
  },
  {
    "input": "input : list = [-1, 4, -2, 4, 2, -4]\noutput : list = [-4, -2, -1, 2, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc([-1, 4, -2, 4, 2, -4])))))",
    "io_inp": [
      -1,
      4,
      -2,
      4,
      2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -5, 4, -1, -5]\noutput : list = [-5, -5, -2, -1, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(take(reverse([-2, -5, 4, -1, -5]),19))),33)",
    "io_inp": [
      -2,
      -5,
      4,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(reverse(input),19))),33)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [4, 8, 10]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-1, -5, 1],4),-5))",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,4),-5))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [8, 6]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(sort_asc([5, 3]),2),5),21))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(sort_asc(input),2),5),21))"
  },
  {
    "input": "input : list = [-5, -2, -5, -2, -3, 2]\noutput : list = [-5, -5, -3, -2, -2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_des([-5, -2, -5, -2, -3, 2])))))",
    "io_inp": [
      -5,
      -2,
      -5,
      -2,
      -3,
      2
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, -1, -3, 5]\noutput : list = [6, 4, -2]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(drop([-5, -1, -3, 5],1),3),1),-1))",
    "io_inp": [
      -5,
      -1,
      -3,
      5
    ],
    "io_out": [
      6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(drop(input,1),3),1),-1))"
  },
  {
    "input": "input : list = [-4, 2, -3, 5, -2]\noutput : list = [5, 2, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-4, 2, -3, 5, -2]))",
    "io_inp": [
      -4,
      2,
      -3,
      5,
      -2
    ],
    "io_out": [
      5,
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [-5, -9, -11]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n(sub_n([3, -3, -1],3),-4),-1)))",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(sub_n(input,3),-4),-1)))"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(take(take(drop([3, 0, -2],1),7),12))",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(drop(input,1),7),12))"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [-35, 85, 125]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n(add_n([3, 5, -3],1),-4)),-1),-5)",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      -35,
      85,
      125
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(add_n(input,1),-4)),-1),-5)"
  },
  {
    "input": "input : list = [-5, -2, 2, 1, 4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(sort_asc(drop([-5, -2, 2, 1, 4, 1],4)),4)",
    "io_inp": [
      -5,
      -2,
      2,
      1,
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,4)),4)"
  },
  {
    "input": "input : list = [-3, -4, -1, 2, 2]\noutput : list = [0, 0, -3, -6, -5]",
    "output": "generated_output : list = reverse(take(reverse(reverse(sub_n([-3, -4, -1, 2, 2],2))),24))",
    "io_inp": [
      -3,
      -4,
      -1,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      -3,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(sub_n(input,2))),24))"
  },
  {
    "input": "input : list = [-5, 4, -5, 3, 1, 0]\noutput : list = [-25, 20]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(take([-5, 4, -5, 3, 1, 0],2)),10)),5)",
    "io_inp": [
      -5,
      4,
      -5,
      3,
      1,
      0
    ],
    "io_out": [
      -25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(take(input,2)),10)),5)"
  },
  {
    "input": "input : list = [1, -3, -4, 2, 4]\noutput : list = [4, 2, -4, -3, 1]",
    "output": "generated_output : list = take(reverse([1, -3, -4, 2, 4]),6)",
    "io_inp": [
      1,
      -3,
      -4,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [-5, 0, 2, 5]\noutput : list = [6, 9]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(drop([-5, 0, 2, 5],2),-4),3),-1),2)",
    "io_inp": [
      -5,
      0,
      2,
      5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(drop(input,2),-4),3),-1),2)"
  },
  {
    "input": "input : list = [-5, 3, -4, 5, -5, 0]\noutput : list = [-20, -20, -16, 0, 12, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse([-5, 3, -4, 5, -5, 0]),4)))",
    "io_inp": [
      -5,
      3,
      -4,
      5,
      -5,
      0
    ],
    "io_out": [
      -20,
      -20,
      -16,
      0,
      12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [0, -4, 0, 2, 3, 1]\noutput : list = [5, 7, 6, 4]",
    "output": "generated_output : list = reverse(sub_n(drop([0, -4, 0, 2, 3, 1],2),-4))",
    "io_inp": [
      0,
      -4,
      0,
      2,
      3,
      1
    ],
    "io_out": [
      5,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,2),-4))"
  },
  {
    "input": "input : list = [-2, -3, -2, 3, -5]\noutput : list = [81, 126, 81, -144, 216]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(mul_n([-2, -3, -2, 3, -5],-5),3),3),3),20)",
    "io_inp": [
      -2,
      -3,
      -2,
      3,
      -5
    ],
    "io_out": [
      81,
      126,
      81,
      -144,
      216
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(mul_n(input,-5),3),3),3),20)"
  },
  {
    "input": "input : list = [-1, 5, 2, 4, 1, 0]\noutput : list = [-2, 3, 8, 13, 23, 28]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(mul_n([-1, 5, 2, 4, 1, 0],5)))),3)",
    "io_inp": [
      -1,
      5,
      2,
      4,
      1,
      0
    ],
    "io_out": [
      -2,
      3,
      8,
      13,
      23,
      28
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(mul_n(input,5)))),3)"
  },
  {
    "input": "input : list = [0, -1, 2, 4, 0, 5]\noutput : list = [3, 2, 5, 7, 3, 8]",
    "output": "generated_output : list = mul_n(sub_n(add_n([0, -1, 2, 4, 0, 5],4),1),1)",
    "io_inp": [
      0,
      -1,
      2,
      4,
      0,
      5
    ],
    "io_out": [
      3,
      2,
      5,
      7,
      3,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,4),1),1)"
  },
  {
    "input": "input : list = [2, 5, 2, -1, -2]\noutput : list = [59, 23, 23, -13, -25]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(mul_n([2, 5, 2, -1, -2],-3)),-4),1))",
    "io_inp": [
      2,
      5,
      2,
      -1,
      -2
    ],
    "io_out": [
      59,
      23,
      23,
      -13,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(mul_n(input,-3)),-4),1))"
  },
  {
    "input": "input : list = [-1, 0, -3, 3, 4]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take([-1, 0, -3, 3, 4],2)",
    "io_inp": [
      -1,
      0,
      -3,
      3,
      4
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -5, 1, 0]\noutput : list = [-9, -6]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(drop([1, -5, 1, 0],2),-3),5),-1),5)",
    "io_inp": [
      1,
      -5,
      1,
      0
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(drop(input,2),-3),5),-1),5)"
  },
  {
    "input": "input : list = [-3, 1, -5, -4]\noutput : list = [7, 3, 2]",
    "output": "generated_output : list = add_n(take(take(add_n(sort_des([-3, 1, -5, -4]),2),14),3),4)",
    "io_inp": [
      -3,
      1,
      -5,
      -4
    ],
    "io_out": [
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(sort_des(input),2),14),3),4)"
  },
  {
    "input": "input : list = [-1, 5, -5]\noutput : list = [2, -4, -8]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(reverse([-1, 5, -5])),7),-4),1)",
    "io_inp": [
      -1,
      5,
      -5
    ],
    "io_out": [
      2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(reverse(input)),7),-4),1)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n([-2, -2],3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [65, -19, 53]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(mul_n([-5, 2, -4],-4),3))),5)",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      65,
      -19,
      53
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(mul_n(input,-4),3))),5)"
  },
  {
    "input": "input : list = [2, 1, -5]\noutput : list = [5, 4, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(sort_asc([2, 1, -5])),3)))",
    "io_inp": [
      2,
      1,
      -5
    ],
    "io_out": [
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-5, -5, -1, -5]\noutput : list = [5, 25, 25, 25]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(reverse([-5, -5, -1, -5]),9),-5)),4)",
    "io_inp": [
      -5,
      -5,
      -1,
      -5
    ],
    "io_out": [
      5,
      25,
      25,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(reverse(input),9),-5)),4)"
  },
  {
    "input": "input : list = [5, -2, 4, 1, 0]\noutput : list = [-2, 0, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_des([5, -2, 4, 1, 0])),15)))",
    "io_inp": [
      5,
      -2,
      4,
      1,
      0
    ],
    "io_out": [
      -2,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_des(input)),15)))"
  },
  {
    "input": "input : list = [-4, 1, 2, 3]\noutput : list = [60, 40, 20, -80]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(mul_n([-4, 1, 2, 3],-4),-1))),5)",
    "io_inp": [
      -4,
      1,
      2,
      3
    ],
    "io_out": [
      60,
      40,
      20,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(mul_n(input,-4),-1))),5)"
  },
  {
    "input": "input : list = [1, -5, 5, -4, -5, 0]\noutput : list = [0, 0, 1, 5, 6, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([1, -5, 5, -4, -5, 0],-1),-4))",
    "io_inp": [
      1,
      -5,
      5,
      -4,
      -5,
      0
    ],
    "io_out": [
      0,
      0,
      1,
      5,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-1),-4))"
  },
  {
    "input": "input : list = [4, 1, 3, 5, 2, -4]\noutput : list = [3, 4]",
    "output": "generated_output : list = take(reverse(add_n(take(sort_des([4, 1, 3, 5, 2, -4]),2),-1)),41)",
    "io_inp": [
      4,
      1,
      3,
      5,
      2,
      -4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sort_des(input),2),-1)),41)"
  },
  {
    "input": "input : list = [1, -2, 4, 4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = drop([1, -2, 4, 4, -1],3)",
    "io_inp": [
      1,
      -2,
      4,
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 2, 1, -1]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-5, 2, 1, -1],2)))",
    "io_inp": [
      -5,
      2,
      1,
      -1
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [4, -2, 3, 1]\noutput : list = [4, -2]",
    "output": "generated_output : list = take(take([4, -2, 3, 1],2),2)",
    "io_inp": [
      4,
      -2,
      3,
      1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,2),2)"
  },
  {
    "input": "input : list = [-4, 5, -3, -3, 2, 2]\noutput : list = [-4, -3, -3, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 5, -3, -3, 2, 2]))",
    "io_inp": [
      -4,
      5,
      -3,
      -3,
      2,
      2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-24, 6]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(mul_n([-4, 1],2),3)),28))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -24,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(mul_n(input,2),3)),28))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(add_n([-2, 5],-1)),-4),4),7)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(add_n(input,-1)),-4),4),7)"
  },
  {
    "input": "input : list = [-5, -3, -3, 3, 4, -1]\noutput : list = [1, 0, -4, -6, -6, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc([-5, -3, -3, 3, 4, -1]),3)),24)",
    "io_inp": [
      -5,
      -3,
      -3,
      3,
      4,
      -1
    ],
    "io_out": [
      1,
      0,
      -4,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(input),3)),24)"
  },
  {
    "input": "input : list = [2, 1, -1, -1, -2, 4]\noutput : list = [-11, -7, -5, -1, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sort_asc([2, 1, -1, -1, -2, 4]),-2))),-3)",
    "io_inp": [
      2,
      1,
      -1,
      -1,
      -2,
      4
    ],
    "io_out": [
      -11,
      -7,
      -5,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sort_asc(input),-2))),-3)"
  },
  {
    "input": "input : list = [1, -2, 1, 5]\noutput : list = [5, 1, -2, 1]",
    "output": "generated_output : list = reverse([1, -2, 1, 5])",
    "io_inp": [
      1,
      -2,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -1, 5, -2, -5]\noutput : list = [3, 1, 7, 0, -3]",
    "output": "generated_output : list = take(add_n([1, -1, 5, -2, -5],2),5)",
    "io_inp": [
      1,
      -1,
      5,
      -2,
      -5
    ],
    "io_out": [
      3,
      1,
      7,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),5)"
  },
  {
    "input": "input : list = [1, -5, 0]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -5, 0],1)",
    "io_inp": [
      1,
      -5,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(sort_des([-1, -4]),5)),1))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(sort_des(input),5)),1))"
  },
  {
    "input": "input : list = [4, -1, 2, -1, -3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(drop([4, -1, 2, -1, -3, 5],4),12)",
    "io_inp": [
      4,
      -1,
      2,
      -1,
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,4),12)"
  },
  {
    "input": "input : list = [-4, -1, -2]\noutput : list = [-4, -2, -1]",
    "output": "generated_output : list = sort_asc([-4, -1, -2])",
    "io_inp": [
      -4,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [16, 0]",
    "output": "generated_output : list = take(mul_n(reverse(take(reverse([4, 0]),13)),4),19)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(reverse(input),13)),4),19)"
  },
  {
    "input": "input : list = [3, 2, 4, 0, 1, -3]\noutput : list = [-12, 0, 4, 8, 12, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([3, 2, 4, 0, 1, -3]),4))",
    "io_inp": [
      3,
      2,
      4,
      0,
      1,
      -3
    ],
    "io_out": [
      -12,
      0,
      4,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [0, 3, 4, -4, 4]\noutput : list = [-20, -20, -15, 0, 20]",
    "output": "generated_output : list = mul_n(sort_des([0, 3, 4, -4, 4]),-5)",
    "io_inp": [
      0,
      3,
      4,
      -4,
      4
    ],
    "io_out": [
      -20,
      -20,
      -15,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [2, 2, -4]\noutput : list = [10]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(take([2, 2, -4],1),-5)),3),19)",
    "io_inp": [
      2,
      2,
      -4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(take(input,1),-5)),3),19)"
  },
  {
    "input": "input : list = [-3, -5, -1, 4, 2, 2]\noutput : list = [2]",
    "output": "generated_output : list = drop(sub_n(add_n(reverse(drop([-3, -5, -1, 4, 2, 2],1)),3),-4),4)",
    "io_inp": [
      -3,
      -5,
      -1,
      4,
      2,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(sub_n(add_n(reverse(drop(input,1)),3),-4),4)"
  },
  {
    "input": "input : list = [-1, -4, -4, 4]\noutput : list = [6, -2, -2, 1]",
    "output": "generated_output : list = take(reverse(sub_n([-1, -4, -4, 4],-2)),18)",
    "io_inp": [
      -1,
      -4,
      -4,
      4
    ],
    "io_out": [
      6,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,-2)),18)"
  },
  {
    "input": "input : list = [-5, 4, 2]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = sort_des([-5, 4, 2])",
    "io_inp": [
      -5,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, 3, 2, -2, 2]\noutput : list = [12, 12, 4, 0, 0, -16]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n([5, 5, 3, 2, -2, 2],4))),3),5)",
    "io_inp": [
      5,
      5,
      3,
      2,
      -2,
      2
    ],
    "io_out": [
      12,
      12,
      4,
      0,
      0,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n(input,4))),3),5)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [4, 24]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sort_asc([-4, 1])),5),4))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      4,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sort_asc(input)),5),4))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(reverse([1, -4])),-3),1),4)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(reverse(input)),-3),1),4)"
  },
  {
    "input": "input : list = [5, 1, 4, 3]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n(take([5, 1, 4, 3],1),-2),1),-3))",
    "io_inp": [
      5,
      1,
      4,
      3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(take(input,1),-2),1),-3))"
  },
  {
    "input": "input : list = [5, -5, -3, 3]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(take([5, -5, -3, 3],1),1))))",
    "io_inp": [
      5,
      -5,
      -3,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(take(input,1),1))))"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [1, -7]",
    "output": "generated_output : list = drop(sort_des(add_n(sort_des(sort_des([-4, 4, 4])),-3)),1)",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(sort_des(sort_des(input)),-3)),1)"
  },
  {
    "input": "input : list = [-5, -2, -1, -5, 3, -3]\noutput : list = [3, -1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(drop([-5, -2, -1, -5, 3, -3],1))",
    "io_inp": [
      -5,
      -2,
      -1,
      -5,
      3,
      -3
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [3, -5, 2, 5, -4, 0]\noutput : list = [34, 26, 22, 14, -2, -6]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(add_n([3, -5, 2, 5, -4, 0],4),4),-2)),56)",
    "io_inp": [
      3,
      -5,
      2,
      5,
      -4,
      0
    ],
    "io_out": [
      34,
      26,
      22,
      14,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(add_n(input,4),4),-2)),56)"
  },
  {
    "input": "input : list = [-5, 3, -2]\noutput : list = [-5, 3, -2]",
    "output": "generated_output : list = reverse(reverse([-5, 3, -2]))",
    "io_inp": [
      -5,
      3,
      -2
    ],
    "io_out": [
      -5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, 4, 0, -1, 1]\noutput : list = [12, 16, 0, -4, 4]",
    "output": "generated_output : list = mul_n([3, 4, 0, -1, 1],4)",
    "io_inp": [
      3,
      4,
      0,
      -1,
      1
    ],
    "io_out": [
      12,
      16,
      0,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-16, -6, -4]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(mul_n([-5, 0, 1],2),3),2),-5),3)",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -16,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(mul_n(input,2),3),2),-5),3)"
  },
  {
    "input": "input : list = [-2, 5, -3, 4, -3]\noutput : list = [-3, -3, -2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([-2, 5, -3, 4, -3]))",
    "io_inp": [
      -2,
      5,
      -3,
      4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, -2, 4, 1]\noutput : list = [2, -2]",
    "output": "generated_output : list = take([2, -2, 4, 1],2)",
    "io_inp": [
      2,
      -2,
      4,
      1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 2, 4, 2, -5, 5]\noutput : list = [10, 4, -4, -4, -8, -10]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des([-2, 2, 4, 2, -5, 5]),2)),-1)",
    "io_inp": [
      -2,
      2,
      4,
      2,
      -5,
      5
    ],
    "io_out": [
      10,
      4,
      -4,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(input),2)),-1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(mul_n([3, 0],-2))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [4, 3, 4, -1, 3, 4]\noutput : list = [-1, -1, -1, -2, -2, -6]",
    "output": "generated_output : list = sort_des(reverse(take(take(sub_n([4, 3, 4, -1, 3, 4],5),23),8)))",
    "io_inp": [
      4,
      3,
      4,
      -1,
      3,
      4
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sub_n(input,5),23),8)))"
  },
  {
    "input": "input : list = [-1, 3, -5, 5, -1, 0]\noutput : list = [5, 3, 0, -1, -1, -5]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n([-1, 3, -5, 5, -1, 0],1)),1)))",
    "io_inp": [
      -1,
      3,
      -5,
      5,
      -1,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n(input,1)),1)))"
  },
  {
    "input": "input : list = [-5, 4, 0, 3]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(drop(sort_asc([-5, 4, 0, 3]),3),2)))",
    "io_inp": [
      -5,
      4,
      0,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(drop(sort_asc(input),3),2)))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = take(add_n(reverse(reverse(sub_n([1, -5],4))),4),16)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(sub_n(input,4))),4),16)"
  },
  {
    "input": "input : list = [2, -5, -3, -5]\noutput : list = [2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([2, -5, -3, -5])))",
    "io_inp": [
      2,
      -5,
      -3,
      -5
    ],
    "io_out": [
      2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [12, -6]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(mul_n([2, -4],-3))),16))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      12,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(mul_n(input,-3))),16))"
  },
  {
    "input": "input : list = [-3, 1, -5, 0]\noutput : list = [1, -4, 2, -2]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(reverse([-3, 1, -5, 0])),25)),-1)",
    "io_inp": [
      -3,
      1,
      -5,
      0
    ],
    "io_out": [
      1,
      -4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(reverse(input)),25)),-1)"
  },
  {
    "input": "input : list = [-1, -5, 2, 5, -4]\noutput : list = [1, -2, -5, -8, -9]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc([-1, -5, 2, 5, -4])),26),4)",
    "io_inp": [
      -1,
      -5,
      2,
      5,
      -4
    ],
    "io_out": [
      1,
      -2,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(input)),26),4)"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [15, 9, 1]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n([-2, 5, 2],1),2)),-5),4)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      15,
      9,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n(input,1),2)),-5),4)"
  },
  {
    "input": "input : list = [-2, 0, -2, -2]\noutput : list = [0, -2, -2, -2]",
    "output": "generated_output : list = sort_des([-2, 0, -2, -2])",
    "io_inp": [
      -2,
      0,
      -2,
      -2
    ],
    "io_out": [
      0,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, -4, -1, 4, -5]\noutput : list = [-2, -1, 2, 2, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(mul_n([-1, 5, -4, -1, 4, -5],1),-5),-2)))",
    "io_inp": [
      -1,
      5,
      -4,
      -1,
      4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      2,
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(mul_n(input,1),-5),-2)))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [3, 63]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(mul_n([1, -4],-4),10),-5),3),1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      3,
      63
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(mul_n(input,-4),10),-5),3),1)"
  },
  {
    "input": "input : list = [4, -5, -5, 3]\noutput : list = [4, 3, -5, -5]",
    "output": "generated_output : list = sort_des([4, -5, -5, 3])",
    "io_inp": [
      4,
      -5,
      -5,
      3
    ],
    "io_out": [
      4,
      3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 4, -1, -3, 5]\noutput : list = [15, 11, -9, -17, -17]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n(sort_des([-3, 4, -1, -3, 5]),4)),24),5)",
    "io_inp": [
      -3,
      4,
      -1,
      -3,
      5
    ],
    "io_out": [
      15,
      11,
      -9,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(sort_des(input),4)),24),5)"
  },
  {
    "input": "input : list = [-1, -4, 3, -3, 1]\noutput : list = [26, 20, 8, -4, -16]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(sort_asc([-1, -4, 3, -3, 1]),-3),2)),2)",
    "io_inp": [
      -1,
      -4,
      3,
      -3,
      1
    ],
    "io_out": [
      26,
      20,
      8,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(sort_asc(input),-3),2)),2)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [3, 2, 2]",
    "output": "generated_output : list = sort_des(sub_n([1, 0, 0],-2))",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = take(take(sub_n(sub_n([3, -1],3),-2),3),10)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(input,3),-2),3),10)"
  },
  {
    "input": "input : list = [5, 1, 2, -1, -1, -2]\noutput : list = [6, 3, 3, -6, -3, -15]",
    "output": "generated_output : list = reverse(take(take(take(mul_n([5, 1, 2, -1, -1, -2],-3),26),24),6))",
    "io_inp": [
      5,
      1,
      2,
      -1,
      -1,
      -2
    ],
    "io_out": [
      6,
      3,
      3,
      -6,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(mul_n(input,-3),26),24),6))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [20, 20]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(sort_des([3, 3]),5)),-5))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(sort_des(input),5)),-5))"
  },
  {
    "input": "input : list = [-4, 5, -1]\noutput : list = [5, -1, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_asc([-4, 5, -1]))),38))",
    "io_inp": [
      -4,
      5,
      -1
    ],
    "io_out": [
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_asc(input))),38))"
  },
  {
    "input": "input : list = [-4, 3, 0, 4]\noutput : list = [4, 3, 0, -4]",
    "output": "generated_output : list = sort_des([-4, 3, 0, 4])",
    "io_inp": [
      -4,
      3,
      0,
      4
    ],
    "io_out": [
      4,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -2, -3]\noutput : list = [10, 5, 0, -10]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n([0, -4, -2, -3],-2),23),-5))",
    "io_inp": [
      0,
      -4,
      -2,
      -3
    ],
    "io_out": [
      10,
      5,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(input,-2),23),-5))"
  },
  {
    "input": "input : list = [-5, 4, -2, -3, -1, 3]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(take([-5, 4, -2, -3, -1, 3],1))),5))",
    "io_inp": [
      -5,
      4,
      -2,
      -3,
      -1,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(take(input,1))),5))"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [6, 4]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(drop([0, -2, 0],1),-4),-3),5))",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(drop(input,1),-4),-3),5))"
  },
  {
    "input": "input : list = [-4, -2, 5, -2]\noutput : list = [-7, -5, -5, 2]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(sort_asc([-4, -2, 5, -2])),-3)),52)",
    "io_inp": [
      -4,
      -2,
      5,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(sort_asc(input)),-3)),52)"
  },
  {
    "input": "input : list = [5, 4, -1, -1, -4]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sub_n(drop(mul_n([5, 4, -1, -1, -4],-2),4),4),4)",
    "io_inp": [
      5,
      4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(mul_n(input,-2),4),4),4)"
  },
  {
    "input": "input : list = [-1, -4, 3, 1, -5, 5]\noutput : list = [20, 5, -15]",
    "output": "generated_output : list = sort_des(take(take(mul_n(take([-1, -4, 3, 1, -5, 5],3),-5),33),29))",
    "io_inp": [
      -1,
      -4,
      3,
      1,
      -5,
      5
    ],
    "io_out": [
      20,
      5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(take(input,3),-5),33),29))"
  },
  {
    "input": "input : list = [0, -1, 4, -5, -3, 0]\noutput : list = [0, -3, -5, 4]",
    "output": "generated_output : list = take(take(reverse([0, -1, 4, -5, -3, 0]),28),4)",
    "io_inp": [
      0,
      -1,
      4,
      -5,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),28),4)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(sort_asc([1, -2]),-4))))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [-3, 0, 4, 0, -3, -4]\noutput : list = [-4, -3, -3, 0, 0, 4]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n([-3, 0, 4, 0, -3, -4],-4)),33),-4)",
    "io_inp": [
      -3,
      0,
      4,
      0,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(input,-4)),33),-4)"
  },
  {
    "input": "input : list = [-4, -5, 0, -1]\noutput : list = [3, 5, 11, 13]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sort_des([-4, -5, 0, -1]),-2))),3)",
    "io_inp": [
      -4,
      -5,
      0,
      -1
    ],
    "io_out": [
      3,
      5,
      11,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sort_des(input),-2))),3)"
  },
  {
    "input": "input : list = [1, 4, 3, -2, -2, -2]\noutput : list = [1, 1, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(drop([1, 4, 3, -2, -2, -2],1),-5),4)),2)",
    "io_inp": [
      1,
      4,
      3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      1,
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(drop(input,1),-5),4)),2)"
  },
  {
    "input": "input : list = [2, 3, 5, 1, -1]\noutput : list = [3, 1, 0, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n([2, 3, 5, 1, -1],2))",
    "io_inp": [
      2,
      3,
      5,
      1,
      -1
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(sort_des([2, -3]),-3),-4)))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(sort_des(input),-3),-4)))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [12, -4]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(mul_n([1, 5],-4),4)),-1),4)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      12,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(mul_n(input,-4),4)),-1),4)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [8, 0, -20]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_des([-2, 5, 0]),-4)),32))",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      8,
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_des(input),-4)),32))"
  },
  {
    "input": "input : list = [-4, 0, -2, 4]\noutput : list = [-12, -4, 0, 4]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des([-4, 0, -2, 4]),2),-1),4)",
    "io_inp": [
      -4,
      0,
      -2,
      4
    ],
    "io_out": [
      -12,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(input),2),-1),4)"
  },
  {
    "input": "input : list = [-4, -5, -4, 4, 1]\noutput : list = [-8, -8, -9]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(take([-4, -5, -4, 4, 1],3))),-4))",
    "io_inp": [
      -4,
      -5,
      -4,
      4,
      1
    ],
    "io_out": [
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(take(input,3))),-4))"
  },
  {
    "input": "input : list = [-2, -5, 5, 2, -4]\noutput : list = [-5, -4, -2, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sub_n([-2, -5, 5, 2, -4],-2),1),2)))",
    "io_inp": [
      -2,
      -5,
      5,
      2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sub_n(input,-2),1),2)))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-9, -6]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n([-1, 2],-1),-5),-2)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n(input,-1),-5),-2)))"
  },
  {
    "input": "input : list = [2, -5, 2, -1, -4]\noutput : list = [-1, -1, -4, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n([2, -5, 2, -1, -4],3))",
    "io_inp": [
      2,
      -5,
      2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [-2, 1, -5, 5]\noutput : list = [12, 6, 0, -8]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_des([-2, 1, -5, 5]),-2),2)))",
    "io_inp": [
      -2,
      1,
      -5,
      5
    ],
    "io_out": [
      12,
      6,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_des(input),-2),2)))"
  },
  {
    "input": "input : list = [2, 2, -2, 3]\noutput : list = [6, 6, -6, 9]",
    "output": "generated_output : list = mul_n([2, 2, -2, 3],3)",
    "io_inp": [
      2,
      2,
      -2,
      3
    ],
    "io_out": [
      6,
      6,
      -6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-1, -5, 4, -1, 3]\noutput : list = [-2, 2]",
    "output": "generated_output : list = add_n(drop([-1, -5, 4, -1, 3],3),-1)",
    "io_inp": [
      -1,
      -5,
      4,
      -1,
      3
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-1)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [3, 6]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(sort_asc([-3, 0]),5))),-1)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(sort_asc(input),5))),-1)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-12, -5, -12]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(reverse([-3, 4, -3]),4)),2),3)",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -12,
      -5,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(reverse(input),4)),2),3)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-48, -8]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n([5, -5],1),5),2)),4)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -48,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n(input,1),5),2)),4)"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [1, 3, -4]",
    "output": "generated_output : list = add_n(add_n([0, 2, -5],-2),3)",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      1,
      3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-1, 3, -3, 1, 4]\noutput : list = [8, 7, 5, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n([-1, 3, -3, 1, 4],-4))",
    "io_inp": [
      -1,
      3,
      -3,
      1,
      4
    ],
    "io_out": [
      8,
      7,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [6]",
    "output": "generated_output : list = take(reverse(add_n(take(add_n([-1, -2, 0],4),1),3)),19)",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(add_n(input,4),1),3)),19)"
  },
  {
    "input": "input : list = [4, -5, -4, 4, 4, -1]\noutput : list = [5, -4, -3, 5, 5, 0]",
    "output": "generated_output : list = sub_n([4, -5, -4, 4, 4, -1],-1)",
    "io_inp": [
      4,
      -5,
      -4,
      4,
      4,
      -1
    ],
    "io_out": [
      5,
      -4,
      -3,
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -4, 1, -5, 0, -4]\noutput : list = [-4, 0, -5, 1, -4, -5]",
    "output": "generated_output : list = reverse([-5, -4, 1, -5, 0, -4])",
    "io_inp": [
      -5,
      -4,
      1,
      -5,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      -5,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, -1, 1, 1, -4]\noutput : list = [0, 1, 0, 2, 2, -3]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n([-1, 0, -1, 1, 1, -4],1),-1),1)))",
    "io_inp": [
      -1,
      0,
      -1,
      1,
      1,
      -4
    ],
    "io_out": [
      0,
      1,
      0,
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n(input,1),-1),1)))"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [3, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([-1, -1, 3])))",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-9, 15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sort_asc([5, -3])))),3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [0, 3, 4, 5, 0, -2]\noutput : list = [4, 7, 8, 9, 4, 2]",
    "output": "generated_output : list = sub_n([0, 3, 4, 5, 0, -2],-4)",
    "io_inp": [
      0,
      3,
      4,
      5,
      0,
      -2
    ],
    "io_out": [
      4,
      7,
      8,
      9,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, -3, 0, 3, -3, 4]\noutput : list = [-23, -18, -3, -3, 12, 12]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(sort_des([0, -3, 0, 3, -3, 4]),-5),-3),20))",
    "io_inp": [
      0,
      -3,
      0,
      3,
      -3,
      4
    ],
    "io_out": [
      -23,
      -18,
      -3,
      -3,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(sort_des(input),-5),-3),20))"
  },
  {
    "input": "input : list = [2, 3, 2, 0, 2, 0]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, 3, 2, 0, 2, 0],1))",
    "io_inp": [
      2,
      3,
      2,
      0,
      2,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [10, -30]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(sort_des([4, -4]),2)),-5),5)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      10,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(sort_des(input),2)),-5),5)"
  },
  {
    "input": "input : list = [4, 3, -2, 1]\noutput : list = [6, 1, 4]",
    "output": "generated_output : list = add_n(take(drop([4, 3, -2, 1],1),9),3)",
    "io_inp": [
      4,
      3,
      -2,
      1
    ],
    "io_out": [
      6,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,1),9),3)"
  },
  {
    "input": "input : list = [5, -5, 0, 5]\noutput : list = [80, -40]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(take([5, -5, 0, 5],2),-3),3),2),-4)",
    "io_inp": [
      5,
      -5,
      0,
      5
    ],
    "io_out": [
      80,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(take(input,2),-3),3),2),-4)"
  },
  {
    "input": "input : list = [-2, 0, -2, 1]\noutput : list = [-8, -8, 0, 4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_des([-2, 0, -2, 1]),1),-1)),4)",
    "io_inp": [
      -2,
      0,
      -2,
      1
    ],
    "io_out": [
      -8,
      -8,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_des(input),1),-1)),4)"
  },
  {
    "input": "input : list = [4, -5, 1, 0, 3]\noutput : list = [-15, 0, -5, 25, -20]",
    "output": "generated_output : list = reverse(mul_n([4, -5, 1, 0, 3],-5))",
    "io_inp": [
      4,
      -5,
      1,
      0,
      3
    ],
    "io_out": [
      -15,
      0,
      -5,
      25,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-5, -3, -2]\noutput : list = [18, 0, -9]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(sort_des([-5, -3, -2])),3),-3),3)",
    "io_inp": [
      -5,
      -3,
      -2
    ],
    "io_out": [
      18,
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(sort_des(input)),3),-3),3)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(take(sub_n([4, 4],3),4),-2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,3),4),-2)"
  },
  {
    "input": "input : list = [-5, 0, 1, 3, 3]\noutput : list = [1, -4, -5, -7, -7]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(mul_n([-5, 0, 1, 3, 3],-1),3)),1))",
    "io_inp": [
      -5,
      0,
      1,
      3,
      3
    ],
    "io_out": [
      1,
      -4,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(mul_n(input,-1),3)),1))"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(take([0, -3, -1],1)))),-5)",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(take(input,1)))),-5)"
  },
  {
    "input": "input : list = [4, -5, -5, 0, -3, -3]\noutput : list = [-2, -2, 0, 0, 3, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(sub_n([4, -5, -5, 0, -3, -3],1),-3),24)),-1)",
    "io_inp": [
      4,
      -5,
      -5,
      0,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      0,
      0,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(sub_n(input,1),-3),24)),-1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [10, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(sort_asc([-2, 0]),15))),-5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(sort_asc(input),15))),-5)"
  },
  {
    "input": "input : list = [-1, 3, -5, 5, 5]\noutput : list = [1, -3, 5, -5, -5]",
    "output": "generated_output : list = mul_n([-1, 3, -5, 5, 5],-1)",
    "io_inp": [
      -1,
      3,
      -5,
      5,
      5
    ],
    "io_out": [
      1,
      -3,
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 2, -3, 4, 5, 5]\noutput : list = [1, 7, 2, 9, 10, 10]",
    "output": "generated_output : list = take(add_n([-4, 2, -3, 4, 5, 5],5),11)",
    "io_inp": [
      -4,
      2,
      -3,
      4,
      5,
      5
    ],
    "io_out": [
      1,
      7,
      2,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),11)"
  },
  {
    "input": "input : list = [3, -2, 1, -1, 5, -3]\noutput : list = [-8, -7, -6, -4, -2, 0]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(sub_n([3, -2, 1, -1, 5, -3],-1)),-2),4))",
    "io_inp": [
      3,
      -2,
      1,
      -1,
      5,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(sub_n(input,-1)),-2),4))"
  },
  {
    "input": "input : list = [2, 0, 1, 0]\noutput : list = [0, 0, 1, 2]",
    "output": "generated_output : list = reverse(sort_des([2, 0, 1, 0]))",
    "io_inp": [
      2,
      0,
      1,
      0
    ],
    "io_out": [
      0,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 2, -3, 3, 5, 3]\noutput : list = [5, 3, 3, 2, -2, -3]",
    "output": "generated_output : list = sort_des([-2, 2, -3, 3, 5, 3])",
    "io_inp": [
      -2,
      2,
      -3,
      3,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-24, -12]",
    "output": "generated_output : list = mul_n(add_n(sort_des([2, 5]),1),-4)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),1),-4)"
  },
  {
    "input": "input : list = [-1, -3, -5, 5]\noutput : list = [5, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-1, -3, -5, 5],1)))",
    "io_inp": [
      -1,
      -3,
      -5,
      5
    ],
    "io_out": [
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-2, 3, -3, 1, 2]\noutput : list = [-5, -4, -3, 0, 1]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([-2, 3, -3, 1, 2],-2),-1))",
    "io_inp": [
      -2,
      3,
      -3,
      1,
      2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-2),-1))"
  },
  {
    "input": "input : list = [2, 0, 5, -2]\noutput : list = [1, -2, -4, -6]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(add_n([2, 0, 5, -2],-1)),3),1))",
    "io_inp": [
      2,
      0,
      5,
      -2
    ],
    "io_out": [
      1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(add_n(input,-1)),3),1))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(take(reverse(sort_asc([4, 3])),7),22)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(input)),7),22)"
  },
  {
    "input": "input : list = [1, 5, -3, -1, -3]\noutput : list = [5, 1, -1, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc([1, 5, -3, -1, -3]))",
    "io_inp": [
      1,
      5,
      -3,
      -1,
      -3
    ],
    "io_out": [
      5,
      1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(sort_des([0, 2]),-4)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [4, 0, -5, -4, -5, 5]\noutput : list = [7, 3, -2, -1, -2, 8]",
    "output": "generated_output : list = sub_n(take(take(reverse(reverse([4, 0, -5, -4, -5, 5])),6),27),-3)",
    "io_inp": [
      4,
      0,
      -5,
      -4,
      -5,
      5
    ],
    "io_out": [
      7,
      3,
      -2,
      -1,
      -2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(reverse(input)),6),27),-3)"
  },
  {
    "input": "input : list = [2, 4, -1]\noutput : list = [10, 8, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_asc([2, 4, -1]),2))),-4)",
    "io_inp": [
      2,
      4,
      -1
    ],
    "io_out": [
      10,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_asc(input),2))),-4)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-9, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse([-1, 2]),2)),5),2)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse(input),2)),5),2)"
  },
  {
    "input": "input : list = [0, -3, 1, 3, 4]\noutput : list = [39, 36, 30, 18, 27]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(add_n([0, -3, 1, 3, 4],4)),-5),28),3)",
    "io_inp": [
      0,
      -3,
      1,
      3,
      4
    ],
    "io_out": [
      39,
      36,
      30,
      18,
      27
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(add_n(input,4)),-5),28),3)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-2, 4]",
    "output": "generated_output : list = add_n([-3, 3],1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, 3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop([5, 3, 4],1)",
    "io_inp": [
      5,
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 3, -2, 2, 0, 0]\noutput : list = [-4, -5, -6, -8, -8, -10]",
    "output": "generated_output : list = take(add_n(take(add_n(sort_des([4, 3, -2, 2, 0, 0]),-4),6),-4),18)",
    "io_inp": [
      4,
      3,
      -2,
      2,
      0,
      0
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(sort_des(input),-4),6),-4),18)"
  },
  {
    "input": "input : list = [5, -5, 1, -5, 2]\noutput : list = [16, 2, 14, 2, 22]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(mul_n([5, -5, 1, -5, 2],2),3),-4),5))",
    "io_inp": [
      5,
      -5,
      1,
      -5,
      2
    ],
    "io_out": [
      16,
      2,
      14,
      2,
      22
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(mul_n(input,2),3),-4),5))"
  },
  {
    "input": "input : list = [-1, 3, -5, 1, 3, 5]\noutput : list = [-5, -1, 1, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([-1, 3, -5, 1, 3, 5])",
    "io_inp": [
      -1,
      3,
      -5,
      1,
      3,
      5
    ],
    "io_out": [
      -5,
      -1,
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2, -5]\noutput : list = [1, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(add_n([1, -2, -5],2),-4))))",
    "io_inp": [
      1,
      -2,
      -5
    ],
    "io_out": [
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(add_n(input,2),-4))))"
  },
  {
    "input": "input : list = [-4, 3, 0, 0, -4]\noutput : list = [3, 0, 0, -4, -4]",
    "output": "generated_output : list = sort_des([-4, 3, 0, 0, -4])",
    "io_inp": [
      -4,
      3,
      0,
      0,
      -4
    ],
    "io_out": [
      3,
      0,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, -2, 1, -1, -3]\noutput : list = [-16, -4, 4, 8, 12, 16]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-4, 4, -2, 1, -1, -3])),-4)",
    "io_inp": [
      -4,
      4,
      -2,
      1,
      -1,
      -3
    ],
    "io_out": [
      -16,
      -4,
      4,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [2, 0, -4, -1, 1]\noutput : list = [-5, -2, -1, 0, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(reverse([2, 0, -4, -1, 1]))),1),36)",
    "io_inp": [
      2,
      0,
      -4,
      -1,
      1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(reverse(input))),1),36)"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [5, 3, 8]",
    "output": "generated_output : list = add_n([0, -2, 3],5)",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      5,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n([0, 4, 2],-2),-2)),-3)",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(input,-2),-2)),-3)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n([-2, -2],-1),7),3))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(input,-1),7),3))"
  },
  {
    "input": "input : list = [5, -5, -2, -4, -1, -3]\noutput : list = [20, -4, -8, -12, -16, -20]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(mul_n([5, -5, -2, -4, -1, -3],-4),-1),33)))",
    "io_inp": [
      5,
      -5,
      -2,
      -4,
      -1,
      -3
    ],
    "io_out": [
      20,
      -4,
      -8,
      -12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(mul_n(input,-4),-1),33)))"
  },
  {
    "input": "input : list = [1, 3, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = drop([1, 3, 3, -1],2)",
    "io_inp": [
      1,
      3,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 5, -4]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_asc(take([2, 5, -4],1)),2)",
    "io_inp": [
      2,
      5,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(input,1)),2)"
  },
  {
    "input": "input : list = [3, 4, -3, -4]\noutput : list = [4, -3, -4]",
    "output": "generated_output : list = drop([3, 4, -3, -4],1)",
    "io_inp": [
      3,
      4,
      -3,
      -4
    ],
    "io_out": [
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -2, 0, -5]\noutput : list = [-5, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc([-3, -2, 0, -5]),11),1))",
    "io_inp": [
      -3,
      -2,
      0,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(input),11),1))"
  },
  {
    "input": "input : list = [3, -1, 4, 4, -4, 3]\noutput : list = [2, 6]",
    "output": "generated_output : list = reverse(sub_n(take(take([3, -1, 4, 4, -4, 3],2),9),-3))",
    "io_inp": [
      3,
      -1,
      4,
      4,
      -4,
      3
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(input,2),9),-3))"
  },
  {
    "input": "input : list = [-5, -5, 2, -3, 2]\noutput : list = [2, 2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des([-5, -5, 2, -3, 2])))",
    "io_inp": [
      -5,
      -5,
      2,
      -3,
      2
    ],
    "io_out": [
      2,
      2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [1, -3, -5, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(take([1, -3, -5, -2],1),2),3)))",
    "io_inp": [
      1,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(take(input,1),2),3)))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sub_n([-3, 1],2))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [-5, 5, 4, 4, -4, -4]\noutput : list = [20, 17, 17, -7, -7, -10]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc([-5, 5, 4, 4, -4, -4]),-3),-5),-1))",
    "io_inp": [
      -5,
      5,
      4,
      4,
      -4,
      -4
    ],
    "io_out": [
      20,
      17,
      17,
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc(input),-3),-5),-1))"
  },
  {
    "input": "input : list = [4, 2, -5, -5, -5, -5]\noutput : list = [7, 5, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(sort_des([4, 2, -5, -5, -5, -5]),3)),3))",
    "io_inp": [
      4,
      2,
      -5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      7,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(sort_des(input),3)),3))"
  },
  {
    "input": "input : list = [3, -2, 5, -5, 2]\noutput : list = [9, -11, 17, -23, 5]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(mul_n([3, -2, 5, -5, 2],-2),-2),-2),-1),40)",
    "io_inp": [
      3,
      -2,
      5,
      -5,
      2
    ],
    "io_out": [
      9,
      -11,
      17,
      -23,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(mul_n(input,-2),-2),-2),-1),40)"
  },
  {
    "input": "input : list = [4, 1, 5, 2, -2, 2]\noutput : list = [5, 4, 2, 2, 1, -2]",
    "output": "generated_output : list = sort_des([4, 1, 5, 2, -2, 2])",
    "io_inp": [
      4,
      1,
      5,
      2,
      -2,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5, 1, -2, -4, -2]\noutput : list = [-6, -3, -3, -1]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n(drop([-3, -5, 1, -2, -4, -2],2),5),23),-1))",
    "io_inp": [
      -3,
      -5,
      1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(drop(input,2),5),23),-1))"
  },
  {
    "input": "input : list = [1, -3, 3, 0]\noutput : list = [-45, -60, -65, -75]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(add_n([1, -3, 3, 0],5),5),-2)),-5)",
    "io_inp": [
      1,
      -3,
      3,
      0
    ],
    "io_out": [
      -45,
      -60,
      -65,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(add_n(input,5),5),-2)),-5)"
  },
  {
    "input": "input : list = [-5, -3, -5, 4, 4, 5]\noutput : list = [-10, -7, -7, 20]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(drop([-5, -3, -5, 4, 4, 5],2))),-3),5)",
    "io_inp": [
      -5,
      -3,
      -5,
      4,
      4,
      5
    ],
    "io_out": [
      -10,
      -7,
      -7,
      20
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(drop(input,2))),-3),5)"
  },
  {
    "input": "input : list = [5, -4, 5, -5, 5, -3]\noutput : list = [1, -8, 1, -9, 1, -7]",
    "output": "generated_output : list = add_n([5, -4, 5, -5, 5, -3],-4)",
    "io_inp": [
      5,
      -4,
      5,
      -5,
      5,
      -3
    ],
    "io_out": [
      1,
      -8,
      1,
      -9,
      1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 3, 2, 1, -1, 5]\noutput : list = [-3, 3, 6, 9, 15, 27]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_des(sort_des([-5, 3, 2, 1, -1, 5])),4)),-3)",
    "io_inp": [
      -5,
      3,
      2,
      1,
      -1,
      5
    ],
    "io_out": [
      -3,
      3,
      6,
      9,
      15,
      27
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_des(sort_des(input)),4)),-3)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sort_asc([3, 0]))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -2, 3, -1]\noutput : list = [6, 10, 5, 9]",
    "output": "generated_output : list = sub_n(take(add_n(reverse([2, -2, 3, -1]),3),10),-4)",
    "io_inp": [
      2,
      -2,
      3,
      -1
    ],
    "io_out": [
      6,
      10,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(input),3),10),-4)"
  },
  {
    "input": "input : list = [-2, -5, -3, 5, 0, -5]\noutput : list = [30, 0, -12, -18, -30, -30]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(mul_n([-2, -5, -3, 5, 0, -5],2)))),3)",
    "io_inp": [
      -2,
      -5,
      -3,
      5,
      0,
      -5
    ],
    "io_out": [
      30,
      0,
      -12,
      -18,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(mul_n(input,2)))),3)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [7, 7]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(drop([2, 2, 2],1),4),1),-4))",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(drop(input,1),4),1),-4))"
  },
  {
    "input": "input : list = [-2, 1, 3, -4]\noutput : list = [-8]",
    "output": "generated_output : list = take(drop(sub_n(take(drop([-2, 1, 3, -4],1),3),4),2),20)",
    "io_inp": [
      -2,
      1,
      3,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(take(drop(input,1),3),4),2),20)"
  },
  {
    "input": "input : list = [0, 4, -1, -1]\noutput : list = [13, 13, -2, 10]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(add_n([0, 4, -1, -1],-1),4),-3)),-5)",
    "io_inp": [
      0,
      4,
      -1,
      -1
    ],
    "io_out": [
      13,
      13,
      -2,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(add_n(input,-1),4),-3)),-5)"
  },
  {
    "input": "input : list = [3, 5, 5, 4, 4]\noutput : list = [14, 12, 12, 10, 10]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(add_n([3, 5, 5, 4, 4],-5)),5),-2))",
    "io_inp": [
      3,
      5,
      5,
      4,
      4
    ],
    "io_out": [
      14,
      12,
      12,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(add_n(input,-5)),5),-2))"
  },
  {
    "input": "input : list = [5, 0, 5, 0, 3, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(drop([5, 0, 5, 0, 3, 3],4),-3))),-5)",
    "io_inp": [
      5,
      0,
      5,
      0,
      3,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(drop(input,4),-3))),-5)"
  },
  {
    "input": "input : list = [1, 2, 0, -1]\noutput : list = [2, 3, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n([1, 2, 0, -1],3)))",
    "io_inp": [
      1,
      2,
      0,
      -1
    ],
    "io_out": [
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,3)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = sub_n([3, 4],-1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, 5, -5, 2, 4, 2]\noutput : list = [10, 2, 10, 38]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(drop([3, 5, -5, 2, 4, 2],2),4),-4)),2)",
    "io_inp": [
      3,
      5,
      -5,
      2,
      4,
      2
    ],
    "io_out": [
      10,
      2,
      10,
      38
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(drop(input,2),4),-4)),2)"
  },
  {
    "input": "input : list = [0, 3, 4, 0]\noutput : list = [-3, 0, 1, -3]",
    "output": "generated_output : list = add_n([0, 3, 4, 0],-3)",
    "io_inp": [
      0,
      3,
      4,
      0
    ],
    "io_out": [
      -3,
      0,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, 2, -1, 3, -2, 3]\noutput : list = [0, 0, -1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(reverse([0, 2, -1, 3, -2, 3])),-2),-5))",
    "io_inp": [
      0,
      2,
      -1,
      3,
      -2,
      3
    ],
    "io_out": [
      0,
      0,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(reverse(input)),-2),-5))"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = drop([1, 2, -2],1)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 4, 3]\noutput : list = [5, 6]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(drop([-5, 4, 3],1),12),5),-3))",
    "io_inp": [
      -5,
      4,
      3
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(drop(input,1),12),5),-3))"
  },
  {
    "input": "input : list = [4, 3, 3, -3, 1, 1]\noutput : list = [-21, -11, -11, 49, 9, 9]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(mul_n([4, 3, 3, -3, 1, 1],2),-3),5),-4),-1)",
    "io_inp": [
      4,
      3,
      3,
      -3,
      1,
      1
    ],
    "io_out": [
      -21,
      -11,
      -11,
      49,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(mul_n(input,2),-3),5),-4),-1)"
  },
  {
    "input": "input : list = [2, 1, -2, 0]\noutput : list = [6, 7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(take([2, 1, -2, 0],2),5),3),3))",
    "io_inp": [
      2,
      1,
      -2,
      0
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(take(input,2),5),3),3))"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [7]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(take([2, 2, 2],1)),-3)),2)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(take(input,1)),-3)),2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(sort_des([-4, -3])))),-5)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [-5, -5, 1, 5]\noutput : list = [2, 2, -10, -18]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sort_asc([-5, -5, 1, 5])),-5),-2),-2)",
    "io_inp": [
      -5,
      -5,
      1,
      5
    ],
    "io_out": [
      2,
      2,
      -10,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sort_asc(input)),-5),-2),-2)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [-9, -36, 45]",
    "output": "generated_output : list = mul_n(take(mul_n([-1, -4, 5],3),17),3)",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      -9,
      -36,
      45
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,3),17),3)"
  },
  {
    "input": "input : list = [1, 5, -3, 0, -4]\noutput : list = [40, 24, 20, 8, 4]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(sort_des([1, 5, -3, 0, -4]),-5),22)),4)",
    "io_inp": [
      1,
      5,
      -3,
      0,
      -4
    ],
    "io_out": [
      40,
      24,
      20,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(sort_des(input),-5),22)),4)"
  },
  {
    "input": "input : list = [2, 1, 5, 1]\noutput : list = [8, 12, 24]",
    "output": "generated_output : list = drop(take(sort_asc(sub_n(mul_n([2, 1, 5, 1],4),-4)),9),1)",
    "io_inp": [
      2,
      1,
      5,
      1
    ],
    "io_out": [
      8,
      12,
      24
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(sub_n(mul_n(input,4),-4)),9),1)"
  },
  {
    "input": "input : list = [2, 0, 1, 0, -2, 3]\noutput : list = [3, -2, 0, 1, 0, 2]",
    "output": "generated_output : list = mul_n(reverse([2, 0, 1, 0, -2, 3]),1)",
    "io_inp": [
      2,
      0,
      1,
      0,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      0,
      1,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [5, 1, 3, 5, -1, -1]\noutput : list = [-5, -5, -3, -1, 1, 1]",
    "output": "generated_output : list = take(sort_asc(mul_n([5, 1, 3, 5, -1, -1],-1)),18)",
    "io_inp": [
      5,
      1,
      3,
      5,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-1)),18)"
  },
  {
    "input": "input : list = [-3, 1, -5, -2, 2]\noutput : list = [-5, -3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc([-3, 1, -5, -2, 2])",
    "io_inp": [
      -3,
      1,
      -5,
      -2,
      2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, 1]\noutput : list = [-4, 4, 0]",
    "output": "generated_output : list = sub_n(add_n([-3, 5, 1],-2),-1)",
    "io_inp": [
      -3,
      5,
      1
    ],
    "io_out": [
      -4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),-1)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des([4, -5, 2])))",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [2, -4, -3, 1, -1]\noutput : list = [6, 8]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(drop([2, -4, -3, 1, -1],3),-2),-5)))",
    "io_inp": [
      2,
      -4,
      -3,
      1,
      -1
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(drop(input,3),-2),-5)))"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [3, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n([-5, 5, -4],-2))))",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(input,-2))))"
  },
  {
    "input": "input : list = [-5, -3, 5, 4, -1]\noutput : list = [9, -41, -51, 29, 49]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(mul_n([-5, -3, 5, 4, -1],5),-2),-2),-5))",
    "io_inp": [
      -5,
      -3,
      5,
      4,
      -1
    ],
    "io_out": [
      9,
      -41,
      -51,
      29,
      49
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(mul_n(input,5),-2),-2),-5))"
  },
  {
    "input": "input : list = [-2, 3, -2, 0, -1]\noutput : list = [-2, -12, -2, -6, -4]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(add_n([-2, 3, -2, 0, -1],3),24),3),3),-2)",
    "io_inp": [
      -2,
      3,
      -2,
      0,
      -1
    ],
    "io_out": [
      -2,
      -12,
      -2,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(add_n(input,3),24),3),3),-2)"
  },
  {
    "input": "input : list = [0, -5, 4, -5, -5, -5]\noutput : list = [-5, -5, -5, -5, 0, 4]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(add_n([0, -5, 4, -5, -5, -5],3),-1),-4),8))",
    "io_inp": [
      0,
      -5,
      4,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -5,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(add_n(input,3),-1),-4),8))"
  },
  {
    "input": "input : list = [2, 0, -1, 1, -3]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = sort_des(drop([2, 0, -1, 1, -3],2))",
    "io_inp": [
      2,
      0,
      -1,
      1,
      -3
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 2, 0, -5]\noutput : list = [1, 5, 3, -2]",
    "output": "generated_output : list = add_n([-2, 2, 0, -5],3)",
    "io_inp": [
      -2,
      2,
      0,
      -5
    ],
    "io_out": [
      1,
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [3, 0, -5, 2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sort_des(drop(take([3, 0, -5, 2],2),1)),1)",
    "io_inp": [
      3,
      0,
      -5,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(take(input,2),1)),1)"
  },
  {
    "input": "input : list = [-2, -3, 3, -1]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sort_des([-2, -3, 3, -1])),3)))",
    "io_inp": [
      -2,
      -3,
      3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sort_des(input)),3)))"
  },
  {
    "input": "input : list = [1, -1, -3, -5]\noutput : list = [-14, -12, -10]",
    "output": "generated_output : list = reverse(sub_n(add_n(drop([1, -1, -3, -5],1),-4),5))",
    "io_inp": [
      1,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -14,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(drop(input,1),-4),5))"
  },
  {
    "input": "input : list = [0, 3, 3, -1, 1, -2]\noutput : list = [0, -12, -12, 4, -4, 8]",
    "output": "generated_output : list = mul_n([0, 3, 3, -1, 1, -2],-4)",
    "io_inp": [
      0,
      3,
      3,
      -1,
      1,
      -2
    ],
    "io_out": [
      0,
      -12,
      -12,
      4,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = add_n(sort_des(mul_n([3, -4, -1],1)),-1)",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,1)),-1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [8, 3]",
    "output": "generated_output : list = sub_n([5, 0],-3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, 1, 5, 0]\noutput : list = [0, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([3, 1, 5, 0],1)))",
    "io_inp": [
      3,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [-3, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, -3])",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, -5, 1, 3, -4]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(take([2, 0, -5, 1, 3, -4],3)),1),1),16)",
    "io_inp": [
      2,
      0,
      -5,
      1,
      3,
      -4
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(take(input,3)),1),1),16)"
  },
  {
    "input": "input : list = [-1, 5, -4, 2]\noutput : list = [18, 12, 6, 0]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(sort_des([-1, 5, -4, 2]),8),5),-1),2)",
    "io_inp": [
      -1,
      5,
      -4,
      2
    ],
    "io_out": [
      18,
      12,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(sort_des(input),8),5),-1),2)"
  },
  {
    "input": "input : list = [1, -1, -2, 3, -4]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = take(mul_n(take([1, -1, -2, 3, -4],3),2),15)",
    "io_inp": [
      1,
      -1,
      -2,
      3,
      -4
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,3),2),15)"
  },
  {
    "input": "input : list = [-2, 4, -1, -1]\noutput : list = [7, 2, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_des([-2, 4, -1, -1]),3))",
    "io_inp": [
      -2,
      4,
      -1,
      -1
    ],
    "io_out": [
      7,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-3, 6]",
    "output": "generated_output : list = sub_n([-4, 5],-1)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc([1, 0])",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(reverse([-3, 2]))),24))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(reverse(input))),24))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-10, 2]",
    "output": "generated_output : list = take(mul_n([-5, 1],2),14)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),14)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-13, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(add_n([0, -5],-3))),5))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -13,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(add_n(input,-3))),5))"
  },
  {
    "input": "input : list = [-2, -1, 5, 3, -4, -5]\noutput : list = [40, 35, 0, -10, 20, 25]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(sub_n([-2, -1, 5, 3, -4, -5],4),-5)),18),5)",
    "io_inp": [
      -2,
      -1,
      5,
      3,
      -4,
      -5
    ],
    "io_out": [
      40,
      35,
      0,
      -10,
      20,
      25
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(sub_n(input,4),-5)),18),5)"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(mul_n([2, 3, -4],1))),-1))",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(mul_n(input,1))),-1))"
  },
  {
    "input": "input : list = [-3, 4, 5, -4, -3, -4]\noutput : list = [7, 6, -1, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n([-3, 4, 5, -4, -3, -4],-2))",
    "io_inp": [
      -3,
      4,
      5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      7,
      6,
      -1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 4, -2, -1, -4]\noutput : list = [4, -1, -2, -2, -4]",
    "output": "generated_output : list = sort_des([-2, 4, -2, -1, -4])",
    "io_inp": [
      -2,
      4,
      -2,
      -1,
      -4
    ],
    "io_out": [
      4,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 4, 1, -4]\noutput : list = [5, 3, 7, 4, -1]",
    "output": "generated_output : list = add_n([2, 0, 4, 1, -4],3)",
    "io_inp": [
      2,
      0,
      4,
      1,
      -4
    ],
    "io_out": [
      5,
      3,
      7,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [8, -20, 20]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(mul_n([2, -5, 5],4)),7)),1)",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      8,
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(mul_n(input,4)),7)),1)"
  },
  {
    "input": "input : list = [-4, -3, 1, 2, 0, 2]\noutput : list = [3, 0, -9, -12, -15, -15]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse([-4, -3, 1, 2, 0, 2]),3)),-3)",
    "io_inp": [
      -4,
      -3,
      1,
      2,
      0,
      2
    ],
    "io_out": [
      3,
      0,
      -9,
      -12,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(input),3)),-3)"
  },
  {
    "input": "input : list = [-2, -4, -2, 5, 0, -1]\noutput : list = [0, -5, -6, -7, -7, -9]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(sub_n([-2, -4, -2, 5, 0, -1],2)),-3)),19)",
    "io_inp": [
      -2,
      -4,
      -2,
      5,
      0,
      -1
    ],
    "io_out": [
      0,
      -5,
      -6,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(sub_n(input,2)),-3)),19)"
  },
  {
    "input": "input : list = [-2, -3, -4, -1]\noutput : list = [-9, -8, -7, -6]",
    "output": "generated_output : list = sort_asc(sub_n([-2, -3, -4, -1],5))",
    "io_inp": [
      -2,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,5))"
  },
  {
    "input": "input : list = [-3, -4, 3, -2, 3]\noutput : list = [-16, -18, -4, -14, -4]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(add_n([-3, -4, 3, -2, 3],-4),4),3),2),24)",
    "io_inp": [
      -3,
      -4,
      3,
      -2,
      3
    ],
    "io_out": [
      -16,
      -18,
      -4,
      -14,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(add_n(input,-4),4),3),2),24)"
  },
  {
    "input": "input : list = [-1, 0, -3, 1, -2, 0]\noutput : list = [6, -2, 4, 0]",
    "output": "generated_output : list = mul_n(drop([-1, 0, -3, 1, -2, 0],2),-2)",
    "io_inp": [
      -1,
      0,
      -3,
      1,
      -2,
      0
    ],
    "io_out": [
      6,
      -2,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [-1, 0, -5, 2, -5, 3]\noutput : list = [-7, -6, -11, -4, -11, -3]",
    "output": "generated_output : list = sub_n(add_n([-1, 0, -5, 2, -5, 3],-2),4)",
    "io_inp": [
      -1,
      0,
      -5,
      2,
      -5,
      3
    ],
    "io_out": [
      -7,
      -6,
      -11,
      -4,
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),4)"
  },
  {
    "input": "input : list = [5, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = drop([5, 2, -2],1)",
    "io_inp": [
      5,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -3, 1, 0]\noutput : list = [-1, 0, 3, 4]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(sort_asc([-4, -3, 1, 0]),19)),15),-3)",
    "io_inp": [
      -4,
      -3,
      1,
      0
    ],
    "io_out": [
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(sort_asc(input),19)),15),-3)"
  },
  {
    "input": "input : list = [5, -4, 0, -2, 3]\noutput : list = [4, -1, 1, -3, 6]",
    "output": "generated_output : list = reverse(add_n([5, -4, 0, -2, 3],1))",
    "io_inp": [
      5,
      -4,
      0,
      -2,
      3
    ],
    "io_out": [
      4,
      -1,
      1,
      -3,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [4, 2, 0, 3, 5]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(drop([4, 2, 0, 3, 5],3)),2)))",
    "io_inp": [
      4,
      2,
      0,
      3,
      5
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(drop(input,3)),2)))"
  },
  {
    "input": "input : list = [5, -2, 4, 0]\noutput : list = [5, 4, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sort_des([5, -2, 4, 0])))))",
    "io_inp": [
      5,
      -2,
      4,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = sort_des(reverse(take(reverse([3, 2, -5]),10)))",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(input),10)))"
  },
  {
    "input": "input : list = [-4, 5, 4, 2, -1, -3]\noutput : list = [-4, -3, -1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc([-4, 5, 4, 2, -1, -3])),18)))",
    "io_inp": [
      -4,
      5,
      4,
      2,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc(input)),18)))"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [-4, -1, -1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc([1, 1, -2]),-2)))",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(input),-2)))"
  },
  {
    "input": "input : list = [2, -5, 4, -5]\noutput : list = [-3, -3, 4, 6]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sub_n([2, -5, 4, -5],-2)),15)))",
    "io_inp": [
      2,
      -5,
      4,
      -5
    ],
    "io_out": [
      -3,
      -3,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sub_n(input,-2)),15)))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-4, 3]),-1),-1)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-1),-1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des([5, -3])",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [9, 9, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(take(mul_n([-3, -3, 1],-3),8),24)))",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      9,
      9,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(mul_n(input,-3),8),24)))"
  },
  {
    "input": "input : list = [5, -5, 1]\noutput : list = [-5, 1, 5]",
    "output": "generated_output : list = sort_asc([5, -5, 1])",
    "io_inp": [
      5,
      -5,
      1
    ],
    "io_out": [
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, 3, -2, 2, 0]\noutput : list = [4, -8, 16, -14, 16, -20]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(mul_n([4, -2, 3, -2, 2, 0],-3),2),20)),4)",
    "io_inp": [
      4,
      -2,
      3,
      -2,
      2,
      0
    ],
    "io_out": [
      4,
      -8,
      16,
      -14,
      16,
      -20
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(mul_n(input,-3),2),20)),4)"
  },
  {
    "input": "input : list = [2, -2, -1, -4]\noutput : list = [-4, -1, -2, 2]",
    "output": "generated_output : list = take(take(reverse([2, -2, -1, -4]),14),28)",
    "io_inp": [
      2,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),14),28)"
  },
  {
    "input": "input : list = [-4, 5, 2, 0, -4]\noutput : list = [-4, -4, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, 2, 0, -4])",
    "io_inp": [
      -4,
      5,
      2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-16, -4]",
    "output": "generated_output : list = mul_n(reverse([1, 4]),-4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-3, -3, -2, 0, 4]\noutput : list = [15, -5, -15, -20, -20]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(sort_des([-3, -3, -2, 0, 4])),-3),-2),5)",
    "io_inp": [
      -3,
      -3,
      -2,
      0,
      4
    ],
    "io_out": [
      15,
      -5,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(sort_des(input)),-3),-2),5)"
  },
  {
    "input": "input : list = [-4, 2, -4, 5, 3, -3]\noutput : list = [-6, -6, -5, 0, 1, 3]",
    "output": "generated_output : list = add_n(take(sort_asc([-4, 2, -4, 5, 3, -3]),29),-2)",
    "io_inp": [
      -4,
      2,
      -4,
      5,
      3,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -5,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),29),-2)"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [5, 4, -3]",
    "output": "generated_output : list = sub_n(sort_des(add_n([-3, 4, 5],2)),2)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,2)),2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [15, -3]",
    "output": "generated_output : list = mul_n(sort_des(reverse([5, -1])),3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),3)"
  },
  {
    "input": "input : list = [4, -4, 0, -5, -4, -5]\noutput : list = [4, 0, -4, -4, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse([4, -4, 0, -5, -4, -5])))",
    "io_inp": [
      4,
      -4,
      0,
      -5,
      -4,
      -5
    ],
    "io_out": [
      4,
      0,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [3, 1, 4, -1]\noutput : list = [-1, 4, 1, 3]",
    "output": "generated_output : list = reverse([3, 1, 4, -1])",
    "io_inp": [
      3,
      1,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4, -5, 1, -2, 0]\noutput : list = [-5, -4, -2, 0, 1, 2]",
    "output": "generated_output : list = take(sort_asc([2, -4, -5, 1, -2, 0]),6)",
    "io_inp": [
      2,
      -4,
      -5,
      1,
      -2,
      0
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),6)"
  },
  {
    "input": "input : list = [5, -1, 3, -2, 4]\noutput : list = [16, -32]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(drop(mul_n([5, -1, 3, -2, 4],4),3),-2)))",
    "io_inp": [
      5,
      -1,
      3,
      -2,
      4
    ],
    "io_out": [
      16,
      -32
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(drop(mul_n(input,4),3),-2)))"
  },
  {
    "input": "input : list = [3, 0, -3]\noutput : list = [-12, -21]",
    "output": "generated_output : list = drop(mul_n(reverse(add_n(reverse([3, 0, -3]),-4)),3),1)",
    "io_inp": [
      3,
      0,
      -3
    ],
    "io_out": [
      -12,
      -21
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(add_n(reverse(input),-4)),3),1)"
  },
  {
    "input": "input : list = [-1, -5, 4, 0]\noutput : list = [-59, 76, 16]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(drop([-1, -5, 4, 0],1),-3),3),-5),-1)",
    "io_inp": [
      -1,
      -5,
      4,
      0
    ],
    "io_out": [
      -59,
      76,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(drop(input,1),-3),3),-5),-1)"
  },
  {
    "input": "input : list = [5, -2, 5, -2]\noutput : list = [-2, -2, 5, 5]",
    "output": "generated_output : list = sort_asc([5, -2, 5, -2])",
    "io_inp": [
      5,
      -2,
      5,
      -2
    ],
    "io_out": [
      -2,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, -1, -3, 1, 3]\noutput : list = [-3, 5, -1, -3, 1, 3]",
    "output": "generated_output : list = reverse(reverse([-3, 5, -1, -3, 1, 3]))",
    "io_inp": [
      -3,
      5,
      -1,
      -3,
      1,
      3
    ],
    "io_out": [
      -3,
      5,
      -1,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, -5, -2, -5, 3]\noutput : list = [3, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-1, -5, -2, -5, 3],2)))",
    "io_inp": [
      -1,
      -5,
      -2,
      -5,
      3
    ],
    "io_out": [
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [4, 4]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sub_n([0, 0],-1),3))),-2)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sub_n(input,-1),3))),-2)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sort_des([-5, -3])),-2),31),7)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sort_des(input)),-2),31),7)"
  },
  {
    "input": "input : list = [-5, -5, -3, 5, 2, -3]\noutput : list = [-3, -3, -1, 7, 4, -1]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n([-5, -5, -3, 5, 2, -3],2))),4)",
    "io_inp": [
      -5,
      -5,
      -3,
      5,
      2,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -1,
      7,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(input,2))),4)"
  },
  {
    "input": "input : list = [1, 5, 5, -1]\noutput : list = [22, 22, 10, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(mul_n([1, 5, 5, -1],3),5))),-2)",
    "io_inp": [
      1,
      5,
      5,
      -1
    ],
    "io_out": [
      22,
      22,
      10,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(mul_n(input,3),5))),-2)"
  },
  {
    "input": "input : list = [3, 2, 3, 4, -5, 1]\noutput : list = [30, 20, 20, 10, 0, -60]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_des([3, 2, 3, 4, -5, 1]),5),4),-2),-5)",
    "io_inp": [
      3,
      2,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      30,
      20,
      20,
      10,
      0,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_des(input),5),4),-2),-5)"
  },
  {
    "input": "input : list = [3, -1, -1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = take([3, -1, -1, 3],2)",
    "io_inp": [
      3,
      -1,
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -3, 4, 5, -3]\noutput : list = [-8, 8, 6, -8, -6]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(add_n([-2, -3, 4, 5, -3],-3),-2),2)),1)",
    "io_inp": [
      -2,
      -3,
      4,
      5,
      -3
    ],
    "io_out": [
      -8,
      8,
      6,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(add_n(input,-3),-2),2)),1)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-1, -1, -3]",
    "output": "generated_output : list = sort_des([-1, -3, -1])",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -1, -1]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(sort_des([5, -1, -1])),14)),40)",
    "io_inp": [
      5,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(sort_des(input)),14)),40)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-32, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(sub_n([4, -5],4),4)),4))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -32,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(sub_n(input,4),4)),4))"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = take(take(add_n(sub_n(reverse([-3, 4, 4]),-3),-2),3),9)",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(reverse(input),-3),-2),3),9)"
  },
  {
    "input": "input : list = [-5, -5, 2, 2, -4]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(take(add_n(drop([-5, -5, 2, 2, -4],2),4),2),1)",
    "io_inp": [
      -5,
      -5,
      2,
      2,
      -4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(drop(input,2),4),2),1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(take(take(take(sort_asc([0, 4]),8),5),25),39)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(take(take(sort_asc(input),8),5),25),39)"
  },
  {
    "input": "input : list = [2, 1, 5, -2, 4]\noutput : list = [0, -1, -3, -4, -7]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(reverse([2, 1, 5, -2, 4])))),-5)",
    "io_inp": [
      2,
      1,
      5,
      -2,
      4
    ],
    "io_out": [
      0,
      -1,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [72, 48, -24]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(add_n([3, 1, -5],-2),-5),4),37),3)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      72,
      48,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(add_n(input,-2),-5),4),37),3)"
  },
  {
    "input": "input : list = [2, -5, -4, -2, 1, -5]\noutput : list = [-6, -5, -3, 0, -6]",
    "output": "generated_output : list = sub_n(reverse(take(take(reverse([2, -5, -4, -2, 1, -5]),16),5)),1)",
    "io_inp": [
      2,
      -5,
      -4,
      -2,
      1,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -3,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(reverse(input),16),5)),1)"
  },
  {
    "input": "input : list = [5, 2, 3, -5, 0, 1]\noutput : list = [55, 31, 19, 7, -5, -65]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(mul_n([5, 2, 3, -5, 0, 1],3),4))),5)",
    "io_inp": [
      5,
      2,
      3,
      -5,
      0,
      1
    ],
    "io_out": [
      55,
      31,
      19,
      7,
      -5,
      -65
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(mul_n(input,3),4))),5)"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [0, -6, 0]",
    "output": "generated_output : list = reverse(sub_n([2, -4, 2],2))",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      0,
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-20, 10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(reverse([4, -2]),2),5)))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -20,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(reverse(input),2),5)))"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [-6, -6, 0]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(sort_des([-1, 5, -1]),19),1),-4))",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(sort_des(input),19),1),-4))"
  },
  {
    "input": "input : list = [-3, -1, 4, 3, -1]\noutput : list = [4, 3, -1, -1, -3]",
    "output": "generated_output : list = sort_des([-3, -1, 4, 3, -1])",
    "io_inp": [
      -3,
      -1,
      4,
      3,
      -1
    ],
    "io_out": [
      4,
      3,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(add_n([-2, -2],-2)))),1)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(add_n(input,-2)))),1)"
  },
  {
    "input": "input : list = [-4, 3, 0, -5, -5]\noutput : list = [8, 5, 1, 0, 0]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des([-4, 3, 0, -5, -5]),5))))",
    "io_inp": [
      -4,
      3,
      0,
      -5,
      -5
    ],
    "io_out": [
      8,
      5,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [-2, -4, 5, -1]\noutput : list = [1, 7, -2, 0]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(add_n([-2, -4, 5, -1],-2),4),-5),5))",
    "io_inp": [
      -2,
      -4,
      5,
      -1
    ],
    "io_out": [
      1,
      7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(add_n(input,-2),4),-5),5))"
  },
  {
    "input": "input : list = [5, -2, 4, -4]\noutput : list = [18, -3, 15, -9]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(add_n([5, -2, 4, -4],-2),18),-4),3),3)",
    "io_inp": [
      5,
      -2,
      4,
      -4
    ],
    "io_out": [
      18,
      -3,
      15,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(add_n(input,-2),18),-4),3),3)"
  },
  {
    "input": "input : list = [-3, -2, -4, 3, -1]\noutput : list = [75]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take([-3, -2, -4, 3, -1],1),5))),-5)",
    "io_inp": [
      -3,
      -2,
      -4,
      3,
      -1
    ],
    "io_out": [
      75
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take(input,1),5))),-5)"
  },
  {
    "input": "input : list = [2, 2, -2, -5, 1]\noutput : list = [-7, -4, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n([2, 2, -2, -5, 1],2))))",
    "io_inp": [
      2,
      2,
      -2,
      -5,
      1
    ],
    "io_out": [
      -7,
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(input,2))))"
  },
  {
    "input": "input : list = [-2, 3, 4, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 3, 4, -4],1)",
    "io_inp": [
      -2,
      3,
      4,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -1, 2, -3, 0, 4]\noutput : list = [-8, -6, -3, -8, -5, -1]",
    "output": "generated_output : list = sub_n([-3, -1, 2, -3, 0, 4],5)",
    "io_inp": [
      -3,
      -1,
      2,
      -3,
      0,
      4
    ],
    "io_out": [
      -8,
      -6,
      -3,
      -8,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [30, 6, -30]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc([-1, -5, 5]),-2),28)),3)",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      30,
      6,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc(input),-2),28)),3)"
  },
  {
    "input": "input : list = [-3, -4, -1, 2, 1, 5]\noutput : list = [-6, -8, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take([-3, -4, -1, 2, 1, 5],3))),5)",
    "io_inp": [
      -3,
      -4,
      -1,
      2,
      1,
      5
    ],
    "io_out": [
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(input,3))),5)"
  },
  {
    "input": "input : list = [0, -2, 0, 1, 1, 2]\noutput : list = [1, 0, 0, -1, -3, -1]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(sub_n([0, -2, 0, 1, 1, 2],2)),2),1),44)",
    "io_inp": [
      0,
      -2,
      0,
      1,
      1,
      2
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(sub_n(input,2)),2),1),44)"
  },
  {
    "input": "input : list = [-2, -2, -4, 2, -2, -3]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = drop([-2, -2, -4, 2, -2, -3],3)",
    "io_inp": [
      -2,
      -2,
      -4,
      2,
      -2,
      -3
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, 0, -2, -3]\noutput : list = [-9, -6, 0, 0]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc([0, 0, -2, -3])),3),32)",
    "io_inp": [
      0,
      0,
      -2,
      -3
    ],
    "io_out": [
      -9,
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(input)),3),32)"
  },
  {
    "input": "input : list = [1, -5, 3, 5]\noutput : list = [-4, 20]",
    "output": "generated_output : list = sort_asc(mul_n(take([1, -5, 3, 5],2),-4))",
    "io_inp": [
      1,
      -5,
      3,
      5
    ],
    "io_out": [
      -4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,2),-4))"
  },
  {
    "input": "input : list = [5, -3, -1]\noutput : list = [-36, -28]",
    "output": "generated_output : list = take(mul_n(drop(sub_n(add_n([5, -3, -1],-5),1),1),4),40)",
    "io_inp": [
      5,
      -3,
      -1
    ],
    "io_out": [
      -36,
      -28
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(sub_n(add_n(input,-5),1),1),4),40)"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [5, 5, 1]",
    "output": "generated_output : list = sort_des(sort_asc([5, 1, 5]))",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 5, -5, 5, 5]\noutput : list = [5, 15, 5, 15, 15]",
    "output": "generated_output : list = add_n(add_n(take(add_n(add_n([-5, 5, -5, 5, 5],-3),5),5),5),3)",
    "io_inp": [
      -5,
      5,
      -5,
      5,
      5
    ],
    "io_out": [
      5,
      15,
      5,
      15,
      15
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(add_n(input,-3),5),5),5),3)"
  },
  {
    "input": "input : list = [-3, 4, 1]\noutput : list = [-20, -5, 15]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_asc([-3, 4, 1])),-1),-5),5)",
    "io_inp": [
      -3,
      4,
      1
    ],
    "io_out": [
      -20,
      -5,
      15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_asc(input)),-1),-5),5)"
  },
  {
    "input": "input : list = [-2, -1, 5, -3, -3, -2]\noutput : list = [3, -3, -4, -4, -5, -5]",
    "output": "generated_output : list = sort_des(add_n([-2, -1, 5, -3, -3, -2],-2))",
    "io_inp": [
      -2,
      -1,
      5,
      -3,
      -3,
      -2
    ],
    "io_out": [
      3,
      -3,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [3, 1, 5, 4]\noutput : list = [123, 98, 73, 23]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(mul_n([3, 1, 5, 4],5),5),2),6))",
    "io_inp": [
      3,
      1,
      5,
      4
    ],
    "io_out": [
      123,
      98,
      73,
      23
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(mul_n(input,5),5),2),6))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-7, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([4, -5])),2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),2)"
  },
  {
    "input": "input : list = [-3, -5, 2, -5, 5]\noutput : list = [-5, -7, 0, -7, 3]",
    "output": "generated_output : list = sub_n([-3, -5, 2, -5, 5],2)",
    "io_inp": [
      -3,
      -5,
      2,
      -5,
      5
    ],
    "io_out": [
      -5,
      -7,
      0,
      -7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-7, 1]",
    "output": "generated_output : list = add_n(reverse(mul_n([-1, -3],4)),5)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,4)),5)"
  },
  {
    "input": "input : list = [1, -3, 5, -1, -3, 3]\noutput : list = [5, 3, 1, -1, -3, -3]",
    "output": "generated_output : list = sort_des([1, -3, 5, -1, -3, 3])",
    "io_inp": [
      1,
      -3,
      5,
      -1,
      -3,
      3
    ],
    "io_out": [
      5,
      3,
      1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-25, -10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(reverse([-3, 0]),-5))),-5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(reverse(input),-5))),-5)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [13, 1, -17]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-5, 1, 5],3)),2)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      13,
      1,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,3)),2)"
  },
  {
    "input": "input : list = [-5, -3, -2, -2, 0, -2]\noutput : list = [-10, -6, -4, -4, 0, -4]",
    "output": "generated_output : list = mul_n([-5, -3, -2, -2, 0, -2],2)",
    "io_inp": [
      -5,
      -3,
      -2,
      -2,
      0,
      -2
    ],
    "io_out": [
      -10,
      -6,
      -4,
      -4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 4, 4]\noutput : list = [7]",
    "output": "generated_output : list = add_n(sort_asc(drop(take(add_n([-5, 4, 4],2),14),2)),1)",
    "io_inp": [
      -5,
      4,
      4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(take(add_n(input,2),14),2)),1)"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [-13, -13, -9]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(reverse([-4, 0, -4]),5))),4)",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      -13,
      -13,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(reverse(input),5))),4)"
  },
  {
    "input": "input : list = [1, 2, -4, 0]\noutput : list = [3, 4]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(take([1, 2, -4, 0],2),1),3),35),1)",
    "io_inp": [
      1,
      2,
      -4,
      0
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(take(input,2),1),3),35),1)"
  },
  {
    "input": "input : list = [0, -4, 1, -3, 2]\noutput : list = [2, 3, 6, 7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_des([0, -4, 1, -3, 2]),-3))),-3)",
    "io_inp": [
      0,
      -4,
      1,
      -3,
      2
    ],
    "io_out": [
      2,
      3,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_des(input),-3))),-3)"
  },
  {
    "input": "input : list = [2, 1, -2, 5]\noutput : list = [-2, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse([2, 1, -2, 5])),7))",
    "io_inp": [
      2,
      1,
      -2,
      5
    ],
    "io_out": [
      -2,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(input)),7))"
  },
  {
    "input": "input : list = [2, 2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(drop([2, 2, 0],1),2)),15))",
    "io_inp": [
      2,
      2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(drop(input,1),2)),15))"
  },
  {
    "input": "input : list = [-2, 5, 3, 2]\noutput : list = [-3, -7, -15, 13]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-2, 5, 3, 2]),-4),-5)",
    "io_inp": [
      -2,
      5,
      3,
      2
    ],
    "io_out": [
      -3,
      -7,
      -15,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),-4),-5)"
  },
  {
    "input": "input : list = [2, -4, -4, 0]\noutput : list = [-8, -8, -4, -2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sort_asc([2, -4, -4, 0]))),-4))",
    "io_inp": [
      2,
      -4,
      -4,
      0
    ],
    "io_out": [
      -8,
      -8,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [-3, 2, -5, -1, -4, -3]\noutput : list = [2, -1, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(take(reverse([-3, 2, -5, -1, -4, -3]),5),32)))",
    "io_inp": [
      -3,
      2,
      -5,
      -1,
      -4,
      -3
    ],
    "io_out": [
      2,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(reverse(input),5),32)))"
  },
  {
    "input": "input : list = [4, 2, -1, 2]\noutput : list = [6]",
    "output": "generated_output : list = take(sub_n(sort_des(take(take([4, 2, -1, 2],1),16)),-2),27)",
    "io_inp": [
      4,
      2,
      -1,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(take(input,1),16)),-2),27)"
  },
  {
    "input": "input : list = [0, -1, -4, 2]\noutput : list = [2, 1, -2, 4]",
    "output": "generated_output : list = sub_n([0, -1, -4, 2],-2)",
    "io_inp": [
      0,
      -1,
      -4,
      2
    ],
    "io_out": [
      2,
      1,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [18]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(sub_n([0, 4, 1],5),-3),1),-3))",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      18
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(sub_n(input,5),-3),1),-3))"
  },
  {
    "input": "input : list = [1, -4, -5, -2]\noutput : list = [-3, -2, 0, 3]",
    "output": "generated_output : list = take(sub_n(sort_asc([1, -4, -5, -2]),-2),25)",
    "io_inp": [
      1,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),-2),25)"
  },
  {
    "input": "input : list = [1, -3, 1, -3]\noutput : list = [-6, -6, -18, -18]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_asc([1, -3, 1, -3]),-5),-1),3))",
    "io_inp": [
      1,
      -3,
      1,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_asc(input),-5),-1),3))"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [-1, -2, -6]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(sort_asc([3, -1, 4]),-4),-2)),1)",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(sort_asc(input),-4),-2)),1)"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [32]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(take([2, -4, 4],1))),-4),-4)",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(take(input,1))),-4),-4)"
  },
  {
    "input": "input : list = [5, -3, 1]\noutput : list = [-18, -38, 2]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(sub_n([5, -3, 1],5),5),1),-2))",
    "io_inp": [
      5,
      -3,
      1
    ],
    "io_out": [
      -18,
      -38,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(sub_n(input,5),5),1),-2))"
  },
  {
    "input": "input : list = [-3, -5, -5, -4, 2]\noutput : list = [-5, -5, -4, -3, 2]",
    "output": "generated_output : list = sort_asc([-3, -5, -5, -4, 2])",
    "io_inp": [
      -3,
      -5,
      -5,
      -4,
      2
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = reverse([-2, 0])",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, 3, -4, 2, -2]\noutput : list = [3, 3, 2, -2, -4, -4]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(reverse([3, -4, 3, -4, 2, -2])),31),9))",
    "io_inp": [
      3,
      -4,
      3,
      -4,
      2,
      -2
    ],
    "io_out": [
      3,
      3,
      2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(reverse(input)),31),9))"
  },
  {
    "input": "input : list = [-1, 1, 3, 0, 2, 5]\noutput : list = [12, 4, -4]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(take([-1, 1, 3, 0, 2, 5],3),-4),-5),1),-4)",
    "io_inp": [
      -1,
      1,
      3,
      0,
      2,
      5
    ],
    "io_out": [
      12,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(take(input,3),-4),-5),1),-4)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [13, 6]",
    "output": "generated_output : list = add_n(add_n(take(reverse(add_n([-3, 4],5)),5),3),1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      13,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(add_n(input,5)),5),3),1)"
  },
  {
    "input": "input : list = [-4, -5, 0, -4]\noutput : list = [28, 32]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(take([-4, -5, 0, -4],2)),3),-4))",
    "io_inp": [
      -4,
      -5,
      0,
      -4
    ],
    "io_out": [
      28,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(take(input,2)),3),-4))"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(take([-1, -1, -5],1),-5))))",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(take(input,1),-5))))"
  },
  {
    "input": "input : list = [0, 0, 0, 0, -4, -2]\noutput : list = [8, 8, 8, 8, 6, 4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(sort_asc([0, 0, 0, 0, -4, -2])),-2),-2),4)",
    "io_inp": [
      0,
      0,
      0,
      0,
      -4,
      -2
    ],
    "io_out": [
      8,
      8,
      8,
      8,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(sort_asc(input)),-2),-2),4)"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [1, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, 1])",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 0, 4, 5, 1]\noutput : list = [1, 5, 4, 0, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(sub_n([5, 0, 4, 5, 1],-3),-4),-2)),-1)",
    "io_inp": [
      5,
      0,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      4,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(sub_n(input,-3),-4),-2)),-1)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(sub_n([5, 3],1),7))))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(sub_n(input,1),7))))"
  },
  {
    "input": "input : list = [-1, 5, 0, -4, -2]\noutput : list = [5, 7, 8, 9, 14]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(sub_n([-1, 5, 0, -4, -2],-5))),4),21)",
    "io_inp": [
      -1,
      5,
      0,
      -4,
      -2
    ],
    "io_out": [
      5,
      7,
      8,
      9,
      14
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(sub_n(input,-5))),4),21)"
  },
  {
    "input": "input : list = [-1, -4, -5, -1, 5, -3]\noutput : list = [-9, 3, 3, 7, 9, 11]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n([-1, -4, -5, -1, 5, -3],-2))),-1)",
    "io_inp": [
      -1,
      -4,
      -5,
      -1,
      5,
      -3
    ],
    "io_out": [
      -9,
      3,
      3,
      7,
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(input,-2))),-1)"
  },
  {
    "input": "input : list = [5, 5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = drop([5, 5, 0],1)",
    "io_inp": [
      5,
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -4, -5, 3, -3]\noutput : list = [-4, -5, 3, -3]",
    "output": "generated_output : list = drop([-1, 4, -4, -5, 3, -3],2)",
    "io_inp": [
      -1,
      4,
      -4,
      -5,
      3,
      -3
    ],
    "io_out": [
      -4,
      -5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, -4, -5, -5]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(drop([-4, -4, -5, -5],1),-3),-2)))",
    "io_inp": [
      -4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(drop(input,1),-3),-2)))"
  },
  {
    "input": "input : list = [1, 4, -4, 3, 0]\noutput : list = [4, 3, 1, 0, -4]",
    "output": "generated_output : list = take(reverse(sort_asc([1, 4, -4, 3, 0])),9)",
    "io_inp": [
      1,
      4,
      -4,
      3,
      0
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),9)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [15, 23]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(sub_n([-1, -5],4)),-2),-5),1)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      15,
      23
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(sub_n(input,4)),-2),-5),1)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [34, 44]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n(add_n([2, 4],4),-1),5),1),-1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      34,
      44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(add_n(input,4),-1),5),1),-1)"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [0, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(drop([-3, 1, -3],1),17),2)),-5)",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(drop(input,1),17),2)),-5)"
  },
  {
    "input": "input : list = [-5, -5, -5, -2, 5]\noutput : list = [21, -7, -19, -19, -19]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(mul_n([-5, -5, -5, -2, 5],4),-5),4)))",
    "io_inp": [
      -5,
      -5,
      -5,
      -2,
      5
    ],
    "io_out": [
      21,
      -7,
      -19,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(mul_n(input,4),-5),4)))"
  },
  {
    "input": "input : list = [0, 5, -1, 0]\noutput : list = [3, -2, -2, -3]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_des([0, 5, -1, 0])),2)))",
    "io_inp": [
      0,
      5,
      -1,
      0
    ],
    "io_out": [
      3,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [-5, -3, 3, -3, 5, 0]\noutput : list = [3, 1, -2, -5, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des([-5, -3, 3, -3, 5, 0]),2)",
    "io_inp": [
      -5,
      -3,
      3,
      -3,
      5,
      0
    ],
    "io_out": [
      3,
      1,
      -2,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [12, -20, -20]",
    "output": "generated_output : list = mul_n([-3, 5, 5],-4)",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      12,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [8, 4]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(drop([2, 5, 1],1)),4)),-1)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(drop(input,1)),4)),-1)"
  },
  {
    "input": "input : list = [-2, -3, -1, -4, -2, 5]\noutput : list = [-15, 3, 6, 6, 9, 12]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(mul_n([-2, -3, -1, -4, -2, 5],3)),-1)),11)",
    "io_inp": [
      -2,
      -3,
      -1,
      -4,
      -2,
      5
    ],
    "io_out": [
      -15,
      3,
      6,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(mul_n(input,3)),-1)),11)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sort_asc([0, 3])),17),19))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sort_asc(input)),17),19))"
  },
  {
    "input": "input : list = [-4, -5, -4, -3, -2]\noutput : list = [15, 18, 21, 21, 24]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sub_n([-4, -5, -4, -3, -2],3))),-3))",
    "io_inp": [
      -4,
      -5,
      -4,
      -3,
      -2
    ],
    "io_out": [
      15,
      18,
      21,
      21,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sub_n(input,3))),-3))"
  },
  {
    "input": "input : list = [1, 5, -3, -1]\noutput : list = [-2, -6]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(take([1, 5, -3, -1],2)),-1)),-1)",
    "io_inp": [
      1,
      5,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(take(input,2)),-1)),-1)"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [-32, -36, -24]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(reverse([-3, -4, -1])),3),-5),4)",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      -32,
      -36,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(reverse(input)),3),-5),4)"
  },
  {
    "input": "input : list = [-2, -4, 0, -2, 0]\noutput : list = [-7, -9, -5, -7, -5]",
    "output": "generated_output : list = add_n([-2, -4, 0, -2, 0],-5)",
    "io_inp": [
      -2,
      -4,
      0,
      -2,
      0
    ],
    "io_out": [
      -7,
      -9,
      -5,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sort_des([2, 5]),2))),-5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sort_des(input),2))),-5)"
  },
  {
    "input": "input : list = [4, -2, -1, 0, 5, -1]\noutput : list = [-5, 0, -6]",
    "output": "generated_output : list = drop(add_n(add_n([4, -2, -1, 0, 5, -1],-2),-3),3)",
    "io_inp": [
      4,
      -2,
      -1,
      0,
      5,
      -1
    ],
    "io_out": [
      -5,
      0,
      -6
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(input,-2),-3),3)"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [-11, -9, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(add_n([3, -2, -4],-5)))),2)",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      -11,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(add_n(input,-5)))),2)"
  },
  {
    "input": "input : list = [2, -2, 3, 4, -1, -4]\noutput : list = [4, 3, -1, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(drop([2, -2, 3, 4, -1, -4],1),1))))",
    "io_inp": [
      2,
      -2,
      3,
      4,
      -1,
      -4
    ],
    "io_out": [
      4,
      3,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [0, -3, -7]",
    "output": "generated_output : list = add_n([4, 1, -3],-4)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 1, 4, 1, 2, -3]\noutput : list = [-2, 2, 3, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(drop([-5, 1, 4, 1, 2, -3],2),2)),1),-2)",
    "io_inp": [
      -5,
      1,
      4,
      1,
      2,
      -3
    ],
    "io_out": [
      -2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(drop(input,2),2)),1),-2)"
  },
  {
    "input": "input : list = [-3, 4, 3, 0, 2, -2]\noutput : list = [-2, -1, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n([-3, 4, 3, 0, 2, -2],-1))",
    "io_inp": [
      -3,
      4,
      3,
      0,
      2,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-3, 5, -2, -3, -4]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 5, -2, -3, -4],1)",
    "io_inp": [
      -3,
      5,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 3, -4]\noutput : list = [6, 3, -1]",
    "output": "generated_output : list = take(sort_des(sub_n(take(sub_n([0, 3, -4],2),14),-5)),3)",
    "io_inp": [
      0,
      3,
      -4
    ],
    "io_out": [
      6,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(sub_n(input,2),14),-5)),3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n([-5, -2],1)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -1, 3, 1]\noutput : list = [-9, -5, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sort_des([-2, -1, 3, 1]),-2))),3)",
    "io_inp": [
      -2,
      -1,
      3,
      1
    ],
    "io_out": [
      -9,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sort_des(input),-2))),3)"
  },
  {
    "input": "input : list = [-1, -5, 4, 5, 2, 3]\noutput : list = [-11, -7, -4, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(add_n([-1, -5, 4, 5, 2, 3],-4)),-2)))",
    "io_inp": [
      -1,
      -5,
      4,
      5,
      2,
      3
    ],
    "io_out": [
      -11,
      -7,
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(add_n(input,-4)),-2)))"
  },
  {
    "input": "input : list = [4, 0, -3, -1, 3, 1]\noutput : list = [-2, 0, 1, 2, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc([4, 0, -3, -1, 3, 1]),1)",
    "io_inp": [
      4,
      0,
      -3,
      -1,
      3,
      1
    ],
    "io_out": [
      -2,
      0,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-2, -1, 3, 5, 2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sub_n(take([-2, -1, 3, 5, 2],2),3)",
    "io_inp": [
      -2,
      -1,
      3,
      5,
      2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),3)"
  },
  {
    "input": "input : list = [4, 5, -3, 0, 2, 5]\noutput : list = [5, 5, 4, 2, 0, -3]",
    "output": "generated_output : list = sort_des([4, 5, -3, 0, 2, 5])",
    "io_inp": [
      4,
      5,
      -3,
      0,
      2,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2, 2, 3, -4]\noutput : list = [4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take([1, 2, 2, 3, -4],3),3)))",
    "io_inp": [
      1,
      2,
      2,
      3,
      -4
    ],
    "io_out": [
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(input,3),3)))"
  },
  {
    "input": "input : list = [3, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(drop([3, 3, 2],1),14)",
    "io_inp": [
      3,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(drop(input,1),14)"
  },
  {
    "input": "input : list = [1, 1, -1, 5, 0, -5]\noutput : list = [-8, -4, -4, -3, -2, 2]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_des([1, 1, -1, 5, 0, -5])),-1),3))",
    "io_inp": [
      1,
      1,
      -1,
      5,
      0,
      -5
    ],
    "io_out": [
      -8,
      -4,
      -4,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_des(input)),-1),3))"
  },
  {
    "input": "input : list = [4, -3, 3, -3, 0, -1]\noutput : list = [-9, 0, -27, 27, -27, 36]",
    "output": "generated_output : list = reverse(take(mul_n(mul_n(mul_n([4, -3, 3, -3, 0, -1],-3),-1),3),7))",
    "io_inp": [
      4,
      -3,
      3,
      -3,
      0,
      -1
    ],
    "io_out": [
      -9,
      0,
      -27,
      27,
      -27,
      36
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(mul_n(mul_n(input,-3),-1),3),7))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-12, -15]",
    "output": "generated_output : list = take(mul_n(take(sort_des(sort_des([-4, -5])),9),3),29)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -12,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(sort_des(input)),9),3),29)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-13, -4]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n([-5, 4],5),4),-5),-2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -13,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(input,5),4),-5),-2)"
  },
  {
    "input": "input : list = [2, 4, -1]\noutput : list = [7, 5, 2]",
    "output": "generated_output : list = sort_des(add_n([2, 4, -1],3))",
    "io_inp": [
      2,
      4,
      -1
    ],
    "io_out": [
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-3, -2, -2, 3, 3, -1]\noutput : list = [15, 10, 10, -15, -15, 5]",
    "output": "generated_output : list = mul_n([-3, -2, -2, 3, 3, -1],-5)",
    "io_inp": [
      -3,
      -2,
      -2,
      3,
      3,
      -1
    ],
    "io_out": [
      15,
      10,
      10,
      -15,
      -15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 2, -5, -4, -3]\noutput : list = [7, 5, 5, 3, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(mul_n([-4, 2, -5, -4, -3],-2),-3))))",
    "io_inp": [
      -4,
      2,
      -5,
      -4,
      -3
    ],
    "io_out": [
      7,
      5,
      5,
      3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(mul_n(input,-2),-3))))"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sort_des(sort_des(drop(sub_n([-3, 0, 5],4),1))),41)",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(drop(sub_n(input,4),1))),41)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-13, -6]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sort_asc([3, -4]),4),-3),-5),-5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -13,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sort_asc(input),4),-3),-5),-5)"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [-2, -2, 4]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des(mul_n([-4, -1, -4],1)),3)),2)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(mul_n(input,1)),3)),2)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(mul_n(sort_des(drop(mul_n([2, 2, 2],-2),2)),1),2)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(drop(mul_n(input,-2),2)),1),2)"
  },
  {
    "input": "input : list = [4, -2, -4, 4, -1]\noutput : list = [2, 7, -1]",
    "output": "generated_output : list = take(reverse(sub_n(take(drop([4, -2, -4, 4, -1],2),20),-3)),37)",
    "io_inp": [
      4,
      -2,
      -4,
      4,
      -1
    ],
    "io_out": [
      2,
      7,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(drop(input,2),20),-3)),37)"
  },
  {
    "input": "input : list = [-3, -2, -1, -4, 0, -5]\noutput : list = [-1, 0, 1, 2, 3, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(sub_n([-3, -2, -1, -4, 0, -5],-4)))),9)",
    "io_inp": [
      -3,
      -2,
      -1,
      -4,
      0,
      -5
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(sub_n(input,-4)))),9)"
  },
  {
    "input": "input : list = [-5, 3, -4, 2, -5]\noutput : list = [-15, -15, -12, 6, 9]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(sort_asc([-5, 3, -4, 2, -5]),22),3)),11)",
    "io_inp": [
      -5,
      3,
      -4,
      2,
      -5
    ],
    "io_out": [
      -15,
      -15,
      -12,
      6,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(sort_asc(input),22),3)),11)"
  },
  {
    "input": "input : list = [3, 3, -5, 4, 5, -1]\noutput : list = [3, 3]",
    "output": "generated_output : list = take([3, 3, -5, 4, 5, -1],2)",
    "io_inp": [
      3,
      3,
      -5,
      4,
      5,
      -1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 3, -1, -2, 2, -2]\noutput : list = [-5, 3]",
    "output": "generated_output : list = take([-5, 3, -1, -2, 2, -2],2)",
    "io_inp": [
      -5,
      3,
      -1,
      -2,
      2,
      -2
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 3, -4, 0]\noutput : list = [-1, -4, -6, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sort_des([-2, 3, -4, 0]),-1))),5)",
    "io_inp": [
      -2,
      3,
      -4,
      0
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sort_des(input),-1))),5)"
  },
  {
    "input": "input : list = [-2, 3, -3, 5]\noutput : list = [-8, 12, -12, 20]",
    "output": "generated_output : list = mul_n([-2, 3, -3, 5],4)",
    "io_inp": [
      -2,
      3,
      -3,
      5
    ],
    "io_out": [
      -8,
      12,
      -12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, 3, 2, 0, 1, -2]\noutput : list = [15, 10, 5, 0, -10, -20]",
    "output": "generated_output : list = sort_des(mul_n([-4, 3, 2, 0, 1, -2],5))",
    "io_inp": [
      -4,
      3,
      2,
      0,
      1,
      -2
    ],
    "io_out": [
      15,
      10,
      5,
      0,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [2, -3, -2, -5, 0]\noutput : list = [25, 15, 10, 0, -10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des([2, -3, -2, -5, 0]),-5)))",
    "io_inp": [
      2,
      -3,
      -2,
      -5,
      0
    ],
    "io_out": [
      25,
      15,
      10,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(input),-5)))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des([-2, -3])",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-12, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(mul_n([3, -1],4),-3),-5)))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -12,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(mul_n(input,4),-3),-5)))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [2, 3]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(reverse([-2, -3]),-5),14)))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(reverse(input),-5),14)))"
  },
  {
    "input": "input : list = [1, -4, 0]\noutput : list = [-3, -7, -2]",
    "output": "generated_output : list = reverse(take(add_n([1, -4, 0],-3),18))",
    "io_inp": [
      1,
      -4,
      0
    ],
    "io_out": [
      -3,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-3),18))"
  },
  {
    "input": "input : list = [5, -5, 3, -1, 4]\noutput : list = [9, -1, 7, 3, 8]",
    "output": "generated_output : list = reverse(reverse(sub_n([5, -5, 3, -1, 4],-4)))",
    "io_inp": [
      5,
      -5,
      3,
      -1,
      4
    ],
    "io_out": [
      9,
      -1,
      7,
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [4, -5, 3, -4, -5, 5]\noutput : list = [-1, -10, -2, -9, -10, 0]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(reverse([4, -5, 3, -4, -5, 5]),-3)),-1),1)",
    "io_inp": [
      4,
      -5,
      3,
      -4,
      -5,
      5
    ],
    "io_out": [
      -1,
      -10,
      -2,
      -9,
      -10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(reverse(input),-3)),-1),1)"
  },
  {
    "input": "input : list = [-4, -2, 0, -5, 3]\noutput : list = [-4, 12, 2, 6, 10]",
    "output": "generated_output : list = reverse(take(take(mul_n(sub_n([-4, -2, 0, -5, 3],1),-2),16),41))",
    "io_inp": [
      -4,
      -2,
      0,
      -5,
      3
    ],
    "io_out": [
      -4,
      12,
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(sub_n(input,1),-2),16),41))"
  },
  {
    "input": "input : list = [2, -1, 4, 0, -5]\noutput : list = [0, 4, 5, 7, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(reverse([2, -1, 4, 0, -5])),-5)))",
    "io_inp": [
      2,
      -1,
      4,
      0,
      -5
    ],
    "io_out": [
      0,
      4,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [0, 4, -3]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 4, -3],1)",
    "io_inp": [
      0,
      4,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 3, 1, 5, 1]\noutput : list = [-4, -1, -3, 1, -3]",
    "output": "generated_output : list = sub_n(add_n([0, 3, 1, 5, 1],-3),1)",
    "io_inp": [
      0,
      3,
      1,
      5,
      1
    ],
    "io_out": [
      -4,
      -1,
      -3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),1)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = drop([-4, -2, 0],1)",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -4, -1, -5]\noutput : list = [60, -30]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(take([2, -4, -1, -5],2)),-5),41),3)",
    "io_inp": [
      2,
      -4,
      -1,
      -5
    ],
    "io_out": [
      60,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(take(input,2)),-5),41),3)"
  },
  {
    "input": "input : list = [3, 1, -4, -1, 5]\noutput : list = [8, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(drop([3, 1, -4, -1, 5],3)))),-3)",
    "io_inp": [
      3,
      1,
      -4,
      -1,
      5
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(drop(input,3)))),-3)"
  },
  {
    "input": "input : list = [5, 5, 0, -1]\noutput : list = [3, 2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(drop([5, 5, 0, -1],1),2),-1)))",
    "io_inp": [
      5,
      5,
      0,
      -1
    ],
    "io_out": [
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(drop(input,1),2),-1)))"
  },
  {
    "input": "input : list = [-3, -4, -3, -2, -4, 4]\noutput : list = [-12, -16, -12, -8, -16, 16]",
    "output": "generated_output : list = mul_n([-3, -4, -3, -2, -4, 4],4)",
    "io_inp": [
      -3,
      -4,
      -3,
      -2,
      -4,
      4
    ],
    "io_out": [
      -12,
      -16,
      -12,
      -8,
      -16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [18, 48]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(mul_n([-5, -2],-5),-1),2),24))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      18,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(mul_n(input,-5),-1),2),24))"
  },
  {
    "input": "input : list = [2, 5, -5, -5]\noutput : list = [-2, -2, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(drop([2, 5, -5, -5],1),-3))))",
    "io_inp": [
      2,
      5,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [5, 5, 2, -1, -3]\noutput : list = [5, 5, 2, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des([5, 5, 2, -1, -3]))",
    "io_inp": [
      5,
      5,
      2,
      -1,
      -3
    ],
    "io_out": [
      5,
      5,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = drop([4, -5, -2],1)",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 5, 4, -5, -1]\noutput : list = [-14, -10]",
    "output": "generated_output : list = add_n(take(sub_n(drop([-3, 5, 4, -5, -1],3),5),17),-4)",
    "io_inp": [
      -3,
      5,
      4,
      -5,
      -1
    ],
    "io_out": [
      -14,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(drop(input,3),5),17),-4)"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [-4, -4, -7]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(sort_asc([0, -1, 0])),3),18),4)",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(sort_asc(input)),3),18),4)"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [-15, -14, -9]",
    "output": "generated_output : list = take(sub_n(sort_asc(add_n(reverse([1, -4, -5]),-5)),5),31)",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      -15,
      -14,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(add_n(reverse(input),-5)),5),31)"
  },
  {
    "input": "input : list = [4, 4, -4, -2, 4, 2]\noutput : list = [7, 7, 7, 5, 1, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_asc([4, 4, -4, -2, 4, 2]))),3)",
    "io_inp": [
      4,
      4,
      -4,
      -2,
      4,
      2
    ],
    "io_out": [
      7,
      7,
      7,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(input))),3)"
  },
  {
    "input": "input : list = [3, -1, 2, 5, -1]\noutput : list = [-1, 2, 5, -1]",
    "output": "generated_output : list = reverse(take(reverse([3, -1, 2, 5, -1]),4))",
    "io_inp": [
      3,
      -1,
      2,
      5,
      -1
    ],
    "io_out": [
      -1,
      2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),4))"
  },
  {
    "input": "input : list = [-5, -1, 1, 0, 2]\noutput : list = [12, 0, 24]",
    "output": "generated_output : list = mul_n(mul_n(drop(take(drop([-5, -1, 1, 0, 2],1),15),1),3),4)",
    "io_inp": [
      -5,
      -1,
      1,
      0,
      2
    ],
    "io_out": [
      12,
      0,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(take(drop(input,1),15),1),3),4)"
  },
  {
    "input": "input : list = [3, 4, 4, 0]\noutput : list = [2, 3, 3, -1]",
    "output": "generated_output : list = sub_n([3, 4, 4, 0],1)",
    "io_inp": [
      3,
      4,
      4,
      0
    ],
    "io_out": [
      2,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, 1, -4, -5, -2, -4]\noutput : list = [1, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(take([-3, 1, -4, -5, -2, -4],2)))))",
    "io_inp": [
      -3,
      1,
      -4,
      -5,
      -2,
      -4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(take(input,2)))))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [0, 6]",
    "output": "generated_output : list = add_n(sort_asc([1, -5]),5)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [3, -1, 5, 1, 3]\noutput : list = [4, -4, -12, -12, -20]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(mul_n([3, -1, 5, 1, 3],-4)),24),4),4)",
    "io_inp": [
      3,
      -1,
      5,
      1,
      3
    ],
    "io_out": [
      4,
      -4,
      -12,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(mul_n(input,-4)),24),4),4)"
  },
  {
    "input": "input : list = [0, -4, 4, -3, -3]\noutput : list = [17, 12, 12, -3, -23]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(mul_n([0, -4, 4, -3, -3],-5)))),3)",
    "io_inp": [
      0,
      -4,
      4,
      -3,
      -3
    ],
    "io_out": [
      17,
      12,
      12,
      -3,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(mul_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [17]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(take([-5, -3, 2],1),-4)),1),-4)",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      17
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(take(input,1),-4)),1),-4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-9, -6]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n([-3, -2],3),10)))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(input,3),10)))"
  },
  {
    "input": "input : list = [3, -2, 1, 3, 1, 4]\noutput : list = [-5, -2, -2, 0, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(sub_n([3, -2, 1, 3, 1, 4],3)))))",
    "io_inp": [
      3,
      -2,
      1,
      3,
      1,
      4
    ],
    "io_out": [
      -5,
      -2,
      -2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [20, 12, 8]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(sort_asc([-2, -5, -3]),-4))))",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      20,
      12,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-18, -9]",
    "output": "generated_output : list = mul_n(sub_n(take(take(sort_asc([-2, 1]),13),21),4),3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(sort_asc(input),13),21),4),3)"
  },
  {
    "input": "input : list = [-4, -2, 4, 3]\noutput : list = [-4, -2, 3, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des([-4, -2, 4, 3])),26)",
    "io_inp": [
      -4,
      -2,
      4,
      3
    ],
    "io_out": [
      -4,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),26)"
  },
  {
    "input": "input : list = [1, 3, -2, -3, 3]\noutput : list = [9, 6, -3, -9, -9]",
    "output": "generated_output : list = mul_n(sort_asc([1, 3, -2, -3, 3]),-3)",
    "io_inp": [
      1,
      3,
      -2,
      -3,
      3
    ],
    "io_out": [
      9,
      6,
      -3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [1, 2, 2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(drop([1, 2, 2, -5],2)))))",
    "io_inp": [
      1,
      2,
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [-18, -10, 18]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([-4, -2, 5],-2),-2),2)",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      -18,
      -10,
      18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,-2),-2),2)"
  },
  {
    "input": "input : list = [4, -2, -5, 4]\noutput : list = [6, 0, -3, 6]",
    "output": "generated_output : list = add_n([4, -2, -5, 4],2)",
    "io_inp": [
      4,
      -2,
      -5,
      4
    ],
    "io_out": [
      6,
      0,
      -3,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [1, 3, -1, 1, -5, 0]\noutput : list = [6, 0]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(drop([1, 3, -1, 1, -5, 0],3),2),-3),1),2)",
    "io_inp": [
      1,
      3,
      -1,
      1,
      -5,
      0
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(drop(input,3),2),-3),1),2)"
  },
  {
    "input": "input : list = [1, -5, -5, 4, -2]\noutput : list = [3, -3, -3, 6, 0]",
    "output": "generated_output : list = add_n([1, -5, -5, 4, -2],2)",
    "io_inp": [
      1,
      -5,
      -5,
      4,
      -2
    ],
    "io_out": [
      3,
      -3,
      -3,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, 2, 5]\noutput : list = [-5, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-5, 2, 5],1)))",
    "io_inp": [
      -5,
      2,
      5
    ],
    "io_out": [
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,1)))"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = sort_des([-5, 0, 0])",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(add_n(drop([-5, -4, -1],1),1))",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),1))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_asc([-1, 0])))),-2)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [-5, 5, -4, 0]\noutput : list = [15, -15]",
    "output": "generated_output : list = mul_n(reverse(take(take([-5, 5, -4, 0],2),13)),3)",
    "io_inp": [
      -5,
      5,
      -4,
      0
    ],
    "io_out": [
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(input,2),13)),3)"
  },
  {
    "input": "input : list = [-4, -2, 3, 1]\noutput : list = [-6, -4, 1, -1]",
    "output": "generated_output : list = add_n([-4, -2, 3, 1],-2)",
    "io_inp": [
      -4,
      -2,
      3,
      1
    ],
    "io_out": [
      -6,
      -4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse([1, -1])",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -5, 4, 0, -5]\noutput : list = [4, 3, 0, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc([3, -5, 4, 0, -5]))",
    "io_inp": [
      3,
      -5,
      4,
      0,
      -5
    ],
    "io_out": [
      4,
      3,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -2, -1, -1]\noutput : list = [-5, -5, -10, -25]",
    "output": "generated_output : list = mul_n(sort_des([-5, -2, -1, -1]),5)",
    "io_inp": [
      -5,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(add_n([1, 0],-1)))),-1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(add_n(input,-1)))),-1)"
  },
  {
    "input": "input : list = [0, -1, -4, 0]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(drop([0, -1, -4, 0],2)))),3)",
    "io_inp": [
      0,
      -1,
      -4,
      0
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(drop(input,2)))),3)"
  },
  {
    "input": "input : list = [-2, -2, -1, 5, 0]\noutput : list = [-5, 0, -6]",
    "output": "generated_output : list = take(reverse(reverse(add_n(reverse([-2, -2, -1, 5, 0]),-5))),3)",
    "io_inp": [
      -2,
      -2,
      -1,
      5,
      0
    ],
    "io_out": [
      -5,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(reverse(input),-5))),3)"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(take(sub_n(add_n(drop([-1, 1, 2],1),-5),1),9),21)",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(drop(input,1),-5),1),9),21)"
  },
  {
    "input": "input : list = [3, 2, -2, 4, -3, 4]\noutput : list = [-8, -7, -3, -2, -1, -1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(add_n([3, 2, -2, 4, -3, 4],-2),2))),1)",
    "io_inp": [
      3,
      2,
      -2,
      4,
      -3,
      4
    ],
    "io_out": [
      -8,
      -7,
      -3,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(add_n(input,-2),2))),1)"
  },
  {
    "input": "input : list = [1, -1, 2, 4, 2]\noutput : list = [-16, -8, -8, -4, 4]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(sort_des([1, -1, 2, 4, 2]),9)),1),-4)",
    "io_inp": [
      1,
      -1,
      2,
      4,
      2
    ],
    "io_out": [
      -16,
      -8,
      -8,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(sort_des(input),9)),1),-4)"
  },
  {
    "input": "input : list = [3, -2, -3, -1, 0, -4]\noutput : list = [-4, -5, -6, -7, -8]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(drop([3, -2, -3, -1, 0, -4],1)),-4),1),28)",
    "io_inp": [
      3,
      -2,
      -3,
      -1,
      0,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(drop(input,1)),-4),1),28)"
  },
  {
    "input": "input : list = [-3, -3, 4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take(take(take(sort_asc(mul_n([-3, -3, 4],-1)),16),16),2)",
    "io_inp": [
      -3,
      -3,
      4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(sort_asc(mul_n(input,-1)),16),16),2)"
  },
  {
    "input": "input : list = [1, -3, -4]\noutput : list = [3, -9, -12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([1, -3, -4],3)))",
    "io_inp": [
      1,
      -3,
      -4
    ],
    "io_out": [
      3,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,3)))"
  },
  {
    "input": "input : list = [-1, 2, -1, -2, -3, 4]\noutput : list = [4, 2, -1, -1, -2, -3]",
    "output": "generated_output : list = sort_des([-1, 2, -1, -2, -3, 4])",
    "io_inp": [
      -1,
      2,
      -1,
      -2,
      -3,
      4
    ],
    "io_out": [
      4,
      2,
      -1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 2, 4, -2, -4]\noutput : list = [-5, -4, -2, 2, 4]",
    "output": "generated_output : list = sort_asc([-5, 2, 4, -2, -4])",
    "io_inp": [
      -5,
      2,
      4,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, 0, -5, 0]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(take([5, 2, 0, -5, 0],3)),1),-1),3)",
    "io_inp": [
      5,
      2,
      0,
      -5,
      0
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(take(input,3)),1),-1),3)"
  },
  {
    "input": "input : list = [-4, -1, -3, 5]\noutput : list = [5, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(sub_n([-4, -1, -3, 5],3)),3)))",
    "io_inp": [
      -4,
      -1,
      -3,
      5
    ],
    "io_out": [
      5,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(sub_n(input,3)),3)))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2, -1, 3]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(sub_n(add_n(drop(sort_asc([5, -2, -1, 3]),2),-5),-4))",
    "io_inp": [
      5,
      -2,
      -1,
      3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(drop(sort_asc(input),2),-5),-4))"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [-3, -13, -23]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(mul_n([-5, -3, -1],5)),3),-5))",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -13,
      -23
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(mul_n(input,5)),3),-5))"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(drop([0, -3, -3],1)),-1),-1),27)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(drop(input,1)),-1),-1),27)"
  },
  {
    "input": "input : list = [-2, 5, 1, -3]\noutput : list = [4, -10, -2, 6]",
    "output": "generated_output : list = take(mul_n([-2, 5, 1, -3],-2),5)",
    "io_inp": [
      -2,
      5,
      1,
      -3
    ],
    "io_out": [
      4,
      -10,
      -2,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-2),5)"
  },
  {
    "input": "input : list = [-2, 0, 5, -5, 0]\noutput : list = [-7, -2]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(drop([-2, 0, 5, -5, 0],3)),28),2),7)",
    "io_inp": [
      -2,
      0,
      5,
      -5,
      0
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(drop(input,3)),28),2),7)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n([4, -1],-5),1))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-5),1))"
  },
  {
    "input": "input : list = [-3, 1, 0]\noutput : list = [6, 5, 2]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(add_n([-3, 1, 0],5)),5)))",
    "io_inp": [
      -3,
      1,
      0
    ],
    "io_out": [
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(add_n(input,5)),5)))"
  },
  {
    "input": "input : list = [2, -3, -1, -2, -2]\noutput : list = [2, -1, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n([2, -3, -1, -2, -2],2),4)),2))",
    "io_inp": [
      2,
      -3,
      -1,
      -2,
      -2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n(input,2),4)),2))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-20, -20]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(sort_des([1, 1])),5),-4))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(sort_des(input)),5),-4))"
  },
  {
    "input": "input : list = [3, 2, -2, -2]\noutput : list = [10, 5, -15, -15]",
    "output": "generated_output : list = mul_n(take(take(sort_des(sub_n([3, 2, -2, -2],1)),12),39),5)",
    "io_inp": [
      3,
      2,
      -2,
      -2
    ],
    "io_out": [
      10,
      5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(sub_n(input,1)),12),39),5)"
  },
  {
    "input": "input : list = [-5, -1, 5, 4]\noutput : list = [1, 0, -5, -9]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n([-5, -1, 5, 4],-5)),22),-1)",
    "io_inp": [
      -5,
      -1,
      5,
      4
    ],
    "io_out": [
      1,
      0,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(input,-5)),22),-1)"
  },
  {
    "input": "input : list = [5, -3, 1, -5, -2]\noutput : list = [23, 17, 14, 5, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(mul_n([5, -3, 1, -5, -2],-3)),5),-3))",
    "io_inp": [
      5,
      -3,
      1,
      -5,
      -2
    ],
    "io_out": [
      23,
      17,
      14,
      5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(mul_n(input,-3)),5),-3))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(add_n([1, 2],1)),-2),-1))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(add_n(input,1)),-2),-1))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [2, -13]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([1, -4],-1),3),4)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      2,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,-1),3),4)"
  },
  {
    "input": "input : list = [-1, 3, -1, -4, -5, 0]\noutput : list = [15, 30, 35, 35, 50, 55]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(sub_n([-1, 3, -1, -4, -5, 0],4)),2)),-5)",
    "io_inp": [
      -1,
      3,
      -1,
      -4,
      -5,
      0
    ],
    "io_out": [
      15,
      30,
      35,
      35,
      50,
      55
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(sub_n(input,4)),2)),-5)"
  },
  {
    "input": "input : list = [-2, 1, -1]\noutput : list = [7, -1, 11]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(mul_n([-2, 1, -1],-4)),-1),-1),3)",
    "io_inp": [
      -2,
      1,
      -1
    ],
    "io_out": [
      7,
      -1,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(mul_n(input,-4)),-1),-1),3)"
  },
  {
    "input": "input : list = [1, 5, -1, 4]\noutput : list = [15, -15, -60, -75]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(mul_n([1, 5, -1, 4],-5)),3)))",
    "io_inp": [
      1,
      5,
      -1,
      4
    ],
    "io_out": [
      15,
      -15,
      -60,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(mul_n(input,-5)),3)))"
  },
  {
    "input": "input : list = [-2, -2, 5, 1, 4, 4]\noutput : list = [6, 6, 3, 7, 0, 0]",
    "output": "generated_output : list = reverse(add_n([-2, -2, 5, 1, 4, 4],2))",
    "io_inp": [
      -2,
      -2,
      5,
      1,
      4,
      4
    ],
    "io_out": [
      6,
      6,
      3,
      7,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-4, -1, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc([-1, -1, -4]),2),-2)),6)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc(input),2),-2)),6)"
  },
  {
    "input": "input : list = [0, -3, 4, 0, -3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take([0, -3, 4, 0, -3],1)),1),5)",
    "io_inp": [
      0,
      -3,
      4,
      0,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(input,1)),1),5)"
  },
  {
    "input": "input : list = [2, 1, 1, -1]\noutput : list = [7, 6, 6, 4]",
    "output": "generated_output : list = reverse(sub_n(reverse([2, 1, 1, -1]),-5))",
    "io_inp": [
      2,
      1,
      1,
      -1
    ],
    "io_out": [
      7,
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [5, 3, -5, -5]\noutput : list = [0, 0, -16, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(sub_n([5, 3, -5, -5],-5)),-2)))",
    "io_inp": [
      5,
      3,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(sub_n(input,-5)),-2)))"
  },
  {
    "input": "input : list = [0, 1, 2, 3, 2, -1]\noutput : list = [-12, -6, 0, 6]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(mul_n([0, 1, 2, 3, 2, -1],-2),-2),3),4))",
    "io_inp": [
      0,
      1,
      2,
      3,
      2,
      -1
    ],
    "io_out": [
      -12,
      -6,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(mul_n(input,-2),-2),3),4))"
  },
  {
    "input": "input : list = [-4, 5, 4, -2]\noutput : list = [3, 2, -4, -6]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(sub_n([-4, 5, 4, -2],1),-2)),2),-1)",
    "io_inp": [
      -4,
      5,
      4,
      -2
    ],
    "io_out": [
      3,
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(sub_n(input,1),-2)),2),-1)"
  },
  {
    "input": "input : list = [5, 0, -1, -1]\noutput : list = [5, 5, 6, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n([5, 0, -1, -1],3),3))",
    "io_inp": [
      5,
      0,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      6,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,3),3))"
  },
  {
    "input": "input : list = [0, 4, 4]\noutput : list = [0, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_asc([0, 4, 4])))))",
    "io_inp": [
      0,
      4,
      4
    ],
    "io_out": [
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -5, -4, -2, 0, -1]\noutput : list = [-1, 0, -2, -4, -5, -5]",
    "output": "generated_output : list = reverse([-5, -5, -4, -2, 0, -1])",
    "io_inp": [
      -5,
      -5,
      -4,
      -2,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      -2,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, -4, -3]\noutput : list = [0, -5, -10, -45]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des([-5, 4, -4, -3]),-5),-5),40))",
    "io_inp": [
      -5,
      4,
      -4,
      -3
    ],
    "io_out": [
      0,
      -5,
      -10,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des(input),-5),-5),40))"
  },
  {
    "input": "input : list = [1, -1, 4, -3, -3]\noutput : list = [2, 2, 4, 9]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(drop([1, -1, 4, -3, -3],1),5)),1))",
    "io_inp": [
      1,
      -1,
      4,
      -3,
      -3
    ],
    "io_out": [
      2,
      2,
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(drop(input,1),5)),1))"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(sort_asc([1, 0, 5]),-1)),8))",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(sort_asc(input),-1)),8))"
  },
  {
    "input": "input : list = [5, 4, -5, -5, 5, 5]\noutput : list = [3, 3, -27, -27, 0, 3]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(reverse([5, 4, -5, -5, 5, 5]),-2),-5),3),3)",
    "io_inp": [
      5,
      4,
      -5,
      -5,
      5,
      5
    ],
    "io_out": [
      3,
      3,
      -27,
      -27,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(reverse(input),-2),-5),3),3)"
  },
  {
    "input": "input : list = [1, 0, -3, 4]\noutput : list = [7, 0, 3, 4]",
    "output": "generated_output : list = reverse(sub_n([1, 0, -3, 4],-3))",
    "io_inp": [
      1,
      0,
      -3,
      4
    ],
    "io_out": [
      7,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [4, 5, -1]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(sort_des([4, 5, -1])))),8)",
    "io_inp": [
      4,
      5,
      -1
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(sort_des(input)))),8)"
  },
  {
    "input": "input : list = [-5, 5, 5, 2, -1]\noutput : list = [-7, -3, 0, 3, 3]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(sub_n([-5, 5, 5, 2, -1],1),-3)),-4))",
    "io_inp": [
      -5,
      5,
      5,
      2,
      -1
    ],
    "io_out": [
      -7,
      -3,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(sub_n(input,1),-3)),-4))"
  },
  {
    "input": "input : list = [4, -2, -4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = drop([4, -2, -4, 4],2)",
    "io_inp": [
      4,
      -2,
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = take(take(reverse(sort_des([-3, -5, -4])),4),37)",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(input)),4),37)"
  },
  {
    "input": "input : list = [3, 2, -5, -1]\noutput : list = [-5, -1, 2, 3]",
    "output": "generated_output : list = sort_asc([3, 2, -5, -1])",
    "io_inp": [
      3,
      2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [-10, -15, -20]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(reverse([-3, -4, -2]))),32),5)",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(reverse(input))),32),5)"
  },
  {
    "input": "input : list = [-1, -5, -1, -5]\noutput : list = [-1, 3, -1, 3]",
    "output": "generated_output : list = add_n(reverse(take(add_n(add_n([-1, -5, -1, -5],5),-2),17)),1)",
    "io_inp": [
      -1,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -1,
      3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(add_n(input,5),-2),17)),1)"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [0, 4, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-4, 0, 3],-4)))",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, -1, -3]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(take([-3, -1, -3],1)),-4),2))",
    "io_inp": [
      -3,
      -1,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(take(input,1)),-4),2))"
  },
  {
    "input": "input : list = [-2, -5, -2, 1, -5, 3]\noutput : list = [-4, 8, 8, 20]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(take([-2, -5, -2, 1, -5, 3],4),-4))))",
    "io_inp": [
      -2,
      -5,
      -2,
      1,
      -5,
      3
    ],
    "io_out": [
      -4,
      8,
      8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(take(input,4),-4))))"
  },
  {
    "input": "input : list = [-1, 3, -3, 2, -4]\noutput : list = [1, 0, -3, -5, -6]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n([-1, 3, -3, 2, -4],2))),15)",
    "io_inp": [
      -1,
      3,
      -3,
      2,
      -4
    ],
    "io_out": [
      1,
      0,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(input,2))),15)"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [9, 6]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(drop([0, -2, 1],1)),13),-5),3)",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(drop(input,1)),13),-5),3)"
  },
  {
    "input": "input : list = [5, -3, 2, 4, -5, 1]\noutput : list = [5, -3, 2, 4]",
    "output": "generated_output : list = take(take([5, -3, 2, 4, -5, 1],4),18)",
    "io_inp": [
      5,
      -3,
      2,
      4,
      -5,
      1
    ],
    "io_out": [
      5,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(take(input,4),18)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [7]",
    "output": "generated_output : list = take(sub_n(take([2, -2, 1],1),-5),21)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),-5),21)"
  },
  {
    "input": "input : list = [-3, 5, -3, -5]\noutput : list = [-6, 0, 0, 24]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(add_n([-3, 5, -3, -5],3)),3),13))",
    "io_inp": [
      -3,
      5,
      -3,
      -5
    ],
    "io_out": [
      -6,
      0,
      0,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(add_n(input,3)),3),13))"
  },
  {
    "input": "input : list = [-2, 3, -2, 4, -5, -2]\noutput : list = [0, 10, 0, 12, -6, 0]",
    "output": "generated_output : list = sub_n(mul_n([-2, 3, -2, 4, -5, -2],2),-4)",
    "io_inp": [
      -2,
      3,
      -2,
      4,
      -5,
      -2
    ],
    "io_out": [
      0,
      10,
      0,
      12,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-4)"
  },
  {
    "input": "input : list = [0, 3, 4, -4, 0, 4]\noutput : list = [-15, 0, 5, -35, -15, 5]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(reverse([0, 3, 4, -4, 0, 4]),1),-3),5))",
    "io_inp": [
      0,
      3,
      4,
      -4,
      0,
      4
    ],
    "io_out": [
      -15,
      0,
      5,
      -35,
      -15,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(reverse(input),1),-3),5))"
  },
  {
    "input": "input : list = [5, -5, 3, -5, 5]\noutput : list = [3, -7]",
    "output": "generated_output : list = sort_des(take(drop(sub_n([5, -5, 3, -5, 5],2),3),14))",
    "io_inp": [
      5,
      -5,
      3,
      -5,
      5
    ],
    "io_out": [
      3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(sub_n(input,2),3),14))"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [13, 13, 9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(mul_n([-1, 0, -1],-4)),-4),-2),-3)",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      13,
      13,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(mul_n(input,-4)),-4),-2),-3)"
  },
  {
    "input": "input : list = [1, -3, 5, 1, 5]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(drop([1, -3, 5, 1, 5],2),-2)),3))",
    "io_inp": [
      1,
      -3,
      5,
      1,
      5
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(drop(input,2),-2)),3))"
  },
  {
    "input": "input : list = [-1, 1, -3, 2]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(drop([-1, 1, -3, 2],2)),8),-1),1)",
    "io_inp": [
      -1,
      1,
      -3,
      2
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(drop(input,2)),8),-1),1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [140, 0]",
    "output": "generated_output : list = take(take(mul_n(mul_n(add_n([5, -2],2),4),5),6),35)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      140,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(add_n(input,2),4),5),6),35)"
  },
  {
    "input": "input : list = [1, -1, 4, 0]\noutput : list = [-4]",
    "output": "generated_output : list = take(sub_n(take([1, -1, 4, 0],1),5),1)",
    "io_inp": [
      1,
      -1,
      4,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),5),1)"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = add_n([-5, -1, 0],2)",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, 3, 2, -4, 0]\noutput : list = [-2, 6, -6, -8, -6]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(mul_n([2, 3, 2, -4, 0],-2),-3),4),5))",
    "io_inp": [
      2,
      3,
      2,
      -4,
      0
    ],
    "io_out": [
      -2,
      6,
      -6,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(mul_n(input,-2),-3),4),5))"
  },
  {
    "input": "input : list = [-5, 5, 5, -4, -2]\noutput : list = [11, 11, 2, 4]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(drop([-5, 5, 5, -4, -2],1),-1),-4),5),-4)",
    "io_inp": [
      -5,
      5,
      5,
      -4,
      -2
    ],
    "io_out": [
      11,
      11,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(drop(input,1),-1),-4),5),-4)"
  },
  {
    "input": "input : list = [2, -1, -4, 0, -4, -3]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take(sort_asc([2, -1, -4, 0, -4, -3]),2)",
    "io_inp": [
      2,
      -1,
      -4,
      0,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, 0, 1, 4]\noutput : list = [-5, -3, 1, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(mul_n([3, 0, 1, 4],2),-5))))",
    "io_inp": [
      3,
      0,
      1,
      4
    ],
    "io_out": [
      -5,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(mul_n(input,2),-5))))"
  },
  {
    "input": "input : list = [-1, -1, -2, -3]\noutput : list = [1, 1]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(take([-1, -1, -2, -3],2)))),-1)",
    "io_inp": [
      -1,
      -1,
      -2,
      -3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(take(input,2)))),-1)"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [50]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(take([-5, 0, 5],1),-5),-5)))",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      50
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(take(input,1),-5),-5)))"
  },
  {
    "input": "input : list = [-3, -4, 1, -3, 5]\noutput : list = [100, 52, 4, 4, -8]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n([-3, -4, 1, -3, 5],4)),3),-2),4)",
    "io_inp": [
      -3,
      -4,
      1,
      -3,
      5
    ],
    "io_out": [
      100,
      52,
      4,
      4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n(input,4)),3),-2),4)"
  },
  {
    "input": "input : list = [-2, -2, -5, 1, 3, 0]\noutput : list = [6, 4, 3, 1, 1, -2]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(sort_des([-2, -2, -5, 1, 3, 0]))),7),-3)",
    "io_inp": [
      -2,
      -2,
      -5,
      1,
      3,
      0
    ],
    "io_out": [
      6,
      4,
      3,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(sort_des(input))),7),-3)"
  },
  {
    "input": "input : list = [-5, -4, 2, 2]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(take([-5, -4, 2, 2],2),2)",
    "io_inp": [
      -5,
      -4,
      2,
      2
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),2)"
  },
  {
    "input": "input : list = [-5, -2, -2]\noutput : list = [-40]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(take([-5, -2, -2],1),4))),2)",
    "io_inp": [
      -5,
      -2,
      -2
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(take(input,1),4))),2)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-4, -10]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(reverse([1, -5])),22)),5)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(reverse(input)),22)),5)"
  },
  {
    "input": "input : list = [1, 0, -5, -4, -2, -5]\noutput : list = [-7, -6, -4]",
    "output": "generated_output : list = add_n(sort_asc(take(take(drop([1, 0, -5, -4, -2, -5],3),11),16)),-2)",
    "io_inp": [
      1,
      0,
      -5,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(drop(input,3),11),16)),-2)"
  },
  {
    "input": "input : list = [-5, 5, -3, -5, 0, -5]\noutput : list = [5, 0, -3, -5, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(mul_n([-5, 5, -3, -5, 0, -5],1)))))",
    "io_inp": [
      -5,
      5,
      -3,
      -5,
      0,
      -5
    ],
    "io_out": [
      5,
      0,
      -3,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [-4, 3, 5, -3, -3, -3]\noutput : list = [-1, 6, 8, 0, 0, 0]",
    "output": "generated_output : list = sub_n([-4, 3, 5, -3, -3, -3],-3)",
    "io_inp": [
      -4,
      3,
      5,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -1,
      6,
      8,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, 2, 1, 5, -2]\noutput : list = [-1, -1, 2, 3, 6]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc([5, 2, 1, 5, -2]),-1),-4))",
    "io_inp": [
      5,
      2,
      1,
      5,
      -2
    ],
    "io_out": [
      -1,
      -1,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(input),-1),-4))"
  },
  {
    "input": "input : list = [1, 0, 1, -2]\noutput : list = [5, 0, 5, -10]",
    "output": "generated_output : list = mul_n([1, 0, 1, -2],5)",
    "io_inp": [
      1,
      0,
      1,
      -2
    ],
    "io_out": [
      5,
      0,
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, -3, 2, -5, 0, 4]\noutput : list = [5, 7, 10, 11, 12, 14]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(add_n([1, -3, 2, -5, 0, 4],5),-5),12)),1)",
    "io_inp": [
      1,
      -3,
      2,
      -5,
      0,
      4
    ],
    "io_out": [
      5,
      7,
      10,
      11,
      12,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(add_n(input,5),-5),12)),1)"
  },
  {
    "input": "input : list = [1, -3, 2, -2, -1]\noutput : list = [12, 8, 0, -4, -8]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(reverse([1, -3, 2, -2, -1]),-1))),4)",
    "io_inp": [
      1,
      -3,
      2,
      -2,
      -1
    ],
    "io_out": [
      12,
      8,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(reverse(input),-1))),4)"
  },
  {
    "input": "input : list = [-2, 2, -1, -3, 2]\noutput : list = [7, 7, 4, 3, 2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(add_n([-2, 2, -1, -3, 2],2),5),-3)))",
    "io_inp": [
      -2,
      2,
      -1,
      -3,
      2
    ],
    "io_out": [
      7,
      7,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(add_n(input,2),5),-3)))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n([1, 1],-4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(sub_n([2, 5, 1],-1)),-1),19),3)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(sub_n(input,-1)),-1),19),3)"
  },
  {
    "input": "input : list = [2, -5, 4, 5, -1, -5]\noutput : list = [-7, -3, 3, 2, -7, 0]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(sub_n([2, -5, 4, 5, -1, -5],4),-2),24),-4))",
    "io_inp": [
      2,
      -5,
      4,
      5,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -3,
      3,
      2,
      -7,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(sub_n(input,4),-2),24),-4))"
  },
  {
    "input": "input : list = [-5, 4, -2, 0, -4, -5]\noutput : list = [-5, 4, -2, 0]",
    "output": "generated_output : list = take([-5, 4, -2, 0, -4, -5],4)",
    "io_inp": [
      -5,
      4,
      -2,
      0,
      -4,
      -5
    ],
    "io_out": [
      -5,
      4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [5, -4, -5, -4, 3]\noutput : list = [5, 3, -4, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([5, -4, -5, -4, 3]))",
    "io_inp": [
      5,
      -4,
      -5,
      -4,
      3
    ],
    "io_out": [
      5,
      3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [-9, -9, -12]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n([-5, -4, -4],3),-3),7))",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(input,3),-3),7))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse([-3, -3])),-2),-4))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse(input)),-2),-4))"
  },
  {
    "input": "input : list = [-2, 5, 5, -3, 3]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(drop(sort_des(sort_des([-2, 5, 5, -3, 3])),2)))",
    "io_inp": [
      -2,
      5,
      5,
      -3,
      3
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(sort_des(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [3, 3, -2, -4, 4, -4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 3, -2, -4, 4, -4],1)",
    "io_inp": [
      3,
      3,
      -2,
      -4,
      4,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [1, 3, -1]",
    "output": "generated_output : list = mul_n([1, 3, -1],1)",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      1,
      3,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(add_n([4, -1, 3],5),-3),19),1))",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(add_n(input,5),-3),19),1))"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [-4, -12, -16]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_des([3, 1, 4]),-4),11)))",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      -4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_des(input),-4),11)))"
  },
  {
    "input": "input : list = [5, 1, -4, -3, 2]\noutput : list = [11, 8, 7, 3, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(add_n([5, 1, -4, -3, 2],4))),3),-5)",
    "io_inp": [
      5,
      1,
      -4,
      -3,
      2
    ],
    "io_out": [
      11,
      8,
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(add_n(input,4))),3),-5)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [16, 4]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(mul_n([4, 0],3)),-1),23),-3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      16,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(mul_n(input,3)),-1),23),-3)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [-3, 0, 3]",
    "output": "generated_output : list = sort_asc([3, -3, 0])",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [45, 45, 0]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sort_asc([5, 5, -4]),4),5)))",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      45,
      45,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sort_asc(input),4),5)))"
  },
  {
    "input": "input : list = [4, 4, -3, 2, 1]\noutput : list = [6, -1, -1]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(take([4, 4, -3, 2, 1],3)),-3),-1),29)",
    "io_inp": [
      4,
      4,
      -3,
      2,
      1
    ],
    "io_out": [
      6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(take(input,3)),-3),-1),29)"
  },
  {
    "input": "input : list = [5, -2, 3, -3, 4, 2]\noutput : list = [-2, 3, -3, 4, 2]",
    "output": "generated_output : list = drop([5, -2, 3, -3, 4, 2],1)",
    "io_inp": [
      5,
      -2,
      3,
      -3,
      4,
      2
    ],
    "io_out": [
      -2,
      3,
      -3,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_des([-5, -2]))),-2),4)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_des(input))),-2),4)"
  },
  {
    "input": "input : list = [-1, -5, 0, -5]\noutput : list = [0, -1, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des([-1, -5, 0, -5]))",
    "io_inp": [
      -1,
      -5,
      0,
      -5
    ],
    "io_out": [
      0,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, 2, -1, 2, -2]\noutput : list = [-10, -8, -4, -2, -2]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc([1, 2, -1, 2, -2]),1),-3),2)",
    "io_inp": [
      1,
      2,
      -1,
      2,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(input),1),-3),2)"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(drop(sub_n([1, 1, -4],-3),2))),-5)",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(drop(sub_n(input,-3),2))),-5)"
  },
  {
    "input": "input : list = [2, -1, 3, 4]\noutput : list = [4, 3, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, 3, 4])",
    "io_inp": [
      2,
      -1,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des([0, 3])",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-8, 52]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n([3, 0],-5)),2),-4))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -8,
      52
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n(input,-5)),2),-4))"
  },
  {
    "input": "input : list = [4, -1, -4, -3, -1, -4]\noutput : list = [-3, -1, -4]",
    "output": "generated_output : list = take(drop([4, -1, -4, -3, -1, -4],3),26)",
    "io_inp": [
      4,
      -1,
      -4,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(input,3),26)"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-5, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([-3, -5, 0])))",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, -1, 4]\noutput : list = [0, 0, -25]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(sub_n([-1, -1, 4],-1),-5),4)))",
    "io_inp": [
      -1,
      -1,
      4
    ],
    "io_out": [
      0,
      0,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(sub_n(input,-1),-5),4)))"
  },
  {
    "input": "input : list = [3, -3, 5, 2]\noutput : list = [6, 0]",
    "output": "generated_output : list = sort_des(take(sub_n(take([3, -3, 5, 2],2),-3),19))",
    "io_inp": [
      3,
      -3,
      5,
      2
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(input,2),-3),19))"
  },
  {
    "input": "input : list = [-3, -2, -1, -5, -2]\noutput : list = [-2, -1, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_des([-3, -2, -1, -5, -2]),-1)),3))",
    "io_inp": [
      -3,
      -2,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_des(input),-1)),3))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-20, -10]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_des(sort_asc([2, 4])),22)),-5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_des(sort_asc(input)),22)),-5)"
  },
  {
    "input": "input : list = [-4, -3, 0]\noutput : list = [-2, -8, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(sort_asc([-4, -3, 0]),1)),2))",
    "io_inp": [
      -4,
      -3,
      0
    ],
    "io_out": [
      -2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(sort_asc(input),1)),2))"
  },
  {
    "input": "input : list = [-4, -1, 3, -2, 5]\noutput : list = [5, -2, 3, -1, -4]",
    "output": "generated_output : list = reverse([-4, -1, 3, -2, 5])",
    "io_inp": [
      -4,
      -1,
      3,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, 4, -2, -4, -5]\noutput : list = [-3, -2, -1, 0, 6, 7]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(add_n([5, -3, 4, -2, -4, -5],-1)),-3),40))",
    "io_inp": [
      5,
      -3,
      4,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(add_n(input,-1)),-3),40))"
  },
  {
    "input": "input : list = [3, 2, -3, -2, 1]\noutput : list = [4, 9, 10]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(take([3, 2, -3, -2, 1],3)),2)),-5)",
    "io_inp": [
      3,
      2,
      -3,
      -2,
      1
    ],
    "io_out": [
      4,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(take(input,3)),2)),-5)"
  },
  {
    "input": "input : list = [0, -5, -5, -5]\noutput : list = [4, -1, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(sort_asc([0, -5, -5, -5]))),-4))",
    "io_inp": [
      0,
      -5,
      -5,
      -5
    ],
    "io_out": [
      4,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [-1, -1, 4, 0]\noutput : list = [-5, -5, 20, 0]",
    "output": "generated_output : list = mul_n([-1, -1, 4, 0],5)",
    "io_inp": [
      -1,
      -1,
      4,
      0
    ],
    "io_out": [
      -5,
      -5,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, 5, 5, -1]\noutput : list = [-1, -1, 5, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, 5, -1])",
    "io_inp": [
      -1,
      5,
      5,
      -1
    ],
    "io_out": [
      -1,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2, -4]\noutput : list = [12]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(take([3, 2, -4],1)),5),-4))",
    "io_inp": [
      3,
      2,
      -4
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(take(input,1)),5),-4))"
  },
  {
    "input": "input : list = [2, -1, 5, -5, 4, 1]\noutput : list = [16, 12, 4, 0, -8, -24]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(mul_n([2, -1, 5, -5, 4, 1],1),4),4)),55)",
    "io_inp": [
      2,
      -1,
      5,
      -5,
      4,
      1
    ],
    "io_out": [
      16,
      12,
      4,
      0,
      -8,
      -24
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(mul_n(input,1),4),4)),55)"
  },
  {
    "input": "input : list = [1, 4, -1, -1, 1, -4]\noutput : list = [4, 1, 1, -1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des([1, 4, -1, -1, 1, -4]))",
    "io_inp": [
      1,
      4,
      -1,
      -1,
      1,
      -4
    ],
    "io_out": [
      4,
      1,
      1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -2, 3]\noutput : list = [72, 0, -120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_asc([-5, -2, 3]),2),-4),3),2)",
    "io_inp": [
      -5,
      -2,
      3
    ],
    "io_out": [
      72,
      0,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_asc(input),2),-4),3),2)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [8, 4, -8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sort_des([2, -2, 1])),-4)),-1)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      8,
      4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sort_des(input)),-4)),-1)"
  },
  {
    "input": "input : list = [0, 3, 3]\noutput : list = [23, 23]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(add_n(drop([0, 3, 3],1),1)),5),3)",
    "io_inp": [
      0,
      3,
      3
    ],
    "io_out": [
      23,
      23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(add_n(drop(input,1),1)),5),3)"
  },
  {
    "input": "input : list = [0, -2, 0, 0]\noutput : list = [-5, -3, -3, -3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_des([0, -2, 0, 0])),1)),4)",
    "io_inp": [
      0,
      -2,
      0,
      0
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_des(input)),1)),4)"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [21, 16, -4]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sub_n([0, 1, 5],4))),-5),1)",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      21,
      16,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sub_n(input,4))),-5),1)"
  },
  {
    "input": "input : list = [1, 1, 3, 4]\noutput : list = [-5, -5, -15, -20]",
    "output": "generated_output : list = mul_n([1, 1, 3, 4],-5)",
    "io_inp": [
      1,
      1,
      3,
      4
    ],
    "io_out": [
      -5,
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, -4, -2, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(drop([0, -4, -2, 0, 3],3))),13))",
    "io_inp": [
      0,
      -4,
      -2,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(drop(input,3))),13))"
  },
  {
    "input": "input : list = [4, -3, 3, -5, -1]\noutput : list = [-30, 5, -25, 15, -5]",
    "output": "generated_output : list = mul_n(take(add_n([4, -3, 3, -5, -1],2),14),-5)",
    "io_inp": [
      4,
      -3,
      3,
      -5,
      -1
    ],
    "io_out": [
      -30,
      5,
      -25,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,2),14),-5)"
  },
  {
    "input": "input : list = [-5, 4, -3, 3, -1, -3]\noutput : list = [25, 22, 10, 4, 4, -2]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(mul_n([-5, 4, -3, 3, -1, -3],3)),4),-4),5)",
    "io_inp": [
      -5,
      4,
      -3,
      3,
      -1,
      -3
    ],
    "io_out": [
      25,
      22,
      10,
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(mul_n(input,3)),4),-4),5)"
  },
  {
    "input": "input : list = [0, 5, -1]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 5, -1],1)",
    "io_inp": [
      0,
      5,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -2, -3, 0, 5]\noutput : list = [540, 480, 240, 120, 60]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n([4, -2, -3, 0, 5],-4),-5)),-3),4)",
    "io_inp": [
      4,
      -2,
      -3,
      0,
      5
    ],
    "io_out": [
      540,
      480,
      240,
      120,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n(input,-4),-5)),-3),4)"
  },
  {
    "input": "input : list = [-5, 1, -5, 3, -1, 1]\noutput : list = [11, 9, 9]",
    "output": "generated_output : list = take(sort_des(add_n(take(add_n([-5, 1, -5, 3, -1, 1],4),20),4)),3)",
    "io_inp": [
      -5,
      1,
      -5,
      3,
      -1,
      1
    ],
    "io_out": [
      11,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(add_n(input,4),20),4)),3)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [1, 7, 0]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(reverse([-4, 3, -3]),4))),1)",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      1,
      7,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(reverse(input),4))),1)"
  },
  {
    "input": "input : list = [-4, -4, 2, 0]\noutput : list = [3, -1, -9, -9]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(mul_n([-4, -4, 2, 0],2))),5),4)",
    "io_inp": [
      -4,
      -4,
      2,
      0
    ],
    "io_out": [
      3,
      -1,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(mul_n(input,2))),5),4)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-6, 0]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(sort_des([2, 0])),-3)),2)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(sort_des(input)),-3)),2)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sub_n(drop([4, -4, -1],1),1)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [4, 2, 4, 5]\noutput : list = [9, 8, 6, 8]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(add_n([4, 2, 4, 5],4),2)),2),19)",
    "io_inp": [
      4,
      2,
      4,
      5
    ],
    "io_out": [
      9,
      8,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(add_n(input,4),2)),2),19)"
  },
  {
    "input": "input : list = [-1, 4, 4, -3, -1]\noutput : list = [-10, -10, 4, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(reverse([-1, 4, 4, -3, -1]),4)),1),-2)",
    "io_inp": [
      -1,
      4,
      4,
      -3,
      -1
    ],
    "io_out": [
      -10,
      -10,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(reverse(input),4)),1),-2)"
  },
  {
    "input": "input : list = [2, -3, -4, 4, -3, -5]\noutput : list = [15, 9, -12]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(reverse([2, -3, -4, 4, -3, -5]),3)),-3))",
    "io_inp": [
      2,
      -3,
      -4,
      4,
      -3,
      -5
    ],
    "io_out": [
      15,
      9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(reverse(input),3)),-3))"
  },
  {
    "input": "input : list = [-5, -4, 5, -1, 4]\noutput : list = [8, 3, 9, 0, -1]",
    "output": "generated_output : list = add_n(take(sub_n(reverse([-5, -4, 5, -1, 4]),-3),16),1)",
    "io_inp": [
      -5,
      -4,
      5,
      -1,
      4
    ],
    "io_out": [
      8,
      3,
      9,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(input),-3),16),1)"
  },
  {
    "input": "input : list = [-2, 1, -1, 4, -4]\noutput : list = [4, 1, -1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(sort_des([-2, 1, -1, 4, -4]),25),15)))",
    "io_inp": [
      -2,
      1,
      -1,
      4,
      -4
    ],
    "io_out": [
      4,
      1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(sort_des(input),25),15)))"
  },
  {
    "input": "input : list = [-3, -5, 2, 4]\noutput : list = [10, 8, 3, 1]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sub_n([-3, -5, 2, 4],-5),22),3)),4)",
    "io_inp": [
      -3,
      -5,
      2,
      4
    ],
    "io_out": [
      10,
      8,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sub_n(input,-5),22),3)),4)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take([4, 0, -1],1),3)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [-9, -5, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(sub_n([-4, 0, 3],-1),1))),5)",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      -9,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(sub_n(input,-1),1))),5)"
  },
  {
    "input": "input : list = [-4, 1, -2, -2, -4]\noutput : list = [-2, 3, 0, 0, -2]",
    "output": "generated_output : list = sub_n(add_n([-4, 1, -2, -2, -4],4),2)",
    "io_inp": [
      -4,
      1,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -2,
      3,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),2)"
  },
  {
    "input": "input : list = [5, -1, 3, -5]\noutput : list = [-5, -1, 3, 5]",
    "output": "generated_output : list = sort_asc([5, -1, 3, -5])",
    "io_inp": [
      5,
      -1,
      3,
      -5
    ],
    "io_out": [
      -5,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, -3, 2, -2]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(drop(mul_n(add_n([4, 5, -3, 2, -2],3),-5),4),-1)",
    "io_inp": [
      4,
      5,
      -3,
      2,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(mul_n(add_n(input,3),-5),4),-1)"
  },
  {
    "input": "input : list = [-5, -4, -2, 2, 5]\noutput : list = [5, 2, -2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-5, -4, -2, 2, 5])))",
    "io_inp": [
      -5,
      -4,
      -2,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [4, 2, -5, -1]\noutput : list = [4]",
    "output": "generated_output : list = take(take([4, 2, -5, -1],1),19)",
    "io_inp": [
      4,
      2,
      -5,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(input,1),19)"
  },
  {
    "input": "input : list = [3, -3, 1, 3]\noutput : list = [-3, 1, 3, 3]",
    "output": "generated_output : list = take(sort_asc([3, -3, 1, 3]),16)",
    "io_inp": [
      3,
      -3,
      1,
      3
    ],
    "io_out": [
      -3,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),16)"
  },
  {
    "input": "input : list = [1, 0, 4, 1]\noutput : list = [6, 4, 12, 6]",
    "output": "generated_output : list = sub_n(mul_n([1, 0, 4, 1],2),-4)",
    "io_inp": [
      1,
      0,
      4,
      1
    ],
    "io_out": [
      6,
      4,
      12,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-4)"
  },
  {
    "input": "input : list = [2, 2, 4, 0, -5]\noutput : list = [5, 5, 3, -2]",
    "output": "generated_output : list = sort_des(drop(sort_des(sort_asc(add_n([2, 2, 4, 0, -5],3))),1))",
    "io_inp": [
      2,
      2,
      4,
      0,
      -5
    ],
    "io_out": [
      5,
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(sort_asc(add_n(input,3))),1))"
  },
  {
    "input": "input : list = [-4, -5, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(take([-4, -5, 4],1)))),21)",
    "io_inp": [
      -4,
      -5,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(take(input,1)))),21)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [15, -15]",
    "output": "generated_output : list = mul_n(drop([0, 3, -3],1),5)",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [0, -1]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(add_n([4, 5],-2),-3))),1)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(add_n(input,-2),-3))),1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-11, -13]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(sort_des([-3, -5])),3),5),30)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -11,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(sort_des(input)),3),5),30)"
  },
  {
    "input": "input : list = [-4, 1, 0, 2]\noutput : list = [2, 1, 0, -4]",
    "output": "generated_output : list = sort_des([-4, 1, 0, 2])",
    "io_inp": [
      -4,
      1,
      0,
      2
    ],
    "io_out": [
      2,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, 3]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = sort_asc(sub_n([-2, 3, 3],1))",
    "io_inp": [
      -2,
      3,
      3
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-3, 4, -5, 4]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(drop(add_n(sort_des(add_n([-3, 4, -5, 4],3)),1),2))",
    "io_inp": [
      -3,
      4,
      -5,
      4
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(sort_des(add_n(input,3)),1),2))"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [-240, -60, 300]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(mul_n([5, -4, -1],3)),5)),4)",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      -240,
      -60,
      300
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(mul_n(input,3)),5)),4)"
  },
  {
    "input": "input : list = [0, 5, 2, 2]\noutput : list = [-4, 8, 8, 16]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sort_des([0, 5, 2, 2]),5),-1),23),-4)",
    "io_inp": [
      0,
      5,
      2,
      2
    ],
    "io_out": [
      -4,
      8,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sort_des(input),5),-1),23),-4)"
  },
  {
    "input": "input : list = [-5, -1, 1, -2]\noutput : list = [-5, -8]",
    "output": "generated_output : list = drop(sort_des(take(add_n(sort_des([-5, -1, 1, -2]),-3),33)),2)",
    "io_inp": [
      -5,
      -1,
      1,
      -2
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = drop(sort_des(take(add_n(sort_des(input),-3),33)),2)"
  },
  {
    "input": "input : list = [-1, -1, -5, 1, 2]\noutput : list = [2, 1, -1, -1, -5]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(reverse([-1, -1, -5, 1, 2])))))",
    "io_inp": [
      -1,
      -1,
      -5,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-1, -5])))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-3, 1, 5, -5, 1]\noutput : list = [65, -295, 305, 65, -175]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(mul_n([-3, 1, 5, -5, 1],-5),3)),-4),-5)",
    "io_inp": [
      -3,
      1,
      5,
      -5,
      1
    ],
    "io_out": [
      65,
      -295,
      305,
      65,
      -175
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(mul_n(input,-5),3)),-4),-5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-120, -120]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_des(mul_n([-3, -3],2)),-5),-4),43)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -120,
      -120
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_des(mul_n(input,2)),-5),-4),43)"
  },
  {
    "input": "input : list = [5, 1, -1, -2, 5]\noutput : list = [5, -2, -1, 1, 5]",
    "output": "generated_output : list = reverse([5, 1, -1, -2, 5])",
    "io_inp": [
      5,
      1,
      -1,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, -4, 0, -1]\noutput : list = [-1, -4, -4, -5, -5]",
    "output": "generated_output : list = take(take(sub_n(sort_des(mul_n([0, -1, -4, 0, -1],-1)),5),29),30)",
    "io_inp": [
      0,
      -1,
      -4,
      0,
      -1
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(mul_n(input,-1)),5),29),30)"
  },
  {
    "input": "input : list = [3, 0, 0, -1, -5]\noutput : list = [12, 0, 0, -4, -20]",
    "output": "generated_output : list = mul_n([3, 0, 0, -1, -5],4)",
    "io_inp": [
      3,
      0,
      0,
      -1,
      -5
    ],
    "io_out": [
      12,
      0,
      0,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, 4, 2, 3, 1]\noutput : list = [0, 1, 2, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_des([5, 4, 2, 3, 1]),5))),-4)",
    "io_inp": [
      5,
      4,
      2,
      3,
      1
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_des(input),5))),-4)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-12, 2]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(reverse([-2, 5]),4),2),8))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -12,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(reverse(input),4),2),8))"
  },
  {
    "input": "input : list = [3, -3, -2, 0, 3, -2]\noutput : list = [3, 3, 0, -2, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse([3, -3, -2, 0, 3, -2]))))",
    "io_inp": [
      3,
      -3,
      -2,
      0,
      3,
      -2
    ],
    "io_out": [
      3,
      3,
      0,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [3, 4, -2, 2]\noutput : list = [-4]",
    "output": "generated_output : list = drop(sort_des(sub_n(drop([3, 4, -2, 2],1),2)),2)",
    "io_inp": [
      3,
      4,
      -2,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(drop(input,1),2)),2)"
  },
  {
    "input": "input : list = [5, 1, -2, 2]\noutput : list = [1, -3, 0, 4]",
    "output": "generated_output : list = reverse(add_n(add_n([5, 1, -2, 2],2),-3))",
    "io_inp": [
      5,
      1,
      -2,
      2
    ],
    "io_out": [
      1,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,2),-3))"
  },
  {
    "input": "input : list = [-1, -3, 2, 5, -5, 3]\noutput : list = [3, -5, 5, 2, -3, -1]",
    "output": "generated_output : list = reverse([-1, -3, 2, 5, -5, 3])",
    "io_inp": [
      -1,
      -3,
      2,
      5,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      5,
      2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 1, -1, 1, -4, 4]\noutput : list = [0, 3, 3, 5, 5, 8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(sort_asc([-1, 1, -1, 1, -4, 4])),-5),1))",
    "io_inp": [
      -1,
      1,
      -1,
      1,
      -4,
      4
    ],
    "io_out": [
      0,
      3,
      3,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(sort_asc(input)),-5),1))"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = drop([-5, 1, -2],1)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 2, -3, 3, -3]\noutput : list = [-96, -71, -71, 54, 79]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(mul_n([-4, 2, -3, 3, -3],5),11),5),4))",
    "io_inp": [
      -4,
      2,
      -3,
      3,
      -3
    ],
    "io_out": [
      -96,
      -71,
      -71,
      54,
      79
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(mul_n(input,5),11),5),4))"
  },
  {
    "input": "input : list = [0, 0, -5, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = take([0, 0, -5, 3],2)",
    "io_inp": [
      0,
      0,
      -5,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, 5, 4, 5, 1]\noutput : list = [4, 9, 8, 9, 5]",
    "output": "generated_output : list = add_n([0, 5, 4, 5, 1],4)",
    "io_inp": [
      0,
      5,
      4,
      5,
      1
    ],
    "io_out": [
      4,
      9,
      8,
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 2, -5, 3, 0, 0]\noutput : list = [6, 3, 3]",
    "output": "generated_output : list = sort_des(take(take(add_n(drop([0, 2, -5, 3, 0, 0],3),3),5),37))",
    "io_inp": [
      0,
      2,
      -5,
      3,
      0,
      0
    ],
    "io_out": [
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(drop(input,3),3),5),37))"
  },
  {
    "input": "input : list = [-3, 4, 2, -1, 2, 4]\noutput : list = [33, -51, -27, 9, -27, -51]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(sub_n([-3, 4, 2, -1, 2, 4],-1),-2),4),-5),-3)",
    "io_inp": [
      -3,
      4,
      2,
      -1,
      2,
      4
    ],
    "io_out": [
      33,
      -51,
      -27,
      9,
      -27,
      -51
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(sub_n(input,-1),-2),4),-5),-3)"
  },
  {
    "input": "input : list = [2, -1, 2, -1, 4]\noutput : list = [4, 2, 2, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc([2, -1, 2, -1, 4])),19)))",
    "io_inp": [
      2,
      -1,
      2,
      -1,
      4
    ],
    "io_out": [
      4,
      2,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc(input)),19)))"
  },
  {
    "input": "input : list = [2, 2, -5, -3]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(take([2, 2, -5, -3],1)))),1)",
    "io_inp": [
      2,
      2,
      -5,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(take(input,1)))),1)"
  },
  {
    "input": "input : list = [-5, -2, -2]\noutput : list = [-4, -4, -13]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(reverse([-5, -2, -2])),3),2))",
    "io_inp": [
      -5,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(reverse(input)),3),2))"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [-14, -20, -32]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(sub_n([0, -4, 2],5),3)),5))",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      -14,
      -20,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(sub_n(input,5),3)),5))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-8, -8]",
    "output": "generated_output : list = take(add_n([-5, -5],-3),9)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),9)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-20, -4, -4]",
    "output": "generated_output : list = mul_n(add_n(sort_des([-3, -3, 1]),4),-4)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -20,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),4),-4)"
  },
  {
    "input": "input : list = [-4, 4, 3, 3]\noutput : list = [16, 12, 12, -16]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sort_asc([-4, 4, 3, 3])))),4)",
    "io_inp": [
      -4,
      4,
      3,
      3
    ],
    "io_out": [
      16,
      12,
      12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [5, -1, -1, -4, 2, 2]\noutput : list = [1, -2, -2, -5, -5, -8]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(sub_n([5, -1, -1, -4, 2, 2],4)))))",
    "io_inp": [
      5,
      -1,
      -1,
      -4,
      2,
      2
    ],
    "io_out": [
      1,
      -2,
      -2,
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [0, -1, 0, -1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take([0, -1, 0, -1],1),-1),4))",
    "io_inp": [
      0,
      -1,
      0,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(input,1),-1),4))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des([4, -2])",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, -4, 3, 3, -4]\noutput : list = [7, -3, 22, -13, -13, 22]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n([-1, 1, -4, 3, 3, -4],-5),1),1),-2)",
    "io_inp": [
      -1,
      1,
      -4,
      3,
      3,
      -4
    ],
    "io_out": [
      7,
      -3,
      22,
      -13,
      -13,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(input,-5),1),1),-2)"
  },
  {
    "input": "input : list = [-1, -5, 1, -5, 0]\noutput : list = [15, 12, 9, -3, -3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sort_des([-1, -5, 1, -5, 0])),-4),3))",
    "io_inp": [
      -1,
      -5,
      1,
      -5,
      0
    ],
    "io_out": [
      15,
      12,
      9,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sort_des(input)),-4),3))"
  },
  {
    "input": "input : list = [2, 5, -4, -3, -5]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take([2, 5, -4, -3, -5],1))",
    "io_inp": [
      2,
      5,
      -4,
      -3,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [-11, 13, 16]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(sort_asc([3, -5, 4]),1),3),1))",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      -11,
      13,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(sort_asc(input),1),3),1))"
  },
  {
    "input": "input : list = [-4, 3, 4, -2]\noutput : list = [16, 12, 2, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sub_n([-4, 3, 4, -2],4)))),-2)",
    "io_inp": [
      -4,
      3,
      4,
      -2
    ],
    "io_out": [
      16,
      12,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sub_n(input,4)))),-2)"
  },
  {
    "input": "input : list = [-4, 3, -2, -5, 0]\noutput : list = [-7, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(take([-4, 3, -2, -5, 0],2),2),-4),3))",
    "io_inp": [
      -4,
      3,
      -2,
      -5,
      0
    ],
    "io_out": [
      -7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(take(input,2),2),-4),3))"
  },
  {
    "input": "input : list = [-1, 3, 2, 3, 2, 5]\noutput : list = [10, 6, 6]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(sort_asc([-1, 3, 2, 3, 2, 5]),2)),3))",
    "io_inp": [
      -1,
      3,
      2,
      3,
      2,
      5
    ],
    "io_out": [
      10,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(sort_asc(input),2)),3))"
  },
  {
    "input": "input : list = [-2, -4, -5, -5, -4, 1]\noutput : list = [-5, -5, -4, -4, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -4, -5, -5, -4, 1]))",
    "io_inp": [
      -2,
      -4,
      -5,
      -5,
      -4,
      1
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -2, -2, 4, -1, -2]\noutput : list = [10, 10, -8, 7, 10]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(drop([-4, -2, -2, 4, -1, -2],1),3),1),-5),-1)",
    "io_inp": [
      -4,
      -2,
      -2,
      4,
      -1,
      -2
    ],
    "io_out": [
      10,
      10,
      -8,
      7,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(drop(input,1),3),1),-5),-1)"
  },
  {
    "input": "input : list = [0, -1, -4, -1]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(sort_des([0, -1, -4, -1]))),1))",
    "io_inp": [
      0,
      -1,
      -4,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-1, -1, 4, 5]\noutput : list = [3, 3, -12, -15]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(mul_n([-1, -1, 4, 5],-1))),19),3)",
    "io_inp": [
      -1,
      -1,
      4,
      5
    ],
    "io_out": [
      3,
      3,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(mul_n(input,-1))),19),3)"
  },
  {
    "input": "input : list = [5, 2, 3, -2]\noutput : list = [4, 1, 2, -3]",
    "output": "generated_output : list = add_n([5, 2, 3, -2],-1)",
    "io_inp": [
      5,
      2,
      3,
      -2
    ],
    "io_out": [
      4,
      1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 2, -1, 4]\noutput : list = [16, -4, 8, 8]",
    "output": "generated_output : list = take(add_n(reverse(add_n(mul_n([2, 2, -1, 4],4),2)),-2),14)",
    "io_inp": [
      2,
      2,
      -1,
      4
    ],
    "io_out": [
      16,
      -4,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(mul_n(input,4),2)),-2),14)"
  },
  {
    "input": "input : list = [5, 1, -1, -1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 1, -1, -1],1)",
    "io_inp": [
      5,
      1,
      -1,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [1, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_asc([4, -4, -2]),4)),3))",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_asc(input),4)),3))"
  },
  {
    "input": "input : list = [4, 3, 3, -5]\noutput : list = [5, 4, 4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([4, 3, 3, -5],-1)))",
    "io_inp": [
      4,
      3,
      3,
      -5
    ],
    "io_out": [
      5,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = reverse([5, 2, 1])",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [65, 40]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(add_n([3, -2],5),-5))),5)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      65,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(add_n(input,5),-5))),5)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(sub_n([-2, 0],3)),-3),1),2)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(sub_n(input,3)),-3),1),2)"
  },
  {
    "input": "input : list = [-5, -4, 1, -4, -5, 3]\noutput : list = [-5, -5, -4, -4, 1, 3]",
    "output": "generated_output : list = sort_asc([-5, -4, 1, -4, -5, 3])",
    "io_inp": [
      -5,
      -4,
      1,
      -4,
      -5,
      3
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, -5]\noutput : list = [-24]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(take([-2, 3, -5],1)),-3),-4))",
    "io_inp": [
      -2,
      3,
      -5
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(take(input,1)),-3),-4))"
  },
  {
    "input": "input : list = [1, -4, 2]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = take(sort_des([1, -4, 2]),18)",
    "io_inp": [
      1,
      -4,
      2
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),18)"
  },
  {
    "input": "input : list = [-4, 0, 0, 0]\noutput : list = [-10]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(take([-4, 0, 0, 0],1),4),2)))",
    "io_inp": [
      -4,
      0,
      0,
      0
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(take(input,1),4),2)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n(add_n([-4, -5],1),3),2),2),1)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(add_n(input,1),3),2),2),1)"
  },
  {
    "input": "input : list = [2, -1, -2, 4, 5]\noutput : list = [-7, -6, -1, 0]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(drop([2, -1, -2, 4, 5],1)),4),1),10)",
    "io_inp": [
      2,
      -1,
      -2,
      4,
      5
    ],
    "io_out": [
      -7,
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(drop(input,1)),4),1),10)"
  },
  {
    "input": "input : list = [5, 1, 3, 3, 5, -1]\noutput : list = [-2, 0, 2, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse([5, 1, 3, 3, 5, -1]),-1)))",
    "io_inp": [
      5,
      1,
      3,
      3,
      5,
      -1
    ],
    "io_out": [
      -2,
      0,
      2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(input),-1)))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [8, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(add_n([4, -2],-4),-2)),-1),5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(add_n(input,-4),-2)),-1),5)"
  },
  {
    "input": "input : list = [1, 2, 3, 3]\noutput : list = [6, 6, 5, 4]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(add_n([1, 2, 3, 3],-3),-5),-1)),14)",
    "io_inp": [
      1,
      2,
      3,
      3
    ],
    "io_out": [
      6,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(add_n(input,-3),-5),-1)),14)"
  },
  {
    "input": "input : list = [-1, -4, -1, -1, -4]\noutput : list = [2, 2, 2, -1, -1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(sort_asc([-1, -4, -1, -1, -4])),2),-5))",
    "io_inp": [
      -1,
      -4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      2,
      2,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(sort_asc(input)),2),-5))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-10, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([2, -3],-5)))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = reverse([-5, -5])",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 4, 2, 4, 1]\noutput : list = [4, 4, 2, 1, -1, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(reverse([-1, -1, 4, 2, 4, 1])))))",
    "io_inp": [
      -1,
      -1,
      4,
      2,
      4,
      1
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, -2, -4, 5, 0, 0]\noutput : list = [-5, 4, -1, -1]",
    "output": "generated_output : list = sub_n(add_n(drop(reverse(reverse([-4, -2, -4, 5, 0, 0])),2),3),4)",
    "io_inp": [
      -4,
      -2,
      -4,
      5,
      0,
      0
    ],
    "io_out": [
      -5,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(reverse(reverse(input)),2),3),4)"
  },
  {
    "input": "input : list = [0, 4, 2, -1, -1]\noutput : list = [1, -3, -7, -9, -9]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(mul_n([0, 4, 2, -1, -1],2),5)),2))",
    "io_inp": [
      0,
      4,
      2,
      -1,
      -1
    ],
    "io_out": [
      1,
      -3,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(mul_n(input,2),5)),2))"
  },
  {
    "input": "input : list = [-2, 2, 5, -2, -4]\noutput : list = [2, -1, -5, -5, -7]",
    "output": "generated_output : list = add_n(reverse(reverse(take(sort_des([-2, 2, 5, -2, -4]),22))),-3)",
    "io_inp": [
      -2,
      2,
      5,
      -2,
      -4
    ],
    "io_out": [
      2,
      -1,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(sort_des(input),22))),-3)"
  },
  {
    "input": "input : list = [3, -4, -2, 3]\noutput : list = [27, -18, -36, 27]",
    "output": "generated_output : list = reverse(mul_n(mul_n([3, -4, -2, 3],3),3))",
    "io_inp": [
      3,
      -4,
      -2,
      3
    ],
    "io_out": [
      27,
      -18,
      -36,
      27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,3),3))"
  },
  {
    "input": "input : list = [4, 1, -3, -3]\noutput : list = [-3, -3, 1, 4]",
    "output": "generated_output : list = sort_asc([4, 1, -3, -3])",
    "io_inp": [
      4,
      1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, 0, 0, 2, -5]\noutput : list = [10, 8, 4, 0, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n([-4, -2, 0, 0, 2, -5],-2))",
    "io_inp": [
      -4,
      -2,
      0,
      0,
      2,
      -5
    ],
    "io_out": [
      10,
      8,
      4,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [4, 6]",
    "output": "generated_output : list = add_n(take(sub_n(add_n([-1, 1],1),-1),20),3)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(input,1),-1),20),3)"
  },
  {
    "input": "input : list = [-5, 3, 2, -1, -3, 5]\noutput : list = [5, 3, 2, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(add_n([-5, 3, 2, -1, -3, 5],-5)),24),-5))",
    "io_inp": [
      -5,
      3,
      2,
      -1,
      -3,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(add_n(input,-5)),24),-5))"
  },
  {
    "input": "input : list = [5, -2, -4, 4, -2]\noutput : list = [6, 12, 4, 6, 13]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(add_n([5, -2, -4, 4, -2],3)),-5),1),16)",
    "io_inp": [
      5,
      -2,
      -4,
      4,
      -2
    ],
    "io_out": [
      6,
      12,
      4,
      6,
      13
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(add_n(input,3)),-5),1),16)"
  },
  {
    "input": "input : list = [0, -5, 5, 1, 3]\noutput : list = [55, 25, 85, -65, 10]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(add_n([0, -5, 5, 1, 3],-1)),-3),-5),-5)",
    "io_inp": [
      0,
      -5,
      5,
      1,
      3
    ],
    "io_out": [
      55,
      25,
      85,
      -65,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(add_n(input,-1)),-3),-5),-5)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [16, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(add_n([1, 0],-5),-1),4),32))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(add_n(input,-5),-1),4),32))"
  },
  {
    "input": "input : list = [-5, 2, -3, 0, 5]\noutput : list = [11, 8, 6, 3, 1]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sub_n([-5, 2, -3, 0, 5],-5)),2)),3)",
    "io_inp": [
      -5,
      2,
      -3,
      0,
      5
    ],
    "io_out": [
      11,
      8,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sub_n(input,-5)),2)),3)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-3, -7]",
    "output": "generated_output : list = add_n(sort_des([-5, -1]),-2)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [5, -5, 3]\noutput : list = [5, 3, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des([5, -5, 3])))",
    "io_inp": [
      5,
      -5,
      3
    ],
    "io_out": [
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [2, -3, -1, -2]\noutput : list = [-1, -6]",
    "output": "generated_output : list = reverse(reverse(add_n(take([2, -3, -1, -2],2),-3)))",
    "io_inp": [
      2,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(input,2),-3)))"
  },
  {
    "input": "input : list = [3, -4, -5, -4, -2, 2]\noutput : list = [9, 6, -6, -12, -12, -15]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(sort_asc([3, -4, -5, -4, -2, 2])),3)),26)",
    "io_inp": [
      3,
      -4,
      -5,
      -4,
      -2,
      2
    ],
    "io_out": [
      9,
      6,
      -6,
      -12,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(sort_asc(input)),3)),26)"
  },
  {
    "input": "input : list = [0, -4, -3, 1, -2, 2]\noutput : list = [2, 1, 0, -2, -3, -4]",
    "output": "generated_output : list = take(sort_des(mul_n(take(reverse([0, -4, -3, 1, -2, 2]),6),1)),54)",
    "io_inp": [
      0,
      -4,
      -3,
      1,
      -2,
      2
    ],
    "io_out": [
      2,
      1,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(reverse(input),6),1)),54)"
  },
  {
    "input": "input : list = [0, -5, -5, 3]\noutput : list = [-5, -5, 0, 3]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(sort_asc([0, -5, -5, 3])),1)),4)",
    "io_inp": [
      0,
      -5,
      -5,
      3
    ],
    "io_out": [
      -5,
      -5,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(sort_asc(input)),1)),4)"
  },
  {
    "input": "input : list = [-4, -1, 3, -1]\noutput : list = [6, -2, -2, -8]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([-4, -1, 3, -1]),2))",
    "io_inp": [
      -4,
      -1,
      3,
      -1
    ],
    "io_out": [
      6,
      -2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [-2, -4, 5, 3, 0, -4]\noutput : list = [-10, 4, 8]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(take([-2, -4, 5, 3, 0, -4],3))),-2))",
    "io_inp": [
      -2,
      -4,
      5,
      3,
      0,
      -4
    ],
    "io_out": [
      -10,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(take(input,3))),-2))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [25, 10]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(reverse([-5, -2]),4)),-5),15)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      25,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(reverse(input),4)),-5),15)"
  },
  {
    "input": "input : list = [4, 0, 2, -4, -2, 2]\noutput : list = [6, -2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(take([4, 0, 2, -4, -2, 2],2),1))),2)",
    "io_inp": [
      4,
      0,
      2,
      -4,
      -2,
      2
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(take(input,2),1))),2)"
  },
  {
    "input": "input : list = [2, 1, 3, 5, 3, 3]\noutput : list = [15, 15, 25, 15, 5, 10]",
    "output": "generated_output : list = mul_n(reverse([2, 1, 3, 5, 3, 3]),5)",
    "io_inp": [
      2,
      1,
      3,
      5,
      3,
      3
    ],
    "io_out": [
      15,
      15,
      25,
      15,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [12, 6, 4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(sort_asc([-2, -4, 4]),5)),-3))",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      12,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(sort_asc(input),5)),-3))"
  },
  {
    "input": "input : list = [5, -4, 3, -5, 4, 1]\noutput : list = [0, 4, 24, 32, 36, 40]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([5, -4, 3, -5, 4, 1],-5),4))",
    "io_inp": [
      5,
      -4,
      3,
      -5,
      4,
      1
    ],
    "io_out": [
      0,
      4,
      24,
      32,
      36,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-5),4))"
  },
  {
    "input": "input : list = [-4, 2, 5, -4, 0, -3]\noutput : list = [-8, -8, -7, -4, -2, 1]",
    "output": "generated_output : list = sort_asc(add_n([-4, 2, 5, -4, 0, -3],-4))",
    "io_inp": [
      -4,
      2,
      5,
      -4,
      0,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [5, -4, 4, -3, -2, 3]\noutput : list = [24, -12, 20, -8, -4, 16]",
    "output": "generated_output : list = add_n(mul_n(add_n([5, -4, 4, -3, -2, 3],2),4),-4)",
    "io_inp": [
      5,
      -4,
      4,
      -3,
      -2,
      3
    ],
    "io_out": [
      24,
      -12,
      20,
      -8,
      -4,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,2),4),-4)"
  },
  {
    "input": "input : list = [-3, 4, -4, -2, -1]\noutput : list = [-4, 1, 2, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sort_des([-3, 4, -4, -2, -1]),-1))))",
    "io_inp": [
      -3,
      4,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -4,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [-5, -3, -1, 5, -3]\noutput : list = [5, -1, -3, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(reverse([-5, -3, -1, 5, -3])),19)))",
    "io_inp": [
      -5,
      -3,
      -1,
      5,
      -3
    ],
    "io_out": [
      5,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(reverse(input)),19)))"
  },
  {
    "input": "input : list = [3, -1, -1, 2, 2]\noutput : list = [3, 2, 2, -1, -1]",
    "output": "generated_output : list = take(sort_des([3, -1, -1, 2, 2]),5)",
    "io_inp": [
      3,
      -1,
      -1,
      2,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),5)"
  },
  {
    "input": "input : list = [5, 0, 3, 5, 4]\noutput : list = [11, 6, 9, 11, 10]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(reverse([5, 0, 3, 5, 4]),3),-3)),49)",
    "io_inp": [
      5,
      0,
      3,
      5,
      4
    ],
    "io_out": [
      11,
      6,
      9,
      11,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(reverse(input),3),-3)),49)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [0, 0, -9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sort_des([5, 5, -4]),4),-4),2),3)",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      0,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sort_des(input),4),-4),2),3)"
  },
  {
    "input": "input : list = [2, 5, -4, 5, 2, -4]\noutput : list = [-5, 7, 13, -5, 13, 7]",
    "output": "generated_output : list = add_n(reverse(mul_n([2, 5, -4, 5, 2, -4],2)),3)",
    "io_inp": [
      2,
      5,
      -4,
      5,
      2,
      -4
    ],
    "io_out": [
      -5,
      7,
      13,
      -5,
      13,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,2)),3)"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(reverse(reverse(drop(sort_asc([2, 3, 3]),2))),-3)",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(drop(sort_asc(input),2))),-3)"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [-4, -2]",
    "output": "generated_output : list = add_n(drop([-1, -2, 0],1),-2)",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [5, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(drop([5, 0, -4],1)))",
    "io_inp": [
      5,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [3, -3, 9]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(mul_n([-3, 3, 0],2),3)),-1),24)",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      3,
      -3,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(mul_n(input,2),3)),-1),24)"
  },
  {
    "input": "input : list = [-4, 2, -5, 3, 5]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sort_asc([-4, 2, -5, 3, 5])),3),24))",
    "io_inp": [
      -4,
      2,
      -5,
      3,
      5
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sort_asc(input)),3),24))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(sort_des([3, 3]),4))))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-2, -2, -5, 0, 0, -3]\noutput : list = [0, 0, -2, -2, -3, -5]",
    "output": "generated_output : list = take(sort_des([-2, -2, -5, 0, 0, -3]),14)",
    "io_inp": [
      -2,
      -2,
      -5,
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      0,
      -2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [-3, -4, -4, -3]\noutput : list = [-5, -5, -6, -6]",
    "output": "generated_output : list = take(take(sort_des(take(add_n([-3, -4, -4, -3],-2),23)),42),11)",
    "io_inp": [
      -3,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(add_n(input,-2),23)),42),11)"
  },
  {
    "input": "input : list = [2, 1, -1]\noutput : list = [5, -5, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([2, 1, -1],-5)))",
    "io_inp": [
      2,
      1,
      -1
    ],
    "io_out": [
      5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [-2, 0, -5, -1]\noutput : list = [-2, 1, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n([-2, 0, -5, -1],4),-4)),3)",
    "io_inp": [
      -2,
      0,
      -5,
      -1
    ],
    "io_out": [
      -2,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(input,4),-4)),3)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [-9, -2, 0]",
    "output": "generated_output : list = take(reverse(take(add_n([4, 2, -5],-4),3)),19)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      -9,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(add_n(input,-4),3)),19)"
  },
  {
    "input": "input : list = [-3, 1, -2, -5, 4, 3]\noutput : list = [5, 6, -3, 0, 3, -1]",
    "output": "generated_output : list = take(take(take(reverse(add_n([-3, 1, -2, -5, 4, 3],2)),6),31),22)",
    "io_inp": [
      -3,
      1,
      -2,
      -5,
      4,
      3
    ],
    "io_out": [
      5,
      6,
      -3,
      0,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(add_n(input,2)),6),31),22)"
  },
  {
    "input": "input : list = [1, -1, -5, -4, 2]\noutput : list = [0, -6, -7, -3, -1]",
    "output": "generated_output : list = sub_n(reverse([1, -1, -5, -4, 2]),2)",
    "io_inp": [
      1,
      -1,
      -5,
      -4,
      2
    ],
    "io_out": [
      0,
      -6,
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-5, 1, -1, 2, 1]\noutput : list = [1, 2, -1, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, -1, 2, 1])",
    "io_inp": [
      -5,
      1,
      -1,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      -1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3, 2, 4, 2]\noutput : list = [5, 4, 3, 2, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(reverse([5, 3, 2, 4, 2]),10))))",
    "io_inp": [
      5,
      3,
      2,
      4,
      2
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(reverse(input),10))))"
  },
  {
    "input": "input : list = [-3, 3, 5, -5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take([-3, 3, 5, -5],2))))",
    "io_inp": [
      -3,
      3,
      5,
      -5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(input,2))))"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [5, 3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse([-5, -3, -1]),-1)))",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(input),-1)))"
  },
  {
    "input": "input : list = [-3, -1, -3, -3]\noutput : list = [0, 0, 2, 0]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(add_n([-3, -1, -3, -3],-1)))),4)",
    "io_inp": [
      -3,
      -1,
      -3,
      -3
    ],
    "io_out": [
      0,
      0,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(add_n(input,-1)))),4)"
  },
  {
    "input": "input : list = [-2, 5, 1, -3]\noutput : list = [25, 5, -10, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-2, 5, 1, -3],5)))",
    "io_inp": [
      -2,
      5,
      1,
      -3
    ],
    "io_out": [
      25,
      5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,5)))"
  },
  {
    "input": "input : list = [-2, 1, 4, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 1, 4, -5],1)",
    "io_inp": [
      -2,
      1,
      4,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [-26, -6, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(mul_n([-2, 4, 0],-5)),5)),1)",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      -26,
      -6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(mul_n(input,-5)),5)),1)"
  },
  {
    "input": "input : list = [3, -3, -4, -5, 1]\noutput : list = [5, -1, -2]",
    "output": "generated_output : list = add_n(take([3, -3, -4, -5, 1],3),2)",
    "io_inp": [
      3,
      -3,
      -4,
      -5,
      1
    ],
    "io_out": [
      5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),2)"
  },
  {
    "input": "input : list = [5, -5, 5, -4]\noutput : list = [-1, 9]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(take([5, -5, 5, -4],2)),4)),20)",
    "io_inp": [
      5,
      -5,
      5,
      -4
    ],
    "io_out": [
      -1,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(take(input,2)),4)),20)"
  },
  {
    "input": "input : list = [-2, -2, 2, -1]\noutput : list = [-6, 3, 6, 6]",
    "output": "generated_output : list = take(sort_asc(mul_n([-2, -2, 2, -1],-3)),29)",
    "io_inp": [
      -2,
      -2,
      2,
      -1
    ],
    "io_out": [
      -6,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-3)),29)"
  },
  {
    "input": "input : list = [-2, -2, 3, 0, 5, 3]\noutput : list = [1, 4, -1, -1]",
    "output": "generated_output : list = sub_n(drop(reverse([-2, -2, 3, 0, 5, 3]),2),-1)",
    "io_inp": [
      -2,
      -2,
      3,
      0,
      5,
      3
    ],
    "io_out": [
      1,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(input),2),-1)"
  },
  {
    "input": "input : list = [3, 5, 3, -1]\noutput : list = [-24, -8, -8, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([3, 5, 3, -1]),5),4)",
    "io_inp": [
      3,
      5,
      3,
      -1
    ],
    "io_out": [
      -24,
      -8,
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),5),4)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(add_n([-4, -1],3),2))),22)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(add_n(input,3),2))),22)"
  },
  {
    "input": "input : list = [5, -1, 2, -2, -5]\noutput : list = [5, 2, -1, -2, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(reverse([5, -1, 2, -2, -5])))))",
    "io_inp": [
      5,
      -1,
      2,
      -2,
      -5
    ],
    "io_out": [
      5,
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 1, 4, 2, -2]\noutput : list = [4, 0, -12, -16, -24]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(sort_des([-3, 1, 4, 2, -2]),2),14)),-4)",
    "io_inp": [
      -3,
      1,
      4,
      2,
      -2
    ],
    "io_out": [
      4,
      0,
      -12,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(sort_des(input),2),14)),-4)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [6]",
    "output": "generated_output : list = reverse(sub_n(drop(sort_asc(reverse([-4, -3, 4])),2),-2))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(sort_asc(reverse(input)),2),-2))"
  },
  {
    "input": "input : list = [-1, -1, 2, 4, 4, -2]\noutput : list = [-6, -6, -4, -1, -1, 0]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(sub_n([-1, -1, 2, 4, 4, -2],-2)),9)),-1)",
    "io_inp": [
      -1,
      -1,
      2,
      4,
      4,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -4,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(sub_n(input,-2)),9)),-1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [2, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(reverse([-5, -1])),-2)),31)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      2,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(reverse(input)),-2)),31)"
  },
  {
    "input": "input : list = [-4, 1, 1, -3]\noutput : list = [-1, -1, -13, -16]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse([-4, 1, 1, -3]),3),4)))",
    "io_inp": [
      -4,
      1,
      1,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -13,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse(input),3),4)))"
  },
  {
    "input": "input : list = [0, 2, 2, 2, -3]\noutput : list = [-5, -2, 0, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n([0, 2, 2, 2, -3],-2))",
    "io_inp": [
      0,
      2,
      2,
      2,
      -3
    ],
    "io_out": [
      -5,
      -2,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [0, 1, -2, 2]\noutput : list = [5, 8, 9]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(drop([0, 1, -2, 2],1)),5),2))",
    "io_inp": [
      0,
      1,
      -2,
      2
    ],
    "io_out": [
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(drop(input,1)),5),2))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [6, 1]",
    "output": "generated_output : list = take(sort_des(take(add_n(sort_asc([3, -2]),3),12)),43)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(sort_asc(input),3),12)),43)"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(reverse([-3, -4, 5])))))",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [0, -5, 3]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc(take([0, -5, 3],1))),2))",
    "io_inp": [
      0,
      -5,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(take(input,1))),2))"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [1, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([1, 4, 1]))",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [2, 10]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(sort_asc([-1, -5]),-2)),16))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(sort_asc(input),-2)),16))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-27, -51]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(add_n([3, 1],1),4),-3)),3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -27,
      -51
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(add_n(input,1),4),-3)),3)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [4, 4]",
    "output": "generated_output : list = add_n(add_n([5, 5],-5),4)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),4)"
  },
  {
    "input": "input : list = [-2, -1, -2, 3]\noutput : list = [4, 4, 5, 9]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(add_n([-2, -1, -2, 3],2)),-4)),15)",
    "io_inp": [
      -2,
      -1,
      -2,
      3
    ],
    "io_out": [
      4,
      4,
      5,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(add_n(input,2)),-4)),15)"
  },
  {
    "input": "input : list = [4, 4, 2, -4, 0, 3]\noutput : list = [-3, -3, -6, -9, -15, -27]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_des([4, 4, 2, -4, 0, 3]))),5),3)",
    "io_inp": [
      4,
      4,
      2,
      -4,
      0,
      3
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -9,
      -15,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_des(input))),5),3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [2, 12]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(mul_n([-1, 4],2))),1),-3)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      2,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(mul_n(input,2))),1),-3)"
  },
  {
    "input": "input : list = [0, 2, -4, 5, 1, 4]\noutput : list = [-4, 0, 1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 2, -4, 5, 1, 4])",
    "io_inp": [
      0,
      2,
      -4,
      5,
      1,
      4
    ],
    "io_out": [
      -4,
      0,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 2, 2, 1, -3]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(drop([4, 2, 2, 1, -3],3))),-2))",
    "io_inp": [
      4,
      2,
      2,
      1,
      -3
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(drop(input,3))),-2))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n([-2, -2],-2),5),5))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(input,-2),5),5))"
  },
  {
    "input": "input : list = [-5, 1, -4, -3, 2, 5]\noutput : list = [72, 36, 24, -24, -36, -48]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sub_n([-5, 1, -4, -3, 2, 5],-1),-4))),-3)",
    "io_inp": [
      -5,
      1,
      -4,
      -3,
      2,
      5
    ],
    "io_out": [
      72,
      36,
      24,
      -24,
      -36,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sub_n(input,-1),-4))),-3)"
  },
  {
    "input": "input : list = [-3, -3, 2, -3, 0, -4]\noutput : list = [-3, -3]",
    "output": "generated_output : list = take([-3, -3, 2, -3, 0, -4],2)",
    "io_inp": [
      -3,
      -3,
      2,
      -3,
      0,
      -4
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 2, 1, -5, 0, -1]\noutput : list = [-4, 0, 0, 1, 2, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(sort_asc([-1, 2, 1, -5, 0, -1])),2)),-1)",
    "io_inp": [
      -1,
      2,
      1,
      -5,
      0,
      -1
    ],
    "io_out": [
      -4,
      0,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(sort_asc(input)),2)),-1)"
  },
  {
    "input": "input : list = [3, 4, 2, 5, 2, -2]\noutput : list = [6, 7, 5, 8, 5, 1]",
    "output": "generated_output : list = add_n([3, 4, 2, 5, 2, -2],3)",
    "io_inp": [
      3,
      4,
      2,
      5,
      2,
      -2
    ],
    "io_out": [
      6,
      7,
      5,
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, -1, 2]\noutput : list = [-24]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(take([-1, -1, 2],1)),-3),5),4)",
    "io_inp": [
      -1,
      -1,
      2
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(take(input,1)),-3),5),4)"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(sort_des([1, 2, 5])),1),22))",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(sort_des(input)),1),22))"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [-50, -40, -30]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(mul_n([-3, -5, -4],2))),5))",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      -50,
      -40,
      -30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(mul_n(input,2))),5))"
  },
  {
    "input": "input : list = [5, 0, -2, -1, 1]\noutput : list = [1, -1, -2, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, -2, -1, 1])",
    "io_inp": [
      5,
      0,
      -2,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [36, 48]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(add_n([1, 0],3)),4),4),3)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      36,
      48
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(add_n(input,3)),4),4),3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-33, 21]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(mul_n([5, -1],3))),4),-3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -33,
      21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(mul_n(input,3))),4),-3)"
  },
  {
    "input": "input : list = [-3, 4, 1]\noutput : list = [28, 16]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(drop([-3, 4, 1],1)),-3),4))",
    "io_inp": [
      -3,
      4,
      1
    ],
    "io_out": [
      28,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(drop(input,1)),-3),4))"
  },
  {
    "input": "input : list = [4, 4, -4, 5, 0]\noutput : list = [5, 4, 4, 0, -4]",
    "output": "generated_output : list = sort_des([4, 4, -4, 5, 0])",
    "io_inp": [
      4,
      4,
      -4,
      5,
      0
    ],
    "io_out": [
      5,
      4,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, 4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(take([4, 4, 4],1))),5))",
    "io_inp": [
      4,
      4,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(take(input,1))),5))"
  },
  {
    "input": "input : list = [-5, 2, 5, 3, -1, 1]\noutput : list = [5, 3, 2, 1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, 2, 5, 3, -1, 1]))",
    "io_inp": [
      -5,
      2,
      5,
      3,
      -1,
      1
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [2, -5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(mul_n([-3, 4],1)),1)),-1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(mul_n(input,1)),1)),-1)"
  },
  {
    "input": "input : list = [-5, -2, -3, -2, 5]\noutput : list = [-10, -8, -7, -7, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse([-5, -2, -3, -2, 5])),-5))",
    "io_inp": [
      -5,
      -2,
      -3,
      -2,
      5
    ],
    "io_out": [
      -10,
      -8,
      -7,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(input)),-5))"
  },
  {
    "input": "input : list = [3, -3, 3, 4, -4, -2]\noutput : list = [22, 19, 19, 4, 1, -2]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_des([3, -3, 3, 4, -4, -2]),-4),3),2))",
    "io_inp": [
      3,
      -3,
      3,
      4,
      -4,
      -2
    ],
    "io_out": [
      22,
      19,
      19,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_des(input),-4),3),2))"
  },
  {
    "input": "input : list = [-5, -1, 2, -2, -5]\noutput : list = [-10, -2, 4, -4, -10]",
    "output": "generated_output : list = mul_n([-5, -1, 2, -2, -5],2)",
    "io_inp": [
      -5,
      -1,
      2,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -2,
      4,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 4, 1]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 4, 1])",
    "io_inp": [
      5,
      4,
      1
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [1, 7]",
    "output": "generated_output : list = drop(sort_asc(sub_n([-4, -2, 4],-3)),1)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sub_n(input,-3)),1)"
  },
  {
    "input": "input : list = [-4, 1, 4, -2]\noutput : list = [-8, -2, 4, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([-4, 1, 4, -2])),-2)",
    "io_inp": [
      -4,
      1,
      4,
      -2
    ],
    "io_out": [
      -8,
      -2,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-3, -4, 1, -1, 2, 4]\noutput : list = [-8, -9, -4, -6, -3, -1]",
    "output": "generated_output : list = sub_n([-3, -4, 1, -1, 2, 4],5)",
    "io_inp": [
      -3,
      -4,
      1,
      -1,
      2,
      4
    ],
    "io_out": [
      -8,
      -9,
      -4,
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sort_asc(add_n([-3, 3],-3))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [-5, 4, -2, 5]\noutput : list = [9, 2, 8, -1]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(reverse([-5, 4, -2, 5]),-3),1),-3),2)",
    "io_inp": [
      -5,
      4,
      -2,
      5
    ],
    "io_out": [
      9,
      2,
      8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(reverse(input),-3),1),-3),2)"
  },
  {
    "input": "input : list = [3, -3, 0, 3]\noutput : list = [6, 0, 3, 6]",
    "output": "generated_output : list = add_n([3, -3, 0, 3],3)",
    "io_inp": [
      3,
      -3,
      0,
      3
    ],
    "io_out": [
      6,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [-12, -12, -24]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(sub_n([-1, -1, 3],5),-5),15),-5),-3)",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      -12,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(sub_n(input,5),-5),15),-5),-3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(add_n([1, 2],1))),29))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(add_n(input,1))),29))"
  },
  {
    "input": "input : list = [1, -4, 1, -4, 1, -1]\noutput : list = [2, -3, 2, -3, 2, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n([1, -4, 1, -4, 1, -1],1),-4),-2)",
    "io_inp": [
      1,
      -4,
      1,
      -4,
      1,
      -1
    ],
    "io_out": [
      2,
      -3,
      2,
      -3,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,1),-4),-2)"
  },
  {
    "input": "input : list = [5, 4, -2, 5]\noutput : list = [-4, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([5, 4, -2, 5]),2))",
    "io_inp": [
      5,
      4,
      -2,
      5
    ],
    "io_out": [
      -4,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [1, 0, -1, 5, -2, 4]\noutput : list = [-9, -8, -7, -6, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(sort_asc([1, 0, -1, 5, -2, 4]),-3))),-4)",
    "io_inp": [
      1,
      0,
      -1,
      5,
      -2,
      4
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(sort_asc(input),-3))),-4)"
  },
  {
    "input": "input : list = [-1, -4, -1, -2]\noutput : list = [8, 5, 8, 7]",
    "output": "generated_output : list = add_n(sub_n([-1, -4, -1, -2],-5),4)",
    "io_inp": [
      -1,
      -4,
      -1,
      -2
    ],
    "io_out": [
      8,
      5,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),4)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [20, 11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([-2, -5],-3),-5))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      20,
      11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,-3),-5))"
  },
  {
    "input": "input : list = [-5, -4, 0, 4]\noutput : list = [14, 22]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(drop([-5, -4, 0, 4],2),3),2),2),-4)",
    "io_inp": [
      -5,
      -4,
      0,
      4
    ],
    "io_out": [
      14,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(drop(input,2),3),2),2),-4)"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_des([1, 0, -2]),2),-1)))",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_des(input),2),-1)))"
  },
  {
    "input": "input : list = [5, -2, 4]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take([5, -2, 4],1))",
    "io_inp": [
      5,
      -2,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [25, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([5, 5],5)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,5)))"
  },
  {
    "input": "input : list = [2, -1, 5, 4, -5, 0]\noutput : list = [-10, -2, 0, 4, 8, 10]",
    "output": "generated_output : list = mul_n(sort_asc([2, -1, 5, 4, -5, 0]),2)",
    "io_inp": [
      2,
      -1,
      5,
      4,
      -5,
      0
    ],
    "io_out": [
      -10,
      -2,
      0,
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(reverse([3, -4]),-3)),2))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(reverse(input),-3)),2))"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_asc([-5, 0, 1]),12),18),7))",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_asc(input),12),18),7))"
  },
  {
    "input": "input : list = [5, -4, 1, 1, -4]\noutput : list = [6, 6, 1, 10]",
    "output": "generated_output : list = drop(reverse(add_n([5, -4, 1, 1, -4],5)),1)",
    "io_inp": [
      5,
      -4,
      1,
      1,
      -4
    ],
    "io_out": [
      6,
      6,
      1,
      10
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(input,5)),1)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(add_n([-3, -3],4)),2),11))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(add_n(input,4)),2),11))"
  },
  {
    "input": "input : list = [-4, -2, -2, -4, -4, -3]\noutput : list = [-6, -6, -12, -12, -9]",
    "output": "generated_output : list = mul_n(drop([-4, -2, -2, -4, -4, -3],1),3)",
    "io_inp": [
      -4,
      -2,
      -2,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -12,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse([2, 5])",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [3, -37]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(reverse([5, 0]),2),-4),5),-2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      3,
      -37
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(reverse(input),2),-4),5),-2)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [13, 10]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(sub_n([-1, -4],-5),-5),-1),3),30)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      13,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(sub_n(input,-5),-5),-1),3),30)"
  },
  {
    "input": "input : list = [-3, -2, -3, -5, -5]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse(take([-3, -2, -3, -5, -5],2))),3))",
    "io_inp": [
      -3,
      -2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(take(input,2))),3))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [35, 35]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(sub_n([-4, -4],3)),-5),7))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      35,
      35
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(sub_n(input,3)),-5),7))"
  },
  {
    "input": "input : list = [-5, 4, -4, 2, 1]\noutput : list = [15, 13, 12, 7, 6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(sub_n([-5, 4, -4, 2, 1],-4),20),-3),-4))",
    "io_inp": [
      -5,
      4,
      -4,
      2,
      1
    ],
    "io_out": [
      15,
      13,
      12,
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(sub_n(input,-4),20),-3),-4))"
  },
  {
    "input": "input : list = [2, -2, -2, 1]\noutput : list = [-2, -2, 1, 2]",
    "output": "generated_output : list = sort_asc([2, -2, -2, 1])",
    "io_inp": [
      2,
      -2,
      -2,
      1
    ],
    "io_out": [
      -2,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5, 0]\noutput : list = [2, 7, -18]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(sub_n([-4, -5, 0],-3)),-5)),-3)",
    "io_inp": [
      -4,
      -5,
      0
    ],
    "io_out": [
      2,
      7,
      -18
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(sub_n(input,-3)),-5)),-3)"
  },
  {
    "input": "input : list = [0, 1, 2, 1, 4, -3]\noutput : list = [8, 4, 2, -6]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(drop([0, 1, 2, 1, 4, -3],2)))),2)",
    "io_inp": [
      0,
      1,
      2,
      1,
      4,
      -3
    ],
    "io_out": [
      8,
      4,
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(drop(input,2)))),2)"
  },
  {
    "input": "input : list = [4, 0, 3, 0]\noutput : list = [4, 3, 0, 0]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(reverse([4, 0, 3, 0])),25)),13)",
    "io_inp": [
      4,
      0,
      3,
      0
    ],
    "io_out": [
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(reverse(input)),25)),13)"
  },
  {
    "input": "input : list = [0, 2, 3, -2, 1]\noutput : list = [0, -1, -2, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([0, 2, 3, -2, 1],1)),3)",
    "io_inp": [
      0,
      2,
      3,
      -2,
      1
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,1)),3)"
  },
  {
    "input": "input : list = [-2, 1, 0, 0, 0, 4]\noutput : list = [-2, 0, 0, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([-2, 1, 0, 0, 0, 4])",
    "io_inp": [
      -2,
      1,
      0,
      0,
      0,
      4
    ],
    "io_out": [
      -2,
      0,
      0,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, 4, -3, -2, -4]\noutput : list = [-4, -3, -2, -1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_des([5, -1, 4, -3, -2, -4])),20)))",
    "io_inp": [
      5,
      -1,
      4,
      -3,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_des(input)),20)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse([-5, 0])",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, 0, 3, 0]\noutput : list = [1, -2, -1, 2, -1]",
    "output": "generated_output : list = sub_n(add_n([2, -1, 0, 3, 0],-2),-1)",
    "io_inp": [
      2,
      -1,
      0,
      3,
      0
    ],
    "io_out": [
      1,
      -2,
      -1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),-1)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [15, 0]",
    "output": "generated_output : list = add_n(sub_n(mul_n([-2, 1],-5),-2),3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-5),-2),3)"
  },
  {
    "input": "input : list = [-5, -5, 1, 3]\noutput : list = [-5, -5, 1, 3]",
    "output": "generated_output : list = take(sort_asc([-5, -5, 1, 3]),21)",
    "io_inp": [
      -5,
      -5,
      1,
      3
    ],
    "io_out": [
      -5,
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),21)"
  },
  {
    "input": "input : list = [3, -2, 2, -3, 2, -3]\noutput : list = [4, 3, -1, -2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n(take([3, -2, 2, -3, 2, -3],4),-4)),5),-2)",
    "io_inp": [
      3,
      -2,
      2,
      -3,
      2,
      -3
    ],
    "io_out": [
      4,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(take(input,4),-4)),5),-2)"
  },
  {
    "input": "input : list = [2, -2, -2, 0]\noutput : list = [-2, -2, 0, 2]",
    "output": "generated_output : list = sort_asc([2, -2, -2, 0])",
    "io_inp": [
      2,
      -2,
      -2,
      0
    ],
    "io_out": [
      -2,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 4, -2, 0, -3, 1]\noutput : list = [20, -20, -40, -50]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(take([-3, 4, -2, 0, -3, 1],4),-2)),-5),-2)",
    "io_inp": [
      -3,
      4,
      -2,
      0,
      -3,
      1
    ],
    "io_out": [
      20,
      -20,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(take(input,4),-2)),-5),-2)"
  },
  {
    "input": "input : list = [1, 4, 5, 3, -4, 4]\noutput : list = [-20, -15, 20]",
    "output": "generated_output : list = mul_n(sort_des(take(reverse(mul_n([1, 4, 5, 3, -4, 4],5)),3)),-1)",
    "io_inp": [
      1,
      4,
      5,
      3,
      -4,
      4
    ],
    "io_out": [
      -20,
      -15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(reverse(mul_n(input,5)),3)),-1)"
  },
  {
    "input": "input : list = [-4, 3, -5, 3]\noutput : list = [-2, -10, -2, -9]",
    "output": "generated_output : list = reverse(sub_n([-4, 3, -5, 3],5))",
    "io_inp": [
      -4,
      3,
      -5,
      3
    ],
    "io_out": [
      -2,
      -10,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,5))"
  },
  {
    "input": "input : list = [-3, -5, -4, 5]\noutput : list = [7, -1, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(reverse([-3, -5, -4, 5])),18),2))",
    "io_inp": [
      -3,
      -5,
      -4,
      5
    ],
    "io_out": [
      7,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(reverse(input)),18),2))"
  },
  {
    "input": "input : list = [2, 2, -2]\noutput : list = [-2, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, -2])",
    "io_inp": [
      2,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, 4, -4]\noutput : list = [-9, -2, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(add_n([3, 3, 4, -4],-5),20))))",
    "io_inp": [
      3,
      3,
      4,
      -4
    ],
    "io_out": [
      -9,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(add_n(input,-5),20))))"
  },
  {
    "input": "input : list = [-3, -1, 2, 3, 0, 0]\noutput : list = [5, 3, 0, -1, 2, 2]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(add_n([-3, -1, 2, 3, 0, 0],-3)),-1)),-1)",
    "io_inp": [
      -3,
      -1,
      2,
      3,
      0,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(add_n(input,-3)),-1)),-1)"
  },
  {
    "input": "input : list = [-2, -4, 3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take([-2, -4, 3],1),4),-3))",
    "io_inp": [
      -2,
      -4,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(input,1),4),-3))"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [16, 8]",
    "output": "generated_output : list = reverse(take(take(mul_n(drop([-4, 2, 4],1),4),5),5))",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(drop(input,1),4),5),5))"
  },
  {
    "input": "input : list = [0, -2, -5, 3, -3, -5]\noutput : list = [3, 0, -2, -3, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([0, -2, -5, 3, -3, -5])))",
    "io_inp": [
      0,
      -2,
      -5,
      3,
      -3,
      -5
    ],
    "io_out": [
      3,
      0,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [-8, 0, 4]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc([2, -1, 1]),4),5),4)",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      -8,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(input),4),5),4)"
  },
  {
    "input": "input : list = [-2, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = drop([-2, 2, 2],1)",
    "io_inp": [
      -2,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([-5, 3])))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, -3, -4, -1, 3, 4]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = take([5, -3, -4, -1, 3, 4],3)",
    "io_inp": [
      5,
      -3,
      -4,
      -1,
      3,
      4
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, 2, 1, 1, -2]\noutput : list = [7, 6, 6, 4, 3]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-1, 2, 1, 1, -2],5)),1)",
    "io_inp": [
      -1,
      2,
      1,
      1,
      -2
    ],
    "io_out": [
      7,
      6,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,5)),1)"
  },
  {
    "input": "input : list = [-5, 3, -1, 1]\noutput : list = [25, -15, 5, -5]",
    "output": "generated_output : list = mul_n([-5, 3, -1, 1],-5)",
    "io_inp": [
      -5,
      3,
      -1,
      1
    ],
    "io_out": [
      25,
      -15,
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, -4, 3, -1, 4, 2]\noutput : list = [-2, 1, 4, 5, 6, 6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_des([4, -4, 3, -1, 4, 2]),5)),4),-1)",
    "io_inp": [
      4,
      -4,
      3,
      -1,
      4,
      2
    ],
    "io_out": [
      -2,
      1,
      4,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_des(input),5)),4),-1)"
  },
  {
    "input": "input : list = [2, 2, 2, -1, 2, -2]\noutput : list = [-1, 0, 3, 3, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(sort_asc([2, 2, 2, -1, 2, -2])),-1)))",
    "io_inp": [
      2,
      2,
      2,
      -1,
      2,
      -2
    ],
    "io_out": [
      -1,
      0,
      3,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-3, 2, 3, -4, 1, 4]\noutput : list = [-7, -2, -1]",
    "output": "generated_output : list = take(take(take(take(add_n([-3, 2, 3, -4, 1, 4],-4),3),18),27),15)",
    "io_inp": [
      -3,
      2,
      3,
      -4,
      1,
      4
    ],
    "io_out": [
      -7,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(take(add_n(input,-4),3),18),27),15)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [5, 5, 9]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(add_n([-5, -1, -1],3),-5)),-1),-2)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(add_n(input,3),-5)),-1),-2)"
  },
  {
    "input": "input : list = [1, 3, 4, -4, -2, -5]\noutput : list = [3, 4, -4, -2, -5]",
    "output": "generated_output : list = drop([1, 3, 4, -4, -2, -5],1)",
    "io_inp": [
      1,
      3,
      4,
      -4,
      -2,
      -5
    ],
    "io_out": [
      3,
      4,
      -4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = reverse([5, -3])",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des([5, 5])",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, -5, -2]\noutput : list = [-2, -5, 3, -3]",
    "output": "generated_output : list = reverse([-3, 3, -5, -2])",
    "io_inp": [
      -3,
      3,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, 4, 2]\noutput : list = [6, 8]",
    "output": "generated_output : list = sort_asc(sub_n(drop([-3, 4, 4, 2],2),-4))",
    "io_inp": [
      -3,
      4,
      4,
      2
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,2),-4))"
  },
  {
    "input": "input : list = [-5, -4, 2, 0, 5, -1]\noutput : list = [-10, 50, 0, 20, -40, -50]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n([-5, -4, 2, 0, 5, -1],2),5))))",
    "io_inp": [
      -5,
      -4,
      2,
      0,
      5,
      -1
    ],
    "io_out": [
      -10,
      50,
      0,
      20,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n(input,2),5))))"
  },
  {
    "input": "input : list = [-4, -2, 1]\noutput : list = [-2, -5, -7]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(reverse([-4, -2, 1]),5),2)))",
    "io_inp": [
      -4,
      -2,
      1
    ],
    "io_out": [
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(reverse(input),5),2)))"
  },
  {
    "input": "input : list = [-3, -1, 3, 2, -5, -1]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(drop(sort_des([-3, -1, 3, 2, -5, -1]),3),1),-4))",
    "io_inp": [
      -3,
      -1,
      3,
      2,
      -5,
      -1
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(drop(sort_des(input),3),1),-4))"
  },
  {
    "input": "input : list = [3, 1, 2, -5, 1]\noutput : list = [3, 2, 1, 1, -5]",
    "output": "generated_output : list = sort_des([3, 1, 2, -5, 1])",
    "io_inp": [
      3,
      1,
      2,
      -5,
      1
    ],
    "io_out": [
      3,
      2,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, 3, 1]\noutput : list = [15, 15, 5, -10]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(mul_n([3, -2, 3, 1],1),-1),1)),5)",
    "io_inp": [
      3,
      -2,
      3,
      1
    ],
    "io_out": [
      15,
      15,
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(mul_n(input,1),-1),1)),5)"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [-27]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(take([1, -4, -1],1),1),4),-5),3)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(take(input,1),1),4),-5),3)"
  },
  {
    "input": "input : list = [-1, 5, -1, 3]\noutput : list = [-6, 0, -6, -2]",
    "output": "generated_output : list = sub_n(sub_n([-1, 5, -1, 3],3),2)",
    "io_inp": [
      -1,
      5,
      -1,
      3
    ],
    "io_out": [
      -6,
      0,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-8, -18]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n([4, 2],-5))),-2)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -8,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(input,-5))),-2)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [9, 12]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(mul_n([3, 4],3)))))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [3, 5, -1, 0, -2]\noutput : list = [75, 125]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(take([3, 5, -1, 0, -2],2),-5),-5)))",
    "io_inp": [
      3,
      5,
      -1,
      0,
      -2
    ],
    "io_out": [
      75,
      125
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(take(input,2),-5),-5)))"
  },
  {
    "input": "input : list = [-4, 4, -5, -1]\noutput : list = [-9, -1, -10, -6]",
    "output": "generated_output : list = add_n([-4, 4, -5, -1],-5)",
    "io_inp": [
      -4,
      4,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -1,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 3, -4, 5]\noutput : list = [-18, 10, -18, 18]",
    "output": "generated_output : list = sub_n(mul_n([-4, 3, -4, 5],4),2)",
    "io_inp": [
      -4,
      3,
      -4,
      5
    ],
    "io_out": [
      -18,
      10,
      -18,
      18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),2)"
  },
  {
    "input": "input : list = [-5, 2, -5, 1, 3, -5]\noutput : list = [2, 1, 0, -6, -6, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([-5, 2, -5, 1, 3, -5],1)))",
    "io_inp": [
      -5,
      2,
      -5,
      1,
      3,
      -5
    ],
    "io_out": [
      2,
      1,
      0,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-3, -5, -1, 3, 3, -3]\noutput : list = [7, 7, 3, 1, 1, -1]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(reverse([-3, -5, -1, 3, 3, -3])),4)))",
    "io_inp": [
      -3,
      -5,
      -1,
      3,
      3,
      -3
    ],
    "io_out": [
      7,
      7,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [-3, -5, -1, 4]\noutput : list = [4, -1, -3, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(sort_asc([-3, -5, -1, 4]))),41))",
    "io_inp": [
      -3,
      -5,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(sort_asc(input))),41))"
  },
  {
    "input": "input : list = [-2, 1, 5, 5, 2]\noutput : list = [-4, -4, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(add_n([-2, 1, 5, 5, 2],-2),-1),-1)))",
    "io_inp": [
      -2,
      1,
      5,
      5,
      2
    ],
    "io_out": [
      -4,
      -4,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(add_n(input,-2),-1),-1)))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc([4, -1])",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4, -2, 4, 5, 3]\noutput : list = [3, 2, 1, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(sort_asc([2, -4, -2, 4, 5, 3]),5)),-1))",
    "io_inp": [
      2,
      -4,
      -2,
      4,
      5,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(sort_asc(input),5)),-1))"
  },
  {
    "input": "input : list = [3, 4, 0, 5, -1]\noutput : list = [0, 5, -1]",
    "output": "generated_output : list = drop([3, 4, 0, 5, -1],2)",
    "io_inp": [
      3,
      4,
      0,
      5,
      -1
    ],
    "io_out": [
      0,
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 4, 5, 1]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(take([3, 4, 5, 1],1),-2))),2)",
    "io_inp": [
      3,
      4,
      5,
      1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(take(input,1),-2))),2)"
  },
  {
    "input": "input : list = [3, 4, -4, 2, -1, 0]\noutput : list = [1, 0, -1, -3, -4, -7]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_des([3, 4, -4, 2, -1, 0]),-3))))",
    "io_inp": [
      3,
      4,
      -4,
      2,
      -1,
      0
    ],
    "io_out": [
      1,
      0,
      -1,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [-5, 1, 2, -1, 0]\noutput : list = [-5, 1, 2]",
    "output": "generated_output : list = take([-5, 1, 2, -1, 0],3)",
    "io_inp": [
      -5,
      1,
      2,
      -1,
      0
    ],
    "io_out": [
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, -5, -1, 1, 4]\noutput : list = [-20, -10, -5, 5, 25]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc([2, -5, -1, 1, 4])),-5),16)",
    "io_inp": [
      2,
      -5,
      -1,
      1,
      4
    ],
    "io_out": [
      -20,
      -10,
      -5,
      5,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(input)),-5),16)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [3, -2, -5]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(sub_n([4, -4, -1],-5)),-2),-4))",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(sub_n(input,-5)),-2),-4))"
  },
  {
    "input": "input : list = [4, -4, -4, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(drop([4, -4, -4, -3],2),-4)),-3))",
    "io_inp": [
      4,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(drop(input,2),-4)),-3))"
  },
  {
    "input": "input : list = [3, -4, 0, -5, 0]\noutput : list = [3, 0, 0, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([3, -4, 0, -5, 0])))",
    "io_inp": [
      3,
      -4,
      0,
      -5,
      0
    ],
    "io_out": [
      3,
      0,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(drop([-4, 1, 3],1),3)),3),25)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(drop(input,1),3)),3),25)"
  },
  {
    "input": "input : list = [-2, -2, 3, 0, -2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -2, 3, 0, -2],1)",
    "io_inp": [
      -2,
      -2,
      3,
      0,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -1, 0, -1]\noutput : list = [-5, -5, -4, -4]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc([0, -1, 0, -1])),-4),8)",
    "io_inp": [
      0,
      -1,
      0,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(input)),-4),8)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [-26]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(take([-2, -4, -4],1)),5),3),2)",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      -26
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(take(input,1)),5),3),2)"
  },
  {
    "input": "input : list = [-3, 1, -4, 3, -2]\noutput : list = [18, 13, 8, -7, -17]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(mul_n([-3, 1, -4, 3, -2],-5)))),-2)",
    "io_inp": [
      -3,
      1,
      -4,
      3,
      -2
    ],
    "io_out": [
      18,
      13,
      8,
      -7,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(mul_n(input,-5)))),-2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, 1, 1, 4, 0]\noutput : list = [0, -4, -4]",
    "output": "generated_output : list = mul_n(take(mul_n(take(sort_asc([1, 5, 1, 1, 4, 0]),3),-2),44),2)",
    "io_inp": [
      1,
      5,
      1,
      1,
      4,
      0
    ],
    "io_out": [
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(sort_asc(input),3),-2),44),2)"
  },
  {
    "input": "input : list = [-2, 1, -2, 0, 0, 5]\noutput : list = [10, 6, 5, 5, 3, 3]",
    "output": "generated_output : list = sort_des(sort_des(add_n([-2, 1, -2, 0, 0, 5],5)))",
    "io_inp": [
      -2,
      1,
      -2,
      0,
      0,
      5
    ],
    "io_out": [
      10,
      6,
      5,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,5)))"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [-4, -6, 8]",
    "output": "generated_output : list = mul_n([2, 3, -4],-2)",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      -4,
      -6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -1, 0, 4]\noutput : list = [-1, 0, 1, 5]",
    "output": "generated_output : list = add_n(add_n([-2, -1, 0, 4],3),-2)",
    "io_inp": [
      -2,
      -1,
      0,
      4
    ],
    "io_out": [
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc([-4, -5])",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, 3, -5, -2, -5]\noutput : list = [-12, -12, -8, 2, 8, 8]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des([5, 5, 3, -5, -2, -5]),1),38),-2)",
    "io_inp": [
      5,
      5,
      3,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -12,
      -12,
      -8,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(input),1),38),-2)"
  },
  {
    "input": "input : list = [-2, 1, 0]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-2, 1, 0]))",
    "io_inp": [
      -2,
      1,
      0
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 2, 1, 3, 2, -1]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(drop([-1, 2, 1, 3, 2, -1],4))),1),3)",
    "io_inp": [
      -1,
      2,
      1,
      3,
      2,
      -1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(drop(input,4))),1),3)"
  },
  {
    "input": "input : list = [4, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = drop([4, 1, -2],1)",
    "io_inp": [
      4,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 4, 5, 4, 3]\noutput : list = [-5, -4, -4, -3]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(sort_des([5, 4, 5, 4, 3])),-5),4),3)",
    "io_inp": [
      5,
      4,
      5,
      4,
      3
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(sort_des(input)),-5),4),3)"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [-2, 0, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n([5, -5, -3],-2)))),1)",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      -2,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n(input,-2)))),1)"
  },
  {
    "input": "input : list = [-4, -5, 4, -5]\noutput : list = [8, 0, -1, -1]",
    "output": "generated_output : list = take(sort_des(take(sort_des(add_n([-4, -5, 4, -5],4)),23)),47)",
    "io_inp": [
      -4,
      -5,
      4,
      -5
    ],
    "io_out": [
      8,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(add_n(input,4)),23)),47)"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = sub_n(reverse([2, -1, -2]),-1)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-1, 1, 4, -4, -2]\noutput : list = [9, 6, 3, 1]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(drop([-1, 1, 4, -4, -2],1)),5)))",
    "io_inp": [
      -1,
      1,
      4,
      -4,
      -2
    ],
    "io_out": [
      9,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(drop(input,1)),5)))"
  },
  {
    "input": "input : list = [-3, 3, -1]\noutput : list = [-124]",
    "output": "generated_output : list = drop(mul_n(add_n(mul_n(add_n([-3, 3, -1],-5),-5),1),-4),2)",
    "io_inp": [
      -3,
      3,
      -1
    ],
    "io_out": [
      -124
    ],
    "output_masked": "generated_output : list = drop(mul_n(add_n(mul_n(add_n(input,-5),-5),1),-4),2)"
  },
  {
    "input": "input : list = [2, -2, -4, 0, -1, 4]\noutput : list = [4, 2, 0, -1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(reverse([2, -2, -4, 0, -1, 4])))))",
    "io_inp": [
      2,
      -2,
      -4,
      0,
      -1,
      4
    ],
    "io_out": [
      4,
      2,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, -3, -4, -4]\noutput : list = [1, 1, 0, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des([-3, -3, -4, -4]))),-4)",
    "io_inp": [
      -3,
      -3,
      -4,
      -4
    ],
    "io_out": [
      1,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(input))),-4)"
  },
  {
    "input": "input : list = [5, -1, 2, -2, 4, 2]\noutput : list = [1, -5, -2, -6, 0, -2]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(sub_n([5, -1, 2, -2, 4, 2],5),1),14),3),2)",
    "io_inp": [
      5,
      -1,
      2,
      -2,
      4,
      2
    ],
    "io_out": [
      1,
      -5,
      -2,
      -6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(sub_n(input,5),1),14),3),2)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(drop(mul_n([-2, 1],-5),1)),-4))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(drop(mul_n(input,-5),1)),-4))"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [-28, 7, 7]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sub_n([-3, 4, 4],2),-1),5),2),18)",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      -28,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sub_n(input,2),-1),5),2),18)"
  },
  {
    "input": "input : list = [5, -3, 3, 0, -3, 2]\noutput : list = [2, -3, 0, 3, -3, 5]",
    "output": "generated_output : list = reverse([5, -3, 3, 0, -3, 2])",
    "io_inp": [
      5,
      -3,
      3,
      0,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      0,
      3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [0, -8]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n([1, 5],3)),2),-4)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(input,3)),2),-4)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [8, -2]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(mul_n([0, 2],5)),16)),2)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(mul_n(input,5)),16)),2)"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [3, -17, -21]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(mul_n([5, -1, 4],-4)),16),-1))",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      3,
      -17,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(mul_n(input,-4)),16),-1))"
  },
  {
    "input": "input : list = [-4, 3, 2, 3, 1, 4]\noutput : list = [0, -3, -1, -2, -1, -8]",
    "output": "generated_output : list = take(add_n(reverse(take(sub_n([-4, 3, 2, 3, 1, 4],2),20)),-2),31)",
    "io_inp": [
      -4,
      3,
      2,
      3,
      1,
      4
    ],
    "io_out": [
      0,
      -3,
      -1,
      -2,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(sub_n(input,2),20)),-2),31)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_des([4, 1]),3))))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_des(input),3))))"
  },
  {
    "input": "input : list = [-4, -5, 5, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sub_n(add_n(take([-4, -5, 5, 0],2),2),-3)",
    "io_inp": [
      -4,
      -5,
      5,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(input,2),2),-3)"
  },
  {
    "input": "input : list = [4, 4, -4, 0, 2, -2]\noutput : list = [2, 2, 0, -2, -4, -6]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(reverse([4, 4, -4, 0, 2, -2]),2))),48)",
    "io_inp": [
      4,
      4,
      -4,
      0,
      2,
      -2
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(reverse(input),2))),48)"
  },
  {
    "input": "input : list = [2, 1, -5, 3, 5]\noutput : list = [-2, 0, 8, 2, 1]",
    "output": "generated_output : list = mul_n(sub_n(reverse([2, 1, -5, 3, 5]),3),-1)",
    "io_inp": [
      2,
      1,
      -5,
      3,
      5
    ],
    "io_out": [
      -2,
      0,
      8,
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),3),-1)"
  },
  {
    "input": "input : list = [-5, -4, 0, -3]\noutput : list = [0, 3, -1, -2]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(reverse([-5, -4, 0, -3])),-3)),33)",
    "io_inp": [
      -5,
      -4,
      0,
      -3
    ],
    "io_out": [
      0,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(reverse(input)),-3)),33)"
  },
  {
    "input": "input : list = [-2, -1, -5, 2]\noutput : list = [0, -3, -4, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n([-2, -1, -5, 2],-2)))",
    "io_inp": [
      -2,
      -1,
      -5,
      2
    ],
    "io_out": [
      0,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,-2)))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [9, 3]",
    "output": "generated_output : list = add_n([5, -1],4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-3, 3, -4, -5, -5]\noutput : list = [0, -6, -7, -8, -8]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(reverse([-3, 3, -4, -5, -5])),-3)))",
    "io_inp": [
      -3,
      3,
      -4,
      -5,
      -5
    ],
    "io_out": [
      0,
      -6,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [-15, 9, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n([-5, 5, -3],-3),9)))",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      -15,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(input,-3),9)))"
  },
  {
    "input": "input : list = [-4, 2, 2, -3, -3, -5]\noutput : list = [-2, -1, 0, 0, 5, 5]",
    "output": "generated_output : list = add_n(take(sort_asc([-4, 2, 2, -3, -3, -5]),17),3)",
    "io_inp": [
      -4,
      2,
      2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -1,
      0,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),17),3)"
  },
  {
    "input": "input : list = [-1, -1, 2]\noutput : list = [4, 4, 7]",
    "output": "generated_output : list = reverse(add_n(sort_des([-1, -1, 2]),5))",
    "io_inp": [
      -1,
      -1,
      2
    ],
    "io_out": [
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [-3, -1, -2, 2, -4]\noutput : list = [-4, -3, -2, -1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(add_n(sort_asc([-3, -1, -2, 2, -4]),1),1)),1)",
    "io_inp": [
      -3,
      -1,
      -2,
      2,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(add_n(sort_asc(input),1),1)),1)"
  },
  {
    "input": "input : list = [-5, 1, 1, -1]\noutput : list = [-4, 0, 2, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(add_n([-5, 1, 1, -1],-5)),-5)),1)",
    "io_inp": [
      -5,
      1,
      1,
      -1
    ],
    "io_out": [
      -4,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(add_n(input,-5)),-5)),1)"
  },
  {
    "input": "input : list = [-2, -5, -2, 3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(take([-2, -5, -2, 3],1))",
    "io_inp": [
      -2,
      -5,
      -2,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [-15, -9, 0]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(sort_des([0, 5, 3]),-3)),18),26)",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      -15,
      -9,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(sort_des(input),-3)),18),26)"
  },
  {
    "input": "input : list = [-1, 2, 2, 5, 0, -1]\noutput : list = [25, 25, 20, 10, 10, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n([-1, 2, 2, 5, 0, -1],3),-5))),5)",
    "io_inp": [
      -1,
      2,
      2,
      5,
      0,
      -1
    ],
    "io_out": [
      25,
      25,
      20,
      10,
      10,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n(input,3),-5))),5)"
  },
  {
    "input": "input : list = [-3, -3, -3, -5, -5, -2]\noutput : list = [30, 30, 18]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(drop([-3, -3, -3, -5, -5, -2],3),-4)),5),-5)",
    "io_inp": [
      -3,
      -3,
      -3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      30,
      30,
      18
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(drop(input,3),-4)),5),-5)"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [276, 276, 52]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(sub_n([-5, -5, 2],3),4),-2),5),4)",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      276,
      276,
      52
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(sub_n(input,3),4),-2),5),4)"
  },
  {
    "input": "input : list = [5, 1, -3, -5]\noutput : list = [-3, -15]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take(take([5, 1, -3, -5],2),7)),-1),3)",
    "io_inp": [
      5,
      1,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(take(input,2),7)),-1),3)"
  },
  {
    "input": "input : list = [3, 4, 2, -5, -4]\noutput : list = [70, 60, 50, -10, -20]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(reverse([3, 4, 2, -5, -4]),3)),-5),-2)",
    "io_inp": [
      3,
      4,
      2,
      -5,
      -4
    ],
    "io_out": [
      70,
      60,
      50,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(reverse(input),3)),-5),-2)"
  },
  {
    "input": "input : list = [3, -5, 4, -5, 5, -4]\noutput : list = [5, 4, 3, -4, -5, -5]",
    "output": "generated_output : list = sort_des([3, -5, 4, -5, 5, -4])",
    "io_inp": [
      3,
      -5,
      4,
      -5,
      5,
      -4
    ],
    "io_out": [
      5,
      4,
      3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -2, 5, 4]\noutput : list = [20, 10, -25, -20]",
    "output": "generated_output : list = mul_n([-4, -2, 5, 4],-5)",
    "io_inp": [
      -4,
      -2,
      5,
      4
    ],
    "io_out": [
      20,
      10,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 5, -3, -1, -2]\noutput : list = [-2, -1, -3, 5]",
    "output": "generated_output : list = reverse(drop([-2, 5, -3, -1, -2],1))",
    "io_inp": [
      -2,
      5,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [5, 1, -3, 5, -4]\noutput : list = [4, 0, -4, 4, -5]",
    "output": "generated_output : list = add_n([5, 1, -3, 5, -4],-1)",
    "io_inp": [
      5,
      1,
      -3,
      5,
      -4
    ],
    "io_out": [
      4,
      0,
      -4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [10, 25, -15]",
    "output": "generated_output : list = mul_n([2, 5, -3],5)",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      10,
      25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, 2, -5, -2, 5, -1]\noutput : list = [0, 0, -14, -8, 6, -6]",
    "output": "generated_output : list = take(mul_n(sub_n([2, 2, -5, -2, 5, -1],2),2),13)",
    "io_inp": [
      2,
      2,
      -5,
      -2,
      5,
      -1
    ],
    "io_out": [
      0,
      0,
      -14,
      -8,
      6,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,2),2),13)"
  },
  {
    "input": "input : list = [3, 4, -1]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc([3, 4, -1]),9),5),4))",
    "io_inp": [
      3,
      4,
      -1
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc(input),9),5),4))"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [28, -7, 3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(reverse([-5, 2, 0]),-5),-5)),2)",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      28,
      -7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(reverse(input),-5),-5)),2)"
  },
  {
    "input": "input : list = [-5, -3, 2, -5, 5]\noutput : list = [2, -8, -1, -6, -8]",
    "output": "generated_output : list = sub_n(reverse([-5, -3, 2, -5, 5]),3)",
    "io_inp": [
      -5,
      -3,
      2,
      -5,
      5
    ],
    "io_out": [
      2,
      -8,
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [4, 12]",
    "output": "generated_output : list = take(mul_n([1, 3],4),10)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      4,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),10)"
  },
  {
    "input": "input : list = [-5, -3, -1, 4, 4]\noutput : list = [4, 4, -1, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, -1, 4, 4])",
    "io_inp": [
      -5,
      -3,
      -1,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = take(drop([-1, 1, 5],1),5)",
    "io_inp": [
      -1,
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),5)"
  },
  {
    "input": "input : list = [-3, 0, 3, 2, -1, -3]\noutput : list = [-4, 0, 6, 8, 2, -4]",
    "output": "generated_output : list = mul_n(add_n(reverse([-3, 0, 3, 2, -1, -3]),1),2)",
    "io_inp": [
      -3,
      0,
      3,
      2,
      -1,
      -3
    ],
    "io_out": [
      -4,
      0,
      6,
      8,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),1),2)"
  },
  {
    "input": "input : list = [-4, 3, 0, -4, -1]\noutput : list = [0, 2, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(drop([-4, 3, 0, -4, -1],2))),-2))",
    "io_inp": [
      -4,
      3,
      0,
      -4,
      -1
    ],
    "io_out": [
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(drop(input,2))),-2))"
  },
  {
    "input": "input : list = [3, 3, -3, 4, 1, 3]\noutput : list = [12, -4, -12, -12, -12, -16]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(mul_n([3, 3, -3, 4, 1, 3],-4)),35)))",
    "io_inp": [
      3,
      3,
      -3,
      4,
      1,
      3
    ],
    "io_out": [
      12,
      -4,
      -12,
      -12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(mul_n(input,-4)),35)))"
  },
  {
    "input": "input : list = [0, 0, 1, 5, 2]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(take([0, 0, 1, 5, 2],2))),5))",
    "io_inp": [
      0,
      0,
      1,
      5,
      2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(take(input,2))),5))"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-5, -6, -8]",
    "output": "generated_output : list = take(reverse(sort_asc(reverse(sub_n([-3, -5, -2],3)))),36)",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(reverse(sub_n(input,3)))),36)"
  },
  {
    "input": "input : list = [1, 1, 3, 1]\noutput : list = [7, 11, 7, 7]",
    "output": "generated_output : list = sub_n(mul_n(reverse([1, 1, 3, 1]),2),-5)",
    "io_inp": [
      1,
      1,
      3,
      1
    ],
    "io_out": [
      7,
      11,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),2),-5)"
  },
  {
    "input": "input : list = [-2, 5, -1, 2, 3, 2]\noutput : list = [-7, -6, -3, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(reverse([-2, 5, -1, 2, 3, 2]),-5)),11))",
    "io_inp": [
      -2,
      5,
      -1,
      2,
      3,
      2
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(reverse(input),-5)),11))"
  },
  {
    "input": "input : list = [-5, 2, -3, 4]\noutput : list = [78, -62, 38, -102]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n([-5, 2, -3, 4],4),5)),-2)",
    "io_inp": [
      -5,
      2,
      -3,
      4
    ],
    "io_out": [
      78,
      -62,
      38,
      -102
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(input,4),5)),-2)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [2, 5]",
    "output": "generated_output : list = sub_n([-3, 0],-5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [0, 12, 16]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(add_n([3, -5, 1],5),14),2)))",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      0,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(add_n(input,5),14),2)))"
  },
  {
    "input": "input : list = [-5, 5, 5, -1, 2, -4]\noutput : list = [4, -2, -8]",
    "output": "generated_output : list = mul_n(take(sort_des(take(drop([-5, 5, 5, -1, 2, -4],3),7)),21),2)",
    "io_inp": [
      -5,
      5,
      5,
      -1,
      2,
      -4
    ],
    "io_out": [
      4,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(drop(input,3),7)),21),2)"
  },
  {
    "input": "input : list = [5, -1, 3, 2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(drop([5, -1, 3, 2],2),-1))))",
    "io_inp": [
      5,
      -1,
      3,
      2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(drop(input,2),-1))))"
  },
  {
    "input": "input : list = [-4, 5, -1]\noutput : list = [1, 19, -8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n([-4, 5, -1],3),-1)),-3)",
    "io_inp": [
      -4,
      5,
      -1
    ],
    "io_out": [
      1,
      19,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(input,3),-1)),-3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(sort_des([-2, -5]),-3),-4)))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(sort_des(input),-3),-4)))"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [-15, -7, 5]",
    "output": "generated_output : list = add_n(mul_n(sort_des([4, 2, -1]),-4),1)",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      -15,
      -7,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),-4),1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [7, 13]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(sort_des([4, -2])),-3),4),2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      7,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(sort_des(input)),-3),4),2)"
  },
  {
    "input": "input : list = [-3, 1, 2, 5, -4, -3]\noutput : list = [30, 10, 5, -10, 35, 30]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n([-3, 1, 2, 5, -4, -3],3))),-5)",
    "io_inp": [
      -3,
      1,
      2,
      5,
      -4,
      -3
    ],
    "io_out": [
      30,
      10,
      5,
      -10,
      35,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(input,3))),-5)"
  },
  {
    "input": "input : list = [4, -3, 1, 3, -1]\noutput : list = [7, 6, 4, 2, 0]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(reverse([4, -3, 1, 3, -1]))),3),42)",
    "io_inp": [
      4,
      -3,
      1,
      3,
      -1
    ],
    "io_out": [
      7,
      6,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(reverse(input))),3),42)"
  },
  {
    "input": "input : list = [0, -1, 2, -3, -4, 4]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(take([0, -1, 2, -3, -4, 4],1)),1),-3),5)",
    "io_inp": [
      0,
      -1,
      2,
      -3,
      -4,
      4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(take(input,1)),1),-3),5)"
  },
  {
    "input": "input : list = [1, 0, -1, 2, -5]\noutput : list = [-2, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(add_n([1, 0, -1, 2, -5],3)))",
    "io_inp": [
      1,
      0,
      -1,
      2,
      -5
    ],
    "io_out": [
      -2,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,3)))"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [-1, 4, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n([0, -5, 4],-3),-2),1))",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      -1,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(input,-3),-2),1))"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [-5, -2, 3]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(sort_des([5, -3, 0])),10),-2))",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      -5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(sort_des(input)),10),-2))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, 1]))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n([-1, 3],-2),-3)))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(input,-2),-3)))"
  },
  {
    "input": "input : list = [-4, 5, 0, 2, -5, -2]\noutput : list = [27, 21, 15, 9, 0]",
    "output": "generated_output : list = mul_n(sub_n(drop(sort_asc(sort_asc([-4, 5, 0, 2, -5, -2])),1),5),-3)",
    "io_inp": [
      -4,
      5,
      0,
      2,
      -5,
      -2
    ],
    "io_out": [
      27,
      21,
      15,
      9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(sort_asc(sort_asc(input)),1),5),-3)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-2, 8]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des([-4, 1])),-2),-5),5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -2,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des(input)),-2),-5),5)"
  },
  {
    "input": "input : list = [0, -1, -5]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(sort_des(drop([0, -1, -5],1)),-2)",
    "io_inp": [
      0,
      -1,
      -5
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [-3, -5, 0, 3, -1]\noutput : list = [180, 300]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take([-3, -5, 0, 3, -1],2),3),-4),5)",
    "io_inp": [
      -3,
      -5,
      0,
      3,
      -1
    ],
    "io_out": [
      180,
      300
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(input,2),3),-4),5)"
  },
  {
    "input": "input : list = [4, -4, -4, 3, 3, -5]\noutput : list = [-10, -5, -5, 30, 30, 35]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(add_n([4, -4, -4, 3, 3, -5],-1)),6),1),-5)",
    "io_inp": [
      4,
      -4,
      -4,
      3,
      3,
      -5
    ],
    "io_out": [
      -10,
      -5,
      -5,
      30,
      30,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(add_n(input,-1)),6),1),-5)"
  },
  {
    "input": "input : list = [-1, 2, 5, 4, -2, -2]\noutput : list = [15, 12, 6, -3, -6, -6]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-1, 2, 5, 4, -2, -2])),3)",
    "io_inp": [
      -1,
      2,
      5,
      4,
      -2,
      -2
    ],
    "io_out": [
      15,
      12,
      6,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-1, -3, -3, 3]\noutput : list = [3, -1, -3, -3]",
    "output": "generated_output : list = mul_n(sort_des([-1, -3, -3, 3]),1)",
    "io_inp": [
      -1,
      -3,
      -3,
      3
    ],
    "io_out": [
      3,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [4, 4, 5, -1, -1, -5]\noutput : list = [8, 7, 7, 2, 2, -2]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(add_n([4, 4, 5, -1, -1, -5],3))),-2),2)",
    "io_inp": [
      4,
      4,
      5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      8,
      7,
      7,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(add_n(input,3))),-2),2)"
  },
  {
    "input": "input : list = [1, -4, 3, -5, 3]\noutput : list = [10, 8, -2, -6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(reverse([1, -4, 3, -5, 3]),-2),32)))",
    "io_inp": [
      1,
      -4,
      3,
      -5,
      3
    ],
    "io_out": [
      10,
      8,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(reverse(input),-2),32)))"
  },
  {
    "input": "input : list = [-4, -2, -5, 1, 0]\noutput : list = [-13, -12, -10, -8, -7]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(sub_n([-4, -2, -5, 1, 0],4),4))))",
    "io_inp": [
      -4,
      -2,
      -5,
      1,
      0
    ],
    "io_out": [
      -13,
      -12,
      -10,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(sub_n(input,4),4))))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [14, 5]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(sort_des([-5, 4]),-4),-4),-2),28)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      14,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(sort_des(input),-4),-4),-2),28)"
  },
  {
    "input": "input : list = [5, -2, -3, -1]\noutput : list = [-7, 14]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take([5, -2, -3, -1],2),3)),1)",
    "io_inp": [
      5,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -7,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(input,2),3)),1)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(sort_des([1, -1])),16),2))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(sort_des(input)),16),2))"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-2, 5, 5]",
    "output": "generated_output : list = take(sort_asc(add_n([2, -5, 2],3)),14)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,3)),14)"
  },
  {
    "input": "input : list = [-4, 5, -2, -3, 4, 3]\noutput : list = [16, 12, 8, -12, -16, -20]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-4, 5, -2, -3, 4, 3])),-4)",
    "io_inp": [
      -4,
      5,
      -2,
      -3,
      4,
      3
    ],
    "io_out": [
      16,
      12,
      8,
      -12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [1, 0, 1, 4, -4]\noutput : list = [2, 1, 2, 5, -3]",
    "output": "generated_output : list = sub_n([1, 0, 1, 4, -4],-1)",
    "io_inp": [
      1,
      0,
      1,
      4,
      -4
    ],
    "io_out": [
      2,
      1,
      2,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse([-4, -2])",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sub_n(reverse([4, 4]),-1),2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-1),2)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [5, 15, 25]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(sort_asc([5, 1, 3]))),5))",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      5,
      15,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des([1, 1, 5]),1)))",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(input),1)))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [7, 7]",
    "output": "generated_output : list = sub_n(reverse(reverse([2, 2])),-5)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-5)"
  },
  {
    "input": "input : list = [-4, -3, -5, -2, -4, 2]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take([-4, -3, -5, -2, -4, 2],2)",
    "io_inp": [
      -4,
      -3,
      -5,
      -2,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [2, 3, 4]",
    "output": "generated_output : list = take(reverse(reverse(add_n([-3, -2, -1],5))),30)",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(input,5))),30)"
  },
  {
    "input": "input : list = [0, -5, 4, 2]\noutput : list = [10, 8, 6, 1]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(reverse([0, -5, 4, 2]),3)),3),4)",
    "io_inp": [
      0,
      -5,
      4,
      2
    ],
    "io_out": [
      10,
      8,
      6,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(reverse(input),3)),3),4)"
  },
  {
    "input": "input : list = [4, 4, 0]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(sort_asc([4, 4, 0])),-4),4),4)",
    "io_inp": [
      4,
      4,
      0
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(sort_asc(input)),-4),4),4)"
  },
  {
    "input": "input : list = [-1, -1, -1, 4, -5, 2]\noutput : list = [1, -6, 3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(take(drop([-1, -1, -1, 4, -5, 2],3),7)),5),-4)",
    "io_inp": [
      -1,
      -1,
      -1,
      4,
      -5,
      2
    ],
    "io_out": [
      1,
      -6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(take(drop(input,3),7)),5),-4)"
  },
  {
    "input": "input : list = [-4, 3, 4, 3]\noutput : list = [-11, -7, -7, 21]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(sort_des([-4, 3, 4, 3]),-4),-5)))",
    "io_inp": [
      -4,
      3,
      4,
      3
    ],
    "io_out": [
      -11,
      -7,
      -7,
      21
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(sort_des(input),-4),-5)))"
  },
  {
    "input": "input : list = [0, -4, -2, 1]\noutput : list = [4, 0, 2, 5]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(mul_n([0, -4, -2, 1],-1),-1),21),1),-3)",
    "io_inp": [
      0,
      -4,
      -2,
      1
    ],
    "io_out": [
      4,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(mul_n(input,-1),-1),21),1),-3)"
  },
  {
    "input": "input : list = [5, 4, -1, -3, 2]\noutput : list = [5, 4, 2, -1, -3]",
    "output": "generated_output : list = sort_des([5, 4, -1, -3, 2])",
    "io_inp": [
      5,
      4,
      -1,
      -3,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -4, -1, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(add_n(take([5, -4, -1, -2],1),-1))",
    "io_inp": [
      5,
      -4,
      -1,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(input,1),-1))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [6, -2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(mul_n([-3, -1],2),15),-2),5),1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(mul_n(input,2),15),-2),5),1)"
  },
  {
    "input": "input : list = [2, -4, 3, 3, -2]\noutput : list = [-6, -4, 0, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(sort_asc([2, -4, 3, 3, -2]),6))),2)",
    "io_inp": [
      2,
      -4,
      3,
      3,
      -2
    ],
    "io_out": [
      -6,
      -4,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(sort_asc(input),6))),2)"
  },
  {
    "input": "input : list = [-5, -1, 0, -1, 3, -4]\noutput : list = [-2, 5, 1, 2, 1, -3]",
    "output": "generated_output : list = add_n(sub_n(reverse([-5, -1, 0, -1, 3, -4]),-4),-2)",
    "io_inp": [
      -5,
      -1,
      0,
      -1,
      3,
      -4
    ],
    "io_out": [
      -2,
      5,
      1,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),-4),-2)"
  },
  {
    "input": "input : list = [4, 2, 1, 5, -1]\noutput : list = [-6, -4, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(sub_n([4, 2, 1, 5, -1],5))),12))",
    "io_inp": [
      4,
      2,
      1,
      5,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(sub_n(input,5))),12))"
  },
  {
    "input": "input : list = [4, 0, 5, 5, -2]\noutput : list = [7, 7, 6, 2, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse([4, 0, 5, 5, -2])),2))",
    "io_inp": [
      4,
      0,
      5,
      5,
      -2
    ],
    "io_out": [
      7,
      7,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(input)),2))"
  },
  {
    "input": "input : list = [1, 3, 2, 4]\noutput : list = [84, 64, 44, 24]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(mul_n([1, 3, 2, 4],4),5),17),4))",
    "io_inp": [
      1,
      3,
      2,
      4
    ],
    "io_out": [
      84,
      64,
      44,
      24
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(mul_n(input,4),5),17),4))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(sub_n([4, 1],4),1))),-3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(sub_n(input,4),1))),-3)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [2, -5, 5]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(mul_n([-2, 5, -5],-1)))))",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      2,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [1, 2, -2, 3, 0]\noutput : list = [-6, 2, 6, 10, 14]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_asc([1, 2, -2, 3, 0])),-2),-2),2)",
    "io_inp": [
      1,
      2,
      -2,
      3,
      0
    ],
    "io_out": [
      -6,
      2,
      6,
      10,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_asc(input)),-2),-2),2)"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(drop([1, 4, -5],1),1),-1))",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(drop(input,1),1),-1))"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(take([-1, 2, 1],1)))),-2)",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(take(input,1)))),-2)"
  },
  {
    "input": "input : list = [2, 5, 2]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(take([2, 5, 2],1),5)),-5),2)",
    "io_inp": [
      2,
      5,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(take(input,1),5)),-5),2)"
  },
  {
    "input": "input : list = [0, -5, -2, 1, -1, -3]\noutput : list = [0, 20]",
    "output": "generated_output : list = mul_n(take(take([0, -5, -2, 1, -1, -3],2),3),-4)",
    "io_inp": [
      0,
      -5,
      -2,
      1,
      -1,
      -3
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,2),3),-4)"
  },
  {
    "input": "input : list = [1, 2, 5, -4, -4]\noutput : list = [-7, -7, 2, -1, -2]",
    "output": "generated_output : list = add_n(reverse([1, 2, 5, -4, -4]),-3)",
    "io_inp": [
      1,
      2,
      5,
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [0, 1, -5, -5, -1]\noutput : list = [-1, -5, -5]",
    "output": "generated_output : list = drop(sort_des([0, 1, -5, -5, -1]),2)",
    "io_inp": [
      0,
      1,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),2)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [9, 6]",
    "output": "generated_output : list = mul_n([-3, -2],-3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, -3, -2, -1]\noutput : list = [-9]",
    "output": "generated_output : list = take(sub_n(take(take(mul_n([3, -3, -2, -1],-4),1),4),-3),33)",
    "io_inp": [
      3,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(mul_n(input,-4),1),4),-3),33)"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(take([0, 3, -2],1),5),6),-4))",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(take(input,1),5),6),-4))"
  },
  {
    "input": "input : list = [3, 2, 4, 3]\noutput : list = [34, 46]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(drop([3, 2, 4, 3],2),4),3)),-2)",
    "io_inp": [
      3,
      2,
      4,
      3
    ],
    "io_out": [
      34,
      46
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(drop(input,2),4),3)),-2)"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(take([-3, 5, -5],1)))),-3)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(take(input,1)))),-3)"
  },
  {
    "input": "input : list = [-4, -5, -5, 1, 5]\noutput : list = [-96, -32, 48, 64, 64]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(add_n([-4, -5, -5, 1, 5],1),-4),4)))",
    "io_inp": [
      -4,
      -5,
      -5,
      1,
      5
    ],
    "io_out": [
      -96,
      -32,
      48,
      64,
      64
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(add_n(input,1),-4),4)))"
  },
  {
    "input": "input : list = [3, 2, 1, 5, 0]\noutput : list = [-3, -2, -1, 0, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(add_n([3, 2, 1, 5, 0],-4)))),-1)",
    "io_inp": [
      3,
      2,
      1,
      5,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(add_n(input,-4)))),-1)"
  },
  {
    "input": "input : list = [-1, 5, -4, 5, 0, 3]\noutput : list = [-4, -1, 0, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse([-1, 5, -4, 5, 0, 3]))",
    "io_inp": [
      -1,
      5,
      -4,
      5,
      0,
      3
    ],
    "io_out": [
      -4,
      -1,
      0,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, 5, -4, 1]\noutput : list = [3, 6, 8, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n([-1, 5, -4, 1],-3)),4)))",
    "io_inp": [
      -1,
      5,
      -4,
      1
    ],
    "io_out": [
      3,
      6,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n(input,-3)),4)))"
  },
  {
    "input": "input : list = [5, -4, 0, 2]\noutput : list = [-6, 0, 12, -15]",
    "output": "generated_output : list = reverse(mul_n([5, -4, 0, 2],-3))",
    "io_inp": [
      5,
      -4,
      0,
      2
    ],
    "io_out": [
      -6,
      0,
      12,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [9, 7, 0]",
    "output": "generated_output : list = sort_des(add_n([2, -5, 4],5))",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      9,
      7,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [0, -1, -1, 0]\noutput : list = [4, 4, 2, 2]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sub_n([0, -1, -1, 0],2),-4),2)))",
    "io_inp": [
      0,
      -1,
      -1,
      0
    ],
    "io_out": [
      4,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sub_n(input,2),-4),2)))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_asc([3, 2]),2))))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [0, -5, -4, -4]\noutput : list = [-20, -16, -16, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(mul_n([0, -5, -4, -4],4)))))",
    "io_inp": [
      0,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -20,
      -16,
      -16,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-2, -1, -1, 5]\noutput : list = [5, 2, 2, -16]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(mul_n([-2, -1, -1, 5],-3)),4),-5))",
    "io_inp": [
      -2,
      -1,
      -1,
      5
    ],
    "io_out": [
      5,
      2,
      2,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(mul_n(input,-3)),4),-5))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [6, -8]",
    "output": "generated_output : list = take(take(sort_des(reverse(mul_n([3, -4],2))),29),31)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      6,
      -8
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(mul_n(input,2))),29),31)"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [-10, -4]",
    "output": "generated_output : list = sort_asc(mul_n(drop([-3, 2, 5],1),-2))",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,1),-2))"
  },
  {
    "input": "input : list = [-3, -4, 1, 0]\noutput : list = [9, 12, -3, 0]",
    "output": "generated_output : list = mul_n([-3, -4, 1, 0],-3)",
    "io_inp": [
      -3,
      -4,
      1,
      0
    ],
    "io_out": [
      9,
      12,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -2, -4, 5, 3, 5]\noutput : list = [9, 9, 7, 3, 2, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(reverse([-1, -2, -4, 5, 3, 5]),-4))))",
    "io_inp": [
      -1,
      -2,
      -4,
      5,
      3,
      5
    ],
    "io_out": [
      9,
      9,
      7,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(reverse(input),-4))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([-4, 4])",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, 5, 5]\noutput : list = [5, 5, 2]",
    "output": "generated_output : list = sort_des(drop([-1, 2, 5, 5],1))",
    "io_inp": [
      -1,
      2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [3, -3, -3]\noutput : list = [24, -24, -24]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n([3, -3, -3],-2),-4),24)))",
    "io_inp": [
      3,
      -3,
      -3
    ],
    "io_out": [
      24,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n(input,-2),-4),24)))"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [-6, 0, 2]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sub_n([-5, 1, 3],-1)),1)),-3)",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      -6,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sub_n(input,-1)),1)),-3)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(drop([1, -1, 1],1))",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 5, -4, 1, -2]\noutput : list = [-4, -4, -2, 1, 5]",
    "output": "generated_output : list = sort_asc(reverse([-4, 5, -4, 1, -2]))",
    "io_inp": [
      -4,
      5,
      -4,
      1,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, -1, -5, 1, 3, 4]\noutput : list = [2, -6, 10, -14, -22, -26]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n([-3, -1, -5, 1, 3, 4],3),-4),3),-1)",
    "io_inp": [
      -3,
      -1,
      -5,
      1,
      3,
      4
    ],
    "io_out": [
      2,
      -6,
      10,
      -14,
      -22,
      -26
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(input,3),-4),3),-1)"
  },
  {
    "input": "input : list = [-4, -3, -2, 3, -4]\noutput : list = [-4, 3, -2, -3, -4]",
    "output": "generated_output : list = take(reverse([-4, -3, -2, 3, -4]),19)",
    "io_inp": [
      -4,
      -3,
      -2,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),19)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-11, -75]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n([3, -5],2),5),4),4),1)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -11,
      -75
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n(input,2),5),4),4),1)"
  },
  {
    "input": "input : list = [4, 4, 5, 4, -2]\noutput : list = [3, 9, 10, 9, 9]",
    "output": "generated_output : list = reverse(sub_n([4, 4, 5, 4, -2],-5))",
    "io_inp": [
      4,
      4,
      5,
      4,
      -2
    ],
    "io_out": [
      3,
      9,
      10,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-5, 2, 3]\noutput : list = [-7, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n([-5, 2, 3],2))",
    "io_inp": [
      -5,
      2,
      3
    ],
    "io_out": [
      -7,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-6, -1]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(add_n([1, -4],3))),23),-5)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(add_n(input,3))),23),-5)"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(take([-5, 3, -1],1)))),-3)",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(take(input,1)))),-3)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [3, 0, -2]",
    "output": "generated_output : list = sort_des([3, 0, -2])",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5, 0, -5, -5, -1]\noutput : list = [5, 5, 4, 0, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(sort_des([0, -5, 0, -5, -5, -1]))),-5))",
    "io_inp": [
      0,
      -5,
      0,
      -5,
      -5,
      -1
    ],
    "io_out": [
      5,
      5,
      4,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [1, 5, -2, 5]\noutput : list = [11, 11, -9, -24]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(sub_n([1, 5, -2, 5],3),1),5)),-4)",
    "io_inp": [
      1,
      5,
      -2,
      5
    ],
    "io_out": [
      11,
      11,
      -9,
      -24
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(sub_n(input,3),1),5)),-4)"
  },
  {
    "input": "input : list = [4, -3, 0, 2]\noutput : list = [-2, -4, -6, -9]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(sort_des([4, -3, 0, 2])),-1)),-5)",
    "io_inp": [
      4,
      -3,
      0,
      2
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(sort_des(input)),-1)),-5)"
  },
  {
    "input": "input : list = [5, 2, -2, 0, -4, 2]\noutput : list = [6, 0, 4]",
    "output": "generated_output : list = reverse(sub_n(take(drop([5, 2, -2, 0, -4, 2],3),16),-4))",
    "io_inp": [
      5,
      2,
      -2,
      0,
      -4,
      2
    ],
    "io_out": [
      6,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(drop(input,3),16),-4))"
  },
  {
    "input": "input : list = [4, -1, 0, 2]\noutput : list = [2, 0, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_des([4, -1, 0, 2])),-1),-1))",
    "io_inp": [
      4,
      -1,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_des(input)),-1),-1))"
  },
  {
    "input": "input : list = [-3, 3, -1, -4, 3, 5]\noutput : list = [20, 15, 5, -15, -15, -25]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(sort_asc([-3, 3, -1, -4, 3, 5]),-5))),12)",
    "io_inp": [
      -3,
      3,
      -1,
      -4,
      3,
      5
    ],
    "io_out": [
      20,
      15,
      5,
      -15,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(sort_asc(input),-5))),12)"
  },
  {
    "input": "input : list = [-4, 4, -3, -3]\noutput : list = [14, 11, 11, -10]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(mul_n([-4, 4, -3, -3],3),-1)),-1),-3)",
    "io_inp": [
      -4,
      4,
      -3,
      -3
    ],
    "io_out": [
      14,
      11,
      11,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(mul_n(input,3),-1)),-1),-3)"
  },
  {
    "input": "input : list = [-3, -5, -1, 4, 3, -4]\noutput : list = [11, 10, 6, 4, 3, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(add_n([-3, -5, -1, 4, 3, -4],-3)),5)),-5)",
    "io_inp": [
      -3,
      -5,
      -1,
      4,
      3,
      -4
    ],
    "io_out": [
      11,
      10,
      6,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(add_n(input,-3)),5)),-5)"
  },
  {
    "input": "input : list = [-5, -5, -4, -2, 2]\noutput : list = [-14, 6, 16, 21, 21]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(mul_n([-5, -5, -4, -2, 2],-5)),-4)),35)",
    "io_inp": [
      -5,
      -5,
      -4,
      -2,
      2
    ],
    "io_out": [
      -14,
      6,
      16,
      21,
      21
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(mul_n(input,-5)),-4)),35)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [3, -5]",
    "output": "generated_output : list = add_n(drop([-1, 5, -3],1),-2)",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [0, 2, -4, 2, 2, 0]\noutput : list = [-8, -10]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(take([0, 2, -4, 2, 2, 0],2),4),4)),-2)",
    "io_inp": [
      0,
      2,
      -4,
      2,
      2,
      0
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(take(input,2),4),4)),-2)"
  },
  {
    "input": "input : list = [1, 0, 3, -2, 5, -4]\noutput : list = [3, -3, -9, -12, -18, -24]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(reverse([1, 0, 3, -2, 5, -4]),4)),3))",
    "io_inp": [
      1,
      0,
      3,
      -2,
      5,
      -4
    ],
    "io_out": [
      3,
      -3,
      -9,
      -12,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(reverse(input),4)),3))"
  },
  {
    "input": "input : list = [3, -3, -1, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse([3, -3, -1, -3])),1),4)",
    "io_inp": [
      3,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(input)),1),4)"
  },
  {
    "input": "input : list = [-4, -4, 1, -4, -4]\noutput : list = [24, 24, 9, 24, 24]",
    "output": "generated_output : list = mul_n(reverse(add_n([-4, -4, 1, -4, -4],-4)),-3)",
    "io_inp": [
      -4,
      -4,
      1,
      -4,
      -4
    ],
    "io_out": [
      24,
      24,
      9,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-4)),-3)"
  },
  {
    "input": "input : list = [-4, -3, -1, 4, -2]\noutput : list = [0, 4, 12, 32, 8]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(reverse([-4, -3, -1, 4, -2])),-3),4),-4)",
    "io_inp": [
      -4,
      -3,
      -1,
      4,
      -2
    ],
    "io_out": [
      0,
      4,
      12,
      32,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(reverse(input)),-3),4),-4)"
  },
  {
    "input": "input : list = [2, 2, 0, -1, -3, 3]\noutput : list = [2, 2, 0, -1]",
    "output": "generated_output : list = take([2, 2, 0, -1, -3, 3],4)",
    "io_inp": [
      2,
      2,
      0,
      -1,
      -3,
      3
    ],
    "io_out": [
      2,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_des([1, 3, -1]),3),4)",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),3),4)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [6, 3]",
    "output": "generated_output : list = sub_n([5, 2],-1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 1, 4, 3, 2, -4]\noutput : list = [-4, -4, 1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des([-4, 1, 4, 3, 2, -4]),12))",
    "io_inp": [
      -4,
      1,
      4,
      3,
      2,
      -4
    ],
    "io_out": [
      -4,
      -4,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),12))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n(sort_des([5, 5]),3),-1)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(sort_des(input),3),-1)))"
  },
  {
    "input": "input : list = [-5, 3, -4, -4, -5, 5]\noutput : list = [9, 7, 0, 0, -1, -1]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sort_des([-5, 3, -4, -4, -5, 5]),-5),1)),1)",
    "io_inp": [
      -5,
      3,
      -4,
      -4,
      -5,
      5
    ],
    "io_out": [
      9,
      7,
      0,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sort_des(input),-5),1)),1)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [29, 45, 33]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(sub_n([1, -3, 0],5),1),-2),-4),1)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      29,
      45,
      33
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(sub_n(input,5),1),-2),-4),1)"
  },
  {
    "input": "input : list = [1, -5, -4, 5, 2]\noutput : list = [-33, -15, -9, 21, 27]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(reverse([1, -5, -4, 5, 2]),-2),3)),3)",
    "io_inp": [
      1,
      -5,
      -4,
      5,
      2
    ],
    "io_out": [
      -33,
      -15,
      -9,
      21,
      27
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(reverse(input),-2),3)),3)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [3, 9, 15]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(add_n([1, 3, -1],-4)))),-3)",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      3,
      9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(add_n(input,-4)))),-3)"
  },
  {
    "input": "input : list = [0, 2, 4, -2, 2, -1]\noutput : list = [-90, -45, 0, 90, 90, 180]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_des([0, 2, 4, -2, 2, -1]),5),3),3))",
    "io_inp": [
      0,
      2,
      4,
      -2,
      2,
      -1
    ],
    "io_out": [
      -90,
      -45,
      0,
      90,
      90,
      180
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_des(input),5),3),3))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-96, -32]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(mul_n([-3, -1],4)),-2),-4))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -96,
      -32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(mul_n(input,4)),-2),-4))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(sort_des([-3, -3])),5),-5))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(sort_des(input)),5),-5))"
  },
  {
    "input": "input : list = [4, -5, -3, -5, 2, -3]\noutput : list = [-6, -1, -8]",
    "output": "generated_output : list = reverse(drop(add_n([4, -5, -3, -5, 2, -3],-3),3))",
    "io_inp": [
      4,
      -5,
      -3,
      -5,
      2,
      -3
    ],
    "io_out": [
      -6,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(input,-3),3))"
  },
  {
    "input": "input : list = [4, 3, -4, 4]\noutput : list = [3, 3, 2, -5]",
    "output": "generated_output : list = sort_des(add_n([4, 3, -4, 4],-1))",
    "io_inp": [
      4,
      3,
      -4,
      4
    ],
    "io_out": [
      3,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [-1, 1, 4, 0, -3]\noutput : list = [-6, -2, 0, 2, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n([-1, 1, 4, 0, -3],2))))",
    "io_inp": [
      -1,
      1,
      4,
      0,
      -3
    ],
    "io_out": [
      -6,
      -2,
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(input,2))))"
  },
  {
    "input": "input : list = [-2, 0, 3, 5]\noutput : list = [5, 3, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, 3, 5])",
    "io_inp": [
      -2,
      0,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 4, -3]\noutput : list = [-5, -3, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([-5, 5, 4, -3]))",
    "io_inp": [
      -5,
      5,
      4,
      -3
    ],
    "io_out": [
      -5,
      -3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [5, -2, -3]",
    "output": "generated_output : list = sub_n(reverse([-4, -3, 4]),-1)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [27, 12, 9]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sub_n([1, 0, -5],4),-3))))",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      27,
      12,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sub_n(input,4),-3))))"
  },
  {
    "input": "input : list = [5, 0, 0]\noutput : list = [-5, -5, 0]",
    "output": "generated_output : list = add_n(sort_asc([5, 0, 0]),-5)",
    "io_inp": [
      5,
      0,
      0
    ],
    "io_out": [
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-2, 4, 2, -1, -4]\noutput : list = [0, 2, 3, 6, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sub_n([-2, 4, 2, -1, -4],2),3)),4),-5)",
    "io_inp": [
      -2,
      4,
      2,
      -1,
      -4
    ],
    "io_out": [
      0,
      2,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sub_n(input,2),3)),4),-5)"
  },
  {
    "input": "input : list = [-1, 2, 5, -3, 2, 5]\noutput : list = [-12, -18, -27, -27, -36, -36]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(add_n(sub_n([-1, 2, 5, -3, 2, 5],-3),4)),-3))",
    "io_inp": [
      -1,
      2,
      5,
      -3,
      2,
      5
    ],
    "io_out": [
      -12,
      -18,
      -27,
      -27,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(add_n(sub_n(input,-3),4)),-3))"
  },
  {
    "input": "input : list = [-5, -4, 4]\noutput : list = [-20, 20, 25]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n([-5, -4, 4],-5))))",
    "io_inp": [
      -5,
      -4,
      4
    ],
    "io_out": [
      -20,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(input,-5))))"
  },
  {
    "input": "input : list = [-2, -2, 2, 4, -3]\noutput : list = [-3, 4, 2, -2, -2]",
    "output": "generated_output : list = reverse([-2, -2, 2, 4, -3])",
    "io_inp": [
      -2,
      -2,
      2,
      4,
      -3
    ],
    "io_out": [
      -3,
      4,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [1, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take(reverse([-4, -5]),5))),-5)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(reverse(input),5))),-5)"
  },
  {
    "input": "input : list = [2, -3, -4, -4, -5, -5]\noutput : list = [12, 12, 10, 10, 8, -2]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_des([2, -3, -4, -4, -5, -5])),1),21),-2)",
    "io_inp": [
      2,
      -3,
      -4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      12,
      12,
      10,
      10,
      8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_des(input)),1),21),-2)"
  },
  {
    "input": "input : list = [-1, 3, -2, -4]\noutput : list = [-2, 2, -3, -5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse(reverse([-1, 3, -2, -4])),5),4),2)",
    "io_inp": [
      -1,
      3,
      -2,
      -4
    ],
    "io_out": [
      -2,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(reverse(input)),5),4),2)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [6, 8, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(sort_asc([1, 3, 4]),8)),5))",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(sort_asc(input),8)),5))"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [-3, -15, -18]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sub_n([-3, -2, 2],2)),3),3))",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      -3,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sub_n(input,2)),3),3))"
  },
  {
    "input": "input : list = [5, -1, 0]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_asc([5, -1, 0])),3)),1)",
    "io_inp": [
      5,
      -1,
      0
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_asc(input)),3)),1)"
  },
  {
    "input": "input : list = [-1, 3, 2, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take(drop([-1, 3, 2, -1, 1],3),17))))",
    "io_inp": [
      -1,
      3,
      2,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(drop(input,3),17))))"
  },
  {
    "input": "input : list = [-3, 5, 5, 3, -4]\noutput : list = [2, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(drop([-3, 5, 5, 3, -4],3),1)))",
    "io_inp": [
      -3,
      5,
      5,
      3,
      -4
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(drop(input,3),1)))"
  },
  {
    "input": "input : list = [4, 4, -2, 0, 2, -1]\noutput : list = [-7, -5, -3, -6]",
    "output": "generated_output : list = add_n(drop([4, 4, -2, 0, 2, -1],2),-5)",
    "io_inp": [
      4,
      4,
      -2,
      0,
      2,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [9, -12]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(mul_n([5, -2],-3))),4),1)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      9,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(mul_n(input,-3))),4),1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse(reverse([-3, 2]))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, -5, 0, -1, 5]\noutput : list = [8, 3, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(drop([-4, -5, 0, -1, 5],2),-3)))",
    "io_inp": [
      -4,
      -5,
      0,
      -1,
      5
    ],
    "io_out": [
      8,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(drop(input,2),-3)))"
  },
  {
    "input": "input : list = [-3, 0, 1, -2, 2, 5]\noutput : list = [0, -3, -4, -7]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(drop([-3, 0, 1, -2, 2, 5],2))),-5))",
    "io_inp": [
      -3,
      0,
      1,
      -2,
      2,
      5
    ],
    "io_out": [
      0,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(drop(input,2))),-5))"
  },
  {
    "input": "input : list = [-3, -1, 4, -1, -3, -2]\noutput : list = [4, -1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(drop([-3, -1, 4, -1, -3, -2],2)))",
    "io_inp": [
      -3,
      -1,
      4,
      -1,
      -3,
      -2
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-4, -10]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(add_n([-1, 2],3),-2))),29)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(add_n(input,3),-2))),29)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [10, 8, -10]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sort_des([-5, 5, -4]),-2))))",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      10,
      8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-1, -1])),-1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [1, 6]",
    "output": "generated_output : list = add_n(sort_asc([4, -1]),2)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-3, -1, -5, -3]\noutput : list = [-3, -5, -1, -3]",
    "output": "generated_output : list = reverse([-3, -1, -5, -3])",
    "io_inp": [
      -3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0, -5, -1]\noutput : list = [-3, -4, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(sort_des([-5, 0, -5, -1]),1))),3)",
    "io_inp": [
      -5,
      0,
      -5,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(sort_des(input),1))),3)"
  },
  {
    "input": "input : list = [0, -2, 4, -5, -4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(drop([0, -2, 4, -5, -4, 5],4)))))",
    "io_inp": [
      0,
      -2,
      4,
      -5,
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(drop(input,4)))))"
  },
  {
    "input": "input : list = [-5, -3, -1, -3]\noutput : list = [-10, -8, -8, -6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(add_n([-5, -3, -1, -3],-5)))))",
    "io_inp": [
      -5,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [-2, 5, -2, -5, -5]\noutput : list = [-2, -2, 1, 1, 8]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(sub_n([-2, 5, -2, -5, -5],-3))),22))",
    "io_inp": [
      -2,
      5,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2,
      1,
      1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(sub_n(input,-3))),22))"
  },
  {
    "input": "input : list = [-5, -1, -2, 1, -1, -1]\noutput : list = [-10, -7, -6, -6, -6, -4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(add_n([-5, -1, -2, 1, -1, -1],-4),20))),-1)",
    "io_inp": [
      -5,
      -1,
      -2,
      1,
      -1,
      -1
    ],
    "io_out": [
      -10,
      -7,
      -6,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(add_n(input,-4),20))),-1)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [0, 6, -6]",
    "output": "generated_output : list = mul_n([0, 3, -3],2)",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      0,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [4, 0, -2, 0, -1, 2]\noutput : list = [0, -6, -4, -8, -4, 4]",
    "output": "generated_output : list = mul_n(add_n(take(take(reverse([4, 0, -2, 0, -1, 2]),26),9),-2),2)",
    "io_inp": [
      4,
      0,
      -2,
      0,
      -1,
      2
    ],
    "io_out": [
      0,
      -6,
      -4,
      -8,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(reverse(input),26),9),-2),2)"
  },
  {
    "input": "input : list = [-1, 1, 5, 3, -4]\noutput : list = [21, 11, 1, -9, -24]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(mul_n([-1, 1, 5, 3, -4],5),20),-4)))",
    "io_inp": [
      -1,
      1,
      5,
      3,
      -4
    ],
    "io_out": [
      21,
      11,
      1,
      -9,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(mul_n(input,5),20),-4)))"
  },
  {
    "input": "input : list = [-4, -3, -4, 3, 1]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(take(sort_asc(reverse(take([-4, -3, -4, 3, 1],2))),7),22)",
    "io_inp": [
      -4,
      -3,
      -4,
      3,
      1
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(take(input,2))),7),22)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [80, 55]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(add_n([-4, 1],-4),-5),3),-5))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      80,
      55
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(add_n(input,-4),-5),3),-5))"
  },
  {
    "input": "input : list = [-4, -1, -3, 5]\noutput : list = [80, -16, -48, -64]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_des([-4, -1, -3, 5]),-4))),-4)",
    "io_inp": [
      -4,
      -1,
      -3,
      5
    ],
    "io_out": [
      80,
      -16,
      -48,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_des(input),-4))),-4)"
  },
  {
    "input": "input : list = [5, 2, -4, 4]\noutput : list = [-1, 5, 7, 8]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc([5, 2, -4, 4])),-3))",
    "io_inp": [
      5,
      2,
      -4,
      4
    ],
    "io_out": [
      -1,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [0, -2, -7]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(sort_des([5, -2, 3])),10),-5))",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(sort_des(input)),10),-5))"
  },
  {
    "input": "input : list = [-1, 3, -3, 0, 4]\noutput : list = [-63, -47, 1, 17, 49]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(reverse([-1, 3, -3, 0, 4])),-4),4),-1)",
    "io_inp": [
      -1,
      3,
      -3,
      0,
      4
    ],
    "io_out": [
      -63,
      -47,
      1,
      17,
      49
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(reverse(input)),-4),4),-1)"
  },
  {
    "input": "input : list = [5, -5, 3, 5, 4, 0]\noutput : list = [-7, 1, 3, 2, -2]",
    "output": "generated_output : list = add_n(add_n(drop([5, -5, 3, 5, 4, 0],1),-4),2)",
    "io_inp": [
      5,
      -5,
      3,
      5,
      4,
      0
    ],
    "io_out": [
      -7,
      1,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(input,1),-4),2)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [0, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([0, -2, -5])))",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [4, -4, 0]",
    "output": "generated_output : list = take(reverse(reverse(reverse([0, -4, 4]))),3)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(input))),3)"
  },
  {
    "input": "input : list = [-2, -3, 5, 3, -5]\noutput : list = [12, 20, 18, 10]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(drop([-2, -3, 5, 3, -5],1),3),-4),-4),-4)",
    "io_inp": [
      -2,
      -3,
      5,
      3,
      -5
    ],
    "io_out": [
      12,
      20,
      18,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(drop(input,1),3),-4),-4),-4)"
  },
  {
    "input": "input : list = [3, -1, -5, -5, 2]\noutput : list = [-8, -4, -1, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sort_des([3, -1, -5, -5, 2]),4),1),-2))",
    "io_inp": [
      3,
      -1,
      -5,
      -5,
      2
    ],
    "io_out": [
      -8,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sort_des(input),4),1),-2))"
  },
  {
    "input": "input : list = [-1, 3, 4, -2, -5]\noutput : list = [4, 3, -1, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc([-1, 3, 4, -2, -5]))",
    "io_inp": [
      -1,
      3,
      4,
      -2,
      -5
    ],
    "io_out": [
      4,
      3,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -4, 4, -3]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take([-4, -4, 4, -3],2)",
    "io_inp": [
      -4,
      -4,
      4,
      -3
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [7, 0]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_des([2, -5]))),5))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_des(input))),5))"
  },
  {
    "input": "input : list = [5, -2, 2, -5, 3, -3]\noutput : list = [-1, 1, 6, 7]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(drop([5, -2, 2, -5, 3, -3],2)),14),39),-4)",
    "io_inp": [
      5,
      -2,
      2,
      -5,
      3,
      -3
    ],
    "io_out": [
      -1,
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(drop(input,2)),14),39),-4)"
  },
  {
    "input": "input : list = [1, -5, 2, 1, -3, 5]\noutput : list = [5, 2, 1, 1, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sort_asc([1, -5, 2, 1, -3, 5])))))",
    "io_inp": [
      1,
      -5,
      2,
      1,
      -3,
      5
    ],
    "io_out": [
      5,
      2,
      1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 2, 2, 2, 4]\noutput : list = [-6, 0, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(sub_n([-4, 2, 2, 2, 4],2),19))))",
    "io_inp": [
      -4,
      2,
      2,
      2,
      4
    ],
    "io_out": [
      -6,
      0,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(sub_n(input,2),19))))"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [19, 31]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(add_n([1, 5, -5],5),2),3)),-1)",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      19,
      31
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(add_n(input,5),2),3)),-1)"
  },
  {
    "input": "input : list = [3, 3, 5, 4]\noutput : list = [-12, -16]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(drop([3, 3, 5, 4],2),13),-4)),4)",
    "io_inp": [
      3,
      3,
      5,
      4
    ],
    "io_out": [
      -12,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(drop(input,2),13),-4)),4)"
  },
  {
    "input": "input : list = [5, -2, 3, 2, 5]\noutput : list = [5, 2, 3, -2, 5]",
    "output": "generated_output : list = reverse([5, -2, 3, 2, 5])",
    "io_inp": [
      5,
      -2,
      3,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, -4, 1, -2, 3]\noutput : list = [6, 0, 8, -2, 4, -6]",
    "output": "generated_output : list = mul_n([-3, 0, -4, 1, -2, 3],-2)",
    "io_inp": [
      -3,
      0,
      -4,
      1,
      -2,
      3
    ],
    "io_out": [
      6,
      0,
      8,
      -2,
      4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-4, -32]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n([5, -2],5),4),-4))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -4,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(input,5),4),-4))"
  },
  {
    "input": "input : list = [-5, 5, 4, -4, 5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_des(take([-5, 5, 4, -4, 5],1)))",
    "io_inp": [
      -5,
      5,
      4,
      -4,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-1, -1, 1, -2, -3]\noutput : list = [-6, -5, -4, -4, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([-1, -1, 1, -2, -3],-3)))",
    "io_inp": [
      -1,
      -1,
      1,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,-3)))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [15, 35]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sort_asc([2, -2]),-5)),-5))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      15,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sort_asc(input),-5)),-5))"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [2, 4, 14]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n([-2, -1, 4],2))),-1),-5)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      2,
      4,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n(input,2))),-1),-5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(sub_n([-4, -2],-1)),1),13),-4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(sub_n(input,-1)),1),13),-4)"
  },
  {
    "input": "input : list = [2, -4, 0, 1, -5, -2]\noutput : list = [3, 0, 6, 5, 1, 7]",
    "output": "generated_output : list = take(take(sub_n(take(reverse([2, -4, 0, 1, -5, -2]),12),-5),6),52)",
    "io_inp": [
      2,
      -4,
      0,
      1,
      -5,
      -2
    ],
    "io_out": [
      3,
      0,
      6,
      5,
      1,
      7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(reverse(input),12),-5),6),52)"
  },
  {
    "input": "input : list = [0, -4, -5, -2, 1]\noutput : list = [4, 3, 1, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n([0, -4, -5, -2, 1],1))),-3)",
    "io_inp": [
      0,
      -4,
      -5,
      -2,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(input,1))),-3)"
  },
  {
    "input": "input : list = [4, -3, -5, 4]\noutput : list = [57]",
    "output": "generated_output : list = sort_des(add_n(mul_n(drop(mul_n([4, -3, -5, 4],3),3),5),-3))",
    "io_inp": [
      4,
      -3,
      -5,
      4
    ],
    "io_out": [
      57
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(drop(mul_n(input,3),3),5),-3))"
  },
  {
    "input": "input : list = [2, -5, 0, -1, 3, 4]\noutput : list = [-1, 3, 4, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n([2, -5, 0, -1, 3, 4],5),-1))",
    "io_inp": [
      2,
      -5,
      0,
      -1,
      3,
      4
    ],
    "io_out": [
      -1,
      3,
      4,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,5),-1))"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(add_n(take([-2, -3, 3],1),4),-3)",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),4),-3)"
  },
  {
    "input": "input : list = [-5, 1, -3, 2]\noutput : list = [-1, 4]",
    "output": "generated_output : list = add_n(take(drop([-5, 1, -3, 2],2),16),2)",
    "io_inp": [
      -5,
      1,
      -3,
      2
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,2),16),2)"
  },
  {
    "input": "input : list = [-5, 2, -4, -5]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(take([-5, 2, -4, -5],1),16))),-5)",
    "io_inp": [
      -5,
      2,
      -4,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(take(input,1),16))),-5)"
  },
  {
    "input": "input : list = [-5, 4, -5, -4, -5]\noutput : list = [-6, -6, -6, -5, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(reverse([-5, 4, -5, -4, -5]),-2)),3))",
    "io_inp": [
      -5,
      4,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(reverse(input),-2)),3))"
  },
  {
    "input": "input : list = [0, 3, 3, -4]\noutput : list = [4, 4, 1, -3]",
    "output": "generated_output : list = sort_des(add_n([0, 3, 3, -4],1))",
    "io_inp": [
      0,
      3,
      3,
      -4
    ],
    "io_out": [
      4,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [1, -2, -2, -1, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(sub_n(take(take(take([1, -2, -2, -1, 0],2),11),18),3))",
    "io_inp": [
      1,
      -2,
      -2,
      -1,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(take(input,2),11),18),3))"
  },
  {
    "input": "input : list = [1, 3, 1, 1, -2, 1]\noutput : list = [-12, -24, -24, -24, -24, -32]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n([1, 3, 1, 1, -2, 1],-5),1)),-4),1)",
    "io_inp": [
      1,
      3,
      1,
      1,
      -2,
      1
    ],
    "io_out": [
      -12,
      -24,
      -24,
      -24,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n(input,-5),1)),-4),1)"
  },
  {
    "input": "input : list = [-1, 4, -4, 1]\noutput : list = [-12, -3, 3, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(reverse([-1, 4, -4, 1])))),3)",
    "io_inp": [
      -1,
      4,
      -4,
      1
    ],
    "io_out": [
      -12,
      -3,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [6, -3]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(sort_asc([-1, -4]),8),3)),3)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(sort_asc(input),8),3)),3)"
  },
  {
    "input": "input : list = [5, 2, -2]\noutput : list = [8, 5, 1]",
    "output": "generated_output : list = sub_n(add_n([5, 2, -2],-2),-5)",
    "io_inp": [
      5,
      2,
      -2
    ],
    "io_out": [
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),-5)"
  },
  {
    "input": "input : list = [1, 5, -4, -1]\noutput : list = [-10, -7, -5, -1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(add_n([1, 5, -4, -1],-3)),-1),-4))",
    "io_inp": [
      1,
      5,
      -4,
      -1
    ],
    "io_out": [
      -10,
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(add_n(input,-3)),-1),-4))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-19, 21]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n([-5, 5],4),1),1),16)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -19,
      21
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(input,4),1),1),16)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(reverse(take(take(sort_asc([4, -2]),6),3)))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sort_asc(input),6),3)))"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [13, 8, 8]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n([2, -3, -3],-5),4),1),3)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      13,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(input,-5),4),1),3)"
  },
  {
    "input": "input : list = [3, 0, 1, 5, -2, 4]\noutput : list = [3, 5, 6, 8, 9, 10]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc([3, 0, 1, 5, -2, 4]))),5)",
    "io_inp": [
      3,
      0,
      1,
      5,
      -2,
      4
    ],
    "io_out": [
      3,
      5,
      6,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(input))),5)"
  },
  {
    "input": "input : list = [1, -4, 1, 4, -1]\noutput : list = [4, 1, 1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(reverse([1, -4, 1, 4, -1])))))",
    "io_inp": [
      1,
      -4,
      1,
      4,
      -1
    ],
    "io_out": [
      4,
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [3, 2, 0, 4]\noutput : list = [-1, -2, -3, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(take(add_n([3, 2, 0, 4],-5),14)),6))",
    "io_inp": [
      3,
      2,
      0,
      4
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(add_n(input,-5),14)),6))"
  },
  {
    "input": "input : list = [1, -3, -2, -4, -1]\noutput : list = [2, -1, 1, 0, 4]",
    "output": "generated_output : list = add_n(reverse([1, -3, -2, -4, -1]),3)",
    "io_inp": [
      1,
      -3,
      -2,
      -4,
      -1
    ],
    "io_out": [
      2,
      -1,
      1,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-3, 4, -1, 1, 4, -5]\noutput : list = [25, 15, 5, -5, -20, -20]",
    "output": "generated_output : list = mul_n(take(reverse(take(sort_des([-3, 4, -1, 1, 4, -5]),18)),41),-5)",
    "io_inp": [
      -3,
      4,
      -1,
      1,
      4,
      -5
    ],
    "io_out": [
      25,
      15,
      5,
      -5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(sort_des(input),18)),41),-5)"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [0, 4, 12]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(add_n([-3, -2, -5],2),8),14),-4))",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      0,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(add_n(input,2),8),14),-4))"
  },
  {
    "input": "input : list = [-1, 5, 0, 3, 5, 1]\noutput : list = [-2, -1, 0, 2, 4, 4]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(sort_asc([-1, 5, 0, 3, 5, 1]),1)),17))",
    "io_inp": [
      -1,
      5,
      0,
      3,
      5,
      1
    ],
    "io_out": [
      -2,
      -1,
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(sort_asc(input),1)),17))"
  },
  {
    "input": "input : list = [5, -4, 1, 2, -1, -2]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(drop([5, -4, 1, 2, -1, -2],4))),4))",
    "io_inp": [
      5,
      -4,
      1,
      2,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(drop(input,4))),4))"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [-28, -48, -48]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(sort_asc([-1, 4, 4]),3),-5)),-4)",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      -28,
      -48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(sort_asc(input),3),-5)),-4)"
  },
  {
    "input": "input : list = [0, 5, -1, 5]\noutput : list = [5, 0, -25, -25]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(mul_n([0, 5, -1, 5],-5)))))",
    "io_inp": [
      0,
      5,
      -1,
      5
    ],
    "io_out": [
      5,
      0,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_asc([3, 5, 5]),-2),-4),-4))",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_asc(input),-2),-4),-4))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-3, 15]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(mul_n([-4, 2],3),-5),4)))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(mul_n(input,3),-5),4)))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-2, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(add_n([4, 0],-5)))),-1)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(add_n(input,-5)))),-1)"
  },
  {
    "input": "input : list = [1, -2, -2, 4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(drop([1, -2, -2, 4],2),-2)),-2),-2)",
    "io_inp": [
      1,
      -2,
      -2,
      4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(drop(input,2),-2)),-2),-2)"
  },
  {
    "input": "input : list = [3, 2, 4, -1]\noutput : list = [2, 5, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc([3, 2, 4, -1]),-3)",
    "io_inp": [
      3,
      2,
      4,
      -1
    ],
    "io_out": [
      2,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [1, -5, 0, 2, -1, 2]\noutput : list = [-29, -14, -29, -19, 6, -24]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(add_n([1, -5, 0, 2, -1, 2],4),-1),5)),-1)",
    "io_inp": [
      1,
      -5,
      0,
      2,
      -1,
      2
    ],
    "io_out": [
      -29,
      -14,
      -29,
      -19,
      6,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(add_n(input,4),-1),5)),-1)"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [11, 5, 5]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(mul_n([-3, -5, -3],-3)),28),4))",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      11,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(mul_n(input,-3)),28),4))"
  },
  {
    "input": "input : list = [2, 1, 0, 1, 5, 1]\noutput : list = [1, 2, 2, 2, 3, 6]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(sort_des([2, 1, 0, 1, 5, 1]),1),3)),5)",
    "io_inp": [
      2,
      1,
      0,
      1,
      5,
      1
    ],
    "io_out": [
      1,
      2,
      2,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(sort_des(input),1),3)),5)"
  },
  {
    "input": "input : list = [5, 0, 3, 4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = drop([5, 0, 3, 4, 0],3)",
    "io_inp": [
      5,
      0,
      3,
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 4, -1, -3, -3, -4]\noutput : list = [-2, 4, -1, -3, -3, -4]",
    "output": "generated_output : list = mul_n([-2, 4, -1, -3, -3, -4],1)",
    "io_inp": [
      -2,
      4,
      -1,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -2,
      4,
      -1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [5, 0, 2]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n(take([5, 0, 2],1),2))))",
    "io_inp": [
      5,
      0,
      2
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(take(input,1),2))))"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 0, -4],1)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(take([-3, 1, 2],1),4)",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),4)"
  },
  {
    "input": "input : list = [2, 0, 3, 5, -3, -1]\noutput : list = [-5, -3, -2, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(mul_n([2, 0, 3, 5, -3, -1],-1)))))",
    "io_inp": [
      2,
      0,
      3,
      5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [-22, -34]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(drop([-4, 5, 2],1),4),-4)),2)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      -22,
      -34
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(drop(input,1),4),-4)),2)"
  },
  {
    "input": "input : list = [5, -1, -3, 2, 2, 2]\noutput : list = [-8, -8, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(drop([5, -1, -3, 2, 2, 2],3)))),-4)",
    "io_inp": [
      5,
      -1,
      -3,
      2,
      2,
      2
    ],
    "io_out": [
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(drop(input,3)))),-4)"
  },
  {
    "input": "input : list = [5, 5, -2, 3, 5, 5]\noutput : list = [-7, -2, 0, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(drop([5, 5, -2, 3, 5, 5],2),1))),-5)",
    "io_inp": [
      5,
      5,
      -2,
      3,
      5,
      5
    ],
    "io_out": [
      -7,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(drop(input,2),1))),-5)"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(take([2, -5, 4],1))),-4))",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(take(input,1))),-4))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [2, 4]",
    "output": "generated_output : list = sub_n([3, 5],1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-24, -72]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n([-1, -5],-1),-3)),4),-4)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -24,
      -72
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n(input,-1),-3)),4),-4)"
  },
  {
    "input": "input : list = [-1, 1, -5, -5]\noutput : list = [-5, -5, 1, -1]",
    "output": "generated_output : list = take(reverse([-1, 1, -5, -5]),5)",
    "io_inp": [
      -1,
      1,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(drop([-5, 4, 1],1)))))",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [1, 0, 0, 5]\noutput : list = [19, 15, 14, 14]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(add_n([1, 0, 0, 5],3),2),5)),-4)",
    "io_inp": [
      1,
      0,
      0,
      5
    ],
    "io_out": [
      19,
      15,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(add_n(input,3),2),5)),-4)"
  },
  {
    "input": "input : list = [5, 3, 5, -2, -2, -4]\noutput : list = [-2, -2, -4, -9, -9, -11]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(sub_n([5, 3, 5, -2, -2, -4],5),-2))))",
    "io_inp": [
      5,
      3,
      5,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -9,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(sub_n(input,5),-2))))"
  },
  {
    "input": "input : list = [-2, 3, -3, 1, 5, 2]\noutput : list = [17, 5, 1, -15]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(drop([-2, 3, -3, 1, 5, 2],2),4)),11),-3)",
    "io_inp": [
      -2,
      3,
      -3,
      1,
      5,
      2
    ],
    "io_out": [
      17,
      5,
      1,
      -15
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(drop(input,2),4)),11),-3)"
  },
  {
    "input": "input : list = [4, 3, 4, 4]\noutput : list = [19, 14]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(take([4, 3, 4, 4],2),3),5),1))",
    "io_inp": [
      4,
      3,
      4,
      4
    ],
    "io_out": [
      19,
      14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(take(input,2),3),5),1))"
  },
  {
    "input": "input : list = [3, 0, -3, 1, 2, 4]\noutput : list = [3]",
    "output": "generated_output : list = take(take([3, 0, -3, 1, 2, 4],1),8)",
    "io_inp": [
      3,
      0,
      -3,
      1,
      2,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(take(input,1),8)"
  },
  {
    "input": "input : list = [5, 0, -2, -3]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(take([5, 0, -2, -3],1)),2),-2),4)",
    "io_inp": [
      5,
      0,
      -2,
      -3
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(take(input,1)),2),-2),4)"
  },
  {
    "input": "input : list = [3, 0, -4, 5, 3, 5]\noutput : list = [-4, 0, 3]",
    "output": "generated_output : list = sort_asc(take([3, 0, -4, 5, 3, 5],3))",
    "io_inp": [
      3,
      0,
      -4,
      5,
      3,
      5
    ],
    "io_out": [
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [-4, -2, -3, 0, 2]\noutput : list = [-15, -9]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(drop([-4, -2, -3, 0, 2],3),4)),-3),-3)",
    "io_inp": [
      -4,
      -2,
      -3,
      0,
      2
    ],
    "io_out": [
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(drop(input,3),4)),-3),-3)"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take([2, -3, 5],1)),5))",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(input,1)),5))"
  },
  {
    "input": "input : list = [-5, -1, -3, -2, 3]\noutput : list = [1, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(drop([-5, -1, -3, -2, 3],3))),3))",
    "io_inp": [
      -5,
      -1,
      -3,
      -2,
      3
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(drop(input,3))),3))"
  },
  {
    "input": "input : list = [1, -1, -5, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = drop([1, -1, -5, 5, -5],3)",
    "io_inp": [
      1,
      -1,
      -5,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 1, 1]\noutput : list = [-1, -1, -17]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(sort_des([5, 1, 1])),-4)),3)",
    "io_inp": [
      5,
      1,
      1
    ],
    "io_out": [
      -1,
      -1,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(sort_des(input)),-4)),3)"
  },
  {
    "input": "input : list = [0, 5, 0, 4]\noutput : list = [-8, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(drop([0, 5, 0, 4],2),-3),4)))",
    "io_inp": [
      0,
      5,
      0,
      4
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(drop(input,2),-3),4)))"
  },
  {
    "input": "input : list = [3, -3, -2, 2, 4]\noutput : list = [-2, -1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n([3, -3, -2, 2, 4],-1))",
    "io_inp": [
      3,
      -3,
      -2,
      2,
      4
    ],
    "io_out": [
      -2,
      -1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [1, 3, -2, 5, -1, 5]\noutput : list = [3, -2, 5, -1, 5]",
    "output": "generated_output : list = drop([1, 3, -2, 5, -1, 5],1)",
    "io_inp": [
      1,
      3,
      -2,
      5,
      -1,
      5
    ],
    "io_out": [
      3,
      -2,
      5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -2, -3, 0, 2]\noutput : list = [-3, -2, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, -2, -3, 0, 2]))",
    "io_inp": [
      3,
      -2,
      -3,
      0,
      2
    ],
    "io_out": [
      -3,
      -2,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -5, 2, 4, -5, -4]\noutput : list = [10, 10, 8, 2, -4, -8]",
    "output": "generated_output : list = mul_n(take(sort_asc([-1, -5, 2, 4, -5, -4]),29),-2)",
    "io_inp": [
      -1,
      -5,
      2,
      4,
      -5,
      -4
    ],
    "io_out": [
      10,
      10,
      8,
      2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),29),-2)"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [12, 10, 2]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-1, 3, 4]),-2),2)",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      12,
      10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-2),2)"
  },
  {
    "input": "input : list = [-2, -3, 0, 1, 3]\noutput : list = [-1, 0, 2, 3, 5]",
    "output": "generated_output : list = add_n(sort_asc([-2, -3, 0, 1, 3]),2)",
    "io_inp": [
      -2,
      -3,
      0,
      1,
      3
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-2, 0, 4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = drop([-2, 0, 4, 2],2)",
    "io_inp": [
      -2,
      0,
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 0, 5, -4, 0, -3]\noutput : list = [-15, 0, -20, 25, 0, -25]",
    "output": "generated_output : list = mul_n(reverse([-5, 0, 5, -4, 0, -3]),5)",
    "io_inp": [
      -5,
      0,
      5,
      -4,
      0,
      -3
    ],
    "io_out": [
      -15,
      0,
      -20,
      25,
      0,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [2, 5, -5, 0]\noutput : list = [-3, -12, 18, 3]",
    "output": "generated_output : list = take(mul_n(take(add_n([2, 5, -5, 0],-1),21),-3),11)",
    "io_inp": [
      2,
      5,
      -5,
      0
    ],
    "io_out": [
      -3,
      -12,
      18,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(take(add_n(input,-1),21),-3),11)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-4, -9]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(reverse([-3, 2]),1),3),6),-4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(reverse(input),1),3),6),-4)"
  },
  {
    "input": "input : list = [1, 5, 0, -4]\noutput : list = [3, -1, -2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([1, 5, 0, -4],-2)))",
    "io_inp": [
      1,
      5,
      0,
      -4
    ],
    "io_out": [
      3,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-2)))"
  },
  {
    "input": "input : list = [0, 1, -5, -5]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse(reverse(take([0, 1, -5, -5],2)))",
    "io_inp": [
      0,
      1,
      -5,
      -5
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [4, 4, 2, -2, -2, -5]\noutput : list = [3, 3, 1, -3, -3, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(add_n([4, 4, 2, -2, -2, -5],1)))),-2)",
    "io_inp": [
      4,
      4,
      2,
      -2,
      -2,
      -5
    ],
    "io_out": [
      3,
      3,
      1,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(add_n(input,1)))),-2)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [4, 1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(mul_n([0, -3],1)))),4)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(mul_n(input,1)))),4)"
  },
  {
    "input": "input : list = [0, -2, 4, 2]\noutput : list = [-8, -4, 0, 4]",
    "output": "generated_output : list = take(sort_asc(take(mul_n([0, -2, 4, 2],-2),18)),15)",
    "io_inp": [
      0,
      -2,
      4,
      2
    ],
    "io_out": [
      -8,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(input,-2),18)),15)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_des([3, 2]),2),7)),2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_des(input),2),7)),2)"
  },
  {
    "input": "input : list = [-1, 5, 5, 5, -5, 4]\noutput : list = [8, 7, -2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(drop([-1, 5, 5, 5, -5, 4],3)),2)),-1)",
    "io_inp": [
      -1,
      5,
      5,
      5,
      -5,
      4
    ],
    "io_out": [
      8,
      7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(drop(input,3)),2)),-1)"
  },
  {
    "input": "input : list = [2, 3, 2, -3, 2]\noutput : list = [-3, -2, -3, -8, -3]",
    "output": "generated_output : list = sub_n(reverse(reverse([2, 3, 2, -3, 2])),5)",
    "io_inp": [
      2,
      3,
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      -2,
      -3,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),5)"
  },
  {
    "input": "input : list = [5, 1, -4, 1]\noutput : list = [-40, -8, -8, 32]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_des([5, 1, -4, 1]),2),-4)))",
    "io_inp": [
      5,
      1,
      -4,
      1
    ],
    "io_out": [
      -40,
      -8,
      -8,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_des(input),2),-4)))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [7, 3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(reverse([3, -1])),-4)))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [3, -4, 1]\noutput : list = [0, -20, -28]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(add_n([3, -4, 1],4),-4)),5))",
    "io_inp": [
      3,
      -4,
      1
    ],
    "io_out": [
      0,
      -20,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(add_n(input,4),-4)),5))"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [3, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 3])",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2, -2, 0, -1, -5]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(take(sort_asc(drop(drop([-4, 2, -2, 0, -1, -5],1),4)),40),-3)",
    "io_inp": [
      -4,
      2,
      -2,
      0,
      -1,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(drop(drop(input,1),4)),40),-3)"
  },
  {
    "input": "input : list = [4, -4, -3, 5, 3, 5]\noutput : list = [6, -2, -1, 7, 5, 7]",
    "output": "generated_output : list = sub_n(add_n(add_n([4, -4, -3, 5, 3, 5],3),4),5)",
    "io_inp": [
      4,
      -4,
      -3,
      5,
      3,
      5
    ],
    "io_out": [
      6,
      -2,
      -1,
      7,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,3),4),5)"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [-43, -11, -3]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([-5, -1, 0],2),4),3)",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      -43,
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,2),4),3)"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-2, -7, -9]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sort_des([-4, 3, -2]),4),-1)),45)",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -2,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sort_des(input),4),-1)),45)"
  },
  {
    "input": "input : list = [4, 5, 4, -5, -3, -2]\noutput : list = [13, 10, 10, -8, -11, -17]",
    "output": "generated_output : list = add_n(take(mul_n(sort_des(add_n([4, 5, 4, -5, -3, -2],-2)),3),40),4)",
    "io_inp": [
      4,
      5,
      4,
      -5,
      -3,
      -2
    ],
    "io_out": [
      13,
      10,
      10,
      -8,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_des(add_n(input,-2)),3),40),4)"
  },
  {
    "input": "input : list = [-1, -5, 0]\noutput : list = [2, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n([-1, -5, 0],2),5)),-2),2)",
    "io_inp": [
      -1,
      -5,
      0
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n(input,2),5)),-2),2)"
  },
  {
    "input": "input : list = [-2, 2, 5, 1, 0, 0]\noutput : list = [5, 2, 1, 0, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(reverse([-2, 2, 5, 1, 0, 0])),29)))",
    "io_inp": [
      -2,
      2,
      5,
      1,
      0,
      0
    ],
    "io_out": [
      5,
      2,
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(reverse(input)),29)))"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(add_n([-4, 0, -3],2)),24)))",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(add_n(input,2)),24)))"
  },
  {
    "input": "input : list = [-5, -1, -2, -1]\noutput : list = [1, 1, 4, 13]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(mul_n([-5, -1, -2, -1],-3)),2),26))",
    "io_inp": [
      -5,
      -1,
      -2,
      -1
    ],
    "io_out": [
      1,
      1,
      4,
      13
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(mul_n(input,-3)),2),26))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_des(take(mul_n(add_n([2, 0],-3),-1),1)),31)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(add_n(input,-3),-1),1)),31)"
  },
  {
    "input": "input : list = [4, -1, -1, -5, -3, 2]\noutput : list = [-6, 9, 9, 21, 15, 0]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(add_n([4, -1, -1, -5, -3, 2],4),-5),-1),9),-3)",
    "io_inp": [
      4,
      -1,
      -1,
      -5,
      -3,
      2
    ],
    "io_out": [
      -6,
      9,
      9,
      21,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(add_n(input,4),-5),-1),9),-3)"
  },
  {
    "input": "input : list = [-4, 2, -5, -3, -3, 3]\noutput : list = [2, 1, -4, -4, -5, -6]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(sub_n([-4, 2, -5, -3, -3, 3],-5))),1),-5)",
    "io_inp": [
      -4,
      2,
      -5,
      -3,
      -3,
      3
    ],
    "io_out": [
      2,
      1,
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(sub_n(input,-5))),1),-5)"
  },
  {
    "input": "input : list = [-3, -1, 1, 3, 0]\noutput : list = [4, 2, 1, 0, -2]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(sub_n([-3, -1, 1, 3, 0],1)),21),2))",
    "io_inp": [
      -3,
      -1,
      1,
      3,
      0
    ],
    "io_out": [
      4,
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(sub_n(input,1)),21),2))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [11, 3]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(reverse([-1, 3]),13),2),-5))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      11,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(reverse(input),13),2),-5))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [5, -15]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(mul_n([4, -1],-4),1),2)))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(mul_n(input,-4),1),2)))"
  },
  {
    "input": "input : list = [-2, 4, 0, 1, 0]\noutput : list = [-10, 20, 0, 5, 0]",
    "output": "generated_output : list = mul_n([-2, 4, 0, 1, 0],5)",
    "io_inp": [
      -2,
      4,
      0,
      1,
      0
    ],
    "io_out": [
      -10,
      20,
      0,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, 0, 4, 2, -4]\noutput : list = [-16, 8, 16, 0, 16]",
    "output": "generated_output : list = reverse(mul_n([4, 0, 4, 2, -4],4))",
    "io_inp": [
      4,
      0,
      4,
      2,
      -4
    ],
    "io_out": [
      -16,
      8,
      16,
      0,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(add_n([5, 2],2),-1),-2)))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(add_n(input,2),-1),-2)))"
  },
  {
    "input": "input : list = [-4, -5, -3, -5, -5]\noutput : list = [-4, -5, -6, -6, -6]",
    "output": "generated_output : list = take(add_n(take(reverse(sort_asc([-4, -5, -3, -5, -5])),35),-1),51)",
    "io_inp": [
      -4,
      -5,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(sort_asc(input)),35),-1),51)"
  },
  {
    "input": "input : list = [-4, -3, 0, 3]\noutput : list = [-12, -11, -8, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(mul_n([-4, -3, 0, 3],1),3)),5))",
    "io_inp": [
      -4,
      -3,
      0,
      3
    ],
    "io_out": [
      -12,
      -11,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(mul_n(input,1),3)),5))"
  },
  {
    "input": "input : list = [2, 0, 1, 0, 2]\noutput : list = [-4, -4, -2, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n([2, 0, 1, 0, 2],-2))))",
    "io_inp": [
      2,
      0,
      1,
      0,
      2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(input,-2))))"
  },
  {
    "input": "input : list = [-5, 4, 5, -1, 5]\noutput : list = [-15]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(mul_n([-5, 4, 5, -1, 5],-2),5))),1)",
    "io_inp": [
      -5,
      4,
      5,
      -1,
      5
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(mul_n(input,-2),5))),1)"
  },
  {
    "input": "input : list = [1, -5, -4, -2, -3, -2]\noutput : list = [-2, -5, -5, -6, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_asc([1, -5, -4, -2, -3, -2]),4),-4)),-3)",
    "io_inp": [
      1,
      -5,
      -4,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -5,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_asc(input),4),-4)),-3)"
  },
  {
    "input": "input : list = [0, 0, 3, -5]\noutput : list = [-1, 4, 4, 7]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(sort_asc([0, 0, 3, -5]),3),1),25))",
    "io_inp": [
      0,
      0,
      3,
      -5
    ],
    "io_out": [
      -1,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(sort_asc(input),3),1),25))"
  },
  {
    "input": "input : list = [-2, 3, 3, -1]\noutput : list = [10, 35, 35, 15]",
    "output": "generated_output : list = mul_n(sub_n([-2, 3, 3, -1],-4),5)",
    "io_inp": [
      -2,
      3,
      3,
      -1
    ],
    "io_out": [
      10,
      35,
      35,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),5)"
  },
  {
    "input": "input : list = [-4, -1, 4, 5, -1]\noutput : list = [0, 3]",
    "output": "generated_output : list = sub_n(take([-4, -1, 4, 5, -1],2),-4)",
    "io_inp": [
      -4,
      -1,
      4,
      5,
      -1
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [-1, 4, 2, -1, 1, 4]\noutput : list = [-5, 0, 10, 10]",
    "output": "generated_output : list = drop(add_n(take(mul_n(sort_des([-1, 4, 2, -1, 1, 4]),-5),34),5),2)",
    "io_inp": [
      -1,
      4,
      2,
      -1,
      1,
      4
    ],
    "io_out": [
      -5,
      0,
      10,
      10
    ],
    "output_masked": "generated_output : list = drop(add_n(take(mul_n(sort_des(input),-5),34),5),2)"
  },
  {
    "input": "input : list = [-4, 5, 5, -5, 3, 3]\noutput : list = [7, 7]",
    "output": "generated_output : list = take(drop(reverse(sub_n(sort_des([-4, 5, 5, -5, 3, 3]),-2)),4),38)",
    "io_inp": [
      -4,
      5,
      5,
      -5,
      3,
      3
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = take(drop(reverse(sub_n(sort_des(input),-2)),4),38)"
  },
  {
    "input": "input : list = [4, 1, -5, -4, -5]\noutput : list = [1, -2, -7, -8, -8]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(add_n([4, 1, -5, -4, -5],-3)),22)))",
    "io_inp": [
      4,
      1,
      -5,
      -4,
      -5
    ],
    "io_out": [
      1,
      -2,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(add_n(input,-3)),22)))"
  },
  {
    "input": "input : list = [0, 5, -4, -3, -3, 5]\noutput : list = [-4, 1, -8, -7, -7, 1]",
    "output": "generated_output : list = add_n([0, 5, -4, -3, -3, 5],-4)",
    "io_inp": [
      0,
      5,
      -4,
      -3,
      -3,
      5
    ],
    "io_out": [
      -4,
      1,
      -8,
      -7,
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [6, 6, -2]",
    "output": "generated_output : list = add_n(take(add_n(reverse([-3, 5, 5]),5),9),-4)",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(input),5),9),-4)"
  },
  {
    "input": "input : list = [4, -4, 5, 3, 5]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(drop(sort_asc(sub_n(sort_des([4, -4, 5, 3, 5]),4)),3))",
    "io_inp": [
      4,
      -4,
      5,
      3,
      5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(sub_n(sort_des(input),4)),3))"
  },
  {
    "input": "input : list = [-3, 4, -2]\noutput : list = [4, -24, 0]",
    "output": "generated_output : list = take(mul_n(add_n([-3, 4, -2],2),-4),22)",
    "io_inp": [
      -3,
      4,
      -2
    ],
    "io_out": [
      4,
      -24,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,2),-4),22)"
  },
  {
    "input": "input : list = [-1, 0, -1, 4]\noutput : list = [7, 3, 2, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n([-1, 0, -1, 4],3),4))),4)",
    "io_inp": [
      -1,
      0,
      -1,
      4
    ],
    "io_out": [
      7,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n(input,3),4))),4)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [6, -4, -10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([2, 5, -3],-2)))",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      6,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [2, 3, 1, 2]\noutput : list = [15, 10, 10, 5]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des([2, 3, 1, 2]),5),13))",
    "io_inp": [
      2,
      3,
      1,
      2
    ],
    "io_out": [
      15,
      10,
      10,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(input),5),13))"
  },
  {
    "input": "input : list = [1, -2, 3, -4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = drop([1, -2, 3, -4, 4],3)",
    "io_inp": [
      1,
      -2,
      3,
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(take([0, -1, 1],1),3),3),5))",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(take(input,1),3),3),5))"
  },
  {
    "input": "input : list = [-3, -4, -1, 3, 2]\noutput : list = [-3, 9, 13]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(drop([-3, -4, -1, 3, 2],2),4),16)),1)",
    "io_inp": [
      -3,
      -4,
      -1,
      3,
      2
    ],
    "io_out": [
      -3,
      9,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(drop(input,2),4),16)),1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse([0, -5])",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 5, -5, 5, 1, -3]\noutput : list = [7, 3, -1]",
    "output": "generated_output : list = sort_des(sub_n(drop([-1, 5, -5, 5, 1, -3],3),-2))",
    "io_inp": [
      -1,
      5,
      -5,
      5,
      1,
      -3
    ],
    "io_out": [
      7,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,3),-2))"
  },
  {
    "input": "input : list = [-2, 4, 2, -2, 5, 0]\noutput : list = [-2, -2, 2, 6, 10, 12]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(sort_des([-2, 4, 2, -2, 5, 0]),2),17)),-2)",
    "io_inp": [
      -2,
      4,
      2,
      -2,
      5,
      0
    ],
    "io_out": [
      -2,
      -2,
      2,
      6,
      10,
      12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(sort_des(input),2),17)),-2)"
  },
  {
    "input": "input : list = [4, 4, -4, 3, -3]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(sort_des(sort_asc(take([4, 4, -4, 3, -3],2))),4)",
    "io_inp": [
      4,
      4,
      -4,
      3,
      -3
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(input,2))),4)"
  },
  {
    "input": "input : list = [-3, 5, 3, 5, 0, 3]\noutput : list = [0, 0, -2, -2, -5, -8]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des([-3, 5, 3, 5, 0, 3])),-5))",
    "io_inp": [
      -3,
      5,
      3,
      5,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      -2,
      -2,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(input)),-5))"
  },
  {
    "input": "input : list = [-4, 3, 4, 1, 3]\noutput : list = [0, -10, -14, -14, -16]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sub_n([-4, 3, 4, 1, 3],2)),3),-3),-2)",
    "io_inp": [
      -4,
      3,
      4,
      1,
      3
    ],
    "io_out": [
      0,
      -10,
      -14,
      -14,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sub_n(input,2)),3),-3),-2)"
  },
  {
    "input": "input : list = [0, 1, -4, 2, 0, -3]\noutput : list = [-3, -4, -5, -5, -8, -9]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(reverse([0, 1, -4, 2, 0, -3]),14))),5)",
    "io_inp": [
      0,
      1,
      -4,
      2,
      0,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(reverse(input),14))),5)"
  },
  {
    "input": "input : list = [5, -2, -5, 0]\noutput : list = [3, -4, -7, -2]",
    "output": "generated_output : list = add_n([5, -2, -5, 0],-2)",
    "io_inp": [
      5,
      -2,
      -5,
      0
    ],
    "io_out": [
      3,
      -4,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 5, -3, 2, 1]\noutput : list = [-10, -4, 2, 5, 14]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(mul_n([-1, 5, -3, 2, 1],3))),-2),-3)",
    "io_inp": [
      -1,
      5,
      -3,
      2,
      1
    ],
    "io_out": [
      -10,
      -4,
      2,
      5,
      14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(mul_n(input,3))),-2),-3)"
  },
  {
    "input": "input : list = [2, -5, 3, 3, -5, -1]\noutput : list = [-10, 25, -15, -15, 25, 5]",
    "output": "generated_output : list = mul_n(reverse(reverse([2, -5, 3, 3, -5, -1])),-5)",
    "io_inp": [
      2,
      -5,
      3,
      3,
      -5,
      -1
    ],
    "io_out": [
      -10,
      25,
      -15,
      -15,
      25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(input)),-5)"
  },
  {
    "input": "input : list = [2, 5, -2]\noutput : list = [-16, -7, 5]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_asc([2, 5, -2])),-3)),-1)",
    "io_inp": [
      2,
      5,
      -2
    ],
    "io_out": [
      -16,
      -7,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_asc(input)),-3)),-1)"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-1, 7, 11]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n(mul_n([-1, -3, -4],-4),-1),4),20))",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -1,
      7,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(mul_n(input,-4),-1),4),20))"
  },
  {
    "input": "input : list = [0, 3, 2, -3]\noutput : list = [-3, 2, 3, 0]",
    "output": "generated_output : list = reverse([0, 3, 2, -3])",
    "io_inp": [
      0,
      3,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, -1, 3, 1]\noutput : list = [-8, -5, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n([3, -4, -1, 3, 1],-4)),15))",
    "io_inp": [
      3,
      -4,
      -1,
      3,
      1
    ],
    "io_out": [
      -8,
      -5,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(input,-4)),15))"
  },
  {
    "input": "input : list = [-5, 5, -4, 3, 3]\noutput : list = [-5, -4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(take([-5, 5, -4, 3, 3],3)))))",
    "io_inp": [
      -5,
      5,
      -4,
      3,
      3
    ],
    "io_out": [
      -5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(take(input,3)))))"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [-6]",
    "output": "generated_output : list = take(reverse(mul_n(take([-3, 0, -2],1),2)),10)",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(input,1),2)),10)"
  },
  {
    "input": "input : list = [-3, -4, 1, 4, -4]\noutput : list = [-12, -3, 9, 12, 12]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(mul_n([-3, -4, 1, 4, -4],3),-1)),31))",
    "io_inp": [
      -3,
      -4,
      1,
      4,
      -4
    ],
    "io_out": [
      -12,
      -3,
      9,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(mul_n(input,3),-1)),31))"
  },
  {
    "input": "input : list = [3, -1, -4, 1, -3]\noutput : list = [6, 4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n(sub_n([3, -1, -4, 1, -3],-5),1),-3)))",
    "io_inp": [
      3,
      -1,
      -4,
      1,
      -3
    ],
    "io_out": [
      6,
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(sub_n(input,-5),1),-3)))"
  },
  {
    "input": "input : list = [-4, -2, -4]\noutput : list = [-4, -2, -4]",
    "output": "generated_output : list = mul_n([-4, -2, -4],1)",
    "io_inp": [
      -4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -1, 3]\noutput : list = [5, 3, -1, -1]",
    "output": "generated_output : list = sort_des([-1, 5, -1, 3])",
    "io_inp": [
      -1,
      5,
      -1,
      3
    ],
    "io_out": [
      5,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, -1, -3, -1, 5]\noutput : list = [1, -6, -3, -5, -3, 3]",
    "output": "generated_output : list = sub_n(add_n([3, -4, -1, -3, -1, 5],1),3)",
    "io_inp": [
      3,
      -4,
      -1,
      -3,
      -1,
      5
    ],
    "io_out": [
      1,
      -6,
      -3,
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),3)"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [-3, -6, 0]",
    "output": "generated_output : list = add_n([-1, -4, 2],-2)",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      -3,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 0, 2, -5]\noutput : list = [-7, -3, -2, 0]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(sort_des([-1, 0, 2, -5]))),-2),42)",
    "io_inp": [
      -1,
      0,
      2,
      -5
    ],
    "io_out": [
      -7,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(sort_des(input))),-2),42)"
  },
  {
    "input": "input : list = [-4, 5, -2, -1, -3]\noutput : list = [-16, 12, 20]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(take([-4, 5, -2, -1, -3],3),-4))),4)",
    "io_inp": [
      -4,
      5,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -16,
      12,
      20
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(take(input,3),-4))),4)"
  },
  {
    "input": "input : list = [1, -1, 0]\noutput : list = [-11, -12, -10]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(add_n([1, -1, 0],-1)),-5),5),22)",
    "io_inp": [
      1,
      -1,
      0
    ],
    "io_out": [
      -11,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(add_n(input,-1)),-5),5),22)"
  },
  {
    "input": "input : list = [5, -1, -1, 5, 1]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(drop([5, -1, -1, 5, 1],3),-2),1),-1))",
    "io_inp": [
      5,
      -1,
      -1,
      5,
      1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(drop(input,3),-2),1),-1))"
  },
  {
    "input": "input : list = [1, -5, -3, 2]\noutput : list = [-100, -70, -10, 5]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(reverse([1, -5, -3, 2])),-3),5),-5)",
    "io_inp": [
      1,
      -5,
      -3,
      2
    ],
    "io_out": [
      -100,
      -70,
      -10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(reverse(input)),-3),5),-5)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [15, 0, -12]",
    "output": "generated_output : list = reverse(take(take(mul_n(sort_asc([0, -4, 5]),3),25),5))",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      15,
      0,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(sort_asc(input),3),25),5))"
  },
  {
    "input": "input : list = [2, -3, -2, 5, -5, -1]\noutput : list = [3, 23]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(drop([2, -3, -2, 5, -5, -1],4)),-5),3),-2)",
    "io_inp": [
      2,
      -3,
      -2,
      5,
      -5,
      -1
    ],
    "io_out": [
      3,
      23
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(drop(input,4)),-5),3),-2)"
  },
  {
    "input": "input : list = [4, -3, 0, 3]\noutput : list = [-3, 0, 3, 4]",
    "output": "generated_output : list = take(sort_asc([4, -3, 0, 3]),11)",
    "io_inp": [
      4,
      -3,
      0,
      3
    ],
    "io_out": [
      -3,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [32, 16, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_des([-1, 3, -5])),5)),4)",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      32,
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_des(input)),5)),4)"
  },
  {
    "input": "input : list = [1, -5, 0, -3, -2]\noutput : list = [125, 75, 50, 0, -25]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(mul_n([1, -5, 0, -3, -2],-5)),5)),14)",
    "io_inp": [
      1,
      -5,
      0,
      -3,
      -2
    ],
    "io_out": [
      125,
      75,
      50,
      0,
      -25
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(mul_n(input,-5)),5)),14)"
  },
  {
    "input": "input : list = [-4, -2, 5, -2, 1]\noutput : list = [1, -2, 5, -2, -4]",
    "output": "generated_output : list = reverse([-4, -2, 5, -2, 1])",
    "io_inp": [
      -4,
      -2,
      5,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -1, 5, 5]\noutput : list = [-40, -20, 10, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(add_n([-5, -1, 5, 5],-3)),5)))",
    "io_inp": [
      -5,
      -1,
      5,
      5
    ],
    "io_out": [
      -40,
      -20,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(add_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = drop([-3, -1, -2],1)",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-25, 5]",
    "output": "generated_output : list = sort_asc(mul_n([5, -1],-5))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -25,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-6, 10]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(reverse([-3, 5]),2)),6))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(reverse(input),2)),6))"
  },
  {
    "input": "input : list = [5, -2, 4]\noutput : list = [5, 4, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(sort_asc([5, -2, 4]),14))))",
    "io_inp": [
      5,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(sort_asc(input),14))))"
  },
  {
    "input": "input : list = [3, 2, 2, 5, 4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(drop([3, 2, 2, 5, 4, 3],4))",
    "io_inp": [
      3,
      2,
      2,
      5,
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,4))"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [4, -1]",
    "output": "generated_output : list = add_n(drop([1, 0, -5],1),4)",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [4, -3, 4]\noutput : list = [8, -6, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(mul_n([4, -3, 4],-2),3))),-5)",
    "io_inp": [
      4,
      -3,
      4
    ],
    "io_out": [
      8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(mul_n(input,-2),3))),-5)"
  },
  {
    "input": "input : list = [0, -4, 3, -3, 3, 0]\noutput : list = [5, 20, -10, 20, -15, 5]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse([0, -4, 3, -3, 3, 0]),-1),1),-5)",
    "io_inp": [
      0,
      -4,
      3,
      -3,
      3,
      0
    ],
    "io_out": [
      5,
      20,
      -10,
      20,
      -15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(input),-1),1),-5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [44, 44]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(sub_n([-4, -4],5),-5)),31),-1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      44,
      44
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(sub_n(input,5),-5)),31),-1)"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [5, -1, -3]",
    "output": "generated_output : list = reverse(take(reverse(reverse([-3, -1, 5])),7))",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(input)),7))"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [15, 5, -5]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(add_n([0, 5, -5],-5),-2),-5)),5)",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      15,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(add_n(input,-5),-2),-5)),5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-80, -40]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(mul_n([-4, -2],4),5),18),5),5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -80,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(mul_n(input,4),5),18),5),5)"
  },
  {
    "input": "input : list = [-3, 3, 5, 2, 0]\noutput : list = [9, 7, 6, 4, 1]",
    "output": "generated_output : list = take(take(sort_des(sub_n([-3, 3, 5, 2, 0],-4)),5),33)",
    "io_inp": [
      -3,
      3,
      5,
      2,
      0
    ],
    "io_out": [
      9,
      7,
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(input,-4)),5),33)"
  },
  {
    "input": "input : list = [5, -5, 4, -2, 1]\noutput : list = [5, 4, 1, -2, -5]",
    "output": "generated_output : list = sort_des([5, -5, 4, -2, 1])",
    "io_inp": [
      5,
      -5,
      4,
      -2,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, 5]\noutput : list = [1, 2, 8]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(reverse([-2, -1, 5])),3)))",
    "io_inp": [
      -2,
      -1,
      5
    ],
    "io_out": [
      1,
      2,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(reverse(input)),3)))"
  },
  {
    "input": "input : list = [-2, 4, 3, 1]\noutput : list = [10, -20, -15, -5]",
    "output": "generated_output : list = mul_n([-2, 4, 3, 1],-5)",
    "io_inp": [
      -2,
      4,
      3,
      1
    ],
    "io_out": [
      10,
      -20,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [70, 80, 80]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([-3, -4, -4],4),2),-5)",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      70,
      80,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,4),2),-5)"
  },
  {
    "input": "input : list = [-2, 2, 0, 3]\noutput : list = [-2, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([-2, 2, 0, 3]))",
    "io_inp": [
      -2,
      2,
      0,
      3
    ],
    "io_out": [
      -2,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-4, -4, 1]",
    "output": "generated_output : list = take(reverse([1, -4, -4]),18)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),18)"
  },
  {
    "input": "input : list = [1, 5, 5, 4]\noutput : list = [-5, -1, -1, -2]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(reverse([1, 5, 5, 4]),-5),1)),47)",
    "io_inp": [
      1,
      5,
      5,
      4
    ],
    "io_out": [
      -5,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(reverse(input),-5),1)),47)"
  },
  {
    "input": "input : list = [0, 4, -1, -4, -5, 5]\noutput : list = [5, 4, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(take(take(sort_asc([0, 4, -1, -4, -5, 5]),28),4)),5)",
    "io_inp": [
      0,
      4,
      -1,
      -4,
      -5,
      5
    ],
    "io_out": [
      5,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sort_asc(input),28),4)),5)"
  },
  {
    "input": "input : list = [1, -5, -2, 1]\noutput : list = [-6, -3, 0]",
    "output": "generated_output : list = sub_n(sub_n(take(take(drop([1, -5, -2, 1],1),11),15),3),-2)",
    "io_inp": [
      1,
      -5,
      -2,
      1
    ],
    "io_out": [
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(drop(input,1),11),15),3),-2)"
  },
  {
    "input": "input : list = [2, -3, -3, 1]\noutput : list = [-8, -8, -4, -3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(reverse([2, -3, -3, 1]),-5))))",
    "io_inp": [
      2,
      -3,
      -3,
      1
    ],
    "io_out": [
      -8,
      -8,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [2, 4, 2, -5, 0, 2]\noutput : list = [-1, -3, -8, -1, 1, -1]",
    "output": "generated_output : list = add_n(reverse([2, 4, 2, -5, 0, 2]),-3)",
    "io_inp": [
      2,
      4,
      2,
      -5,
      0,
      2
    ],
    "io_out": [
      -1,
      -3,
      -8,
      -1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [-15, 20, -20]",
    "output": "generated_output : list = mul_n([3, -4, 4],-5)",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      -15,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-18, 24]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(sort_asc([-3, 4])),2),3),3)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(sort_asc(input)),2),3),3)"
  },
  {
    "input": "input : list = [4, 1, -5, 5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(drop([4, 1, -5, 5, 4],3))",
    "io_inp": [
      4,
      1,
      -5,
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [-1, 3, 0, 1, 4, 1]\noutput : list = [4, 3, 1, 1, 0, -1]",
    "output": "generated_output : list = sort_des([-1, 3, 0, 1, 4, 1])",
    "io_inp": [
      -1,
      3,
      0,
      1,
      4,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(sort_des([-5, -5, -1]),17)),-4),-1)",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(sort_des(input),17)),-4),-1)"
  },
  {
    "input": "input : list = [-3, -1, -3, 4]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(take([-3, -1, -3, 4],1)),26),1))",
    "io_inp": [
      -3,
      -1,
      -3,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(take(input,1)),26),1))"
  },
  {
    "input": "input : list = [2, 1, -2, -1, -2]\noutput : list = [2, 1, -1, -2, -2]",
    "output": "generated_output : list = sort_des([2, 1, -2, -1, -2])",
    "io_inp": [
      2,
      1,
      -2,
      -1,
      -2
    ],
    "io_out": [
      2,
      1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, -4, 0]\noutput : list = [30, 20, -5, 15]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(reverse([3, 1, -4, 0]),3),-1),-5))",
    "io_inp": [
      3,
      1,
      -4,
      0
    ],
    "io_out": [
      30,
      20,
      -5,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(reverse(input),3),-1),-5))"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [-12, -9, -4]",
    "output": "generated_output : list = add_n(sub_n([-3, 0, 5],5),-4)",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      -12,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-4)"
  },
  {
    "input": "input : list = [3, -3, -3, 0]\noutput : list = [-4, -16]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(drop([3, -3, -3, 0],2),1),21)),4)",
    "io_inp": [
      3,
      -3,
      -3,
      0
    ],
    "io_out": [
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(drop(input,2),1),21)),4)"
  },
  {
    "input": "input : list = [1, 1, -2, 1, 2]\noutput : list = [8, 7, 7, 7, 4]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(sub_n([1, 1, -2, 1, 2],-4)),-4),1),-5)",
    "io_inp": [
      1,
      1,
      -2,
      1,
      2
    ],
    "io_out": [
      8,
      7,
      7,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(sub_n(input,-4)),-4),1),-5)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-5, -7]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sort_des([-2, 0]),-3),-4)),-1)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sort_des(input),-3),-4)),-1)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-2, 2]",
    "output": "generated_output : list = add_n(sort_asc([1, -3]),1)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-1, -5, 3, 3, -3]\noutput : list = [-2, -2, -6, -8, -10]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(sort_asc([-1, -5, 3, 3, -3])))),-5)",
    "io_inp": [
      -1,
      -5,
      3,
      3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [0, 5, -1, 3, -4]\noutput : list = [-16, -1, 4, 19, 29]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(mul_n([0, 5, -1, 3, -4],5),4))))",
    "io_inp": [
      0,
      5,
      -1,
      3,
      -4
    ],
    "io_out": [
      -16,
      -1,
      4,
      19,
      29
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(mul_n(input,5),4))))"
  },
  {
    "input": "input : list = [-3, -2, 1, 3, 1, -5]\noutput : list = [9, 3, 3]",
    "output": "generated_output : list = take(mul_n(take(sort_asc(mul_n([-3, -2, 1, 3, 1, -5],-1)),32),-3),3)",
    "io_inp": [
      -3,
      -2,
      1,
      3,
      1,
      -5
    ],
    "io_out": [
      9,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_asc(mul_n(input,-1)),32),-3),3)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [9, 3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(add_n([0, 2],-1),1),2),-3))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(add_n(input,-1),1),2),-3))"
  },
  {
    "input": "input : list = [2, -3, 5, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([2, -3, 5, -5, 0],3)))",
    "io_inp": [
      2,
      -3,
      5,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,3)))"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [-10, -4, -5]",
    "output": "generated_output : list = add_n(take(add_n(reverse([2, 3, -3]),-2),24),-5)",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      -10,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(input),-2),24),-5)"
  },
  {
    "input": "input : list = [0, 5, -4, 0, 0]\noutput : list = [-4, 0, 0, 0, 5]",
    "output": "generated_output : list = sort_asc([0, 5, -4, 0, 0])",
    "io_inp": [
      0,
      5,
      -4,
      0,
      0
    ],
    "io_out": [
      -4,
      0,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 4, -5, 3, 3]\noutput : list = [2, -8, 10, -6, -6]",
    "output": "generated_output : list = mul_n([-1, 4, -5, 3, 3],-2)",
    "io_inp": [
      -1,
      4,
      -5,
      3,
      3
    ],
    "io_out": [
      2,
      -8,
      10,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 0, 0, -5]\noutput : list = [-2, -2, -6, -7]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(add_n([-4, 0, 0, -5],-2),12))))",
    "io_inp": [
      -4,
      0,
      0,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(add_n(input,-2),12))))"
  },
  {
    "input": "input : list = [-5, -1, -2, 5, 4, -1]\noutput : list = [4, -16, -20, 8, 4, 20]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(add_n([-5, -1, -2, 5, 4, -1],-4)),4),-4),26)",
    "io_inp": [
      -5,
      -1,
      -2,
      5,
      4,
      -1
    ],
    "io_out": [
      4,
      -16,
      -20,
      8,
      4,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(add_n(input,-4)),4),-4),26)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(drop(add_n([1, 3, -1],-1),1)),33))",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(drop(add_n(input,-1),1)),33))"
  },
  {
    "input": "input : list = [0, 5, -2, -5]\noutput : list = [25, 10]",
    "output": "generated_output : list = sort_des(drop(mul_n([0, 5, -2, -5],-5),2))",
    "io_inp": [
      0,
      5,
      -2,
      -5
    ],
    "io_out": [
      25,
      10
    ],
    "output_masked": "generated_output : list = sort_des(drop(mul_n(input,-5),2))"
  },
  {
    "input": "input : list = [0, 0, -3, -3, -3]\noutput : list = [-10, -10, 5, 5, 5]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(reverse([0, 0, -3, -3, -3])),2),31),-5)",
    "io_inp": [
      0,
      0,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(reverse(input)),2),31),-5)"
  },
  {
    "input": "input : list = [5, -5, -5, -5, -3]\noutput : list = [0, -2, -2, -2]",
    "output": "generated_output : list = sort_des(take(take(reverse(sub_n([5, -5, -5, -5, -3],-3)),27),4))",
    "io_inp": [
      5,
      -5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      0,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(sub_n(input,-3)),27),4))"
  },
  {
    "input": "input : list = [-1, 5, 3, -2, 2, 1]\noutput : list = [5, 3, 2, 1, -1, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des([-1, 5, 3, -2, 2, 1])))",
    "io_inp": [
      -1,
      5,
      3,
      -2,
      2,
      1
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, -2, -5, -1]\noutput : list = [-6, -5, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(add_n([-4, -2, -5, -1],3))),4))",
    "io_inp": [
      -4,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(add_n(input,3))),4))"
  },
  {
    "input": "input : list = [0, 5, 1]\noutput : list = [25, 5, 0]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(reverse([0, 5, 1])),5)),12)",
    "io_inp": [
      0,
      5,
      1
    ],
    "io_out": [
      25,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(reverse(input)),5)),12)"
  },
  {
    "input": "input : list = [-5, -3, -2, -1, -2]\noutput : list = [-3, -4, -4, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n([-5, -3, -2, -1, -2],2))",
    "io_inp": [
      -5,
      -3,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [-2, 3, 0, -4]\noutput : list = [1, -2, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(reverse([-2, 3, 0, -4]),1))),-1)",
    "io_inp": [
      -2,
      3,
      0,
      -4
    ],
    "io_out": [
      1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(reverse(input),1))),-1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des([-4, 1])",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5, -1, 5, 2, 3]\noutput : list = [-1]",
    "output": "generated_output : list = drop(sort_des(sort_des(sort_asc([2, 5, -1, 5, 2, 3]))),5)",
    "io_inp": [
      2,
      5,
      -1,
      5,
      2,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(sort_asc(input))),5)"
  },
  {
    "input": "input : list = [5, -3, 2, -5, 0, 0]\noutput : list = [-5, -3, 0, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([5, -3, 2, -5, 0, 0])",
    "io_inp": [
      5,
      -3,
      2,
      -5,
      0,
      0
    ],
    "io_out": [
      -5,
      -3,
      0,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-8, 13]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(mul_n([5, -2],3))),10),2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -8,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(mul_n(input,3))),10),2)"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [-2, 4, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(sub_n([5, -3, 3],4),8)),-3),2)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(sub_n(input,4),8)),-3),2)"
  },
  {
    "input": "input : list = [2, -4, -3, 1]\noutput : list = [-5, 15, 20, -10]",
    "output": "generated_output : list = take(take(reverse(mul_n(mul_n([2, -4, -3, 1],-1),5)),22),46)",
    "io_inp": [
      2,
      -4,
      -3,
      1
    ],
    "io_out": [
      -5,
      15,
      20,
      -10
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(mul_n(input,-1),5)),22),46)"
  },
  {
    "input": "input : list = [-2, 2, 5, 4, -2, 3]\noutput : list = [-1, 4, -2, -3, 0, 4]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(add_n([-2, 2, 5, 4, -2, 3],-4),-1)),-2),1)",
    "io_inp": [
      -2,
      2,
      5,
      4,
      -2,
      3
    ],
    "io_out": [
      -1,
      4,
      -2,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(add_n(input,-4),-1)),-2),1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des([-4, -4])",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [4, 2]",
    "output": "generated_output : list = sub_n([1, -1],-3)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [0, 1, 5, 0, -4, 3]\noutput : list = [-12, -20, -52]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(take([0, 1, 5, 0, -4, 3],3),5),-2),-3),4)",
    "io_inp": [
      0,
      1,
      5,
      0,
      -4,
      3
    ],
    "io_out": [
      -12,
      -20,
      -52
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(take(input,3),5),-2),-3),4)"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [-4, 2, 4]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(sub_n([-4, -1, 0],-2),2)),19))",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(sub_n(input,-2),2)),19))"
  },
  {
    "input": "input : list = [1, -1, 0, 3, -5, 4]\noutput : list = [-12, -8, -7, -6, -4, -3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take(sub_n([1, -1, 0, 3, -5, 4],3),11),1),5))",
    "io_inp": [
      1,
      -1,
      0,
      3,
      -5,
      4
    ],
    "io_out": [
      -12,
      -8,
      -7,
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(sub_n(input,3),11),1),5))"
  },
  {
    "input": "input : list = [5, 1, 5, 4, 2]\noutput : list = [10, 15, 25, 30, 30]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(mul_n([5, 1, 5, 4, 2],5))),5))",
    "io_inp": [
      5,
      1,
      5,
      4,
      2
    ],
    "io_out": [
      10,
      15,
      25,
      30,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(mul_n(input,5))),5))"
  },
  {
    "input": "input : list = [-4, 0, -3, 1]\noutput : list = [-2, -3, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des([-4, 0, -3, 1])),3))",
    "io_inp": [
      -4,
      0,
      -3,
      1
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(input)),3))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des([-2, 3]),2))))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n([-1, -1],-4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc([3, -3])",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, 2, -1]\noutput : list = [-25, -20, -5, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-5, -4, 2, -1],5)))",
    "io_inp": [
      -5,
      -4,
      2,
      -1
    ],
    "io_out": [
      -25,
      -20,
      -5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,5)))"
  },
  {
    "input": "input : list = [5, -5, 5, 3, -5]\noutput : list = [27, -23, -23]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take([5, -5, 5, 3, -5],3),-5)),2)",
    "io_inp": [
      5,
      -5,
      5,
      3,
      -5
    ],
    "io_out": [
      27,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(input,3),-5)),2)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [4, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(add_n([-1, 2],1))),9),-1)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(add_n(input,1))),9),-1)"
  },
  {
    "input": "input : list = [2, 4, -2]\noutput : list = [-6, 0, -2]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(mul_n([2, 4, -2],1)))),-4)",
    "io_inp": [
      2,
      4,
      -2
    ],
    "io_out": [
      -6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(mul_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [8, 0]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc([-5, 3]),15),5))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(input),15),5))"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [-16, -4, 5]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n([-4, 0, 3],3),4),9))",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      -16,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(input,3),4),9))"
  },
  {
    "input": "input : list = [-1, -3, 1, -4, 3, -1]\noutput : list = [20, -60, 80, -20, 60]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(drop([-1, -3, 1, -4, 3, -1],1)),-4),5),20)",
    "io_inp": [
      -1,
      -3,
      1,
      -4,
      3,
      -1
    ],
    "io_out": [
      20,
      -60,
      80,
      -20,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(drop(input,1)),-4),5),20)"
  },
  {
    "input": "input : list = [-5, -5, 4, -3, -1]\noutput : list = [-2, -4, 3, -6, -6]",
    "output": "generated_output : list = take(reverse(add_n([-5, -5, 4, -3, -1],-1)),29)",
    "io_inp": [
      -5,
      -5,
      4,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -4,
      3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,-1)),29)"
  },
  {
    "input": "input : list = [-4, -3, 0, -2, -1]\noutput : list = [0, -2, -1]",
    "output": "generated_output : list = drop([-4, -3, 0, -2, -1],2)",
    "io_inp": [
      -4,
      -3,
      0,
      -2,
      -1
    ],
    "io_out": [
      0,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [0, 30, 5]",
    "output": "generated_output : list = take(mul_n(reverse(take(add_n([2, -3, 3],-3),11)),-5),13)",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      0,
      30,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(add_n(input,-3),11)),-5),13)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(mul_n([0, 1],-4)),1),32),-3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(mul_n(input,-4)),1),32),-3)"
  },
  {
    "input": "input : list = [4, 0, 4, -4, -4, -4]\noutput : list = [12, 12, 12]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(drop([4, 0, 4, -4, -4, -4],3),27),-3)))",
    "io_inp": [
      4,
      0,
      4,
      -4,
      -4,
      -4
    ],
    "io_out": [
      12,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(drop(input,3),27),-3)))"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [16, 16, -16]",
    "output": "generated_output : list = sort_des(mul_n([4, 4, -4],4))",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      16,
      16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [-1, -1, -2, -1, 1, -2]\noutput : list = [-11, -3, -3, -3, 1, 1]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(sub_n([-1, -1, -2, -1, 1, -2],-3),10)),-4),-5)",
    "io_inp": [
      -1,
      -1,
      -2,
      -1,
      1,
      -2
    ],
    "io_out": [
      -11,
      -3,
      -3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(sub_n(input,-3),10)),-4),-5)"
  },
  {
    "input": "input : list = [2, -2, -5, 2, 4, 4]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sort_asc(take([2, -2, -5, 2, 4, 4],1)),1)",
    "io_inp": [
      2,
      -2,
      -5,
      2,
      4,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(input,1)),1)"
  },
  {
    "input": "input : list = [-4, 2, 5, -4]\noutput : list = [9, 6, 0, 0]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n([-4, 2, 5, -4],4)))))",
    "io_inp": [
      -4,
      2,
      5,
      -4
    ],
    "io_out": [
      9,
      6,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n(input,4)))))"
  },
  {
    "input": "input : list = [4, -5, 4, 1, -4, 2]\noutput : list = [6, -3, 6, 3, -2, 4]",
    "output": "generated_output : list = take(add_n([4, -5, 4, 1, -4, 2],2),20)",
    "io_inp": [
      4,
      -5,
      4,
      1,
      -4,
      2
    ],
    "io_out": [
      6,
      -3,
      6,
      3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),20)"
  },
  {
    "input": "input : list = [2, 2, 2, -1, 2, 1]\noutput : list = [-3, -3, -3, -3, -4, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(add_n([2, 2, 2, -1, 2, 1],-5),3)),3))",
    "io_inp": [
      2,
      2,
      2,
      -1,
      2,
      1
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(add_n(input,-5),3)),3))"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = drop([-3, 2, -3],1)",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 3, 4, 3]\noutput : list = [3, 4, 3, -3]",
    "output": "generated_output : list = reverse([-3, 3, 4, 3])",
    "io_inp": [
      -3,
      3,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2, -3, 4]\noutput : list = [-30, 0, 5, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc([-4, -2, -3, 4]),-2),-5))",
    "io_inp": [
      -4,
      -2,
      -3,
      4
    ],
    "io_out": [
      -30,
      0,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(input),-2),-5))"
  },
  {
    "input": "input : list = [3, -2, 4, 4]\noutput : list = [-5, 19, 19]",
    "output": "generated_output : list = sub_n(take(mul_n(take(drop([3, -2, 4, 4],1),10),4),22),-3)",
    "io_inp": [
      3,
      -2,
      4,
      4
    ],
    "io_out": [
      -5,
      19,
      19
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(drop(input,1),10),4),22),-3)"
  },
  {
    "input": "input : list = [2, 3, -5, 5, 5, 2]\noutput : list = [2, 2, 0, -1, -1, -8]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(sub_n([2, 3, -5, 5, 5, 2],3),6)),1))",
    "io_inp": [
      2,
      3,
      -5,
      5,
      5,
      2
    ],
    "io_out": [
      2,
      2,
      0,
      -1,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(sub_n(input,3),6)),1))"
  },
  {
    "input": "input : list = [-3, 5, -1, 1, 5, 0]\noutput : list = [0, 8, 2, 4, 8, 3]",
    "output": "generated_output : list = sub_n(add_n([-3, 5, -1, 1, 5, 0],2),-1)",
    "io_inp": [
      -3,
      5,
      -1,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      8,
      2,
      4,
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),-1)"
  },
  {
    "input": "input : list = [-1, -1, -5, -2]\noutput : list = [-1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(sort_asc([-1, -1, -5, -2]),-4))))",
    "io_inp": [
      -1,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [50, 60]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(add_n([2, 1],4),-2)),-5),13)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      50,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(add_n(input,4),-2)),-5),13)"
  },
  {
    "input": "input : list = [-4, -5, 5, 2, -2]\noutput : list = [-23, -11, 5, 13, 17]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(mul_n(reverse([-4, -5, 5, 2, -2]),-4))),3)",
    "io_inp": [
      -4,
      -5,
      5,
      2,
      -2
    ],
    "io_out": [
      -23,
      -11,
      5,
      13,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(mul_n(reverse(input),-4))),3)"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [-14, -9, -6]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(add_n([1, 4, -4],-1),-1)),-5),5)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      -14,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(add_n(input,-1),-1)),-5),5)"
  },
  {
    "input": "input : list = [1, 4, -2, 1, -3, 2]\noutput : list = [8, 11]",
    "output": "generated_output : list = take(add_n(sub_n([1, 4, -2, 1, -3, 2],-2),5),2)",
    "io_inp": [
      1,
      4,
      -2,
      1,
      -3,
      2
    ],
    "io_out": [
      8,
      11
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,-2),5),2)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [-4, -8, -10]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sub_n([1, -1, 5],4),5))))",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sub_n(input,4),5))))"
  },
  {
    "input": "input : list = [-4, 0, -2, 1, 4, 4]\noutput : list = [32, 32, 20, 16, 8, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(sub_n([-4, 0, -2, 1, 4, 4],-4),4))))",
    "io_inp": [
      -4,
      0,
      -2,
      1,
      4,
      4
    ],
    "io_out": [
      32,
      32,
      20,
      16,
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(sub_n(input,-4),4))))"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [-7, -5]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(drop([5, 1, -1],1),3),2),-5))",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(drop(input,1),3),2),-5))"
  },
  {
    "input": "input : list = [1, 2, 0, -3, -4, -1]\noutput : list = [15, 60, 45, 0, -30, -15]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse([1, 2, 0, -3, -4, -1]),-5),-3),-1)",
    "io_inp": [
      1,
      2,
      0,
      -3,
      -4,
      -1
    ],
    "io_out": [
      15,
      60,
      45,
      0,
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(input),-5),-3),-1)"
  },
  {
    "input": "input : list = [-1, 4, -2]\noutput : list = [2]",
    "output": "generated_output : list = add_n(take(take([-1, 4, -2],1),13),3)",
    "io_inp": [
      -1,
      4,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(input,1),13),3)"
  },
  {
    "input": "input : list = [0, -5, -1, 2, 2]\noutput : list = [-5, -1, 0, 2, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([0, -5, -1, 2, 2])))",
    "io_inp": [
      0,
      -5,
      -1,
      2,
      2
    ],
    "io_out": [
      -5,
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, -1, 5]\noutput : list = [-13, 5, 2]",
    "output": "generated_output : list = add_n(reverse(mul_n([0, -1, 5],-3)),2)",
    "io_inp": [
      0,
      -1,
      5
    ],
    "io_out": [
      -13,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,-3)),2)"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [4, -1, -3]",
    "output": "generated_output : list = sort_des(mul_n([-4, 3, 1],-1))",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [4, -2, 1, -1, 3, 2]\noutput : list = [-2, -5, 7, 1, 10, -8]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(mul_n([4, -2, 1, -1, 3, 2],3)),-1),1),-4)",
    "io_inp": [
      4,
      -2,
      1,
      -1,
      3,
      2
    ],
    "io_out": [
      -2,
      -5,
      7,
      1,
      10,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(mul_n(input,3)),-1),1),-4)"
  },
  {
    "input": "input : list = [-3, 4, 5, 4, 2]\noutput : list = [0, 7, 8]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(take([-3, 4, 5, 4, 2],3)),-3)))",
    "io_inp": [
      -3,
      4,
      5,
      4,
      2
    ],
    "io_out": [
      0,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(take(input,3)),-3)))"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [-17, -8, 1]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(add_n([1, -2, 4],-4))),3),-1)",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      -17,
      -8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(add_n(input,-4))),3),-1)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [19, -21]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(mul_n([5, -5],-4),-3),-2)),3)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      19,
      -21
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(mul_n(input,-4),-3),-2)),3)"
  },
  {
    "input": "input : list = [-4, 3, 3, -4]\noutput : list = [-1, -1, 13, 13]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(mul_n([-4, 3, 3, -4],-2),17)),-1),4)",
    "io_inp": [
      -4,
      3,
      3,
      -4
    ],
    "io_out": [
      -1,
      -1,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(mul_n(input,-2),17)),-1),4)"
  },
  {
    "input": "input : list = [-2, -4, -2, 0]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-2, -4, -2, 0],1)))",
    "io_inp": [
      -2,
      -4,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [6, 5, 1]",
    "output": "generated_output : list = add_n(take(reverse(add_n(sort_asc([-2, 2, 3]),1)),36),2)",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(add_n(sort_asc(input),1)),36),2)"
  },
  {
    "input": "input : list = [-3, 0, 0, 4, 5]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(take([-3, 0, 0, 4, 5],2)),11)))",
    "io_inp": [
      -3,
      0,
      0,
      4,
      5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(take(input,2)),11)))"
  },
  {
    "input": "input : list = [2, -1, -5, 1, 0]\noutput : list = [20, 4, 0, -4, -8]",
    "output": "generated_output : list = take(mul_n(take(mul_n(sort_asc([2, -1, -5, 1, 0]),-4),7),1),48)",
    "io_inp": [
      2,
      -1,
      -5,
      1,
      0
    ],
    "io_out": [
      20,
      4,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(sort_asc(input),-4),7),1),48)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [6, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_des([5, 2])))),1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [5, 1, 3, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n(sort_des(take(drop(sort_asc([5, 1, 3, 0]),2),5)),-3)",
    "io_inp": [
      5,
      1,
      3,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(drop(sort_asc(input),2),5)),-3)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc([-5, 4])",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-8, -5]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(sort_des([-1, -2])),3)),2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(sort_des(input)),3)),2)"
  },
  {
    "input": "input : list = [-2, 3, 4, -2, -5, 2]\noutput : list = [-2, 3, 4]",
    "output": "generated_output : list = take([-2, 3, 4, -2, -5, 2],3)",
    "io_inp": [
      -2,
      3,
      4,
      -2,
      -5,
      2
    ],
    "io_out": [
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [-5, -8]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(add_n([0, -3, -4],4),2),2),-4),-3)",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(add_n(input,4),2),2),-4),-3)"
  },
  {
    "input": "input : list = [-3, -1, -5, 2, -4, 5]\noutput : list = [-4, -3, -2, 0, 3, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des([-3, -1, -5, 2, -4, 5]),-1)))",
    "io_inp": [
      -3,
      -1,
      -5,
      2,
      -4,
      5
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(input),-1)))"
  },
  {
    "input": "input : list = [-2, 2, -5, 1, 0, -2]\noutput : list = [-5, -2, -2, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 2, -5, 1, 0, -2]))",
    "io_inp": [
      -2,
      2,
      -5,
      1,
      0,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, 1, 0, -3, -5]\noutput : list = [-5, 0, 15, 25]",
    "output": "generated_output : list = mul_n(drop([5, 1, 0, -3, -5],1),-5)",
    "io_inp": [
      5,
      1,
      0,
      -3,
      -5
    ],
    "io_out": [
      -5,
      0,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [1, -5, 4]\noutput : list = [-5, 1, 4]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sort_des([1, -5, 4])),4)))",
    "io_inp": [
      1,
      -5,
      4
    ],
    "io_out": [
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [2, 2, -3, -4, 5]\noutput : list = [-20, -15, 10, 10, 25]",
    "output": "generated_output : list = mul_n(sort_asc([2, 2, -3, -4, 5]),5)",
    "io_inp": [
      2,
      2,
      -3,
      -4,
      5
    ],
    "io_out": [
      -20,
      -15,
      10,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [3, 3, -1, -4, 5, -5]\noutput : list = [8, 8, 4, 1]",
    "output": "generated_output : list = reverse(take(reverse(add_n(take([3, 3, -1, -4, 5, -5],4),5)),31))",
    "io_inp": [
      3,
      3,
      -1,
      -4,
      5,
      -5
    ],
    "io_out": [
      8,
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(take(input,4),5)),31))"
  },
  {
    "input": "input : list = [-3, 4, 2, 4, -3, -2]\noutput : list = [-7, -7, -6, -2, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_des(sort_asc([-3, 4, 2, 4, -3, -2]))),-4))",
    "io_inp": [
      -3,
      4,
      2,
      4,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [-10, -7, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(sort_asc([4, -4, -1]),2)),4))",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      -10,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(sort_asc(input),2)),4))"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take([3, 0, -5],1),-5)",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [5, -3, 4, -1, -3, -5]\noutput : list = [-8, -6, -6, -4, 1, 2]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sort_asc([5, -3, 4, -1, -3, -5])),24),2),-1)",
    "io_inp": [
      5,
      -3,
      4,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sort_asc(input)),24),2),-1)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [2, -1, 5]",
    "output": "generated_output : list = take(sub_n([-2, -5, 1],-4),19)",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),19)"
  },
  {
    "input": "input : list = [-2, 3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop([-2, 3, 4],1)",
    "io_inp": [
      -2,
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 0, -1, -2, 1, -3]\noutput : list = [-3, -2, -1, 0, 1, 4]",
    "output": "generated_output : list = take(sort_asc([4, 0, -1, -2, 1, -3]),25)",
    "io_inp": [
      4,
      0,
      -1,
      -2,
      1,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),25)"
  },
  {
    "input": "input : list = [-2, -2, 2, 2]\noutput : list = [2, 2, -2, -2]",
    "output": "generated_output : list = sort_des([-2, -2, 2, 2])",
    "io_inp": [
      -2,
      -2,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, 5]\noutput : list = [-37, -53, -85]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n([3, 2, 5],-4),4)),5),27)",
    "io_inp": [
      3,
      2,
      5
    ],
    "io_out": [
      -37,
      -53,
      -85
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n(input,-4),4)),5),27)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(sort_des(drop(mul_n(sub_n([3, 4],-3),-1),1)))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(mul_n(sub_n(input,-3),-1),1)))"
  },
  {
    "input": "input : list = [-2, 0, -5, -1]\noutput : list = [-10, -20, 5, -15]",
    "output": "generated_output : list = mul_n(sub_n([-2, 0, -5, -1],-4),-5)",
    "io_inp": [
      -2,
      0,
      -5,
      -1
    ],
    "io_out": [
      -10,
      -20,
      5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),-5)"
  },
  {
    "input": "input : list = [4, 2, -2, 5, 1, -4]\noutput : list = [-4, 1, 5, -2, 2, 4]",
    "output": "generated_output : list = reverse([4, 2, -2, 5, 1, -4])",
    "io_inp": [
      4,
      2,
      -2,
      5,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      5,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 1, 3, 1, 0]\noutput : list = [7, 5, 5, 4, 3, 3]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n([-1, -1, 1, 3, 1, 0],1)),3))",
    "io_inp": [
      -1,
      -1,
      1,
      3,
      1,
      0
    ],
    "io_out": [
      7,
      5,
      5,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(input,1)),3))"
  },
  {
    "input": "input : list = [4, 1, 3, 2, -5, 4]\noutput : list = [4, 4, 3, 2, 1, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc([4, 1, 3, 2, -5, 4]))))",
    "io_inp": [
      4,
      1,
      3,
      2,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [0, 4, -2, -3, -1]\noutput : list = [-17, -5, -2, 1, 4]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_asc([0, 4, -2, -3, -1]),-3),-2),3))",
    "io_inp": [
      0,
      4,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -17,
      -5,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_asc(input),-3),-2),3))"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take(take(take(sort_asc(drop([-1, -3, 3],1)),3),9),31)",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(sort_asc(drop(input,1)),3),9),31)"
  },
  {
    "input": "input : list = [5, -3, -4, 3, -5]\noutput : list = [7, 6, 5, -1, -3]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc([5, -3, -4, 3, -5]),-1),2),37)",
    "io_inp": [
      5,
      -3,
      -4,
      3,
      -5
    ],
    "io_out": [
      7,
      6,
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(input),-1),2),37)"
  },
  {
    "input": "input : list = [-1, 2, -4, 4]\noutput : list = [7, 5, 2, -1]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(sub_n([-1, 2, -4, 4],-5))),7),-2)",
    "io_inp": [
      -1,
      2,
      -4,
      4
    ],
    "io_out": [
      7,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(sub_n(input,-5))),7),-2)"
  },
  {
    "input": "input : list = [2, 5, 1, 1, 2, -2]\noutput : list = [-25, -10, -10, -5, -5, 10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(add_n([2, 5, 1, 1, 2, -2],-3)),5)))",
    "io_inp": [
      2,
      5,
      1,
      1,
      2,
      -2
    ],
    "io_out": [
      -25,
      -10,
      -10,
      -5,
      -5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(add_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [-1, -4, -4, 1, 0]\noutput : list = [1, 0, -1, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des([-1, -4, -4, 1, 0]))",
    "io_inp": [
      -1,
      -4,
      -4,
      1,
      0
    ],
    "io_out": [
      1,
      0,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [1, 4]",
    "output": "generated_output : list = add_n([0, 3],1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, 3, 5, 5, 4]\noutput : list = [2, 3]",
    "output": "generated_output : list = take([2, 3, 5, 5, 4],2)",
    "io_inp": [
      2,
      3,
      5,
      5,
      4
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 0, 2, 3]\noutput : list = [0, 2, 2, 3]",
    "output": "generated_output : list = sort_asc([2, 0, 2, 3])",
    "io_inp": [
      2,
      0,
      2,
      3
    ],
    "io_out": [
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 5, -4]\noutput : list = [2]",
    "output": "generated_output : list = take(take([2, 5, -4],1),6)",
    "io_inp": [
      2,
      5,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(input,1),6)"
  },
  {
    "input": "input : list = [-1, 3, -3, -3, -5, 4]\noutput : list = [16, 12, -4, -12, -12, -20]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(sort_asc([-1, 3, -3, -3, -5, 4]),4),31)))",
    "io_inp": [
      -1,
      3,
      -3,
      -3,
      -5,
      4
    ],
    "io_out": [
      16,
      12,
      -4,
      -12,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(sort_asc(input),4),31)))"
  },
  {
    "input": "input : list = [5, 5, -4, 2, -5]\noutput : list = [5, 5, 2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse([5, 5, -4, 2, -5])))",
    "io_inp": [
      5,
      5,
      -4,
      2,
      -5
    ],
    "io_out": [
      5,
      5,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 4, -4, 0]\noutput : list = [-5, -2, -1, 3]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(sub_n([-1, 4, -4, 0],2))),1),13)",
    "io_inp": [
      -1,
      4,
      -4,
      0
    ],
    "io_out": [
      -5,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(sub_n(input,2))),1),13)"
  },
  {
    "input": "input : list = [-4, -4, 1, 5, -3, 4]\noutput : list = [18, -3]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(drop([-4, -4, 1, 5, -3, 4],4),5),-2),-3)",
    "io_inp": [
      -4,
      -4,
      1,
      5,
      -3,
      4
    ],
    "io_out": [
      18,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(drop(input,4),5),-2),-3)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(reverse([5, 4])))),-1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-1, 1, 4, 1]\noutput : list = [-5, -3, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n([-1, 1, 4, 1],4))",
    "io_inp": [
      -1,
      1,
      4,
      1
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [-4, 3, 5, 4, -4]\noutput : list = [8, 16, 12, -20]",
    "output": "generated_output : list = mul_n(reverse(add_n(reverse(drop([-4, 3, 5, 4, -4],1)),-1)),4)",
    "io_inp": [
      -4,
      3,
      5,
      4,
      -4
    ],
    "io_out": [
      8,
      16,
      12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(reverse(drop(input,1)),-1)),4)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [0, 8]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(drop([2, 4, 0],1))),2))",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(drop(input,1))),2))"
  },
  {
    "input": "input : list = [-4, -2, 4, -5, 2]\noutput : list = [-7, -6, -4, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(reverse([-4, -2, 4, -5, 2]),5))),-2)",
    "io_inp": [
      -4,
      -2,
      4,
      -5,
      2
    ],
    "io_out": [
      -7,
      -6,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(reverse(input),5))),-2)"
  },
  {
    "input": "input : list = [4, -5, -4, -3, 1]\noutput : list = [-5, -4, -3, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(sort_des([4, -5, -4, -3, 1])))))",
    "io_inp": [
      4,
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, -5, -2, 3, 4]\noutput : list = [-104, -79, -4, 46, 121]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(mul_n([0, -5, -2, 3, 4],-5),5),32)),4)",
    "io_inp": [
      0,
      -5,
      -2,
      3,
      4
    ],
    "io_out": [
      -104,
      -79,
      -4,
      46,
      121
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(mul_n(input,-5),5),32)),4)"
  },
  {
    "input": "input : list = [4, -2, 3, 5]\noutput : list = [-9, 3]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(take([4, -2, 3, 5],2),-2),29),1))",
    "io_inp": [
      4,
      -2,
      3,
      5
    ],
    "io_out": [
      -9,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(take(input,2),-2),29),1))"
  },
  {
    "input": "input : list = [0, 0, 3, -3]\noutput : list = [-10, -7, -7, -4]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(sort_asc([0, 0, 3, -3]),5),-1),-3),35)",
    "io_inp": [
      0,
      0,
      3,
      -3
    ],
    "io_out": [
      -10,
      -7,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(sort_asc(input),5),-1),-3),35)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n([-4, -2],3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, 2, -5, -5, -3, 3]\noutput : list = [4, 2, -5, -5]",
    "output": "generated_output : list = sort_des(take([4, 2, -5, -5, -3, 3],4))",
    "io_inp": [
      4,
      2,
      -5,
      -5,
      -3,
      3
    ],
    "io_out": [
      4,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [-2, -2, -2, 0, 3]\noutput : list = [-28, -4, 12, 12, 12]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n([-2, -2, -2, 0, 3],4)),2),-2))",
    "io_inp": [
      -2,
      -2,
      -2,
      0,
      3
    ],
    "io_out": [
      -28,
      -4,
      12,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n(input,4)),2),-2))"
  },
  {
    "input": "input : list = [2, 4, -3, 1]\noutput : list = [9, 13, 14, 16]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(add_n([2, 4, -3, 1],2),-5))),-5)",
    "io_inp": [
      2,
      4,
      -3,
      1
    ],
    "io_out": [
      9,
      13,
      14,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(add_n(input,2),-5))),-5)"
  },
  {
    "input": "input : list = [0, -2, 3, -3]\noutput : list = [5, 6, 8]",
    "output": "generated_output : list = add_n(reverse(sub_n(drop(sort_des([0, -2, 3, -3]),1),-4)),4)",
    "io_inp": [
      0,
      -2,
      3,
      -3
    ],
    "io_out": [
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(drop(sort_des(input),1),-4)),4)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5, -2, -3]\noutput : list = [3, 3, 5, 9]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(sort_asc([-2, -5, -2, -3]),-2)),-4),3)",
    "io_inp": [
      -2,
      -5,
      -2,
      -3
    ],
    "io_out": [
      3,
      3,
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(sort_asc(input),-2)),-4),3)"
  },
  {
    "input": "input : list = [4, 0, 0, -4, -5, -2]\noutput : list = [15, 11, 11, 7, 6, 9]",
    "output": "generated_output : list = add_n(add_n(add_n(take(add_n([4, 0, 0, -4, -5, -2],5),24),4),-2),4)",
    "io_inp": [
      4,
      0,
      0,
      -4,
      -5,
      -2
    ],
    "io_out": [
      15,
      11,
      11,
      7,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(add_n(input,5),24),4),-2),4)"
  },
  {
    "input": "input : list = [-4, -3, -1]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(add_n([-4, -3, -1],5),18)),16))",
    "io_inp": [
      -4,
      -3,
      -1
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(add_n(input,5),18)),16))"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(drop([-2, 3, -1],1)))),5)",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(drop(input,1)))),5)"
  },
  {
    "input": "input : list = [-5, -2, 5, -1, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = drop([-5, -2, 5, -1, 2],3)",
    "io_inp": [
      -5,
      -2,
      5,
      -1,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, 4, -2, -5, -3]\noutput : list = [-20, -12, -8, 0, 16]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse([0, 4, -2, -5, -3]),2)),2)",
    "io_inp": [
      0,
      4,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -20,
      -12,
      -8,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(input),2)),2)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [0, -2, 2]",
    "output": "generated_output : list = add_n([3, 1, 5],-3)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      0,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, 4, 1, -5]\noutput : list = [1, 1, -2, -8]",
    "output": "generated_output : list = sub_n([4, 4, 1, -5],3)",
    "io_inp": [
      4,
      4,
      1,
      -5
    ],
    "io_out": [
      1,
      1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, -2, 4, -5]\noutput : list = [9, 3, 1, 0]",
    "output": "generated_output : list = sort_des(add_n([-4, -2, 4, -5],5))",
    "io_inp": [
      -4,
      -2,
      4,
      -5
    ],
    "io_out": [
      9,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(add_n(sort_des(take(drop([4, 0, 4],1),11)),-4),30)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(drop(input,1),11)),-4),30)"
  },
  {
    "input": "input : list = [-1, 3, -2, -3]\noutput : list = [-3, -2, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3, -2, -3])",
    "io_inp": [
      -1,
      3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, 2, 2, -1]\noutput : list = [3, -4, 3, 3, 0]",
    "output": "generated_output : list = add_n([2, -5, 2, 2, -1],1)",
    "io_inp": [
      2,
      -5,
      2,
      2,
      -1
    ],
    "io_out": [
      3,
      -4,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [20, 15, 0]",
    "output": "generated_output : list = mul_n([4, 3, 0],5)",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      20,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 3, 1, 3, 4, 4]\noutput : list = [3, 3, 5, 5, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(sort_asc([1, 3, 1, 3, 4, 4])),-2)))",
    "io_inp": [
      1,
      3,
      1,
      3,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      5,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-5, 5, -3, -5, 5]\noutput : list = [-6, 4, -4, -6, 4]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n([-5, 5, -3, -5, 5],1)),-1))",
    "io_inp": [
      -5,
      5,
      -3,
      -5,
      5
    ],
    "io_out": [
      -6,
      4,
      -4,
      -6,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(input,1)),-1))"
  },
  {
    "input": "input : list = [0, -3, -1, 2]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(sub_n(drop(sort_des(add_n([0, -3, -1, 2],3)),3),3),4)",
    "io_inp": [
      0,
      -3,
      -1,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(sort_des(add_n(input,3)),3),3),4)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [1, -7]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sort_des([3, -5]),-2))))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [4, 0, -2, -1]\noutput : list = [0, -4, -5, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sub_n([4, 0, -2, -1],4)))))",
    "io_inp": [
      4,
      0,
      -2,
      -1
    ],
    "io_out": [
      0,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [-4, -4, 0, 1, 3, 4]\noutput : list = [4, 3, 1, 0, -4, -4]",
    "output": "generated_output : list = sort_des([-4, -4, 0, 1, 3, 4])",
    "io_inp": [
      -4,
      -4,
      0,
      1,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, 0, 5]\noutput : list = [5, 2, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc([-1, 2, 0, 5]))",
    "io_inp": [
      -1,
      2,
      0,
      5
    ],
    "io_out": [
      5,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 0, -4, 4, 0, -4]\noutput : list = [20, 0, 16, -16, 0, 16]",
    "output": "generated_output : list = mul_n([-5, 0, -4, 4, 0, -4],-4)",
    "io_inp": [
      -5,
      0,
      -4,
      4,
      0,
      -4
    ],
    "io_out": [
      20,
      0,
      16,
      -16,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 2, 0, -1]\noutput : list = [3, 8, 6, 5]",
    "output": "generated_output : list = sub_n(sub_n([-3, 2, 0, -1],-1),-5)",
    "io_inp": [
      -3,
      2,
      0,
      -1
    ],
    "io_out": [
      3,
      8,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),-5)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-3, -5],5),2))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,5),2))"
  },
  {
    "input": "input : list = [4, -1, 4, -5, 1]\noutput : list = [5, 5, 14, 20, 32]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sub_n([4, -1, 4, -5, 1],3),-3),3)),-5)",
    "io_inp": [
      4,
      -1,
      4,
      -5,
      1
    ],
    "io_out": [
      5,
      5,
      14,
      20,
      32
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sub_n(input,3),-3),3)),-5)"
  },
  {
    "input": "input : list = [5, 0, 0]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(drop([5, 0, 0],1),-1)))",
    "io_inp": [
      5,
      0,
      0
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(drop(input,1),-1)))"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = drop([4, -2, 0],1)",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 3, -4, 4, -4, 3]\noutput : list = [2, -2, -30, 2, -30, -2]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n([4, 3, -4, 4, -4, 3],4),1),4),-2)",
    "io_inp": [
      4,
      3,
      -4,
      4,
      -4,
      3
    ],
    "io_out": [
      2,
      -2,
      -30,
      2,
      -30,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(input,4),1),4),-2)"
  },
  {
    "input": "input : list = [-5, 2, -4, -5, 0]\noutput : list = [-13]",
    "output": "generated_output : list = sub_n(mul_n(take([-5, 2, -4, -5, 0],1),2),3)",
    "io_inp": [
      -5,
      2,
      -4,
      -5,
      0
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,1),2),3)"
  },
  {
    "input": "input : list = [-5, -3, 5, 3, -4]\noutput : list = [-10, -9, -8, -2, 0]",
    "output": "generated_output : list = sub_n(sort_asc([-5, -3, 5, 3, -4]),5)",
    "io_inp": [
      -5,
      -3,
      5,
      3,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-11, -5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(sort_des([-5, 1]),1)),5))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -11,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(sort_des(input),1)),5))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(reverse([-3, -5]),2)),4))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(reverse(input),2)),4))"
  },
  {
    "input": "input : list = [3, -4, 0, 5, -1]\noutput : list = [0, 3, 4, 7, 9]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(sub_n([3, -4, 0, 5, -1],2)),5),1))",
    "io_inp": [
      3,
      -4,
      0,
      5,
      -1
    ],
    "io_out": [
      0,
      3,
      4,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(sub_n(input,2)),5),1))"
  },
  {
    "input": "input : list = [4, 2, 2, 3, -2, -1]\noutput : list = [4, 4, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(take([4, 2, 2, 3, -2, -1],4)),2)",
    "io_inp": [
      4,
      2,
      2,
      3,
      -2,
      -1
    ],
    "io_out": [
      4,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,4)),2)"
  },
  {
    "input": "input : list = [-2, 0, -1, 3]\noutput : list = [-2, -1, 0, 3]",
    "output": "generated_output : list = sort_asc([-2, 0, -1, 3])",
    "io_inp": [
      -2,
      0,
      -1,
      3
    ],
    "io_out": [
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [4, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -5, 4])",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des([-4, -2])",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, -3, -2, 0]\noutput : list = [-5, -7, -8, -8]",
    "output": "generated_output : list = sort_des(take(add_n(drop([0, -3, -3, -2, 0],1),-5),30))",
    "io_inp": [
      0,
      -3,
      -3,
      -2,
      0
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(drop(input,1),-5),30))"
  },
  {
    "input": "input : list = [0, 5, -3, 5, -4]\noutput : list = [1, 1, -4, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(mul_n([0, 5, -3, 5, -4],1)))),-4)",
    "io_inp": [
      0,
      5,
      -3,
      5,
      -4
    ],
    "io_out": [
      1,
      1,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(mul_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [10, 11, 4]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(add_n([-4, 3, 2],4),-2),-5)),-3)",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      10,
      11,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(add_n(input,4),-2),-5)),-3)"
  },
  {
    "input": "input : list = [0, 4, 3, -1, 4]\noutput : list = [-3, -2, 1, 2, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([0, 4, 3, -1, 4],-3)),-5)",
    "io_inp": [
      0,
      4,
      3,
      -1,
      4
    ],
    "io_out": [
      -3,
      -2,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-3)),-5)"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-3, 2, -4]",
    "output": "generated_output : list = add_n([-4, 1, -5],1)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, -3, -5, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take(take([-1, -3, -5, 0],1),10))",
    "io_inp": [
      -1,
      -3,
      -5,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,1),10))"
  },
  {
    "input": "input : list = [-1, 2, -5, -3]\noutput : list = [33, 25, 17, 5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sub_n([-1, 2, -5, -3],2),-4),5)))",
    "io_inp": [
      -1,
      2,
      -5,
      -3
    ],
    "io_out": [
      33,
      25,
      17,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sub_n(input,2),-4),5)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-5, -20]",
    "output": "generated_output : list = mul_n([1, 4],-5)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [-3, 0, 1]",
    "output": "generated_output : list = sort_asc([1, -3, 0])",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = reverse([-3, 0, 5])",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, -2, 5, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc(drop(take(reverse(sort_asc([5, 5, -2, 5, -2])),15),3))",
    "io_inp": [
      5,
      5,
      -2,
      5,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(take(reverse(sort_asc(input)),15),3))"
  },
  {
    "input": "input : list = [-1, -5, -2]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n(drop([-1, -5, -2],1),1),-1)))",
    "io_inp": [
      -1,
      -5,
      -2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(drop(input,1),1),-1)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(sort_des([-4, -5]))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, -3, 0, 0]\noutput : list = [0, 0, -6, 10]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(reverse([5, -3, 0, 0])),14)),2)",
    "io_inp": [
      5,
      -3,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(reverse(input)),14)),2)"
  },
  {
    "input": "input : list = [0, 2, -2, -1]\noutput : list = [-2, -3, 1, -1]",
    "output": "generated_output : list = take(sub_n(add_n(take(reverse([0, 2, -2, -1]),9),2),3),11)",
    "io_inp": [
      0,
      2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(reverse(input),9),2),3),11)"
  },
  {
    "input": "input : list = [1, 3, 5, 0]\noutput : list = [-11, -9, -7, -6]",
    "output": "generated_output : list = add_n(take(mul_n(sort_des(sub_n([1, 3, 5, 0],-1)),-1),17),-5)",
    "io_inp": [
      1,
      3,
      5,
      0
    ],
    "io_out": [
      -11,
      -9,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_des(sub_n(input,-1)),-1),17),-5)"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [0, -6, 6]",
    "output": "generated_output : list = mul_n([0, -2, 2],3)",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      0,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, 5, -3, 5, 4, 5]\noutput : list = [55, -25, -85, -105, -105, -105]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(reverse([1, 5, -3, 5, 4, 5]),-4),5),-5))",
    "io_inp": [
      1,
      5,
      -3,
      5,
      4,
      5
    ],
    "io_out": [
      55,
      -25,
      -85,
      -105,
      -105,
      -105
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(reverse(input),-4),5),-5))"
  },
  {
    "input": "input : list = [0, 2, -1, 3, 3]\noutput : list = [7, 7, 6, 4, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(sort_asc([0, 2, -1, 3, 3]),24)),-4))",
    "io_inp": [
      0,
      2,
      -1,
      3,
      3
    ],
    "io_out": [
      7,
      7,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(sort_asc(input),24)),-4))"
  },
  {
    "input": "input : list = [-4, 0, 2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_des(drop([-4, 0, 2, -2],2)))))",
    "io_inp": [
      -4,
      0,
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [-1, -4, -5, -2, 2]\noutput : list = [6, 3, 2, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(sub_n([-1, -4, -5, -2, 2],-2),-2))))",
    "io_inp": [
      -1,
      -4,
      -5,
      -2,
      2
    ],
    "io_out": [
      6,
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(sub_n(input,-2),-2))))"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [-3, -1, 6]",
    "output": "generated_output : list = sort_asc(sub_n([-5, 4, -3],-2))",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      -3,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [0, -3, 5, 0]\noutput : list = [-3, 0, 0, 5]",
    "output": "generated_output : list = sort_asc([0, -3, 5, 0])",
    "io_inp": [
      0,
      -3,
      5,
      0
    ],
    "io_out": [
      -3,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [25, 20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_des([-4, -3]),1),-5)))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      25,
      20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_des(input),1),-5)))"
  },
  {
    "input": "input : list = [1, -3, 3, -5]\noutput : list = [3, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(mul_n(drop([1, -3, 3, -5],1),1))))",
    "io_inp": [
      1,
      -3,
      3,
      -5
    ],
    "io_out": [
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(mul_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-20, -4]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(add_n([1, 5],-2),-3),4),-2),-2)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -20,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(add_n(input,-2),-3),4),-2),-2)"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [16, 8, -4]",
    "output": "generated_output : list = take(take(sort_des(mul_n([4, -1, 2],4)),26),17)",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      16,
      8,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(mul_n(input,4)),26),17)"
  },
  {
    "input": "input : list = [5, -4, 2, 0]\noutput : list = [-9, -3, -5]",
    "output": "generated_output : list = add_n(mul_n(drop([5, -4, 2, 0],1),1),-5)",
    "io_inp": [
      5,
      -4,
      2,
      0
    ],
    "io_out": [
      -9,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,1),1),-5)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(reverse([3, 2]),1)),-1),-1)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(reverse(input),1)),-1),-1)"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [28, 16, -4]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(add_n([3, 0, -5],-1),-3),2),4),29)",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      28,
      16,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(add_n(input,-1),-3),2),4),29)"
  },
  {
    "input": "input : list = [3, 2, 0, -1, 4, -5]\noutput : list = [-5, 4, -1, 0, 2, 3]",
    "output": "generated_output : list = reverse([3, 2, 0, -1, 4, -5])",
    "io_inp": [
      3,
      2,
      0,
      -1,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 5, 5, -2]\noutput : list = [4, 6, 6, 6, -1]",
    "output": "generated_output : list = add_n([3, 5, 5, 5, -2],1)",
    "io_inp": [
      3,
      5,
      5,
      5,
      -2
    ],
    "io_out": [
      4,
      6,
      6,
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-5, -3, 1]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des([1, -3, -5]))),6)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(input))),6)"
  },
  {
    "input": "input : list = [-5, 5, 2]\noutput : list = [4, 14, 11]",
    "output": "generated_output : list = sub_n(sub_n([-5, 5, 2],-4),-5)",
    "io_inp": [
      -5,
      5,
      2
    ],
    "io_out": [
      4,
      14,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(sort_asc([2, 4]))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -4, 0, -5]\noutput : list = [-15, -18, -19, -20]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n([-3, -4, 0, -5],5),-5)),-5))",
    "io_inp": [
      -3,
      -4,
      0,
      -5
    ],
    "io_out": [
      -15,
      -18,
      -19,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n(input,5),-5)),-5))"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take([0, 0, -3],1),3),-5),-2)",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(input,1),3),-5),-2)"
  },
  {
    "input": "input : list = [-3, -1, 0]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = sort_des(take(add_n(take(add_n([-3, -1, 0],-5),3),5),28))",
    "io_inp": [
      -3,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(add_n(input,-5),3),5),28))"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(take([-3, -5, 1],1))),1),-5)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(take(input,1))),1),-5)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-7, -1]",
    "output": "generated_output : list = reverse(sort_des(add_n([3, -3],-4)))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,-4)))"
  },
  {
    "input": "input : list = [3, 1, 3, -1, 0, -1]\noutput : list = [67, 67, 27, 7, -13, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(mul_n([3, 1, 3, -1, 0, -1],-5),-4)),-5),2)",
    "io_inp": [
      3,
      1,
      3,
      -1,
      0,
      -1
    ],
    "io_out": [
      67,
      67,
      27,
      7,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(mul_n(input,-5),-4)),-5),2)"
  },
  {
    "input": "input : list = [-1, 4, -4, 5, 3, 3]\noutput : list = [-6, -3, 1, 1, 2, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-1, 4, -4, 5, 3, 3]),2))",
    "io_inp": [
      -1,
      4,
      -4,
      5,
      3,
      3
    ],
    "io_out": [
      -6,
      -3,
      1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [5, -3, 0, -5, -5, 3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(reverse(take([5, -3, 0, -5, -5, 3],2)),15)",
    "io_inp": [
      5,
      -3,
      0,
      -5,
      -5,
      3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,2)),15)"
  },
  {
    "input": "input : list = [-2, 5, -4, -3]\noutput : list = [-6, 1, -8, -7]",
    "output": "generated_output : list = sub_n([-2, 5, -4, -3],4)",
    "io_inp": [
      -2,
      5,
      -4,
      -3
    ],
    "io_out": [
      -6,
      1,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [5, -4, 2, -4, -4, 3]\noutput : list = [10, 6, 4, -8, -8, -8]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(reverse([5, -4, 2, -4, -4, 3]),2)),44))",
    "io_inp": [
      5,
      -4,
      2,
      -4,
      -4,
      3
    ],
    "io_out": [
      10,
      6,
      4,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(reverse(input),2)),44))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-9, -2]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(sort_des([-3, 4]),5),-1),15))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(sort_des(input),5),-1),15))"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [-12, 20]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(drop([-1, -4, 4],1),4),-4),30))",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      -12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(drop(input,1),4),-4),30))"
  },
  {
    "input": "input : list = [0, -3, -3, 0]\noutput : list = [1, -2, -2, 1]",
    "output": "generated_output : list = sub_n([0, -3, -3, 0],-1)",
    "io_inp": [
      0,
      -3,
      -3,
      0
    ],
    "io_out": [
      1,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [9, 3]",
    "output": "generated_output : list = sub_n(sub_n([4, -2],-4),-1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-4, 4, -5, -1, 2]\noutput : list = [4, 2, -1, -4, -5]",
    "output": "generated_output : list = sort_des([-4, 4, -5, -1, 2])",
    "io_inp": [
      -4,
      4,
      -5,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [14, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(add_n([5, 1],-5),-4)),2))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      14,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(add_n(input,-5),-4)),2))"
  },
  {
    "input": "input : list = [-2, -1, 0, 2, -2, -2]\noutput : list = [10, 5, 0, -10, 10, 10]",
    "output": "generated_output : list = take(mul_n([-2, -1, 0, 2, -2, -2],-5),29)",
    "io_inp": [
      -2,
      -1,
      0,
      2,
      -2,
      -2
    ],
    "io_out": [
      10,
      5,
      0,
      -10,
      10,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),29)"
  },
  {
    "input": "input : list = [4, -1, 3, 0]\noutput : list = [-4, -3, 0, 1]",
    "output": "generated_output : list = mul_n(sort_des([4, -1, 3, 0]),-1)",
    "io_inp": [
      4,
      -1,
      3,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [1, -2, 4, 2, 5]\noutput : list = [4, 7, 1, 3, 0]",
    "output": "generated_output : list = sub_n(mul_n(take(sub_n(sub_n([1, -2, 4, 2, 5],3),-1),26),-1),-3)",
    "io_inp": [
      1,
      -2,
      4,
      2,
      5
    ],
    "io_out": [
      4,
      7,
      1,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sub_n(sub_n(input,3),-1),26),-1),-3)"
  },
  {
    "input": "input : list = [0, -1, 5, 0, -5]\noutput : list = [60, 0, 0, -12, -60]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(sort_asc([0, -1, 5, 0, -5]),3),4)),11)",
    "io_inp": [
      0,
      -1,
      5,
      0,
      -5
    ],
    "io_out": [
      60,
      0,
      0,
      -12,
      -60
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(sort_asc(input),3),4)),11)"
  },
  {
    "input": "input : list = [-5, 2, 5, 1]\noutput : list = [18, 12, 10, -2]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-5, 2, 5, 1],4)),2)",
    "io_inp": [
      -5,
      2,
      5,
      1
    ],
    "io_out": [
      18,
      12,
      10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,4)),2)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [-40]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(take([-5, 1, 5],1)),2)),4)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(take(input,1)),2)),4)"
  },
  {
    "input": "input : list = [-1, -4, 1, 0, -4]\noutput : list = [-4, 1, 0, -4]",
    "output": "generated_output : list = drop([-1, -4, 1, 0, -4],1)",
    "io_inp": [
      -1,
      -4,
      1,
      0,
      -4
    ],
    "io_out": [
      -4,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -3, 5, -4, -4, 4]\noutput : list = [-2, -2, -1, 1, 6, 7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des([-1, -3, 5, -4, -4, 4])),2),4))",
    "io_inp": [
      -1,
      -3,
      5,
      -4,
      -4,
      4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des(input)),2),4))"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(add_n([5, 2, 4],-4))),-1))",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(add_n(input,-4))),-1))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_asc([1, -3])),4),16))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_asc(input)),4),16))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(take(take(sort_asc([5, 0]),1),17)),2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(sort_asc(input),1),17)),2)"
  },
  {
    "input": "input : list = [4, -1, 4, -2, 3]\noutput : list = [5, -20, -20]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(take([4, -1, 4, -2, 3],3),-5))))",
    "io_inp": [
      4,
      -1,
      4,
      -2,
      3
    ],
    "io_out": [
      5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(take(input,3),-5))))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc([5, -2])",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5, -1, 3]\noutput : list = [-6]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(take([-4, -5, -1, 3],1)),2)),34)",
    "io_inp": [
      -4,
      -5,
      -1,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(take(input,1)),2)),34)"
  },
  {
    "input": "input : list = [-1, -1, 5, -2]\noutput : list = [0, 0, 6, -1]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-1, -1, 5, -2],-1),-1),-1)",
    "io_inp": [
      -1,
      -1,
      5,
      -2
    ],
    "io_out": [
      0,
      0,
      6,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,-1),-1),-1)"
  },
  {
    "input": "input : list = [-4, 0, 3, -3]\noutput : list = [-3, 3, 0, -4]",
    "output": "generated_output : list = reverse([-4, 0, 3, -3])",
    "io_inp": [
      -4,
      0,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 5, -3]\noutput : list = [-6, 3, 18, 18]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sub_n([2, -3, 5, -3],3),3))),-1)",
    "io_inp": [
      2,
      -3,
      5,
      -3
    ],
    "io_out": [
      -6,
      3,
      18,
      18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sub_n(input,3),3))),-1)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 2, -2],1)",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [4, 12, 16]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(sub_n([-4, -2, 2],4)),-2)),35)",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      4,
      12,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(sub_n(input,4)),-2)),35)"
  },
  {
    "input": "input : list = [4, 0, -1, -5, 5, -3]\noutput : list = [-99, 61]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(drop([4, 0, -1, -5, 5, -3],4),5),-4),-1),19)",
    "io_inp": [
      4,
      0,
      -1,
      -5,
      5,
      -3
    ],
    "io_out": [
      -99,
      61
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(drop(input,4),5),-4),-1),19)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc([-2, -3]),3))))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [50, -10, -20]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse([2, -5, 1]),-2)),5)",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      50,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(input),-2)),5)"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [-3, -1, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des([3, -3, -5])),-1),-3)",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(input)),-1),-3)"
  },
  {
    "input": "input : list = [-1, 3, -3, 0, 0, -1]\noutput : list = [8, 5, 5, 4, 4, 2]",
    "output": "generated_output : list = sort_des(add_n(sub_n([-1, 3, -3, 0, 0, -1],-2),3))",
    "io_inp": [
      -1,
      3,
      -3,
      0,
      0,
      -1
    ],
    "io_out": [
      8,
      5,
      5,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,-2),3))"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = sort_des(mul_n(reverse([-4, 0, 2]),-1))",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-1, -5, -6]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n([3, -2, -1],4),9)))",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(input,4),9)))"
  },
  {
    "input": "input : list = [-5, -4, 5, -4, 4]\noutput : list = [5, -4, 4]",
    "output": "generated_output : list = drop([-5, -4, 5, -4, 4],2)",
    "io_inp": [
      -5,
      -4,
      5,
      -4,
      4
    ],
    "io_out": [
      5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 2, 3, -4, -3]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sort_des(drop(sort_asc(reverse([-3, 2, 3, -4, -3])),4)),-3)",
    "io_inp": [
      -3,
      2,
      3,
      -4,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(sort_asc(reverse(input)),4)),-3)"
  },
  {
    "input": "input : list = [3, 2, -3, 5]\noutput : list = [0, -2, -3, -8]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(sort_asc([3, 2, -3, 5]))),5))",
    "io_inp": [
      3,
      2,
      -3,
      5
    ],
    "io_out": [
      0,
      -2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [0, -9, -24]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(sub_n([-1, -4, 4],-4),-3))))",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      0,
      -9,
      -24
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(sub_n(input,-4),-3))))"
  },
  {
    "input": "input : list = [4, 3, -1, -5, -2, -1]\noutput : list = [-5, -2, -1, -1, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 3, -1, -5, -2, -1])",
    "io_inp": [
      4,
      3,
      -1,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, 1]\noutput : list = [7, -3, 3]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(sub_n([5, -5, 1],1),3),2),-5),-1)",
    "io_inp": [
      5,
      -5,
      1
    ],
    "io_out": [
      7,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(sub_n(input,1),3),2),-5),-1)"
  },
  {
    "input": "input : list = [1, 2, -1, 4]\noutput : list = [1, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n([1, 2, -1, 4],-1),-1)))",
    "io_inp": [
      1,
      2,
      -1,
      4
    ],
    "io_out": [
      1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(input,-1),-1)))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-48, -24]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des(reverse([2, 4])),3)),-4)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -48,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(reverse(input)),3)),-4)"
  },
  {
    "input": "input : list = [-3, -1, 1, -3, 2, 1]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(take([-3, -1, 1, -3, 2, 1],1)))),-5)",
    "io_inp": [
      -3,
      -1,
      1,
      -3,
      2,
      1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(take(input,1)))),-5)"
  },
  {
    "input": "input : list = [-5, -1, -5, -3]\noutput : list = [-15, -9]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(drop([-5, -1, -5, -3],2)))),3)",
    "io_inp": [
      -5,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(drop(input,2)))),3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [4, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(reverse([-5, 0]),12))),4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(reverse(input),12))),4)"
  },
  {
    "input": "input : list = [-5, 1, -5, 3, -2, 4]\noutput : list = [-9, -9, -3, -1]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(take([-5, 1, -5, 3, -2, 4],4)),24),30),4)",
    "io_inp": [
      -5,
      1,
      -5,
      3,
      -2,
      4
    ],
    "io_out": [
      -9,
      -9,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(take(input,4)),24),30),4)"
  },
  {
    "input": "input : list = [-4, 4, -3, -5]\noutput : list = [-12, 12, -9, -15]",
    "output": "generated_output : list = mul_n([-4, 4, -3, -5],3)",
    "io_inp": [
      -4,
      4,
      -3,
      -5
    ],
    "io_out": [
      -12,
      12,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [4, 8, -16]",
    "output": "generated_output : list = reverse(take(mul_n([-4, 2, 1],4),15))",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      4,
      8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,4),15))"
  },
  {
    "input": "input : list = [-3, 2, -5, 3]\noutput : list = [-6, -7, -12, -14]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(add_n([-3, 2, -5, 3],-5),-1),18),3))",
    "io_inp": [
      -3,
      2,
      -5,
      3
    ],
    "io_out": [
      -6,
      -7,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(add_n(input,-5),-1),18),3))"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-9, 7, 11]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sort_des([3, -2, -1])),1),-4),-3)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -9,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sort_des(input)),1),-4),-3)"
  },
  {
    "input": "input : list = [1, 5, -3, 3, -2]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(take([1, 5, -3, 3, -2],1))),4),2)",
    "io_inp": [
      1,
      5,
      -3,
      3,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(take(input,1))),4),2)"
  },
  {
    "input": "input : list = [0, 0, 3, -2, 2]\noutput : list = [15, 25, 25, 35, 40]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sort_des([0, 0, 3, -2, 2]),5))),5)",
    "io_inp": [
      0,
      0,
      3,
      -2,
      2
    ],
    "io_out": [
      15,
      25,
      25,
      35,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sort_des(input),5))),5)"
  },
  {
    "input": "input : list = [2, 2, -1, 4]\noutput : list = [-1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 2, -1, 4])",
    "io_inp": [
      2,
      2,
      -1,
      4
    ],
    "io_out": [
      -1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -5, -4, -1, -4]\noutput : list = [-5, -8, -7, -4, -7]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(add_n([-2, -5, -4, -1, -4],2),2),1),9),4)",
    "io_inp": [
      -2,
      -5,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -8,
      -7,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(add_n(input,2),2),1),9),4)"
  },
  {
    "input": "input : list = [4, 3, 2, 3, 3]\noutput : list = [-12, -9, -9, -9, -6]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(sort_des([4, 3, 2, 3, 3]),-3))),6)",
    "io_inp": [
      4,
      3,
      2,
      3,
      3
    ],
    "io_out": [
      -12,
      -9,
      -9,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(sort_des(input),-3))),6)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-80, -100]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(mul_n([4, 5],-5)),4)))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -80,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(mul_n(input,-5)),4)))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, -80]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([0, 4],-4),5))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-4),5))"
  },
  {
    "input": "input : list = [0, 1, -5, 5, -1, -3]\noutput : list = [5, 6, 0, 10, 4, 2]",
    "output": "generated_output : list = add_n([0, 1, -5, 5, -1, -3],5)",
    "io_inp": [
      0,
      1,
      -5,
      5,
      -1,
      -3
    ],
    "io_out": [
      5,
      6,
      0,
      10,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 3, -1, 4]\noutput : list = [4, -1, 3, 0]",
    "output": "generated_output : list = take(reverse([0, 3, -1, 4]),20)",
    "io_inp": [
      0,
      3,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),20)"
  },
  {
    "input": "input : list = [-4, 1, 5, 5, -3]\noutput : list = [20, 15, -5, -25, -25]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(reverse([-4, 1, 5, 5, -3]))),-5),52)",
    "io_inp": [
      -4,
      1,
      5,
      5,
      -3
    ],
    "io_out": [
      20,
      15,
      -5,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(reverse(input))),-5),52)"
  },
  {
    "input": "input : list = [4, 5, 1]\noutput : list = [20, 25, 5]",
    "output": "generated_output : list = reverse(reverse(mul_n([4, 5, 1],5)))",
    "io_inp": [
      4,
      5,
      1
    ],
    "io_out": [
      20,
      25,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,5)))"
  },
  {
    "input": "input : list = [1, 0, -4]\noutput : list = [-6, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(sub_n([1, 0, -4],2)))))",
    "io_inp": [
      1,
      0,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [-2, 1, -2]\noutput : list = [-4, 2, -4]",
    "output": "generated_output : list = mul_n([-2, 1, -2],2)",
    "io_inp": [
      -2,
      1,
      -2
    ],
    "io_out": [
      -4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [4, -3, -2, 2, -3, 1]\noutput : list = [-21, -9, -24, -12, -9, -30]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(add_n([4, -3, -2, 2, -3, 1],2),4),-3)),1)",
    "io_inp": [
      4,
      -3,
      -2,
      2,
      -3,
      1
    ],
    "io_out": [
      -21,
      -9,
      -24,
      -12,
      -9,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(add_n(input,2),4),-3)),1)"
  },
  {
    "input": "input : list = [2, 4, -4, 0, 4, -2]\noutput : list = [12, -6]",
    "output": "generated_output : list = mul_n(drop([2, 4, -4, 0, 4, -2],4),3)",
    "io_inp": [
      2,
      4,
      -4,
      0,
      4,
      -2
    ],
    "io_out": [
      12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,4),3)"
  },
  {
    "input": "input : list = [4, -5, 5]\noutput : list = [0, -1, -10]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(add_n([4, -5, 5],-5)),21)))",
    "io_inp": [
      4,
      -5,
      5
    ],
    "io_out": [
      0,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(add_n(input,-5)),21)))"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [16, 20, 36]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n([0, -4, 1],4),-1)),-4)",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      16,
      20,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(input,4),-1)),-4)"
  },
  {
    "input": "input : list = [4, -1, -5, 2, -2]\noutput : list = [11, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take([4, -1, -5, 2, -2],2)),5),-2)",
    "io_inp": [
      4,
      -1,
      -5,
      2,
      -2
    ],
    "io_out": [
      11,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(input,2)),5),-2)"
  },
  {
    "input": "input : list = [4, -5, 5]\noutput : list = [0, 30]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(drop([4, -5, 5],1)),9),-5),-3)",
    "io_inp": [
      4,
      -5,
      5
    ],
    "io_out": [
      0,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(drop(input,1)),9),-5),-3)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sub_n(take(mul_n(take(sub_n([4, 5],4),3),-4),23),2)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(sub_n(input,4),3),-4),23),2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [0, -2]",
    "output": "generated_output : list = add_n(add_n(sort_des(sub_n(reverse([1, -1]),-4)),-1),-4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sub_n(reverse(input),-4)),-1),-4)"
  },
  {
    "input": "input : list = [3, 1, 2, -1]\noutput : list = [9, 6, 3, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n(reverse([3, 1, 2, -1]),3))))",
    "io_inp": [
      3,
      1,
      2,
      -1
    ],
    "io_out": [
      9,
      6,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse([1, 4])",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [-1, 3, 0]",
    "output": "generated_output : list = take(reverse([0, 3, -1]),11)",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),11)"
  },
  {
    "input": "input : list = [1, 3, 5]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = add_n([1, 3, 5],-3)",
    "io_inp": [
      1,
      3,
      5
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [4, 7]",
    "output": "generated_output : list = reverse(take(sub_n(add_n(drop([1, 5, 2],1),3),1),23))",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(add_n(drop(input,1),3),1),23))"
  },
  {
    "input": "input : list = [4, 4, 0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(reverse(drop([4, 4, 0, 1],2)),2)",
    "io_inp": [
      4,
      4,
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(drop(input,2)),2)"
  },
  {
    "input": "input : list = [-2, 0, 3, 4, -2, 1]\noutput : list = [1, -2, 4, 3, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, 3, 4, -2, 1])",
    "io_inp": [
      -2,
      0,
      3,
      4,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      4,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [1, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([3, -4]),5))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [0, 4, 4, 5, 0]\noutput : list = [0, 0, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 4, 4, 5, 0])",
    "io_inp": [
      0,
      4,
      4,
      5,
      0
    ],
    "io_out": [
      0,
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, -5, -2]\noutput : list = [3, 6, 7, 9]",
    "output": "generated_output : list = reverse(add_n(take(add_n(sort_des([1, -1, -5, -2]),5),30),3))",
    "io_inp": [
      1,
      -1,
      -5,
      -2
    ],
    "io_out": [
      3,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(sort_des(input),5),30),3))"
  },
  {
    "input": "input : list = [2, -3, 4, -2]\noutput : list = [-5, -10]",
    "output": "generated_output : list = take(sub_n(add_n([2, -3, 4, -2],-4),3),2)",
    "io_inp": [
      2,
      -3,
      4,
      -2
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-4),3),2)"
  },
  {
    "input": "input : list = [-1, -3, -2, 2, -1]\noutput : list = [0, 1, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([-1, -3, -2, 2, -1],3)))",
    "io_inp": [
      -1,
      -3,
      -2,
      2,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,3)))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-6, 0]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n([-3, 3],-5),5),-4),1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(input,-5),5),-4),1)"
  },
  {
    "input": "input : list = [-1, -1, -5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(drop([-1, -1, -5, 0],2)),24)))",
    "io_inp": [
      -1,
      -1,
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(drop(input,2)),24)))"
  },
  {
    "input": "input : list = [-3, -3, 3, 5, -1, -2]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc([-3, -3, 3, 5, -1, -2]))),1)",
    "io_inp": [
      -3,
      -3,
      3,
      5,
      -1,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(input))),1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, 25]",
    "output": "generated_output : list = mul_n(sort_des([0, -5]),-5)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-3, 0, -2, 5, -3]\noutput : list = [0, -2, 5, -3]",
    "output": "generated_output : list = drop([-3, 0, -2, 5, -3],1)",
    "io_inp": [
      -3,
      0,
      -2,
      5,
      -3
    ],
    "io_out": [
      0,
      -2,
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(add_n([2, 3, 5],-2),-4)),-3))",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(add_n(input,-2),-4)),-3))"
  },
  {
    "input": "input : list = [-4, 2, -2, -5]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(reverse(take([-4, 2, -2, -5],2)))",
    "io_inp": [
      -4,
      2,
      -2,
      -5
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [3, -3, 2, 1, -4]\noutput : list = [-11, -9, -7, 1, 3]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sub_n([3, -3, 2, 1, -4],-4)),-2)),3)",
    "io_inp": [
      3,
      -3,
      2,
      1,
      -4
    ],
    "io_out": [
      -11,
      -9,
      -7,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sub_n(input,-4)),-2)),3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse([-1, -2])",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, -4, -5, 5, -5]\noutput : list = [-9, -9, -8, -5, -4, 1]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(reverse([-1, 0, -4, -5, 5, -5]))),-4))",
    "io_inp": [
      -1,
      0,
      -4,
      -5,
      5,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(reverse(input))),-4))"
  },
  {
    "input": "input : list = [2, 2, 3, 5, -4]\noutput : list = [-4, 2, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(reverse([2, 2, 3, 5, -4]),12)))",
    "io_inp": [
      2,
      2,
      3,
      5,
      -4
    ],
    "io_out": [
      -4,
      2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(reverse(input),12)))"
  },
  {
    "input": "input : list = [-4, -4, -4, 1, -2]\noutput : list = [15, 12, 10, 10, 10]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(add_n([-4, -4, -4, 1, -2],5)),4)),-5)",
    "io_inp": [
      -4,
      -4,
      -4,
      1,
      -2
    ],
    "io_out": [
      15,
      12,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(add_n(input,5)),4)),-5)"
  },
  {
    "input": "input : list = [-1, 3, 2, 1]\noutput : list = [-2, 2, 1, 0]",
    "output": "generated_output : list = sub_n([-1, 3, 2, 1],1)",
    "io_inp": [
      -1,
      3,
      2,
      1
    ],
    "io_out": [
      -2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, -3, -5, 4, 0]\noutput : list = [1, -15, 21, 13, 1]",
    "output": "generated_output : list = reverse(sub_n(mul_n([0, -3, -5, 4, 0],-4),-1))",
    "io_inp": [
      0,
      -3,
      -5,
      4,
      0
    ],
    "io_out": [
      1,
      -15,
      21,
      13,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-4),-1))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [0, -9]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n([-5, 4],-5),-1)))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(input,-5),-1)))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [13, 13]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(sub_n([5, 5],-5)))),3)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(sub_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse(reverse(take(reverse(sort_des([-3, -1])),25)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(sort_des(input)),25)))"
  },
  {
    "input": "input : list = [5, 0, -3, 0]\noutput : list = [-6, -3, -3, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sort_asc([5, 0, -3, 0]))),-3))",
    "io_inp": [
      5,
      0,
      -3,
      0
    ],
    "io_out": [
      -6,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [7, 22, 27]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(reverse([0, -1, -4]),5),3),5),-2)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      7,
      22,
      27
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(reverse(input),5),3),5),-2)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(take(reverse(take([-5, -3, -1],1)),1),-1)",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(input,1)),1),-1)"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = sort_des([3, 4, -5])",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, 0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = drop([4, -1, 0, 1],2)",
    "io_inp": [
      4,
      -1,
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -2, -3, 2, 2]\noutput : list = [2, 0, -8, -8, -14]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(mul_n([5, -2, -3, 2, 2],-2)),-2),29),-2)",
    "io_inp": [
      5,
      -2,
      -3,
      2,
      2
    ],
    "io_out": [
      2,
      0,
      -8,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(mul_n(input,-2)),-2),29),-2)"
  },
  {
    "input": "input : list = [1, -5, 2, 5, 1, 0]\noutput : list = [-5, 20, 25, 25, 30]",
    "output": "generated_output : list = mul_n(reverse(drop(add_n(sort_des([1, -5, 2, 5, 1, 0]),4),1)),5)",
    "io_inp": [
      1,
      -5,
      2,
      5,
      1,
      0
    ],
    "io_out": [
      -5,
      20,
      25,
      25,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(add_n(sort_des(input),4),1)),5)"
  },
  {
    "input": "input : list = [3, 2, 3, 4, 2, 3]\noutput : list = [-1, -2, -1, 0, -2, -1]",
    "output": "generated_output : list = sub_n([3, 2, 3, 4, 2, 3],4)",
    "io_inp": [
      3,
      2,
      3,
      4,
      2,
      3
    ],
    "io_out": [
      -1,
      -2,
      -1,
      0,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = sort_asc([1, 5, 1])",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 4, 2, 2]\noutput : list = [2, 26, 18, 18]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n(mul_n([-2, 4, 2, 2],2),-5)),2))",
    "io_inp": [
      -2,
      4,
      2,
      2
    ],
    "io_out": [
      2,
      26,
      18,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(mul_n(input,2),-5)),2))"
  },
  {
    "input": "input : list = [1, 1, 5, 4, 5]\noutput : list = [10, 10, 30, 25, 30]",
    "output": "generated_output : list = sub_n(mul_n(add_n([1, 1, 5, 4, 5],2),5),5)",
    "io_inp": [
      1,
      1,
      5,
      4,
      5
    ],
    "io_out": [
      10,
      10,
      30,
      25,
      30
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,2),5),5)"
  },
  {
    "input": "input : list = [-4, 0, 0, 1, -3, -2]\noutput : list = [1, 0, 0, -2, -3, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, 0, 0, 1, -3, -2]))",
    "io_inp": [
      -4,
      0,
      0,
      1,
      -3,
      -2
    ],
    "io_out": [
      1,
      0,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [5, 3, -4]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(sort_des([-5, 4, -3]))),-1),17)",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(sort_des(input))),-1),17)"
  },
  {
    "input": "input : list = [-4, 2, 1, -2, 5, -4]\noutput : list = [9, 9, 3, -6, -9, -18]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc([-4, 2, 1, -2, 5, -4]),-3)),2),-3)",
    "io_inp": [
      -4,
      2,
      1,
      -2,
      5,
      -4
    ],
    "io_out": [
      9,
      9,
      3,
      -6,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc(input),-3)),2),-3)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(sort_asc([-5, 5]))),26))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(sort_asc(input))),26))"
  },
  {
    "input": "input : list = [5, 4, 0, 3]\noutput : list = [3, 0, 4, 5]",
    "output": "generated_output : list = reverse([5, 4, 0, 3])",
    "io_inp": [
      5,
      4,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 2, -5, 5, 0]\noutput : list = [10, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take([4, 2, -5, 5, 0],2),5)))",
    "io_inp": [
      4,
      2,
      -5,
      5,
      0
    ],
    "io_out": [
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(input,2),5)))"
  },
  {
    "input": "input : list = [0, -5, 4, -5, -5]\noutput : list = [4, 0, -5, -5, -5]",
    "output": "generated_output : list = sort_des([0, -5, 4, -5, -5])",
    "io_inp": [
      0,
      -5,
      4,
      -5,
      -5
    ],
    "io_out": [
      4,
      0,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 4, 4, 4, -5]\noutput : list = [20, -16, -16, -16]",
    "output": "generated_output : list = mul_n(reverse(drop([-2, 4, 4, 4, -5],1)),-4)",
    "io_inp": [
      -2,
      4,
      4,
      4,
      -5
    ],
    "io_out": [
      20,
      -16,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,1)),-4)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sort_asc([3, 1])),1),32))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sort_asc(input)),1),32))"
  },
  {
    "input": "input : list = [4, 0, -3, -3, -5]\noutput : list = [9, 5, 2, 2, 0]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(sub_n([4, 0, -3, -3, -5],-4),5)),1))",
    "io_inp": [
      4,
      0,
      -3,
      -3,
      -5
    ],
    "io_out": [
      9,
      5,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(sub_n(input,-4),5)),1))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc([-1, -2])",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2, 0]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 2, 0],2))",
    "io_inp": [
      -2,
      2,
      0
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-4, -1, -5, -2, 4]\noutput : list = [-35, -10, -5, 5, 10]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(sort_des([-4, -1, -5, -2, 4]),-2),4),-5),-5)",
    "io_inp": [
      -4,
      -1,
      -5,
      -2,
      4
    ],
    "io_out": [
      -35,
      -10,
      -5,
      5,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(sort_des(input),-2),4),-5),-5)"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [-7, 5, 20]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n([0, -5, 4],-3))),22),-5)",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      -7,
      5,
      20
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n(input,-3))),22),-5)"
  },
  {
    "input": "input : list = [1, -5, 5, -4, 5, 1]\noutput : list = [-4, -10, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(take([1, -5, 5, -4, 5, 1],3),8),1),3),1)",
    "io_inp": [
      1,
      -5,
      5,
      -4,
      5,
      1
    ],
    "io_out": [
      -4,
      -10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(take(input,3),8),1),3),1)"
  },
  {
    "input": "input : list = [-4, 4, 4, -5, -1]\noutput : list = [77, 62, 17, -58, -58]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(reverse([-4, 4, 4, -5, -1]),5),-3)),2)",
    "io_inp": [
      -4,
      4,
      4,
      -5,
      -1
    ],
    "io_out": [
      77,
      62,
      17,
      -58,
      -58
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(reverse(input),5),-3)),2)"
  },
  {
    "input": "input : list = [1, -3, 0, -3, -1]\noutput : list = [2, 2, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(add_n([1, -3, 0, -3, -1],3)),-2)))",
    "io_inp": [
      1,
      -3,
      0,
      -3,
      -1
    ],
    "io_out": [
      2,
      2,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(add_n(input,3)),-2)))"
  },
  {
    "input": "input : list = [2, 4, -5, 3, 0, 2]\noutput : list = [6, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(take([2, 4, -5, 3, 0, 2],2))),3),-1)",
    "io_inp": [
      2,
      4,
      -5,
      3,
      0,
      2
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(take(input,2))),3),-1)"
  },
  {
    "input": "input : list = [5, 2, 0, -3]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(take([5, 2, 0, -3],1))),4))",
    "io_inp": [
      5,
      2,
      0,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(take(input,1))),4))"
  },
  {
    "input": "input : list = [-1, 5, -5, -3]\noutput : list = [-20, -18, -16, -10]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(sort_asc([-1, 5, -5, -3]),1),5),5),-5)",
    "io_inp": [
      -1,
      5,
      -5,
      -3
    ],
    "io_out": [
      -20,
      -18,
      -16,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(sort_asc(input),1),5),5),-5)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(add_n([1, 2],-1),-1),3)),1)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(add_n(input,-1),-1),3)),1)"
  },
  {
    "input": "input : list = [-2, 5, -5, -2, 4, 0]\noutput : list = [1, 0, -4, -6, -6, -9]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(sort_des([-2, 5, -5, -2, 4, 0]),14)),-1),5)",
    "io_inp": [
      -2,
      5,
      -5,
      -2,
      4,
      0
    ],
    "io_out": [
      1,
      0,
      -4,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(sort_des(input),14)),-1),5)"
  },
  {
    "input": "input : list = [2, 5, -5]\noutput : list = [78, -72, -27]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(mul_n([2, 5, -5],5),4),-3)),3)",
    "io_inp": [
      2,
      5,
      -5
    ],
    "io_out": [
      78,
      -72,
      -27
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(mul_n(input,5),4),-3)),3)"
  },
  {
    "input": "input : list = [4, 0, 2, 3]\noutput : list = [4, 0, 2, 3]",
    "output": "generated_output : list = add_n(take(add_n(reverse(reverse([4, 0, 2, 3])),-3),25),3)",
    "io_inp": [
      4,
      0,
      2,
      3
    ],
    "io_out": [
      4,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(reverse(input)),-3),25),3)"
  },
  {
    "input": "input : list = [-4, 3, 5, 2]\noutput : list = [-4, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([-4, 3, 5, 2])",
    "io_inp": [
      -4,
      3,
      5,
      2
    ],
    "io_out": [
      -4,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, -4, 4, -1, -2]\noutput : list = [-12, -6, -12, 12, -3, -6]",
    "output": "generated_output : list = mul_n([-4, -2, -4, 4, -1, -2],3)",
    "io_inp": [
      -4,
      -2,
      -4,
      4,
      -1,
      -2
    ],
    "io_out": [
      -12,
      -6,
      -12,
      12,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, -4, 1, 0]\noutput : list = [4, 2, 1, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(reverse([3, -4, 1, 0]),-1))))",
    "io_inp": [
      3,
      -4,
      1,
      0
    ],
    "io_out": [
      4,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-5, 5, -2, 4, 2, 0]\noutput : list = [-5, -15, -25, 5, -30, 20]",
    "output": "generated_output : list = mul_n(reverse(add_n([-5, 5, -2, 4, 2, 0],1)),-5)",
    "io_inp": [
      -5,
      5,
      -2,
      4,
      2,
      0
    ],
    "io_out": [
      -5,
      -15,
      -25,
      5,
      -30,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,1)),-5)"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [-1, -1, 6]",
    "output": "generated_output : list = add_n([-5, -5, 2],4)",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      -1,
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, 1, -2, -4, -1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = drop(drop([4, 1, -2, -4, -1, -1],1),3)",
    "io_inp": [
      4,
      1,
      -2,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(drop(input,1),3)"
  },
  {
    "input": "input : list = [-5, -5, 3, 4]\noutput : list = [-7, -7, 1]",
    "output": "generated_output : list = take(add_n([-5, -5, 3, 4],-2),3)",
    "io_inp": [
      -5,
      -5,
      3,
      4
    ],
    "io_out": [
      -7,
      -7,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-3, -1],-1),2))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-1),2))"
  },
  {
    "input": "input : list = [4, -4, -5, -3, 4, 5]\noutput : list = [-2, -1, 0, 7, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse([4, -4, -5, -3, 4, 5])),3)",
    "io_inp": [
      4,
      -4,
      -5,
      -3,
      4,
      5
    ],
    "io_out": [
      -2,
      -1,
      0,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [2, -5, 5, 1, 1, -1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -5, 5, 1, 1, -1],1)",
    "io_inp": [
      2,
      -5,
      5,
      1,
      1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -2, -5, 3, -4, -2]\noutput : list = [-5, -4, -2, -2, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -2, -5, 3, -4, -2])",
    "io_inp": [
      1,
      -2,
      -5,
      3,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, -2, -2]\noutput : list = [0, 0, 2, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(add_n([0, 4, -2, -2],3),1)),-1),-2)",
    "io_inp": [
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      0,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(add_n(input,3),1)),-1),-2)"
  },
  {
    "input": "input : list = [0, -3, 1, -3]\noutput : list = [-3, 1, -3, 0]",
    "output": "generated_output : list = take(reverse([0, -3, 1, -3]),15)",
    "io_inp": [
      0,
      -3,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),15)"
  },
  {
    "input": "input : list = [-5, -1, -3, 1, 1, -4]\noutput : list = [-4, 1, 1, -3, -1, -5]",
    "output": "generated_output : list = reverse([-5, -1, -3, 1, 1, -4])",
    "io_inp": [
      -5,
      -1,
      -3,
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      1,
      -3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -3, -4, -1, -4]\noutput : list = [-1, -1, 0, 2, 6]",
    "output": "generated_output : list = sub_n(sort_asc([3, -3, -4, -1, -4]),-3)",
    "io_inp": [
      3,
      -3,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n([1, 2, 3],5),3),-1),2)",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(input,5),3),-1),2)"
  },
  {
    "input": "input : list = [-4, 1, -1, 2, 1]\noutput : list = [-12, -9, -7, -7, -6]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(sort_des([-4, 1, -1, 2, 1]),-2),-2),-4))",
    "io_inp": [
      -4,
      1,
      -1,
      2,
      1
    ],
    "io_out": [
      -12,
      -9,
      -7,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(sort_des(input),-2),-2),-4))"
  },
  {
    "input": "input : list = [-4, 1, 0, -2, -5, 3]\noutput : list = [1, -7, -4, -2, -1, -6]",
    "output": "generated_output : list = reverse(add_n([-4, 1, 0, -2, -5, 3],-2))",
    "io_inp": [
      -4,
      1,
      0,
      -2,
      -5,
      3
    ],
    "io_out": [
      1,
      -7,
      -4,
      -2,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [-2, 10, 18]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(reverse([-5, 5, 1]),4))),2)",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      -2,
      10,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(reverse(input),4))),2)"
  },
  {
    "input": "input : list = [-4, 4, -2, -3, 2, -2]\noutput : list = [-12, 4, -8, -10, 0, -8]",
    "output": "generated_output : list = add_n(mul_n([-4, 4, -2, -3, 2, -2],2),-4)",
    "io_inp": [
      -4,
      4,
      -2,
      -3,
      2,
      -2
    ],
    "io_out": [
      -12,
      4,
      -8,
      -10,
      0,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),-4)"
  },
  {
    "input": "input : list = [5, 0, 2, 2]\noutput : list = [26, 1, 11, 11]",
    "output": "generated_output : list = add_n(mul_n([5, 0, 2, 2],5),1)",
    "io_inp": [
      5,
      0,
      2,
      2
    ],
    "io_out": [
      26,
      1,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),1)"
  },
  {
    "input": "input : list = [-2, 5, 1, 0, 3]\noutput : list = [-40, -30, -20, -15, -5]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n([-2, 5, 1, 0, 3],3)),3),-3),-5)",
    "io_inp": [
      -2,
      5,
      1,
      0,
      3
    ],
    "io_out": [
      -40,
      -30,
      -20,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n(input,3)),3),-3),-5)"
  },
  {
    "input": "input : list = [1, 4, -1, -3, 5, 1]\noutput : list = [-75, -60, -15, -15, 15, 45]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(reverse([1, 4, -1, -3, 5, 1]),3),-5)))",
    "io_inp": [
      1,
      4,
      -1,
      -3,
      5,
      1
    ],
    "io_out": [
      -75,
      -60,
      -15,
      -15,
      15,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(reverse(input),3),-5)))"
  },
  {
    "input": "input : list = [3, 4, -1, 4, 4]\noutput : list = [-1, 3, 4, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sort_asc([3, 4, -1, 4, 4])))))",
    "io_inp": [
      3,
      4,
      -1,
      4,
      4
    ],
    "io_out": [
      -1,
      3,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -3, -4, 1, 2]\noutput : list = [-1, -2, -6, -7, -8]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(reverse([-5, -3, -4, 1, 2])),-3)),15)",
    "io_inp": [
      -5,
      -3,
      -4,
      1,
      2
    ],
    "io_out": [
      -1,
      -2,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(reverse(input)),-3)),15)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [-2, 10, 12]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(sort_des([-2, 4, 5]),1),7),2))",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      -2,
      10,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(sort_des(input),1),7),2))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des([1, 1])",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, 5, 2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(take([-4, 0, 5, 2],2))),-2),2)",
    "io_inp": [
      -4,
      0,
      5,
      2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(take(input,2))),-2),2)"
  },
  {
    "input": "input : list = [-5, 1, -5]\noutput : list = [9, 3, 3]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(add_n([-5, 1, -5],4))),4),1)",
    "io_inp": [
      -5,
      1,
      -5
    ],
    "io_out": [
      9,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(add_n(input,4))),4),1)"
  },
  {
    "input": "input : list = [-2, 4, 5, -1, -3, 1]\noutput : list = [9, 5, 7, 13, 12, 6]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(add_n([-2, 4, 5, -1, -3, 1],4)))),-4)",
    "io_inp": [
      -2,
      4,
      5,
      -1,
      -3,
      1
    ],
    "io_out": [
      9,
      5,
      7,
      13,
      12,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(add_n(input,4)))),-4)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take(take(add_n(reverse([-1, 0]),2),11),1),5)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(reverse(input),2),11),1),5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [9, 10]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(sort_des([2, 3])),2),-2),3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(sort_des(input)),2),-2),3)"
  },
  {
    "input": "input : list = [-3, 2, 0, 4, -4, 3]\noutput : list = [-8, -6, -4, 0, 8]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_asc(drop([-3, 2, 0, 4, -4, 3],1)),24)),-2)",
    "io_inp": [
      -3,
      2,
      0,
      4,
      -4,
      3
    ],
    "io_out": [
      -8,
      -6,
      -4,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_asc(drop(input,1)),24)),-2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([5, 2]),3))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-3, 1, -2, -3, -2, -4]\noutput : list = [-2, 4, 4, 6, 6, 8]",
    "output": "generated_output : list = mul_n(sort_des([-3, 1, -2, -3, -2, -4]),-2)",
    "io_inp": [
      -3,
      1,
      -2,
      -3,
      -2,
      -4
    ],
    "io_out": [
      -2,
      4,
      4,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [5, -5, -5, -5, 1]\noutput : list = [5, 1, -5, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([5, -5, -5, -5, 1]))",
    "io_inp": [
      5,
      -5,
      -5,
      -5,
      1
    ],
    "io_out": [
      5,
      1,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -2, 1, -5]\noutput : list = [9, 6, 4, 3]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(sort_des([0, -2, 1, -5])),-1),-4))",
    "io_inp": [
      0,
      -2,
      1,
      -5
    ],
    "io_out": [
      9,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(sort_des(input)),-1),-4))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = take(reverse([-3, -3]),10)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),10)"
  },
  {
    "input": "input : list = [-4, 3, 3, -2, 3]\noutput : list = [3, 3, 3, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(sort_des([-4, 3, 3, -2, 3])),5)))",
    "io_inp": [
      -4,
      3,
      3,
      -2,
      3
    ],
    "io_out": [
      3,
      3,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-4, -3, 3, 2, 5, 3]\noutput : list = [-6, -5, 1, 0, 3, 1]",
    "output": "generated_output : list = take(sub_n(sub_n([-4, -3, 3, 2, 5, 3],-2),4),10)",
    "io_inp": [
      -4,
      -3,
      3,
      2,
      5,
      3
    ],
    "io_out": [
      -6,
      -5,
      1,
      0,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,-2),4),10)"
  },
  {
    "input": "input : list = [-2, -3, -3, -4, 1]\noutput : list = [18, 9, 6, 6, 3]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(add_n([-2, -3, -3, -4, 1],5)))),3)",
    "io_inp": [
      -2,
      -3,
      -3,
      -4,
      1
    ],
    "io_out": [
      18,
      9,
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(add_n(input,5)))),3)"
  },
  {
    "input": "input : list = [1, 0, -3, 0, 1]\noutput : list = [0, 3, 3, 4, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(add_n([1, 0, -3, 0, 1],-2),-5)),1))",
    "io_inp": [
      1,
      0,
      -3,
      0,
      1
    ],
    "io_out": [
      0,
      3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(add_n(input,-2),-5)),1))"
  },
  {
    "input": "input : list = [-5, -1, -3, -1, -2, -2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = take(add_n(drop([-5, -1, -3, -1, -2, -2],4),-4),14)",
    "io_inp": [
      -5,
      -1,
      -3,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,4),-4),14)"
  },
  {
    "input": "input : list = [-3, 1, -3, -2, 3, 5]\noutput : list = [9, 7, 5, 2, 1, 1]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(sub_n([-3, 1, -3, -2, 3, 5],-4))),15))",
    "io_inp": [
      -3,
      1,
      -3,
      -2,
      3,
      5
    ],
    "io_out": [
      9,
      7,
      5,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(sub_n(input,-4))),15))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([-4, 4])),1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = take(take(sort_asc(sort_asc(drop([-3, 4, -3],1))),2),26)",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_asc(drop(input,1))),2),26)"
  },
  {
    "input": "input : list = [1, 2, 4, -5]\noutput : list = [4, 2, 1, -5]",
    "output": "generated_output : list = sort_des([1, 2, 4, -5])",
    "io_inp": [
      1,
      2,
      4,
      -5
    ],
    "io_out": [
      4,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, 2, -2, -5, 0]\noutput : list = [-6, -5, -3, -1, 1, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc([4, -4, 2, -2, -5, 0])),3),4)",
    "io_inp": [
      4,
      -4,
      2,
      -2,
      -5,
      0
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(input)),3),4)"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [16, 4, 24]",
    "output": "generated_output : list = mul_n(add_n(take(take(add_n([0, 3, -2],-1),14),7),-3),-4)",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      16,
      4,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(add_n(input,-1),14),7),-3),-4)"
  },
  {
    "input": "input : list = [2, -3, -2, 5]\noutput : list = [5, 2, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc([2, -3, -2, 5]))",
    "io_inp": [
      2,
      -3,
      -2,
      5
    ],
    "io_out": [
      5,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_des([-2, -2])),-2)),4)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_des(input)),-2)),4)"
  },
  {
    "input": "input : list = [-1, 0, -1, 3, -2]\noutput : list = [3, 0, -1, -1, -2]",
    "output": "generated_output : list = sort_des([-1, 0, -1, 3, -2])",
    "io_inp": [
      -1,
      0,
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2, -4, -2, 2, -5]\noutput : list = [-20, -17, -11, -2, 1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(mul_n([1, 2, -4, -2, 2, -5],3),2)),3))",
    "io_inp": [
      1,
      2,
      -4,
      -2,
      2,
      -5
    ],
    "io_out": [
      -20,
      -17,
      -11,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(mul_n(input,3),2)),3))"
  },
  {
    "input": "input : list = [5, -4, 0]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des([5, -4, 0]),-1),24)))",
    "io_inp": [
      5,
      -4,
      0
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des(input),-1),24)))"
  },
  {
    "input": "input : list = [-4, -4, -4, 0, -2]\noutput : list = [-2, 0, -4, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, -4, 0, -2])",
    "io_inp": [
      -4,
      -4,
      -4,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1, 3]\noutput : list = [3, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, 3])",
    "io_inp": [
      2,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, -1, -5, -1, 5]\noutput : list = [-3, 0, -6, -10]",
    "output": "generated_output : list = take(reverse(reverse(sub_n([2, 5, -1, -5, -1, 5],5))),4)",
    "io_inp": [
      2,
      5,
      -1,
      -5,
      -1,
      5
    ],
    "io_out": [
      -3,
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(input,5))),4)"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [8, 16, 14]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(sub_n([3, 5, -3],-4)),3),2),2)",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      8,
      16,
      14
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(sub_n(input,-4)),3),2),2)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(reverse([-1, 3]))),10),2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(reverse(input))),10),2)"
  },
  {
    "input": "input : list = [-2, 3, -2, 0]\noutput : list = [20, -5]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(take([-2, 3, -2, 0],2)),1)),5)",
    "io_inp": [
      -2,
      3,
      -2,
      0
    ],
    "io_out": [
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(take(input,2)),1)),5)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, 0, -3, 0, -3]\noutput : list = [15, 9, 9, 0, 0, -9]",
    "output": "generated_output : list = sort_des(mul_n([3, -5, 0, -3, 0, -3],-3))",
    "io_inp": [
      3,
      -5,
      0,
      -3,
      0,
      -3
    ],
    "io_out": [
      15,
      9,
      9,
      0,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-20, -20]",
    "output": "generated_output : list = mul_n(sort_asc([-4, -4]),5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-1, 2, 5, 3]\noutput : list = [7, 5, 4, 1]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(mul_n([-1, 2, 5, 3],1)),6)),-2)",
    "io_inp": [
      -1,
      2,
      5,
      3
    ],
    "io_out": [
      7,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(mul_n(input,1)),6)),-2)"
  },
  {
    "input": "input : list = [-1, -2, -3, 4, 3]\noutput : list = [-3, -2, -1, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse([-1, -2, -3, 4, 3]))",
    "io_inp": [
      -1,
      -2,
      -3,
      4,
      3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, 2, 1, -1, -3]\noutput : list = [-6, -2, 2, 4, 8]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([4, 2, 1, -1, -3],2)))",
    "io_inp": [
      4,
      2,
      1,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -2,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,2)))"
  },
  {
    "input": "input : list = [0, 0, 5, 3, 1]\noutput : list = [8, 6, 4, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(add_n([0, 0, 5, 3, 1],-5))),-3),-5)",
    "io_inp": [
      0,
      0,
      5,
      3,
      1
    ],
    "io_out": [
      8,
      6,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(add_n(input,-5))),-3),-5)"
  },
  {
    "input": "input : list = [2, -2, 1, -2]\noutput : list = [-5, -5, -2, -1]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc([2, -2, 1, -2]),-5),3),1),1)",
    "io_inp": [
      2,
      -2,
      1,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc(input),-5),3),1),1)"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [-8, -6, 2]",
    "output": "generated_output : list = sort_asc(mul_n([3, -1, 4],-2))",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      -8,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 3, -3, 5, 5]\noutput : list = [10, -10, 20, -20, -20]",
    "output": "generated_output : list = add_n(mul_n([-1, 3, -3, 5, 5],-5),5)",
    "io_inp": [
      -1,
      3,
      -3,
      5,
      5
    ],
    "io_out": [
      10,
      -10,
      20,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),5)"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [100, 50, 50]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-5, -3, -3],-5),-5),5)",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      100,
      50,
      50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,-5),-5),5)"
  },
  {
    "input": "input : list = [2, -3, -4, -3, 5]\noutput : list = [-7, -10, -15, -15, -16]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sort_des([2, -3, -4, -3, 5]),5),-5),2),23)",
    "io_inp": [
      2,
      -3,
      -4,
      -3,
      5
    ],
    "io_out": [
      -7,
      -10,
      -15,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sort_des(input),5),-5),2),23)"
  },
  {
    "input": "input : list = [5, -2, -1, -2, -1, 1]\noutput : list = [-20, -4, 4, 4, 8, 8]",
    "output": "generated_output : list = sort_asc(mul_n([5, -2, -1, -2, -1, 1],-4))",
    "io_inp": [
      5,
      -2,
      -1,
      -2,
      -1,
      1
    ],
    "io_out": [
      -20,
      -4,
      4,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-4, -1, 1, 5]\noutput : list = [5, 9]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(drop([-4, -1, 1, 5],2),-4))),4)",
    "io_inp": [
      -4,
      -1,
      1,
      5
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(drop(input,2),-4))),4)"
  },
  {
    "input": "input : list = [1, 1, -5, -2, 1]\noutput : list = [-5, -8, -11]",
    "output": "generated_output : list = sort_des(take(drop(add_n(add_n([1, 1, -5, -2, 1],-1),-5),2),39))",
    "io_inp": [
      1,
      1,
      -5,
      -2,
      1
    ],
    "io_out": [
      -5,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(add_n(add_n(input,-1),-5),2),39))"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(reverse([-4, -2, 0]))),-5),4)",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(reverse(input))),-5),4)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-6, -4]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n([-4, -2],2))),34)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(input,2))),34)"
  },
  {
    "input": "input : list = [1, -3, 4, -1, 0, 4]\noutput : list = [-1, 3, -4, 1, 0, -4]",
    "output": "generated_output : list = mul_n([1, -3, 4, -1, 0, 4],-1)",
    "io_inp": [
      1,
      -3,
      4,
      -1,
      0,
      4
    ],
    "io_out": [
      -1,
      3,
      -4,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, 3, 0, -5, 5, 1]\noutput : list = [24, 24, 14, 4, -1, -26]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(sort_des([5, 3, 0, -5, 5, 1]),5),5),4),53)",
    "io_inp": [
      5,
      3,
      0,
      -5,
      5,
      1
    ],
    "io_out": [
      24,
      24,
      14,
      4,
      -1,
      -26
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(sort_des(input),5),5),4),53)"
  },
  {
    "input": "input : list = [2, -2, 5, 1]\noutput : list = [-5, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc([2, -2, 5, 1]),-3)))",
    "io_inp": [
      2,
      -2,
      5,
      1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(input),-3)))"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(reverse(take([-3, -3, 1],1)),4)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,1)),4)"
  },
  {
    "input": "input : list = [-3, -4, -3, 4]\noutput : list = [-16, -12, -12, 16]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc([-3, -4, -3, 4]))),4)",
    "io_inp": [
      -3,
      -4,
      -3,
      4
    ],
    "io_out": [
      -16,
      -12,
      -12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(input))),4)"
  },
  {
    "input": "input : list = [-2, -3, 3, -5, 1, 2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(take([-2, -3, 3, -5, 1, 2],1))",
    "io_inp": [
      -2,
      -3,
      3,
      -5,
      1,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc([-2, -1])",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, 2, -3, 1, -4]\noutput : list = [1, -1, -5, -9, -11, -13]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des(reverse([-1, -5, 2, -3, 1, -4])),2),3),18)",
    "io_inp": [
      -1,
      -5,
      2,
      -3,
      1,
      -4
    ],
    "io_out": [
      1,
      -1,
      -5,
      -9,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(reverse(input)),2),3),18)"
  },
  {
    "input": "input : list = [3, -2, 4, -3, -5, 2]\noutput : list = [2, -5, -3, 4, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, 4, -3, -5, 2])",
    "io_inp": [
      3,
      -2,
      4,
      -3,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -3,
      4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2, -5, 5, -5, -1]\noutput : list = [-7, -7, -3, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse([2, 2, -5, 5, -5, -1])),-2))",
    "io_inp": [
      2,
      2,
      -5,
      5,
      -5,
      -1
    ],
    "io_out": [
      -7,
      -7,
      -3,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(input)),-2))"
  },
  {
    "input": "input : list = [4, 3, -5, -5, 5]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(take([4, 3, -5, -5, 5],2))",
    "io_inp": [
      4,
      3,
      -5,
      -5,
      5
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [0, 4, 1, 3, 1]\noutput : list = [1, 3, 1]",
    "output": "generated_output : list = drop([0, 4, 1, 3, 1],2)",
    "io_inp": [
      0,
      4,
      1,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 0, -4, 5, 2]\noutput : list = [-4, -3, 0, 2, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(sort_asc([-3, 0, -4, 5, 2])))),53)",
    "io_inp": [
      -3,
      0,
      -4,
      5,
      2
    ],
    "io_out": [
      -4,
      -3,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(sort_asc(input)))),53)"
  },
  {
    "input": "input : list = [3, 2, 2, 1]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(drop(sort_asc(take(reverse([3, 2, 2, 1]),9)),3))",
    "io_inp": [
      3,
      2,
      2,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_asc(take(reverse(input),9)),3))"
  },
  {
    "input": "input : list = [-3, -3, -4]\noutput : list = [-2, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(mul_n([-3, -3, -4],2),4))))",
    "io_inp": [
      -3,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(mul_n(input,2),4))))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(sort_asc([-4, -2]),3))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [5, -2, -4, 1]\noutput : list = [-12, -10, -7, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(reverse(reverse([5, -2, -4, 1]))),4),4)",
    "io_inp": [
      5,
      -2,
      -4,
      1
    ],
    "io_out": [
      -12,
      -10,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(reverse(reverse(input))),4),4)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(sort_des([-5, 0])),-3),33))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(sort_des(input)),-3),33))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [0, -7]",
    "output": "generated_output : list = take(add_n([4, -3],-4),9)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),9)"
  },
  {
    "input": "input : list = [-4, -2, 2, 4, -5, -4]\noutput : list = [-5, -4, -4, -2, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -2, 2, 4, -5, -4]))",
    "io_inp": [
      -4,
      -2,
      2,
      4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -3, -3, -3]\noutput : list = [3, -3, -3, -3]",
    "output": "generated_output : list = sort_des([3, -3, -3, -3])",
    "io_inp": [
      3,
      -3,
      -3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, -3, -1]\noutput : list = [1, -1, -1, 6]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sub_n([4, -3, -3, -1],-4),-5)),5),-2)",
    "io_inp": [
      4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      1,
      -1,
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sub_n(input,-4),-5)),5),-2)"
  },
  {
    "input": "input : list = [2, 0, -5, 3, -5]\noutput : list = [10, 9, 7, 2, 2]",
    "output": "generated_output : list = take(sort_des(take(add_n(add_n([2, 0, -5, 3, -5],3),4),21)),12)",
    "io_inp": [
      2,
      0,
      -5,
      3,
      -5
    ],
    "io_out": [
      10,
      9,
      7,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(add_n(input,3),4),21)),12)"
  },
  {
    "input": "input : list = [0, 1, 3]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = take(reverse(take(sort_des(sort_asc([0, 1, 3])),27)),33)",
    "io_inp": [
      0,
      1,
      3
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_des(sort_asc(input)),27)),33)"
  },
  {
    "input": "input : list = [2, -1, 0]\noutput : list = [-5, -6, -3]",
    "output": "generated_output : list = add_n(reverse([2, -1, 0]),-5)",
    "io_inp": [
      2,
      -1,
      0
    ],
    "io_out": [
      -5,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-5, 0, -1, 0]\noutput : list = [1, 6, 5, 6]",
    "output": "generated_output : list = add_n(add_n([-5, 0, -1, 0],5),1)",
    "io_inp": [
      -5,
      0,
      -1,
      0
    ],
    "io_out": [
      1,
      6,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sub_n([-5, -3],-3),-2),1)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sub_n(input,-3),-2),1)))"
  },
  {
    "input": "input : list = [4, -3, 3, 1]\noutput : list = [12, -4, -12, -16]",
    "output": "generated_output : list = mul_n(take(sort_asc([4, -3, 3, 1]),20),-4)",
    "io_inp": [
      4,
      -3,
      3,
      1
    ],
    "io_out": [
      12,
      -4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),20),-4)"
  },
  {
    "input": "input : list = [-1, -3, 5, -5, -2, 1]\noutput : list = [45, 13, -3, -11, -19, -35]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(mul_n([-1, -3, 5, -5, -2, 1],-4),-2))),5)",
    "io_inp": [
      -1,
      -3,
      5,
      -5,
      -2,
      1
    ],
    "io_out": [
      45,
      13,
      -3,
      -11,
      -19,
      -35
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(mul_n(input,-4),-2))),5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [4, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des([-2, 5])),1))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(input)),1))"
  },
  {
    "input": "input : list = [5, 3, 4, 2, -5]\noutput : list = [5, 4, 3, 2, -5]",
    "output": "generated_output : list = sort_des(sort_des([5, 3, 4, 2, -5]))",
    "io_inp": [
      5,
      3,
      4,
      2,
      -5
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = reverse(reverse([-3, 1]))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, 0, -5, 1, -1, 0]\noutput : list = [3, -1, -2, -2, -3, -7]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(sort_des([5, 0, -5, 1, -1, 0]),21))),-2)",
    "io_inp": [
      5,
      0,
      -5,
      1,
      -1,
      0
    ],
    "io_out": [
      3,
      -1,
      -2,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(sort_des(input),21))),-2)"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(take([1, -3, -3],1),-3))))",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(take(input,1),-3))))"
  },
  {
    "input": "input : list = [1, 3, -5, 2, 0]\noutput : list = [-3, -4, -5, -6, -11]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(sub_n([1, 3, -5, 2, 0],5)),-1)))",
    "io_inp": [
      1,
      3,
      -5,
      2,
      0
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(sub_n(input,5)),-1)))"
  },
  {
    "input": "input : list = [-1, 3, 0, 2, -5, 5]\noutput : list = [-1, -8, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(take(drop([-1, 3, 0, 2, -5, 5],3),17)),-3))",
    "io_inp": [
      -1,
      3,
      0,
      2,
      -5,
      5
    ],
    "io_out": [
      -1,
      -8,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(drop(input,3),17)),-3))"
  },
  {
    "input": "input : list = [2, 3, -2, 5, 5]\noutput : list = [3, 0, 15, -6, -6]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(sub_n([2, 3, -2, 5, 5],-5),-4),-4),-3),12)",
    "io_inp": [
      2,
      3,
      -2,
      5,
      5
    ],
    "io_out": [
      3,
      0,
      15,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(sub_n(input,-5),-4),-4),-3),12)"
  },
  {
    "input": "input : list = [-5, -2, -2, 4, 5]\noutput : list = [5, 4, -2, -2, -5]",
    "output": "generated_output : list = reverse([-5, -2, -2, 4, 5])",
    "io_inp": [
      -5,
      -2,
      -2,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_des([-4, -4]),-3),-5)))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_des(input),-3),-5)))"
  },
  {
    "input": "input : list = [5, 0, 5, 1, -3]\noutput : list = [6, 0, -2, -10, -10]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(reverse([5, 0, 5, 1, -3]),-2)),-5),5)",
    "io_inp": [
      5,
      0,
      5,
      1,
      -3
    ],
    "io_out": [
      6,
      0,
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(reverse(input),-2)),-5),5)"
  },
  {
    "input": "input : list = [-2, -4, 3, -4, 5]\noutput : list = [-4, -6, 1, -6, 3]",
    "output": "generated_output : list = add_n([-2, -4, 3, -4, 5],-2)",
    "io_inp": [
      -2,
      -4,
      3,
      -4,
      5
    ],
    "io_out": [
      -4,
      -6,
      1,
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [-6, -6, 2]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_asc([-4, 0, -4]),2)),-2))",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      -6,
      -6,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_asc(input),2)),-2))"
  },
  {
    "input": "input : list = [4, -1, -5, -2, 5, 1]\noutput : list = [3, 2, -1, -3, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([4, -1, -5, -2, 5, 1]),-2))",
    "io_inp": [
      4,
      -1,
      -5,
      -2,
      5,
      1
    ],
    "io_out": [
      3,
      2,
      -1,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [-4, -3, 2]\noutput : list = [-34, 41, 56]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(mul_n([-4, -3, 2],5),-3))),4)",
    "io_inp": [
      -4,
      -3,
      2
    ],
    "io_out": [
      -34,
      41,
      56
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(mul_n(input,5),-3))),4)"
  },
  {
    "input": "input : list = [5, 4, -5, -4, 1]\noutput : list = [-18, -15, 12, 9, -6]",
    "output": "generated_output : list = mul_n(take(mul_n(take(sub_n([5, 4, -5, -4, 1],-1),10),-3),32),1)",
    "io_inp": [
      5,
      4,
      -5,
      -4,
      1
    ],
    "io_out": [
      -18,
      -15,
      12,
      9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(sub_n(input,-1),10),-3),32),1)"
  },
  {
    "input": "input : list = [-2, 0, 3, 5, -2]\noutput : list = [0, -2, -5, -7, -7]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n([-2, 0, 3, 5, -2],5))))",
    "io_inp": [
      -2,
      0,
      3,
      5,
      -2
    ],
    "io_out": [
      0,
      -2,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(input,5))))"
  },
  {
    "input": "input : list = [0, -4, 2, 2]\noutput : list = [-16, -20, -14, -14]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(add_n([0, -4, 2, 2],-4),4),19),-3),-5)",
    "io_inp": [
      0,
      -4,
      2,
      2
    ],
    "io_out": [
      -16,
      -20,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(add_n(input,-4),4),19),-3),-5)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [12, 3]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(mul_n([-1, -4],-3)),24)))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      12,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(mul_n(input,-3)),24)))"
  },
  {
    "input": "input : list = [-5, -5, 3, 2, -1]\noutput : list = [-5, -1, 2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(drop([-5, -5, 3, 2, -1],1)))),12)",
    "io_inp": [
      -5,
      -5,
      3,
      2,
      -1
    ],
    "io_out": [
      -5,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(drop(input,1)))),12)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [6, 9]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(reverse([2, 5]),-4),3)),16)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(reverse(input),-4),3)),16)"
  },
  {
    "input": "input : list = [1, 3, 1, -2, -1, 3]\noutput : list = [-2, -1, 1, 1, 3, 3]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc([1, 3, 1, -2, -1, 3])),9))",
    "io_inp": [
      1,
      3,
      1,
      -2,
      -1,
      3
    ],
    "io_out": [
      -2,
      -1,
      1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(input)),9))"
  },
  {
    "input": "input : list = [1, 5, 0, -1]\noutput : list = [15, 7, 5, 3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(mul_n([1, 5, 0, -1],2),15)),-5))",
    "io_inp": [
      1,
      5,
      0,
      -1
    ],
    "io_out": [
      15,
      7,
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(mul_n(input,2),15)),-5))"
  },
  {
    "input": "input : list = [-1, -2, -2, 1]\noutput : list = [2, 2, -1]",
    "output": "generated_output : list = mul_n(drop([-1, -2, -2, 1],1),-1)",
    "io_inp": [
      -1,
      -2,
      -2,
      1
    ],
    "io_out": [
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-9, -4]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(reverse([1, -4]),-5))))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [-1, 5, -3, 4]\noutput : list = [-3, -1, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([-1, 5, -3, 4])))",
    "io_inp": [
      -1,
      5,
      -3,
      4
    ],
    "io_out": [
      -3,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [9, 3, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(reverse(sort_asc([-2, 4, -3]))),5))",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      9,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(reverse(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = reverse([4, -5])",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -2]))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sub_n(sort_asc([-5, -2]),-4)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [4, 3, 2, 3, -4]\noutput : list = [-3, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_des([4, 3, 2, 3, -4]),-1)),31))",
    "io_inp": [
      4,
      3,
      2,
      3,
      -4
    ],
    "io_out": [
      -3,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_des(input),-1)),31))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(take(take(sort_des(sort_des([-2, -4])),25),11))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(sort_des(input)),25),11))"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = sort_des(sort_des([3, 2, -5]))",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc([0, -2, -3]))",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, 1, 2, -2]\noutput : list = [-5, 4, 1, 2, -2]",
    "output": "generated_output : list = reverse(reverse([-5, 4, 1, 2, -2]))",
    "io_inp": [
      -5,
      4,
      1,
      2,
      -2
    ],
    "io_out": [
      -5,
      4,
      1,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, -2, 1]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = sort_asc(sub_n([-1, -2, 1],2))",
    "io_inp": [
      -1,
      -2,
      1
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [-1, -1, 2, 5, 0]\noutput : list = [-6, -6, -5, -3, 0]",
    "output": "generated_output : list = add_n(sort_asc(take(take(add_n([-1, -1, 2, 5, 0],-3),15),32)),-2)",
    "io_inp": [
      -1,
      -1,
      2,
      5,
      0
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(add_n(input,-3),15),32)),-2)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-8, 12]",
    "output": "generated_output : list = mul_n(take(reverse([3, -2]),14),4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),14),4)"
  },
  {
    "input": "input : list = [4, -1, 1, 1, 0, 2]\noutput : list = [11, 6, 8]",
    "output": "generated_output : list = sub_n(sub_n(take(take([4, -1, 1, 1, 0, 2],3),3),-3),-4)",
    "io_inp": [
      4,
      -1,
      1,
      1,
      0,
      2
    ],
    "io_out": [
      11,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(input,3),3),-3),-4)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-13, 8]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n([2, -5],2),-3),-3),-2)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -13,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(input,2),-3),-3),-2)"
  },
  {
    "input": "input : list = [1, -1, -4, -4, 0]\noutput : list = [-2, -2, 1, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(take(take(sub_n([1, -1, -4, -4, 0],-2),16),35)))",
    "io_inp": [
      1,
      -1,
      -4,
      -4,
      0
    ],
    "io_out": [
      -2,
      -2,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(sub_n(input,-2),16),35)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [2, 6]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(mul_n([-1, -3],-2)),11)))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(mul_n(input,-2)),11)))"
  },
  {
    "input": "input : list = [3, 4, 5]\noutput : list = [8, 9, 10]",
    "output": "generated_output : list = sub_n([3, 4, 5],-5)",
    "io_inp": [
      3,
      4,
      5
    ],
    "io_out": [
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [15, 10]",
    "output": "generated_output : list = take(mul_n([-3, -2, -2],-5),2)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),2)"
  },
  {
    "input": "input : list = [3, -5, 3, -1, -3, 0]\noutput : list = [-4, -2, 0, 1, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc([3, -5, 3, -1, -3, 0]),-1)",
    "io_inp": [
      3,
      -5,
      3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-1, -3, -5, -5]\noutput : list = [-3, -9, -15, -15]",
    "output": "generated_output : list = sort_des(take(mul_n([-1, -3, -5, -5],3),19))",
    "io_inp": [
      -1,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -9,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,3),19))"
  },
  {
    "input": "input : list = [-1, 3, 0, 4, -1]\noutput : list = [7, 7, 2, -13, -18]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des([-1, 3, 0, 4, -1]),-5)),2)",
    "io_inp": [
      -1,
      3,
      0,
      4,
      -1
    ],
    "io_out": [
      7,
      7,
      2,
      -13,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(input),-5)),2)"
  },
  {
    "input": "input : list = [5, 1, -4, 1, 1]\noutput : list = [-26]",
    "output": "generated_output : list = sub_n(mul_n(take([5, 1, -4, 1, 1],1),-5),1)",
    "io_inp": [
      5,
      1,
      -4,
      1,
      1
    ],
    "io_out": [
      -26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,1),-5),1)"
  },
  {
    "input": "input : list = [-2, -3, -3, 4]\noutput : list = [-3, -3, -2, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -3, -3, 4]))",
    "io_inp": [
      -2,
      -3,
      -3,
      4
    ],
    "io_out": [
      -3,
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 3, 2, 2, -5, 2]\noutput : list = [0, -12, -8, -8, 20, -8]",
    "output": "generated_output : list = mul_n([0, 3, 2, 2, -5, 2],-4)",
    "io_inp": [
      0,
      3,
      2,
      2,
      -5,
      2
    ],
    "io_out": [
      0,
      -12,
      -8,
      -8,
      20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -5, 4, -5, -2, -1]\noutput : list = [-9, -9, -6, -5, -5, 0]",
    "output": "generated_output : list = sort_asc(add_n([-1, -5, 4, -5, -2, -1],-4))",
    "io_inp": [
      -1,
      -5,
      4,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(sort_asc(reverse(take(sort_asc([1, -4]),13))),12)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(sort_asc(input),13))),12)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-10, -3]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sub_n([2, -5],4),4),-3)),21)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -10,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sub_n(input,4),4),-3)),21)"
  },
  {
    "input": "input : list = [-1, -1, 4, -5, -1]\noutput : list = [8, -32, -32, -32, -64]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(add_n([-1, -1, 4, -5, -1],-3),-4)),-2))",
    "io_inp": [
      -1,
      -1,
      4,
      -5,
      -1
    ],
    "io_out": [
      8,
      -32,
      -32,
      -32,
      -64
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(add_n(input,-3),-4)),-2))"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(take([-2, -5, 0],1))),16))",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(take(input,1))),16))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [6, 12]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des([5, -1]),-3),-5)),-5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des(input),-3),-5)),-5)"
  },
  {
    "input": "input : list = [3, 0, -3, 0, 4, 5]\noutput : list = [-15, 0, 15, 0, -20, -25]",
    "output": "generated_output : list = mul_n([3, 0, -3, 0, 4, 5],-5)",
    "io_inp": [
      3,
      0,
      -3,
      0,
      4,
      5
    ],
    "io_out": [
      -15,
      0,
      15,
      0,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -3, -3]\noutput : list = [-16, -24, -24]",
    "output": "generated_output : list = mul_n(mul_n([-2, -3, -3],-4),-2)",
    "io_inp": [
      -2,
      -3,
      -3
    ],
    "io_out": [
      -16,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),-2)"
  },
  {
    "input": "input : list = [2, -5, 2, 4, 3, 4]\noutput : list = [2, -5, 2, 4]",
    "output": "generated_output : list = take([2, -5, 2, 4, 3, 4],4)",
    "io_inp": [
      2,
      -5,
      2,
      4,
      3,
      4
    ],
    "io_out": [
      2,
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse([5, 4])",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, 0, -3, 2, 4]\noutput : list = [-20, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(mul_n([4, -1, 0, -3, 2, 4],-5),2))))",
    "io_inp": [
      4,
      -1,
      0,
      -3,
      2,
      4
    ],
    "io_out": [
      -20,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(mul_n(input,-5),2))))"
  },
  {
    "input": "input : list = [-4, -4, -5, 1, 2, 4]\noutput : list = [4, 2, 1, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-4, -4, -5, 1, 2, 4])",
    "io_inp": [
      -4,
      -4,
      -5,
      1,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-30, -15]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n(reverse([5, 2]),-5)),-5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -30,
      -15
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(reverse(input),-5)),-5))"
  },
  {
    "input": "input : list = [-5, 1, 4, -3]\noutput : list = [-8, -6, -2, 1]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(sort_des([-5, 1, 4, -3]),5)),2),-1)",
    "io_inp": [
      -5,
      1,
      4,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(sort_des(input),5)),2),-1)"
  },
  {
    "input": "input : list = [5, 4, -5, 2, 3, 1]\noutput : list = [1, 3, 2, -5, 4, 5]",
    "output": "generated_output : list = reverse([5, 4, -5, 2, 3, 1])",
    "io_inp": [
      5,
      4,
      -5,
      2,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      2,
      -5,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, 1, -1]\noutput : list = [-3, -1, -4, 1]",
    "output": "generated_output : list = add_n(reverse([3, -2, 1, -1]),-2)",
    "io_inp": [
      3,
      -2,
      1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [3, 5, 1, -4]\noutput : list = [-8, -3, -1, 1]",
    "output": "generated_output : list = sort_asc(add_n([3, 5, 1, -4],-4))",
    "io_inp": [
      3,
      5,
      1,
      -4
    ],
    "io_out": [
      -8,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(take([3, -2, 0],1))),-1))",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(take(input,1))),-1))"
  },
  {
    "input": "input : list = [1, -3, -4, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = take([1, -3, -4, 1],2)",
    "io_inp": [
      1,
      -3,
      -4,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [8, 6, 3]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(add_n([2, -3, 0],3),17),3)))",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(add_n(input,3),17),3)))"
  },
  {
    "input": "input : list = [5, -3, 5, -5]\noutput : list = [2, -6, 2, -8]",
    "output": "generated_output : list = add_n([5, -3, 5, -5],-3)",
    "io_inp": [
      5,
      -3,
      5,
      -5
    ],
    "io_out": [
      2,
      -6,
      2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 4, 1, 0]\noutput : list = [-6, 1, -2, -3]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(add_n([-3, 4, 1, 0],2),-1),2),-5),-1)",
    "io_inp": [
      -3,
      4,
      1,
      0
    ],
    "io_out": [
      -6,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(add_n(input,2),-1),2),-5),-1)"
  },
  {
    "input": "input : list = [1, 0, -4]\noutput : list = [-4, 0, 1]",
    "output": "generated_output : list = reverse([1, 0, -4])",
    "io_inp": [
      1,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [39, -15, -33]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(sub_n([-5, 1, 3],1),-3),5),3),39)",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      39,
      -15,
      -33
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(sub_n(input,1),-3),5),3),39)"
  },
  {
    "input": "input : list = [1, -5, -4, 3]\noutput : list = [-1, -7, -6, 1]",
    "output": "generated_output : list = sub_n([1, -5, -4, 3],2)",
    "io_inp": [
      1,
      -5,
      -4,
      3
    ],
    "io_out": [
      -1,
      -7,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 1, 3, 5, -4, 1]\noutput : list = [11, 6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(take([-4, 1, 3, 5, -4, 1],2)),-5)),5)",
    "io_inp": [
      -4,
      1,
      3,
      5,
      -4,
      1
    ],
    "io_out": [
      11,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(take(input,2)),-5)),5)"
  },
  {
    "input": "input : list = [-4, 3, -4, 4, 1, 2]\noutput : list = [-5, -5, 0, 1, 2, 3]",
    "output": "generated_output : list = add_n(take(take(reverse(sort_des([-4, 3, -4, 4, 1, 2])),18),29),-1)",
    "io_inp": [
      -4,
      3,
      -4,
      4,
      1,
      2
    ],
    "io_out": [
      -5,
      -5,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(sort_des(input)),18),29),-1)"
  },
  {
    "input": "input : list = [0, -4, 1, 5, 5]\noutput : list = [-5, -1, 0, 4, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des([0, -4, 1, 5, 5])),1)",
    "io_inp": [
      0,
      -4,
      1,
      5,
      5
    ],
    "io_out": [
      -5,
      -1,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [2, 4, 4, 2, -5, -4]\noutput : list = [8, 8, 6, 6, 0, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(reverse([2, 4, 4, 2, -5, -4]),7)),1),5)",
    "io_inp": [
      2,
      4,
      4,
      2,
      -5,
      -4
    ],
    "io_out": [
      8,
      8,
      6,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(reverse(input),7)),1),5)"
  },
  {
    "input": "input : list = [4, 1, -4]\noutput : list = [-20, 5, 20]",
    "output": "generated_output : list = mul_n(reverse([4, 1, -4]),5)",
    "io_inp": [
      4,
      1,
      -4
    ],
    "io_out": [
      -20,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-4, -1, 3, -2, 0]\noutput : list = [-7, -1, 2, 5, 14]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(sort_des([-4, -1, 3, -2, 0])),3),-5))",
    "io_inp": [
      -4,
      -1,
      3,
      -2,
      0
    ],
    "io_out": [
      -7,
      -1,
      2,
      5,
      14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(sort_des(input)),3),-5))"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-2, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, -2])",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, -3, -5, -2]\noutput : list = [5, 2, 1, 0, -2]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(sort_asc([2, -1, -3, -5, -2])),1)),2)",
    "io_inp": [
      2,
      -1,
      -3,
      -5,
      -2
    ],
    "io_out": [
      5,
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(sort_asc(input)),1)),2)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-10, -10]",
    "output": "generated_output : list = reverse(mul_n([5, 5],-2))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [5, -2, 5, -2, 2]\noutput : list = [7, 7, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(take([5, -2, 5, -2, 2],3),12),2)))",
    "io_inp": [
      5,
      -2,
      5,
      -2,
      2
    ],
    "io_out": [
      7,
      7,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(take(input,3),12),2)))"
  },
  {
    "input": "input : list = [-2, 0, 4, 0]\noutput : list = [5, 1, 1]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(sort_des([-2, 0, 4, 0])),-2),3),-3)",
    "io_inp": [
      -2,
      0,
      4,
      0
    ],
    "io_out": [
      5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(sort_des(input)),-2),3),-3)"
  },
  {
    "input": "input : list = [5, -5, -5, 0]\noutput : list = [0]",
    "output": "generated_output : list = drop(drop([5, -5, -5, 0],2),1)",
    "io_inp": [
      5,
      -5,
      -5,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(drop(input,2),1)"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [1, 2, -6]",
    "output": "generated_output : list = add_n([4, 5, -3],-3)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      1,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, 5, 1, -4]\noutput : list = [-3, 2, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n([4, 5, 1, -4],-1))",
    "io_inp": [
      4,
      5,
      1,
      -4
    ],
    "io_out": [
      -3,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-3, -1, -1, 1, 3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(mul_n(take(take(reverse([-3, -1, -1, 1, 3]),16),2),-1),20)",
    "io_inp": [
      -3,
      -1,
      -1,
      1,
      3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(reverse(input),16),2),-1),20)"
  },
  {
    "input": "input : list = [1, 3, 5, 5, 3]\noutput : list = [5, 5, 3]",
    "output": "generated_output : list = sub_n(take(sort_des(take(add_n([1, 3, 5, 5, 3],5),12)),3),5)",
    "io_inp": [
      1,
      3,
      5,
      5,
      3
    ],
    "io_out": [
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(add_n(input,5),12)),3),5)"
  },
  {
    "input": "input : list = [0, -1, 4]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = sort_asc([0, -1, 4])",
    "io_inp": [
      0,
      -1,
      4
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, 5, 5]\noutput : list = [0, 2, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_asc([-3, -1, 5, 5]),3),13)))",
    "io_inp": [
      -3,
      -1,
      5,
      5
    ],
    "io_out": [
      0,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_asc(input),3),13)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-12, -36]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n([-3, -1],-4)),-3)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -12,
      -36
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n(input,-4)),-3)))"
  },
  {
    "input": "input : list = [-5, 1, -1, 0, 1]\noutput : list = [-2, -2, -3, -4]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(sort_asc([-5, 1, -1, 0, 1])),-2),4),5)",
    "io_inp": [
      -5,
      1,
      -1,
      0,
      1
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(sort_asc(input)),-2),4),5)"
  },
  {
    "input": "input : list = [3, -3, 5, 0, -3, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(take(take(mul_n(reverse([3, -3, 5, 0, -3, -2]),-1),6),2),35)",
    "io_inp": [
      3,
      -3,
      5,
      0,
      -3,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(reverse(input),-1),6),2),35)"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [10]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(take([-3, -4, 4],1),3)),-5),5)",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(take(input,1),3)),-5),5)"
  },
  {
    "input": "input : list = [-5, 3, -1, -4, -4, -2]\noutput : list = [3, -1, -4, -4, -2]",
    "output": "generated_output : list = drop([-5, 3, -1, -4, -4, -2],1)",
    "io_inp": [
      -5,
      3,
      -1,
      -4,
      -4,
      -2
    ],
    "io_out": [
      3,
      -1,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 1, 1, -4]\noutput : list = [-1, -1, -1, -6]",
    "output": "generated_output : list = add_n([1, 1, 1, -4],-2)",
    "io_inp": [
      1,
      1,
      1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, -1, 3, -4]\noutput : list = [-6, -2, 2, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(reverse([1, -1, 3, -4]),-2))))",
    "io_inp": [
      1,
      -1,
      3,
      -4
    ],
    "io_out": [
      -6,
      -2,
      2,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [0]",
    "output": "generated_output : list = reverse(reverse(take(reverse(take([0, -4, 4],1)),10)))",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(take(input,1)),10)))"
  },
  {
    "input": "input : list = [2, -5, 3, 1, -3]\noutput : list = [25, 15, -5, -10, -15]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(mul_n([2, -5, 3, 1, -3],-5)),4),4))",
    "io_inp": [
      2,
      -5,
      3,
      1,
      -3
    ],
    "io_out": [
      25,
      15,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(mul_n(input,-5)),4),4))"
  },
  {
    "input": "input : list = [-2, -2, -1, 3, -2, -2]\noutput : list = [40, 40, 40, 40, 35, 15]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(sort_asc([-2, -2, -1, 3, -2, -2]),10),-1),-5),-5)",
    "io_inp": [
      -2,
      -2,
      -1,
      3,
      -2,
      -2
    ],
    "io_out": [
      40,
      40,
      40,
      40,
      35,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(sort_asc(input),10),-1),-5),-5)"
  },
  {
    "input": "input : list = [-2, -2, 0, -3]\noutput : list = [-24, -24, -8, -32]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(mul_n([-2, -2, 0, -3],2),2))),4)",
    "io_inp": [
      -2,
      -2,
      0,
      -3
    ],
    "io_out": [
      -24,
      -24,
      -8,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(mul_n(input,2),2))),4)"
  },
  {
    "input": "input : list = [2, 2, 3, 0]\noutput : list = [2, 3, 0]",
    "output": "generated_output : list = drop([2, 2, 3, 0],1)",
    "io_inp": [
      2,
      2,
      3,
      0
    ],
    "io_out": [
      2,
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 2, -2, -2]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take([-3, 2, -2, -2],1),-4)",
    "io_inp": [
      -3,
      2,
      -2,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-5, -4, 0, -4, -2, 1]\noutput : list = [1, 0, -2, -4, -4, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(sub_n([-5, -4, 0, -4, -2, 1],4),4)),-1),1)",
    "io_inp": [
      -5,
      -4,
      0,
      -4,
      -2,
      1
    ],
    "io_out": [
      1,
      0,
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(sub_n(input,4),4)),-1),1)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(sort_asc([4, 0]))),10))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(sort_asc(input))),10))"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [6, 0, -3]",
    "output": "generated_output : list = sort_des(add_n([-2, 4, -5],2))",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      6,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [-3, 3, -3, -5, 3]\noutput : list = [10, 6, 6, -6, -6]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-3, 3, -3, -5, 3],-2)))",
    "io_inp": [
      -3,
      3,
      -3,
      -5,
      3
    ],
    "io_out": [
      10,
      6,
      6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [1, -6]",
    "output": "generated_output : list = add_n([5, -2],-4)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(add_n(sort_asc([-1, -4]),5),14)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),5),14)"
  },
  {
    "input": "input : list = [4, 1, -3, -3, 5, 5]\noutput : list = [-9, -9, 3, 12, 15, 15]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_des([4, 1, -3, -3, 5, 5]),3))),43)",
    "io_inp": [
      4,
      1,
      -3,
      -3,
      5,
      5
    ],
    "io_out": [
      -9,
      -9,
      3,
      12,
      15,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_des(input),3))),43)"
  },
  {
    "input": "input : list = [-5, -5, 0, -3]\noutput : list = [-3, -3, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(sub_n([-5, -5, 0, -3],-2)))",
    "io_inp": [
      -5,
      -5,
      0,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [5, -4, -5, 4, 5]\noutput : list = [-4, -3, 5, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc([5, -4, -5, 4, 5]),-1)),-2)",
    "io_inp": [
      5,
      -4,
      -5,
      4,
      5
    ],
    "io_out": [
      -4,
      -3,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(input),-1)),-2)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(sub_n(take(take(take([-1, -3, 5],1),17),25),-2))",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(take(input,1),17),25),-2))"
  },
  {
    "input": "input : list = [-5, -3, -5, 1, 1, 2]\noutput : list = [4, 3, 3, -1, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([-5, -3, -5, 1, 1, 2]),-2))",
    "io_inp": [
      -5,
      -3,
      -5,
      1,
      1,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [-1, 3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = drop([-1, 3, -3],1)",
    "io_inp": [
      -1,
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -1, -2, 0, -3]\noutput : list = [-3, -4, -5, -3, -6]",
    "output": "generated_output : list = take(sub_n([0, -1, -2, 0, -3],3),5)",
    "io_inp": [
      0,
      -1,
      -2,
      0,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),5)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(take([-4, 2, 0],1))),18))",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(take(input,1))),18))"
  },
  {
    "input": "input : list = [-2, -3, -2, 0]\noutput : list = [-15, -25, -25, -30]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(add_n([-2, -3, -2, 0],-4),2),-1),5))",
    "io_inp": [
      -2,
      -3,
      -2,
      0
    ],
    "io_out": [
      -15,
      -25,
      -25,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(add_n(input,-4),2),-1),5))"
  },
  {
    "input": "input : list = [4, 4, 3]\noutput : list = [15, 15, 10]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(sort_asc([4, 4, 3]),5),8)),-5)",
    "io_inp": [
      4,
      4,
      3
    ],
    "io_out": [
      15,
      15,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(sort_asc(input),5),8)),-5)"
  },
  {
    "input": "input : list = [-1, -3, -2, 1, 4, 2]\noutput : list = [4, 2, 3, 6, 9, 7]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(add_n([-1, -3, -2, 1, 4, 2],-4),-5))),4)",
    "io_inp": [
      -1,
      -3,
      -2,
      1,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      3,
      6,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(add_n(input,-4),-5))),4)"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [-12, -21, -12]",
    "output": "generated_output : list = mul_n(sub_n(add_n([0, 3, 0],5),1),-3)",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      -12,
      -21,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,5),1),-3)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [-5, 2, 4]",
    "output": "generated_output : list = sort_asc([4, 2, -5])",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1, -5, 3, -3]\noutput : list = [25, 20, 15, 5, -15]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(reverse([-4, -1, -5, 3, -3]),-5))))",
    "io_inp": [
      -4,
      -1,
      -5,
      3,
      -3
    ],
    "io_out": [
      25,
      20,
      15,
      5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [2, -4, -4, 0, 4, -4]\noutput : list = [2, -4, -4, 0]",
    "output": "generated_output : list = take([2, -4, -4, 0, 4, -4],4)",
    "io_inp": [
      2,
      -4,
      -4,
      0,
      4,
      -4
    ],
    "io_out": [
      2,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [-4, 0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_asc([3, 0, -2]))),2))",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      -4,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [-3, 2, 2]\noutput : list = [-6, -6, 9]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc([-3, 2, 2])),3)),-1)",
    "io_inp": [
      -3,
      2,
      2
    ],
    "io_out": [
      -6,
      -6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc(input)),3)),-1)"
  },
  {
    "input": "input : list = [-4, -5, 0]\noutput : list = [-10, -8]",
    "output": "generated_output : list = sort_asc(take(mul_n([-4, -5, 0],2),2))",
    "io_inp": [
      -4,
      -5,
      0
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,2),2))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n([-1, 3],-5)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, 0, 1, 0, 5]\noutput : list = [3, 3, 4, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc([4, 0, 1, 0, 5]))),3)",
    "io_inp": [
      4,
      0,
      1,
      0,
      5
    ],
    "io_out": [
      3,
      3,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(input))),3)"
  },
  {
    "input": "input : list = [4, 2, 2, 0, -3, -3]\noutput : list = [12, 12, 0, -8, -8, -16]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(sort_des([4, 2, 2, 0, -3, -3])),-4)),17)",
    "io_inp": [
      4,
      2,
      2,
      0,
      -3,
      -3
    ],
    "io_out": [
      12,
      12,
      0,
      -8,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(sort_des(input)),-4)),17)"
  },
  {
    "input": "input : list = [-2, -3, -4, 5, 1]\noutput : list = [5, 1, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-2, -3, -4, 5, 1])",
    "io_inp": [
      -2,
      -3,
      -4,
      5,
      1
    ],
    "io_out": [
      5,
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(reverse([-3, -4])),3),2),4)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(reverse(input)),3),2),4)"
  },
  {
    "input": "input : list = [-5, -2, -5, -1, -1, -5]\noutput : list = [-20, -4, -4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(drop([-5, -2, -5, -1, -1, -5],3))),4))",
    "io_inp": [
      -5,
      -2,
      -5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -20,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(drop(input,3))),4))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = take(sort_asc(mul_n(reverse(mul_n([-1, 0],1)),4)),32)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(reverse(mul_n(input,1)),4)),32)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n([4, 2],-3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-2, 1],-5)),4)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-5)),4)"
  },
  {
    "input": "input : list = [-3, -1, 0, -5, 2, 0]\noutput : list = [6, 0, -3, 12, -9, -3]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(sub_n([-3, -1, 0, -5, 2, 0],1),20),-3),5),1)",
    "io_inp": [
      -3,
      -1,
      0,
      -5,
      2,
      0
    ],
    "io_out": [
      6,
      0,
      -3,
      12,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(sub_n(input,1),20),-3),5),1)"
  },
  {
    "input": "input : list = [-5, 1, -5, -4, 5, 5]\noutput : list = [-9, -3, -9, -8, 1, 1]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse([-5, 1, -5, -4, 5, 5]),-2),-2))",
    "io_inp": [
      -5,
      1,
      -5,
      -4,
      5,
      5
    ],
    "io_out": [
      -9,
      -3,
      -9,
      -8,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(input),-2),-2))"
  },
  {
    "input": "input : list = [5, -3, 0, -3, 0]\noutput : list = [-40, 0, 0, 24, 24]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(mul_n([5, -3, 0, -3, 0],4),1)),-2))",
    "io_inp": [
      5,
      -3,
      0,
      -3,
      0
    ],
    "io_out": [
      -40,
      0,
      0,
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(mul_n(input,4),1)),-2))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-8, 20]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des(sort_des([-5, 2]))),-4),29)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -8,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(sort_des(input))),-4),29)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(add_n([0, 3],-2),-2),-1)),30)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(add_n(input,-2),-2),-1)),30)"
  },
  {
    "input": "input : list = [4, 4, 0, 2, -5]\noutput : list = [60, 60, 30, 0, -75]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(mul_n([4, 4, 0, 2, -5],-5)),20),43),-3)",
    "io_inp": [
      4,
      4,
      0,
      2,
      -5
    ],
    "io_out": [
      60,
      60,
      30,
      0,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(mul_n(input,-5)),20),43),-3)"
  },
  {
    "input": "input : list = [3, 5, -4, 4, -5]\noutput : list = [-5, -4, 3, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(add_n([3, 5, -4, 4, -5],-1)),4)),3)",
    "io_inp": [
      3,
      5,
      -4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(add_n(input,-1)),4)),3)"
  },
  {
    "input": "input : list = [2, -1, 2, -2, -5, -5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(reverse(add_n(take(sort_des([2, -1, 2, -2, -5, -5]),2),3)))",
    "io_inp": [
      2,
      -1,
      2,
      -2,
      -5,
      -5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(sort_des(input),2),3)))"
  },
  {
    "input": "input : list = [-4, 2, 4, 0]\noutput : list = [-3, -9]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(take([-4, 2, 4, 0],2))),5),32)",
    "io_inp": [
      -4,
      2,
      4,
      0
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(take(input,2))),5),32)"
  },
  {
    "input": "input : list = [4, 5, 5, -3]\noutput : list = [10]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(take([4, 5, 5, -3],1),17),4)),2)",
    "io_inp": [
      4,
      5,
      5,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(take(input,1),17),4)),2)"
  },
  {
    "input": "input : list = [-5, -3, 5]\noutput : list = [-10, -8, 0]",
    "output": "generated_output : list = sub_n([-5, -3, 5],5)",
    "io_inp": [
      -5,
      -3,
      5
    ],
    "io_out": [
      -10,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [0, 2, 2, 5]\noutput : list = [0, 40, 40, 100]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_asc([0, 2, 2, 5])),4),5))",
    "io_inp": [
      0,
      2,
      2,
      5
    ],
    "io_out": [
      0,
      40,
      40,
      100
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_asc(input)),4),5))"
  },
  {
    "input": "input : list = [2, -4, 0, -4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(take([2, -4, 0, -4],2))),-2))",
    "io_inp": [
      2,
      -4,
      0,
      -4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(take(input,2))),-2))"
  },
  {
    "input": "input : list = [1, 5, 0, -5, -1]\noutput : list = [-120, -24, 0]",
    "output": "generated_output : list = mul_n(mul_n(take(mul_n(sort_asc([1, 5, 0, -5, -1]),-3),3),-4),2)",
    "io_inp": [
      1,
      5,
      0,
      -5,
      -1
    ],
    "io_out": [
      -120,
      -24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(mul_n(sort_asc(input),-3),3),-4),2)"
  },
  {
    "input": "input : list = [4, 1, 3, 3, -2, 3]\noutput : list = [-4, -3, -3, -3, -1, 2]",
    "output": "generated_output : list = mul_n(take(sort_des([4, 1, 3, 3, -2, 3]),23),-1)",
    "io_inp": [
      4,
      1,
      3,
      3,
      -2,
      3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),23),-1)"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [3]",
    "output": "generated_output : list = reverse(add_n(reverse(take(take([1, -5, 5],1),5)),2))",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(take(input,1),5)),2))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-20, -5]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sub_n([-1, 2],-1),1)),-2),-5)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sub_n(input,-1),1)),-2),-5)"
  },
  {
    "input": "input : list = [3, 5, 1, 5, -3, -2]\noutput : list = [-3, -2, 1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(sort_asc([3, 5, 1, 5, -3, -2]))),30))",
    "io_inp": [
      3,
      5,
      1,
      5,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(sort_asc(input))),30))"
  },
  {
    "input": "input : list = [0, -3, 5, 1, 3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(reverse(take([0, -3, 5, 1, 3],1)))",
    "io_inp": [
      0,
      -3,
      5,
      1,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-1, -4, 4, -2, 2]\noutput : list = [-5, -3, -2, 1, 3]",
    "output": "generated_output : list = add_n(sort_asc(add_n([-1, -4, 4, -2, 2],2)),-3)",
    "io_inp": [
      -1,
      -4,
      4,
      -2,
      2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,2)),-3)"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [750, 375, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(add_n([0, 5, -5],5),5)),5),3)",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      750,
      375,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(add_n(input,5),5)),5),3)"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [11, 5, 4]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(sort_des([-2, 4, -3]),1),4),2))",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      11,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(sort_des(input),1),4),2))"
  },
  {
    "input": "input : list = [-5, -1, 3, -5, 3, -3]\noutput : list = [0, 6, -2, 6, 2, -2]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(reverse([-5, -1, 3, -5, 3, -3])),-3)),37)",
    "io_inp": [
      -5,
      -1,
      3,
      -5,
      3,
      -3
    ],
    "io_out": [
      0,
      6,
      -2,
      6,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(reverse(input)),-3)),37)"
  },
  {
    "input": "input : list = [-5, 2, -1, -4, -3]\noutput : list = [-2, 1, 7, 16]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(add_n(drop([-5, 2, -1, -4, -3],1),4)),3),2)",
    "io_inp": [
      -5,
      2,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -2,
      1,
      7,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(add_n(drop(input,1),4)),3),2)"
  },
  {
    "input": "input : list = [-1, 4, 1, -1, 0, 3]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = drop([-1, 4, 1, -1, 0, 3],3)",
    "io_inp": [
      -1,
      4,
      1,
      -1,
      0,
      3
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, 1, -2, 3]\noutput : list = [1, -4, -1, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(sub_n([2, 1, -2, 3],2))),1))",
    "io_inp": [
      2,
      1,
      -2,
      3
    ],
    "io_out": [
      1,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(sub_n(input,2))),1))"
  },
  {
    "input": "input : list = [-2, -3, 3, 0]\noutput : list = [-9, -6, 0, 9]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sort_asc([-2, -3, 3, 0])))),3)",
    "io_inp": [
      -2,
      -3,
      3,
      0
    ],
    "io_out": [
      -9,
      -6,
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [-2, 2, 0, -2]\noutput : list = [10, 10, 20, 30]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_asc([-2, 2, 0, -2]),-3),2),-1),5)",
    "io_inp": [
      -2,
      2,
      0,
      -2
    ],
    "io_out": [
      10,
      10,
      20,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_asc(input),-3),2),-1),5)"
  },
  {
    "input": "input : list = [-1, -5, -4, -1]\noutput : list = [-1, -1, -4, -5]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(reverse([-1, -5, -4, -1])),31)))",
    "io_inp": [
      -1,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(reverse(input)),31)))"
  },
  {
    "input": "input : list = [1, -5, -4, 2, 3]\noutput : list = [-6, -5, 1, 2]",
    "output": "generated_output : list = sub_n(drop([1, -5, -4, 2, 3],1),1)",
    "io_inp": [
      1,
      -5,
      -4,
      2,
      3
    ],
    "io_out": [
      -6,
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [0, -2, -1, -3, -3]\noutput : list = [11, 11, 13, 12, 14]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(sub_n([0, -2, -1, -3, -3],-4),5),5)),-5)",
    "io_inp": [
      0,
      -2,
      -1,
      -3,
      -3
    ],
    "io_out": [
      11,
      11,
      13,
      12,
      14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(sub_n(input,-4),5),5)),-5)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_des([-1, -1]),3)),1),1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_des(input),3)),1),1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [11, 5]",
    "output": "generated_output : list = add_n(sub_n([4, -2],-2),5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      11,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),5)"
  },
  {
    "input": "input : list = [-5, -1, -5, 5]\noutput : list = [30, 30, 10, -20]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(sort_des([-5, -1, -5, 5]),2),-3)),-5)",
    "io_inp": [
      -5,
      -1,
      -5,
      5
    ],
    "io_out": [
      30,
      30,
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(sort_des(input),2),-3)),-5)"
  },
  {
    "input": "input : list = [3, -3, -2, 1, 1, -5]\noutput : list = [-60, -36, -24, 12, 12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(drop([3, -3, -2, 1, 1, -5],1))),4),3)",
    "io_inp": [
      3,
      -3,
      -2,
      1,
      1,
      -5
    ],
    "io_out": [
      -60,
      -36,
      -24,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(drop(input,1))),4),3)"
  },
  {
    "input": "input : list = [-2, 5, 4, 2]\noutput : list = [14, 6, 2, 0]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(sort_des([-2, 5, 4, 2])),-4),-1),-2)",
    "io_inp": [
      -2,
      5,
      4,
      2
    ],
    "io_out": [
      14,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(sort_des(input)),-4),-1),-2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [1, 0]",
    "output": "generated_output : list = sub_n([-2, -3],-3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, 4, 2, -1, 5, 5]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(take([3, 4, 2, -1, 5, 5],1)),-2)))",
    "io_inp": [
      3,
      4,
      2,
      -1,
      5,
      5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(take(input,1)),-2)))"
  },
  {
    "input": "input : list = [-3, -4, 0, 5, 3]\noutput : list = [2, 7, 5]",
    "output": "generated_output : list = sub_n(drop([-3, -4, 0, 5, 3],2),-2)",
    "io_inp": [
      -3,
      -4,
      0,
      5,
      3
    ],
    "io_out": [
      2,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [4, 2, 2, -5, -2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = drop(drop([4, 2, 2, -5, -2, -3],2),3)",
    "io_inp": [
      4,
      2,
      2,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(drop(input,2),3)"
  },
  {
    "input": "input : list = [-3, 0, 4, 4]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 0, 4, 4],1)",
    "io_inp": [
      -3,
      0,
      4,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -2, 4]\noutput : list = [5, -11, -19]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(mul_n([2, -2, 4],-4),1)),22),2)",
    "io_inp": [
      2,
      -2,
      4
    ],
    "io_out": [
      5,
      -11,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(mul_n(input,-4),1)),22),2)"
  },
  {
    "input": "input : list = [4, -2, -5, 4]\noutput : list = [4, 4, -2, -5]",
    "output": "generated_output : list = take(sort_des(reverse(take(sort_asc([4, -2, -5, 4]),4))),8)",
    "io_inp": [
      4,
      -2,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(sort_asc(input),4))),8)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [10, 10]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(add_n([3, 3],-5),4),-1)),-2)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(add_n(input,-5),4),-1)),-2)"
  },
  {
    "input": "input : list = [3, -4, 3, 0, 4]\noutput : list = [-10, -8, -2, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(drop([3, -4, 3, 0, 4],1),1)),-2))",
    "io_inp": [
      3,
      -4,
      3,
      0,
      4
    ],
    "io_out": [
      -10,
      -8,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(drop(input,1),1)),-2))"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 0, 1],1)",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 3, 0, -3, -2]\noutput : list = [-1, 0, -3, -6, -5]",
    "output": "generated_output : list = add_n([2, 3, 0, -3, -2],-3)",
    "io_inp": [
      2,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0,
      -3,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, 2, -1, -5, 2, -3]\noutput : list = [-6, -4, -2, 0, 1, 1]",
    "output": "generated_output : list = reverse(take(sub_n(take(sort_des([1, 2, -1, -5, 2, -3]),12),1),33))",
    "io_inp": [
      1,
      2,
      -1,
      -5,
      2,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(sort_des(input),12),1),33))"
  },
  {
    "input": "input : list = [-5, -4, -1, 4, 1]\noutput : list = [6, -9]",
    "output": "generated_output : list = add_n(mul_n(drop(add_n(sub_n([-5, -4, -1, 4, 1],-3),-5),3),5),-4)",
    "io_inp": [
      -5,
      -4,
      -1,
      4,
      1
    ],
    "io_out": [
      6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(add_n(sub_n(input,-3),-5),3),5),-4)"
  },
  {
    "input": "input : list = [0, -4, -3, -3]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -4, -3, -3],1)",
    "io_inp": [
      0,
      -4,
      -3,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -5, -4, 2, 1, 5]\noutput : list = [10, 4, 2]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(drop([-4, -5, -4, 2, 1, 5],3),2),32)))",
    "io_inp": [
      -4,
      -5,
      -4,
      2,
      1,
      5
    ],
    "io_out": [
      10,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(drop(input,3),2),32)))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [1, -8]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(reverse([2, -1]),7)),-3),2)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(reverse(input),7)),-3),2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des([4, 4])",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, 2, 3, 4, 0]\noutput : list = [20, 15, 10, 0]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(drop([-5, -4, 2, 3, 4, 0],2)),5)))",
    "io_inp": [
      -5,
      -4,
      2,
      3,
      4,
      0
    ],
    "io_out": [
      20,
      15,
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(drop(input,2)),5)))"
  },
  {
    "input": "input : list = [2, -1, 0, -2, -4, 1]\noutput : list = [9, 3, 0, -3, -6, -9]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(reverse([2, -1, 0, -2, -4, 1]),-3))),-3)",
    "io_inp": [
      2,
      -1,
      0,
      -2,
      -4,
      1
    ],
    "io_out": [
      9,
      3,
      0,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(reverse(input),-3))),-3)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [182, -118]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(mul_n([3, -2],3),-5)),-4),2)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      182,
      -118
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(mul_n(input,3),-5)),-4),2)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-13, -8]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des([0, -5]),1),5)),3)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -13,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des(input),1),5)),3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([5, -1]),1))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [1, 2, 5, 2, 1, -5]\noutput : list = [7, 10, 7, 6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(take([1, 2, 5, 2, 1, -5],4),1)),-3),-3)",
    "io_inp": [
      1,
      2,
      5,
      2,
      1,
      -5
    ],
    "io_out": [
      7,
      10,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(take(input,4),1)),-3),-3)"
  },
  {
    "input": "input : list = [-3, 2, -5, -4, 2, -3]\noutput : list = [59, -41, 79]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(drop([-3, 2, -5, -4, 2, -3],3),-4)),5),-1)",
    "io_inp": [
      -3,
      2,
      -5,
      -4,
      2,
      -3
    ],
    "io_out": [
      59,
      -41,
      79
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(drop(input,3),-4)),5),-1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des([-1, -1])",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, 3, 5, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(drop([-5, -2, 3, 5, 4],3),2)),3))",
    "io_inp": [
      -5,
      -2,
      3,
      5,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(drop(input,3),2)),3))"
  },
  {
    "input": "input : list = [4, 0, -4, 4, -5, -3]\noutput : list = [-5, -4, -3, 0, 4, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([4, 0, -4, 4, -5, -3]),-5),-5)",
    "io_inp": [
      4,
      0,
      -4,
      4,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-5),-5)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [7, 4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(drop([5, 1, 4],1),-3))))",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [3, -1, -3]\noutput : list = [-18, -14, -6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sub_n([3, -1, -3],4)),2)),-4)",
    "io_inp": [
      3,
      -1,
      -3
    ],
    "io_out": [
      -18,
      -14,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sub_n(input,4)),2)),-4)"
  },
  {
    "input": "input : list = [1, -1, -1, 4]\noutput : list = [4, 1, -1, -1]",
    "output": "generated_output : list = take(take(take(reverse(sort_asc([1, -1, -1, 4])),29),4),46)",
    "io_inp": [
      1,
      -1,
      -1,
      4
    ],
    "io_out": [
      4,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(sort_asc(input)),29),4),46)"
  },
  {
    "input": "input : list = [0, 1, -4, -4]\noutput : list = [1, 0, -4, -4]",
    "output": "generated_output : list = sort_des([0, 1, -4, -4])",
    "io_inp": [
      0,
      1,
      -4,
      -4
    ],
    "io_out": [
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [-14, -16, -24]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n([5, 1, 0],4),-3),-2))",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      -14,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(input,4),-3),-2))"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [22, -18, -28]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(mul_n([-5, 5, -3],1),-5)),-1),-3)",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      22,
      -18,
      -28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(mul_n(input,1),-5)),-1),-3)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [0, -5]",
    "output": "generated_output : list = add_n(sub_n([3, -2],5),2)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),2)"
  },
  {
    "input": "input : list = [-1, 4, -3, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = drop(sort_des(reverse(add_n(sort_des([-1, 4, -3, 0]),1))),2)",
    "io_inp": [
      -1,
      4,
      -3,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(add_n(sort_des(input),1))),2)"
  },
  {
    "input": "input : list = [4, 5, 5, -4]\noutput : list = [2, 3, 3, -6]",
    "output": "generated_output : list = add_n([4, 5, 5, -4],-2)",
    "io_inp": [
      4,
      5,
      5,
      -4
    ],
    "io_out": [
      2,
      3,
      3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sub_n([3, 5],-1),13),-2),28))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sub_n(input,-1),13),-2),28))"
  },
  {
    "input": "input : list = [-2, -1, -2, -3, -3]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(take([-2, -1, -2, -3, -3],3)),1)))",
    "io_inp": [
      -2,
      -1,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(take(input,3)),1)))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-4, -14]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(mul_n([3, 1],-5),2),-3)))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -4,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(mul_n(input,-5),2),-3)))"
  },
  {
    "input": "input : list = [-3, 0, -5, 1]\noutput : list = [1, 3, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(add_n([-3, 0, -5, 1],5)),6)),-1)",
    "io_inp": [
      -3,
      0,
      -5,
      1
    ],
    "io_out": [
      1,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(add_n(input,5)),6)),-1)"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [1, 6, 2]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n([-3, 1, -4],-1),-4)),5),-5)",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      1,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n(input,-1),-4)),5),-5)"
  },
  {
    "input": "input : list = [-1, 5, -4, 5]\noutput : list = [6, 9, 15, 15]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n([-1, 5, -4, 5],-3),-2)),-5)",
    "io_inp": [
      -1,
      5,
      -4,
      5
    ],
    "io_out": [
      6,
      9,
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(input,-3),-2)),-5)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(add_n(add_n([2, 1],-3),5),-2)))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(add_n(add_n(input,-3),5),-2)))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(reverse([-2, 1]))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [3, 4, 2, 5]\noutput : list = [-15, -12, -9, -6]",
    "output": "generated_output : list = mul_n(sort_des([3, 4, 2, 5]),-3)",
    "io_inp": [
      3,
      4,
      2,
      5
    ],
    "io_out": [
      -15,
      -12,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(reverse([-3, -2])),4),2),23)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(reverse(input)),4),2),23)"
  },
  {
    "input": "input : list = [4, -4, 1]\noutput : list = [-11, 1, 21]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(reverse([4, -4, 1]),-4),-5),1))",
    "io_inp": [
      4,
      -4,
      1
    ],
    "io_out": [
      -11,
      1,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(reverse(input),-4),-5),1))"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [-3, -6, -11]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_asc([1, 4, -4]),3)),5),5)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      -3,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_asc(input),3)),5),5)"
  },
  {
    "input": "input : list = [0, 3, 1, -3, 1]\noutput : list = [-8, -12, -8, -6, -9]",
    "output": "generated_output : list = add_n(take(take(sub_n(reverse([0, 3, 1, -3, 1]),4),18),6),-5)",
    "io_inp": [
      0,
      3,
      1,
      -3,
      1
    ],
    "io_out": [
      -8,
      -12,
      -8,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(reverse(input),4),18),6),-5)"
  },
  {
    "input": "input : list = [-4, 5, -4, 3, 4]\noutput : list = [4, 3, 2, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sub_n([-4, 5, -4, 3, 4],3))),-2))",
    "io_inp": [
      -4,
      5,
      -4,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sub_n(input,3))),-2))"
  },
  {
    "input": "input : list = [3, 3, 2, -4]\noutput : list = [3, 3, 4, 10]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n([3, 3, 2, -4],-1),-4),-1),-3)",
    "io_inp": [
      3,
      3,
      2,
      -4
    ],
    "io_out": [
      3,
      3,
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(input,-1),-4),-1),-3)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(reverse([-3, -1, 3]))),20))",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(reverse(input))),20))"
  },
  {
    "input": "input : list = [4, -1, -3, 0, 2]\noutput : list = [6, 4, 2, 1, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_des([4, -1, -3, 0, 2])))),2)",
    "io_inp": [
      4,
      -1,
      -3,
      0,
      2
    ],
    "io_out": [
      6,
      4,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [4, 5, 5, 0, 2]\noutput : list = [-6, 0, -15, -15, -12]",
    "output": "generated_output : list = mul_n(reverse([4, 5, 5, 0, 2]),-3)",
    "io_inp": [
      4,
      5,
      5,
      0,
      2
    ],
    "io_out": [
      -6,
      0,
      -15,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [9, 8]",
    "output": "generated_output : list = add_n([4, 3],5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 1, 0]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n([-2, 1, 0],4)),2),1))",
    "io_inp": [
      -2,
      1,
      0
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n(input,4)),2),1))"
  },
  {
    "input": "input : list = [0, -5, 3, 1, -5]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(take([0, -5, 3, 1, -5],2))),-1),-2)",
    "io_inp": [
      0,
      -5,
      3,
      1,
      -5
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(take(input,2))),-1),-2)"
  },
  {
    "input": "input : list = [-3, 4, 0, -3, 1]\noutput : list = [0, -21]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(take([-3, 4, 0, -3, 1],2),-3))),-3)",
    "io_inp": [
      -3,
      4,
      0,
      -3,
      1
    ],
    "io_out": [
      0,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(take(input,2),-3))),-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [8, 4]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(mul_n([4, 2],2)),3),-3),7)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(mul_n(input,2)),3),-3),7)"
  },
  {
    "input": "input : list = [-2, -3, 0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse(drop(take(sort_asc([-2, -3, 0, 2]),11),2))",
    "io_inp": [
      -2,
      -3,
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(take(sort_asc(input),11),2))"
  },
  {
    "input": "input : list = [1, 0, 1, -4, 2, 4]\noutput : list = [1]",
    "output": "generated_output : list = take(drop(reverse([1, 0, 1, -4, 2, 4]),5),27)",
    "io_inp": [
      1,
      0,
      1,
      -4,
      2,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(drop(reverse(input),5),27)"
  },
  {
    "input": "input : list = [-3, 2, -1, 2, -4]\noutput : list = [2, -1, -3, -4]",
    "output": "generated_output : list = drop(reverse(sort_asc(sort_des(reverse([-3, 2, -1, 2, -4])))),1)",
    "io_inp": [
      -3,
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      2,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_asc(sort_des(reverse(input)))),1)"
  },
  {
    "input": "input : list = [4, -3, 4, 0, 2, 0]\noutput : list = [2, -5, 2, -2, 0, -2]",
    "output": "generated_output : list = sub_n(take(sub_n([4, -3, 4, 0, 2, 0],3),16),-1)",
    "io_inp": [
      4,
      -3,
      4,
      0,
      2,
      0
    ],
    "io_out": [
      2,
      -5,
      2,
      -2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,3),16),-1)"
  },
  {
    "input": "input : list = [5, -1, -5, -5, -2, 4]\noutput : list = [-5, -5, -2, -1, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -1, -5, -5, -2, 4])",
    "io_inp": [
      5,
      -1,
      -5,
      -5,
      -2,
      4
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, -1, 3]\noutput : list = [2, 0, -3, -4]",
    "output": "generated_output : list = add_n(sort_des([5, 0, -1, 3]),-3)",
    "io_inp": [
      5,
      0,
      -1,
      3
    ],
    "io_out": [
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-4, -2, -1, 3, -1, 1]\noutput : list = [-4, -2, -1, -1, 1, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(reverse([-4, -2, -1, 3, -1, 1])))),13)",
    "io_inp": [
      -4,
      -2,
      -1,
      3,
      -1,
      1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(reverse(input)))),13)"
  },
  {
    "input": "input : list = [3, 3, -3, 1, 3, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(take([3, 3, -3, 1, 3, -2],2))",
    "io_inp": [
      3,
      3,
      -3,
      1,
      3,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-20, -15]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n([-3, -2],5)),20),5)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -20,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(input,5)),20),5)"
  },
  {
    "input": "input : list = [-4, -5, -4, 2]\noutput : list = [-25, -20, -20, 10]",
    "output": "generated_output : list = sort_asc(mul_n([-4, -5, -4, 2],5))",
    "io_inp": [
      -4,
      -5,
      -4,
      2
    ],
    "io_out": [
      -25,
      -20,
      -20,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(take([-1, -3, 3],1))),-1))",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(take(input,1))),-1))"
  },
  {
    "input": "input : list = [-3, 5, -4, 2, -1]\noutput : list = [2, -1, -4, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n([-3, 5, -4, 2, -1],3))",
    "io_inp": [
      -3,
      5,
      -4,
      2,
      -1
    ],
    "io_out": [
      2,
      -1,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [1, -2, -5]\noutput : list = [0, 6, 12]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([1, -2, -5],2),2),-1)",
    "io_inp": [
      1,
      -2,
      -5
    ],
    "io_out": [
      0,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,2),2),-1)"
  },
  {
    "input": "input : list = [-5, 5, 5, 3]\noutput : list = [-17, -17, -11, 13]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-5, 5, 5, 3]),-3),2)",
    "io_inp": [
      -5,
      5,
      5,
      3
    ],
    "io_out": [
      -17,
      -17,
      -11,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-3),2)"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [-1, -4, -7]",
    "output": "generated_output : list = sub_n([2, -1, -4],3)",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, 3, -1, -4]\noutput : list = [0, 3, -1, -4]",
    "output": "generated_output : list = mul_n([0, 3, -1, -4],1)",
    "io_inp": [
      0,
      3,
      -1,
      -4
    ],
    "io_out": [
      0,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-5, -3, 2, -2, -4]\noutput : list = [-7, -9]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(take([-5, -3, 2, -2, -4],2))),4))",
    "io_inp": [
      -5,
      -3,
      2,
      -2,
      -4
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(take(input,2))),4))"
  },
  {
    "input": "input : list = [-4, 2, 4, 5]\noutput : list = [-4, 2, 4, 5]",
    "output": "generated_output : list = take(take(mul_n(reverse(reverse([-4, 2, 4, 5])),1),30),40)",
    "io_inp": [
      -4,
      2,
      4,
      5
    ],
    "io_out": [
      -4,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(reverse(input)),1),30),40)"
  },
  {
    "input": "input : list = [3, 3, 3, -3, 2]\noutput : list = [6, 6, 6, 5, 0]",
    "output": "generated_output : list = take(sub_n(take(reverse(sort_asc([3, 3, 3, -3, 2])),19),-3),46)",
    "io_inp": [
      3,
      3,
      3,
      -3,
      2
    ],
    "io_out": [
      6,
      6,
      6,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(sort_asc(input)),19),-3),46)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [6, 12]",
    "output": "generated_output : list = reverse(mul_n([4, 2],3))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [0, -4, -9]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(sort_des([0, -5, 4])),3),-4))",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      0,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(sort_des(input)),3),-4))"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [6, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(reverse([1, 3, 0])))),-3)",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [9, 10]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n([5, 4],-4)),20),-2),-1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n(input,-4)),20),-2),-1)"
  },
  {
    "input": "input : list = [-2, -5, -1, -3, -4, 1]\noutput : list = [-30, -75, -15, -45, -60, 15]",
    "output": "generated_output : list = mul_n(mul_n([-2, -5, -1, -3, -4, 1],5),3)",
    "io_inp": [
      -2,
      -5,
      -1,
      -3,
      -4,
      1
    ],
    "io_out": [
      -30,
      -75,
      -15,
      -45,
      -60,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,5),3)"
  },
  {
    "input": "input : list = [2, 1, 2, 5, -3, -5]\noutput : list = [4, 5, 5, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(take([2, 1, 2, 5, -3, -5],4),-1),4)))",
    "io_inp": [
      2,
      1,
      2,
      5,
      -3,
      -5
    ],
    "io_out": [
      4,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(take(input,4),-1),4)))"
  },
  {
    "input": "input : list = [1, -2, -5, -5]\noutput : list = [-2, -2, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sort_asc([1, -2, -5, -5]),-4))),1)",
    "io_inp": [
      1,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sort_asc(input),-4))),1)"
  },
  {
    "input": "input : list = [-4, -5, 2, -4, -4, -4]\noutput : list = [0, 1, 1, 1, 1, 7]",
    "output": "generated_output : list = sort_asc(take(sub_n([-4, -5, 2, -4, -4, -4],-5),31))",
    "io_inp": [
      -4,
      -5,
      2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      0,
      1,
      1,
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,-5),31))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_des([-2, 2])),5)))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [-7, 2, -1]",
    "output": "generated_output : list = add_n(sub_n(take(add_n([-5, 4, 1],-2),18),-5),-5)",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      -7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(input,-2),18),-5),-5)"
  },
  {
    "input": "input : list = [-1, -3, 0, 5]\noutput : list = [4, -1, -2, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des([-1, -3, 0, 5]),4)),-1),-4)",
    "io_inp": [
      -1,
      -3,
      0,
      5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des(input),4)),-1),-4)"
  },
  {
    "input": "input : list = [-3, -5, 0, -3]\noutput : list = [9, 0, 15, 9]",
    "output": "generated_output : list = take(mul_n(mul_n(take(reverse([-3, -5, 0, -3]),21),-3),1),10)",
    "io_inp": [
      -3,
      -5,
      0,
      -3
    ],
    "io_out": [
      9,
      0,
      15,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(reverse(input),21),-3),1),10)"
  },
  {
    "input": "input : list = [-2, -4, -3, -4, -1, 5]\noutput : list = [2, -4, -7]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(drop([-2, -4, -3, -4, -1, 5],3),26),-3)),1)",
    "io_inp": [
      -2,
      -4,
      -3,
      -4,
      -1,
      5
    ],
    "io_out": [
      2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(drop(input,3),26),-3)),1)"
  },
  {
    "input": "input : list = [0, -2, -5, -3, -1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_des(take(take(take([0, -2, -5, -3, -1],1),13),16)))",
    "io_inp": [
      0,
      -2,
      -5,
      -3,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(take(input,1),13),16)))"
  },
  {
    "input": "input : list = [-1, -1, 4, -3, -5]\noutput : list = [16, 8, 0, 0, -20]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc([-1, -1, 4, -3, -5]),-4),26),-4)",
    "io_inp": [
      -1,
      -1,
      4,
      -3,
      -5
    ],
    "io_out": [
      16,
      8,
      0,
      0,
      -20
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(input),-4),26),-4)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-9, -12]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(sort_asc([-2, -5]),11),-5)),-2)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -9,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(sort_asc(input),11),-5)),-2)"
  },
  {
    "input": "input : list = [-5, -4, -2, 0]\noutput : list = [-15, -17, -19, -20]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_asc([-5, -4, -2, 0])),5),-5),5)",
    "io_inp": [
      -5,
      -4,
      -2,
      0
    ],
    "io_out": [
      -15,
      -17,
      -19,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_asc(input)),5),-5),5)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n([4, 1],1)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = take(take(sort_des(sort_asc(sort_asc([2, -5]))),33),2)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(sort_asc(input))),33),2)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [-8, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(drop([1, -2, 3],1),1))),4)",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      -8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(drop(input,1),1))),4)"
  },
  {
    "input": "input : list = [-4, -2, 0, -1]\noutput : list = [7, 5, 3, 4]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(mul_n([-4, -2, 0, -1],-1),21)),-3))",
    "io_inp": [
      -4,
      -2,
      0,
      -1
    ],
    "io_out": [
      7,
      5,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(mul_n(input,-1),21)),-3))"
  },
  {
    "input": "input : list = [2, 4, -4, -1, 0]\noutput : list = [-4, -1, 0, 2, 4]",
    "output": "generated_output : list = reverse(sort_des([2, 4, -4, -1, 0]))",
    "io_inp": [
      2,
      4,
      -4,
      -1,
      0
    ],
    "io_out": [
      -4,
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 5, -4, -4, 4, -3]\noutput : list = [-4, -4, 4, -3]",
    "output": "generated_output : list = drop([-4, 5, -4, -4, 4, -3],2)",
    "io_inp": [
      -4,
      5,
      -4,
      -4,
      4,
      -3
    ],
    "io_out": [
      -4,
      -4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -4, 3, 2, 1]\noutput : list = [-2, -9, -2, -3, -4]",
    "output": "generated_output : list = add_n(take(add_n([3, -4, 3, 2, 1],-4),7),-1)",
    "io_inp": [
      3,
      -4,
      3,
      2,
      1
    ],
    "io_out": [
      -2,
      -9,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-4),7),-1)"
  },
  {
    "input": "input : list = [3, -2, -3, -1, 3, 0]\noutput : list = [1, 0, -1, -2, -5, -5]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_asc([3, -2, -3, -1, 3, 0])),-2),-1))",
    "io_inp": [
      3,
      -2,
      -3,
      -1,
      3,
      0
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_asc(input)),-2),-1))"
  },
  {
    "input": "input : list = [2, 2, -1, -2, -3, 0]\noutput : list = [-2, -3, 0]",
    "output": "generated_output : list = drop([2, 2, -1, -2, -3, 0],3)",
    "io_inp": [
      2,
      2,
      -1,
      -2,
      -3,
      0
    ],
    "io_out": [
      -2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, -1, -3, 3, 3]\noutput : list = [-8, -4]",
    "output": "generated_output : list = mul_n(take(add_n([0, -1, -3, 3, 3],2),2),-4)",
    "io_inp": [
      0,
      -1,
      -3,
      3,
      3
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,2),2),-4)"
  },
  {
    "input": "input : list = [3, 1, -3, -2]\noutput : list = [3, 2, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des([3, 1, -3, -2]),-1)))",
    "io_inp": [
      3,
      1,
      -3,
      -2
    ],
    "io_out": [
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(input),-1)))"
  },
  {
    "input": "input : list = [-4, 0, -1, -1, -2, 1]\noutput : list = [-20, -8, -12]",
    "output": "generated_output : list = reverse(mul_n(take(drop(add_n([-4, 0, -1, -1, -2, 1],4),3),28),-4))",
    "io_inp": [
      -4,
      0,
      -1,
      -1,
      -2,
      1
    ],
    "io_out": [
      -20,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(drop(add_n(input,4),3),28),-4))"
  },
  {
    "input": "input : list = [0, 4, 1, 3, 1]\noutput : list = [-12, -3, 0]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(take([0, 4, 1, 3, 1],3)),-3),-2),-2)",
    "io_inp": [
      0,
      4,
      1,
      3,
      1
    ],
    "io_out": [
      -12,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(take(input,3)),-3),-2),-2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [2, 9]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(sub_n([-5, 2],-4),3))),1)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(sub_n(input,-4),3))),1)"
  },
  {
    "input": "input : list = [5, -5, 4, 5, 2]\noutput : list = [25, -25, 20, 25, 10]",
    "output": "generated_output : list = mul_n([5, -5, 4, 5, 2],5)",
    "io_inp": [
      5,
      -5,
      4,
      5,
      2
    ],
    "io_out": [
      25,
      -25,
      20,
      25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = sort_des([1, 2, 1])",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3, 2, -3, 5]\noutput : list = [-4, -4, -4, 1, 4]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des([-3, -3, 2, -3, 5]),26)),-1)",
    "io_inp": [
      -3,
      -3,
      2,
      -3,
      5
    ],
    "io_out": [
      -4,
      -4,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(input),26)),-1)"
  },
  {
    "input": "input : list = [-1, -2, -3, 3]\noutput : list = [4, 3, 2, 8]",
    "output": "generated_output : list = take(add_n(add_n(add_n([-1, -2, -3, 3],-3),3),5),8)",
    "io_inp": [
      -1,
      -2,
      -3,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(input,-3),3),5),8)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-75, -225]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(sort_asc([-1, 5]),-4),17),-5),5)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -75,
      -225
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(sort_asc(input),-4),17),-5),5)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [-120, 24, 72]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse([-1, 5, -3]),4),-3),2))",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      -120,
      24,
      72
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse(input),4),-3),2))"
  },
  {
    "input": "input : list = [-3, 4, 2, 3, 0]\noutput : list = [4, 3, 2, 0]",
    "output": "generated_output : list = sort_des(take(take(sort_des([-3, 4, 2, 3, 0]),4),18))",
    "io_inp": [
      -3,
      4,
      2,
      3,
      0
    ],
    "io_out": [
      4,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(input),4),18))"
  },
  {
    "input": "input : list = [2, 4, -5, 2]\noutput : list = [10, -4, -4, -8]",
    "output": "generated_output : list = reverse(sort_asc(take(take(mul_n([2, 4, -5, 2],-2),8),27)))",
    "io_inp": [
      2,
      4,
      -5,
      2
    ],
    "io_out": [
      10,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(mul_n(input,-2),8),27)))"
  },
  {
    "input": "input : list = [-1, -1, -1, 5]\noutput : list = [-66, 24, 24, 24]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(mul_n([-1, -1, -1, 5],5)),2),5),-3)",
    "io_inp": [
      -1,
      -1,
      -1,
      5
    ],
    "io_out": [
      -66,
      24,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(mul_n(input,5)),2),5),-3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [3, 9]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse([4, -2]),-4),5),4)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(input),-4),5),4)"
  },
  {
    "input": "input : list = [-1, 5, -2, -5, 5, -2]\noutput : list = [-3, 0, 0, 1, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_des(sort_asc([-1, 5, -2, -5, 5, -2])))),-2)",
    "io_inp": [
      -1,
      5,
      -2,
      -5,
      5,
      -2
    ],
    "io_out": [
      -3,
      0,
      0,
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_des(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [-1, 0, -1, -5, -4]\noutput : list = [-1, -16, -16, -61, -76]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n([-1, 0, -1, -5, -4],3),9)),5),1)",
    "io_inp": [
      -1,
      0,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -16,
      -16,
      -61,
      -76
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n(input,3),9)),5),1)"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc([5, 2, -1]))),1)",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(input))),1)"
  },
  {
    "input": "input : list = [-1, 0, 3, 1, -1]\noutput : list = [-5, -5, -6, -7, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(sub_n([-1, 0, 3, 1, -1],-3),-1))),-3)",
    "io_inp": [
      -1,
      0,
      3,
      1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(sub_n(input,-3),-1))),-3)"
  },
  {
    "input": "input : list = [5, -3, 4]\noutput : list = [14]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(take([5, -3, 4],1),-4)),28),5)",
    "io_inp": [
      5,
      -3,
      4
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(take(input,1),-4)),28),5)"
  },
  {
    "input": "input : list = [-3, 5, -2, 4, -3, -1]\noutput : list = [-6, -7, -12, -13, -14, -14]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(add_n([-3, 5, -2, 4, -3, -1],-4),4),-3)))",
    "io_inp": [
      -3,
      5,
      -2,
      4,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -7,
      -12,
      -13,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(add_n(input,-4),4),-3)))"
  },
  {
    "input": "input : list = [5, 5, -2, -4]\noutput : list = [14, 14, 7, 5]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(sub_n([5, 5, -2, -4],-2),1),-2),-5),36)",
    "io_inp": [
      5,
      5,
      -2,
      -4
    ],
    "io_out": [
      14,
      14,
      7,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(sub_n(input,-2),1),-2),-5),36)"
  },
  {
    "input": "input : list = [3, 5, 0, 5, 1, 0]\noutput : list = [0, 1, 5, 0, 5, 3]",
    "output": "generated_output : list = reverse(mul_n([3, 5, 0, 5, 1, 0],1))",
    "io_inp": [
      3,
      5,
      0,
      5,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      5,
      0,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-6, -4]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(mul_n([1, 2],-2),2))),17)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(mul_n(input,-2),2))),17)"
  },
  {
    "input": "input : list = [5, -5, -3, -2, 1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -5, -3, -2, 1],1)",
    "io_inp": [
      5,
      -5,
      -3,
      -2,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -2, -4, -1]\noutput : list = [4, -1, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sort_des([4, -2, -4, -1])),1)))",
    "io_inp": [
      4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [2, 5, -1, 5, -5, -4]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, 5, -1, 5, -5, -4],1))",
    "io_inp": [
      2,
      5,
      -1,
      5,
      -5,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-1, 2, 4, -1]\noutput : list = [3, 1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(add_n([-1, 2, 4, -1],-5),-4))))",
    "io_inp": [
      -1,
      2,
      4,
      -1
    ],
    "io_out": [
      3,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(add_n(input,-5),-4))))"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [10, 16]",
    "output": "generated_output : list = add_n(drop(sub_n(mul_n(sort_asc([-4, 4, 2]),3),-5),1),-1)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      10,
      16
    ],
    "output_masked": "generated_output : list = add_n(drop(sub_n(mul_n(sort_asc(input),3),-5),1),-1)"
  },
  {
    "input": "input : list = [-5, 5, -5, -5, 1]\noutput : list = [-9, 1, -9, -9, -3]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(add_n([-5, 5, -5, -5, 1],-5)),32),-1))",
    "io_inp": [
      -5,
      5,
      -5,
      -5,
      1
    ],
    "io_out": [
      -9,
      1,
      -9,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(add_n(input,-5)),32),-1))"
  },
  {
    "input": "input : list = [-3, 4, 3, 4, -5]\noutput : list = [-10, -8, -2, -1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_asc([-3, 4, 3, 4, -5]))),5))",
    "io_inp": [
      -3,
      4,
      3,
      4,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-2, 3, 5, -1, 3, -3]\noutput : list = [-20, -12, -12, 4, 8, 12]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(mul_n([-2, 3, 5, -1, 3, -3],-4))),37))",
    "io_inp": [
      -2,
      3,
      5,
      -1,
      3,
      -3
    ],
    "io_out": [
      -20,
      -12,
      -12,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(mul_n(input,-4))),37))"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [-15, -3, 3]",
    "output": "generated_output : list = take(mul_n(take(take(sort_des([5, 1, -1]),15),17),-3),14)",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      -15,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(sort_des(input),15),17),-3),14)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [5, 7]",
    "output": "generated_output : list = sub_n(sort_asc([2, 4]),-3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = mul_n([-1, 2],2)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 5, -1, 2]\noutput : list = [-12, -27, 3, -47]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sub_n([-5, 5, -1, 2],4),5),1)),3)",
    "io_inp": [
      -5,
      5,
      -1,
      2
    ],
    "io_out": [
      -12,
      -27,
      3,
      -47
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sub_n(input,4),5),1)),3)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [80, -16]",
    "output": "generated_output : list = take(mul_n(take(mul_n(sort_asc([5, 1, -5]),-4),2),4),2)",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      80,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(sort_asc(input),-4),2),4),2)"
  },
  {
    "input": "input : list = [-5, -1, -5, 2, 1, 2]\noutput : list = [-7, -7, -3, 0]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(take([-5, -1, -5, 2, 1, 2],4),2)),8))",
    "io_inp": [
      -5,
      -1,
      -5,
      2,
      1,
      2
    ],
    "io_out": [
      -7,
      -7,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(take(input,4),2)),8))"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [-13, 2, 14]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(mul_n([-1, 4, -5],-3),1))),2)",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      -13,
      2,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(mul_n(input,-3),1))),2)"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take([-1, 3, -1],1),3),-2),3)",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(input,1),3),-2),3)"
  },
  {
    "input": "input : list = [5, -2, 3, -3]\noutput : list = [-5, -4, 1, 3]",
    "output": "generated_output : list = sub_n(sort_asc([5, -2, 3, -3]),2)",
    "io_inp": [
      5,
      -2,
      3,
      -3
    ],
    "io_out": [
      -5,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-5, -4, 1, 4]\noutput : list = [-13, -4, 11, 14]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sub_n([-5, -4, 1, 4],4),-4),-3),-1))",
    "io_inp": [
      -5,
      -4,
      1,
      4
    ],
    "io_out": [
      -13,
      -4,
      11,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sub_n(input,4),-4),-3),-1))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(drop(mul_n(sub_n(reverse([-5, 4]),-3),3),1),5)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sub_n(reverse(input),-3),3),1),5)"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [-10, -20, -25]",
    "output": "generated_output : list = sort_des(take(take(mul_n(reverse([-5, -4, -2]),5),18),8))",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(reverse(input),5),18),8))"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [9, 9, 17]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(sub_n([2, 2, 4],-1),4)),3))",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      9,
      9,
      17
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(sub_n(input,-1),4)),3))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [1, -11]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(add_n([-1, -4],5),-4),2),3))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      1,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(add_n(input,5),-4),2),3))"
  },
  {
    "input": "input : list = [-4, 5, -4, -1]\noutput : list = [5, -1, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-4, 5, -4, -1])))",
    "io_inp": [
      -4,
      5,
      -4,
      -1
    ],
    "io_out": [
      5,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, 4, 2, 5, 5]\noutput : list = [4, 7, 7]",
    "output": "generated_output : list = take(sub_n(drop([3, 4, 2, 5, 5],2),-2),8)",
    "io_inp": [
      3,
      4,
      2,
      5,
      5
    ],
    "io_out": [
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,2),-2),8)"
  },
  {
    "input": "input : list = [-1, 4, 0, -3, -1, 4]\noutput : list = [4, 0, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(take([-1, 4, 0, -3, -1, 4],4)))",
    "io_inp": [
      -1,
      4,
      0,
      -3,
      -1,
      4
    ],
    "io_out": [
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,4)))"
  },
  {
    "input": "input : list = [-4, -2, -2, -5, 2]\noutput : list = [-1, -5, -5, -7, -8]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sort_des([-4, -2, -2, -5, 2]),-3))))",
    "io_inp": [
      -4,
      -2,
      -2,
      -5,
      2
    ],
    "io_out": [
      -1,
      -5,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [31, 11]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(mul_n([-5, -1],-5),-2),4)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      31,
      11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(mul_n(input,-5),-2),4)))"
  },
  {
    "input": "input : list = [-2, -5, -4, 5, -2, 5]\noutput : list = [-2]",
    "output": "generated_output : list = drop(reverse([-2, -5, -4, 5, -2, 5]),5)",
    "io_inp": [
      -2,
      -5,
      -4,
      5,
      -2,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = drop(reverse(input),5)"
  },
  {
    "input": "input : list = [0, 1, 2, -4]\noutput : list = [-4, 0, 1, 2]",
    "output": "generated_output : list = sort_asc([0, 1, 2, -4])",
    "io_inp": [
      0,
      1,
      2,
      -4
    ],
    "io_out": [
      -4,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, 5, 2, -2, 2]\noutput : list = [-10, -13, -13, -16, -17, -17]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse(add_n([-2, -1, 5, 2, -2, 2],-5)),5),-5))",
    "io_inp": [
      -2,
      -1,
      5,
      2,
      -2,
      2
    ],
    "io_out": [
      -10,
      -13,
      -13,
      -16,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(add_n(input,-5)),5),-5))"
  },
  {
    "input": "input : list = [-4, -5, -2, -2, 1, 4]\noutput : list = [-10, -8, -4, -4, 2, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(mul_n([-4, -5, -2, -2, 1, 4],2),22))))",
    "io_inp": [
      -4,
      -5,
      -2,
      -2,
      1,
      4
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -4,
      2,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(mul_n(input,2),22))))"
  },
  {
    "input": "input : list = [0, 0, -2, 0]\noutput : list = [3, 3, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des([0, 0, -2, 0]),-3)",
    "io_inp": [
      0,
      0,
      -2,
      0
    ],
    "io_out": [
      3,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-4, 0, -1, 5, 5]\noutput : list = [40, 24]",
    "output": "generated_output : list = mul_n(take(take(add_n(sub_n([-4, 0, -1, 5, 5],3),-3),2),26),-4)",
    "io_inp": [
      -4,
      0,
      -1,
      5,
      5
    ],
    "io_out": [
      40,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(sub_n(input,3),-3),2),26),-4)"
  },
  {
    "input": "input : list = [3, 2, 5, 1]\noutput : list = [4]",
    "output": "generated_output : list = add_n(sub_n(take([3, 2, 5, 1],1),-2),-1)",
    "io_inp": [
      3,
      2,
      5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,1),-2),-1)"
  },
  {
    "input": "input : list = [5, -1, -4, -3, -4]\noutput : list = [-5, 1, 4, 3, 4]",
    "output": "generated_output : list = mul_n([5, -1, -4, -3, -4],-1)",
    "io_inp": [
      5,
      -1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -5,
      1,
      4,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [3, -2, 5]\noutput : list = [-5, -10, -3]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(add_n([3, -2, 5],-4)),3)),-1)",
    "io_inp": [
      3,
      -2,
      5
    ],
    "io_out": [
      -5,
      -10,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(add_n(input,-4)),3)),-1)"
  },
  {
    "input": "input : list = [-2, 0, 3, -2, -4, -5]\noutput : list = [-7, -5, -2, -7, -9, -10]",
    "output": "generated_output : list = sub_n([-2, 0, 3, -2, -4, -5],5)",
    "io_inp": [
      -2,
      0,
      3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -2,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [16, 4]",
    "output": "generated_output : list = mul_n(sub_n([3, -3],-5),2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [-5, 1, 1, 4]\noutput : list = [-3, -12, -12, -30]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(sort_des([-5, 1, 1, 4])),5)),3)",
    "io_inp": [
      -5,
      1,
      1,
      4
    ],
    "io_out": [
      -3,
      -12,
      -12,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(sort_des(input)),5)),3)"
  },
  {
    "input": "input : list = [5, 2, 4, -1]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(take([5, 2, 4, -1],2)))))",
    "io_inp": [
      5,
      2,
      4,
      -1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [-5, -1, 5, -5]\noutput : list = [-1, 3, 9, -1]",
    "output": "generated_output : list = add_n([-5, -1, 5, -5],4)",
    "io_inp": [
      -5,
      -1,
      5,
      -5
    ],
    "io_out": [
      -1,
      3,
      9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, 0, 1, -2, -4, -1]\noutput : list = [0, -3, -1, 2, 1, 5]",
    "output": "generated_output : list = add_n(reverse([4, 0, 1, -2, -4, -1]),1)",
    "io_inp": [
      4,
      0,
      1,
      -2,
      -4,
      -1
    ],
    "io_out": [
      0,
      -3,
      -1,
      2,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-5, 5, 3, -4]\noutput : list = [-9, 1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(take([-5, 5, 3, -4],2),16)),-2),-2)",
    "io_inp": [
      -5,
      5,
      3,
      -4
    ],
    "io_out": [
      -9,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(take(input,2),16)),-2),-2)"
  },
  {
    "input": "input : list = [-3, 5, 1, -2, -3, -4]\noutput : list = [0, -8, -14, -16, -16, -18]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(reverse([-3, 5, 1, -2, -3, -4])),-5)),2)",
    "io_inp": [
      -3,
      5,
      1,
      -2,
      -3,
      -4
    ],
    "io_out": [
      0,
      -8,
      -14,
      -16,
      -16,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(reverse(input)),-5)),2)"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [7, 6, 1]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sub_n([2, 1, -4],-2),-2),-1),2))",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sub_n(input,-2),-2),-1),2))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(sub_n(take(add_n(sort_des([-5, 0]),-1),4),-3),20)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(sort_des(input),-1),4),-3),20)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-33, -27]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(reverse([-3, -2]),2)),-5),3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -33,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(reverse(input),2)),-5),3)"
  },
  {
    "input": "input : list = [3, 0, -4, -3, -2, -5]\noutput : list = [0, -4, -3, -2, -5]",
    "output": "generated_output : list = drop([3, 0, -4, -3, -2, -5],1)",
    "io_inp": [
      3,
      0,
      -4,
      -3,
      -2,
      -5
    ],
    "io_out": [
      0,
      -4,
      -3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -3, -2, 2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = take(sort_asc(take([4, -3, -2, 2],2)),21)",
    "io_inp": [
      4,
      -3,
      -2,
      2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,2)),21)"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [-5, 0, -2]",
    "output": "generated_output : list = sub_n(take(sub_n([-4, 1, -1],4),18),-3)",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      -5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,4),18),-3)"
  },
  {
    "input": "input : list = [-4, 0, 1, -2]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(add_n([-4, 0, 1, -2],-3),3)),-2))",
    "io_inp": [
      -4,
      0,
      1,
      -2
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(add_n(input,-3),3)),-2))"
  },
  {
    "input": "input : list = [-4, 2, -4, 2, -4]\noutput : list = [-4, -4, 2, 2]",
    "output": "generated_output : list = sort_asc(drop([-4, 2, -4, 2, -4],1))",
    "io_inp": [
      -4,
      2,
      -4,
      2,
      -4
    ],
    "io_out": [
      -4,
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [1, -4, 1, 0, -2, -4]\noutput : list = [9, 9, 6, 0, -6, -6]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(sub_n([1, -4, 1, 0, -2, -4],-3)),-1),3),54)",
    "io_inp": [
      1,
      -4,
      1,
      0,
      -2,
      -4
    ],
    "io_out": [
      9,
      9,
      6,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(sub_n(input,-3)),-1),3),54)"
  },
  {
    "input": "input : list = [-5, 0, -2, 4, 2]\noutput : list = [-13, -1, 7, 15, 23]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(add_n([-5, 0, -2, 4, 2],2),4))),-1)",
    "io_inp": [
      -5,
      0,
      -2,
      4,
      2
    ],
    "io_out": [
      -13,
      -1,
      7,
      15,
      23
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(add_n(input,2),4))),-1)"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 4, 2],1)",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 0, 5, -5, 1]\noutput : list = [-7, -4, -2, -1, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(reverse([-2, 0, 5, -5, 1]))),2))",
    "io_inp": [
      -2,
      0,
      5,
      -5,
      1
    ],
    "io_out": [
      -7,
      -4,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(reverse(input))),2))"
  },
  {
    "input": "input : list = [4, -3, -3, 5, -1, -2]\noutput : list = [5, 4, -1, -2, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(reverse([4, -3, -3, 5, -1, -2])))))",
    "io_inp": [
      4,
      -3,
      -3,
      5,
      -1,
      -2
    ],
    "io_out": [
      5,
      4,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [-9, 31, 41]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(sort_asc([5, 3, -5]),-3),5),1),41)",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      -9,
      31,
      41
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(sort_asc(input),-3),5),1),41)"
  },
  {
    "input": "input : list = [-5, -5, -5, -3]\noutput : list = [71, 71, 71, 47]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n([-5, -5, -5, -3],3),3),-4),-1)",
    "io_inp": [
      -5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      71,
      71,
      71,
      47
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(input,3),3),-4),-1)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [10, 2, 4]",
    "output": "generated_output : list = sub_n(add_n(reverse([-1, -3, 5]),2),-3)",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      10,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),2),-3)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-18, 27]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(mul_n([2, -3],3),-1),-4),3))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -18,
      27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(mul_n(input,3),-1),-4),3))"
  },
  {
    "input": "input : list = [-1, 0, -1, 1, 1]\noutput : list = [-16]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take([-1, 0, -1, 1, 1],1),-3),4))",
    "io_inp": [
      -1,
      0,
      -1,
      1,
      1
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(input,1),-3),4))"
  },
  {
    "input": "input : list = [-2, -1, -2, -5, 3]\noutput : list = [-8, -16]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(take([-2, -1, -2, -5, 3],2)),-2),-4))",
    "io_inp": [
      -2,
      -1,
      -2,
      -5,
      3
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(take(input,2)),-2),-4))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-8, 10]",
    "output": "generated_output : list = mul_n([-4, 5],2)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, 0, -2, -1]\noutput : list = [-17, -21, -25, -29]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sub_n([-3, 0, -2, -1],4),4),1)))",
    "io_inp": [
      -3,
      0,
      -2,
      -1
    ],
    "io_out": [
      -17,
      -21,
      -25,
      -29
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sub_n(input,4),4),1)))"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(take([2, -5, -4],1),-1)",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des([-5, 0, -2]),-1))))",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [3, 2, 1, 1]\noutput : list = [9, 9, 10, 11]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(add_n([3, 2, 1, 1],3)))),5)",
    "io_inp": [
      3,
      2,
      1,
      1
    ],
    "io_out": [
      9,
      9,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(add_n(input,3)))),5)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [-15, -3, 9]",
    "output": "generated_output : list = take(mul_n([-5, -1, 3],3),9)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      -15,
      -3,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),9)"
  },
  {
    "input": "input : list = [0, -5, -1, 2, -5, -1]\noutput : list = [-5, -1, 2, -5, -1]",
    "output": "generated_output : list = drop([0, -5, -1, 2, -5, -1],1)",
    "io_inp": [
      0,
      -5,
      -1,
      2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      2,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 1, -2, -2]\noutput : list = [6, 4, 1, 1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(mul_n([3, 1, -2, -2],1),1),-3),-1))",
    "io_inp": [
      3,
      1,
      -2,
      -2
    ],
    "io_out": [
      6,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(mul_n(input,1),1),-3),-1))"
  },
  {
    "input": "input : list = [-3, -2, 4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(sort_des(drop([-3, -2, 4, 3],2)),13)",
    "io_inp": [
      -3,
      -2,
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,2)),13)"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [-11, -7, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(sort_asc([4, 0, 4]),4),3),-5),1)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      -11,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(sort_asc(input),4),3),-5),1)"
  },
  {
    "input": "input : list = [4, 1, 5, -3, 0, -4]\noutput : list = [6, 5, 2, 1, -2, -3]",
    "output": "generated_output : list = take(take(sort_des(take(sub_n([4, 1, 5, -3, 0, -4],-1),26)),46),47)",
    "io_inp": [
      4,
      1,
      5,
      -3,
      0,
      -4
    ],
    "io_out": [
      6,
      5,
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(sub_n(input,-1),26)),46),47)"
  },
  {
    "input": "input : list = [5, 5, 1, 2]\noutput : list = [5, 5, 2, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([5, 5, 1, 2])))",
    "io_inp": [
      5,
      5,
      1,
      2
    ],
    "io_out": [
      5,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, -3, -2, -3, 4]\noutput : list = [-4, -2, -1, -2, 5]",
    "output": "generated_output : list = sub_n([-5, -3, -2, -3, 4],-1)",
    "io_inp": [
      -5,
      -3,
      -2,
      -3,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, 1, -2]\noutput : list = [-2, 1, 4]",
    "output": "generated_output : list = sort_asc([4, 1, -2])",
    "io_inp": [
      4,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3, -2, 5, -4]\noutput : list = [-10, -3, -12]",
    "output": "generated_output : list = add_n(add_n(drop([1, 3, -2, 5, -4],2),-5),-3)",
    "io_inp": [
      1,
      3,
      -2,
      5,
      -4
    ],
    "io_out": [
      -10,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(input,2),-5),-3)"
  },
  {
    "input": "input : list = [-3, 4, 4, -3, 5]\noutput : list = [-30, -30, 5, 5, 10]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(add_n([-3, 4, 4, -3, 5],-3),5))))",
    "io_inp": [
      -3,
      4,
      4,
      -3,
      5
    ],
    "io_out": [
      -30,
      -30,
      5,
      5,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(add_n(input,-3),5))))"
  },
  {
    "input": "input : list = [2, 3, 1, 4, 5, 1]\noutput : list = [1, 3, -1, 5, 7, -1]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(reverse([2, 3, 1, 4, 5, 1])),19),2),3)",
    "io_inp": [
      2,
      3,
      1,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      3,
      -1,
      5,
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(reverse(input)),19),2),3)"
  },
  {
    "input": "input : list = [-4, -3, -1, -1, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -3, -1, -1, -4],1)",
    "io_inp": [
      -4,
      -3,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [16, -12]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(reverse([-3, 4]),4)),5))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      16,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(reverse(input),4)),5))"
  },
  {
    "input": "input : list = [5, -1, -2, 2, 1]\noutput : list = [-27, -12, -7, 3, 8]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(sort_asc([5, -1, -2, 2, 1])),35),-5),2)",
    "io_inp": [
      5,
      -1,
      -2,
      2,
      1
    ],
    "io_out": [
      -27,
      -12,
      -7,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(sort_asc(input)),35),-5),2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(reverse([2, -1])),-3)))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [-10, -13, -13]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(sub_n([-4, -1, -4],3),12)),5),1)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      -10,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(sub_n(input,3),12)),5),1)"
  },
  {
    "input": "input : list = [-1, 5, -5, 2, 1, 4]\noutput : list = [-20, -4, 4, 8, 16, 20]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(reverse([-1, 5, -5, 2, 1, 4]),4))))",
    "io_inp": [
      -1,
      5,
      -5,
      2,
      1,
      4
    ],
    "io_out": [
      -20,
      -4,
      4,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [5, 3, -3, 4, -4, 2]\noutput : list = [-3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(take([5, 3, -3, 4, -4, 2],4)))",
    "io_inp": [
      5,
      3,
      -3,
      4,
      -4,
      2
    ],
    "io_out": [
      -3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,4)))"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [-24]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take([-3, 0, 5],1),4),2))",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(input,1),4),2))"
  },
  {
    "input": "input : list = [-2, -4, -5, -5, -5]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(take([-2, -4, -5, -5, -5],2),1),1)))",
    "io_inp": [
      -2,
      -4,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(take(input,2),1),1)))"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [4, 6, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(sub_n([-2, 0, -2],2),-1),-2),26))",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(sub_n(input,2),-1),-2),26))"
  },
  {
    "input": "input : list = [-1, 1, -5, 5, -4, 4]\noutput : list = [-3, -1, -7, 3, -6, 2]",
    "output": "generated_output : list = sub_n([-1, 1, -5, 5, -4, 4],2)",
    "io_inp": [
      -1,
      1,
      -5,
      5,
      -4,
      4
    ],
    "io_out": [
      -3,
      -1,
      -7,
      3,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 1, 0, -3, 4]\noutput : list = [3, 0, -1, -4, -6]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(reverse([-5, 1, 0, -3, 4]),-2),-3)))",
    "io_inp": [
      -5,
      1,
      0,
      -3,
      4
    ],
    "io_out": [
      3,
      0,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(reverse(input),-2),-3)))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [16, -20]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(reverse([-5, 4]),4),19)))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(reverse(input),4),19)))"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(drop([-1, 3, 4],1),-4),4)),42)",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(drop(input,1),-4),4)),42)"
  },
  {
    "input": "input : list = [0, 3, 4, 4]\noutput : list = [0, -15, -20, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(reverse([0, 3, 4, 4]),15))),-5)",
    "io_inp": [
      0,
      3,
      4,
      4
    ],
    "io_out": [
      0,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(reverse(input),15))),-5)"
  },
  {
    "input": "input : list = [4, 3, 1, -4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop(take(reverse([4, 3, 1, -4, 3]),16),3)",
    "io_inp": [
      4,
      3,
      1,
      -4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(take(reverse(input),16),3)"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [-5, -8, -10]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n(sub_n([2, 0, 5],4),5),1)))",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      -5,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(sub_n(input,4),5),1)))"
  },
  {
    "input": "input : list = [4, 5, 5, 2, 3, 0]\noutput : list = [-120, -150, -150, -60, -90, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([4, 5, 5, 2, 3, 0],-2),3),5)",
    "io_inp": [
      4,
      5,
      5,
      2,
      3,
      0
    ],
    "io_out": [
      -120,
      -150,
      -150,
      -60,
      -90,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-2),3),5)"
  },
  {
    "input": "input : list = [1, -4, 0, 0, 5]\noutput : list = [0, 0, 5]",
    "output": "generated_output : list = drop(mul_n([1, -4, 0, 0, 5],1),2)",
    "io_inp": [
      1,
      -4,
      0,
      0,
      5
    ],
    "io_out": [
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,1),2)"
  },
  {
    "input": "input : list = [4, -5, 5, -3]\noutput : list = [0, 2, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(reverse([4, -5, 5, -3])),24),5))",
    "io_inp": [
      4,
      -5,
      5,
      -3
    ],
    "io_out": [
      0,
      2,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(reverse(input)),24),5))"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [3, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([3, -5, -5])))",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [-90, -15, 30]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(mul_n([-3, 2, 5],-1),3),5),-3),24)",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      -90,
      -15,
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(mul_n(input,-1),3),5),-3),24)"
  },
  {
    "input": "input : list = [-3, 5, 5, 3]\noutput : list = [7, 7, 5, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([-3, 5, 5, 3],-2)))",
    "io_inp": [
      -3,
      5,
      5,
      3
    ],
    "io_out": [
      7,
      7,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-18, -3]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sub_n([-5, 0],1),3),10)),18)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -18,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sub_n(input,1),3),10)),18)"
  },
  {
    "input": "input : list = [4, -1, 1, -5, 4]\noutput : list = [22, 6, -2, -14, -14]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(add_n(sub_n([4, -1, 1, -5, 4],-2),-3)),-4),2)",
    "io_inp": [
      4,
      -1,
      1,
      -5,
      4
    ],
    "io_out": [
      22,
      6,
      -2,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(add_n(sub_n(input,-2),-3)),-4),2)"
  },
  {
    "input": "input : list = [-1, 2, 5]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = reverse(add_n(add_n([-1, 2, 5],2),-4))",
    "io_inp": [
      -1,
      2,
      5
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,2),-4))"
  },
  {
    "input": "input : list = [-3, 0, -3, 2, -1]\noutput : list = [-5, 0, 10]",
    "output": "generated_output : list = drop(reverse(sort_des(take(mul_n([-3, 0, -3, 2, -1],5),5))),2)",
    "io_inp": [
      -3,
      0,
      -3,
      2,
      -1
    ],
    "io_out": [
      -5,
      0,
      10
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_des(take(mul_n(input,5),5))),2)"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [-3, -7, 25]",
    "output": "generated_output : list = sub_n(take(mul_n([2, 3, -5],-4),4),-5)",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      -3,
      -7,
      25
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,-4),4),-5)"
  },
  {
    "input": "input : list = [-4, -1, 0, 4, 5]\noutput : list = [8, 17, 20, 32, 35]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sub_n([-4, -1, 0, 4, 5],-5),5),-3),3),1)",
    "io_inp": [
      -4,
      -1,
      0,
      4,
      5
    ],
    "io_out": [
      8,
      17,
      20,
      32,
      35
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sub_n(input,-5),5),-3),3),1)"
  },
  {
    "input": "input : list = [-2, -3, -2, -3, -5]\noutput : list = [-3, -2, -3, -5]",
    "output": "generated_output : list = drop([-2, -3, -2, -3, -5],1)",
    "io_inp": [
      -2,
      -3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [1, 0]",
    "output": "generated_output : list = add_n(drop([2, -1, -2],1),2)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-2, -3, -1, -3]\noutput : list = [4, 3, 2, 2]",
    "output": "generated_output : list = add_n(sort_des([-2, -3, -1, -3]),5)",
    "io_inp": [
      -2,
      -3,
      -1,
      -3
    ],
    "io_out": [
      4,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-1, 4, -4, -3]\noutput : list = [-1, -6, -8, -9]",
    "output": "generated_output : list = add_n(take(sort_des(take(add_n([-1, 4, -4, -3],-4),10)),36),-1)",
    "io_inp": [
      -1,
      4,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(add_n(input,-4),10)),36),-1)"
  },
  {
    "input": "input : list = [5, 4, -3, -3, 3, -2]\noutput : list = [-3, -3, -2, 3, 4, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(take(reverse([5, 4, -3, -3, 3, -2]),23))),37)",
    "io_inp": [
      5,
      4,
      -3,
      -3,
      3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(reverse(input),23))),37)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [5, -25, -10]",
    "output": "generated_output : list = take(take(reverse(mul_n(reverse([1, -5, -2]),5)),16),42)",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      5,
      -25,
      -10
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(reverse(input),5)),16),42)"
  },
  {
    "input": "input : list = [-2, 5, -3, 4, 3]\noutput : list = [6, 5, 0, -1, -2]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_des([-2, 5, -3, 4, 3])),3)),-1)",
    "io_inp": [
      -2,
      5,
      -3,
      4,
      3
    ],
    "io_out": [
      6,
      5,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_des(input)),3)),-1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-64, -28]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(mul_n([2, 5],-3)),4)),-4)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -64,
      -28
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(mul_n(input,-3)),4)),-4)"
  },
  {
    "input": "input : list = [2, 0, -5, -3]\noutput : list = [-4, -2, 1, 3]",
    "output": "generated_output : list = reverse(take(take(sort_des(add_n([2, 0, -5, -3],1)),17),16))",
    "io_inp": [
      2,
      0,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(add_n(input,1)),17),16))"
  },
  {
    "input": "input : list = [5, 5, 2, -4, 0]\noutput : list = [5, 5, 2, 0, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(reverse([5, 5, 2, -4, 0]),22))))",
    "io_inp": [
      5,
      5,
      2,
      -4,
      0
    ],
    "io_out": [
      5,
      5,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(reverse(input),22))))"
  },
  {
    "input": "input : list = [2, -2, -5, 2, 5, 0]\noutput : list = [1, 4, 6, 8, 8, 11]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_asc([2, -2, -5, 2, 5, 0])),-3),-3))",
    "io_inp": [
      2,
      -2,
      -5,
      2,
      5,
      0
    ],
    "io_out": [
      1,
      4,
      6,
      8,
      8,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_asc(input)),-3),-3))"
  },
  {
    "input": "input : list = [4, -2, -5, 2, 4]\noutput : list = [7, 7, 5, 1, -2]",
    "output": "generated_output : list = sort_des(sub_n([4, -2, -5, 2, 4],-3))",
    "io_inp": [
      4,
      -2,
      -5,
      2,
      4
    ],
    "io_out": [
      7,
      7,
      5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [3, 0, 1, -2, -1]\noutput : list = [0, 1, 2, 3, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([3, 0, 1, -2, -1])),-2)",
    "io_inp": [
      3,
      0,
      1,
      -2,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),-2)"
  },
  {
    "input": "input : list = [4, -4, 3, -4, 3, 4]\noutput : list = [12, 12, -9, -9, -12, -12]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_asc([4, -4, 3, -4, 3, 4])),3)),-1)",
    "io_inp": [
      4,
      -4,
      3,
      -4,
      3,
      4
    ],
    "io_out": [
      12,
      12,
      -9,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_asc(input)),3)),-1)"
  },
  {
    "input": "input : list = [3, 0, -4, -3]\noutput : list = [6, 3, 0, -1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(sort_des([3, 0, -4, -3])),-2),4),-5)",
    "io_inp": [
      3,
      0,
      -4,
      -3
    ],
    "io_out": [
      6,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(sort_des(input)),-2),4),-5)"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [6, -3]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(drop([3, -5, 4],1),-2)),-4),39)",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(drop(input,1),-2)),-4),39)"
  },
  {
    "input": "input : list = [5, -3, -3, 5]\noutput : list = [25, -15, -15, 25]",
    "output": "generated_output : list = mul_n([5, -3, -3, 5],5)",
    "io_inp": [
      5,
      -3,
      -3,
      5
    ],
    "io_out": [
      25,
      -15,
      -15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, -5, 3, 3, 5]\noutput : list = [-56, -20, -52, -52, -60]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(sub_n([4, -5, 3, 3, 5],-5),-5),1),-4),31)",
    "io_inp": [
      4,
      -5,
      3,
      3,
      5
    ],
    "io_out": [
      -56,
      -20,
      -52,
      -52,
      -60
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(sub_n(input,-5),-5),1),-4),31)"
  },
  {
    "input": "input : list = [-3, -5, -1]\noutput : list = [-2, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des([-3, -5, -1]),1)",
    "io_inp": [
      -3,
      -5,
      -1
    ],
    "io_out": [
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [0, -5, -5, -5]\noutput : list = [-1, 19, 19, 19]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([0, -5, -5, -5],-4),1))",
    "io_inp": [
      0,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -1,
      19,
      19,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,-4),1))"
  },
  {
    "input": "input : list = [0, -5, 3, 2, -5, 5]\noutput : list = [-5, -5, 0, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([0, -5, 3, 2, -5, 5])",
    "io_inp": [
      0,
      -5,
      3,
      2,
      -5,
      5
    ],
    "io_out": [
      -5,
      -5,
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 4, -1, 3, -4]\noutput : list = [-6, -1, -6, -2, -9]",
    "output": "generated_output : list = add_n([-1, 4, -1, 3, -4],-5)",
    "io_inp": [
      -1,
      4,
      -1,
      3,
      -4
    ],
    "io_out": [
      -6,
      -1,
      -6,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -4, 1, 3, -1]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(add_n(take(drop(drop([-5, -4, 1, 3, -1],2),2),4),-4),1)",
    "io_inp": [
      -5,
      -4,
      1,
      3,
      -1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(drop(drop(input,2),2),4),-4),1)"
  },
  {
    "input": "input : list = [2, 1, 5, 4, -1, -3]\noutput : list = [-20, -17, -11, -8, -2, 4]",
    "output": "generated_output : list = add_n(mul_n(take(take(sort_des([2, 1, 5, 4, -1, -3]),13),37),-3),-5)",
    "io_inp": [
      2,
      1,
      5,
      4,
      -1,
      -3
    ],
    "io_out": [
      -20,
      -17,
      -11,
      -8,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(sort_des(input),13),37),-3),-5)"
  },
  {
    "input": "input : list = [3, -2, -3, -1]\noutput : list = [-1, -3, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, -3, -1])",
    "io_inp": [
      3,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, 2]\noutput : list = [5, -2, 4]",
    "output": "generated_output : list = sub_n([3, -4, 2],-2)",
    "io_inp": [
      3,
      -4,
      2
    ],
    "io_out": [
      5,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -1, -2]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, -1, -2]))",
    "io_inp": [
      -5,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, 5, 5, -1, 0, 0]\noutput : list = [10, 18, 18, 6, 8, 8]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(sub_n([1, 5, 5, -1, 0, 0],-4)),15),2))",
    "io_inp": [
      1,
      5,
      5,
      -1,
      0,
      0
    ],
    "io_out": [
      10,
      18,
      18,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(sub_n(input,-4)),15),2))"
  },
  {
    "input": "input : list = [3, 1, 4, 4, 0]\noutput : list = [16, 16, 12, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n([3, 1, 4, 4, 0],4))",
    "io_inp": [
      3,
      1,
      4,
      4,
      0
    ],
    "io_out": [
      16,
      16,
      12,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [2, 2, 0, -3, 0, 4]\noutput : list = [9, 9, 7, 4, 7, 11]",
    "output": "generated_output : list = sub_n(sub_n([2, 2, 0, -3, 0, 4],-5),-2)",
    "io_inp": [
      2,
      2,
      0,
      -3,
      0,
      4
    ],
    "io_out": [
      9,
      9,
      7,
      4,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),-2)"
  },
  {
    "input": "input : list = [1, 5, -4]\noutput : list = [-2, -6, -11]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(sort_des([1, 5, -4]),-2)),5))",
    "io_inp": [
      1,
      5,
      -4
    ],
    "io_out": [
      -2,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(sort_des(input),-2)),5))"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [-7, 2, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_asc([-4, 5, 5])),5),-5),-3)",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      -7,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_asc(input)),5),-5),-3)"
  },
  {
    "input": "input : list = [0, 4, -4, -5, -4, -4]\noutput : list = [-4, -4, -5, -4, 4, 0]",
    "output": "generated_output : list = reverse([0, 4, -4, -5, -4, -4])",
    "io_inp": [
      0,
      4,
      -4,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -4,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [9, 6, 6]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(add_n([1, -2, -2],5),4),-3),-2),37)",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      9,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(add_n(input,5),4),-3),-2),37)"
  },
  {
    "input": "input : list = [1, 4, 5, 0, 2, 4]\noutput : list = [2, 5, 6, 1, 3, 5]",
    "output": "generated_output : list = sub_n([1, 4, 5, 0, 2, 4],-1)",
    "io_inp": [
      1,
      4,
      5,
      0,
      2,
      4
    ],
    "io_out": [
      2,
      5,
      6,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 2, -1, 4, 3, -5]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take(sort_des(take([-4, 2, -1, 4, 3, -5],1)),18))",
    "io_inp": [
      -4,
      2,
      -1,
      4,
      3,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(input,1)),18))"
  },
  {
    "input": "input : list = [3, 2, -1, -5, -4]\noutput : list = [0, 9, 21, 18]",
    "output": "generated_output : list = mul_n(drop(sub_n([3, 2, -1, -5, -4],2),1),-3)",
    "io_inp": [
      3,
      2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      0,
      9,
      21,
      18
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(input,2),1),-3)"
  },
  {
    "input": "input : list = [-1, -3, -4, -2]\noutput : list = [4, 8, 12, 16]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(reverse([-1, -3, -4, -2])))),-4)",
    "io_inp": [
      -1,
      -3,
      -4,
      -2
    ],
    "io_out": [
      4,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [-5, 3, -1, 2, -2]\noutput : list = [-10, -8, -2, 0, 6]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(sort_asc([-5, 3, -1, 2, -2]),-2),-4)),7)",
    "io_inp": [
      -5,
      3,
      -1,
      2,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(sort_asc(input),-2),-4)),7)"
  },
  {
    "input": "input : list = [2, 5, 0, 5, 1]\noutput : list = [4, 7, 2, 7, 3]",
    "output": "generated_output : list = add_n([2, 5, 0, 5, 1],2)",
    "io_inp": [
      2,
      5,
      0,
      5,
      1
    ],
    "io_out": [
      4,
      7,
      2,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n([-1, -1],-5),12)))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(input,-5),12)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-1, 99]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(mul_n([-5, 0],4),-5)),-3),2)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -1,
      99
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(mul_n(input,4),-5)),-3),2)"
  },
  {
    "input": "input : list = [5, -4, 0, 1, 3, 0]\noutput : list = [19, -17, -1, 3, 11, -1]",
    "output": "generated_output : list = add_n(mul_n([5, -4, 0, 1, 3, 0],4),-1)",
    "io_inp": [
      5,
      -4,
      0,
      1,
      3,
      0
    ],
    "io_out": [
      19,
      -17,
      -1,
      3,
      11,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),-1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(sort_asc([-2, 2])),20)))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(sort_asc(input)),20)))"
  },
  {
    "input": "input : list = [-5, -1, 3, 2]\noutput : list = [-6, -10]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take([-5, -1, 3, 2],2),5)))",
    "io_inp": [
      -5,
      -1,
      3,
      2
    ],
    "io_out": [
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(input,2),5)))"
  },
  {
    "input": "input : list = [-2, 1, -2, -2, 5, -2]\noutput : list = [77, 17, -28, -28, -28]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(mul_n([-2, 1, -2, -2, 5, -2],-3)),-5),-2),5)",
    "io_inp": [
      -2,
      1,
      -2,
      -2,
      5,
      -2
    ],
    "io_out": [
      77,
      17,
      -28,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(mul_n(input,-3)),-5),-2),5)"
  },
  {
    "input": "input : list = [1, 5, -3, -4, -1]\noutput : list = [105, 25, -15, -55, -75]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(sort_des([1, 5, -3, -4, -1]),5),4),-5),38)",
    "io_inp": [
      1,
      5,
      -3,
      -4,
      -1
    ],
    "io_out": [
      105,
      25,
      -15,
      -55,
      -75
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(sort_des(input),5),4),-5),38)"
  },
  {
    "input": "input : list = [2, 1, -3, -2, -2]\noutput : list = [0, 1, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(drop([2, 1, -3, -2, -2],1),20))),-3)",
    "io_inp": [
      2,
      1,
      -3,
      -2,
      -2
    ],
    "io_out": [
      0,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(drop(input,1),20))),-3)"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [15, 3, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([0, 1, 5])),3)",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      15,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),3)"
  },
  {
    "input": "input : list = [-3, -1, 4, -3, 4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = add_n(take([-3, -1, 4, -3, 4, -2],2),-1)",
    "io_inp": [
      -3,
      -1,
      4,
      -3,
      4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [0, 3, 4, 0, -1]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse([0, 3, 4, 0, -1]))),1)",
    "io_inp": [
      0,
      3,
      4,
      0,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(input))),1)"
  },
  {
    "input": "input : list = [-4, 4, 1, 0, -3, -4]\noutput : list = [-10, -2, -5, -6, -9, -10]",
    "output": "generated_output : list = add_n(add_n(sub_n([-4, 4, 1, 0, -3, -4],3),-5),2)",
    "io_inp": [
      -4,
      4,
      1,
      0,
      -3,
      -4
    ],
    "io_out": [
      -10,
      -2,
      -5,
      -6,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,3),-5),2)"
  },
  {
    "input": "input : list = [-5, 2, -4, 4, -1]\noutput : list = [2, -5]",
    "output": "generated_output : list = reverse(take([-5, 2, -4, 4, -1],2))",
    "io_inp": [
      -5,
      2,
      -4,
      4,
      -1
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [0, 2, 0, 2]\noutput : list = [2, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([0, 2, 0, 2]),2))",
    "io_inp": [
      0,
      2,
      0,
      2
    ],
    "io_out": [
      2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [4, 5, -3, 1, 3, 4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(take([4, 5, -3, 1, 3, 4],1))",
    "io_inp": [
      4,
      5,
      -3,
      1,
      3,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [4, -1, -2, 2, 2, -1]\noutput : list = [4, -1, -2]",
    "output": "generated_output : list = take([4, -1, -2, 2, 2, -1],3)",
    "io_inp": [
      4,
      -1,
      -2,
      2,
      2,
      -1
    ],
    "io_out": [
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, 2, -2, -5, 2, -3]\noutput : list = [-3, 2, -5, -2, 2, 0]",
    "output": "generated_output : list = reverse([0, 2, -2, -5, 2, -3])",
    "io_inp": [
      0,
      2,
      -2,
      -5,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      -5,
      -2,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2, 2, 2]\noutput : list = [-2, 1, 1, 1]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(sort_des([-1, 2, 2, 2]),3),6)),2)",
    "io_inp": [
      -1,
      2,
      2,
      2
    ],
    "io_out": [
      -2,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(sort_des(input),3),6)),2)"
  },
  {
    "input": "input : list = [4, 3, -3, -2]\noutput : list = [8, 7, 1, 2]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse(reverse([4, 3, -3, -2])),4),-1),1)",
    "io_inp": [
      4,
      3,
      -3,
      -2
    ],
    "io_out": [
      8,
      7,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(reverse(input)),4),-1),1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc([0, 3]),-2),11))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(input),-2),11))"
  },
  {
    "input": "input : list = [-2, -3, -1, -2, -1]\noutput : list = [-2, -3, -1]",
    "output": "generated_output : list = take(take(take([-2, -3, -1, -2, -1],3),18),10)",
    "io_inp": [
      -2,
      -3,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(input,3),18),10)"
  },
  {
    "input": "input : list = [-3, 2, 3, -5, -5]\noutput : list = [-20, -16, 4, 12, 12]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(reverse([-3, 2, 3, -5, -5])),24),-2),-4)",
    "io_inp": [
      -3,
      2,
      3,
      -5,
      -5
    ],
    "io_out": [
      -20,
      -16,
      4,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(reverse(input)),24),-2),-4)"
  },
  {
    "input": "input : list = [0, -5, 3, -2]\noutput : list = [-1, 4, -4, 1]",
    "output": "generated_output : list = sub_n(mul_n([0, -5, 3, -2],-1),1)",
    "io_inp": [
      0,
      -5,
      3,
      -2
    ],
    "io_out": [
      -1,
      4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),1)"
  },
  {
    "input": "input : list = [4, -4, -2, -2]\noutput : list = [7, -9, -5, -5]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(sub_n([4, -4, -2, -2],5),2),5),-1),-5)",
    "io_inp": [
      4,
      -4,
      -2,
      -2
    ],
    "io_out": [
      7,
      -9,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(sub_n(input,5),2),5),-1),-5)"
  },
  {
    "input": "input : list = [-5, -5, 1, 3]\noutput : list = [-23, -23, 7, 17]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sort_des([-5, -5, 1, 3])),6),5),-2)",
    "io_inp": [
      -5,
      -5,
      1,
      3
    ],
    "io_out": [
      -23,
      -23,
      7,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sort_des(input)),6),5),-2)"
  },
  {
    "input": "input : list = [-4, -1, -5, 0, 3, 1]\noutput : list = [23, 19, 7, 3, -1, -9]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(sort_asc([-4, -1, -5, 0, 3, 1]))),-4),-3)",
    "io_inp": [
      -4,
      -1,
      -5,
      0,
      3,
      1
    ],
    "io_out": [
      23,
      19,
      7,
      3,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(sort_asc(input))),-4),-3)"
  },
  {
    "input": "input : list = [-2, -1, -5, -3]\noutput : list = [2, 1, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n([-2, -1, -5, -3],-3))",
    "io_inp": [
      -2,
      -1,
      -5,
      -3
    ],
    "io_out": [
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [4, 2, 3, -1, -2, -1]\noutput : list = [-2, -1, -1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([4, 2, 3, -1, -2, -1]))",
    "io_inp": [
      4,
      2,
      3,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [-18, 10, 10]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(mul_n([5, -2, -2],-4)),-2),32))",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      -18,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(mul_n(input,-4)),-2),32))"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [10, 10, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([5, 5, -5]),-4),-1)",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      10,
      10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-4),-1)"
  },
  {
    "input": "input : list = [0, -1, 1, -2, 5]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(reverse([0, -1, 1, -2, 5]),2),1)))",
    "io_inp": [
      0,
      -1,
      1,
      -2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(reverse(input),2),1)))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [4, 2]",
    "output": "generated_output : list = mul_n(sub_n(add_n([3, 5],-3),4),-1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,-3),4),-1)"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [-9, -3, -4]",
    "output": "generated_output : list = add_n([-5, 1, 0],-4)",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      -9,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, 3, -2, -1, 1]\noutput : list = [-2, -1, 1, 1, 3]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sort_des([1, 3, -2, -1, 1])),17),26))",
    "io_inp": [
      1,
      3,
      -2,
      -1,
      1
    ],
    "io_out": [
      -2,
      -1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sort_des(input)),17),26))"
  },
  {
    "input": "input : list = [-3, -2, -5, 2]\noutput : list = [0, 2, 3, 7]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(sort_asc([-3, -2, -5, 2]),5)),6))",
    "io_inp": [
      -3,
      -2,
      -5,
      2
    ],
    "io_out": [
      0,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(sort_asc(input),5)),6))"
  },
  {
    "input": "input : list = [3, -4, 4, -5]\noutput : list = [30, 25, -10, -15]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_des([3, -4, 4, -5]),2),-5),5))",
    "io_inp": [
      3,
      -4,
      4,
      -5
    ],
    "io_out": [
      30,
      25,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_des(input),2),-5),5))"
  },
  {
    "input": "input : list = [3, -4, -1, -1, -1, 2]\noutput : list = [2, 1, -2, -2, -2, -5]",
    "output": "generated_output : list = take(add_n(reverse(add_n(sort_asc([3, -4, -1, -1, -1, 2]),-4)),3),34)",
    "io_inp": [
      3,
      -4,
      -1,
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      1,
      -2,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(sort_asc(input),-4)),3),34)"
  },
  {
    "input": "input : list = [-2, 1, -1, 4]\noutput : list = [-12, -3, 3, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([-2, 1, -1, 4]),-3))",
    "io_inp": [
      -2,
      1,
      -1,
      4
    ],
    "io_out": [
      -12,
      -3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [-5, 2, -3, 4]\noutput : list = [-15, 6, -9, 12]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse([-5, 2, -3, 4]),-3),1),1),-3)",
    "io_inp": [
      -5,
      2,
      -3,
      4
    ],
    "io_out": [
      -15,
      6,
      -9,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse(input),-3),1),1),-3)"
  },
  {
    "input": "input : list = [-3, -2, 3, 5, -1, 2]\noutput : list = [-11, -7, -3, 9, 13, 21]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sub_n([-3, -2, 3, 5, -1, 2],-2)),4),-3),4)",
    "io_inp": [
      -3,
      -2,
      3,
      5,
      -1,
      2
    ],
    "io_out": [
      -11,
      -7,
      -3,
      9,
      13,
      21
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sub_n(input,-2)),4),-3),4)"
  },
  {
    "input": "input : list = [4, 1, 0, 5, 5, 3]\noutput : list = [7, 7, 6, 5, 3, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(reverse([4, 1, 0, 5, 5, 3]))),2))",
    "io_inp": [
      4,
      1,
      0,
      5,
      5,
      3
    ],
    "io_out": [
      7,
      7,
      6,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(reverse(input))),2))"
  },
  {
    "input": "input : list = [3, -3, -4, -4, -2, 2]\noutput : list = [20, 20, 15, 10, -10, -15]",
    "output": "generated_output : list = sort_des(mul_n([3, -3, -4, -4, -2, 2],-5))",
    "io_inp": [
      3,
      -3,
      -4,
      -4,
      -2,
      2
    ],
    "io_out": [
      20,
      20,
      15,
      10,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [5, 3, 3, 3, -3]\noutput : list = [-1, -3, -3, -3, -9]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(sort_asc([5, 3, 3, 3, -3]),5)),1),28)",
    "io_inp": [
      5,
      3,
      3,
      3,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(sort_asc(input),5)),1),28)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [4, -14]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n([4, -5],1),2),2)),-2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      4,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n(input,1),2),2)),-2)"
  },
  {
    "input": "input : list = [-5, -4, 4, 1, 3, -1]\noutput : list = [-15, -11, -3, 5, 17, 21]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(mul_n([-5, -4, 4, 1, 3, -1],-1),4)),1))",
    "io_inp": [
      -5,
      -4,
      4,
      1,
      3,
      -1
    ],
    "io_out": [
      -15,
      -11,
      -3,
      5,
      17,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(mul_n(input,-1),4)),1))"
  },
  {
    "input": "input : list = [4, 3, 5, 5, -2]\noutput : list = [-7, 0, 0, -2]",
    "output": "generated_output : list = reverse(add_n(take(drop(add_n([4, 3, 5, 5, -2],-1),1),10),-4))",
    "io_inp": [
      4,
      3,
      5,
      5,
      -2
    ],
    "io_out": [
      -7,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(drop(add_n(input,-1),1),10),-4))"
  },
  {
    "input": "input : list = [1, -4, -3, 5, -3]\noutput : list = [-5, -4, -4, 0, 4]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(sort_asc([1, -4, -3, 5, -3]),9),-2),3),2)",
    "io_inp": [
      1,
      -4,
      -3,
      5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(sort_asc(input),9),-2),3),2)"
  },
  {
    "input": "input : list = [-4, 3, 4]\noutput : list = [-4, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-4, 3, 4],5),-5))",
    "io_inp": [
      -4,
      3,
      4
    ],
    "io_out": [
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,5),-5))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3]",
    "output": "generated_output : list = drop(sub_n(mul_n(reverse(sort_asc([3, -2])),-1),-1),1)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(sub_n(mul_n(reverse(sort_asc(input)),-1),-1),1)"
  },
  {
    "input": "input : list = [0, 5, 5, -4]\noutput : list = [-1, -1, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(drop([0, 5, 5, -4],1))),4),-1)",
    "io_inp": [
      0,
      5,
      5,
      -4
    ],
    "io_out": [
      -1,
      -1,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(drop(input,1))),4),-1)"
  },
  {
    "input": "input : list = [-3, 4, -4, 2, -4]\noutput : list = [-2, -2, -1, 4, 6]",
    "output": "generated_output : list = sort_asc(sub_n([-3, 4, -4, 2, -4],-2))",
    "io_inp": [
      -3,
      4,
      -4,
      2,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [4, 3, 2, 5]\noutput : list = [-5, -6, -7, -4]",
    "output": "generated_output : list = sub_n(add_n([4, 3, 2, 5],-4),5)",
    "io_inp": [
      4,
      3,
      2,
      5
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),5)"
  },
  {
    "input": "input : list = [-5, 2, -5, 4]\noutput : list = [-14, -10, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sub_n([-5, 2, -5, 4],-2)),-2),2))",
    "io_inp": [
      -5,
      2,
      -5,
      4
    ],
    "io_out": [
      -14,
      -10,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sub_n(input,-2)),-2),2))"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(add_n([0, -1, 3],3))),-1),-5)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(add_n(input,3))),-1),-5)"
  },
  {
    "input": "input : list = [5, 5, 3, 0, 1, -3]\noutput : list = [-2, 2, 1, 4, 6]",
    "output": "generated_output : list = take(reverse(add_n([5, 5, 3, 0, 1, -3],1)),5)",
    "io_inp": [
      5,
      5,
      3,
      0,
      1,
      -3
    ],
    "io_out": [
      -2,
      2,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,1)),5)"
  },
  {
    "input": "input : list = [-2, -2, 0, 5, 5, -5]\noutput : list = [-20, -8, -8, 0, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(mul_n([-2, -2, 0, 5, 5, -5],1)),36),4))",
    "io_inp": [
      -2,
      -2,
      0,
      5,
      5,
      -5
    ],
    "io_out": [
      -20,
      -8,
      -8,
      0,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(mul_n(input,1)),36),4))"
  },
  {
    "input": "input : list = [-3, -5, -2, -4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(take([-3, -5, -2, -4],2),19)),-5),-3)",
    "io_inp": [
      -3,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(take(input,2),19)),-5),-3)"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take(add_n(take([3, 1, 0],1),-5),11)",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,1),-5),11)"
  },
  {
    "input": "input : list = [-2, 2, -5, 0, -1, -2]\noutput : list = [-5, 0, -1, -2]",
    "output": "generated_output : list = take(drop(take(reverse(reverse([-2, 2, -5, 0, -1, -2])),21),2),21)",
    "io_inp": [
      -2,
      2,
      -5,
      0,
      -1,
      -2
    ],
    "io_out": [
      -5,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(take(reverse(reverse(input)),21),2),21)"
  },
  {
    "input": "input : list = [3, -1, 4, 5, 0, 0]\noutput : list = [11, 10, 9, 6, 6, 5]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(sort_asc([3, -1, 4, 5, 0, 0]),-1),28)),-5)",
    "io_inp": [
      3,
      -1,
      4,
      5,
      0,
      0
    ],
    "io_out": [
      11,
      10,
      9,
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(sort_asc(input),-1),28)),-5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-15, -20]",
    "output": "generated_output : list = mul_n(sub_n([-2, -1],-5),-5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),-5)"
  },
  {
    "input": "input : list = [-3, -1, -2, 1, -1, 5]\noutput : list = [-6, -4, -5, -2, -4, 2]",
    "output": "generated_output : list = sub_n([-3, -1, -2, 1, -1, 5],3)",
    "io_inp": [
      -3,
      -1,
      -2,
      1,
      -1,
      5
    ],
    "io_out": [
      -6,
      -4,
      -5,
      -2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, 5, -4, 2, 5]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(take([5, 5, -4, 2, 5],1))",
    "io_inp": [
      5,
      5,
      -4,
      2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sub_n(add_n(drop([-5, -4, 3],1),2),3)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(input,1),2),3)"
  },
  {
    "input": "input : list = [-1, 3, 5, -1, 4]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(drop(reverse(mul_n(sort_asc([-1, 3, 5, -1, 4]),-2)),3))",
    "io_inp": [
      -1,
      3,
      5,
      -1,
      4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(drop(reverse(mul_n(sort_asc(input),-2)),3))"
  },
  {
    "input": "input : list = [-1, 0, -4, -3, 2, -2]\noutput : list = [-56, -41, -26, -11, 4, 34]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(sort_des([-1, 0, -4, -3, 2, -2]),-5),-3),-4))",
    "io_inp": [
      -1,
      0,
      -4,
      -3,
      2,
      -2
    ],
    "io_out": [
      -56,
      -41,
      -26,
      -11,
      4,
      34
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(sort_des(input),-5),-3),-4))"
  },
  {
    "input": "input : list = [0, 4, 0]\noutput : list = [0, 8]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(drop([0, 4, 0],1)),-1),-2),21)",
    "io_inp": [
      0,
      4,
      0
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(drop(input,1)),-1),-2),21)"
  },
  {
    "input": "input : list = [-3, 1, -5, 3, -4]\noutput : list = [10, 6, -2, -6]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(add_n([-3, 1, -5, 3, -4],1),2),2),4))",
    "io_inp": [
      -3,
      1,
      -5,
      3,
      -4
    ],
    "io_out": [
      10,
      6,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(add_n(input,1),2),2),4))"
  },
  {
    "input": "input : list = [-4, 1, 2, 4]\noutput : list = [12, 6, 3, -12]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc([-4, 1, 2, 4]),3),24))",
    "io_inp": [
      -4,
      1,
      2,
      4
    ],
    "io_out": [
      12,
      6,
      3,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(input),3),24))"
  },
  {
    "input": "input : list = [0, -5, -3, 1, 1, 2]\noutput : list = [-1, -3, 2]",
    "output": "generated_output : list = sub_n(reverse(add_n(take([0, -5, -3, 1, 1, 2],3),-3)),-5)",
    "io_inp": [
      0,
      -5,
      -3,
      1,
      1,
      2
    ],
    "io_out": [
      -1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(input,3),-3)),-5)"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [-16, 24, 16]",
    "output": "generated_output : list = take(mul_n(sub_n(take(mul_n([-5, 5, 3],4),5),-4),1),15)",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      -16,
      24,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(mul_n(input,4),5),-4),1),15)"
  },
  {
    "input": "input : list = [4, 1, 3]\noutput : list = [3, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 3])",
    "io_inp": [
      4,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, -3, 3]\noutput : list = [1, 1, -17, -23]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sub_n([-3, 5, -3, 3],1)),-4),-3),1)",
    "io_inp": [
      -3,
      5,
      -3,
      3
    ],
    "io_out": [
      1,
      1,
      -17,
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sub_n(input,1)),-4),-3),1)"
  },
  {
    "input": "input : list = [1, -1, -4, -4, 2, 5]\noutput : list = [-3, 3, 12, 12, -6, -15]",
    "output": "generated_output : list = mul_n([1, -1, -4, -4, 2, 5],-3)",
    "io_inp": [
      1,
      -1,
      -4,
      -4,
      2,
      5
    ],
    "io_out": [
      -3,
      3,
      12,
      12,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 2, -1, -2, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(drop(drop(reverse([-5, 2, -1, -2, -5]),2),2),21),42)",
    "io_inp": [
      -5,
      2,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(drop(drop(reverse(input),2),2),21),42)"
  },
  {
    "input": "input : list = [-4, -1, 0, 5, 1]\noutput : list = [6, 2, 1, 0, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des([-4, -1, 0, 5, 1]),-4),3),15)",
    "io_inp": [
      -4,
      -1,
      0,
      5,
      1
    ],
    "io_out": [
      6,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(input),-4),3),15)"
  },
  {
    "input": "input : list = [-3, -2, 2, -3]\noutput : list = [-3, -3, -2, 2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([-3, -2, 2, -3]),1))",
    "io_inp": [
      -3,
      -2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-5, 4, -3, -5, 0, -1]\noutput : list = [-9, -9, -7, -5, -4, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_des(add_n([-5, 4, -3, -5, 0, -1],-1)),4),1))",
    "io_inp": [
      -5,
      4,
      -3,
      -5,
      0,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_des(add_n(input,-1)),4),1))"
  },
  {
    "input": "input : list = [0, -2, 2, -1, -2]\noutput : list = [-2, -1, 2, -2, 0]",
    "output": "generated_output : list = reverse([0, -2, 2, -1, -2])",
    "io_inp": [
      0,
      -2,
      2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2, -4, 1, 0]\noutput : list = [20, 16]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(sort_asc([-5, 2, -4, 1, 0])),2),-4))",
    "io_inp": [
      -5,
      2,
      -4,
      1,
      0
    ],
    "io_out": [
      20,
      16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(sort_asc(input)),2),-4))"
  },
  {
    "input": "input : list = [1, 1, 1]\noutput : list = [-6, -6, -6]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(sort_des([1, 1, 1])),3),-2),-3)",
    "io_inp": [
      1,
      1,
      1
    ],
    "io_out": [
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(sort_des(input)),3),-2),-3)"
  },
  {
    "input": "input : list = [5, 2, -5]\noutput : list = [1, -2, -9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([5, 2, -5],-2),4),2)",
    "io_inp": [
      5,
      2,
      -5
    ],
    "io_out": [
      1,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,-2),4),2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n([1, 2],-1)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [3, 2, -3]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(sort_asc([-2, 4, 3]))),-1))",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(sort_asc(input))),-1))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-12, 13]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse([-2, 3]),5),-2))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -12,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(input),5),-2))"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [15, -15, -10]",
    "output": "generated_output : list = mul_n(add_n(sub_n([2, -4, -3],-4),-3),5)",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      15,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,-4),-3),5)"
  },
  {
    "input": "input : list = [5, 3, -1, -5]\noutput : list = [5, 3, -1, -5]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(sub_n([5, 3, -1, -5],-1),1)),37),-1)",
    "io_inp": [
      5,
      3,
      -1,
      -5
    ],
    "io_out": [
      5,
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(sub_n(input,-1),1)),37),-1)"
  },
  {
    "input": "input : list = [-3, 2, -5, 5]\noutput : list = [-3, 2]",
    "output": "generated_output : list = take(sort_asc(take([-3, 2, -5, 5],2)),2)",
    "io_inp": [
      -3,
      2,
      -5,
      5
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,2)),2)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(add_n([-1, 3],1))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [0, 1, 1, 1, -2]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop(sort_des(sub_n(add_n(sort_asc([0, 1, 1, 1, -2]),2),1)),3)",
    "io_inp": [
      0,
      1,
      1,
      1,
      -2
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(add_n(sort_asc(input),2),1)),3)"
  },
  {
    "input": "input : list = [0, -1, 5, 1, 4, 1]\noutput : list = [-7, -16, -7, -19, -1, -4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(add_n([0, -1, 5, 1, 4, 1],2),13),-3),-2))",
    "io_inp": [
      0,
      -1,
      5,
      1,
      4,
      1
    ],
    "io_out": [
      -7,
      -16,
      -7,
      -19,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(add_n(input,2),13),-3),-2))"
  },
  {
    "input": "input : list = [2, -3, 5, 2, -5, -5]\noutput : list = [6, 12, 12, 22]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(take([2, -3, 5, 2, -5, -5],4),4),-4)),-2)",
    "io_inp": [
      2,
      -3,
      5,
      2,
      -5,
      -5
    ],
    "io_out": [
      6,
      12,
      12,
      22
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(take(input,4),4),-4)),-2)"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [-8, -2, 0]",
    "output": "generated_output : list = sort_asc(sub_n([3, -5, 1],3))",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-1, -3, -2, -2, 3]\noutput : list = [-18, -6, -12, -12, -42]",
    "output": "generated_output : list = mul_n(take(take(mul_n(add_n([-1, -3, -2, -2, 3],4),2),33),30),-3)",
    "io_inp": [
      -1,
      -3,
      -2,
      -2,
      3
    ],
    "io_out": [
      -18,
      -6,
      -12,
      -12,
      -42
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(add_n(input,4),2),33),30),-3)"
  },
  {
    "input": "input : list = [-1, -5, -2]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc([-1, -5, -2]))))",
    "io_inp": [
      -1,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [1, -5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sort_asc([-1, 5]),4),2)),-2)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sort_asc(input),4),2)),-2)"
  },
  {
    "input": "input : list = [5, -2, -4, 4, 4, 0]\noutput : list = [7, 6, 6, 2, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(add_n([5, -2, -4, 4, 4, 0],-2)),4)))",
    "io_inp": [
      5,
      -2,
      -4,
      4,
      4,
      0
    ],
    "io_out": [
      7,
      6,
      6,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(add_n(input,-2)),4)))"
  },
  {
    "input": "input : list = [0, 1, -4, 3]\noutput : list = [-3, -8, -1]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(drop([0, 1, -4, 3],1),-1),-2),1),45)",
    "io_inp": [
      0,
      1,
      -4,
      3
    ],
    "io_out": [
      -3,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(drop(input,1),-1),-2),1),45)"
  },
  {
    "input": "input : list = [0, 2, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des(drop([0, 2, -3, -3],2))",
    "io_inp": [
      0,
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [3, -1, -5, 3, -4, -1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -1, -5, 3, -4, -1],1)",
    "io_inp": [
      3,
      -1,
      -5,
      3,
      -4,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([2, 5])),3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [-3, 5, -5, 2, -4]\noutput : list = [20, 16, 12, -8, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(mul_n([-3, 5, -5, 2, -4],2))),-2))",
    "io_inp": [
      -3,
      5,
      -5,
      2,
      -4
    ],
    "io_out": [
      20,
      16,
      12,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(mul_n(input,2))),-2))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_asc([0, 3])),-2),-3),-1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_asc(input)),-2),-3),-1)"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [-2, 2, 6]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(sub_n([4, 0, -4],-4),-2),4)),1)",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(sub_n(input,-4),-2),4)),1)"
  },
  {
    "input": "input : list = [-3, 1, 5, 4, 5, 3]\noutput : list = [-30, 10, 30, 40, 50, 50]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(mul_n([-3, 1, 5, 4, 5, 3],-5),-2))))",
    "io_inp": [
      -3,
      1,
      5,
      4,
      5,
      3
    ],
    "io_out": [
      -30,
      10,
      30,
      40,
      50,
      50
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(mul_n(input,-5),-2))))"
  },
  {
    "input": "input : list = [-2, -4, 3, 1, -1, 2]\noutput : list = [-15, -13, -12, -10, -9, -8]",
    "output": "generated_output : list = add_n(sort_asc(take(add_n(add_n([-2, -4, 3, 1, -1, 2],-5),-5),18)),-1)",
    "io_inp": [
      -2,
      -4,
      3,
      1,
      -1,
      2
    ],
    "io_out": [
      -15,
      -13,
      -12,
      -10,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(add_n(add_n(input,-5),-5),18)),-1)"
  },
  {
    "input": "input : list = [-1, -1, 0, -4, 5]\noutput : list = [-7, 2, 2, 5, 20]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(mul_n([-1, -1, 0, -4, 5],3))),-5))",
    "io_inp": [
      -1,
      -1,
      0,
      -4,
      5
    ],
    "io_out": [
      -7,
      2,
      2,
      5,
      20
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(mul_n(input,3))),-5))"
  },
  {
    "input": "input : list = [4, -5, 0, -5]\noutput : list = [6, 2, -3, -3]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(reverse([4, -5, 0, -5]))),5),-2)",
    "io_inp": [
      4,
      -5,
      0,
      -5
    ],
    "io_out": [
      6,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(reverse(input))),5),-2)"
  },
  {
    "input": "input : list = [0, 2, 5]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc([0, 2, 5]),1)),3)",
    "io_inp": [
      0,
      2,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(input),1)),3)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-1, 11]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_des(sort_asc([1, -5])),3),-2),-5)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -1,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_des(sort_asc(input)),3),-2),-5)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [-72, -24, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(sort_asc([3, 0, 1])),3),-4),2)",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      -72,
      -24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(sort_asc(input)),3),-4),2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(reverse([4, -5])))))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [9, 6, 2]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc([4, 1, -3]),5),18))",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      9,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(input),5),18))"
  },
  {
    "input": "input : list = [1, 0, -3, 4, -2, 0]\noutput : list = [-9, -6, 0, 0, 3, 12]",
    "output": "generated_output : list = reverse(mul_n(sort_des([1, 0, -3, 4, -2, 0]),3))",
    "io_inp": [
      1,
      0,
      -3,
      4,
      -2,
      0
    ],
    "io_out": [
      -9,
      -6,
      0,
      0,
      3,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [16, -4]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(drop([-3, 4, -1],1))),1),4)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(drop(input,1))),1),4)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_des([0, 1])),-2),5))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_des(input)),-2),5))"
  },
  {
    "input": "input : list = [2, 5, -3, -5, -1]\noutput : list = [0, -8, -10, -6]",
    "output": "generated_output : list = sub_n(drop([2, 5, -3, -5, -1],1),5)",
    "io_inp": [
      2,
      5,
      -3,
      -5,
      -1
    ],
    "io_out": [
      0,
      -8,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(take([-5, 1, 5],1),2))),4)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(take(input,1),2))),4)"
  },
  {
    "input": "input : list = [-2, -1, 3, 2, -5, 4]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = take([-2, -1, 3, 2, -5, 4],3)",
    "io_inp": [
      -2,
      -1,
      3,
      2,
      -5,
      4
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, 4, 3, 5]\noutput : list = [-10, -5, -4, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(add_n([-2, 4, 3, 5],-5)))),3)",
    "io_inp": [
      -2,
      4,
      3,
      5
    ],
    "io_out": [
      -10,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(add_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [1, -4, 5]\noutput : list = [3, -1, -6]",
    "output": "generated_output : list = take(add_n(sort_des(reverse([1, -4, 5])),-2),8)",
    "io_inp": [
      1,
      -4,
      5
    ],
    "io_out": [
      3,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(input)),-2),8)"
  },
  {
    "input": "input : list = [5, 1, -4, -5]\noutput : list = [-15, -14, -9, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(sub_n([5, 1, -4, -5],2))),4),-4)",
    "io_inp": [
      5,
      1,
      -4,
      -5
    ],
    "io_out": [
      -15,
      -14,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(sub_n(input,2))),4),-4)"
  },
  {
    "input": "input : list = [-5, -4, 4, -3, -3, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(reverse(reverse(take(sort_asc([-5, -4, 4, -3, -3, -4]),2))),49)",
    "io_inp": [
      -5,
      -4,
      4,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(sort_asc(input),2))),49)"
  },
  {
    "input": "input : list = [-5, -3, -2, -1]\noutput : list = [15, 30, 45, 75]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_asc([-5, -3, -2, -1])),-5)),3)",
    "io_inp": [
      -5,
      -3,
      -2,
      -1
    ],
    "io_out": [
      15,
      30,
      45,
      75
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_asc(input)),-5)),3)"
  },
  {
    "input": "input : list = [5, 5, -2, 5, 2, -5]\noutput : list = [6, 6, 6, 3, -1, -4]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(sub_n([5, 5, -2, 5, 2, -5],-3),2))),34)",
    "io_inp": [
      5,
      5,
      -2,
      5,
      2,
      -5
    ],
    "io_out": [
      6,
      6,
      6,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(sub_n(input,-3),2))),34)"
  },
  {
    "input": "input : list = [1, 3, -2, 5]\noutput : list = [4, -3, 2, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(sub_n([1, 3, -2, 5],5),17),2),-2))",
    "io_inp": [
      1,
      3,
      -2,
      5
    ],
    "io_out": [
      4,
      -3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(sub_n(input,5),17),2),-2))"
  },
  {
    "input": "input : list = [1, 3, 1, 4, 0, -4]\noutput : list = [20, 4, 28, -4, -36]",
    "output": "generated_output : list = mul_n(add_n(mul_n(drop([1, 3, 1, 4, 0, -4],1),-2),1),-4)",
    "io_inp": [
      1,
      3,
      1,
      4,
      0,
      -4
    ],
    "io_out": [
      20,
      4,
      28,
      -4,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(drop(input,1),-2),1),-4)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-15, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n(drop([-5, 2, -3],1),5)),5)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(drop(input,1),5)),5)"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(drop([2, 1, -2],1),14))))",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(drop(input,1),14))))"
  },
  {
    "input": "input : list = [0, -2, -4, -5, -2]\noutput : list = [-4]",
    "output": "generated_output : list = take(take(take(take(sub_n([0, -2, -4, -5, -2],4),17),1),38),44)",
    "io_inp": [
      0,
      -2,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(take(sub_n(input,4),17),1),38),44)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-28, -40, -44]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(sub_n([-1, -5, -4],2))),-4),4)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -28,
      -40,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(sub_n(input,2))),-4),4)"
  },
  {
    "input": "input : list = [5, 0, -1, 2, 2]\noutput : list = [-3, -1, 3, 9]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(mul_n([5, 0, -1, 2, 2],2),4),1)),-2)",
    "io_inp": [
      5,
      0,
      -1,
      2,
      2
    ],
    "io_out": [
      -3,
      -1,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(mul_n(input,2),4),1)),-2)"
  },
  {
    "input": "input : list = [-3, -3, -4, -5, 4]\noutput : list = [4, -5, -4, -3, -3]",
    "output": "generated_output : list = reverse([-3, -3, -4, -5, 4])",
    "io_inp": [
      -3,
      -3,
      -4,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, 0, -4, -3]\noutput : list = [-2, -5, -5, -6, -7]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(add_n([-3, -5, 0, -4, -3],-2)))),7)",
    "io_inp": [
      -3,
      -5,
      0,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -5,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(add_n(input,-2)))),7)"
  },
  {
    "input": "input : list = [2, -3, -2, -2, -4, 2]\noutput : list = [2, 2, -2, -2, -3, -4]",
    "output": "generated_output : list = sort_des([2, -3, -2, -2, -4, 2])",
    "io_inp": [
      2,
      -3,
      -2,
      -2,
      -4,
      2
    ],
    "io_out": [
      2,
      2,
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, -1, 3, 2, -1]\noutput : list = [4, 4, 6, 7, 8, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_des([4, 1, -1, 3, 2, -1]))),5))",
    "io_inp": [
      4,
      1,
      -1,
      3,
      2,
      -1
    ],
    "io_out": [
      4,
      4,
      6,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_des(input))),5))"
  },
  {
    "input": "input : list = [-5, 2, 2, 5]\noutput : list = [20, -8, -8, -20]",
    "output": "generated_output : list = mul_n([-5, 2, 2, 5],-4)",
    "io_inp": [
      -5,
      2,
      2,
      5
    ],
    "io_out": [
      20,
      -8,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 4, 0, -2]\noutput : list = [3, 7, 3, 1]",
    "output": "generated_output : list = add_n([0, 4, 0, -2],3)",
    "io_inp": [
      0,
      4,
      0,
      -2
    ],
    "io_out": [
      3,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [3, -5, -3, 1, -1, 3]\noutput : list = [-5, -3, -1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(sub_n([3, -5, -3, 1, -1, 3],-4),29)),4))",
    "io_inp": [
      3,
      -5,
      -3,
      1,
      -1,
      3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(sub_n(input,-4),29)),4))"
  },
  {
    "input": "input : list = [-3, -1, -5, -2, -3]\noutput : list = [-5, -3, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(sort_asc([-3, -1, -5, -2, -3]))),39))",
    "io_inp": [
      -3,
      -1,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(sort_asc(input))),39))"
  },
  {
    "input": "input : list = [-5, 4, -5, -4, -2]\noutput : list = [-2, 7, -2, -1, 1]",
    "output": "generated_output : list = take(reverse(add_n(take(reverse([-5, 4, -5, -4, -2]),13),3)),52)",
    "io_inp": [
      -5,
      4,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -2,
      7,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(reverse(input),13),3)),52)"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [1, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sort_des([-1, -2, -1])),-2)))",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [0, 1, -5, 2]\noutput : list = [7, 6, 0]",
    "output": "generated_output : list = sort_des(add_n(drop([0, 1, -5, 2],1),5))",
    "io_inp": [
      0,
      1,
      -5,
      2
    ],
    "io_out": [
      7,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),5))"
  },
  {
    "input": "input : list = [2, 5, 4, 1, 5, 0]\noutput : list = [0, 1, 2, 4, 5, 5]",
    "output": "generated_output : list = take(sort_asc([2, 5, 4, 1, 5, 0]),14)",
    "io_inp": [
      2,
      5,
      4,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      1,
      2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [-5, 4, 1, 3, -5, -1]\noutput : list = [-2, 7, 4, 6, -2, 2]",
    "output": "generated_output : list = sub_n([-5, 4, 1, 3, -5, -1],-3)",
    "io_inp": [
      -5,
      4,
      1,
      3,
      -5,
      -1
    ],
    "io_out": [
      -2,
      7,
      4,
      6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, -1, 2, 2, 2, 5]\noutput : list = [2, -1, 2, 2, 2, 5]",
    "output": "generated_output : list = mul_n([2, -1, 2, 2, 2, 5],1)",
    "io_inp": [
      2,
      -1,
      2,
      2,
      2,
      5
    ],
    "io_out": [
      2,
      -1,
      2,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [6, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(reverse([5, 3]),3))))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [3, -2, 2, 4, 2]\noutput : list = [4, 3, 2, 2, -2]",
    "output": "generated_output : list = reverse(sort_asc([3, -2, 2, 4, 2]))",
    "io_inp": [
      3,
      -2,
      2,
      4,
      2
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -1, 4, -2, 1, 4]\noutput : list = [-2, 2, 7, 1, 4, 7]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n([-5, -1, 4, -2, 1, 4],1),4)))",
    "io_inp": [
      -5,
      -1,
      4,
      -2,
      1,
      4
    ],
    "io_out": [
      -2,
      2,
      7,
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(input,1),4)))"
  },
  {
    "input": "input : list = [1, 2, -5, -2]\noutput : list = [-7, -5, 1, 7]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse([1, 2, -5, -2]),-2),-3))",
    "io_inp": [
      1,
      2,
      -5,
      -2
    ],
    "io_out": [
      -7,
      -5,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(input),-2),-3))"
  },
  {
    "input": "input : list = [2, 1, 0, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(take([2, 1, 0, -4],1))),18),3)",
    "io_inp": [
      2,
      1,
      0,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(take(input,1))),18),3)"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = sub_n(reverse([5, 4, 4]),4)",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [16, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(sort_des([-4, 4])),-4),2))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(sort_des(input)),-4),2))"
  },
  {
    "input": "input : list = [1, -3, -3, 1]\noutput : list = [-3, -3, 1]",
    "output": "generated_output : list = take(drop([1, -3, -3, 1],1),11)",
    "io_inp": [
      1,
      -3,
      -3,
      1
    ],
    "io_out": [
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),11)"
  },
  {
    "input": "input : list = [2, -1, -3]\noutput : list = [-3, -1, 2]",
    "output": "generated_output : list = add_n(reverse(add_n([2, -1, -3],-2)),2)",
    "io_inp": [
      2,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,-2)),2)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [0, -6, -4]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(mul_n([3, 0, 1],-2),5),11),-1),1)",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      0,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(mul_n(input,-2),5),11),-1),1)"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [-6, 6, 10]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(mul_n([5, -3, 3],2)),14)))",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      -6,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(mul_n(input,2)),14)))"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(reverse([4, 4, -3]),4)),-2),-5)",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(reverse(input),4)),-2),-5)"
  },
  {
    "input": "input : list = [0, 3, -2, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sub_n([0, 3, -2, -5],-1),4),1),-2),-2)",
    "io_inp": [
      0,
      3,
      -2,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sub_n(input,-1),4),1),-2),-2)"
  },
  {
    "input": "input : list = [-4, 4, 1, -1, 3]\noutput : list = [14, -18, -6, 2, -14]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(reverse([-4, 4, 1, -1, 3])),-4),-2),40)",
    "io_inp": [
      -4,
      4,
      1,
      -1,
      3
    ],
    "io_out": [
      14,
      -18,
      -6,
      2,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(reverse(input)),-4),-2),40)"
  },
  {
    "input": "input : list = [1, 3, -1, 5]\noutput : list = [-4, -6, -8, -10]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(sort_asc([1, 3, -1, 5]),7),-5),-4))",
    "io_inp": [
      1,
      3,
      -1,
      5
    ],
    "io_out": [
      -4,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(sort_asc(input),7),-5),-4))"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [-20, 12, -20]",
    "output": "generated_output : list = take(mul_n([-5, 3, -5],4),16)",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      -20,
      12,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),16)"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [7]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(take([-3, -5, -4],1),-3),6),2),-4)",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(take(input,1),-3),6),2),-4)"
  },
  {
    "input": "input : list = [5, -5, 4, -3]\noutput : list = [5, 4, -3, -5]",
    "output": "generated_output : list = reverse(take(sort_asc([5, -5, 4, -3]),9))",
    "io_inp": [
      5,
      -5,
      4,
      -3
    ],
    "io_out": [
      5,
      4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),9))"
  },
  {
    "input": "input : list = [-1, 4, 0, -3, 2]\noutput : list = [-2, -7, -4, 0, -5]",
    "output": "generated_output : list = reverse(take(add_n([-1, 4, 0, -3, 2],-4),22))",
    "io_inp": [
      -1,
      4,
      0,
      -3,
      2
    ],
    "io_out": [
      -2,
      -7,
      -4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-4),22))"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(drop([1, 5, 0],1),1),-5)))",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(drop(input,1),1),-5)))"
  },
  {
    "input": "input : list = [-4, -1, -3, -4]\noutput : list = [-5, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(sort_asc([-4, -1, -3, -4])),3)),-4)",
    "io_inp": [
      -4,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(sort_asc(input)),3)),-4)"
  },
  {
    "input": "input : list = [-1, 0, -3, 0, -4, -3]\noutput : list = [3, 1, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(take([-1, 0, -3, 0, -4, -3],4)),-1)))",
    "io_inp": [
      -1,
      0,
      -3,
      0,
      -4,
      -3
    ],
    "io_out": [
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(take(input,4)),-1)))"
  },
  {
    "input": "input : list = [-2, -5, 2, -3, -1]\noutput : list = [18, -9, -18, -27, -45]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n([-2, -5, 2, -3, -1],-3),-3),37)))",
    "io_inp": [
      -2,
      -5,
      2,
      -3,
      -1
    ],
    "io_out": [
      18,
      -9,
      -18,
      -27,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n(input,-3),-3),37)))"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-3, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -5, -3])",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, 4, 4, 1, -5]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take([3, 5, 4, 4, 1, -5],1))",
    "io_inp": [
      3,
      5,
      4,
      4,
      1,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [3, -2, -4, -4, -5]\noutput : list = [-6, -4, -4, 0, 10]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(mul_n([3, -2, -4, -4, -5],2),4)),1),45)",
    "io_inp": [
      3,
      -2,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -4,
      0,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(mul_n(input,2),4)),1),45)"
  },
  {
    "input": "input : list = [-2, 3, 1, -2]\noutput : list = [6, 1]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(take([-2, 3, 1, -2],2)),-3)))",
    "io_inp": [
      -2,
      3,
      1,
      -2
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(take(input,2)),-3)))"
  },
  {
    "input": "input : list = [-4, 3, 4, -5]\noutput : list = [-12, -5, -4, -13]",
    "output": "generated_output : list = sub_n(sub_n([-4, 3, 4, -5],4),4)",
    "io_inp": [
      -4,
      3,
      4,
      -5
    ],
    "io_out": [
      -12,
      -5,
      -4,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),4)"
  },
  {
    "input": "input : list = [-3, 5, 0, -2]\noutput : list = [-33, -28, -18, 7]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_des([-3, 5, 0, -2]),4),5),2))",
    "io_inp": [
      -3,
      5,
      0,
      -2
    ],
    "io_out": [
      -33,
      -28,
      -18,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_des(input),4),5),2))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(sub_n([-2, -3],-1),2),-4)),-1)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(sub_n(input,-1),2),-4)),-1)"
  },
  {
    "input": "input : list = [2, -4, 0, 4]\noutput : list = [0, 4, 8, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(reverse([2, -4, 0, 4])),4),-2))",
    "io_inp": [
      2,
      -4,
      0,
      4
    ],
    "io_out": [
      0,
      4,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(reverse(input)),4),-2))"
  },
  {
    "input": "input : list = [-3, 1, -5, 0]\noutput : list = [-2, 6, -6, 4]",
    "output": "generated_output : list = mul_n(add_n([-3, 1, -5, 0],2),2)",
    "io_inp": [
      -3,
      1,
      -5,
      0
    ],
    "io_out": [
      -2,
      6,
      -6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),2)"
  },
  {
    "input": "input : list = [4, -2, 3]\noutput : list = [7, 1, 6]",
    "output": "generated_output : list = sub_n([4, -2, 3],-3)",
    "io_inp": [
      4,
      -2,
      3
    ],
    "io_out": [
      7,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 3, 4, -1, -3]\noutput : list = [21, 17, 9, -7, -11]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(sort_asc([-4, 3, 4, -1, -3]),-2),2)),5)",
    "io_inp": [
      -4,
      3,
      4,
      -1,
      -3
    ],
    "io_out": [
      21,
      17,
      9,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(sort_asc(input),-2),2)),5)"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [-9, -4, -2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(sort_des([3, 5, -2]),3),-5)),5)",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      -9,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(sort_des(input),3),-5)),5)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [-14, 14, 14]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n([-2, 5, -2],-4),-3),2),5))",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      -14,
      14,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n(input,-4),-3),2),5))"
  },
  {
    "input": "input : list = [4, 2, -1, 5, 1, -4]\noutput : list = [-7, -6, -4, -3, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(mul_n([4, 2, -1, 5, 1, -4],-1),2))))",
    "io_inp": [
      4,
      2,
      -1,
      5,
      1,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(mul_n(input,-1),2))))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(take(sub_n([2, -1],3),10)),9),-5)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(sub_n(input,3),10)),9),-5)"
  },
  {
    "input": "input : list = [3, 0, 1, 3, -3]\noutput : list = [17, 17, 7, 2, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(mul_n([3, 0, 1, 3, -3],5))),3),5)",
    "io_inp": [
      3,
      0,
      1,
      3,
      -3
    ],
    "io_out": [
      17,
      17,
      7,
      2,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(mul_n(input,5))),3),5)"
  },
  {
    "input": "input : list = [0, 2, -5, -2, 0, 3]\noutput : list = [540, 360, 0, 0, -360, -900]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(mul_n([0, 2, -5, -2, 0, 3],-5)),3),4),-3)",
    "io_inp": [
      0,
      2,
      -5,
      -2,
      0,
      3
    ],
    "io_out": [
      540,
      360,
      0,
      0,
      -360,
      -900
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(mul_n(input,-5)),3),4),-3)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 30]",
    "output": "generated_output : list = mul_n(mul_n([0, 2],-5),-3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-3)"
  },
  {
    "input": "input : list = [1, 3, -5, -4, -3, 2]\noutput : list = [1, 3, -5, -4, -3, 2]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse([1, 3, -5, -4, -3, 2]),1)),1)",
    "io_inp": [
      1,
      3,
      -5,
      -4,
      -3,
      2
    ],
    "io_out": [
      1,
      3,
      -5,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(input),1)),1)"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [-9, -6, -4]",
    "output": "generated_output : list = sub_n(reverse(take(add_n(sort_des([1, -1, -4]),-3),24)),2)",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(sort_des(input),-3),24)),2)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [-8, -4, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sort_asc([3, -5, -1]),-1)),4),1)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sort_asc(input),-1)),4),1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-13, 7]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc([-2, 2]),5),-1),-4)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -13,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(input),5),-1),-4)"
  },
  {
    "input": "input : list = [0, 0, -4, 1, 3, -5]\noutput : list = [-5, -4, 0, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([0, 0, -4, 1, 3, -5])",
    "io_inp": [
      0,
      0,
      -4,
      1,
      3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, -2, -5]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(drop([5, 3, -2, -5],2),1)),4),-2)",
    "io_inp": [
      5,
      3,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(drop(input,2),1)),4),-2)"
  },
  {
    "input": "input : list = [-1, 5, -3, -3, -4]\noutput : list = [-1, 5, -3]",
    "output": "generated_output : list = take([-1, 5, -3, -3, -4],3)",
    "io_inp": [
      -1,
      5,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -1,
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [2, 1]",
    "output": "generated_output : list = add_n([5, 4],-3)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-1, 3, 0],5),4))",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,5),4))"
  },
  {
    "input": "input : list = [-1, -3, -5, 0]\noutput : list = [-1, 1, 3, 4]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(sub_n([-1, -3, -5, 0],-4))),16),35)",
    "io_inp": [
      -1,
      -3,
      -5,
      0
    ],
    "io_out": [
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(sub_n(input,-4))),16),35)"
  },
  {
    "input": "input : list = [1, -4, 5, 2, 3]\noutput : list = [12, 18, 30]",
    "output": "generated_output : list = mul_n(drop(mul_n(take(sort_asc([1, -4, 5, 2, 3]),12),3),2),2)",
    "io_inp": [
      1,
      -4,
      5,
      2,
      3
    ],
    "io_out": [
      12,
      18,
      30
    ],
    "output_masked": "generated_output : list = mul_n(drop(mul_n(take(sort_asc(input),12),3),2),2)"
  },
  {
    "input": "input : list = [4, -5, -3, -2, -2, -5]\noutput : list = [4, -2, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des([4, -5, -3, -2, -2, -5])",
    "io_inp": [
      4,
      -5,
      -3,
      -2,
      -2,
      -5
    ],
    "io_out": [
      4,
      -2,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-5, -14]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(sort_des([-4, 5]),2),23),-5),-3)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -5,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(sort_des(input),2),23),-5),-3)"
  },
  {
    "input": "input : list = [-5, 5, 1, 5, 0, 0]\noutput : list = [6, -4, -4, -6, -14, -14]",
    "output": "generated_output : list = sort_des(mul_n(add_n([-5, 5, 1, 5, 0, 0],2),-2))",
    "io_inp": [
      -5,
      5,
      1,
      5,
      0,
      0
    ],
    "io_out": [
      6,
      -4,
      -4,
      -6,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,2),-2))"
  },
  {
    "input": "input : list = [-5, -5, 4, -1, 2]\noutput : list = [19, 19, -17, 3, -9]",
    "output": "generated_output : list = sub_n(mul_n([-5, -5, 4, -1, 2],-4),1)",
    "io_inp": [
      -5,
      -5,
      4,
      -1,
      2
    ],
    "io_out": [
      19,
      19,
      -17,
      3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),1)"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [-13, -5, -5]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(reverse([5, -3, 5])),-5),5))",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      -13,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(reverse(input)),-5),5))"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [-5, -2, 7]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(reverse([-4, -1, 0]))),-3),-5)",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      -5,
      -2,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(reverse(input))),-3),-5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = mul_n([3, -4],-1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -4, 1, 1, 4, 0]\noutput : list = [-20, -8, -8, -4, 0, 12]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sort_asc([-1, -4, 1, 1, 4, 0]))),-4),-4)",
    "io_inp": [
      -1,
      -4,
      1,
      1,
      4,
      0
    ],
    "io_out": [
      -20,
      -8,
      -8,
      -4,
      0,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sort_asc(input))),-4),-4)"
  },
  {
    "input": "input : list = [1, -5, -2, 1]\noutput : list = [-60, -24, 12, 12]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(reverse([1, -5, -2, 1]),-3)),-4))",
    "io_inp": [
      1,
      -5,
      -2,
      1
    ],
    "io_out": [
      -60,
      -24,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(reverse(input),-3)),-4))"
  },
  {
    "input": "input : list = [2, 0, 0, 2]\noutput : list = [-8, -8, 0, 0]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sort_des([2, 0, 0, 2]))),-4),22)",
    "io_inp": [
      2,
      0,
      0,
      2
    ],
    "io_out": [
      -8,
      -8,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sort_des(input))),-4),22)"
  },
  {
    "input": "input : list = [-5, 0, 1, 5]\noutput : list = [3, -1, -2, -7]",
    "output": "generated_output : list = take(sub_n(reverse([-5, 0, 1, 5]),2),25)",
    "io_inp": [
      -5,
      0,
      1,
      5
    ],
    "io_out": [
      3,
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),2),25)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-25, 25]",
    "output": "generated_output : list = mul_n(reverse(sort_des([5, -5])),5)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des([-2, 0])",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, 3, 1]\noutput : list = [4, -4, -20, -28]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(add_n([-5, -3, 3, 1],-2))),4))",
    "io_inp": [
      -5,
      -3,
      3,
      1
    ],
    "io_out": [
      4,
      -4,
      -20,
      -28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(add_n(input,-2))),4))"
  },
  {
    "input": "input : list = [2, 3, 3, -3]\noutput : list = [4, 2, 2, 14]",
    "output": "generated_output : list = add_n(mul_n(add_n([2, 3, 3, -3],-5),-2),-2)",
    "io_inp": [
      2,
      3,
      3,
      -3
    ],
    "io_out": [
      4,
      2,
      2,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-5),-2),-2)"
  },
  {
    "input": "input : list = [3, -4, 5, -4, 5, 2]\noutput : list = [2, 5, -4, 5, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, 5, -4, 5, 2])",
    "io_inp": [
      3,
      -4,
      5,
      -4,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      -4,
      5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, -2, 4]\noutput : list = [21, 21, -3, 21]",
    "output": "generated_output : list = take(add_n(reverse(reverse(mul_n([4, 4, -2, 4],4))),5),5)",
    "io_inp": [
      4,
      4,
      -2,
      4
    ],
    "io_out": [
      21,
      21,
      -3,
      21
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(mul_n(input,4))),5),5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = reverse([5, 2])",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse(sort_des([4, -1]))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -2, -3, -2]\noutput : list = [-36, -52, -36, 60]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(mul_n([4, -2, -3, -2],-4)),-4),11),4)",
    "io_inp": [
      4,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -36,
      -52,
      -36,
      60
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(mul_n(input,-4)),-4),11),4)"
  },
  {
    "input": "input : list = [-2, -1, -3, -5]\noutput : list = [8, 4, 2, 0]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(reverse([-2, -1, -3, -5])),1),-2),4)",
    "io_inp": [
      -2,
      -1,
      -3,
      -5
    ],
    "io_out": [
      8,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(reverse(input)),1),-2),4)"
  },
  {
    "input": "input : list = [-3, 1, -2, -2]\noutput : list = [-3, -2, -2, 1]",
    "output": "generated_output : list = reverse(sort_des([-3, 1, -2, -2]))",
    "io_inp": [
      -3,
      1,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [0, 2, -5, 0]\noutput : list = [-6, -8, -8, -13]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(add_n([0, 2, -5, 0],-4),4))))",
    "io_inp": [
      0,
      2,
      -5,
      0
    ],
    "io_out": [
      -6,
      -8,
      -8,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(add_n(input,-4),4))))"
  },
  {
    "input": "input : list = [3, 3, -5, 3, -3, -4]\noutput : list = [10, 10, -6]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(take([3, 3, -5, 3, -3, -4],3)),2)),4)",
    "io_inp": [
      3,
      3,
      -5,
      3,
      -3,
      -4
    ],
    "io_out": [
      10,
      10,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(take(input,3)),2)),4)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sort_des(take([-3, -5, -2],1)),1)",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,1)),1)"
  },
  {
    "input": "input : list = [-1, 2, 1, -4, 1]\noutput : list = [3, -6, -3, 12, -3]",
    "output": "generated_output : list = mul_n([-1, 2, 1, -4, 1],-3)",
    "io_inp": [
      -1,
      2,
      1,
      -4,
      1
    ],
    "io_out": [
      3,
      -6,
      -3,
      12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-15, -30]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc([-2, -5])),-1),-5),-5)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -15,
      -30
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc(input)),-1),-5),-5)"
  },
  {
    "input": "input : list = [-4, -5, 5, -1, -4]\noutput : list = [-40, -30, -30, 0, 60]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_asc([-4, -5, 5, -1, -4]),1),2),-5),-2)",
    "io_inp": [
      -4,
      -5,
      5,
      -1,
      -4
    ],
    "io_out": [
      -40,
      -30,
      -30,
      0,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_asc(input),1),2),-5),-2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [5, -10]",
    "output": "generated_output : list = sub_n(mul_n([-1, 4],-3),-2)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),-2)"
  },
  {
    "input": "input : list = [1, -2, 1, -4, 5]\noutput : list = [7, -2, 3, 0, 3]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(add_n([1, -2, 1, -4, 5],2),1))))",
    "io_inp": [
      1,
      -2,
      1,
      -4,
      5
    ],
    "io_out": [
      7,
      -2,
      3,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(add_n(input,2),1))))"
  },
  {
    "input": "input : list = [-1, 5, -4, 4, 5]\noutput : list = [-40, -10, 40, 50, 50]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(mul_n([-1, 5, -4, 4, 5],5),2))))",
    "io_inp": [
      -1,
      5,
      -4,
      4,
      5
    ],
    "io_out": [
      -40,
      -10,
      40,
      50,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(mul_n(input,5),2))))"
  },
  {
    "input": "input : list = [3, -5, 3, 2, -5]\noutput : list = [3, 2, -5, -5]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(drop([3, -5, 3, 2, -5],1),22)),1))",
    "io_inp": [
      3,
      -5,
      3,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(drop(input,1),22)),1))"
  },
  {
    "input": "input : list = [3, -1, -5]\noutput : list = [3, -1, -5]",
    "output": "generated_output : list = mul_n([3, -1, -5],1)",
    "io_inp": [
      3,
      -1,
      -5
    ],
    "io_out": [
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-8, -1]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(sub_n([4, -3],3)),7),2))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(sub_n(input,3)),7),2))"
  },
  {
    "input": "input : list = [5, 3, -2, 3, -4]\noutput : list = [10, 6, -4, 6, -8]",
    "output": "generated_output : list = mul_n([5, 3, -2, 3, -4],2)",
    "io_inp": [
      5,
      3,
      -2,
      3,
      -4
    ],
    "io_out": [
      10,
      6,
      -4,
      6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, -1, -3, -3, 3, -2]\noutput : list = [-20, -20, -15, -10, -10, 10]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sort_des([-1, -1, -3, -3, 3, -2]),-1),-5),5))",
    "io_inp": [
      -1,
      -1,
      -3,
      -3,
      3,
      -2
    ],
    "io_out": [
      -20,
      -20,
      -15,
      -10,
      -10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sort_des(input),-1),-5),5))"
  },
  {
    "input": "input : list = [3, -4, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = drop([3, -4, -3, 4],2)",
    "io_inp": [
      3,
      -4,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 5, -4, 3, 5]\noutput : list = [9, 15]",
    "output": "generated_output : list = mul_n(drop([-1, 5, -4, 3, 5],3),3)",
    "io_inp": [
      -1,
      5,
      -4,
      3,
      5
    ],
    "io_out": [
      9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),3)"
  },
  {
    "input": "input : list = [2, -5, 1, -2, 0]\noutput : list = [1, -1, -3, -7, -13]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(mul_n(add_n([2, -5, 1, -2, 0],-2),2),-5),4))",
    "io_inp": [
      2,
      -5,
      1,
      -2,
      0
    ],
    "io_out": [
      1,
      -1,
      -3,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(mul_n(add_n(input,-2),2),-5),4))"
  },
  {
    "input": "input : list = [-3, 3, -3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse(drop([-3, 3, -3, -4],2))",
    "io_inp": [
      -3,
      3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-4, 0, 5, -5]\noutput : list = [-15, 0, 12, 15]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-4, 0, 5, -5],-3)))",
    "io_inp": [
      -4,
      0,
      5,
      -5
    ],
    "io_out": [
      -15,
      0,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [-4, 4, -1, -1, -2, -4]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(drop([-4, 4, -1, -1, -2, -4],3)),30)),1)",
    "io_inp": [
      -4,
      4,
      -1,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(drop(input,3)),30)),1)"
  },
  {
    "input": "input : list = [5, 2, 4, 4, -2, 0]\noutput : list = [-25, -20, -20, -10, 0, 10]",
    "output": "generated_output : list = mul_n(sort_des([5, 2, 4, 4, -2, 0]),-5)",
    "io_inp": [
      5,
      2,
      4,
      4,
      -2,
      0
    ],
    "io_out": [
      -25,
      -20,
      -20,
      -10,
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [1, -5, 1, 3, 3, 4]\noutput : list = [8, 7, 7, 5, 5, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([1, -5, 1, 3, 3, 4],-4)))",
    "io_inp": [
      1,
      -5,
      1,
      3,
      3,
      4
    ],
    "io_out": [
      8,
      7,
      7,
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [5, -10]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(drop([-4, -1, -4],1)),2),5))",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(drop(input,1)),2),5))"
  },
  {
    "input": "input : list = [5, 3, -5, 5, 5]\noutput : list = [-5, 3, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 3, -5, 5, 5]))",
    "io_inp": [
      5,
      3,
      -5,
      5,
      5
    ],
    "io_out": [
      -5,
      3,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [2, 0, 0]\noutput : list = [5, 5, 7]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(sort_asc([2, 0, 0]),8),-5),1),-1)",
    "io_inp": [
      2,
      0,
      0
    ],
    "io_out": [
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(sort_asc(input),8),-5),1),-1)"
  },
  {
    "input": "input : list = [-3, 4, 3, 5]\noutput : list = [3, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take([-3, 4, 3, 5],2),-1)))",
    "io_inp": [
      -3,
      4,
      3,
      5
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(input,2),-1)))"
  },
  {
    "input": "input : list = [-3, 4, -1, 1, 3, 5]\noutput : list = [-13, -7, -1, 5, 8, 11]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n([-3, 4, -1, 1, 3, 5],3))),2),2)",
    "io_inp": [
      -3,
      4,
      -1,
      1,
      3,
      5
    ],
    "io_out": [
      -13,
      -7,
      -1,
      5,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n(input,3))),2),2)"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = take(add_n(reverse(sort_des([0, 1, -2])),2),11)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(input)),2),11)"
  },
  {
    "input": "input : list = [0, -2, -4, -2, -2, -5]\noutput : list = [-7, -6, -4, -4, -4, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(reverse([0, -2, -4, -2, -2, -5]),-1))),3)",
    "io_inp": [
      0,
      -2,
      -4,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(reverse(input),-1))),3)"
  },
  {
    "input": "input : list = [2, 4, 1, 2, 0, 3]\noutput : list = [-6, -5, -4]",
    "output": "generated_output : list = add_n(sub_n(drop(reverse(sort_des([2, 4, 1, 2, 0, 3])),3),3),-5)",
    "io_inp": [
      2,
      4,
      1,
      2,
      0,
      3
    ],
    "io_out": [
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(reverse(sort_des(input)),3),3),-5)"
  },
  {
    "input": "input : list = [-3, -2, 3, -2, 1]\noutput : list = [10, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(drop([-3, -2, 3, -2, 1],2),-3),4)))",
    "io_inp": [
      -3,
      -2,
      3,
      -2,
      1
    ],
    "io_out": [
      10,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(drop(input,2),-3),4)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-16, -10]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(add_n([-5, 1],-4)),3),-4),37)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -16,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(add_n(input,-4)),3),-4),37)"
  },
  {
    "input": "input : list = [-2, -5, -2, 3, 1]\noutput : list = [-10, -13, -10, -5, -7]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse([-2, -5, -2, 3, 1])),-5),3)",
    "io_inp": [
      -2,
      -5,
      -2,
      3,
      1
    ],
    "io_out": [
      -10,
      -13,
      -10,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(input)),-5),3)"
  },
  {
    "input": "input : list = [4, 4, -1, -2, 1]\noutput : list = [6, 6, 1, 0, 3]",
    "output": "generated_output : list = sub_n([4, 4, -1, -2, 1],-2)",
    "io_inp": [
      4,
      4,
      -1,
      -2,
      1
    ],
    "io_out": [
      6,
      6,
      1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -4, -2, -4, -4, 2]\noutput : list = [2, -1, -2, -4, -4, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_asc([-1, -4, -2, -4, -4, 2]))),39))",
    "io_inp": [
      -1,
      -4,
      -2,
      -4,
      -4,
      2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_asc(input))),39))"
  },
  {
    "input": "input : list = [-1, 2, 1, 5]\noutput : list = [-1, 2, 1, 5]",
    "output": "generated_output : list = reverse(reverse([-1, 2, 1, 5]))",
    "io_inp": [
      -1,
      2,
      1,
      5
    ],
    "io_out": [
      -1,
      2,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(add_n(take(reverse(reverse([-5, 1, 4])),1),1),2)",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(reverse(input)),1),1),2)"
  },
  {
    "input": "input : list = [2, 0, 3, -5]\noutput : list = [-4, 4]",
    "output": "generated_output : list = add_n(reverse(add_n(take(drop([2, 0, 3, -5],2),6),-1)),2)",
    "io_inp": [
      2,
      0,
      3,
      -5
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(drop(input,2),6),-1)),2)"
  },
  {
    "input": "input : list = [3, -4, 1]\noutput : list = [-23, -2, -17]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([3, -4, 1],-4),-3),2)",
    "io_inp": [
      3,
      -4,
      1
    ],
    "io_out": [
      -23,
      -2,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,-4),-3),2)"
  },
  {
    "input": "input : list = [-4, 4, -3, -2, 0, -3]\noutput : list = [2, 5, 3, 2, 9, 1]",
    "output": "generated_output : list = reverse(add_n([-4, 4, -3, -2, 0, -3],5))",
    "io_inp": [
      -4,
      4,
      -3,
      -2,
      0,
      -3
    ],
    "io_out": [
      2,
      5,
      3,
      2,
      9,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [2, 2, -2, 1]\noutput : list = [-2, 1, 2, 2]",
    "output": "generated_output : list = take(sort_asc([2, 2, -2, 1]),9)",
    "io_inp": [
      2,
      2,
      -2,
      1
    ],
    "io_out": [
      -2,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),9)"
  },
  {
    "input": "input : list = [5, -2, 4, -1]\noutput : list = [12, 10, 0, -2]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(sort_des([5, -2, 4, -1]),-4),-2)),6)",
    "io_inp": [
      5,
      -2,
      4,
      -1
    ],
    "io_out": [
      12,
      10,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(sort_des(input),-4),-2)),6)"
  },
  {
    "input": "input : list = [0, 3, 5, 0, 5, 5]\noutput : list = [-2, -2, 10, 18, 18, 18]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sort_asc([0, 3, 5, 0, 5, 5]),4)),5),3)",
    "io_inp": [
      0,
      3,
      5,
      0,
      5,
      5
    ],
    "io_out": [
      -2,
      -2,
      10,
      18,
      18,
      18
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sort_asc(input),4)),5),3)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-30, -10]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(mul_n([3, 1],5))),-2))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -30,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(mul_n(input,5))),-2))"
  },
  {
    "input": "input : list = [1, 5, 3, -5, 5]\noutput : list = [-1, 5, 7, 9, 9]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(sub_n([1, 5, 3, -5, 5],-4),12))))",
    "io_inp": [
      1,
      5,
      3,
      -5,
      5
    ],
    "io_out": [
      -1,
      5,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(sub_n(input,-4),12))))"
  },
  {
    "input": "input : list = [3, -1, 5, 1, -4]\noutput : list = [6, 4, 2, 0, -3]",
    "output": "generated_output : list = sub_n(sort_des([3, -1, 5, 1, -4]),-1)",
    "io_inp": [
      3,
      -1,
      5,
      1,
      -4
    ],
    "io_out": [
      6,
      4,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [-3, -6, -8]",
    "output": "generated_output : list = sort_des(sub_n([1, -2, -4],4))",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [-5, 1, 2, -5, -1, -4]\noutput : list = [-6, 0, 1, -6, -2, -5]",
    "output": "generated_output : list = take(add_n([-5, 1, 2, -5, -1, -4],-1),30)",
    "io_inp": [
      -5,
      1,
      2,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -6,
      0,
      1,
      -6,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),30)"
  },
  {
    "input": "input : list = [0, -2, -4, 0]\noutput : list = [-4, -6, -8, -4]",
    "output": "generated_output : list = add_n([0, -2, -4, 0],-4)",
    "io_inp": [
      0,
      -2,
      -4,
      0
    ],
    "io_out": [
      -4,
      -6,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, -4, 0]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take([1, -4, 0],1))))",
    "io_inp": [
      1,
      -4,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(input,1))))"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [-50, 25, 125]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc([5, -2, 2]),3),5),-5))",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      -50,
      25,
      125
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc(input),3),5),-5))"
  },
  {
    "input": "input : list = [-2, -5, -1, 4, 4]\noutput : list = [1, 1, -4, -8, -5]",
    "output": "generated_output : list = take(reverse(take(take(add_n([-2, -5, -1, 4, 4],-3),5),19)),27)",
    "io_inp": [
      -2,
      -5,
      -1,
      4,
      4
    ],
    "io_out": [
      1,
      1,
      -4,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(add_n(input,-3),5),19)),27)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [25, 20]",
    "output": "generated_output : list = mul_n(sort_des([5, 4]),5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, 1, 1, 0]\noutput : list = [1, 1, 0, -2]",
    "output": "generated_output : list = sort_des([-2, 1, 1, 0])",
    "io_inp": [
      -2,
      1,
      1,
      0
    ],
    "io_out": [
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, 0, -1, 5]\noutput : list = [-24, -28, -8, -4, -28]",
    "output": "generated_output : list = mul_n(sub_n([4, 5, 0, -1, 5],-2),-4)",
    "io_inp": [
      4,
      5,
      0,
      -1,
      5
    ],
    "io_out": [
      -24,
      -28,
      -8,
      -4,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),-4)"
  },
  {
    "input": "input : list = [-3, 3, 5, -2]\noutput : list = [2, -2, 12]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(drop([-3, 3, 5, -2],1),18),4),-1),2)",
    "io_inp": [
      -3,
      3,
      5,
      -2
    ],
    "io_out": [
      2,
      -2,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(drop(input,1),18),4),-1),2)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [5, 1]",
    "output": "generated_output : list = sub_n(sort_des([-2, 2]),-3)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [3, 5, 0, -2, -4, -4]\noutput : list = [1, 3, -2, -4, -6, -6]",
    "output": "generated_output : list = add_n([3, 5, 0, -2, -4, -4],-2)",
    "io_inp": [
      3,
      5,
      0,
      -2,
      -4,
      -4
    ],
    "io_out": [
      1,
      3,
      -2,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, 5, 5, -4, 0, 4]\noutput : list = [-7, -3, 0, 1, 2, 2]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sub_n([3, 5, 5, -4, 0, 4],-1))),4))",
    "io_inp": [
      3,
      5,
      5,
      -4,
      0,
      4
    ],
    "io_out": [
      -7,
      -3,
      0,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sub_n(input,-1))),4))"
  },
  {
    "input": "input : list = [5, 1, -2]\noutput : list = [-4, -1, 3]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(add_n([5, 1, -2],-2)),1),-1),13)",
    "io_inp": [
      5,
      1,
      -2
    ],
    "io_out": [
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(add_n(input,-2)),1),-1),13)"
  },
  {
    "input": "input : list = [5, -1, -4]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = sort_asc([5, -1, -4])",
    "io_inp": [
      5,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [24, 36]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(sort_des([-5, -4]),-2),3),17),-4)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      24,
      36
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(sort_des(input),-2),3),17),-4)"
  },
  {
    "input": "input : list = [3, 3, 2, 5, -4, 1]\noutput : list = [-1, -1, -2, 1, -8, -3]",
    "output": "generated_output : list = take(sub_n([3, 3, 2, 5, -4, 1],4),10)",
    "io_inp": [
      3,
      3,
      2,
      5,
      -4,
      1
    ],
    "io_out": [
      -1,
      -1,
      -2,
      1,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),10)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-2, -6]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_asc([0, -4]),5),-1),-1),-2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_asc(input),5),-1),-1),-2)"
  },
  {
    "input": "input : list = [0, -4, -4, 4, 1, 0]\noutput : list = [-3, -7, -7]",
    "output": "generated_output : list = sub_n(take([0, -4, -4, 4, 1, 0],3),3)",
    "io_inp": [
      0,
      -4,
      -4,
      4,
      1,
      0
    ],
    "io_out": [
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),3)"
  },
  {
    "input": "input : list = [1, -4, 0, 5]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(take([1, -4, 0, 5],1))),1),-5)",
    "io_inp": [
      1,
      -4,
      0,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(take(input,1))),1),-5)"
  },
  {
    "input": "input : list = [4, 3, 1, -2, -2]\noutput : list = [6, 6, 0, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(mul_n([4, 3, 1, -2, -2],-2)),14)),2)",
    "io_inp": [
      4,
      3,
      1,
      -2,
      -2
    ],
    "io_out": [
      6,
      6,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(mul_n(input,-2)),14)),2)"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(take([4, 2, 0],1),-2))),-4)",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(take(input,1),-2))),-4)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [4, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_des([-5, -1]))),-4))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [0, -3, 4, 5]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take(drop([0, -3, 4, 5],2),1))))",
    "io_inp": [
      0,
      -3,
      4,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(drop(input,2),1))))"
  },
  {
    "input": "input : list = [0, -2, 0, -1, -2]\noutput : list = [1, 11]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(take([0, -2, 0, -1, -2],2),-5),4)),-3)",
    "io_inp": [
      0,
      -2,
      0,
      -1,
      -2
    ],
    "io_out": [
      1,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(take(input,2),-5),4)),-3)"
  },
  {
    "input": "input : list = [-3, 4, -3, -3]\noutput : list = [10, 10]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(drop([-3, 4, -3, -3],2),-2),-4),-1),-1)",
    "io_inp": [
      -3,
      4,
      -3,
      -3
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(drop(input,2),-2),-4),-1),-1)"
  },
  {
    "input": "input : list = [-5, -5, -3]\noutput : list = [-36, -60, -60]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(reverse([-5, -5, -3]),3))),4)",
    "io_inp": [
      -5,
      -5,
      -3
    ],
    "io_out": [
      -36,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(reverse(input),3))),4)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(reverse(take(add_n(add_n([2, 2],-1),4),3)),1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(add_n(input,-1),4),3)),1)"
  },
  {
    "input": "input : list = [-5, -3, 3, 4]\noutput : list = [4, 3, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, 3, 4])",
    "io_inp": [
      -5,
      -3,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 5, 0, -3]\noutput : list = [-4, 12]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(take([2, 0, 5, 0, -3],2),-2),-2),4),-4)",
    "io_inp": [
      2,
      0,
      5,
      0,
      -3
    ],
    "io_out": [
      -4,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(take(input,2),-2),-2),4),-4)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0]",
    "output": "generated_output : list = drop(take(sort_asc(take(reverse([-3, 0]),12)),23),1)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(take(reverse(input),12)),23),1)"
  },
  {
    "input": "input : list = [2, 1, -3, -1, 1, 4]\noutput : list = [3]",
    "output": "generated_output : list = reverse(sort_asc(drop(reverse(add_n([2, 1, -3, -1, 1, 4],1)),5)))",
    "io_inp": [
      2,
      1,
      -3,
      -1,
      1,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(reverse(add_n(input,1)),5)))"
  },
  {
    "input": "input : list = [-2, -2, 4, 3]\noutput : list = [4, 3, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc([-2, -2, 4, 3]))))",
    "io_inp": [
      -2,
      -2,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [-3, -5, 3, -4]\noutput : list = [0, -2, 6, -1]",
    "output": "generated_output : list = sub_n([-3, -5, 3, -4],-3)",
    "io_inp": [
      -3,
      -5,
      3,
      -4
    ],
    "io_out": [
      0,
      -2,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, 5, -2]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = sort_asc([2, 5, -2])",
    "io_inp": [
      2,
      5,
      -2
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(sub_n([5, 4],5)),13),3))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(sub_n(input,5)),13),3))"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [6, 1]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(drop([-2, -2, 3],1),3),2)),1)",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(drop(input,1),3),2)),1)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, -4, 0]\noutput : list = [-16, -16, -40, -24]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(add_n([2, 2, -4, 0],-5),-4),-1),1),5)",
    "io_inp": [
      2,
      2,
      -4,
      0
    ],
    "io_out": [
      -16,
      -16,
      -40,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(add_n(input,-5),-4),-1),1),5)"
  },
  {
    "input": "input : list = [3, 4, -3, -2, -4, 5]\noutput : list = [-23, 22, 12, 17, -18, -13]",
    "output": "generated_output : list = add_n(mul_n(take(take(reverse([3, 4, -3, -2, -4, 5]),6),28),-5),2)",
    "io_inp": [
      3,
      4,
      -3,
      -2,
      -4,
      5
    ],
    "io_out": [
      -23,
      22,
      12,
      17,
      -18,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(reverse(input),6),28),-5),2)"
  },
  {
    "input": "input : list = [-1, -2, 1, 4, -5]\noutput : list = [-14, -11, -10, -8, -5]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sort_des([-1, -2, 1, 4, -5]),4),5)),10)",
    "io_inp": [
      -1,
      -2,
      1,
      4,
      -5
    ],
    "io_out": [
      -14,
      -11,
      -10,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sort_des(input),4),5)),10)"
  },
  {
    "input": "input : list = [0, -5, 5, 3, -5, 1]\noutput : list = [-14, 76, -44, -74, 76, 1]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(reverse([0, -5, 5, 3, -5, 1]),8),-3),5),1)",
    "io_inp": [
      0,
      -5,
      5,
      3,
      -5,
      1
    ],
    "io_out": [
      -14,
      76,
      -44,
      -74,
      76,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(reverse(input),8),-3),5),1)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-44, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(mul_n([0, -2],-5),-4))),4)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -44,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(mul_n(input,-5),-4))),4)"
  },
  {
    "input": "input : list = [-5, 5, -4, -2]\noutput : list = [-7, 3, -6, -4]",
    "output": "generated_output : list = sub_n(take(sub_n([-5, 5, -4, -2],3),10),-1)",
    "io_inp": [
      -5,
      5,
      -4,
      -2
    ],
    "io_out": [
      -7,
      3,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,3),10),-1)"
  },
  {
    "input": "input : list = [-5, -3, -1, 2, -1, 4]\noutput : list = [-65, -33, 15, 15, 47, 79]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(mul_n([-5, -3, -1, 2, -1, 4],-4),-1),4),5))",
    "io_inp": [
      -5,
      -3,
      -1,
      2,
      -1,
      4
    ],
    "io_out": [
      -65,
      -33,
      15,
      15,
      47,
      79
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(mul_n(input,-4),-1),4),5))"
  },
  {
    "input": "input : list = [3, -4, -4, 4, -2]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = take(reverse(reverse(take(sort_asc([3, -4, -4, 4, -2]),18))),3)",
    "io_inp": [
      3,
      -4,
      -4,
      4,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(sort_asc(input),18))),3)"
  },
  {
    "input": "input : list = [2, 5, 2, -3]\noutput : list = [5, 8, 5, 0]",
    "output": "generated_output : list = sub_n(add_n([2, 5, 2, -3],1),-2)",
    "io_inp": [
      2,
      5,
      2,
      -3
    ],
    "io_out": [
      5,
      8,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),-2)"
  },
  {
    "input": "input : list = [2, 4, -2, 5, -5]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 4, -2, 5, -5],1)",
    "io_inp": [
      2,
      4,
      -2,
      5,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -1, -4, -3, 1]\noutput : list = [20, -80, -105, -30, -5]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(mul_n([0, -1, -4, -3, 1],5),1)),5),29)",
    "io_inp": [
      0,
      -1,
      -4,
      -3,
      1
    ],
    "io_out": [
      20,
      -80,
      -105,
      -30,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(mul_n(input,5),1)),5),29)"
  },
  {
    "input": "input : list = [1, -5, -3, -4, 2, 2]\noutput : list = [-10, -10, -6, 10, 14, 18]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sort_des([1, -5, -3, -4, 2, 2]),-1),-4)),-2)",
    "io_inp": [
      1,
      -5,
      -3,
      -4,
      2,
      2
    ],
    "io_out": [
      -10,
      -10,
      -6,
      10,
      14,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sort_des(input),-1),-4)),-2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_asc([0, 2])),-2),-3))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_asc(input)),-2),-3))"
  },
  {
    "input": "input : list = [4, 5, 1, 4, 1]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(take([4, 5, 1, 4, 1],1))),2))",
    "io_inp": [
      4,
      5,
      1,
      4,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(take(input,1))),2))"
  },
  {
    "input": "input : list = [1, 0, -3, 1, -5, -4]\noutput : list = [-6, -5, -4, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(sort_des([1, 0, -3, 1, -5, -4])),1)))",
    "io_inp": [
      1,
      0,
      -3,
      1,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [0, -3, 1, 5, 0]\noutput : list = [4, 4, 19]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(sort_asc([0, -3, 1, 5, 0]),3)),-5),-4)",
    "io_inp": [
      0,
      -3,
      1,
      5,
      0
    ],
    "io_out": [
      4,
      4,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(sort_asc(input),3)),-5),-4)"
  },
  {
    "input": "input : list = [2, 5, 3, -3]\noutput : list = [-3, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([2, 5, 3, -3])",
    "io_inp": [
      2,
      5,
      3,
      -3
    ],
    "io_out": [
      -3,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, -3, -1, 4, -1]\noutput : list = [-1, 4, -1]",
    "output": "generated_output : list = drop([-2, 5, -3, -1, 4, -1],3)",
    "io_inp": [
      -2,
      5,
      -3,
      -1,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, -5, -3, -3]\noutput : list = [-2, 0, 0, 2]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(sort_asc([-1, -5, -3, -3]),1)),27),-3)",
    "io_inp": [
      -1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -2,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(sort_asc(input),1)),27),-3)"
  },
  {
    "input": "input : list = [-1, 1, 3, 5]\noutput : list = [-4, -10]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(drop([-1, 1, 3, 5],2),-3))),5)",
    "io_inp": [
      -1,
      1,
      3,
      5
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(drop(input,2),-3))),5)"
  },
  {
    "input": "input : list = [-4, -3, 4, -1, -1, 5]\noutput : list = [-9, -8, -6, -6, -1, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des([-4, -3, 4, -1, -1, 5]),-5))",
    "io_inp": [
      -4,
      -3,
      4,
      -1,
      -1,
      5
    ],
    "io_out": [
      -9,
      -8,
      -6,
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-5, -1, 5, -3, -5, 5]\noutput : list = [-3, -13, -11, -3, -9, -13]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(add_n([-5, -1, 5, -3, -5, 5],1)),1),5),-4)",
    "io_inp": [
      -5,
      -1,
      5,
      -3,
      -5,
      5
    ],
    "io_out": [
      -3,
      -13,
      -11,
      -3,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(add_n(input,1)),1),5),-4)"
  },
  {
    "input": "input : list = [-1, 3, 1, 3]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(drop([-1, 3, 1, 3],2),-4),-4),1),4)",
    "io_inp": [
      -1,
      3,
      1,
      3
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(drop(input,2),-4),-4),1),4)"
  },
  {
    "input": "input : list = [3, 1, 5, 0]\noutput : list = [44, 28]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(mul_n([3, 1, 5, 0],2),4)),4),2)",
    "io_inp": [
      3,
      1,
      5,
      0
    ],
    "io_out": [
      44,
      28
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(mul_n(input,2),4)),4),2)"
  },
  {
    "input": "input : list = [0, -3, 1, 2, 2, 3]\noutput : list = [-17, -15, -15, -13, -11, -5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(sort_asc([0, -3, 1, 2, 2, 3]),4)),-2),-3)",
    "io_inp": [
      0,
      -3,
      1,
      2,
      2,
      3
    ],
    "io_out": [
      -17,
      -15,
      -15,
      -13,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(sort_asc(input),4)),-2),-3)"
  },
  {
    "input": "input : list = [3, 4, 3, -4]\noutput : list = [-12, 9, 9, 12]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_des([3, 4, 3, -4]),3)),34))",
    "io_inp": [
      3,
      4,
      3,
      -4
    ],
    "io_out": [
      -12,
      9,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_des(input),3)),34))"
  },
  {
    "input": "input : list = [-4, -5, -3, -4, 5, -2]\noutput : list = [-50, -40, -40, -30, -20, 50]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(mul_n([-4, -5, -3, -4, 5, -2],5),15),10)),2)",
    "io_inp": [
      -4,
      -5,
      -3,
      -4,
      5,
      -2
    ],
    "io_out": [
      -50,
      -40,
      -40,
      -30,
      -20,
      50
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(mul_n(input,5),15),10)),2)"
  },
  {
    "input": "input : list = [5, -4, 1, -4]\noutput : list = [-3, 22]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(drop([5, -4, 1, -4],2),-5))),-2)",
    "io_inp": [
      5,
      -4,
      1,
      -4
    ],
    "io_out": [
      -3,
      22
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(drop(input,2),-5))),-2)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(take([1, 2, -3],1)),-4)),-3)",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(take(input,1)),-4)),-3)"
  },
  {
    "input": "input : list = [4, -2, 5, -2]\noutput : list = [5, 4, -2, -2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n([4, -2, 5, -2],-3))),-3)",
    "io_inp": [
      4,
      -2,
      5,
      -2
    ],
    "io_out": [
      5,
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(input,-3))),-3)"
  },
  {
    "input": "input : list = [0, 2, 4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(drop([0, 2, 4, 3],2))",
    "io_inp": [
      0,
      2,
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n([-4, -4],1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-2, -4, -5, -1, -4, -2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -4, -5, -1, -4, -2],1)",
    "io_inp": [
      -2,
      -4,
      -5,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -5, 0, -1, 5, 4]\noutput : list = [1, 2, 5, 6, 10, 11]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(sort_des([-4, -5, 0, -1, 5, 4]),5),1),23))",
    "io_inp": [
      -4,
      -5,
      0,
      -1,
      5,
      4
    ],
    "io_out": [
      1,
      2,
      5,
      6,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(sort_des(input),5),1),23))"
  },
  {
    "input": "input : list = [5, 3, -1, -1, 0, -4]\noutput : list = [2, 5, 5, 6, 9, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_asc([5, 3, -1, -1, 0, -4])),-3),-3))",
    "io_inp": [
      5,
      3,
      -1,
      -1,
      0,
      -4
    ],
    "io_out": [
      2,
      5,
      5,
      6,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_asc(input)),-3),-3))"
  },
  {
    "input": "input : list = [1, 2, 1, -2, 3, -3]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(take([1, 2, 1, -2, 3, -3],2),3)),-2),-3)",
    "io_inp": [
      1,
      2,
      1,
      -2,
      3,
      -3
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(take(input,2),3)),-2),-3)"
  },
  {
    "input": "input : list = [-2, -1, 0, 5]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(take([-2, -1, 0, 5],2),-1))))",
    "io_inp": [
      -2,
      -1,
      0,
      5
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(take(input,2),-1))))"
  },
  {
    "input": "input : list = [5, -3, -3, 1, 0]\noutput : list = [-12, -12, 3, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(drop([5, -3, -3, 1, 0],1),5))),3)",
    "io_inp": [
      5,
      -3,
      -3,
      1,
      0
    ],
    "io_out": [
      -12,
      -12,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(drop(input,1),5))),3)"
  },
  {
    "input": "input : list = [4, -4, 1, 0, 4]\noutput : list = [-4, -36, -16, -20, -4]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n([4, -4, 1, 0, 4],-5),12),2),2)",
    "io_inp": [
      4,
      -4,
      1,
      0,
      4
    ],
    "io_out": [
      -4,
      -36,
      -16,
      -20,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(input,-5),12),2),2)"
  },
  {
    "input": "input : list = [2, 5, -4, 0, -2, 5]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 5, -4, 0, -2, 5],1)",
    "io_inp": [
      2,
      5,
      -4,
      0,
      -2,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 0, -5, 5]\noutput : list = [0, -10, -5, 0]",
    "output": "generated_output : list = reverse(take(add_n([5, 0, -5, 5],-5),9))",
    "io_inp": [
      5,
      0,
      -5,
      5
    ],
    "io_out": [
      0,
      -10,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-5),9))"
  },
  {
    "input": "input : list = [-2, 4, 1, 3, -1]\noutput : list = [-4, -8, -16, -24, -28]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(add_n([-2, 4, 1, 3, -1],-5)))),4)",
    "io_inp": [
      -2,
      4,
      1,
      3,
      -1
    ],
    "io_out": [
      -4,
      -8,
      -16,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(add_n(input,-5)))),4)"
  },
  {
    "input": "input : list = [1, 1, -4, 4]\noutput : list = [20, 80]",
    "output": "generated_output : list = take(drop(mul_n(sort_des(mul_n([1, 1, -4, 4],-4)),-5),2),42)",
    "io_inp": [
      1,
      1,
      -4,
      4
    ],
    "io_out": [
      20,
      80
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(sort_des(mul_n(input,-4)),-5),2),42)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(reverse([-5, -2]),-1),-3),-1))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(reverse(input),-1),-3),-1))"
  },
  {
    "input": "input : list = [2, -4, -4]\noutput : list = [7, 1, 1]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n([2, -4, -4],-5))),15)",
    "io_inp": [
      2,
      -4,
      -4
    ],
    "io_out": [
      7,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(input,-5))),15)"
  },
  {
    "input": "input : list = [-5, 3, 2, -3, 0, -2]\noutput : list = [1, -4, -1, -3]",
    "output": "generated_output : list = sub_n(drop([-5, 3, 2, -3, 0, -2],2),1)",
    "io_inp": [
      -5,
      3,
      2,
      -3,
      0,
      -2
    ],
    "io_out": [
      1,
      -4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),1)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([1, -4])))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [2, -5, 1, -1, 5, -5]\noutput : list = [2, -5, 1, -1, 5, -5]",
    "output": "generated_output : list = take(sub_n(add_n([2, -5, 1, -1, 5, -5],2),2),6)",
    "io_inp": [
      2,
      -5,
      1,
      -1,
      5,
      -5
    ],
    "io_out": [
      2,
      -5,
      1,
      -1,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,2),2),6)"
  },
  {
    "input": "input : list = [-5, 3, 4, 0, -3, -1]\noutput : list = [-12, -10, -8, -7, -4, -3]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(add_n([-5, 3, 4, 0, -3, -1],-4))),3),25)",
    "io_inp": [
      -5,
      3,
      4,
      0,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -10,
      -8,
      -7,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(add_n(input,-4))),3),25)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [336, 216]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(drop([5, 5, 3],1),-5),3),4),-3)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      336,
      216
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(drop(input,1),-5),3),4),-3)"
  },
  {
    "input": "input : list = [-2, -3, -5, 1, 2, -3]\noutput : list = [-5, -6, -8, -2, -1, -6]",
    "output": "generated_output : list = add_n([-2, -3, -5, 1, 2, -3],-3)",
    "io_inp": [
      -2,
      -3,
      -5,
      1,
      2,
      -3
    ],
    "io_out": [
      -5,
      -6,
      -8,
      -2,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, 0, 0, 1, 3, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(sort_des([3, 0, 0, 1, 3, 3]),1)),-2),1)",
    "io_inp": [
      3,
      0,
      0,
      1,
      3,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(sort_des(input),1)),-2),1)"
  },
  {
    "input": "input : list = [3, 2, 2, -1, -1, -5]\noutput : list = [-5, -1, -1, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(drop([3, 2, 2, -1, -1, -5],2)))))",
    "io_inp": [
      3,
      2,
      2,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = drop([-3, -5, 1],1)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 5, -2, 3, -5, -1]\noutput : list = [20, 12, -4, -8, -20]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(drop([-5, 5, -2, 3, -5, -1],1))),4))",
    "io_inp": [
      -5,
      5,
      -2,
      3,
      -5,
      -1
    ],
    "io_out": [
      20,
      12,
      -4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(drop(input,1))),4))"
  },
  {
    "input": "input : list = [-3, 4, -3, 1, -5]\noutput : list = [4, 1, -3, -3, -5]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc([-3, 4, -3, 1, -5]),1),31))",
    "io_inp": [
      -3,
      4,
      -3,
      1,
      -5
    ],
    "io_out": [
      4,
      1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(input),1),31))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-18, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse([5, -2])),4),3))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -18,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse(input)),4),3))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-3, 5])))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [2, 0, -1]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(drop(sort_asc([2, 0, -1]),2),3)),4)",
    "io_inp": [
      2,
      0,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(drop(sort_asc(input),2),3)),4)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [2, -2]",
    "output": "generated_output : list = add_n([1, -3],1)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, 0, 1, 2, -2]\noutput : list = [-40, 20, 40]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(drop([0, 0, 1, 2, -2],2),-4),24),-5))",
    "io_inp": [
      0,
      0,
      1,
      2,
      -2
    ],
    "io_out": [
      -40,
      20,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(drop(input,2),-4),24),-5))"
  },
  {
    "input": "input : list = [-1, 5, -2, 3, -2, 4]\noutput : list = [-12, 6, -9, 6, -15, 3]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse([-1, 5, -2, 3, -2, 4]),18),-1),3)",
    "io_inp": [
      -1,
      5,
      -2,
      3,
      -2,
      4
    ],
    "io_out": [
      -12,
      6,
      -9,
      6,
      -15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(input),18),-1),3)"
  },
  {
    "input": "input : list = [1, -3, 0, 3, 1, -3]\noutput : list = [8, 2, 2, -1, -10, -10]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n(sort_asc([1, -3, 0, 3, 1, -3]),-2),3)),-5)",
    "io_inp": [
      1,
      -3,
      0,
      3,
      1,
      -3
    ],
    "io_out": [
      8,
      2,
      2,
      -1,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(sort_asc(input),-2),3)),-5)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(add_n([-4, 0],3)))))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [3, -4, 5, -5]\noutput : list = [0, -4, -18, -20]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(sort_asc([3, -4, 5, -5]),5),9)),2)",
    "io_inp": [
      3,
      -4,
      5,
      -5
    ],
    "io_out": [
      0,
      -4,
      -18,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(sort_asc(input),5),9)),2)"
  },
  {
    "input": "input : list = [2, 2, -3, 2]\noutput : list = [7, 7, -13, 7]",
    "output": "generated_output : list = sub_n(mul_n([2, 2, -3, 2],4),1)",
    "io_inp": [
      2,
      2,
      -3,
      2
    ],
    "io_out": [
      7,
      7,
      -13,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),1)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-3, -2, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(sort_asc([-3, 5, -4]),12))),1)",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(sort_asc(input),12))),1)"
  },
  {
    "input": "input : list = [5, -5, -5, -3]\noutput : list = [10, 10, 8, 0]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(mul_n([5, -5, -5, -3],-1))),5))",
    "io_inp": [
      5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      10,
      10,
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(mul_n(input,-1))),5))"
  },
  {
    "input": "input : list = [-5, -5, 3, 4]\noutput : list = [-4, -4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(sub_n([-5, -5, 3, 4],-1)))))",
    "io_inp": [
      -5,
      -5,
      3,
      4
    ],
    "io_out": [
      -4,
      -4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [-4, -2, 4, 4, 3]\noutput : list = [16, 8, -16, -16, -12]",
    "output": "generated_output : list = mul_n([-4, -2, 4, 4, 3],-4)",
    "io_inp": [
      -4,
      -2,
      4,
      4,
      3
    ],
    "io_out": [
      16,
      8,
      -16,
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -2, 2, -2, -3, -2]\noutput : list = [-40, -20, 20, -20, -30, -20]",
    "output": "generated_output : list = mul_n(take(mul_n([-4, -2, 2, -2, -3, -2],2),14),5)",
    "io_inp": [
      -4,
      -2,
      2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -40,
      -20,
      20,
      -20,
      -30,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,2),14),5)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [9, 2]",
    "output": "generated_output : list = sub_n(sort_des([5, -2]),-4)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-1, 1, 5, 4]\noutput : list = [-4, 4, 20, 16]",
    "output": "generated_output : list = mul_n([-1, 1, 5, 4],4)",
    "io_inp": [
      -1,
      1,
      5,
      4
    ],
    "io_out": [
      -4,
      4,
      20,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [0, -1, -8]",
    "output": "generated_output : list = add_n(sort_des(take(sub_n(add_n([-3, 5, 4],2),3),3)),-4)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      0,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sub_n(add_n(input,2),3),3)),-4)"
  },
  {
    "input": "input : list = [1, -1, -2, -3, -1, -5]\noutput : list = [5, 3, 2, 1, 3, -1]",
    "output": "generated_output : list = add_n([1, -1, -2, -3, -1, -5],4)",
    "io_inp": [
      1,
      -1,
      -2,
      -3,
      -1,
      -5
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, -1, -3]\noutput : list = [-12, -8, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(add_n([5, -1, -3],-2),1)),2))",
    "io_inp": [
      5,
      -1,
      -3
    ],
    "io_out": [
      -12,
      -8,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(add_n(input,-2),1)),2))"
  },
  {
    "input": "input : list = [4, 3, 1, -5, 0]\noutput : list = [6]",
    "output": "generated_output : list = add_n(take([4, 3, 1, -5, 0],1),2)",
    "io_inp": [
      4,
      3,
      1,
      -5,
      0
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),2)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-17, -15]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(add_n([-2, -4],-3),4),-3),-3))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -17,
      -15
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(add_n(input,-3),4),-3),-3))"
  },
  {
    "input": "input : list = [1, 0, 5, -4, -1]\noutput : list = [4, 1, 10, 5, 6]",
    "output": "generated_output : list = reverse(add_n([1, 0, 5, -4, -1],5))",
    "io_inp": [
      1,
      0,
      5,
      -4,
      -1
    ],
    "io_out": [
      4,
      1,
      10,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [5, 5, 0]\noutput : list = [-11, -16]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(drop(sub_n([5, 5, 0],4),1),4),3),5)",
    "io_inp": [
      5,
      5,
      0
    ],
    "io_out": [
      -11,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(drop(sub_n(input,4),1),4),3),5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [11, 16]",
    "output": "generated_output : list = sort_asc(add_n(take(mul_n(reverse([2, 3]),5),21),1))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      11,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(mul_n(reverse(input),5),21),1))"
  },
  {
    "input": "input : list = [-4, -4, -1, -1]\noutput : list = [-12, -12, -24]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(drop([-4, -4, -1, -1],1),2))),4)",
    "io_inp": [
      -4,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(drop(input,1),2))),4)"
  },
  {
    "input": "input : list = [0, -3, 3, 2]\noutput : list = [-9, -12, -6, -7]",
    "output": "generated_output : list = sub_n(take(sub_n([0, -3, 3, 2],4),18),5)",
    "io_inp": [
      0,
      -3,
      3,
      2
    ],
    "io_out": [
      -9,
      -12,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,4),18),5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(take(take(sort_des([-5, 3]),4),21))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(input),4),21))"
  },
  {
    "input": "input : list = [0, -2, 3, -3, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = take(drop([0, -2, 3, -3, 3, -1],4),13)",
    "io_inp": [
      0,
      -2,
      3,
      -3,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(input,4),13)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-5, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(add_n(reverse([-3, -2]),-4))),1)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(add_n(reverse(input),-4))),1)"
  },
  {
    "input": "input : list = [-4, 0, 4, 3]\noutput : list = [1, 9, 15, 17]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(sort_des([-4, 0, 4, 3]),2)),2),5)",
    "io_inp": [
      -4,
      0,
      4,
      3
    ],
    "io_out": [
      1,
      9,
      15,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(sort_des(input),2)),2),5)"
  },
  {
    "input": "input : list = [1, 4, 5, -1, 5]\noutput : list = [-50, -50, -40, -10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(mul_n([1, 4, 5, -1, 5],-5))),2))",
    "io_inp": [
      1,
      4,
      5,
      -1,
      5
    ],
    "io_out": [
      -50,
      -50,
      -40,
      -10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(mul_n(input,-5))),2))"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [-12, -11, -14]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(add_n([-1, 0, -3],-5)),2),-4))",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      -12,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(add_n(input,-5)),2),-4))"
  },
  {
    "input": "input : list = [3, -3, 5, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(take([3, -3, 5, -4],2)))),1)",
    "io_inp": [
      3,
      -3,
      5,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(take(input,2)))),1)"
  },
  {
    "input": "input : list = [3, -3, -2, -3]\noutput : list = [-3, -2, -3]",
    "output": "generated_output : list = drop([3, -3, -2, -3],1)",
    "io_inp": [
      3,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 0, -3, 5, -5, -4]\noutput : list = [-1, -5, -11, 5, -15, -13]",
    "output": "generated_output : list = sub_n(mul_n([2, 0, -3, 5, -5, -4],2),5)",
    "io_inp": [
      2,
      0,
      -3,
      5,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -5,
      -11,
      5,
      -15,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),5)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [0]",
    "output": "generated_output : list = take(mul_n(sort_asc(take([0, 5, 5],1)),-2),22)",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(input,1)),-2),22)"
  },
  {
    "input": "input : list = [-3, 2, -4, -2, -3, 1]\noutput : list = [1, -3, -2, -4]",
    "output": "generated_output : list = reverse(drop([-3, 2, -4, -2, -3, 1],2))",
    "io_inp": [
      -3,
      2,
      -4,
      -2,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = drop([1, 2, -3],1)",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(sort_asc([0, -2, 2]),12))))",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(sort_asc(input),12))))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-16]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sub_n([-5, 3],1),2),1),4),2)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sub_n(input,1),2),1),4),2)"
  },
  {
    "input": "input : list = [3, -1, 1, -5, -3]\noutput : list = [-6, -8, -2, -4, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(reverse([3, -1, 1, -5, -3]),-2),1),-1),-5)",
    "io_inp": [
      3,
      -1,
      1,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -8,
      -2,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(reverse(input),-2),1),-1),-5)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-27, -27]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(add_n([3, 3],1))),-5),-3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -27,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(add_n(input,1))),-5),-3)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-12, 0, -20]",
    "output": "generated_output : list = reverse(reverse(take(take(mul_n([-3, 0, -5],4),11),18)))",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -12,
      0,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(mul_n(input,4),11),18)))"
  },
  {
    "input": "input : list = [-1, -2, 3, -3]\noutput : list = [10, 6, 5, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_des([-1, -2, 3, -3]))),-2),-5)",
    "io_inp": [
      -1,
      -2,
      3,
      -3
    ],
    "io_out": [
      10,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_des(input))),-2),-5)"
  },
  {
    "input": "input : list = [1, -5, 0, -4]\noutput : list = [4, 5, 9, 10]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(add_n([1, -5, 0, -4],5)))),4)",
    "io_inp": [
      1,
      -5,
      0,
      -4
    ],
    "io_out": [
      4,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(add_n(input,5)))),4)"
  },
  {
    "input": "input : list = [-1, -1, -2, 1, -3, 4]\noutput : list = [2]",
    "output": "generated_output : list = add_n(take([-1, -1, -2, 1, -3, 4],1),3)",
    "io_inp": [
      -1,
      -1,
      -2,
      1,
      -3,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take(add_n(sub_n(add_n([-2, 2],-3),2),4),27)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(input,-3),2),4),27)"
  },
  {
    "input": "input : list = [-5, -5, 0, 4, 5]\noutput : list = [15, 12, 0, -15, -15]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc([-5, -5, 0, 4, 5]))),1),3)",
    "io_inp": [
      -5,
      -5,
      0,
      4,
      5
    ],
    "io_out": [
      15,
      12,
      0,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc(input))),1),3)"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [10, 7, 3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(sub_n([1, -3, 4],1)),5),-2))",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      10,
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(sub_n(input,1)),5),-2))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-5, -5],2)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,2)))"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [40, -24, -40]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(sort_des([5, -3, -5]))),2),4)",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      40,
      -24,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(sort_des(input))),2),4)"
  },
  {
    "input": "input : list = [4, 1, -5, -4]\noutput : list = [7, 4, -2, -1]",
    "output": "generated_output : list = sub_n([4, 1, -5, -4],-3)",
    "io_inp": [
      4,
      1,
      -5,
      -4
    ],
    "io_out": [
      7,
      4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [9, 4]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(sort_des([-5, 0]),4)),-1),-4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(sort_des(input),4)),-1),-4)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [-11, 10]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(drop([-2, 5, -2],1),3),26),-5))",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      -11,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(drop(input,1),3),26),-5))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [20, 160]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(mul_n(add_n([-4, 3],-3),5),5)),-4)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      20,
      160
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(mul_n(add_n(input,-3),5),5)),-4)"
  },
  {
    "input": "input : list = [-5, -3, 4, -3, -3]\noutput : list = [-2, 0, 7, 0, 0]",
    "output": "generated_output : list = sub_n(sub_n([-5, -3, 4, -3, -3],-4),1)",
    "io_inp": [
      -5,
      -3,
      4,
      -3,
      -3
    ],
    "io_out": [
      -2,
      0,
      7,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),1)"
  },
  {
    "input": "input : list = [0, 1, 0, 3, 0, 5]\noutput : list = [3, 4, 3, 6, 3, 8]",
    "output": "generated_output : list = sub_n([0, 1, 0, 3, 0, 5],-3)",
    "io_inp": [
      0,
      1,
      0,
      3,
      0,
      5
    ],
    "io_out": [
      3,
      4,
      3,
      6,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [8, 6, -6]",
    "output": "generated_output : list = mul_n([-4, -3, 3],-2)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      8,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, -1, -5, -5, 0, -1]\noutput : list = [3, 0, -1, -1, -5, -5]",
    "output": "generated_output : list = sort_des([3, -1, -5, -5, 0, -1])",
    "io_inp": [
      3,
      -1,
      -5,
      -5,
      0,
      -1
    ],
    "io_out": [
      3,
      0,
      -1,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, 3, 4, -3]\noutput : list = [4, 3, 0, -3, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(sub_n([-3, 0, 3, 4, -3],5),5))),5)",
    "io_inp": [
      -3,
      0,
      3,
      4,
      -3
    ],
    "io_out": [
      4,
      3,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(sub_n(input,5),5))),5)"
  },
  {
    "input": "input : list = [-2, -3, 4, 3, 2, -2]\noutput : list = [-2, -3, 4, 3, 2, -2]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(add_n([-2, -3, 4, 3, 2, -2],2),6),2)))",
    "io_inp": [
      -2,
      -3,
      4,
      3,
      2,
      -2
    ],
    "io_out": [
      -2,
      -3,
      4,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(add_n(input,2),6),2)))"
  },
  {
    "input": "input : list = [1, 0, 3, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(take([1, 0, 3, 0],2)))))",
    "io_inp": [
      1,
      0,
      3,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [2, -4, -2, -1, 4]\noutput : list = [7, 5, 2, 1, -1]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(sort_asc([2, -4, -2, -1, 4])),-3),1),29)",
    "io_inp": [
      2,
      -4,
      -2,
      -1,
      4
    ],
    "io_out": [
      7,
      5,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(sort_asc(input)),-3),1),29)"
  },
  {
    "input": "input : list = [-1, 5, 2, 4, 4, 3]\noutput : list = [5, -1, 2, 0, 0, 1]",
    "output": "generated_output : list = add_n(mul_n([-1, 5, 2, 4, 4, 3],-1),4)",
    "io_inp": [
      -1,
      5,
      2,
      4,
      4,
      3
    ],
    "io_out": [
      5,
      -1,
      2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),4)"
  },
  {
    "input": "input : list = [-2, -3, -1, 5]\noutput : list = [-3, -1, 5]",
    "output": "generated_output : list = drop([-2, -3, -1, 5],1)",
    "io_inp": [
      -2,
      -3,
      -1,
      5
    ],
    "io_out": [
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 2, 2, 3, 2, -5]\noutput : list = [-20, -15, -15, -15, 20, 20]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_asc([-5, 2, 2, 3, 2, -5]),-1))),-5)",
    "io_inp": [
      -5,
      2,
      2,
      3,
      2,
      -5
    ],
    "io_out": [
      -20,
      -15,
      -15,
      -15,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_asc(input),-1))),-5)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [3, -3]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(reverse([-1, 5])),-1),1),20)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(reverse(input)),-1),1),20)"
  },
  {
    "input": "input : list = [-3, -5, -4, 3, 0, 3]\noutput : list = [-6, -8, -7, 0, -3, 0]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(add_n([-3, -5, -4, 3, 0, 3],3),-5),1),-3),4)",
    "io_inp": [
      -3,
      -5,
      -4,
      3,
      0,
      3
    ],
    "io_out": [
      -6,
      -8,
      -7,
      0,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(add_n(input,3),-5),1),-3),4)"
  },
  {
    "input": "input : list = [-2, -4, 1, 4]\noutput : list = [-8, -4, 2, 8]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-2, -4, 1, 4],2)))",
    "io_inp": [
      -2,
      -4,
      1,
      4
    ],
    "io_out": [
      -8,
      -4,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,2)))"
  },
  {
    "input": "input : list = [-2, 3, 3, -2]\noutput : list = [-38, 62, 62, -38]",
    "output": "generated_output : list = take(sub_n(mul_n(take(mul_n([-2, 3, 3, -2],-4),4),-5),-2),8)",
    "io_inp": [
      -2,
      3,
      3,
      -2
    ],
    "io_out": [
      -38,
      62,
      62,
      -38
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(mul_n(input,-4),4),-5),-2),8)"
  },
  {
    "input": "input : list = [-2, -1, -1, 1, 5, 4]\noutput : list = [12, 11, 8, 6, 6, 5]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(reverse([-2, -1, -1, 1, 5, 4]),-2),5),40))",
    "io_inp": [
      -2,
      -1,
      -1,
      1,
      5,
      4
    ],
    "io_out": [
      12,
      11,
      8,
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(reverse(input),-2),5),40))"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [20, -15, -10]",
    "output": "generated_output : list = reverse(mul_n(reverse([4, -3, -2]),5))",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      20,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [2, 5, -1, -4]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(take([2, 5, -1, -4],1),2))))",
    "io_inp": [
      2,
      5,
      -1,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(take(input,1),2))))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [30, 0]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-1, 5]),5),-5)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      30,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),5),-5)"
  },
  {
    "input": "input : list = [-5, 5, 5, 4, -5, 3]\noutput : list = [-12, -12, -4, -3, -2, -2]",
    "output": "generated_output : list = sub_n(sort_asc(take(add_n(add_n([-5, 5, 5, 4, -5, 3],3),-5),33)),5)",
    "io_inp": [
      -5,
      5,
      5,
      4,
      -5,
      3
    ],
    "io_out": [
      -12,
      -12,
      -4,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(add_n(add_n(input,3),-5),33)),5)"
  },
  {
    "input": "input : list = [-2, 4, 2, -1, -3]\noutput : list = [-9, 0, 6]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(drop([-2, 4, 2, -1, -3],2),-1),-3)))",
    "io_inp": [
      -2,
      4,
      2,
      -1,
      -3
    ],
    "io_out": [
      -9,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(drop(input,2),-1),-3)))"
  },
  {
    "input": "input : list = [0, -2, -2, 5]\noutput : list = [3, 3, 7, 17]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n([0, -2, -2, 5],-3),2)),1))",
    "io_inp": [
      0,
      -2,
      -2,
      5
    ],
    "io_out": [
      3,
      3,
      7,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n(input,-3),2)),1))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-15, 13]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(mul_n([-4, 3],-4),1)),-2),11)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -15,
      13
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(mul_n(input,-4),1)),-2),11)"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [-1, 3, 5]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(sub_n([1, 0, -2],-3),-2),3)),-1)",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(sub_n(input,-3),-2),3)),-1)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(drop([-1, -5, -4],1))",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-5, -1, -2, 1, 1, 0]\noutput : list = [1, 1, 0, -1, -2, -5]",
    "output": "generated_output : list = sort_des([-5, -1, -2, 1, 1, 0])",
    "io_inp": [
      -5,
      -1,
      -2,
      1,
      1,
      0
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -5, 5, -5]\noutput : list = [-45, -45, 3, 35]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(sort_asc([1, -5, 5, -5]),1),-4),-2),-5)",
    "io_inp": [
      1,
      -5,
      5,
      -5
    ],
    "io_out": [
      -45,
      -45,
      3,
      35
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(sort_asc(input),1),-4),-2),-5)"
  },
  {
    "input": "input : list = [-3, 0, -4, -4]\noutput : list = [-1, -1, 3, 0]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(reverse([-3, 0, -4, -4])),-3)),18)",
    "io_inp": [
      -3,
      0,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(reverse(input)),-3)),18)"
  },
  {
    "input": "input : list = [-3, 1, 0]\noutput : list = [-5, -1, -2]",
    "output": "generated_output : list = take(add_n(sub_n([-3, 1, 0],4),2),5)",
    "io_inp": [
      -3,
      1,
      0
    ],
    "io_out": [
      -5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,4),2),5)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n([-3, -3, -1],-3))",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-3))"
  },
  {
    "input": "input : list = [4, -5, 3, -1]\noutput : list = [-9, -5, -1, 0]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(add_n([4, -5, 3, -1],1),5)),21))",
    "io_inp": [
      4,
      -5,
      3,
      -1
    ],
    "io_out": [
      -9,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(add_n(input,1),5)),21))"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [-15, -15, 15]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(sort_des([-5, 5, 5]),5),12),5),-3)",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      -15,
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(sort_des(input),5),12),5),-3)"
  },
  {
    "input": "input : list = [2, 2, -2, 0]\noutput : list = [9, 9, 15, 21]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n([2, 2, -2, 0],5)),-3))",
    "io_inp": [
      2,
      2,
      -2,
      0
    ],
    "io_out": [
      9,
      9,
      15,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(input,5)),-3))"
  },
  {
    "input": "input : list = [5, 5, -1, 1, 4]\noutput : list = [0, -3, -5, 1, 1]",
    "output": "generated_output : list = reverse(add_n([5, 5, -1, 1, 4],-4))",
    "io_inp": [
      5,
      5,
      -1,
      1,
      4
    ],
    "io_out": [
      0,
      -3,
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [-1, -2, 2, -5, -3, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take([-1, -2, 2, -5, -3, 0],2)",
    "io_inp": [
      -1,
      -2,
      2,
      -5,
      -3,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -5, 4, 0]\noutput : list = [-6, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(drop([3, -5, 4, 0],1)),1)))",
    "io_inp": [
      3,
      -5,
      4,
      0
    ],
    "io_out": [
      -6,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(drop(input,1)),1)))"
  },
  {
    "input": "input : list = [-2, 3, -3, 2, 4]\noutput : list = [-30, -25, -20, 0, 5]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(add_n([-2, 3, -3, 2, 4],2),13)),-5),1)",
    "io_inp": [
      -2,
      3,
      -3,
      2,
      4
    ],
    "io_out": [
      -30,
      -25,
      -20,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(add_n(input,2),13)),-5),1)"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [16, 12, -4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(sort_des([3, -1, 4])),4)))",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      16,
      12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [4, 5, 4]\noutput : list = [-10]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(take([4, 5, 4],1),-3),2),-2))",
    "io_inp": [
      4,
      5,
      4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(take(input,1),-3),2),-2))"
  },
  {
    "input": "input : list = [-4, 0, 3, 1, -3]\noutput : list = [6, 4, 0]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sub_n([-4, 0, 3, 1, -3],-1)),3),2))",
    "io_inp": [
      -4,
      0,
      3,
      1,
      -3
    ],
    "io_out": [
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sub_n(input,-1)),3),2))"
  },
  {
    "input": "input : list = [-1, -4, 1, 3, -5, -3]\noutput : list = [3, 1, -1, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(reverse([-1, -4, 1, 3, -5, -3]),6))))",
    "io_inp": [
      -1,
      -4,
      1,
      3,
      -5,
      -3
    ],
    "io_out": [
      3,
      1,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(reverse(input),6))))"
  },
  {
    "input": "input : list = [3, 1, -5, 3]\noutput : list = [12]",
    "output": "generated_output : list = sort_asc(drop(mul_n(mul_n(sort_asc([3, 1, -5, 3]),4),1),3))",
    "io_inp": [
      3,
      1,
      -5,
      3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(mul_n(sort_asc(input),4),1),3))"
  },
  {
    "input": "input : list = [-2, 2, 2, -3, -5]\noutput : list = [-4, -2, -1, 3, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse([-2, 2, 2, -3, -5])),-1),-2)",
    "io_inp": [
      -2,
      2,
      2,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -2,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(input)),-1),-2)"
  },
  {
    "input": "input : list = [3, 5, 5, 1, -5, -1]\noutput : list = [-21, -27, -27, -15, 3, -9]",
    "output": "generated_output : list = mul_n(add_n([3, 5, 5, 1, -5, -1],4),-3)",
    "io_inp": [
      3,
      5,
      5,
      1,
      -5,
      -1
    ],
    "io_out": [
      -21,
      -27,
      -27,
      -15,
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),-3)"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [0, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(reverse([-4, 0, -5])))))",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc([2, 0]),1)),-3),4)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc(input),1)),-3),4)"
  },
  {
    "input": "input : list = [5, 4, 0, 1, -5]\noutput : list = [-105, -30, -15, 30, 45]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sub_n([5, 4, 0, 1, -5],2))),5),3)",
    "io_inp": [
      5,
      4,
      0,
      1,
      -5
    ],
    "io_out": [
      -105,
      -30,
      -15,
      30,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sub_n(input,2))),5),3)"
  },
  {
    "input": "input : list = [2, -4, -2, 3, 3, 1]\noutput : list = [-1, 5, 5, -10, -16, 2]",
    "output": "generated_output : list = take(reverse(add_n(mul_n([2, -4, -2, 3, 3, 1],3),-4)),44)",
    "io_inp": [
      2,
      -4,
      -2,
      3,
      3,
      1
    ],
    "io_out": [
      -1,
      5,
      5,
      -10,
      -16,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(input,3),-4)),44)"
  },
  {
    "input": "input : list = [4, 4, 3, -1]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(take([4, 4, 3, -1],1),-3),5),5),30)",
    "io_inp": [
      4,
      4,
      3,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(take(input,1),-3),5),5),30)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-4, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_asc([5, -5])))),-1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [4, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sort_des([-4, -2]),-2))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [4, 3, 3, -3, 1, 2]\noutput : list = [66, 34, 26, 18, 18, 10]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(add_n([4, 3, 3, -3, 1, 2],-5),-2),4)),-2)",
    "io_inp": [
      4,
      3,
      3,
      -3,
      1,
      2
    ],
    "io_out": [
      66,
      34,
      26,
      18,
      18,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(add_n(input,-5),-2),4)),-2)"
  },
  {
    "input": "input : list = [-2, -5, -3, 4, -4, -5]\noutput : list = [25, -5, -10, -15, -20, -20]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(reverse([-2, -5, -3, 4, -4, -5]))),5),-5)",
    "io_inp": [
      -2,
      -5,
      -3,
      4,
      -4,
      -5
    ],
    "io_out": [
      25,
      -5,
      -10,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(reverse(input))),5),-5)"
  },
  {
    "input": "input : list = [3, -3, 0, 0]\noutput : list = [4, 1, 1, -2]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(sort_asc([3, -3, 0, 0])),-1),1),-1)",
    "io_inp": [
      3,
      -3,
      0,
      0
    ],
    "io_out": [
      4,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(sort_asc(input)),-1),1),-1)"
  },
  {
    "input": "input : list = [3, -2, 1, -5, 1, -3]\noutput : list = [-5, -3, -2, 1, 1, 3]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(sort_asc([3, -2, 1, -5, 1, -3]))),10))",
    "io_inp": [
      3,
      -2,
      1,
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(sort_asc(input))),10))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(reverse([1, 0])))),37)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(reverse(input)))),37)"
  },
  {
    "input": "input : list = [-3, 5, 1, 2]\noutput : list = [-7, -1, 1, 9]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(mul_n([-3, 5, 1, 2],-2),-2)),5))",
    "io_inp": [
      -3,
      5,
      1,
      2
    ],
    "io_out": [
      -7,
      -1,
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(mul_n(input,-2),-2)),5))"
  },
  {
    "input": "input : list = [-1, 4, 1, 1, -5]\noutput : list = [4, 1, 1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(sort_des([-1, 4, 1, 1, -5])))))",
    "io_inp": [
      -1,
      4,
      1,
      1,
      -5
    ],
    "io_out": [
      4,
      1,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 0, -5, -3, -3, -3]\noutput : list = [-2, 0, 0, 0, 1, 3]",
    "output": "generated_output : list = take(reverse(take(sub_n(sort_des([-2, 0, -5, -3, -3, -3]),-3),34)),55)",
    "io_inp": [
      -2,
      0,
      -5,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -2,
      0,
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(sort_des(input),-3),34)),55)"
  },
  {
    "input": "input : list = [-2, -1, -1, 3, 2]\noutput : list = [-2, -1, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -1, -1, 3, 2]))",
    "io_inp": [
      -2,
      -1,
      -1,
      3,
      2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [11, 11, 8]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(reverse([4, 4, 1])),3),-4))",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      11,
      11,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(reverse(input)),3),-4))"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [-7, -9]",
    "output": "generated_output : list = take(take(take(sub_n(drop([1, -2, -4],1),5),20),23),42)",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(drop(input,1),5),20),23),42)"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [-11, -4, -2]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sub_n([-5, 2, 4],5),4),-4),5),4)",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      -11,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sub_n(input,5),4),-4),5),4)"
  },
  {
    "input": "input : list = [3, 4, 1, 3, -4, -2]\noutput : list = [16, 11, 11, 1, -14, -24]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(sort_des([3, 4, 1, 3, -4, -2]),10),5),-4),1)",
    "io_inp": [
      3,
      4,
      1,
      3,
      -4,
      -2
    ],
    "io_out": [
      16,
      11,
      11,
      1,
      -14,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(sort_des(input),10),5),-4),1)"
  },
  {
    "input": "input : list = [2, -2, 4]\noutput : list = [4, -2, 2]",
    "output": "generated_output : list = reverse(reverse(reverse([2, -2, 4])))",
    "io_inp": [
      2,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [2, -1, 4, 3, -2, -2]\noutput : list = [27, 22, 17, 2, -3, -3]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des([2, -1, 4, 3, -2, -2])),1),5),-2)",
    "io_inp": [
      2,
      -1,
      4,
      3,
      -2,
      -2
    ],
    "io_out": [
      27,
      22,
      17,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des(input)),1),5),-2)"
  },
  {
    "input": "input : list = [0, 0, 1, 0, 1]\noutput : list = [-8, -8, -7, -8, -7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(add_n([0, 0, 1, 0, 1],-2),4),-3),1),-2)",
    "io_inp": [
      0,
      0,
      1,
      0,
      1
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(add_n(input,-2),4),-3),1),-2)"
  },
  {
    "input": "input : list = [3, 4, -3]\noutput : list = [-3, -4, 3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(mul_n([3, 4, -3],-1)),1),-1))",
    "io_inp": [
      3,
      4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(mul_n(input,-1)),1),-1))"
  },
  {
    "input": "input : list = [-2, 3, 3, 2]\noutput : list = [1, 1, 0, -4]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(add_n([-2, 3, 3, 2],2),-5),1)),31)",
    "io_inp": [
      -2,
      3,
      3,
      2
    ],
    "io_out": [
      1,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(add_n(input,2),-5),1)),31)"
  },
  {
    "input": "input : list = [3, -2, 2, -4, -3]\noutput : list = [16, 12, 8, -8, -12]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse([3, -2, 2, -4, -3])),-4),10)",
    "io_inp": [
      3,
      -2,
      2,
      -4,
      -3
    ],
    "io_out": [
      16,
      12,
      8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(input)),-4),10)"
  },
  {
    "input": "input : list = [5, 5, 1, -2, 5]\noutput : list = [5, 5, 5, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc([5, 5, 1, -2, 5]))",
    "io_inp": [
      5,
      5,
      1,
      -2,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [-13, -5]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(sort_des([4, 4, -4])),-5),4),2)",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      -13,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(sort_des(input)),-5),4),2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([2, 0]))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, -2, 3, 5]\noutput : list = [1, 1, 3, 7, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(mul_n([-1, 5, -2, 3, 5],-1),3)),-2),-5)",
    "io_inp": [
      -1,
      5,
      -2,
      3,
      5
    ],
    "io_out": [
      1,
      1,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(mul_n(input,-1),3)),-2),-5)"
  },
  {
    "input": "input : list = [-2, -5, 5, -5, -5]\noutput : list = [-3, -9, 11, -9, -9]",
    "output": "generated_output : list = sub_n(mul_n([-2, -5, 5, -5, -5],2),-1)",
    "io_inp": [
      -2,
      -5,
      5,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -9,
      11,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-1)"
  },
  {
    "input": "input : list = [4, -5, 5, 1, -4, -1]\noutput : list = [-65, -53, -17, 7, 43, 55]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(mul_n([4, -5, 5, 1, -4, -1],3)),-4)),-5)",
    "io_inp": [
      4,
      -5,
      5,
      1,
      -4,
      -1
    ],
    "io_out": [
      -65,
      -53,
      -17,
      7,
      43,
      55
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(mul_n(input,3)),-4)),-5)"
  },
  {
    "input": "input : list = [5, -4, -2, 1, 5]\noutput : list = [3, 5, 8, 12, 12]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(reverse([5, -4, -2, 1, 5]),-3))),4)",
    "io_inp": [
      5,
      -4,
      -2,
      1,
      5
    ],
    "io_out": [
      3,
      5,
      8,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(reverse(input),-3))),4)"
  },
  {
    "input": "input : list = [-4, -2, 4, -5]\noutput : list = [3, -27, -37, -42]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des(sub_n([-4, -2, 4, -5],4)),5),-3),30)",
    "io_inp": [
      -4,
      -2,
      4,
      -5
    ],
    "io_out": [
      3,
      -27,
      -37,
      -42
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(sub_n(input,4)),5),-3),30)"
  },
  {
    "input": "input : list = [1, 3, 4, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(sort_des(take([1, 3, 4, 1],1)))",
    "io_inp": [
      1,
      3,
      4,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-5, -3, -3, -3]\noutput : list = [-2, -2, -2, -4]",
    "output": "generated_output : list = sort_des(add_n([-5, -3, -3, -3],1))",
    "io_inp": [
      -5,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [2, 4, 5, 3, -1]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(take([2, 4, 5, 3, -1],1),-2),-2)))",
    "io_inp": [
      2,
      4,
      5,
      3,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(take(input,1),-2),-2)))"
  },
  {
    "input": "input : list = [-3, -1, 4, -3, 2, 1]\noutput : list = [4, 5, 0, 7, 2, 0]",
    "output": "generated_output : list = reverse(sub_n([-3, -1, 4, -3, 2, 1],-3))",
    "io_inp": [
      -3,
      -1,
      4,
      -3,
      2,
      1
    ],
    "io_out": [
      4,
      5,
      0,
      7,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-25, -25, -20]",
    "output": "generated_output : list = mul_n([-5, -5, -4],5)",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -25,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, -4, -5, -4, -5, 5]\noutput : list = [5, 4, -4, -4, -5, -5]",
    "output": "generated_output : list = sort_des([4, -4, -5, -4, -5, 5])",
    "io_inp": [
      4,
      -4,
      -5,
      -4,
      -5,
      5
    ],
    "io_out": [
      5,
      4,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des([-3, -3])),9),1)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(input)),9),1)"
  },
  {
    "input": "input : list = [4, 2, 4, 2, 1]\noutput : list = [-1, -3, -1, -3, -4]",
    "output": "generated_output : list = sub_n(add_n([4, 2, 4, 2, 1],-2),3)",
    "io_inp": [
      4,
      2,
      4,
      2,
      1
    ],
    "io_out": [
      -1,
      -3,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-3, -3, -5, 4, 5, -4]\noutput : list = [-10, -9, -8, -8, -1, 0]",
    "output": "generated_output : list = mul_n(reverse(sub_n(reverse(sort_asc([-3, -3, -5, 4, 5, -4])),5)),1)",
    "io_inp": [
      -3,
      -3,
      -5,
      4,
      5,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -8,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(reverse(sort_asc(input)),5)),1)"
  },
  {
    "input": "input : list = [5, 4, 0, -1, -5]\noutput : list = [40, 24, 20, 4, 0]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sort_des([5, 4, 0, -1, -5]),5),-4)),1)",
    "io_inp": [
      5,
      4,
      0,
      -1,
      -5
    ],
    "io_out": [
      40,
      24,
      20,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sort_des(input),5),-4)),1)"
  },
  {
    "input": "input : list = [4, -1, 2, -3]\noutput : list = [12, 4, -8, -16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(sort_des([4, -1, 2, -3]),20))),-4)",
    "io_inp": [
      4,
      -1,
      2,
      -3
    ],
    "io_out": [
      12,
      4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(sort_des(input),20))),-4)"
  },
  {
    "input": "input : list = [-1, -5, 0, 0, 2]\noutput : list = [5, 25, 0, 0, -10]",
    "output": "generated_output : list = take(mul_n([-1, -5, 0, 0, 2],-5),17)",
    "io_inp": [
      -1,
      -5,
      0,
      0,
      2
    ],
    "io_out": [
      5,
      25,
      0,
      0,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),17)"
  },
  {
    "input": "input : list = [4, -3, 4, -4]\noutput : list = [-4, -3, 4, 4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc([4, -3, 4, -4])),20),12))",
    "io_inp": [
      4,
      -3,
      4,
      -4
    ],
    "io_out": [
      -4,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc(input)),20),12))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [14, 8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(reverse([2, -1]),2),5),3),-2)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      14,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(reverse(input),2),5),3),-2)"
  },
  {
    "input": "input : list = [-1, -1, 4, 5, -5, 5]\noutput : list = [-3, 1, 1, 6, 7, 7]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(sort_asc([-1, -1, 4, 5, -5, 5]))),2))",
    "io_inp": [
      -1,
      -1,
      4,
      5,
      -5,
      5
    ],
    "io_out": [
      -3,
      1,
      1,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [-5, -3, 0, -5]\noutput : list = [74]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(take([-5, -3, 0, -5],1),5),-3),-1))",
    "io_inp": [
      -5,
      -3,
      0,
      -5
    ],
    "io_out": [
      74
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(take(input,1),5),-3),-1))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-12, -20]",
    "output": "generated_output : list = take(mul_n(mul_n([3, 5],-1),4),18)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -12,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-1),4),18)"
  },
  {
    "input": "input : list = [0, 0, 2, -4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(take([0, 0, 2, -4, 4],2))),19),-4)",
    "io_inp": [
      0,
      0,
      2,
      -4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(take(input,2))),19),-4)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [1, -5]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_asc([-4, 2]),1)),23),28)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_asc(input),1)),23),28)"
  },
  {
    "input": "input : list = [-2, 1, 5, -2]\noutput : list = [-3, -3, 0, 4]",
    "output": "generated_output : list = add_n(sort_asc([-2, 1, 5, -2]),-1)",
    "io_inp": [
      -2,
      1,
      5,
      -2
    ],
    "io_out": [
      -3,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-6, 6]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n([-2, 2],-2),2),-3))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(input,-2),2),-3))"
  },
  {
    "input": "input : list = [-5, 5, -1, -2]\noutput : list = [-10, 2, 4, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(sort_asc([-5, 5, -1, -2])),15),-2))",
    "io_inp": [
      -5,
      5,
      -1,
      -2
    ],
    "io_out": [
      -10,
      2,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(sort_asc(input)),15),-2))"
  },
  {
    "input": "input : list = [3, -1, -5]\noutput : list = [15, -5, -25]",
    "output": "generated_output : list = mul_n([3, -1, -5],5)",
    "io_inp": [
      3,
      -1,
      -5
    ],
    "io_out": [
      15,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -3, -4, 1]\noutput : list = [-10, 15, 20, -5]",
    "output": "generated_output : list = mul_n([2, -3, -4, 1],-5)",
    "io_inp": [
      2,
      -3,
      -4,
      1
    ],
    "io_out": [
      -10,
      15,
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(add_n([-1, 3],-5),-3),2),-2))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(add_n(input,-5),-3),2),-2))"
  },
  {
    "input": "input : list = [-3, -4, 0, -4, 5]\noutput : list = [5, 0, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(take(drop([-3, -4, 0, -4, 5],1),11)))",
    "io_inp": [
      -3,
      -4,
      0,
      -4,
      5
    ],
    "io_out": [
      5,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(drop(input,1),11)))"
  },
  {
    "input": "input : list = [0, 1, -2, 2, 3, -5]\noutput : list = [17, 5, -3, -7, -11, -15]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(mul_n([0, 1, -2, 2, 3, -5],2),-2),-3)))",
    "io_inp": [
      0,
      1,
      -2,
      2,
      3,
      -5
    ],
    "io_out": [
      17,
      5,
      -3,
      -7,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(mul_n(input,2),-2),-3)))"
  },
  {
    "input": "input : list = [2, 4, 4, 5, -4, -4]\noutput : list = [4, 6, 6, 7, -2, -2]",
    "output": "generated_output : list = sub_n([2, 4, 4, 5, -4, -4],-2)",
    "io_inp": [
      2,
      4,
      4,
      5,
      -4,
      -4
    ],
    "io_out": [
      4,
      6,
      6,
      7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, -2, -4, -5]\noutput : list = [3, -4, -6, -7]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_des([5, -2, -4, -5]))),1),-3)",
    "io_inp": [
      5,
      -2,
      -4,
      -5
    ],
    "io_out": [
      3,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_des(input))),1),-3)"
  },
  {
    "input": "input : list = [2, -3, -3, -5]\noutput : list = [-6, -4, -4, 1]",
    "output": "generated_output : list = reverse(add_n([2, -3, -3, -5],-1))",
    "io_inp": [
      2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-2, 0, -5, -5]\noutput : list = [-13, -13, -10, -8]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n([-2, 0, -5, -5],-5))),-3))",
    "io_inp": [
      -2,
      0,
      -5,
      -5
    ],
    "io_out": [
      -13,
      -13,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n(input,-5))),-3))"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(add_n([1, 2, 5],-1)))))",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 1, 1],1)",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 2, -4, 0, -2, -5]\noutput : list = [-2, -2, -1, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take(add_n([-5, 2, -4, 0, -2, -5],-2),24),4),-1))",
    "io_inp": [
      -5,
      2,
      -4,
      0,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(add_n(input,-2),24),4),-1))"
  },
  {
    "input": "input : list = [0, -5, -3, -1, -5]\noutput : list = [0, -8, -24, -40, -40]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(mul_n([0, -5, -3, -1, -5],2),4),5)),-5)",
    "io_inp": [
      0,
      -5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      0,
      -8,
      -24,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(mul_n(input,2),4),5)),-5)"
  },
  {
    "input": "input : list = [-4, -1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = drop([-4, -1, 4],1)",
    "io_inp": [
      -4,
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -5, -2, -5, -3]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(take([1, -5, -2, -5, -3],1),1)),-2),2)",
    "io_inp": [
      1,
      -5,
      -2,
      -5,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(take(input,1),1)),-2),2)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse([4, -1])",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2, -5, -5]\noutput : list = [0, -6, -9, -9]",
    "output": "generated_output : list = reverse(take(take(add_n(reverse([4, -2, -5, -5]),-4),22),24))",
    "io_inp": [
      4,
      -2,
      -5,
      -5
    ],
    "io_out": [
      0,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(reverse(input),-4),22),24))"
  },
  {
    "input": "input : list = [-1, 2, -3, 4, 1, 3]\noutput : list = [7, 6, 5, 4, 2, 0]",
    "output": "generated_output : list = add_n(sort_des(take(take(sort_des([-1, 2, -3, 4, 1, 3]),17),16)),3)",
    "io_inp": [
      -1,
      2,
      -3,
      4,
      1,
      3
    ],
    "io_out": [
      7,
      6,
      5,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sort_des(input),17),16)),3)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(mul_n(reverse([2, 1]),-2))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-10, -35]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sub_n([3, -2],5)),5)),1)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -10,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sub_n(input,5)),5)),1)"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [-5, -5, 5]",
    "output": "generated_output : list = take(sort_asc([5, -5, -5]),11)",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(mul_n(sub_n(drop(reverse([-1, 1]),1),-4),-1))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(drop(reverse(input),1),-4),-1))"
  },
  {
    "input": "input : list = [1, -1, -3, 5, -5]\noutput : list = [5, 1, -1, -3, -5]",
    "output": "generated_output : list = sort_des(reverse([1, -1, -3, 5, -5]))",
    "io_inp": [
      1,
      -1,
      -3,
      5,
      -5
    ],
    "io_out": [
      5,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-3, -3, 3, -5, -4]\noutput : list = [-15, -18, 6, -12, -12]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n([-3, -3, 3, -5, -4],3)),1),4)",
    "io_inp": [
      -3,
      -3,
      3,
      -5,
      -4
    ],
    "io_out": [
      -15,
      -18,
      6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(input,3)),1),4)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(sort_asc([0, 5, 5]),4))))",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [-5, 4, -2, 1, -1, 3]\noutput : list = [10, -5, -10, -20, -30, -35]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(sort_des([-5, 4, -2, 1, -1, 3])),3)),-5)",
    "io_inp": [
      -5,
      4,
      -2,
      1,
      -1,
      3
    ],
    "io_out": [
      10,
      -5,
      -10,
      -20,
      -30,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(sort_des(input)),3)),-5)"
  },
  {
    "input": "input : list = [-1, 1, -5, -2, 4, -1]\noutput : list = [2, -1, -3, -3, -4, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sort_asc([-1, 1, -5, -2, 4, -1]))),2))",
    "io_inp": [
      -1,
      1,
      -5,
      -2,
      4,
      -1
    ],
    "io_out": [
      2,
      -1,
      -3,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [2, -22]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(mul_n([-1, -4],-4),-5),-2)))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      2,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(mul_n(input,-4),-5),-2)))"
  },
  {
    "input": "input : list = [-1, -3, -4, -2, -5]\noutput : list = [-5, -4, -3, -2, -1]",
    "output": "generated_output : list = sort_asc([-1, -3, -4, -2, -5])",
    "io_inp": [
      -1,
      -3,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -2, -4, 5]\noutput : list = [-27, -27]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(take([-2, -2, -4, 5],2),-4),5),3))",
    "io_inp": [
      -2,
      -2,
      -4,
      5
    ],
    "io_out": [
      -27,
      -27
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(take(input,2),-4),5),3))"
  },
  {
    "input": "input : list = [4, -3, 2, -1, 1, 4]\noutput : list = [-16, -16, -8, -4, 4, 12]",
    "output": "generated_output : list = mul_n(take(take(take(sort_des([4, -3, 2, -1, 1, 4]),24),16),6),-4)",
    "io_inp": [
      4,
      -3,
      2,
      -1,
      1,
      4
    ],
    "io_out": [
      -16,
      -16,
      -8,
      -4,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(sort_des(input),24),16),6),-4)"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [-1, 0, 2]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(mul_n([4, 5, 2],-1)),4)),32)",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(mul_n(input,-1)),4)),32)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse([0, -4])",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0, -4, 3, -5, -5]\noutput : list = [-8, 0, -8, 6, -10, -10]",
    "output": "generated_output : list = mul_n([-4, 0, -4, 3, -5, -5],2)",
    "io_inp": [
      -4,
      0,
      -4,
      3,
      -5,
      -5
    ],
    "io_out": [
      -8,
      0,
      -8,
      6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, 5, 0, -5, 5]\noutput : list = [-9, 16, -9, -34, 16]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n([0, 5, 0, -5, 5],1),-5),-1),-4)",
    "io_inp": [
      0,
      5,
      0,
      -5,
      5
    ],
    "io_out": [
      -9,
      16,
      -9,
      -34,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(input,1),-5),-1),-4)"
  },
  {
    "input": "input : list = [-3, 3, -2, 4, 4, 1]\noutput : list = [10, 7, -2, -8, -11, -11]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(reverse([-3, 3, -2, 4, 4, 1]),-3)),-1))",
    "io_inp": [
      -3,
      3,
      -2,
      4,
      4,
      1
    ],
    "io_out": [
      10,
      7,
      -2,
      -8,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(reverse(input),-3)),-1))"
  },
  {
    "input": "input : list = [-1, -1, 3, -2, 1, -3]\noutput : list = [-8, -7, -6, -4, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(drop([-1, -1, 3, -2, 1, -3],1))),5))",
    "io_inp": [
      -1,
      -1,
      3,
      -2,
      1,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(drop(input,1))),5))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [3, -5]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(sort_des([-3, 5]))),1),2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(sort_des(input))),1),2)"
  },
  {
    "input": "input : list = [-3, -1, -5, -2, -1]\noutput : list = [20, 30, 10, 25, 30]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(add_n([-3, -1, -5, -2, -1],5),1),1),2),5)",
    "io_inp": [
      -3,
      -1,
      -5,
      -2,
      -1
    ],
    "io_out": [
      20,
      30,
      10,
      25,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(add_n(input,5),1),1),2),5)"
  },
  {
    "input": "input : list = [-4, -1, -5, 1, 1]\noutput : list = [-7, -4, -8, -2, -2]",
    "output": "generated_output : list = take(sub_n(reverse(reverse([-4, -1, -5, 1, 1])),3),14)",
    "io_inp": [
      -4,
      -1,
      -5,
      1,
      1
    ],
    "io_out": [
      -7,
      -4,
      -8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(input)),3),14)"
  },
  {
    "input": "input : list = [1, -4, -2, 3, 4, -4]\noutput : list = [4, 3, 1, -2, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_asc([1, -4, -2, 3, 4, -4])))))",
    "io_inp": [
      1,
      -4,
      -2,
      3,
      4,
      -4
    ],
    "io_out": [
      4,
      3,
      1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -3, 0, 5, 0]\noutput : list = [-3, 0, 0, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([5, -3, 0, 5, 0]))",
    "io_inp": [
      5,
      -3,
      0,
      5,
      0
    ],
    "io_out": [
      -3,
      0,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -4, -4, 0, -5, -5]\noutput : list = [0, 12, 12, 12, 15, 15]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des([-4, -4, -4, 0, -5, -5])),-3))",
    "io_inp": [
      -4,
      -4,
      -4,
      0,
      -5,
      -5
    ],
    "io_out": [
      0,
      12,
      12,
      12,
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(input)),-3))"
  },
  {
    "input": "input : list = [-4, -2, -1, -2, -1]\noutput : list = [-6, -4, -3, -4, -3]",
    "output": "generated_output : list = add_n([-4, -2, -1, -2, -1],-2)",
    "io_inp": [
      -4,
      -2,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [-5, -5, 0]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(reverse([4, -1, -1]))),-4),37)",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(reverse(input))),-4),37)"
  },
  {
    "input": "input : list = [0, 0, -4, 4, -4, -1]\noutput : list = [24, 8, 8, 4, -8, -8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(sub_n([0, 0, -4, 4, -4, -1],-2),-4))),-1)",
    "io_inp": [
      0,
      0,
      -4,
      4,
      -4,
      -1
    ],
    "io_out": [
      24,
      8,
      8,
      4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(sub_n(input,-2),-4))),-1)"
  },
  {
    "input": "input : list = [3, 0, 4, -5]\noutput : list = [4, 1, 5, -4]",
    "output": "generated_output : list = add_n([3, 0, 4, -5],1)",
    "io_inp": [
      3,
      0,
      4,
      -5
    ],
    "io_out": [
      4,
      1,
      5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, 2, 2, 1]\noutput : list = [0, 2, 2, 1]",
    "output": "generated_output : list = reverse(reverse([0, 2, 2, 1]))",
    "io_inp": [
      0,
      2,
      2,
      1
    ],
    "io_out": [
      0,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, 5]))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 1, 5, -5]\noutput : list = [-5, -1, 1, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse([-1, 1, 5, -5])),13))",
    "io_inp": [
      -1,
      1,
      5,
      -5
    ],
    "io_out": [
      -5,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(input)),13))"
  },
  {
    "input": "input : list = [0, -3, -3, 2, 5]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(take(sub_n(take(sort_asc([0, -3, -3, 2, 5]),2),1),33),-4)",
    "io_inp": [
      0,
      -3,
      -3,
      2,
      5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(sort_asc(input),2),1),33),-4)"
  },
  {
    "input": "input : list = [-2, 3, 5, 5, -2, 1]\noutput : list = [2, 2, 0, -2, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(sub_n([-2, 3, 5, 5, -2, 1],3)))))",
    "io_inp": [
      -2,
      3,
      5,
      5,
      -2,
      1
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [-2, 4, 4, -2]\noutput : list = [2, -4, -4, 2]",
    "output": "generated_output : list = mul_n([-2, 4, 4, -2],-1)",
    "io_inp": [
      -2,
      4,
      4,
      -2
    ],
    "io_out": [
      2,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [5, 20]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(reverse([-5, -2])),4),3),-5)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(reverse(input)),4),3),-5)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-9, -21]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_des([-4, -5]),-3),-4),1),-3)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -9,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_des(input),-3),-4),1),-3)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [6, -8]",
    "output": "generated_output : list = mul_n(sub_n([5, -2],2),2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),2)"
  },
  {
    "input": "input : list = [-2, -5, -3, 2, 2, -1]\noutput : list = [-9, -3, 0, 3, 12, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(add_n([-2, -5, -3, 2, 2, -1],2)))),3)",
    "io_inp": [
      -2,
      -5,
      -3,
      2,
      2,
      -1
    ],
    "io_out": [
      -9,
      -3,
      0,
      3,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(add_n(input,2)))),3)"
  },
  {
    "input": "input : list = [5, 3, 4, 4]\noutput : list = [0, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(reverse([5, 3, 4, 4]),5),14)))",
    "io_inp": [
      5,
      3,
      4,
      4
    ],
    "io_out": [
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(reverse(input),5),14)))"
  },
  {
    "input": "input : list = [3, -4, -3, -5, 4, -4]\noutput : list = [15, 12, 12, 9, -9, -12]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([3, -4, -3, -5, 4, -4])),-3)",
    "io_inp": [
      3,
      -4,
      -3,
      -5,
      4,
      -4
    ],
    "io_out": [
      15,
      12,
      12,
      9,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-3, 0, -1, -2]\noutput : list = [-12, -15, -18, -21]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des([-3, 0, -1, -2]),6),2),2),3)",
    "io_inp": [
      -3,
      0,
      -1,
      -2
    ],
    "io_out": [
      -12,
      -15,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des(input),6),2),2),3)"
  },
  {
    "input": "input : list = [4, 1, 5, -4]\noutput : list = [-36]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n([4, 1, 5, -4],3),-3),1))",
    "io_inp": [
      4,
      1,
      5,
      -4
    ],
    "io_out": [
      -36
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(input,3),-3),1))"
  },
  {
    "input": "input : list = [-1, 5, -5, 5, -2, -4]\noutput : list = [-36, -36, 0, 6, 18, 24]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(sort_des([-1, 5, -5, 5, -2, -4]),8),-1),-3),2)",
    "io_inp": [
      -1,
      5,
      -5,
      5,
      -2,
      -4
    ],
    "io_out": [
      -36,
      -36,
      0,
      6,
      18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(sort_des(input),8),-1),-3),2)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [0, 9]",
    "output": "generated_output : list = sub_n(sub_n([-5, 4],-4),-1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-1)"
  },
  {
    "input": "input : list = [2, -1, 4, 0, -1]\noutput : list = [16, 8, 0, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse([2, -1, 4, 0, -1]),4)))",
    "io_inp": [
      2,
      -1,
      4,
      0,
      -1
    ],
    "io_out": [
      16,
      8,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [-4, 3, 0, -4, 4, -4]\noutput : list = [-50, -50, -50, -2, 34, 46]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(sort_des([-4, 3, 0, -4, 4, -4]),-3)),-4),2)",
    "io_inp": [
      -4,
      3,
      0,
      -4,
      4,
      -4
    ],
    "io_out": [
      -50,
      -50,
      -50,
      -2,
      34,
      46
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(sort_des(input),-3)),-4),2)"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [-4, -6, -7]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n([1, -2, -1],-2)),3)))",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n(input,-2)),3)))"
  },
  {
    "input": "input : list = [-3, 2, -3, 3, 3]\noutput : list = [-36, -96, -36, -108, -108]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(add_n([-3, 2, -3, 3, 3],4),-1),1),-3),4)",
    "io_inp": [
      -3,
      2,
      -3,
      3,
      3
    ],
    "io_out": [
      -36,
      -96,
      -36,
      -108,
      -108
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(add_n(input,4),-1),1),-3),4)"
  },
  {
    "input": "input : list = [3, -4, -2, 0]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -4, -2, 0],1)",
    "io_inp": [
      3,
      -4,
      -2,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 4, 5, -1, -2]\noutput : list = [6, 5, -4]",
    "output": "generated_output : list = sort_des(add_n(take(take([-5, 4, 5, -1, -2],3),18),1))",
    "io_inp": [
      -5,
      4,
      5,
      -1,
      -2
    ],
    "io_out": [
      6,
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(input,3),18),1))"
  },
  {
    "input": "input : list = [-1, 3, -5, 1, -1, 3]\noutput : list = [3, 3, 1, -1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-1, 3, -5, 1, -1, 3]))",
    "io_inp": [
      -1,
      3,
      -5,
      1,
      -1,
      3
    ],
    "io_out": [
      3,
      3,
      1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 1, 5, 5, -3, 0]\noutput : list = [-15, 0, 5, 5, 25, 25]",
    "output": "generated_output : list = mul_n(sort_asc([1, 1, 5, 5, -3, 0]),5)",
    "io_inp": [
      1,
      1,
      5,
      5,
      -3,
      0
    ],
    "io_out": [
      -15,
      0,
      5,
      5,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-3, 5, 1, -2]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = add_n(sort_des(drop([-3, 5, 1, -2],1)),-1)",
    "io_inp": [
      -3,
      5,
      1,
      -2
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [1, -2, 1, 3, 1]\noutput : list = [-4, -1, -1, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(reverse([1, -2, 1, 3, 1])),-2)))",
    "io_inp": [
      1,
      -2,
      1,
      3,
      1
    ],
    "io_out": [
      -4,
      -1,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [1, 2, -4, -3, -3, -3]\noutput : list = [-3, -3, -3, -4, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, -4, -3, -3, -3])",
    "io_inp": [
      1,
      2,
      -4,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -4,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-4, -9]",
    "output": "generated_output : list = add_n(add_n(sub_n([3, -2],1),-2),-4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,1),-2),-4)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_asc([2, 3]),-5),5),-3),-3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_asc(input),-5),5),-3),-3)"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [2, 12, 12]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n([0, -2, -2],-5),-1),3),4)",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      2,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(input,-5),-1),3),4)"
  },
  {
    "input": "input : list = [-4, -1, 1, 3]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(drop([-4, -1, 1, 3],1)))),2)",
    "io_inp": [
      -4,
      -1,
      1,
      3
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [1, 1, 4, 5, 3, -1]\noutput : list = [1, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(take([1, 1, 4, 5, 3, -1],3)),-4)),-4)",
    "io_inp": [
      1,
      1,
      4,
      5,
      3,
      -1
    ],
    "io_out": [
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(take(input,3)),-4)),-4)"
  },
  {
    "input": "input : list = [2, 0, -5, -5, -2, 2]\noutput : list = [4, 0, -10, -10, -4, 4]",
    "output": "generated_output : list = mul_n(mul_n([2, 0, -5, -5, -2, 2],-1),-2)",
    "io_inp": [
      2,
      0,
      -5,
      -5,
      -2,
      2
    ],
    "io_out": [
      4,
      0,
      -10,
      -10,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),-2)"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [-3, -9, -9]",
    "output": "generated_output : list = add_n(mul_n([2, 5, 5],-2),1)",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      -3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),1)"
  },
  {
    "input": "input : list = [-1, -2, -4]\noutput : list = [5, 10, 20]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(mul_n([-1, -2, -4],-1))),5),20)",
    "io_inp": [
      -1,
      -2,
      -4
    ],
    "io_out": [
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(mul_n(input,-1))),5),20)"
  },
  {
    "input": "input : list = [3, 0, -3, -3]\noutput : list = [-30, -48, -48]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(drop([3, 0, -3, -3],1)),-5),-3),-2)",
    "io_inp": [
      3,
      0,
      -3,
      -3
    ],
    "io_out": [
      -30,
      -48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(drop(input,1)),-5),-3),-2)"
  },
  {
    "input": "input : list = [1, -3, 3, 0, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(drop([1, -3, 3, 0, 1],3)),3)),2)",
    "io_inp": [
      1,
      -3,
      3,
      0,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(drop(input,3)),3)),2)"
  },
  {
    "input": "input : list = [-1, -5, -3, -5, 1, -4]\noutput : list = [0, -2, 4, -1]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(reverse([-1, -5, -3, -5, 1, -4]),-1),2),4))",
    "io_inp": [
      -1,
      -5,
      -3,
      -5,
      1,
      -4
    ],
    "io_out": [
      0,
      -2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(reverse(input),-1),2),4))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-24, -6]",
    "output": "generated_output : list = take(take(mul_n(sort_des(mul_n([1, 4],2)),-3),6),33)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -24,
      -6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(mul_n(input,2)),-3),6),33)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des([-2, 3]),2)))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(input),2)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-8, -9]",
    "output": "generated_output : list = add_n([-4, -5],-4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc([5, 2]),5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),5))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n([0, 2],4)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, 5, 4, 4]\noutput : list = [12, 18, 15, 15]",
    "output": "generated_output : list = mul_n(add_n([3, 5, 4, 4],1),3)",
    "io_inp": [
      3,
      5,
      4,
      4
    ],
    "io_out": [
      12,
      18,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),3)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [3, 2, 2]",
    "output": "generated_output : list = sort_des([3, 2, 2])",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, -5, 5, -5, -5]\noutput : list = [-22, 28, 8, 23]",
    "output": "generated_output : list = add_n(mul_n(take(reverse(take([-4, -1, -5, 5, -5, -5],4)),9),-5),3)",
    "io_inp": [
      -4,
      -1,
      -5,
      5,
      -5,
      -5
    ],
    "io_out": [
      -22,
      28,
      8,
      23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(take(input,4)),9),-5),3)"
  },
  {
    "input": "input : list = [2, 4, -1, 4, 2]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(take([2, 4, -1, 4, 2],2),2),-4),-4),1)",
    "io_inp": [
      2,
      4,
      -1,
      4,
      2
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(take(input,2),2),-4),-4),1)"
  },
  {
    "input": "input : list = [4, 0, -2, 5]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(sort_asc([4, 0, -2, 5]),2))))",
    "io_inp": [
      4,
      0,
      -2,
      5
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [3, -2, 1, 4]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(drop([3, -2, 1, 4],2),17)),1))",
    "io_inp": [
      3,
      -2,
      1,
      4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(drop(input,2),17)),1))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(mul_n([1, -1],-4)))),1)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(mul_n(input,-4)))),1)"
  },
  {
    "input": "input : list = [1, -3, 4, -1]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(drop([1, -3, 4, -1],1)),-1),-2))",
    "io_inp": [
      1,
      -3,
      4,
      -1
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(drop(input,1)),-1),-2))"
  },
  {
    "input": "input : list = [0, 3, -3, 5]\noutput : list = [6, -12, -30, -42]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_des([0, 3, -3, 5]),2),-2)),3)",
    "io_inp": [
      0,
      3,
      -3,
      5
    ],
    "io_out": [
      6,
      -12,
      -30,
      -42
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_des(input),2),-2)),3)"
  },
  {
    "input": "input : list = [1, 0, -5, 3, 1]\noutput : list = [-8, -6, 4, -12, -8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([1, 0, -5, 3, 1],-5),2),-2)",
    "io_inp": [
      1,
      0,
      -5,
      3,
      1
    ],
    "io_out": [
      -8,
      -6,
      4,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,-5),2),-2)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [22, 12]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(mul_n([2, 4],5)),2)),3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      22,
      12
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(mul_n(input,5)),2)),3)"
  },
  {
    "input": "input : list = [-3, 3, -1]\noutput : list = [4, -2, -14]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc([-3, 3, -1]),-3),-4),1)",
    "io_inp": [
      -3,
      3,
      -1
    ],
    "io_out": [
      4,
      -2,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(input),-3),-4),1)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [1, -24]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-5, 0],5),-1))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      1,
      -24
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,5),-1))"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [-1, 1, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(reverse([0, 5, -2]),6),-1),8))",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(reverse(input),6),-1),8))"
  },
  {
    "input": "input : list = [2, 3, -2]\noutput : list = [-8, -12, 8]",
    "output": "generated_output : list = mul_n([2, 3, -2],-4)",
    "io_inp": [
      2,
      3,
      -2
    ],
    "io_out": [
      -8,
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-11, -3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sub_n(mul_n([5, 3],-4),-1),5)),-3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sub_n(mul_n(input,-4),-1),5)),-3)"
  },
  {
    "input": "input : list = [2, 1, 5, 4]\noutput : list = [-2, -4, -8, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(sort_des([2, 1, 5, 4]),14)),-2))",
    "io_inp": [
      2,
      1,
      5,
      4
    ],
    "io_out": [
      -2,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(sort_des(input),14)),-2))"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [14, 6, 4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n([1, 0, 5],3),-5),2))",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      14,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(input,3),-5),2))"
  },
  {
    "input": "input : list = [1, 4, 2, 3, 3]\noutput : list = [-3, 0, -2]",
    "output": "generated_output : list = take(add_n(take([1, 4, 2, 3, 3],3),-4),8)",
    "io_inp": [
      1,
      4,
      2,
      3,
      3
    ],
    "io_out": [
      -3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,3),-4),8)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(reverse([4, 5]),3)),4))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(reverse(input),3)),4))"
  },
  {
    "input": "input : list = [3, 1, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(drop([3, 1, 0, -5],2)),24)))",
    "io_inp": [
      3,
      1,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(drop(input,2)),24)))"
  },
  {
    "input": "input : list = [5, 1, -4, 0, 2]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = drop([5, 1, -4, 0, 2],2)",
    "io_inp": [
      5,
      1,
      -4,
      0,
      2
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [4]",
    "output": "generated_output : list = reverse(add_n(sub_n(take([-1, -5, 1],1),-4),1))",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(input,1),-4),1))"
  },
  {
    "input": "input : list = [-1, 5, -3, -5, -4]\noutput : list = [23, 28]",
    "output": "generated_output : list = sort_asc(add_n(reverse(drop(mul_n([-1, 5, -3, -5, -4],-5),3)),3))",
    "io_inp": [
      -1,
      5,
      -3,
      -5,
      -4
    ],
    "io_out": [
      23,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(drop(mul_n(input,-5),3)),3))"
  },
  {
    "input": "input : list = [2, 4, -3, 2, -3]\noutput : list = [-6, -6, -1, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(add_n([2, 4, -3, 2, -3],-3)))",
    "io_inp": [
      2,
      4,
      -3,
      2,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,-3)))"
  },
  {
    "input": "input : list = [3, 5, -2, -1, 1]\noutput : list = [32, 22, 12, 2, -3]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc([3, 5, -2, -1, 1]),-2),5),-3))",
    "io_inp": [
      3,
      5,
      -2,
      -1,
      1
    ],
    "io_out": [
      32,
      22,
      12,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc(input),-2),5),-3))"
  },
  {
    "input": "input : list = [-1, 1, 3, 5, 2, -1]\noutput : list = [0, -2, -3, -4, -6, -6]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(sort_des([-1, 1, 3, 5, 2, -1]),-5))))",
    "io_inp": [
      -1,
      1,
      3,
      5,
      2,
      -1
    ],
    "io_out": [
      0,
      -2,
      -3,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take([-5, 0, 0],1),5)",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-2, 0, 1, -5, 5]\noutput : list = [-2, -8, -12, -14, -22]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(reverse([-2, 0, 1, -5, 5]),-4),2)),-2)",
    "io_inp": [
      -2,
      0,
      1,
      -5,
      5
    ],
    "io_out": [
      -2,
      -8,
      -12,
      -14,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(reverse(input),-4),2)),-2)"
  },
  {
    "input": "input : list = [2, 0, 4, 5]\noutput : list = [2, 1, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(sort_asc([2, 0, 4, 5]),20))),-3)",
    "io_inp": [
      2,
      0,
      4,
      5
    ],
    "io_out": [
      2,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(sort_asc(input),20))),-3)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = mul_n([-1, 0, 0],-3)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 4, -2, 4, 4]\noutput : list = [4, 4, 4, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([-4, 4, -2, 4, 4]))",
    "io_inp": [
      -4,
      4,
      -2,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [-5, -14, -20]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(sort_des([-4, 1, -2]),4),3),-3),-1)",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      -5,
      -14,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(sort_des(input),4),3),-3),-1)"
  },
  {
    "input": "input : list = [3, -5, -5, 4, -4]\noutput : list = [-8, -8, -7, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(sub_n([3, -5, -5, 4, -4],4)),-4)),-3)",
    "io_inp": [
      3,
      -5,
      -5,
      4,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -7,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(sub_n(input,4)),-4)),-3)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [2, 0]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n(reverse([1, -1]),-2),1)),-3)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(reverse(input),-2),1)),-3)"
  },
  {
    "input": "input : list = [-2, -3, -2, 3, 2, -2]\noutput : list = [-4, 0, 1, -4, -5, -4]",
    "output": "generated_output : list = reverse(take(take(add_n(add_n([-2, -3, -2, 3, 2, -2],-1),-1),14),19))",
    "io_inp": [
      -2,
      -3,
      -2,
      3,
      2,
      -2
    ],
    "io_out": [
      -4,
      0,
      1,
      -4,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(add_n(input,-1),-1),14),19))"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [-3, -9, -21]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n(add_n([-1, 1, -5],1),-3)),3))",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      -3,
      -9,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(add_n(input,1),-3)),3))"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-3, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sub_n([-2, -5, -3],-5),3))))",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sub_n(input,-5),3))))"
  },
  {
    "input": "input : list = [1, 1, 0, -2, -2, 1]\noutput : list = [-4, -4, -2, -1, -1, -1]",
    "output": "generated_output : list = sub_n(sort_asc([1, 1, 0, -2, -2, 1]),2)",
    "io_inp": [
      1,
      1,
      0,
      -2,
      -2,
      1
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, 33]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(add_n([3, -3],4),5),2)))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      33
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(add_n(input,4),5),2)))"
  },
  {
    "input": "input : list = [-1, -2, 1, 3, 1]\noutput : list = [1, -1, -1, -3, -4]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(sort_des([-1, -2, 1, 3, 1]),2))),9)",
    "io_inp": [
      -1,
      -2,
      1,
      3,
      1
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(sort_des(input),2))),9)"
  },
  {
    "input": "input : list = [-1, -5, -1, -4]\noutput : list = [-5, -4, -1, -1]",
    "output": "generated_output : list = sort_asc([-1, -5, -1, -4])",
    "io_inp": [
      -1,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [-5]",
    "output": "generated_output : list = drop(sort_des([2, 0, -5]),2)",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),2)"
  },
  {
    "input": "input : list = [5, 0, -3, 2]\noutput : list = [1, -4, -7, -2]",
    "output": "generated_output : list = sub_n([5, 0, -3, 2],4)",
    "io_inp": [
      5,
      0,
      -3,
      2
    ],
    "io_out": [
      1,
      -4,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, -2, -4, 5]\noutput : list = [2, -5, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(sub_n([-4, -2, -4, 5],-1)),-5),-1))",
    "io_inp": [
      -4,
      -2,
      -4,
      5
    ],
    "io_out": [
      2,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(sub_n(input,-1)),-5),-1))"
  },
  {
    "input": "input : list = [0, -4, -2, 0, -2, -1]\noutput : list = [-20, -10, -10, -5, 0, 0]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(sort_asc([0, -4, -2, 0, -2, -1]),5),9)))",
    "io_inp": [
      0,
      -4,
      -2,
      0,
      -2,
      -1
    ],
    "io_out": [
      -20,
      -10,
      -10,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(sort_asc(input),5),9)))"
  },
  {
    "input": "input : list = [-3, 0, 3]\noutput : list = [-16, -7, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(mul_n([-3, 0, 3],-3),5)),-5),-3)",
    "io_inp": [
      -3,
      0,
      3
    ],
    "io_out": [
      -16,
      -7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(mul_n(input,-3),5)),-5),-3)"
  },
  {
    "input": "input : list = [2, -2, 2]\noutput : list = [2, 2, -2]",
    "output": "generated_output : list = reverse(take(take(sort_asc([2, -2, 2]),7),12))",
    "io_inp": [
      2,
      -2,
      2
    ],
    "io_out": [
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(input),7),12))"
  },
  {
    "input": "input : list = [4, 0, 5, 3, -4, 3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(sub_n([4, 0, 5, 3, -4, 3],3),-4),1)))",
    "io_inp": [
      4,
      0,
      5,
      3,
      -4,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(sub_n(input,3),-4),1)))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, -1]",
    "output": "generated_output : list = add_n(mul_n([5, 2],2),-5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),-5)"
  },
  {
    "input": "input : list = [0, 1, 5, -3]\noutput : list = [-2, 1, 2, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_des([0, 1, 5, -3]))),-1))",
    "io_inp": [
      0,
      1,
      5,
      -3
    ],
    "io_out": [
      -2,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [3, 3, -4]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take([3, 3, -4],1))",
    "io_inp": [
      3,
      3,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4, 16]",
    "output": "generated_output : list = take(reverse(take(mul_n(mul_n([-4, 1],-4),1),17)),30)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4,
      16
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(mul_n(input,-4),1),17)),30)"
  },
  {
    "input": "input : list = [-5, 4, 5]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des([-5, 4, 5])",
    "io_inp": [
      -5,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, -1, -5]\noutput : list = [0, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(add_n(add_n([-5, -2, -1, -5],1),4))",
    "io_inp": [
      -5,
      -2,
      -1,
      -5
    ],
    "io_out": [
      0,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,1),4))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(add_n(take(sort_asc(add_n([-3, 0],-1)),12),1),17)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(add_n(input,-1)),12),1),17)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(reverse([4, -4])),-4),6))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(reverse(input)),-4),6))"
  },
  {
    "input": "input : list = [0, 0, -1, 4, 3, -1]\noutput : list = [12, 9, 0, 0, -3, -3]",
    "output": "generated_output : list = take(sort_des(take(mul_n(sort_asc([0, 0, -1, 4, 3, -1]),3),23)),36)",
    "io_inp": [
      0,
      0,
      -1,
      4,
      3,
      -1
    ],
    "io_out": [
      12,
      9,
      0,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(sort_asc(input),3),23)),36)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(add_n(mul_n([0, -2],3),5))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,3),5))"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = reverse(sort_asc([-2, 2, 3]))",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_asc([-2, -1])))),5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [3, 0, -3]\noutput : list = [9, -3, -15]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(mul_n([3, 0, -3],4)),3),19))",
    "io_inp": [
      3,
      0,
      -3
    ],
    "io_out": [
      9,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(mul_n(input,4)),3),19))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-15, -5]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse([3, 1]),-5)),1)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(input),-5)),1)"
  },
  {
    "input": "input : list = [3, -3, 3, -2, 0, -1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take(sort_asc([3, -3, 3, -2, 0, -1]),2)",
    "io_inp": [
      3,
      -3,
      3,
      -2,
      0,
      -1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(add_n([3, -1],-3),4),-3),-1))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(add_n(input,-3),4),-3),-1))"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [103, -77]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(drop([-3, 4, -5],1),-4),5),-3))",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      103,
      -77
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(drop(input,1),-4),5),-3))"
  },
  {
    "input": "input : list = [3, 2, 5, -3, -4]\noutput : list = [-20, -10, -5, 20, 25]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_des([3, 2, 5, -3, -4]),1),-5),5))",
    "io_inp": [
      3,
      2,
      5,
      -3,
      -4
    ],
    "io_out": [
      -20,
      -10,
      -5,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_des(input),1),-5),5))"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc([-2, 4, 3]),1)",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-2, -5, -1, 5]\noutput : list = [-6, -15, -3, 15]",
    "output": "generated_output : list = mul_n([-2, -5, -1, 5],3)",
    "io_inp": [
      -2,
      -5,
      -1,
      5
    ],
    "io_out": [
      -6,
      -15,
      -3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, -1, 4]\noutput : list = [2, 3, 7]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(add_n([0, -1, 4],4)),1),1))",
    "io_inp": [
      0,
      -1,
      4
    ],
    "io_out": [
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(add_n(input,4)),1),1))"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [75, 30, 15]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(reverse([2, 1, 5]))),-5),-3)",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      75,
      30,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(reverse(input))),-5),-3)"
  },
  {
    "input": "input : list = [2, 2, -4]\noutput : list = [0, -6]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(drop([2, 2, -4],1),-3),14),-2),-3)",
    "io_inp": [
      2,
      2,
      -4
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(drop(input,1),-3),14),-2),-3)"
  },
  {
    "input": "input : list = [4, -2, 2, 1]\noutput : list = [4, 2, 1, -2]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(sort_des([4, -2, 2, 1])))),19)",
    "io_inp": [
      4,
      -2,
      2,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(sort_des(input)))),19)"
  },
  {
    "input": "input : list = [-1, 2, -4, -5]\noutput : list = [1, -11, 13, 17]",
    "output": "generated_output : list = take(sub_n(take(take(mul_n([-1, 2, -4, -5],-4),20),8),3),17)",
    "io_inp": [
      -1,
      2,
      -4,
      -5
    ],
    "io_out": [
      1,
      -11,
      13,
      17
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(mul_n(input,-4),20),8),3),17)"
  },
  {
    "input": "input : list = [-1, -1, 2, 1, 4]\noutput : list = [240, 60, 120, -60, -60]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(mul_n([-1, -1, 2, 1, 4],-5),3),4),-1))",
    "io_inp": [
      -1,
      -1,
      2,
      1,
      4
    ],
    "io_out": [
      240,
      60,
      120,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(mul_n(input,-5),3),4),-1))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [0, -8]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sub_n([5, -3],4))),4),3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sub_n(input,4))),4),3)"
  },
  {
    "input": "input : list = [4, 4, -5, 1, 4]\noutput : list = [-18, -18, -18, -6, 18]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n([4, 4, -5, 1, 4],-4)),1),3))",
    "io_inp": [
      4,
      4,
      -5,
      1,
      4
    ],
    "io_out": [
      -18,
      -18,
      -18,
      -6,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n(input,-4)),1),3))"
  },
  {
    "input": "input : list = [-1, -1, -4, 1]\noutput : list = [9, 1, 1, -11]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(sort_des([-1, -1, -4, 1]),5),-4),-5),-1)",
    "io_inp": [
      -1,
      -1,
      -4,
      1
    ],
    "io_out": [
      9,
      1,
      1,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(sort_des(input),5),-4),-5),-1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-7, 3]",
    "output": "generated_output : list = sort_asc(sub_n([-5, 5],2))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -7,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [-5, -5, -3, 5, 1, 2]\noutput : list = [-6, -6, -4, 4]",
    "output": "generated_output : list = take(sub_n(take([-5, -5, -3, 5, 1, 2],4),1),26)",
    "io_inp": [
      -5,
      -5,
      -3,
      5,
      1,
      2
    ],
    "io_out": [
      -6,
      -6,
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,4),1),26)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-20, -16, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(reverse([2, -5, -4])))),4)",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -20,
      -16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(reverse(input)))),4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-7, 23]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n([4, -2],5)),2),-5))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -7,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n(input,5)),2),-5))"
  },
  {
    "input": "input : list = [4, 0, 5, 4]\noutput : list = [9, 10, 5, 9]",
    "output": "generated_output : list = reverse(take(sub_n([4, 0, 5, 4],-5),20))",
    "io_inp": [
      4,
      0,
      5,
      4
    ],
    "io_out": [
      9,
      10,
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-5),20))"
  },
  {
    "input": "input : list = [3, 5, 1]\noutput : list = [11, 7, 3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sort_des([3, 5, 1]),-2),1),-1))",
    "io_inp": [
      3,
      5,
      1
    ],
    "io_out": [
      11,
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sort_des(input),-2),1),-1))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-59, -34]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(sub_n([0, 5],-5),-5),-4),-5))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -59,
      -34
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(sub_n(input,-5),-5),-4),-5))"
  },
  {
    "input": "input : list = [-4, 0, -1, -4]\noutput : list = [5, 4, 1, 1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(sort_des([-4, 0, -1, -4]),17),-5)))",
    "io_inp": [
      -4,
      0,
      -1,
      -4
    ],
    "io_out": [
      5,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(sort_des(input),17),-5)))"
  },
  {
    "input": "input : list = [5, 2, -4, 1, 0, 1]\noutput : list = [0, 3, 3, 6, 18]",
    "output": "generated_output : list = drop(mul_n(sub_n(sort_des([5, 2, -4, 1, 0, 1]),2),-3),1)",
    "io_inp": [
      5,
      2,
      -4,
      1,
      0,
      1
    ],
    "io_out": [
      0,
      3,
      3,
      6,
      18
    ],
    "output_masked": "generated_output : list = drop(mul_n(sub_n(sort_des(input),2),-3),1)"
  },
  {
    "input": "input : list = [-4, 1, 0, 1, 3, -4]\noutput : list = [-4, -4, 0, 1, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc([-4, 1, 0, 1, 3, -4])))))",
    "io_inp": [
      -4,
      1,
      0,
      1,
      3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -2, 0, 1]\noutput : list = [-2, 0, 1, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(add_n([2, -2, 0, 1],2))),-2))",
    "io_inp": [
      2,
      -2,
      0,
      1
    ],
    "io_out": [
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(add_n(input,2))),-2))"
  },
  {
    "input": "input : list = [1, -4, 3, -1]\noutput : list = [-3, 4, 0]",
    "output": "generated_output : list = sub_n(drop([1, -4, 3, -1],1),-1)",
    "io_inp": [
      1,
      -4,
      3,
      -1
    ],
    "io_out": [
      -3,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-9, -4]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sort_des([-5, 0]),1)),-5))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sort_des(input),1)),-5))"
  },
  {
    "input": "input : list = [-4, 5, -2, 4, 5]\noutput : list = [35, 25, -5, -10, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(sub_n([-4, 5, -2, 4, 5],3)),-5)))",
    "io_inp": [
      -4,
      5,
      -2,
      4,
      5
    ],
    "io_out": [
      35,
      25,
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(sub_n(input,3)),-5)))"
  },
  {
    "input": "input : list = [-2, 1, -5, 5, 4, -3]\noutput : list = [5, 4, 1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n([-2, 1, -5, 5, 4, -3],1))))",
    "io_inp": [
      -2,
      1,
      -5,
      5,
      4,
      -3
    ],
    "io_out": [
      5,
      4,
      1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(input,1))))"
  },
  {
    "input": "input : list = [-4, -1, 1, -1]\noutput : list = [-9, 1, 1, 16]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n([-4, -1, 1, -1],-5))),-1),5)",
    "io_inp": [
      -4,
      -1,
      1,
      -1
    ],
    "io_out": [
      -9,
      1,
      1,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n(input,-5))),-1),5)"
  },
  {
    "input": "input : list = [4, -1, 5, 2, -4]\noutput : list = [2, 5, 8, 10, 11]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n(sub_n([4, -1, 5, 2, -4],1),2))),5)",
    "io_inp": [
      4,
      -1,
      5,
      2,
      -4
    ],
    "io_out": [
      2,
      5,
      8,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(sub_n(input,1),2))),5)"
  },
  {
    "input": "input : list = [-4, 5, 3, 1]\noutput : list = [10, 20, 30]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(drop([-4, 5, 3, 1],1),5)),5))",
    "io_inp": [
      -4,
      5,
      3,
      1
    ],
    "io_out": [
      10,
      20,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(drop(input,1),5)),5))"
  },
  {
    "input": "input : list = [3, -1, 2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(take([3, -1, 2],1)),-1),24))",
    "io_inp": [
      3,
      -1,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(take(input,1)),-1),24))"
  },
  {
    "input": "input : list = [2, -3, -4]\noutput : list = [-5, -10]",
    "output": "generated_output : list = add_n(add_n(take(take(sort_des([2, -3, -4]),2),23),-2),-5)",
    "io_inp": [
      2,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(sort_des(input),2),23),-2),-5)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-2, -11]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(add_n([5, -4],-2))),26),5)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(add_n(input,-2))),26),5)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des([-4, -5])",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -5, -2, 4, -4, 1]\noutput : list = [-6, 4]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(take([5, -5, -2, 4, -4, 1],2))),3),2)",
    "io_inp": [
      5,
      -5,
      -2,
      4,
      -4,
      1
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(take(input,2))),3),2)"
  },
  {
    "input": "input : list = [1, 5, -3, 0, -5]\noutput : list = [-5, -1, 0, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc([1, 5, -3, 0, -5])),-1)))",
    "io_inp": [
      1,
      5,
      -3,
      0,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = mul_n([1, -4],-1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 4, 1]\noutput : list = [-12]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(take([-2, 4, 1],1)),5),-5))",
    "io_inp": [
      -2,
      4,
      1
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(take(input,1)),5),-5))"
  },
  {
    "input": "input : list = [-1, -2, -5]\noutput : list = [-3, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([-1, -2, -5],-5)),-3)",
    "io_inp": [
      -1,
      -2,
      -5
    ],
    "io_out": [
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-5)),-3)"
  },
  {
    "input": "input : list = [-3, -4, 2, -3, 0]\noutput : list = [-36, -48, 24, -36, 0]",
    "output": "generated_output : list = mul_n(take(mul_n([-3, -4, 2, -3, 0],-3),8),-4)",
    "io_inp": [
      -3,
      -4,
      2,
      -3,
      0
    ],
    "io_out": [
      -36,
      -48,
      24,
      -36,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-3),8),-4)"
  },
  {
    "input": "input : list = [0, -5, -1, 1, -5]\noutput : list = [-8, -8]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(add_n([0, -5, -1, 1, -5],-3)))),2)",
    "io_inp": [
      0,
      -5,
      -1,
      1,
      -5
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(add_n(input,-3)))),2)"
  },
  {
    "input": "input : list = [-3, 2, -2, 1]\noutput : list = [16, -4, 12]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n([-3, 2, -2, 1],2),3),-1),-4)",
    "io_inp": [
      -3,
      2,
      -2,
      1
    ],
    "io_out": [
      16,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(input,2),3),-1),-4)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-16, -8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(sort_des([2, 4]),10),-4)),1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(sort_des(input),10),-4)),1)"
  },
  {
    "input": "input : list = [5, 2, -2, 2, 0]\noutput : list = [-3, -1, -5, -1, 2]",
    "output": "generated_output : list = reverse(take(sub_n([5, 2, -2, 2, 0],3),16))",
    "io_inp": [
      5,
      2,
      -2,
      2,
      0
    ],
    "io_out": [
      -3,
      -1,
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,3),16))"
  },
  {
    "input": "input : list = [-4, -2, 1, -5, 3, -3]\noutput : list = [2, 0, -3, -4, -6]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(drop([-4, -2, 1, -5, 3, -3],1))),6),1)",
    "io_inp": [
      -4,
      -2,
      1,
      -5,
      3,
      -3
    ],
    "io_out": [
      2,
      0,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(drop(input,1))),6),1)"
  },
  {
    "input": "input : list = [-1, 0, 3, 1, 1, 1]\noutput : list = [-3, -3, -3]",
    "output": "generated_output : list = reverse(add_n(reverse(drop([-1, 0, 3, 1, 1, 1],3)),-4))",
    "io_inp": [
      -1,
      0,
      3,
      1,
      1,
      1
    ],
    "io_out": [
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(drop(input,3)),-4))"
  },
  {
    "input": "input : list = [0, -3, 5, 3]\noutput : list = [-5, -8, 0, -2]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(add_n([0, -3, 5, 3],-3),-5),-2),5),48)",
    "io_inp": [
      0,
      -3,
      5,
      3
    ],
    "io_out": [
      -5,
      -8,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(add_n(input,-3),-5),-2),5),48)"
  },
  {
    "input": "input : list = [-4, -1, 2, 5, -1, -4]\noutput : list = [5, 2, -1, -1, -4, -4]",
    "output": "generated_output : list = sort_des([-4, -1, 2, 5, -1, -4])",
    "io_inp": [
      -4,
      -1,
      2,
      5,
      -1,
      -4
    ],
    "io_out": [
      5,
      2,
      -1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-4, 4, 24]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(sub_n([-4, -2, 3],-3),17)),4))",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -4,
      4,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(sub_n(input,-3),17)),4))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [2, 4]",
    "output": "generated_output : list = sub_n([1, 3],-1)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 3, 1, 2, -2]\noutput : list = [-4, 3, 1, 2, -2]",
    "output": "generated_output : list = reverse(reverse([-4, 3, 1, 2, -2]))",
    "io_inp": [
      -4,
      3,
      1,
      2,
      -2
    ],
    "io_out": [
      -4,
      3,
      1,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, 1, 4, -5]\noutput : list = [-10, -5, -4, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(sort_des([0, 1, 4, -5]))),-5))",
    "io_inp": [
      0,
      1,
      4,
      -5
    ],
    "io_out": [
      -10,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-5, -1, 5, 3, 3, 2]\noutput : list = [0, -4, -4, -6, -12, -20]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc([-5, -1, 5, 3, 3, 2]),-5)),2)",
    "io_inp": [
      -5,
      -1,
      5,
      3,
      3,
      2
    ],
    "io_out": [
      0,
      -4,
      -4,
      -6,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(input),-5)),2)"
  },
  {
    "input": "input : list = [1, 0, -5, 0, 1, 0]\noutput : list = [-5, 0, 0, 0, 1, 1]",
    "output": "generated_output : list = take(take(sort_asc(take(sort_asc([1, 0, -5, 0, 1, 0]),8)),22),7)",
    "io_inp": [
      1,
      0,
      -5,
      0,
      1,
      0
    ],
    "io_out": [
      -5,
      0,
      0,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(sort_asc(input),8)),22),7)"
  },
  {
    "input": "input : list = [-2, 4, -1, 2, 1, 5]\noutput : list = [1, 3, 7, 9, 13, 15]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc(mul_n([-2, 4, -1, 2, 1, 5],2)),4),1),36)",
    "io_inp": [
      -2,
      4,
      -1,
      2,
      1,
      5
    ],
    "io_out": [
      1,
      3,
      7,
      9,
      13,
      15
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(mul_n(input,2)),4),1),36)"
  },
  {
    "input": "input : list = [5, -3, 4, 4, 1, -3]\noutput : list = [0, -40]",
    "output": "generated_output : list = mul_n(add_n(take([5, -3, 4, 4, 1, -3],2),-5),5)",
    "io_inp": [
      5,
      -3,
      4,
      4,
      1,
      -3
    ],
    "io_out": [
      0,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,2),-5),5)"
  },
  {
    "input": "input : list = [-4, 0, -4, 4, -1, 2]\noutput : list = [8, 0, 8, -8]",
    "output": "generated_output : list = mul_n(take([-4, 0, -4, 4, -1, 2],4),-2)",
    "io_inp": [
      -4,
      0,
      -4,
      4,
      -1,
      2
    ],
    "io_out": [
      8,
      0,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),-2)"
  },
  {
    "input": "input : list = [-4, 0, -1]\noutput : list = [-9, -5, -6]",
    "output": "generated_output : list = sub_n([-4, 0, -1],5)",
    "io_inp": [
      -4,
      0,
      -1
    ],
    "io_out": [
      -9,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, -3, -1, 5, 5]\noutput : list = [4, -2, 0, 6, 6]",
    "output": "generated_output : list = add_n(mul_n([3, -3, -1, 5, 5],1),1)",
    "io_inp": [
      3,
      -3,
      -1,
      5,
      5
    ],
    "io_out": [
      4,
      -2,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),1)"
  },
  {
    "input": "input : list = [3, 1, 5, -5, -2, -2]\noutput : list = [-26, -16, -6, 9, 9, 24]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(mul_n([3, 1, 5, -5, -2, -2],-5),-1))))",
    "io_inp": [
      3,
      1,
      5,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -26,
      -16,
      -6,
      9,
      9,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(mul_n(input,-5),-1))))"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [8, 7, 3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(mul_n([4, 3, -1],1),4))))",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(mul_n(input,1),4))))"
  },
  {
    "input": "input : list = [-2, -2, -2, -2, 1]\noutput : list = [-5, -5, -5, -5, -2]",
    "output": "generated_output : list = sub_n([-2, -2, -2, -2, 1],3)",
    "io_inp": [
      -2,
      -2,
      -2,
      -2,
      1
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, -5, -5, -1]\noutput : list = [-2, -2, -1, 2]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-4, -5, -5, -1]),-3))",
    "io_inp": [
      -4,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [5, -3, -5, -2, 5]\noutput : list = [-7, -5, -4, 3, 3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse([5, -3, -5, -2, 5]),3))),1)",
    "io_inp": [
      5,
      -3,
      -5,
      -2,
      5
    ],
    "io_out": [
      -7,
      -5,
      -4,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse(input),3))),1)"
  },
  {
    "input": "input : list = [5, 5, -5, 5, -1, -4]\noutput : list = [-12, -11, -8, -2, -2, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(sort_asc([5, 5, -5, 5, -1, -4]))),-2),5)",
    "io_inp": [
      5,
      5,
      -5,
      5,
      -1,
      -4
    ],
    "io_out": [
      -12,
      -11,
      -8,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(sort_asc(input))),-2),5)"
  },
  {
    "input": "input : list = [-1, 1, 4, 3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(take([-1, 1, 4, 3],2)),6),-2),4)",
    "io_inp": [
      -1,
      1,
      4,
      3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(take(input,2)),6),-2),4)"
  },
  {
    "input": "input : list = [-3, 5, -4, -1, 4]\noutput : list = [69, 53, 21, -59, -75]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(mul_n([-3, 5, -4, -1, 4],-4)),4),1),-4)",
    "io_inp": [
      -3,
      5,
      -4,
      -1,
      4
    ],
    "io_out": [
      69,
      53,
      21,
      -59,
      -75
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(mul_n(input,-4)),4),1),-4)"
  },
  {
    "input": "input : list = [-5, -1, 4, -1, 5, -3]\noutput : list = [25, 21, 1, 1, -7, -15]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(add_n([-5, -1, 4, -1, 5, -3],2)),4)),-3)",
    "io_inp": [
      -5,
      -1,
      4,
      -1,
      5,
      -3
    ],
    "io_out": [
      25,
      21,
      1,
      1,
      -7,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(add_n(input,2)),4)),-3)"
  },
  {
    "input": "input : list = [-1, 0, -1, -4, -1]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des(drop([-1, 0, -1, -4, -1],3)))),4)",
    "io_inp": [
      -1,
      0,
      -1,
      -4,
      -1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(drop(input,3)))),4)"
  },
  {
    "input": "input : list = [-2, 3, 5, -5]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(add_n(take(drop(sort_des([-2, 3, 5, -5]),2),27),5))",
    "io_inp": [
      -2,
      3,
      5,
      -5
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(drop(sort_des(input),2),27),5))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [9, 8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(add_n([-3, -2],3),-1),-4)),5)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(add_n(input,3),-1),-4)),5)"
  },
  {
    "input": "input : list = [0, 5, 4, -1, 0]\noutput : list = [2, 4, 4, 12, 14]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_asc([0, 5, 4, -1, 0]),2),20),-4),27)",
    "io_inp": [
      0,
      5,
      4,
      -1,
      0
    ],
    "io_out": [
      2,
      4,
      4,
      12,
      14
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_asc(input),2),20),-4),27)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-4, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(mul_n([0, -3],-5),2),-1),-3))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -4,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(mul_n(input,-5),2),-1),-3))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 2, -4, -5]\noutput : list = [-2, -1, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([4, 2, -4, -5],-5)),2)",
    "io_inp": [
      4,
      2,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-5)),2)"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = take(sort_des([5, 4, -5]),14)",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [9, 10]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse([-5, -4]),-5)),-1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      9,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(input),-5)),-1)"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [-9, -10, -3]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(mul_n([-5, 2, 1],1),-3),5)),-1)",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      -9,
      -10,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(mul_n(input,1),-3),5)),-1)"
  },
  {
    "input": "input : list = [-5, -1, 2, -2]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = take(sort_asc(drop([-5, -1, 2, -2],1)),28)",
    "io_inp": [
      -5,
      -1,
      2,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,1)),28)"
  },
  {
    "input": "input : list = [3, 5, 5, 1, 3, -2]\noutput : list = [-6, -4, -4, -8, -6, -11]",
    "output": "generated_output : list = add_n(sub_n([3, 5, 5, 1, 3, -2],4),-5)",
    "io_inp": [
      3,
      5,
      5,
      1,
      3,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -8,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-5)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [1, 6, 10]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(sub_n([5, -4, 1],-5)),17),12))",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      1,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(sub_n(input,-5)),17),12))"
  },
  {
    "input": "input : list = [-1, -5, -3, -4]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(sort_asc(take(drop([-1, -5, -3, -4],1),1)),-2)",
    "io_inp": [
      -1,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(drop(input,1),1)),-2)"
  },
  {
    "input": "input : list = [-3, -2, -3, 3, 0]\noutput : list = [-8, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(sort_asc([-3, -2, -3, 3, 0]),-3)),-1),2)",
    "io_inp": [
      -3,
      -2,
      -3,
      3,
      0
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(sort_asc(input),-3)),-1),2)"
  },
  {
    "input": "input : list = [-2, 1, -4, 0]\noutput : list = [15, 27, 12, 21]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-2, 1, -4, 0],5),-3))",
    "io_inp": [
      -2,
      1,
      -4,
      0
    ],
    "io_out": [
      15,
      27,
      12,
      21
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,5),-3))"
  },
  {
    "input": "input : list = [-1, 1, 1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 1, 1, -1],1)",
    "io_inp": [
      -1,
      1,
      1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -2, -2, -1, 4, -3]\noutput : list = [0, -2]",
    "output": "generated_output : list = take(take([0, -2, -2, -1, 4, -3],2),21)",
    "io_inp": [
      0,
      -2,
      -2,
      -1,
      4,
      -3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,2),21)"
  },
  {
    "input": "input : list = [-1, -5, -4, -2, -5]\noutput : list = [-10, -10, -9, -7, -6]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc([-1, -5, -4, -2, -5]))),5))",
    "io_inp": [
      -1,
      -5,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-1, -1, -3, 1]\noutput : list = [8, 8]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(take([-1, -1, -3, 1],2),-4)),4))",
    "io_inp": [
      -1,
      -1,
      -3,
      1
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(take(input,2),-4)),4))"
  },
  {
    "input": "input : list = [2, -5, -2, 1]\noutput : list = [-15, -6, 3, 6]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(mul_n([2, -5, -2, 1],-3)),-3),3),-1)",
    "io_inp": [
      2,
      -5,
      -2,
      1
    ],
    "io_out": [
      -15,
      -6,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(mul_n(input,-3)),-3),3),-1)"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [18, 3, 12]",
    "output": "generated_output : list = mul_n(sub_n([-4, 1, -2],2),-3)",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      18,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),-3)"
  },
  {
    "input": "input : list = [5, 4, 3, -1, 0, -2]\noutput : list = [1, 2, 3, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n(take(mul_n([5, 4, 3, -1, 0, -2],1),6),3))",
    "io_inp": [
      5,
      4,
      3,
      -1,
      0,
      -2
    ],
    "io_out": [
      1,
      2,
      3,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(mul_n(input,1),6),3))"
  },
  {
    "input": "input : list = [3, 1, 1, 0]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(take([3, 1, 1, 0],1),5),14)))",
    "io_inp": [
      3,
      1,
      1,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(take(input,1),5),14)))"
  },
  {
    "input": "input : list = [4, -5, 2, 0]\noutput : list = [-5, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([4, -5, 2, 0])",
    "io_inp": [
      4,
      -5,
      2,
      0
    ],
    "io_out": [
      -5,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(mul_n([1, 2],1)),-5),2),5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(mul_n(input,1)),-5),2),5)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(add_n([-5, -5],5),2)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),2)"
  },
  {
    "input": "input : list = [5, 0, -4, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(take([5, 0, -4, 1],2)),-1)))",
    "io_inp": [
      5,
      0,
      -4,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(take(input,2)),-1)))"
  },
  {
    "input": "input : list = [0, -2, 5, -3, -1]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -2, 5, -3, -1],1)",
    "io_inp": [
      0,
      -2,
      5,
      -3,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 4, 4, -5, 2]\noutput : list = [4, -8]",
    "output": "generated_output : list = sort_des(sort_des(take(take(mul_n([-2, 4, 4, -5, 2],-2),21),2)))",
    "io_inp": [
      -2,
      4,
      4,
      -5,
      2
    ],
    "io_out": [
      4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(mul_n(input,-2),21),2)))"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [-3]",
    "output": "generated_output : list = drop(add_n([5, 2, -1],-2),2)",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-2),2)"
  },
  {
    "input": "input : list = [-2, -2, -2, 2, -4, -2]\noutput : list = [-2, -2, -2]",
    "output": "generated_output : list = sort_asc(take([-2, -2, -2, 2, -4, -2],3))",
    "io_inp": [
      -2,
      -2,
      -2,
      2,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [-6, -6, -3]",
    "output": "generated_output : list = mul_n(sort_des([2, 1, 2]),-3)",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [5, 0, 4, -1, 3]\noutput : list = [0, 16, 20]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(take([5, 0, 4, -1, 3],3)),6)),4)",
    "io_inp": [
      5,
      0,
      4,
      -1,
      3
    ],
    "io_out": [
      0,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(take(input,3)),6)),4)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [-9, -2, -1]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(sort_asc([3, -4, 4]),-3)),37),-2)",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      -9,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(sort_asc(input),-3)),37),-2)"
  },
  {
    "input": "input : list = [5, 0, -4, 1]\noutput : list = [5, 1, 0, -4]",
    "output": "generated_output : list = sort_des(take(reverse(reverse([5, 0, -4, 1])),10))",
    "io_inp": [
      5,
      0,
      -4,
      1
    ],
    "io_out": [
      5,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(reverse(input)),10))"
  },
  {
    "input": "input : list = [-4, -3, 2, -5, 5, -4]\noutput : list = [-16, -7, -17, -10, -15, -16]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(sub_n([-4, -3, 2, -5, 5, -4],-1),-5),-3)),-5)",
    "io_inp": [
      -4,
      -3,
      2,
      -5,
      5,
      -4
    ],
    "io_out": [
      -16,
      -7,
      -17,
      -10,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(sub_n(input,-1),-5),-3)),-5)"
  },
  {
    "input": "input : list = [-2, 1, 0]\noutput : list = [-20, 0, 40]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse([-2, 1, 0]),-4)),5)",
    "io_inp": [
      -2,
      1,
      0
    ],
    "io_out": [
      -20,
      0,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(input),-4)),5)"
  },
  {
    "input": "input : list = [1, 1, 1, 5, -4]\noutput : list = [-1, -1, -1, -5, 4]",
    "output": "generated_output : list = mul_n([1, 1, 1, 5, -4],-1)",
    "io_inp": [
      1,
      1,
      1,
      5,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -5,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 4, -5, -1, 2, 0]\noutput : list = [-4, 0, 1, 2, 3, 5]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(sort_asc([1, 4, -5, -1, 2, 0]),1),-1),-2),41)",
    "io_inp": [
      1,
      4,
      -5,
      -1,
      2,
      0
    ],
    "io_out": [
      -4,
      0,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(sort_asc(input),1),-1),-2),41)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [40, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sort_des([2, 0]),-2),5),-2),27)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      40,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sort_des(input),-2),5),-2),27)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n([-1, -3],3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [-1, 3, -2]",
    "output": "generated_output : list = reverse([-2, 3, -1])",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, -12]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(reverse([0, 3])))),-4)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [1, -4, 4, -2]\noutput : list = [30, -45, 75, -15]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(sub_n([1, -4, 4, -2],-2),-1),5),3),18)",
    "io_inp": [
      1,
      -4,
      4,
      -2
    ],
    "io_out": [
      30,
      -45,
      75,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(sub_n(input,-2),-1),5),3),18)"
  },
  {
    "input": "input : list = [-3, -1, -3, 2, 3, -3]\noutput : list = [-10, -10, -10, -8, -5, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_des(add_n([-3, -1, -3, 2, 3, -3],-5)),-1),-3))",
    "io_inp": [
      -3,
      -1,
      -3,
      2,
      3,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -10,
      -8,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_des(add_n(input,-5)),-1),-3))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(sort_asc([-2, 0]),14)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [5, -1, -2, -3]\noutput : list = [-10, -9, -8, -2]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n([5, -1, -2, -3],2)),-4),-1)",
    "io_inp": [
      5,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(input,2)),-4),-1)"
  },
  {
    "input": "input : list = [-3, 5, -1]\noutput : list = [-6, -2, 10]",
    "output": "generated_output : list = reverse(sort_des(mul_n([-3, 5, -1],2)))",
    "io_inp": [
      -3,
      5,
      -1
    ],
    "io_out": [
      -6,
      -2,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,2)))"
  },
  {
    "input": "input : list = [0, -1, -4, 0, 4, -5]\noutput : list = [20, 4, 4, 0, -12, -16]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sort_des([0, -1, -4, 0, 4, -5]),4))),4)",
    "io_inp": [
      0,
      -1,
      -4,
      0,
      4,
      -5
    ],
    "io_out": [
      20,
      4,
      4,
      0,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sort_des(input),4))),4)"
  },
  {
    "input": "input : list = [-1, 5, 0, 3, -1]\noutput : list = [-1, 3, 0, 5]",
    "output": "generated_output : list = reverse(drop([-1, 5, 0, 3, -1],1))",
    "io_inp": [
      -1,
      5,
      0,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [5, 4, -1, -5, -3, 2]\noutput : list = [2, 4, 6, 9, 11, 12]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse([5, 4, -1, -5, -3, 2]),-2)),-5)",
    "io_inp": [
      5,
      4,
      -1,
      -5,
      -3,
      2
    ],
    "io_out": [
      2,
      4,
      6,
      9,
      11,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(input),-2)),-5)"
  },
  {
    "input": "input : list = [-3, -1, 5, -2]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take([-3, -1, 5, -2],1))",
    "io_inp": [
      -3,
      -1,
      5,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [3, 7, 8]",
    "output": "generated_output : list = add_n([-2, 2, 3],5)",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [2, -3, 0, -4, -5]\noutput : list = [9, -6, 3, -9, -12]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(reverse([2, -3, 0, -4, -5]),3),30)),3)",
    "io_inp": [
      2,
      -3,
      0,
      -4,
      -5
    ],
    "io_out": [
      9,
      -6,
      3,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(reverse(input),3),30)),3)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des([2, -3])",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, 0, 0]\noutput : list = [-4, 0, 0, 1]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(reverse([1, -4, 0, 0])),18)))",
    "io_inp": [
      1,
      -4,
      0,
      0
    ],
    "io_out": [
      -4,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(reverse(input)),18)))"
  },
  {
    "input": "input : list = [-2, 5, -1, 4]\noutput : list = [-8, -7, -2, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_asc([-2, 5, -1, 4])),-2),-3),-1)",
    "io_inp": [
      -2,
      5,
      -1,
      4
    ],
    "io_out": [
      -8,
      -7,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_asc(input)),-2),-3),-1)"
  },
  {
    "input": "input : list = [0, -4, -3, 1, -4, -5]\noutput : list = [-13, -12, -12, -11, -8, -7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([0, -4, -3, 1, -4, -5],5),-3))",
    "io_inp": [
      0,
      -4,
      -3,
      1,
      -4,
      -5
    ],
    "io_out": [
      -13,
      -12,
      -12,
      -11,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,5),-3))"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [-21, -57, -57]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(mul_n([-4, -4, -1],4))),3),3)",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      -21,
      -57,
      -57
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(mul_n(input,4))),3),3)"
  },
  {
    "input": "input : list = [1, -3, 4, -5]\noutput : list = [4, 1, -3, -5]",
    "output": "generated_output : list = sort_des([1, -3, 4, -5])",
    "io_inp": [
      1,
      -3,
      4,
      -5
    ],
    "io_out": [
      4,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-9, 0]",
    "output": "generated_output : list = sub_n([-5, 4],4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [-5, -8, -6]",
    "output": "generated_output : list = add_n(reverse(take(reverse(sub_n([0, -3, -1],2)),7)),-3)",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(sub_n(input,2)),7)),-3)"
  },
  {
    "input": "input : list = [-1, 5, -2, 4, -1]\noutput : list = [5, 4, -1, -1, -2]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des([-1, 5, -2, 4, -1]),3),1),-5),3)",
    "io_inp": [
      -1,
      5,
      -2,
      4,
      -1
    ],
    "io_out": [
      5,
      4,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des(input),3),1),-5),3)"
  },
  {
    "input": "input : list = [0, 4, 4]\noutput : list = [3, 7, 7]",
    "output": "generated_output : list = add_n([0, 4, 4],3)",
    "io_inp": [
      0,
      4,
      4
    ],
    "io_out": [
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, -4, 2, 0, 4]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(drop(drop(sort_asc(sub_n([-1, -4, 2, 0, 4],-5)),2),2))",
    "io_inp": [
      -1,
      -4,
      2,
      0,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(drop(drop(sort_asc(sub_n(input,-5)),2),2))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [8, 1]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(sort_des([-3, 4])),-1),21),5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(sort_des(input)),-1),21),5)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, 4, 4, -5]\noutput : list = [4, 4, 1, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sort_des([0, 1, 4, 4, -5])))))",
    "io_inp": [
      0,
      1,
      4,
      4,
      -5
    ],
    "io_out": [
      4,
      4,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, -1, 0, -3, -1, 0]\noutput : list = [8, 24, 56, 8, 24, 24]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(reverse([-1, -1, 0, -3, -1, 0]),-1),4),-2),-4)",
    "io_inp": [
      -1,
      -1,
      0,
      -3,
      -1,
      0
    ],
    "io_out": [
      8,
      24,
      56,
      8,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(reverse(input),-1),4),-2),-4)"
  },
  {
    "input": "input : list = [2, 5, 2, -5]\noutput : list = [21, 12, 12, -9]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(sub_n([2, 5, 2, -5],-2),20)),-1),-3)",
    "io_inp": [
      2,
      5,
      2,
      -5
    ],
    "io_out": [
      21,
      12,
      12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(sub_n(input,-2),20)),-1),-3)"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [7, 13]",
    "output": "generated_output : list = add_n(take(add_n([-1, 5, -1],5),2),3)",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      7,
      13
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,5),2),3)"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take([1, -2, 4],1))),3)",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(input,1))),3)"
  },
  {
    "input": "input : list = [-4, -1, -3, 3, 1, -2]\noutput : list = [2, 5, 3, 9, 7, 4]",
    "output": "generated_output : list = add_n(add_n([-4, -1, -3, 3, 1, -2],4),2)",
    "io_inp": [
      -4,
      -1,
      -3,
      3,
      1,
      -2
    ],
    "io_out": [
      2,
      5,
      3,
      9,
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc([5, -2]))),5)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(input))),5)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = reverse([4, -4])",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, -5, 1]\noutput : list = [-5, 4, 13, 25]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sort_des([-2, 5, -5, 1]),3)),-5),5)",
    "io_inp": [
      -2,
      5,
      -5,
      1
    ],
    "io_out": [
      -5,
      4,
      13,
      25
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sort_des(input),3)),-5),5)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-6, -12]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(add_n([-1, -3],5)),3),-1),8)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(add_n(input,5)),3),-1),8)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-13, -48]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(reverse([2, -5]),4),5),-3))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -13,
      -48
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(reverse(input),4),5),-3))"
  },
  {
    "input": "input : list = [-5, -3, 0, -1, -2, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(add_n(take(take(take([-5, -3, 0, -1, -2, -4],3),14),1),4))",
    "io_inp": [
      -5,
      -3,
      0,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(take(input,3),14),1),4))"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_des(take(take(take([0, 3, 5],1),12),9)))",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(take(input,1),12),9)))"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [11, 11, 8]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse([5, 5, 2]))),2),4)",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      11,
      11,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse(input))),2),4)"
  },
  {
    "input": "input : list = [-1, 0, 3, 1]\noutput : list = [5, 0, -5, -15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([-1, 0, 3, 1])),-5)",
    "io_inp": [
      -1,
      0,
      3,
      1
    ],
    "io_out": [
      5,
      0,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [3, 5, -1, 4]\noutput : list = [12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take([3, 5, -1, 4],1),4)))",
    "io_inp": [
      3,
      5,
      -1,
      4
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(input,1),4)))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n(reverse([-2, -1]),5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [4, 3, 4, 4, -1, -3]\noutput : list = [0, 2, 6, 7, 7, 7]",
    "output": "generated_output : list = sort_asc(reverse(add_n([4, 3, 4, 4, -1, -3],3)))",
    "io_inp": [
      4,
      3,
      4,
      4,
      -1,
      -3
    ],
    "io_out": [
      0,
      2,
      6,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,3)))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [5, 13]",
    "output": "generated_output : list = add_n(add_n([-5, 3],5),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      5,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),5)"
  },
  {
    "input": "input : list = [5, -1, 4, -2]\noutput : list = [5, 11]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(take([5, -1, 4, -2],2),11),-4)),-2)",
    "io_inp": [
      5,
      -1,
      4,
      -2
    ],
    "io_out": [
      5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(take(input,2),11),-4)),-2)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [-7, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n([5, 5, -3],-4))",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      -7,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [-5, 1, 3, -2, -3]\noutput : list = [3, 1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(sort_des([-5, 1, 3, -2, -3]),-5),-5),1))",
    "io_inp": [
      -5,
      1,
      3,
      -2,
      -3
    ],
    "io_out": [
      3,
      1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(sort_des(input),-5),-5),1))"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [82, 22, -18]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(mul_n([4, 1, -1],-5),-4),-2)))",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      82,
      22,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(mul_n(input,-5),-4),-2)))"
  },
  {
    "input": "input : list = [0, 0, 5, 1, 2]\noutput : list = [5, 2, 1, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des([0, 0, 5, 1, 2]))",
    "io_inp": [
      0,
      0,
      5,
      1,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, 0, -3, -4, 2, 3]\noutput : list = [126, 1, -74, -99, 51, 76]",
    "output": "generated_output : list = sub_n(mul_n(take(take(mul_n([5, 0, -3, -4, 2, 3],5),14),6),5),-1)",
    "io_inp": [
      5,
      0,
      -3,
      -4,
      2,
      3
    ],
    "io_out": [
      126,
      1,
      -74,
      -99,
      51,
      76
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(take(mul_n(input,5),14),6),5),-1)"
  },
  {
    "input": "input : list = [3, -3, 4]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sort_des(reverse([3, -3, 4]))",
    "io_inp": [
      3,
      -3,
      4
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, 2, -2]\noutput : list = [9, 21, 21]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_des([2, 2, -2]),5)),3))",
    "io_inp": [
      2,
      2,
      -2
    ],
    "io_out": [
      9,
      21,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_des(input),5)),3))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [5, 2]",
    "output": "generated_output : list = add_n(mul_n(sort_des([4, 1]),1),1)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),1),1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [10, -35]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(sort_asc([4, -5]),-4),-5),5))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      10,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(sort_asc(input),-4),-5),5))"
  },
  {
    "input": "input : list = [-1, -1, 2]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(take([-1, -1, 2],1)),-5),4),-2)",
    "io_inp": [
      -1,
      -1,
      2
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(take(input,1)),-5),4),-2)"
  },
  {
    "input": "input : list = [3, 5, -5, 2, -3]\noutput : list = [-5, -7, -8, -13, -15]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([3, 5, -5, 2, -3],5)),5)",
    "io_inp": [
      3,
      5,
      -5,
      2,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -13,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,5)),5)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(sort_asc([-5, -2]),-1)),-3),3)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(sort_asc(input),-1)),-3),3)"
  },
  {
    "input": "input : list = [4, -5, 1, 4, 0]\noutput : list = [5, 0, -1, -4, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(reverse([4, -5, 1, 4, 0]),-1)),30))",
    "io_inp": [
      4,
      -5,
      1,
      4,
      0
    ],
    "io_out": [
      5,
      0,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(reverse(input),-1)),30))"
  },
  {
    "input": "input : list = [1, 4, 2, 0, -5, -1]\noutput : list = [-15, -7, -3, 1, 5, 21]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(mul_n([1, 4, 2, 0, -5, -1],-4),-4),-5)))",
    "io_inp": [
      1,
      4,
      2,
      0,
      -5,
      -1
    ],
    "io_out": [
      -15,
      -7,
      -3,
      1,
      5,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(mul_n(input,-4),-4),-5)))"
  },
  {
    "input": "input : list = [-1, -1, 1, -5, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = drop(sort_asc([-1, -1, 1, -5, 5]),3)",
    "io_inp": [
      -1,
      -1,
      1,
      -5,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-5, -4, 1, 0, -2]\noutput : list = [300, 150, 75, 450, 525]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(add_n([-5, -4, 1, 0, -2],-2),5)),-3),5)",
    "io_inp": [
      -5,
      -4,
      1,
      0,
      -2
    ],
    "io_out": [
      300,
      150,
      75,
      450,
      525
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(add_n(input,-2),5)),-3),5)"
  },
  {
    "input": "input : list = [3, -5, -5, 5, 1]\noutput : list = [4, 0, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(drop([3, -5, -5, 5, 1],2),4))),-3)",
    "io_inp": [
      3,
      -5,
      -5,
      5,
      1
    ],
    "io_out": [
      4,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(drop(input,2),4))),-3)"
  },
  {
    "input": "input : list = [1, -2, 1, -4, 2, 3]\noutput : list = [20, 10, -5, -5, -10, -15]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(sort_asc([1, -2, 1, -4, 2, 3]),24),-5)))",
    "io_inp": [
      1,
      -2,
      1,
      -4,
      2,
      3
    ],
    "io_out": [
      20,
      10,
      -5,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(sort_asc(input),24),-5)))"
  },
  {
    "input": "input : list = [1, 1, -4, 4, 1, -4]\noutput : list = [-3, -3, -8, 0, -3, -8]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(reverse([1, 1, -4, 4, 1, -4]),1),4)),45)",
    "io_inp": [
      1,
      1,
      -4,
      4,
      1,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -8,
      0,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(reverse(input),1),4)),45)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [-5, -5, -9]",
    "output": "generated_output : list = sub_n(reverse([-5, -1, -1]),4)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(take([-4, 4, 2],1),-4),16)))",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(take(input,1),-4),16)))"
  },
  {
    "input": "input : list = [-4, -1, 4, 3, -5, -3]\noutput : list = [11, 10, 6, 4, 3, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(sub_n([-4, -1, 4, 3, -5, -3],-3),24)),4))",
    "io_inp": [
      -4,
      -1,
      4,
      3,
      -5,
      -3
    ],
    "io_out": [
      11,
      10,
      6,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(sub_n(input,-3),24)),4))"
  },
  {
    "input": "input : list = [4, -4, 3, 5, 2]\noutput : list = [-20, 10, 15, 20, 25]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(reverse([4, -4, 3, 5, 2]))),34),5)",
    "io_inp": [
      4,
      -4,
      3,
      5,
      2
    ],
    "io_out": [
      -20,
      10,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(reverse(input))),34),5)"
  },
  {
    "input": "input : list = [-1, 1, -2, 3, 0]\noutput : list = [3, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_des(sort_asc([-1, 1, -2, 3, 0]))),40))",
    "io_inp": [
      -1,
      1,
      -2,
      3,
      0
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_des(sort_asc(input))),40))"
  },
  {
    "input": "input : list = [0, 5, -3, 1]\noutput : list = [-3, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([0, 5, -3, 1])",
    "io_inp": [
      0,
      5,
      -3,
      1
    ],
    "io_out": [
      -3,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 1, 4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(take([-3, 1, 4],1)),-3),2))",
    "io_inp": [
      -3,
      1,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(take(input,1)),-3),2))"
  },
  {
    "input": "input : list = [3, 2, 5, 4, -4]\noutput : list = [-12, -6, -5, -4, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(reverse([3, 2, 5, 4, -4]),11)),-4),4)",
    "io_inp": [
      3,
      2,
      5,
      4,
      -4
    ],
    "io_out": [
      -12,
      -6,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(reverse(input),11)),-4),4)"
  },
  {
    "input": "input : list = [1, 1, -5, -2]\noutput : list = [0, -18, -9]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(reverse([1, 1, -5, -2]),3),-1)),3)",
    "io_inp": [
      1,
      1,
      -5,
      -2
    ],
    "io_out": [
      0,
      -18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(reverse(input),3),-1)),3)"
  },
  {
    "input": "input : list = [-5, 4, 2]\noutput : list = [42, -39, -21]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(mul_n([-5, 4, 2],-1),3),3),9),-3)",
    "io_inp": [
      -5,
      4,
      2
    ],
    "io_out": [
      42,
      -39,
      -21
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(mul_n(input,-1),3),3),9),-3)"
  },
  {
    "input": "input : list = [-5, -5, 1, 0, -2]\noutput : list = [10, 10, 4, 0, -2]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des([-5, -5, 1, 0, -2]),25)),-2)",
    "io_inp": [
      -5,
      -5,
      1,
      0,
      -2
    ],
    "io_out": [
      10,
      10,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(input),25)),-2)"
  },
  {
    "input": "input : list = [3, 1, 2, -2, -5, 3]\noutput : list = [6, 2, -1, 7]",
    "output": "generated_output : list = add_n(take(drop([3, 1, 2, -2, -5, 3],2),19),4)",
    "io_inp": [
      3,
      1,
      2,
      -2,
      -5,
      3
    ],
    "io_out": [
      6,
      2,
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,2),19),4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(drop(sort_asc(sort_asc(sub_n([1, 1],3))),1),-2)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(sort_asc(sub_n(input,3))),1),-2)"
  },
  {
    "input": "input : list = [-2, -3, 0, -1]\noutput : list = [4, 6, 0, 2]",
    "output": "generated_output : list = mul_n([-2, -3, 0, -1],-2)",
    "io_inp": [
      -2,
      -3,
      0,
      -1
    ],
    "io_out": [
      4,
      6,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 5, 0, -2, 1, 0]\noutput : list = [-13]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(take([-5, 5, 0, -2, 1, 0],1),24),-5)),-3)",
    "io_inp": [
      -5,
      5,
      0,
      -2,
      1,
      0
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(take(input,1),24),-5)),-3)"
  },
  {
    "input": "input : list = [5, -5, 3, 5, -2]\noutput : list = [-5, -2, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -5, 3, 5, -2]))",
    "io_inp": [
      5,
      -5,
      3,
      5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [25, 15]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(sort_asc([5, 3]),5))))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      25,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [5, -4, -2, 2, -4]\noutput : list = [5, 2, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(drop(sort_asc([5, -4, -2, 2, -4]),2))))",
    "io_inp": [
      5,
      -4,
      -2,
      2,
      -4
    ],
    "io_out": [
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(drop(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [3, -1, -4, 3, -1, 2]\noutput : list = [-7, -4, -4, -1, 0, 0]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(sort_asc([3, -1, -4, 3, -1, 2]),3),-4),2),1)",
    "io_inp": [
      3,
      -1,
      -4,
      3,
      -1,
      2
    ],
    "io_out": [
      -7,
      -4,
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(sort_asc(input),3),-4),2),1)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(reverse([3, -3]),6)),-4))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(reverse(input),6)),-4))"
  },
  {
    "input": "input : list = [3, 0, 4, -2, 4]\noutput : list = [-12, -12, -9, 0, 6]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_des(sort_des([3, 0, 4, -2, 4])),11)),-3)",
    "io_inp": [
      3,
      0,
      4,
      -2,
      4
    ],
    "io_out": [
      -12,
      -12,
      -9,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_des(sort_des(input)),11)),-3)"
  },
  {
    "input": "input : list = [-2, 3, -2, 0]\noutput : list = [-2, -4, 1, -4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n([-2, 3, -2, 0],-3),2),-5)),2)",
    "io_inp": [
      -2,
      3,
      -2,
      0
    ],
    "io_out": [
      -2,
      -4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n(input,-3),2),-5)),2)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [5, 7]",
    "output": "generated_output : list = sub_n([1, 3],-4)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, -1, 4, 2]\noutput : list = [-6, -1, -3]",
    "output": "generated_output : list = add_n(take(take(drop([1, -1, 4, 2],1),7),12),-5)",
    "io_inp": [
      1,
      -1,
      4,
      2
    ],
    "io_out": [
      -6,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(input,1),7),12),-5)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 0]))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, 1, -3, -4, -1, -2]\noutput : list = [-12, -12, -18, -21, -24, -27]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sub_n([1, 1, -3, -4, -1, -2],5)),1),3))",
    "io_inp": [
      1,
      1,
      -3,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -12,
      -12,
      -18,
      -21,
      -24,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sub_n(input,5)),1),3))"
  },
  {
    "input": "input : list = [5, -5, 2, -2]\noutput : list = [13, 3, 10, 6]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(reverse([5, -5, 2, -2]),-5),1)),-2)",
    "io_inp": [
      5,
      -5,
      2,
      -2
    ],
    "io_out": [
      13,
      3,
      10,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(reverse(input),-5),1)),-2)"
  },
  {
    "input": "input : list = [0, -5, 0, 3, -5]\noutput : list = [-1, -1, 4, 4, 7]",
    "output": "generated_output : list = take(sort_asc(sort_asc(add_n(reverse([0, -5, 0, 3, -5]),4))),33)",
    "io_inp": [
      0,
      -5,
      0,
      3,
      -5
    ],
    "io_out": [
      -1,
      -1,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(add_n(reverse(input),4))),33)"
  },
  {
    "input": "input : list = [4, 4, -1]\noutput : list = [-1, 4, 4]",
    "output": "generated_output : list = sort_asc(mul_n([4, 4, -1],1))",
    "io_inp": [
      4,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [4, 1, -3, -1, -1, -2]\noutput : list = [-16, -8, -8, -24, 8]",
    "output": "generated_output : list = mul_n(mul_n(reverse(drop([4, 1, -3, -1, -1, -2],1)),-2),-4)",
    "io_inp": [
      4,
      1,
      -3,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -16,
      -8,
      -8,
      -24,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(drop(input,1)),-2),-4)"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(take([-4, -2, 5],1),1)),1))",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(take(input,1),1)),1))"
  },
  {
    "input": "input : list = [-5, 2, -5, -1, -5]\noutput : list = [20, -8, 20, 4, 20]",
    "output": "generated_output : list = mul_n([-5, 2, -5, -1, -5],-4)",
    "io_inp": [
      -5,
      2,
      -5,
      -1,
      -5
    ],
    "io_out": [
      20,
      -8,
      20,
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = reverse(drop(take(reverse(reverse([1, 3, 3])),9),1))",
    "io_inp": [
      1,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(take(reverse(reverse(input)),9),1))"
  },
  {
    "input": "input : list = [1, 0, -4, 2, 3, -3]\noutput : list = [5, 4, 3, 2, -1, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse([1, 0, -4, 2, 3, -3]),2))",
    "io_inp": [
      1,
      0,
      -4,
      2,
      3,
      -3
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),2))"
  },
  {
    "input": "input : list = [4, 4, -2, -2, -4]\noutput : list = [-16, -16, 8, 8, 16]",
    "output": "generated_output : list = mul_n([4, 4, -2, -2, -4],-4)",
    "io_inp": [
      4,
      4,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -16,
      -16,
      8,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 4, 3, 1, -3, 0]\noutput : list = [9, 8, 6, 5, 3, 2]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(reverse([-2, 4, 3, 1, -3, 0])),5)),39)",
    "io_inp": [
      -2,
      4,
      3,
      1,
      -3,
      0
    ],
    "io_out": [
      9,
      8,
      6,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(reverse(input)),5)),39)"
  },
  {
    "input": "input : list = [-1, 3, -4, -4, -4, -1]\noutput : list = [-7, -7, -7, -4, -4, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_des([-1, 3, -4, -4, -4, -1]),-3))))",
    "io_inp": [
      -1,
      3,
      -4,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -7,
      -7,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [-1, 2, 4, 0, -1, 4]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(mul_n(take(drop(sub_n([-1, 2, 4, 0, -1, 4],1),5),8),2))",
    "io_inp": [
      -1,
      2,
      4,
      0,
      -1,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(drop(sub_n(input,1),5),8),2))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des([1, -5])",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5, 3, -1, 4]\noutput : list = [2, -33, -23, -3, -28]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n([-2, 5, 3, -1, 4],-2),-3),-5),-3)",
    "io_inp": [
      -2,
      5,
      3,
      -1,
      4
    ],
    "io_out": [
      2,
      -33,
      -23,
      -3,
      -28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(input,-2),-3),-5),-3)"
  },
  {
    "input": "input : list = [4, -5, 1, -1]\noutput : list = [-8, -2, 2, 10]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([4, -5, 1, -1]),-2))",
    "io_inp": [
      4,
      -5,
      1,
      -1
    ],
    "io_out": [
      -8,
      -2,
      2,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sort_asc([4, -3, 3]),4),-4),13))",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sort_asc(input),4),-4),13))"
  },
  {
    "input": "input : list = [-1, 2, -4, 5]\noutput : list = [0, -9, 9, -18]",
    "output": "generated_output : list = mul_n(sub_n([-1, 2, -4, 5],-1),-3)",
    "io_inp": [
      -1,
      2,
      -4,
      5
    ],
    "io_out": [
      0,
      -9,
      9,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-3)"
  },
  {
    "input": "input : list = [5, 1, 3, 2, -4]\noutput : list = [-54, -42, -36, -30, 0]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n([5, 1, 3, 2, -4],4),-3)),2)",
    "io_inp": [
      5,
      1,
      3,
      2,
      -4
    ],
    "io_out": [
      -54,
      -42,
      -36,
      -30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(input,4),-3)),2)"
  },
  {
    "input": "input : list = [-1, 3, -3, -1]\noutput : list = [-4, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n([-1, 3, -3, -1],-1),1)))",
    "io_inp": [
      -1,
      3,
      -3,
      -1
    ],
    "io_out": [
      -4,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(input,-1),1)))"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [2, 9, 9]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(sort_asc([4, 4, -3]),17)),-5))",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      2,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(sort_asc(input),17)),-5))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(sort_asc([5, 2]),-3),5)),4)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(sort_asc(input),-3),5)),4)"
  },
  {
    "input": "input : list = [5, 5, -3, 1, -4, 1]\noutput : list = [1, -4, 1, -3, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, -3, 1, -4, 1])",
    "io_inp": [
      5,
      5,
      -3,
      1,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      1,
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse([-2, -1, 3])),1),3)",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(input)),1),3)"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_des([2, 3, -1]))),-1),-2)",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_des(input))),-1),-2)"
  },
  {
    "input": "input : list = [0, -4, -5, 2, -4]\noutput : list = [-8, -10, -14, -14, -15]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(sort_des([0, -4, -5, 2, -4]),5),-4),20),1)",
    "io_inp": [
      0,
      -4,
      -5,
      2,
      -4
    ],
    "io_out": [
      -8,
      -10,
      -14,
      -14,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(sort_des(input),5),-4),20),1)"
  },
  {
    "input": "input : list = [-4, -2, -4, 2, 0]\noutput : list = [16]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(take([-4, -2, -4, 2, 0],1),-3),3)),-1)",
    "io_inp": [
      -4,
      -2,
      -4,
      2,
      0
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(take(input,1),-3),3)),-1)"
  },
  {
    "input": "input : list = [-2, 2, -2, 2, -4, 1]\noutput : list = [4, -20, 0]",
    "output": "generated_output : list = mul_n(sub_n(drop([-2, 2, -2, 2, -4, 1],3),1),4)",
    "io_inp": [
      -2,
      2,
      -2,
      2,
      -4,
      1
    ],
    "io_out": [
      4,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,3),1),4)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [-28, -12, -20]",
    "output": "generated_output : list = take(add_n(add_n(add_n(mul_n([5, 1, 3],-4),-1),-4),-3),10)",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      -28,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(mul_n(input,-4),-1),-4),-3),10)"
  },
  {
    "input": "input : list = [1, 2, 4, 3]\noutput : list = [2, 3, 5, 4]",
    "output": "generated_output : list = sub_n([1, 2, 4, 3],-1)",
    "io_inp": [
      1,
      2,
      4,
      3
    ],
    "io_out": [
      2,
      3,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [-4, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([-4, 4, 4])))",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, 4, -2, -5, 3]\noutput : list = [-135, 180, -90, -225, 135]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-3, 4, -2, -5, 3],-5),-3),3)",
    "io_inp": [
      -3,
      4,
      -2,
      -5,
      3
    ],
    "io_out": [
      -135,
      180,
      -90,
      -225,
      135
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-5),-3),3)"
  },
  {
    "input": "input : list = [4, -5, 2, 0]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(drop([4, -5, 2, 0],1)),10),16),1)",
    "io_inp": [
      4,
      -5,
      2,
      0
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(drop(input,1)),10),16),1)"
  },
  {
    "input": "input : list = [3, -3, 0, -1, 3, 3]\noutput : list = [2, -4, -1, -2, 2, 2]",
    "output": "generated_output : list = sub_n(take(sub_n(take(add_n([3, -3, 0, -1, 3, 3],-4),7),-4),38),1)",
    "io_inp": [
      3,
      -3,
      0,
      -1,
      3,
      3
    ],
    "io_out": [
      2,
      -4,
      -1,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(add_n(input,-4),7),-4),38),1)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sub_n([0, 1],4)))))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n([-2, 2],-4)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-10, -5]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(reverse([2, 1])),-5),31))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(reverse(input)),-5),31))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(sort_asc([-4, 1]),6)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),6)"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des([-3, -3, -5]))))",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [4, 2, -1, 4, -3]\noutput : list = [7, 0]",
    "output": "generated_output : list = add_n(drop([4, 2, -1, 4, -3],3),3)",
    "io_inp": [
      4,
      2,
      -1,
      4,
      -3
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),3)"
  },
  {
    "input": "input : list = [5, -2, -3]\noutput : list = [3, 4, 11]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sub_n([5, -2, -3],-5)),25),-1))",
    "io_inp": [
      5,
      -2,
      -3
    ],
    "io_out": [
      3,
      4,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sub_n(input,-5)),25),-1))"
  },
  {
    "input": "input : list = [-2, -2, 4, -4, -2]\noutput : list = [16, 6, 6, 6, -24]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sort_asc([-2, -2, 4, -4, -2]),-5),28),1),-5)",
    "io_inp": [
      -2,
      -2,
      4,
      -4,
      -2
    ],
    "io_out": [
      16,
      6,
      6,
      6,
      -24
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sort_asc(input),-5),28),1),-5)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(add_n(sub_n([-1, -2],-1),-2))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,-1),-2))"
  },
  {
    "input": "input : list = [2, 5, -5, 2, -2]\noutput : list = [-1, -16, 34, -1, 19]",
    "output": "generated_output : list = add_n(mul_n(sub_n([2, 5, -5, 2, -2],1),-5),4)",
    "io_inp": [
      2,
      5,
      -5,
      2,
      -2
    ],
    "io_out": [
      -1,
      -16,
      34,
      -1,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,1),-5),4)"
  },
  {
    "input": "input : list = [-2, -1, 1, 1]\noutput : list = [2, 2, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(sub_n([-2, -1, 1, 1],-5),4))))",
    "io_inp": [
      -2,
      -1,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(sub_n(input,-5),4))))"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [0, -6, -12]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des([-1, 2, -4]),2)),4)",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      0,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(input),2)),4)"
  },
  {
    "input": "input : list = [-2, 3, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(take([-2, 3, -3],1))",
    "io_inp": [
      -2,
      3,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [7, 1]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(sub_n([-1, 5],5),-5)),2),10)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(sub_n(input,5),-5)),2),10)"
  },
  {
    "input": "input : list = [4, -2, -1, 2, -2, 0]\noutput : list = [1, -5, -4, -1, -5, -3]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n([4, -2, -1, 2, -2, 0],1),4),2),17)",
    "io_inp": [
      4,
      -2,
      -1,
      2,
      -2,
      0
    ],
    "io_out": [
      1,
      -5,
      -4,
      -1,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(input,1),4),2),17)"
  },
  {
    "input": "input : list = [3, 2, 3, -3, -1]\noutput : list = [2, 3, 2, 8, 6]",
    "output": "generated_output : list = take(add_n(add_n(take(mul_n([3, 2, 3, -3, -1],-1),22),2),3),28)",
    "io_inp": [
      3,
      2,
      3,
      -3,
      -1
    ],
    "io_out": [
      2,
      3,
      2,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(mul_n(input,-1),22),2),3),28)"
  },
  {
    "input": "input : list = [1, 4, 5, -1]\noutput : list = [10, 9, 6]",
    "output": "generated_output : list = sort_des(add_n(drop(sort_asc([1, 4, 5, -1]),1),5))",
    "io_inp": [
      1,
      4,
      5,
      -1
    ],
    "io_out": [
      10,
      9,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(sort_asc(input),1),5))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([2, 2])))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, 2, 3, -2, 2]\noutput : list = [2, 3, 4, -1, 3]",
    "output": "generated_output : list = add_n(reverse(reverse([1, 2, 3, -2, 2])),1)",
    "io_inp": [
      1,
      2,
      3,
      -2,
      2
    ],
    "io_out": [
      2,
      3,
      4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),1)"
  },
  {
    "input": "input : list = [5, -3, 3, 1, 4, 1]\noutput : list = [-15, 1, 9, 17]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take([5, -3, 3, 1, 4, 1],4),4)),3)",
    "io_inp": [
      5,
      -3,
      3,
      1,
      4,
      1
    ],
    "io_out": [
      -15,
      1,
      9,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(input,4),4)),3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-15, -25]",
    "output": "generated_output : list = sort_des(mul_n([-5, -3],5))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -1, 4],1)",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(add_n(take(take(add_n([3, 4],4),1),21),1),5)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(add_n(input,4),1),21),1),5)"
  },
  {
    "input": "input : list = [-3, -4, 4, -3, 5, 5]\noutput : list = [-3, -3, 0, 21, 21, 24]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-3, -4, 4, -3, 5, 5],-4)),-3)",
    "io_inp": [
      -3,
      -4,
      4,
      -3,
      5,
      5
    ],
    "io_out": [
      -3,
      -3,
      0,
      21,
      21,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,-4)),-3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 3, -1, 2, -2, -3]\noutput : list = [3, 4, 0, 3, -1, -2]",
    "output": "generated_output : list = add_n([2, 3, -1, 2, -2, -3],1)",
    "io_inp": [
      2,
      3,
      -1,
      2,
      -2,
      -3
    ],
    "io_out": [
      3,
      4,
      0,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, -5, 4, 4]\noutput : list = [-3, -9, 0, 0]",
    "output": "generated_output : list = add_n([1, -5, 4, 4],-4)",
    "io_inp": [
      1,
      -5,
      4,
      4
    ],
    "io_out": [
      -3,
      -9,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-40, 32]",
    "output": "generated_output : list = mul_n(mul_n(take(take(sort_des([-4, 5]),2),8),2),-4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -40,
      32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(sort_des(input),2),8),2),-4)"
  },
  {
    "input": "input : list = [2, 2, -2, -4, -5, -5]\noutput : list = [-4, -4, -8, -10, -11, -11]",
    "output": "generated_output : list = add_n(sub_n([2, 2, -2, -4, -5, -5],2),-4)",
    "io_inp": [
      2,
      2,
      -2,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -8,
      -10,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-4)"
  },
  {
    "input": "input : list = [-2, 2, 2]\noutput : list = [2, 2, -2]",
    "output": "generated_output : list = take(sort_des([-2, 2, 2]),14)",
    "io_inp": [
      -2,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [-5, -2, 3]\noutput : list = [-2, -12, -18]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(add_n([-5, -2, 3],-1)),3),2))",
    "io_inp": [
      -5,
      -2,
      3
    ],
    "io_out": [
      -2,
      -12,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(add_n(input,-1)),3),2))"
  },
  {
    "input": "input : list = [0, 4, -4, 4, 3, 3]\noutput : list = [1, 1, 2, 2, 5, 9]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([0, 4, -4, 4, 3, 3],5)),-1)",
    "io_inp": [
      0,
      4,
      -4,
      4,
      3,
      3
    ],
    "io_out": [
      1,
      1,
      2,
      2,
      5,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,5)),-1)"
  },
  {
    "input": "input : list = [0, 2, 5, 4]\noutput : list = [-5, -3, 0, -1]",
    "output": "generated_output : list = sub_n([0, 2, 5, 4],5)",
    "io_inp": [
      0,
      2,
      5,
      4
    ],
    "io_out": [
      -5,
      -3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, -2, -4, 5, -5]\noutput : list = [0, -1, -7, -9, -10]",
    "output": "generated_output : list = add_n(sort_des([4, -2, -4, 5, -5]),-5)",
    "io_inp": [
      4,
      -2,
      -4,
      5,
      -5
    ],
    "io_out": [
      0,
      -1,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [2, -2, 3, 5, -5, -1]\noutput : list = [5, -5, -1]",
    "output": "generated_output : list = drop([2, -2, 3, 5, -5, -1],3)",
    "io_inp": [
      2,
      -2,
      3,
      5,
      -5,
      -1
    ],
    "io_out": [
      5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [20, -16]",
    "output": "generated_output : list = mul_n([-5, 4],-4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 1, -5, -3, 2, 4]\noutput : list = [3, 1, 0, -1, -4]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sort_asc([0, 1, -5, -3, 2, 4])),1),11),5)",
    "io_inp": [
      0,
      1,
      -5,
      -3,
      2,
      4
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sort_asc(input)),1),11),5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-12]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(sub_n([-3, 5],3),1),-5),1),-1)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(sub_n(input,3),1),-5),1),-1)"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(add_n(reverse([-1, 1, 2]),-4),4),1),-4)",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(add_n(reverse(input),-4),4),1),-4)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(mul_n(add_n(take(sub_n([-2, -1],-4),11),-4),2))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(sub_n(input,-4),11),-4),2))"
  },
  {
    "input": "input : list = [5, 4, -5, -1, 2]\noutput : list = [2, 6, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(drop([5, 4, -5, -1, 2],2),5),2)))",
    "io_inp": [
      5,
      4,
      -5,
      -1,
      2
    ],
    "io_out": [
      2,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(drop(input,2),5),2)))"
  },
  {
    "input": "input : list = [-2, -5, 0, 1]\noutput : list = [27, 36, 42, 45]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sub_n([-2, -5, 0, 1],-5),-4),5)),3)",
    "io_inp": [
      -2,
      -5,
      0,
      1
    ],
    "io_out": [
      27,
      36,
      42,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sub_n(input,-5),-4),5)),3)"
  },
  {
    "input": "input : list = [-3, -1, -4, -3, 2, -2]\noutput : list = [7, 4, 3, 2, 2, 1]",
    "output": "generated_output : list = reverse(add_n(take(sort_asc(sub_n([-3, -1, -4, -3, 2, -2],-2)),24),3))",
    "io_inp": [
      -3,
      -1,
      -4,
      -3,
      2,
      -2
    ],
    "io_out": [
      7,
      4,
      3,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_asc(sub_n(input,-2)),24),3))"
  },
  {
    "input": "input : list = [-4, 4, 3]\noutput : list = [4, 20, 18]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(reverse([-4, 4, 3]),5),-1),2))",
    "io_inp": [
      -4,
      4,
      3
    ],
    "io_out": [
      4,
      20,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(reverse(input),5),-1),2))"
  },
  {
    "input": "input : list = [4, -5, 5, -3, 2]\noutput : list = [1, -2, -7, -9]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(drop([4, -5, 5, -3, 2],1),10),-4)))",
    "io_inp": [
      4,
      -5,
      5,
      -3,
      2
    ],
    "io_out": [
      1,
      -2,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(drop(input,1),10),-4)))"
  },
  {
    "input": "input : list = [-2, -5, -2, 4, 4, 1]\noutput : list = [-8, -5, -5, -2, 1, 1]",
    "output": "generated_output : list = take(reverse(sub_n(take(sort_des([-2, -5, -2, 4, 4, 1]),21),3)),36)",
    "io_inp": [
      -2,
      -5,
      -2,
      4,
      4,
      1
    ],
    "io_out": [
      -8,
      -5,
      -5,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(sort_des(input),21),3)),36)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -5, -3],1)",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse([-4, 0, 0])))",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-2, 0, -2, -2, 0, 5]\noutput : list = [2, 2, 2, 0, 0, -5]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-2, 0, -2, -2, 0, 5]),-1))",
    "io_inp": [
      -2,
      0,
      -2,
      -2,
      0,
      5
    ],
    "io_out": [
      2,
      2,
      2,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-1))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [36, -36]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n([-3, 3],3),4),15)))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      36,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n(input,3),4),15)))"
  },
  {
    "input": "input : list = [4, -1, 4, -4, 2, 5]\noutput : list = [4, -1, 4, -4, 2, 5]",
    "output": "generated_output : list = reverse(reverse([4, -1, 4, -4, 2, 5]))",
    "io_inp": [
      4,
      -1,
      4,
      -4,
      2,
      5
    ],
    "io_out": [
      4,
      -1,
      4,
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 4, -1, 4, 3, 3]\noutput : list = [2, 2, -6, -6, -8, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(sort_des([-1, 4, -1, 4, 3, 3]),-2)),44))",
    "io_inp": [
      -1,
      4,
      -1,
      4,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      -6,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(sort_des(input),-2)),44))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, -1]))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -5, 1, -4, -5, 3]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sort_des([-4, -5, 1, -4, -5, 3]),1))),-4)",
    "io_inp": [
      -4,
      -5,
      1,
      -4,
      -5,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sort_des(input),1))),-4)"
  },
  {
    "input": "input : list = [5, 3, -4, -4, -4, 5]\noutput : list = [10, 10, 8, 1, 1, 1]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(reverse([5, 3, -4, -4, -4, 5])),5),45))",
    "io_inp": [
      5,
      3,
      -4,
      -4,
      -4,
      5
    ],
    "io_out": [
      10,
      10,
      8,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(reverse(input)),5),45))"
  },
  {
    "input": "input : list = [1, 4, 4, -3, -3, 5]\noutput : list = [-96, -96, -24]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(take([1, 4, 4, -3, -3, 5],3)),-4),-3),-2)",
    "io_inp": [
      1,
      4,
      4,
      -3,
      -3,
      5
    ],
    "io_out": [
      -96,
      -96,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(take(input,3)),-4),-3),-2)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(add_n([0, 0],3)),4),4),21)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(add_n(input,3)),4),4),21)"
  },
  {
    "input": "input : list = [-5, 5, -5, 0]\noutput : list = [-10, 15, 40]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(drop([-5, 5, -5, 0],1),-3),30)),5)",
    "io_inp": [
      -5,
      5,
      -5,
      0
    ],
    "io_out": [
      -10,
      15,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(drop(input,1),-3),30)),5)"
  },
  {
    "input": "input : list = [-1, 4, 3, -3, 4, 2]\noutput : list = [-3, -1, 2, 3, 4, 4]",
    "output": "generated_output : list = sort_asc([-1, 4, 3, -3, 4, 2])",
    "io_inp": [
      -1,
      4,
      3,
      -3,
      4,
      2
    ],
    "io_out": [
      -3,
      -1,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, -2, 3, -2, 3]\noutput : list = [5, 3, 3, 3, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(add_n([3, 5, -2, 3, -2, 3],1),1),2)))",
    "io_inp": [
      3,
      5,
      -2,
      3,
      -2,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(add_n(input,1),1),2)))"
  },
  {
    "input": "input : list = [3, 2, -1]\noutput : list = [18, 27, 30]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n([3, 2, -1],-4),18),3),3))",
    "io_inp": [
      3,
      2,
      -1
    ],
    "io_out": [
      18,
      27,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n(input,-4),18),3),3))"
  },
  {
    "input": "input : list = [1, -2, 5, -4, 3]\noutput : list = [-4]",
    "output": "generated_output : list = drop(reverse(reverse(sort_des(sort_des([1, -2, 5, -4, 3])))),4)",
    "io_inp": [
      1,
      -2,
      5,
      -4,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(reverse(reverse(sort_des(sort_des(input)))),4)"
  },
  {
    "input": "input : list = [2, 0, -3, 5, 3, -2]\noutput : list = [-3, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(take([2, 0, -3, 5, 3, -2],3)),28)))",
    "io_inp": [
      2,
      0,
      -3,
      5,
      3,
      -2
    ],
    "io_out": [
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(take(input,3)),28)))"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-1, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, -1])",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2, 2, 2, 1, 5]\noutput : list = [20, -10, 10, 10, 5, 25]",
    "output": "generated_output : list = mul_n([4, -2, 2, 2, 1, 5],5)",
    "io_inp": [
      4,
      -2,
      2,
      2,
      1,
      5
    ],
    "io_out": [
      20,
      -10,
      10,
      10,
      5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-3, -8]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(sort_asc([1, 0]),-5),3)))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(sort_asc(input),-5),3)))"
  },
  {
    "input": "input : list = [2, -4, 1, -4, 0, 0]\noutput : list = [7, 1, 6, 1, 5, 5]",
    "output": "generated_output : list = add_n([2, -4, 1, -4, 0, 0],5)",
    "io_inp": [
      2,
      -4,
      1,
      -4,
      0,
      0
    ],
    "io_out": [
      7,
      1,
      6,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, -2, 1]\noutput : list = [3, -4, -1]",
    "output": "generated_output : list = take(add_n(add_n([5, -2, 1],-1),-1),15)",
    "io_inp": [
      5,
      -2,
      1
    ],
    "io_out": [
      3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,-1),-1),15)"
  },
  {
    "input": "input : list = [-3, 2, -2, -3]\noutput : list = [-3, -2, 2, -3]",
    "output": "generated_output : list = reverse([-3, 2, -2, -3])",
    "io_inp": [
      -3,
      2,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = drop([-5, 2, 0],1)",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take(take(sub_n(sort_des(add_n([-2, -2],-3)),-1),12),9)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(add_n(input,-3)),-1),12),9)"
  },
  {
    "input": "input : list = [0, 4, 0, -1, 5, -1]\noutput : list = [4, 10]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(drop([0, 4, 0, -1, 5, -1],4)))),5)",
    "io_inp": [
      0,
      4,
      0,
      -1,
      5,
      -1
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(drop(input,4)))),5)"
  },
  {
    "input": "input : list = [4, -2, -2, -2, -4]\noutput : list = [2, -4, -4, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(add_n([4, -2, -2, -2, -4],5)),2),5))",
    "io_inp": [
      4,
      -2,
      -2,
      -2,
      -4
    ],
    "io_out": [
      2,
      -4,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(add_n(input,5)),2),5))"
  },
  {
    "input": "input : list = [2, 4, 4, 1, -2, 5]\noutput : list = [0, 3, 4, 6, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse([2, 4, 4, 1, -2, 5])),-2))",
    "io_inp": [
      2,
      4,
      4,
      1,
      -2,
      5
    ],
    "io_out": [
      0,
      3,
      4,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(input)),-2))"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-4, -9, -10]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(add_n([-4, 1, -5],-2)))),-3)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -4,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(add_n(input,-2)))),-3)"
  },
  {
    "input": "input : list = [-4, 1, -4, 4, 2]\noutput : list = [-6, -6, 4, 6, 10]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(mul_n([-4, 1, -4, 4, 2],2)),-2)),-4)",
    "io_inp": [
      -4,
      1,
      -4,
      4,
      2
    ],
    "io_out": [
      -6,
      -6,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(mul_n(input,2)),-2)),-4)"
  },
  {
    "input": "input : list = [-2, 5, 1, -1]\noutput : list = [-5, -4, -2, 2]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_des([-2, 5, 1, -1]),-5)),-3),5)",
    "io_inp": [
      -2,
      5,
      1,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_des(input),-5)),-3),5)"
  },
  {
    "input": "input : list = [3, 5, 5, 4, -1, 3]\noutput : list = [2, 4, 4, 3, -2, 2]",
    "output": "generated_output : list = add_n([3, 5, 5, 4, -1, 3],-1)",
    "io_inp": [
      3,
      5,
      5,
      4,
      -1,
      3
    ],
    "io_out": [
      2,
      4,
      4,
      3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(mul_n([-2, -1],3)),6)))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(mul_n(input,3)),6)))"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [1, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(sort_asc([-4, 1, 1])),-5)))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [4, 4, -5]\noutput : list = [-10, -1, -1]",
    "output": "generated_output : list = sub_n(sort_asc([4, 4, -5]),5)",
    "io_inp": [
      4,
      4,
      -5
    ],
    "io_out": [
      -10,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [0, 3, 0, 5, 3]\noutput : list = [-25, -15, -15, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n([0, 3, 0, 5, 3],-5))",
    "io_inp": [
      0,
      3,
      0,
      5,
      3
    ],
    "io_out": [
      -25,
      -15,
      -15,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [4, 5, 0, 2, 2]\noutput : list = [-10, -8, -4, -4, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(reverse([4, 5, 0, 2, 2])),-2)))",
    "io_inp": [
      4,
      5,
      0,
      2,
      2
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [5, 0, -2, -3, 0, 4]\noutput : list = [7, 2, 0, -1, 2, 6]",
    "output": "generated_output : list = sub_n([5, 0, -2, -3, 0, 4],-2)",
    "io_inp": [
      5,
      0,
      -2,
      -3,
      0,
      4
    ],
    "io_out": [
      7,
      2,
      0,
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, 4, -3, -3]\noutput : list = [-8, -8, -1]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(drop([5, 4, -3, -3],1)),-5),32))",
    "io_inp": [
      5,
      4,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(drop(input,1)),-5),32))"
  },
  {
    "input": "input : list = [1, 4, -5, 4, -5, -5]\noutput : list = [1, 4, -5, 4]",
    "output": "generated_output : list = take([1, 4, -5, 4, -5, -5],4)",
    "io_inp": [
      1,
      4,
      -5,
      4,
      -5,
      -5
    ],
    "io_out": [
      1,
      4,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [4, 5, 5, 4, -1, -2]\noutput : list = [5, 5, 4, 4, -1, -2]",
    "output": "generated_output : list = sort_des([4, 5, 5, 4, -1, -2])",
    "io_inp": [
      4,
      5,
      5,
      4,
      -1,
      -2
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [-5, -5, -6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(add_n([0, 0, -1],-3)),4)),2)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(add_n(input,-3)),4)),2)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-4, -20, -24]",
    "output": "generated_output : list = take(sort_des(take(mul_n(add_n([4, 0, -1],-5),4),13)),40)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -4,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(add_n(input,-5),4),13)),40)"
  },
  {
    "input": "input : list = [0, 1, -4, 4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = drop([0, 1, -4, 4, -1],3)",
    "io_inp": [
      0,
      1,
      -4,
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, 3, 2]\noutput : list = [2, 3, 3]",
    "output": "generated_output : list = sort_asc([3, 3, 2])",
    "io_inp": [
      3,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5, -3]\noutput : list = [-16, -20, -12]",
    "output": "generated_output : list = mul_n([-4, -5, -3],4)",
    "io_inp": [
      -4,
      -5,
      -3
    ],
    "io_out": [
      -16,
      -20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, 5, 5, 2]\noutput : list = [1, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(drop(reverse([-1, 5, 5, 2]),1),-1)))",
    "io_inp": [
      -1,
      5,
      5,
      2
    ],
    "io_out": [
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(drop(reverse(input),1),-1)))"
  },
  {
    "input": "input : list = [2, -4, -4, -3, 4]\noutput : list = [2, -4]",
    "output": "generated_output : list = take([2, -4, -4, -3, 4],2)",
    "io_inp": [
      2,
      -4,
      -4,
      -3,
      4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(reverse([1, -1, -4])))",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-9, 3]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(reverse([-1, 3])),2)),3)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(reverse(input)),2)),3)"
  },
  {
    "input": "input : list = [-2, -2, 2, 1, 0]\noutput : list = [-4, -4, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sub_n([-2, -2, 2, 1, 0],-3),24),-5),33))",
    "io_inp": [
      -2,
      -2,
      2,
      1,
      0
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sub_n(input,-3),24),-5),33))"
  },
  {
    "input": "input : list = [-2, 3, -2, -3, 4]\noutput : list = [3, 4, 4, 9, 10]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(sort_des([-2, 3, -2, -3, 4]),1),-5)))",
    "io_inp": [
      -2,
      3,
      -2,
      -3,
      4
    ],
    "io_out": [
      3,
      4,
      4,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(sort_des(input),1),-5)))"
  },
  {
    "input": "input : list = [-5, -2, -3, 1, 3]\noutput : list = [-9]",
    "output": "generated_output : list = take(sub_n(take(mul_n(add_n([-5, -2, -3, 1, 3],1),2),1),1),4)",
    "io_inp": [
      -5,
      -2,
      -3,
      1,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(add_n(input,1),2),1),1),4)"
  },
  {
    "input": "input : list = [-1, -2, 1, 1]\noutput : list = [1, 0, 3, 3]",
    "output": "generated_output : list = sub_n([-1, -2, 1, 1],-2)",
    "io_inp": [
      -1,
      -2,
      1,
      1
    ],
    "io_out": [
      1,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 0, -4, 5, -3, -1]\noutput : list = [-6, -1, -5, 4, -4, -2]",
    "output": "generated_output : list = sub_n([-5, 0, -4, 5, -3, -1],1)",
    "io_inp": [
      -5,
      0,
      -4,
      5,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -1,
      -5,
      4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [10, -5]",
    "output": "generated_output : list = mul_n(take(sort_des(take(sort_asc([2, -1]),6)),10),5)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(sort_asc(input),6)),10),5)"
  },
  {
    "input": "input : list = [2, 5, -4, -3, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_asc(add_n(drop(sub_n([2, 5, -4, -3, 3],-5),4),-5)),30)",
    "io_inp": [
      2,
      5,
      -4,
      -3,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(drop(sub_n(input,-5),4),-5)),30)"
  },
  {
    "input": "input : list = [3, 3, 1, 5, -5]\noutput : list = [-6, -6, -16, 4, -46]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n([3, 3, 1, 5, -5],5),5),19),4)",
    "io_inp": [
      3,
      3,
      1,
      5,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -16,
      4,
      -46
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(input,5),5),19),4)"
  },
  {
    "input": "input : list = [0, 5, 4, -5, 2]\noutput : list = [-16, 12, 20]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(drop(mul_n([0, 5, 4, -5, 2],4),2),4)))",
    "io_inp": [
      0,
      5,
      4,
      -5,
      2
    ],
    "io_out": [
      -16,
      12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(drop(mul_n(input,4),2),4)))"
  },
  {
    "input": "input : list = [-1, 5, -1, 3]\noutput : list = [8, 6, 2, 2]",
    "output": "generated_output : list = add_n(sort_des([-1, 5, -1, 3]),3)",
    "io_inp": [
      -1,
      5,
      -1,
      3
    ],
    "io_out": [
      8,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-2, 3, 1]\noutput : list = [-4, 2, 6]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse([-2, 3, 1])),2))",
    "io_inp": [
      -2,
      3,
      1
    ],
    "io_out": [
      -4,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(input)),2))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [15, -12]",
    "output": "generated_output : list = mul_n(sort_asc([4, -5]),-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [4, -2, -1, -3, 0, -4]\noutput : list = [16, 0, -4, -8, -12, -16]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(mul_n([4, -2, -1, -3, 0, -4],4)),-2),7),2)",
    "io_inp": [
      4,
      -2,
      -1,
      -3,
      0,
      -4
    ],
    "io_out": [
      16,
      0,
      -4,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(mul_n(input,4)),-2),7),2)"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [0, 20, 25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_des([4, 0, 5])))),5)",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      0,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(sort_des([-2, 5])))))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, -2, -3, 1, -4, 5]\noutput : list = [0, 6, 12, 24, 30, 54]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n([0, -2, -3, 1, -4, 5],-4)),-3),-2)",
    "io_inp": [
      0,
      -2,
      -3,
      1,
      -4,
      5
    ],
    "io_out": [
      0,
      6,
      12,
      24,
      30,
      54
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(input,-4)),-3),-2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [4, -2]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc([5, -1]),5),4)),8)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc(input),5),4)),8)"
  },
  {
    "input": "input : list = [-1, -1, 1, 1, 5, 4]\noutput : list = [7, 6, 3, 3, 1, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_des([-1, -1, 1, 1, 5, 4]),26)),-2))",
    "io_inp": [
      -1,
      -1,
      1,
      1,
      5,
      4
    ],
    "io_out": [
      7,
      6,
      3,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_des(input),26)),-2))"
  },
  {
    "input": "input : list = [5, -2, -4, 0, 1, -3]\noutput : list = [5, 1, 0, -2, -3, -4]",
    "output": "generated_output : list = sort_des([5, -2, -4, 0, 1, -3])",
    "io_inp": [
      5,
      -2,
      -4,
      0,
      1,
      -3
    ],
    "io_out": [
      5,
      1,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc([3, -4])",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, -1, 4]\noutput : list = [1, -4, -4, -5]",
    "output": "generated_output : list = sort_des(take(add_n([-1, -2, -1, 4],-3),20))",
    "io_inp": [
      -1,
      -2,
      -1,
      4
    ],
    "io_out": [
      1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,-3),20))"
  },
  {
    "input": "input : list = [1, -4, 5]\noutput : list = [-2, 3, 7]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(sort_asc([1, -4, 5])),-2),28))",
    "io_inp": [
      1,
      -4,
      5
    ],
    "io_out": [
      -2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(sort_asc(input)),-2),28))"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [-4, -24]",
    "output": "generated_output : list = add_n(take(take(mul_n(drop([4, 0, 4],1),-5),11),6),-4)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      -4,
      -24
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(drop(input,1),-5),11),6),-4)"
  },
  {
    "input": "input : list = [1, -1, -4, 2]\noutput : list = [6, 4, 1, 7]",
    "output": "generated_output : list = reverse(sub_n(reverse([1, -1, -4, 2]),-5))",
    "io_inp": [
      1,
      -1,
      -4,
      2
    ],
    "io_out": [
      6,
      4,
      1,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [1, -5, 5, 5, 4, -1]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(take(take(drop([1, -5, 5, 5, 4, -1],3),2),3))",
    "io_inp": [
      1,
      -5,
      5,
      5,
      4,
      -1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(drop(input,3),2),3))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-55, -55]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sort_asc([-1, -1]),5),3),3),1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -55,
      -55
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sort_asc(input),5),3),3),1)"
  },
  {
    "input": "input : list = [-3, 4, 4, 4, -2, -4]\noutput : list = [-10, -9, -8, -2, -2, -2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([-3, 4, 4, 4, -2, -4],4)),-2)",
    "io_inp": [
      -3,
      4,
      4,
      4,
      -2,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,4)),-2)"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(take([3, -4, -5],1),1))),42)",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(take(input,1),1))),42)"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [5, -7, 29]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(sub_n([-4, 5, 2],2)),-4),33),5)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      5,
      -7,
      29
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(sub_n(input,2)),-4),33),5)"
  },
  {
    "input": "input : list = [5, -1, -3, 2, -5]\noutput : list = [10, -4]",
    "output": "generated_output : list = mul_n(reverse(drop([5, -1, -3, 2, -5],3)),-2)",
    "io_inp": [
      5,
      -1,
      -3,
      2,
      -5
    ],
    "io_out": [
      10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,3)),-2)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-3, -9]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(add_n([1, -5],-2),-2))),27)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(add_n(input,-2),-2))),27)"
  },
  {
    "input": "input : list = [1, 5, -2, -4]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(take([1, 5, -2, -4],2))",
    "io_inp": [
      1,
      5,
      -2,
      -4
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [2, -1, 5, 1, 0, -1]\noutput : list = [6, 3, 2, 1, 0, 0]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(reverse([2, -1, 5, 1, 0, -1]),20),1)))",
    "io_inp": [
      2,
      -1,
      5,
      1,
      0,
      -1
    ],
    "io_out": [
      6,
      3,
      2,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(reverse(input),20),1)))"
  },
  {
    "input": "input : list = [1, 2, 0]\noutput : list = [6, 7, 5]",
    "output": "generated_output : list = sub_n([1, 2, 0],-5)",
    "io_inp": [
      1,
      2,
      0
    ],
    "io_out": [
      6,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, -3, -3, -4, -3]\noutput : list = [-4, -3, -3, -3, 4]",
    "output": "generated_output : list = sort_asc([4, -3, -3, -4, -3])",
    "io_inp": [
      4,
      -3,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, -5, 2]\noutput : list = [-490, 635, -240]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(drop([1, 4, -5, 2],1),-5),-5),2),-5)",
    "io_inp": [
      1,
      4,
      -5,
      2
    ],
    "io_out": [
      -490,
      635,
      -240
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(drop(input,1),-5),-5),2),-5)"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [-16, 48, 112]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(sub_n([-1, -5, 3],-4),4))),4)",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      -16,
      48,
      112
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(sub_n(input,-4),4))),4)"
  },
  {
    "input": "input : list = [5, -4, -1, 4, 1]\noutput : list = [-4, -1, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, -4, -1, 4, 1]))",
    "io_inp": [
      5,
      -4,
      -1,
      4,
      1
    ],
    "io_out": [
      -4,
      -1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, 1, 3, 1, -4]\noutput : list = [-1, -2, -4, -4, -9]",
    "output": "generated_output : list = take(sort_des(sub_n([4, 1, 3, 1, -4],5)),11)",
    "io_inp": [
      4,
      1,
      3,
      1,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,5)),11)"
  },
  {
    "input": "input : list = [3, -1, -3]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = take(reverse(take(sort_asc(sort_des([3, -1, -3])),11)),4)",
    "io_inp": [
      3,
      -1,
      -3
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(sort_des(input)),11)),4)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [-1, -1, -3]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(add_n([3, 5, 5],-3)),-3),-5),-1)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(add_n(input,-3)),-3),-5),-1)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [0, 4, 36]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([4, -4, 5],5)),-4)",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      0,
      4,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,5)),-4)"
  },
  {
    "input": "input : list = [-1, -3, -2, -4, 5, 5]\noutput : list = [8, 6, 4, -10, -10]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(drop([-1, -3, -2, -4, 5, 5],1)),25)),-2)",
    "io_inp": [
      -1,
      -3,
      -2,
      -4,
      5,
      5
    ],
    "io_out": [
      8,
      6,
      4,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(drop(input,1)),25)),-2)"
  },
  {
    "input": "input : list = [4, -1, 3, 1]\noutput : list = [4, 3, 1, -1]",
    "output": "generated_output : list = sort_des([4, -1, 3, 1])",
    "io_inp": [
      4,
      -1,
      3,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, 1, 4, 4]\noutput : list = [-20, -25, -5, -20, -20]",
    "output": "generated_output : list = mul_n([4, 5, 1, 4, 4],-5)",
    "io_inp": [
      4,
      5,
      1,
      4,
      4
    ],
    "io_out": [
      -20,
      -25,
      -5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, 5, 0, -2]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(take([0, 5, 0, -2],2))",
    "io_inp": [
      0,
      5,
      0,
      -2
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(sort_asc([-5, 4]),10))))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(sort_asc(input),10))))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse([-4, -1])",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-45, -15]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(mul_n([3, 1],3))),1),-5)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -45,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(mul_n(input,3))),1),-5)"
  },
  {
    "input": "input : list = [4, 1, -5, -4, -4]\noutput : list = [-8, -2, 10]",
    "output": "generated_output : list = mul_n(sort_des(take([4, 1, -5, -4, -4],3)),-2)",
    "io_inp": [
      4,
      1,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,3)),-2)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 3, -3])",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, 0, 0, -3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sub_n(drop([2, 2, 0, 0, -3, 0],4),2)",
    "io_inp": [
      2,
      2,
      0,
      0,
      -3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-10, 2]",
    "output": "generated_output : list = mul_n([5, -1],-2)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 3, -2, -4, 1, 0]\noutput : list = [2, 3]",
    "output": "generated_output : list = take([2, 3, -2, -4, 1, 0],2)",
    "io_inp": [
      2,
      3,
      -2,
      -4,
      1,
      0
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -1, -4, 1, 5, 3]\noutput : list = [1, -1, -1]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(add_n([3, -1, -4, 1, 5, 3],1))),3),-5)",
    "io_inp": [
      3,
      -1,
      -4,
      1,
      5,
      3
    ],
    "io_out": [
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(add_n(input,1))),3),-5)"
  },
  {
    "input": "input : list = [2, 1, -4, 5, 2, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, 1, -4, 5, 2, -1],1))",
    "io_inp": [
      2,
      1,
      -4,
      5,
      2,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-4, -4, -2, -4, 0]\noutput : list = [20, 20, 10, 20, 0]",
    "output": "generated_output : list = mul_n([-4, -4, -2, -4, 0],-5)",
    "io_inp": [
      -4,
      -4,
      -2,
      -4,
      0
    ],
    "io_out": [
      20,
      20,
      10,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 1, 0, -1, -4, 0]\noutput : list = [-5, -4, -1, 0, 0, 1]",
    "output": "generated_output : list = sort_asc([-5, 1, 0, -1, -4, 0])",
    "io_inp": [
      -5,
      1,
      0,
      -1,
      -4,
      0
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, -5]\noutput : list = [-6, -3, -2]",
    "output": "generated_output : list = reverse(take(add_n(add_n([-1, -2, -5],2),-3),17))",
    "io_inp": [
      -1,
      -2,
      -5
    ],
    "io_out": [
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(input,2),-3),17))"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [5, 0, -5]",
    "output": "generated_output : list = mul_n(sort_des([-1, 0, 1]),5)",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [6, 9]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(add_n([-4, -1],1),-2),3),-4),41)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(add_n(input,1),-2),3),-4),41)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-7, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_asc([4, -5]),2))))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [-1, -4, 0, -2]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = sub_n(sub_n(add_n(drop(sort_asc([-1, -4, 0, -2]),1),-2),-3),3)",
    "io_inp": [
      -1,
      -4,
      0,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(drop(sort_asc(input),1),-2),-3),3)"
  },
  {
    "input": "input : list = [5, 0, 5, 5]\noutput : list = [-2, 3, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([5, 0, 5, 5],3),5))",
    "io_inp": [
      5,
      0,
      5,
      5
    ],
    "io_out": [
      -2,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,3),5))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [4]",
    "output": "generated_output : list = add_n(take([3, 1, -4],1),1)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),1)"
  },
  {
    "input": "input : list = [5, 1, 4, 1, -4, -2]\noutput : list = [-1, -41, -25]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(drop([5, 1, 4, 1, -4, -2],3),-4),-5),-2),-1)",
    "io_inp": [
      5,
      1,
      4,
      1,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -41,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(drop(input,3),-4),-5),-2),-1)"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(take([5, 3, 2],1),-1))),4)",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(take(input,1),-1))),4)"
  },
  {
    "input": "input : list = [-1, -1, 1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take([-1, -1, 1],1))",
    "io_inp": [
      -1,
      -1,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [2, -4, -5]\noutput : list = [-14, -13, -7]",
    "output": "generated_output : list = sub_n(sub_n(take(take(reverse([2, -4, -5]),3),24),4),5)",
    "io_inp": [
      2,
      -4,
      -5
    ],
    "io_out": [
      -14,
      -13,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(reverse(input),3),24),4),5)"
  },
  {
    "input": "input : list = [-5, 1, -4]\noutput : list = [-34, 16, -44]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(mul_n([-5, 1, -4],-5),3)),-2),32)",
    "io_inp": [
      -5,
      1,
      -4
    ],
    "io_out": [
      -34,
      16,
      -44
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(mul_n(input,-5),3)),-2),32)"
  },
  {
    "input": "input : list = [4, -3, -2, 2, -5]\noutput : list = [-48]",
    "output": "generated_output : list = mul_n(mul_n(take(mul_n(take([4, -3, -2, 2, -5],1),3),2),4),-1)",
    "io_inp": [
      4,
      -3,
      -2,
      2,
      -5
    ],
    "io_out": [
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(mul_n(take(input,1),3),2),4),-1)"
  },
  {
    "input": "input : list = [-3, -3, -4, -5, 0]\noutput : list = [0, -5, -4, -3, -3]",
    "output": "generated_output : list = reverse([-3, -3, -4, -5, 0])",
    "io_inp": [
      -3,
      -3,
      -4,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, 1, 3]\noutput : list = [3, 1, -3, -4]",
    "output": "generated_output : list = sort_des([-4, -3, 1, 3])",
    "io_inp": [
      -4,
      -3,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 5, 2, 0]\noutput : list = [-10, -10, -8, -8, -5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(sort_asc([2, 0, 5, 2, 0])),5)),5)",
    "io_inp": [
      2,
      0,
      5,
      2,
      0
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(sort_asc(input)),5)),5)"
  },
  {
    "input": "input : list = [0, 5, -4, 4, -1]\noutput : list = [-9, -6, -5, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([0, 5, -4, 4, -1]),5))",
    "io_inp": [
      0,
      5,
      -4,
      4,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(reverse([-5, 1, -3])),2)),42)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(reverse(input)),2)),42)"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc([0, 0, -3])),1)",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -5, -4],1)",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 1, 4, 1]\noutput : list = [4, 1, 1, 1]",
    "output": "generated_output : list = sort_des([1, 1, 4, 1])",
    "io_inp": [
      1,
      1,
      4,
      1
    ],
    "io_out": [
      4,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, 5, 0, 0, -3]\noutput : list = [-32, -32, 40, 0]",
    "output": "generated_output : list = take(mul_n(take(take(mul_n([-4, -4, 5, 0, 0, -3],-4),22),23),-2),4)",
    "io_inp": [
      -4,
      -4,
      5,
      0,
      0,
      -3
    ],
    "io_out": [
      -32,
      -32,
      40,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(mul_n(input,-4),22),23),-2),4)"
  },
  {
    "input": "input : list = [4, -1, 5, 0, 5, 3]\noutput : list = [5, 5]",
    "output": "generated_output : list = drop(sort_asc([4, -1, 5, 0, 5, 3]),4)",
    "io_inp": [
      4,
      -1,
      5,
      0,
      5,
      3
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-1, -5, -1, 1, 5]\noutput : list = [17, 5, -1, -13, -1]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(add_n([-1, -5, -1, 1, 5],-1),3),-5)),25)",
    "io_inp": [
      -1,
      -5,
      -1,
      1,
      5
    ],
    "io_out": [
      17,
      5,
      -1,
      -13,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(add_n(input,-1),3),-5)),25)"
  },
  {
    "input": "input : list = [-1, 0, -4, -3, 2, -5]\noutput : list = [2, 0, -1, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-1, 0, -4, -3, 2, -5])",
    "io_inp": [
      -1,
      0,
      -4,
      -3,
      2,
      -5
    ],
    "io_out": [
      2,
      0,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -4, -1]\noutput : list = [44, 24]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(take([0, -4, -4, -1],2),5),-5)),-1)",
    "io_inp": [
      0,
      -4,
      -4,
      -1
    ],
    "io_out": [
      44,
      24
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(take(input,2),5),-5)),-1)"
  },
  {
    "input": "input : list = [-4, 4, 2, -5, 5]\noutput : list = [-12, -10, -6, 6, 8]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(mul_n([-4, 4, 2, -5, 5],-2)))),2)",
    "io_inp": [
      -4,
      4,
      2,
      -5,
      5
    ],
    "io_out": [
      -12,
      -10,
      -6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(mul_n(input,-2)))),2)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(take([4, -2, -4],1)),1)))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(take(input,1)),1)))"
  },
  {
    "input": "input : list = [3, -1, -5, -4]\noutput : list = [-7, -6, -3, 1]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n([3, -1, -5, -4],2)),22),-5),-5)",
    "io_inp": [
      3,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n(input,2)),22),-5),-5)"
  },
  {
    "input": "input : list = [0, 2, 2]\noutput : list = [4, 4, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc([0, 2, 2])),-1)),-3)",
    "io_inp": [
      0,
      2,
      2
    ],
    "io_out": [
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc(input)),-1)),-3)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [9, 10]",
    "output": "generated_output : list = take(take(add_n(drop([-2, 4, 5],1),5),13),17)",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      9,
      10
    ],
    "output_masked": "generated_output : list = take(take(add_n(drop(input,1),5),13),17)"
  },
  {
    "input": "input : list = [1, 2, -1, -3, 5]\noutput : list = [1, 2, -1, -3, 5]",
    "output": "generated_output : list = reverse(reverse([1, 2, -1, -3, 5]))",
    "io_inp": [
      1,
      2,
      -1,
      -3,
      5
    ],
    "io_out": [
      1,
      2,
      -1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, -1, -3, 2, 4, -1]\noutput : list = [45, 15, 15, -30, -60, -75]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_asc([5, -1, -3, 2, 4, -1]),5)),-3),42)",
    "io_inp": [
      5,
      -1,
      -3,
      2,
      4,
      -1
    ],
    "io_out": [
      45,
      15,
      15,
      -30,
      -60,
      -75
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_asc(input),5)),-3),42)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [-3, 5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc([-3, 5, 5]),13))",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),13))"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(reverse([1, 2, 3])),16),-4),-5)",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(reverse(input)),16),-4),-5)"
  },
  {
    "input": "input : list = [2, 5, 5, 0, 2]\noutput : list = [5, 5, 2, 2, 0]",
    "output": "generated_output : list = sort_des([2, 5, 5, 0, 2])",
    "io_inp": [
      2,
      5,
      5,
      0,
      2
    ],
    "io_out": [
      5,
      5,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, 1, -2, -5]\noutput : list = [-5, -2, -2, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(drop([4, -2, 1, -2, -5],1)))),44)",
    "io_inp": [
      4,
      -2,
      1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(drop(input,1)))),44)"
  },
  {
    "input": "input : list = [-4, 2, 2, 0, 4]\noutput : list = [11, 9, 9, 7]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(drop([-4, 2, 2, 0, 4],1))),-4),3)",
    "io_inp": [
      -4,
      2,
      2,
      0,
      4
    ],
    "io_out": [
      11,
      9,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(drop(input,1))),-4),3)"
  },
  {
    "input": "input : list = [0, 0, 1, 0, -1, -4]\noutput : list = [6, 0, 0, 0, -6, -24]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des([0, 0, 1, 0, -1, -4]),2),3))",
    "io_inp": [
      0,
      0,
      1,
      0,
      -1,
      -4
    ],
    "io_out": [
      6,
      0,
      0,
      0,
      -6,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(input),2),3))"
  },
  {
    "input": "input : list = [2, -1, 1, 2, 0, 2]\noutput : list = [21, 21, 21, 18, 15, 12]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(sub_n([2, -1, 1, 2, 0, 2],-5)),3),6))",
    "io_inp": [
      2,
      -1,
      1,
      2,
      0,
      2
    ],
    "io_out": [
      21,
      21,
      21,
      18,
      15,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(sub_n(input,-5)),3),6))"
  },
  {
    "input": "input : list = [-5, 4, -4, 1, -1]\noutput : list = [-1, 1, -4, 4, -5]",
    "output": "generated_output : list = reverse([-5, 4, -4, 1, -1])",
    "io_inp": [
      -5,
      4,
      -4,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      -4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2, 0, 2, 3]\noutput : list = [-4, -5, -7, -5]",
    "output": "generated_output : list = reverse(add_n(sub_n(drop(sub_n([2, 2, 0, 2, 3],5),1),-2),-4))",
    "io_inp": [
      2,
      2,
      0,
      2,
      3
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(drop(sub_n(input,5),1),-2),-4))"
  },
  {
    "input": "input : list = [-4, 1, -2, 4, 1, -3]\noutput : list = [0, 5, 2, 8, 5, 1]",
    "output": "generated_output : list = sub_n([-4, 1, -2, 4, 1, -3],-4)",
    "io_inp": [
      -4,
      1,
      -2,
      4,
      1,
      -3
    ],
    "io_out": [
      0,
      5,
      2,
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 0, -1, -1, 5]\noutput : list = [-15, -12, -12, -30]",
    "output": "generated_output : list = mul_n(drop(add_n([-4, 0, -1, -1, 5],5),1),-3)",
    "io_inp": [
      -4,
      0,
      -1,
      -1,
      5
    ],
    "io_out": [
      -15,
      -12,
      -12,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(input,5),1),-3)"
  },
  {
    "input": "input : list = [2, -3, -1, -2]\noutput : list = [-3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc([2, -3, -1, -2])",
    "io_inp": [
      2,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(add_n([3, 1],-1))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [1, 1, -2, 1, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n(add_n(take([1, 1, -2, 1, 1],2),1),-2)",
    "io_inp": [
      1,
      1,
      -2,
      1,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,2),1),-2)"
  },
  {
    "input": "input : list = [-1, -3, 5, 0, -2, 5]\noutput : list = [-8, -7, -6, -5, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(take(add_n([-1, -3, 5, 0, -2, 5],-5),9)))",
    "io_inp": [
      -1,
      -3,
      5,
      0,
      -2,
      5
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(input,-5),9)))"
  },
  {
    "input": "input : list = [3, 0, -2, -4, -2]\noutput : list = [14, 8, 4, 0, 4]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(sub_n([3, 0, -2, -4, -2],2),5),13),2),-2)",
    "io_inp": [
      3,
      0,
      -2,
      -4,
      -2
    ],
    "io_out": [
      14,
      8,
      4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(sub_n(input,2),5),13),2),-2)"
  },
  {
    "input": "input : list = [0, 0, -5]\noutput : list = [-5, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, -5])",
    "io_inp": [
      0,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, -2, 2, 0, 2]\noutput : list = [4, 2, 2, 0, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc([-1, 4, -2, 2, 0, 2]))",
    "io_inp": [
      -1,
      4,
      -2,
      2,
      0,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [23, 13]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(mul_n([-5, -3],-5),2),1),5),2)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      23,
      13
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(mul_n(input,-5),2),1),5),2)"
  },
  {
    "input": "input : list = [-3, 3, 2, 1, -5, 3]\noutput : list = [1, 2, 2]",
    "output": "generated_output : list = drop(take(add_n(sort_asc(sub_n([-3, 3, 2, 1, -5, 3],4)),3),17),3)",
    "io_inp": [
      -3,
      3,
      2,
      1,
      -5,
      3
    ],
    "io_out": [
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(take(add_n(sort_asc(sub_n(input,4)),3),17),3)"
  },
  {
    "input": "input : list = [2, -3, -3, -2, 4]\noutput : list = [4, 2, -2, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([2, -3, -3, -2, 4])))",
    "io_inp": [
      2,
      -3,
      -3,
      -2,
      4
    ],
    "io_out": [
      4,
      2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [3, -4, 2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(drop([3, -4, 2, -4],2)),7))",
    "io_inp": [
      3,
      -4,
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(drop(input,2)),7))"
  },
  {
    "input": "input : list = [2, 1, 4, -5, -2, 1]\noutput : list = [30, 12, -6, -6, -12, -24]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([2, 1, 4, -5, -2, 1],-3)),2)",
    "io_inp": [
      2,
      1,
      4,
      -5,
      -2,
      1
    ],
    "io_out": [
      30,
      12,
      -6,
      -6,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,-3)),2)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(sort_des([5, -5]),1)),2))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(sort_des(input),1)),2))"
  },
  {
    "input": "input : list = [2, 5, 2]\noutput : list = [36, 9, 9]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(mul_n([2, 5, 2],-3),3),-3)))",
    "io_inp": [
      2,
      5,
      2
    ],
    "io_out": [
      36,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(mul_n(input,-3),3),-3)))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 16]",
    "output": "generated_output : list = sort_asc(mul_n([1, 4],4))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-15, 6]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(reverse([5, -2]),-3)),12),7)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -15,
      6
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(reverse(input),-3)),12),7)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [-16, -8, 16]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([4, -4, -2],4)))",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      -16,
      -8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, 1]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(sub_n([1, 5],-3))),3),32)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(sub_n(input,-3))),3),32)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [8, 3]",
    "output": "generated_output : list = add_n(reverse([-2, 3]),5)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      8,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [0, -1, 4, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n(take([0, -1, 4, 4],2),5)))",
    "io_inp": [
      0,
      -1,
      4,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(input,2),5)))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [4, -1]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(sort_des([1, -4]))),-3),6)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(sort_des(input))),-3),6)"
  },
  {
    "input": "input : list = [-3, -2, -2, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sort_des(drop([-3, -2, -2, 3, 2],3)))",
    "io_inp": [
      -3,
      -2,
      -2,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,3)))"
  },
  {
    "input": "input : list = [4, -2, 4, 3]\noutput : list = [-2, -2, -3, -8]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sort_des([4, -2, 4, 3])),1)),5)",
    "io_inp": [
      4,
      -2,
      4,
      3
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sort_des(input)),1)),5)"
  },
  {
    "input": "input : list = [-4, 5, 1, -3, 1, -5]\noutput : list = [-11, -10, -9, -5, -5, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(add_n([-4, 5, 1, -3, 1, -5],-4))),-2))",
    "io_inp": [
      -4,
      5,
      1,
      -3,
      1,
      -5
    ],
    "io_out": [
      -11,
      -10,
      -9,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(add_n(input,-4))),-2))"
  },
  {
    "input": "input : list = [-5, -4, -5, -5]\noutput : list = [-9, -10, -10, -10]",
    "output": "generated_output : list = add_n(sort_des([-5, -4, -5, -5]),-5)",
    "io_inp": [
      -5,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -9,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-9, -2]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(reverse([2, -5]),-1),-3)))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(reverse(input),-1),-3)))"
  },
  {
    "input": "input : list = [4, -4, 1]\noutput : list = [-3, -27, -12]",
    "output": "generated_output : list = mul_n(add_n(add_n([4, -4, 1],-2),-3),3)",
    "io_inp": [
      4,
      -4,
      1
    ],
    "io_out": [
      -3,
      -27,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-2),-3),3)"
  },
  {
    "input": "input : list = [-3, -3, -2, 4, 0, -3]\noutput : list = [0, -16, -28]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(drop([-3, -3, -2, 4, 0, -3],3),-4)),4))",
    "io_inp": [
      -3,
      -3,
      -2,
      4,
      0,
      -3
    ],
    "io_out": [
      0,
      -16,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(drop(input,3),-4)),4))"
  },
  {
    "input": "input : list = [5, -3, 2]\noutput : list = [7, 2]",
    "output": "generated_output : list = sub_n(reverse(drop([5, -3, 2],1)),-5)",
    "io_inp": [
      5,
      -3,
      2
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,1)),-5)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-11]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(take([-5, -3, 3],1))),2),1)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(take(input,1))),2),1)"
  },
  {
    "input": "input : list = [1, -3, 2, 1, 2, 1]\noutput : list = [7, 3, 3, 3, 2, 2]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(add_n([1, -3, 2, 1, 2, 1],-4)),-1)))",
    "io_inp": [
      1,
      -3,
      2,
      1,
      2,
      1
    ],
    "io_out": [
      7,
      3,
      3,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(add_n(input,-4)),-1)))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-9, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(reverse([1, -2]),3)),-5),-3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(reverse(input),3)),-5),-3)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-9, -13]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(sort_asc([-2, -1])),9),4),5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(sort_asc(input)),9),4),5)"
  },
  {
    "input": "input : list = [-2, 2, -2, 2, 2, -1]\noutput : list = [10, 10, 10, -2, -6, -6]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(mul_n([-2, 2, -2, 2, 2, -1],4))),-4),-2)",
    "io_inp": [
      -2,
      2,
      -2,
      2,
      2,
      -1
    ],
    "io_out": [
      10,
      10,
      10,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(mul_n(input,4))),-4),-2)"
  },
  {
    "input": "input : list = [5, 3, 3]\noutput : list = [25, 15, 15]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des([5, 3, 3]),4),1),-1),5)",
    "io_inp": [
      5,
      3,
      3
    ],
    "io_out": [
      25,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des(input),4),1),-1),5)"
  },
  {
    "input": "input : list = [4, -3, 1, 2]\noutput : list = [13, -1, 7, 9]",
    "output": "generated_output : list = reverse(take(add_n(reverse(mul_n([4, -3, 1, 2],2)),5),34))",
    "io_inp": [
      4,
      -3,
      1,
      2
    ],
    "io_out": [
      13,
      -1,
      7,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(mul_n(input,2)),5),34))"
  },
  {
    "input": "input : list = [3, -4, 5, 3, 0, -5]\noutput : list = [-25, 0, 15, 25]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(reverse([3, -4, 5, 3, 0, -5]),4)),5),22)",
    "io_inp": [
      3,
      -4,
      5,
      3,
      0,
      -5
    ],
    "io_out": [
      -25,
      0,
      15,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(reverse(input),4)),5),22)"
  },
  {
    "input": "input : list = [-4, -1, 1, 0, 0, -1]\noutput : list = [-9, -12, -12, -15, -15, -24]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_asc([-4, -1, 1, 0, 0, -1]),-3)),1),3)",
    "io_inp": [
      -4,
      -1,
      1,
      0,
      0,
      -1
    ],
    "io_out": [
      -9,
      -12,
      -12,
      -15,
      -15,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_asc(input),-3)),1),3)"
  },
  {
    "input": "input : list = [-5, 3, 5, 4]\noutput : list = [-5, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([-5, 3, 5, 4])",
    "io_inp": [
      -5,
      3,
      5,
      4
    ],
    "io_out": [
      -5,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, 2, 0, -5]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = mul_n(sort_asc(take([0, 4, 2, 0, -5],3)),1)",
    "io_inp": [
      0,
      4,
      2,
      0,
      -5
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,3)),1)"
  },
  {
    "input": "input : list = [5, 0, 0, 5, -3]\noutput : list = [450, 75, 75, 450, -150]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n([5, 0, 0, 5, -3],1),-3),5),-5)",
    "io_inp": [
      5,
      0,
      0,
      5,
      -3
    ],
    "io_out": [
      450,
      75,
      75,
      450,
      -150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(input,1),-3),5),-5)"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(take([0, 2, 4],1),2)),3),2)",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(take(input,1),2)),3),2)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-5, -6]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(mul_n([3, 4],-1)),-1),-1),9)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(mul_n(input,-1)),-1),-1),9)"
  },
  {
    "input": "input : list = [-5, 4, 0]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(take([-5, 4, 0],1)),5),-4),-4)",
    "io_inp": [
      -5,
      4,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(take(input,1)),5),-4),-4)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [4, -2]",
    "output": "generated_output : list = add_n([2, -4],2)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [5, 2, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-5, 4, 1]),2),3)",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),2),3)"
  },
  {
    "input": "input : list = [1, 2, -1, -5]\noutput : list = [8, 4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(mul_n([1, 2, -1, -5],4),2))))",
    "io_inp": [
      1,
      2,
      -1,
      -5
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(mul_n(input,4),2))))"
  },
  {
    "input": "input : list = [-5, 4, 5]\noutput : list = [-3, 6, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_asc([-5, 4, 5]))),-3),1)",
    "io_inp": [
      -5,
      4,
      5
    ],
    "io_out": [
      -3,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_asc(input))),-3),1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(sort_asc([-1, -1])),-1)),-2)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(sort_asc(input)),-1)),-2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse([1, 1]),1)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),1)"
  },
  {
    "input": "input : list = [-5, -4, 0]\noutput : list = [-8, -4]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(drop([-5, -4, 0],1),-4))),40)",
    "io_inp": [
      -5,
      -4,
      0
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(drop(input,1),-4))),40)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-12, 12]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(sort_des([4, -4]),1),24)),3)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(sort_des(input),1),24)),3)"
  },
  {
    "input": "input : list = [-5, -5, -4, -5, 4, -5]\noutput : list = [-1, -10]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop([-5, -5, -4, -5, 4, -5],4),-5))))",
    "io_inp": [
      -5,
      -5,
      -4,
      -5,
      4,
      -5
    ],
    "io_out": [
      -1,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop(input,4),-5))))"
  },
  {
    "input": "input : list = [-1, 0, 1, -2, -2]\noutput : list = [0, -1, -2, -3, -3]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(sort_des([-1, 0, 1, -2, -2])),33)),1)",
    "io_inp": [
      -1,
      0,
      1,
      -2,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(sort_des(input)),33)),1)"
  },
  {
    "input": "input : list = [2, 2, -1, 0, 1, -5]\noutput : list = [-3, 1, 2, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_asc([2, 2, -1, 0, 1, -5])),2),43))",
    "io_inp": [
      2,
      2,
      -1,
      0,
      1,
      -5
    ],
    "io_out": [
      -3,
      1,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_asc(input)),2),43))"
  },
  {
    "input": "input : list = [-5, 2, -5, -5, -2]\noutput : list = [-13, -16, -16, -9, -16]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(add_n([-5, 2, -5, -5, -2],-1)),-5),-1),-4)",
    "io_inp": [
      -5,
      2,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -13,
      -16,
      -16,
      -9,
      -16
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(add_n(input,-1)),-5),-1),-4)"
  },
  {
    "input": "input : list = [3, -3, -2, 0, -2]\noutput : list = [-30, -20, -20, 0, 30]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(mul_n([3, -3, -2, 0, -2],-2),-5))))",
    "io_inp": [
      3,
      -3,
      -2,
      0,
      -2
    ],
    "io_out": [
      -30,
      -20,
      -20,
      0,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(mul_n(input,-2),-5))))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(take(sort_asc([-2, -4]),14))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),14))"
  },
  {
    "input": "input : list = [-3, -3, 5, -2, -5, 1]\noutput : list = [8, 2]",
    "output": "generated_output : list = reverse(take(add_n(add_n(drop([-3, -3, 5, -2, -5, 1],4),2),5),25))",
    "io_inp": [
      -3,
      -3,
      5,
      -2,
      -5,
      1
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(drop(input,4),2),5),25))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n([4, 1],-1)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 3, 2, 2, -4]\noutput : list = [-4, 3, 2, 2, -4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(reverse([-4, 3, 2, 2, -4])),-2),1),-1)",
    "io_inp": [
      -4,
      3,
      2,
      2,
      -4
    ],
    "io_out": [
      -4,
      3,
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(reverse(input)),-2),1),-1)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [1, 13]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(drop([-3, -2, 1],1),-4)),4),1)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      1,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(drop(input,1),-4)),4),1)"
  },
  {
    "input": "input : list = [3, -4, -2, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(take(take(reverse(drop([3, -4, -2, 2, 2],3)),22),32),17)",
    "io_inp": [
      3,
      -4,
      -2,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(drop(input,3)),22),32),17)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [20, -7]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc(mul_n([5, -4],3))),5))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      20,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(mul_n(input,3))),5))"
  },
  {
    "input": "input : list = [1, 5, 5, 0, -3]\noutput : list = [6, -10, -10, 10, 22]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(mul_n([1, 5, 5, 0, -3],-4),-1),-5),2),2)",
    "io_inp": [
      1,
      5,
      5,
      0,
      -3
    ],
    "io_out": [
      6,
      -10,
      -10,
      10,
      22
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(mul_n(input,-4),-1),-5),2),2)"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = sub_n([-1, -1, -4],-2)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 1, 3, 4, 5]\noutput : list = [1, 2, 4, 5, 6]",
    "output": "generated_output : list = take(sub_n([0, 1, 3, 4, 5],-1),7)",
    "io_inp": [
      0,
      1,
      3,
      4,
      5
    ],
    "io_out": [
      1,
      2,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),7)"
  },
  {
    "input": "input : list = [5, -5, 2, -3, -4, 1]\noutput : list = [4, -3, 7]",
    "output": "generated_output : list = sub_n(drop(reverse(reverse(reverse([5, -5, 2, -3, -4, 1]))),3),-2)",
    "io_inp": [
      5,
      -5,
      2,
      -3,
      -4,
      1
    ],
    "io_out": [
      4,
      -3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(reverse(reverse(input))),3),-2)"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des([1, 2, 1]),6)))",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(input),6)))"
  },
  {
    "input": "input : list = [-5, 1, -2, 1, 4]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 1, -2, 1, 4],1)",
    "io_inp": [
      -5,
      1,
      -2,
      1,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 3, -4, -1, 2]\noutput : list = [-7, -4, -1, -1]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(add_n([2, 3, -4, -1, 2],-5)),-2),29),4)",
    "io_inp": [
      2,
      3,
      -4,
      -1,
      2
    ],
    "io_out": [
      -7,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(add_n(input,-5)),-2),29),4)"
  },
  {
    "input": "input : list = [-1, 3, 2, 0, -2]\noutput : list = [-2, -1, 0, 2, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(add_n([-1, 3, 2, 0, -2],1))),19),1)",
    "io_inp": [
      -1,
      3,
      2,
      0,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(add_n(input,1))),19),1)"
  },
  {
    "input": "input : list = [-4, 4, -1, -2, 5, 2]\noutput : list = [-4, -2, -1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse([-4, 4, -1, -2, 5, 2])))",
    "io_inp": [
      -4,
      4,
      -1,
      -2,
      5,
      2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-2, 5, -2, 1, -2]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(drop([-2, 5, -2, 1, -2],3),-1)",
    "io_inp": [
      -2,
      5,
      -2,
      1,
      -2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-1)"
  },
  {
    "input": "input : list = [3, 2, 0, 1]\noutput : list = [3, 2, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([3, 2, 0, 1])))",
    "io_inp": [
      3,
      2,
      0,
      1
    ],
    "io_out": [
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(reverse([4, 2, 0])))))",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, -2, 4, 4]\noutput : list = [-2]",
    "output": "generated_output : list = take(mul_n(take(sub_n([-2, -2, 4, 4],-3),7),-2),1)",
    "io_inp": [
      -2,
      -2,
      4,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(input,-3),7),-2),1)"
  },
  {
    "input": "input : list = [-2, 1, 2, -2]\noutput : list = [-8, -8, 4, 8]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(sort_des([-2, 1, 2, -2]),10)),4))",
    "io_inp": [
      -2,
      1,
      2,
      -2
    ],
    "io_out": [
      -8,
      -8,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(sort_des(input),10)),4))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [-3, -5, -10]",
    "output": "generated_output : list = sub_n(add_n(sub_n([3, 1, -4],5),4),5)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      -3,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,5),4),5)"
  },
  {
    "input": "input : list = [2, 0, -4, 0]\noutput : list = [-5, -7, -7, -11]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des([2, 0, -4, 0])),3),-4)",
    "io_inp": [
      2,
      0,
      -4,
      0
    ],
    "io_out": [
      -5,
      -7,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(input)),3),-4)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse([5, 5])",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(sort_des([-1, 2]),-5),8)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(sort_des(input),-5),8)))"
  },
  {
    "input": "input : list = [1, -5, -5, 2, 3]\noutput : list = [-1, 1, 3, 15, 15]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(sort_asc([1, -5, -5, 2, 3]),-2),-2)),-3)",
    "io_inp": [
      1,
      -5,
      -5,
      2,
      3
    ],
    "io_out": [
      -1,
      1,
      3,
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(sort_asc(input),-2),-2)),-3)"
  },
  {
    "input": "input : list = [-2, -3, 4, 4]\noutput : list = [12, 8, -16, -16]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(reverse([-2, -3, 4, 4]),-4))))",
    "io_inp": [
      -2,
      -3,
      4,
      4
    ],
    "io_out": [
      12,
      8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(reverse(input),-4))))"
  },
  {
    "input": "input : list = [3, 3, 0, 5, -3, -4]\noutput : list = [3, 3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(drop(reverse([3, 3, 0, 5, -3, -4]),4))))",
    "io_inp": [
      3,
      3,
      0,
      5,
      -3,
      -4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(drop(reverse(input),4))))"
  },
  {
    "input": "input : list = [-4, 1, -3, -3, 3]\noutput : list = [-7, -2, -6, -6, 0]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(reverse([-4, 1, -3, -3, 3]),1)),-3),-1)",
    "io_inp": [
      -4,
      1,
      -3,
      -3,
      3
    ],
    "io_out": [
      -7,
      -2,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(reverse(input),1)),-3),-1)"
  },
  {
    "input": "input : list = [2, -5, -1, 5, -1, -3]\noutput : list = [12, 4, -20, 4, 20, -8]",
    "output": "generated_output : list = take(reverse(reverse(reverse(mul_n([2, -5, -1, 5, -1, -3],-4)))),11)",
    "io_inp": [
      2,
      -5,
      -1,
      5,
      -1,
      -3
    ],
    "io_out": [
      12,
      4,
      -20,
      4,
      20,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(mul_n(input,-4)))),11)"
  },
  {
    "input": "input : list = [1, -3, -3, -1, -5]\noutput : list = [-6, 2, 2, -2, 6]",
    "output": "generated_output : list = mul_n(take(take(take(add_n([1, -3, -3, -1, -5],2),11),5),31),-2)",
    "io_inp": [
      1,
      -3,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -6,
      2,
      2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(add_n(input,2),11),5),31),-2)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [1, -1, -5]",
    "output": "generated_output : list = reverse([-5, -1, 1])",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, -5]\noutput : list = [-2, -5, -9]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(sort_des([2, -1, -5]),6),5),-1))",
    "io_inp": [
      2,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(sort_des(input),6),5),-1))"
  },
  {
    "input": "input : list = [-2, 3, 0, -3, 3, 1]\noutput : list = [1, 3, -3, 0, 3, -2]",
    "output": "generated_output : list = reverse([-2, 3, 0, -3, 3, 1])",
    "io_inp": [
      -2,
      3,
      0,
      -3,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -3,
      0,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(reverse([2, 3, -5]))),10))",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(reverse(input))),10))"
  },
  {
    "input": "input : list = [4, -2, 3, -5, -2]\noutput : list = [-35, 55, -20, 100, 55]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(mul_n([4, -2, 3, -5, -2],3),-2),2),5),-5)",
    "io_inp": [
      4,
      -2,
      3,
      -5,
      -2
    ],
    "io_out": [
      -35,
      55,
      -20,
      100,
      55
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(mul_n(input,3),-2),2),5),-5)"
  },
  {
    "input": "input : list = [-2, -1, -5, 4]\noutput : list = [18, 6, 2, -18]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(mul_n([-2, -1, -5, 4],-1),4)),-3),1)",
    "io_inp": [
      -2,
      -1,
      -5,
      4
    ],
    "io_out": [
      18,
      6,
      2,
      -18
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(mul_n(input,-1),4)),-3),1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [22, -23]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(mul_n([-4, 5],-5)),-2),4))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      22,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(mul_n(input,-5)),-2),4))"
  },
  {
    "input": "input : list = [1, -2, 1, 1]\noutput : list = [1, 1, 1, -2]",
    "output": "generated_output : list = sort_des([1, -2, 1, 1])",
    "io_inp": [
      1,
      -2,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, 3]\noutput : list = [2, 1, -6]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(reverse([-4, 4, 3]),-2))))",
    "io_inp": [
      -4,
      4,
      3
    ],
    "io_out": [
      2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [-5, -4, -5, 3, 1]\noutput : list = [-9, -8, -9, -1, -3]",
    "output": "generated_output : list = add_n(sub_n([-5, -4, -5, 3, 1],3),-1)",
    "io_inp": [
      -5,
      -4,
      -5,
      3,
      1
    ],
    "io_out": [
      -9,
      -8,
      -9,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),-1)"
  },
  {
    "input": "input : list = [4, 4, 3, -2]\noutput : list = [-2, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des([4, 4, 3, -2])),21)",
    "io_inp": [
      4,
      4,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),21)"
  },
  {
    "input": "input : list = [0, 1, 4]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des([0, 1, 4])),-2)",
    "io_inp": [
      0,
      1,
      4
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [-3, 4, 3, 4, -2]\noutput : list = [0, -1, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(take([-3, 4, 3, 4, -2],3)))),4)",
    "io_inp": [
      -3,
      4,
      3,
      4,
      -2
    ],
    "io_out": [
      0,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(take(input,3)))),4)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [0, -10, 0]",
    "output": "generated_output : list = take(add_n([5, -5, 5],-5),14)",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      0,
      -10,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),14)"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [-2, -10, -10]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n([5, 5, 1],2),1)),18),-1)",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n(input,2),1)),18),-1)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -2, 1]))",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -4, -5, 0, 0, 4]\noutput : list = [-2, -6, -6, -6, -10, -11]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(reverse([0, -4, -5, 0, 0, 4]),4))),-2)",
    "io_inp": [
      0,
      -4,
      -5,
      0,
      0,
      4
    ],
    "io_out": [
      -2,
      -6,
      -6,
      -6,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(reverse(input),4))),-2)"
  },
  {
    "input": "input : list = [-1, 0, 4, -5]\noutput : list = [-10, -2, 0, 8]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n([-1, 0, 4, -5],2)),26))",
    "io_inp": [
      -1,
      0,
      4,
      -5
    ],
    "io_out": [
      -10,
      -2,
      0,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(input,2)),26))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-16, -8]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(mul_n([-4, -2],4)))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [10, 15]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(sort_asc([3, 4]),3),5),-5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(sort_asc(input),3),5),-5))"
  },
  {
    "input": "input : list = [-4, -5, -2]\noutput : list = [0, -2, 4]",
    "output": "generated_output : list = mul_n(sub_n([-4, -5, -2],-4),2)",
    "io_inp": [
      -4,
      -5,
      -2
    ],
    "io_out": [
      0,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),2)"
  },
  {
    "input": "input : list = [-2, 5, 0, 3, -2]\noutput : list = [-10, -10, 0, 15, 25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([-2, 5, 0, 3, -2])),5)",
    "io_inp": [
      -2,
      5,
      0,
      3,
      -2
    ],
    "io_out": [
      -10,
      -10,
      0,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-5, 0, 3, 5, 0, -2]\noutput : list = [-2, 0, 5, 3, 0, -5]",
    "output": "generated_output : list = take(reverse(reverse(take(reverse([-5, 0, 3, 5, 0, -2]),23))),10)",
    "io_inp": [
      -5,
      0,
      3,
      5,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      5,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(reverse(input),23))),10)"
  },
  {
    "input": "input : list = [-3, 0, 1, -1]\noutput : list = [-5, 0, 5, 15]",
    "output": "generated_output : list = mul_n(sort_des([-3, 0, 1, -1]),-5)",
    "io_inp": [
      -3,
      0,
      1,
      -1
    ],
    "io_out": [
      -5,
      0,
      5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [3, -4, -2, 1, 3]\noutput : list = [-14, -10, -4, 0, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_des([3, -4, -2, 1, 3]))),3),2)",
    "io_inp": [
      3,
      -4,
      -2,
      1,
      3
    ],
    "io_out": [
      -14,
      -10,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_des(input))),3),2)"
  },
  {
    "input": "input : list = [2, 0, 1, -5, 0, 2]\noutput : list = [-7, -2, -1, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(drop([2, 0, 1, -5, 0, 2],2))),2)",
    "io_inp": [
      2,
      0,
      1,
      -5,
      0,
      2
    ],
    "io_out": [
      -7,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(drop(input,2))),2)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n([0, -2],-3)),5))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(input,-3)),5))"
  },
  {
    "input": "input : list = [1, -4, 1, 4]\noutput : list = [4, 1, -4, 1]",
    "output": "generated_output : list = reverse([1, -4, 1, 4])",
    "io_inp": [
      1,
      -4,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [-15, -15, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(reverse([-2, 5, 5]),-3)),-5),5)",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      -15,
      -15,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(reverse(input),-3)),-5),5)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(sub_n(drop(mul_n(sub_n([-1, 0],1),3),1),3))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(mul_n(sub_n(input,1),3),1),3))"
  },
  {
    "input": "input : list = [-1, 2, 5, -5, -2]\noutput : list = [-1, -7]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(drop([-1, 2, 5, -5, -2],3),4),-2),3),22)",
    "io_inp": [
      -1,
      2,
      5,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(drop(input,3),4),-2),3),22)"
  },
  {
    "input": "input : list = [-1, -5, 0, -3, -5]\noutput : list = [40, 40, 24, 8, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse(sort_des([-1, -5, 0, -3, -5])),2),-4),1)",
    "io_inp": [
      -1,
      -5,
      0,
      -3,
      -5
    ],
    "io_out": [
      40,
      40,
      24,
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(sort_des(input)),2),-4),1)"
  },
  {
    "input": "input : list = [0, -4, -2, -5]\noutput : list = [50, 20, 40, 0]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n([0, -4, -2, -5],-5),1),-1)),2)",
    "io_inp": [
      0,
      -4,
      -2,
      -5
    ],
    "io_out": [
      50,
      20,
      40,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n(input,-5),1),-1)),2)"
  },
  {
    "input": "input : list = [-5, 4, 1, -4]\noutput : list = [5, -4, -19, -22]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(sub_n([-5, 4, 1, -4],1),3),28),4))",
    "io_inp": [
      -5,
      4,
      1,
      -4
    ],
    "io_out": [
      5,
      -4,
      -19,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(sub_n(input,1),3),28),4))"
  },
  {
    "input": "input : list = [-5, -5, 5]\noutput : list = [80, 80, -70]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(mul_n([-5, -5, 5],-3),5)),-4),-1)",
    "io_inp": [
      -5,
      -5,
      5
    ],
    "io_out": [
      80,
      80,
      -70
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(mul_n(input,-3),5)),-4),-1)"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n(take([-5, 0, -5],1),5),20)",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,1),5),20)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(mul_n([-3, -1],2)),-1),34),1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(mul_n(input,2)),-1),34),1)"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [-8, -2, -1]",
    "output": "generated_output : list = take(sort_asc(take(add_n(sort_des([-3, 4, 3]),-5),12)),28)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      -8,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(sort_des(input),-5),12)),28)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(add_n([4, 2],-1),-4),12),-2))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(add_n(input,-1),-4),12),-2))"
  },
  {
    "input": "input : list = [-3, 3, 5, -3, -4, -1]\noutput : list = [5, 3, -1, -3, -3, -4]",
    "output": "generated_output : list = sort_des(reverse([-3, 3, 5, -3, -4, -1]))",
    "io_inp": [
      -3,
      3,
      5,
      -3,
      -4,
      -1
    ],
    "io_out": [
      5,
      3,
      -1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(add_n([1, 1],-1),14),2)),5)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(add_n(input,-1),14),2)),5)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(reverse([0, -4])),12),-1))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(reverse(input)),12),-1))"
  },
  {
    "input": "input : list = [4, 5, 1, 1, 5, 1]\noutput : list = [2, 2, 2, 5, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(reverse([4, 5, 1, 1, 5, 1]),3),2)))",
    "io_inp": [
      4,
      5,
      1,
      1,
      5,
      1
    ],
    "io_out": [
      2,
      2,
      2,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(reverse(input),3),2)))"
  },
  {
    "input": "input : list = [0, -4, 2, -5, -2]\noutput : list = [-1, -3, -5, -7, -8]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(add_n([0, -4, 2, -5, -2],-3),18))))",
    "io_inp": [
      0,
      -4,
      2,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(add_n(input,-3),18))))"
  },
  {
    "input": "input : list = [-3, -3, 3, 2, -2]\noutput : list = [7, 11, 12, 6]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(drop([-3, -3, 3, 2, -2],1),9)),5),-4)",
    "io_inp": [
      -3,
      -3,
      3,
      2,
      -2
    ],
    "io_out": [
      7,
      11,
      12,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(drop(input,1),9)),5),-4)"
  },
  {
    "input": "input : list = [0, -3, -4, 4, 3, 5]\noutput : list = [-1, -2, -3, -6, -9, -10]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(reverse([0, -3, -4, 4, 3, 5]),5),-1)),7)",
    "io_inp": [
      0,
      -3,
      -4,
      4,
      3,
      5
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -6,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(reverse(input),5),-1)),7)"
  },
  {
    "input": "input : list = [1, 1, -1, -1, -2]\noutput : list = [1, 2, 2, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(sub_n([1, 1, -1, -1, -2],-2),24),-3)),2)",
    "io_inp": [
      1,
      1,
      -1,
      -1,
      -2
    ],
    "io_out": [
      1,
      2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(sub_n(input,-2),24),-3)),2)"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(take([1, 2, 5],1),8),-1),-3),5)",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(take(input,1),8),-1),-3),5)"
  },
  {
    "input": "input : list = [0, -4, 0, -5, 5]\noutput : list = [-12, -27, 3]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(drop([0, -4, 0, -5, 5],2),5),-4),-1),-3)",
    "io_inp": [
      0,
      -4,
      0,
      -5,
      5
    ],
    "io_out": [
      -12,
      -27,
      3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(drop(input,2),5),-4),-1),-3)"
  },
  {
    "input": "input : list = [0, -3, -5, 2, 1, 2]\noutput : list = [-20, -16, -10, -8, -6, -6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(add_n([0, -3, -5, 2, 1, 2],-5),19),2)))",
    "io_inp": [
      0,
      -3,
      -5,
      2,
      1,
      2
    ],
    "io_out": [
      -20,
      -16,
      -10,
      -8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(add_n(input,-5),19),2)))"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sort_asc([-1, 1, 2])",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4, 0, 3, -2]\noutput : list = [-5, 0, -3, -7]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(drop([-2, -4, 0, 3, -2],1),3),-4),-4))",
    "io_inp": [
      -2,
      -4,
      0,
      3,
      -2
    ],
    "io_out": [
      -5,
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(drop(input,1),3),-4),-4))"
  },
  {
    "input": "input : list = [-3, 5, 2]\noutput : list = [-25, 0, 15]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(add_n([-3, 5, 2],-2),5))))",
    "io_inp": [
      -3,
      5,
      2
    ],
    "io_out": [
      -25,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(add_n(input,-2),5))))"
  },
  {
    "input": "input : list = [-3, 2, 3, -1, -5, -3]\noutput : list = [-5, 0, 1, -3, -7, -5]",
    "output": "generated_output : list = sub_n(sub_n([-3, 2, 3, -1, -5, -3],1),1)",
    "io_inp": [
      -3,
      2,
      3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      0,
      1,
      -3,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),1)"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [6]",
    "output": "generated_output : list = take(sub_n(drop(sort_des([2, 2, 5]),2),-4),15)",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(sort_des(input),2),-4),15)"
  },
  {
    "input": "input : list = [-3, -3, 2, -4, -1, 2]\noutput : list = [-4, -3, -3, -1, 2, 2]",
    "output": "generated_output : list = sort_asc([-3, -3, 2, -4, -1, 2])",
    "io_inp": [
      -3,
      -3,
      2,
      -4,
      -1,
      2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [8, 6]",
    "output": "generated_output : list = reverse(take(reverse(add_n(sub_n([5, 3],-4),-1)),29))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(sub_n(input,-4),-1)),29))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-2, 7]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(add_n([4, -5],3))),1))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -2,
      7
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(add_n(input,3))),1))"
  },
  {
    "input": "input : list = [-5, 5, -2, 5, -1, 2]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(take([-5, 5, -2, 5, -1, 2],1)),-2),3),-4)",
    "io_inp": [
      -5,
      5,
      -2,
      5,
      -1,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(take(input,1)),-2),3),-4)"
  },
  {
    "input": "input : list = [0, 0, -3, -5, 2]\noutput : list = [0, 0]",
    "output": "generated_output : list = take([0, 0, -3, -5, 2],2)",
    "io_inp": [
      0,
      0,
      -3,
      -5,
      2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(reverse([2, -5, -3])),27),7))",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(reverse(input)),27),7))"
  },
  {
    "input": "input : list = [-5, -1, 2, -2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(sort_asc(drop([-5, -1, 2, -2, -1],3)),31)",
    "io_inp": [
      -5,
      -1,
      2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,3)),31)"
  },
  {
    "input": "input : list = [2, 4, 5, -5, 3, 4]\noutput : list = [2, 3, 4, 4, 5]",
    "output": "generated_output : list = mul_n(take(drop(sort_asc(sort_asc([2, 4, 5, -5, 3, 4])),1),18),1)",
    "io_inp": [
      2,
      4,
      5,
      -5,
      3,
      4
    ],
    "io_out": [
      2,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(sort_asc(sort_asc(input)),1),18),1)"
  },
  {
    "input": "input : list = [2, -2, 2, -5, 1, 4]\noutput : list = [10, -10, 10, -25, 5, 20]",
    "output": "generated_output : list = mul_n([2, -2, 2, -5, 1, 4],5)",
    "io_inp": [
      2,
      -2,
      2,
      -5,
      1,
      4
    ],
    "io_out": [
      10,
      -10,
      10,
      -25,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -3, -3, 1, -3, -2]\noutput : list = [-7, -1, 1, 1, 1, 1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(mul_n([-3, -3, -3, 1, -3, -2],-2),18),5)))",
    "io_inp": [
      -3,
      -3,
      -3,
      1,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -1,
      1,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(mul_n(input,-2),18),5)))"
  },
  {
    "input": "input : list = [0, -4, 0, 5]\noutput : list = [10, -2, -2, -17]",
    "output": "generated_output : list = add_n(sort_des(mul_n([0, -4, 0, 5],-3)),-2)",
    "io_inp": [
      0,
      -4,
      0,
      5
    ],
    "io_out": [
      10,
      -2,
      -2,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,-3)),-2)"
  },
  {
    "input": "input : list = [-2, -4, 5, 3, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = drop([-2, -4, 5, 3, 1, 2],4)",
    "io_inp": [
      -2,
      -4,
      5,
      3,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [5, 3, -3, -1, -1, 3]\noutput : list = [10, 8]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(take([5, 3, -3, -1, -1, 3],2),3))),2)",
    "io_inp": [
      5,
      3,
      -3,
      -1,
      -1,
      3
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(take(input,2),3))),2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [21, 21]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(add_n([4, 4],-5),-2),-5),3),22)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      21,
      21
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(add_n(input,-5),-2),-5),3),22)"
  },
  {
    "input": "input : list = [2, -4, -3, -2, 4, 1]\noutput : list = [-4, -3, -2, 4, 1]",
    "output": "generated_output : list = drop([2, -4, -3, -2, 4, 1],1)",
    "io_inp": [
      2,
      -4,
      -3,
      -2,
      4,
      1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 0, -4, 0, 1]\noutput : list = [5, 2, 1, 1, -3]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(sort_des([4, 0, -4, 0, 1])),4),3),43)",
    "io_inp": [
      4,
      0,
      -4,
      0,
      1
    ],
    "io_out": [
      5,
      2,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(sort_des(input)),4),3),43)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-6, 10]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([-3, 5]),1),2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),1),2)"
  },
  {
    "input": "input : list = [0, 4, 2, -4, -3]\noutput : list = [2, 4, 0]",
    "output": "generated_output : list = reverse(take([0, 4, 2, -4, -3],3))",
    "io_inp": [
      0,
      4,
      2,
      -4,
      -3
    ],
    "io_out": [
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-1, 4, 4, -3, 3, 5]\noutput : list = [3, 8, 8, 1, 7, 9]",
    "output": "generated_output : list = sub_n([-1, 4, 4, -3, 3, 5],-4)",
    "io_inp": [
      -1,
      4,
      4,
      -3,
      3,
      5
    ],
    "io_out": [
      3,
      8,
      8,
      1,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, -3, -4]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = sort_asc([3, -3, -4])",
    "io_inp": [
      3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, 5, -2, -4, 5]\noutput : list = [-12, -16, 20, -8, -16, 20]",
    "output": "generated_output : list = mul_n([-3, -4, 5, -2, -4, 5],4)",
    "io_inp": [
      -3,
      -4,
      5,
      -2,
      -4,
      5
    ],
    "io_out": [
      -12,
      -16,
      20,
      -8,
      -16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 4, 0, -5]\noutput : list = [-28, -8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(drop([2, 4, 0, -5],2)),2),4))",
    "io_inp": [
      2,
      4,
      0,
      -5
    ],
    "io_out": [
      -28,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(drop(input,2)),2),4))"
  },
  {
    "input": "input : list = [4, -3, 3, 4]\noutput : list = [-3, 3, 4, 4]",
    "output": "generated_output : list = sort_asc([4, -3, 3, 4])",
    "io_inp": [
      4,
      -3,
      3,
      4
    ],
    "io_out": [
      -3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(take([-1, -1, -4],1),4),2),4))",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(take(input,1),4),2),4))"
  },
  {
    "input": "input : list = [3, 0, 5]\noutput : list = [20, 95]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(drop([3, 0, 5],1),2),3),-2),5)",
    "io_inp": [
      3,
      0,
      5
    ],
    "io_out": [
      20,
      95
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(drop(input,1),2),3),-2),5)"
  },
  {
    "input": "input : list = [-5, -1, 5, 5]\noutput : list = [-9, -5, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(reverse([-5, -1, 5, 5])))),4)",
    "io_inp": [
      -5,
      -1,
      5,
      5
    ],
    "io_out": [
      -9,
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(reverse(input)))),4)"
  },
  {
    "input": "input : list = [-4, 4, 5, 5, 1, -3]\noutput : list = [-13, 3, 5, 5, -3, -11]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([-4, 4, 5, 5, 1, -3],2),5),1)",
    "io_inp": [
      -4,
      4,
      5,
      5,
      1,
      -3
    ],
    "io_out": [
      -13,
      3,
      5,
      5,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,2),5),1)"
  },
  {
    "input": "input : list = [-5, 1, 5, 5]\noutput : list = [10, -2, -10, -10]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(sort_asc([-5, 1, 5, 5]),11)),-2))",
    "io_inp": [
      -5,
      1,
      5,
      5
    ],
    "io_out": [
      10,
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(sort_asc(input),11)),-2))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [10, -8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sub_n([-5, 4],3)),4)),2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      10,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sub_n(input,3)),4)),2)"
  },
  {
    "input": "input : list = [4, 1, 0]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(take([4, 1, 0],1))),-1))",
    "io_inp": [
      4,
      1,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(take(input,1))),-1))"
  },
  {
    "input": "input : list = [-5, -1, -2, -3]\noutput : list = [10, 4, 1, -2]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sort_des([-5, -1, -2, -3])),12),-3),5)",
    "io_inp": [
      -5,
      -1,
      -2,
      -3
    ],
    "io_out": [
      10,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sort_des(input)),12),-3),5)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [7, -3]",
    "output": "generated_output : list = sub_n(add_n([5, -5],3),1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),1)"
  },
  {
    "input": "input : list = [1, -5, 4, 2, -3]\noutput : list = [-7, 3]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(drop([1, -5, 4, 2, -3],3),2),-1),-2),1)",
    "io_inp": [
      1,
      -5,
      4,
      2,
      -3
    ],
    "io_out": [
      -7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(drop(input,3),2),-1),-2),1)"
  },
  {
    "input": "input : list = [0, 5, -5, 2]\noutput : list = [9, 6, 4, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse([0, 5, -5, 2]),-1)),-3)",
    "io_inp": [
      0,
      5,
      -5,
      2
    ],
    "io_out": [
      9,
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(input),-1)),-3)"
  },
  {
    "input": "input : list = [5, -4, -1, 4, -1]\noutput : list = [0, -9]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(take([5, -4, -1, 4, -1],2),1),4),-1))",
    "io_inp": [
      5,
      -4,
      -1,
      4,
      -1
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(take(input,2),1),4),-1))"
  },
  {
    "input": "input : list = [-4, -4, -5, 0]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(take([-4, -4, -5, 0],1),-1)",
    "io_inp": [
      -4,
      -4,
      -5,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [2, 0, -1, 4, 2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(add_n(drop([2, 0, -1, 4, 2],3),1)),-1),-3)",
    "io_inp": [
      2,
      0,
      -1,
      4,
      2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(add_n(drop(input,3),1)),-1),-3)"
  },
  {
    "input": "input : list = [3, 2, -2, 5, 5]\noutput : list = [14, 11, -1, 20, 20]",
    "output": "generated_output : list = sub_n(mul_n([3, 2, -2, 5, 5],3),-5)",
    "io_inp": [
      3,
      2,
      -2,
      5,
      5
    ],
    "io_out": [
      14,
      11,
      -1,
      20,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),-5)"
  },
  {
    "input": "input : list = [5, 0, -1, -4, 5, 0]\noutput : list = [6, 1]",
    "output": "generated_output : list = reverse(take(add_n(reverse(take([5, 0, -1, -4, 5, 0],2)),1),17))",
    "io_inp": [
      5,
      0,
      -1,
      -4,
      5,
      0
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(take(input,2)),1),17))"
  },
  {
    "input": "input : list = [1, 0, 5, -3, 3, 5]\noutput : list = [-2, -4, -10, -2, -7, -6]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(sub_n([1, 0, 5, -3, 3, 5],4),-2)),1),27)",
    "io_inp": [
      1,
      0,
      5,
      -3,
      3,
      5
    ],
    "io_out": [
      -2,
      -4,
      -10,
      -2,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(sub_n(input,4),-2)),1),27)"
  },
  {
    "input": "input : list = [-1, -4, -5, -2, -4]\noutput : list = [2, 8, 10, 4, 8]",
    "output": "generated_output : list = mul_n([-1, -4, -5, -2, -4],-2)",
    "io_inp": [
      -1,
      -4,
      -5,
      -2,
      -4
    ],
    "io_out": [
      2,
      8,
      10,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 0, -1, 4]\noutput : list = [5, -20]",
    "output": "generated_output : list = mul_n(drop([-3, 0, -1, 4],2),-5)",
    "io_inp": [
      -3,
      0,
      -1,
      4
    ],
    "io_out": [
      5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [3, 1, -1, 5, -3]\noutput : list = [5, 3, 1, -1, -3]",
    "output": "generated_output : list = sort_des([3, 1, -1, 5, -3])",
    "io_inp": [
      3,
      1,
      -1,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [24, 9, 0]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(sub_n([-5, 3, 0],3)),-3)))",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      24,
      9,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(sub_n(input,3)),-3)))"
  },
  {
    "input": "input : list = [1, -1, -2, -4]\noutput : list = [-4, -8, -10, -14]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(sub_n([1, -1, -2, -4],-3)),3),-2))",
    "io_inp": [
      1,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -8,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(sub_n(input,-3)),3),-2))"
  },
  {
    "input": "input : list = [-5, -2, 0, 3, -5, -5]\noutput : list = [-5, -5, -5, -2, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-5, -2, 0, 3, -5, -5]))",
    "io_inp": [
      -5,
      -2,
      0,
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(drop([-1, -1, -5],1)))),-2)",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(drop(input,1)))),-2)"
  },
  {
    "input": "input : list = [1, 5, 1, 4, -2]\noutput : list = [-5, 1, -2, 2, -2]",
    "output": "generated_output : list = sub_n(take(reverse([1, 5, 1, 4, -2]),16),3)",
    "io_inp": [
      1,
      5,
      1,
      4,
      -2
    ],
    "io_out": [
      -5,
      1,
      -2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),16),3)"
  },
  {
    "input": "input : list = [4, 1, -2, 0]\noutput : list = [18]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(reverse([4, 1, -2, 0]),1),-5),-1),-3)",
    "io_inp": [
      4,
      1,
      -2,
      0
    ],
    "io_out": [
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(reverse(input),1),-5),-1),-3)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [12, 2, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(mul_n([0, 2, -2],5),14)),-2))",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      12,
      2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(mul_n(input,5),14)),-2))"
  },
  {
    "input": "input : list = [-4, -5, -4, -1, -5]\noutput : list = [-1, -4, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-4, -5, -4, -1, -5])",
    "io_inp": [
      -4,
      -5,
      -4,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 5, -2]\noutput : list = [-3, -2, 0, 4]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse([-1, 1, 5, -2])),1),20)",
    "io_inp": [
      -1,
      1,
      5,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(input)),1),20)"
  },
  {
    "input": "input : list = [5, 0, -1, 4, 5, 5]\noutput : list = [25, 25, 19, -11, -5, 25]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(mul_n([5, 0, -1, 4, 5, 5],-2),-3),37)),-5)",
    "io_inp": [
      5,
      0,
      -1,
      4,
      5,
      5
    ],
    "io_out": [
      25,
      25,
      19,
      -11,
      -5,
      25
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(mul_n(input,-2),-3),37)),-5)"
  },
  {
    "input": "input : list = [3, 3, 2, -3]\noutput : list = [-6, 4, 6, 6]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n([3, 3, 2, -3],-5)),-5),2)",
    "io_inp": [
      3,
      3,
      2,
      -3
    ],
    "io_out": [
      -6,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(input,-5)),-5),2)"
  },
  {
    "input": "input : list = [5, -3, 1, 2, -1]\noutput : list = [5, 2, 1, -1, -3]",
    "output": "generated_output : list = sort_des([5, -3, 1, 2, -1])",
    "io_inp": [
      5,
      -3,
      1,
      2,
      -1
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, 0, -3, 2]\noutput : list = [-4, 2, 1, -2, 3]",
    "output": "generated_output : list = sub_n([-5, 1, 0, -3, 2],-1)",
    "io_inp": [
      -5,
      1,
      0,
      -3,
      2
    ],
    "io_out": [
      -4,
      2,
      1,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, -3, 5, -3]\noutput : list = [-4, -7, 1, -7]",
    "output": "generated_output : list = take(sub_n([0, -3, 5, -3],4),9)",
    "io_inp": [
      0,
      -3,
      5,
      -3
    ],
    "io_out": [
      -4,
      -7,
      1,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),9)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([-4, -4])))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [3, -2, -4, 0, -4, 0]\noutput : list = [-5, -10, -12, -8, -12, -8]",
    "output": "generated_output : list = add_n(sub_n(add_n([3, -2, -4, 0, -4, 0],-5),5),2)",
    "io_inp": [
      3,
      -2,
      -4,
      0,
      -4,
      0
    ],
    "io_out": [
      -5,
      -10,
      -12,
      -8,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,-5),5),2)"
  },
  {
    "input": "input : list = [-4, 0, 1, 0, -3]\noutput : list = [-6, -9, -18]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(drop([-4, 0, 1, 0, -3],2),1),-2),3),4)",
    "io_inp": [
      -4,
      0,
      1,
      0,
      -3
    ],
    "io_out": [
      -6,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(drop(input,2),1),-2),3),4)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n(reverse([-1, 1]),3),3),-2),-4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(reverse(input),3),3),-2),-4)"
  },
  {
    "input": "input : list = [-3, 5, -1, 3, 4, -4]\noutput : list = [2, 3, 5, 9, 10, 11]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n([-3, 5, -1, 3, 4, -4],2)),4))",
    "io_inp": [
      -3,
      5,
      -1,
      3,
      4,
      -4
    ],
    "io_out": [
      2,
      3,
      5,
      9,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(input,2)),4))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-12, 13]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n([-1, 4],5),3),-1)),5)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -12,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n(input,5),3),-1)),5)"
  },
  {
    "input": "input : list = [-2, 0, 4, 0]\noutput : list = [-2, 0, 0, 4]",
    "output": "generated_output : list = sort_asc([-2, 0, 4, 0])",
    "io_inp": [
      -2,
      0,
      4,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, -3, -5, 4]\noutput : list = [0, 0, -3]",
    "output": "generated_output : list = take([0, 0, -3, -5, 4],3)",
    "io_inp": [
      0,
      0,
      -3,
      -5,
      4
    ],
    "io_out": [
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, -1, 0, 4, -4]\noutput : list = [8, 2, 3]",
    "output": "generated_output : list = sub_n(take([5, -1, 0, 4, -4],3),-3)",
    "io_inp": [
      5,
      -1,
      0,
      4,
      -4
    ],
    "io_out": [
      8,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [-5, -1, 5, 3, -3, 1]\noutput : list = [-5, -1, 3, 5]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take([-5, -1, 5, 3, -3, 1],4),2)),2)",
    "io_inp": [
      -5,
      -1,
      5,
      3,
      -3,
      1
    ],
    "io_out": [
      -5,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(input,4),2)),2)"
  },
  {
    "input": "input : list = [2, 0, -4, 0]\noutput : list = [3, 1, 1, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(reverse([2, 0, -4, 0]),1)),20))",
    "io_inp": [
      2,
      0,
      -4,
      0
    ],
    "io_out": [
      3,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(reverse(input),1)),20))"
  },
  {
    "input": "input : list = [3, -1, 1, 2]\noutput : list = [2, 1, 0, -2]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(add_n([3, -1, 1, 2],-2),1),-1),18))",
    "io_inp": [
      3,
      -1,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(add_n(input,-2),1),-1),18))"
  },
  {
    "input": "input : list = [0, -3, -1, 1, -4]\noutput : list = [4, 1, 3, 5, 0]",
    "output": "generated_output : list = sub_n(mul_n([0, -3, -1, 1, -4],1),-4)",
    "io_inp": [
      0,
      -3,
      -1,
      1,
      -4
    ],
    "io_out": [
      4,
      1,
      3,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-4)"
  },
  {
    "input": "input : list = [-2, 3, -3, -1]\noutput : list = [-5, -7, -1]",
    "output": "generated_output : list = reverse(sub_n(drop([-2, 3, -3, -1],1),4))",
    "io_inp": [
      -2,
      3,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,1),4))"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = sort_asc([-3, -4, -5])",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 0, 4, 0]\noutput : list = [13, 5, 5, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n([-4, 0, 4, 0],-4)),2),-3)",
    "io_inp": [
      -4,
      0,
      4,
      0
    ],
    "io_out": [
      13,
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(input,-4)),2),-3)"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [-9, -8, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(reverse([1, -4, -3])),5)))",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(reverse(input)),5)))"
  },
  {
    "input": "input : list = [-4, 1, -4, 5]\noutput : list = [7]",
    "output": "generated_output : list = add_n(mul_n(take(take(take([-4, 1, -4, 5],1),16),16),-2),-1)",
    "io_inp": [
      -4,
      1,
      -4,
      5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(take(input,1),16),16),-2),-1)"
  },
  {
    "input": "input : list = [-1, -3, -1, 2]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take([-1, -3, -1, 2],1)),1),2)",
    "io_inp": [
      -1,
      -3,
      -1,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(input,1)),1),2)"
  },
  {
    "input": "input : list = [4, -1, 2, 5, -1, -3]\noutput : list = [7, 2, 5, 8, 2, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n([4, -1, 2, 5, -1, -3],-1),-2),-2)",
    "io_inp": [
      4,
      -1,
      2,
      5,
      -1,
      -3
    ],
    "io_out": [
      7,
      2,
      5,
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,-1),-2),-2)"
  },
  {
    "input": "input : list = [4, -2, 4, 3]\noutput : list = [7, -17]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(take([4, -2, 4, 3],2)),-4),-2),-1)",
    "io_inp": [
      4,
      -2,
      4,
      3
    ],
    "io_out": [
      7,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(take(input,2)),-4),-2),-1)"
  },
  {
    "input": "input : list = [1, -3, -4, 1, 2]\noutput : list = [-3]",
    "output": "generated_output : list = take(reverse(take(mul_n(take([1, -3, -4, 1, 2],1),-3),7)),8)",
    "io_inp": [
      1,
      -3,
      -4,
      1,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(take(input,1),-3),7)),8)"
  },
  {
    "input": "input : list = [2, -2, -1, -2, 2, -5]\noutput : list = [0, -8]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(mul_n([2, -2, -1, -2, 2, -5],2),-3),-5),2),2)",
    "io_inp": [
      2,
      -2,
      -1,
      -2,
      2,
      -5
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(mul_n(input,2),-3),-5),2),2)"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc([1, -1, 3]),-2),2))",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(input),-2),2))"
  },
  {
    "input": "input : list = [-2, 2, 2, 0, 1, 5]\noutput : list = [-25]",
    "output": "generated_output : list = take(mul_n(drop(mul_n(drop([-2, 2, 2, 0, 1, 5],2),-5),3),1),45)",
    "io_inp": [
      -2,
      2,
      2,
      0,
      1,
      5
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(mul_n(drop(input,2),-5),3),1),45)"
  },
  {
    "input": "input : list = [-5, 0, 2, -3, 5]\noutput : list = [-2, 3, 5, 0, 8]",
    "output": "generated_output : list = sub_n([-5, 0, 2, -3, 5],-3)",
    "io_inp": [
      -5,
      0,
      2,
      -3,
      5
    ],
    "io_out": [
      -2,
      3,
      5,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -3, -3, 0]\noutput : list = [-3, -3, 0]",
    "output": "generated_output : list = take(sort_asc(drop(reverse(reverse([-4, -3, -3, 0])),1)),20)",
    "io_inp": [
      -4,
      -3,
      -3,
      0
    ],
    "io_out": [
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(reverse(reverse(input)),1)),20)"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(take([-4, 2, 4],1),15),-2)),-5)",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(take(input,1),15),-2)),-5)"
  },
  {
    "input": "input : list = [0, 3, 2, -5, -2]\noutput : list = [0, -36, -24, 60, 24]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n([0, 3, 2, -5, -2],-4),3),2),2)",
    "io_inp": [
      0,
      3,
      2,
      -5,
      -2
    ],
    "io_out": [
      0,
      -36,
      -24,
      60,
      24
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(input,-4),3),2),2)"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [23, -7, -12]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(reverse([-1, -2, 5]),4),5),-2))",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      23,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(reverse(input),4),5),-2))"
  },
  {
    "input": "input : list = [-5, 4, 2]\noutput : list = [-7, 0, 2]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(reverse([-5, 4, 2])),2),24),37)",
    "io_inp": [
      -5,
      4,
      2
    ],
    "io_out": [
      -7,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(reverse(input)),2),24),37)"
  },
  {
    "input": "input : list = [0, 5, 5, 1]\noutput : list = [0, 0, -16, -20]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sub_n([0, 5, 5, 1],5),4))))",
    "io_inp": [
      0,
      5,
      5,
      1
    ],
    "io_out": [
      0,
      0,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sub_n(input,5),4))))"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [20, -70]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(drop([-3, -1, 5],1),5),-3),-5)",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      20,
      -70
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(drop(input,1),5),-3),-5)"
  },
  {
    "input": "input : list = [-3, -2, 0, -3, -3, 3]\noutput : list = [3, 0, -2, -3, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(sort_asc([-3, -2, 0, -3, -3, 3])),15)))",
    "io_inp": [
      -3,
      -2,
      0,
      -3,
      -3,
      3
    ],
    "io_out": [
      3,
      0,
      -2,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(sort_asc(input)),15)))"
  },
  {
    "input": "input : list = [4, 3, -2, 1, 0, 3]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = sub_n(add_n(take([4, 3, -2, 1, 0, 3],3),-4),-5)",
    "io_inp": [
      4,
      3,
      -2,
      1,
      0,
      3
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(input,3),-4),-5)"
  },
  {
    "input": "input : list = [2, 2, -3, -2, -3, 0]\noutput : list = [0, 0, -5, -4, -5, -2]",
    "output": "generated_output : list = take(add_n([2, 2, -3, -2, -3, 0],-2),14)",
    "io_inp": [
      2,
      2,
      -3,
      -2,
      -3,
      0
    ],
    "io_out": [
      0,
      0,
      -5,
      -4,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),14)"
  },
  {
    "input": "input : list = [3, 4, 0, -5, 3, -5]\noutput : list = [-8, -9, -9, -12, -17, -17]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(sub_n([3, 4, 0, -5, 3, -5],5),2))),-5)",
    "io_inp": [
      3,
      4,
      0,
      -5,
      3,
      -5
    ],
    "io_out": [
      -8,
      -9,
      -9,
      -12,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(sub_n(input,5),2))),-5)"
  },
  {
    "input": "input : list = [2, -1, 2]\noutput : list = [-3, -21]",
    "output": "generated_output : list = sort_des(mul_n(add_n(drop(mul_n([2, -1, 2],-2),1),-3),3))",
    "io_inp": [
      2,
      -1,
      2
    ],
    "io_out": [
      -3,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(drop(mul_n(input,-2),1),-3),3))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-3, 3],-5),-2),3)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-5),-2),3)"
  },
  {
    "input": "input : list = [3, -5, 5, 4]\noutput : list = [-34, 6, 11, 16]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n(sort_des([3, -5, 5, 4]),-2),5)),-1)",
    "io_inp": [
      3,
      -5,
      5,
      4
    ],
    "io_out": [
      -34,
      6,
      11,
      16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(sort_des(input),-2),5)),-1)"
  },
  {
    "input": "input : list = [-2, 1, -2, -2, 1, -5]\noutput : list = [-4, 20]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(drop([-2, 1, -2, -2, 1, -5],4),-4))),1)",
    "io_inp": [
      -2,
      1,
      -2,
      -2,
      1,
      -5
    ],
    "io_out": [
      -4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(drop(input,4),-4))),1)"
  },
  {
    "input": "input : list = [-3, -3, 3, 5, 2]\noutput : list = [-3, -5, -6, -11]",
    "output": "generated_output : list = add_n(reverse(sub_n(drop(sort_asc([-3, -3, 3, 5, 2]),1),5)),-3)",
    "io_inp": [
      -3,
      -3,
      3,
      5,
      2
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(drop(sort_asc(input),1),5)),-3)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [8, 20, -4]",
    "output": "generated_output : list = mul_n([-2, -5, 1],-4)",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      8,
      20,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n(drop([-1, -2, -2],1),5)",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [4, -3, 5, -5]\noutput : list = [-6, 4, -4]",
    "output": "generated_output : list = take(reverse(take(sub_n(drop([4, -3, 5, -5],1),1),29)),45)",
    "io_inp": [
      4,
      -3,
      5,
      -5
    ],
    "io_out": [
      -6,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(drop(input,1),1),29)),45)"
  },
  {
    "input": "input : list = [-4, -4, 1, 2]\noutput : list = [0, -12, -72, -72]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(sort_des([-4, -4, 1, 2]),-5),3),-3),-4)",
    "io_inp": [
      -4,
      -4,
      1,
      2
    ],
    "io_out": [
      0,
      -12,
      -72,
      -72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(sort_des(input),-5),3),-3),-4)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sort_asc([-1, 2])))))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, 5, 3, -5, 1]\noutput : list = [5, 3, 1, -5, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-5, 5, 3, -5, 1]),3),3)",
    "io_inp": [
      -5,
      5,
      3,
      -5,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),3),3)"
  },
  {
    "input": "input : list = [5, 1, 2]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des([5, 1, 2])))))",
    "io_inp": [
      5,
      1,
      2
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, -3, -1, 2, -3]\noutput : list = [1, 1, 0, -1, -4]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(sort_asc([-2, -3, -1, 2, -3]),1),-1),19),3)",
    "io_inp": [
      -2,
      -3,
      -1,
      2,
      -3
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(sort_asc(input),1),-1),19),3)"
  },
  {
    "input": "input : list = [-3, -3, 3, 0, -5]\noutput : list = [-12, -20, -20, -32, -44]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(add_n([-3, -3, 3, 0, -5],4),4)),41),-4)",
    "io_inp": [
      -3,
      -3,
      3,
      0,
      -5
    ],
    "io_out": [
      -12,
      -20,
      -20,
      -32,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(add_n(input,4),4)),41),-4)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sort_des([-1, -5]),2)),2))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sort_des(input),2)),2))"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [12, -8, -12]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(sub_n([-4, -5, 1],-3))),-1),4)",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      12,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(sub_n(input,-3))),-1),4)"
  },
  {
    "input": "input : list = [-5, 4, 0, -2, -1]\noutput : list = [-2, 1, 2, 3, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([-5, 4, 0, -2, -1])),3)",
    "io_inp": [
      -5,
      4,
      0,
      -2,
      -1
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),3)"
  },
  {
    "input": "input : list = [-4, -2, 1, -2, 0, 0]\noutput : list = [16, 8, -4, 8, 0, 0]",
    "output": "generated_output : list = mul_n([-4, -2, 1, -2, 0, 0],-4)",
    "io_inp": [
      -4,
      -2,
      1,
      -2,
      0,
      0
    ],
    "io_out": [
      16,
      8,
      -4,
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([-3, 1]),2),3)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),2),3)"
  },
  {
    "input": "input : list = [-5, -3, 0, 0, -5, -1]\noutput : list = [-25, -25, -21, -13, -5, -5]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n(sub_n([-5, -3, 0, 0, -5, -1],-4),-2)),-4),1)",
    "io_inp": [
      -5,
      -3,
      0,
      0,
      -5,
      -1
    ],
    "io_out": [
      -25,
      -25,
      -21,
      -13,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(sub_n(input,-4),-2)),-4),1)"
  },
  {
    "input": "input : list = [0, 4, 0, 5]\noutput : list = [5, 5, 9, 10]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(add_n([0, 4, 0, 5],5)))),1)",
    "io_inp": [
      0,
      4,
      0,
      5
    ],
    "io_out": [
      5,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(add_n(input,5)))),1)"
  },
  {
    "input": "input : list = [2, -2, 1, 3]\noutput : list = [-18, -13, -8, 7]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(sort_des([2, -2, 1, 3]))),-5),3)",
    "io_inp": [
      2,
      -2,
      1,
      3
    ],
    "io_out": [
      -18,
      -13,
      -8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(sort_des(input))),-5),3)"
  },
  {
    "input": "input : list = [3, 4, 2, 1, -1, 0]\noutput : list = [2, 1, 0, -1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_des([3, 4, 2, 1, -1, 0])),2)))",
    "io_inp": [
      3,
      4,
      2,
      1,
      -1,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [1, -4, 5, 0, -2]\noutput : list = [5, 1, 0, -2, -4]",
    "output": "generated_output : list = sort_des([1, -4, 5, 0, -2])",
    "io_inp": [
      1,
      -4,
      5,
      0,
      -2
    ],
    "io_out": [
      5,
      1,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 3, 2, 4, 0]\noutput : list = [10, 9, 8, 7, 5]",
    "output": "generated_output : list = add_n(sort_des([5, 3, 2, 4, 0]),5)",
    "io_inp": [
      5,
      3,
      2,
      4,
      0
    ],
    "io_out": [
      10,
      9,
      8,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [2, 1, -3]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, -3])",
    "io_inp": [
      2,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, 5, -2, 2]\noutput : list = [5, 1, 8, 7, 7]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(reverse([4, 4, 5, -2, 2]),-2),8),1),5)",
    "io_inp": [
      4,
      4,
      5,
      -2,
      2
    ],
    "io_out": [
      5,
      1,
      8,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(reverse(input),-2),8),1),5)"
  },
  {
    "input": "input : list = [2, -5, 5, 5, 2, 3]\noutput : list = [3, 3, 1, 0, 0, -7]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(add_n([2, -5, 5, 5, 2, 3],3))),13),5)",
    "io_inp": [
      2,
      -5,
      5,
      5,
      2,
      3
    ],
    "io_out": [
      3,
      3,
      1,
      0,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(add_n(input,3))),13),5)"
  },
  {
    "input": "input : list = [0, -2, -2, 1, -1, 4]\noutput : list = [-6, -6, -3, 0, 3, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(mul_n([0, -2, -2, 1, -1, 4],-1)))),-3)",
    "io_inp": [
      0,
      -2,
      -2,
      1,
      -1,
      4
    ],
    "io_out": [
      -6,
      -6,
      -3,
      0,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(mul_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [0, 1, -4, 4, 3, 1]\noutput : list = [1, 2, -3, 5, 4, 2]",
    "output": "generated_output : list = add_n([0, 1, -4, 4, 3, 1],1)",
    "io_inp": [
      0,
      1,
      -4,
      4,
      3,
      1
    ],
    "io_out": [
      1,
      2,
      -3,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse([1, 0])",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [3, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 3])",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -1, 3, 0, -3, -5]\noutput : list = [-14, 2, -14, -2, 10, 18]",
    "output": "generated_output : list = add_n(take(take(mul_n([3, -1, 3, 0, -3, -5],-4),29),9),-2)",
    "io_inp": [
      3,
      -1,
      3,
      0,
      -3,
      -5
    ],
    "io_out": [
      -14,
      2,
      -14,
      -2,
      10,
      18
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(input,-4),29),9),-2)"
  },
  {
    "input": "input : list = [5, 4, -2, -1, -3]\noutput : list = [5, 4, -1, -2, -3]",
    "output": "generated_output : list = take(sort_des([5, 4, -2, -1, -3]),26)",
    "io_inp": [
      5,
      4,
      -2,
      -1,
      -3
    ],
    "io_out": [
      5,
      4,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),26)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [15, 25]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n([-5, -3],-5)),21))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      15,
      25
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(input,-5)),21))"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [-8, 2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(drop([-2, 1, -4],1)),2)))",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(drop(input,1)),2)))"
  },
  {
    "input": "input : list = [-5, 0, 2, 4, 2, -5]\noutput : list = [0, 4, 8, 4, -10]",
    "output": "generated_output : list = drop(mul_n([-5, 0, 2, 4, 2, -5],2),1)",
    "io_inp": [
      -5,
      0,
      2,
      4,
      2,
      -5
    ],
    "io_out": [
      0,
      4,
      8,
      4,
      -10
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,2),1)"
  },
  {
    "input": "input : list = [2, -2, -4, 1]\noutput : list = [5, 0, 2, 6]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n([2, -2, -4, 1],-1),-5),-5),-5))",
    "io_inp": [
      2,
      -2,
      -4,
      1
    ],
    "io_out": [
      5,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n(input,-1),-5),-5),-5))"
  },
  {
    "input": "input : list = [1, -5, 2]\noutput : list = [2, -5, 1]",
    "output": "generated_output : list = reverse([1, -5, 2])",
    "io_inp": [
      1,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4, 4, -5, -3]\noutput : list = [4, 12, 12, 3, 5]",
    "output": "generated_output : list = sub_n(add_n([-4, 4, 4, -5, -3],5),-3)",
    "io_inp": [
      -4,
      4,
      4,
      -5,
      -3
    ],
    "io_out": [
      4,
      12,
      12,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [5, 5, 1, -1, -4, 2]\noutput : list = [8, 8]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(sort_des([5, 5, 1, -1, -4, 2]),2),2),-4),-3)",
    "io_inp": [
      5,
      5,
      1,
      -1,
      -4,
      2
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(sort_des(input),2),2),-4),-3)"
  },
  {
    "input": "input : list = [2, -5, -1, 3, -4]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take([2, -5, -1, 3, -4],2),5)))",
    "io_inp": [
      2,
      -5,
      -1,
      3,
      -4
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(input,2),5)))"
  },
  {
    "input": "input : list = [5, -4, -1, 3]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, -1, 3],1)",
    "io_inp": [
      5,
      -4,
      -1,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5, 3, 2, -1]\noutput : list = [10, 8, 2, 0, -6]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(mul_n([-2, -5, 3, 2, -1],2))),9),-4)",
    "io_inp": [
      -2,
      -5,
      3,
      2,
      -1
    ],
    "io_out": [
      10,
      8,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(mul_n(input,2))),9),-4)"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [2, 1, -3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(sub_n([0, -4, 1],-1)),-5),-5))",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(sub_n(input,-1)),-5),-5))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(sort_des([-1, 1]),1))))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-4, 2, -2, -2, 4]\noutput : list = [0, 6, 2]",
    "output": "generated_output : list = take(sub_n(add_n(take(take([-4, 2, -2, -2, 4],3),22),-1),-5),20)",
    "io_inp": [
      -4,
      2,
      -2,
      -2,
      4
    ],
    "io_out": [
      0,
      6,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(take(input,3),22),-1),-5),20)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des([-1, 3])),-2))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(input)),-2))"
  },
  {
    "input": "input : list = [-1, -3, -3, 0, 3]\noutput : list = [16]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(take([-1, -3, -3, 0, 3],1)),5),4))",
    "io_inp": [
      -1,
      -3,
      -3,
      0,
      3
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(take(input,1)),5),4))"
  },
  {
    "input": "input : list = [1, 0, -3, -3, -1, -3]\noutput : list = [-1, -2, -3, -5, -5, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(sub_n([1, 0, -3, -3, -1, -3],2),-5),4)),-1)",
    "io_inp": [
      1,
      0,
      -3,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(sub_n(input,2),-5),4)),-1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(sort_des([-4, -2]),6),1)))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(sort_des(input),6),1)))"
  },
  {
    "input": "input : list = [-4, -2, 1, 3, -4, -1]\noutput : list = [-8, -6, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take([-4, -2, 1, 3, -4, -1],4),4)))",
    "io_inp": [
      -4,
      -2,
      1,
      3,
      -4,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(input,4),4)))"
  },
  {
    "input": "input : list = [5, 0, -2, -2, -4]\noutput : list = [15, 0, -6, -6, -12]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(mul_n([5, 0, -2, -2, -4],3))),39))",
    "io_inp": [
      5,
      0,
      -2,
      -2,
      -4
    ],
    "io_out": [
      15,
      0,
      -6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(mul_n(input,3))),39))"
  },
  {
    "input": "input : list = [-3, 0, -5, -5]\noutput : list = [-2, -2, 0, 3]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(sort_asc([-3, 0, -5, -5]),9),3)))",
    "io_inp": [
      -3,
      0,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(sort_asc(input),9),3)))"
  },
  {
    "input": "input : list = [5, -3, 4, 1]\noutput : list = [-20, -5]",
    "output": "generated_output : list = take(mul_n(take(drop([5, -3, 4, 1],2),15),-5),3)",
    "io_inp": [
      5,
      -3,
      4,
      1
    ],
    "io_out": [
      -20,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(take(drop(input,2),15),-5),3)"
  },
  {
    "input": "input : list = [-3, 0, -1, -4, -4]\noutput : list = [-1, 2, 1, -2, -2]",
    "output": "generated_output : list = add_n([-3, 0, -1, -4, -4],2)",
    "io_inp": [
      -3,
      0,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -1,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, 1, 0, 1]\noutput : list = [0, 1, 2, 1]",
    "output": "generated_output : list = take(mul_n(add_n([2, 1, 0, 1],-2),-1),17)",
    "io_inp": [
      2,
      1,
      0,
      1
    ],
    "io_out": [
      0,
      1,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-2),-1),17)"
  },
  {
    "input": "input : list = [4, -1, -3, -3, 4, -3]\noutput : list = [-2, -2, -7, -9, -9, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(add_n([4, -1, -3, -3, 4, -3],-4),12))),-2)",
    "io_inp": [
      4,
      -1,
      -3,
      -3,
      4,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -7,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(add_n(input,-4),12))),-2)"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [12, 12, -20]",
    "output": "generated_output : list = mul_n(add_n(sort_des([-4, 4, 4]),-1),4)",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      12,
      12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),-1),4)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-24, 3]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_asc([5, -4])),4),3))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -24,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_asc(input)),4),3))"
  },
  {
    "input": "input : list = [-3, 2, 5, 3]\noutput : list = [1, 6, 9, 7]",
    "output": "generated_output : list = sub_n([-3, 2, 5, 3],-4)",
    "io_inp": [
      -3,
      2,
      5,
      3
    ],
    "io_out": [
      1,
      6,
      9,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -2, -4, -3, -2, 0]\noutput : list = [1, 2, 4, 3, 2, 0]",
    "output": "generated_output : list = mul_n([-1, -2, -4, -3, -2, 0],-1)",
    "io_inp": [
      -1,
      -2,
      -4,
      -3,
      -2,
      0
    ],
    "io_out": [
      1,
      2,
      4,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 1, -2, 0]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(take([2, 1, -2, 0],2),7),3)),-1)",
    "io_inp": [
      2,
      1,
      -2,
      0
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(take(input,2),7),3)),-1)"
  },
  {
    "input": "input : list = [3, -5, 4, -5, 4]\noutput : list = [7, 7]",
    "output": "generated_output : list = drop(sort_asc(take(add_n([3, -5, 4, -5, 4],3),19)),3)",
    "io_inp": [
      3,
      -5,
      4,
      -5,
      4
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = drop(sort_asc(take(add_n(input,3),19)),3)"
  },
  {
    "input": "input : list = [-2, -1, 5, 2]\noutput : list = [8, 20, -4, -8]",
    "output": "generated_output : list = reverse(mul_n([-2, -1, 5, 2],4))",
    "io_inp": [
      -2,
      -1,
      5,
      2
    ],
    "io_out": [
      8,
      20,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [4, -1, -5, 2, -3, -4]\noutput : list = [4, -1, -5]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(take([4, -1, -5, 2, -3, -4],3)))),36)",
    "io_inp": [
      4,
      -1,
      -5,
      2,
      -3,
      -4
    ],
    "io_out": [
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(take(input,3)))),36)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = drop([1, -3, 0],1)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -3, 2, -5, 5, 3]\noutput : list = [-62, 88, -62, 148, -152, -92]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(mul_n([2, -3, 2, -5, 5, 3],3),-2),5),5),3)",
    "io_inp": [
      2,
      -3,
      2,
      -5,
      5,
      3
    ],
    "io_out": [
      -62,
      88,
      -62,
      148,
      -152,
      -92
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(mul_n(input,3),-2),5),5),3)"
  },
  {
    "input": "input : list = [0, 0, 4, 2, -2, 4]\noutput : list = [1, -1, -5, 1]",
    "output": "generated_output : list = add_n(drop([0, 0, 4, 2, -2, 4],2),-3)",
    "io_inp": [
      0,
      0,
      4,
      2,
      -2,
      4
    ],
    "io_out": [
      1,
      -1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [5, -4, 0]",
    "output": "generated_output : list = reverse([0, -4, 5])",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [5, 2, -3]",
    "output": "generated_output : list = reverse(mul_n([-3, 2, 5],1))",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-5, -2, 0, 2]\noutput : list = [-40, 0, 40]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(mul_n([-5, -2, 0, 2],-1)),3),-4),-5)",
    "io_inp": [
      -5,
      -2,
      0,
      2
    ],
    "io_out": [
      -40,
      0,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(mul_n(input,-1)),3),-4),-5)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [81, 63, -63]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n([-4, -3, 4],-2),-3),3),-3))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      81,
      63,
      -63
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n(input,-2),-3),3),-3))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(reverse([-1, 2]))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, 4, -2, 4, -2]\noutput : list = [-2, 4, -2, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, -2, 4, -2])",
    "io_inp": [
      4,
      4,
      -2,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc([1, -2, 2])",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5, 4, 1, 4]\noutput : list = [9, 0, 9, -18, 9]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(mul_n([4, -5, 4, 1, 4],-1),20),-3),3))",
    "io_inp": [
      4,
      -5,
      4,
      1,
      4
    ],
    "io_out": [
      9,
      0,
      9,
      -18,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(mul_n(input,-1),20),-3),3))"
  },
  {
    "input": "input : list = [5, -1, 2, 3]\noutput : list = [-1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([5, -1, 2, 3])",
    "io_inp": [
      5,
      -1,
      2,
      3
    ],
    "io_out": [
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n([2, 0],5),1)))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(input,5),1)))"
  },
  {
    "input": "input : list = [5, 2, 1, 3]\noutput : list = [10, 7, 6, 8]",
    "output": "generated_output : list = sub_n([5, 2, 1, 3],-5)",
    "io_inp": [
      5,
      2,
      1,
      3
    ],
    "io_out": [
      10,
      7,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, -5, 5, -3, -4, 2]\noutput : list = [-5, -4, -3, 2, 2, 5]",
    "output": "generated_output : list = sort_asc([2, -5, 5, -3, -4, 2])",
    "io_inp": [
      2,
      -5,
      5,
      -3,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, -1, 1, -1, -2]\noutput : list = [-12, -8, 0, -8, 12, -4]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(add_n([0, 4, -1, 1, -1, -2],-2),-1),2)),4)",
    "io_inp": [
      0,
      4,
      -1,
      1,
      -1,
      -2
    ],
    "io_out": [
      -12,
      -8,
      0,
      -8,
      12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(add_n(input,-2),-1),2)),4)"
  },
  {
    "input": "input : list = [5, 3, 0, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = take(take([5, 3, 0, 3],2),2)",
    "io_inp": [
      5,
      3,
      0,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(take(input,2),2)"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [5, 5, -3]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(sub_n([1, -3, -3],-4),-5),-2),3))",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(sub_n(input,-4),-5),-2),3))"
  },
  {
    "input": "input : list = [3, -4, 4, 3, 5, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = drop(add_n(sort_asc([3, -4, 4, 3, 5, 0]),-4),4)",
    "io_inp": [
      3,
      -4,
      4,
      3,
      5,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(input),-4),4)"
  },
  {
    "input": "input : list = [5, 4, 1, 4, -3]\noutput : list = [-8, -4, -4, 8, 24]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(sort_asc([5, 4, 1, 4, -3]),-3),-4)))",
    "io_inp": [
      5,
      4,
      1,
      4,
      -3
    ],
    "io_out": [
      -8,
      -4,
      -4,
      8,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(sort_asc(input),-3),-4)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [302, -298]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(mul_n([-4, 4],5),3),5)),2)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      302,
      -298
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(mul_n(input,5),3),5)),2)"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [30, 0, -6]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(add_n([-2, -1, 4],1)),-3)),-2)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      30,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(add_n(input,1)),-3)),-2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(sort_des([1, 0]),-2)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [3, 5, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(take([3, 5, 2],1)))))",
    "io_inp": [
      3,
      5,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-3, 3, 2, 1, 3]\noutput : list = [4, 4, 3, 2, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(reverse([-3, 3, 2, 1, 3])))),1)",
    "io_inp": [
      -3,
      3,
      2,
      1,
      3
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(reverse(input)))),1)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-4, -2, -2]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(add_n([-2, -2, -3],4)),-3),8),2)",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(add_n(input,4)),-3),8),2)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [16, -8, 4]",
    "output": "generated_output : list = add_n(mul_n([3, -3, 0],4),4)",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      16,
      -8,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),4)"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [5, 4, 4]",
    "output": "generated_output : list = reverse(take(reverse(reverse(mul_n([-4, -4, -5],-1))),13))",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(mul_n(input,-1))),13))"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [8]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(take([4, 0, 4],1)),4)),43)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(take(input,1)),4)),43)"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [8, 0, -6]",
    "output": "generated_output : list = mul_n([-4, 0, 3],-2)",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      8,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [1, -6]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(sort_asc([4, -3]),1),-2),3))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(sort_asc(input),1),-2),3))"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [-4, 8]",
    "output": "generated_output : list = reverse(mul_n(drop([-4, 4, -2],1),2))",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,1),2))"
  },
  {
    "input": "input : list = [-4, 1, 0]\noutput : list = [4, 0, -16]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(sort_asc([-4, 1, 0]))),4))",
    "io_inp": [
      -4,
      1,
      0
    ],
    "io_out": [
      4,
      0,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [4, 3, 5, 4]\noutput : list = [1, 0, 2, 1]",
    "output": "generated_output : list = sub_n([4, 3, 5, 4],3)",
    "io_inp": [
      4,
      3,
      5,
      4
    ],
    "io_out": [
      1,
      0,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [3, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(add_n([-2, 1, -4],1),-1))))",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(add_n(input,1),-1))))"
  },
  {
    "input": "input : list = [-4, -2, 3, -4, 2, 1]\noutput : list = [0, -1, -2, -5, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(take(take(reverse([-4, -2, 3, -4, 2, 1]),18),29)),3)",
    "io_inp": [
      -4,
      -2,
      3,
      -4,
      2,
      1
    ],
    "io_out": [
      0,
      -1,
      -2,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(reverse(input),18),29)),3)"
  },
  {
    "input": "input : list = [3, 1, 3, 5, 0]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(mul_n(drop(sort_des(sort_des([3, 1, 3, 5, 0])),4),-3),-1)",
    "io_inp": [
      3,
      1,
      3,
      5,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(sort_des(sort_des(input)),4),-3),-1)"
  },
  {
    "input": "input : list = [-2, -5, 4, -5]\noutput : list = [-5, 4, -5]",
    "output": "generated_output : list = sub_n(sub_n(drop([-2, -5, 4, -5],1),5),-5)",
    "io_inp": [
      -2,
      -5,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),5),-5)"
  },
  {
    "input": "input : list = [0, -4, 5, -2]\noutput : list = [15, -5, -13, -21]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(mul_n([0, -4, 5, -2],4)))),-5)",
    "io_inp": [
      0,
      -4,
      5,
      -2
    ],
    "io_out": [
      15,
      -5,
      -13,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(mul_n(input,4)))),-5)"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [0, 10, 2]",
    "output": "generated_output : list = sub_n([-5, 5, -3],-5)",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      0,
      10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [1, 8]",
    "output": "generated_output : list = take(take(reverse(sub_n([3, -4],-5)),19),17)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(input,-5)),19),17)"
  },
  {
    "input": "input : list = [5, -4, 1, 3]\noutput : list = [10, 1, 6, 8]",
    "output": "generated_output : list = sub_n([5, -4, 1, 3],-5)",
    "io_inp": [
      5,
      -4,
      1,
      3
    ],
    "io_out": [
      10,
      1,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, 3, -5, 4, -1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(take([4, 3, -5, 4, -1],1))",
    "io_inp": [
      4,
      3,
      -5,
      4,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-15, 0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc([-5, 0]),3)))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -15,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(input),3)))"
  },
  {
    "input": "input : list = [0, -1, -5, 5, -1]\noutput : list = [32, 52, 132, -68, 52]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(mul_n([0, -1, -5, 5, -1],-4),5),-1),5),-2)",
    "io_inp": [
      0,
      -1,
      -5,
      5,
      -1
    ],
    "io_out": [
      32,
      52,
      132,
      -68,
      52
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(mul_n(input,-4),5),-1),5),-2)"
  },
  {
    "input": "input : list = [4, 0, 5, 1, 5]\noutput : list = [0, 1, 4, 5, 5]",
    "output": "generated_output : list = take(sort_asc([4, 0, 5, 1, 5]),17)",
    "io_inp": [
      4,
      0,
      5,
      1,
      5
    ],
    "io_out": [
      0,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),17)"
  },
  {
    "input": "input : list = [4, -4, 1, 3, -2, 0]\noutput : list = [5, 3, 8, 6, 1, 9]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n([4, -4, 1, 3, -2, 0],-2),2),5))",
    "io_inp": [
      4,
      -4,
      1,
      3,
      -2,
      0
    ],
    "io_out": [
      5,
      3,
      8,
      6,
      1,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(input,-2),2),5))"
  },
  {
    "input": "input : list = [-4, 1, -4, -2, -2]\noutput : list = [1, -2, -2, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-4, 1, -4, -2, -2]))",
    "io_inp": [
      -4,
      1,
      -4,
      -2,
      -2
    ],
    "io_out": [
      1,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [7, 2]",
    "output": "generated_output : list = add_n([4, -1],3)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, 1, -1, 4]\noutput : list = [12, -3, 3, 6]",
    "output": "generated_output : list = mul_n(reverse([2, 1, -1, 4]),3)",
    "io_inp": [
      2,
      1,
      -1,
      4
    ],
    "io_out": [
      12,
      -3,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [3, -5, 0, -4, -1]\noutput : list = [-80, 80, -20, 60, 0]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(add_n([3, -5, 0, -4, -1],4),-2),4),4),-5)",
    "io_inp": [
      3,
      -5,
      0,
      -4,
      -1
    ],
    "io_out": [
      -80,
      80,
      -20,
      60,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(add_n(input,4),-2),4),4),-5)"
  },
  {
    "input": "input : list = [1, 4, -1, 0, -3]\noutput : list = [-1, 2, 1, 6, 3]",
    "output": "generated_output : list = reverse(sub_n([1, 4, -1, 0, -3],-2))",
    "io_inp": [
      1,
      4,
      -1,
      0,
      -3
    ],
    "io_out": [
      -1,
      2,
      1,
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -1, 0, -1, 5, 0]\noutput : list = [1, 2, 2, 3, 3, 8]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([-2, -1, 0, -1, 5, 0],-4),-1))",
    "io_inp": [
      -2,
      -1,
      0,
      -1,
      5,
      0
    ],
    "io_out": [
      1,
      2,
      2,
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-4),-1))"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [9, 3, -1]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(add_n([5, -5, -1],3),-4)),4),5)",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      9,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(add_n(input,3),-4)),4),5)"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [0, -7]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(drop([5, -4, 3],1),9),1)),-3)",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(drop(input,1),9),1)),-3)"
  },
  {
    "input": "input : list = [-1, -2, 5, 1, -4, -3]\noutput : list = [-3, -4, 3, -1, -6, -5]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n([-1, -2, 5, 1, -4, -3],3)),-5))",
    "io_inp": [
      -1,
      -2,
      5,
      1,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      3,
      -1,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(input,3)),-5))"
  },
  {
    "input": "input : list = [-5, 4, -4, 2, 0]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(drop([-5, 4, -4, 2, 0],3)),-3)))",
    "io_inp": [
      -5,
      4,
      -4,
      2,
      0
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(drop(input,3)),-3)))"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [3, 3, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(sort_des([4, -1, -1]),1)),6),-4)",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(sort_des(input),1)),6),-4)"
  },
  {
    "input": "input : list = [-1, -2, 0, 3, -1, 2]\noutput : list = [-5, -4, -4, -3, -1, 0]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sort_asc([-1, -2, 0, 3, -1, 2]),6),1),2),53)",
    "io_inp": [
      -1,
      -2,
      0,
      3,
      -1,
      2
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sort_asc(input),6),1),2),53)"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [4, 10]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(drop([4, 2, 0],1),12),5),-3),5)",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(drop(input,1),12),5),-3),5)"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [-10, -11, -12]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-2, -4, -3],-3),5))",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      -10,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-3),5))"
  },
  {
    "input": "input : list = [-1, -1, 1, -4, 4]\noutput : list = [-1, -4, -6, -6, -9]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n(sort_des([-1, -1, 1, -4, 4]),-5))))",
    "io_inp": [
      -1,
      -1,
      1,
      -4,
      4
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [-5, 0, -2, -5, -1, 2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(drop(sub_n(sort_des(mul_n([-5, 0, -2, -5, -1, 2],1)),-3),4),5)",
    "io_inp": [
      -5,
      0,
      -2,
      -5,
      -1,
      2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(sort_des(mul_n(input,1)),-3),4),5)"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = sort_asc([-4, -2, 2])",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [-12, 3, 6]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(add_n([1, 0, -5],1),3))))",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      -12,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(add_n(input,1),3))))"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [1, -1, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n([2, 2, 4],4)),-4)),-3)",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n(input,4)),-4)),-3)"
  },
  {
    "input": "input : list = [-2, 5, 2, -4]\noutput : list = [-4, -2, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-2, 5, 2, -4],1)))",
    "io_inp": [
      -2,
      5,
      2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,1)))"
  },
  {
    "input": "input : list = [0, 5, -3, -5, -5, -1]\noutput : list = [2, 22, 22, 12, -28, -3]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n([0, 5, -3, -5, -5, -1],5),3),-1))",
    "io_inp": [
      0,
      5,
      -3,
      -5,
      -5,
      -1
    ],
    "io_out": [
      2,
      22,
      22,
      12,
      -28,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(input,5),3),-1))"
  },
  {
    "input": "input : list = [0, -4, 1, -2, 4, -2]\noutput : list = [-2, 4, -2]",
    "output": "generated_output : list = drop([0, -4, 1, -2, 4, -2],3)",
    "io_inp": [
      0,
      -4,
      1,
      -2,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(reverse([-5, -2]),2)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [0, -4, 0]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(take([0, -4, 0],1),2),-5),4))",
    "io_inp": [
      0,
      -4,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(take(input,1),2),-5),4))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_des([0, 1]))),3),2)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_des(input))),3),2)"
  },
  {
    "input": "input : list = [-4, -1, 2, -5, -1]\noutput : list = [-1, 0, 3, 3, 6]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_des([-4, -1, 2, -5, -1])),-1)),-5)",
    "io_inp": [
      -4,
      -1,
      2,
      -5,
      -1
    ],
    "io_out": [
      -1,
      0,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_des(input)),-1)),-5)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_asc([4, 5]),-1)),4),-4)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_asc(input),-1)),4),-4)"
  },
  {
    "input": "input : list = [1, 2, -5, 2, 1, 1]\noutput : list = [-8, -2, -2, -2, -1, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(sort_asc([1, 2, -5, 2, 1, 1])),3)),40)",
    "io_inp": [
      1,
      2,
      -5,
      2,
      1,
      1
    ],
    "io_out": [
      -8,
      -2,
      -2,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(sort_asc(input)),3)),40)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [20, -30]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sub_n([3, -2],1))),-5),-2)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      20,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sub_n(input,1))),-5),-2)"
  },
  {
    "input": "input : list = [-4, 5, -3, 5, 1, 4]\noutput : list = [4, 1, 5, -3, 5, -4]",
    "output": "generated_output : list = reverse([-4, 5, -3, 5, 1, 4])",
    "io_inp": [
      -4,
      5,
      -3,
      5,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      5,
      -3,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-7, 11]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(sort_asc([-3, 3]),3),-3)),-2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(sort_asc(input),3),-3)),-2)"
  },
  {
    "input": "input : list = [-1, -1, -3, 4, -5, -2]\noutput : list = [-145, -95, -70, -45, -45, 80]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(mul_n([-1, -1, -3, 4, -5, -2],-5),-4),31)),-5)",
    "io_inp": [
      -1,
      -1,
      -3,
      4,
      -5,
      -2
    ],
    "io_out": [
      -145,
      -95,
      -70,
      -45,
      -45,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(mul_n(input,-5),-4),31)),-5)"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [-36, -36, -28]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(sub_n([4, 2, 4],-4)),-4),-4),15)",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      -36,
      -36,
      -28
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(sub_n(input,-4)),-4),-4),15)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [15, 11, 10]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(mul_n([1, 0, 5],1),-3),-3),-4))",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      15,
      11,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(mul_n(input,1),-3),-3),-4))"
  },
  {
    "input": "input : list = [0, 4, -3]\noutput : list = [-3, 0, 4]",
    "output": "generated_output : list = mul_n(reverse(sort_des([0, 4, -3])),1)",
    "io_inp": [
      0,
      4,
      -3
    ],
    "io_out": [
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [3, 3, -2, -3, 1]\noutput : list = [-10, -6, -7, -12, -12]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n([3, 3, -2, -3, 1],1),-1),-3),5))",
    "io_inp": [
      3,
      3,
      -2,
      -3,
      1
    ],
    "io_out": [
      -10,
      -6,
      -7,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n(input,1),-1),-3),5))"
  },
  {
    "input": "input : list = [1, 0, -3, 5, -3]\noutput : list = [-3, 5, -3, 0, 1]",
    "output": "generated_output : list = reverse([1, 0, -3, 5, -3])",
    "io_inp": [
      1,
      0,
      -3,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5, -1]\noutput : list = [-3, 1, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(add_n([4, -5, -1],-1))),-1),4)",
    "io_inp": [
      4,
      -5,
      -1
    ],
    "io_out": [
      -3,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(add_n(input,-1))),-1),4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-10, 20]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_des([4, -2]),2)),-2),5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_des(input),2)),-2),5)"
  },
  {
    "input": "input : list = [5, 4, -1]\noutput : list = [8, 3, 2]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(add_n([5, 4, -1],-3),-1)),12),4)",
    "io_inp": [
      5,
      4,
      -1
    ],
    "io_out": [
      8,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(add_n(input,-3),-1)),12),4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = add_n(sort_des([-2, 1]),3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-2, 2, -1, 1, -5, 5]\noutput : list = [36, 27, 24, 18, 15, 6]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(add_n([-2, 2, -1, 1, -5, 5],4)),17),-3),3)",
    "io_inp": [
      -2,
      2,
      -1,
      1,
      -5,
      5
    ],
    "io_out": [
      36,
      27,
      24,
      18,
      15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(add_n(input,4)),17),-3),3)"
  },
  {
    "input": "input : list = [-5, -5, 2, 0]\noutput : list = [-8, -8, -3, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(reverse([-5, -5, 2, 0]))),3),22)",
    "io_inp": [
      -5,
      -5,
      2,
      0
    ],
    "io_out": [
      -8,
      -8,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(reverse(input))),3),22)"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [-3, -6, -3]",
    "output": "generated_output : list = add_n(reverse([-1, -4, -1]),-2)",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-7, -5]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des([3, 1]),4),4)),9)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des(input),4),4)),9)"
  },
  {
    "input": "input : list = [4, 4, -4, 4, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(take([4, 4, -4, 4, -4],2),-5),-5)),-1)",
    "io_inp": [
      4,
      4,
      -4,
      4,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(take(input,2),-5),-5)),-1)"
  },
  {
    "input": "input : list = [1, 4, 3]\noutput : list = [-3, -9, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(mul_n([1, 4, 3],1)),-3)))",
    "io_inp": [
      1,
      4,
      3
    ],
    "io_out": [
      -3,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(mul_n(input,1)),-3)))"
  },
  {
    "input": "input : list = [3, 3, -1, 2, -3, 2]\noutput : list = [-2, -2, -6, -3]",
    "output": "generated_output : list = sub_n(take([3, 3, -1, 2, -3, 2],4),5)",
    "io_inp": [
      3,
      3,
      -1,
      2,
      -3,
      2
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,4),5)"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(drop([-4, -1, -5],1)))))",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(take(reverse([1, -4]),4),7)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),4),7)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-20]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n([4, -3],-5),1)))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(input,-5),1)))"
  },
  {
    "input": "input : list = [3, -4, -4, -3, 4]\noutput : list = [-6, 8, 8, 6, -8]",
    "output": "generated_output : list = mul_n([3, -4, -4, -3, 4],-2)",
    "io_inp": [
      3,
      -4,
      -4,
      -3,
      4
    ],
    "io_out": [
      -6,
      8,
      8,
      6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -4, 0, 2]\noutput : list = [-4, -1, 0, 2]",
    "output": "generated_output : list = sort_asc([-1, -4, 0, 2])",
    "io_inp": [
      -1,
      -4,
      0,
      2
    ],
    "io_out": [
      -4,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-12, 0]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(reverse([-3, 0]),7),-1),-4))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(reverse(input),7),-1),-4))"
  },
  {
    "input": "input : list = [-5, -5, -4, 1, -4]\noutput : list = [-1, 4, -1, -2, -2]",
    "output": "generated_output : list = take(reverse(take(sub_n([-5, -5, -4, 1, -4],-3),25)),21)",
    "io_inp": [
      -5,
      -5,
      -4,
      1,
      -4
    ],
    "io_out": [
      -1,
      4,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(input,-3),25)),21)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [6, 3]",
    "output": "generated_output : list = sub_n(take(take(add_n([0, -3],2),9),12),-4)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(input,2),9),12),-4)"
  },
  {
    "input": "input : list = [5, 2, 5, 3]\noutput : list = [8, 12, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(sort_asc([5, 2, 5, 3])),29),4))",
    "io_inp": [
      5,
      2,
      5,
      3
    ],
    "io_out": [
      8,
      12,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(sort_asc(input)),29),4))"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [1, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(sub_n([0, -4, -4],-3)),-2)))",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(sub_n(input,-3)),-2)))"
  },
  {
    "input": "input : list = [-4, 2, 4, 5]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse(take([-4, 2, 4, 5],2))",
    "io_inp": [
      -4,
      2,
      4,
      5
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [1, 0, -5, -4, -2, 0]\noutput : list = [5, 1, -3, -5, 5, 7]",
    "output": "generated_output : list = add_n(mul_n(reverse([1, 0, -5, -4, -2, 0]),2),5)",
    "io_inp": [
      1,
      0,
      -5,
      -4,
      -2,
      0
    ],
    "io_out": [
      5,
      1,
      -3,
      -5,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),2),5)"
  },
  {
    "input": "input : list = [-1, 3, -2, -2, -1]\noutput : list = [6, -2, -2, -4, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des([-1, 3, -2, -2, -1]),1)),2),2)",
    "io_inp": [
      -1,
      3,
      -2,
      -2,
      -1
    ],
    "io_out": [
      6,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des(input),1)),2),2)"
  },
  {
    "input": "input : list = [-4, 3, -4, -1, 3]\noutput : list = [14, -14, 14, 2, -14]",
    "output": "generated_output : list = add_n(add_n(mul_n([-4, 3, -4, -1, 3],-4),1),-3)",
    "io_inp": [
      -4,
      3,
      -4,
      -1,
      3
    ],
    "io_out": [
      14,
      -14,
      14,
      2,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,-4),1),-3)"
  },
  {
    "input": "input : list = [2, -2, 5, 3, 3]\noutput : list = [2, 0, 0, -1, -5]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n([2, -2, 5, 3, 3],-1)),13),4))",
    "io_inp": [
      2,
      -2,
      5,
      3,
      3
    ],
    "io_out": [
      2,
      0,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n(input,-1)),13),4))"
  },
  {
    "input": "input : list = [2, -3, -2, -5, 1, -2]\noutput : list = [-5, -3, -2, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse([2, -3, -2, -5, 1, -2]))",
    "io_inp": [
      2,
      -3,
      -2,
      -5,
      1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, -1, 3, -1, 0, -4]\noutput : list = [-7, -3, -4, 0, -4, -4]",
    "output": "generated_output : list = reverse(sub_n([-1, -1, 3, -1, 0, -4],3))",
    "io_inp": [
      -1,
      -1,
      3,
      -1,
      0,
      -4
    ],
    "io_out": [
      -7,
      -3,
      -4,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-3, -1, 3, -5, -3, 3]\noutput : list = [-24, -12, -12, 0, 24, 24]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n([-3, -1, 3, -5, -3, 3],2))),-2),3)",
    "io_inp": [
      -3,
      -1,
      3,
      -5,
      -3,
      3
    ],
    "io_out": [
      -24,
      -12,
      -12,
      0,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n(input,2))),-2),3)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [3, -7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(sort_asc([5, -5]),2),-5),5))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(sort_asc(input),2),-5),5))"
  },
  {
    "input": "input : list = [-5, -2, 3, -5, -4]\noutput : list = [-8, -8, -7, -5, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sub_n([-5, -2, 3, -5, -4],3),14))))",
    "io_inp": [
      -5,
      -2,
      3,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sub_n(input,3),14))))"
  },
  {
    "input": "input : list = [-5, 5, 1, 3]\noutput : list = [10, -2, -6, -10]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 5, 1, 3]),-2)",
    "io_inp": [
      -5,
      5,
      1,
      3
    ],
    "io_out": [
      10,
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [0, -1, 1, 0, 3, -1]\noutput : list = [0, -2, -3, -3, -4, -4]",
    "output": "generated_output : list = take(sub_n(take(sub_n(sort_des([0, -1, 1, 0, 3, -1]),5),36),-2),45)",
    "io_inp": [
      0,
      -1,
      1,
      0,
      3,
      -1
    ],
    "io_out": [
      0,
      -2,
      -3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(sort_des(input),5),36),-2),45)"
  },
  {
    "input": "input : list = [-3, 1, 5, -4, 1]\noutput : list = [5, -4, 1]",
    "output": "generated_output : list = drop([-3, 1, 5, -4, 1],2)",
    "io_inp": [
      -3,
      1,
      5,
      -4,
      1
    ],
    "io_out": [
      5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [0, -14, 0]",
    "output": "generated_output : list = mul_n(sub_n([-2, 5, -2],-2),-2)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      0,
      -14,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),-2)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [2, -2, -8]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(reverse([5, 1, -5]),1)),-4))",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(reverse(input),1)),-4))"
  },
  {
    "input": "input : list = [-1, 0, 4, 0, 5, -5]\noutput : list = [-8, -3, -3, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(drop([-1, 0, 4, 0, 5, -5],1)))),-3)",
    "io_inp": [
      -1,
      0,
      4,
      0,
      5,
      -5
    ],
    "io_out": [
      -8,
      -3,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(drop(input,1)))),-3)"
  },
  {
    "input": "input : list = [0, -2, -3, 5]\noutput : list = [-20, -10, -5, -45]",
    "output": "generated_output : list = mul_n(add_n([0, -2, -3, 5],4),-5)",
    "io_inp": [
      0,
      -2,
      -3,
      5
    ],
    "io_out": [
      -20,
      -10,
      -5,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),-5)"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [-5, -1, 1]",
    "output": "generated_output : list = sort_asc([-1, 1, -5])",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, -2, -5]\noutput : list = [7, 1, 0, -3]",
    "output": "generated_output : list = take(add_n([5, -1, -2, -5],2),7)",
    "io_inp": [
      5,
      -1,
      -2,
      -5
    ],
    "io_out": [
      7,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),7)"
  },
  {
    "input": "input : list = [-5, -4, 1, 3]\noutput : list = [-12, -6, 9, 12]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(sort_asc([-5, -4, 1, 3]),22),1)),-3)",
    "io_inp": [
      -5,
      -4,
      1,
      3
    ],
    "io_out": [
      -12,
      -6,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(sort_asc(input),22),1)),-3)"
  },
  {
    "input": "input : list = [2, -4, 1, 3, 1]\noutput : list = [-4, 1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([2, -4, 1, 3, 1])))",
    "io_inp": [
      2,
      -4,
      1,
      3,
      1
    ],
    "io_out": [
      -4,
      1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [5, -4, -1, 4, -2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(take([5, -4, -1, 4, -2],1)),-1),20),-5)",
    "io_inp": [
      5,
      -4,
      -1,
      4,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(take(input,1)),-1),20),-5)"
  },
  {
    "input": "input : list = [0, 0, 2, -3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take([0, 0, 2, -3],1),5)",
    "io_inp": [
      0,
      0,
      2,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-3, -4, 1, -2, 3]\noutput : list = [-4, -3, -2, 1, 3]",
    "output": "generated_output : list = sort_asc([-3, -4, 1, -2, 3])",
    "io_inp": [
      -3,
      -4,
      1,
      -2,
      3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, 0, -1, -5, 2]\noutput : list = [-14, -12, -10, -9, -7, -5]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(sort_asc([4, -3, 0, -1, -5, 2]),4)),-5),51)",
    "io_inp": [
      4,
      -3,
      0,
      -1,
      -5,
      2
    ],
    "io_out": [
      -14,
      -12,
      -10,
      -9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(sort_asc(input),4)),-5),51)"
  },
  {
    "input": "input : list = [0, -3, 4, 2, 5]\noutput : list = [-12, 8, 16, 20]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(reverse([0, -3, 4, 2, 5]),4))),4)",
    "io_inp": [
      0,
      -3,
      4,
      2,
      5
    ],
    "io_out": [
      -12,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(reverse(input),4))),4)"
  },
  {
    "input": "input : list = [-2, 0, 0, 3, -3]\noutput : list = [19, 4, 4, -6, -11]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(mul_n([-2, 0, 0, 3, -3],5),-4),1)))",
    "io_inp": [
      -2,
      0,
      0,
      3,
      -3
    ],
    "io_out": [
      19,
      4,
      4,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(mul_n(input,5),-4),1)))"
  },
  {
    "input": "input : list = [5, 3, -1, -1]\noutput : list = [8, 8, 4, 2]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(mul_n([5, 3, -1, -1],-1),4)),3))",
    "io_inp": [
      5,
      3,
      -1,
      -1
    ],
    "io_out": [
      8,
      8,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(mul_n(input,-1),4)),3))"
  },
  {
    "input": "input : list = [0, 4, 5, 0, 0]\noutput : list = [5, 0, 0]",
    "output": "generated_output : list = drop([0, 4, 5, 0, 0],2)",
    "io_inp": [
      0,
      4,
      5,
      0,
      0
    ],
    "io_out": [
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 4, 2, -2]\noutput : list = [4, 12, 28, 36]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(sort_asc([-4, 4, 2, -2]),-5)),4),-1)",
    "io_inp": [
      -4,
      4,
      2,
      -2
    ],
    "io_out": [
      4,
      12,
      28,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(sort_asc(input),-5)),4),-1)"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [3, -9, -6]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(mul_n([1, -3, -2],-3),-1))),17)",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      3,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(mul_n(input,-3),-1))),17)"
  },
  {
    "input": "input : list = [2, -1, 4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = drop([2, -1, 4, 2],2)",
    "io_inp": [
      2,
      -1,
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(sort_des([-2, -1]),4))))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-1, -5, -4, -2]\noutput : list = [3, 5, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(drop([-1, -5, -4, -2],1),-1),-1),8))",
    "io_inp": [
      -1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(drop(input,1),-1),-1),8))"
  },
  {
    "input": "input : list = [-1, -2, -4, -2, -5, -4]\noutput : list = [2, 1, 1, -1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(reverse([-1, -2, -4, -2, -5, -4]),-2),5)))",
    "io_inp": [
      -1,
      -2,
      -4,
      -2,
      -5,
      -4
    ],
    "io_out": [
      2,
      1,
      1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(reverse(input),-2),5)))"
  },
  {
    "input": "input : list = [2, -3, 5, 4, 4, 4]\noutput : list = [4, 4, 4, 5, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 5, 4, 4, 4])",
    "io_inp": [
      2,
      -3,
      5,
      4,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -1, 3, 4, -5, 1]\noutput : list = [-7, -3, 1, 2, -7, -1]",
    "output": "generated_output : list = sub_n([-5, -1, 3, 4, -5, 1],2)",
    "io_inp": [
      -5,
      -1,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      -7,
      -3,
      1,
      2,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -5, 3, 4]\noutput : list = [4, 3, 3, -5]",
    "output": "generated_output : list = sort_des([3, -5, 3, 4])",
    "io_inp": [
      3,
      -5,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [12, -9]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(mul_n([3, -4],-3)))),42)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      12,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(mul_n(input,-3)))),42)"
  },
  {
    "input": "input : list = [0, 0, 4, 3, -3, 1]\noutput : list = [-7, -3, -1]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(drop([0, 0, 4, 3, -3, 1],3)),-4)),12)",
    "io_inp": [
      0,
      0,
      4,
      3,
      -3,
      1
    ],
    "io_out": [
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(drop(input,3)),-4)),12)"
  },
  {
    "input": "input : list = [5, 3, -2, -5, -1]\noutput : list = [2, 0, -5, -8, -4]",
    "output": "generated_output : list = sub_n(mul_n([5, 3, -2, -5, -1],1),3)",
    "io_inp": [
      5,
      3,
      -2,
      -5,
      -1
    ],
    "io_out": [
      2,
      0,
      -5,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),3)"
  },
  {
    "input": "input : list = [3, 4, -5, 1, 0]\noutput : list = [-5, 0, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_des(sort_asc([3, 4, -5, 1, 0])))))",
    "io_inp": [
      3,
      4,
      -5,
      1,
      0
    ],
    "io_out": [
      -5,
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, 5, -4, 0, 5]\noutput : list = [4, 0, 0, -5, -5]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(sort_asc([0, 5, -4, 0, 5]),-1),13)))",
    "io_inp": [
      0,
      5,
      -4,
      0,
      5
    ],
    "io_out": [
      4,
      0,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(sort_asc(input),-1),13)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [23, -13]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_asc([5, -4])),4)),3)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      23,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_asc(input)),4)),3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(sort_asc([1, 4]),9)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),9)"
  },
  {
    "input": "input : list = [-5, 5, 4, 4, -5]\noutput : list = [-40, -32, -32, 40, 40]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(sort_asc([-5, 5, 4, 4, -5]),17),2)),-4)",
    "io_inp": [
      -5,
      5,
      4,
      4,
      -5
    ],
    "io_out": [
      -40,
      -32,
      -32,
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(sort_asc(input),17),2)),-4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des([0, 4])",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse([-2, 0])),2)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),2)"
  },
  {
    "input": "input : list = [0, 0, 3, 2, 3, -1]\noutput : list = [-1, 0, 0, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([0, 0, 3, 2, 3, -1])",
    "io_inp": [
      0,
      0,
      3,
      2,
      3,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sub_n([2, 0],5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 4, 0, 4, 4]\noutput : list = [0, 8, 8, 8, 10]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(sort_asc([5, 4, 0, 4, 4]),2))),18)",
    "io_inp": [
      5,
      4,
      0,
      4,
      4
    ],
    "io_out": [
      0,
      8,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(sort_asc(input),2))),18)"
  },
  {
    "input": "input : list = [3, -2, 3, -1, 4]\noutput : list = [8, 4, -12, -12, -16]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(reverse([3, -2, 3, -1, 4]),13)),-4))",
    "io_inp": [
      3,
      -2,
      3,
      -1,
      4
    ],
    "io_out": [
      8,
      4,
      -12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(reverse(input),13)),-4))"
  },
  {
    "input": "input : list = [0, 5, 2, 4, 0]\noutput : list = [12, -8, 2, -13, 12]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(add_n([0, 5, 2, 4, 0],-3),1)),-5),3)",
    "io_inp": [
      0,
      5,
      2,
      4,
      0
    ],
    "io_out": [
      12,
      -8,
      2,
      -13,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(add_n(input,-3),1)),-5),3)"
  },
  {
    "input": "input : list = [3, -1, 3, -2, -1, 0]\noutput : list = [3, -1, 3, -2]",
    "output": "generated_output : list = take([3, -1, 3, -2, -1, 0],4)",
    "io_inp": [
      3,
      -1,
      3,
      -2,
      -1,
      0
    ],
    "io_out": [
      3,
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [3, -3, -1, -2, 0, 2]\noutput : list = [-12, -11, -10, -9, -7, -6]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n([3, -3, -1, -2, 0, 2],3)),12),4),-2)",
    "io_inp": [
      3,
      -3,
      -1,
      -2,
      0,
      2
    ],
    "io_out": [
      -12,
      -11,
      -10,
      -9,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n(input,3)),12),4),-2)"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [-1, 4, 4]",
    "output": "generated_output : list = take(sort_asc([-1, 4, 4]),11)",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [2, -3]",
    "output": "generated_output : list = sub_n([0, -5],-2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 4, -1, 3, 0]\noutput : list = [-16, -13, -13, -4, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sub_n([0, 4, -1, 3, 0],4))),3),-1)",
    "io_inp": [
      0,
      4,
      -1,
      3,
      0
    ],
    "io_out": [
      -16,
      -13,
      -13,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sub_n(input,4))),3),-1)"
  },
  {
    "input": "input : list = [2, -5, -1, -5]\noutput : list = [0, 3, 7, 7]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(sub_n([2, -5, -1, -5],2)),-1)))",
    "io_inp": [
      2,
      -5,
      -1,
      -5
    ],
    "io_out": [
      0,
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(sub_n(input,2)),-1)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-7, -13]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(sub_n([-5, 1],3)),-5)),23)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -7,
      -13
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(sub_n(input,3)),-5)),23)"
  },
  {
    "input": "input : list = [5, -5, 0, 5, -2]\noutput : list = [-25, 25, 0, -25, 10]",
    "output": "generated_output : list = mul_n([5, -5, 0, 5, -2],-5)",
    "io_inp": [
      5,
      -5,
      0,
      5,
      -2
    ],
    "io_out": [
      -25,
      25,
      0,
      -25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 4, -4, -3, -4, -1]\noutput : list = [-14]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(sub_n([-4, 4, -4, -3, -4, -1],3),2),1)))",
    "io_inp": [
      -4,
      4,
      -4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(sub_n(input,3),2),1)))"
  },
  {
    "input": "input : list = [5, 4, 3, 4, 5, 5]\noutput : list = [9, 10, 10, 11, 11, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(add_n([5, 4, 3, 4, 5, 5],3),-4),4),-3))",
    "io_inp": [
      5,
      4,
      3,
      4,
      5,
      5
    ],
    "io_out": [
      9,
      10,
      10,
      11,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(add_n(input,3),-4),4),-3))"
  },
  {
    "input": "input : list = [-4, -2, 2, 1, -1]\noutput : list = [4, 3, 1, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(drop([-4, -2, 2, 1, -1],1),14))),-2)",
    "io_inp": [
      -4,
      -2,
      2,
      1,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(drop(input,1),14))),-2)"
  },
  {
    "input": "input : list = [-4, -3, 0, -1, -2, -1]\noutput : list = [8, 7, 7, 6, 5, 4]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(sub_n([-4, -3, 0, -1, -2, -1],-3)),5)))",
    "io_inp": [
      -4,
      -3,
      0,
      -1,
      -2,
      -1
    ],
    "io_out": [
      8,
      7,
      7,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(sub_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [-3, -5, 3, 4, 3]\noutput : list = [-9, -7, -1, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sub_n([-3, -5, 3, 4, 3],4)))",
    "io_inp": [
      -3,
      -5,
      3,
      4,
      3
    ],
    "io_out": [
      -9,
      -7,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,4)))"
  },
  {
    "input": "input : list = [3, -5, 3, -4, -4]\noutput : list = [-4, -4, 3, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 3, -4, -4])",
    "io_inp": [
      3,
      -5,
      3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, 5, 2, -4]\noutput : list = [5, 2, 2, -1, -4]",
    "output": "generated_output : list = take(take(sort_des(reverse(reverse([2, -1, 5, 2, -4]))),28),24)",
    "io_inp": [
      2,
      -1,
      5,
      2,
      -4
    ],
    "io_out": [
      5,
      2,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(reverse(input))),28),24)"
  },
  {
    "input": "input : list = [1, 1, 4, 3, -2]\noutput : list = [-2, 3, 4, 1, 1]",
    "output": "generated_output : list = reverse([1, 1, 4, 3, -2])",
    "io_inp": [
      1,
      1,
      4,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [20, 8]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des([0, 3]),-5)),-4))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      20,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des(input),-5)),-4))"
  },
  {
    "input": "input : list = [4, -3, -3, -3, 4, 0]\noutput : list = [8, 1, 1, 1, 8, 4]",
    "output": "generated_output : list = add_n([4, -3, -3, -3, 4, 0],4)",
    "io_inp": [
      4,
      -3,
      -3,
      -3,
      4,
      0
    ],
    "io_out": [
      8,
      1,
      1,
      1,
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [4, 0, 0]",
    "output": "generated_output : list = take(take(take(take(sort_des([0, 0, 4]),4),23),5),7)",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(take(sort_des(input),4),23),5),7)"
  },
  {
    "input": "input : list = [-3, 3, -3, -1, 2]\noutput : list = [3, 2, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(drop([-3, 3, -3, -1, 2],1)))))",
    "io_inp": [
      -3,
      3,
      -3,
      -1,
      2
    ],
    "io_out": [
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = reverse([3, 2])",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [-7, -1, 0]",
    "output": "generated_output : list = add_n([-2, 4, 5],-5)",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      -7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, -2, 3, 5, -2, -1]\noutput : list = [-1, -8, -3, -1, -8, -7]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(reverse([5, -2, 3, 5, -2, -1]),17)),3),-3)",
    "io_inp": [
      5,
      -2,
      3,
      5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -8,
      -3,
      -1,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(reverse(input),17)),3),-3)"
  },
  {
    "input": "input : list = [-2, -1, -3, 3]\noutput : list = [-24, -16, -14, -12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(sub_n([-2, -1, -3, 3],-4),-5)),-2))",
    "io_inp": [
      -2,
      -1,
      -3,
      3
    ],
    "io_out": [
      -24,
      -16,
      -14,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(sub_n(input,-4),-5)),-2))"
  },
  {
    "input": "input : list = [-3, 2, 2, 4, -4]\noutput : list = [33, 25, 25, 5, 1]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(sort_des([-3, 2, 2, 4, -4]),4),4),1),-2)",
    "io_inp": [
      -3,
      2,
      2,
      4,
      -4
    ],
    "io_out": [
      33,
      25,
      25,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(sort_des(input),4),4),1),-2)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(sort_asc(sub_n([1, 3],1)),2)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,1)),2)"
  },
  {
    "input": "input : list = [2, -1, 2, 5, 5, -5]\noutput : list = [-5, -1, 2, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(take(take(reverse([2, -1, 2, 5, 5, -5]),5),32)))",
    "io_inp": [
      2,
      -1,
      2,
      5,
      5,
      -5
    ],
    "io_out": [
      -5,
      -1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(reverse(input),5),32)))"
  },
  {
    "input": "input : list = [-5, 0, -4, 5, 4]\noutput : list = [4, 5, -4, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, -4, 5, 4])",
    "io_inp": [
      -5,
      0,
      -4,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      -4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sort_des([3, 3]),5),20),-1),-4)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sort_des(input),5),20),-1),-4)"
  },
  {
    "input": "input : list = [-4, -1, -4, 0, -3, 5]\noutput : list = [4, 1, 4]",
    "output": "generated_output : list = reverse(reverse(mul_n(take([-4, -1, -4, 0, -3, 5],3),-1)))",
    "io_inp": [
      -4,
      -1,
      -4,
      0,
      -3,
      5
    ],
    "io_out": [
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(input,3),-1)))"
  },
  {
    "input": "input : list = [0, -5, -2, 0, -4]\noutput : list = [1, 1, -9, -19, -24]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(reverse([0, -5, -2, 0, -4]),5))),1)",
    "io_inp": [
      0,
      -5,
      -2,
      0,
      -4
    ],
    "io_out": [
      1,
      1,
      -9,
      -19,
      -24
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(reverse(input),5))),1)"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse(reverse(drop([-2, -5, -3],1)))",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [1]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(sub_n([0, -2, 3],1)),3),5),1)",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(sub_n(input,1)),3),5),1)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-6, -6]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(sort_asc([1, 1]),5),1),31),-1)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(sort_asc(input),5),1),31),-1)"
  },
  {
    "input": "input : list = [5, 0, 5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = take([5, 0, 5, 0],2)",
    "io_inp": [
      5,
      0,
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -5, 3, -2, 4]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(take([-4, -5, 3, -2, 4],2)),3),-5),9)",
    "io_inp": [
      -4,
      -5,
      3,
      -2,
      4
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(take(input,2)),3),-5),9)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [6, -2]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(drop([2, -3, -1],1),-4),5),1),-5)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(drop(input,1),-4),5),1),-5)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [21, 24]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_asc([-4, -5])),-3),5),4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      21,
      24
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_asc(input)),-3),5),4)"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [-5, -1, -10]",
    "output": "generated_output : list = sub_n([0, 4, -5],5)",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [-9, -9]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(drop([-1, 0, 0],1),1),-3),-4),3)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(drop(input,1),1),-3),-4),3)"
  },
  {
    "input": "input : list = [5, 3, 0, 5]\noutput : list = [-40, -40, -32, -20]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sort_asc([5, 3, 0, 5]),16)),-5),-4)",
    "io_inp": [
      5,
      3,
      0,
      5
    ],
    "io_out": [
      -40,
      -40,
      -32,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sort_asc(input),16)),-5),-4)"
  },
  {
    "input": "input : list = [-5, 5, 2]\noutput : list = [-25, 25, 10]",
    "output": "generated_output : list = mul_n([-5, 5, 2],5)",
    "io_inp": [
      -5,
      5,
      2
    ],
    "io_out": [
      -25,
      25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, -5, 3, 3, -2, -1]\noutput : list = [10, 4, 2, 2]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(sort_asc([-1, -5, 3, 3, -2, -1]),4),-2)))",
    "io_inp": [
      -1,
      -5,
      3,
      3,
      -2,
      -1
    ],
    "io_out": [
      10,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(sort_asc(input),4),-2)))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [32, -4]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sort_des([-5, 4]),-1),4)),-4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      32,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sort_des(input),-1),4)),-4)"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [-9, -5, -10]",
    "output": "generated_output : list = sub_n([-4, 0, -5],5)",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      -9,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, -1, -5]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(add_n(drop([-5, -1, -5],1),5),1)))",
    "io_inp": [
      -5,
      -1,
      -5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(add_n(drop(input,1),5),1)))"
  },
  {
    "input": "input : list = [-1, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = drop([-1, 2, 0],1)",
    "io_inp": [
      -1,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -4, -3, -3]\noutput : list = [1, -3, -2, -2]",
    "output": "generated_output : list = add_n([0, -4, -3, -3],1)",
    "io_inp": [
      0,
      -4,
      -3,
      -3
    ],
    "io_out": [
      1,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-9, 0]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(sort_des([-4, 5])),-5)))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(sort_des(input)),-5)))"
  },
  {
    "input": "input : list = [4, -5, -5, 0]\noutput : list = [-6, -6, -1, 3]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n([4, -5, -5, 0],-5),-4),20))",
    "io_inp": [
      4,
      -5,
      -5,
      0
    ],
    "io_out": [
      -6,
      -6,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(input,-5),-4),20))"
  },
  {
    "input": "input : list = [-4, 2, 5, -3]\noutput : list = [-4, -3, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, 2, 5, -3]))",
    "io_inp": [
      -4,
      2,
      5,
      -3
    ],
    "io_out": [
      -4,
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-8, -16]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_asc([2, 4])),4)),-1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_asc(input)),4)),-1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [0, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(add_n([-5, -1],5),10))))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(add_n(input,5),10))))"
  },
  {
    "input": "input : list = [5, 4, 1, -4, -3, -4]\noutput : list = [-21, -21, -17, -1, 11, 15]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des([5, 4, 1, -4, -3, -4]),4)),-5))",
    "io_inp": [
      5,
      4,
      1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -21,
      -21,
      -17,
      -1,
      11,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des(input),4)),-5))"
  },
  {
    "input": "input : list = [2, 1, -2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = drop([2, 1, -2, -5],2)",
    "io_inp": [
      2,
      1,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 5, -1, 1]\noutput : list = [7, 3, 1, -3]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(add_n([-5, 5, -1, 1],2))),3),-3)",
    "io_inp": [
      -5,
      5,
      -1,
      1
    ],
    "io_out": [
      7,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(add_n(input,2))),3),-3)"
  },
  {
    "input": "input : list = [-3, -5, 0, 3, -5]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(sub_n([-3, -5, 0, 3, -5],4)),5)),3)",
    "io_inp": [
      -3,
      -5,
      0,
      3,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(sub_n(input,4)),5)),3)"
  },
  {
    "input": "input : list = [4, -5, -1, -3]\noutput : list = [6, 1, -1, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(add_n([4, -5, -1, -3],-3),15)),5))",
    "io_inp": [
      4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      6,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(add_n(input,-3),15)),5))"
  },
  {
    "input": "input : list = [-4, -5, 4, 4, 2]\noutput : list = [-10, -9, -3, -1, -1]",
    "output": "generated_output : list = sub_n(sort_asc([-4, -5, 4, 4, 2]),5)",
    "io_inp": [
      -4,
      -5,
      4,
      4,
      2
    ],
    "io_out": [
      -10,
      -9,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [6, 12]",
    "output": "generated_output : list = mul_n(reverse([-4, -2]),-3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [-20]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(take([4, -2, -5],1),4)),-3),-4)",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(take(input,1),4)),-3),-4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [10, 5]",
    "output": "generated_output : list = reverse(add_n([0, 5],5))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [3, 5, -4]\noutput : list = [4, 0, 18]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(add_n([3, 5, -4],-5),-1),-1),-2),16)",
    "io_inp": [
      3,
      5,
      -4
    ],
    "io_out": [
      4,
      0,
      18
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(add_n(input,-5),-1),-1),-2),16)"
  },
  {
    "input": "input : list = [2, -4, 5, 0, -5, 1]\noutput : list = [20, 8, 4, 0, -16, -20]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_des([2, -4, 5, 0, -5, 1])),-4)),-1)",
    "io_inp": [
      2,
      -4,
      5,
      0,
      -5,
      1
    ],
    "io_out": [
      20,
      8,
      4,
      0,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_des(input)),-4)),-1)"
  },
  {
    "input": "input : list = [-3, 3, 5, 2, 1, 1]\noutput : list = [8, 6, 5, 4, 4, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(reverse([-3, 3, 5, 2, 1, 1]),-3))))",
    "io_inp": [
      -3,
      3,
      5,
      2,
      1,
      1
    ],
    "io_out": [
      8,
      6,
      5,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [4, 0, 2, 4, -2, 4]\noutput : list = [-17, -17, -11, -5]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(take([4, 0, 2, 4, -2, 4],4),-3),5),41))",
    "io_inp": [
      4,
      0,
      2,
      4,
      -2,
      4
    ],
    "io_out": [
      -17,
      -17,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(take(input,4),-3),5),41))"
  },
  {
    "input": "input : list = [-3, 2, -1, -1, 0, 3]\noutput : list = [-1, 1, 1, 2, 4, 5]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(reverse([-3, 2, -1, -1, 0, 3]),-2)),-2),2)",
    "io_inp": [
      -3,
      2,
      -1,
      -1,
      0,
      3
    ],
    "io_out": [
      -1,
      1,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(reverse(input),-2)),-2),2)"
  },
  {
    "input": "input : list = [3, -2, -4, 4]\noutput : list = [3, -2, -4, 4]",
    "output": "generated_output : list = add_n(add_n([3, -2, -4, 4],-1),1)",
    "io_inp": [
      3,
      -2,
      -4,
      4
    ],
    "io_out": [
      3,
      -2,
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n([0, 0],-4),3),3),-1))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n(input,-4),3),3),-1))"
  },
  {
    "input": "input : list = [2, 4, 2, 4]\noutput : list = [4, 4, 2, 2]",
    "output": "generated_output : list = sort_des([2, 4, 2, 4])",
    "io_inp": [
      2,
      4,
      2,
      4
    ],
    "io_out": [
      4,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2, 0, -2, 2]\noutput : list = [12, 17, 7, -3, 17]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(add_n([1, 2, 0, -2, 2],2),5),-4),15),-1)",
    "io_inp": [
      1,
      2,
      0,
      -2,
      2
    ],
    "io_out": [
      12,
      17,
      7,
      -3,
      17
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(add_n(input,2),5),-4),15),-1)"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [10, 7, 7]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc([-3, 0, -3]),-5)),5)",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      10,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(input),-5)),5)"
  },
  {
    "input": "input : list = [3, -1, -3, 0]\noutput : list = [-3, -6, -4, 0]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(add_n([3, -1, -3, 0],-4),2),-3)),49)",
    "io_inp": [
      3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -3,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(add_n(input,-4),2),-3)),49)"
  },
  {
    "input": "input : list = [2, 2, 5, 1, -2, -1]\noutput : list = [-11, -5, -5, -3, 1, 3]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([2, 2, 5, 1, -2, -1],-2)),-1)",
    "io_inp": [
      2,
      2,
      5,
      1,
      -2,
      -1
    ],
    "io_out": [
      -11,
      -5,
      -5,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,-2)),-1)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(drop([-3, 0, -5],1))",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = sort_des([-1, 0, 1])",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, -5, 1, 5, -1]\noutput : list = [0, 0, -4, -6, -10, -10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sub_n([-5, 5, -5, 1, 5, -1],-5)))),-1)",
    "io_inp": [
      -5,
      5,
      -5,
      1,
      5,
      -1
    ],
    "io_out": [
      0,
      0,
      -4,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sub_n(input,-5)))),-1)"
  },
  {
    "input": "input : list = [-3, 1, 3, 0, -4]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(take(mul_n([-3, 1, 3, 0, -4],2),1),4)",
    "io_inp": [
      -3,
      1,
      3,
      0,
      -4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,2),1),4)"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(take([5, 0, -3],1),-4),-2),-1),5)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(take(input,1),-4),-2),-1),5)"
  },
  {
    "input": "input : list = [-5, 1, -3, -2, 5, -3]\noutput : list = [19, 3, -9, -13, -13, -21]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_asc([-5, 1, -3, -2, 5, -3]),-2)),-2),1)",
    "io_inp": [
      -5,
      1,
      -3,
      -2,
      5,
      -3
    ],
    "io_out": [
      19,
      3,
      -9,
      -13,
      -13,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_asc(input),-2)),-2),1)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [17, 23]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(reverse([-3, -1]),-3),-1),-3),-2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      17,
      23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(reverse(input),-3),-1),-3),-2)"
  },
  {
    "input": "input : list = [-4, -4, -1, -5, -4]\noutput : list = [-5, -4, -4, -4, -1]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -4, -1, -5, -4]))",
    "io_inp": [
      -4,
      -4,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [16, 32]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n([3, 5],-4),4),-2)))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      16,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n(input,-4),4),-2)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-30, 6]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(mul_n([5, -4],-4),-4),-5),4),-5)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -30,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(mul_n(input,-4),-4),-5),4),-5)"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, -4])",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1, 3, 0, 3]\noutput : list = [-7, -8, -6, -9, -6]",
    "output": "generated_output : list = sub_n(add_n([2, 1, 3, 0, 3],-5),4)",
    "io_inp": [
      2,
      1,
      3,
      0,
      3
    ],
    "io_out": [
      -7,
      -8,
      -6,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),4)"
  },
  {
    "input": "input : list = [-5, 3, 2, -4, 0, -2]\noutput : list = [-22, -18, -10, -2, 6, 10]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(mul_n([-5, 3, 2, -4, 0, -2],4),-3),1)),5)",
    "io_inp": [
      -5,
      3,
      2,
      -4,
      0,
      -2
    ],
    "io_out": [
      -22,
      -18,
      -10,
      -2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(mul_n(input,4),-3),1)),5)"
  },
  {
    "input": "input : list = [3, 0, -4, -1]\noutput : list = [-2, 1, 2, 5]",
    "output": "generated_output : list = reverse(sort_des(sub_n([3, 0, -4, -1],-2)))",
    "io_inp": [
      3,
      0,
      -4,
      -1
    ],
    "io_out": [
      -2,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(take([-3, -2, 1],1),5))),17)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(take(input,1),5))),17)"
  },
  {
    "input": "input : list = [-3, 1, -5, -3, 0]\noutput : list = [-9, -7, -7, -4, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n([-3, 1, -5, -3, 0],4),1)),1),2)",
    "io_inp": [
      -3,
      1,
      -5,
      -3,
      0
    ],
    "io_out": [
      -9,
      -7,
      -7,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n(input,4),1)),1),2)"
  },
  {
    "input": "input : list = [1, 2, 5, 3, 0, -1]\noutput : list = [-10, -6, -4, 0, 2]",
    "output": "generated_output : list = mul_n(sort_des(drop([1, 2, 5, 3, 0, -1],1)),-2)",
    "io_inp": [
      1,
      2,
      5,
      3,
      0,
      -1
    ],
    "io_out": [
      -10,
      -6,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [0, -4, 0, -5, 1, 3]\noutput : list = [2, 1, -3, -3, -4, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n([0, -4, 0, -5, 1, 3],-2),-1)),-1)",
    "io_inp": [
      0,
      -4,
      0,
      -5,
      1,
      3
    ],
    "io_out": [
      2,
      1,
      -3,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(input,-2),-1)),-1)"
  },
  {
    "input": "input : list = [4, -1, -1, 3, 1, 5]\noutput : list = [20, 4, 12, -4, -4, 16]",
    "output": "generated_output : list = reverse(take(take(take(mul_n([4, -1, -1, 3, 1, 5],4),27),21),19))",
    "io_inp": [
      4,
      -1,
      -1,
      3,
      1,
      5
    ],
    "io_out": [
      20,
      4,
      12,
      -4,
      -4,
      16
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(mul_n(input,4),27),21),19))"
  },
  {
    "input": "input : list = [-2, -4, -3, 5]\noutput : list = [5, -3, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, -3, 5])",
    "io_inp": [
      -2,
      -4,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, -3, 2, 2]\noutput : list = [-8, -4, -3, -3]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(drop([3, 1, -3, 2, 2],1),-1),8),-4))",
    "io_inp": [
      3,
      1,
      -3,
      2,
      2
    ],
    "io_out": [
      -8,
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(drop(input,1),-1),8),-4))"
  },
  {
    "input": "input : list = [-4, -4, 4, 3, 5]\noutput : list = [-8, -10]",
    "output": "generated_output : list = take(drop(sort_des(mul_n(reverse([-4, -4, 4, 3, 5]),-2)),3),44)",
    "io_inp": [
      -4,
      -4,
      4,
      3,
      5
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(drop(sort_des(mul_n(reverse(input),-2)),3),44)"
  },
  {
    "input": "input : list = [1, 1, 2, -1, -3]\noutput : list = [1, 0, 0, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_asc([1, 1, 2, -1, -3]),1))),2)",
    "io_inp": [
      1,
      1,
      2,
      -1,
      -3
    ],
    "io_out": [
      1,
      0,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_asc(input),1))),2)"
  },
  {
    "input": "input : list = [3, 1, 3, 3, -5, 4]\noutput : list = [-6, -4, -6, -6, 2, -7]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(mul_n([3, 1, 3, 3, -5, 4],1),-1),4),-1),7)",
    "io_inp": [
      3,
      1,
      3,
      3,
      -5,
      4
    ],
    "io_out": [
      -6,
      -4,
      -6,
      -6,
      2,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(mul_n(input,1),-1),4),-1),7)"
  },
  {
    "input": "input : list = [4, 2, -2, -1, 2]\noutput : list = [2, 0, -4, -3, 0]",
    "output": "generated_output : list = add_n([4, 2, -2, -1, 2],-2)",
    "io_inp": [
      4,
      2,
      -2,
      -1,
      2
    ],
    "io_out": [
      2,
      0,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -1, 2, -2]\noutput : list = [28, 16, 12, 0]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(sort_asc([-5, -1, 2, -2])),-2)),-4)",
    "io_inp": [
      -5,
      -1,
      2,
      -2
    ],
    "io_out": [
      28,
      16,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(sort_asc(input)),-2)),-4)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n([4, 5],-1))),2))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n(input,-1))),2))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n([3, 0],-2),1),-2),-1))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n(input,-2),1),-2),-1))"
  },
  {
    "input": "input : list = [-2, 1, 2, -1, 3]\noutput : list = [0, 1, 3, 4, 5]",
    "output": "generated_output : list = take(sub_n(reverse(take(sort_des([-2, 1, 2, -1, 3]),24)),-2),48)",
    "io_inp": [
      -2,
      1,
      2,
      -1,
      3
    ],
    "io_out": [
      0,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(sort_des(input),24)),-2),48)"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [16, 8, -4]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(reverse([1, -2, -4]),6)),9),-4)",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      16,
      8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(reverse(input),6)),9),-4)"
  },
  {
    "input": "input : list = [-1, 0, 2, -2, 1, -2]\noutput : list = [-6, -6, -5, -4, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sort_asc([-1, 0, 2, -2, 1, -2]),6),14)),-4)",
    "io_inp": [
      -1,
      0,
      2,
      -2,
      1,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sort_asc(input),6),14)),-4)"
  },
  {
    "input": "input : list = [2, 5, -3, -3, 4, 4]\noutput : list = [45, 72, 0, 0, 63, 63]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(add_n([2, 5, -3, -3, 4, 4],3),-3),2),-2),-3)",
    "io_inp": [
      2,
      5,
      -3,
      -3,
      4,
      4
    ],
    "io_out": [
      45,
      72,
      0,
      0,
      63,
      63
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(add_n(input,3),-3),2),-2),-3)"
  },
  {
    "input": "input : list = [4, 1, 4, 4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = drop([4, 1, 4, 4, -2],3)",
    "io_inp": [
      4,
      1,
      4,
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, 3, -2, 5, -3, -4]\noutput : list = [7, 0, -1, -2]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(drop([-3, 3, -2, 5, -3, -4],2)),-2),13))",
    "io_inp": [
      -3,
      3,
      -2,
      5,
      -3,
      -4
    ],
    "io_out": [
      7,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(drop(input,2)),-2),13))"
  },
  {
    "input": "input : list = [4, 0, 1, -2, -1]\noutput : list = [8, 4, 0, -4, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(reverse([4, 0, 1, -2, -1]),-4)),1))",
    "io_inp": [
      4,
      0,
      1,
      -2,
      -1
    ],
    "io_out": [
      8,
      4,
      0,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(reverse(input),-4)),1))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [0, 35]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(sort_des([4, -3]),3)),5),38)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      0,
      35
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(sort_des(input),3)),5),38)"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [-25, -15, -15]",
    "output": "generated_output : list = sort_asc(mul_n([-5, -3, -3],5))",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      -25,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([-5, -2])))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = take(sort_des(reverse([-2, -3, -1])),27)",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),27)"
  },
  {
    "input": "input : list = [-4, -5, -1]\noutput : list = [0, 32, 24]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(add_n([-4, -5, -1],1),-2)),28),4)",
    "io_inp": [
      -4,
      -5,
      -1
    ],
    "io_out": [
      0,
      32,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(add_n(input,1),-2)),28),4)"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [7, 1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(drop([4, 3, -3],1)))),-4)",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(drop(input,1)))),-4)"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(sub_n([-1, -2, 0],-3),1))))",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(sub_n(input,-3),1))))"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [-5, -3, 1]",
    "output": "generated_output : list = add_n(sort_asc([5, 1, -1]),-4)",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sort_asc(take(add_n(take(drop([2, -5, 3],1),15),3),21))",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(drop(input,1),15),3),21))"
  },
  {
    "input": "input : list = [4, -1, -1, -4]\noutput : list = [11, -4, -4, -13]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(reverse([4, -1, -1, -4])),3),-1))",
    "io_inp": [
      4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      11,
      -4,
      -4,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(reverse(input)),3),-1))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sort_des([0, 0]))),2),5)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sort_des(input))),2),5)"
  },
  {
    "input": "input : list = [4, 4, -4, 3, -2, -5]\noutput : list = [4, -4, 3, -2, -5]",
    "output": "generated_output : list = drop([4, 4, -4, 3, -2, -5],1)",
    "io_inp": [
      4,
      4,
      -4,
      3,
      -2,
      -5
    ],
    "io_out": [
      4,
      -4,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 1, -4, 1, 1]\noutput : list = [-3, 7, 7, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(drop([-3, 1, -4, 1, 1],1),2)),-5))",
    "io_inp": [
      -3,
      1,
      -4,
      1,
      1
    ],
    "io_out": [
      -3,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(drop(input,1),2)),-5))"
  },
  {
    "input": "input : list = [-2, 2, -1, -3]\noutput : list = [1, 2, 3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-2, 2, -1, -3]),-4))",
    "io_inp": [
      -2,
      2,
      -1,
      -3
    ],
    "io_out": [
      1,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [-5, -1, 3, 2, -5]\noutput : list = [-6, -2, 2, 1, -6]",
    "output": "generated_output : list = add_n([-5, -1, 3, 2, -5],-1)",
    "io_inp": [
      -5,
      -1,
      3,
      2,
      -5
    ],
    "io_out": [
      -6,
      -2,
      2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [7, -1]",
    "output": "generated_output : list = take(reverse(reverse(add_n(mul_n([5, 1],2),-3))),9)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(mul_n(input,2),-3))),9)"
  },
  {
    "input": "input : list = [-5, -2, -4]\noutput : list = [24, 14, 29]",
    "output": "generated_output : list = sub_n(take(take(mul_n(reverse([-5, -2, -4]),-5),15),12),-4)",
    "io_inp": [
      -5,
      -2,
      -4
    ],
    "io_out": [
      24,
      14,
      29
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(reverse(input),-5),15),12),-4)"
  },
  {
    "input": "input : list = [-1, -3, -2, 0]\noutput : list = [-8, -7, -6, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(sort_des([-1, -3, -2, 0]),21),5)))",
    "io_inp": [
      -1,
      -3,
      -2,
      0
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(sort_des(input),21),5)))"
  },
  {
    "input": "input : list = [4, -3, 3, -1]\noutput : list = [2, -5]",
    "output": "generated_output : list = take(take(take(sub_n(take([4, -3, 3, -1],2),2),2),14),18)",
    "io_inp": [
      4,
      -3,
      3,
      -1
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(take(input,2),2),2),14),18)"
  },
  {
    "input": "input : list = [2, -1, 0, -3]\noutput : list = [0, 15]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(drop([2, -1, 0, -3],2),-5),-2),-2),46)",
    "io_inp": [
      2,
      -1,
      0,
      -3
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(drop(input,2),-5),-2),-2),46)"
  },
  {
    "input": "input : list = [-4, 1, 3, 2, 0]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(drop([-4, 1, 3, 2, 0],2),-1),5)),-4)",
    "io_inp": [
      -4,
      1,
      3,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(drop(input,2),-1),5)),-4)"
  },
  {
    "input": "input : list = [1, 0, -4, -2, 1, 0]\noutput : list = [-4, -5, -9, -7, -4, -5]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(sub_n([1, 0, -4, -2, 1, 0],3),4),2),4),22)",
    "io_inp": [
      1,
      0,
      -4,
      -2,
      1,
      0
    ],
    "io_out": [
      -4,
      -5,
      -9,
      -7,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(sub_n(input,3),4),2),4),22)"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [11, 5, -7]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(sort_des([-1, 5, 3]),3),1),3),-1)",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      11,
      5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(sort_des(input),3),1),3),-1)"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [9, 6, 0]",
    "output": "generated_output : list = sub_n(take(sort_des([-5, 1, 4]),8),-5)",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      9,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),8),-5)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(reverse([3, 4]),2)),5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(reverse(input),2)),5))"
  },
  {
    "input": "input : list = [-5, 2, -1, 1]\noutput : list = [8, 4, 10, -4]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(sub_n([-5, 2, -1, 1],-2)),19),1),2)",
    "io_inp": [
      -5,
      2,
      -1,
      1
    ],
    "io_out": [
      8,
      4,
      10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(sub_n(input,-2)),19),1),2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [36, -6]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n([-5, 2],-1),3)),18),-2)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      36,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n(input,-1),3)),18),-2)"
  },
  {
    "input": "input : list = [-2, 3, -3, -1, -5]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([-2, 3, -3, -1, -5],3),15),-1)))",
    "io_inp": [
      -2,
      3,
      -3,
      -1,
      -5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,3),15),-1)))"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [-22, -14, 2]",
    "output": "generated_output : list = add_n(mul_n([5, 3, -1],-4),-2)",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      -22,
      -14,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),-2)"
  },
  {
    "input": "input : list = [-2, 0, 0, 1, -5]\noutput : list = [-4, -1, 1, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(sub_n([-2, 0, 0, 1, -5],-3)),4)),2)",
    "io_inp": [
      -2,
      0,
      0,
      1,
      -5
    ],
    "io_out": [
      -4,
      -1,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(sub_n(input,-3)),4)),2)"
  },
  {
    "input": "input : list = [-5, 3, 0, 4, -3]\noutput : list = [9, 8, 5, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_des([-5, 3, 0, 4, -3])))),-5)",
    "io_inp": [
      -5,
      3,
      0,
      4,
      -3
    ],
    "io_out": [
      9,
      8,
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [-4, -1, 2, 0, 4, -4]\noutput : list = [7, 5, 3, -1]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(drop([-4, -1, 2, 0, 4, -4],2))),-2),5)",
    "io_inp": [
      -4,
      -1,
      2,
      0,
      4,
      -4
    ],
    "io_out": [
      7,
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(drop(input,2))),-2),5)"
  },
  {
    "input": "input : list = [3, 4, 1, -5, 3]\noutput : list = [-5, -3, 1, 13]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(drop([3, 4, 1, -5, 3],1),19)),-2),3)",
    "io_inp": [
      3,
      4,
      1,
      -5,
      3
    ],
    "io_out": [
      -5,
      -3,
      1,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(drop(input,1),19)),-2),3)"
  },
  {
    "input": "input : list = [-1, 1, 0]\noutput : list = [6, 5, 4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(sort_des([-1, 1, 0])),1),-2),-2)",
    "io_inp": [
      -1,
      1,
      0
    ],
    "io_out": [
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(sort_des(input)),1),-2),-2)"
  },
  {
    "input": "input : list = [4, 4, 3, 5, 2, -1]\noutput : list = [11, 11, 9, 13, 7, 1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse([4, 4, 3, 5, 2, -1]),2)),-2),-1)",
    "io_inp": [
      4,
      4,
      3,
      5,
      2,
      -1
    ],
    "io_out": [
      11,
      11,
      9,
      13,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse(input),2)),-2),-1)"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = sort_des(reverse([1, 1, 2]))",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, -5, -4]\noutput : list = [1, -4, -5]",
    "output": "generated_output : list = take(sort_des([1, -5, -4]),7)",
    "io_inp": [
      1,
      -5,
      -4
    ],
    "io_out": [
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(take([-2, -5, 1],1),-5),-5),-1))",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(take(input,1),-5),-5),-1))"
  },
  {
    "input": "input : list = [1, -1, 2, 0, 3, -4]\noutput : list = [-8, -5, -4, -3, -2, -1]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des(sort_asc([1, -1, 2, 0, 3, -4])),-4)),1)",
    "io_inp": [
      1,
      -1,
      2,
      0,
      3,
      -4
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(sort_asc(input)),-4)),1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([0, 3],5),-1))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,5),-1))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [50, -50]",
    "output": "generated_output : list = mul_n(mul_n([-5, 5],-5),2)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),2)"
  },
  {
    "input": "input : list = [-5, -1, 4, -1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_des(drop(reverse(drop([-5, -1, 4, -1, -2],3)),1)),2)",
    "io_inp": [
      -5,
      -1,
      4,
      -1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(reverse(drop(input,3)),1)),2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [28, -2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_asc([-1, 5]),5)),3))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      28,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_asc(input),5)),3))"
  },
  {
    "input": "input : list = [5, 2, -5, -2, -3, 5]\noutput : list = [-12, -12, 0, 16, 20, 28]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n([5, 2, -5, -2, -3, 5],2)),-4),-2))",
    "io_inp": [
      5,
      2,
      -5,
      -2,
      -3,
      5
    ],
    "io_out": [
      -12,
      -12,
      0,
      16,
      20,
      28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n(input,2)),-4),-2))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_des([2, 4]))),32),-1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_des(input))),32),-1)"
  },
  {
    "input": "input : list = [0, -1, 4, -1, 1, -3]\noutput : list = [0, 2, -8, 2, -2, 6]",
    "output": "generated_output : list = mul_n([0, -1, 4, -1, 1, -3],-2)",
    "io_inp": [
      0,
      -1,
      4,
      -1,
      1,
      -3
    ],
    "io_out": [
      0,
      2,
      -8,
      2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, -2, 3, -2]\noutput : list = [8, 8, -4, -12]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_asc([1, -2, 3, -2])),-4)))",
    "io_inp": [
      1,
      -2,
      3,
      -2
    ],
    "io_out": [
      8,
      8,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [0, 15, 6]",
    "output": "generated_output : list = mul_n(reverse(sub_n([0, -3, 2],2)),-3)",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      0,
      15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,2)),-3)"
  },
  {
    "input": "input : list = [1, -3, -5, 3, 0, 0]\noutput : list = [4, 2, 1, 1, -2, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sort_asc([1, -3, -5, 3, 0, 0]),1)),-2))",
    "io_inp": [
      1,
      -3,
      -5,
      3,
      0,
      0
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sort_asc(input),1)),-2))"
  },
  {
    "input": "input : list = [5, 0, 0, 2, -5]\noutput : list = [-75, 100, 50, 50, 175]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(add_n([5, 0, 0, 2, -5],2),-5)),11),-5)",
    "io_inp": [
      5,
      0,
      0,
      2,
      -5
    ],
    "io_out": [
      -75,
      100,
      50,
      50,
      175
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(add_n(input,2),-5)),11),-5)"
  },
  {
    "input": "input : list = [4, -4, -4, 4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = drop([4, -4, -4, 4, 3],3)",
    "io_inp": [
      4,
      -4,
      -4,
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [35, 25]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc([-3, -5]),13),-2),-5)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      35,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(input),13),-2),-5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-12, -5]",
    "output": "generated_output : list = take(sort_asc(add_n(sub_n(reverse([-2, 5]),5),-5)),32)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -12,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sub_n(reverse(input),5),-5)),32)"
  },
  {
    "input": "input : list = [-1, -1, -1, 5]\noutput : list = [3, -3, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sub_n([-1, -1, -1, 5],2)),1)))",
    "io_inp": [
      -1,
      -1,
      -1,
      5
    ],
    "io_out": [
      3,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sub_n(input,2)),1)))"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(drop(reverse(take(mul_n([-4, 5, 3],-1),3)),1))",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(reverse(take(mul_n(input,-1),3)),1))"
  },
  {
    "input": "input : list = [-5, -1, -5, 1]\noutput : list = [0, -2, -6, -6]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n([-5, -1, -5, 1],4)),-5))",
    "io_inp": [
      -5,
      -1,
      -5,
      1
    ],
    "io_out": [
      0,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(input,4)),-5))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [16]",
    "output": "generated_output : list = drop(add_n(mul_n(add_n(sub_n([0, 3],-5),-4),5),-4),1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = drop(add_n(mul_n(add_n(sub_n(input,-5),-4),5),-4),1)"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(take([-1, 2, 3],1),2)",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),2)"
  },
  {
    "input": "input : list = [-1, 4, 4, -4, -2, 5]\noutput : list = [9, 10]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(reverse([-1, 4, 4, -4, -2, 5]),-5)),2))",
    "io_inp": [
      -1,
      4,
      4,
      -4,
      -2,
      5
    ],
    "io_out": [
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(reverse(input),-5)),2))"
  },
  {
    "input": "input : list = [4, 0, 3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take([4, 0, 3],1))",
    "io_inp": [
      4,
      0,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-5, -4, 0, -2]\noutput : list = [-6, -2, -4]",
    "output": "generated_output : list = drop(add_n([-5, -4, 0, -2],-2),1)",
    "io_inp": [
      -5,
      -4,
      0,
      -2
    ],
    "io_out": [
      -6,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-2),1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [5, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(sort_des([2, -3])),4)),1)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(sort_des(input)),4)),1)"
  },
  {
    "input": "input : list = [3, -1, 0, 1, 3, -4]\noutput : list = [-3, -7]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(take([3, -1, 0, 1, 3, -4],2),-1),1),-3))",
    "io_inp": [
      3,
      -1,
      0,
      1,
      3,
      -4
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(take(input,2),-1),1),-3))"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [-10, -10, -14]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(mul_n([-3, -3, -5],2),-4),-5),5))",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(mul_n(input,2),-4),-5),5))"
  },
  {
    "input": "input : list = [2, 0, 5, -1, 3]\noutput : list = [-1, 0, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([2, 0, 5, -1, 3])",
    "io_inp": [
      2,
      0,
      5,
      -1,
      3
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, -5, -3]\noutput : list = [-3, -3, -11, -19]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sort_des([-1, -1, -5, -3]),4),26),-1),2)",
    "io_inp": [
      -1,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -11,
      -19
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sort_des(input),4),26),-1),2)"
  },
  {
    "input": "input : list = [-4, 1, 4, -3, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(take([-4, 1, 4, -3, -3],1)),5)))",
    "io_inp": [
      -4,
      1,
      4,
      -3,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(take(input,1)),5)))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -8]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(reverse([-2, -5]))),32),3)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(reverse(input))),32),3)"
  },
  {
    "input": "input : list = [-3, 0, 1, -4, -1]\noutput : list = [3, 0, -1, 4, 1]",
    "output": "generated_output : list = mul_n([-3, 0, 1, -4, -1],-1)",
    "io_inp": [
      -3,
      0,
      1,
      -4,
      -1
    ],
    "io_out": [
      3,
      0,
      -1,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [2, 2, 3]",
    "output": "generated_output : list = mul_n(take(sort_des(take(add_n([0, 0, -1],-2),14)),18),-1)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(add_n(input,-2),14)),18),-1)"
  },
  {
    "input": "input : list = [1, -1, 1, -1, 5]\noutput : list = [-14, -2, -6, -2, -6]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(add_n([1, -1, 1, -1, 5],2)),-2)))",
    "io_inp": [
      1,
      -1,
      1,
      -1,
      5
    ],
    "io_out": [
      -14,
      -2,
      -6,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(add_n(input,2)),-2)))"
  },
  {
    "input": "input : list = [-3, -2, 5, 1, -5, 1]\noutput : list = [6, -2, -2, -8, -10, -14]",
    "output": "generated_output : list = sort_des(sub_n(reverse(mul_n(mul_n([-3, -2, 5, 1, -5, 1],-1),-2)),4))",
    "io_inp": [
      -3,
      -2,
      5,
      1,
      -5,
      1
    ],
    "io_out": [
      6,
      -2,
      -2,
      -8,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(mul_n(mul_n(input,-1),-2)),4))"
  },
  {
    "input": "input : list = [1, 1, 2, -3]\noutput : list = [-9, -5, -5, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(add_n([1, 1, 2, -3],-2),4))))",
    "io_inp": [
      1,
      1,
      2,
      -3
    ],
    "io_out": [
      -9,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(add_n(input,-2),4))))"
  },
  {
    "input": "input : list = [-5, 0, -4, -4]\noutput : list = [15, 12, 12, 0]",
    "output": "generated_output : list = take(mul_n(take(sort_asc(sort_asc([-5, 0, -4, -4])),14),-3),27)",
    "io_inp": [
      -5,
      0,
      -4,
      -4
    ],
    "io_out": [
      15,
      12,
      12,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_asc(sort_asc(input)),14),-3),27)"
  },
  {
    "input": "input : list = [-2, -2, 2, 5, -2, -1]\noutput : list = [-8, -8, 8, 20, -8, -4]",
    "output": "generated_output : list = take(mul_n([-2, -2, 2, 5, -2, -1],4),12)",
    "io_inp": [
      -2,
      -2,
      2,
      5,
      -2,
      -1
    ],
    "io_out": [
      -8,
      -8,
      8,
      20,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),12)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [10, -14]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(mul_n([5, -3],-3),-1)),21))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(mul_n(input,-3),-1)),21))"
  },
  {
    "input": "input : list = [3, -4, 2, -3]\noutput : list = [60, 55, 30, 25]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(add_n([3, -4, 2, -3],-4),-4),-5)))",
    "io_inp": [
      3,
      -4,
      2,
      -3
    ],
    "io_out": [
      60,
      55,
      30,
      25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(add_n(input,-4),-4),-5)))"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = take(sort_asc(sub_n([2, 4, 0],2)),16)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,2)),16)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(take([-3, 4, -3],1),5)),-3))",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(take(input,1),5)),-3))"
  },
  {
    "input": "input : list = [-5, 4, 1, -4]\noutput : list = [4, 1, -4]",
    "output": "generated_output : list = take(take(sort_des(take(sort_des([-5, 4, 1, -4]),3)),14),45)",
    "io_inp": [
      -5,
      4,
      1,
      -4
    ],
    "io_out": [
      4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(sort_des(input),3)),14),45)"
  },
  {
    "input": "input : list = [5, -5, 0, 0]\noutput : list = [26, -34]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(take([5, -5, 0, 0],2),2),3),-4),2)",
    "io_inp": [
      5,
      -5,
      0,
      0
    ],
    "io_out": [
      26,
      -34
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(take(input,2),2),3),-4),2)"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [17, 9, 13]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(add_n([-1, -5, 3],4)),5),-5),5)",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      17,
      9,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(add_n(input,4)),5),-5),5)"
  },
  {
    "input": "input : list = [5, -1, -2]\noutput : list = [60, 12, 4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(add_n([5, -1, -2],3),4),2)),-4)",
    "io_inp": [
      5,
      -1,
      -2
    ],
    "io_out": [
      60,
      12,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(add_n(input,3),4),2)),-4)"
  },
  {
    "input": "input : list = [3, 0, 3, 1, -2, -2]\noutput : list = [6, 6, 0, -3, -9]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(drop([3, 0, 3, 1, -2, -2],1)))),-3)",
    "io_inp": [
      3,
      0,
      3,
      1,
      -2,
      -2
    ],
    "io_out": [
      6,
      6,
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(drop(input,1)))),-3)"
  },
  {
    "input": "input : list = [-5, 1, -5]\noutput : list = [-5, 1, -5]",
    "output": "generated_output : list = add_n(take(take(add_n([-5, 1, -5],-3),11),11),3)",
    "io_inp": [
      -5,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(input,-3),11),11),3)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [1, 1, 1]",
    "output": "generated_output : list = take(take(sort_des(add_n(sort_asc([2, 2, 2]),-1)),31),31)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(sort_asc(input),-1)),31),31)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-10, -10]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(sub_n([0, 0],-3),1)),-5),2)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(sub_n(input,-3),1)),-5),2)"
  },
  {
    "input": "input : list = [0, 1, 5, 5]\noutput : list = [5, 5, 1, 0]",
    "output": "generated_output : list = sort_des([0, 1, 5, 5])",
    "io_inp": [
      0,
      1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, -5, -3, -3]\noutput : list = [-70, 70, 110, 70, 70]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(mul_n([4, -3, -5, -3, -3],-5),2),2),-1),2)",
    "io_inp": [
      4,
      -3,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -70,
      70,
      110,
      70,
      70
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(mul_n(input,-5),2),2),-1),2)"
  },
  {
    "input": "input : list = [1, 4, 4, -5, 1]\noutput : list = [-20, -20, -8, -8, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(add_n([1, 4, 4, -5, 1],-2),3),-4)))",
    "io_inp": [
      1,
      4,
      4,
      -5,
      1
    ],
    "io_out": [
      -20,
      -20,
      -8,
      -8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(add_n(input,-2),3),-4)))"
  },
  {
    "input": "input : list = [-5, -5, 2, -2, 4, -2]\noutput : list = [2, 0, -4, -4, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(sort_asc([-5, -5, 2, -2, 4, -2]),-3)),-5))",
    "io_inp": [
      -5,
      -5,
      2,
      -2,
      4,
      -2
    ],
    "io_out": [
      2,
      0,
      -4,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(sort_asc(input),-3)),-5))"
  },
  {
    "input": "input : list = [-3, 0, 2, 5, 0, 5]\noutput : list = [-15, 0, -15, -6]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(drop([-3, 0, 2, 5, 0, 5],2),5),3),-1))",
    "io_inp": [
      -3,
      0,
      2,
      5,
      0,
      5
    ],
    "io_out": [
      -15,
      0,
      -15,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(drop(input,2),5),3),-1))"
  },
  {
    "input": "input : list = [5, 0, -4, -4, 2, -2]\noutput : list = [9, 9, 3, -3, -9, -18]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(mul_n([5, 0, -4, -4, 2, -2],-3))),3))",
    "io_inp": [
      5,
      0,
      -4,
      -4,
      2,
      -2
    ],
    "io_out": [
      9,
      9,
      3,
      -3,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(mul_n(input,-3))),3))"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [-4, 4, 5]",
    "output": "generated_output : list = take(take(sort_asc(sort_asc(sort_asc([-4, 5, 4]))),6),31)",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      -4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_asc(sort_asc(input))),6),31)"
  },
  {
    "input": "input : list = [2, 0, -4, -4]\noutput : list = [-4, -4, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse([2, 0, -4, -4]))",
    "io_inp": [
      2,
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-9]",
    "output": "generated_output : list = drop(mul_n(add_n(reverse(sort_des([-3, -1])),-2),3),1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = drop(mul_n(add_n(reverse(sort_des(input)),-2),3),1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(add_n([-5, -5],1),2))))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(add_n(input,1),2))))"
  },
  {
    "input": "input : list = [4, -5, 0, 2]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take([4, -5, 0, 2],1),-2),3))",
    "io_inp": [
      4,
      -5,
      0,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(input,1),-2),3))"
  },
  {
    "input": "input : list = [1, 5, 5, 2, -3, 1]\noutput : list = [2, -2, -2, -3, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(sub_n([1, 5, 5, 2, -3, 1],-2)),-1),-1))",
    "io_inp": [
      1,
      5,
      5,
      2,
      -3,
      1
    ],
    "io_out": [
      2,
      -2,
      -2,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(sub_n(input,-2)),-1),-1))"
  },
  {
    "input": "input : list = [3, -2, 5, 2, -3, 5]\noutput : list = [1, 6]",
    "output": "generated_output : list = sort_asc(add_n(take(take(take([3, -2, 5, 2, -3, 5],2),21),7),3))",
    "io_inp": [
      3,
      -2,
      5,
      2,
      -3,
      5
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(take(input,2),21),7),3))"
  },
  {
    "input": "input : list = [-3, -3, 5, 2]\noutput : list = [-5, -2, 3, 3]",
    "output": "generated_output : list = mul_n(sort_des(reverse([-3, -3, 5, 2])),-1)",
    "io_inp": [
      -3,
      -3,
      5,
      2
    ],
    "io_out": [
      -5,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-1)"
  },
  {
    "input": "input : list = [-4, -2, 4, -2, 3]\noutput : list = [-2, 3, 4]",
    "output": "generated_output : list = sort_asc(drop([-4, -2, 4, -2, 3],2))",
    "io_inp": [
      -4,
      -2,
      4,
      -2,
      3
    ],
    "io_out": [
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [3, 1, 2, 1, 4, -5]\noutput : list = [-20, 4, 4, 8, 12, 16]",
    "output": "generated_output : list = sort_asc(mul_n([3, 1, 2, 1, 4, -5],4))",
    "io_inp": [
      3,
      1,
      2,
      1,
      4,
      -5
    ],
    "io_out": [
      -20,
      4,
      4,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [-5, 2, 3, 0, -3]\noutput : list = [-17, -12, -2, 13, 23]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(mul_n([-5, 2, 3, 0, -3],-5)),1),1))",
    "io_inp": [
      -5,
      2,
      3,
      0,
      -3
    ],
    "io_out": [
      -17,
      -12,
      -2,
      13,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(mul_n(input,-5)),1),1))"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [13, 13]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(mul_n([-2, -2, -2],-3)),2),-5),-2)",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(mul_n(input,-3)),2),-5),-2)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [7, 7, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(reverse([5, 5, 3])))),-2)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [3, 0, 2]",
    "output": "generated_output : list = sub_n([1, -2, 0],-2)",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 4, 2, 3, 0, -3]\noutput : list = [-7, -5, -2, 0, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(reverse([-5, 4, 2, 3, 0, -3])))),-2)",
    "io_inp": [
      -5,
      4,
      2,
      3,
      0,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [-2, 2, -5]\noutput : list = [-21, -12, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(add_n([-2, 2, -5],-2))),3))",
    "io_inp": [
      -2,
      2,
      -5
    ],
    "io_out": [
      -21,
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(add_n(input,-2))),3))"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(take([-3, -1, -5],1),-5),11)),-4)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(take(input,1),-5),11)),-4)"
  },
  {
    "input": "input : list = [4, 1, -3, 0, -3, -2]\noutput : list = [-8, -5, -4, -1]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(take([4, 1, -3, 0, -3, -2],4),5),1)))",
    "io_inp": [
      4,
      1,
      -3,
      0,
      -3,
      -2
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(take(input,4),5),1)))"
  },
  {
    "input": "input : list = [4, -5, -3, -5, -1]\noutput : list = [16, 16, 10, 4, -11]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(sort_asc([4, -5, -3, -5, -1]),-3),1)),31)",
    "io_inp": [
      4,
      -5,
      -3,
      -5,
      -1
    ],
    "io_out": [
      16,
      16,
      10,
      4,
      -11
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(sort_asc(input),-3),1)),31)"
  },
  {
    "input": "input : list = [-1, -2, 2, -3, -5, -5]\noutput : list = [-5, -5, -3, -2, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(reverse([-1, -2, 2, -3, -5, -5])))))",
    "io_inp": [
      -1,
      -2,
      2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 3, -5, -2, 2, -2]\noutput : list = [-24, -16, -12, -12, 4, 8]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc([-3, 3, -5, -2, 2, -2]),-1),4),1)",
    "io_inp": [
      -3,
      3,
      -5,
      -2,
      2,
      -2
    ],
    "io_out": [
      -24,
      -16,
      -12,
      -12,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(input),-1),4),1)"
  },
  {
    "input": "input : list = [1, 3, -5, -2, 1, -2]\noutput : list = [1, 3, -5, -2]",
    "output": "generated_output : list = take([1, 3, -5, -2, 1, -2],4)",
    "io_inp": [
      1,
      3,
      -5,
      -2,
      1,
      -2
    ],
    "io_out": [
      1,
      3,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [1, -4, 3, -3, 0]\noutput : list = [11, 9, 8, 5, 4]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(sort_des([1, -4, 3, -3, 0]),3)),-5))",
    "io_inp": [
      1,
      -4,
      3,
      -3,
      0
    ],
    "io_out": [
      11,
      9,
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(sort_des(input),3)),-5))"
  },
  {
    "input": "input : list = [-1, -3, -2]\noutput : list = [0, 5, 10]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(sort_asc([-1, -3, -2]),-5)),-5))",
    "io_inp": [
      -1,
      -3,
      -2
    ],
    "io_out": [
      0,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(sort_asc(input),-5)),-5))"
  },
  {
    "input": "input : list = [-5, 2, 0, -2, -1]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(mul_n([-5, 2, 0, -2, -1],4)),1),-5))",
    "io_inp": [
      -5,
      2,
      0,
      -2,
      -1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(mul_n(input,4)),1),-5))"
  },
  {
    "input": "input : list = [-1, -4, 2, -1]\noutput : list = [0, -3, -3, -6]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n([-1, -4, 2, -1],-1),1)))",
    "io_inp": [
      -1,
      -4,
      2,
      -1
    ],
    "io_out": [
      0,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(input,-1),1)))"
  },
  {
    "input": "input : list = [-5, -3, 4, -1, 4, -3]\noutput : list = [11, 5, -1, -16]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(take([-5, -3, 4, -1, 4, -3],4)),-3),2),-2)",
    "io_inp": [
      -5,
      -3,
      4,
      -1,
      4,
      -3
    ],
    "io_out": [
      11,
      5,
      -1,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(take(input,4)),-3),2),-2)"
  },
  {
    "input": "input : list = [2, -3, -4, 2, 3, 3]\noutput : list = [5, 5, 0, -1]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(take([2, -3, -4, 2, 3, 3],4)),3),22),1)",
    "io_inp": [
      2,
      -3,
      -4,
      2,
      3,
      3
    ],
    "io_out": [
      5,
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(take(input,4)),3),22),1)"
  },
  {
    "input": "input : list = [-5, 0, 1, -2, 2]\noutput : list = [0, 24, 60]",
    "output": "generated_output : list = mul_n(take(mul_n(drop(sort_des([-5, 0, 1, -2, 2]),2),-3),21),4)",
    "io_inp": [
      -5,
      0,
      1,
      -2,
      2
    ],
    "io_out": [
      0,
      24,
      60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(drop(sort_des(input),2),-3),21),4)"
  },
  {
    "input": "input : list = [-4, -2, -5, -3]\noutput : list = [-9]",
    "output": "generated_output : list = take(add_n(sort_des(take(take([-4, -2, -5, -3],1),10)),-5),51)",
    "io_inp": [
      -4,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(take(input,1),10)),-5),51)"
  },
  {
    "input": "input : list = [5, 4, 2, 0, -3]\noutput : list = [0, -1, -3, -5, -8]",
    "output": "generated_output : list = sub_n([5, 4, 2, 0, -3],5)",
    "io_inp": [
      5,
      4,
      2,
      0,
      -3
    ],
    "io_out": [
      0,
      -1,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, -1, 3, 5, 3, 0]\noutput : list = [11, -9, 7]",
    "output": "generated_output : list = take(take(add_n(mul_n(take([4, -1, 3, 5, 3, 0],3),4),-5),26),47)",
    "io_inp": [
      4,
      -1,
      3,
      5,
      3,
      0
    ],
    "io_out": [
      11,
      -9,
      7
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(take(input,3),4),-5),26),47)"
  },
  {
    "input": "input : list = [5, -5, -2, -2, -5]\noutput : list = [-5, -2, 5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(take([5, -5, -2, -2, -5],3)),4)),4)",
    "io_inp": [
      5,
      -5,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(take(input,3)),4)),4)"
  },
  {
    "input": "input : list = [0, -1, 0, -3, 2]\noutput : list = [-5, -6, -5, -8, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse([0, -1, 0, -3, 2]),5))",
    "io_inp": [
      0,
      -1,
      0,
      -3,
      2
    ],
    "io_out": [
      -5,
      -6,
      -5,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),5))"
  },
  {
    "input": "input : list = [-3, 2, 3, -2, 5, -5]\noutput : list = [5, 3, 2, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(sort_des([-3, 2, 3, -2, 5, -5])),11)))",
    "io_inp": [
      -3,
      2,
      3,
      -2,
      5,
      -5
    ],
    "io_out": [
      5,
      3,
      2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(sort_des(input)),11)))"
  },
  {
    "input": "input : list = [1, -1, -4, -5, -3, 1]\noutput : list = [0, 8, 20, 24, 16, 0]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([1, -1, -4, -5, -3, 1],-4),-1),-3)",
    "io_inp": [
      1,
      -1,
      -4,
      -5,
      -3,
      1
    ],
    "io_out": [
      0,
      8,
      20,
      24,
      16,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,-4),-1),-3)"
  },
  {
    "input": "input : list = [-2, 1, 0]\noutput : list = [-24, -28, -16]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(reverse([-2, 1, 0]),-5),-4),35),4)",
    "io_inp": [
      -2,
      1,
      0
    ],
    "io_out": [
      -24,
      -28,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(reverse(input),-5),-4),35),4)"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = sort_des([-2, 4, -2])",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 0, -1, 2, 1]\noutput : list = [5, 0]",
    "output": "generated_output : list = take([5, 0, -1, 2, 1],2)",
    "io_inp": [
      5,
      0,
      -1,
      2,
      1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -3, -4, 5, -1]\noutput : list = [-12, -30, -3, -6, -9]",
    "output": "generated_output : list = mul_n(add_n(take(take(reverse([-2, -3, -4, 5, -1]),23),30),5),-3)",
    "io_inp": [
      -2,
      -3,
      -4,
      5,
      -1
    ],
    "io_out": [
      -12,
      -30,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(reverse(input),23),30),5),-3)"
  },
  {
    "input": "input : list = [2, -5, 4, 4, 2, 4]\noutput : list = [-40, 16, 16, 32, 32, 32]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(mul_n([2, -5, 4, 4, 2, 4],2),4))))",
    "io_inp": [
      2,
      -5,
      4,
      4,
      2,
      4
    ],
    "io_out": [
      -40,
      16,
      16,
      32,
      32,
      32
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(mul_n(input,2),4))))"
  },
  {
    "input": "input : list = [-5, -5, -1, 3]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(add_n(take([-5, -5, -1, 3],1),-1),-4)",
    "io_inp": [
      -5,
      -5,
      -1,
      3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),-1),-4)"
  },
  {
    "input": "input : list = [-1, 1, 4, 0, 2, -1]\noutput : list = [-1, 0, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(drop([-1, 1, 4, 0, 2, -1],1)))",
    "io_inp": [
      -1,
      1,
      4,
      0,
      2,
      -1
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-60, 300]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(mul_n([-5, 1],-4),-1),-5)),3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -60,
      300
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(mul_n(input,-4),-1),-5)),3)"
  },
  {
    "input": "input : list = [5, 5, 3, -5, -4, 2]\noutput : list = [5, 5, 3, 2, -4, -5]",
    "output": "generated_output : list = sort_des([5, 5, 3, -5, -4, 2])",
    "io_inp": [
      5,
      5,
      3,
      -5,
      -4,
      2
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, -3, -1, 5, -3]\noutput : list = [164, 164, 100, 100, 36, -156]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(mul_n([-5, -5, -3, -1, 5, -3],-2)),-4),-4),-4)",
    "io_inp": [
      -5,
      -5,
      -3,
      -1,
      5,
      -3
    ],
    "io_out": [
      164,
      164,
      100,
      100,
      36,
      -156
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(mul_n(input,-2)),-4),-4),-4)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [6, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(sort_asc([-4, -5, 3])),27)),-3)",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      6,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(sort_asc(input)),27)),-3)"
  },
  {
    "input": "input : list = [-1, 4, -1, -5, 5, 2]\noutput : list = [-11, -36, -11, 9, -41, -26]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-1, 4, -1, -5, 5, 2],-4),-5),-4)",
    "io_inp": [
      -1,
      4,
      -1,
      -5,
      5,
      2
    ],
    "io_out": [
      -11,
      -36,
      -11,
      9,
      -41,
      -26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,-4),-5),-4)"
  },
  {
    "input": "input : list = [-2, -2, 0, -3, 2, 1]\noutput : list = [-2, -1, -1, 1, 2, 3]",
    "output": "generated_output : list = take(take(sort_asc(add_n(reverse([-2, -2, 0, -3, 2, 1]),1)),30),18)",
    "io_inp": [
      -2,
      -2,
      0,
      -3,
      2,
      1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(reverse(input),1)),30),18)"
  },
  {
    "input": "input : list = [0, 0, -3, -3, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(take([0, 0, -3, -3, -2],2),-3),12)))",
    "io_inp": [
      0,
      0,
      -3,
      -3,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(take(input,2),-3),12)))"
  },
  {
    "input": "input : list = [-1, 5, -1, -1, -4, 0]\noutput : list = [-4, -8, -5, -5, 1, -5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(reverse([-1, 5, -1, -1, -4, 0]),13),4),-3),-3)",
    "io_inp": [
      -1,
      5,
      -1,
      -1,
      -4,
      0
    ],
    "io_out": [
      -4,
      -8,
      -5,
      -5,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(reverse(input),13),4),-3),-3)"
  },
  {
    "input": "input : list = [-4, 4, 3, 3]\noutput : list = [-4, -3, -3]",
    "output": "generated_output : list = sort_asc(mul_n(drop([-4, 4, 3, 3],1),-1))",
    "io_inp": [
      -4,
      4,
      3,
      3
    ],
    "io_out": [
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,1),-1))"
  },
  {
    "input": "input : list = [-5, 4, -3, 1, -4]\noutput : list = [-10, -1, -8]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(take([-5, 4, -3, 1, -4],3),1),-4),-5),3)",
    "io_inp": [
      -5,
      4,
      -3,
      1,
      -4
    ],
    "io_out": [
      -10,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(take(input,3),1),-4),-5),3)"
  },
  {
    "input": "input : list = [-5, 0, 4, -2, -4]\noutput : list = [-9, -4, 0, -6, -8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(add_n([-5, 0, 4, -2, -4],4)),5),3))",
    "io_inp": [
      -5,
      0,
      4,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -4,
      0,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(add_n(input,4)),5),3))"
  },
  {
    "input": "input : list = [0, 3, -4]\noutput : list = [0, 7, 4]",
    "output": "generated_output : list = add_n(reverse([0, 3, -4]),4)",
    "io_inp": [
      0,
      3,
      -4
    ],
    "io_out": [
      0,
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [5, -4]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(sub_n([-5, 4],2),-1),22)),-2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(sub_n(input,2),-1),22)),-2)"
  },
  {
    "input": "input : list = [-5, 5, -3, -3]\noutput : list = [-4, 6, -2, -2]",
    "output": "generated_output : list = take(sub_n([-5, 5, -3, -3],-1),7)",
    "io_inp": [
      -5,
      5,
      -3,
      -3
    ],
    "io_out": [
      -4,
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),7)"
  },
  {
    "input": "input : list = [-4, 3, -3, 4, 3, -5]\noutput : list = [1, 0, -6, -7]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(take([-4, 3, -3, 4, 3, -5],4),-3))))",
    "io_inp": [
      -4,
      3,
      -3,
      4,
      3,
      -5
    ],
    "io_out": [
      1,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(take(input,4),-3))))"
  },
  {
    "input": "input : list = [1, 0, -2, 5]\noutput : list = [-4, -5, -7, 0]",
    "output": "generated_output : list = sub_n([1, 0, -2, 5],5)",
    "io_inp": [
      1,
      0,
      -2,
      5
    ],
    "io_out": [
      -4,
      -5,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, 5, -1, -4, -2]\noutput : list = [-1, 0, 2, 3, 9]",
    "output": "generated_output : list = add_n(sort_asc([-5, 5, -1, -4, -2]),4)",
    "io_inp": [
      -5,
      5,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-2, -4, -5, 2, 0, 2]\noutput : list = [-15, -13, -9, -5, -1, -1]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([-2, -4, -5, 2, 0, 2],2),-5))",
    "io_inp": [
      -2,
      -4,
      -5,
      2,
      0,
      2
    ],
    "io_out": [
      -15,
      -13,
      -9,
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,2),-5))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = take(add_n([5, 5],2),2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),2)"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [4, 4, 52]",
    "output": "generated_output : list = add_n(sub_n(reverse(mul_n(mul_n([4, 0, 0],4),3)),-1),3)",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      4,
      4,
      52
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(mul_n(mul_n(input,4),3)),-1),3)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-24, -32]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(sort_asc([3, 5]),3),11),-4))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -24,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(sort_asc(input),3),11),-4))"
  },
  {
    "input": "input : list = [2, 4, -4, 1, -5]\noutput : list = [-21, -18, -3, 0, 6]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc([2, 4, -4, 1, -5]),-2)),3)",
    "io_inp": [
      2,
      4,
      -4,
      1,
      -5
    ],
    "io_out": [
      -21,
      -18,
      -3,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(input),-2)),3)"
  },
  {
    "input": "input : list = [3, 2, 2, -2, 4, 2]\noutput : list = [-6, 2, 2, 6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(drop([3, 2, 2, -2, 4, 2],2)),2)),-2)",
    "io_inp": [
      3,
      2,
      2,
      -2,
      4,
      2
    ],
    "io_out": [
      -6,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(drop(input,2)),2)),-2)"
  },
  {
    "input": "input : list = [3, -3, 3, -5, -4]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(take([3, -3, 3, -5, -4],1),-3)",
    "io_inp": [
      3,
      -3,
      3,
      -5,
      -4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [2, 8, -10]",
    "output": "generated_output : list = mul_n([1, 4, -5],2)",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      2,
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [3, 1, -5, 2, -3]\noutput : list = [3, 2, 1, -3, -5]",
    "output": "generated_output : list = sort_des([3, 1, -5, 2, -3])",
    "io_inp": [
      3,
      1,
      -5,
      2,
      -3
    ],
    "io_out": [
      3,
      2,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(add_n([0, 2, -5],-2),11))),-2)",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(add_n(input,-2),11))),-2)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(mul_n([-2, -1],2)),-2),14))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(mul_n(input,2)),-2),14))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-11, -15]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(mul_n([-3, -5],2)),-5),18))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(mul_n(input,2)),-5),18))"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [33, 33, 30]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(sub_n([-1, -2, -2],5),-3),-1)),-3)",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      33,
      33,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(sub_n(input,5),-3),-1)),-3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(sub_n([-3, 2],1))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-5, 3, -4, 1]\noutput : list = [-5, -4, 1, 3]",
    "output": "generated_output : list = sort_asc([-5, 3, -4, 1])",
    "io_inp": [
      -5,
      3,
      -4,
      1
    ],
    "io_out": [
      -5,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(take([-4, -4, -5],1)))),-5)",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(take(input,1)))),-5)"
  },
  {
    "input": "input : list = [2, -3, -2, -5, 4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -3, -2, -5, 4],1)",
    "io_inp": [
      2,
      -3,
      -2,
      -5,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -4, -2, 4]\noutput : list = [1, -1]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc([5, -4, -2, 4]),-3),2),-1)",
    "io_inp": [
      5,
      -4,
      -2,
      4
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(input),-3),2),-1)"
  },
  {
    "input": "input : list = [0, 1, 3, 4, 2, -5]\noutput : list = [-15, -1, 3, 1, -3, -5]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(reverse([0, 1, 3, 4, 2, -5]),-4),1),2),-1)",
    "io_inp": [
      0,
      1,
      3,
      4,
      2,
      -5
    ],
    "io_out": [
      -15,
      -1,
      3,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(reverse(input),-4),1),2),-1)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(sort_des([1, 1]))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 3, 2, 2, 4, 3]\noutput : list = [-8, -2, -3, -3, -1, -2]",
    "output": "generated_output : list = add_n([-3, 3, 2, 2, 4, 3],-5)",
    "io_inp": [
      -3,
      3,
      2,
      2,
      4,
      3
    ],
    "io_out": [
      -8,
      -2,
      -3,
      -3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, -3, 3, 3]\noutput : list = [8, 7, 7, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([4, -3, 3, 3])),-4)",
    "io_inp": [
      4,
      -3,
      3,
      3
    ],
    "io_out": [
      8,
      7,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [-3, 5, -5, 0, 0]\noutput : list = [-2, -7, -7, -10, -12]",
    "output": "generated_output : list = add_n(take(add_n(reverse(sort_asc([-3, 5, -5, 0, 0])),-2),10),-5)",
    "io_inp": [
      -3,
      5,
      -5,
      0,
      0
    ],
    "io_out": [
      -2,
      -7,
      -7,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(sort_asc(input)),-2),10),-5)"
  },
  {
    "input": "input : list = [2, 2, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([2, 2, 0, -5],2)",
    "io_inp": [
      2,
      2,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 5, 0, -3, 3]\noutput : list = [5, 8, 3, 0, 6]",
    "output": "generated_output : list = sub_n([2, 5, 0, -3, 3],-3)",
    "io_inp": [
      2,
      5,
      0,
      -3,
      3
    ],
    "io_out": [
      5,
      8,
      3,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, -3, 1, -3]\noutput : list = [1, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(drop([1, -3, 1, -3],1)))",
    "io_inp": [
      1,
      -3,
      1,
      -3
    ],
    "io_out": [
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-1, -3, 0, 0, 4, -3]\noutput : list = [10, 10, 2, -2, -2, -18]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n([-1, -3, 0, 0, 4, -3],-4),25)),2)",
    "io_inp": [
      -1,
      -3,
      0,
      0,
      4,
      -3
    ],
    "io_out": [
      10,
      10,
      2,
      -2,
      -2,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(input,-4),25)),2)"
  },
  {
    "input": "input : list = [1, 2, 3, 2, 5]\noutput : list = [-4, -20, -36]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(take([1, 2, 3, 2, 5],3),-4),-1),3),-4)",
    "io_inp": [
      1,
      2,
      3,
      2,
      5
    ],
    "io_out": [
      -4,
      -20,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(take(input,3),-4),-1),3),-4)"
  },
  {
    "input": "input : list = [0, -1, 5, 4, 3]\noutput : list = [8, 7, 6, 3, 2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse([0, -1, 5, 4, 3])),-3))",
    "io_inp": [
      0,
      -1,
      5,
      4,
      3
    ],
    "io_out": [
      8,
      7,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(input)),-3))"
  },
  {
    "input": "input : list = [3, -4, 1, 3, 0, -5]\noutput : list = [2, 1, -3, -4, -6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(sub_n([3, -4, 1, 3, 0, -5],-3)))),-1)",
    "io_inp": [
      3,
      -4,
      1,
      3,
      0,
      -5
    ],
    "io_out": [
      2,
      1,
      -3,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(sub_n(input,-3)))),-1)"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [-2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-2, -3, -4])))",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [1, 0, -5, 5, 4, 3]\noutput : list = [5]",
    "output": "generated_output : list = take(take(add_n([1, 0, -5, 5, 4, 3],4),1),28)",
    "io_inp": [
      1,
      0,
      -5,
      5,
      4,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,4),1),28)"
  },
  {
    "input": "input : list = [5, -3, 0, -3]\noutput : list = [-36, 44, 14, 44]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sub_n([5, -3, 0, -3],2),-1),-5),2),-4)",
    "io_inp": [
      5,
      -3,
      0,
      -3
    ],
    "io_out": [
      -36,
      44,
      14,
      44
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sub_n(input,2),-1),-5),2),-4)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [9, 9]",
    "output": "generated_output : list = reverse(take(mul_n(take(mul_n([3, 3],-1),5),-3),4))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(mul_n(input,-1),5),-3),4))"
  },
  {
    "input": "input : list = [-1, -5, -1, 4, 0]\noutput : list = [2, -6, 4, 12, 4]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(sub_n([-1, -5, -1, 4, 0],-5),-5),1),-2))",
    "io_inp": [
      -1,
      -5,
      -1,
      4,
      0
    ],
    "io_out": [
      2,
      -6,
      4,
      12,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(sub_n(input,-5),-5),1),-2))"
  },
  {
    "input": "input : list = [3, -5, 0, 5, 5, 0]\noutput : list = [-5, 0, 0, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([3, -5, 0, 5, 5, 0])",
    "io_inp": [
      3,
      -5,
      0,
      5,
      5,
      0
    ],
    "io_out": [
      -5,
      0,
      0,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -5, -2, 3]\noutput : list = [-24, 16, 40]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse(drop([0, -5, -2, 3],1)),2),-1),4)",
    "io_inp": [
      0,
      -5,
      -2,
      3
    ],
    "io_out": [
      -24,
      16,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(drop(input,1)),2),-1),4)"
  },
  {
    "input": "input : list = [2, -1, 3, -4, -1, -3]\noutput : list = [3, -1, -1, -3, -4]",
    "output": "generated_output : list = sort_des(drop([2, -1, 3, -4, -1, -3],1))",
    "io_inp": [
      2,
      -1,
      3,
      -4,
      -1,
      -3
    ],
    "io_out": [
      3,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 0, 0, 3, 4]\noutput : list = [5, 0, 0, -15, -20]",
    "output": "generated_output : list = mul_n(mul_n([-1, 0, 0, 3, 4],-1),5)",
    "io_inp": [
      -1,
      0,
      0,
      3,
      4
    ],
    "io_out": [
      5,
      0,
      0,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [-1, -4, 2, 5, 4, -5]\noutput : list = [19, -26]",
    "output": "generated_output : list = take(sub_n(take(mul_n(drop([-1, -4, 2, 5, 4, -5],4),5),12),1),35)",
    "io_inp": [
      -1,
      -4,
      2,
      5,
      4,
      -5
    ],
    "io_out": [
      19,
      -26
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(drop(input,4),5),12),1),35)"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(reverse([5, 1, -1]),6),-2),4))",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(reverse(input),6),-2),4))"
  },
  {
    "input": "input : list = [-3, -2, 0, -4, 5]\noutput : list = [60, 0, -24, -36, -48]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_asc([-3, -2, 0, -4, 5]),-3))),-4)",
    "io_inp": [
      -3,
      -2,
      0,
      -4,
      5
    ],
    "io_out": [
      60,
      0,
      -24,
      -36,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_asc(input),-3))),-4)"
  },
  {
    "input": "input : list = [4, 4, 2, 1, -5, 0]\noutput : list = [21, 21, 17, 15]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(take([4, 4, 2, 1, -5, 0],4),4),31),2),5)",
    "io_inp": [
      4,
      4,
      2,
      1,
      -5,
      0
    ],
    "io_out": [
      21,
      21,
      17,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(take(input,4),4),31),2),5)"
  },
  {
    "input": "input : list = [-4, 2, 2, -5, 0, 4]\noutput : list = [16]",
    "output": "generated_output : list = drop(sort_asc(reverse(take(mul_n([-4, 2, 2, -5, 0, 4],4),14))),5)",
    "io_inp": [
      -4,
      2,
      2,
      -5,
      0,
      4
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = drop(sort_asc(reverse(take(mul_n(input,4),14))),5)"
  },
  {
    "input": "input : list = [0, -3, -2]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([0, -3, -2]),-4))",
    "io_inp": [
      0,
      -3,
      -2
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [2, -1, 3, -1, -3, -3]\noutput : list = [-17]",
    "output": "generated_output : list = take(sort_asc(sub_n(mul_n(sort_des([2, -1, 3, -1, -3, -3]),-5),2)),1)",
    "io_inp": [
      2,
      -1,
      3,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -17
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(mul_n(sort_des(input),-5),2)),1)"
  },
  {
    "input": "input : list = [4, -2, -1, 0]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(take([4, -2, -1, 0],2))",
    "io_inp": [
      4,
      -2,
      -1,
      0
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [3, -1, 3]\noutput : list = [1, -3, 1]",
    "output": "generated_output : list = sub_n([3, -1, 3],2)",
    "io_inp": [
      3,
      -1,
      3
    ],
    "io_out": [
      1,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc([5, 0, -3]))",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -3, -1, 1]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(drop([-2, -3, -1, 1],2),7),1)))",
    "io_inp": [
      -2,
      -3,
      -1,
      1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(drop(input,2),7),1)))"
  },
  {
    "input": "input : list = [-3, 2, 1]\noutput : list = [-12, 4, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des([-3, 2, 1]),4)),35)",
    "io_inp": [
      -3,
      2,
      1
    ],
    "io_out": [
      -12,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(input),4)),35)"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [21, 3, 0]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_des([-4, 3, 2]),-5),-2),-3))",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      21,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_des(input),-5),-2),-3))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([3, 0])))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [15, 24]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(add_n([3, 0],4),1),3)))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      15,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(add_n(input,4),1),3)))"
  },
  {
    "input": "input : list = [-3, -5, 4, -1, 2]\noutput : list = [-16, -8, 4, 12, 20]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(mul_n([-3, -5, 4, -1, 2],-4)))),52)",
    "io_inp": [
      -3,
      -5,
      4,
      -1,
      2
    ],
    "io_out": [
      -16,
      -8,
      4,
      12,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(mul_n(input,-4)))),52)"
  },
  {
    "input": "input : list = [3, 5, 0, 1, -2, -1]\noutput : list = [-15, -7, 1, 5, 9, 13]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(mul_n([3, 5, 0, 1, -2, -1],-4)),-5)))",
    "io_inp": [
      3,
      5,
      0,
      1,
      -2,
      -1
    ],
    "io_out": [
      -15,
      -7,
      1,
      5,
      9,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(mul_n(input,-4)),-5)))"
  },
  {
    "input": "input : list = [-5, -3, -5, -3, -2, -1]\noutput : list = [-5, -5, -3, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n([-5, -3, -5, -3, -2, -1],5)),-1),-4))",
    "io_inp": [
      -5,
      -3,
      -5,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n(input,5)),-1),-4))"
  },
  {
    "input": "input : list = [-2, 1, 5, -3]\noutput : list = [-8, -7, -4, 0]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(reverse([-2, 1, 5, -3]),2)),17),-3)",
    "io_inp": [
      -2,
      1,
      5,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(reverse(input),2)),17),-3)"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [2, 5, 6]",
    "output": "generated_output : list = sub_n(sub_n([-1, 2, 3],1),-4)",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-4)"
  },
  {
    "input": "input : list = [0, 2, 2, -2]\noutput : list = [3, 5, 5, 1]",
    "output": "generated_output : list = take(sub_n([0, 2, 2, -2],-3),5)",
    "io_inp": [
      0,
      2,
      2,
      -2
    ],
    "io_out": [
      3,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),5)"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [5, -3]",
    "output": "generated_output : list = sub_n(take(drop(sort_des(add_n([-5, 5, 3],5)),1),19),3)",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(sort_des(add_n(input,5)),1),19),3)"
  },
  {
    "input": "input : list = [0, -4, 5, -1, 1]\noutput : list = [15, 3, 0, -3, -12]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sort_asc([0, -4, 5, -1, 1]),3))))",
    "io_inp": [
      0,
      -4,
      5,
      -1,
      1
    ],
    "io_out": [
      15,
      3,
      0,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-5, 2, 1, -1, 0]\noutput : list = [10, 5, 0, -5, -25]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc(mul_n([-5, 2, 1, -1, 0],5))),25))",
    "io_inp": [
      -5,
      2,
      1,
      -1,
      0
    ],
    "io_out": [
      10,
      5,
      0,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(mul_n(input,5))),25))"
  },
  {
    "input": "input : list = [-2, -2, 1, 1]\noutput : list = [-5, -5, -2, -2]",
    "output": "generated_output : list = add_n([-2, -2, 1, 1],-3)",
    "io_inp": [
      -2,
      -2,
      1,
      1
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [18, -18]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(sub_n([2, 4],3),2),3)),3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      18,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(sub_n(input,3),2),3)),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n([-3, -4],-3)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des([4, -1, -2]),1)),5)",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(input),1)),5)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = sort_asc([5, -4, -1])",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [13, -11]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(mul_n([1, -2],4),2)),5))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      13,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(mul_n(input,4),2)),5))"
  },
  {
    "input": "input : list = [2, -4, 1, -2, -4, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sub_n([2, -4, 1, -2, -4, -1],-5))),-1),2)",
    "io_inp": [
      2,
      -4,
      1,
      -2,
      -4,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sub_n(input,-5))),-1),2)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(reverse([-4, 0]))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, -4, 1, -1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sub_n(take([2, -4, 1, -1],2),-5),2)))",
    "io_inp": [
      2,
      -4,
      1,
      -1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sub_n(take(input,2),-5),2)))"
  },
  {
    "input": "input : list = [-5, -5, 2, -4, -5]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(reverse(take([-5, -5, 2, -4, -5],1))),2),5)",
    "io_inp": [
      -5,
      -5,
      2,
      -4,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(reverse(take(input,1))),2),5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [2, 9]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sub_n([3, -4],4),5),-4)),-1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sub_n(input,4),5),-4)),-1)"
  },
  {
    "input": "input : list = [-5, -2, -4]\noutput : list = [12, 6]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(reverse([-5, -2, -4]),-1)),-2),2)",
    "io_inp": [
      -5,
      -2,
      -4
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(reverse(input),-1)),-2),2)"
  },
  {
    "input": "input : list = [-4, -2, -4, -1]\noutput : list = [20, 20, 16, 14]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n([-4, -2, -4, -1],4),2),-2))",
    "io_inp": [
      -4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      20,
      20,
      16,
      14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(input,4),2),-2))"
  },
  {
    "input": "input : list = [5, 5, 1, 2, 1]\noutput : list = [5, 5, 1]",
    "output": "generated_output : list = take([5, 5, 1, 2, 1],3)",
    "io_inp": [
      5,
      5,
      1,
      2,
      1
    ],
    "io_out": [
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, -2, 2, -2]\noutput : list = [12, 16, 12, 16]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n([2, -2, 2, -2],-5),5),-1),-4)",
    "io_inp": [
      2,
      -2,
      2,
      -2
    ],
    "io_out": [
      12,
      16,
      12,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(input,-5),5),-1),-4)"
  },
  {
    "input": "input : list = [5, 5, -1, -2, 0, 2]\noutput : list = [-1, -1, -7, -8, -6, -4]",
    "output": "generated_output : list = add_n(take(add_n([5, 5, -1, -2, 0, 2],-1),17),-5)",
    "io_inp": [
      5,
      5,
      -1,
      -2,
      0,
      2
    ],
    "io_out": [
      -1,
      -1,
      -7,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-1),17),-5)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(drop([-1, -5, -4],1)),2),1),-4)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(drop(input,1)),2),1),-4)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(sub_n([-1, -5],-3)),1)),3)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(sub_n(input,-3)),1)),3)"
  },
  {
    "input": "input : list = [-1, -2, 0, 4, -4, -1]\noutput : list = [-4, -2, -1, -1, 0, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_des([-1, -2, 0, 4, -4, -1]),1))",
    "io_inp": [
      -1,
      -2,
      0,
      4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [-4, 0, 2, 1, -1]\noutput : list = [-6, 2, 6]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(take([-4, 0, 2, 1, -1],3)),1),14),2)",
    "io_inp": [
      -4,
      0,
      2,
      1,
      -1
    ],
    "io_out": [
      -6,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(take(input,3)),1),14),2)"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [0, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sort_asc([0, 5, 3]),1))))",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-3, -10]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des([-2, 5]),3),-5),3)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -3,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(input),3),-5),3)"
  },
  {
    "input": "input : list = [2, 0, -1, 2, -2]\noutput : list = [2, 2, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(reverse([2, 0, -1, 2, -2])))))",
    "io_inp": [
      2,
      0,
      -1,
      2,
      -2
    ],
    "io_out": [
      2,
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [0, 4, -3, -4, -4]\noutput : list = [1, -3, -6, -7, -7]",
    "output": "generated_output : list = take(add_n(sort_des(take(sort_asc([0, 4, -3, -4, -4]),21)),-3),25)",
    "io_inp": [
      0,
      4,
      -3,
      -4,
      -4
    ],
    "io_out": [
      1,
      -3,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(sort_asc(input),21)),-3),25)"
  },
  {
    "input": "input : list = [4, 0, 4, -1, 5]\noutput : list = [80, 0, 80, -20, 100]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(mul_n([4, 0, 4, -1, 5],5),5),5),-4),-1)",
    "io_inp": [
      4,
      0,
      4,
      -1,
      5
    ],
    "io_out": [
      80,
      0,
      80,
      -20,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(mul_n(input,5),5),5),-4),-1)"
  },
  {
    "input": "input : list = [5, 1, 1]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(take([5, 1, 1],1),2))",
    "io_inp": [
      5,
      1,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,1),2))"
  },
  {
    "input": "input : list = [-3, 3, 5, -2, 2]\noutput : list = [-3, 3, 5]",
    "output": "generated_output : list = take([-3, 3, 5, -2, 2],3)",
    "io_inp": [
      -3,
      3,
      5,
      -2,
      2
    ],
    "io_out": [
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, 1, -2, 2, -3]\noutput : list = [-5, -7, -10, -6, -11]",
    "output": "generated_output : list = add_n(add_n([3, 1, -2, 2, -3],-5),-3)",
    "io_inp": [
      3,
      1,
      -2,
      2,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -10,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-4, 1, 4, -1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse(drop(reverse(drop([-4, 1, 4, -1],1)),1))",
    "io_inp": [
      -4,
      1,
      4,
      -1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(reverse(drop(input,1)),1))"
  },
  {
    "input": "input : list = [0, 3, -3, 4, 4, 0]\noutput : list = [84, 60, 60, 36, 28, 28]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_asc([0, 3, -3, 4, 4, 0]),5),-2),-5),4)",
    "io_inp": [
      0,
      3,
      -3,
      4,
      4,
      0
    ],
    "io_out": [
      84,
      60,
      60,
      36,
      28,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_asc(input),5),-2),-5),4)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [0, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(reverse([5, -3]),-2)),3))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(reverse(input),-2)),3))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [10, 2]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(sort_asc([1, -3]),2)),4),4)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(sort_asc(input),2)),4),4)"
  },
  {
    "input": "input : list = [-5, -5, 5, 4]\noutput : list = [-6, -6, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sort_des([-5, -5, 5, 4]))),1))",
    "io_inp": [
      -5,
      -5,
      5,
      4
    ],
    "io_out": [
      -6,
      -6,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [2, 3, 5, -5, 5, 1]\noutput : list = [3, -1, 9, -1, 1, 2]",
    "output": "generated_output : list = mul_n(add_n(reverse([2, 3, 5, -5, 5, 1]),-4),-1)",
    "io_inp": [
      2,
      3,
      5,
      -5,
      5,
      1
    ],
    "io_out": [
      3,
      -1,
      9,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-4),-1)"
  },
  {
    "input": "input : list = [-5, 4, -4, 5, 5]\noutput : list = [-18, -14, 18, 22, 22]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(mul_n([-5, 4, -4, 5, 5],4),3),5)))",
    "io_inp": [
      -5,
      4,
      -4,
      5,
      5
    ],
    "io_out": [
      -18,
      -14,
      18,
      22,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(mul_n(input,4),3),5)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [20, 15]",
    "output": "generated_output : list = sort_des(mul_n([4, 3],5))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      20,
      15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [0, 1, -1, 1, -4, -3]\noutput : list = [1, 1, 0, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(reverse([0, 1, -1, 1, -4, -3]),22))))",
    "io_inp": [
      0,
      1,
      -1,
      1,
      -4,
      -3
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(reverse(input),22))))"
  },
  {
    "input": "input : list = [-1, -5, 4, 2, 0, -5]\noutput : list = [-14, -14, 6, 11, 21, 31]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(sub_n([-1, -5, 4, 2, 0, -5],-2),19)),5),-1)",
    "io_inp": [
      -1,
      -5,
      4,
      2,
      0,
      -5
    ],
    "io_out": [
      -14,
      -14,
      6,
      11,
      21,
      31
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(sub_n(input,-2),19)),5),-1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_asc([-2, 5])))))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [11, 2, 8]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(add_n([5, -4, 2],2),7),-4)))",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      11,
      2,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(add_n(input,2),7),-4)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-6, 2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_asc([-1, 3]))),-2))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-15, -9, 9]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([-5, -4, -1],-2),5),-3)",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -15,
      -9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,-2),5),-3)"
  },
  {
    "input": "input : list = [-4, 2, 0, -4]\noutput : list = [24, -48]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(take([-4, 2, 0, -4],2)),6),4),3)",
    "io_inp": [
      -4,
      2,
      0,
      -4
    ],
    "io_out": [
      24,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(take(input,2)),6),4),3)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [11, 10, 7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n([5, 1, 4],2),-3))),-5)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      11,
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n(input,2),-3))),-5)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [-25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take([5, -1, 1],1))),-5))",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take(input,1))),-5))"
  },
  {
    "input": "input : list = [-5, 1, 1, -3]\noutput : list = [-10, -8, -4, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sort_des([-5, 1, 1, -3])))),5)",
    "io_inp": [
      -5,
      1,
      1,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-3, -1, -4]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(mul_n([-3, -1, -4],1)),1),-1),-1)",
    "io_inp": [
      -3,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(mul_n(input,1)),1),-1),-1)"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [-1, 0, 5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([0, -5, 1]),-1))",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [2, 2, 4, -2, -3, -1]\noutput : list = [-3, -2, -1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 2, 4, -2, -3, -1])",
    "io_inp": [
      2,
      2,
      4,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [7, 3]",
    "output": "generated_output : list = take(sub_n(mul_n([-1, 1],-2),-5),25)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,-2),-5),25)"
  },
  {
    "input": "input : list = [-5, -4, 3, 1, 3]\noutput : list = [-12, -11, -4, -6, -4]",
    "output": "generated_output : list = add_n(add_n([-5, -4, 3, 1, 3],-5),-2)",
    "io_inp": [
      -5,
      -4,
      3,
      1,
      3
    ],
    "io_out": [
      -12,
      -11,
      -4,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),-2)"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [-3, -3, 2]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(sort_des([2, -3, -3]),-5),1),4))",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(sort_des(input),-5),1),4))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [8, -10]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n([2, -4],-3)))),4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n(input,-3)))),4)"
  },
  {
    "input": "input : list = [-1, 3, -4, 1]\noutput : list = [-1, 3, -4, 1]",
    "output": "generated_output : list = take(take(mul_n([-1, 3, -4, 1],1),12),28)",
    "io_inp": [
      -1,
      3,
      -4,
      1
    ],
    "io_out": [
      -1,
      3,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,1),12),28)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(sub_n([1, 2],2)),3)))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(sub_n(input,2)),3)))"
  },
  {
    "input": "input : list = [4, 5, 0, 1, 2]\noutput : list = [5, 4]",
    "output": "generated_output : list = reverse(add_n(drop(sub_n(add_n([4, 5, 0, 1, 2],-2),-1),3),4))",
    "io_inp": [
      4,
      5,
      0,
      1,
      2
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(sub_n(add_n(input,-2),-1),3),4))"
  },
  {
    "input": "input : list = [-4, -4, 5, 3, 2]\noutput : list = [-2, -2, 4, 5, 7]",
    "output": "generated_output : list = add_n(sort_asc([-4, -4, 5, 3, 2]),2)",
    "io_inp": [
      -4,
      -4,
      5,
      3,
      2
    ],
    "io_out": [
      -2,
      -2,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [5, 1, -1, 2]\noutput : list = [2, -1, 1, 5]",
    "output": "generated_output : list = reverse([5, 1, -1, 2])",
    "io_inp": [
      5,
      1,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [4, -1, -3]",
    "output": "generated_output : list = sort_des([4, -1, -3])",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, -3, 1]\noutput : list = [-8, -8, -11, -12]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n([1, -2, -3, 1],-1),3)),-5)",
    "io_inp": [
      1,
      -2,
      -3,
      1
    ],
    "io_out": [
      -8,
      -8,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(input,-1),3)),-5)"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [9, 0, 6]",
    "output": "generated_output : list = add_n([4, -5, 1],5)",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      9,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [1, -4, 4, -2, 2, 1]\noutput : list = [-12, -4, -10, -6, -7]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(drop([1, -4, 4, -2, 2, 1],1)),4),-4))",
    "io_inp": [
      1,
      -4,
      4,
      -2,
      2,
      1
    ],
    "io_out": [
      -12,
      -4,
      -10,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(drop(input,1)),4),-4))"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = reverse(mul_n([0, 2, 4],-1))",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = reverse([2, -1])",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, -2, -1, 1, 4]\noutput : list = [-2, 4, 8, 10, 12, 14]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(add_n([-4, -3, -2, -1, 1, 4],-4),-1)),-2))",
    "io_inp": [
      -4,
      -3,
      -2,
      -1,
      1,
      4
    ],
    "io_out": [
      -2,
      4,
      8,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(add_n(input,-4),-1)),-2))"
  },
  {
    "input": "input : list = [-5, 4, 5, -1, -4]\noutput : list = [5, 4, -1, -4, -5]",
    "output": "generated_output : list = reverse(take(sort_asc([-5, 4, 5, -1, -4]),5))",
    "io_inp": [
      -5,
      4,
      5,
      -1,
      -4
    ],
    "io_out": [
      5,
      4,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),5))"
  },
  {
    "input": "input : list = [2, -1, -1, -5]\noutput : list = [-10, 5, 5, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(mul_n([2, -1, -1, -5],-5),19))))",
    "io_inp": [
      2,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -10,
      5,
      5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(mul_n(input,-5),19))))"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [-5, -5, 5]",
    "output": "generated_output : list = sort_asc([5, -5, -5])",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, 4, -2]\noutput : list = [-22, -18, 6, 6, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_asc([-3, -2, 5, 4, -2]),-4)),2))",
    "io_inp": [
      -3,
      -2,
      5,
      4,
      -2
    ],
    "io_out": [
      -22,
      -18,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_asc(input),-4)),2))"
  },
  {
    "input": "input : list = [2, -4, -5, 1, 1, -3]\noutput : list = [2, 1, 1, -3, -4, -5]",
    "output": "generated_output : list = sort_des([2, -4, -5, 1, 1, -3])",
    "io_inp": [
      2,
      -4,
      -5,
      1,
      1,
      -3
    ],
    "io_out": [
      2,
      1,
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [7, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_des([-5, 5]))),3),-5)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_des(input))),3),-5)"
  },
  {
    "input": "input : list = [2, 5, -1]\noutput : list = [-1, 23, 11]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(mul_n([2, 5, -1],2),2),1)),-2)",
    "io_inp": [
      2,
      5,
      -1
    ],
    "io_out": [
      -1,
      23,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(mul_n(input,2),2),1)),-2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc([3, 3])",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -5, 4, -4, -5]\noutput : list = [-2, -5, 4, -4, -5]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n([-2, -5, 4, -4, -5],1),21),-1),1)",
    "io_inp": [
      -2,
      -5,
      4,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -5,
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(input,1),21),-1),1)"
  },
  {
    "input": "input : list = [-5, 5, -1, 0, 1, 2]\noutput : list = [-7, -3, -2, -1, 0, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse([-5, 5, -1, 0, 1, 2]),2)),38)",
    "io_inp": [
      -5,
      5,
      -1,
      0,
      1,
      2
    ],
    "io_out": [
      -7,
      -3,
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(input),2)),38)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-4, -10]",
    "output": "generated_output : list = mul_n([2, 5],-2)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, -3, 1, 2, -2, 0]\noutput : list = [-4, -6, -2, -3, -7, -1]",
    "output": "generated_output : list = reverse(add_n([3, -3, 1, 2, -2, 0],-4))",
    "io_inp": [
      3,
      -3,
      1,
      2,
      -2,
      0
    ],
    "io_out": [
      -4,
      -6,
      -2,
      -3,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [5, -1, -1, -5, 2, 0]\noutput : list = [-8, -4, -4, -3, -1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sort_des([5, -1, -1, -5, 2, 0]),-1)),4))",
    "io_inp": [
      5,
      -1,
      -1,
      -5,
      2,
      0
    ],
    "io_out": [
      -8,
      -4,
      -4,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sort_des(input),-1)),4))"
  },
  {
    "input": "input : list = [3, -4, -1, 4, -3, -5]\noutput : list = [-1, 1, 8, 3, 0, 7]",
    "output": "generated_output : list = take(add_n(take(reverse(sub_n([3, -4, -1, 4, -3, -5],-2)),6),2),15)",
    "io_inp": [
      3,
      -4,
      -1,
      4,
      -3,
      -5
    ],
    "io_out": [
      -1,
      1,
      8,
      3,
      0,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(sub_n(input,-2)),6),2),15)"
  },
  {
    "input": "input : list = [-1, -1, -1, -1]\noutput : list = [1, 1, 1, 1]",
    "output": "generated_output : list = sub_n(take(sort_des([-1, -1, -1, -1]),18),-2)",
    "io_inp": [
      -1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      1,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),18),-2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-20, -10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(reverse([4, 2])))),-5)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [2, 4, 3, 3, -1, 3]\noutput : list = [7, 9, 8, 8, 4, 8]",
    "output": "generated_output : list = sub_n([2, 4, 3, 3, -1, 3],-5)",
    "io_inp": [
      2,
      4,
      3,
      3,
      -1,
      3
    ],
    "io_out": [
      7,
      9,
      8,
      8,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -2, 4, 1]\noutput : list = [4, 1, -2, -5]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(sort_asc([-5, -2, 4, 1]))),26))",
    "io_inp": [
      -5,
      -2,
      4,
      1
    ],
    "io_out": [
      4,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(sort_asc(input))),26))"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [8, 8, 13]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(reverse([0, 0, 5]))),3),5)",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      8,
      8,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(reverse(input))),3),5)"
  },
  {
    "input": "input : list = [5, -2, 5, 1, -3]\noutput : list = [6, -1, 6, 2, -2]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(add_n([5, -2, 5, 1, -3],3),-3),4),3),2)",
    "io_inp": [
      5,
      -2,
      5,
      1,
      -3
    ],
    "io_out": [
      6,
      -1,
      6,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(add_n(input,3),-3),4),3),2)"
  },
  {
    "input": "input : list = [-5, 0, -1, 1, 2, 3]\noutput : list = [21, 18, 15, 12, 9, -3]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(sort_asc([-5, 0, -1, 1, 2, 3]),-1)),5),3)",
    "io_inp": [
      -5,
      0,
      -1,
      1,
      2,
      3
    ],
    "io_out": [
      21,
      18,
      15,
      12,
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(sort_asc(input),-1)),5),3)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([2, 4]),2))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [4, -4, 0, -5, -4, 3]\noutput : list = [30, 27, 27, 15, 6, 3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n([4, -4, 0, -5, -4, 3],-5))),-3)",
    "io_inp": [
      4,
      -4,
      0,
      -5,
      -4,
      3
    ],
    "io_out": [
      30,
      27,
      27,
      15,
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(input,-5))),-3)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-8, 16]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(mul_n([2, -4],-4)))))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(mul_n(input,-4)))))"
  },
  {
    "input": "input : list = [4, 2, 3, -4, -3]\noutput : list = [30, 40, -30]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(drop([4, 2, 3, -4, -3],2),19)),2),-5)",
    "io_inp": [
      4,
      2,
      3,
      -4,
      -3
    ],
    "io_out": [
      30,
      40,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(drop(input,2),19)),2),-5)"
  },
  {
    "input": "input : list = [-5, 0, 5, -4, -2, 0]\noutput : list = [1, -8, -6, -4]",
    "output": "generated_output : list = add_n(add_n(drop([-5, 0, 5, -4, -2, 0],2),-3),-1)",
    "io_inp": [
      -5,
      0,
      5,
      -4,
      -2,
      0
    ],
    "io_out": [
      1,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(input,2),-3),-1)"
  },
  {
    "input": "input : list = [-3, -1, 4, 0]\noutput : list = [-5, -3, -2, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(add_n([-3, -1, 4, 0],-2)))))",
    "io_inp": [
      -3,
      -1,
      4,
      0
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [5, -3, -3, -2, 3, 3]\noutput : list = [-3, -3, -2, 3, 3, 5]",
    "output": "generated_output : list = take(take(sort_asc(reverse([5, -3, -3, -2, 3, 3])),28),39)",
    "io_inp": [
      5,
      -3,
      -3,
      -2,
      3,
      3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(input)),28),39)"
  },
  {
    "input": "input : list = [5, -4, -3, 1, 4, 1]\noutput : list = [7, 5, -11]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(take([5, -4, -3, 1, 4, 1],3),-2)),-1))",
    "io_inp": [
      5,
      -4,
      -3,
      1,
      4,
      1
    ],
    "io_out": [
      7,
      5,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(take(input,3),-2)),-1))"
  },
  {
    "input": "input : list = [5, -2, 1, -3, -1, -3]\noutput : list = [-2, 0, -2, 2, -1, 6]",
    "output": "generated_output : list = mul_n(add_n(reverse([5, -2, 1, -3, -1, -3]),1),1)",
    "io_inp": [
      5,
      -2,
      1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -2,
      0,
      -2,
      2,
      -1,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),1),1)"
  },
  {
    "input": "input : list = [-5, -4, -1, -3, -5]\noutput : list = [-3, -5, -6, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc(sort_asc([-5, -4, -1, -3, -5]))),-2))",
    "io_inp": [
      -5,
      -4,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(mul_n([-4, -2],1),1))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(mul_n(input,1),1))))"
  },
  {
    "input": "input : list = [5, -4, -5, 2, -1, 2]\noutput : list = [10, 4, 4, -2, -8, -10]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(mul_n([5, -4, -5, 2, -1, 2],2)),-1)),-1)",
    "io_inp": [
      5,
      -4,
      -5,
      2,
      -1,
      2
    ],
    "io_out": [
      10,
      4,
      4,
      -2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(mul_n(input,2)),-1)),-1)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(reverse([2, 2]))),2),-1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(reverse(input))),2),-1)"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(drop([0, -2, 0],1))",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, -3, 0, 2, -5]\noutput : list = [4, 12, 24, 28, 32]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sub_n([-4, -3, 0, 2, -5],2),-4)),-4))",
    "io_inp": [
      -4,
      -3,
      0,
      2,
      -5
    ],
    "io_out": [
      4,
      12,
      24,
      28,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sub_n(input,2),-4)),-4))"
  },
  {
    "input": "input : list = [-2, 4, -1]\noutput : list = [14, 12, 2]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sort_des([-2, 4, -1])),-5),31),-2)",
    "io_inp": [
      -2,
      4,
      -1
    ],
    "io_out": [
      14,
      12,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sort_des(input)),-5),31),-2)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = reverse([-1, -1, -1])",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [7, 0, 4]",
    "output": "generated_output : list = sub_n(take(add_n(take(reverse([2, -2, 5]),13),4),13),2)",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      7,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(reverse(input),13),4),13),2)"
  },
  {
    "input": "input : list = [2, -5, -5, 0, -1]\noutput : list = [-2, -22, -22]",
    "output": "generated_output : list = add_n(drop(mul_n(sort_des(sort_asc([2, -5, -5, 0, -1])),5),2),3)",
    "io_inp": [
      2,
      -5,
      -5,
      0,
      -1
    ],
    "io_out": [
      -2,
      -22,
      -22
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sort_des(sort_asc(input)),5),2),3)"
  },
  {
    "input": "input : list = [-1, 0, 5, 3, 1, -5]\noutput : list = [29, 11, 5, -1, 14, 17]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(reverse([-1, 0, 5, 3, 1, -5]),4),-3),29),2)",
    "io_inp": [
      -1,
      0,
      5,
      3,
      1,
      -5
    ],
    "io_out": [
      29,
      11,
      5,
      -1,
      14,
      17
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(reverse(input),4),-3),29),2)"
  },
  {
    "input": "input : list = [-3, 5, 2, 1, 5, -3]\noutput : list = [-3, 5, 1, 2, 5, -3]",
    "output": "generated_output : list = reverse([-3, 5, 2, 1, 5, -3])",
    "io_inp": [
      -3,
      5,
      2,
      1,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      1,
      2,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 1, -1, 3, 3]\noutput : list = [25, 5, -5, -15, -15]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(sort_des([-5, 1, -1, 3, 3]))),-5),8)",
    "io_inp": [
      -5,
      1,
      -1,
      3,
      3
    ],
    "io_out": [
      25,
      5,
      -5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(sort_des(input))),-5),8)"
  },
  {
    "input": "input : list = [1, 4, 3, 4, 3, 0]\noutput : list = [4, 7, 6, 7]",
    "output": "generated_output : list = add_n(take([1, 4, 3, 4, 3, 0],4),3)",
    "io_inp": [
      1,
      4,
      3,
      4,
      3,
      0
    ],
    "io_out": [
      4,
      7,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(input,4),3)"
  },
  {
    "input": "input : list = [-4, 2, -5]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 2, -5],1)",
    "io_inp": [
      -4,
      2,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -2, 0, -4]\noutput : list = [-17, -9, -5, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(mul_n([-1, -2, 0, -4],4),1))))",
    "io_inp": [
      -1,
      -2,
      0,
      -4
    ],
    "io_out": [
      -17,
      -9,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(mul_n(input,4),1))))"
  },
  {
    "input": "input : list = [-3, 2, -3, -1]\noutput : list = [7, 4, 2]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(drop([-3, 2, -3, -1],1),-5))),6)",
    "io_inp": [
      -3,
      2,
      -3,
      -1
    ],
    "io_out": [
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(drop(input,1),-5))),6)"
  },
  {
    "input": "input : list = [4, 2, 2]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(reverse([4, 2, 2]),-5))),1)",
    "io_inp": [
      4,
      2,
      2
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(reverse(input),-5))),1)"
  },
  {
    "input": "input : list = [1, -3, -2, 5, 4, 1]\noutput : list = [-12, 0, 36, 36, 72, 84]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n([1, -3, -2, 5, 4, 1],4),2),-3),-4))",
    "io_inp": [
      1,
      -3,
      -2,
      5,
      4,
      1
    ],
    "io_out": [
      -12,
      0,
      36,
      36,
      72,
      84
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n(input,4),2),-3),-4))"
  },
  {
    "input": "input : list = [-1, -3, -3, 2, -5]\noutput : list = [15, 0, -10, -10, -20]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(sort_asc([-1, -3, -3, 2, -5]),5)),5),-5)",
    "io_inp": [
      -1,
      -3,
      -3,
      2,
      -5
    ],
    "io_out": [
      15,
      0,
      -10,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(sort_asc(input),5)),5),-5)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc([2, -4])",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1, -4, -2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(take([4, 1, -4, -2],1)),-2),37),-3)",
    "io_inp": [
      4,
      1,
      -4,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(take(input,1)),-2),37),-3)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [5, 11]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(sort_des([-2, 4]),3),-2)),2)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      5,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(sort_des(input),3),-2)),2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [1, 5]",
    "output": "generated_output : list = add_n(reverse(add_n([3, -1],-1)),3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,-1)),3)"
  },
  {
    "input": "input : list = [4, -2, 3, -1, 4]\noutput : list = [-2, -1, 3, 4, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_des([4, -2, 3, -1, 4])))))",
    "io_inp": [
      4,
      -2,
      3,
      -1,
      4
    ],
    "io_out": [
      -2,
      -1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, 0, -3, -4, 4]\noutput : list = [-2, -2, -1, 2, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des([-4, 0, -3, -4, 4])),2)",
    "io_inp": [
      -4,
      0,
      -3,
      -4,
      4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),2)"
  },
  {
    "input": "input : list = [-5, -2, 0, -2, -5, 0]\noutput : list = [16, 16, 8, 8, -4, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n(sort_des([-5, -2, 0, -2, -5, 0]),4)),4))",
    "io_inp": [
      -5,
      -2,
      0,
      -2,
      -5,
      0
    ],
    "io_out": [
      16,
      16,
      8,
      8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(sort_des(input),4)),4))"
  },
  {
    "input": "input : list = [-5, -4, 1, 2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(drop([-5, -4, 1, 2, 1],3)))))",
    "io_inp": [
      -5,
      -4,
      1,
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(drop(input,3)))))"
  },
  {
    "input": "input : list = [4, -1, -3, 1, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = mul_n(take(take([4, -1, -3, 1, 1],2),4),-1)",
    "io_inp": [
      4,
      -1,
      -3,
      1,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,2),4),-1)"
  },
  {
    "input": "input : list = [-1, -5, 0, -2]\noutput : list = [-6, -4, -9, -5]",
    "output": "generated_output : list = reverse(add_n(add_n([-1, -5, 0, -2],1),-5))",
    "io_inp": [
      -1,
      -5,
      0,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,1),-5))"
  },
  {
    "input": "input : list = [1, 1, 4, -4, 0, 0]\noutput : list = [3, 3, 6, -2, 2, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n([1, 1, 4, -4, 0, 0],-4))),2)",
    "io_inp": [
      1,
      1,
      4,
      -4,
      0,
      0
    ],
    "io_out": [
      3,
      3,
      6,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(input,-4))),2)"
  },
  {
    "input": "input : list = [-5, -5, -2, -1, 0]\noutput : list = [-3, -4, -5, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_des([-5, -5, -2, -1, 0])))),3)",
    "io_inp": [
      -5,
      -5,
      -2,
      -1,
      0
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [12, 12, 9]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(mul_n([-5, -5, -4],-3)),-3)))",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      12,
      12,
      9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(mul_n(input,-3)),-3)))"
  },
  {
    "input": "input : list = [-5, 1, 0, -5, 3]\noutput : list = [-20, 20, 40, 140, 140]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_des([-5, 1, 0, -5, 3]),-2)),4),-5)",
    "io_inp": [
      -5,
      1,
      0,
      -5,
      3
    ],
    "io_out": [
      -20,
      20,
      40,
      140,
      140
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_des(input),-2)),4),-5)"
  },
  {
    "input": "input : list = [1, -5, 3, -1]\noutput : list = [82, 18, -14, -46]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(mul_n([1, -5, 3, -1],-4),-2)),-2),-2)",
    "io_inp": [
      1,
      -5,
      3,
      -1
    ],
    "io_out": [
      82,
      18,
      -14,
      -46
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(mul_n(input,-4),-2)),-2),-2)"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [20]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take([-5, 4, 1],1)),-4),4),-4)",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take(input,1)),-4),4),-4)"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(sub_n([-4, 4, 5],-4),5))))",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(sub_n(input,-4),5))))"
  },
  {
    "input": "input : list = [1, 4, 0, 5, -3]\noutput : list = [6, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(drop([1, 4, 0, 5, -3],3),-2)),-3))",
    "io_inp": [
      1,
      4,
      0,
      5,
      -3
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(drop(input,3),-2)),-3))"
  },
  {
    "input": "input : list = [-5, 5, 3, 5, 5]\noutput : list = [-4, 6, 4, 6, 6]",
    "output": "generated_output : list = add_n([-5, 5, 3, 5, 5],1)",
    "io_inp": [
      -5,
      5,
      3,
      5,
      5
    ],
    "io_out": [
      -4,
      6,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, 5, 5, -4]\noutput : list = [-3, 2, 6, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc([1, 5, 5, -4])),11),-1)",
    "io_inp": [
      1,
      5,
      5,
      -4
    ],
    "io_out": [
      -3,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(input)),11),-1)"
  },
  {
    "input": "input : list = [3, -1, 3]\noutput : list = [-13, -13, 7]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_asc([3, -1, 3])),-1),-5),3)",
    "io_inp": [
      3,
      -1,
      3
    ],
    "io_out": [
      -13,
      -13,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_asc(input)),-1),-5),3)"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-1, -1, -5]",
    "output": "generated_output : list = reverse(sort_asc([-1, -5, -1]))",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([1, 4],-3)))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [0, -4, 5, -3, -1]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(drop(mul_n([0, -4, 5, -3, -1],-1),4)),5),-2)",
    "io_inp": [
      0,
      -4,
      5,
      -3,
      -1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(drop(mul_n(input,-1),4)),5),-2)"
  },
  {
    "input": "input : list = [-4, 0, 4, 0, 1]\noutput : list = [0, 4, 4, 5, 8]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(reverse([-4, 0, 4, 0, 1])),1),32),3)",
    "io_inp": [
      -4,
      0,
      4,
      0,
      1
    ],
    "io_out": [
      0,
      4,
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(reverse(input)),1),32),3)"
  },
  {
    "input": "input : list = [-5, -3, 1, -3, 5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take([-5, -3, 1, -3, 5],2)",
    "io_inp": [
      -5,
      -3,
      1,
      -3,
      5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 3, -5, 0]\noutput : list = [-3, -1, 2, 5]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(sort_asc([-3, 3, -5, 0]))),-2),7)",
    "io_inp": [
      -3,
      3,
      -5,
      0
    ],
    "io_out": [
      -3,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(sort_asc(input))),-2),7)"
  },
  {
    "input": "input : list = [5, 4, -5, 3, -4]\noutput : list = [1, 8, 0, 9, 10]",
    "output": "generated_output : list = add_n(reverse([5, 4, -5, 3, -4]),5)",
    "io_inp": [
      5,
      4,
      -5,
      3,
      -4
    ],
    "io_out": [
      1,
      8,
      0,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-4, 0, 3, 2, -4]\noutput : list = [-13, -10]",
    "output": "generated_output : list = add_n(mul_n(reverse(drop(sort_asc([-4, 0, 3, 2, -4]),3)),-3),-4)",
    "io_inp": [
      -4,
      0,
      3,
      2,
      -4
    ],
    "io_out": [
      -13,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(drop(sort_asc(input),3)),-3),-4)"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = take(take(drop([1, 4, 5],1),13),17)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(drop(input,1),13),17)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [60, 15]",
    "output": "generated_output : list = sort_des(mul_n(take(take(mul_n([4, 1],-3),8),17),-5))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      60,
      15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(mul_n(input,-3),8),17),-5))"
  },
  {
    "input": "input : list = [5, -5, 0, -1]\noutput : list = [15, 0, -3, -15]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n([5, -5, 0, -1],3),6)))",
    "io_inp": [
      5,
      -5,
      0,
      -1
    ],
    "io_out": [
      15,
      0,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(input,3),6)))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse([2, 1]),-3),-2)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-3),-2)"
  },
  {
    "input": "input : list = [-5, 3, -3, 1, 1, -2]\noutput : list = [-20, -12, 4, 12]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(take([-5, 3, -3, 1, 1, -2],4))),4),9)",
    "io_inp": [
      -5,
      3,
      -3,
      1,
      1,
      -2
    ],
    "io_out": [
      -20,
      -12,
      4,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(take(input,4))),4),9)"
  },
  {
    "input": "input : list = [2, 3, 0]\noutput : list = [-5, -45, -65]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n([2, 3, 0],5),-4),-5))",
    "io_inp": [
      2,
      3,
      0
    ],
    "io_out": [
      -5,
      -45,
      -65
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(input,5),-4),-5))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-10, -2]",
    "output": "generated_output : list = mul_n([-5, -1],2)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-40, 200]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(mul_n([-1, 5],-4),2),-5)))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -40,
      200
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(mul_n(input,-4),2),-5)))"
  },
  {
    "input": "input : list = [0, -2, 4, -5, -2, 0]\noutput : list = [1, -1, -4, 5, -1, 1]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(reverse([0, -2, 4, -5, -2, 0]),21),2),-5),-4)",
    "io_inp": [
      0,
      -2,
      4,
      -5,
      -2,
      0
    ],
    "io_out": [
      1,
      -1,
      -4,
      5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(reverse(input),21),2),-5),-4)"
  },
  {
    "input": "input : list = [-2, 0, 2, 0, 2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(take([-2, 0, 2, 0, 2],1),4))),5)",
    "io_inp": [
      -2,
      0,
      2,
      0,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(take(input,1),4))),5)"
  },
  {
    "input": "input : list = [5, -2, 5, -2]\noutput : list = [-10, -10, -3, -3]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(sort_asc([5, -2, 5, -2]),-5)),-3),46)",
    "io_inp": [
      5,
      -2,
      5,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(sort_asc(input),-5)),-3),46)"
  },
  {
    "input": "input : list = [3, -4, -2, 2]\noutput : list = [3, -4, -2, 2]",
    "output": "generated_output : list = mul_n([3, -4, -2, 2],1)",
    "io_inp": [
      3,
      -4,
      -2,
      2
    ],
    "io_out": [
      3,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, 3, -1, -4, 1, 4]\noutput : list = [4, 3, 1, -1, -4]",
    "output": "generated_output : list = sort_des(drop([-1, 3, -1, -4, 1, 4],1))",
    "io_inp": [
      -1,
      3,
      -1,
      -4,
      1,
      4
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -4, 3, 2, -3, -2]\noutput : list = [3, 2, 1, 0, -3, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-1, -4, 3, 2, -3, -2]),-1),1)",
    "io_inp": [
      -1,
      -4,
      3,
      2,
      -3,
      -2
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),-1),1)"
  },
  {
    "input": "input : list = [-2, -2, -2, 3]\noutput : list = [-2, -2, -2, 3]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc([-2, -2, -2, 3]),-5),12),5)",
    "io_inp": [
      -2,
      -2,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(input),-5),12),5)"
  },
  {
    "input": "input : list = [3, -4, -1, -2, -5, -5]\noutput : list = [-12, -12, -8, 0, 4, 20]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_asc([3, -4, -1, -2, -5, -5]))),-2),4)",
    "io_inp": [
      3,
      -4,
      -1,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -12,
      -12,
      -8,
      0,
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_asc(input))),-2),4)"
  },
  {
    "input": "input : list = [2, 2, 0, -3, -4]\noutput : list = [-26, -24, -18, -14, -14]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(sub_n([2, 2, 0, -3, -4],5),4)),32),2)",
    "io_inp": [
      2,
      2,
      0,
      -3,
      -4
    ],
    "io_out": [
      -26,
      -24,
      -18,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(sub_n(input,5),4)),32),2)"
  },
  {
    "input": "input : list = [-4, 0, -4, 2, 4]\noutput : list = [5, 3, -3, 1, -3]",
    "output": "generated_output : list = add_n(sub_n(reverse(reverse(reverse([-4, 0, -4, 2, 4]))),-2),-1)",
    "io_inp": [
      -4,
      0,
      -4,
      2,
      4
    ],
    "io_out": [
      5,
      3,
      -3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(reverse(reverse(input))),-2),-1)"
  },
  {
    "input": "input : list = [-4, -5, 5, -2, 1, -3]\noutput : list = [-8, -6, -4, -2, 4, 12]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_asc([-4, -5, 5, -2, 1, -3]),-1),2)),10)",
    "io_inp": [
      -4,
      -5,
      5,
      -2,
      1,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -2,
      4,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_asc(input),-1),2)),10)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [7, 15]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(mul_n([-3, -1],-4),-3))))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      7,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(mul_n(input,-4),-3))))"
  },
  {
    "input": "input : list = [-3, 0, 4, 3, 1]\noutput : list = [-6]",
    "output": "generated_output : list = take(reverse(sub_n(take(add_n([-3, 0, 4, 3, 1],-5),1),-2)),40)",
    "io_inp": [
      -3,
      0,
      4,
      3,
      1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(add_n(input,-5),1),-2)),40)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(add_n(take(sort_des([5, 5]),11),-1))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(input),11),-1))"
  },
  {
    "input": "input : list = [2, 0, -4, 3, -5, 5]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(take([2, 0, -4, 3, -5, 5],1),9),-5),-3))",
    "io_inp": [
      2,
      0,
      -4,
      3,
      -5,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(take(input,1),9),-5),-3))"
  },
  {
    "input": "input : list = [0, 3, -5, 3, -4]\noutput : list = [4, 7, -1, 7, 0]",
    "output": "generated_output : list = add_n([0, 3, -5, 3, -4],4)",
    "io_inp": [
      0,
      3,
      -5,
      3,
      -4
    ],
    "io_out": [
      4,
      7,
      -1,
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sub_n([-2, 5],-1)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 3, 4, -2, -5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_des(take(take(take([-1, 3, 4, -2, -5],1),2),17)),1)",
    "io_inp": [
      -1,
      3,
      4,
      -2,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(take(input,1),2),17)),1)"
  },
  {
    "input": "input : list = [-3, 2, 1, 0]\noutput : list = [0, 1, 2, -3]",
    "output": "generated_output : list = reverse([-3, 2, 1, 0])",
    "io_inp": [
      -3,
      2,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 3, -5, 1, -1, -2]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(drop([-4, 3, -5, 1, -1, -2],4)),-4),3))",
    "io_inp": [
      -4,
      3,
      -5,
      1,
      -1,
      -2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(drop(input,4)),-4),3))"
  },
  {
    "input": "input : list = [-4, 2, -4, 0, 4]\noutput : list = [-4, 0, 2, 4]",
    "output": "generated_output : list = take(take(drop(take(sort_asc([-4, 2, -4, 0, 4]),18),1),37),33)",
    "io_inp": [
      -4,
      2,
      -4,
      0,
      4
    ],
    "io_out": [
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(take(drop(take(sort_asc(input),18),1),37),33)"
  },
  {
    "input": "input : list = [-4, 0, 3, -4]\noutput : list = [1, -2, -6, -6]",
    "output": "generated_output : list = take(reverse(sort_asc(take(sub_n([-4, 0, 3, -4],2),20))),46)",
    "io_inp": [
      -4,
      0,
      3,
      -4
    ],
    "io_out": [
      1,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(sub_n(input,2),20))),46)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-10, -4]",
    "output": "generated_output : list = add_n(take(reverse(sub_n([4, -2],5)),17),-3)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -10,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(input,5)),17),-3)"
  },
  {
    "input": "input : list = [0, -1, 4, 4]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(take([0, -1, 4, 4],1),4),5),-2),-5)",
    "io_inp": [
      0,
      -1,
      4,
      4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(take(input,1),4),5),-2),-5)"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [-3, 1, -7]",
    "output": "generated_output : list = sub_n(mul_n([-3, -1, -5],2),-3)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      -3,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-3)"
  },
  {
    "input": "input : list = [-3, -1, -3, -5]\noutput : list = [-5, -3, -3, -1]",
    "output": "generated_output : list = sort_asc([-3, -1, -3, -5])",
    "io_inp": [
      -3,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [0, -2, -7]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc([2, 0, -5])),-5)),3)",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc(input)),-5)),3)"
  },
  {
    "input": "input : list = [0, -2, -4, 2, -5]\noutput : list = [-5, -4, -2, 0, 2]",
    "output": "generated_output : list = take(sort_asc([0, -2, -4, 2, -5]),14)",
    "io_inp": [
      0,
      -2,
      -4,
      2,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [-4, -1, -4, -2, 2, 0]\noutput : list = [-3]",
    "output": "generated_output : list = take(reverse(add_n(add_n(take([-4, -1, -4, -2, 2, 0],1),4),-3)),33)",
    "io_inp": [
      -4,
      -1,
      -4,
      -2,
      2,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(take(input,1),4),-3)),33)"
  },
  {
    "input": "input : list = [3, -5, 1, -3, -1, 4]\noutput : list = [12]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take(mul_n([3, -5, 1, -3, -1, 4],4),1))))",
    "io_inp": [
      3,
      -5,
      1,
      -3,
      -1,
      4
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(mul_n(input,4),1))))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [2, 10]",
    "output": "generated_output : list = mul_n([-1, -5],-2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 3, 3, -4, -2]\noutput : list = [6, 12, -9, -9, 9]",
    "output": "generated_output : list = take(reverse(mul_n([-3, 3, 3, -4, -2],-3)),5)",
    "io_inp": [
      -3,
      3,
      3,
      -4,
      -2
    ],
    "io_out": [
      6,
      12,
      -9,
      -9,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,-3)),5)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [24, 24]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(reverse([4, 4]),9),-2),4))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(reverse(input),9),-2),4))"
  },
  {
    "input": "input : list = [-3, -3, -5, 0, -3]\noutput : list = [0, -3, -3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([-3, -3, -5, 0, -3]))",
    "io_inp": [
      -3,
      -3,
      -5,
      0,
      -3
    ],
    "io_out": [
      0,
      -3,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, 4, 1, -5, -3, -4]\noutput : list = [-3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(drop([4, 4, 1, -5, -3, -4],2)),3)))",
    "io_inp": [
      4,
      4,
      1,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(drop(input,2)),3)))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(sub_n([1, 2],-1),7)),-5))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(sub_n(input,-1),7)),-5))"
  },
  {
    "input": "input : list = [-5, -3, -5, -2, 3]\noutput : list = [-3, -1, -3, 0, 5]",
    "output": "generated_output : list = add_n([-5, -3, -5, -2, 3],2)",
    "io_inp": [
      -5,
      -3,
      -5,
      -2,
      3
    ],
    "io_out": [
      -3,
      -1,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(sub_n([4, 4],3),4))))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(sub_n(input,3),4))))"
  },
  {
    "input": "input : list = [1, 2, -2, -2]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(take([1, 2, -2, -2],1)),5)))",
    "io_inp": [
      1,
      2,
      -2,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(take(input,1)),5)))"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [-16, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(reverse([-5, -4, -4]))),4))",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [-2, 5, -4, 2, 4, -5]\noutput : list = [8, 7, 5, 1, -1, -2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sort_des([-2, 5, -4, 2, 4, -5])),3),43))",
    "io_inp": [
      -2,
      5,
      -4,
      2,
      4,
      -5
    ],
    "io_out": [
      8,
      7,
      5,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sort_des(input)),3),43))"
  },
  {
    "input": "input : list = [-2, -5, 0, -4, -1]\noutput : list = [-18, -15, -9, -6, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sort_des([-2, -5, 0, -4, -1]),3),1),2))",
    "io_inp": [
      -2,
      -5,
      0,
      -4,
      -1
    ],
    "io_out": [
      -18,
      -15,
      -9,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sort_des(input),3),1),2))"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [-49, -74, 26]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(mul_n([2, 3, -1],5),-5),-3),2),1)",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      -49,
      -74,
      26
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(mul_n(input,5),-5),-3),2),1)"
  },
  {
    "input": "input : list = [3, 2, 0, 1, -1]\noutput : list = [16, 12, 4, 8, 0]",
    "output": "generated_output : list = mul_n(add_n([3, 2, 0, 1, -1],1),4)",
    "io_inp": [
      3,
      2,
      0,
      1,
      -1
    ],
    "io_out": [
      16,
      12,
      4,
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),4)"
  },
  {
    "input": "input : list = [2, 5, -2, -3]\noutput : list = [-36, -24, -8, -4]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(sort_asc([2, 5, -2, -3]),-4)),-4),47)",
    "io_inp": [
      2,
      5,
      -2,
      -3
    ],
    "io_out": [
      -36,
      -24,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(sort_asc(input),-4)),-4),47)"
  },
  {
    "input": "input : list = [-5, 5, 2, 2]\noutput : list = [0, -14, -14, -20]",
    "output": "generated_output : list = sort_des(mul_n(add_n([-5, 5, 2, 2],5),-2))",
    "io_inp": [
      -5,
      5,
      2,
      2
    ],
    "io_out": [
      0,
      -14,
      -14,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,5),-2))"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [-64, -48, -32]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(reverse([-3, -4, -2])),-1),-4),4)",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      -64,
      -48,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(reverse(input)),-1),-4),4)"
  },
  {
    "input": "input : list = [4, 3, -4]\noutput : list = [-54, 9, 18]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(mul_n([4, 3, -4],-3)),5),1),-3)",
    "io_inp": [
      4,
      3,
      -4
    ],
    "io_out": [
      -54,
      9,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(mul_n(input,-3)),5),1),-3)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-1, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([0, -2, -5]),-4))",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [-5, -3, 1, 4]\noutput : list = [-91, -59, 5, 53]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_asc([-5, -3, 1, 4]),-4),-3),-4),-1)",
    "io_inp": [
      -5,
      -3,
      1,
      4
    ],
    "io_out": [
      -91,
      -59,
      5,
      53
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_asc(input),-4),-3),-4),-1)"
  },
  {
    "input": "input : list = [1, 3, -3, 1, 1, 3]\noutput : list = [1, 3, -3, 1, 1, 3]",
    "output": "generated_output : list = mul_n([1, 3, -3, 1, 1, 3],1)",
    "io_inp": [
      1,
      3,
      -3,
      1,
      1,
      3
    ],
    "io_out": [
      1,
      3,
      -3,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [5, 4, -5, 4]\noutput : list = [18, 0, 0, -2]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc(add_n([5, 4, -5, 4],-4))),-2))",
    "io_inp": [
      5,
      4,
      -5,
      4
    ],
    "io_out": [
      18,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(add_n(input,-4))),-2))"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des([3, -2, 3]))),1),25)",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des(input))),1),25)"
  },
  {
    "input": "input : list = [-3, 0, -4, -1, 1]\noutput : list = [12, 9, 3, 0, -3]",
    "output": "generated_output : list = mul_n(sort_asc([-3, 0, -4, -1, 1]),-3)",
    "io_inp": [
      -3,
      0,
      -4,
      -1,
      1
    ],
    "io_out": [
      12,
      9,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [2, 1, 2, -4, 4, -4]\noutput : list = [2, 0, 0, -1, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n([2, 1, 2, -4, 4, -4],2))",
    "io_inp": [
      2,
      1,
      2,
      -4,
      4,
      -4
    ],
    "io_out": [
      2,
      0,
      0,
      -1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [2, -3, -5, -5]\noutput : list = [0, 0, 2, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(sort_des([2, -3, -5, -5]),8),-5)))",
    "io_inp": [
      2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(sort_des(input),8),-5)))"
  },
  {
    "input": "input : list = [5, -4, 5, 4, 3]\noutput : list = [-12, 9, 12, 15, 15]",
    "output": "generated_output : list = mul_n(sort_asc([5, -4, 5, 4, 3]),3)",
    "io_inp": [
      5,
      -4,
      5,
      4,
      3
    ],
    "io_out": [
      -12,
      9,
      12,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [4, -1, 2, 2, -2]\noutput : list = [-27, -17, -17, -2, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n([4, -1, 2, 2, -2],-5))),3),4)",
    "io_inp": [
      4,
      -1,
      2,
      2,
      -2
    ],
    "io_out": [
      -27,
      -17,
      -17,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n(input,-5))),3),4)"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [-3, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(add_n([-2, 1, 3],-1),1),12)))",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(add_n(input,-1),1),12)))"
  },
  {
    "input": "input : list = [4, -1, -2, 1, 4]\noutput : list = [-64, -64, -40, -24, -16]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sub_n([4, -1, -2, 1, 4],-4),4))),-2)",
    "io_inp": [
      4,
      -1,
      -2,
      1,
      4
    ],
    "io_out": [
      -64,
      -64,
      -40,
      -24,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sub_n(input,-4),4))),-2)"
  },
  {
    "input": "input : list = [-5, -1, 4, -3, -5, 1]\noutput : list = [4, 1, -1, -3, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -1, 4, -3, -5, 1])",
    "io_inp": [
      -5,
      -1,
      4,
      -3,
      -5,
      1
    ],
    "io_out": [
      4,
      1,
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, 0, 0, -4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(drop([-1, -2, 0, 0, -4],3)),2)),33)",
    "io_inp": [
      -1,
      -2,
      0,
      0,
      -4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(drop(input,3)),2)),33)"
  },
  {
    "input": "input : list = [3, -4, 3, 3, -5]\noutput : list = [6, -8, 6, 6, -10]",
    "output": "generated_output : list = mul_n([3, -4, 3, 3, -5],2)",
    "io_inp": [
      3,
      -4,
      3,
      3,
      -5
    ],
    "io_out": [
      6,
      -8,
      6,
      6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(add_n(take(take(take([1, 3, 1],1),10),8),-2),-1)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(take(input,1),10),8),-2),-1)"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [5, 3]",
    "output": "generated_output : list = add_n(add_n(reverse(drop([3, 2, 4],1)),4),-3)",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(drop(input,1)),4),-3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-3, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des(reverse([-5, 1]))),-4))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-5, 4, 1, -5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(drop([-5, 4, 1, -5, 4],3))",
    "io_inp": [
      -5,
      4,
      1,
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [-15, -9, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse([5, 3, 0])),-3)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      -15,
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [4, 2, 5, 4, -1, 3]\noutput : list = [-26, -21, -21, -16, -11, 4]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([4, 2, 5, 4, -1, 3],-5)),1)",
    "io_inp": [
      4,
      2,
      5,
      4,
      -1,
      3
    ],
    "io_out": [
      -26,
      -21,
      -21,
      -16,
      -11,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,-5)),1)"
  },
  {
    "input": "input : list = [-4, -3, 4, -2]\noutput : list = [-2, -1, 0, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc([-4, -3, 4, -2]))),2)",
    "io_inp": [
      -4,
      -3,
      4,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(input))),2)"
  },
  {
    "input": "input : list = [-1, -2, -2, 1, 0, 3]\noutput : list = [-2, -2, -1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([-1, -2, -2, 1, 0, 3])",
    "io_inp": [
      -1,
      -2,
      -2,
      1,
      0,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, -3, -1]\noutput : list = [14]",
    "output": "generated_output : list = sub_n(take(sub_n(take(take([4, -2, -3, -1],1),7),-5),39),-5)",
    "io_inp": [
      4,
      -2,
      -3,
      -1
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(take(input,1),7),-5),39),-5)"
  },
  {
    "input": "input : list = [-4, -5, -4]\noutput : list = [-11, -11, -15]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(mul_n([-4, -5, -4],4))),-4),-1)",
    "io_inp": [
      -4,
      -5,
      -4
    ],
    "io_out": [
      -11,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(mul_n(input,4))),-4),-1)"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, -5, -5],1),5)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-3, 0, -2, -2, -4, 2]\noutput : list = [2, 6, 10, 10, 12, 14]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sort_des([-3, 0, -2, -2, -4, 2]),-2),22),4),2)",
    "io_inp": [
      -3,
      0,
      -2,
      -2,
      -4,
      2
    ],
    "io_out": [
      2,
      6,
      10,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sort_des(input),-2),22),4),2)"
  },
  {
    "input": "input : list = [1, 0, -1, -3]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = drop([1, 0, -1, -3],1)",
    "io_inp": [
      1,
      0,
      -1,
      -3
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -1, 0, 1, 4]\noutput : list = [-5, -1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([-5, -1, 0, 1, 4])",
    "io_inp": [
      -5,
      -1,
      0,
      1,
      4
    ],
    "io_out": [
      -5,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, 5, 4, -1, 4]\noutput : list = [4, -3, 5, 4]",
    "output": "generated_output : list = take([4, -3, 5, 4, -1, 4],4)",
    "io_inp": [
      4,
      -3,
      5,
      4,
      -1,
      4
    ],
    "io_out": [
      4,
      -3,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-3, -1, 1, -1, 2]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = sort_des(take([-3, -1, 1, -1, 2],3))",
    "io_inp": [
      -3,
      -1,
      1,
      -1,
      2
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-5, -5, 5, -2, -5, 3]\noutput : list = [15, 15, -15, 6, 15, -9]",
    "output": "generated_output : list = mul_n([-5, -5, 5, -2, -5, 3],-3)",
    "io_inp": [
      -5,
      -5,
      5,
      -2,
      -5,
      3
    ],
    "io_out": [
      15,
      15,
      -15,
      6,
      15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, -3, -4, -5, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = drop([1, -3, -4, -5, 2, 2],4)",
    "io_inp": [
      1,
      -3,
      -4,
      -5,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [2, 2, -3, -4, 0]\noutput : list = [20, 15, 0]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(drop([2, 2, -3, -4, 0],2)),-5)))",
    "io_inp": [
      2,
      2,
      -3,
      -4,
      0
    ],
    "io_out": [
      20,
      15,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(drop(input,2)),-5)))"
  },
  {
    "input": "input : list = [0, -1, -5, 5, 1, 4]\noutput : list = [-8, -7, -4, -3, -2, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sort_des([0, -1, -5, 5, 1, 4]),-3))),-1)",
    "io_inp": [
      0,
      -1,
      -5,
      5,
      1,
      4
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sort_des(input),-3))),-1)"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [2]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(take([0, -4, -2],1),2),3)),2)",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(take(input,1),2),3)),2)"
  },
  {
    "input": "input : list = [5, 0, -5, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(add_n([5, 0, -5, -3],-4),1),1)))",
    "io_inp": [
      5,
      0,
      -5,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(add_n(input,-4),1),1)))"
  },
  {
    "input": "input : list = [2, 0, 5, 4, -3, 3]\noutput : list = [0, -6]",
    "output": "generated_output : list = drop(reverse(sort_asc(add_n(drop([2, 0, 5, 4, -3, 3],2),-3))),2)",
    "io_inp": [
      2,
      0,
      5,
      4,
      -3,
      3
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_asc(add_n(drop(input,2),-3))),2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [30, -5]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(sort_asc([2, -5]),-4),-2),-5),-5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      30,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(sort_asc(input),-4),-2),-5),-5)"
  },
  {
    "input": "input : list = [0, -5, 0, 3, -3, -1]\noutput : list = [-5, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(take([0, -5, 0, 3, -3, -1],3)))",
    "io_inp": [
      0,
      -5,
      0,
      3,
      -3,
      -1
    ],
    "io_out": [
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,3)))"
  },
  {
    "input": "input : list = [-5, 2, 3, -4]\noutput : list = [1, 0, -6, -7]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(sort_asc([-5, 2, 3, -4]))),2),44)",
    "io_inp": [
      -5,
      2,
      3,
      -4
    ],
    "io_out": [
      1,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(sort_asc(input))),2),44)"
  },
  {
    "input": "input : list = [3, 5, 2, 4, 4, -1]\noutput : list = [-58, -98, -38, -78, -78, 22]",
    "output": "generated_output : list = add_n(mul_n(mul_n([3, 5, 2, 4, 4, -1],4),-5),2)",
    "io_inp": [
      3,
      5,
      2,
      4,
      4,
      -1
    ],
    "io_out": [
      -58,
      -98,
      -38,
      -78,
      -78,
      22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,4),-5),2)"
  },
  {
    "input": "input : list = [-2, -5, 5, -5, 1]\noutput : list = [-30, -30, -21, -12, 0]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(add_n([-2, -5, 5, -5, 1],-4),-2),3),3))",
    "io_inp": [
      -2,
      -5,
      5,
      -5,
      1
    ],
    "io_out": [
      -30,
      -30,
      -21,
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(add_n(input,-4),-2),3),3))"
  },
  {
    "input": "input : list = [3, -5, 2, 4, 1]\noutput : list = [3, -5]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(take([3, -5, 2, 4, 1],2))),32),1)",
    "io_inp": [
      3,
      -5,
      2,
      4,
      1
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(take(input,2))),32),1)"
  },
  {
    "input": "input : list = [3, 0, 5, -4, 2]\noutput : list = [24, 0]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(drop([3, 0, 5, -4, 2],3)),9),4),4)",
    "io_inp": [
      3,
      0,
      5,
      -4,
      2
    ],
    "io_out": [
      24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(drop(input,3)),9),4),4)"
  },
  {
    "input": "input : list = [-3, 4, -2, -3, 3]\noutput : list = [-4, 0, 20, 24, 24]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n([-3, 4, -2, -3, 3],3))),-4)",
    "io_inp": [
      -3,
      4,
      -2,
      -3,
      3
    ],
    "io_out": [
      -4,
      0,
      20,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(input,3))),-4)"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [-32, 288, -112]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(mul_n([0, 4, -1],5),-2),-1),-4),4)",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      -32,
      288,
      -112
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(mul_n(input,5),-2),-1),-4),4)"
  },
  {
    "input": "input : list = [-4, -2, 3, -4, 0, -1]\noutput : list = [-3, -4, -7]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(drop([-4, -2, 3, -4, 0, -1],3)),-3)),39)",
    "io_inp": [
      -4,
      -2,
      3,
      -4,
      0,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(drop(input,3)),-3)),39)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [2, 3, 7]",
    "output": "generated_output : list = sort_asc(sub_n([-2, -1, 3],-4))",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [4, -2, -5, 5]\noutput : list = [0, -10, -7, -1]",
    "output": "generated_output : list = reverse(mul_n(take(add_n([4, -2, -5, 5],-5),12),1))",
    "io_inp": [
      4,
      -2,
      -5,
      5
    ],
    "io_out": [
      0,
      -10,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(input,-5),12),1))"
  },
  {
    "input": "input : list = [3, -3, 2, -5, 3, 2]\noutput : list = [2, 0, -5, -5, -6, -6]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_des([3, -3, 2, -5, 3, 2])),-1),1),-3)",
    "io_inp": [
      3,
      -3,
      2,
      -5,
      3,
      2
    ],
    "io_out": [
      2,
      0,
      -5,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_des(input)),-1),1),-3)"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [1, 8]",
    "output": "generated_output : list = drop(sub_n([5, -4, 3],-5),1)",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-5),1)"
  },
  {
    "input": "input : list = [-2, 3, 4, 1, -3]\noutput : list = [4, 3, 1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse([-2, 3, 4, 1, -3]))",
    "io_inp": [
      -2,
      3,
      4,
      1,
      -3
    ],
    "io_out": [
      4,
      3,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [-5, -6, 2]",
    "output": "generated_output : list = sub_n(mul_n([2, 3, -5],-1),3)",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),3)"
  },
  {
    "input": "input : list = [3, 5, 2]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 5, 2])",
    "io_inp": [
      3,
      5,
      2
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [4, -4]",
    "output": "generated_output : list = add_n([3, -5],1)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, -5, 3, 1]\noutput : list = [-40, -35, -25, 5]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(add_n([4, -5, 3, 1],4))),-5))",
    "io_inp": [
      4,
      -5,
      3,
      1
    ],
    "io_out": [
      -40,
      -35,
      -25,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(add_n(input,4))),-5))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, -12]",
    "output": "generated_output : list = add_n(mul_n([0, 4],-4),4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),4)"
  },
  {
    "input": "input : list = [0, -2, 1, 0, 2, 5]\noutput : list = [5, 4, 6, 9]",
    "output": "generated_output : list = drop(sub_n(take(sub_n(add_n([0, -2, 1, 0, 2, 5],-2),-3),14),-3),2)",
    "io_inp": [
      0,
      -2,
      1,
      0,
      2,
      5
    ],
    "io_out": [
      5,
      4,
      6,
      9
    ],
    "output_masked": "generated_output : list = drop(sub_n(take(sub_n(add_n(input,-2),-3),14),-3),2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [6, 10]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(sub_n([3, -1],-4)),-3),3),8)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(sub_n(input,-4)),-3),3),8)"
  },
  {
    "input": "input : list = [-1, 1, 0, 4, 3, 2]\noutput : list = [5, 7, 6]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(take([-1, 1, 0, 4, 3, 2],3))),2),4)",
    "io_inp": [
      -1,
      1,
      0,
      4,
      3,
      2
    ],
    "io_out": [
      5,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(take(input,3))),2),4)"
  },
  {
    "input": "input : list = [-5, 0, -2, 4, 4]\noutput : list = [-8, -8, 0, 4, 10]",
    "output": "generated_output : list = take(mul_n(take(take(sort_des([-5, 0, -2, 4, 4]),12),25),-2),27)",
    "io_inp": [
      -5,
      0,
      -2,
      4,
      4
    ],
    "io_out": [
      -8,
      -8,
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(sort_des(input),12),25),-2),27)"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-3, -6, -7]",
    "output": "generated_output : list = take(take(sub_n(mul_n(sort_asc([2, -1, 3]),-1),4),29),15)",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(sort_asc(input),-1),4),29),15)"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [-6, 0, 3]",
    "output": "generated_output : list = add_n(sort_asc([2, -4, 5]),-2)",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      -6,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [0, -3, -3, -2]\noutput : list = [-1, -3, -4, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des(reverse([0, -3, -3, -2]))),-1))",
    "io_inp": [
      0,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-3, 1, 4, 3, -1]\noutput : list = [7, 6, 4, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(drop([-3, 1, 4, 3, -1],1),3))))",
    "io_inp": [
      -3,
      1,
      4,
      3,
      -1
    ],
    "io_out": [
      7,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(drop(input,1),3))))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [7, 5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(sort_des([4, 2]),10),-3)))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(sort_des(input),10),-3)))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [5, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n([0, 4],1))),-2)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(input,1))),-2)"
  },
  {
    "input": "input : list = [-5, 3, 1, 3, -2, -4]\noutput : list = [-2, -1, 1, 4, 6, 6]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(mul_n([-5, 3, 1, 3, -2, -4],1))),6),3)",
    "io_inp": [
      -5,
      3,
      1,
      3,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -1,
      1,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(mul_n(input,1))),6),3)"
  },
  {
    "input": "input : list = [4, -1, -3, -3]\noutput : list = [0, 5, 7, 7]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(sub_n([4, -1, -3, -3],4)),-1)))",
    "io_inp": [
      4,
      -1,
      -3,
      -3
    ],
    "io_out": [
      0,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(sub_n(input,4)),-1)))"
  },
  {
    "input": "input : list = [5, -4, 1, 3, -5, 3]\noutput : list = [-20, -16, 4, 12, 12, 20]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(sort_des([5, -4, 1, 3, -5, 3]),4))),32)",
    "io_inp": [
      5,
      -4,
      1,
      3,
      -5,
      3
    ],
    "io_out": [
      -20,
      -16,
      4,
      12,
      12,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(sort_des(input),4))),32)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-3, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(add_n([-3, -4, -4],1)),18)))",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(add_n(input,1)),18)))"
  },
  {
    "input": "input : list = [4, 4, 2, 3, 1]\noutput : list = [3, 3, 1, 2, 0]",
    "output": "generated_output : list = add_n([4, 4, 2, 3, 1],-1)",
    "io_inp": [
      4,
      4,
      2,
      3,
      1
    ],
    "io_out": [
      3,
      3,
      1,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, -3, 4, 3, 0]\noutput : list = [2, 5, 8, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(sort_asc([4, -3, 4, 3, 0]),10),-5)))",
    "io_inp": [
      4,
      -3,
      4,
      3,
      0
    ],
    "io_out": [
      2,
      5,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(sort_asc(input),10),-5)))"
  },
  {
    "input": "input : list = [-5, 4, 3, -3]\noutput : list = [-4, -2, 4, 5]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(sub_n([-5, 4, 3, -3],-4)),18)),-3)",
    "io_inp": [
      -5,
      4,
      3,
      -3
    ],
    "io_out": [
      -4,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(sub_n(input,-4)),18)),-3)"
  },
  {
    "input": "input : list = [2, 1, -1, 2]\noutput : list = [-2, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse([2, 1, -1, 2]),-1))",
    "io_inp": [
      2,
      1,
      -1,
      2
    ],
    "io_out": [
      -2,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [1, 4, -3, 3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(drop([1, 4, -3, 3, -2],3))))",
    "io_inp": [
      1,
      4,
      -3,
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(drop(input,3))))"
  },
  {
    "input": "input : list = [5, 1, -3, -3, 1]\noutput : list = [-3, -3, 1, 1, 5]",
    "output": "generated_output : list = mul_n(sort_asc([5, 1, -3, -3, 1]),1)",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      1
    ],
    "io_out": [
      -3,
      -3,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-5, 2, -5, 2, 5, -5]\noutput : list = [-2, 5, -2, 5, 8, -2]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(reverse([-5, 2, -5, 2, 5, -5])),-3),33),1)",
    "io_inp": [
      -5,
      2,
      -5,
      2,
      5,
      -5
    ],
    "io_out": [
      -2,
      5,
      -2,
      5,
      8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(reverse(input)),-3),33),1)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sub_n(drop([-3, 1, 3],1),-2))",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),-2))"
  },
  {
    "input": "input : list = [3, -5, 3, -4, -3]\noutput : list = [-5, -4, -3, 3, 3]",
    "output": "generated_output : list = reverse(sort_des([3, -5, 3, -4, -3]))",
    "io_inp": [
      3,
      -5,
      3,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sort_des(mul_n([2, 2],-5))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(sub_n([1, 5],3)),-1),-4))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(sub_n(input,3)),-1),-4))"
  },
  {
    "input": "input : list = [2, -2, -5, 0, -1, -2]\noutput : list = [-5, -2, -2, -1, 0, 2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(sub_n([2, -2, -5, 0, -1, -2],2)),4),-3),3)",
    "io_inp": [
      2,
      -2,
      -5,
      0,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(sub_n(input,2)),4),-3),3)"
  },
  {
    "input": "input : list = [-3, -5, -3, -1, 1]\noutput : list = [-9, -7, -5, -3]",
    "output": "generated_output : list = add_n(drop([-3, -5, -3, -1, 1],1),-4)",
    "io_inp": [
      -3,
      -5,
      -3,
      -1,
      1
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [-2, -1, 0, -2, 1]\noutput : list = [4, 3, 2, 4, 1]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(mul_n([-2, -1, 0, -2, 1],-1),5),3),-3),3)",
    "io_inp": [
      -2,
      -1,
      0,
      -2,
      1
    ],
    "io_out": [
      4,
      3,
      2,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(mul_n(input,-1),5),3),-3),3)"
  },
  {
    "input": "input : list = [-5, 2, 2, -5]\noutput : list = [-1, 6, 6, -1]",
    "output": "generated_output : list = take(add_n(take(take(reverse([-5, 2, 2, -5]),17),29),4),48)",
    "io_inp": [
      -5,
      2,
      2,
      -5
    ],
    "io_out": [
      -1,
      6,
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(reverse(input),17),29),4),48)"
  },
  {
    "input": "input : list = [-5, -3, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(drop([-5, -3, 1, -2],2))",
    "io_inp": [
      -5,
      -3,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-3, -1, -5, 5, -4]\noutput : list = [-6, -2, -4]",
    "output": "generated_output : list = reverse(add_n(take([-3, -1, -5, 5, -4],3),-1))",
    "io_inp": [
      -3,
      -1,
      -5,
      5,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(input,3),-1))"
  },
  {
    "input": "input : list = [2, -3, 3, 4, -3]\noutput : list = [6, 6, -4, -6, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n([2, -3, 3, 4, -3],-2)),34))",
    "io_inp": [
      2,
      -3,
      3,
      4,
      -3
    ],
    "io_out": [
      6,
      6,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(input,-2)),34))"
  },
  {
    "input": "input : list = [1, -2, 3, 2, -4, 2]\noutput : list = [-7, -5, -2, -1, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n([1, -2, 3, 2, -4, 2],-3))))",
    "io_inp": [
      1,
      -2,
      3,
      2,
      -4,
      2
    ],
    "io_out": [
      -7,
      -5,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(input,-3))))"
  },
  {
    "input": "input : list = [2, -3, 5, -4, 2]\noutput : list = [4, -1, 7, -2, 4]",
    "output": "generated_output : list = sub_n([2, -3, 5, -4, 2],-2)",
    "io_inp": [
      2,
      -3,
      5,
      -4,
      2
    ],
    "io_out": [
      4,
      -1,
      7,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -3, -5, 0]\noutput : list = [-7, -8, -10, -5]",
    "output": "generated_output : list = add_n([-2, -3, -5, 0],-5)",
    "io_inp": [
      -2,
      -3,
      -5,
      0
    ],
    "io_out": [
      -7,
      -8,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 4, 3, 0, -1]\noutput : list = [-8, -6, -5, -2, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n([-3, 4, 3, 0, -1],1),-5)),-3),-4)",
    "io_inp": [
      -3,
      4,
      3,
      0,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n(input,1),-5)),-3),-4)"
  },
  {
    "input": "input : list = [-2, 4, 1, 0]\noutput : list = [-22, -2, 8, 38]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc([-2, 4, 1, 0]),-5),1),-2)",
    "io_inp": [
      -2,
      4,
      1,
      0
    ],
    "io_out": [
      -22,
      -2,
      8,
      38
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(input),-5),1),-2)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [13]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(take([3, -3, 0],1),-5),5),12))",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(take(input,1),-5),5),12))"
  },
  {
    "input": "input : list = [2, 0, 0]\noutput : list = [0, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_des([2, 0, 0]),-1),21)))",
    "io_inp": [
      2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_des(input),-1),21)))"
  },
  {
    "input": "input : list = [2, -5, 3, -2, 0]\noutput : list = [15, 6, 0, -6, -9]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_asc([2, -5, 3, -2, 0]),-1)),3))",
    "io_inp": [
      2,
      -5,
      3,
      -2,
      0
    ],
    "io_out": [
      15,
      6,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_asc(input),-1)),3))"
  },
  {
    "input": "input : list = [-4, -4, -1, 5, -5]\noutput : list = [-12, -12, 0, 24, -16]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(reverse([-4, -4, -1, 5, -5]),4),-4),14))",
    "io_inp": [
      -4,
      -4,
      -1,
      5,
      -5
    ],
    "io_out": [
      -12,
      -12,
      0,
      24,
      -16
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(reverse(input),4),-4),14))"
  },
  {
    "input": "input : list = [5, -5, 0, 4, -1]\noutput : list = [-3, -15, -18, -30, -33]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(add_n([5, -5, 0, 4, -1],1),5)),-5),-3)",
    "io_inp": [
      5,
      -5,
      0,
      4,
      -1
    ],
    "io_out": [
      -3,
      -15,
      -18,
      -30,
      -33
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(add_n(input,1),5)),-5),-3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-1, -2]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sort_asc([-3, -4]),-2))),1)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sort_asc(input),-2))),1)"
  },
  {
    "input": "input : list = [-5, -3, 4, -4, -2]\noutput : list = [-5, -4, -3, -2, 4]",
    "output": "generated_output : list = sort_asc([-5, -3, 4, -4, -2])",
    "io_inp": [
      -5,
      -3,
      4,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 1, 3, 3, -3]\noutput : list = [2, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(drop([3, 1, 3, 3, -3],1)),-5)))",
    "io_inp": [
      3,
      1,
      3,
      3,
      -3
    ],
    "io_out": [
      2,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(drop(input,1)),-5)))"
  },
  {
    "input": "input : list = [5, 4, -3, 5, -5]\noutput : list = [-20, -12, 16, 20, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([5, 4, -3, 5, -5])),4)",
    "io_inp": [
      5,
      4,
      -3,
      5,
      -5
    ],
    "io_out": [
      -20,
      -12,
      16,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),4)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [20]",
    "output": "generated_output : list = reverse(reverse(mul_n(take([-5, 5, 1],1),-4)))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(input,1),-4)))"
  },
  {
    "input": "input : list = [-3, 5, 2, -4, 3]\noutput : list = [8, 0]",
    "output": "generated_output : list = reverse(sub_n(take([-3, 5, 2, -4, 3],2),-3))",
    "io_inp": [
      -3,
      5,
      2,
      -4,
      3
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,2),-3))"
  },
  {
    "input": "input : list = [4, -5, 4, -4, -1]\noutput : list = [2, -7, 2]",
    "output": "generated_output : list = add_n(take([4, -5, 4, -4, -1],3),-2)",
    "io_inp": [
      4,
      -5,
      4,
      -4,
      -1
    ],
    "io_out": [
      2,
      -7,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-2)"
  },
  {
    "input": "input : list = [3, -3, -3, -1]\noutput : list = [-90, 30, 90, 90]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_asc([3, -3, -3, -1]),-2),3)),5)",
    "io_inp": [
      3,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -90,
      30,
      90,
      90
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_asc(input),-2),3)),5)"
  },
  {
    "input": "input : list = [1, -1, 3, -4]\noutput : list = [9, 7, 5, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sort_asc([1, -1, 3, -4]),9),-5)),1)",
    "io_inp": [
      1,
      -1,
      3,
      -4
    ],
    "io_out": [
      9,
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sort_asc(input),9),-5)),1)"
  },
  {
    "input": "input : list = [4, -1, 5, 4, -1]\noutput : list = [3, 2, -3]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take([4, -1, 5, 4, -1],3),-3),-5))",
    "io_inp": [
      4,
      -1,
      5,
      4,
      -1
    ],
    "io_out": [
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(input,3),-3),-5))"
  },
  {
    "input": "input : list = [0, 5, -5, -2]\noutput : list = [125, 0, -50, -125]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(reverse([0, 5, -5, -2]),-5))),-5)",
    "io_inp": [
      0,
      5,
      -5,
      -2
    ],
    "io_out": [
      125,
      0,
      -50,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(reverse(input),-5))),-5)"
  },
  {
    "input": "input : list = [-4, -1, 4]\noutput : list = [8, 2, -8]",
    "output": "generated_output : list = mul_n(mul_n([-4, -1, 4],-2),1)",
    "io_inp": [
      -4,
      -1,
      4
    ],
    "io_out": [
      8,
      2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),1)"
  },
  {
    "input": "input : list = [1, 4, -5, -1, 4]\noutput : list = [10, 2, -2, -8, -8]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(sort_asc([1, 4, -5, -1, 4]))),-2))",
    "io_inp": [
      1,
      4,
      -5,
      -1,
      4
    ],
    "io_out": [
      10,
      2,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [-2, -4, 4]",
    "output": "generated_output : list = reverse([4, -4, -2])",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 0, -1, 0, 3, -2]\noutput : list = [12, 8, 4, 4, -8, -16]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(mul_n([5, 0, -1, 0, 3, -2],-4),-4))),24)",
    "io_inp": [
      5,
      0,
      -1,
      0,
      3,
      -2
    ],
    "io_out": [
      12,
      8,
      4,
      4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(mul_n(input,-4),-4))),24)"
  },
  {
    "input": "input : list = [-5, 1, -3, 5, 2, -2]\noutput : list = [-9, -3]",
    "output": "generated_output : list = add_n(reverse(reverse(take([-5, 1, -3, 5, 2, -2],2))),-4)",
    "io_inp": [
      -5,
      1,
      -3,
      5,
      2,
      -2
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(input,2))),-4)"
  },
  {
    "input": "input : list = [5, -1, 5, -5, 4, -5]\noutput : list = [76, -14, 76]",
    "output": "generated_output : list = sub_n(drop(mul_n(reverse(mul_n([5, -1, 5, -5, 4, -5],-5)),-3),3),-1)",
    "io_inp": [
      5,
      -1,
      5,
      -5,
      4,
      -5
    ],
    "io_out": [
      76,
      -14,
      76
    ],
    "output_masked": "generated_output : list = sub_n(drop(mul_n(reverse(mul_n(input,-5)),-3),3),-1)"
  },
  {
    "input": "input : list = [3, 5, 5, -2, 1]\noutput : list = [10, 10, 6, 2, -4]",
    "output": "generated_output : list = mul_n(sort_des([3, 5, 5, -2, 1]),2)",
    "io_inp": [
      3,
      5,
      5,
      -2,
      1
    ],
    "io_out": [
      10,
      10,
      6,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [5, 2, -1, 5]\noutput : list = [-15, 9, -3, -15]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(reverse([5, 2, -1, 5]),-4),-1),-5),-1)",
    "io_inp": [
      5,
      2,
      -1,
      5
    ],
    "io_out": [
      -15,
      9,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(reverse(input),-4),-1),-5),-1)"
  },
  {
    "input": "input : list = [4, 1, -2]\noutput : list = [6, 3, 0]",
    "output": "generated_output : list = add_n(sort_des([4, 1, -2]),2)",
    "io_inp": [
      4,
      1,
      -2
    ],
    "io_out": [
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(reverse([-2, 0]),13))),13)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(reverse(input),13))),13)"
  },
  {
    "input": "input : list = [5, 2, -2, 5, 3]\noutput : list = [-4, 4, 6, 10, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n([5, 2, -2, 5, 3],2))))",
    "io_inp": [
      5,
      2,
      -2,
      5,
      3
    ],
    "io_out": [
      -4,
      4,
      6,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(input,2))))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(sort_asc([-2, -4]),-3),-2),9),-4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(sort_asc(input),-3),-2),9),-4)"
  },
  {
    "input": "input : list = [-5, 3, -5, 1, -3, 1]\noutput : list = [-15, 9, -15, 3, -9, 3]",
    "output": "generated_output : list = mul_n([-5, 3, -5, 1, -3, 1],3)",
    "io_inp": [
      -5,
      3,
      -5,
      1,
      -3,
      1
    ],
    "io_out": [
      -15,
      9,
      -15,
      3,
      -9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_asc(sub_n([1, -2],-3)),13)),4)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_asc(sub_n(input,-3)),13)),4)"
  },
  {
    "input": "input : list = [4, 3, -3, 3, 3]\noutput : list = [-39, -33, -33, -33, 3]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(sub_n([4, 3, -3, 3, 3],-1)),2),3),-3)",
    "io_inp": [
      4,
      3,
      -3,
      3,
      3
    ],
    "io_out": [
      -39,
      -33,
      -33,
      -33,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(sub_n(input,-1)),2),3),-3)"
  },
  {
    "input": "input : list = [-4, 3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(drop([-4, 3, 4],1))",
    "io_inp": [
      -4,
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [4, 5, 2, -3]\noutput : list = [-2, -3, -5, -10]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n([4, 5, 2, -3],3)),-5),-5),4)",
    "io_inp": [
      4,
      5,
      2,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n(input,3)),-5),-5),4)"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n([-3, 1, -4],3))),-3))",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n(input,3))),-3))"
  },
  {
    "input": "input : list = [0, 0, 2, 0, -4, -1]\noutput : list = [-4, -4, -8, -4, 4, -2]",
    "output": "generated_output : list = mul_n(take(add_n(add_n([0, 0, 2, 0, -4, -1],-2),4),22),-2)",
    "io_inp": [
      0,
      0,
      2,
      0,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -8,
      -4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(input,-2),4),22),-2)"
  },
  {
    "input": "input : list = [0, 0, 1, -4, 1, 4]\noutput : list = [0, -3, -3, -4, -4, -8]",
    "output": "generated_output : list = add_n(sort_des([0, 0, 1, -4, 1, 4]),-4)",
    "io_inp": [
      0,
      0,
      1,
      -4,
      1,
      4
    ],
    "io_out": [
      0,
      -3,
      -3,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, 5, 1, -1]\noutput : list = [-2, 2, -2, -4]",
    "output": "generated_output : list = sub_n([1, 5, 1, -1],3)",
    "io_inp": [
      1,
      5,
      1,
      -1
    ],
    "io_out": [
      -2,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, 3, -3, -1, 0]\noutput : list = [-2, -16]",
    "output": "generated_output : list = mul_n(take(take(add_n(take([-4, 3, -3, -1, 0],2),5),5),17),-2)",
    "io_inp": [
      -4,
      3,
      -3,
      -1,
      0
    ],
    "io_out": [
      -2,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(take(input,2),5),5),17),-2)"
  },
  {
    "input": "input : list = [2, 1, -3, -3]\noutput : list = [32, 32, 0, -8]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(add_n([2, 1, -3, -3],4)),5),4),-2)",
    "io_inp": [
      2,
      1,
      -3,
      -3
    ],
    "io_out": [
      32,
      32,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(add_n(input,4)),5),4),-2)"
  },
  {
    "input": "input : list = [-4, 4, 3, 4, -4, -3]\noutput : list = [4, 4, 3, -3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(reverse([-4, 4, 3, 4, -4, -3])))))",
    "io_inp": [
      -4,
      4,
      3,
      4,
      -4,
      -3
    ],
    "io_out": [
      4,
      4,
      3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [0, 5, -4]\noutput : list = [-6, 12]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n(drop([0, 5, -4],1),3),-2),1),3)",
    "io_inp": [
      0,
      5,
      -4
    ],
    "io_out": [
      -6,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(drop(input,1),3),-2),1),3)"
  },
  {
    "input": "input : list = [-5, -1, 4, 4]\noutput : list = [-15, -3]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(take([-5, -1, 4, 4],2))),12),3)",
    "io_inp": [
      -5,
      -1,
      4,
      4
    ],
    "io_out": [
      -15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(take(input,2))),12),3)"
  },
  {
    "input": "input : list = [2, 4, 2, 0]\noutput : list = [0, -32, -32, -64]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(mul_n([2, 4, 2, 0],4),-4))),23)",
    "io_inp": [
      2,
      4,
      2,
      0
    ],
    "io_out": [
      0,
      -32,
      -32,
      -64
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(mul_n(input,4),-4))),23)"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [80, 200, 200]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n([2, 5, 5],2),5)),4))",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      80,
      200,
      200
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n(input,2),5)),4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-7, -4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_des([2, 5]),-4),5)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_des(input),-4),5)))"
  },
  {
    "input": "input : list = [-5, -3, -5, -3]\noutput : list = [-3, -5, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, -5, -3])",
    "io_inp": [
      -5,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, -5, 5, 5]\noutput : list = [16, 16, 10, 6, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(add_n(reverse([0, 2, -5, 5, 5]),3)),2))",
    "io_inp": [
      0,
      2,
      -5,
      5,
      5
    ],
    "io_out": [
      16,
      16,
      10,
      6,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(add_n(reverse(input),3)),2))"
  },
  {
    "input": "input : list = [-1, -4, 1, 3]\noutput : list = [-7, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(drop([-1, -4, 1, 3],1)),3)))",
    "io_inp": [
      -1,
      -4,
      1,
      3
    ],
    "io_out": [
      -7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(drop(input,1)),3)))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([5, -3],-1)))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-1)))"
  },
  {
    "input": "input : list = [2, -4, 3, 2, 5]\noutput : list = [5, 2, 3, -4, 2]",
    "output": "generated_output : list = take(reverse([2, -4, 3, 2, 5]),5)",
    "io_inp": [
      2,
      -4,
      3,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [2, -4, -4, 1, 1]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(take([2, -4, -4, 1, 1],2))",
    "io_inp": [
      2,
      -4,
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [2, -3, -4, 3, -2]\noutput : list = [20, 16, 12, -4, -8]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(sort_asc([2, -3, -4, 3, -2]),10),2),-2),-4)",
    "io_inp": [
      2,
      -3,
      -4,
      3,
      -2
    ],
    "io_out": [
      20,
      16,
      12,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(sort_asc(input),10),2),-2),-4)"
  },
  {
    "input": "input : list = [-3, 4, 0, -4]\noutput : list = [-15, 20, 0, -20]",
    "output": "generated_output : list = mul_n([-3, 4, 0, -4],5)",
    "io_inp": [
      -3,
      4,
      0,
      -4
    ],
    "io_out": [
      -15,
      20,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [2, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n([-5, 3],-2),4))),-3)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n(input,-2),4))),-3)"
  },
  {
    "input": "input : list = [4, -5, -1, 2, 3, 4]\noutput : list = [-12, 15, 3, -6]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(take([4, -5, -1, 2, 3, 4],4))),4),-3)",
    "io_inp": [
      4,
      -5,
      -1,
      2,
      3,
      4
    ],
    "io_out": [
      -12,
      15,
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(take(input,4))),4),-3)"
  },
  {
    "input": "input : list = [-5, -4, 5, 3, -2, 4]\noutput : list = [10, 8, 4, -6, -8, -10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des([-5, -4, 5, 3, -2, 4]))),-2)",
    "io_inp": [
      -5,
      -4,
      5,
      3,
      -2,
      4
    ],
    "io_out": [
      10,
      8,
      4,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [-1, 0, -5, -1, 3]\noutput : list = [-13, 2, 7, 27]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(drop([-1, 0, -5, -1, 3],1))),-5),2)",
    "io_inp": [
      -1,
      0,
      -5,
      -1,
      3
    ],
    "io_out": [
      -13,
      2,
      7,
      27
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(drop(input,1))),-5),2)"
  },
  {
    "input": "input : list = [5, -3, -1, 3, 0, -4]\noutput : list = [-13, -12, -10, -9, -6, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc([5, -3, -1, 3, 0, -4]))),4),-5)",
    "io_inp": [
      5,
      -3,
      -1,
      3,
      0,
      -4
    ],
    "io_out": [
      -13,
      -12,
      -10,
      -9,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc(input))),4),-5)"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [7, 4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(drop([1, 2, 5],1)))),2)",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(mul_n([-4, 0],-3),-1),1)),1)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(mul_n(input,-3),-1),1)),1)"
  },
  {
    "input": "input : list = [-1, 2, -4, -1, 1, -4]\noutput : list = [-4, 1, -1, -4, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, -4, -1, 1, -4])",
    "io_inp": [
      -1,
      2,
      -4,
      -1,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      -1,
      -4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(drop([-1, 3, -4],1)))))",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -4, -4, 3, 0]\noutput : list = [-8, -8, 0, 6]",
    "output": "generated_output : list = mul_n(sort_asc(drop([2, -4, -4, 3, 0],1)),2)",
    "io_inp": [
      2,
      -4,
      -4,
      3,
      0
    ],
    "io_out": [
      -8,
      -8,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,1)),2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [0, 32]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des(add_n([3, -5],-3))),-4),7)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      0,
      32
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(add_n(input,-3))),-4),7)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n(sort_asc([-3, -4]),1),19),1))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(sort_asc(input),1),19),1))"
  },
  {
    "input": "input : list = [0, -5, 0, 3]\noutput : list = [6, 0, -10, 0]",
    "output": "generated_output : list = mul_n(take(take(reverse([0, -5, 0, 3]),14),17),2)",
    "io_inp": [
      0,
      -5,
      0,
      3
    ],
    "io_out": [
      6,
      0,
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(input),14),17),2)"
  },
  {
    "input": "input : list = [1, -4, 0, 1]\noutput : list = [12, 12, 14, 22]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(add_n([1, -4, 0, 1],-5)),-2),-2),31)",
    "io_inp": [
      1,
      -4,
      0,
      1
    ],
    "io_out": [
      12,
      12,
      14,
      22
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(add_n(input,-5)),-2),-2),31)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [5, 5, -4]",
    "output": "generated_output : list = sort_des(sort_asc([5, 5, -4]))",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      5,
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 4, 4, 3]\noutput : list = [7, 8, 8, 7]",
    "output": "generated_output : list = add_n(reverse(reverse(take(reverse([3, 4, 4, 3]),11))),4)",
    "io_inp": [
      3,
      4,
      4,
      3
    ],
    "io_out": [
      7,
      8,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(reverse(input),11))),4)"
  },
  {
    "input": "input : list = [0, 2, -4, -3, 3]\noutput : list = [-4, -3, 0, 2, 3]",
    "output": "generated_output : list = reverse(sort_des([0, 2, -4, -3, 3]))",
    "io_inp": [
      0,
      2,
      -4,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -1, -2, -4, -1]\noutput : list = [-12, -12, -12, -15, -21]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(sort_asc([-1, -1, -2, -4, -1]))),3),3)",
    "io_inp": [
      -1,
      -1,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -12,
      -15,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(sort_asc(input))),3),3)"
  },
  {
    "input": "input : list = [2, 0, 5, -5, -1]\noutput : list = [7, -1]",
    "output": "generated_output : list = drop(reverse(sub_n(mul_n(add_n([2, 0, 5, -5, -1],-3),-4),5)),3)",
    "io_inp": [
      2,
      0,
      5,
      -5,
      -1
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = drop(reverse(sub_n(mul_n(add_n(input,-3),-4),5)),3)"
  },
  {
    "input": "input : list = [0, -1, 4, -3]\noutput : list = [-1, 1, 2, 6]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(sub_n([0, -1, 4, -3],-5),5),-3)))",
    "io_inp": [
      0,
      -1,
      4,
      -3
    ],
    "io_out": [
      -1,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(sub_n(input,-5),5),-3)))"
  },
  {
    "input": "input : list = [1, 3, -1, -3, 0]\noutput : list = [-3, -6, -4, 0, -2]",
    "output": "generated_output : list = reverse(sub_n([1, 3, -1, -3, 0],3))",
    "io_inp": [
      1,
      3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -3,
      -6,
      -4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [5, 0, 3, 0]\noutput : list = [5, 3, 0, 0]",
    "output": "generated_output : list = sort_des([5, 0, 3, 0])",
    "io_inp": [
      5,
      0,
      3,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -5, 0, -4]\noutput : list = [-5, -4, 0, 1]",
    "output": "generated_output : list = sort_asc([1, -5, 0, -4])",
    "io_inp": [
      1,
      -5,
      0,
      -4
    ],
    "io_out": [
      -5,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, -2, 0]))",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [-8]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(sub_n([5, -4, 2],3)),-4)),1)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(sub_n(input,3)),-4)),1)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n(sub_n([1, 3],-4),4)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),4)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [3, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sub_n([0, 2, -2],-1),2))),-2)",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sub_n(input,-1),2))),-2)"
  },
  {
    "input": "input : list = [-4, -1, -4, -3, 5, 1]\noutput : list = [-4, -36, 28, 36, 12, 36]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n(mul_n([-4, -1, -4, -3, 5, 1],4),-2),-4),1))",
    "io_inp": [
      -4,
      -1,
      -4,
      -3,
      5,
      1
    ],
    "io_out": [
      -4,
      -36,
      28,
      36,
      12,
      36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(mul_n(input,4),-2),-4),1))"
  },
  {
    "input": "input : list = [-1, -2, 1, -5, -4, 3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(take([-1, -2, 1, -5, -4, 3],2))",
    "io_inp": [
      -1,
      -2,
      1,
      -5,
      -4,
      3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-1, -5, -3, 4, 0, 0]\noutput : list = [9, 7, 5, 4, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n([-1, -5, -3, 4, 0, 0],-4),12),-1))",
    "io_inp": [
      -1,
      -5,
      -3,
      4,
      0,
      0
    ],
    "io_out": [
      9,
      7,
      5,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(input,-4),12),-1))"
  },
  {
    "input": "input : list = [1, -3, 1, 0]\noutput : list = [-2, -2, 0, 6]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(reverse([1, -3, 1, 0]),-2)),24))",
    "io_inp": [
      1,
      -3,
      1,
      0
    ],
    "io_out": [
      -2,
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(reverse(input),-2)),24))"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [9, 12, 15]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_des(sort_des([-2, -4, -3])),-3),-4),-1)",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_des(sort_des(input)),-3),-4),-1)"
  },
  {
    "input": "input : list = [-1, 4, -4, 2, 4, 3]\noutput : list = [3, 3, 2, 1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(add_n([-1, 4, -4, 2, 4, 3],-5),4))))",
    "io_inp": [
      -1,
      4,
      -4,
      2,
      4,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(add_n(input,-5),4))))"
  },
  {
    "input": "input : list = [-3, 0, 3, 5, -4, -1]\noutput : list = [-4, -7, 2, 0, -3, -6]",
    "output": "generated_output : list = reverse(take(add_n(sub_n([-3, 0, 3, 5, -4, -1],-1),-4),26))",
    "io_inp": [
      -3,
      0,
      3,
      5,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -7,
      2,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(input,-1),-4),26))"
  },
  {
    "input": "input : list = [-2, -5, -3, -2, 2]\noutput : list = [-3, -7, -7, -8, -10]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(add_n([-2, -5, -3, -2, 2],-5)))))",
    "io_inp": [
      -2,
      -5,
      -3,
      -2,
      2
    ],
    "io_out": [
      -3,
      -7,
      -7,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [-2, 0, 2, 3, -5, -1]\noutput : list = [5, 4, 2, 1, 0, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(sort_des([-2, 0, 2, 3, -5, -1]))),-2))",
    "io_inp": [
      -2,
      0,
      2,
      3,
      -5,
      -1
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [-3, -1, 2, 4, -5]\noutput : list = [9, 7, 4, 2, 0]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sort_asc([-3, -1, 2, 4, -5])),20),5))",
    "io_inp": [
      -3,
      -1,
      2,
      4,
      -5
    ],
    "io_out": [
      9,
      7,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sort_asc(input)),20),5))"
  },
  {
    "input": "input : list = [4, 0, -4, -3]\noutput : list = [3, -1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(reverse(reverse([4, 0, -4, -3])),-1)))",
    "io_inp": [
      4,
      0,
      -4,
      -3
    ],
    "io_out": [
      3,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [0, -4, 0, 4, -3]\noutput : list = [4, 0, 0, -3, -4]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(sort_asc([0, -4, 0, 4, -3])),11),28))",
    "io_inp": [
      0,
      -4,
      0,
      4,
      -3
    ],
    "io_out": [
      4,
      0,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(sort_asc(input)),11),28))"
  },
  {
    "input": "input : list = [-1, 4, -1, -4, -3]\noutput : list = [0, -1, 2, 7, 2]",
    "output": "generated_output : list = add_n(reverse([-1, 4, -1, -4, -3]),3)",
    "io_inp": [
      -1,
      4,
      -1,
      -4,
      -3
    ],
    "io_out": [
      0,
      -1,
      2,
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-4, 5, 0, 4, -4, 3]\noutput : list = [-4, -4, 0, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(reverse([-4, 5, 0, 4, -4, 3]))),25))",
    "io_inp": [
      -4,
      5,
      0,
      4,
      -4,
      3
    ],
    "io_out": [
      -4,
      -4,
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(reverse(input))),25))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [18, 12]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n([1, -1],5),-3)),22)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      18,
      12
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(input,5),-3)),22)"
  },
  {
    "input": "input : list = [-4, -1, 3, 2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = drop([-4, -1, 3, 2, -5],3)",
    "io_inp": [
      -4,
      -1,
      3,
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [2, -3, -2]",
    "output": "generated_output : list = add_n([1, -4, -3],1)",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 2, -3]\noutput : list = [-5, -8, -2, -7]",
    "output": "generated_output : list = take(sub_n(add_n([-1, -4, 2, -3],-3),1),22)",
    "io_inp": [
      -1,
      -4,
      2,
      -3
    ],
    "io_out": [
      -5,
      -8,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-3),1),22)"
  },
  {
    "input": "input : list = [5, 2, 4, -1]\noutput : list = [-1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des([5, 2, 4, -1]),7))",
    "io_inp": [
      5,
      2,
      4,
      -1
    ],
    "io_out": [
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),7))"
  },
  {
    "input": "input : list = [2, -5, -3, -1, -3]\noutput : list = [20, 0, 0, -20, -50]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sub_n([2, -5, -3, -1, -3],-3),-5),2)))",
    "io_inp": [
      2,
      -5,
      -3,
      -1,
      -3
    ],
    "io_out": [
      20,
      0,
      0,
      -20,
      -50
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sub_n(input,-3),-5),2)))"
  },
  {
    "input": "input : list = [2, -5, -5, 5, 5]\noutput : list = [49, 161, 161, 1, 1]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sub_n([2, -5, -5, 5, 5],5),-1),4),4),-1)",
    "io_inp": [
      2,
      -5,
      -5,
      5,
      5
    ],
    "io_out": [
      49,
      161,
      161,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sub_n(input,5),-1),4),4),-1)"
  },
  {
    "input": "input : list = [-1, -4, 2, 3]\noutput : list = [-2, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n([-1, -4, 2, 3],-2))",
    "io_inp": [
      -1,
      -4,
      2,
      3
    ],
    "io_out": [
      -2,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 4, -4, -3, 1]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(drop([-1, 4, -4, -3, 1],2)))",
    "io_inp": [
      -1,
      4,
      -4,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [-3, -2, -3, -3]\noutput : list = [0, -2, -2, -2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(mul_n([-3, -2, -3, -3],2),1)),3))",
    "io_inp": [
      -3,
      -2,
      -3,
      -3
    ],
    "io_out": [
      0,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(mul_n(input,2),1)),3))"
  },
  {
    "input": "input : list = [4, 4, 2, 1, 0, 5]\noutput : list = [5, 4, 4, 2, 1, 0]",
    "output": "generated_output : list = take(reverse(sort_asc([4, 4, 2, 1, 0, 5])),32)",
    "io_inp": [
      4,
      4,
      2,
      1,
      0,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),32)"
  },
  {
    "input": "input : list = [3, 2, -3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take(sub_n(drop(sort_des([3, 2, -3]),2),1),15))",
    "io_inp": [
      3,
      2,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(drop(sort_des(input),2),1),15))"
  },
  {
    "input": "input : list = [-5, 0, -1, -5, -3]\noutput : list = [2, 1, -1, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n([-5, 0, -1, -5, -3],-2)))",
    "io_inp": [
      -5,
      0,
      -1,
      -5,
      -3
    ],
    "io_out": [
      2,
      1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-3, -3, -4]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(drop([-3, -3, -4],1),4),2)))",
    "io_inp": [
      -3,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(drop(input,1),4),2)))"
  },
  {
    "input": "input : list = [3, 1, -1]\noutput : list = [9, 3, -3]",
    "output": "generated_output : list = mul_n(sort_des([3, 1, -1]),3)",
    "io_inp": [
      3,
      1,
      -1
    ],
    "io_out": [
      9,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-4, 0, 5, -3, 1]\noutput : list = [-3, -2, 1, 2, 6]",
    "output": "generated_output : list = add_n(sort_asc([-4, 0, 5, -3, 1]),1)",
    "io_inp": [
      -4,
      0,
      5,
      -3,
      1
    ],
    "io_out": [
      -3,
      -2,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [3, -6]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(drop([4, 2, -1],1))),-3))",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(drop(input,1))),-3))"
  },
  {
    "input": "input : list = [0, -2, -2, -1, 3]\noutput : list = [-1, -5, -6]",
    "output": "generated_output : list = sub_n(reverse(drop([0, -2, -2, -1, 3],2)),4)",
    "io_inp": [
      0,
      -2,
      -2,
      -1,
      3
    ],
    "io_out": [
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,2)),4)"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [-5, 1, 3]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(mul_n([-4, -1, -5],-2)),1),-5),2)",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(mul_n(input,-2)),1),-5),2)"
  },
  {
    "input": "input : list = [-3, 0, -4, -3, 5, 5]\noutput : list = [-1, 2, -2, -1, 7, 7]",
    "output": "generated_output : list = add_n(mul_n([-3, 0, -4, -3, 5, 5],1),2)",
    "io_inp": [
      -3,
      0,
      -4,
      -3,
      5,
      5
    ],
    "io_out": [
      -1,
      2,
      -2,
      -1,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),2)"
  },
  {
    "input": "input : list = [-1, 1, -1, -1, -3, 3]\noutput : list = [-3, -1, -1, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([-1, 1, -1, -1, -3, 3])",
    "io_inp": [
      -1,
      1,
      -1,
      -1,
      -3,
      3
    ],
    "io_out": [
      -3,
      -1,
      -1,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, 4, -1, 0, 3]\noutput : list = [-16, -1, 4, -21, -6, 4]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n([-1, 1, 4, -1, 0, 3],-5)),-2),-1)",
    "io_inp": [
      -1,
      1,
      4,
      -1,
      0,
      3
    ],
    "io_out": [
      -16,
      -1,
      4,
      -21,
      -6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(input,-5)),-2),-1)"
  },
  {
    "input": "input : list = [3, 3, -2, 3]\noutput : list = [5, 5, 5, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_des([3, 3, -2, 3]),1))),2)",
    "io_inp": [
      3,
      3,
      -2,
      3
    ],
    "io_out": [
      5,
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_des(input),1))),2)"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [-17, 8, 8]",
    "output": "generated_output : list = sub_n(mul_n([4, -1, -1],-5),-3)",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      -17,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-2, -5, -2, 4, 2, 1]\noutput : list = [-6, -3, -3, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_des([-2, -5, -2, 4, 2, 1]),1))))",
    "io_inp": [
      -2,
      -5,
      -2,
      4,
      2,
      1
    ],
    "io_out": [
      -6,
      -3,
      -3,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-2, -3, -5, 1, 1]\noutput : list = [6, 8, 12, 0, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(reverse([-2, -3, -5, 1, 1]),-2),-2)),-4)",
    "io_inp": [
      -2,
      -3,
      -5,
      1,
      1
    ],
    "io_out": [
      6,
      8,
      12,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(reverse(input),-2),-2)),-4)"
  },
  {
    "input": "input : list = [-4, -3, -2]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(sub_n(take([-4, -3, -2],1),1),-1)",
    "io_inp": [
      -4,
      -3,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,1),1),-1)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(mul_n([0, 2],4),4))))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(mul_n(input,4),4))))"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [8, -8, -8]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-2, -2, 2]),1),4)",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),1),4)"
  },
  {
    "input": "input : list = [1, 4, 3]\noutput : list = [16, 12, 4]",
    "output": "generated_output : list = mul_n(reverse(take(take(sort_asc([1, 4, 3]),16),19)),4)",
    "io_inp": [
      1,
      4,
      3
    ],
    "io_out": [
      16,
      12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(sort_asc(input),16),19)),4)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [8, 4]",
    "output": "generated_output : list = add_n(sort_des(sort_des([-1, 3])),5)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),5)"
  },
  {
    "input": "input : list = [3, -1, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(drop([3, -1, 1, 2],2),19)",
    "io_inp": [
      3,
      -1,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(drop(input,2),19)"
  },
  {
    "input": "input : list = [5, -3, 0, 1]\noutput : list = [2, -6, -8, -14]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_asc([5, -3, 0, 1]),4)),2))",
    "io_inp": [
      5,
      -3,
      0,
      1
    ],
    "io_out": [
      2,
      -6,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_asc(input),4)),2))"
  },
  {
    "input": "input : list = [-2, -5, 2, 1]\noutput : list = [-2, -5, 2]",
    "output": "generated_output : list = take(reverse(drop(mul_n(reverse([-2, -5, 2, 1]),1),1)),7)",
    "io_inp": [
      -2,
      -5,
      2,
      1
    ],
    "io_out": [
      -2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(drop(mul_n(reverse(input),1),1)),7)"
  },
  {
    "input": "input : list = [0, 1, 5, -4, -2, -5]\noutput : list = [-5, -2, -4, 5, 1, 0]",
    "output": "generated_output : list = take(take(reverse([0, 1, 5, -4, -2, -5]),13),21)",
    "io_inp": [
      0,
      1,
      5,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -4,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),13),21)"
  },
  {
    "input": "input : list = [3, 5, -2, -5, 3]\noutput : list = [-12, -20, 8, 20, -12]",
    "output": "generated_output : list = mul_n(mul_n([3, 5, -2, -5, 3],-2),2)",
    "io_inp": [
      3,
      5,
      -2,
      -5,
      3
    ],
    "io_out": [
      -12,
      -20,
      8,
      20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),2)"
  },
  {
    "input": "input : list = [1, -2, 5, -4]\noutput : list = [5, 1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([1, -2, 5, -4])))",
    "io_inp": [
      1,
      -2,
      5,
      -4
    ],
    "io_out": [
      5,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [7, 1]",
    "output": "generated_output : list = take(add_n([3, -3],4),5)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),5)"
  },
  {
    "input": "input : list = [-4, -5, -1, 4, -1]\noutput : list = [12, -3, -3, -15]",
    "output": "generated_output : list = mul_n(sort_des(take(take(reverse([-4, -5, -1, 4, -1]),4),34)),3)",
    "io_inp": [
      -4,
      -5,
      -1,
      4,
      -1
    ],
    "io_out": [
      12,
      -3,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(reverse(input),4),34)),3)"
  },
  {
    "input": "input : list = [-3, 3, -1, -5]\noutput : list = [-15, 15]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(take([-3, 3, -1, -5],2)),5),30))",
    "io_inp": [
      -3,
      3,
      -1,
      -5
    ],
    "io_out": [
      -15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(take(input,2)),5),30))"
  },
  {
    "input": "input : list = [-4, -5, 5, 4, 1, 5]\noutput : list = [-7, -6, -1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(sort_des([-4, -5, 5, 4, 1, 5]),4)),2))",
    "io_inp": [
      -4,
      -5,
      5,
      4,
      1,
      5
    ],
    "io_out": [
      -7,
      -6,
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(sort_des(input),4)),2))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(mul_n([3, 3],1)))),2)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(mul_n(input,1)))),2)"
  },
  {
    "input": "input : list = [2, -1, 2]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(sort_des([2, -1, 2]),-3),5),-2))",
    "io_inp": [
      2,
      -1,
      2
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(sort_des(input),-3),5),-2))"
  },
  {
    "input": "input : list = [-2, 5, 3, -1, -2, 3]\noutput : list = [-4, -2, 6, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take([-2, 5, 3, -1, -2, 3],4),2))",
    "io_inp": [
      -2,
      5,
      3,
      -1,
      -2,
      3
    ],
    "io_out": [
      -4,
      -2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,4),2))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(sort_des([1, -2])),-5),3),30)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(sort_des(input)),-5),3),30)"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [-5, 25, 15]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(sub_n([2, -4, -2],2),-5),-5)))",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      -5,
      25,
      15
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(sub_n(input,2),-5),-5)))"
  },
  {
    "input": "input : list = [3, 1, 5, 4, 2, -4]\noutput : list = [-5, 1, 3]",
    "output": "generated_output : list = add_n(reverse(drop([3, 1, 5, 4, 2, -4],3)),-1)",
    "io_inp": [
      3,
      1,
      5,
      4,
      2,
      -4
    ],
    "io_out": [
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,3)),-1)"
  },
  {
    "input": "input : list = [-4, 5, -5, 5, 3, 4]\noutput : list = [-7, -7, -8, -9, -16, -17]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_des([-4, 5, -5, 5, 3, 4]),-3),-4),5))",
    "io_inp": [
      -4,
      5,
      -5,
      5,
      3,
      4
    ],
    "io_out": [
      -7,
      -7,
      -8,
      -9,
      -16,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_des(input),-3),-4),5))"
  },
  {
    "input": "input : list = [5, 5, -1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(take(drop([5, 5, -1],1),16))",
    "io_inp": [
      5,
      5,
      -1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,1),16))"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [2]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(take([1, -3, -3],1),2)),-3),8)",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(take(input,1),2)),-3),8)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [2, 12]",
    "output": "generated_output : list = sub_n(take(take(mul_n(reverse([3, 1]),5),8),5),3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      2,
      12
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(reverse(input),5),8),5),3)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-1, -6, -16]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(mul_n([-3, -5, -2],5)),-4),5))",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -6,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(mul_n(input,5)),-4),5))"
  },
  {
    "input": "input : list = [5, 0, -5, -1]\noutput : list = [0, -5, -10, -6]",
    "output": "generated_output : list = sub_n([5, 0, -5, -1],5)",
    "io_inp": [
      5,
      0,
      -5,
      -1
    ],
    "io_out": [
      0,
      -5,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 4, 3, -2]\noutput : list = [-24, -28]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(take([5, 4, 3, -2],2)),9),2),-4)",
    "io_inp": [
      5,
      4,
      3,
      -2
    ],
    "io_out": [
      -24,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(take(input,2)),9),2),-4)"
  },
  {
    "input": "input : list = [4, 0, 2, -5, 4]\noutput : list = [15, -5, 5, -30, 15]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(add_n([4, 0, 2, -5, 4],-5),3),26),5),5)",
    "io_inp": [
      4,
      0,
      2,
      -5,
      4
    ],
    "io_out": [
      15,
      -5,
      5,
      -30,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(add_n(input,-5),3),26),5),5)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [5, 7, 3]",
    "output": "generated_output : list = add_n([2, 4, 0],3)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      5,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, -4, -5, -5]\noutput : list = [-12, -12, -11, -11]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sub_n(reverse([-4, -4, -5, -5]),4),3)))",
    "io_inp": [
      -4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -12,
      -12,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sub_n(reverse(input),4),3)))"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [-27]",
    "output": "generated_output : list = mul_n(mul_n(take([3, -5, -1],1),-3),3)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),-3),3)"
  },
  {
    "input": "input : list = [-2, -4, -5, 2]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(add_n([-2, -4, -5, 2],-2),4),1)))",
    "io_inp": [
      -2,
      -4,
      -5,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(add_n(input,-2),4),1)))"
  },
  {
    "input": "input : list = [-3, -1, -4, 5]\noutput : list = [-2, 0, -3, 6]",
    "output": "generated_output : list = sub_n([-3, -1, -4, 5],-1)",
    "io_inp": [
      -3,
      -1,
      -4,
      5
    ],
    "io_out": [
      -2,
      0,
      -3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, -4, 3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(take([2, -4, 3],1),-5))),-2)",
    "io_inp": [
      2,
      -4,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(take(input,1),-5))),-2)"
  },
  {
    "input": "input : list = [0, 0, -3, 5, 1, 3]\noutput : list = [-14, -11, -11, -10, -8, -6]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sort_des([0, 0, -3, 5, 1, 3]),-4)),-5),-2)",
    "io_inp": [
      0,
      0,
      -3,
      5,
      1,
      3
    ],
    "io_out": [
      -14,
      -11,
      -11,
      -10,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sort_des(input),-4)),-5),-2)"
  },
  {
    "input": "input : list = [5, 4, -3, 3, 4]\noutput : list = [-160, 224, 288, 288, 352]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des(mul_n([5, 4, -3, 3, 4],-4)),2),-4),4)",
    "io_inp": [
      5,
      4,
      -3,
      3,
      4
    ],
    "io_out": [
      -160,
      224,
      288,
      288,
      352
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(mul_n(input,-4)),2),-4),4)"
  },
  {
    "input": "input : list = [3, -2, 4, -5, -5, -4]\noutput : list = [6, 0, -2, -3, -3]",
    "output": "generated_output : list = add_n(sort_des(drop([3, -2, 4, -5, -5, -4],1)),2)",
    "io_inp": [
      3,
      -2,
      4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      6,
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,1)),2)"
  },
  {
    "input": "input : list = [-1, 5, -3, 4, 2, 0]\noutput : list = [7, -1, 6, 4, 2]",
    "output": "generated_output : list = sub_n(add_n(take(drop([-1, 5, -3, 4, 2, 0],1),24),-1),-3)",
    "io_inp": [
      -1,
      5,
      -3,
      4,
      2,
      0
    ],
    "io_out": [
      7,
      -1,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(drop(input,1),24),-1),-3)"
  },
  {
    "input": "input : list = [-4, 2, 1, -4]\noutput : list = [-8, -3, -2, -8]",
    "output": "generated_output : list = add_n(add_n(reverse([-4, 2, 1, -4]),-3),-1)",
    "io_inp": [
      -4,
      2,
      1,
      -4
    ],
    "io_out": [
      -8,
      -3,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),-3),-1)"
  },
  {
    "input": "input : list = [-5, -4, -2, 2]\noutput : list = [0, 4, 12, 28]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc([-5, -4, -2, 2]),-2)),-3),4)",
    "io_inp": [
      -5,
      -4,
      -2,
      2
    ],
    "io_out": [
      0,
      4,
      12,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc(input),-2)),-3),4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [14, 6]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sub_n([3, 5],1)),-1),-4),-2)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      14,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sub_n(input,1)),-1),-4),-2)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [-24, -32, 0]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n([-3, -4, 0],2))),4)",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      -24,
      -32,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(input,2))),4)"
  },
  {
    "input": "input : list = [-4, 3, 5, 4, 5]\noutput : list = [-4, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([-4, 3, 5, 4, 5])",
    "io_inp": [
      -4,
      3,
      5,
      4,
      5
    ],
    "io_out": [
      -4,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3, -5, -2, -3]\noutput : list = [3, 4, 1, 9, 7]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(add_n([1, 3, -5, -2, -3],5)),-1)))",
    "io_inp": [
      1,
      3,
      -5,
      -2,
      -3
    ],
    "io_out": [
      3,
      4,
      1,
      9,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(add_n(input,5)),-1)))"
  },
  {
    "input": "input : list = [4, 1, -2, 5, -4, 5]\noutput : list = [-4, -2, 1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([4, 1, -2, 5, -4, 5])",
    "io_inp": [
      4,
      1,
      -2,
      5,
      -4,
      5
    ],
    "io_out": [
      -4,
      -2,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 1, -2, 1]\noutput : list = [7, 7, 4, 3]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n([-3, 1, -2, 1],3)),-3),37)",
    "io_inp": [
      -3,
      1,
      -2,
      1
    ],
    "io_out": [
      7,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(input,3)),-3),37)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(drop(reverse([1, -1]),1),-4)))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(drop(reverse(input),1),-4)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-10, -7]",
    "output": "generated_output : list = take(sort_asc(add_n(take(mul_n([4, 3],-3),8),2)),6)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -10,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(mul_n(input,-3),8),2)),6)"
  },
  {
    "input": "input : list = [2, 1, 3, -4, 4]\noutput : list = [4, 3, 2, 1, -4]",
    "output": "generated_output : list = sort_des([2, 1, 3, -4, 4])",
    "io_inp": [
      2,
      1,
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, -4]\noutput : list = [-16, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(drop([1, 5, -4],1),4)))",
    "io_inp": [
      1,
      5,
      -4
    ],
    "io_out": [
      -16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(drop(input,1),4)))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [5, 7]",
    "output": "generated_output : list = sub_n([1, 3],-4)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [-17, -19]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(drop([0, -2, -3],1),-4),2),13),5)",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      -17,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(drop(input,1),-4),2),13),5)"
  },
  {
    "input": "input : list = [4, 2, 5, -4, 1, 5]\noutput : list = [9, 3, 1, 0]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(take([4, 2, 5, -4, 1, 5],4)),-1),24),-5)",
    "io_inp": [
      4,
      2,
      5,
      -4,
      1,
      5
    ],
    "io_out": [
      9,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(take(input,4)),-1),24),-5)"
  },
  {
    "input": "input : list = [-3, -3, -2, -5]\noutput : list = [2, 1, 1, -1]",
    "output": "generated_output : list = take(sub_n(take(sort_des([-3, -3, -2, -5]),16),-4),17)",
    "io_inp": [
      -3,
      -3,
      -2,
      -5
    ],
    "io_out": [
      2,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(input),16),-4),17)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(add_n(take([0, -3, -3],1),1),3)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(input,1),1),3)"
  },
  {
    "input": "input : list = [-4, -1, -1]\noutput : list = [-1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des([-4, -1, -1]))",
    "io_inp": [
      -4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 1, -3, 0, -5]\noutput : list = [1, -3, 0, -5]",
    "output": "generated_output : list = drop([-5, 1, -3, 0, -5],1)",
    "io_inp": [
      -5,
      1,
      -3,
      0,
      -5
    ],
    "io_out": [
      1,
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 0, 1, 4]\noutput : list = [16, 4, 0, 12]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n([3, 0, 1, 4],4),-5),-5))",
    "io_inp": [
      3,
      0,
      1,
      4
    ],
    "io_out": [
      16,
      4,
      0,
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(input,4),-5),-5))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des([5, -2])",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, 2, -1]\noutput : list = [5, 2, 0, -2]",
    "output": "generated_output : list = add_n(sort_des([-5, -3, 2, -1]),3)",
    "io_inp": [
      -5,
      -3,
      2,
      -1
    ],
    "io_out": [
      5,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(mul_n([-2, -3],2),11))))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(mul_n(input,2),11))))"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [15, 9, 6]",
    "output": "generated_output : list = mul_n(sort_des([2, 3, 5]),3)",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      15,
      9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-1, -2, 3, -2]\noutput : list = [-1, -2, 3, -2]",
    "output": "generated_output : list = add_n(add_n([-1, -2, 3, -2],-3),3)",
    "io_inp": [
      -1,
      -2,
      3,
      -2
    ],
    "io_out": [
      -1,
      -2,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),3)"
  },
  {
    "input": "input : list = [-1, 4, 3, 4, 0]\noutput : list = [8, 8, 7, 4, 3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(add_n([-1, 4, 3, 4, 0],5)),1)))",
    "io_inp": [
      -1,
      4,
      3,
      4,
      0
    ],
    "io_out": [
      8,
      8,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(add_n(input,5)),1)))"
  },
  {
    "input": "input : list = [3, 5, -5, 4]\noutput : list = [2, 4, -6, 3]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(reverse([3, 5, -5, 4])),-1),-2),25)",
    "io_inp": [
      3,
      5,
      -5,
      4
    ],
    "io_out": [
      2,
      4,
      -6,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(reverse(input)),-1),-2),25)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = add_n(reverse(add_n(take(sort_asc([5, 0, 5]),3),-2)),-2)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(sort_asc(input),3),-2)),-2)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [8, -12]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(sort_des([3, -2]),4),4)),-4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(sort_des(input),4),4)),-4)"
  },
  {
    "input": "input : list = [-4, -1, 1, 2]\noutput : list = [10, 5, -5, -20]",
    "output": "generated_output : list = mul_n(reverse([-4, -1, 1, 2]),5)",
    "io_inp": [
      -4,
      -1,
      1,
      2
    ],
    "io_out": [
      10,
      5,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [14, 13]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des([3, 4]),-5),5),15)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      14,
      13
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(input),-5),5),15)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [18, 3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(sub_n([3, -2],-3),12),3)))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      18,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(sub_n(input,-3),12),3)))"
  },
  {
    "input": "input : list = [-1, 5, -5]\noutput : list = [-5, -1, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, -5])",
    "io_inp": [
      -1,
      5,
      -5
    ],
    "io_out": [
      -5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 3, -4]\noutput : list = [-10, -7, -14]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(sub_n([0, 3, -4],4),-4),3),1),30)",
    "io_inp": [
      0,
      3,
      -4
    ],
    "io_out": [
      -10,
      -7,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(sub_n(input,4),-4),3),1),30)"
  },
  {
    "input": "input : list = [4, -3, -3, 5, -2, -4]\noutput : list = [-5, 0, 0, 5, 35, 40]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_asc([4, -3, -3, 5, -2, -4]),-3)),5),1)",
    "io_inp": [
      4,
      -3,
      -3,
      5,
      -2,
      -4
    ],
    "io_out": [
      -5,
      0,
      0,
      5,
      35,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_asc(input),-3)),5),1)"
  },
  {
    "input": "input : list = [5, 5, -2, -2]\noutput : list = [-10, -10, 11, 11]",
    "output": "generated_output : list = add_n(take(add_n(reverse(mul_n([5, 5, -2, -2],3)),-3),39),-1)",
    "io_inp": [
      5,
      5,
      -2,
      -2
    ],
    "io_out": [
      -10,
      -10,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(mul_n(input,3)),-3),39),-1)"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([5, 5, -2])))",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = add_n([-5, 0, 3],2)",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, -5, 5, 1]\noutput : list = [-5, -25, -35, -55]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(sub_n([-1, -5, 5, 1],-3),3),-5)),43)",
    "io_inp": [
      -1,
      -5,
      5,
      1
    ],
    "io_out": [
      -5,
      -25,
      -35,
      -55
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(sub_n(input,-3),3),-5)),43)"
  },
  {
    "input": "input : list = [5, -2, 4, 3, -5]\noutput : list = [0, 8, 9, 3, 10]",
    "output": "generated_output : list = take(take(reverse(sub_n([5, -2, 4, 3, -5],-5)),26),7)",
    "io_inp": [
      5,
      -2,
      4,
      3,
      -5
    ],
    "io_out": [
      0,
      8,
      9,
      3,
      10
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(input,-5)),26),7)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [-5, -4, 3]",
    "output": "generated_output : list = sub_n([-4, -3, 4],1)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -1, 3, -1, -2]\noutput : list = [15, -5, -5, -10, -15]",
    "output": "generated_output : list = mul_n(sort_des([-3, -1, 3, -1, -2]),5)",
    "io_inp": [
      -3,
      -1,
      3,
      -1,
      -2
    ],
    "io_out": [
      15,
      -5,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-4, -2, 1, -5]\noutput : list = [3, -3]",
    "output": "generated_output : list = add_n(drop([-4, -2, 1, -5],2),2)",
    "io_inp": [
      -4,
      -2,
      1,
      -5
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),2)"
  },
  {
    "input": "input : list = [-1, -3, -1, 5, -1, -1]\noutput : list = [-2, 0, 0, 0, 0, 6]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(sub_n([-1, -3, -1, 5, -1, -1],-2),-1),12)))",
    "io_inp": [
      -1,
      -3,
      -1,
      5,
      -1,
      -1
    ],
    "io_out": [
      -2,
      0,
      0,
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(sub_n(input,-2),-1),12)))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [18, 8]",
    "output": "generated_output : list = mul_n(sub_n([4, -1],-5),2)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      18,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [4, 4, -2, 3, -3, 3]\noutput : list = [-3, -2, 3, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(reverse([4, 4, -2, 3, -3, 3])))),42)",
    "io_inp": [
      4,
      4,
      -2,
      3,
      -3,
      3
    ],
    "io_out": [
      -3,
      -2,
      3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(reverse(input)))),42)"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [-6, -10, -10]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(add_n([-1, -5, -5],-5)))))",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [0, -1, -3]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(reverse([0, -1, -3]))),15),-1)",
    "io_inp": [
      0,
      -1,
      -3
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(reverse(input))),15),-1)"
  },
  {
    "input": "input : list = [0, -1, 5, -2, 5, 5]\noutput : list = [-22, -22, -22, 3, 8, 13]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(mul_n([0, -1, 5, -2, 5, 5],-5)),33)),3)",
    "io_inp": [
      0,
      -1,
      5,
      -2,
      5,
      5
    ],
    "io_out": [
      -22,
      -22,
      -22,
      3,
      8,
      13
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(mul_n(input,-5)),33)),3)"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [6, 3, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(sub_n([1, 4, -3],-1)),-1)))",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      6,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(sub_n(input,-1)),-1)))"
  },
  {
    "input": "input : list = [-3, -4, 4, 3]\noutput : list = [-3, -2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des(add_n([-3, -4, 4, 3],-4)),-5)))",
    "io_inp": [
      -3,
      -4,
      4,
      3
    ],
    "io_out": [
      -3,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(add_n(input,-4)),-5)))"
  },
  {
    "input": "input : list = [1, 4, -2, -2]\noutput : list = [27, 27, 45, 36]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(reverse([1, 4, -2, -2]),-3),5),-3),3)",
    "io_inp": [
      1,
      4,
      -2,
      -2
    ],
    "io_out": [
      27,
      27,
      45,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(reverse(input),-3),5),-3),3)"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [-7, -7, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sort_asc([-1, -2, -2]),4))),-1)",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sort_asc(input),4))),-1)"
  },
  {
    "input": "input : list = [5, 4, -3, 2, 4]\noutput : list = [0, -1, -8, -3, -1]",
    "output": "generated_output : list = sub_n([5, 4, -3, 2, 4],5)",
    "io_inp": [
      5,
      4,
      -3,
      2,
      4
    ],
    "io_out": [
      0,
      -1,
      -8,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, 5, -5, 0, -2, -1]\noutput : list = [-4, -20, 20, 0, 8, 4]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(mul_n([1, 5, -5, 0, -2, -1],-2))),13),2)",
    "io_inp": [
      1,
      5,
      -5,
      0,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -20,
      20,
      0,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(mul_n(input,-2))),13),2)"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = add_n([4, 1, -1],1)",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, -2, -4, -1]\noutput : list = [-2, 0, 1, 7]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(reverse([5, -2, -4, -1]),17),-3)),-5)",
    "io_inp": [
      5,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -2,
      0,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(reverse(input),17),-3)),-5)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = mul_n(reverse([-3, 3]),1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [4, 4, 2]\noutput : list = [100, 100, 50]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n([4, 4, 2],-5),-2),2),-5)",
    "io_inp": [
      4,
      4,
      2
    ],
    "io_out": [
      100,
      100,
      50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(input,-5),-2),2),-5)"
  },
  {
    "input": "input : list = [-4, -5, -4, 4, 0, -5]\noutput : list = [101, 128, 101, -115, -7, 128]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(mul_n([-4, -5, -4, 4, 0, -5],-3),-3),-4),-3),-5)",
    "io_inp": [
      -4,
      -5,
      -4,
      4,
      0,
      -5
    ],
    "io_out": [
      101,
      128,
      101,
      -115,
      -7,
      128
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(mul_n(input,-3),-3),-4),-3),-5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(reverse([-5, 2]),4))),21)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(reverse(input),4))),21)"
  },
  {
    "input": "input : list = [0, -2, 4, -4]\noutput : list = [1, -1, 5, -3]",
    "output": "generated_output : list = sub_n(sub_n([0, -2, 4, -4],4),-5)",
    "io_inp": [
      0,
      -2,
      4,
      -4
    ],
    "io_out": [
      1,
      -1,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),-5)"
  },
  {
    "input": "input : list = [2, 3, 4]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(add_n([2, 3, 4],5),-4),5),-4),4)",
    "io_inp": [
      2,
      3,
      4
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(add_n(input,5),-4),5),-4),4)"
  },
  {
    "input": "input : list = [4, 1, -3, -4]\noutput : list = [4, 1, -3, -4]",
    "output": "generated_output : list = reverse(reverse([4, 1, -3, -4]))",
    "io_inp": [
      4,
      1,
      -3,
      -4
    ],
    "io_out": [
      4,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 4, 3, 1, 3, 1]\noutput : list = [17, -7, -7, -15, -15, -19]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(mul_n([-5, 4, 3, 1, 3, 1],-4),5),-2))",
    "io_inp": [
      -5,
      4,
      3,
      1,
      3,
      1
    ],
    "io_out": [
      17,
      -7,
      -7,
      -15,
      -15,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(mul_n(input,-4),5),-2))"
  },
  {
    "input": "input : list = [-3, -3, 3, 1, 5, 5]\noutput : list = [8, 8, -8, -16, -24, -24]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(add_n([-3, -3, 3, 1, 5, 5],1),1))),-4)",
    "io_inp": [
      -3,
      -3,
      3,
      1,
      5,
      5
    ],
    "io_out": [
      8,
      8,
      -8,
      -16,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(add_n(input,1),1))),-4)"
  },
  {
    "input": "input : list = [-5, 2, -1, -5, 4]\noutput : list = [-33, -17, 7, 39, 39]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(mul_n([-5, 2, -1, -5, 4],-4),2),-1)))",
    "io_inp": [
      -5,
      2,
      -1,
      -5,
      4
    ],
    "io_out": [
      -33,
      -17,
      7,
      39,
      39
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(mul_n(input,-4),2),-1)))"
  },
  {
    "input": "input : list = [-1, -3, -2, 3, 5, 5]\noutput : list = [45, 30, 15, -45, -75, -75]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(mul_n([-1, -3, -2, 3, 5, 5],-3)),5)))",
    "io_inp": [
      -1,
      -3,
      -2,
      3,
      5,
      5
    ],
    "io_out": [
      45,
      30,
      15,
      -45,
      -75,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(mul_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [-1, -2, 0, 1, -5, 3]\noutput : list = [-2, -4, -5, -6, -7, -10]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(sub_n([-1, -2, 0, 1, -5, 3],3),15),-2)))",
    "io_inp": [
      -1,
      -2,
      0,
      1,
      -5,
      3
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -6,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(sub_n(input,3),15),-2)))"
  },
  {
    "input": "input : list = [-2, 2, 0, 1]\noutput : list = [-2, -3, -4, -6]",
    "output": "generated_output : list = add_n(take(sort_des(take(sort_asc([-2, 2, 0, 1]),9)),12),-4)",
    "io_inp": [
      -2,
      2,
      0,
      1
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(sort_asc(input),9)),12),-4)"
  },
  {
    "input": "input : list = [-3, -2, 2, 4, 3, 0]\noutput : list = [0, -6, -8, -4]",
    "output": "generated_output : list = mul_n(reverse(drop([-3, -2, 2, 4, 3, 0],2)),-2)",
    "io_inp": [
      -3,
      -2,
      2,
      4,
      3,
      0
    ],
    "io_out": [
      0,
      -6,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,2)),-2)"
  },
  {
    "input": "input : list = [-2, -5, 5, 2, 3, -3]\noutput : list = [-5, -3, -2, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([-2, -5, 5, 2, 3, -3])",
    "io_inp": [
      -2,
      -5,
      5,
      2,
      3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -1, 1, 0]\noutput : list = [2, 1, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(drop([-2, 1, -1, 1, 0],2))),-1),26)",
    "io_inp": [
      -2,
      1,
      -1,
      1,
      0
    ],
    "io_out": [
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(drop(input,2))),-1),26)"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [2, 4, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(reverse([-4, 1, -2]),4)),-2))",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(reverse(input),4)),-2))"
  },
  {
    "input": "input : list = [-5, 2, 4, 4, 5]\noutput : list = [-4, -5, -5, -7, -14]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(sub_n([-5, 2, 4, 4, 5],1),3)),10),5)",
    "io_inp": [
      -5,
      2,
      4,
      4,
      5
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -7,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(sub_n(input,1),3)),10),5)"
  },
  {
    "input": "input : list = [2, -1, -5, -1, -1, -2]\noutput : list = [13, -2, -2, -2, -7, -22]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(sort_des([2, -1, -5, -1, -1, -2])),5),3),56)",
    "io_inp": [
      2,
      -1,
      -5,
      -1,
      -1,
      -2
    ],
    "io_out": [
      13,
      -2,
      -2,
      -2,
      -7,
      -22
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(sort_des(input)),5),3),56)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [4, -2]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n([-3, 3],3)),-2),1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(input,3)),-2),1)"
  },
  {
    "input": "input : list = [-3, 4, 2, -2, 3, 5]\noutput : list = [-9, -6, -3, 0, 12, 15]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(sub_n([-3, 4, 2, -2, 3, 5],2),10),30),-3))",
    "io_inp": [
      -3,
      4,
      2,
      -2,
      3,
      5
    ],
    "io_out": [
      -9,
      -6,
      -3,
      0,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(sub_n(input,2),10),30),-3))"
  },
  {
    "input": "input : list = [3, 0, 4, 5, -1, 5]\noutput : list = [19, 7, 23, 27, 3, 27]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(add_n([3, 0, 4, 5, -1, 5],2),4),-3),6),-4)",
    "io_inp": [
      3,
      0,
      4,
      5,
      -1,
      5
    ],
    "io_out": [
      19,
      7,
      23,
      27,
      3,
      27
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(add_n(input,2),4),-3),6),-4)"
  },
  {
    "input": "input : list = [3, -4, -5, -3, 2, -5]\noutput : list = [0, -1, -6, -7, -8, -8]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(sub_n([3, -4, -5, -3, 2, -5],-2))),10),-5)",
    "io_inp": [
      3,
      -4,
      -5,
      -3,
      2,
      -5
    ],
    "io_out": [
      0,
      -1,
      -6,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(sub_n(input,-2))),10),-5)"
  },
  {
    "input": "input : list = [-2, 3, 2, 3]\noutput : list = [3, 7, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc([-2, 3, 2, 3]),5)))",
    "io_inp": [
      -2,
      3,
      2,
      3
    ],
    "io_out": [
      3,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [-12, -3, 3]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_asc([-5, -3, 0]),-2)),-2),-3)",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      -12,
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_asc(input),-2)),-2),-3)"
  },
  {
    "input": "input : list = [3, 3, 5, 0, -4, 4]\noutput : list = [12, 0, -9, -9, -12, -15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(reverse([3, 3, 5, 0, -4, 4])))),-3)",
    "io_inp": [
      3,
      3,
      5,
      0,
      -4,
      4
    ],
    "io_out": [
      12,
      0,
      -9,
      -9,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [-5, 5, 1, -3, -3]\noutput : list = [-5, -3, -3, 1, 5]",
    "output": "generated_output : list = sort_asc([-5, 5, 1, -3, -3])",
    "io_inp": [
      -5,
      5,
      1,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3, -2, -3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n(drop([5, -3, -2, -3],2),-1))))",
    "io_inp": [
      5,
      -3,
      -2,
      -3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(drop(input,2),-1))))"
  },
  {
    "input": "input : list = [1, -1, -5, 4]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sub_n(take([1, -1, -5, 4],1),3),-4)",
    "io_inp": [
      1,
      -1,
      -5,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,1),3),-4)"
  },
  {
    "input": "input : list = [0, 3, 3, 5]\noutput : list = [9, 12, 12, 14]",
    "output": "generated_output : list = add_n(sort_asc(take(add_n(add_n([0, 3, 3, 5],2),5),18)),2)",
    "io_inp": [
      0,
      3,
      3,
      5
    ],
    "io_out": [
      9,
      12,
      12,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(add_n(add_n(input,2),5),18)),2)"
  },
  {
    "input": "input : list = [-2, 5, -3, 3, 3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(take([-2, 5, -3, 3, 3],1),19),5),-4))",
    "io_inp": [
      -2,
      5,
      -3,
      3,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(take(input,1),19),5),-4))"
  },
  {
    "input": "input : list = [-2, 3, 1, 5]\noutput : list = [1, -1, 3]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(drop([-2, 3, 1, 5],1),3),15),5),4)",
    "io_inp": [
      -2,
      3,
      1,
      5
    ],
    "io_out": [
      1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(drop(input,1),3),15),5),4)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [4, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(mul_n([-1, 1],1))),-2),1)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(mul_n(input,1))),-2),1)"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [-1, -6, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(sort_asc([2, -4, -3]),-3))))",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [0, 3, -1, -2]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(take([0, 3, -1, -2],2),5),5)),45)",
    "io_inp": [
      0,
      3,
      -1,
      -2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(take(input,2),5),5)),45)"
  },
  {
    "input": "input : list = [4, 3, -4]\noutput : list = [14, 10, -18]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(mul_n([4, 3, -4],4))),2))",
    "io_inp": [
      4,
      3,
      -4
    ],
    "io_out": [
      14,
      10,
      -18
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(mul_n(input,4))),2))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-4, 4]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(mul_n([2, 1],2),-3),4)),1)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(mul_n(input,2),-3),4)),1)"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [6, 7]",
    "output": "generated_output : list = sort_asc(add_n(drop([-1, 1, 2],1),5))",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,1),5))"
  },
  {
    "input": "input : list = [3, -1, 4, -5]\noutput : list = [7, 3]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(take([3, -1, 4, -5],2)),4),34))",
    "io_inp": [
      3,
      -1,
      4,
      -5
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(take(input,2)),4),34))"
  },
  {
    "input": "input : list = [-3, -4, -1, 1, -2, 0]\noutput : list = [2, 1, 0, -1]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(drop([-3, -4, -1, 1, -2, 0],2)),-1),48),20)",
    "io_inp": [
      -3,
      -4,
      -1,
      1,
      -2,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(drop(input,2)),-1),48),20)"
  },
  {
    "input": "input : list = [5, 5, 0, 5, 1, 5]\noutput : list = [1, 2, 6, 6, 6, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sort_des([5, 5, 0, 5, 1, 5]),2))),3)",
    "io_inp": [
      5,
      5,
      0,
      5,
      1,
      5
    ],
    "io_out": [
      1,
      2,
      6,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sort_des(input),2))),3)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-18, 6]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n(reverse([3, -5]),3),15),-3))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -18,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(reverse(input),3),15),-3))"
  },
  {
    "input": "input : list = [3, 0, 5, 4]\noutput : list = [0, -48, -64, -80]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([3, 0, 5, 4],-4),4))",
    "io_inp": [
      3,
      0,
      5,
      4
    ],
    "io_out": [
      0,
      -48,
      -64,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-4),4))"
  },
  {
    "input": "input : list = [2, -4, 2, -5, -3, -2]\noutput : list = [2, -2, -3, -4, -5]",
    "output": "generated_output : list = drop(reverse(sort_asc([2, -4, 2, -5, -3, -2])),1)",
    "io_inp": [
      2,
      -4,
      2,
      -5,
      -3,
      -2
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [8, 2, 1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n([-3, -2, 4],-3)),-5)),-4)",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      8,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n(input,-3)),-5)),-4)"
  },
  {
    "input": "input : list = [5, -1, 0]\noutput : list = [-1, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, -1, 0]))",
    "io_inp": [
      5,
      -1,
      0
    ],
    "io_out": [
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, -5, 1, -4]\noutput : list = [0, -25, 5, -20]",
    "output": "generated_output : list = mul_n([0, -5, 1, -4],5)",
    "io_inp": [
      0,
      -5,
      1,
      -4
    ],
    "io_out": [
      0,
      -25,
      5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -5, 3, 4, 4, -4]\noutput : list = [-35, -35, -30, 0, 5, 10]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(mul_n(sub_n([-3, -5, 3, 4, 4, -4],-4),1),1)),-5)",
    "io_inp": [
      -3,
      -5,
      3,
      4,
      4,
      -4
    ],
    "io_out": [
      -35,
      -35,
      -30,
      0,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(mul_n(sub_n(input,-4),1),1)),-5)"
  },
  {
    "input": "input : list = [0, 2, 1, 4, -3, 1]\noutput : list = [-9, -3, 0, 0, 3, 12]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(mul_n([0, 2, 1, 4, -3, 1],-3))),-3),46)",
    "io_inp": [
      0,
      2,
      1,
      4,
      -3,
      1
    ],
    "io_out": [
      -9,
      -3,
      0,
      0,
      3,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(mul_n(input,-3))),-3),46)"
  },
  {
    "input": "input : list = [-3, -5, 4, -1, 3, 1]\noutput : list = [-5, -3, -7, -2, -11, -9]",
    "output": "generated_output : list = reverse(sub_n(sub_n([-3, -5, 4, -1, 3, 1],2),4))",
    "io_inp": [
      -3,
      -5,
      4,
      -1,
      3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -7,
      -2,
      -11,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,2),4))"
  },
  {
    "input": "input : list = [2, 1, 3, 2, -4]\noutput : list = [-3, -4, -2, -3, -9]",
    "output": "generated_output : list = add_n([2, 1, 3, 2, -4],-5)",
    "io_inp": [
      2,
      1,
      3,
      2,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -2,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, -3, -5, 3, -2, 2]\noutput : list = [6, -6, 9, -15, -9, 6]",
    "output": "generated_output : list = mul_n(take(take(mul_n(reverse([2, -3, -5, 3, -2, 2]),-1),8),12),-3)",
    "io_inp": [
      2,
      -3,
      -5,
      3,
      -2,
      2
    ],
    "io_out": [
      6,
      -6,
      9,
      -15,
      -9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(reverse(input),-1),8),12),-3)"
  },
  {
    "input": "input : list = [0, -4, -3, 5]\noutput : list = [9, 1, 0, 4]",
    "output": "generated_output : list = reverse(add_n([0, -4, -3, 5],4))",
    "io_inp": [
      0,
      -4,
      -3,
      5
    ],
    "io_out": [
      9,
      1,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [0, -1, 2, 0, 1]\noutput : list = [-20, -18, -16, -16, -14]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n([0, -1, 2, 0, 1],5)),-1),-3),2)",
    "io_inp": [
      0,
      -1,
      2,
      0,
      1
    ],
    "io_out": [
      -20,
      -18,
      -16,
      -16,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n(input,5)),-1),-3),2)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(sub_n([-2, 5],-1)),1)))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(sub_n(input,-1)),1)))"
  },
  {
    "input": "input : list = [-1, -3, 2]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(add_n([-1, -3, 2],5)),-2)))",
    "io_inp": [
      -1,
      -3,
      2
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(add_n(input,5)),-2)))"
  },
  {
    "input": "input : list = [4, -3, 0]\noutput : list = [0, 9]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(drop([4, -3, 0],1)))),-3)",
    "io_inp": [
      4,
      -3,
      0
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(drop(input,1)))),-3)"
  },
  {
    "input": "input : list = [0, -2, 4, 2]\noutput : list = [-9, -5, -1, 3]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(mul_n([0, -2, 4, 2],-2)),2),-4),-3)",
    "io_inp": [
      0,
      -2,
      4,
      2
    ],
    "io_out": [
      -9,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(mul_n(input,-2)),2),-4),-3)"
  },
  {
    "input": "input : list = [0, 4, -4, -1, 4, -1]\noutput : list = [0, 4, -4, -1, 4, -1]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse([0, 4, -4, -1, 4, -1]))))",
    "io_inp": [
      0,
      4,
      -4,
      -1,
      4,
      -1
    ],
    "io_out": [
      0,
      4,
      -4,
      -1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [-5, 3, 1, 3, 4, -1]\noutput : list = [10, 18, 22, 26, 26, 28]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n([-5, 3, 1, 3, 4, -1],5)),4),1),2)",
    "io_inp": [
      -5,
      3,
      1,
      3,
      4,
      -1
    ],
    "io_out": [
      10,
      18,
      22,
      26,
      26,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n(input,5)),4),1),2)"
  },
  {
    "input": "input : list = [4, 2, -3, 4, 5, -1]\noutput : list = [-5, -3, 0, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(reverse([4, 2, -3, 4, 5, -1])),-2)))",
    "io_inp": [
      4,
      2,
      -3,
      4,
      5,
      -1
    ],
    "io_out": [
      -5,
      -3,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(sub_n(reverse([-3, -3]),-3),13)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),-3),13)"
  },
  {
    "input": "input : list = [-5, 5, 3, -5]\noutput : list = [0, 8, 10, 0]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse([-5, 5, 3, -5]),15),-1),-4)",
    "io_inp": [
      -5,
      5,
      3,
      -5
    ],
    "io_out": [
      0,
      8,
      10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(input),15),-1),-4)"
  },
  {
    "input": "input : list = [4, -4, -4, 1, 1]\noutput : list = [-5, -5, 0, 0, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n(mul_n([4, -4, -4, 1, 1],1),-1))))",
    "io_inp": [
      4,
      -4,
      -4,
      1,
      1
    ],
    "io_out": [
      -5,
      -5,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(mul_n(input,1),-1))))"
  },
  {
    "input": "input : list = [0, -3, -5, -5, 0]\noutput : list = [10, 5, 5, 7, 10]",
    "output": "generated_output : list = take(reverse(add_n(sub_n(sub_n([0, -3, -5, -5, 0],-3),-5),2)),13)",
    "io_inp": [
      0,
      -3,
      -5,
      -5,
      0
    ],
    "io_out": [
      10,
      5,
      5,
      7,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sub_n(sub_n(input,-3),-5),2)),13)"
  },
  {
    "input": "input : list = [3, -3, -2, 4]\noutput : list = [-2, -1, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(sort_asc([3, -3, -2, 4]),1))),32)",
    "io_inp": [
      3,
      -3,
      -2,
      4
    ],
    "io_out": [
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(sort_asc(input),1))),32)"
  },
  {
    "input": "input : list = [-4, 3, -1]\noutput : list = [-8, 0, -14]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(add_n([-4, 3, -1],2)),5),2),25)",
    "io_inp": [
      -4,
      3,
      -1
    ],
    "io_out": [
      -8,
      0,
      -14
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(add_n(input,2)),5),2),25)"
  },
  {
    "input": "input : list = [-4, 4, 1, -2]\noutput : list = [10, 7, 4, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n([-4, 4, 1, -2],1)),5))",
    "io_inp": [
      -4,
      4,
      1,
      -2
    ],
    "io_out": [
      10,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(input,1)),5))"
  },
  {
    "input": "input : list = [2, 4, -2, -5, -5]\noutput : list = [29, 29, 14, -16, -6]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(mul_n([2, 4, -2, -5, -5],-5)))),4)",
    "io_inp": [
      2,
      4,
      -2,
      -5,
      -5
    ],
    "io_out": [
      29,
      29,
      14,
      -16,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(mul_n(input,-5)))),4)"
  },
  {
    "input": "input : list = [4, 4, -4, 0, 4]\noutput : list = [3, 3]",
    "output": "generated_output : list = reverse(sort_des(drop(reverse(sub_n([4, 4, -4, 0, 4],1)),3)))",
    "io_inp": [
      4,
      4,
      -4,
      0,
      4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(reverse(sub_n(input,1)),3)))"
  },
  {
    "input": "input : list = [3, -1, 2]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, -1, 2]))",
    "io_inp": [
      3,
      -1,
      2
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -5, 3, 1, 1, 5]\noutput : list = [-27, -17, -7, -7, -2, 23]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(mul_n(sort_asc([0, -5, 3, 1, 1, 5]),-5))),2)",
    "io_inp": [
      0,
      -5,
      3,
      1,
      1,
      5
    ],
    "io_out": [
      -27,
      -17,
      -7,
      -7,
      -2,
      23
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(mul_n(sort_asc(input),-5))),2)"
  },
  {
    "input": "input : list = [5, -4, -4, -2]\noutput : list = [5, -2, -4, -4]",
    "output": "generated_output : list = take(take(reverse(sort_asc(sort_des([5, -4, -4, -2]))),13),46)",
    "io_inp": [
      5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      5,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(sort_des(input))),13),46)"
  },
  {
    "input": "input : list = [4, 3, 4, 5, 1]\noutput : list = [1, 3, 4, 4, 5]",
    "output": "generated_output : list = take(sort_asc([4, 3, 4, 5, 1]),9)",
    "io_inp": [
      4,
      3,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),9)"
  },
  {
    "input": "input : list = [4, -2, 2, 3]\noutput : list = [3, 2, -2, 4]",
    "output": "generated_output : list = reverse([4, -2, 2, 3])",
    "io_inp": [
      4,
      -2,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3, 4, -4, -1, -5]\noutput : list = [-10, -8, -2, 8]",
    "output": "generated_output : list = sort_asc(mul_n(take(drop([5, 3, 4, -4, -1, -5],2),18),2))",
    "io_inp": [
      5,
      3,
      4,
      -4,
      -1,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(drop(input,2),18),2))"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [16]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(take([4, 1, 5],1),-3),5),4),5)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(take(input,1),-3),5),4),5)"
  },
  {
    "input": "input : list = [0, 3, 5, 5, 1]\noutput : list = [-20, -20, -12, -4, 0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(sort_des([0, 3, 5, 5, 1]),-4),1)))",
    "io_inp": [
      0,
      3,
      5,
      5,
      1
    ],
    "io_out": [
      -20,
      -20,
      -12,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(sort_des(input),-4),1)))"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [-18, 12, 30]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n([-3, 5, 0],2),-5),-3)),-3)",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      -18,
      12,
      30
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n(input,2),-5),-3)),-3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(reverse([3, -4])))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [1, 5, -2, -3, 4]\noutput : list = [5, 4, 1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des([1, 5, -2, -3, 4]),22)))",
    "io_inp": [
      1,
      5,
      -2,
      -3,
      4
    ],
    "io_out": [
      5,
      4,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(input),22)))"
  },
  {
    "input": "input : list = [0, 1, -4, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse(take([0, 1, -4, -5],1)),-1),1))",
    "io_inp": [
      0,
      1,
      -4,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(take(input,1)),-1),1))"
  },
  {
    "input": "input : list = [-1, -3, -5, 0, 5, 3]\noutput : list = [2, 0, -3, -4, -6, -8]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(sort_asc([-1, -3, -5, 0, 5, 3]),-1),28),-4))",
    "io_inp": [
      -1,
      -3,
      -5,
      0,
      5,
      3
    ],
    "io_out": [
      2,
      0,
      -3,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(sort_asc(input),-1),28),-4))"
  },
  {
    "input": "input : list = [4, -5, -2, 3, -3]\noutput : list = [4, 3, -2, -3, -5]",
    "output": "generated_output : list = take(take(sort_des(reverse(sort_des([4, -5, -2, 3, -3]))),45),15)",
    "io_inp": [
      4,
      -5,
      -2,
      3,
      -3
    ],
    "io_out": [
      4,
      3,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(sort_des(input))),45),15)"
  },
  {
    "input": "input : list = [1, 2, -5, 3, -3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(reverse(drop([1, 2, -5, 3, -3, 5],4)))",
    "io_inp": [
      1,
      2,
      -5,
      3,
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,4)))"
  },
  {
    "input": "input : list = [3, -5, 4, -1, 2]\noutput : list = [22, -50, 31, -14, 13]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n([3, -5, 4, -1, 2],3),3),8),5)",
    "io_inp": [
      3,
      -5,
      4,
      -1,
      2
    ],
    "io_out": [
      22,
      -50,
      31,
      -14,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(input,3),3),8),5)"
  },
  {
    "input": "input : list = [-2, 4, -1, -3, 0]\noutput : list = [2, -2, -3, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(reverse([-2, 4, -1, -3, 0]),-5))),3)",
    "io_inp": [
      -2,
      4,
      -1,
      -3,
      0
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(reverse(input),-5))),3)"
  },
  {
    "input": "input : list = [1, 2, 1, -1]\noutput : list = [-1, 1, 1, 2]",
    "output": "generated_output : list = reverse(sort_des([1, 2, 1, -1]))",
    "io_inp": [
      1,
      2,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-16, 4]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(mul_n([-5, 0],-2),-4),-2),4),4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -16,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(mul_n(input,-2),-4),-2),4),4)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [22, 6]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n([-3, 5],4),10),4),-2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      22,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(input,4),10),4),-2)"
  },
  {
    "input": "input : list = [4, -3, 1]\noutput : list = [-1, 3, 6]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(add_n([4, -3, 1],4),-2))))",
    "io_inp": [
      4,
      -3,
      1
    ],
    "io_out": [
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(add_n(input,4),-2))))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [3]",
    "output": "generated_output : list = reverse(drop(sort_asc(sub_n(reverse([5, 4]),2)),1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(sub_n(reverse(input),2)),1))"
  },
  {
    "input": "input : list = [3, -5, 2, 0, 2]\noutput : list = [6, -2, 5]",
    "output": "generated_output : list = sub_n(take([3, -5, 2, 0, 2],3),-3)",
    "io_inp": [
      3,
      -5,
      2,
      0,
      2
    ],
    "io_out": [
      6,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [3, 0, -2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sub_n([3, -2, 0],-2)),-2),17))",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sub_n(input,-2)),-2),17))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse([2, 4])",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, -4, 0]\noutput : list = [-2, -1, 1, 2]",
    "output": "generated_output : list = take(take(sort_asc(sort_asc(sub_n([-1, -3, -4, 0],-2))),21),48)",
    "io_inp": [
      -1,
      -3,
      -4,
      0
    ],
    "io_out": [
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_asc(sub_n(input,-2))),21),48)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [1, 5]",
    "output": "generated_output : list = add_n([-4, 0],5)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, -1, -4, -5, 0]\noutput : list = [-7, -6, -6, -3, -2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(sort_des([-4, -1, -4, -5, 0]),-1),1)))",
    "io_inp": [
      -4,
      -1,
      -4,
      -5,
      0
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(sort_des(input),-1),1)))"
  },
  {
    "input": "input : list = [4, 5, 4, -4, 0, -4]\noutput : list = [3, 2, 2, -6]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(take([4, 5, 4, -4, 0, -4],4)),-5),3))",
    "io_inp": [
      4,
      5,
      4,
      -4,
      0,
      -4
    ],
    "io_out": [
      3,
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(take(input,4)),-5),3))"
  },
  {
    "input": "input : list = [4, -3, 1, 4, 0]\noutput : list = [4, 4, 1, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des([4, -3, 1, 4, 0]))",
    "io_inp": [
      4,
      -3,
      1,
      4,
      0
    ],
    "io_out": [
      4,
      4,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, 0, -2, 1, -5, 1]\noutput : list = [-8, -5, -3, -6, 0, -6]",
    "output": "generated_output : list = take(add_n(mul_n([3, 0, -2, 1, -5, 1],-1),-5),18)",
    "io_inp": [
      3,
      0,
      -2,
      1,
      -5,
      1
    ],
    "io_out": [
      -8,
      -5,
      -3,
      -6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,-1),-5),18)"
  },
  {
    "input": "input : list = [0, -2, -1, 0, -2, 4]\noutput : list = [-2, -2, -1, 0, 0, 4]",
    "output": "generated_output : list = sort_asc([0, -2, -1, 0, -2, 4])",
    "io_inp": [
      0,
      -2,
      -1,
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [6, -4]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(drop([4, 2, -3],1)),2),-1),17)",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      6,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(drop(input,1)),2),-1),17)"
  },
  {
    "input": "input : list = [1, 1, 5, 4]\noutput : list = [-25, -20, -5, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des([1, 1, 5, 4]))),-5)",
    "io_inp": [
      1,
      1,
      5,
      4
    ],
    "io_out": [
      -25,
      -20,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(input))),-5)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [1, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, 1])",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, -1, 4, -5]\noutput : list = [9, 7, 6, 4, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_des([1, 2, -1, 4, -5])))),5)",
    "io_inp": [
      1,
      2,
      -1,
      4,
      -5
    ],
    "io_out": [
      9,
      7,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(add_n(add_n([-5, 1],-5),4))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-5),4))"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [0, 2, 6]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(sort_asc([2, -4, -2]),3),16),-1))",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(sort_asc(input),3),16),-1))"
  },
  {
    "input": "input : list = [-2, -4, -2, 2, 1, 1]\noutput : list = [-7, -7, -5, -13, -17, -13]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(reverse([-2, -4, -2, 2, 1, 1]),14),2),2),-5)",
    "io_inp": [
      -2,
      -4,
      -2,
      2,
      1,
      1
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -13,
      -17,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(reverse(input),14),2),2),-5)"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [5, 7, 9]",
    "output": "generated_output : list = add_n(take(take(sort_asc([2, 0, 4]),12),3),5)",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(input),12),3),5)"
  },
  {
    "input": "input : list = [4, -4, -2, 2, -2]\noutput : list = [-2, 2, -2]",
    "output": "generated_output : list = drop([4, -4, -2, 2, -2],2)",
    "io_inp": [
      4,
      -4,
      -2,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -1, -2, 4, 0]\noutput : list = [-5]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(take([1, -1, -2, 4, 0],1),-1)),5),34)",
    "io_inp": [
      1,
      -1,
      -2,
      4,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(take(input,1),-1)),5),34)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des([1, 4])",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(drop([-2, 0, 1],1),3))))",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(drop(input,1),3))))"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(take([-1, 3, 2],1))),2),1)",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(take(input,1))),2),1)"
  },
  {
    "input": "input : list = [2, -3, -2, 2, 1, 3]\noutput : list = [2, -3]",
    "output": "generated_output : list = take([2, -3, -2, 2, 1, 3],2)",
    "io_inp": [
      2,
      -3,
      -2,
      2,
      1,
      3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 0, -1, -3, -5]\noutput : list = [-25, -15, -5, 0, 5]",
    "output": "generated_output : list = sort_asc(mul_n([1, 0, -1, -3, -5],5))",
    "io_inp": [
      1,
      0,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -25,
      -15,
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-3, 2, 5, -2, 0, -3]\noutput : list = [-3, -3, -2, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([-3, 2, 5, -2, 0, -3])",
    "io_inp": [
      -3,
      2,
      5,
      -2,
      0,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n([1, -3],3),13)))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(input,3),13)))"
  },
  {
    "input": "input : list = [3, 3, 3, -5, 2]\noutput : list = [3, -5, 2]",
    "output": "generated_output : list = drop([3, 3, 3, -5, 2],2)",
    "io_inp": [
      3,
      3,
      3,
      -5,
      2
    ],
    "io_out": [
      3,
      -5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(sub_n([-2, 0],-3),-3),3),5))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(sub_n(input,-3),-3),3),5))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-6, -8]",
    "output": "generated_output : list = mul_n([-3, -4],2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [10, 0, -10]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sort_des([0, 2, 4]),-2),-5)),5)",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      10,
      0,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sort_des(input),-2),-5)),5)"
  },
  {
    "input": "input : list = [-1, -4, -4, 3, 3]\noutput : list = [0, 0, -7, -7, -4]",
    "output": "generated_output : list = sub_n(reverse([-1, -4, -4, 3, 3]),3)",
    "io_inp": [
      -1,
      -4,
      -4,
      3,
      3
    ],
    "io_out": [
      0,
      0,
      -7,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = sort_des([1, -1, 5])",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -4, 1],1)",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 0, -4, 5]\noutput : list = [29, 17, 17, 2]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(reverse([0, 0, -4, 5])),5),-3),2)",
    "io_inp": [
      0,
      0,
      -4,
      5
    ],
    "io_out": [
      29,
      17,
      17,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(reverse(input)),5),-3),2)"
  },
  {
    "input": "input : list = [5, 2, -5, 0]\noutput : list = [2, -1, -3, -8]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(sub_n([5, 2, -5, 0],3))),10))",
    "io_inp": [
      5,
      2,
      -5,
      0
    ],
    "io_out": [
      2,
      -1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(sub_n(input,3))),10))"
  },
  {
    "input": "input : list = [4, -1, 1, 2, 5]\noutput : list = [-12, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(take([4, -1, 1, 2, 5],2),-3))))",
    "io_inp": [
      4,
      -1,
      1,
      2,
      5
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(take(input,2),-3))))"
  },
  {
    "input": "input : list = [2, -4, -3, 2, -3, 2]\noutput : list = [8, -4, -2, 8, -2, 8]",
    "output": "generated_output : list = mul_n(add_n(sub_n([2, -4, -3, 2, -3, 2],1),3),2)",
    "io_inp": [
      2,
      -4,
      -3,
      2,
      -3,
      2
    ],
    "io_out": [
      8,
      -4,
      -2,
      8,
      -2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,1),3),2)"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [12, 24, -4]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(mul_n([1, 4, -3],2),4),6),2),1)",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      12,
      24,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(mul_n(input,2),4),6),2),1)"
  },
  {
    "input": "input : list = [4, -3, 0]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc([4, -3, 0]))",
    "io_inp": [
      4,
      -3,
      0
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -4, 1, 1]\noutput : list = [-6, -8]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(take([-3, -4, 1, 1],2))),23),2)",
    "io_inp": [
      -3,
      -4,
      1,
      1
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(take(input,2))),23),2)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take([-1, -1, 3],1),3)",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),3)"
  },
  {
    "input": "input : list = [0, -5, -3, -5, -1, 5]\noutput : list = [-4, -9, -7, -9, -5, 1]",
    "output": "generated_output : list = add_n([0, -5, -3, -5, -1, 5],-4)",
    "io_inp": [
      0,
      -5,
      -3,
      -5,
      -1,
      5
    ],
    "io_out": [
      -4,
      -9,
      -7,
      -9,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 4, 4, -5, 0, 3]\noutput : list = [-1, 5, 5, -4, 1, 4]",
    "output": "generated_output : list = add_n([-2, 4, 4, -5, 0, 3],1)",
    "io_inp": [
      -2,
      4,
      4,
      -5,
      0,
      3
    ],
    "io_out": [
      -1,
      5,
      5,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -5, -2],1)",
    "io_inp": [
      -1,
      -5,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 3, -4, 2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(drop([-1, 3, -4, 2, -2],3))",
    "io_inp": [
      -1,
      3,
      -4,
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [3, -1, -2, 2, 3]\noutput : list = [6, 8, 14, 16, 16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(add_n([3, -1, -2, 2, 3],5)))),2)",
    "io_inp": [
      3,
      -1,
      -2,
      2,
      3
    ],
    "io_out": [
      6,
      8,
      14,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(add_n(input,5)))),2)"
  },
  {
    "input": "input : list = [4, -4, 3, 4, 3, 0]\noutput : list = [-5, -1, 2, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(add_n(add_n([4, -4, 3, 4, 3, 0],-4),3))",
    "io_inp": [
      4,
      -4,
      3,
      4,
      3,
      0
    ],
    "io_out": [
      -5,
      -1,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,-4),3))"
  },
  {
    "input": "input : list = [-5, -5, 2, 5, 5]\noutput : list = [6]",
    "output": "generated_output : list = drop(add_n([-5, -5, 2, 5, 5],1),4)",
    "io_inp": [
      -5,
      -5,
      2,
      5,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = drop(add_n(input,1),4)"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [20, 14, 8]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des([-5, 1, -2])),5),-2)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      20,
      14,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(input)),5),-2)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [0, -3, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n(reverse([4, 1, -3]),-5))),-1)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(reverse(input),-5))),-1)"
  },
  {
    "input": "input : list = [-2, -4, -5, 3]\noutput : list = [-5, -4, -2, 3]",
    "output": "generated_output : list = sort_asc([-2, -4, -5, 3])",
    "io_inp": [
      -2,
      -4,
      -5,
      3
    ],
    "io_out": [
      -5,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 4, 3, -1, 3]\noutput : list = [16, -48, -48]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(drop([4, 4, 3, -1, 3],2),4),4)),-4)",
    "io_inp": [
      4,
      4,
      3,
      -1,
      3
    ],
    "io_out": [
      16,
      -48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(drop(input,2),4),4)),-4)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse(add_n(sub_n([1, -4],-1),-1))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-1),-1))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [8, 0]",
    "output": "generated_output : list = sub_n(sort_des([-5, 3]),-5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-6, -5, -3]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(sort_asc([-2, -3, 0]))),-3),25)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(sort_asc(input))),-3),25)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, -21]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(sort_asc([-4, 1]),4)),22),5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(sort_asc(input),4)),22),5)"
  },
  {
    "input": "input : list = [0, 2, 1, -2, -2, -4]\noutput : list = [-8, -6, -6, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc([0, 2, 1, -2, -2, -4])),22),-4))",
    "io_inp": [
      0,
      2,
      1,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc(input)),22),-4))"
  },
  {
    "input": "input : list = [-2, -3, 1]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc([-2, -3, 1])),3)))",
    "io_inp": [
      -2,
      -3,
      1
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-1, 2, -2, 5, -4]\noutput : list = [-4, -2, -1, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse([-1, 2, -2, 5, -4]))",
    "io_inp": [
      -1,
      2,
      -2,
      5,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, -4, -3, -3]\noutput : list = [-1, -1, -2, 6]",
    "output": "generated_output : list = take(reverse(add_n([4, -4, -3, -3],2)),14)",
    "io_inp": [
      4,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -2,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,2)),14)"
  },
  {
    "input": "input : list = [-2, -4, 5, -2]\noutput : list = [-1, -3, 6, -1]",
    "output": "generated_output : list = sub_n([-2, -4, 5, -2],-1)",
    "io_inp": [
      -2,
      -4,
      5,
      -2
    ],
    "io_out": [
      -1,
      -3,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, 5, -1, -1, -3]\noutput : list = [-40, -30, -10, -10, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(reverse([3, 5, -1, -1, -3])),3),-5))",
    "io_inp": [
      3,
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -40,
      -30,
      -10,
      -10,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(reverse(input)),3),-5))"
  },
  {
    "input": "input : list = [-4, 4, 5, -3]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take(sort_asc(take([-4, 4, 5, -3],1)),16),2)",
    "io_inp": [
      -4,
      4,
      5,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(input,1)),16),2)"
  },
  {
    "input": "input : list = [-2, 3, 2, -5, -3]\noutput : list = [0, 5, 4, -3, -1]",
    "output": "generated_output : list = add_n([-2, 3, 2, -5, -3],2)",
    "io_inp": [
      -2,
      3,
      2,
      -5,
      -3
    ],
    "io_out": [
      0,
      5,
      4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, -1, -5, -1, -5]\noutput : list = [-15, -15, -11, -11, -8]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(sort_asc([2, -1, -5, -1, -5]),-2),-5),3),35)",
    "io_inp": [
      2,
      -1,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -15,
      -15,
      -11,
      -11,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(sort_asc(input),-2),-5),3),35)"
  },
  {
    "input": "input : list = [-2, 2, -2, 4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(take([-2, 2, -2, 4],1))),-3))",
    "io_inp": [
      -2,
      2,
      -2,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(take(input,1))),-3))"
  },
  {
    "input": "input : list = [3, -2, -2, -3, 0, 4]\noutput : list = [6, 7, 7, 9, 12, 13]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_asc([3, -2, -2, -3, 0, 4])),-4),5))",
    "io_inp": [
      3,
      -2,
      -2,
      -3,
      0,
      4
    ],
    "io_out": [
      6,
      7,
      7,
      9,
      12,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_asc(input)),-4),5))"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(take([-1, -3, 1],1),11),-5),-1),-5)",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(take(input,1),11),-5),-1),-5)"
  },
  {
    "input": "input : list = [4, -1, 2, 3, 3, -4]\noutput : list = [-5, 10, 25, 30, 30, 35]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc([4, -1, 2, 3, 3, -4]),3),5),37)",
    "io_inp": [
      4,
      -1,
      2,
      3,
      3,
      -4
    ],
    "io_out": [
      -5,
      10,
      25,
      30,
      30,
      35
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(input),3),5),37)"
  },
  {
    "input": "input : list = [1, -5, -1, -3, -4, -5]\noutput : list = [-6, -5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(drop(mul_n([1, -5, -1, -3, -4, -5],1),4))),-1)",
    "io_inp": [
      1,
      -5,
      -1,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(drop(mul_n(input,1),4))),-1)"
  },
  {
    "input": "input : list = [2, 2, -4, -5, -4, -5]\noutput : list = [1, 1, -5, -5, -6, -6]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(sub_n([2, 2, -4, -5, -4, -5],2)),1)))",
    "io_inp": [
      2,
      2,
      -4,
      -5,
      -4,
      -5
    ],
    "io_out": [
      1,
      1,
      -5,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(sub_n(input,2)),1)))"
  },
  {
    "input": "input : list = [1, 0, -1, -2]\noutput : list = [6, 5, 4, 3]",
    "output": "generated_output : list = sub_n([1, 0, -1, -2],-5)",
    "io_inp": [
      1,
      0,
      -1,
      -2
    ],
    "io_out": [
      6,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [3, 1, 9]",
    "output": "generated_output : list = reverse(sub_n([4, -4, -2],-5))",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      3,
      1,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [4, -2, -5, -2, -4]\noutput : list = [-2, -1, 1, 1, 7]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(add_n([4, -2, -5, -2, -4],4)),-1),40))",
    "io_inp": [
      4,
      -2,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -1,
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(add_n(input,4)),-1),40))"
  },
  {
    "input": "input : list = [-1, -5, 4, 4, -1]\noutput : list = [50, 10, 10, -40, -40]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([-1, -5, 4, 4, -1],5)),-2)",
    "io_inp": [
      -1,
      -5,
      4,
      4,
      -1
    ],
    "io_out": [
      50,
      10,
      10,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,5)),-2)"
  },
  {
    "input": "input : list = [1, -3, -3, 3, -5]\noutput : list = [47, 27, 27, -13, -33]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n([1, -3, -3, 3, -5],-5),2)),3),39)",
    "io_inp": [
      1,
      -3,
      -3,
      3,
      -5
    ],
    "io_out": [
      47,
      27,
      27,
      -13,
      -33
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n(input,-5),2)),3),39)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(take(sub_n(take(sort_asc([-1, 0, 0]),7),4),1),3)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(sort_asc(input),7),4),1),3)"
  },
  {
    "input": "input : list = [-4, -3, 4, 3]\noutput : list = [-4, -3, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([-4, -3, 4, 3])))",
    "io_inp": [
      -4,
      -3,
      4,
      3
    ],
    "io_out": [
      -4,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-2, -5, -3, 1, 0]\noutput : list = [2, 4, 5, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sub_n([-2, -5, -3, 1, 0],-2),-5))))",
    "io_inp": [
      -2,
      -5,
      -3,
      1,
      0
    ],
    "io_out": [
      2,
      4,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sub_n(input,-2),-5))))"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [16, -19]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(mul_n([3, -4, -1],5),2))),-1)",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      16,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(mul_n(input,5),2))),-1)"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [25, 16, 1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(sub_n([-4, 1, 4],-4))),3),-1)",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      25,
      16,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(sub_n(input,-4))),3),-1)"
  },
  {
    "input": "input : list = [1, -5, 2]\noutput : list = [-30, 6, 12]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(reverse([1, -5, 2]),-3),-2)),36)",
    "io_inp": [
      1,
      -5,
      2
    ],
    "io_out": [
      -30,
      6,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(reverse(input),-3),-2)),36)"
  },
  {
    "input": "input : list = [-2, 4, 1, 1]\noutput : list = [4, 4, 7, 1]",
    "output": "generated_output : list = reverse(sub_n([-2, 4, 1, 1],-3))",
    "io_inp": [
      -2,
      4,
      1,
      1
    ],
    "io_out": [
      4,
      4,
      7,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-1, -3, -4, -3, -3, 3]\noutput : list = [-11, -13, -14, -13, -13, -7]",
    "output": "generated_output : list = add_n(take(sub_n([-1, -3, -4, -3, -3, 3],5),17),-5)",
    "io_inp": [
      -1,
      -3,
      -4,
      -3,
      -3,
      3
    ],
    "io_out": [
      -11,
      -13,
      -14,
      -13,
      -13,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,5),17),-5)"
  },
  {
    "input": "input : list = [1, -1, 0, -5]\noutput : list = [6, 4]",
    "output": "generated_output : list = add_n(take([1, -1, 0, -5],2),5)",
    "io_inp": [
      1,
      -1,
      0,
      -5
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),5)"
  },
  {
    "input": "input : list = [-3, -3, 2, -4, -2, 1]\noutput : list = [15, 15, -10, 20, 10, -5]",
    "output": "generated_output : list = mul_n([-3, -3, 2, -4, -2, 1],-5)",
    "io_inp": [
      -3,
      -3,
      2,
      -4,
      -2,
      1
    ],
    "io_out": [
      15,
      15,
      -10,
      20,
      10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(drop([-3, 4, -1],1),11),1)),3)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(drop(input,1),11),1)),3)"
  },
  {
    "input": "input : list = [-1, -3, -1, 2]\noutput : list = [1]",
    "output": "generated_output : list = add_n(add_n(reverse(take(take([-1, -3, -1, 2],1),14)),1),1)",
    "io_inp": [
      -1,
      -3,
      -1,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(take(input,1),14)),1),1)"
  },
  {
    "input": "input : list = [1, -4, -4, -4, -2]\noutput : list = [-6, -6, -6, -4, -1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_asc([1, -4, -4, -4, -2])),-2)))",
    "io_inp": [
      1,
      -4,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sort_asc([-2, -1]),2),-1)),4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sort_asc(input),2),-1)),4)"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -2, 0],1)",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 4, 0, 2]\noutput : list = [0, 8, 16, 20]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_asc([5, 4, 0, 2])),24),2),2)",
    "io_inp": [
      5,
      4,
      0,
      2
    ],
    "io_out": [
      0,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_asc(input)),24),2),2)"
  },
  {
    "input": "input : list = [-4, 5, -1]\noutput : list = [-4, 20]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(drop([-4, 5, -1],1))),4))",
    "io_inp": [
      -4,
      5,
      -1
    ],
    "io_out": [
      -4,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(drop(input,1))),4))"
  },
  {
    "input": "input : list = [5, 1, 5, -2, 0, 4]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(take([5, 1, 5, -2, 0, 4],2),7),-2),-5))",
    "io_inp": [
      5,
      1,
      5,
      -2,
      0,
      4
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(take(input,2),7),-2),-5))"
  },
  {
    "input": "input : list = [-4, 5, -2, 3]\noutput : list = [5, -2, 3]",
    "output": "generated_output : list = drop([-4, 5, -2, 3],1)",
    "io_inp": [
      -4,
      5,
      -2,
      3
    ],
    "io_out": [
      5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -2, -2, -5, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(reverse(reverse(take(drop([-3, -2, -2, -5, 2, -3],4),24))),28)",
    "io_inp": [
      -3,
      -2,
      -2,
      -5,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(drop(input,4),24))),28)"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [19, 10]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(drop([0, -5, -2],1),-3),3),19),-1)",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      19,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(drop(input,1),-3),3),19),-1)"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [1, -5, 1]",
    "output": "generated_output : list = reverse([1, -5, 1])",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3, 5, -2, 1, -2]\noutput : list = [-2, -2, 0, 1, 3, 5]",
    "output": "generated_output : list = reverse(sort_des([0, 3, 5, -2, 1, -2]))",
    "io_inp": [
      0,
      3,
      5,
      -2,
      1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take([3, -4, -4],1))",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(mul_n([4, 2],2)),3),1))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(mul_n(input,2)),3),1))"
  },
  {
    "input": "input : list = [3, -5, -1, 1, 3, -3]\noutput : list = [-5, -3, -1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(reverse([3, -5, -1, 1, 3, -3]),14))))",
    "io_inp": [
      3,
      -5,
      -1,
      1,
      3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(reverse(input),14))))"
  },
  {
    "input": "input : list = [1, 2, -2, 1, -4]\noutput : list = [-12, -20, 12, -12, 28]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(mul_n([1, 2, -2, 1, -4],-4))),2),-4)",
    "io_inp": [
      1,
      2,
      -2,
      1,
      -4
    ],
    "io_out": [
      -12,
      -20,
      12,
      -12,
      28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(mul_n(input,-4))),2),-4)"
  },
  {
    "input": "input : list = [1, -2, 1, 5, 4]\noutput : list = [1, -2]",
    "output": "generated_output : list = take([1, -2, 1, 5, 4],2)",
    "io_inp": [
      1,
      -2,
      1,
      5,
      4
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(sort_des([2, 5])),3),11))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(sort_des(input)),3),11))"
  },
  {
    "input": "input : list = [-5, -4, -2, -4, 4, 1]\noutput : list = [-4, -3, -3, -1, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n([-5, -4, -2, -4, 4, 1],-1))",
    "io_inp": [
      -5,
      -4,
      -2,
      -4,
      4,
      1
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [0, -20, -20]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n([0, 5, 5],-4)),26))",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(input,-4)),26))"
  },
  {
    "input": "input : list = [-1, 4, 5, 3, -4, -1]\noutput : list = [-4, -1, -1, 3, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([-1, 4, 5, 3, -4, -1]))",
    "io_inp": [
      -1,
      4,
      5,
      3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      -1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -2, 3, -5]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take(take([-1, -2, 3, -5],1),15),3)",
    "io_inp": [
      -1,
      -2,
      3,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),15),3)"
  },
  {
    "input": "input : list = [-3, -3, 5, 4, 1]\noutput : list = [5, 5, 1, -2, -3]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(mul_n([-3, -3, 5, 4, 1],-1)),2),1))",
    "io_inp": [
      -3,
      -3,
      5,
      4,
      1
    ],
    "io_out": [
      5,
      5,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(mul_n(input,-1)),2),1))"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-10, -6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sub_n([-2, -4, -2],1)))),2)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sub_n(input,1)))),2)"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = drop([-1, 3, 0],1)",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [2, -2]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(reverse([1, 5]))),3),-1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(reverse(input))),3),-1)"
  },
  {
    "input": "input : list = [3, -5, 2, 2, -3]\noutput : list = [-1, -2, -9]",
    "output": "generated_output : list = sort_des(take(take(sub_n(take([3, -5, 2, 2, -3],3),4),18),10))",
    "io_inp": [
      3,
      -5,
      2,
      2,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(take(input,3),4),18),10))"
  },
  {
    "input": "input : list = [-3, -3, 2, 5, 1, 1]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(sub_n([-3, -3, 2, 5, 1, 1],3))),2),2)",
    "io_inp": [
      -3,
      -3,
      2,
      5,
      1,
      1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(sub_n(input,3))),2),2)"
  },
  {
    "input": "input : list = [4, -1, 4, 4, 1]\noutput : list = [4, 16, 16, -4]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(reverse([4, -1, 4, 4, 1]),4)),4))",
    "io_inp": [
      4,
      -1,
      4,
      4,
      1
    ],
    "io_out": [
      4,
      16,
      16,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(reverse(input),4)),4))"
  },
  {
    "input": "input : list = [5, -4, -2, -2]\noutput : list = [-4, -2, -2, 5]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n(reverse([5, -4, -2, -2]),3)),9),3)",
    "io_inp": [
      5,
      -4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(reverse(input),3)),9),3)"
  },
  {
    "input": "input : list = [0, -4, -1]\noutput : list = [3, -1, 2]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(add_n([0, -4, -1],-1)),-4)),28)",
    "io_inp": [
      0,
      -4,
      -1
    ],
    "io_out": [
      3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(add_n(input,-1)),-4)),28)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(take(add_n(reverse(reverse([-1, -4])),1),18),41)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(reverse(input)),1),18),41)"
  },
  {
    "input": "input : list = [-5, -1, 4, -5]\noutput : list = [-4, -4, 0, 5]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(reverse([-5, -1, 4, -5])),17),27),-1)",
    "io_inp": [
      -5,
      -1,
      4,
      -5
    ],
    "io_out": [
      -4,
      -4,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(reverse(input)),17),27),-1)"
  },
  {
    "input": "input : list = [2, 0, 5, -5, 3, 0]\noutput : list = [8, 4, 2, -2]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(reverse([2, 0, 5, -5, 3, 0])),4),-1),2)",
    "io_inp": [
      2,
      0,
      5,
      -5,
      3,
      0
    ],
    "io_out": [
      8,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(reverse(input)),4),-1),2)"
  },
  {
    "input": "input : list = [5, 1, -1, 4]\noutput : list = [-40]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take([5, 1, -1, 4],1),4),-1),-4))",
    "io_inp": [
      5,
      1,
      -1,
      4
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take(input,1),4),-1),-4))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-5]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(sort_asc([-3, -1]))),-2),1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(sort_asc(input))),-2),1)"
  },
  {
    "input": "input : list = [2, 1, -5]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = take(mul_n(add_n([2, 1, -5],2),-1),14)",
    "io_inp": [
      2,
      1,
      -5
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,2),-1),14)"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(mul_n(drop(reverse(drop([-4, -2, -5],1)),1),4))",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(reverse(drop(input,1)),1),4))"
  },
  {
    "input": "input : list = [-1, 3, -5, 1, -5]\noutput : list = [-15, -5, 5, 25, 25]",
    "output": "generated_output : list = take(sort_asc(mul_n([-1, 3, -5, 1, -5],-5)),19)",
    "io_inp": [
      -1,
      3,
      -5,
      1,
      -5
    ],
    "io_out": [
      -15,
      -5,
      5,
      25,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-5)),19)"
  },
  {
    "input": "input : list = [-2, -4, -5]\noutput : list = [-13]",
    "output": "generated_output : list = add_n(mul_n(take([-2, -4, -5],1),4),-5)",
    "io_inp": [
      -2,
      -4,
      -5
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,1),4),-5)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [-5, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, -5])",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [2, 8]",
    "output": "generated_output : list = add_n(drop([-1, -1, 5],1),3)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [1, 2, 1, 1]\noutput : list = [1, 1, 1, 2]",
    "output": "generated_output : list = sort_asc([1, 2, 1, 1])",
    "io_inp": [
      1,
      2,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [8, 3, 1]",
    "output": "generated_output : list = sub_n([5, 0, -2],-3)",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      8,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 4, -3, -4, -1]\noutput : list = [1, -4, -5, -6, -7]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sort_asc([-2, 4, -3, -4, -1])),33)),-3)",
    "io_inp": [
      -2,
      4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      1,
      -4,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sort_asc(input)),33)),-3)"
  },
  {
    "input": "input : list = [5, 1, 5, -3, 0]\noutput : list = [-14, -5]",
    "output": "generated_output : list = mul_n(drop(add_n(mul_n(add_n([5, 1, 5, -3, 0],-2),3),1),3),1)",
    "io_inp": [
      5,
      1,
      5,
      -3,
      0
    ],
    "io_out": [
      -14,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(mul_n(add_n(input,-2),3),1),3),1)"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [-9, -7]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(drop([5, -2, -4],1)),-5),8))",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(drop(input,1)),-5),8))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(sort_asc([1, 0]),13)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),13)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [15, 6]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des([5, 2])),3)))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      15,
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des(input)),3)))"
  },
  {
    "input": "input : list = [5, -1, 0]\noutput : list = [1, 6, 7]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(add_n([5, -1, 0],-2))),4),-1)",
    "io_inp": [
      5,
      -1,
      0
    ],
    "io_out": [
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(add_n(input,-2))),4),-1)"
  },
  {
    "input": "input : list = [3, 2, 3, 0, -2]\noutput : list = [-84, -60, -36, -24, -24]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(add_n([3, 2, 3, 0, -2],-4),4),-4),3))",
    "io_inp": [
      3,
      2,
      3,
      0,
      -2
    ],
    "io_out": [
      -84,
      -60,
      -36,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(add_n(input,-4),4),-4),3))"
  },
  {
    "input": "input : list = [-1, -3, 1, 5, -3]\noutput : list = [5, 1, -1, -3, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 1, 5, -3])",
    "io_inp": [
      -1,
      -3,
      1,
      5,
      -3
    ],
    "io_out": [
      5,
      1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5, 1, 5, 1]\noutput : list = [-7, -4, -4, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(reverse([-2, 5, 1, 5, 1])),-5)))",
    "io_inp": [
      -2,
      5,
      1,
      5,
      1
    ],
    "io_out": [
      -7,
      -4,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [-2, 2, 4, 4]\noutput : list = [-1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n([-2, 2, 4, 4],-3),-4)))",
    "io_inp": [
      -2,
      2,
      4,
      4
    ],
    "io_out": [
      -1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(input,-3),-4)))"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -1, 1],1)",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 3, 5, -2, -2]\noutput : list = [12, -12, -20, 8, 8]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(add_n([-3, 3, 5, -2, -2],5),8),-5),4),-1)",
    "io_inp": [
      -3,
      3,
      5,
      -2,
      -2
    ],
    "io_out": [
      12,
      -12,
      -20,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(add_n(input,5),8),-5),4),-1)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des(take([0, 0, -1],1)),3)))",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(take(input,1)),3)))"
  },
  {
    "input": "input : list = [-3, 1, 5, 1, -2]\noutput : list = [10, -5, -25, -5, 15]",
    "output": "generated_output : list = reverse(mul_n([-3, 1, 5, 1, -2],-5))",
    "io_inp": [
      -3,
      1,
      5,
      1,
      -2
    ],
    "io_out": [
      10,
      -5,
      -25,
      -5,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -4, 4],1)",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -5, -1, 3]\noutput : list = [4, -28, -12, 4]",
    "output": "generated_output : list = mul_n(take(add_n(take(mul_n([3, -5, -1, 3],1),14),-2),21),4)",
    "io_inp": [
      3,
      -5,
      -1,
      3
    ],
    "io_out": [
      4,
      -28,
      -12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(mul_n(input,1),14),-2),21),4)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-8, -28]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(sort_asc([2, -3]),5)),-4),36)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -8,
      -28
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(sort_asc(input),5)),-4),36)"
  },
  {
    "input": "input : list = [3, -3, -1, 4]\noutput : list = [4, 3, -1, -3]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(sort_des([3, -3, -1, 4])),16),29))",
    "io_inp": [
      3,
      -3,
      -1,
      4
    ],
    "io_out": [
      4,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(sort_des(input)),16),29))"
  },
  {
    "input": "input : list = [3, 1, 3, 4, 0, -2]\noutput : list = [1]",
    "output": "generated_output : list = reverse(add_n(add_n(take(take([3, 1, 3, 4, 0, -2],1),17),-5),3))",
    "io_inp": [
      3,
      1,
      3,
      4,
      0,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(take(input,1),17),-5),3))"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, -5],1)",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(sort_asc([0, 3]),1),5),5),5)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(sort_asc(input),1),5),5),5)"
  },
  {
    "input": "input : list = [-4, -3, 1, 3]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(take([-4, -3, 1, 3],2)),2)))",
    "io_inp": [
      -4,
      -3,
      1,
      3
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(take(input,2)),2)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-12, -8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(mul_n([3, 4],-4))),-4))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(mul_n(input,-4))),-4))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n([-4, -2],-5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse([1, 3])",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2, 2, 4, -4]\noutput : list = [-20, -8, 8, 16, -16]",
    "output": "generated_output : list = mul_n([-5, -2, 2, 4, -4],4)",
    "io_inp": [
      -5,
      -2,
      2,
      4,
      -4
    ],
    "io_out": [
      -20,
      -8,
      8,
      16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, 0, 1, -1, 5, 3]\noutput : list = [16, 16, 8, 0, -4, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc([5, 0, 1, -1, 5, 3]))),-1),4)",
    "io_inp": [
      5,
      0,
      1,
      -1,
      5,
      3
    ],
    "io_out": [
      16,
      16,
      8,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc(input))),-1),4)"
  },
  {
    "input": "input : list = [-5, 4, -5, 3]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take(sort_asc(take(take([-5, 4, -5, 3],2),5)),31)",
    "io_inp": [
      -5,
      4,
      -5,
      3
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(take(input,2),5)),31)"
  },
  {
    "input": "input : list = [-1, 0, -5, 5, 1]\noutput : list = [5, 1, 0, -1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc([-1, 0, -5, 5, 1])),24)))",
    "io_inp": [
      -1,
      0,
      -5,
      5,
      1
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc(input)),24)))"
  },
  {
    "input": "input : list = [0, -2, -1, -4]\noutput : list = [12, 6, 8, 4]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(add_n([0, -2, -1, -4],-2),19)),-1),2)",
    "io_inp": [
      0,
      -2,
      -1,
      -4
    ],
    "io_out": [
      12,
      6,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(add_n(input,-2),19)),-1),2)"
  },
  {
    "input": "input : list = [-2, -1, -2, 1, -2]\noutput : list = [1, -2, -2]",
    "output": "generated_output : list = sort_des(reverse(drop([-2, -1, -2, 1, -2],2)))",
    "io_inp": [
      -2,
      -1,
      -2,
      1,
      -2
    ],
    "io_out": [
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [1, -4, -2, 1, 3]\noutput : list = [-4, -2, 1, 3]",
    "output": "generated_output : list = take(drop([1, -4, -2, 1, 3],1),15)",
    "io_inp": [
      1,
      -4,
      -2,
      1,
      3
    ],
    "io_out": [
      -4,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),15)"
  },
  {
    "input": "input : list = [-2, 2, -5, 2]\noutput : list = [-4, -11, -4, -8]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse(sub_n([-2, 2, -5, 2],4)),-2),-2),2)",
    "io_inp": [
      -2,
      2,
      -5,
      2
    ],
    "io_out": [
      -4,
      -11,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(sub_n(input,4)),-2),-2),2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-12, -8]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(add_n([0, -4],-3)),22),5))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(add_n(input,-3)),22),5))"
  },
  {
    "input": "input : list = [-3, -2, 2, 1, 5]\noutput : list = [-3, -2, 2, 1, 5]",
    "output": "generated_output : list = reverse(mul_n(reverse([-3, -2, 2, 1, 5]),1))",
    "io_inp": [
      -3,
      -2,
      2,
      1,
      5
    ],
    "io_out": [
      -3,
      -2,
      2,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),1))"
  },
  {
    "input": "input : list = [1, 2, -1, 0, -4]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sub_n(take([1, 2, -1, 0, -4],1),-2))",
    "io_inp": [
      1,
      2,
      -1,
      0,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(input,1),-2))"
  },
  {
    "input": "input : list = [-5, 4, 2, -5, -4, -1]\noutput : list = [8, -4, -16, -20, -20]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(sort_asc([-5, 4, 2, -5, -4, -1]),5)),4))",
    "io_inp": [
      -5,
      4,
      2,
      -5,
      -4,
      -1
    ],
    "io_out": [
      8,
      -4,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(sort_asc(input),5)),4))"
  },
  {
    "input": "input : list = [-4, 4, 0, 4, 3, -4]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(drop(sort_asc(add_n(sort_asc([-4, 4, 0, 4, 3, -4]),-5)),5),-1)",
    "io_inp": [
      -4,
      4,
      0,
      4,
      3,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(add_n(sort_asc(input),-5)),5),-1)"
  },
  {
    "input": "input : list = [1, -4, 4, -2]\noutput : list = [6, 3, 0, -2]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(sort_asc([1, -4, 4, -2])),-2),28))",
    "io_inp": [
      1,
      -4,
      4,
      -2
    ],
    "io_out": [
      6,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(sort_asc(input)),-2),28))"
  },
  {
    "input": "input : list = [-3, 0, -2, 0]\noutput : list = [0, 3, 1]",
    "output": "generated_output : list = take(sub_n([-3, 0, -2, 0],-3),3)",
    "io_inp": [
      -3,
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),3)"
  },
  {
    "input": "input : list = [0, -3, 1, 1, -3]\noutput : list = [15, 15, 3, -1, -1]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n([0, -3, 1, 1, -3],1))),-4),3)",
    "io_inp": [
      0,
      -3,
      1,
      1,
      -3
    ],
    "io_out": [
      15,
      15,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n(input,1))),-4),3)"
  },
  {
    "input": "input : list = [-3, -3, 3, 4]\noutput : list = [-5, -5, 7, 9]",
    "output": "generated_output : list = sub_n(mul_n([-3, -3, 3, 4],2),-1)",
    "io_inp": [
      -3,
      -3,
      3,
      4
    ],
    "io_out": [
      -5,
      -5,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-1)"
  },
  {
    "input": "input : list = [-5, -3, -3, 4]\noutput : list = [2, 4, 4, 11]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(sub_n([-5, -3, -3, 4],-2),1))),-4)",
    "io_inp": [
      -5,
      -3,
      -3,
      4
    ],
    "io_out": [
      2,
      4,
      4,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(sub_n(input,-2),1))),-4)"
  },
  {
    "input": "input : list = [-4, 0, -4, -2]\noutput : list = [-32, -32, -16, 0]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(mul_n([-4, 0, -4, -2],-4))),-2),23)",
    "io_inp": [
      -4,
      0,
      -4,
      -2
    ],
    "io_out": [
      -32,
      -32,
      -16,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(mul_n(input,-4))),-2),23)"
  },
  {
    "input": "input : list = [3, 2, -1, 2, 5, -4]\noutput : list = [-9, -6, 3, -6, -15, 12]",
    "output": "generated_output : list = mul_n([3, 2, -1, 2, 5, -4],-3)",
    "io_inp": [
      3,
      2,
      -1,
      2,
      5,
      -4
    ],
    "io_out": [
      -9,
      -6,
      3,
      -6,
      -15,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, -4, -2, -4, 5, -5]\noutput : list = [6, 5, 5, 3, -3, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([4, -4, -2, -4, 5, -5]),-1),-1)",
    "io_inp": [
      4,
      -4,
      -2,
      -4,
      5,
      -5
    ],
    "io_out": [
      6,
      5,
      5,
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),-1),-1)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_des(sort_asc([-2, -2])))))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, 5, 1, -3, -5, 2]\noutput : list = [-20, -20, -4, 12, 20, -8]",
    "output": "generated_output : list = mul_n([5, 5, 1, -3, -5, 2],-4)",
    "io_inp": [
      5,
      5,
      1,
      -3,
      -5,
      2
    ],
    "io_out": [
      -20,
      -20,
      -4,
      12,
      20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -1, 4, 4, -4]\noutput : list = [-4, 4, 4, -1, -1]",
    "output": "generated_output : list = take(reverse([-1, -1, 4, 4, -4]),9)",
    "io_inp": [
      -1,
      -1,
      4,
      4,
      -4
    ],
    "io_out": [
      -4,
      4,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [-2, -3, -1, 0, 5]\noutput : list = [-15, -14, -13, -12, -7]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(sub_n([-2, -3, -1, 0, 5],3),4)),43),5)",
    "io_inp": [
      -2,
      -3,
      -1,
      0,
      5
    ],
    "io_out": [
      -15,
      -14,
      -13,
      -12,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(sub_n(input,3),4)),43),5)"
  },
  {
    "input": "input : list = [-2, -1, 2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(add_n([-2, -1, 2, -3],5),-2),1)),-3)",
    "io_inp": [
      -2,
      -1,
      2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(add_n(input,5),-2),1)),-3)"
  },
  {
    "input": "input : list = [2, -4, 4, -1]\noutput : list = [-1, 4, -4, 2]",
    "output": "generated_output : list = reverse([2, -4, 4, -1])",
    "io_inp": [
      2,
      -4,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, -3, -5]\noutput : list = [20, 20, 15, 10]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n([-4, -5, -3, -5],-1)),-1),5)",
    "io_inp": [
      -4,
      -5,
      -3,
      -5
    ],
    "io_out": [
      20,
      20,
      15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(input,-1)),-1),5)"
  },
  {
    "input": "input : list = [4, -2, 5, -4, 5]\noutput : list = [12, 3, 12, 5, 11]",
    "output": "generated_output : list = reverse(sub_n(add_n([4, -2, 5, -4, 5],5),-2))",
    "io_inp": [
      4,
      -2,
      5,
      -4,
      5
    ],
    "io_out": [
      12,
      3,
      12,
      5,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,5),-2))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse([4, 1]),1),-1))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(input),1),-1))"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(take([1, 0, 4],1),-1),-2)),-4)",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(take(input,1),-1),-2)),-4)"
  },
  {
    "input": "input : list = [5, -1, 5, 2]\noutput : list = [-32, -80, 16, -80]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(reverse([5, -1, 5, 2]))),-4),4)",
    "io_inp": [
      5,
      -1,
      5,
      2
    ],
    "io_out": [
      -32,
      -80,
      16,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(reverse(input))),-4),4)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(take([-2, 4, 5],1)))),5)",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(take(input,1)))),5)"
  },
  {
    "input": "input : list = [5, 2, 1, -1, -4, 4]\noutput : list = [-4, -1, 1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_des([5, 2, 1, -1, -4, 4])))))",
    "io_inp": [
      5,
      2,
      1,
      -1,
      -4,
      4
    ],
    "io_out": [
      -4,
      -1,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 2, -1, 5, 4, -4]\noutput : list = [-1, 5, 4, -4]",
    "output": "generated_output : list = drop([5, 2, -1, 5, 4, -4],2)",
    "io_inp": [
      5,
      2,
      -1,
      5,
      4,
      -4
    ],
    "io_out": [
      -1,
      5,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [-8, -6, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(add_n([-3, 5, -5],-5))),-2),8)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      -8,
      -6,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(add_n(input,-5))),-2),8)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [-5, 0, -1]",
    "output": "generated_output : list = add_n([0, 5, 4],-5)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      -5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(sort_asc([4, 4]))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -3, 4, -2]\noutput : list = [13, -5, 16, -8]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(sub_n([5, -3, 4, -2],5),4)),-3),4)",
    "io_inp": [
      5,
      -3,
      4,
      -2
    ],
    "io_out": [
      13,
      -5,
      16,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(sub_n(input,5),4)),-3),4)"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [-12, -5, -4]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(add_n([3, -5, 2],-3),-4))),29)",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      -12,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(add_n(input,-3),-4))),29)"
  },
  {
    "input": "input : list = [-3, -2, -1, -4, -5]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(take([-3, -2, -1, -4, -5],3),1),-1),-2))",
    "io_inp": [
      -3,
      -2,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(take(input,3),1),-1),-2))"
  },
  {
    "input": "input : list = [3, 3, 0, -3, -3]\noutput : list = [-75, 0, 75, 75]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(sort_asc([3, 3, 0, -3, -3]),4),-5),5))",
    "io_inp": [
      3,
      3,
      0,
      -3,
      -3
    ],
    "io_out": [
      -75,
      0,
      75,
      75
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(sort_asc(input),4),-5),5))"
  },
  {
    "input": "input : list = [3, 2, 1, 0, 0]\noutput : list = [-10, -10]",
    "output": "generated_output : list = reverse(mul_n(add_n(drop(sort_des([3, 2, 1, 0, 0]),3),-2),5))",
    "io_inp": [
      3,
      2,
      1,
      0,
      0
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(drop(sort_des(input),3),-2),5))"
  },
  {
    "input": "input : list = [0, 1, -5, 5, -4, -4]\noutput : list = [15, -3, 27, 0, 0]",
    "output": "generated_output : list = mul_n(sub_n(drop([0, 1, -5, 5, -4, -4],1),-4),3)",
    "io_inp": [
      0,
      1,
      -5,
      5,
      -4,
      -4
    ],
    "io_out": [
      15,
      -3,
      27,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,1),-4),3)"
  },
  {
    "input": "input : list = [3, 1, -1, -4]\noutput : list = [20, 14, 10, 6]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(add_n([3, 1, -1, -4],-5),-3),-2),4))",
    "io_inp": [
      3,
      1,
      -1,
      -4
    ],
    "io_out": [
      20,
      14,
      10,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(add_n(input,-5),-3),-2),4))"
  },
  {
    "input": "input : list = [4, -2, 1]\noutput : list = [-1, -4, -7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des([4, -2, 1]),4),-1),-2)",
    "io_inp": [
      4,
      -2,
      1
    ],
    "io_out": [
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(input),4),-1),-2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [18, -18]",
    "output": "generated_output : list = reverse(take(mul_n(mul_n(sort_des([3, -3]),-3),2),13))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      18,
      -18
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(mul_n(sort_des(input),-3),2),13))"
  },
  {
    "input": "input : list = [3, -1, -5, 0, 1]\noutput : list = [5, 3, 2, 1, -3]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des([3, -1, -5, 0, 1]),3),22),-5)",
    "io_inp": [
      3,
      -1,
      -5,
      0,
      1
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(input),3),22),-5)"
  },
  {
    "input": "input : list = [5, 1, 2]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(take([5, 1, 2],1),-3),5)),-3)",
    "io_inp": [
      5,
      1,
      2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(take(input,1),-3),5)),-3)"
  },
  {
    "input": "input : list = [2, -4, 1, -3, -1, 0]\noutput : list = [0, 5, 15, -5, 20, -10]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n([2, -4, 1, -3, -1, 0],-5))))",
    "io_inp": [
      2,
      -4,
      1,
      -3,
      -1,
      0
    ],
    "io_out": [
      0,
      5,
      15,
      -5,
      20,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(input,-5))))"
  },
  {
    "input": "input : list = [5, 5, -3, 4, 0, -5]\noutput : list = [5, 5, 4, 0, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc([5, 5, -3, 4, 0, -5]))",
    "io_inp": [
      5,
      5,
      -3,
      4,
      0,
      -5
    ],
    "io_out": [
      5,
      5,
      4,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -4, -2, 2, -3, -2]\noutput : list = [-6, 8, 4]",
    "output": "generated_output : list = mul_n(take([3, -4, -2, 2, -3, -2],3),-2)",
    "io_inp": [
      3,
      -4,
      -2,
      2,
      -3,
      -2
    ],
    "io_out": [
      -6,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-2)"
  },
  {
    "input": "input : list = [-2, -2, 2, -3, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(reverse([-2, -2, 2, -3, 5])),2),-4),4)",
    "io_inp": [
      -2,
      -2,
      2,
      -3,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(reverse(input)),2),-4),4)"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [15, 5, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([3, 1, -4]),5))",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      15,
      5,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [1, -1, -5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take(mul_n(drop([1, -1, -5, -3],2),1),5)",
    "io_inp": [
      1,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,2),1),5)"
  },
  {
    "input": "input : list = [-4, 5, 4, -1, -1, -3]\noutput : list = [-4, 5, 4, -1, -1, -3]",
    "output": "generated_output : list = add_n(add_n([-4, 5, 4, -1, -1, -3],3),-3)",
    "io_inp": [
      -4,
      5,
      4,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -4,
      5,
      4,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-3)"
  },
  {
    "input": "input : list = [-5, 0, 0, 3, 3]\noutput : list = [2, 2, -1, -1, -6]",
    "output": "generated_output : list = add_n(reverse([-5, 0, 0, 3, 3]),-1)",
    "io_inp": [
      -5,
      0,
      0,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 4, -5],1)",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 1, 3, 5, -1]\noutput : list = [-9, 3, 9, 15, 21]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des([-5, 1, 3, 5, -1]),3),5)),-1)",
    "io_inp": [
      -5,
      1,
      3,
      5,
      -1
    ],
    "io_out": [
      -9,
      3,
      9,
      15,
      21
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des(input),3),5)),-1)"
  },
  {
    "input": "input : list = [2, 1, -4, 0]\noutput : list = [-80, 0, 20, 40]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_des([2, 1, -4, 0]),5))),4)",
    "io_inp": [
      2,
      1,
      -4,
      0
    ],
    "io_out": [
      -80,
      0,
      20,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_des(input),5))),4)"
  },
  {
    "input": "input : list = [3, -1, -2, -3, -4]\noutput : list = [-95, -70, -45, -20, 80]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n([3, -1, -2, -3, -4],5),5),-5))",
    "io_inp": [
      3,
      -1,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -95,
      -70,
      -45,
      -20,
      80
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(input,5),5),-5))"
  },
  {
    "input": "input : list = [4, 5, 4, 4]\noutput : list = [4, 5, 4, 4]",
    "output": "generated_output : list = mul_n([4, 5, 4, 4],1)",
    "io_inp": [
      4,
      5,
      4,
      4
    ],
    "io_out": [
      4,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, 4, 5, 0]\noutput : list = [3, 4, 7, 8]",
    "output": "generated_output : list = reverse(add_n(sort_des([1, 4, 5, 0]),3))",
    "io_inp": [
      1,
      4,
      5,
      0
    ],
    "io_out": [
      3,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-5, -1, -1, 1, 4, -4]\noutput : list = [-4, -3, 0, 0, 2, 5]",
    "output": "generated_output : list = take(take(sub_n(take(sort_asc([-5, -1, -1, 1, 4, -4]),28),-1),49),58)",
    "io_inp": [
      -5,
      -1,
      -1,
      1,
      4,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(sort_asc(input),28),-1),49),58)"
  },
  {
    "input": "input : list = [3, -2, -4, 0]\noutput : list = [9, -6, -12, 0]",
    "output": "generated_output : list = mul_n(take(reverse(reverse([3, -2, -4, 0])),8),3)",
    "io_inp": [
      3,
      -2,
      -4,
      0
    ],
    "io_out": [
      9,
      -6,
      -12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(input)),8),3)"
  },
  {
    "input": "input : list = [-4, -3, -1, 5]\noutput : list = [-18, -14, -6, 18]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(mul_n([-4, -3, -1, 5],-4))),-2),-1)",
    "io_inp": [
      -4,
      -3,
      -1,
      5
    ],
    "io_out": [
      -18,
      -14,
      -6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(mul_n(input,-4))),-2),-1)"
  },
  {
    "input": "input : list = [-5, -1, -1, 5, 4]\noutput : list = [-6, -6, -1, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(drop([-5, -1, -1, 5, 4],1))),5),7)",
    "io_inp": [
      -5,
      -1,
      -1,
      5,
      4
    ],
    "io_out": [
      -6,
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(drop(input,1))),5),7)"
  },
  {
    "input": "input : list = [-3, 4, 3, 5]\noutput : list = [23, 18, 13, -17]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(sort_des([-3, 4, 3, 5]),5)),2))",
    "io_inp": [
      -3,
      4,
      3,
      5
    ],
    "io_out": [
      23,
      18,
      13,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(sort_des(input),5)),2))"
  },
  {
    "input": "input : list = [-5, -3, 0, -2, 4, 1]\noutput : list = [15, 9, 6, 0]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(take([-5, -3, 0, -2, 4, 1],4)),-3),40))",
    "io_inp": [
      -5,
      -3,
      0,
      -2,
      4,
      1
    ],
    "io_out": [
      15,
      9,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(take(input,4)),-3),40))"
  },
  {
    "input": "input : list = [3, 1, 2, 1, 5, -1]\noutput : list = [4, 6, 6, 7, 8, 10]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(add_n([3, 1, 2, 1, 5, -1],5)),7)))",
    "io_inp": [
      3,
      1,
      2,
      1,
      5,
      -1
    ],
    "io_out": [
      4,
      6,
      6,
      7,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(add_n(input,5)),7)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-14, -16]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(mul_n([-5, -4],2)),2),1),-3)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -14,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(mul_n(input,2)),2),1),-3)"
  },
  {
    "input": "input : list = [3, 0, 2, 0, -2, -3]\noutput : list = [-3, -2, 0, 2, 0, 3]",
    "output": "generated_output : list = reverse([3, 0, 2, 0, -2, -3])",
    "io_inp": [
      3,
      0,
      2,
      0,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0,
      2,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [7, 9]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n([-3, -2],-2)),-2),1)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(input,-2)),-2),1)"
  },
  {
    "input": "input : list = [0, 1, -3]\noutput : list = [8, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(take(mul_n([0, 1, -3],2),8),4),2))",
    "io_inp": [
      0,
      1,
      -3
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(mul_n(input,2),8),4),2))"
  },
  {
    "input": "input : list = [-4, 5, 0, -3, 5]\noutput : list = [-9, -8, -5, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(sort_asc([-4, 5, 0, -3, 5]),9),-5)))",
    "io_inp": [
      -4,
      5,
      0,
      -3,
      5
    ],
    "io_out": [
      -9,
      -8,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(sort_asc(input),9),-5)))"
  },
  {
    "input": "input : list = [4, 5, 0, 0, -2]\noutput : list = [7, 6, 2, 2, 0]",
    "output": "generated_output : list = sort_des(add_n([4, 5, 0, 0, -2],2))",
    "io_inp": [
      4,
      5,
      0,
      0,
      -2
    ],
    "io_out": [
      7,
      6,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [-1, 4, -5, -3]\noutput : list = [-4, 1, -8, -6]",
    "output": "generated_output : list = take(reverse(take(sub_n(reverse([-1, 4, -5, -3]),3),22)),16)",
    "io_inp": [
      -1,
      4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      1,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(reverse(input),3),22)),16)"
  },
  {
    "input": "input : list = [-1, -3, 2, -3]\noutput : list = [4, -28, 52, -28]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([-1, -3, 2, -3],4),-5),4)",
    "io_inp": [
      -1,
      -3,
      2,
      -3
    ],
    "io_out": [
      4,
      -28,
      52,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,4),-5),4)"
  },
  {
    "input": "input : list = [-2, 4, 2, 0]\noutput : list = [20, 140, 100, 60]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(reverse([-2, 4, 2, 0])),-3),-5),-4)",
    "io_inp": [
      -2,
      4,
      2,
      0
    ],
    "io_out": [
      20,
      140,
      100,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(reverse(input)),-3),-5),-4)"
  },
  {
    "input": "input : list = [2, -1, 4, 1, -1, -1]\noutput : list = [6, 6, 8, 11]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(drop([2, -1, 4, 1, -1, -1],2))),2),-5)",
    "io_inp": [
      2,
      -1,
      4,
      1,
      -1,
      -1
    ],
    "io_out": [
      6,
      6,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(drop(input,2))),2),-5)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse([1, 3])",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -3, 3]\noutput : list = [-3, 5, 9]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(mul_n([1, -3, 3],2)),15),-3))",
    "io_inp": [
      1,
      -3,
      3
    ],
    "io_out": [
      -3,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(mul_n(input,2)),15),-3))"
  },
  {
    "input": "input : list = [-1, -2, -4]\noutput : list = [5, 10, 20]",
    "output": "generated_output : list = take(mul_n([-1, -2, -4],-5),8)",
    "io_inp": [
      -1,
      -2,
      -4
    ],
    "io_out": [
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),8)"
  },
  {
    "input": "input : list = [5, 1, -1, -3, -4, 4]\noutput : list = [-23, 1, 13, 25, 31, -17]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n([5, 1, -1, -3, -4, 4],-2),-2),3),-5)",
    "io_inp": [
      5,
      1,
      -1,
      -3,
      -4,
      4
    ],
    "io_out": [
      -23,
      1,
      13,
      25,
      31,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(input,-2),-2),3),-5)"
  },
  {
    "input": "input : list = [4, 3, -2, 0, 3]\noutput : list = [-6, -2, 4, 4]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(drop([4, 3, -2, 0, 3],1)),1),2),2)",
    "io_inp": [
      4,
      3,
      -2,
      0,
      3
    ],
    "io_out": [
      -6,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(drop(input,1)),1),2),2)"
  },
  {
    "input": "input : list = [4, -1, 4, 1, 3, -1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(add_n(sub_n(drop(sub_n([4, -1, 4, 1, 3, -1],-1),5),4),4))",
    "io_inp": [
      4,
      -1,
      4,
      1,
      3,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(drop(sub_n(input,-1),5),4),4))"
  },
  {
    "input": "input : list = [0, -2, -2, -2]\noutput : list = [4, -6, -6, -6]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(mul_n([0, -2, -2, -2],1),5)),37),4)",
    "io_inp": [
      0,
      -2,
      -2,
      -2
    ],
    "io_out": [
      4,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(mul_n(input,1),5)),37),4)"
  },
  {
    "input": "input : list = [-4, -5, -1, -1, 2]\noutput : list = [6, 6, 0]",
    "output": "generated_output : list = mul_n(take(take(add_n(drop([-4, -5, -1, -1, 2],2),-2),4),36),-2)",
    "io_inp": [
      -4,
      -5,
      -1,
      -1,
      2
    ],
    "io_out": [
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(drop(input,2),-2),4),36),-2)"
  },
  {
    "input": "input : list = [4, 1, 2, -4, -2, 3]\noutput : list = [2, -4, -2, 3]",
    "output": "generated_output : list = drop([4, 1, 2, -4, -2, 3],2)",
    "io_inp": [
      4,
      1,
      2,
      -4,
      -2,
      3
    ],
    "io_out": [
      2,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -1, -2, -4, -5, 2]\noutput : list = [2, -1, -2, -2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sort_asc([-2, -1, -2, -4, -5, 2]),1))))",
    "io_inp": [
      -2,
      -1,
      -2,
      -4,
      -5,
      2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-1, -2, -2, 3, 3]\noutput : list = [-2, -2, -1, 3, 3]",
    "output": "generated_output : list = sort_asc([-1, -2, -2, 3, 3])",
    "io_inp": [
      -1,
      -2,
      -2,
      3,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [5, 3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(sort_asc([0, 2]),-2))),5)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(sort_asc(input),-2))),5)"
  },
  {
    "input": "input : list = [4, 5, 0, -1, -4, 3]\noutput : list = [2, 3, -2, -3, -6, 1]",
    "output": "generated_output : list = add_n([4, 5, 0, -1, -4, 3],-2)",
    "io_inp": [
      4,
      5,
      0,
      -1,
      -4,
      3
    ],
    "io_out": [
      2,
      3,
      -2,
      -3,
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [5, 5, 4, -5]\noutput : list = [33, 33, 24, -57]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n([5, 5, 4, -5],-3))),-4),-3)",
    "io_inp": [
      5,
      5,
      4,
      -5
    ],
    "io_out": [
      33,
      33,
      24,
      -57
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n(input,-3))),-4),-3)"
  },
  {
    "input": "input : list = [-4, -5, 1, 0, 1, -3]\noutput : list = [-63, -48, -33, 12, 27, 27]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(mul_n([-4, -5, 1, 0, 1, -3],5),-4),32),3))",
    "io_inp": [
      -4,
      -5,
      1,
      0,
      1,
      -3
    ],
    "io_out": [
      -63,
      -48,
      -33,
      12,
      27,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(mul_n(input,5),-4),32),3))"
  },
  {
    "input": "input : list = [-3, 0, 5, -1]\noutput : list = [30, 0, -6, -18]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(mul_n([-3, 0, 5, -1],-3)),-2),8),1)",
    "io_inp": [
      -3,
      0,
      5,
      -1
    ],
    "io_out": [
      30,
      0,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(mul_n(input,-3)),-2),8),1)"
  },
  {
    "input": "input : list = [4, 0, 2, -4]\noutput : list = [9, 7, 5, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n([4, 0, 2, -4],1)),3),-1)",
    "io_inp": [
      4,
      0,
      2,
      -4
    ],
    "io_out": [
      9,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(input,1)),3),-1)"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = add_n(sort_asc([3, -5, -4]),2)",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [2, -2, 4]\noutput : list = [-6, 6, 12]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sort_des([2, -2, 4])),18),32),3)",
    "io_inp": [
      2,
      -2,
      4
    ],
    "io_out": [
      -6,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sort_des(input)),18),32),3)"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [50]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(take([2, 2, -5],1))),-5),-5)",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(take(input,1))),-5),-5)"
  },
  {
    "input": "input : list = [3, -5, 0]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_des([3, -5, 0])),-1)))",
    "io_inp": [
      3,
      -5,
      0
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [2, 1, 0, 2, -1]\noutput : list = [1, 2, 3, 4, 4]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(sub_n([2, 1, 0, 2, -1],-1)),-5)),-4)",
    "io_inp": [
      2,
      1,
      0,
      2,
      -1
    ],
    "io_out": [
      1,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(sub_n(input,-1)),-5)),-4)"
  },
  {
    "input": "input : list = [2, 5, 1, -4, 2]\noutput : list = [1, -4, 2]",
    "output": "generated_output : list = drop([2, 5, 1, -4, 2],2)",
    "io_inp": [
      2,
      5,
      1,
      -4,
      2
    ],
    "io_out": [
      1,
      -4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -5, 5, 4, -4]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(sub_n([1, -5, 5, 4, -4],2))),1),-2)",
    "io_inp": [
      1,
      -5,
      5,
      4,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(sub_n(input,2))),1),-2)"
  },
  {
    "input": "input : list = [-2, 0, -2, 2, 1]\noutput : list = [-1, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_des([-2, 0, -2, 2, 1]))),-3))",
    "io_inp": [
      -2,
      0,
      -2,
      2,
      1
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [4, 5, 1]",
    "output": "generated_output : list = reverse(mul_n([-1, -5, -4],-1))",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      4,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [3, 3, -2, 0]\noutput : list = [0]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(take([3, 3, -2, 0],1)),27),-4),1)",
    "io_inp": [
      3,
      3,
      -2,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(take(input,1)),27),-4),1)"
  },
  {
    "input": "input : list = [-3, -4, 3, -5]\noutput : list = [0, 8]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(drop([-3, -4, 3, -5],2),-5),16)))",
    "io_inp": [
      -3,
      -4,
      3,
      -5
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(drop(input,2),-5),16)))"
  },
  {
    "input": "input : list = [0, -1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = drop([0, -1, -2],1)",
    "io_inp": [
      0,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3, 5, 3, 2]\noutput : list = [0, 2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([0, 3, 5, 3, 2])))",
    "io_inp": [
      0,
      3,
      5,
      3,
      2
    ],
    "io_out": [
      0,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [2, 2, -4]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(reverse([-5, 1, 1])),19),1))",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(reverse(input)),19),1))"
  },
  {
    "input": "input : list = [1, 1, -4, 3, 4]\noutput : list = [-4, 1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(take(reverse([1, 1, -4, 3, 4]),16))",
    "io_inp": [
      1,
      1,
      -4,
      3,
      4
    ],
    "io_out": [
      -4,
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),16))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-1, 17]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse([4, -2]),3),-5),9)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -1,
      17
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(input),3),-5),9)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [60, 80]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(reverse([4, 3])),-4),-5))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      60,
      80
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(reverse(input)),-4),-5))"
  },
  {
    "input": "input : list = [1, -5, -4]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = sort_asc([1, -5, -4])",
    "io_inp": [
      1,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, 5, -3, -3]\noutput : list = [-10, -10]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(drop([1, -1, 5, -3, -3],3),4))),-3)",
    "io_inp": [
      1,
      -1,
      5,
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(drop(input,3),4))),-3)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [10, 4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(add_n([-3, 3],4),4))),-1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(add_n(input,4),4))),-1)"
  },
  {
    "input": "input : list = [0, 5, -1]\noutput : list = [8, 14, 9]",
    "output": "generated_output : list = sub_n(reverse(sub_n([0, 5, -1],-5)),-4)",
    "io_inp": [
      0,
      5,
      -1
    ],
    "io_out": [
      8,
      14,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,-5)),-4)"
  },
  {
    "input": "input : list = [3, 1, 4, -5, -4, 0]\noutput : list = [6, 5, 3, 2, -2, -3]",
    "output": "generated_output : list = take(take(sort_des(sort_des(sub_n([3, 1, 4, -5, -4, 0],-2))),31),40)",
    "io_inp": [
      3,
      1,
      4,
      -5,
      -4,
      0
    ],
    "io_out": [
      6,
      5,
      3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_des(sub_n(input,-2))),31),40)"
  },
  {
    "input": "input : list = [3, -1, -2, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = drop(reverse(sort_des(reverse(sort_des([3, -1, -2, 3])))),2)",
    "io_inp": [
      3,
      -1,
      -2,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_des(reverse(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [5, 5, 3, -2]\noutput : list = [5, 5, 3, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(reverse([5, 5, 3, -2]),5))))",
    "io_inp": [
      5,
      5,
      3,
      -2
    ],
    "io_out": [
      5,
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(reverse(input),5))))"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(drop([-5, -3, -1],1),1),-3),-1))",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(drop(input,1),1),-3),-1))"
  },
  {
    "input": "input : list = [4, -1, 2, 5, -1]\noutput : list = [-6, -6, -3, -1, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sub_n([4, -1, 2, 5, -1],-1),-1)),-5))",
    "io_inp": [
      4,
      -1,
      2,
      5,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sub_n(input,-1),-1)),-5))"
  },
  {
    "input": "input : list = [0, 5, 0, -2, 3]\noutput : list = [1, 6]",
    "output": "generated_output : list = take(mul_n(sub_n(take(take([0, 5, 0, -2, 3],3),2),-1),1),8)",
    "io_inp": [
      0,
      5,
      0,
      -2,
      3
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(take(input,3),2),-1),1),8)"
  },
  {
    "input": "input : list = [-1, -2, 3, 3, -1]\noutput : list = [-9, -5, -5, 11, 11]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(mul_n([-1, -2, 3, 3, -1],4),1))))",
    "io_inp": [
      -1,
      -2,
      3,
      3,
      -1
    ],
    "io_out": [
      -9,
      -5,
      -5,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(mul_n(input,4),1))))"
  },
  {
    "input": "input : list = [5, 4, 1, -2, 0, -5]\noutput : list = [-125, -100, -25, 50, 0, 125]",
    "output": "generated_output : list = mul_n(mul_n([5, 4, 1, -2, 0, -5],5),-5)",
    "io_inp": [
      5,
      4,
      1,
      -2,
      0,
      -5
    ],
    "io_out": [
      -125,
      -100,
      -25,
      50,
      0,
      125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,5),-5)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [-5, 4, -3]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(reverse([4, -5, 2]),11),-1),-1))",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(reverse(input),11),-1),-1))"
  },
  {
    "input": "input : list = [-4, 1, -3, 2]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-4, 1, -3, 2])),3)",
    "io_inp": [
      -4,
      1,
      -3,
      2
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-1, 5, 1, 3, -5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(drop(reverse([-1, 5, 1, 3, -5]),4)),-2))",
    "io_inp": [
      -1,
      5,
      1,
      3,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(drop(reverse(input),4)),-2))"
  },
  {
    "input": "input : list = [5, 0, 4]\noutput : list = [-20]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(take([5, 0, 4],1)),-4),33),20)",
    "io_inp": [
      5,
      0,
      4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(take(input,1)),-4),33),20)"
  },
  {
    "input": "input : list = [3, -4, 3, 1]\noutput : list = [22, 8, 22]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n([3, -4, 3, 1],-3),5),2),3)",
    "io_inp": [
      3,
      -4,
      3,
      1
    ],
    "io_out": [
      22,
      8,
      22
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(input,-3),5),2),3)"
  },
  {
    "input": "input : list = [0, -1, 0, 0, 0]\noutput : list = [0, 0, 0, -1]",
    "output": "generated_output : list = take(reverse([0, -1, 0, 0, 0]),4)",
    "io_inp": [
      0,
      -1,
      0,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_asc([2, 3]),2))),3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_asc(input),2))),3)"
  },
  {
    "input": "input : list = [5, 1, -4, -4]\noutput : list = [-21, -21, -6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(reverse([5, 1, -4, -4]),-3))),3)",
    "io_inp": [
      5,
      1,
      -4,
      -4
    ],
    "io_out": [
      -21,
      -21,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(reverse(input),-3))),3)"
  },
  {
    "input": "input : list = [-4, -1, -5, 0, 2]\noutput : list = [10, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(drop([-4, -1, -5, 0, 2],3),-1),3),-5))",
    "io_inp": [
      -4,
      -1,
      -5,
      0,
      2
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(drop(input,3),-1),3),-5))"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = sort_des([2, 5, 4])",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, 0, 4]\noutput : list = [0, -1, 0, 4]",
    "output": "generated_output : list = mul_n(mul_n([0, -1, 0, 4],1),1)",
    "io_inp": [
      0,
      -1,
      0,
      4
    ],
    "io_out": [
      0,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),1)"
  },
  {
    "input": "input : list = [-3, -4, 4, 5, -4, -3]\noutput : list = [-2, -3, 6, 5, -3, -2]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(add_n([-3, -4, 4, 5, -4, -3],-2)),-4),18),1)",
    "io_inp": [
      -3,
      -4,
      4,
      5,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -3,
      6,
      5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(add_n(input,-2)),-4),18),1)"
  },
  {
    "input": "input : list = [4, -2, 4, -5, 4, 1]\noutput : list = [40, 25, 10, -5, -5, -5]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n([4, -2, 4, -5, 4, 1],4)),-1),-5)",
    "io_inp": [
      4,
      -2,
      4,
      -5,
      4,
      1
    ],
    "io_out": [
      40,
      25,
      10,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(input,4)),-1),-5)"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [-9, -7, -6]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(sub_n([-1, 0, -3],4)),3)),-2)",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      -9,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(sub_n(input,4)),3)),-2)"
  },
  {
    "input": "input : list = [2, -3, 4, -4, -4]\noutput : list = [-16, -8, 12, 16, 16]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(sort_asc([2, -3, 4, -4, -4])),17),-4))",
    "io_inp": [
      2,
      -3,
      4,
      -4,
      -4
    ],
    "io_out": [
      -16,
      -8,
      12,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(sort_asc(input)),17),-4))"
  },
  {
    "input": "input : list = [-4, 5, 3, 4]\noutput : list = [16, -20, -12, -16]",
    "output": "generated_output : list = mul_n([-4, 5, 3, 4],-4)",
    "io_inp": [
      -4,
      5,
      3,
      4
    ],
    "io_out": [
      16,
      -20,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -3, -2]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_des(take([-5, -3, -2],1)))",
    "io_inp": [
      -5,
      -3,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-1, -4, 2, -4, 0, 1]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = reverse(sub_n(take(take(drop([-1, -4, 2, -4, 0, 1],3),5),18),1))",
    "io_inp": [
      -1,
      -4,
      2,
      -4,
      0,
      1
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(drop(input,3),5),18),1))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(add_n(sub_n(take(sub_n([0, -5],3),12),2),5),19)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(take(sub_n(input,3),12),2),5),19)"
  },
  {
    "input": "input : list = [2, -3, -3, -3]\noutput : list = [14, 14, 14, -11]",
    "output": "generated_output : list = reverse(add_n(mul_n([2, -3, -3, -3],-5),-1))",
    "io_inp": [
      2,
      -3,
      -3,
      -3
    ],
    "io_out": [
      14,
      14,
      14,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-5),-1))"
  },
  {
    "input": "input : list = [-1, 1, 5, -3, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(sort_des(take(drop(drop([-1, 1, 5, -3, 1],1),3),20)))",
    "io_inp": [
      -1,
      1,
      5,
      -3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(drop(drop(input,1),3),20)))"
  },
  {
    "input": "input : list = [4, 2, -1, -2, -2, 3]\noutput : list = [2, -2, -3, -3]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(drop([4, 2, -1, -2, -2, 3],2)),-1)))",
    "io_inp": [
      4,
      2,
      -1,
      -2,
      -2,
      3
    ],
    "io_out": [
      2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(drop(input,2)),-1)))"
  },
  {
    "input": "input : list = [4, 5, 1, -5, 4, -4]\noutput : list = [-15, -15, -18]",
    "output": "generated_output : list = sub_n(drop(sort_des(mul_n(reverse([4, 5, 1, -5, 4, -4]),-3)),3),3)",
    "io_inp": [
      4,
      5,
      1,
      -5,
      4,
      -4
    ],
    "io_out": [
      -15,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(mul_n(reverse(input),-3)),3),3)"
  },
  {
    "input": "input : list = [-4, 1, 5, -4, 1]\noutput : list = [-104, -40, -40, 40, 40]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(mul_n([-4, 1, 5, -4, 1],4),-4)),-2),-4)",
    "io_inp": [
      -4,
      1,
      5,
      -4,
      1
    ],
    "io_out": [
      -104,
      -40,
      -40,
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(mul_n(input,4),-4)),-2),-4)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-40, 80]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(mul_n([2, -4],4)))),-5)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -40,
      80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(mul_n(input,4)))),-5)"
  },
  {
    "input": "input : list = [5, -3, -3, 0, -5, 5]\noutput : list = [3, -5, -5]",
    "output": "generated_output : list = add_n(take([5, -3, -3, 0, -5, 5],3),-2)",
    "io_inp": [
      5,
      -3,
      -3,
      0,
      -5,
      5
    ],
    "io_out": [
      3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-2)"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(drop([-4, -3, 1],1)),1)))",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(drop(input,1)),1)))"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [2, 3, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(add_n([1, 2, 5],1),-2))),-2)",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(add_n(input,1),-2))),-2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(add_n([1, 1],-4)),-4)))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(add_n(input,-4)),-4)))"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(drop([1, 3, 4],1),3))))",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(drop(input,1),3))))"
  },
  {
    "input": "input : list = [0, -5, -4, 0, -4, -2]\noutput : list = [0, 15, 12, 0, 12, 6]",
    "output": "generated_output : list = mul_n([0, -5, -4, 0, -4, -2],-3)",
    "io_inp": [
      0,
      -5,
      -4,
      0,
      -4,
      -2
    ],
    "io_out": [
      0,
      15,
      12,
      0,
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, -1, -3, 3]\noutput : list = [14, 8, 10, 12]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(add_n([1, -1, -3, 3],1),-2)),-3),-5)",
    "io_inp": [
      1,
      -1,
      -3,
      3
    ],
    "io_out": [
      14,
      8,
      10,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(add_n(input,1),-2)),-3),-5)"
  },
  {
    "input": "input : list = [-2, -5, 2, -5, 2, -3]\noutput : list = [-4, -7, 0, -7, 0, -5]",
    "output": "generated_output : list = add_n(sub_n([-2, -5, 2, -5, 2, -3],3),1)",
    "io_inp": [
      -2,
      -5,
      2,
      -5,
      2,
      -3
    ],
    "io_out": [
      -4,
      -7,
      0,
      -7,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),1)"
  },
  {
    "input": "input : list = [-5, 1, 0, 5, -5]\noutput : list = [-12, -6, -7, -2, -12]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(add_n([-5, 1, 0, 5, -5],-3),-1),-2),12),-3)",
    "io_inp": [
      -5,
      1,
      0,
      5,
      -5
    ],
    "io_out": [
      -12,
      -6,
      -7,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(add_n(input,-3),-1),-2),12),-3)"
  },
  {
    "input": "input : list = [4, 0, -5, 2]\noutput : list = [-1, 4, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n([4, 0, -5, 2],-4))))",
    "io_inp": [
      4,
      0,
      -5,
      2
    ],
    "io_out": [
      -1,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(input,-4))))"
  },
  {
    "input": "input : list = [1, 2, 5, 4, 4, 0]\noutput : list = [4, 5, 8, 7, 7, 3]",
    "output": "generated_output : list = sub_n([1, 2, 5, 4, 4, 0],-3)",
    "io_inp": [
      1,
      2,
      5,
      4,
      4,
      0
    ],
    "io_out": [
      4,
      5,
      8,
      7,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 1, -1, -4, 4, -1]\noutput : list = [4, 1, -1, -1, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc([-1, 1, -1, -4, 4, -1]))",
    "io_inp": [
      -1,
      1,
      -1,
      -4,
      4,
      -1
    ],
    "io_out": [
      4,
      1,
      -1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -4, 3, 0]\noutput : list = [4, -12, -24, -24]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(add_n([3, -4, 3, 0],3))),-4))",
    "io_inp": [
      3,
      -4,
      3,
      0
    ],
    "io_out": [
      4,
      -12,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(add_n(input,3))),-4))"
  },
  {
    "input": "input : list = [1, -4, 0, 2, 4]\noutput : list = [3, -1, -2, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(mul_n([1, -4, 0, 2, 4],-1),1),4)),-2)",
    "io_inp": [
      1,
      -4,
      0,
      2,
      4
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(mul_n(input,-1),1),4)),-2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse([-3, -5]),-4)))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(input),-4)))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(sort_asc([-4, 5])))))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, 5, 4, 4, -2]\noutput : list = [5, 4, 4, -2]",
    "output": "generated_output : list = sub_n(sub_n(drop([0, 5, 4, 4, -2],1),2),-2)",
    "io_inp": [
      0,
      5,
      4,
      4,
      -2
    ],
    "io_out": [
      5,
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),2),-2)"
  },
  {
    "input": "input : list = [2, -5, 1, 4, 4]\noutput : list = [24, 0, -4, -12, -12]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sub_n([2, -5, 1, 4, 4],1),-4))))",
    "io_inp": [
      2,
      -5,
      1,
      4,
      4
    ],
    "io_out": [
      24,
      0,
      -4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sub_n(input,1),-4))))"
  },
  {
    "input": "input : list = [-5, -5, 3, 3]\noutput : list = [5, 5, 13, 13]",
    "output": "generated_output : list = add_n(sub_n([-5, -5, 3, 3],-5),5)",
    "io_inp": [
      -5,
      -5,
      3,
      3
    ],
    "io_out": [
      5,
      5,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),5)"
  },
  {
    "input": "input : list = [0, 1, -4, -4]\noutput : list = [16, 0, -64, -64]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sort_des([0, 1, -4, -4]),-4))),-4)",
    "io_inp": [
      0,
      1,
      -4,
      -4
    ],
    "io_out": [
      16,
      0,
      -64,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sort_des(input),-4))),-4)"
  },
  {
    "input": "input : list = [0, -4, 2, 2, 0]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(take([0, -4, 2, 2, 0],2)))),-3)",
    "io_inp": [
      0,
      -4,
      2,
      2,
      0
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(take(input,2)))),-3)"
  },
  {
    "input": "input : list = [-5, 0, 4, 3]\noutput : list = [-20, -16]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(drop(mul_n([-5, 0, 4, 3],-4),2),2),5),-3)",
    "io_inp": [
      -5,
      0,
      4,
      3
    ],
    "io_out": [
      -20,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(drop(mul_n(input,-4),2),2),5),-3)"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [-5, -8, -11]",
    "output": "generated_output : list = add_n(add_n([2, -1, -4],-5),-2)",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),-2)"
  },
  {
    "input": "input : list = [3, 4, 1, 1, -1, 1]\noutput : list = [-20, -15, -5]",
    "output": "generated_output : list = sort_asc(take(mul_n([3, 4, 1, 1, -1, 1],-5),3))",
    "io_inp": [
      3,
      4,
      1,
      1,
      -1,
      1
    ],
    "io_out": [
      -20,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,-5),3))"
  },
  {
    "input": "input : list = [-2, 5, 3, -4]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take(add_n(take(take([-2, 5, 3, -4],1),4),-3),30))",
    "io_inp": [
      -2,
      5,
      3,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(take(input,1),4),-3),30))"
  },
  {
    "input": "input : list = [-1, 3, -1, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 3, -1, 3],1)",
    "io_inp": [
      -1,
      3,
      -1,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 5, -3, 4, -4, 3]\noutput : list = [-10, -9, -8, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-5, 5, -3, 4, -4, 3]),5))",
    "io_inp": [
      -5,
      5,
      -3,
      4,
      -4,
      3
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),5))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [12, 7]",
    "output": "generated_output : list = reverse(add_n(sub_n([-2, 3],-5),4))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      12,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-5),4))"
  },
  {
    "input": "input : list = [-4, 4, -4, 5, -1, 4]\noutput : list = [-17, -5, 15, 19]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(drop([-4, 4, -4, 5, -1, 4],2),4),1)))",
    "io_inp": [
      -4,
      4,
      -4,
      5,
      -1,
      4
    ],
    "io_out": [
      -17,
      -5,
      15,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(drop(input,2),4),1)))"
  },
  {
    "input": "input : list = [0, 2, 2]\noutput : list = [0, 2, 2]",
    "output": "generated_output : list = mul_n([0, 2, 2],1)",
    "io_inp": [
      0,
      2,
      2
    ],
    "io_out": [
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [2, -1, 5, -3, -4, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(add_n(take([2, -1, 5, -3, -4, 5],1),1))",
    "io_inp": [
      2,
      -1,
      5,
      -3,
      -4,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(input,1),1))"
  },
  {
    "input": "input : list = [5, 0, -4, -1, 3, 4]\noutput : list = [-4, -1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(drop([5, 0, -4, -1, 3, 4],2),10))))",
    "io_inp": [
      5,
      0,
      -4,
      -1,
      3,
      4
    ],
    "io_out": [
      -4,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(drop(input,2),10))))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-3, -7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_asc([-5, -1])),-5),2),-5)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_asc(input)),-5),2),-5)"
  },
  {
    "input": "input : list = [3, 0, -1, -4, 3]\noutput : list = [14, 14, -1, -6, -21]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(mul_n([3, 0, -1, -4, 3],5))),38),1)",
    "io_inp": [
      3,
      0,
      -1,
      -4,
      3
    ],
    "io_out": [
      14,
      14,
      -1,
      -6,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(mul_n(input,5))),38),1)"
  },
  {
    "input": "input : list = [2, 4, 4, -2]\noutput : list = [7, 7, 5, 1]",
    "output": "generated_output : list = add_n(sort_des([2, 4, 4, -2]),3)",
    "io_inp": [
      2,
      4,
      4,
      -2
    ],
    "io_out": [
      7,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [4, -1, 4, -1, -4]\noutput : list = [-1, -1, -6]",
    "output": "generated_output : list = sort_des(sub_n(take([4, -1, 4, -1, -4],3),5))",
    "io_inp": [
      4,
      -1,
      4,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(input,3),5))"
  },
  {
    "input": "input : list = [3, 0, 1, 2, 1]\noutput : list = [15, 10, 10, 5, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n([3, 0, 1, 2, 1],-3)),-5))",
    "io_inp": [
      3,
      0,
      1,
      2,
      1
    ],
    "io_out": [
      15,
      10,
      10,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(input,-3)),-5))"
  },
  {
    "input": "input : list = [-2, 3, 1, 0]\noutput : list = [-1, -6, -4, -3]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(mul_n([-2, 3, 1, 0],-1),-2),-1),-4),2)",
    "io_inp": [
      -2,
      3,
      1,
      0
    ],
    "io_out": [
      -1,
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(mul_n(input,-1),-2),-1),-4),2)"
  },
  {
    "input": "input : list = [2, -1, 1, -5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take([2, -1, 1, -5],1))",
    "io_inp": [
      2,
      -1,
      1,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-2, 5, -1, -3, 2]\noutput : list = [-2, 5, -1]",
    "output": "generated_output : list = take(take([-2, 5, -1, -3, 2],3),14)",
    "io_inp": [
      -2,
      5,
      -1,
      -3,
      2
    ],
    "io_out": [
      -2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = take(take(input,3),14)"
  },
  {
    "input": "input : list = [4, 3, -2, 4, 0, 5]\noutput : list = [-3, -1, 2, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n([4, 3, -2, 4, 0, 5],1))",
    "io_inp": [
      4,
      3,
      -2,
      4,
      0,
      5
    ],
    "io_out": [
      -3,
      -1,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_asc([5, 4])),22),1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_asc(input)),22),1))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-3, -9]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(sort_asc([1, -5]),4),-3),3))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(sort_asc(input),4),-3),3))"
  },
  {
    "input": "input : list = [-1, -1, -1, 1]\noutput : list = [0, 0, 0, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n([-1, -1, -1, 1],-3))),3),1)",
    "io_inp": [
      -1,
      -1,
      -1,
      1
    ],
    "io_out": [
      0,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n(input,-3))),3),1)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse([2, 4, 0]))))",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(input))))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [0]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n([-4, -1],4),-4)),1)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(input,4),-4)),1)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(add_n([-2, 1],-1))),14))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(add_n(input,-1))),14))"
  },
  {
    "input": "input : list = [1, -5, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = drop([1, -5, 0, 3],2)",
    "io_inp": [
      1,
      -5,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [5, 4, 0]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_des([-1, 3, 4]))),4),3)",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_des(input))),4),3)"
  },
  {
    "input": "input : list = [-4, -4, -2, 4, -2]\noutput : list = [19, -11, -11, -21, -21]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(mul_n([-4, -4, -2, 4, -2],5),-1))),20)",
    "io_inp": [
      -4,
      -4,
      -2,
      4,
      -2
    ],
    "io_out": [
      19,
      -11,
      -11,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(mul_n(input,5),-1))),20)"
  },
  {
    "input": "input : list = [-3, 2, 2, -5]\noutput : list = [-10, -8, -3, -3]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_asc([-3, 2, 2, -5])),5)),51)",
    "io_inp": [
      -3,
      2,
      2,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_asc(input)),5)),51)"
  },
  {
    "input": "input : list = [-4, -5, -2, -1]\noutput : list = [1, 0, 3, 4]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n(sub_n([-4, -5, -2, -1],-4),-5),-4)))",
    "io_inp": [
      -4,
      -5,
      -2,
      -1
    ],
    "io_out": [
      1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(sub_n(input,-4),-5),-4)))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-6, 2]",
    "output": "generated_output : list = add_n([-5, 3],-1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-12, -7]",
    "output": "generated_output : list = add_n(take(take(sub_n(sub_n([-5, 0],3),2),5),28),-2)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -12,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(sub_n(input,3),2),5),28),-2)"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [14, 5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(drop([-4, 3, 0],1)),3)),-5)",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      14,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(drop(input,1)),3)),-5)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(drop(sort_asc([-3, 4]),1))))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(drop(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(sort_des([0, -5]),7))))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(sort_des(input),7))))"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [-1, -6, 44]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(add_n([5, -5, -4],4)),5),1),-2)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -6,
      44
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(add_n(input,4)),5),1),-2)"
  },
  {
    "input": "input : list = [3, -3, 5, 2, -2, 2]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(take([3, -3, 5, 2, -2, 2],1),-5),4)))",
    "io_inp": [
      3,
      -3,
      5,
      2,
      -2,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(take(input,1),-5),4)))"
  },
  {
    "input": "input : list = [2, -5, 3, -2, -3]\noutput : list = [6, -1, 7, 2, 1]",
    "output": "generated_output : list = sub_n([2, -5, 3, -2, -3],-4)",
    "io_inp": [
      2,
      -5,
      3,
      -2,
      -3
    ],
    "io_out": [
      6,
      -1,
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(take(sort_des(drop(sort_des([-3, -4]),1)),14),-1)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(drop(sort_des(input),1)),14),-1)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [3, 1]",
    "output": "generated_output : list = add_n([-2, -4],5)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, -4, -3, 0]\noutput : list = [0, -3, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(reverse([-4, -4, -3, 0]),21))))",
    "io_inp": [
      -4,
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(reverse(input),21))))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-8, -12]",
    "output": "generated_output : list = take(mul_n(reverse([-3, -2]),4),8)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -8,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),4),8)"
  },
  {
    "input": "input : list = [-2, 4, 0, -2]\noutput : list = [4, 0, -2, -2]",
    "output": "generated_output : list = sort_des([-2, 4, 0, -2])",
    "io_inp": [
      -2,
      4,
      0,
      -2
    ],
    "io_out": [
      4,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [9, 9]",
    "output": "generated_output : list = sub_n(sort_asc([5, 5]),-4)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [4, -3, 1, 0]\noutput : list = [8, 2, 0, -6]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sort_asc([4, -3, 1, 0]),2))),19)",
    "io_inp": [
      4,
      -3,
      1,
      0
    ],
    "io_out": [
      8,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sort_asc(input),2))),19)"
  },
  {
    "input": "input : list = [-2, 1, 1, 4, 4, -5]\noutput : list = [-5, -2, 1, 1, 4, 4]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(reverse([-2, 1, 1, 4, 4, -5]))),20),47)",
    "io_inp": [
      -2,
      1,
      1,
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -2,
      1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(reverse(input))),20),47)"
  },
  {
    "input": "input : list = [-3, 0, -5, 0, -3]\noutput : list = [0, 0, -3, -3, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n([-3, 0, -5, 0, -3],1))),17)",
    "io_inp": [
      -3,
      0,
      -5,
      0,
      -3
    ],
    "io_out": [
      0,
      0,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(input,1))),17)"
  },
  {
    "input": "input : list = [-3, -5, -2, 3, -1, -2]\noutput : list = [-54, 18, 36, 36, 54, 90]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_asc([-3, -5, -2, 3, -1, -2]),-2),-3),-3))",
    "io_inp": [
      -3,
      -5,
      -2,
      3,
      -1,
      -2
    ],
    "io_out": [
      -54,
      18,
      36,
      36,
      54,
      90
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_asc(input),-2),-3),-3))"
  },
  {
    "input": "input : list = [-4, -2, 1, 1, -2, 4]\noutput : list = [8, 5, 5, 2, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(add_n([-4, -2, 1, 1, -2, 4],3),1))),-2)",
    "io_inp": [
      -4,
      -2,
      1,
      1,
      -2,
      4
    ],
    "io_out": [
      8,
      5,
      5,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(add_n(input,3),1))),-2)"
  },
  {
    "input": "input : list = [0, 4, -1, 1, -4, 2]\noutput : list = [7, 5, 4, 3, 2, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(sort_des([0, 4, -1, 1, -4, 2]),13),-3)))",
    "io_inp": [
      0,
      4,
      -1,
      1,
      -4,
      2
    ],
    "io_out": [
      7,
      5,
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(sort_des(input),13),-3)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(add_n([-3, -3],3)),-2)))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(add_n(input,3)),-2)))"
  },
  {
    "input": "input : list = [0, 0, -5, -3]\noutput : list = [-12, -8]",
    "output": "generated_output : list = reverse(reverse(sub_n(drop(mul_n([0, 0, -5, -3],2),2),2)))",
    "io_inp": [
      0,
      0,
      -5,
      -3
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(drop(mul_n(input,2),2),2)))"
  },
  {
    "input": "input : list = [0, -4, 4, -3, -5]\noutput : list = [-4, -20]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(take([0, -4, 4, -3, -5],2),-5),2)),-4)",
    "io_inp": [
      0,
      -4,
      4,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(take(input,2),-5),2)),-4)"
  },
  {
    "input": "input : list = [-1, -5, -5, -4]\noutput : list = [-5, -5, -4]",
    "output": "generated_output : list = drop([-1, -5, -5, -4],1)",
    "io_inp": [
      -1,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [6, -2, 8]",
    "output": "generated_output : list = mul_n([3, -1, 4],2)",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      6,
      -2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, -5, -2, -1, -4]\noutput : list = [-4, -4, -1, 0, -3]",
    "output": "generated_output : list = take(take(add_n(reverse(reverse([-5, -5, -2, -1, -4])),1),25),42)",
    "io_inp": [
      -5,
      -5,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(reverse(input)),1),25),42)"
  },
  {
    "input": "input : list = [5, 3, -5, -5, -4]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(drop([5, 3, -5, -5, -4],3),-5)),2),44)",
    "io_inp": [
      5,
      3,
      -5,
      -5,
      -4
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(drop(input,3),-5)),2),44)"
  },
  {
    "input": "input : list = [-1, 3, -5, 0, -2]\noutput : list = [-2, 1, 2, 3, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-1, 3, -5, 0, -2]),3))",
    "io_inp": [
      -1,
      3,
      -5,
      0,
      -2
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),3))"
  },
  {
    "input": "input : list = [1, -3, -3, 0, 1, 4]\noutput : list = [-7, -7, -4, -3, -3, 0]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc([1, -3, -3, 0, 1, 4]),4)))",
    "io_inp": [
      1,
      -3,
      -3,
      0,
      1,
      4
    ],
    "io_out": [
      -7,
      -7,
      -4,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [-4, -1, -5, 3, 0]\noutput : list = [4, 1, 0, -3, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([-4, -1, -5, 3, 0]),3),-4)",
    "io_inp": [
      -4,
      -1,
      -5,
      3,
      0
    ],
    "io_out": [
      4,
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),3),-4)"
  },
  {
    "input": "input : list = [4, -1, -2, -4]\noutput : list = [-20, 5, 10, 20]",
    "output": "generated_output : list = mul_n(mul_n([4, -1, -2, -4],-1),5)",
    "io_inp": [
      4,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -20,
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [5, 1, 6]",
    "output": "generated_output : list = add_n([4, 0, 5],1)",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      5,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-5, 1, -4, 0]\noutput : list = [1, 0, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 1, -4, 0])",
    "io_inp": [
      -5,
      1,
      -4,
      0
    ],
    "io_out": [
      1,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5, -3, 3]\noutput : list = [0, 3, 6, 8]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_des([0, 5, -3, 3]))),-3))",
    "io_inp": [
      0,
      5,
      -3,
      3
    ],
    "io_out": [
      0,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [5, -4, -4, 5, 0, 4]\noutput : list = [20, -16, -16, 20, 0, 16]",
    "output": "generated_output : list = mul_n(mul_n([5, -4, -4, 5, 0, 4],-2),-2)",
    "io_inp": [
      5,
      -4,
      -4,
      5,
      0,
      4
    ],
    "io_out": [
      20,
      -16,
      -16,
      20,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),-2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = add_n(sort_asc([2, -2]),-3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sub_n(drop([2, 2, 4],1),3)",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [2, 0, 2, -5, 3]\noutput : list = [12, 11, 4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(drop([2, 0, 2, -5, 3],2),5))),4)",
    "io_inp": [
      2,
      0,
      2,
      -5,
      3
    ],
    "io_out": [
      12,
      11,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(drop(input,2),5))),4)"
  },
  {
    "input": "input : list = [5, -3, 4, 4]\noutput : list = [0, 0, 35, -5]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(add_n([5, -3, 4, 4],1),-5),24)),-5)",
    "io_inp": [
      5,
      -3,
      4,
      4
    ],
    "io_out": [
      0,
      0,
      35,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(add_n(input,1),-5),24)),-5)"
  },
  {
    "input": "input : list = [5, -4, 1, -4, 5, 4]\noutput : list = [16, 16, -4, -16, -20, -20]",
    "output": "generated_output : list = sort_des(take(mul_n([5, -4, 1, -4, 5, 4],-4),17))",
    "io_inp": [
      5,
      -4,
      1,
      -4,
      5,
      4
    ],
    "io_out": [
      16,
      16,
      -4,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,-4),17))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_des([-2, 2]),-3),19)))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_des(input),-3),19)))"
  },
  {
    "input": "input : list = [-2, 1, 3, 4, 1, -4]\noutput : list = [2, -1, -3, -4, -1, 4]",
    "output": "generated_output : list = mul_n([-2, 1, 3, 4, 1, -4],-1)",
    "io_inp": [
      -2,
      1,
      3,
      4,
      1,
      -4
    ],
    "io_out": [
      2,
      -1,
      -3,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 0, 4, 4, -5]\noutput : list = [-5, -1, 0, 4, 4]",
    "output": "generated_output : list = sort_asc([-1, 0, 4, 4, -5])",
    "io_inp": [
      -1,
      0,
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, -2, 0, 1, -5]\noutput : list = [5, -2, 0, 1, -5]",
    "output": "generated_output : list = drop([1, 5, -2, 0, 1, -5],1)",
    "io_inp": [
      1,
      5,
      -2,
      0,
      1,
      -5
    ],
    "io_out": [
      5,
      -2,
      0,
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, -5, 0, 2]\noutput : list = [8, 1, -2, 3, 5]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(add_n([5, -2, -5, 0, 2],4),-1),18),-1),1)",
    "io_inp": [
      5,
      -2,
      -5,
      0,
      2
    ],
    "io_out": [
      8,
      1,
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(add_n(input,4),-1),18),-1),1)"
  },
  {
    "input": "input : list = [-4, -5, 0, -1, -2, -4]\noutput : list = [-11, -10, -10, -8, -7, -6]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_asc([-4, -5, 0, -1, -2, -4]),1)),5),25)",
    "io_inp": [
      -4,
      -5,
      0,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -11,
      -10,
      -10,
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_asc(input),1)),5),25)"
  },
  {
    "input": "input : list = [2, -1, 2, 4]\noutput : list = [6, -3, 6, 12]",
    "output": "generated_output : list = mul_n([2, -1, 2, 4],3)",
    "io_inp": [
      2,
      -1,
      2,
      4
    ],
    "io_out": [
      6,
      -3,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, -4, -2, 5, -5, -3]\noutput : list = [3, 3, -4, -5, -6, -7]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(reverse([5, -4, -2, 5, -5, -3])),34),-2))",
    "io_inp": [
      5,
      -4,
      -2,
      5,
      -5,
      -3
    ],
    "io_out": [
      3,
      3,
      -4,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(reverse(input)),34),-2))"
  },
  {
    "input": "input : list = [4, -3, -4, -4, 5, 2]\noutput : list = [1, 1, 2, 7, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sort_asc([4, -3, -4, -4, 5, 2]),2)),3))",
    "io_inp": [
      4,
      -3,
      -4,
      -4,
      5,
      2
    ],
    "io_out": [
      1,
      1,
      2,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sort_asc(input),2)),3))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([1, 2],-1)))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-1)))"
  },
  {
    "input": "input : list = [1, 3, 3, -4]\noutput : list = [-10, 5, 11, 11]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(mul_n([1, 3, 3, -4],3)))),2)",
    "io_inp": [
      1,
      3,
      3,
      -4
    ],
    "io_out": [
      -10,
      5,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(mul_n(input,3)))),2)"
  },
  {
    "input": "input : list = [-3, 0, 3, 5]\noutput : list = [0, 3, 6, 8]",
    "output": "generated_output : list = sub_n(sub_n([-3, 0, 3, 5],1),-4)",
    "io_inp": [
      -3,
      0,
      3,
      5
    ],
    "io_out": [
      0,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-4)"
  },
  {
    "input": "input : list = [0, -5, 5]\noutput : list = [25, -25, 0]",
    "output": "generated_output : list = reverse(mul_n([0, -5, 5],5))",
    "io_inp": [
      0,
      -5,
      5
    ],
    "io_out": [
      25,
      -25,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [-4, 2, -5, 4, 0]\noutput : list = [1, 2, 6, 8, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_asc([-4, 2, -5, 4, 0]),19),-2)),-4)",
    "io_inp": [
      -4,
      2,
      -5,
      4,
      0
    ],
    "io_out": [
      1,
      2,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_asc(input),19),-2)),-4)"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [-3]",
    "output": "generated_output : list = take(reverse(take([-3, -2, -1],1)),6)",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),6)"
  },
  {
    "input": "input : list = [2, 2, 2, 2]\noutput : list = [2, 2, 2, 2]",
    "output": "generated_output : list = sort_des([2, 2, 2, 2])",
    "io_inp": [
      2,
      2,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [-4, 2, 3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(sort_asc([-5, 1, 2]))),1),-2)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(sort_asc(input))),1),-2)"
  },
  {
    "input": "input : list = [-5, -2, 1, 2, -5]\noutput : list = [-6, -4, 2, 8, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(add_n([-5, -2, 1, 2, -5],3),-2))),4)",
    "io_inp": [
      -5,
      -2,
      1,
      2,
      -5
    ],
    "io_out": [
      -6,
      -4,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(add_n(input,3),-2))),4)"
  },
  {
    "input": "input : list = [3, -2, -5, 1, 5, 2]\noutput : list = [10, 8, 7, 6, 3, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc([3, -2, -5, 1, 5, 2]))),-5)",
    "io_inp": [
      3,
      -2,
      -5,
      1,
      5,
      2
    ],
    "io_out": [
      10,
      8,
      7,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sort_des(sort_des([1, -4])),11)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),11)"
  },
  {
    "input": "input : list = [-5, 5, -2, -2, -3, 5]\noutput : list = [-6, 4, -3, -3, -4, 4]",
    "output": "generated_output : list = add_n(add_n([-5, 5, -2, -2, -3, 5],3),-4)",
    "io_inp": [
      -5,
      5,
      -2,
      -2,
      -3,
      5
    ],
    "io_out": [
      -6,
      4,
      -3,
      -3,
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([3, 0]),5))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [3, 1, 5, -2, -3, 1]\noutput : list = [-3, -2, 1, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 1, 5, -2, -3, 1])",
    "io_inp": [
      3,
      1,
      5,
      -2,
      -3,
      1
    ],
    "io_out": [
      -3,
      -2,
      1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2, -5, -3]\noutput : list = [-5, -3, -2, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(reverse([-2, 2, -5, -3])))))",
    "io_inp": [
      -2,
      2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 0, 5, 4, -4, -2]\noutput : list = [-2, -1, 0, 2, 6, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(sub_n([-3, 0, 5, 4, -4, -2],3))),-5))",
    "io_inp": [
      -3,
      0,
      5,
      4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      2,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(sub_n(input,3))),-5))"
  },
  {
    "input": "input : list = [4, 3, 1, -3]\noutput : list = [-15, -3, 3, 6]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(sub_n([4, 3, 1, -3],-3)),-1),5),-3)",
    "io_inp": [
      4,
      3,
      1,
      -3
    ],
    "io_out": [
      -15,
      -3,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(sub_n(input,-3)),-1),5),-3)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_asc([-3, -3])))),2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(reverse([-4, -2]))),17))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(reverse(input))),17))"
  },
  {
    "input": "input : list = [-2, 0, 5, -1, 0]\noutput : list = [-2, 0, 5, -1, 0]",
    "output": "generated_output : list = sub_n(add_n([-2, 0, 5, -1, 0],-5),-5)",
    "io_inp": [
      -2,
      0,
      5,
      -1,
      0
    ],
    "io_out": [
      -2,
      0,
      5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),-5)"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_des(reverse(take([-3, 0, 4],1))),3)",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(input,1))),3)"
  },
  {
    "input": "input : list = [0, 0, 5, 0, -1, -1]\noutput : list = [-26]",
    "output": "generated_output : list = sub_n(take(take(mul_n(sort_des([0, 0, 5, 0, -1, -1]),-5),1),9),1)",
    "io_inp": [
      0,
      0,
      5,
      0,
      -1,
      -1
    ],
    "io_out": [
      -26
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(sort_des(input),-5),1),9),1)"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [0, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 0, 1])",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, 1, 3, -4, -4]\noutput : list = [-40, -24, -8, 32, 32, 32]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(reverse([-4, 5, 1, 3, -4, -4]),-4),2)))",
    "io_inp": [
      -4,
      5,
      1,
      3,
      -4,
      -4
    ],
    "io_out": [
      -40,
      -24,
      -8,
      32,
      32,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(reverse(input),-4),2)))"
  },
  {
    "input": "input : list = [5, 1, 1, 5]\noutput : list = [3, -1, -1, 3]",
    "output": "generated_output : list = reverse(sub_n([5, 1, 1, 5],2))",
    "io_inp": [
      5,
      1,
      1,
      5
    ],
    "io_out": [
      3,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [8, -13, 2]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-2, 3, -4],-3),4))",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      8,
      -13,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-3),4))"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [8, 4, 1]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(sort_asc([-4, 3, 0]),-4),-1),14))",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(sort_asc(input),-4),-1),14))"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [4, -3, 2]",
    "output": "generated_output : list = take(reverse([2, -3, 4]),8)",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),8)"
  },
  {
    "input": "input : list = [0, -5, -2, -4, 1]\noutput : list = [-8, -10, -14, -18, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_asc([0, -5, -2, -4, 1]),4)),-5),-2)",
    "io_inp": [
      0,
      -5,
      -2,
      -4,
      1
    ],
    "io_out": [
      -8,
      -10,
      -14,
      -18,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_asc(input),4)),-5),-2)"
  },
  {
    "input": "input : list = [-5, -5, -3, 0]\noutput : list = [-5, -5, -3, 0]",
    "output": "generated_output : list = sort_asc([-5, -5, -3, 0])",
    "io_inp": [
      -5,
      -5,
      -3,
      0
    ],
    "io_out": [
      -5,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [5, 9, 9]",
    "output": "generated_output : list = add_n(mul_n(take(take(add_n([3, 4, 4],-2),12),5),4),1)",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(add_n(input,-2),12),5),4),1)"
  },
  {
    "input": "input : list = [1, -4, -3, 4]\noutput : list = [19, 17, 9, 3]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(sort_des([1, -4, -3, 4]),-4)),-2),3)",
    "io_inp": [
      1,
      -4,
      -3,
      4
    ],
    "io_out": [
      19,
      17,
      9,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(sort_des(input),-4)),-2),3)"
  },
  {
    "input": "input : list = [-2, 3, 3, -2, -1]\noutput : list = [6]",
    "output": "generated_output : list = take(mul_n(take(reverse(sub_n([-2, 3, 3, -2, -1],-3)),1),3),48)",
    "io_inp": [
      -2,
      3,
      3,
      -2,
      -1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(sub_n(input,-3)),1),3),48)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [9, 0]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sub_n([0, -3],2),-5),3)))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sub_n(input,2),-5),3)))"
  },
  {
    "input": "input : list = [2, -4, -4, -3, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(sort_des([2, -4, -4, -3, -5]),2)),2))",
    "io_inp": [
      2,
      -4,
      -4,
      -3,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(sort_des(input),2)),2))"
  },
  {
    "input": "input : list = [-4, 0, -3, -1, -2, 2]\noutput : list = [-3, -5, -6, -7, -8, -9]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des([-4, 0, -3, -1, -2, 2]),-5)))",
    "io_inp": [
      -4,
      0,
      -3,
      -1,
      -2,
      2
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(input),-5)))"
  },
  {
    "input": "input : list = [-4, -5, -2, 1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sub_n(add_n(add_n(take([-4, -5, -2, 1],2),2),2),4)",
    "io_inp": [
      -4,
      -5,
      -2,
      1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(input,2),2),2),4)"
  },
  {
    "input": "input : list = [1, -4, -1, 3, 0, 3]\noutput : list = [9, -41, -11, 29, -1, 29]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(mul_n([1, -4, -1, 3, 0, 3],-5),1),-2),-2),5)",
    "io_inp": [
      1,
      -4,
      -1,
      3,
      0,
      3
    ],
    "io_out": [
      9,
      -41,
      -11,
      29,
      -1,
      29
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(mul_n(input,-5),1),-2),-2),5)"
  },
  {
    "input": "input : list = [-2, 5, 1, 4, 1]\noutput : list = [-14, -23, -23, -32, -35]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(reverse([-2, 5, 1, 4, 1]),-5)),-3),5)",
    "io_inp": [
      -2,
      5,
      1,
      4,
      1
    ],
    "io_out": [
      -14,
      -23,
      -23,
      -32,
      -35
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(reverse(input),-5)),-3),5)"
  },
  {
    "input": "input : list = [-2, 5, -2, -1, -2]\noutput : list = [-2, -2, -1, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(take(drop([-2, 5, -2, -1, -2],1),7))),14)",
    "io_inp": [
      -2,
      5,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(drop(input,1),7))),14)"
  },
  {
    "input": "input : list = [4, -2, -5, -4, 1]\noutput : list = [4, 1, -2, -4, -5]",
    "output": "generated_output : list = sort_des([4, -2, -5, -4, 1])",
    "io_inp": [
      4,
      -2,
      -5,
      -4,
      1
    ],
    "io_out": [
      4,
      1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 5, 2, 4]\noutput : list = [-35, -45]",
    "output": "generated_output : list = mul_n(sub_n(drop([-3, 5, 2, 4],2),-5),-5)",
    "io_inp": [
      -3,
      5,
      2,
      4
    ],
    "io_out": [
      -35,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,2),-5),-5)"
  },
  {
    "input": "input : list = [3, -2, 3, 0]\noutput : list = [-11, -9, -6, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n([3, -2, 3, 0],4)),5))",
    "io_inp": [
      3,
      -2,
      3,
      0
    ],
    "io_out": [
      -11,
      -9,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(input,4)),5))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [39, 27]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(sort_asc([4, 0])),-4),-5),3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      39,
      27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(sort_asc(input)),-4),-5),3)"
  },
  {
    "input": "input : list = [-1, -2, 1, -4]\noutput : list = [5, 0, 3, 2]",
    "output": "generated_output : list = reverse(mul_n(add_n([-1, -2, 1, -4],-1),-1))",
    "io_inp": [
      -1,
      -2,
      1,
      -4
    ],
    "io_out": [
      5,
      0,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-1),-1))"
  },
  {
    "input": "input : list = [4, -4, 5, 0]\noutput : list = [120, 60, 0, -15]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(add_n([4, -4, 5, 0],-4),6),-3),5))",
    "io_inp": [
      4,
      -4,
      5,
      0
    ],
    "io_out": [
      120,
      60,
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(add_n(input,-4),6),-3),5))"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [-4, -6, -1]",
    "output": "generated_output : list = sub_n([-2, -4, 1],2)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      -4,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(reverse([0, 3])),23)),-1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(reverse(input)),23)),-1)"
  },
  {
    "input": "input : list = [1, 3, 2, 4, 1, 2]\noutput : list = [-16, -12, -8, -8, -4, -4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(reverse([1, 3, 2, 4, 1, 2])),-4)))",
    "io_inp": [
      1,
      3,
      2,
      4,
      1,
      2
    ],
    "io_out": [
      -16,
      -12,
      -8,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [4, -3, -5, 3, 3, 2]\noutput : list = [13, 11, 11, 9, -1, -5]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(reverse([4, -3, -5, 3, 3, 2])),2)),5)",
    "io_inp": [
      4,
      -3,
      -5,
      3,
      3,
      2
    ],
    "io_out": [
      13,
      11,
      11,
      9,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(reverse(input)),2)),5)"
  },
  {
    "input": "input : list = [-2, 1, -3, -1]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(take([-2, 1, -3, -1],1))",
    "io_inp": [
      -2,
      1,
      -3,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [4, 0, -4, 0, 4]\noutput : list = [4, 0, -4, 0, 4]",
    "output": "generated_output : list = mul_n(reverse([4, 0, -4, 0, 4]),1)",
    "io_inp": [
      4,
      0,
      -4,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [2, 5, -1]\noutput : list = [-11, -5, 1]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(sub_n([2, 5, -1],1)),19),-2),3)",
    "io_inp": [
      2,
      5,
      -1
    ],
    "io_out": [
      -11,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(sub_n(input,1)),19),-2),3)"
  },
  {
    "input": "input : list = [1, 0, 0, 1, 2, -2]\noutput : list = [2, 1, 1, 0, 0, -2]",
    "output": "generated_output : list = sort_des([1, 0, 0, 1, 2, -2])",
    "io_inp": [
      1,
      0,
      0,
      1,
      2,
      -2
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, -2, 2]\noutput : list = [-18, -18, -9, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n([1, -2, -2, 2],-4),3)))",
    "io_inp": [
      1,
      -2,
      -2,
      2
    ],
    "io_out": [
      -18,
      -18,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(input,-4),3)))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-25, 25]",
    "output": "generated_output : list = mul_n([-5, 5],5)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_des([3, -2]),2))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [-2, 2, 2, 1, 5, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(take([-2, 2, 2, 1, 5, -1],2))",
    "io_inp": [
      -2,
      2,
      2,
      1,
      5,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-2, -5, -4, -4]\noutput : list = [12, 11, 11, 9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(sub_n([-2, -5, -4, -4],5),2))),-1)",
    "io_inp": [
      -2,
      -5,
      -4,
      -4
    ],
    "io_out": [
      12,
      11,
      11,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(sub_n(input,5),2))),-1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [5, 10]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n(add_n([4, -1],-5),4)),3),-1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(add_n(input,-5),4)),3),-1)"
  },
  {
    "input": "input : list = [-5, 5, 0, -1, -1, -1]\noutput : list = [0, 10, 5]",
    "output": "generated_output : list = sub_n(take([-5, 5, 0, -1, -1, -1],3),-5)",
    "io_inp": [
      -5,
      5,
      0,
      -1,
      -1,
      -1
    ],
    "io_out": [
      0,
      10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-5)"
  },
  {
    "input": "input : list = [3, -4, -1, 2, -3]\noutput : list = [-12, -8, 0, 12, 16]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(add_n([3, -4, -1, 2, -3],1)),4)),1)",
    "io_inp": [
      3,
      -4,
      -1,
      2,
      -3
    ],
    "io_out": [
      -12,
      -8,
      0,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(add_n(input,1)),4)),1)"
  },
  {
    "input": "input : list = [-4, 2, 1, 0, -4]\noutput : list = [18, 18, 10, 8, 6]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(sort_asc([-4, 2, 1, 0, -4]),3),1),3),-2)",
    "io_inp": [
      -4,
      2,
      1,
      0,
      -4
    ],
    "io_out": [
      18,
      18,
      10,
      8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(sort_asc(input),3),1),3),-2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n([-4, -2],4),-2)),-5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(input,4),-2)),-5)"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [7, 0, 4]",
    "output": "generated_output : list = add_n([5, -2, 2],2)",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      7,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, 0, 3, 3]\noutput : list = [5, 5, 4, 2]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(sort_des([2, 0, 3, 3]),5),3)))",
    "io_inp": [
      2,
      0,
      3,
      3
    ],
    "io_out": [
      5,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(sort_des(input),5),3)))"
  },
  {
    "input": "input : list = [0, -2, -2, -5]\noutput : list = [-8, -8, -20]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(drop([0, -2, -2, -5],1))),4))",
    "io_inp": [
      0,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(drop(input,1))),4))"
  },
  {
    "input": "input : list = [0, 3, 5, -1, 3, 4]\noutput : list = [10, 8, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take(take([0, 3, 5, -1, 3, 4],3),21))),-5)",
    "io_inp": [
      0,
      3,
      5,
      -1,
      3,
      4
    ],
    "io_out": [
      10,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(take(input,3),21))),-5)"
  },
  {
    "input": "input : list = [-2, 1, 5, 3, -1, 0]\noutput : list = [-34, -26, -18]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(add_n([-2, 1, 5, 3, -1, 0],4)),-4),3),-2)",
    "io_inp": [
      -2,
      1,
      5,
      3,
      -1,
      0
    ],
    "io_out": [
      -34,
      -26,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(add_n(input,4)),-4),3),-2)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(mul_n([-2, -2],4),4))))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(mul_n(input,4),4))))"
  },
  {
    "input": "input : list = [4, 4, 4, 4, 0, -1]\noutput : list = [-1, 0, 4, 4, 4, 4]",
    "output": "generated_output : list = take(sort_asc([4, 4, 4, 4, 0, -1]),9)",
    "io_inp": [
      4,
      4,
      4,
      4,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      4,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),9)"
  },
  {
    "input": "input : list = [-2, 0, 5, 5]\noutput : list = [-26, -26]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(drop([-2, 0, 5, 5],2)),-5),1),27)",
    "io_inp": [
      -2,
      0,
      5,
      5
    ],
    "io_out": [
      -26,
      -26
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(drop(input,2)),-5),1),27)"
  },
  {
    "input": "input : list = [3, -1, 5, 4]\noutput : list = [-1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([3, -1, 5, 4]))",
    "io_inp": [
      3,
      -1,
      5,
      4
    ],
    "io_out": [
      -1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(take(sort_des([-5, -1]),5))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),5))"
  },
  {
    "input": "input : list = [4, -3, 0, -3, 2]\noutput : list = [-3, 0, -3, 2]",
    "output": "generated_output : list = drop([4, -3, 0, -3, 2],1)",
    "io_inp": [
      4,
      -3,
      0,
      -3,
      2
    ],
    "io_out": [
      -3,
      0,
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 4, -5]\noutput : list = [14, 8, -13]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc([2, 4, -5])),3),1),2)",
    "io_inp": [
      2,
      4,
      -5
    ],
    "io_out": [
      14,
      8,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc(input)),3),1),2)"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = take(sort_des(reverse([-1, -2, -1])),15)",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),15)"
  },
  {
    "input": "input : list = [2, -4, 5, 5, -4, 2]\noutput : list = [-10, -10, -4, -4, -1, -1]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(add_n([2, -4, 5, 5, -4, 2],2)),-4),-4))",
    "io_inp": [
      2,
      -4,
      5,
      5,
      -4,
      2
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(add_n(input,2)),-4),-4))"
  },
  {
    "input": "input : list = [-5, -2, -2, -3, -4, 1]\noutput : list = [0, 6, 6, 4, 2, 12]",
    "output": "generated_output : list = mul_n(sub_n([-5, -2, -2, -3, -4, 1],-5),2)",
    "io_inp": [
      -5,
      -2,
      -2,
      -3,
      -4,
      1
    ],
    "io_out": [
      0,
      6,
      6,
      4,
      2,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [3, 0, 1, -1, 0, 2]\noutput : list = [3, 0, 1, -1, 0, 2]",
    "output": "generated_output : list = reverse(reverse(reverse(take(reverse([3, 0, 1, -1, 0, 2]),7))))",
    "io_inp": [
      3,
      0,
      1,
      -1,
      0,
      2
    ],
    "io_out": [
      3,
      0,
      1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(reverse(input),7))))"
  },
  {
    "input": "input : list = [-5, 5, -2, 3]\noutput : list = [-6, 4, -3, 2]",
    "output": "generated_output : list = take(sub_n([-5, 5, -2, 3],1),15)",
    "io_inp": [
      -5,
      5,
      -2,
      3
    ],
    "io_out": [
      -6,
      4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),15)"
  },
  {
    "input": "input : list = [-1, 0, -1, 0, -4, 4]\noutput : list = [34, 14, 34]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(take([-1, 0, -1, 0, -4, 4],3),4),-3),-5),1)",
    "io_inp": [
      -1,
      0,
      -1,
      0,
      -4,
      4
    ],
    "io_out": [
      34,
      14,
      34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(take(input,3),4),-3),-5),1)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-16, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n(sort_asc([1, -3]),1)),4))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -16,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(sort_asc(input),1)),4))"
  },
  {
    "input": "input : list = [-4, -2, 5, 1, 3, 5]\noutput : list = [-4, -2, 1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([-4, -2, 5, 1, 3, 5])",
    "io_inp": [
      -4,
      -2,
      5,
      1,
      3,
      5
    ],
    "io_out": [
      -4,
      -2,
      1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 1, 0, 3]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(drop([3, 1, 0, 3],1)),-2)),36)",
    "io_inp": [
      3,
      1,
      0,
      3
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(drop(input,1)),-2)),36)"
  },
  {
    "input": "input : list = [2, -5, 4, 5, 3, -4]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, -5, 4, 5, 3, -4],1))",
    "io_inp": [
      2,
      -5,
      4,
      5,
      3,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [3, -4, -5, 5, -1]\noutput : list = [-4, -5, 5, -1]",
    "output": "generated_output : list = drop([3, -4, -5, 5, -1],1)",
    "io_inp": [
      3,
      -4,
      -5,
      5,
      -1
    ],
    "io_out": [
      -4,
      -5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -4, -2, -1, 2]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(take([-1, -4, -2, -1, 2],1)))),-2)",
    "io_inp": [
      -1,
      -4,
      -2,
      -1,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(take(input,1)))),-2)"
  },
  {
    "input": "input : list = [3, 3, -2, -3, -4]\noutput : list = [-8, -9]",
    "output": "generated_output : list = take(add_n(take(drop([3, 3, -2, -3, -4],3),6),-5),32)",
    "io_inp": [
      3,
      3,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(take(drop(input,3),6),-5),32)"
  },
  {
    "input": "input : list = [5, 0, -1, -5]\noutput : list = [-1, 3, 4, 9]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(sub_n([5, 0, -1, -5],-4),14),-4)),-4)",
    "io_inp": [
      5,
      0,
      -1,
      -5
    ],
    "io_out": [
      -1,
      3,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(sub_n(input,-4),14),-4)),-4)"
  },
  {
    "input": "input : list = [4, 1, 3, 4, 3, -1]\noutput : list = [-1, 1, 3, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(take(reverse([4, 1, 3, 4, 3, -1]),19)),35)",
    "io_inp": [
      4,
      1,
      3,
      4,
      3,
      -1
    ],
    "io_out": [
      -1,
      1,
      3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(input),19)),35)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([4, -2])),2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sort_des([-3, -1, -1]),2),4),2))",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sort_des(input),2),4),2))"
  },
  {
    "input": "input : list = [-3, -5, 2, -4, 0]\noutput : list = [1, -3, 3, -4, -2]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-3, -5, 2, -4, 0]),1),-1)",
    "io_inp": [
      -3,
      -5,
      2,
      -4,
      0
    ],
    "io_out": [
      1,
      -3,
      3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),1),-1)"
  },
  {
    "input": "input : list = [-4, 4, -4, -1]\noutput : list = [-9, -9, -3, 7]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n([-4, 4, -4, -1],2)),-1))",
    "io_inp": [
      -4,
      4,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -3,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(input,2)),-1))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-18, 72]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n([5, -1],-3),7)),-5),3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -18,
      72
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n(input,-3),7)),-5),3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [0, -7]",
    "output": "generated_output : list = sub_n([3, -4],3)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [4]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(take([0, -5, 2],1),-5),5),3),-1)",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(take(input,1),-5),5),3),-1)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [-6, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(drop([4, 5, -5],1))),-1))",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(drop(input,1))),-1))"
  },
  {
    "input": "input : list = [-1, 0, 5, 2]\noutput : list = [0, 2, 6, 12]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_asc([-1, 0, 5, 2]),2),1)),-1)",
    "io_inp": [
      -1,
      0,
      5,
      2
    ],
    "io_out": [
      0,
      2,
      6,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_asc(input),2),1)),-1)"
  },
  {
    "input": "input : list = [1, -5, 3, -5]\noutput : list = [3, 1, -5, -5]",
    "output": "generated_output : list = sort_des([1, -5, 3, -5])",
    "io_inp": [
      1,
      -5,
      3,
      -5
    ],
    "io_out": [
      3,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, -5, 4]\noutput : list = [6, 2, -4, -12]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(sort_asc([0, -3, -5, 4]),2)),-4),-1)",
    "io_inp": [
      0,
      -3,
      -5,
      4
    ],
    "io_out": [
      6,
      2,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(sort_asc(input),2)),-4),-1)"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [-12, -12, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n([-3, 3, 3],-5)),2),13),-2)",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      -12,
      -12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n(input,-5)),2),13),-2)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n([5, 5, 5],-3),2),1))",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(input,-3),2),1))"
  },
  {
    "input": "input : list = [5, 3, 5, -1, 4, 4]\noutput : list = [0, 0, -2]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(take([5, 3, 5, -1, 4, 4],3)),5)),47)",
    "io_inp": [
      5,
      3,
      5,
      -1,
      4,
      4
    ],
    "io_out": [
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(take(input,3)),5)),47)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [14, 20]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(add_n([-5, -3],-1),16),-3)),-2)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      14,
      20
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(add_n(input,-1),16),-3)),-2)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des([-5, 1])",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [10, 10]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(add_n([3, 3],4),1),-3),-1))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(add_n(input,4),1),-3),-1))"
  },
  {
    "input": "input : list = [-2, 4, -4, 2, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 4, -4, 2, 3],1)",
    "io_inp": [
      -2,
      4,
      -4,
      2,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 4, 2, -4]\noutput : list = [2, 0, -5, -6]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(sub_n([-3, 4, 2, -4],5),3))),28)",
    "io_inp": [
      -3,
      4,
      2,
      -4
    ],
    "io_out": [
      2,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(sub_n(input,5),3))),28)"
  },
  {
    "input": "input : list = [-3, 0, 1, -4]\noutput : list = [1, 2, 5, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sub_n([-3, 0, 1, -4],1)),-2)),-4)",
    "io_inp": [
      -3,
      0,
      1,
      -4
    ],
    "io_out": [
      1,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sub_n(input,1)),-2)),-4)"
  },
  {
    "input": "input : list = [-3, -2, 1, -4]\noutput : list = [-6, -9, -12]",
    "output": "generated_output : list = reverse(mul_n(take(take(sort_asc([-3, -2, 1, -4]),3),18),3))",
    "io_inp": [
      -3,
      -2,
      1,
      -4
    ],
    "io_out": [
      -6,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sort_asc(input),3),18),3))"
  },
  {
    "input": "input : list = [0, 3, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = drop([0, 3, -5, -5],2)",
    "io_inp": [
      0,
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [50, 35]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(add_n([-3, -4],-1),-3),-5)),5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      50,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(add_n(input,-1),-3),-5)),5)"
  },
  {
    "input": "input : list = [-4, -1, 3, 3, -5]\noutput : list = [16, 4, -12, -12, 20]",
    "output": "generated_output : list = mul_n([-4, -1, 3, 3, -5],-4)",
    "io_inp": [
      -4,
      -1,
      3,
      3,
      -5
    ],
    "io_out": [
      16,
      4,
      -12,
      -12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [4, 3, 1, -1, 3, 1]\noutput : list = [-48, -36, -36, -12, -12, 12]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(mul_n([4, 3, 1, -1, 3, 1],4),20)),-3))",
    "io_inp": [
      4,
      3,
      1,
      -1,
      3,
      1
    ],
    "io_out": [
      -48,
      -36,
      -36,
      -12,
      -12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(mul_n(input,4),20)),-3))"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [-3, -6, 2]",
    "output": "generated_output : list = reverse(sub_n([5, -3, 0],3))",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      -3,
      -6,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [8, -12, 8]",
    "output": "generated_output : list = mul_n([-2, 3, -2],-4)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      8,
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, -3, 4, 5, 4, 1]\noutput : list = [-3, 1, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([2, -3, 4, 5, 4, 1])",
    "io_inp": [
      2,
      -3,
      4,
      5,
      4,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, 5, -2]\noutput : list = [9, 3, -5, -11]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc([2, -5, 5, -2]),2))),1)",
    "io_inp": [
      2,
      -5,
      5,
      -2
    ],
    "io_out": [
      9,
      3,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc(input),2))),1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [10, 35]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n(sort_des([4, -1]),1),-3),5))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      10,
      35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(sort_des(input),1),-3),5))"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [-40, -10, 30]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(mul_n([4, 1, -3],5)))),-2)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      -40,
      -10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(mul_n(input,5)))),-2)"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = drop([-5, -1, 5],1)",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 1, 1, 0, 4]\noutput : list = [9, 6, 6, 5, 9]",
    "output": "generated_output : list = add_n([4, 1, 1, 0, 4],5)",
    "io_inp": [
      4,
      1,
      1,
      0,
      4
    ],
    "io_out": [
      9,
      6,
      6,
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-2, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(mul_n([0, -2],5),5)),-3))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(mul_n(input,5),5)),-3))"
  },
  {
    "input": "input : list = [0, -4, -2, -1, 3]\noutput : list = [12, 6, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(take([0, -4, -2, -1, 3],3),-3),29))",
    "io_inp": [
      0,
      -4,
      -2,
      -1,
      3
    ],
    "io_out": [
      12,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(input,3),-3),29))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [1, 5]",
    "output": "generated_output : list = sub_n(add_n([0, 4],5),4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),4)"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 1, -2],1)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 0, -1, -4, -1]\noutput : list = [-5, -5, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(drop([1, 0, -1, -4, -1],2),4)),15)",
    "io_inp": [
      1,
      0,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(drop(input,2),4)),15)"
  },
  {
    "input": "input : list = [3, 5, -4, 2, 3, -2]\noutput : list = [10, 20, -25, 5, 10, -15]",
    "output": "generated_output : list = take(take(mul_n(add_n(mul_n([3, 5, -4, 2, 3, -2],-1),1),-5),14),10)",
    "io_inp": [
      3,
      5,
      -4,
      2,
      3,
      -2
    ],
    "io_out": [
      10,
      20,
      -25,
      5,
      10,
      -15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(mul_n(input,-1),1),-5),14),10)"
  },
  {
    "input": "input : list = [-2, 3, 2, 5]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n(take([-2, 3, 2, 5],1),2),28)",
    "io_inp": [
      -2,
      3,
      2,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,1),2),28)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [-20, 8, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([5, -5, -2],-4)))",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      -20,
      8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [0, -7]",
    "output": "generated_output : list = take(add_n([3, -4],-3),7)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),7)"
  },
  {
    "input": "input : list = [1, 0, -4, -5, -4, 4]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take([1, 0, -4, -5, -4, 4],1),-4)",
    "io_inp": [
      1,
      0,
      -4,
      -5,
      -4,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-1, -5, -4, 4, -1, 1]\noutput : list = [-6, -22, -18, 14, -6, 2]",
    "output": "generated_output : list = sub_n(mul_n([-1, -5, -4, 4, -1, 1],4),2)",
    "io_inp": [
      -1,
      -5,
      -4,
      4,
      -1,
      1
    ],
    "io_out": [
      -6,
      -22,
      -18,
      14,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),2)"
  },
  {
    "input": "input : list = [-2, 3, 4, 3]\noutput : list = [-5, 0, 1, 0]",
    "output": "generated_output : list = sub_n(sub_n([-2, 3, 4, 3],4),-1)",
    "io_inp": [
      -2,
      3,
      4,
      3
    ],
    "io_out": [
      -5,
      0,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),-1)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(take([2, 2, 2],1)))),-2)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(take(input,1)))),-2)"
  },
  {
    "input": "input : list = [3, 2, -1, -5]\noutput : list = [-6, -7, -10, -14]",
    "output": "generated_output : list = sort_des(add_n(add_n([3, 2, -1, -5],-5),-4))",
    "io_inp": [
      3,
      2,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -7,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-5),-4))"
  },
  {
    "input": "input : list = [1, 0, 5, 3, 1, 1]\noutput : list = [8, 6, 4, 4, 4, 3]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(reverse([1, 0, 5, 3, 1, 1])),3)))",
    "io_inp": [
      1,
      0,
      5,
      3,
      1,
      1
    ],
    "io_out": [
      8,
      6,
      4,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(reverse(input)),3)))"
  },
  {
    "input": "input : list = [4, 0, 3, -2]\noutput : list = [0, -5]",
    "output": "generated_output : list = sub_n(drop([4, 0, 3, -2],2),3)",
    "io_inp": [
      4,
      0,
      3,
      -2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [-2, -4, -1, 2]\noutput : list = [60, 24, 12, -12]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(add_n([-2, -4, -1, 2],3),-4)),-3))",
    "io_inp": [
      -2,
      -4,
      -1,
      2
    ],
    "io_out": [
      60,
      24,
      12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(add_n(input,3),-4)),-3))"
  },
  {
    "input": "input : list = [3, 3, 5]\noutput : list = [5, 3, 3]",
    "output": "generated_output : list = take(sort_des(sort_asc([3, 3, 5])),26)",
    "io_inp": [
      3,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),26)"
  },
  {
    "input": "input : list = [-4, 4, 1, 4, 1, -4]\noutput : list = [-5, 3, 0, 3, 0, -5]",
    "output": "generated_output : list = add_n([-4, 4, 1, 4, 1, -4],-1)",
    "io_inp": [
      -4,
      4,
      1,
      4,
      1,
      -4
    ],
    "io_out": [
      -5,
      3,
      0,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 3, 5, -1, 5]\noutput : list = [-11, 19, 29, -1, 29]",
    "output": "generated_output : list = sub_n(mul_n([-3, 3, 5, -1, 5],5),-4)",
    "io_inp": [
      -3,
      3,
      5,
      -1,
      5
    ],
    "io_out": [
      -11,
      19,
      29,
      -1,
      29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-4)"
  },
  {
    "input": "input : list = [-2, 2, -3, 4, 1]\noutput : list = [-6, 6, -9, 12, 3]",
    "output": "generated_output : list = take(mul_n([-2, 2, -3, 4, 1],3),8)",
    "io_inp": [
      -2,
      2,
      -3,
      4,
      1
    ],
    "io_out": [
      -6,
      6,
      -9,
      12,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),8)"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [-4, 1, 2]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n([4, 3, -2],2),1),-5))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(input,2),1),-5))"
  },
  {
    "input": "input : list = [5, 0, -3, -2, -2]\noutput : list = [2, -3, -5, -5, -6]",
    "output": "generated_output : list = sort_des(add_n([5, 0, -3, -2, -2],-3))",
    "io_inp": [
      5,
      0,
      -3,
      -2,
      -2
    ],
    "io_out": [
      2,
      -3,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [0, 1, -3, 0, 5]\noutput : list = [0, -60]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(sort_asc([0, 1, -3, 0, 5]),4),2),5))",
    "io_inp": [
      0,
      1,
      -3,
      0,
      5
    ],
    "io_out": [
      0,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(sort_asc(input),4),2),5))"
  },
  {
    "input": "input : list = [-3, 1, -5, 5, 3]\noutput : list = [1, 5, -1, 9, 7]",
    "output": "generated_output : list = add_n([-3, 1, -5, 5, 3],4)",
    "io_inp": [
      -3,
      1,
      -5,
      5,
      3
    ],
    "io_out": [
      1,
      5,
      -1,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, -3, 0, 2]\noutput : list = [12, 21, 27, 33]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(add_n([4, -3, 0, 2],5)),-2)),3)",
    "io_inp": [
      4,
      -3,
      0,
      2
    ],
    "io_out": [
      12,
      21,
      27,
      33
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(add_n(input,5)),-2)),3)"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [-4, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(reverse([3, -2, -4])))))",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [5, 1, 1, 5, 1, 4]\noutput : list = [8, 4]",
    "output": "generated_output : list = add_n(take([5, 1, 1, 5, 1, 4],2),3)",
    "io_inp": [
      5,
      1,
      1,
      5,
      1,
      4
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-16, -4]",
    "output": "generated_output : list = mul_n([-4, -1],4)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, 4, -2, 0]\noutput : list = [-4, 2]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(take([-2, 4, -2, 0],2)),2)),25)",
    "io_inp": [
      -2,
      4,
      -2,
      0
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(take(input,2)),2)),25)"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take([1, 2, 3],1),4)",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),4)"
  },
  {
    "input": "input : list = [-4, 4, 1, 1, 3, -3]\noutput : list = [20, -20, -5, -5, -15, 15]",
    "output": "generated_output : list = mul_n([-4, 4, 1, 1, 3, -3],-5)",
    "io_inp": [
      -4,
      4,
      1,
      1,
      3,
      -3
    ],
    "io_out": [
      20,
      -20,
      -5,
      -5,
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, 0, -5, 1]\noutput : list = [1, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(drop([0, 0, -5, 1],1)))))",
    "io_inp": [
      0,
      0,
      -5,
      1
    ],
    "io_out": [
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, 5, 1, 0]\noutput : list = [0, 1, 5, 2]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sub_n([2, 5, 1, 0],1)),7),4),3)",
    "io_inp": [
      2,
      5,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sub_n(input,1)),7),4),3)"
  },
  {
    "input": "input : list = [-1, 3, 4, 5, 1, -2]\noutput : list = [11]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(take([-1, 3, 4, 5, 1, -2],1),-2),3),5),4)",
    "io_inp": [
      -1,
      3,
      4,
      5,
      1,
      -2
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(take(input,1),-2),3),5),4)"
  },
  {
    "input": "input : list = [-2, 1, -5, 2]\noutput : list = [-6, -3, 6, 15]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(sort_asc([-2, 1, -5, 2]),-3)),35))",
    "io_inp": [
      -2,
      1,
      -5,
      2
    ],
    "io_out": [
      -6,
      -3,
      6,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(sort_asc(input),-3)),35))"
  },
  {
    "input": "input : list = [-4, 1, 0, 1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-4, 1, 0, 1],1)))",
    "io_inp": [
      -4,
      1,
      0,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [5, 0, 0, -2, 4]\noutput : list = [-29, -25, -9, -9, -1]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_asc([5, 0, 0, -2, 4])),2),-4),1)",
    "io_inp": [
      5,
      0,
      0,
      -2,
      4
    ],
    "io_out": [
      -29,
      -25,
      -9,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_asc(input)),2),-4),1)"
  },
  {
    "input": "input : list = [-5, -2, 4, 2, 2]\noutput : list = [-7, -4, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_des([-5, -2, 4, 2, 2]),2))))",
    "io_inp": [
      -5,
      -2,
      4,
      2,
      2
    ],
    "io_out": [
      -7,
      -4,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [0, 5, -3, 0]\noutput : list = [12, 0, 0, -20]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(sort_des([0, 5, -3, 0])),-4),6))",
    "io_inp": [
      0,
      5,
      -3,
      0
    ],
    "io_out": [
      12,
      0,
      0,
      -20
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(sort_des(input)),-4),6))"
  },
  {
    "input": "input : list = [-4, -3, -2, 3]\noutput : list = [10, 5, 4, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sub_n([-4, -3, -2, 3],-5),-3)),1))",
    "io_inp": [
      -4,
      -3,
      -2,
      3
    ],
    "io_out": [
      10,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sub_n(input,-5),-3)),1))"
  },
  {
    "input": "input : list = [4, 5, 2, 2]\noutput : list = [-35, -30, -20, -20]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des(sort_des([4, 5, 2, 2]))),2),-5)",
    "io_inp": [
      4,
      5,
      2,
      2
    ],
    "io_out": [
      -35,
      -30,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(sort_des(input))),2),-5)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = drop([-1, -5, -4],1)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 4, -5, -1, 4, -3]\noutput : list = [-5, -3, -1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([1, 4, -5, -1, 4, -3])",
    "io_inp": [
      1,
      4,
      -5,
      -1,
      4,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(reverse([-1, 1, 2])))))",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, 3, 3]\noutput : list = [0, 8, 8]",
    "output": "generated_output : list = add_n([-5, 3, 3],5)",
    "io_inp": [
      -5,
      3,
      3
    ],
    "io_out": [
      0,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-1, 4, -2, 5]\noutput : list = [6, 1, 7, 0]",
    "output": "generated_output : list = mul_n(sub_n([-1, 4, -2, 5],5),-1)",
    "io_inp": [
      -1,
      4,
      -2,
      5
    ],
    "io_out": [
      6,
      1,
      7,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),-1)"
  },
  {
    "input": "input : list = [-5, 3, -4, -1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = take(drop(sort_des(reverse(sort_des([-5, 3, -4, -1]))),2),10)",
    "io_inp": [
      -5,
      3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(drop(sort_des(reverse(sort_des(input))),2),10)"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(take(drop([3, 1, 4],1),10))",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,1),10))"
  },
  {
    "input": "input : list = [3, 0, 5, -4]\noutput : list = [-1, 8, 3]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(drop([3, 0, 5, -4],1),5),2)),27)",
    "io_inp": [
      3,
      0,
      5,
      -4
    ],
    "io_out": [
      -1,
      8,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(drop(input,1),5),2)),27)"
  },
  {
    "input": "input : list = [-4, -5, 3, 3, -2, 5]\noutput : list = [0, 8, 8, 3, 10]",
    "output": "generated_output : list = sub_n(drop([-4, -5, 3, 3, -2, 5],1),-5)",
    "io_inp": [
      -4,
      -5,
      3,
      3,
      -2,
      5
    ],
    "io_out": [
      0,
      8,
      8,
      3,
      10
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [5, -1, -1, -5]\noutput : list = [3, -3, -3, -7]",
    "output": "generated_output : list = take(sort_des(sub_n([5, -1, -1, -5],2)),27)",
    "io_inp": [
      5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      3,
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,2)),27)"
  },
  {
    "input": "input : list = [-4, 3, -1]\noutput : list = [0, -20, -35]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(sort_des([-4, 3, -1]),19),1),-2),5)",
    "io_inp": [
      -4,
      3,
      -1
    ],
    "io_out": [
      0,
      -20,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(sort_des(input),19),1),-2),5)"
  },
  {
    "input": "input : list = [-2, 2, -1, 4, 3, -5]\noutput : list = [12, 11, 10, 7, 6, 3]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-2, 2, -1, 4, 3, -5]),-3),5)",
    "io_inp": [
      -2,
      2,
      -1,
      4,
      3,
      -5
    ],
    "io_out": [
      12,
      11,
      10,
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),-3),5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [20, 24]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n(sort_des([-5, -4]),-1),13),4),4)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      20,
      24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(sort_des(input),-1),13),4),4)"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [0, 1, 5]",
    "output": "generated_output : list = take(reverse([5, 1, 0]),11)",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(input),11)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-12, -7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(mul_n([2, 1],-5))),2))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -12,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(mul_n(input,-5))),2))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = take(take(sort_des([-1, -5]),13),2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),13),2)"
  },
  {
    "input": "input : list = [0, 4, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take([0, 4, 0],1))",
    "io_inp": [
      0,
      4,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [9, 6, 0]",
    "output": "generated_output : list = add_n(sub_n(add_n([4, 1, -5],-3),-5),3)",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      9,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,-3),-5),3)"
  },
  {
    "input": "input : list = [-4, 3, 0, -2, 5]\noutput : list = [-10, -6, -2, 4, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(sub_n([-4, 3, 0, -2, 5],1)),2)),38)",
    "io_inp": [
      -4,
      3,
      0,
      -2,
      5
    ],
    "io_out": [
      -10,
      -6,
      -2,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(sub_n(input,1)),2)),38)"
  },
  {
    "input": "input : list = [0, 5, 5, 4, 1, -1]\noutput : list = [-10, -8, -2, 2]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(drop([0, 5, 5, 4, 1, -1],2)))),-2)",
    "io_inp": [
      0,
      5,
      5,
      4,
      1,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(drop(input,2)))),-2)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 4]\noutput : list = [-21, -1, -3]",
    "output": "generated_output : list = add_n(mul_n(add_n([-5, 5, 4],-5),2),-1)",
    "io_inp": [
      -5,
      5,
      4
    ],
    "io_out": [
      -21,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-5),2),-1)"
  },
  {
    "input": "input : list = [2, 1, -5, 0]\noutput : list = [-10, -20]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(take([2, 1, -5, 0],2),2)),30),-5)",
    "io_inp": [
      2,
      1,
      -5,
      0
    ],
    "io_out": [
      -10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(take(input,2),2)),30),-5)"
  },
  {
    "input": "input : list = [-2, -5, 4, -3, -2, 4]\noutput : list = [-11, -9, -8, -8, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(add_n([-2, -5, 4, -3, -2, 4],-4),-2))))",
    "io_inp": [
      -2,
      -5,
      4,
      -3,
      -2,
      4
    ],
    "io_out": [
      -11,
      -9,
      -8,
      -8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(add_n(input,-4),-2))))"
  },
  {
    "input": "input : list = [-5, 0, 3, 1, -4]\noutput : list = [1, 6]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(take([-5, 0, 3, 1, -4],2),-1),2),-1))",
    "io_inp": [
      -5,
      0,
      3,
      1,
      -4
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(take(input,2),-1),2),-1))"
  },
  {
    "input": "input : list = [4, 4, -1]\noutput : list = [-8, -8, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(take(mul_n([4, 4, -1],-2),10),15)))",
    "io_inp": [
      4,
      4,
      -1
    ],
    "io_out": [
      -8,
      -8,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(mul_n(input,-2),10),15)))"
  },
  {
    "input": "input : list = [2, 2, 0, 0]\noutput : list = [0, 0, 24, 24]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sort_des([2, 2, 0, 0]),3)),4))",
    "io_inp": [
      2,
      2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sort_des(input),3)),4))"
  },
  {
    "input": "input : list = [-2, -1, 5, 2, 5, 0]\noutput : list = [-1, 0, 1, 3, 6, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([-2, -1, 5, 2, 5, 0])),1)",
    "io_inp": [
      -2,
      -1,
      5,
      2,
      5,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [1, 3, -1, 2]\noutput : list = [3, 2, 1, -1]",
    "output": "generated_output : list = sort_des(take(reverse([1, 3, -1, 2]),6))",
    "io_inp": [
      1,
      3,
      -1,
      2
    ],
    "io_out": [
      3,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),6))"
  },
  {
    "input": "input : list = [-2, -3, -3, 5, 0]\noutput : list = [-3, -8, 0, 0, -1]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(add_n([-2, -3, -3, 5, 0],5)),23),-1),-2)",
    "io_inp": [
      -2,
      -3,
      -3,
      5,
      0
    ],
    "io_out": [
      -3,
      -8,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(add_n(input,5)),23),-1),-2)"
  },
  {
    "input": "input : list = [-2, -1, 4, -5]\noutput : list = [-10, -7, -6, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n([-2, -1, 4, -5],-1))),-4)",
    "io_inp": [
      -2,
      -1,
      4,
      -5
    ],
    "io_out": [
      -10,
      -7,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(input,-1))),-4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_des([3, -2]),1))),4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_des(input),1))),4)"
  },
  {
    "input": "input : list = [-4, -2, -1, -3, -4, -1]\noutput : list = [1, 3, 4, 2, 1, 4]",
    "output": "generated_output : list = take(take(add_n([-4, -2, -1, -3, -4, -1],5),24),27)",
    "io_inp": [
      -4,
      -2,
      -1,
      -3,
      -4,
      -1
    ],
    "io_out": [
      1,
      3,
      4,
      2,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,5),24),27)"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [-20, -15, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(add_n([-4, 3, -5],1)))),5)",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      -20,
      -15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(add_n(input,1)))),5)"
  },
  {
    "input": "input : list = [-1, -1, 0, 1, -2, 2]\noutput : list = [-2, -1, -1, 0, 1, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des([-1, -1, 0, 1, -2, 2])),-1),-1)",
    "io_inp": [
      -1,
      -1,
      0,
      1,
      -2,
      2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(input)),-1),-1)"
  },
  {
    "input": "input : list = [5, 5, 3, -5, 3, 2]\noutput : list = [5]",
    "output": "generated_output : list = take(take([5, 5, 3, -5, 3, 2],1),8)",
    "io_inp": [
      5,
      5,
      3,
      -5,
      3,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(input,1),8)"
  },
  {
    "input": "input : list = [-4, 5, -5, -2, -2, 5]\noutput : list = [-25, 25, -20]",
    "output": "generated_output : list = take(reverse(mul_n(take(take([-4, 5, -5, -2, -2, 5],3),24),5)),9)",
    "io_inp": [
      -4,
      5,
      -5,
      -2,
      -2,
      5
    ],
    "io_out": [
      -25,
      25,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(take(input,3),24),5)),9)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [115, 15, 40]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(mul_n([-2, -1, -5],-5)),2),5),6)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      115,
      15,
      40
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(mul_n(input,-5)),2),5),6)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [8, 8]",
    "output": "generated_output : list = sub_n([4, 4],-4)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, 2, 2, 1]\noutput : list = [-15, -15, -20, -20]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(sort_des([1, 2, 2, 1]),-2))),-5)",
    "io_inp": [
      1,
      2,
      2,
      1
    ],
    "io_out": [
      -15,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(sort_des(input),-2))),-5)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [24, 21]",
    "output": "generated_output : list = mul_n(sub_n(add_n([3, 2],4),-1),3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      24,
      21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,4),-1),3)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(sort_des([3, 1]),-1),-4)),-1)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(sort_des(input),-1),-4)),-1)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take([1, -1, 1],1)),-1),2)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(input,1)),-1),2)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [6, 3]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(sort_asc([-3, -4])),5),19),3)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(sort_asc(input)),5),19),3)"
  },
  {
    "input": "input : list = [2, 1, -5]\noutput : list = [2, 1, -5]",
    "output": "generated_output : list = add_n(add_n(sort_des([2, 1, -5]),-3),3)",
    "io_inp": [
      2,
      1,
      -5
    ],
    "io_out": [
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-3),3)"
  },
  {
    "input": "input : list = [-2, 1, -5, 1, 0, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take([-2, 1, -5, 1, 0, 0],2)",
    "io_inp": [
      -2,
      1,
      -5,
      1,
      0,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -3, -2, 2, 5]\noutput : list = [2, -1, 0, 4, 7]",
    "output": "generated_output : list = add_n([0, -3, -2, 2, 5],2)",
    "io_inp": [
      0,
      -3,
      -2,
      2,
      5
    ],
    "io_out": [
      2,
      -1,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 3, 2, -4, -1, -5]\noutput : list = [25, 5, 20, -10, -15, -20]",
    "output": "generated_output : list = reverse(mul_n([4, 3, 2, -4, -1, -5],-5))",
    "io_inp": [
      4,
      3,
      2,
      -4,
      -1,
      -5
    ],
    "io_out": [
      25,
      5,
      20,
      -10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-5, -3, -1, 1, -3, 0]\noutput : list = [15, 20, 25, 35, 35, 45]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(reverse([-5, -3, -1, 1, -3, 0])),4),48),-5)",
    "io_inp": [
      -5,
      -3,
      -1,
      1,
      -3,
      0
    ],
    "io_out": [
      15,
      20,
      25,
      35,
      35,
      45
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(reverse(input)),4),48),-5)"
  },
  {
    "input": "input : list = [1, -3, -4, 2, 2, -1]\noutput : list = [-4, -3, -1, 1, 2, 2]",
    "output": "generated_output : list = sort_asc([1, -3, -4, 2, 2, -1])",
    "io_inp": [
      1,
      -3,
      -4,
      2,
      2,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, 4, -1, -5]\noutput : list = [-5, -1, 4, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, 4, -1, -5])",
    "io_inp": [
      -5,
      2,
      4,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [-6, -6, 6]",
    "output": "generated_output : list = mul_n([-2, -2, 2],3)",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse([0, 1])),-5))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(input)),-5))"
  },
  {
    "input": "input : list = [5, 2, -1, -4, -3, -3]\noutput : list = [-40]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take([5, 2, -1, -4, -3, -3],1)),5),-4)",
    "io_inp": [
      5,
      2,
      -1,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(input,1)),5),-4)"
  },
  {
    "input": "input : list = [-5, 0, -4, -1]\noutput : list = [-5, -4, -1, 0]",
    "output": "generated_output : list = sort_asc([-5, 0, -4, -1])",
    "io_inp": [
      -5,
      0,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, 3, 5, -1, -3]\noutput : list = [4, 12, -4, -8, 4, 8]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n(sub_n([-1, -5, 3, 5, -1, -3],1),4),4),-1),2)",
    "io_inp": [
      -1,
      -5,
      3,
      5,
      -1,
      -3
    ],
    "io_out": [
      4,
      12,
      -4,
      -8,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(sub_n(input,1),4),4),-1),2)"
  },
  {
    "input": "input : list = [-3, 1, -3, -5]\noutput : list = [1, -3, -5]",
    "output": "generated_output : list = drop([-3, 1, -3, -5],1)",
    "io_inp": [
      -3,
      1,
      -3,
      -5
    ],
    "io_out": [
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, 6]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sort_asc([2, -2]),3),1),1),-1)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sort_asc(input),3),1),1),-1)"
  },
  {
    "input": "input : list = [1, -4, 2, 3, -5]\noutput : list = [-1, -2, -3, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([1, -4, 2, 3, -5]),-4))",
    "io_inp": [
      1,
      -4,
      2,
      3,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [2, 2, -1, -2]\noutput : list = [-11, -8, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(mul_n([2, 2, -1, -2],3),9),5)))",
    "io_inp": [
      2,
      2,
      -1,
      -2
    ],
    "io_out": [
      -11,
      -8,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(mul_n(input,3),9),5)))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [13, 6]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(add_n([4, -3],4),-5))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      13,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(add_n(input,4),-5))))"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(take([-1, 1, 3],1),4)),3),42)",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(take(input,1),4)),3),42)"
  },
  {
    "input": "input : list = [3, -5, 2, -4, 5, -2]\noutput : list = [5, 3, 2, -2, -4, -5]",
    "output": "generated_output : list = sort_des([3, -5, 2, -4, 5, -2])",
    "io_inp": [
      3,
      -5,
      2,
      -4,
      5,
      -2
    ],
    "io_out": [
      5,
      3,
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -1, -2, 5]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(take([0, -4, -1, -2, 5],1),-5))),16)",
    "io_inp": [
      0,
      -4,
      -1,
      -2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(take(input,1),-5))),16)"
  },
  {
    "input": "input : list = [-5, 0, 2, 1, -3, 4]\noutput : list = [-12, -4, 0, 4, 16, 24]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(sort_asc([-5, 0, 2, 1, -3, 4]),-4),4),18))",
    "io_inp": [
      -5,
      0,
      2,
      1,
      -3,
      4
    ],
    "io_out": [
      -12,
      -4,
      0,
      4,
      16,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(sort_asc(input),-4),4),18))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [38, 8]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(sub_n([-4, 2],-5),5))),3)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      38,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(sub_n(input,-5),5))),3)"
  },
  {
    "input": "input : list = [4, 2, 0, 3, -2, 4]\noutput : list = [6, 2, -2, 4, -6, 6]",
    "output": "generated_output : list = mul_n(add_n([4, 2, 0, 3, -2, 4],-1),2)",
    "io_inp": [
      4,
      2,
      0,
      3,
      -2,
      4
    ],
    "io_out": [
      6,
      2,
      -2,
      4,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),2)"
  },
  {
    "input": "input : list = [-5, 0, -3, 3, 4, -2]\noutput : list = [22, 14, 10, 2, -10, -14]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_des([-5, 0, -3, 3, 4, -2]))),-4),2)",
    "io_inp": [
      -5,
      0,
      -3,
      3,
      4,
      -2
    ],
    "io_out": [
      22,
      14,
      10,
      2,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_des(input))),-4),2)"
  },
  {
    "input": "input : list = [3, -4, 0, -4, -2]\noutput : list = [-6, -6, -2, 2]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(drop([3, -4, 0, -4, -2],1)),-1),2))",
    "io_inp": [
      3,
      -4,
      0,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(drop(input,1)),-1),2))"
  },
  {
    "input": "input : list = [1, 3, 3, -1, -4, -2]\noutput : list = [-3, -9, -9, 3, 12, 6]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(reverse([1, 3, 3, -1, -4, -2]),1),16),-3))",
    "io_inp": [
      1,
      3,
      3,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -9,
      -9,
      3,
      12,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(reverse(input),1),16),-3))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(sort_des([-5, -3])),-1),1))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(sort_des(input)),-1),1))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-60, -180]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n([1, -5],-4)),4),5))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -60,
      -180
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n(input,-4)),4),5))"
  },
  {
    "input": "input : list = [5, -3, 0, 0, 2]\noutput : list = [2, -6, -3]",
    "output": "generated_output : list = add_n(take([5, -3, 0, 0, 2],3),-3)",
    "io_inp": [
      5,
      -3,
      0,
      0,
      2
    ],
    "io_out": [
      2,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(take(take(add_n([1, 3],2),1),4),-1)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(input,2),1),4),-1)"
  },
  {
    "input": "input : list = [0, 5, 3, -2]\noutput : list = [12, 32, 24, 4]",
    "output": "generated_output : list = mul_n(sub_n([0, 5, 3, -2],-3),4)",
    "io_inp": [
      0,
      5,
      3,
      -2
    ],
    "io_out": [
      12,
      32,
      24,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),4)"
  },
  {
    "input": "input : list = [1, 4, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(add_n([1, 4, -2],-1),1))))",
    "io_inp": [
      1,
      4,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(add_n(input,-1),1))))"
  },
  {
    "input": "input : list = [-3, -2, -3, 2, 5, 0]\noutput : list = [-9, -5, 3, 11, 23]",
    "output": "generated_output : list = add_n(drop(sort_asc(sort_des(mul_n([-3, -2, -3, 2, 5, 0],4))),1),3)",
    "io_inp": [
      -3,
      -2,
      -3,
      2,
      5,
      0
    ],
    "io_out": [
      -9,
      -5,
      3,
      11,
      23
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_asc(sort_des(mul_n(input,4))),1),3)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sort_des([3, 2]))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -1, -5, -5, -5]\noutput : list = [-3, -5, -7, -7, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(reverse([-3, -1, -5, -5, -5]))),4),-2)",
    "io_inp": [
      -3,
      -1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(reverse(input))),4),-2)"
  },
  {
    "input": "input : list = [5, -1, 1, 2, -2]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(drop([5, -1, 1, 2, -2],3),3),20),-3))",
    "io_inp": [
      5,
      -1,
      1,
      2,
      -2
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(drop(input,3),3),20),-3))"
  },
  {
    "input": "input : list = [-4, 2, 5, 3]\noutput : list = [30, 35, 45]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(drop([-4, 2, 5, 3],1),-4),5),5))",
    "io_inp": [
      -4,
      2,
      5,
      3
    ],
    "io_out": [
      30,
      35,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(drop(input,1),-4),5),5))"
  },
  {
    "input": "input : list = [-3, -2, 2, -4, 2]\noutput : list = [30, -60, 30]",
    "output": "generated_output : list = drop(mul_n(mul_n(mul_n([-3, -2, 2, -4, 2],1),-3),-5),2)",
    "io_inp": [
      -3,
      -2,
      2,
      -4,
      2
    ],
    "io_out": [
      30,
      -60,
      30
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(mul_n(input,1),-3),-5),2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(sort_des([-4, -5]),-5)),8),-5)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(sort_des(input),-5)),8),-5)"
  },
  {
    "input": "input : list = [-3, 4, -3, -2, -1]\noutput : list = [-6, -6, -5, -4, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n([-3, 4, -3, -2, -1],-3)))",
    "io_inp": [
      -3,
      4,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-3)))"
  },
  {
    "input": "input : list = [1, -3, 2, 0]\noutput : list = [3, 1]",
    "output": "generated_output : list = add_n(drop([1, -3, 2, 0],2),1)",
    "io_inp": [
      1,
      -3,
      2,
      0
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),1)"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [-9, -3, -3]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(reverse([-5, -3, -3]),-5),3),3))",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      -9,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(reverse(input),-5),3),3))"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [1, 2, 3]",
    "output": "generated_output : list = sort_asc([2, 3, 1])",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1, 3, -5, 1, 3]\noutput : list = [13, 15, 17]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(take([5, 1, 3, -5, 1, 3],3),-3)),-5),-4)",
    "io_inp": [
      5,
      1,
      3,
      -5,
      1,
      3
    ],
    "io_out": [
      13,
      15,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(take(input,3),-3)),-5),-4)"
  },
  {
    "input": "input : list = [-3, 1, 2, 4]\noutput : list = [-3, 1, 2, 4]",
    "output": "generated_output : list = mul_n([-3, 1, 2, 4],1)",
    "io_inp": [
      -3,
      1,
      2,
      4
    ],
    "io_out": [
      -3,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-3, -2, -4, -3, -2, 0]\noutput : list = [-5, -4, -6, -5, -4, -2]",
    "output": "generated_output : list = sub_n([-3, -2, -4, -3, -2, 0],2)",
    "io_inp": [
      -3,
      -2,
      -4,
      -3,
      -2,
      0
    ],
    "io_out": [
      -5,
      -4,
      -6,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [4, 10]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(sort_des([-1, 5]))),17),-5)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(sort_des(input))),17),-5)"
  },
  {
    "input": "input : list = [-2, -2, 3, -4, -4]\noutput : list = [3, -2, -2, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des([-2, -2, 3, -4, -4]))",
    "io_inp": [
      -2,
      -2,
      3,
      -4,
      -4
    ],
    "io_out": [
      3,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [-7, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([5, -3, 5]),-4))",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      -7,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [-3, -5, -4, 4]\noutput : list = [8, -8, -10, -6]",
    "output": "generated_output : list = mul_n(reverse([-3, -5, -4, 4]),2)",
    "io_inp": [
      -3,
      -5,
      -4,
      4
    ],
    "io_out": [
      8,
      -8,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [4, -5, 4, -4]\noutput : list = [-12, -12, 20, 24]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(mul_n([4, -5, 4, -4],-4)),2)),-2)",
    "io_inp": [
      4,
      -5,
      4,
      -4
    ],
    "io_out": [
      -12,
      -12,
      20,
      24
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(mul_n(input,-4)),2)),-2)"
  },
  {
    "input": "input : list = [5, 0, 4, -3, 0, -5]\noutput : list = [12, 4, -8, -8, -24, -28]",
    "output": "generated_output : list = take(sort_des(take(mul_n(sub_n([5, 0, 4, -3, 0, -5],-2),-4),15)),57)",
    "io_inp": [
      5,
      0,
      4,
      -3,
      0,
      -5
    ],
    "io_out": [
      12,
      4,
      -8,
      -8,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(sub_n(input,-2),-4),15)),57)"
  },
  {
    "input": "input : list = [-4, -3, 5, 1, 1]\noutput : list = [-4, 4, 0, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(drop([-4, -3, 5, 1, 1],1)),-2),-3))",
    "io_inp": [
      -4,
      -3,
      5,
      1,
      1
    ],
    "io_out": [
      -4,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(drop(input,1)),-2),-3))"
  },
  {
    "input": "input : list = [4, 2, -2, -3, -2, 4]\noutput : list = [-12, -8, -8, 8, 16, 16]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(sort_asc([4, 2, -2, -3, -2, 4]),4))))",
    "io_inp": [
      4,
      2,
      -2,
      -3,
      -2,
      4
    ],
    "io_out": [
      -12,
      -8,
      -8,
      8,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [12, -8, -16]",
    "output": "generated_output : list = mul_n(sort_des([-4, 3, -2]),4)",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      12,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-5, 2, 0, -3, -3, 1]\noutput : list = [-3, 1, 1, -2, -4, 3]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(mul_n([-5, 2, 0, -3, -3, 1],-1),5)),-3),23)",
    "io_inp": [
      -5,
      2,
      0,
      -3,
      -3,
      1
    ],
    "io_out": [
      -3,
      1,
      1,
      -2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(mul_n(input,-1),5)),-3),23)"
  },
  {
    "input": "input : list = [2, -2, 4, 2, 0, 4]\noutput : list = [6, 8, 2, 6]",
    "output": "generated_output : list = reverse(add_n(take([2, -2, 4, 2, 0, 4],4),4))",
    "io_inp": [
      2,
      -2,
      4,
      2,
      0,
      4
    ],
    "io_out": [
      6,
      8,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(input,4),4))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-22, -30]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(sub_n([3, 1],-5),-4)),-2),1)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -22,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(sub_n(input,-5),-4)),-2),1)"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [4, 8, -20]",
    "output": "generated_output : list = take(mul_n([1, 2, -5],4),12)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      4,
      8,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),12)"
  },
  {
    "input": "input : list = [-2, 4, 1, 3, -2]\noutput : list = [2, 2, -1, -3, -4]",
    "output": "generated_output : list = sort_des(mul_n([-2, 4, 1, 3, -2],-1))",
    "io_inp": [
      -2,
      4,
      1,
      3,
      -2
    ],
    "io_out": [
      2,
      2,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-2, -3, 5]\noutput : list = [-5, -6, 2]",
    "output": "generated_output : list = add_n([-2, -3, 5],-3)",
    "io_inp": [
      -2,
      -3,
      5
    ],
    "io_out": [
      -5,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 4, -2, 4]\noutput : list = [-30, -30, 0, 15]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des([-5, 4, -2, 4]),1),-3),-5)",
    "io_inp": [
      -5,
      4,
      -2,
      4
    ],
    "io_out": [
      -30,
      -30,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(input),1),-3),-5)"
  },
  {
    "input": "input : list = [2, -5, -5]\noutput : list = [-12, 30, 30]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(mul_n([2, -5, -5],3))),16),-2)",
    "io_inp": [
      2,
      -5,
      -5
    ],
    "io_out": [
      -12,
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(mul_n(input,3))),16),-2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-20, -25]",
    "output": "generated_output : list = mul_n(sort_des([-4, -5]),5)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, -1, 5, 0]\noutput : list = [1, 2, 3, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(sort_asc([-2, -1, 5, 0]),1),4),10))",
    "io_inp": [
      -2,
      -1,
      5,
      0
    ],
    "io_out": [
      1,
      2,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(sort_asc(input),1),4),10))"
  },
  {
    "input": "input : list = [-2, 5, -1]\noutput : list = [-10, -5, 25]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 5, -1],5))",
    "io_inp": [
      -2,
      5,
      -1
    ],
    "io_out": [
      -10,
      -5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-1, -4, 3, -5, -5, 5]\noutput : list = [-5, 5, 5, -3, 4, 1]",
    "output": "generated_output : list = mul_n(reverse([-1, -4, 3, -5, -5, 5]),-1)",
    "io_inp": [
      -1,
      -4,
      3,
      -5,
      -5,
      5
    ],
    "io_out": [
      -5,
      5,
      5,
      -3,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-1, -2, -1, 3]\noutput : list = [-1, -5, -5, -6]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n([-1, -2, -1, 3],3),-3)),-4)",
    "io_inp": [
      -1,
      -2,
      -1,
      3
    ],
    "io_out": [
      -1,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(input,3),-3)),-4)"
  },
  {
    "input": "input : list = [-2, 4, -3, 3, 0]\noutput : list = [4, 3, 0, -2, -3]",
    "output": "generated_output : list = sort_des(reverse([-2, 4, -3, 3, 0]))",
    "io_inp": [
      -2,
      4,
      -3,
      3,
      0
    ],
    "io_out": [
      4,
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -4, -3, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = take(drop(sort_asc([4, -4, -3, 3]),2),16)",
    "io_inp": [
      4,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(input),2),16)"
  },
  {
    "input": "input : list = [0, -1, 4, 2, 1, -4]\noutput : list = [-7, -8, -3, -5, -6, -11]",
    "output": "generated_output : list = sub_n(sub_n([0, -1, 4, 2, 1, -4],4),3)",
    "io_inp": [
      0,
      -1,
      4,
      2,
      1,
      -4
    ],
    "io_out": [
      -7,
      -8,
      -3,
      -5,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),3)"
  },
  {
    "input": "input : list = [-5, 1, 2, 5, -5, 1]\noutput : list = [-24, -12, -8, -8, 16, 16]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(mul_n([-5, 1, 2, 5, -5, 1],-4)),22)),-4)",
    "io_inp": [
      -5,
      1,
      2,
      5,
      -5,
      1
    ],
    "io_out": [
      -24,
      -12,
      -8,
      -8,
      16,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(mul_n(input,-4)),22)),-4)"
  },
  {
    "input": "input : list = [-1, -4, 1, -4, 2, -2]\noutput : list = [-1, -4, 1]",
    "output": "generated_output : list = take([-1, -4, 1, -4, 2, -2],3)",
    "io_inp": [
      -1,
      -4,
      1,
      -4,
      2,
      -2
    ],
    "io_out": [
      -1,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, 1, -1, -2, 3, 1]\noutput : list = [1, 3, -2, -1, 1, 0]",
    "output": "generated_output : list = reverse([0, 1, -1, -2, 3, 1])",
    "io_inp": [
      0,
      1,
      -1,
      -2,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -2,
      -1,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, -2, -2, 3, 4]\noutput : list = [-10, -10, -2, 6, 10, 14]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(mul_n([0, 2, -2, -2, 3, 4],4),2)),37))",
    "io_inp": [
      0,
      2,
      -2,
      -2,
      3,
      4
    ],
    "io_out": [
      -10,
      -10,
      -2,
      6,
      10,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(mul_n(input,4),2)),37))"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = add_n(sort_asc([0, 2, 0]),-4)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [1, 3, -1, 4]\noutput : list = [2, 6, -2, 8]",
    "output": "generated_output : list = mul_n([1, 3, -1, 4],2)",
    "io_inp": [
      1,
      3,
      -1,
      4
    ],
    "io_out": [
      2,
      6,
      -2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [3, 2, 1, 1, -5]\noutput : list = [0, -1, -2, -2, -8]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(add_n([3, 2, 1, 1, -5],-2),-1))))",
    "io_inp": [
      3,
      2,
      1,
      1,
      -5
    ],
    "io_out": [
      0,
      -1,
      -2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(add_n(input,-2),-1))))"
  },
  {
    "input": "input : list = [-4, 4, 3, 2]\noutput : list = [-3, -4, -5, -11]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(sub_n([-4, 4, 3, 2],2),-4)),-5),-4)",
    "io_inp": [
      -4,
      4,
      3,
      2
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(sub_n(input,2),-4)),-5),-4)"
  },
  {
    "input": "input : list = [-1, 4, -5, -4, 3]\noutput : list = [-8, -7, 0, 1]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc(drop([-1, 4, -5, -4, 3],1)),1),2),-4)",
    "io_inp": [
      -1,
      4,
      -5,
      -4,
      3
    ],
    "io_out": [
      -8,
      -7,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(drop(input,1)),1),2),-4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [1, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(sort_des([-3, -2])))),-3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(add_n(mul_n(drop([-2, 4, -2],1),1),-2))",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(drop(input,1),1),-2))"
  },
  {
    "input": "input : list = [0, 2, 2, 4, 1]\noutput : list = [-1, 1, 1, 3, 0]",
    "output": "generated_output : list = add_n([0, 2, 2, 4, 1],-1)",
    "io_inp": [
      0,
      2,
      2,
      4,
      1
    ],
    "io_out": [
      -1,
      1,
      1,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 5, -1, 0, 2, 3]\noutput : list = [-1, 2, -4, -3, -1, 0]",
    "output": "generated_output : list = add_n([2, 5, -1, 0, 2, 3],-3)",
    "io_inp": [
      2,
      5,
      -1,
      0,
      2,
      3
    ],
    "io_out": [
      -1,
      2,
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -4, 2, 0, 0, 0]\noutput : list = [-4, 0, 0, 0, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take(mul_n([-3, -4, 2, 0, 0, 0],-2),18))))",
    "io_inp": [
      -3,
      -4,
      2,
      0,
      0,
      0
    ],
    "io_out": [
      -4,
      0,
      0,
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(mul_n(input,-2),18))))"
  },
  {
    "input": "input : list = [-4, -1, 1, -1, 0, -3]\noutput : list = [45, 40, 30, 30, 25, 20]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc([-4, -1, 1, -1, 0, -3])),-5),-5)",
    "io_inp": [
      -4,
      -1,
      1,
      -1,
      0,
      -3
    ],
    "io_out": [
      45,
      40,
      30,
      30,
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(input)),-5),-5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [10, -4]",
    "output": "generated_output : list = sort_des(mul_n([-2, 5],2))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      10,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [3, 2, -4, -1]\noutput : list = [-8, -5, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(add_n([3, 2, -4, -1],-3)))),-1)",
    "io_inp": [
      3,
      2,
      -4,
      -1
    ],
    "io_out": [
      -8,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(add_n(input,-3)))),-1)"
  },
  {
    "input": "input : list = [5, 1, 0, 0]\noutput : list = [6, 2, 1, 1]",
    "output": "generated_output : list = sub_n([5, 1, 0, 0],-1)",
    "io_inp": [
      5,
      1,
      0,
      0
    ],
    "io_out": [
      6,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 3, 1, 5, 1]\noutput : list = [2, 6, 2, 4, -1]",
    "output": "generated_output : list = sub_n(take(reverse([-2, 3, 1, 5, 1]),10),-1)",
    "io_inp": [
      -2,
      3,
      1,
      5,
      1
    ],
    "io_out": [
      2,
      6,
      2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),10),-1)"
  },
  {
    "input": "input : list = [-2, 4, 1, 0]\noutput : list = [6, 3, 2, 0]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse([-2, 4, 1, 0])),12),-2)",
    "io_inp": [
      -2,
      4,
      1,
      0
    ],
    "io_out": [
      6,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(input)),12),-2)"
  },
  {
    "input": "input : list = [-1, -1, 4]\noutput : list = [-1, -1, 4]",
    "output": "generated_output : list = mul_n([-1, -1, 4],1)",
    "io_inp": [
      -1,
      -1,
      4
    ],
    "io_out": [
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -3, -5, -4]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(take([1, -3, -5, -4],2))),14))",
    "io_inp": [
      1,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(take(input,2))),14))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse([0, 3])),4),5)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(input)),4),5)"
  },
  {
    "input": "input : list = [0, 5, -3, -3, 4, -2]\noutput : list = [13, 13, 9, 1, -15, -19]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(reverse([0, 5, -3, -3, 4, -2]))),-4),1)",
    "io_inp": [
      0,
      5,
      -3,
      -3,
      4,
      -2
    ],
    "io_out": [
      13,
      13,
      9,
      1,
      -15,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(reverse(input))),-4),1)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [4, 8, 6]",
    "output": "generated_output : list = reverse(add_n([2, 4, 0],4))",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      4,
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [-1, 4, -2]\noutput : list = [23, -2, 28]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(sub_n([-1, 4, -2],5),-5),-4),27),-3)",
    "io_inp": [
      -1,
      4,
      -2
    ],
    "io_out": [
      23,
      -2,
      28
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(sub_n(input,5),-5),-4),27),-3)"
  },
  {
    "input": "input : list = [0, -1, -3, 2, -4]\noutput : list = [0, -2, -3, -5, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sort_asc([0, -1, -3, 2, -4]),2))))",
    "io_inp": [
      0,
      -1,
      -3,
      2,
      -4
    ],
    "io_out": [
      0,
      -2,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [5, 5, 1, -2]\noutput : list = [45, 18, -18, -18]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sub_n([5, 5, 1, -2],3)),3),-3))",
    "io_inp": [
      5,
      5,
      1,
      -2
    ],
    "io_out": [
      45,
      18,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sub_n(input,3)),3),-3))"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [8, 6, -4]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des([-5, 1, 0]),-3),2),20))",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      8,
      6,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des(input),-3),2),20))"
  },
  {
    "input": "input : list = [-3, 2, 0, 5, 4, 4]\noutput : list = [1, 0, 0, -2, -4, -7]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([-3, 2, 0, 5, 4, 4],2),2))",
    "io_inp": [
      -3,
      2,
      0,
      5,
      4,
      4
    ],
    "io_out": [
      1,
      0,
      0,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,2),2))"
  },
  {
    "input": "input : list = [-4, 2, -5, -1, -1]\noutput : list = [-6, -6, -10]",
    "output": "generated_output : list = add_n(take(reverse([-4, 2, -5, -1, -1]),3),-5)",
    "io_inp": [
      -4,
      2,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),3),-5)"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [1, 5, 9]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(sub_n([-3, 1, 5],1),3),-1),3),1)",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      1,
      5,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(sub_n(input,1),3),-1),3),1)"
  },
  {
    "input": "input : list = [-5, -3, 5, -1, -4]\noutput : list = [5, -1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(reverse([-5, -3, 5, -1, -4]),25))))",
    "io_inp": [
      -5,
      -3,
      5,
      -1,
      -4
    ],
    "io_out": [
      5,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(reverse(input),25))))"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [-4, -5, -10]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(add_n([-3, 3, 2],-2)),5)))",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      -4,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(add_n(input,-2)),5)))"
  },
  {
    "input": "input : list = [0, 5, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take([0, 5, -4],1)),5))",
    "io_inp": [
      0,
      5,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(input,1)),5))"
  },
  {
    "input": "input : list = [-2, 5, 5, 4, -2, -4]\noutput : list = [-15, 20, 20, 15, -15, -25]",
    "output": "generated_output : list = mul_n(add_n([-2, 5, 5, 4, -2, -4],-1),5)",
    "io_inp": [
      -2,
      5,
      5,
      4,
      -2,
      -4
    ],
    "io_out": [
      -15,
      20,
      20,
      15,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [-1, 2, -4, -2, -3]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(sub_n(take([-1, 2, -4, -2, -3],2),4))",
    "io_inp": [
      -1,
      2,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(input,2),4))"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-6, -2, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc([-1, -5, -1]))),-1),-2)",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc(input))),-1),-2)"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [-13, -10, -4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des(add_n([-4, -1, 5],-5)))),-4)",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      -13,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(add_n(input,-5)))),-4)"
  },
  {
    "input": "input : list = [-5, -2, 3]\noutput : list = [-5, -2, 3]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(sub_n([-5, -2, 3],-5)),-1),4),-2)",
    "io_inp": [
      -5,
      -2,
      3
    ],
    "io_out": [
      -5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(sub_n(input,-5)),-1),4),-2)"
  },
  {
    "input": "input : list = [1, -4, -1, 2]\noutput : list = [-3]",
    "output": "generated_output : list = take(mul_n(add_n(take(drop([1, -4, -1, 2],2),1),4),-1),3)",
    "io_inp": [
      1,
      -4,
      -1,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(drop(input,2),1),4),-1),3)"
  },
  {
    "input": "input : list = [3, -5, 1, 3, -5]\noutput : list = [-4, -4, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([3, -5, 1, 3, -5],-2),-3))",
    "io_inp": [
      3,
      -5,
      1,
      3,
      -5
    ],
    "io_out": [
      -4,
      -4,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,-2),-3))"
  },
  {
    "input": "input : list = [-1, 4, 1, 3, 4, 5]\noutput : list = [20, 40, 28, 36, 40, 44]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(add_n([-1, 4, 1, 3, 4, 5],5),1),4)))",
    "io_inp": [
      -1,
      4,
      1,
      3,
      4,
      5
    ],
    "io_out": [
      20,
      40,
      28,
      36,
      40,
      44
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(add_n(input,5),1),4)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-1, -9]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(reverse([-4, 4]),2))),-3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(reverse(input),2))),-3)"
  },
  {
    "input": "input : list = [-2, 0, -1]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc([-2, 0, -1]))",
    "io_inp": [
      -2,
      0,
      -1
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 0, -3, -1, 1, 2]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sub_n(take(sub_n(drop(sort_asc([4, 0, -3, -1, 1, 2]),4),4),35),3)",
    "io_inp": [
      4,
      0,
      -3,
      -1,
      1,
      2
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(drop(sort_asc(input),4),4),35),3)"
  },
  {
    "input": "input : list = [-1, 0, -1, 3, 5]\noutput : list = [29, 19, 4]",
    "output": "generated_output : list = sub_n(take(take(mul_n(sort_des([-1, 0, -1, 3, 5]),5),28),3),-4)",
    "io_inp": [
      -1,
      0,
      -1,
      3,
      5
    ],
    "io_out": [
      29,
      19,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(sort_des(input),5),28),3),-4)"
  },
  {
    "input": "input : list = [-4, 0, 3, -5, 4, -3]\noutput : list = [30, -15, -75]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(take([-4, 0, 3, -5, 4, -3],3),5),-5),3))",
    "io_inp": [
      -4,
      0,
      3,
      -5,
      4,
      -3
    ],
    "io_out": [
      30,
      -15,
      -75
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(take(input,3),5),-5),3))"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take(sort_des(take([0, -2, -5],1)),20))",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(input,1)),20))"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [10, 16, -2]",
    "output": "generated_output : list = take(reverse(mul_n(take(sub_n([-4, 5, 2],-3),3),2)),20)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      10,
      16,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(sub_n(input,-3),3),2)),20)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([1, -3],5)))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,5)))"
  },
  {
    "input": "input : list = [2, -4, 5, -3, -4, 5]\noutput : list = [3, -3, 6, -2, -3, 6]",
    "output": "generated_output : list = add_n([2, -4, 5, -3, -4, 5],1)",
    "io_inp": [
      2,
      -4,
      5,
      -3,
      -4,
      5
    ],
    "io_out": [
      3,
      -3,
      6,
      -2,
      -3,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, -5, 0, -5, -1]\noutput : list = [0, -1, -5, -5]",
    "output": "generated_output : list = sort_des(take(take(drop([3, -5, 0, -5, -1],1),22),33))",
    "io_inp": [
      3,
      -5,
      0,
      -5,
      -1
    ],
    "io_out": [
      0,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(drop(input,1),22),33))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [30, 40]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_asc([4, 2]))),-4),5)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      30,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_asc(input))),-4),5)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = sort_des([-5, 2, -3])",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [5, 0]",
    "output": "generated_output : list = mul_n(sort_asc([0, -5]),-1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-64, -16]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sort_des([-1, 2]),2),-4),4))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -64,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sort_des(input),2),-4),4))"
  },
  {
    "input": "input : list = [5, 2, 2, -2, -4]\noutput : list = [9, 3, -9, -9, -18]",
    "output": "generated_output : list = add_n(mul_n(take(take(sort_asc([5, 2, 2, -2, -4]),25),18),-3),-3)",
    "io_inp": [
      5,
      2,
      2,
      -2,
      -4
    ],
    "io_out": [
      9,
      3,
      -9,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(sort_asc(input),25),18),-3),-3)"
  },
  {
    "input": "input : list = [-5, 5, 0, 1]\noutput : list = [-64, 136, 36, 56]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(sub_n([-5, 5, 0, 1],-1),-5),3),-4),4)",
    "io_inp": [
      -5,
      5,
      0,
      1
    ],
    "io_out": [
      -64,
      136,
      36,
      56
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(sub_n(input,-1),-5),3),-4),4)"
  },
  {
    "input": "input : list = [-3, -2, 5, 0, 0]\noutput : list = [-11, -10, -8, -8, -3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(mul_n([-3, -2, 5, 0, 0],1),-4),-4)))",
    "io_inp": [
      -3,
      -2,
      5,
      0,
      0
    ],
    "io_out": [
      -11,
      -10,
      -8,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(mul_n(input,1),-4),-4)))"
  },
  {
    "input": "input : list = [-5, 3, -4, 4, -2]\noutput : list = [21, -19]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(take([-5, 3, -4, 4, -2],2),-5),-4),21))",
    "io_inp": [
      -5,
      3,
      -4,
      4,
      -2
    ],
    "io_out": [
      21,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(take(input,2),-5),-4),21))"
  },
  {
    "input": "input : list = [4, -3, -5, -2, 0, -2]\noutput : list = [-17, -15, -14, -14, -12, -8]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(add_n([4, -3, -5, -2, 0, -2],-3)),5),4),10)",
    "io_inp": [
      4,
      -3,
      -5,
      -2,
      0,
      -2
    ],
    "io_out": [
      -17,
      -15,
      -14,
      -14,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(add_n(input,-3)),5),4),10)"
  },
  {
    "input": "input : list = [2, -3, 3, 4, 4, -2]\noutput : list = [7, -3, 9, 11, 11, -1]",
    "output": "generated_output : list = add_n(mul_n([2, -3, 3, 4, 4, -2],2),3)",
    "io_inp": [
      2,
      -3,
      3,
      4,
      4,
      -2
    ],
    "io_out": [
      7,
      -3,
      9,
      11,
      11,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(reverse([0, -1]),-3)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [2, 5, 4]",
    "output": "generated_output : list = reverse([4, 5, 2])",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 2, -4, 5, -5]\noutput : list = [3, -2, 4, -5, 5]",
    "output": "generated_output : list = take(mul_n(mul_n([-3, 2, -4, 5, -5],1),-1),12)",
    "io_inp": [
      -3,
      2,
      -4,
      5,
      -5
    ],
    "io_out": [
      3,
      -2,
      4,
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,1),-1),12)"
  },
  {
    "input": "input : list = [1, 2, -1, 5, -1, -1]\noutput : list = [-25, -1, -1]",
    "output": "generated_output : list = sub_n(mul_n(drop([1, 2, -1, 5, -1, -1],3),-4),5)",
    "io_inp": [
      1,
      2,
      -1,
      5,
      -1,
      -1
    ],
    "io_out": [
      -25,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,3),-4),5)"
  },
  {
    "input": "input : list = [1, 5, -1, 3, 5, 0]\noutput : list = [-3, 1, -5, -1, 1, -4]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(mul_n([1, 5, -1, 3, 5, 0],1),-1),-1),5),-1)",
    "io_inp": [
      1,
      5,
      -1,
      3,
      5,
      0
    ],
    "io_out": [
      -3,
      1,
      -5,
      -1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(mul_n(input,1),-1),-1),5),-1)"
  },
  {
    "input": "input : list = [5, 1, 0, -1, -4]\noutput : list = [-7, -11, -12, -13, -16]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(sub_n([5, 1, 0, -1, -4],1),3),-5),1),-4)",
    "io_inp": [
      5,
      1,
      0,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -11,
      -12,
      -13,
      -16
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(sub_n(input,1),3),-5),1),-4)"
  },
  {
    "input": "input : list = [2, 4, -1, 3, 3, 1]\noutput : list = [1, 3, 3, -1, 4, 2]",
    "output": "generated_output : list = reverse(mul_n([2, 4, -1, 3, 3, 1],1))",
    "io_inp": [
      2,
      4,
      -1,
      3,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      3,
      -1,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n([1, 2],-2)),-3),-2))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n(input,-2)),-3),-2))"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [5]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(take([-2, -5, 0],1),5))),2)",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(take(input,1),5))),2)"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [-2, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_asc([0, 5, 3]))),-2))",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [2, -5, -5]\noutput : list = [-3, -10]",
    "output": "generated_output : list = reverse(add_n(take(drop(sort_asc([2, -5, -5]),1),7),-5))",
    "io_inp": [
      2,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(drop(sort_asc(input),1),7),-5))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sort_asc([1, 1])),-2)),-2)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sort_asc(input)),-2)),-2)"
  },
  {
    "input": "input : list = [-2, 2, 2, 5]\noutput : list = [6, -6, -6, -15]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(add_n([-2, 2, 2, 5],-3))),-3),-3)",
    "io_inp": [
      -2,
      2,
      2,
      5
    ],
    "io_out": [
      6,
      -6,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(add_n(input,-3))),-3),-3)"
  },
  {
    "input": "input : list = [3, -3, -5, 1, -3, -2]\noutput : list = [-6, -9, -18]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(drop([3, -3, -5, 1, -3, -2],3)),-3),2),-3)",
    "io_inp": [
      3,
      -3,
      -5,
      1,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(drop(input,3)),-3),2),-3)"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -2, 3],1)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -5, -5]\noutput : list = [5, 5, -25]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sort_des([1, -5, -5]),6)),-4),-5)",
    "io_inp": [
      1,
      -5,
      -5
    ],
    "io_out": [
      5,
      5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sort_des(input),6)),-4),-5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(reverse([2, -2]),-3),3)))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(reverse(input),-3),3)))"
  },
  {
    "input": "input : list = [3, 5, 0, -5, 3, -4]\noutput : list = [-5, -4, 0, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 5, 0, -5, 3, -4])",
    "io_inp": [
      3,
      5,
      0,
      -5,
      3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, -4]\noutput : list = [2, 0, 3]",
    "output": "generated_output : list = mul_n(add_n(add_n([-3, -1, -4],-2),3),-1)",
    "io_inp": [
      -3,
      -1,
      -4
    ],
    "io_out": [
      2,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-2),3),-1)"
  },
  {
    "input": "input : list = [1, -5, 1, -4, 1, 5]\noutput : list = [15, -3, 12, -3, -15]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(drop([1, -5, 1, -4, 1, 5],1),-1),3)))",
    "io_inp": [
      1,
      -5,
      1,
      -4,
      1,
      5
    ],
    "io_out": [
      15,
      -3,
      12,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(drop(input,1),-1),3)))"
  },
  {
    "input": "input : list = [3, 0, -5, 2]\noutput : list = [-1, -2, -4, -9]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(sub_n([3, 0, -5, 2],3)),9),1))",
    "io_inp": [
      3,
      0,
      -5,
      2
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(sub_n(input,3)),9),1))"
  },
  {
    "input": "input : list = [3, -3, -1, -1, 3]\noutput : list = [-18, 2, 2, 12, -18]",
    "output": "generated_output : list = reverse(add_n(mul_n([3, -3, -1, -1, 3],-5),-3))",
    "io_inp": [
      3,
      -3,
      -1,
      -1,
      3
    ],
    "io_out": [
      -18,
      2,
      2,
      12,
      -18
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-5),-3))"
  },
  {
    "input": "input : list = [-3, 4, -5, -1]\noutput : list = [4, -1, -3, -5]",
    "output": "generated_output : list = sort_des([-3, 4, -5, -1])",
    "io_inp": [
      -3,
      4,
      -5,
      -1
    ],
    "io_out": [
      4,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-12, -27]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n([0, -5],-1)),-5),3))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -12,
      -27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n(input,-1)),-5),3))"
  },
  {
    "input": "input : list = [-1, -5, 2]\noutput : list = [-1, -4, -8]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(reverse([-1, -5, 2]),-3))),8)",
    "io_inp": [
      -1,
      -5,
      2
    ],
    "io_out": [
      -1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(reverse(input),-3))),8)"
  },
  {
    "input": "input : list = [3, 5, 3, 3, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(take([3, 5, 3, 3, 2],1)))))",
    "io_inp": [
      3,
      5,
      3,
      3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [-2, -3, 5, 5, 5]\noutput : list = [-3, -2, 5, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc([-2, -3, 5, 5, 5]))))",
    "io_inp": [
      -2,
      -3,
      5,
      5,
      5
    ],
    "io_out": [
      -3,
      -2,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [5, 3, 3, 4, 5]\noutput : list = [0, 0, -1, -2, -2]",
    "output": "generated_output : list = take(sort_des(add_n([5, 3, 3, 4, 5],-5)),15)",
    "io_inp": [
      5,
      3,
      3,
      4,
      5
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-5)),15)"
  },
  {
    "input": "input : list = [-5, -3, 0, 4]\noutput : list = [4, 0, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, 0, 4])",
    "io_inp": [
      -5,
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [10, 6]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(add_n([4, 0],2)),2),2))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(add_n(input,2)),2),2))"
  },
  {
    "input": "input : list = [-3, 1, -4, 1, 4, 5]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(drop([-3, 1, -4, 1, 4, 5],3),3))))",
    "io_inp": [
      -3,
      1,
      -4,
      1,
      4,
      5
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(drop(input,3),3))))"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take(sort_asc(take(take([2, -3, -1],1),12)),31),3)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(take(input,1),12)),31),3)"
  },
  {
    "input": "input : list = [-2, 5, 0, -1]\noutput : list = [5, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des([-2, 5, 0, -1]))",
    "io_inp": [
      -2,
      5,
      0,
      -1
    ],
    "io_out": [
      5,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, -5, -5, -1, -4]\noutput : list = [-5, -5, -4, -1, 5]",
    "output": "generated_output : list = sort_asc([5, -5, -5, -1, -4])",
    "io_inp": [
      5,
      -5,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, 4, 3, 4]\noutput : list = [5, 5, 4, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des([2, 3, 4, 3, 4]),-1)",
    "io_inp": [
      2,
      3,
      4,
      3,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [5, -1, 5, -2, -5, 3]\noutput : list = [0, -8]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(drop([5, -1, 5, -2, -5, 3],4),-3),25)))",
    "io_inp": [
      5,
      -1,
      5,
      -2,
      -5,
      3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(drop(input,4),-3),25)))"
  },
  {
    "input": "input : list = [5, 0, 1, 4, -2]\noutput : list = [-6, 18, 6, 2]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(reverse([5, 0, 1, 4, -2]),-1),4),-2),4)",
    "io_inp": [
      5,
      0,
      1,
      4,
      -2
    ],
    "io_out": [
      -6,
      18,
      6,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(reverse(input),-1),4),-2),4)"
  },
  {
    "input": "input : list = [5, 2, 0, 5, -5]\noutput : list = [14, 5, -1, 14, -16]",
    "output": "generated_output : list = sub_n(sub_n(take(add_n(mul_n([5, 2, 0, 5, -5],3),-2),19),2),-3)",
    "io_inp": [
      5,
      2,
      0,
      5,
      -5
    ],
    "io_out": [
      14,
      5,
      -1,
      14,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(add_n(mul_n(input,3),-2),19),2),-3)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [44, 8]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(sort_asc([-4, 5]),4),-3),16),-4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      44,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(sort_asc(input),4),-3),16),-4)"
  },
  {
    "input": "input : list = [2, -2, -5, 4]\noutput : list = [2, -7, -4, 0]",
    "output": "generated_output : list = reverse(add_n([2, -2, -5, 4],-2))",
    "io_inp": [
      2,
      -2,
      -5,
      4
    ],
    "io_out": [
      2,
      -7,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [16, 0]",
    "output": "generated_output : list = mul_n(add_n([-5, 3],-3),-2)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-3),-2)"
  },
  {
    "input": "input : list = [5, 2, -5, -4, -3]\noutput : list = [-1, -2, -3, 4, 7]",
    "output": "generated_output : list = reverse(take(add_n([5, 2, -5, -4, -3],2),16))",
    "io_inp": [
      5,
      2,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -3,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,2),16))"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [-10, 50, -30]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(mul_n([-1, 5, -3],2))),5),12)",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      -10,
      50,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(mul_n(input,2))),5),12)"
  },
  {
    "input": "input : list = [0, 5, 4, -4, 4, -1]\noutput : list = [0, 10]",
    "output": "generated_output : list = mul_n(take([0, 5, 4, -4, 4, -1],2),2)",
    "io_inp": [
      0,
      5,
      4,
      -4,
      4,
      -1
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),2)"
  },
  {
    "input": "input : list = [-2, -3, -4, -1, -3, -5]\noutput : list = [-14]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(take([-2, -3, -4, -1, -3, -5],1),5),2)),1)",
    "io_inp": [
      -2,
      -3,
      -4,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(take(input,1),5),2)),1)"
  },
  {
    "input": "input : list = [-5, -1, -1, 3, 2, -2]\noutput : list = [11, 8, -1, -1, -4, -13]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(sort_des([-5, -1, -1, 3, 2, -2])),3),2),34)",
    "io_inp": [
      -5,
      -1,
      -1,
      3,
      2,
      -2
    ],
    "io_out": [
      11,
      8,
      -1,
      -1,
      -4,
      -13
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(sort_des(input)),3),2),34)"
  },
  {
    "input": "input : list = [3, 3, -4, 1, -1]\noutput : list = [16, 4, -4, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n([3, 3, -4, 1, -1],-4))",
    "io_inp": [
      3,
      3,
      -4,
      1,
      -1
    ],
    "io_out": [
      16,
      4,
      -4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-1, -2, -2, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(drop([-1, -2, -2, -3],2)),1)),19)",
    "io_inp": [
      -1,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(drop(input,2)),1)),19)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [3, 7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(add_n([1, -3],2)),-3),1),2)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(add_n(input,2)),-3),1),2)"
  },
  {
    "input": "input : list = [-4, -4, -5, -5]\noutput : list = [64, 64, 80, 80]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des(mul_n([-4, -4, -5, -5],4))),-4),41)",
    "io_inp": [
      -4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      64,
      64,
      80,
      80
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(mul_n(input,4))),-4),41)"
  },
  {
    "input": "input : list = [4, -4, 1]\noutput : list = [-2, -8, -18]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n([4, -4, 1],5))),2)",
    "io_inp": [
      4,
      -4,
      1
    ],
    "io_out": [
      -2,
      -8,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(input,5))),2)"
  },
  {
    "input": "input : list = [4, 4, -3, 2, 2]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(drop([4, 4, -3, 2, 2],2),4)),-1))",
    "io_inp": [
      4,
      4,
      -3,
      2,
      2
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(drop(input,2),4)),-1))"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [0, 3, 0]",
    "output": "generated_output : list = sub_n([-5, -2, -5],-5)",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      0,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 5, 4, -1, 5, -3]\noutput : list = [-1, 5, -3]",
    "output": "generated_output : list = drop([-3, 5, 4, -1, 5, -3],3)",
    "io_inp": [
      -3,
      5,
      4,
      -1,
      5,
      -3
    ],
    "io_out": [
      -1,
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, 1, 4, 2]\noutput : list = [9, 6, 9, 7]",
    "output": "generated_output : list = add_n(sub_n(add_n(add_n(mul_n([4, 1, 4, 2],1),5),-3),-2),1)",
    "io_inp": [
      4,
      1,
      4,
      2
    ],
    "io_out": [
      9,
      6,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(add_n(mul_n(input,1),5),-3),-2),1)"
  },
  {
    "input": "input : list = [-4, -5, -3, 4, 0, -3]\noutput : list = [4, 0, -3, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-4, -5, -3, 4, 0, -3])",
    "io_inp": [
      -4,
      -5,
      -3,
      4,
      0,
      -3
    ],
    "io_out": [
      4,
      0,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2, -1, 3, 1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(drop([0, -2, -1, 3, 1],3)))),4)",
    "io_inp": [
      0,
      -2,
      -1,
      3,
      1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(drop(input,3)))),4)"
  },
  {
    "input": "input : list = [-5, -5, -5, -2, -4, 4]\noutput : list = [7, -1, 1, -2, -2, -2]",
    "output": "generated_output : list = reverse(sub_n([-5, -5, -5, -2, -4, 4],-3))",
    "io_inp": [
      -5,
      -5,
      -5,
      -2,
      -4,
      4
    ],
    "io_out": [
      7,
      -1,
      1,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-8, -11]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(sub_n([-3, 0],4)),-4),2))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -8,
      -11
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(sub_n(input,4)),-4),2))"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [1, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(take(take(reverse([-3, 5, 0]),16),24),-4))",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(reverse(input),16),24),-4))"
  },
  {
    "input": "input : list = [1, 0, -5, -4]\noutput : list = [12, 9, -3, -6]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_des([1, 0, -5, -4]),-3),-4),-1))",
    "io_inp": [
      1,
      0,
      -5,
      -4
    ],
    "io_out": [
      12,
      9,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_des(input),-3),-4),-1))"
  },
  {
    "input": "input : list = [1, 0, -5, 1, -1]\noutput : list = [-40, -8, 0, 8, 8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(mul_n([1, 0, -5, 1, -1],4)))),2)",
    "io_inp": [
      1,
      0,
      -5,
      1,
      -1
    ],
    "io_out": [
      -40,
      -8,
      0,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(mul_n(input,4)))),2)"
  },
  {
    "input": "input : list = [5, 5, 2, 5]\noutput : list = [25, 25, 25, 10]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(sort_des([5, 5, 2, 5]))),5))",
    "io_inp": [
      5,
      5,
      2,
      5
    ],
    "io_out": [
      25,
      25,
      25,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(sort_des(input))),5))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-101, -1]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(reverse([5, -5]),-5),2),5),1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -101,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(reverse(input),-5),2),5),1)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [5, 4]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(sort_des([0, 1]),-4))),34)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(sort_des(input),-4))),34)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(reverse([2, 4])),5)))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(reverse(input)),5)))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [0, -7]",
    "output": "generated_output : list = sort_des(sub_n([-3, 4],4))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [2, 2, -1, -4, 3]\noutput : list = [1, 0, 0, -3, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n([2, 2, -1, -4, 3],2))))",
    "io_inp": [
      2,
      2,
      -1,
      -4,
      3
    ],
    "io_out": [
      1,
      0,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(input,2))))"
  },
  {
    "input": "input : list = [-1, 4, 1, -3, 0, 3]\noutput : list = [-2, 23, 8, -12, 3, 18]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([-1, 4, 1, -3, 0, 3],5),-1),-2)",
    "io_inp": [
      -1,
      4,
      1,
      -3,
      0,
      3
    ],
    "io_out": [
      -2,
      23,
      8,
      -12,
      3,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,5),-1),-2)"
  },
  {
    "input": "input : list = [5, 0, 4, 4]\noutput : list = [-1, -2, -2, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n([5, 0, 4, 4],3)),3))",
    "io_inp": [
      5,
      0,
      4,
      4
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(input,3)),3))"
  },
  {
    "input": "input : list = [-1, 0, 0, 5]\noutput : list = [33, 27, 27, -3]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(sub_n([-1, 0, 0, 5],5),-2),3),-5),-2)",
    "io_inp": [
      -1,
      0,
      0,
      5
    ],
    "io_out": [
      33,
      27,
      27,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(sub_n(input,5),-2),3),-5),-2)"
  },
  {
    "input": "input : list = [-1, -4, 0, 5, 4]\noutput : list = [-4, -1, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([-1, -4, 0, 5, 4])",
    "io_inp": [
      -1,
      -4,
      0,
      5,
      4
    ],
    "io_out": [
      -4,
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, 1, -5, -2, -3]\noutput : list = [-6, -4, -3, -2, -2, 0]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(sort_asc([-1, -1, 1, -5, -2, -3])),-5),-4),7)",
    "io_inp": [
      -1,
      -1,
      1,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(sort_asc(input)),-5),-4),7)"
  },
  {
    "input": "input : list = [5, -1, -3]\noutput : list = [-7, -5, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(sort_des([5, -1, -3]),-5)),-1))",
    "io_inp": [
      5,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(sort_des(input),-5)),-1))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(take([-1, 3, 3],1)))),3)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(take(input,1)))),3)"
  },
  {
    "input": "input : list = [-5, 4, -1, -4]\noutput : list = [-5, -4, -1, 4]",
    "output": "generated_output : list = sort_asc([-5, 4, -1, -4])",
    "io_inp": [
      -5,
      4,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, -4, -1, 2, 5]\noutput : list = [5, 2, -1, -4, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, -4, -1, 2, 5])",
    "io_inp": [
      -1,
      0,
      -4,
      -1,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -1,
      -4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1, 4, 5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take(drop(sort_des([-3, 1, 4, 5, -4]),4),15)",
    "io_inp": [
      -3,
      1,
      4,
      5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(drop(sort_des(input),4),15)"
  },
  {
    "input": "input : list = [4, -3, 4, -1, -4]\noutput : list = [-1, 0, 2, 7, 7]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(add_n([4, -3, 4, -1, -4],1),3))),5)",
    "io_inp": [
      4,
      -3,
      4,
      -1,
      -4
    ],
    "io_out": [
      -1,
      0,
      2,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(add_n(input,1),3))),5)"
  },
  {
    "input": "input : list = [-2, -5, 0, 4]\noutput : list = [18, 27, 12, 0]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(add_n([-2, -5, 0, 4],-4))),19),-3)",
    "io_inp": [
      -2,
      -5,
      0,
      4
    ],
    "io_out": [
      18,
      27,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(add_n(input,-4))),19),-3)"
  },
  {
    "input": "input : list = [-4, -5, 1, 5]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take(take([-4, -5, 1, 5],1),16),-1)",
    "io_inp": [
      -4,
      -5,
      1,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),16),-1)"
  },
  {
    "input": "input : list = [4, 0, 2, 2, 4]\noutput : list = [-14, -6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(take([4, 0, 2, 2, 4],2),-2),2),4))",
    "io_inp": [
      4,
      0,
      2,
      2,
      4
    ],
    "io_out": [
      -14,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(take(input,2),-2),2),4))"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(drop([4, -4, -4],1),11),-5),-3))",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(drop(input,1),11),-5),-3))"
  },
  {
    "input": "input : list = [-3, 3, 0, 3, 5]\noutput : list = [-7, -1, -4, -1, 1]",
    "output": "generated_output : list = sub_n(sub_n([-3, 3, 0, 3, 5],2),2)",
    "io_inp": [
      -3,
      3,
      0,
      3,
      5
    ],
    "io_out": [
      -7,
      -1,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),2)"
  },
  {
    "input": "input : list = [-3, -3, 5, 1, 0, -1]\noutput : list = [15, 15, 5, 0, -5, -25]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n([-3, -3, 5, 1, 0, -1],-5)),1))",
    "io_inp": [
      -3,
      -3,
      5,
      1,
      0,
      -1
    ],
    "io_out": [
      15,
      15,
      5,
      0,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(input,-5)),1))"
  },
  {
    "input": "input : list = [2, 5, -1, -2, 5, 0]\noutput : list = [-5, -5, -8, -10, -11, -12]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(reverse([2, 5, -1, -2, 5, 0]),5),5)),30)",
    "io_inp": [
      2,
      5,
      -1,
      -2,
      5,
      0
    ],
    "io_out": [
      -5,
      -5,
      -8,
      -10,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(reverse(input),5),5)),30)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-17, 7]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(sub_n([-3, 5],3),3),-2),-1),11)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -17,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(sub_n(input,3),3),-2),-1),11)"
  },
  {
    "input": "input : list = [-1, -1, 2, -3, -2]\noutput : list = [-5, 4, 4, 7, 10]",
    "output": "generated_output : list = take(sort_asc(sort_asc(add_n(mul_n([-1, -1, 2, -3, -2],-3),1))),18)",
    "io_inp": [
      -1,
      -1,
      2,
      -3,
      -2
    ],
    "io_out": [
      -5,
      4,
      4,
      7,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(add_n(mul_n(input,-3),1))),18)"
  },
  {
    "input": "input : list = [5, -4, 5, -4, 0, 3]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(sort_asc(take([5, -4, 5, -4, 0, 3],1)),-1)",
    "io_inp": [
      5,
      -4,
      5,
      -4,
      0,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,1)),-1)"
  },
  {
    "input": "input : list = [2, 4, -3, 1]\noutput : list = [6, 8, 1, 5]",
    "output": "generated_output : list = sub_n([2, 4, -3, 1],-4)",
    "io_inp": [
      2,
      4,
      -3,
      1
    ],
    "io_out": [
      6,
      8,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(add_n([-2, -2],-5)),3)))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(add_n(input,-5)),3)))"
  },
  {
    "input": "input : list = [-5, 4, 4, 4]\noutput : list = [9, 9, 9, 0]",
    "output": "generated_output : list = sub_n(reverse(take(take(mul_n([-5, 4, 4, 4],1),15),26)),-5)",
    "io_inp": [
      -5,
      4,
      4,
      4
    ],
    "io_out": [
      9,
      9,
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(mul_n(input,1),15),26)),-5)"
  },
  {
    "input": "input : list = [-2, -2, -1, -3, 3]\noutput : list = [-8, -8, -4, -12, 12]",
    "output": "generated_output : list = mul_n([-2, -2, -1, -3, 3],4)",
    "io_inp": [
      -2,
      -2,
      -1,
      -3,
      3
    ],
    "io_out": [
      -8,
      -8,
      -4,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [3, 2, 5, 4]\noutput : list = [7, 8, 9, 10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(add_n([3, 2, 5, 4],1))),1),-5)",
    "io_inp": [
      3,
      2,
      5,
      4
    ],
    "io_out": [
      7,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(add_n(input,1))),1),-5)"
  },
  {
    "input": "input : list = [-3, 4, 4, 0, -4]\noutput : list = [4, 0, -4, -4, 3]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n([-3, 4, 4, 0, -4],1),-3),3)),-1)",
    "io_inp": [
      -3,
      4,
      4,
      0,
      -4
    ],
    "io_out": [
      4,
      0,
      -4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n(input,1),-3),3)),-1)"
  },
  {
    "input": "input : list = [-2, -5, 2, 2, 1]\noutput : list = [-18, -15, -15]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(drop([-2, -5, 2, 2, 1],2),-2)),5),3)",
    "io_inp": [
      -2,
      -5,
      2,
      2,
      1
    ],
    "io_out": [
      -18,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(drop(input,2),-2)),5),3)"
  },
  {
    "input": "input : list = [-3, -5, 3, 0, 3, -5]\noutput : list = [-7, -9, -1, -4, -1, -9]",
    "output": "generated_output : list = add_n([-3, -5, 3, 0, 3, -5],-4)",
    "io_inp": [
      -3,
      -5,
      3,
      0,
      3,
      -5
    ],
    "io_out": [
      -7,
      -9,
      -1,
      -4,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, 1, 3, 4, -5]\noutput : list = [5, 0, -1, -3, -4]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(reverse([0, 1, 3, 4, -5]),-1))),18)",
    "io_inp": [
      0,
      1,
      3,
      4,
      -5
    ],
    "io_out": [
      5,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(reverse(input),-1))),18)"
  },
  {
    "input": "input : list = [-1, 1, 1, -5]\noutput : list = [3, 5, 5, -1]",
    "output": "generated_output : list = sub_n([-1, 1, 1, -5],-4)",
    "io_inp": [
      -1,
      1,
      1,
      -5
    ],
    "io_out": [
      3,
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [-16, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(drop([1, 4, -4],1),-4))))",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      -16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(drop(input,1),-4))))"
  },
  {
    "input": "input : list = [-2, 1, -5, 0]\noutput : list = [10, 15, 25, 40]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(sort_asc([-2, 1, -5, 0]),-3),11)),-5)",
    "io_inp": [
      -2,
      1,
      -5,
      0
    ],
    "io_out": [
      10,
      15,
      25,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(sort_asc(input),-3),11)),-5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(drop(reverse([0, 3]),1),3)),3)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(drop(reverse(input),1),3)),3)"
  },
  {
    "input": "input : list = [-1, -5, 0, 2, 4, 4]\noutput : list = [5, 7, 7]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(drop([-1, -5, 0, 2, 4, 4],3)),3)),54)",
    "io_inp": [
      -1,
      -5,
      0,
      2,
      4,
      4
    ],
    "io_out": [
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(drop(input,3)),3)),54)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-1, -8]",
    "output": "generated_output : list = add_n([4, -3],-5)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, -4, -2, 2, 4, 5]\noutput : list = [4, -2, 0, 4, 6, 7]",
    "output": "generated_output : list = take(sub_n(sub_n([2, -4, -2, 2, 4, 5],2),-4),33)",
    "io_inp": [
      2,
      -4,
      -2,
      2,
      4,
      5
    ],
    "io_out": [
      4,
      -2,
      0,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,2),-4),33)"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [4, -4, 5]",
    "output": "generated_output : list = reverse([5, -4, 4])",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc([-5, -5]),-4)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(input),-4)))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [4, -6]",
    "output": "generated_output : list = add_n([5, -5],-1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 2, 3, -2, -3, -5]\noutput : list = [6]",
    "output": "generated_output : list = drop(mul_n(sub_n(sub_n(mul_n([-4, 2, 3, -2, -3, -5],-2),5),2),2),5)",
    "io_inp": [
      -4,
      2,
      3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = drop(mul_n(sub_n(sub_n(mul_n(input,-2),5),2),2),5)"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [9, 0]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc(drop([-5, -2, -5],1)),16),-2),-3)",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(drop(input,1)),16),-2),-3)"
  },
  {
    "input": "input : list = [-5, 1, -3, 0, 0]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sub_n(drop([-5, 1, -3, 0, 0],3),2)",
    "io_inp": [
      -5,
      1,
      -3,
      0,
      0
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),2)"
  },
  {
    "input": "input : list = [4, 3, 0, -1, -5, -2]\noutput : list = [-24, -9, -4, 1, 16, 21]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(mul_n([4, 3, 0, -1, -5, -2],5),1),5)),-3)",
    "io_inp": [
      4,
      3,
      0,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -24,
      -9,
      -4,
      1,
      16,
      21
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(mul_n(input,5),1),5)),-3)"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-2, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc([2, -5, 2]),3)))",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(input),3)))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-22, 28]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(mul_n([5, -5],5),-3),1),-1))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -22,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(mul_n(input,5),-3),1),-1))"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [-3, -12, -3]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n([4, -5, 4],-4)),-5),2)",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      -3,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(input,-4)),-5),2)"
  },
  {
    "input": "input : list = [-4, -3, 4, -2]\noutput : list = [-15, -9, -3, 33]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(mul_n([-4, -3, 4, -2],-2),-3),-3)))",
    "io_inp": [
      -4,
      -3,
      4,
      -2
    ],
    "io_out": [
      -15,
      -9,
      -3,
      33
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(mul_n(input,-2),-3),-3)))"
  },
  {
    "input": "input : list = [-1, -2, 3, -3, 5, 5]\noutput : list = [-8, -7, -6, -2, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(reverse([-1, -2, 3, -3, 5, 5]),2))),3)",
    "io_inp": [
      -1,
      -2,
      3,
      -3,
      5,
      5
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(reverse(input),2))),3)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = reverse(reverse([0, 2, 3]))",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-8, -1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([3, -4])),4)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),4)"
  },
  {
    "input": "input : list = [4, -2, -2, -4, 1]\noutput : list = [80, 40, 40, -20, -80]",
    "output": "generated_output : list = take(mul_n(take(mul_n(sort_asc([4, -2, -2, -4, 1]),4),35),-5),51)",
    "io_inp": [
      4,
      -2,
      -2,
      -4,
      1
    ],
    "io_out": [
      80,
      40,
      40,
      -20,
      -80
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(sort_asc(input),4),35),-5),51)"
  },
  {
    "input": "input : list = [-3, 1, -5, 5, 4, 0]\noutput : list = [1, 5, -1, 9, 8, 4]",
    "output": "generated_output : list = add_n(sub_n([-3, 1, -5, 5, 4, 0],-2),2)",
    "io_inp": [
      -3,
      1,
      -5,
      5,
      4,
      0
    ],
    "io_out": [
      1,
      5,
      -1,
      9,
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),2)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-8, 6]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(reverse([3, -4]),-2),2)),2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(reverse(input),-2),2)),2)"
  },
  {
    "input": "input : list = [4, 1, -1, 2, 0, 5]\noutput : list = [-2, -1, 0, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sub_n([4, 1, -1, 2, 0, 5],2))),-1))",
    "io_inp": [
      4,
      1,
      -1,
      2,
      0,
      5
    ],
    "io_out": [
      -2,
      -1,
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sub_n(input,2))),-1))"
  },
  {
    "input": "input : list = [4, -1, -3, -1, 0]\noutput : list = [3, -1, -2, -2, -4]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(sort_asc([4, -1, -3, -1, 0])),1),2))",
    "io_inp": [
      4,
      -1,
      -3,
      -1,
      0
    ],
    "io_out": [
      3,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(sort_asc(input)),1),2))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [5, -13]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n(mul_n([1, -5],3),2))))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      5,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(mul_n(input,3),2))))"
  },
  {
    "input": "input : list = [2, 1, 2, 3, -1, -2]\noutput : list = [-6, -9, -6, -3, -15, -18]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse([2, 1, 2, 3, -1, -2])),-4),3)",
    "io_inp": [
      2,
      1,
      2,
      3,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -9,
      -6,
      -3,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(input)),-4),3)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_asc([3, 2])),2)))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n([-5, -4, -1],-1))",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-5, 0, 4, -2, -2]\noutput : list = [1, -3, -5, -5, -8]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(add_n([-5, 0, 4, -2, -2],-3)),19)))",
    "io_inp": [
      -5,
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      1,
      -3,
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(add_n(input,-3)),19)))"
  },
  {
    "input": "input : list = [-2, 1, 0, 0, 4]\noutput : list = [1, 0, 0, 4]",
    "output": "generated_output : list = drop([-2, 1, 0, 0, 4],1)",
    "io_inp": [
      -2,
      1,
      0,
      0,
      4
    ],
    "io_out": [
      1,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -2, 5, 1, 0]\noutput : list = [-15, -10, 0, 5, 25]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(mul_n([-3, -2, 5, 1, 0],5))),39))",
    "io_inp": [
      -3,
      -2,
      5,
      1,
      0
    ],
    "io_out": [
      -15,
      -10,
      0,
      5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(mul_n(input,5))),39))"
  },
  {
    "input": "input : list = [-1, -2, 3, 5]\noutput : list = [5, 3, -1, -2]",
    "output": "generated_output : list = take(sort_des([-1, -2, 3, 5]),22)",
    "io_inp": [
      -1,
      -2,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),22)"
  },
  {
    "input": "input : list = [-3, 5, 0, 2, -2, 1]\noutput : list = [13, -11, 4, -2, 10, 1]",
    "output": "generated_output : list = add_n(take(take(mul_n(sub_n([-3, 5, 0, 2, -2, 1],2),-3),37),42),-2)",
    "io_inp": [
      -3,
      5,
      0,
      2,
      -2,
      1
    ],
    "io_out": [
      13,
      -11,
      4,
      -2,
      10,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(sub_n(input,2),-3),37),42),-2)"
  },
  {
    "input": "input : list = [-4, -3, -1, 1]\noutput : list = [5, -5, -15, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-4, -3, -1, 1],5)))",
    "io_inp": [
      -4,
      -3,
      -1,
      1
    ],
    "io_out": [
      5,
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,5)))"
  },
  {
    "input": "input : list = [-5, -5, -1, 2, 4, 5]\noutput : list = [14, 14, 6, 0, -4, -6]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(mul_n([-5, -5, -1, 2, 4, 5],-1))),2),4)",
    "io_inp": [
      -5,
      -5,
      -1,
      2,
      4,
      5
    ],
    "io_out": [
      14,
      14,
      6,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(mul_n(input,-1))),2),4)"
  },
  {
    "input": "input : list = [1, -3, -4, -2, -1, 4]\noutput : list = [-5, -4, -3, -2, 0, 3]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(sort_des([1, -3, -4, -2, -1, 4]),-1),28),-2))",
    "io_inp": [
      1,
      -3,
      -4,
      -2,
      -1,
      4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(sort_des(input),-1),28),-2))"
  },
  {
    "input": "input : list = [0, 3, 2, 1, 3]\noutput : list = [2, 1, 3]",
    "output": "generated_output : list = drop([0, 3, 2, 1, 3],2)",
    "io_inp": [
      0,
      3,
      2,
      1,
      3
    ],
    "io_out": [
      2,
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -1, -5, 3]\noutput : list = [3, 1, -3, -7]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(sort_des([5, -1, -5, 3]),2)),10))",
    "io_inp": [
      5,
      -1,
      -5,
      3
    ],
    "io_out": [
      3,
      1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(sort_des(input),2)),10))"
  },
  {
    "input": "input : list = [-5, 5, -5, 3, -5]\noutput : list = [-7, -7, -7, 9, 13]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(mul_n([-5, 5, -5, 3, -5],2),20)),26),-3)",
    "io_inp": [
      -5,
      5,
      -5,
      3,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -7,
      9,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(mul_n(input,2),20)),26),-3)"
  },
  {
    "input": "input : list = [-1, 2, -1, -4, 4]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(take(take(add_n(take([-1, 2, -1, -4, 4],1),-3),24),7),2)",
    "io_inp": [
      -1,
      2,
      -1,
      -4,
      4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(take(input,1),-3),24),7),2)"
  },
  {
    "input": "input : list = [3, 2, 3, -4, -3]\noutput : list = [0, -4, -24, -28, -28]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(mul_n([3, 2, 3, -4, -3],1),4))),-4)",
    "io_inp": [
      3,
      2,
      3,
      -4,
      -3
    ],
    "io_out": [
      0,
      -4,
      -24,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(mul_n(input,1),4))),-4)"
  },
  {
    "input": "input : list = [2, -4, 1, 5, -4, 3]\noutput : list = [-4, -4, 1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([2, -4, 1, 5, -4, 3])",
    "io_inp": [
      2,
      -4,
      1,
      5,
      -4,
      3
    ],
    "io_out": [
      -4,
      -4,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des([1, 4])),-5))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(input)),-5))"
  },
  {
    "input": "input : list = [1, 1, 5, 4, -5]\noutput : list = [5, 4, 1, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc([1, 1, 5, 4, -5]))",
    "io_inp": [
      1,
      1,
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 4, 4, -1]\noutput : list = [9, 9, 5, 4]",
    "output": "generated_output : list = add_n(sort_des([0, 4, 4, -1]),5)",
    "io_inp": [
      0,
      4,
      4,
      -1
    ],
    "io_out": [
      9,
      9,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-1, 4, -4, 0]\noutput : list = [1, -4, 4, 0]",
    "output": "generated_output : list = mul_n([-1, 4, -4, 0],-1)",
    "io_inp": [
      -1,
      4,
      -4,
      0
    ],
    "io_out": [
      1,
      -4,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [-5, 1]",
    "output": "generated_output : list = take(take(add_n(add_n(drop([4, -3, 3],1),-3),1),6),22)",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(drop(input,1),-3),1),6),22)"
  },
  {
    "input": "input : list = [0, -2, 1, -2, 4]\noutput : list = [5, 2, 1, -1, -1]",
    "output": "generated_output : list = sort_des(add_n([0, -2, 1, -2, 4],1))",
    "io_inp": [
      0,
      -2,
      1,
      -2,
      4
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [5, 5, -1]\noutput : list = [0, 18, 18]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(sort_des([5, 5, -1]),3)),3))",
    "io_inp": [
      5,
      5,
      -1
    ],
    "io_out": [
      0,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(sort_des(input),3)),3))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = take(reverse(reverse(sort_des([3, -2]))),26)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(input))),26)"
  },
  {
    "input": "input : list = [-3, -3, -1, -2, 1]\noutput : list = [12, 12, 24, 36, 60]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(sub_n([-3, -3, -1, -2, 1],-4)),3),33),4)",
    "io_inp": [
      -3,
      -3,
      -1,
      -2,
      1
    ],
    "io_out": [
      12,
      12,
      24,
      36,
      60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(sub_n(input,-4)),3),33),4)"
  },
  {
    "input": "input : list = [2, 5, -2, 3, 3, 1]\noutput : list = [0, -2, -2, 3, -4, -1]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sub_n([2, 5, -2, 3, 3, 1],2),-1),4)),5)",
    "io_inp": [
      2,
      5,
      -2,
      3,
      3,
      1
    ],
    "io_out": [
      0,
      -2,
      -2,
      3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sub_n(input,2),-1),4)),5)"
  },
  {
    "input": "input : list = [5, -4, -4, -5, -3]\noutput : list = [-96, 84, 84]",
    "output": "generated_output : list = take(mul_n(add_n(take(mul_n([5, -4, -4, -5, -3],-5),14),1),4),3)",
    "io_inp": [
      5,
      -4,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -96,
      84,
      84
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(mul_n(input,-5),14),1),4),3)"
  },
  {
    "input": "input : list = [2, 5, 2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(take([2, 5, 2],1),1),3),1))",
    "io_inp": [
      2,
      5,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(take(input,1),1),3),1))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des([1, 4])",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop([4, 3, 4],1)",
    "io_inp": [
      4,
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 4, 5]\noutput : list = [-7, 2, 3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_des([-5, 4, 5]),4)),-3),1)",
    "io_inp": [
      -5,
      4,
      5
    ],
    "io_out": [
      -7,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_des(input),4)),-3),1)"
  },
  {
    "input": "input : list = [-4, 5, 4, -4]\noutput : list = [5, 4, -4]",
    "output": "generated_output : list = drop([-4, 5, 4, -4],1)",
    "io_inp": [
      -4,
      5,
      4,
      -4
    ],
    "io_out": [
      5,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 5, -1]\noutput : list = [4, 16, -20, 4]",
    "output": "generated_output : list = mul_n([-1, -4, 5, -1],-4)",
    "io_inp": [
      -1,
      -4,
      5,
      -1
    ],
    "io_out": [
      4,
      16,
      -20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [-5, 2, 2]",
    "output": "generated_output : list = reverse(sort_des([2, 2, -5]))",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 4, 4, -3, -1, 3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(take([-3, 4, 4, -3, -1, 3],1))",
    "io_inp": [
      -3,
      4,
      4,
      -3,
      -1,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-3, 0, 4, 0, 4, -4]\noutput : list = [-15, 0, 20, 0, 20, -20]",
    "output": "generated_output : list = take(mul_n([-3, 0, 4, 0, 4, -4],5),22)",
    "io_inp": [
      -3,
      0,
      4,
      0,
      4,
      -4
    ],
    "io_out": [
      -15,
      0,
      20,
      0,
      20,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(input,5),22)"
  },
  {
    "input": "input : list = [5, -2, 5, -5]\noutput : list = [5, -2]",
    "output": "generated_output : list = take([5, -2, 5, -5],2)",
    "io_inp": [
      5,
      -2,
      5,
      -5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -3, -2, 5, 4]\noutput : list = [3, -3, -2, 5, 4]",
    "output": "generated_output : list = take(reverse(reverse([3, -3, -2, 5, 4])),20)",
    "io_inp": [
      3,
      -3,
      -2,
      5,
      4
    ],
    "io_out": [
      3,
      -3,
      -2,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),20)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(take([0, 2, 3],1)),6)),5)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(take(input,1)),6)),5)"
  },
  {
    "input": "input : list = [-5, 3, -4, -5]\noutput : list = [24, -32, -40, -40]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n(sort_des([-5, 3, -4, -5]),4)),32),2)",
    "io_inp": [
      -5,
      3,
      -4,
      -5
    ],
    "io_out": [
      24,
      -32,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(sort_des(input),4)),32),2)"
  },
  {
    "input": "input : list = [-3, 5, -1, 5]\noutput : list = [2, 4, 10, 10]",
    "output": "generated_output : list = sort_asc(take(sub_n([-3, 5, -1, 5],-5),8))",
    "io_inp": [
      -3,
      5,
      -1,
      5
    ],
    "io_out": [
      2,
      4,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,-5),8))"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [-7, -3, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_des([0, -4, 5])))),-3)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      -7,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [-7, -4, 3]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(add_n([-2, -5, 5],1)),14),-3))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      -7,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(add_n(input,1)),14),-3))"
  },
  {
    "input": "input : list = [3, -1, 1, 2]\noutput : list = [8, 16, 20, 24]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(reverse([3, -1, 1, 2]),2),1)),4)",
    "io_inp": [
      3,
      -1,
      1,
      2
    ],
    "io_out": [
      8,
      16,
      20,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(reverse(input),2),1)),4)"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([1, -1, -3]),1),-4)",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),1),-4)"
  },
  {
    "input": "input : list = [4, -3, 3, 0, 4]\noutput : list = [-60, 0, 60, 80, 80]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(mul_n([4, -3, 3, 0, 4],4))),5))",
    "io_inp": [
      4,
      -3,
      3,
      0,
      4
    ],
    "io_out": [
      -60,
      0,
      60,
      80,
      80
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(mul_n(input,4))),5))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = take(reverse([-2, 5]),2)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),2)"
  },
  {
    "input": "input : list = [-3, -4, 4, 5]\noutput : list = [-11, -13, 3, 5]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n(mul_n([-3, -4, 4, 5],-2),-1),5),5),5)",
    "io_inp": [
      -3,
      -4,
      4,
      5
    ],
    "io_out": [
      -11,
      -13,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(mul_n(input,-2),-1),5),5),5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse([3, -1])",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 1]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(take([-1, -1, 1],1)),-1)),3)",
    "io_inp": [
      -1,
      -1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(take(input,1)),-1)),3)"
  },
  {
    "input": "input : list = [2, 2, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = drop([2, 2, 1, 0],2)",
    "io_inp": [
      2,
      2,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(sort_des([-5, -1]),-1),14)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(sort_des(input),-1),14)))"
  },
  {
    "input": "input : list = [-1, -4, 2, -3, 4, 2]\noutput : list = [2, -3, 4, 2]",
    "output": "generated_output : list = drop([-1, -4, 2, -3, 4, 2],2)",
    "io_inp": [
      -1,
      -4,
      2,
      -3,
      4,
      2
    ],
    "io_out": [
      2,
      -3,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-13, -9]",
    "output": "generated_output : list = take(take(sub_n(take(mul_n([-3, -2],4),11),1),8),37)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -13,
      -9
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(mul_n(input,4),11),1),8),37)"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = sort_des([1, -2, 0])",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4, -5, -3, -3]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = mul_n(reverse(take([-3, -4, -5, -3, -3],3)),-1)",
    "io_inp": [
      -3,
      -4,
      -5,
      -3,
      -3
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,3)),-1)"
  },
  {
    "input": "input : list = [5, -1, -1, -3]\noutput : list = [-20, -8, -8, 28]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(mul_n([5, -1, -1, -3],2))),3),2)",
    "io_inp": [
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -20,
      -8,
      -8,
      28
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(mul_n(input,2))),3),2)"
  },
  {
    "input": "input : list = [-2, -5, 3, -5, 2]\noutput : list = [21, 15, -9, -27, -27]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(mul_n([-2, -5, 3, -5, 2],3),2)),3))",
    "io_inp": [
      -2,
      -5,
      3,
      -5,
      2
    ],
    "io_out": [
      21,
      15,
      -9,
      -27,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(mul_n(input,3),2)),3))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_des([-2, -2])),-1)),1)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_des(input)),-1)),1)"
  },
  {
    "input": "input : list = [-5, 1, 4, 5, -2, -1]\noutput : list = [5, 4, 1, -1, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 1, 4, 5, -2, -1])",
    "io_inp": [
      -5,
      1,
      4,
      5,
      -2,
      -1
    ],
    "io_out": [
      5,
      4,
      1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5, 0, 5, 2, 2]\noutput : list = [-1, 4, 4, 6, 6, 9]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sort_asc([0, -5, 0, 5, 2, 2])),-2),-2),1)",
    "io_inp": [
      0,
      -5,
      0,
      5,
      2,
      2
    ],
    "io_out": [
      -1,
      4,
      4,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sort_asc(input)),-2),-2),1)"
  },
  {
    "input": "input : list = [0, 1, 1, -5, 5, 1]\noutput : list = [-10, -2, -2, -2, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(sort_des([0, 1, 1, -5, 5, 1]),27)),-2))",
    "io_inp": [
      0,
      1,
      1,
      -5,
      5,
      1
    ],
    "io_out": [
      -10,
      -2,
      -2,
      -2,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(sort_des(input),27)),-2))"
  },
  {
    "input": "input : list = [3, 2, 0, 1, -5]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([3, 2, 0, 1, -5],2)))",
    "io_inp": [
      3,
      2,
      0,
      1,
      -5
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [7, 0]",
    "output": "generated_output : list = add_n([4, -3],3)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(mul_n(add_n(take([-5, 0, 2],1),3),4))",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(input,1),3),4))"
  },
  {
    "input": "input : list = [2, -2, -3, -4, 0, 1]\noutput : list = [6, 5, 4, 2, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(sort_des([2, -2, -3, -4, 0, 1]))),-4))",
    "io_inp": [
      2,
      -2,
      -3,
      -4,
      0,
      1
    ],
    "io_out": [
      6,
      5,
      4,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [1, -1, 1, -5, 0]\noutput : list = [-9, -5, -4, -3, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(sort_des([1, -1, 1, -5, 0])),4)))",
    "io_inp": [
      1,
      -1,
      1,
      -5,
      0
    ],
    "io_out": [
      -9,
      -5,
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [-2, -3, -4, -1, -2, 4]\noutput : list = [4, -2, -1, -4, -3, -2]",
    "output": "generated_output : list = reverse([-2, -3, -4, -1, -2, 4])",
    "io_inp": [
      -2,
      -3,
      -4,
      -1,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -1,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, -4, 1, 3, 2]\noutput : list = [2, 3, 1, -4, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -4, 1, 3, 2])",
    "io_inp": [
      5,
      -1,
      -4,
      1,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      1,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-10, -8, -2]",
    "output": "generated_output : list = sub_n([-5, -3, 3],5)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -10,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [-5, -2, 1]",
    "output": "generated_output : list = sort_asc([-2, 1, -5])",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, -4]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = sort_asc([-3, -1, -4])",
    "io_inp": [
      -3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [12, 6, 4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(sub_n([-5, -3, 3],-5),-4)),33))",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      12,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(sub_n(input,-5),-4)),33))"
  },
  {
    "input": "input : list = [0, 3, 1, 1, -4]\noutput : list = [3, 1, 1, -4]",
    "output": "generated_output : list = drop([0, 3, 1, 1, -4],1)",
    "io_inp": [
      0,
      3,
      1,
      1,
      -4
    ],
    "io_out": [
      3,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -3, 5]\noutput : list = [-7, -5, 3]",
    "output": "generated_output : list = add_n([-5, -3, 5],-2)",
    "io_inp": [
      -5,
      -3,
      5
    ],
    "io_out": [
      -7,
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, 2, 4, -1]\noutput : list = [4, -8, -8, -16]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(mul_n([2, 2, 4, -1],-4)))),33)",
    "io_inp": [
      2,
      2,
      4,
      -1
    ],
    "io_out": [
      4,
      -8,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(mul_n(input,-4)))),33)"
  },
  {
    "input": "input : list = [5, 4, 0, -1, -3, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n(take(sort_asc(take([5, 4, 0, -1, -3, 1],2)),36),4)",
    "io_inp": [
      5,
      4,
      0,
      -1,
      -3,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(input,2)),36),4)"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [-3, -1, 11]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(reverse([4, 3, -3]),-2),20)),-5)",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      -3,
      -1,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(reverse(input),-2),20)),-5)"
  },
  {
    "input": "input : list = [-2, -4, -4, 1]\noutput : list = [0, -2, -2, 3]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(add_n([-2, -4, -4, 1],2),-4))),4)",
    "io_inp": [
      -2,
      -4,
      -4,
      1
    ],
    "io_out": [
      0,
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(add_n(input,2),-4))),4)"
  },
  {
    "input": "input : list = [-5, 0, 2, 0, 0]\noutput : list = [0, 5, 5, 5, 7]",
    "output": "generated_output : list = take(sort_asc(add_n(sub_n(add_n([-5, 0, 2, 0, 0],-1),-3),3)),43)",
    "io_inp": [
      -5,
      0,
      2,
      0,
      0
    ],
    "io_out": [
      0,
      5,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sub_n(add_n(input,-1),-3),3)),43)"
  },
  {
    "input": "input : list = [-3, -4, 3, -3, 4]\noutput : list = [-9, -8, -8, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(add_n([-3, -4, 3, -3, 4],-5)))))",
    "io_inp": [
      -3,
      -4,
      3,
      -3,
      4
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [2, 5, 1, 0]\noutput : list = [0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(reverse([2, 5, 1, 0]))),24))",
    "io_inp": [
      2,
      5,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(reverse(input))),24))"
  },
  {
    "input": "input : list = [-5, -4, 2, 3]\noutput : list = [-5, -6, -12, -13]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des([-5, -4, 2, 3]),5)),3))",
    "io_inp": [
      -5,
      -4,
      2,
      3
    ],
    "io_out": [
      -5,
      -6,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des(input),5)),3))"
  },
  {
    "input": "input : list = [-4, 4, 5, 2]\noutput : list = [6, 5, 3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(sort_asc([-4, 4, 5, 2]),-1),11)))",
    "io_inp": [
      -4,
      4,
      5,
      2
    ],
    "io_out": [
      6,
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(sort_asc(input),-1),11)))"
  },
  {
    "input": "input : list = [-4, 3, -1]\noutput : list = [62, 17, -43]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(mul_n([-4, 3, -1],1)),-5),3),2)",
    "io_inp": [
      -4,
      3,
      -1
    ],
    "io_out": [
      62,
      17,
      -43
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(mul_n(input,1)),-5),3),2)"
  },
  {
    "input": "input : list = [0, -2, 4, -2]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(sub_n(take(take(add_n([0, -2, 4, -2],-3),2),13),-4),36)",
    "io_inp": [
      0,
      -2,
      4,
      -2
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(add_n(input,-3),2),13),-4),36)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(add_n([1, -2],3))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [1, 3, -4, -2, -4]\noutput : list = [1, -1, -4, -6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(reverse([1, 3, -4, -2, -4]),2),1)))",
    "io_inp": [
      1,
      3,
      -4,
      -2,
      -4
    ],
    "io_out": [
      1,
      -1,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(reverse(input),2),1)))"
  },
  {
    "input": "input : list = [2, -3, -2]\noutput : list = [4, -1, 0]",
    "output": "generated_output : list = take(take(add_n([2, -3, -2],2),8),13)",
    "io_inp": [
      2,
      -3,
      -2
    ],
    "io_out": [
      4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,2),8),13)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [12, 12]",
    "output": "generated_output : list = take(take(reverse(add_n(mul_n([2, 2],5),2)),10),40)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(mul_n(input,5),2)),10),40)"
  },
  {
    "input": "input : list = [-4, 5, 2, 3, 4]\noutput : list = [0, 9]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(take([-4, 5, 2, 3, 4],2),4))))",
    "io_inp": [
      -4,
      5,
      2,
      3,
      4
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(take(input,2),4))))"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [-12, -4, 12]",
    "output": "generated_output : list = take(mul_n(sort_asc([3, -3, -1]),4),8)",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -4,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),4),8)"
  },
  {
    "input": "input : list = [3, 4, -4, 2]\noutput : list = [16, 14]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(take([3, 4, -4, 2],2)),-4),2))",
    "io_inp": [
      3,
      4,
      -4,
      2
    ],
    "io_out": [
      16,
      14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(take(input,2)),-4),2))"
  },
  {
    "input": "input : list = [0, -5, 0, 2]\noutput : list = [20, 10, 10, -15]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(add_n([0, -5, 0, 2],-2),-4)),5),10)",
    "io_inp": [
      0,
      -5,
      0,
      2
    ],
    "io_out": [
      20,
      10,
      10,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(add_n(input,-2),-4)),5),10)"
  },
  {
    "input": "input : list = [2, -2, -3, -2, -3]\noutput : list = [-7, -6, -7, -6, -2]",
    "output": "generated_output : list = mul_n(add_n(reverse([2, -2, -3, -2, -3]),-4),1)",
    "io_inp": [
      2,
      -2,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-4),1)"
  },
  {
    "input": "input : list = [1, 4, 3, -3, 3]\noutput : list = [2, 8, 6, -6, 6]",
    "output": "generated_output : list = mul_n([1, 4, 3, -3, 3],2)",
    "io_inp": [
      1,
      4,
      3,
      -3,
      3
    ],
    "io_out": [
      2,
      8,
      6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, 2, 3, 2, -4, 3]\noutput : list = [-4, 2, 2, 2, 3, 3]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([2, 2, 3, 2, -4, 3],-1)),-1)",
    "io_inp": [
      2,
      2,
      3,
      2,
      -4,
      3
    ],
    "io_out": [
      -4,
      2,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,-1)),-1)"
  },
  {
    "input": "input : list = [3, 5, -5, 1, 4]\noutput : list = [6, 10, -10, 2, 8]",
    "output": "generated_output : list = mul_n([3, 5, -5, 1, 4],2)",
    "io_inp": [
      3,
      5,
      -5,
      1,
      4
    ],
    "io_out": [
      6,
      10,
      -10,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [0, -18]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(sort_des([-5, 1]),-5)),-3))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      0,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(sort_des(input),-5)),-3))"
  },
  {
    "input": "input : list = [-5, 4, -2, -5, 1]\noutput : list = [-9, 0, -6, -9]",
    "output": "generated_output : list = take(add_n(take(reverse(reverse([-5, 4, -2, -5, 1])),4),-4),50)",
    "io_inp": [
      -5,
      4,
      -2,
      -5,
      1
    ],
    "io_out": [
      -9,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(reverse(input)),4),-4),50)"
  },
  {
    "input": "input : list = [4, -1, 5, 1, -2, 1]\noutput : list = [5, 4, 1, 1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc([4, -1, 5, 1, -2, 1]))",
    "io_inp": [
      4,
      -1,
      5,
      1,
      -2,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 5, -2, 5]\noutput : list = [-25, -25, 10, 15]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sort_des([-3, 5, -2, 5]))),-5),10)",
    "io_inp": [
      -3,
      5,
      -2,
      5
    ],
    "io_out": [
      -25,
      -25,
      10,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sort_des(input))),-5),10)"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [15, 15, -12]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-4, 5, 5],3)))",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      15,
      15,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,3)))"
  },
  {
    "input": "input : list = [4, 2, 3, -1, -4, 0]\noutput : list = [-5, -2, -1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(reverse([4, 2, 3, -1, -4, 0]),1))))",
    "io_inp": [
      4,
      2,
      3,
      -1,
      -4,
      0
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [-12, -30, 60]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n(reverse([3, 5, -5]),-3),-5),3))",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      -12,
      -30,
      60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(reverse(input),-3),-5),3))"
  },
  {
    "input": "input : list = [-5, 4, -5, -3, 0]\noutput : list = [8, 0, -6, -10, -10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(mul_n([-5, 4, -5, -3, 0],-2)))),-1)",
    "io_inp": [
      -5,
      4,
      -5,
      -3,
      0
    ],
    "io_out": [
      8,
      0,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(mul_n(input,-2)))),-1)"
  },
  {
    "input": "input : list = [-4, 5, -2, 1, -4, -4]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(drop([-4, 5, -2, 1, -4, -4],4))),-1),1)",
    "io_inp": [
      -4,
      5,
      -2,
      1,
      -4,
      -4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(drop(input,4))),-1),1)"
  },
  {
    "input": "input : list = [-1, 3, -4, 5, -5, -1]\noutput : list = [-7, -3, -10, -1, -11, -7]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(sub_n([-1, 3, -4, 5, -5, -1],-5),4),-2),7),-5)",
    "io_inp": [
      -1,
      3,
      -4,
      5,
      -5,
      -1
    ],
    "io_out": [
      -7,
      -3,
      -10,
      -1,
      -11,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(sub_n(input,-5),4),-2),7),-5)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des([-5, 4])",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3, 5, -2, 0]\noutput : list = [2, 0, 7, -1, -1]",
    "output": "generated_output : list = add_n(take(take(add_n(reverse([-3, -3, 5, -2, 0]),-2),20),5),4)",
    "io_inp": [
      -3,
      -3,
      5,
      -2,
      0
    ],
    "io_out": [
      2,
      0,
      7,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(reverse(input),-2),20),5),4)"
  },
  {
    "input": "input : list = [-3, 3, -4, -4, 2]\noutput : list = [20, -10]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(drop([-3, 3, -4, -4, 2],3),1),5),-1)",
    "io_inp": [
      -3,
      3,
      -4,
      -4,
      2
    ],
    "io_out": [
      20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(drop(input,3),1),5),-1)"
  },
  {
    "input": "input : list = [-5, 0, -3, 3, -3, -3]\noutput : list = [30]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take([-5, 0, -3, 3, -3, -3],1)),2),-3)",
    "io_inp": [
      -5,
      0,
      -3,
      3,
      -3,
      -3
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(input,1)),2),-3)"
  },
  {
    "input": "input : list = [-1, 1, 4, -3, -3, -1]\noutput : list = [-2, 2, 2, -12, -6, -2]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(reverse([-1, 1, 4, -3, -3, -1]),3),-2),1),2)",
    "io_inp": [
      -1,
      1,
      4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -2,
      2,
      2,
      -12,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(reverse(input),3),-2),1),2)"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [80, -60, -100]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(sort_des([-4, 5, 3]),4),23)),-5)",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      80,
      -60,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(sort_des(input),4),23)),-5)"
  },
  {
    "input": "input : list = [-1, -1, -2, 1, -3]\noutput : list = [-15, -15, -10, -25, -5]",
    "output": "generated_output : list = mul_n(take(sub_n([-1, -1, -2, 1, -3],-4),21),-5)",
    "io_inp": [
      -1,
      -1,
      -2,
      1,
      -3
    ],
    "io_out": [
      -15,
      -15,
      -10,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-4),21),-5)"
  },
  {
    "input": "input : list = [-1, -5, -2, 0, 4]\noutput : list = [-5, -2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, -5, -2, 0, 4]))",
    "io_inp": [
      -1,
      -5,
      -2,
      0,
      4
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 0, -2, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(take(drop(reverse([0, 0, -2, -2]),3),14),5))",
    "io_inp": [
      0,
      0,
      -2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(drop(reverse(input),3),14),5))"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [-24, -15]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(drop([-3, 3, 0],1),-5),-3))",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      -24,
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(drop(input,1),-5),-3))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [4, -10]",
    "output": "generated_output : list = take(reverse(mul_n([5, -2],-2)),20)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      4,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,-2)),20)"
  },
  {
    "input": "input : list = [5, 2, -1, 0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = drop([5, 2, -1, 0, -3],3)",
    "io_inp": [
      5,
      2,
      -1,
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [16, 16, -16]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(reverse([4, -4, -4]),-4),4)))",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      16,
      16,
      -16
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(reverse(input),-4),4)))"
  },
  {
    "input": "input : list = [2, 1, 2, -5, -3]\noutput : list = [-44, -36, -20, -16, -16]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(add_n([2, 1, 2, -5, -3],-2),4)),4))",
    "io_inp": [
      2,
      1,
      2,
      -5,
      -3
    ],
    "io_out": [
      -44,
      -36,
      -20,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(add_n(input,-2),4)),4))"
  },
  {
    "input": "input : list = [-4, 3, 5, -1, 2]\noutput : list = [-9, -7, 0]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(take([-4, 3, 5, -1, 2],3),-1)),28),4)",
    "io_inp": [
      -4,
      3,
      5,
      -1,
      2
    ],
    "io_out": [
      -9,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(take(input,3),-1)),28),4)"
  },
  {
    "input": "input : list = [1, 3, -2, -4, 3, -4]\noutput : list = [1, 1, 3, 8, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(drop([1, 3, -2, -4, 3, -4],1)),4),-1)",
    "io_inp": [
      1,
      3,
      -2,
      -4,
      3,
      -4
    ],
    "io_out": [
      1,
      1,
      3,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(drop(input,1)),4),-1)"
  },
  {
    "input": "input : list = [5, 4, 4, 4]\noutput : list = [5, 4, 4, 4]",
    "output": "generated_output : list = reverse(reverse(mul_n([5, 4, 4, 4],1)))",
    "io_inp": [
      5,
      4,
      4,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,1)))"
  },
  {
    "input": "input : list = [-1, -1, -4, -1]\noutput : list = [-1, -1, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc([-1, -1, -4, -1]))",
    "io_inp": [
      -1,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -5, -5, -4]\noutput : list = [25, 25, 20, 5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sub_n([-1, -5, -5, -4],-4),-4))),-5)",
    "io_inp": [
      -1,
      -5,
      -5,
      -4
    ],
    "io_out": [
      25,
      25,
      20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sub_n(input,-4),-4))),-5)"
  },
  {
    "input": "input : list = [2, 1, -3]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(take([2, 1, -3],1)),-3),2))",
    "io_inp": [
      2,
      1,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(take(input,1)),-3),2))"
  },
  {
    "input": "input : list = [-3, 2, -1, -3, 5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = drop([-3, 2, -1, -3, 5, -3],4)",
    "io_inp": [
      -3,
      2,
      -1,
      -3,
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-1, 3, 4, -5]\noutput : list = [-5, -1, 3, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(sort_des([-1, 3, 4, -5]),1)),39))",
    "io_inp": [
      -1,
      3,
      4,
      -5
    ],
    "io_out": [
      -5,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(sort_des(input),1)),39))"
  },
  {
    "input": "input : list = [0, 0, 4, 3, -4, 4]\noutput : list = [-12, -12, -9, 0, 0, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(sort_asc([0, 0, 4, 3, -4, 4]))),-3))",
    "io_inp": [
      0,
      0,
      4,
      3,
      -4,
      4
    ],
    "io_out": [
      -12,
      -12,
      -9,
      0,
      0,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [7, 14, 4]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n([2, -5, 5],-4),-1),-1),4)",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      7,
      14,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(input,-4),-1),-1),4)"
  },
  {
    "input": "input : list = [4, 1, 4, 0, 1, 3]\noutput : list = [5, 6, 6, 8, 9, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc([4, 1, 4, 0, 1, 3]))),-5)",
    "io_inp": [
      4,
      1,
      4,
      0,
      1,
      3
    ],
    "io_out": [
      5,
      6,
      6,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [4, 4, 5, -4, 5, -3]\noutput : list = [-27]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(take([4, 4, 5, -4, 5, -3],1),1),5),-3))",
    "io_inp": [
      4,
      4,
      5,
      -4,
      5,
      -3
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(take(input,1),1),5),-3))"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [-4, -4, -1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(sort_des([0, 0, 3]),6)),4))",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(sort_des(input),6)),4))"
  },
  {
    "input": "input : list = [4, 0, 2, -1]\noutput : list = [5, 3, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des([4, 0, 2, -1]),-1)",
    "io_inp": [
      4,
      0,
      2,
      -1
    ],
    "io_out": [
      5,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [-136, -136, -16]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(mul_n([0, 5, 5],-3),-2),-2),-4))",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      -136,
      -136,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(mul_n(input,-3),-2),-2),-4))"
  },
  {
    "input": "input : list = [4, 2, 3, 1]\noutput : list = [12, 4, 8, 0]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(mul_n([4, 2, 3, 1],1),5),4),-4),1)",
    "io_inp": [
      4,
      2,
      3,
      1
    ],
    "io_out": [
      12,
      4,
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(mul_n(input,1),5),4),-4),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-12, 16]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc([4, -3]),4))),36)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -12,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc(input),4))),36)"
  },
  {
    "input": "input : list = [-4, -1, 0, 4]\noutput : list = [1, 4, 5, 9]",
    "output": "generated_output : list = sub_n([-4, -1, 0, 4],-5)",
    "io_inp": [
      -4,
      -1,
      0,
      4
    ],
    "io_out": [
      1,
      4,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 5, -1, -4]\noutput : list = [-25, 5, 20]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(drop([-5, 5, -1, -4],1),-5))))",
    "io_inp": [
      -5,
      5,
      -1,
      -4
    ],
    "io_out": [
      -25,
      5,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(drop(input,1),-5))))"
  },
  {
    "input": "input : list = [5, 5, 2, -4, 2, -4]\noutput : list = [-680, -680, -380, 220, -380, 220]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(mul_n([5, 5, 2, -4, 2, -4],-5),4),5),5),4)",
    "io_inp": [
      5,
      5,
      2,
      -4,
      2,
      -4
    ],
    "io_out": [
      -680,
      -680,
      -380,
      220,
      -380,
      220
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(mul_n(input,-5),4),5),5),4)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_des([-1, 4])))))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, -4, 0, -3]\noutput : list = [3, -4]",
    "output": "generated_output : list = take([3, -4, 0, -3],2)",
    "io_inp": [
      3,
      -4,
      0,
      -3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -3, 0, -4, 3]\noutput : list = [-15, -5, 0, 15, 20]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc([1, -3, 0, -4, 3])),5)),-1)",
    "io_inp": [
      1,
      -3,
      0,
      -4,
      3
    ],
    "io_out": [
      -15,
      -5,
      0,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc(input)),5)),-1)"
  },
  {
    "input": "input : list = [-5, 5, -2, 0, 4, -2]\noutput : list = [0, -27, -27, -45, -81, -90]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc([-5, 5, -2, 0, 4, -2]),5),-3),3)",
    "io_inp": [
      -5,
      5,
      -2,
      0,
      4,
      -2
    ],
    "io_out": [
      0,
      -27,
      -27,
      -45,
      -81,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(input),5),-3),3)"
  },
  {
    "input": "input : list = [-1, -3, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_asc(take(reverse(take([-1, -3, 0],1)),20)),17)",
    "io_inp": [
      -1,
      -3,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(take(input,1)),20)),17)"
  },
  {
    "input": "input : list = [5, 0, 3, -4, 1, 0]\noutput : list = [5, 3, 1, 0, 0, -4]",
    "output": "generated_output : list = sort_des([5, 0, 3, -4, 1, 0])",
    "io_inp": [
      5,
      0,
      3,
      -4,
      1,
      0
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0, -1, -3, -2]\noutput : list = [-3, -7, -11]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(take([-2, 0, -1, -3, -2],3),4),3),12))",
    "io_inp": [
      -2,
      0,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(take(input,3),4),3),12))"
  },
  {
    "input": "input : list = [1, 0, -3]\noutput : list = [-4, -5, -8]",
    "output": "generated_output : list = sub_n([1, 0, -3],5)",
    "io_inp": [
      1,
      0,
      -3
    ],
    "io_out": [
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, -4, 5, -2]\noutput : list = [-8, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n(take([-5, -4, 5, -2],2),-2))),2)",
    "io_inp": [
      -5,
      -4,
      5,
      -2
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(take(input,2),-2))),2)"
  },
  {
    "input": "input : list = [-4, -3, -3, 5, 5, 4]\noutput : list = [12, -20, -20, -16]",
    "output": "generated_output : list = mul_n(drop([-4, -3, -3, 5, 5, 4],2),-4)",
    "io_inp": [
      -4,
      -3,
      -3,
      5,
      5,
      4
    ],
    "io_out": [
      12,
      -20,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [-1, 3, 2, -1]\noutput : list = [9, 6, -3, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([-1, 3, 2, -1]),3))",
    "io_inp": [
      -1,
      3,
      2,
      -1
    ],
    "io_out": [
      9,
      6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [5, -1, 3, -3, 5]\noutput : list = [-10, -10, -6, 2, 6]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([5, -1, 3, -3, 5])),-2)",
    "io_inp": [
      5,
      -1,
      3,
      -3,
      5
    ],
    "io_out": [
      -10,
      -10,
      -6,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [-4, 4, -3, 2, 1, -1]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sort_asc(take(drop([-4, 4, -3, 2, 1, -1],3),21))",
    "io_inp": [
      -4,
      4,
      -3,
      2,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,3),21))"
  },
  {
    "input": "input : list = [2, -2, 3, 4]\noutput : list = [6, -6]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(take([2, -2, 3, 4],2)),-3)))",
    "io_inp": [
      2,
      -2,
      3,
      4
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(take(input,2)),-3)))"
  },
  {
    "input": "input : list = [5, -5, 0, -5, -2]\noutput : list = [-12, 3]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(drop([5, -5, 0, -5, -2],3),2),26),5),3)",
    "io_inp": [
      5,
      -5,
      0,
      -5,
      -2
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(drop(input,3),2),26),5),3)"
  },
  {
    "input": "input : list = [-3, 1, -5, -4, -4, 0]\noutput : list = [14, 12, 12, 10, 4, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(mul_n([-3, 1, -5, -4, -4, 0],-2),5))),1)",
    "io_inp": [
      -3,
      1,
      -5,
      -4,
      -4,
      0
    ],
    "io_out": [
      14,
      12,
      12,
      10,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(mul_n(input,-2),5))),1)"
  },
  {
    "input": "input : list = [-2, 4, 1, 5, 5]\noutput : list = [-2, 1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([-2, 4, 1, 5, 5])",
    "io_inp": [
      -2,
      4,
      1,
      5,
      5
    ],
    "io_out": [
      -2,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 1, -5, -5, 3]\noutput : list = [-2, 10, -2, -2, 14]",
    "output": "generated_output : list = mul_n(sub_n([-5, 1, -5, -5, 3],-4),2)",
    "io_inp": [
      -5,
      1,
      -5,
      -5,
      3
    ],
    "io_out": [
      -2,
      10,
      -2,
      -2,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),2)"
  },
  {
    "input": "input : list = [-2, 4, -5, 4, -2]\noutput : list = [12, -24, -24]",
    "output": "generated_output : list = mul_n(mul_n(drop(mul_n(sort_asc([-2, 4, -5, 4, -2]),2),2),3),-1)",
    "io_inp": [
      -2,
      4,
      -5,
      4,
      -2
    ],
    "io_out": [
      12,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(mul_n(sort_asc(input),2),2),3),-1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_asc([-4, -4]),-5)),-5),-4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_asc(input),-5)),-5),-4)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [-4, -5, -5]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(sort_asc([3, 2, 2]),4)),-3))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(sort_asc(input),4)),-3))"
  },
  {
    "input": "input : list = [4, -2, 3]\noutput : list = [-5, -10]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(drop([4, -2, 3],1)),4)),-4)",
    "io_inp": [
      4,
      -2,
      3
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(drop(input,1)),4)),-4)"
  },
  {
    "input": "input : list = [5, 1, -4, 3, 3]\noutput : list = [-5, -3, -3, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des([5, 1, -4, 3, 3]),-1))))",
    "io_inp": [
      5,
      1,
      -4,
      3,
      3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [3, -5, 1, 2, 3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(mul_n(drop([3, -5, 1, 2, 3],3),-1),-5)),-1)",
    "io_inp": [
      3,
      -5,
      1,
      2,
      3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(mul_n(drop(input,3),-1),-5)),-1)"
  },
  {
    "input": "input : list = [3, 0, -3, -3, 3]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = drop(take(sort_des(add_n(mul_n([3, 0, -3, -3, 3],1),3)),13),2)",
    "io_inp": [
      3,
      0,
      -3,
      -3,
      3
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(take(sort_des(add_n(mul_n(input,1),3)),13),2)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([-1, 2])))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, 3, 4, 5, 5, -1]\noutput : list = [0, 4, 4, 5, 6, 6]",
    "output": "generated_output : list = add_n(sort_asc([3, 3, 4, 5, 5, -1]),1)",
    "io_inp": [
      3,
      3,
      4,
      5,
      5,
      -1
    ],
    "io_out": [
      0,
      4,
      4,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [0, 5, -5, -4, -4]\noutput : list = [0, 5, -5]",
    "output": "generated_output : list = take(take([0, 5, -5, -4, -4],3),17)",
    "io_inp": [
      0,
      5,
      -5,
      -4,
      -4
    ],
    "io_out": [
      0,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,3),17)"
  },
  {
    "input": "input : list = [1, 5, 2, -2, 1, 1]\noutput : list = [2, 8, 8, 8, 10, 16]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n([1, 5, 2, -2, 1, 1],3)),2))",
    "io_inp": [
      1,
      5,
      2,
      -2,
      1,
      1
    ],
    "io_out": [
      2,
      8,
      8,
      8,
      10,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(input,3)),2))"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(take([-2, -2, -3],1),2)",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),2)"
  },
  {
    "input": "input : list = [1, 1, 5, -5, 1, 5]\noutput : list = [-3, -3, -15, 15]",
    "output": "generated_output : list = mul_n(take([1, 1, 5, -5, 1, 5],4),-3)",
    "io_inp": [
      1,
      1,
      5,
      -5,
      1,
      5
    ],
    "io_out": [
      -3,
      -3,
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),-3)"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [24]",
    "output": "generated_output : list = take(take(mul_n(sub_n(sort_asc([-5, -3, -3]),3),-3),1),38)",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(sort_asc(input),3),-3),1),38)"
  },
  {
    "input": "input : list = [-5, -5, 4, 1, 1]\noutput : list = [16, 4, 4, -20, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sort_des([-5, -5, 4, 1, 1]))),4))",
    "io_inp": [
      -5,
      -5,
      4,
      1,
      1
    ],
    "io_out": [
      16,
      4,
      4,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sort_des(input))),4))"
  },
  {
    "input": "input : list = [4, 1, 5, 0, -1, 5]\noutput : list = [6, 9, 10]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(take([4, 1, 5, 0, -1, 5],3)),-5),1),-1)",
    "io_inp": [
      4,
      1,
      5,
      0,
      -1,
      5
    ],
    "io_out": [
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(take(input,3)),-5),1),-1)"
  },
  {
    "input": "input : list = [-4, 3, -4, -1, 5]\noutput : list = [100, 60, -20, -80, -80]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(mul_n([-4, 3, -4, -1, 5],-5),-4))))",
    "io_inp": [
      -4,
      3,
      -4,
      -1,
      5
    ],
    "io_out": [
      100,
      60,
      -20,
      -80,
      -80
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(mul_n(input,-5),-4))))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [16, 8]",
    "output": "generated_output : list = mul_n(take(reverse([-2, -4]),2),-4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),2),-4)"
  },
  {
    "input": "input : list = [5, 5, -2, 2, -3]\noutput : list = [3, 3, -4, 0, -5]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(sub_n([5, 5, -2, 2, -3],2)),2),-2))",
    "io_inp": [
      5,
      5,
      -2,
      2,
      -3
    ],
    "io_out": [
      3,
      3,
      -4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(sub_n(input,2)),2),-2))"
  },
  {
    "input": "input : list = [2, 2, 2, 5, 5, -4]\noutput : list = [-1, -1, 2, 2, -7]",
    "output": "generated_output : list = sub_n(drop(add_n([2, 2, 2, 5, 5, -4],-5),1),-2)",
    "io_inp": [
      2,
      2,
      2,
      5,
      5,
      -4
    ],
    "io_out": [
      -1,
      -1,
      2,
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(input,-5),1),-2)"
  },
  {
    "input": "input : list = [-3, 3, 0, -3, 1]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(drop(take([-3, 3, 0, -3, 1],3),1))))",
    "io_inp": [
      -3,
      3,
      0,
      -3,
      1
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(drop(take(input,3),1))))"
  },
  {
    "input": "input : list = [2, 3, 2, 1]\noutput : list = [15, 14, 14, 13]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(add_n([2, 3, 2, 1],5),-5),-1),3))",
    "io_inp": [
      2,
      3,
      2,
      1
    ],
    "io_out": [
      15,
      14,
      14,
      13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(add_n(input,5),-5),-1),3))"
  },
  {
    "input": "input : list = [-2, 5, 3, 1, 0]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(take(reverse(drop(sort_asc([-2, 5, 3, 1, 0]),4)),24),-3)",
    "io_inp": [
      -2,
      5,
      3,
      1,
      0
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(drop(sort_asc(input),4)),24),-3)"
  },
  {
    "input": "input : list = [1, -2, -1, -5, 4, -4]\noutput : list = [5, 2, 3, -1, 8, 0]",
    "output": "generated_output : list = sub_n([1, -2, -1, -5, 4, -4],-4)",
    "io_inp": [
      1,
      -2,
      -1,
      -5,
      4,
      -4
    ],
    "io_out": [
      5,
      2,
      3,
      -1,
      8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [2, -4, -3, 5]\noutput : list = [-7, 5]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(take([2, -4, -3, 5],2),-1),2),30),-3)",
    "io_inp": [
      2,
      -4,
      -3,
      5
    ],
    "io_out": [
      -7,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(take(input,2),-1),2),30),-3)"
  },
  {
    "input": "input : list = [3, -4, 3, -5, 1]\noutput : list = [-9, -8, -3, -1, -1]",
    "output": "generated_output : list = sub_n(sort_asc([3, -4, 3, -5, 1]),4)",
    "io_inp": [
      3,
      -4,
      3,
      -5,
      1
    ],
    "io_out": [
      -9,
      -8,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(drop([2, 0, 5],1)),-5)),22)",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(drop(input,1)),-5)),22)"
  },
  {
    "input": "input : list = [-4, -2, 1, -2, -3, -2]\noutput : list = [3, 2, 3, 6, 3, 1]",
    "output": "generated_output : list = sub_n(reverse([-4, -2, 1, -2, -3, -2]),-5)",
    "io_inp": [
      -4,
      -2,
      1,
      -2,
      -3,
      -2
    ],
    "io_out": [
      3,
      2,
      3,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-48, 12, 12]",
    "output": "generated_output : list = mul_n(mul_n([-4, 1, 1],-3),-4)",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -48,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),-4)"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(drop([1, -4, -5],1),1),3)))",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(drop(input,1),1),3)))"
  },
  {
    "input": "input : list = [3, 5, 4, 5, 3]\noutput : list = [7, 9, 8, 9, 7]",
    "output": "generated_output : list = add_n([3, 5, 4, 5, 3],4)",
    "io_inp": [
      3,
      5,
      4,
      5,
      3
    ],
    "io_out": [
      7,
      9,
      8,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-3, 3, 4, 3, 3]\noutput : list = [1, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(drop(sub_n(sort_des([-3, 3, 4, 3, 3]),-2),2)),-2)",
    "io_inp": [
      -3,
      3,
      4,
      3,
      3
    ],
    "io_out": [
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(sub_n(sort_des(input),-2),2)),-2)"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([3, 1, 0])))",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-3, 0, 3]\noutput : list = [-17, -5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(sort_asc([-3, 0, 3])),4),5))",
    "io_inp": [
      -3,
      0,
      3
    ],
    "io_out": [
      -17,
      -5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(sort_asc(input)),4),5))"
  },
  {
    "input": "input : list = [-5, 1, -3, 0, 1, -5]\noutput : list = [0, 0, 2, 5, 6, 6]",
    "output": "generated_output : list = sub_n(reverse(sort_des([-5, 1, -3, 0, 1, -5])),-5)",
    "io_inp": [
      -5,
      1,
      -3,
      0,
      1,
      -5
    ],
    "io_out": [
      0,
      0,
      2,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [15, -13]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(sub_n([2, -5],-2)),-4),-3))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      15,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(sub_n(input,-2)),-4),-3))"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc([0, 0, -1]))",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, 4, 4, -2]\noutput : list = [16, 16, 16, -8, -20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([-5, 4, 4, 4, -2],4)))",
    "io_inp": [
      -5,
      4,
      4,
      4,
      -2
    ],
    "io_out": [
      16,
      16,
      16,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,4)))"
  },
  {
    "input": "input : list = [0, 4, 3, 5, 3]\noutput : list = [4, 3, 5, 3]",
    "output": "generated_output : list = drop([0, 4, 3, 5, 3],1)",
    "io_inp": [
      0,
      4,
      3,
      5,
      3
    ],
    "io_out": [
      4,
      3,
      5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 0, -3, 2]\noutput : list = [8, 9]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(reverse([-1, 0, -3, 2])),4),-5),2)",
    "io_inp": [
      -1,
      0,
      -3,
      2
    ],
    "io_out": [
      8,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(reverse(input)),4),-5),2)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n([1, 1, -2],4))),-4))",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n(input,4))),-4))"
  },
  {
    "input": "input : list = [-4, 1, 1, 1]\noutput : list = [1, 1, 1, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-4, 1, 1, 1])),1)",
    "io_inp": [
      -4,
      1,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),1)"
  },
  {
    "input": "input : list = [5, 1, 0, -3]\noutput : list = [-5, -2, -1, 3]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(sub_n([5, 1, 0, -3],2)))),24)",
    "io_inp": [
      5,
      1,
      0,
      -3
    ],
    "io_out": [
      -5,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(sub_n(input,2)))),24)"
  },
  {
    "input": "input : list = [5, 2, 2, 1, 1, -5]\noutput : list = [5, 2, 2, 1, 1, -5]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(reverse([5, 2, 2, 1, 1, -5])),-3)),-3)",
    "io_inp": [
      5,
      2,
      2,
      1,
      1,
      -5
    ],
    "io_out": [
      5,
      2,
      2,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(reverse(input)),-3)),-3)"
  },
  {
    "input": "input : list = [-1, 4, 1, 4, -4, 0]\noutput : list = [4, 4, 1, 0, -1, -4]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n(sort_asc([-1, 4, 1, 4, -4, 0]),1),3)),3)",
    "io_inp": [
      -1,
      4,
      1,
      4,
      -4,
      0
    ],
    "io_out": [
      4,
      4,
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(sort_asc(input),1),3)),3)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-4, -2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-4, -2, 3])),20)",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),20)"
  },
  {
    "input": "input : list = [1, -2, -5, 2, 3]\noutput : list = [-6, -7, -8, -11, -14]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n([1, -2, -5, 2, 3],4))),5))",
    "io_inp": [
      1,
      -2,
      -5,
      2,
      3
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n(input,4))),5))"
  },
  {
    "input": "input : list = [-5, 2, 2, 0, 1]\noutput : list = [1, 0, 2, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, 2, 0, 1])",
    "io_inp": [
      -5,
      2,
      2,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [2, -2, -6]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(sub_n([0, -4, 4],-1)),3)),19)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(sub_n(input,-1)),3)),19)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [-15, 0, -30]",
    "output": "generated_output : list = mul_n(add_n([-1, 2, -4],-2),5)",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      -15,
      0,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),5)"
  },
  {
    "input": "input : list = [-5, 4, -4, -3, -1]\noutput : list = [-5, 4, -4]",
    "output": "generated_output : list = take([-5, 4, -4, -3, -1],3)",
    "io_inp": [
      -5,
      4,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -5,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, -4, 5, -5, -5]\noutput : list = [5, -5, -5]",
    "output": "generated_output : list = drop([3, -4, 5, -5, -5],2)",
    "io_inp": [
      3,
      -4,
      5,
      -5,
      -5
    ],
    "io_out": [
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 0, -2, 2]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(take(drop(sub_n(reverse([3, 0, -2, 2]),2),2),6))",
    "io_inp": [
      3,
      0,
      -2,
      2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(sub_n(reverse(input),2),2),6))"
  },
  {
    "input": "input : list = [-1, 3, -5, -5, -2]\noutput : list = [-1, 3, -5]",
    "output": "generated_output : list = take([-1, 3, -5, -5, -2],3)",
    "io_inp": [
      -1,
      3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -1,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, 2, 4, 2]\noutput : list = [4, 2, 2, -3]",
    "output": "generated_output : list = sort_des([-3, 2, 4, 2])",
    "io_inp": [
      -3,
      2,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, 0, 0]\noutput : list = [0, 0, -2, -2]",
    "output": "generated_output : list = reverse([-2, -2, 0, 0])",
    "io_inp": [
      -2,
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [6, 10, 11]",
    "output": "generated_output : list = add_n(sub_n(add_n(add_n(add_n([-2, 2, 3],-5),5),2),-2),4)",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      6,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(add_n(add_n(input,-5),5),2),-2),4)"
  },
  {
    "input": "input : list = [2, 4, -4, -1]\noutput : list = [7, 10, 13, 15]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc([2, 4, -4, -1]),-4),-1),2),-4)",
    "io_inp": [
      2,
      4,
      -4,
      -1
    ],
    "io_out": [
      7,
      10,
      13,
      15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc(input),-4),-1),2),-4)"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(take([-4, 3, 2],1),-5)),-1))",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(take(input,1),-5)),-1))"
  },
  {
    "input": "input : list = [-3, -4, -2, -1]\noutput : list = [4, 3, 2, 1]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(add_n([-3, -4, -2, -1],5)),6)))",
    "io_inp": [
      -3,
      -4,
      -2,
      -1
    ],
    "io_out": [
      4,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(add_n(input,5)),6)))"
  },
  {
    "input": "input : list = [-5, -4, 2, -1, -5]\noutput : list = [2, -1, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -4, 2, -1, -5])",
    "io_inp": [
      -5,
      -4,
      2,
      -1,
      -5
    ],
    "io_out": [
      2,
      -1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2, -1, 0, 5, 0]\noutput : list = [-125, -125, -50, 0, 0, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sort_asc([5, 2, -1, 0, 5, 0]),-5)),5))",
    "io_inp": [
      5,
      2,
      -1,
      0,
      5,
      0
    ],
    "io_out": [
      -125,
      -125,
      -50,
      0,
      0,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sort_asc(input),-5)),5))"
  },
  {
    "input": "input : list = [-1, -4, 2, -4]\noutput : list = [-4, -4, -1, 2]",
    "output": "generated_output : list = sort_asc(reverse([-1, -4, 2, -4]))",
    "io_inp": [
      -1,
      -4,
      2,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, 1, 4]\noutput : list = [-11, 4, 19]",
    "output": "generated_output : list = add_n(mul_n([-2, 1, 4],5),-1)",
    "io_inp": [
      -2,
      1,
      4
    ],
    "io_out": [
      -11,
      4,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),-1)"
  },
  {
    "input": "input : list = [2, 4, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(take([2, 4, -2],1),15),2)))",
    "io_inp": [
      2,
      4,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(take(input,1),15),2)))"
  },
  {
    "input": "input : list = [2, 0, 3, -3]\noutput : list = [10, -20, -40, -50]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(mul_n([2, 0, 3, -3],-2),4),5)))",
    "io_inp": [
      2,
      0,
      3,
      -3
    ],
    "io_out": [
      10,
      -20,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(mul_n(input,-2),4),5)))"
  },
  {
    "input": "input : list = [3, 1, 3, 3, -5, 3]\noutput : list = [4, 2, 4, 4, -4, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse([3, 1, 3, 3, -5, 3])),-1)",
    "io_inp": [
      3,
      1,
      3,
      3,
      -5,
      3
    ],
    "io_out": [
      4,
      2,
      4,
      4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-1)"
  },
  {
    "input": "input : list = [0, 4, -1, -4, -1, -3]\noutput : list = [2, 6, 1, -2, 1, -1]",
    "output": "generated_output : list = take(sub_n([0, 4, -1, -4, -1, -3],-2),27)",
    "io_inp": [
      0,
      4,
      -1,
      -4,
      -1,
      -3
    ],
    "io_out": [
      2,
      6,
      1,
      -2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-2),27)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -6]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sub_n([-4, -5],2),1)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sub_n(input,2),1)))"
  },
  {
    "input": "input : list = [-3, -2, -1, 2, -1]\noutput : list = [-4, -3, -2, -2, 1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-3, -2, -1, 2, -1],1)))",
    "io_inp": [
      -3,
      -2,
      -1,
      2,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,1)))"
  },
  {
    "input": "input : list = [2, 3, 0, 2, 3]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(mul_n([2, 3, 0, 2, 3],5),1))))",
    "io_inp": [
      2,
      3,
      0,
      2,
      3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(mul_n(input,5),1))))"
  },
  {
    "input": "input : list = [-5, -5, 5]\noutput : list = [-28, 12, 12]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(sort_des([-5, -5, 5]),10),-4),-3),5)",
    "io_inp": [
      -5,
      -5,
      5
    ],
    "io_out": [
      -28,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(sort_des(input),10),-4),-3),5)"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [32, 23, 23]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n([-3, -2, -2],-3),3),1),4)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      32,
      23,
      23
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(input,-3),3),1),4)"
  },
  {
    "input": "input : list = [1, -1, 1, -3]\noutput : list = [0, 0, -8, -16]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc([1, -1, 1, -3])),4),-4)",
    "io_inp": [
      1,
      -1,
      1,
      -3
    ],
    "io_out": [
      0,
      0,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(input)),4),-4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n([0, 0],1)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, 5, 4, 3]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(take([-3, 5, 4, 3],1),12),-5)))",
    "io_inp": [
      -3,
      5,
      4,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(take(input,1),12),-5)))"
  },
  {
    "input": "input : list = [4, -1, 4, 3, 1, 1]\noutput : list = [8, -2, 8, 6, 2, 2]",
    "output": "generated_output : list = mul_n([4, -1, 4, 3, 1, 1],2)",
    "io_inp": [
      4,
      -1,
      4,
      3,
      1,
      1
    ],
    "io_out": [
      8,
      -2,
      8,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [4, -1, -3, 5]\noutput : list = [-16, 4, 12, -20]",
    "output": "generated_output : list = mul_n([4, -1, -3, 5],-4)",
    "io_inp": [
      4,
      -1,
      -3,
      5
    ],
    "io_out": [
      -16,
      4,
      12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(add_n([1, -3],5),3),2),3))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(add_n(input,5),3),2),3))"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = add_n([-2, -1, -1],1)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, 1, -3, 3]\noutput : list = [0, -2, -4, -8]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n([5, 1, -3, 3],5))),30)",
    "io_inp": [
      5,
      1,
      -3,
      3
    ],
    "io_out": [
      0,
      -2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(input,5))),30)"
  },
  {
    "input": "input : list = [0, 4, -3]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(reverse([0, 4, -3]),2),1)),4)",
    "io_inp": [
      0,
      4,
      -3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(reverse(input),2),1)),4)"
  },
  {
    "input": "input : list = [3, -1, -1, -5]\noutput : list = [-6, -2, -2]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(reverse([3, -1, -1, -5]),3),-1)))",
    "io_inp": [
      3,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(reverse(input),3),-1)))"
  },
  {
    "input": "input : list = [-4, 1, -1, 3]\noutput : list = [7, 5, 3, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sort_asc([-4, 1, -1, 3])),4)))",
    "io_inp": [
      -4,
      1,
      -1,
      3
    ],
    "io_out": [
      7,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [5, 4, -3]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(sort_asc([4, -3, 5]))),34))",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(sort_asc(input))),34))"
  },
  {
    "input": "input : list = [-2, 4, 5, 2, -4]\noutput : list = [0, 6, 9, 8, 2]",
    "output": "generated_output : list = sub_n(reverse([-2, 4, 5, 2, -4]),-4)",
    "io_inp": [
      -2,
      4,
      5,
      2,
      -4
    ],
    "io_out": [
      0,
      6,
      9,
      8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [4, 5, 2, -4, -2, 4]\noutput : list = [3, 0, 9, 27, 21, 3]",
    "output": "generated_output : list = mul_n(sub_n([4, 5, 2, -4, -2, 4],5),-3)",
    "io_inp": [
      4,
      5,
      2,
      -4,
      -2,
      4
    ],
    "io_out": [
      3,
      0,
      9,
      27,
      21,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),-3)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-15, -8]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([-5, 2],5)),5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -15,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,5)),5)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-7, -6, 1]",
    "output": "generated_output : list = sub_n([-5, -4, 3],2)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -7,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-12, -12]",
    "output": "generated_output : list = take(mul_n([-3, -3],4),3)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),3)"
  },
  {
    "input": "input : list = [-5, -1, -5]\noutput : list = [-5, -5, -1]",
    "output": "generated_output : list = sort_asc([-5, -1, -5])",
    "io_inp": [
      -5,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, -5]\noutput : list = [-5, -8, -9]",
    "output": "generated_output : list = sort_des(sub_n([-1, -4, -5],4))",
    "io_inp": [
      -1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [6, 2]",
    "output": "generated_output : list = sub_n(sort_des([3, -1]),-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-5, 5, 5, 1]\noutput : list = [5, 9, 9, -1]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-5, 5, 5, 1]),1),-4)",
    "io_inp": [
      -5,
      5,
      5,
      1
    ],
    "io_out": [
      5,
      9,
      9,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),1),-4)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [0, 4]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(sub_n([1, -3],-3))),16))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(sub_n(input,-3))),16))"
  },
  {
    "input": "input : list = [1, 3, -4, 0, 0]\noutput : list = [0, -8, -8, -10, -14]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(add_n([1, 3, -4, 0, 0],3),-2)),2),17)",
    "io_inp": [
      1,
      3,
      -4,
      0,
      0
    ],
    "io_out": [
      0,
      -8,
      -8,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(add_n(input,3),-2)),2),17)"
  },
  {
    "input": "input : list = [0, -5, 1, -4]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take([0, -5, 1, -4],1),-2)",
    "io_inp": [
      0,
      -5,
      1,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [6, -4]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(mul_n([-5, 0],-2))),-4))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(mul_n(input,-2))),-4))"
  },
  {
    "input": "input : list = [3, 2, 5, 3, 3, 2]\noutput : list = [2, 2, 3, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 2, 5, 3, 3, 2])",
    "io_inp": [
      3,
      2,
      5,
      3,
      3,
      2
    ],
    "io_out": [
      2,
      2,
      3,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, -5, 2]\noutput : list = [5, 5, 2, -5]",
    "output": "generated_output : list = sort_des([5, 5, -5, 2])",
    "io_inp": [
      5,
      5,
      -5,
      2
    ],
    "io_out": [
      5,
      5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, -5, -5, 3]\noutput : list = [-16, 0]",
    "output": "generated_output : list = mul_n(take(mul_n(take(take([-4, 0, -5, -5, 3],2),18),-1),17),-4)",
    "io_inp": [
      -4,
      0,
      -5,
      -5,
      3
    ],
    "io_out": [
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(take(input,2),18),-1),17),-4)"
  },
  {
    "input": "input : list = [2, 5, -3, 3, -2]\noutput : list = [5, 8, 0, 6, 1]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n([2, 5, -3, 3, -2],4),2),16),-5)",
    "io_inp": [
      2,
      5,
      -3,
      3,
      -2
    ],
    "io_out": [
      5,
      8,
      0,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(input,4),2),16),-5)"
  },
  {
    "input": "input : list = [3, 2, 2, 4]\noutput : list = [-3, -5, -5, -4]",
    "output": "generated_output : list = reverse(sub_n(add_n([3, 2, 2, 4],-2),5))",
    "io_inp": [
      3,
      2,
      2,
      4
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-2),5))"
  },
  {
    "input": "input : list = [-5, 3, -2, 5]\noutput : list = [-5, -2, 3, 5]",
    "output": "generated_output : list = sort_asc([-5, 3, -2, 5])",
    "io_inp": [
      -5,
      3,
      -2,
      5
    ],
    "io_out": [
      -5,
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, 1, 4]\noutput : list = [0, -5, -15, -25]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(sort_asc([3, -1, 1, 4]),-4))),5)",
    "io_inp": [
      3,
      -1,
      1,
      4
    ],
    "io_out": [
      0,
      -5,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(sort_asc(input),-4))),5)"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(take([-3, 2, 4],1),3)),-1))",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(take(input,1),3)),-1))"
  },
  {
    "input": "input : list = [-2, 3, 5, -5, 4]\noutput : list = [-5, -2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc([-2, 3, 5, -5, 4]),5))",
    "io_inp": [
      -2,
      3,
      5,
      -5,
      4
    ],
    "io_out": [
      -5,
      -2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),5))"
  },
  {
    "input": "input : list = [4, -4, 2, 0, 0, 1]\noutput : list = [-7, -3, -3, -2, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(sort_asc([4, -4, 2, 0, 0, 1]),1),31)),2)",
    "io_inp": [
      4,
      -4,
      2,
      0,
      0,
      1
    ],
    "io_out": [
      -7,
      -3,
      -3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(sort_asc(input),1),31)),2)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(drop(sub_n(add_n(sort_des([-3, 5]),4),4),1))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(sub_n(add_n(sort_des(input),4),4),1))"
  },
  {
    "input": "input : list = [4, 1, 3, 2]\noutput : list = [6, 5, 4, 3]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(sort_asc([4, 1, 3, 2]),6),-2)),-4)",
    "io_inp": [
      4,
      1,
      3,
      2
    ],
    "io_out": [
      6,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(sort_asc(input),6),-2)),-4)"
  },
  {
    "input": "input : list = [-4, 1, -5, 3, -1, 1]\noutput : list = [3, 1, 1, -1, -4, -5]",
    "output": "generated_output : list = reverse(take(reverse(reverse(sort_asc([-4, 1, -5, 3, -1, 1]))),34))",
    "io_inp": [
      -4,
      1,
      -5,
      3,
      -1,
      1
    ],
    "io_out": [
      3,
      1,
      1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(sort_asc(input))),34))"
  },
  {
    "input": "input : list = [-5, -3, -1, 0, -4, -3]\noutput : list = [3, 2, 0, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n([-5, -3, -1, 0, -4, -3],-3))",
    "io_inp": [
      -5,
      -3,
      -1,
      0,
      -4,
      -3
    ],
    "io_out": [
      3,
      2,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(reverse([-2, 3])),20)))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(reverse(input)),20)))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [8, 3]",
    "output": "generated_output : list = add_n([4, -1],4)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      8,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-5, -1, -3, 1]\noutput : list = [1, -3, -1, -5]",
    "output": "generated_output : list = reverse([-5, -1, -3, 1])",
    "io_inp": [
      -5,
      -1,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [6, -4, -9]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(mul_n([2, -1, 1],5)),-5),-1),-4)",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      6,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(mul_n(input,5)),-5),-1),-4)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [0, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(add_n([5, -3],3)),-5),5))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(add_n(input,3)),-5),5))"
  },
  {
    "input": "input : list = [-4, 1, 0, 2, -2, 1]\noutput : list = [-4, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(take(take([-4, 1, 0, 2, -2, 1],4),20))",
    "io_inp": [
      -4,
      1,
      0,
      2,
      -2,
      1
    ],
    "io_out": [
      -4,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,4),20))"
  },
  {
    "input": "input : list = [-1, -2, 3, 2, -5, -3]\noutput : list = [15, 10, -5, -10, -15, -25]",
    "output": "generated_output : list = take(reverse(sort_asc(reverse(mul_n([-1, -2, 3, 2, -5, -3],5)))),41)",
    "io_inp": [
      -1,
      -2,
      3,
      2,
      -5,
      -3
    ],
    "io_out": [
      15,
      10,
      -5,
      -10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(reverse(mul_n(input,5)))),41)"
  },
  {
    "input": "input : list = [4, -1, 5]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(sort_asc([4, -1, 5]))),10))",
    "io_inp": [
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(sort_asc(input))),10))"
  },
  {
    "input": "input : list = [-1, -3, -5, -5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(drop([-1, -3, -5, -5],2),-1))))",
    "io_inp": [
      -1,
      -3,
      -5,
      -5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(drop(input,2),-1))))"
  },
  {
    "input": "input : list = [-4, -3, -1, -4, 0]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = mul_n(take([-4, -3, -1, -4, 0],3),1)",
    "io_inp": [
      -4,
      -3,
      -1,
      -4,
      0
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),1)"
  },
  {
    "input": "input : list = [4, -2, 1, 1, -3]\noutput : list = [16, 10, 10, 4, 2]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(add_n([4, -2, 1, 1, -3],4)),2)))",
    "io_inp": [
      4,
      -2,
      1,
      1,
      -3
    ],
    "io_out": [
      16,
      10,
      10,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(add_n(input,4)),2)))"
  },
  {
    "input": "input : list = [-3, 0, 2, -4]\noutput : list = [-5, -2, 0, -6]",
    "output": "generated_output : list = take(sub_n([-3, 0, 2, -4],2),14)",
    "io_inp": [
      -3,
      0,
      2,
      -4
    ],
    "io_out": [
      -5,
      -2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,2),14)"
  },
  {
    "input": "input : list = [-2, 5, 5, -5]\noutput : list = [17, -13]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(drop([-2, 5, 5, -5],2),3),-2),-4),42)",
    "io_inp": [
      -2,
      5,
      5,
      -5
    ],
    "io_out": [
      17,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(drop(input,2),3),-2),-4),42)"
  },
  {
    "input": "input : list = [2, -4, -4]\noutput : list = [1, 1, 7]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_asc([2, -4, -4])))),5)",
    "io_inp": [
      2,
      -4,
      -4
    ],
    "io_out": [
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse([0, -1])",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 0, -3, -1, -2, 3]\noutput : list = [3, 0, 0, -1, -2, -3]",
    "output": "generated_output : list = sort_des([0, 0, -3, -1, -2, 3])",
    "io_inp": [
      0,
      0,
      -3,
      -1,
      -2,
      3
    ],
    "io_out": [
      3,
      0,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [0, 4, 2]",
    "output": "generated_output : list = take(reverse(add_n(add_n([-2, 0, -4],-1),5)),4)",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      0,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(input,-1),5)),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [0, 8]",
    "output": "generated_output : list = sub_n([-5, 3],-5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -4, -5, 1, 0, 4]\noutput : list = [4, 1, 0, -1, -4, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(sort_asc([-1, -4, -5, 1, 0, 4])))),36)",
    "io_inp": [
      -1,
      -4,
      -5,
      1,
      0,
      4
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(sort_asc(input)))),36)"
  },
  {
    "input": "input : list = [-5, -1, -4, 3]\noutput : list = [-6, -2, -5, 2]",
    "output": "generated_output : list = sub_n([-5, -1, -4, 3],1)",
    "io_inp": [
      -5,
      -1,
      -4,
      3
    ],
    "io_out": [
      -6,
      -2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, 5, 1]\noutput : list = [18, -54, -18]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(mul_n([-3, 5, 1],1),3),-3),-3),44)",
    "io_inp": [
      -3,
      5,
      1
    ],
    "io_out": [
      18,
      -54,
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(mul_n(input,1),3),-3),-3),44)"
  },
  {
    "input": "input : list = [-1, 4, -1, 4, -5]\noutput : list = [-1, 3, 3, 8, 8]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc([-1, 4, -1, 4, -5])),-4)))",
    "io_inp": [
      -1,
      4,
      -1,
      4,
      -5
    ],
    "io_out": [
      -1,
      3,
      3,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 0, -5],1)",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 5, -4, -2]\noutput : list = [-25, -15, 10, 20]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n([3, 5, -4, -2],-5)),26))",
    "io_inp": [
      3,
      5,
      -4,
      -2
    ],
    "io_out": [
      -25,
      -15,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(input,-5)),26))"
  },
  {
    "input": "input : list = [-4, 5, 0, -3, -4]\noutput : list = [15, 0, -9, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_asc([-4, 5, 0, -3, -4]))),3))",
    "io_inp": [
      -4,
      5,
      0,
      -3,
      -4
    ],
    "io_out": [
      15,
      0,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [-18, -13]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(drop([1, -3, 2],1),9),5),-5),5)",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      -18,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(drop(input,1),9),5),-5),5)"
  },
  {
    "input": "input : list = [-1, 5, 5, 0, 5]\noutput : list = [-3, 3, 3, -2, 3]",
    "output": "generated_output : list = add_n([-1, 5, 5, 0, 5],-2)",
    "io_inp": [
      -1,
      5,
      5,
      0,
      5
    ],
    "io_out": [
      -3,
      3,
      3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 2, 3, -1, -5]\noutput : list = [-10, -8, -6, -3, -2]",
    "output": "generated_output : list = take(sort_asc(add_n([-3, 2, 3, -1, -5],-5)),22)",
    "io_inp": [
      -3,
      2,
      3,
      -1,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-5)),22)"
  },
  {
    "input": "input : list = [4, -4, 2, 2]\noutput : list = [-9, -3, -3, -1]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(sort_des([4, -4, 2, 2]),-5),1),31))",
    "io_inp": [
      4,
      -4,
      2,
      2
    ],
    "io_out": [
      -9,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(sort_des(input),-5),1),31))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-4, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(reverse([0, -3]),4)),5))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(reverse(input),4)),5))"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [7, 3, 10]",
    "output": "generated_output : list = sub_n(reverse([5, -2, 2]),-5)",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      7,
      3,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-1, -5, -1, 5, -1]\noutput : list = [-5, -1, -1, -1, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc([-1, -5, -1, 5, -1])),21)))",
    "io_inp": [
      -1,
      -5,
      -1,
      5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc(input)),21)))"
  },
  {
    "input": "input : list = [2, -2, -1, 0, 1]\noutput : list = [3, 4, 5, 6, 7]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(sort_des([2, -2, -1, 0, 1])),-5)))",
    "io_inp": [
      2,
      -2,
      -1,
      0,
      1
    ],
    "io_out": [
      3,
      4,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(sort_des(input)),-5)))"
  },
  {
    "input": "input : list = [-2, -1, 0, -5, 5]\noutput : list = [2, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(take([-2, -1, 0, -5, 5],3),-4))))",
    "io_inp": [
      -2,
      -1,
      0,
      -5,
      5
    ],
    "io_out": [
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(take(input,3),-4))))"
  },
  {
    "input": "input : list = [-5, -1, 4, -3]\noutput : list = [-2, 3, -4]",
    "output": "generated_output : list = sub_n(take(drop([-5, -1, 4, -3],1),18),1)",
    "io_inp": [
      -5,
      -1,
      4,
      -3
    ],
    "io_out": [
      -2,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,1),18),1)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-8, -10]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(add_n([5, 3],5)),-1),31))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(add_n(input,5)),-1),31))"
  },
  {
    "input": "input : list = [-3, -3, -3]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take([-3, -3, -3],1)),5))",
    "io_inp": [
      -3,
      -3,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(input,1)),5))"
  },
  {
    "input": "input : list = [4, 5, -3, 2, 4]\noutput : list = [6, 5, 5, 3, -2]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(mul_n([4, 5, -3, 2, 4],1))),18),-1)",
    "io_inp": [
      4,
      5,
      -3,
      2,
      4
    ],
    "io_out": [
      6,
      5,
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(mul_n(input,1))),18),-1)"
  },
  {
    "input": "input : list = [0, -3, -1, 4, -4, -4]\noutput : list = [-4, -4, -3, -1, 0, 4]",
    "output": "generated_output : list = take(sort_asc([0, -3, -1, 4, -4, -4]),28)",
    "io_inp": [
      0,
      -3,
      -1,
      4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),28)"
  },
  {
    "input": "input : list = [2, -5, -3, -2, -4, -2]\noutput : list = [7, 14, 12, 11, 13, 11]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(mul_n([2, -5, -3, -2, -4, -2],-1)),-5),4))",
    "io_inp": [
      2,
      -5,
      -3,
      -2,
      -4,
      -2
    ],
    "io_out": [
      7,
      14,
      12,
      11,
      13,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(mul_n(input,-1)),-5),4))"
  },
  {
    "input": "input : list = [-4, -3, 5, -1, -1]\noutput : list = [60, -12, -12, -36, -48]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(sort_asc([-4, -3, 5, -1, -1]),19)),4),3)",
    "io_inp": [
      -4,
      -3,
      5,
      -1,
      -1
    ],
    "io_out": [
      60,
      -12,
      -12,
      -36,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(sort_asc(input),19)),4),3)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-2, -6]",
    "output": "generated_output : list = take(take(add_n(mul_n(drop([4, -2, -4],1),2),2),5),20)",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(drop(input,1),2),2),5),20)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [9, 2]",
    "output": "generated_output : list = sub_n([4, -3],-5)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, 3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(drop([0, -1, 3, -5],2)),4))",
    "io_inp": [
      0,
      -1,
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(drop(input,2)),4))"
  },
  {
    "input": "input : list = [-2, 0, -3, -5, 3, 1]\noutput : list = [-33, -43, -3, -13, -28, -18]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(add_n([-2, 0, -3, -5, 3, 1],3),3)),-5),2)",
    "io_inp": [
      -2,
      0,
      -3,
      -5,
      3,
      1
    ],
    "io_out": [
      -33,
      -43,
      -3,
      -13,
      -28,
      -18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(add_n(input,3),3)),-5),2)"
  },
  {
    "input": "input : list = [3, 4, 3, 3]\noutput : list = [16, 16, 16, 20]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(sort_asc([3, 4, 3, 3]),-2)),4),4)",
    "io_inp": [
      3,
      4,
      3,
      3
    ],
    "io_out": [
      16,
      16,
      16,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(sort_asc(input),-2)),4),4)"
  },
  {
    "input": "input : list = [-5, 0, 2, 5, 2, -5]\noutput : list = [5, 2, 2, 0, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 0, 2, 5, 2, -5])",
    "io_inp": [
      -5,
      0,
      2,
      5,
      2,
      -5
    ],
    "io_out": [
      5,
      2,
      2,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2, 4, 4]\noutput : list = [2, 4, 4, 5]",
    "output": "generated_output : list = reverse(reverse(reverse(take(sort_des([5, 2, 4, 4]),14))))",
    "io_inp": [
      5,
      2,
      4,
      4
    ],
    "io_out": [
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(sort_des(input),14))))"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [12, 12, -6]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(sub_n([5, 5, -4],-1),-1)),23),-2)",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      12,
      12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(sub_n(input,-1),-1)),23),-2)"
  },
  {
    "input": "input : list = [5, 5, 4, 5, -4]\noutput : list = [9, 9, 9, 8, 0]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc([5, 5, 4, 5, -4]),4)))",
    "io_inp": [
      5,
      5,
      4,
      5,
      -4
    ],
    "io_out": [
      9,
      9,
      9,
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [1, 0, -2, 0]\noutput : list = [2, 0, 2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(drop([1, 0, -2, 0],1),-4),4),-1),1)",
    "io_inp": [
      1,
      0,
      -2,
      0
    ],
    "io_out": [
      2,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(drop(input,1),-4),4),-1),1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [6, 7]",
    "output": "generated_output : list = reverse(take(sub_n([4, 3],-3),10))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-3),10))"
  },
  {
    "input": "input : list = [3, -5, -1, -2]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(add_n([3, -5, -1, -2],3)),2),-2))",
    "io_inp": [
      3,
      -5,
      -1,
      -2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(add_n(input,3)),2),-2))"
  },
  {
    "input": "input : list = [3, 3, -5, -2, 4]\noutput : list = [-8, -5, 0, 0, 1]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(sort_des([3, 3, -5, -2, 4]),3),1),26))",
    "io_inp": [
      3,
      3,
      -5,
      -2,
      4
    ],
    "io_out": [
      -8,
      -5,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(sort_des(input),3),1),26))"
  },
  {
    "input": "input : list = [-2, -3, -4, -5]\noutput : list = [-4, -5, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc([-2, -3, -4, -5]),1),-1)))",
    "io_inp": [
      -2,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc(input),1),-1)))"
  },
  {
    "input": "input : list = [2, 5, 0, 1]\noutput : list = [60, 0]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take([2, 5, 0, 1],2),5),5),-4)",
    "io_inp": [
      2,
      5,
      0,
      1
    ],
    "io_out": [
      60,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(input,2),5),5),-4)"
  },
  {
    "input": "input : list = [2, -2, 4, 0, -5, 3]\noutput : list = [4, 3, 2, 0, -2, -5]",
    "output": "generated_output : list = sort_des([2, -2, 4, 0, -5, 3])",
    "io_inp": [
      2,
      -2,
      4,
      0,
      -5,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, 1, 2, 2, -4]\noutput : list = [0]",
    "output": "generated_output : list = add_n(drop(reverse(take(drop([-3, 0, 1, 2, 2, -4],4),19)),1),-2)",
    "io_inp": [
      -3,
      0,
      1,
      2,
      2,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(take(drop(input,4),19)),1),-2)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(sort_asc([0, -5])),-2)))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-2, 3, -4, -4]\noutput : list = [4, 4, 2, -3]",
    "output": "generated_output : list = take(sort_des(take(mul_n(reverse([-2, 3, -4, -4]),-1),23)),42)",
    "io_inp": [
      -2,
      3,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(reverse(input),-1),23)),42)"
  },
  {
    "input": "input : list = [2, -4, 5, -3, -5, -3]\noutput : list = [6]",
    "output": "generated_output : list = add_n(reverse(take([2, -4, 5, -3, -5, -3],1)),4)",
    "io_inp": [
      2,
      -4,
      5,
      -3,
      -5,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,1)),4)"
  },
  {
    "input": "input : list = [0, -2, -5, -3, 3]\noutput : list = [-2, -5, -3, 3]",
    "output": "generated_output : list = drop([0, -2, -5, -3, 3],1)",
    "io_inp": [
      0,
      -2,
      -5,
      -3,
      3
    ],
    "io_out": [
      -2,
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -4, -4, -2, 1]\noutput : list = [0, -7, -7, -5, -2]",
    "output": "generated_output : list = sub_n([3, -4, -4, -2, 1],3)",
    "io_inp": [
      3,
      -4,
      -4,
      -2,
      1
    ],
    "io_out": [
      0,
      -7,
      -7,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, -4, -4, -3, -2]\noutput : list = [-5, -4, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, -4, -4, -3, -2]))",
    "io_inp": [
      -5,
      -4,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -4, 5, -3, -3]\noutput : list = [40, 35, 30, 30, -10]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc([-5, -4, 5, -3, -3]),-3),19),-5)",
    "io_inp": [
      -5,
      -4,
      5,
      -3,
      -3
    ],
    "io_out": [
      40,
      35,
      30,
      30,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(input),-3),19),-5)"
  },
  {
    "input": "input : list = [-4, -5, 3, -5, -3, 4]\noutput : list = [-48, -36, 36, 48, 60, 60]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des([-4, -5, 3, -5, -3, 4]),-4),3))",
    "io_inp": [
      -4,
      -5,
      3,
      -5,
      -3,
      4
    ],
    "io_out": [
      -48,
      -36,
      36,
      48,
      60,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(input),-4),3))"
  },
  {
    "input": "input : list = [-1, 1, 2, -4]\noutput : list = [8, -8, -16, 32]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(reverse([-1, 1, 2, -4])),2),36),-4)",
    "io_inp": [
      -1,
      1,
      2,
      -4
    ],
    "io_out": [
      8,
      -8,
      -16,
      32
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(reverse(input)),2),36),-4)"
  },
  {
    "input": "input : list = [0, -4, 0, -3, -5, 0]\noutput : list = [3, -5]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(take([0, -4, 0, -3, -5, 0],2))),-2),5)",
    "io_inp": [
      0,
      -4,
      0,
      -3,
      -5,
      0
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(take(input,2))),-2),5)"
  },
  {
    "input": "input : list = [-4, -1, 1, -2]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(sub_n(take(take([-4, -1, 1, -2],1),11),5),-2)",
    "io_inp": [
      -4,
      -1,
      1,
      -2
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(input,1),11),5),-2)"
  },
  {
    "input": "input : list = [-2, 1, 4, -4]\noutput : list = [4, 1, -2, -4]",
    "output": "generated_output : list = sort_des([-2, 1, 4, -4])",
    "io_inp": [
      -2,
      1,
      4,
      -4
    ],
    "io_out": [
      4,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, 1, 2, 0]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(drop([-4, 4, 1, 2, 0],3))),-3))",
    "io_inp": [
      -4,
      4,
      1,
      2,
      0
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(drop(input,3))),-3))"
  },
  {
    "input": "input : list = [4, 5, -2, -1, 1]\noutput : list = [-42, -36, -24, -6, 0]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc([4, 5, -2, -1, 1]),5),3),2))",
    "io_inp": [
      4,
      5,
      -2,
      -1,
      1
    ],
    "io_out": [
      -42,
      -36,
      -24,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc(input),5),3),2))"
  },
  {
    "input": "input : list = [-4, 5, -5, -3, 2, 1]\noutput : list = [-16, 20, -20, -12, 8, 4]",
    "output": "generated_output : list = reverse(reverse(mul_n([-4, 5, -5, -3, 2, 1],4)))",
    "io_inp": [
      -4,
      5,
      -5,
      -3,
      2,
      1
    ],
    "io_out": [
      -16,
      20,
      -20,
      -12,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [-5, 3, 2, -5]\noutput : list = [3, 2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 2, -5])",
    "io_inp": [
      -5,
      3,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, 3, -3, -5]\noutput : list = [52, 48, 44, 20, 20]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(sort_asc([3, -4, 3, -3, -5]),5),-3),-4),49)",
    "io_inp": [
      3,
      -4,
      3,
      -3,
      -5
    ],
    "io_out": [
      52,
      48,
      44,
      20,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(sort_asc(input),5),-3),-4),49)"
  },
  {
    "input": "input : list = [-3, -5, 5, 1, 4]\noutput : list = [2, -2, 1]",
    "output": "generated_output : list = add_n(take(reverse(reverse(drop([-3, -5, 5, 1, 4],2))),37),-3)",
    "io_inp": [
      -3,
      -5,
      5,
      1,
      4
    ],
    "io_out": [
      2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(drop(input,2))),37),-3)"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des([-5, -3, -3]),2))",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [1, -4, -4, 4, -1, -5]\noutput : list = [-6, -2, 3, -5, -5, 0]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(reverse([1, -4, -4, 4, -1, -5]))),-5),-4)",
    "io_inp": [
      1,
      -4,
      -4,
      4,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -2,
      3,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(reverse(input))),-5),-4)"
  },
  {
    "input": "input : list = [3, -1, 0, -4]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(take([3, -1, 0, -4],2))",
    "io_inp": [
      3,
      -1,
      0,
      -4
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-1, -2, 1, -2, 2, -2]\noutput : list = [-1, -2, 1, -2]",
    "output": "generated_output : list = take([-1, -2, 1, -2, 2, -2],4)",
    "io_inp": [
      -1,
      -2,
      1,
      -2,
      2,
      -2
    ],
    "io_out": [
      -1,
      -2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [5, -1, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n([-4, -3, 3],3),-3),2))",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(input,3),-3),2))"
  },
  {
    "input": "input : list = [-4, -3, -4, -1, -2]\noutput : list = [-8, -7, -6, -5, -5]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n([-4, -3, -4, -1, -2],-5),-4)),-1)",
    "io_inp": [
      -4,
      -3,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(input,-5),-4)),-1)"
  },
  {
    "input": "input : list = [-5, -3, 3, 2, 4]\noutput : list = [11, 3, -17, -21, -25]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(sub_n([-5, -3, 3, 2, 4],-1),1),-4),5))",
    "io_inp": [
      -5,
      -3,
      3,
      2,
      4
    ],
    "io_out": [
      11,
      3,
      -17,
      -21,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(sub_n(input,-1),1),-4),5))"
  },
  {
    "input": "input : list = [-5, -1, -1, 0, -4]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(take([-5, -1, -1, 0, -4],1))),4))",
    "io_inp": [
      -5,
      -1,
      -1,
      0,
      -4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(take(input,1))),4))"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [-16, -13, -13]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(sub_n([1, 1, -2],5),5)),-4))",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      -16,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(sub_n(input,5),5)),-4))"
  },
  {
    "input": "input : list = [3, 2, -1, -1, 0]\noutput : list = [-6, -6, -5, -3, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(reverse([3, 2, -1, -1, 0]))),-4),1)",
    "io_inp": [
      3,
      2,
      -1,
      -1,
      0
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(reverse(input))),-4),1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [12, 0]",
    "output": "generated_output : list = sort_des(take(reverse(take(mul_n([0, 3],4),3)),30))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(mul_n(input,4),3)),30))"
  },
  {
    "input": "input : list = [-4, 0, 4, -5]\noutput : list = [-9, 0, -4, -8]",
    "output": "generated_output : list = reverse(sub_n([-4, 0, 4, -5],4))",
    "io_inp": [
      -4,
      0,
      4,
      -5
    ],
    "io_out": [
      -9,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-5, -3, -1, 2, -1, -2]\noutput : list = [3, -1, -13]",
    "output": "generated_output : list = reverse(add_n(drop(mul_n(mul_n([-5, -3, -1, 2, -1, -2],4),-1),3),-5))",
    "io_inp": [
      -5,
      -3,
      -1,
      2,
      -1,
      -2
    ],
    "io_out": [
      3,
      -1,
      -13
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(mul_n(mul_n(input,4),-1),3),-5))"
  },
  {
    "input": "input : list = [0, -1, -5, 3]\noutput : list = [5, 4, 0, 8]",
    "output": "generated_output : list = sub_n([0, -1, -5, 3],-5)",
    "io_inp": [
      0,
      -1,
      -5,
      3
    ],
    "io_out": [
      5,
      4,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 2, 0, -4, 4, -5]\noutput : list = [0, -4, 4, -5]",
    "output": "generated_output : list = drop([-3, 2, 0, -4, 4, -5],2)",
    "io_inp": [
      -3,
      2,
      0,
      -4,
      4,
      -5
    ],
    "io_out": [
      0,
      -4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 3, -2, 0, 4]\noutput : list = [-40, 0, 100, 60, -20]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([5, 3, -2, 0, 4],3),-4),5)",
    "io_inp": [
      5,
      3,
      -2,
      0,
      4
    ],
    "io_out": [
      -40,
      0,
      100,
      60,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,3),-4),5)"
  },
  {
    "input": "input : list = [5, 3, 2, 1, -5]\noutput : list = [-1, 5, 6, 7, 9]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n([5, 3, 2, 1, -5],-4)),12))",
    "io_inp": [
      5,
      3,
      2,
      1,
      -5
    ],
    "io_out": [
      -1,
      5,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(input,-4)),12))"
  },
  {
    "input": "input : list = [-4, -5, -5]\noutput : list = [18, 22, 22]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(reverse([-4, -5, -5]),-4),27)),2)",
    "io_inp": [
      -4,
      -5,
      -5
    ],
    "io_out": [
      18,
      22,
      22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(reverse(input),-4),27)),2)"
  },
  {
    "input": "input : list = [2, -1, -4, -1, 3]\noutput : list = [-9, -6, -6, -3, -2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n(sort_asc([2, -1, -4, -1, 3]),-5))))",
    "io_inp": [
      2,
      -1,
      -4,
      -1,
      3
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(sort_asc(input),-5))))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [20, 32]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sub_n([2, 5],-3)),4)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      20,
      32
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sub_n(input,-3)),4)))"
  },
  {
    "input": "input : list = [-2, -3, -4, 4, 1, 4]\noutput : list = [-9, -8, -7, -4, -1, -1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_des([-2, -3, -4, 4, 1, 4]),5)),8))",
    "io_inp": [
      -2,
      -3,
      -4,
      4,
      1,
      4
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_des(input),5)),8))"
  },
  {
    "input": "input : list = [0, 1, -5, 4]\noutput : list = [25, -5]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([0, 1, -5, 4],1),2),-5)))",
    "io_inp": [
      0,
      1,
      -5,
      4
    ],
    "io_out": [
      25,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,1),2),-5)))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sub_n(reverse(sub_n([0, 1],1)),4)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,1)),4)"
  },
  {
    "input": "input : list = [-1, 5, -5]\noutput : list = [15, -15]",
    "output": "generated_output : list = mul_n(drop([-1, 5, -5],1),3)",
    "io_inp": [
      -1,
      5,
      -5
    ],
    "io_out": [
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [-2, 1, 0, 0]\noutput : list = [-9, 6]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(take([-2, 1, 0, 0],2),14),5),4),-3)",
    "io_inp": [
      -2,
      1,
      0,
      0
    ],
    "io_out": [
      -9,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(take(input,2),14),5),4),-3)"
  },
  {
    "input": "input : list = [-4, 4, 5, 5, 1]\noutput : list = [10, 35, 50, 55, 55]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(sort_des([-4, 4, 5, 5, 1]),-3),-3),5))",
    "io_inp": [
      -4,
      4,
      5,
      5,
      1
    ],
    "io_out": [
      10,
      35,
      50,
      55,
      55
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(sort_des(input),-3),-3),5))"
  },
  {
    "input": "input : list = [4, -2, 3, 0, -3, -2]\noutput : list = [-3, -2, -2, 0, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(sort_des([4, -2, 3, 0, -3, -2])),36)))",
    "io_inp": [
      4,
      -2,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(sort_des(input)),36)))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(sort_asc([0, 4])),24)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(sort_asc(input)),24)))"
  },
  {
    "input": "input : list = [3, 2, 5, 4, -2, -5]\noutput : list = [20, 8, -8, -12, -16, -20]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(mul_n([3, 2, 5, 4, -2, -5],1),-4))),52)",
    "io_inp": [
      3,
      2,
      5,
      4,
      -2,
      -5
    ],
    "io_out": [
      20,
      8,
      -8,
      -12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(mul_n(input,1),-4))),52)"
  },
  {
    "input": "input : list = [-2, -2, -5]\noutput : list = [-11, -8, -8]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(add_n([-2, -2, -5],-1)),-4),1),25)",
    "io_inp": [
      -2,
      -2,
      -5
    ],
    "io_out": [
      -11,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(add_n(input,-1)),-4),1),25)"
  },
  {
    "input": "input : list = [0, -1, -3, -5, -1, -2]\noutput : list = [0, 2, 2, 4, 6, 10]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc([0, -1, -3, -5, -1, -2]),-2),26))",
    "io_inp": [
      0,
      -1,
      -3,
      -5,
      -1,
      -2
    ],
    "io_out": [
      0,
      2,
      2,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(input),-2),26))"
  },
  {
    "input": "input : list = [-2, -2, -5, 1]\noutput : list = [-5, -2, -2, 1]",
    "output": "generated_output : list = sort_asc([-2, -2, -5, 1])",
    "io_inp": [
      -2,
      -2,
      -5,
      1
    ],
    "io_out": [
      -5,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, -2, 5, -1]\noutput : list = [-2, -1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(take([3, -3, -2, 5, -1],3)))),-1)",
    "io_inp": [
      3,
      -3,
      -2,
      5,
      -1
    ],
    "io_out": [
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(take(input,3)))),-1)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [10, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_des([-2, -4, -4]))),-5))",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      10,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-5, 2, -3, 3]\noutput : list = [25, -10, 15, -15]",
    "output": "generated_output : list = mul_n([-5, 2, -3, 3],-5)",
    "io_inp": [
      -5,
      2,
      -3,
      3
    ],
    "io_out": [
      25,
      -10,
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 5, 4, -2, -5]\noutput : list = [10, 5, -25, -40, -40]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sub_n([-5, 5, 4, -2, -5],3),5))))",
    "io_inp": [
      -5,
      5,
      4,
      -2,
      -5
    ],
    "io_out": [
      10,
      5,
      -25,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sub_n(input,3),5))))"
  },
  {
    "input": "input : list = [-3, -1, 2, 3, 3, 5]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take(reverse(drop([-3, -1, 2, 3, 3, 5],2)),1),-1)",
    "io_inp": [
      -3,
      -1,
      2,
      3,
      3,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(drop(input,2)),1),-1)"
  },
  {
    "input": "input : list = [-2, -3, -4, 0, 1, 1]\noutput : list = [-1, -1, 0, 2, 3, 4]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sort_des([-2, -3, -4, 0, 1, 1]))),-1),20)",
    "io_inp": [
      -2,
      -3,
      -4,
      0,
      1,
      1
    ],
    "io_out": [
      -1,
      -1,
      0,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sort_des(input))),-1),20)"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [-5, 0, -4]",
    "output": "generated_output : list = reverse([-4, 0, -5])",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, 0, 3]\noutput : list = [6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take([5, -1, 0, 3],1)),-1)))",
    "io_inp": [
      5,
      -1,
      0,
      3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take(input,1)),-1)))"
  },
  {
    "input": "input : list = [-2, -2, -5, 3]\noutput : list = [0, 3, 3, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des([-2, -2, -5, 3]))),-5)",
    "io_inp": [
      -2,
      -2,
      -5,
      3
    ],
    "io_out": [
      0,
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(input))),-5)"
  },
  {
    "input": "input : list = [3, -1, -4, 2]\noutput : list = [4, -2]",
    "output": "generated_output : list = mul_n(drop([3, -1, -4, 2],2),-1)",
    "io_inp": [
      3,
      -1,
      -4,
      2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [-1, 2, -2, -2]\noutput : list = [-7, -7, -6, -3]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(sort_asc([-1, 2, -2, -2]),-2),2),-3),2)",
    "io_inp": [
      -1,
      2,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(sort_asc(input),-2),2),-3),2)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [7, 8, 12]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(reverse([4, 0, -1]),4),-1)),5)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      7,
      8,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(reverse(input),4),-1)),5)"
  },
  {
    "input": "input : list = [-5, -4, -2, -2, -3, -5]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = mul_n(drop([-5, -4, -2, -2, -3, -5],3),-1)",
    "io_inp": [
      -5,
      -4,
      -2,
      -2,
      -3,
      -5
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-1)"
  },
  {
    "input": "input : list = [4, -2, 5, -5]\noutput : list = [29, 24, -6, -21]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(sort_asc([4, -2, 5, -5]),5),-4)),15)",
    "io_inp": [
      4,
      -2,
      5,
      -5
    ],
    "io_out": [
      29,
      24,
      -6,
      -21
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(sort_asc(input),5),-4)),15)"
  },
  {
    "input": "input : list = [-1, 5, 5, -1, 3, 2]\noutput : list = [28]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(add_n([-1, 5, 5, -1, 3, 2],-5)),1),-4),-4)",
    "io_inp": [
      -1,
      5,
      5,
      -1,
      3,
      2
    ],
    "io_out": [
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(add_n(input,-5)),1),-4),-4)"
  },
  {
    "input": "input : list = [-3, -3, -5, 4, 0]\noutput : list = [-5, -3, -3, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -3, -5, 4, 0]))",
    "io_inp": [
      -3,
      -3,
      -5,
      4,
      0
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -4, 2, 5, -5]\noutput : list = [-8, -7, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sort_asc([1, -4, 2, 5, -5])),3)))",
    "io_inp": [
      1,
      -4,
      2,
      5,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(drop(sub_n([-2, 0],1),1)),-1),-4)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(drop(sub_n(input,1),1)),-1),-4)"
  },
  {
    "input": "input : list = [-5, 0, 3, -4]\noutput : list = [-3, 2]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(take([-5, 0, 3, -4],2)),1),-4),-2)",
    "io_inp": [
      -5,
      0,
      3,
      -4
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(take(input,2)),1),-4),-2)"
  },
  {
    "input": "input : list = [3, -4, -5, 5]\noutput : list = [-13, 1, 3, -17]",
    "output": "generated_output : list = add_n(add_n(mul_n([3, -4, -5, 5],-2),-3),-4)",
    "io_inp": [
      3,
      -4,
      -5,
      5
    ],
    "io_out": [
      -13,
      1,
      3,
      -17
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,-2),-3),-4)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(reverse([0, 3]))),-3))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-7, -7]",
    "output": "generated_output : list = add_n(sub_n([-3, -3],-1),-5)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),-5)"
  },
  {
    "input": "input : list = [1, -3, 5, -1, -2, 2]\noutput : list = [-10, 10, 5, -25, 15, -5]",
    "output": "generated_output : list = mul_n(mul_n(reverse([1, -3, 5, -1, -2, 2]),5),-1)",
    "io_inp": [
      1,
      -3,
      5,
      -1,
      -2,
      2
    ],
    "io_out": [
      -10,
      10,
      5,
      -25,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),5),-1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(sub_n([-3, -5],-5),2),4),30))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(sub_n(input,-5),2),4),30))"
  },
  {
    "input": "input : list = [-5, -3, 5, 1]\noutput : list = [-16, -6, 34, 14]",
    "output": "generated_output : list = sub_n(mul_n(take(sub_n(sub_n([-5, -3, 5, 1],2),-4),14),5),1)",
    "io_inp": [
      -5,
      -3,
      5,
      1
    ],
    "io_out": [
      -16,
      -6,
      34,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sub_n(sub_n(input,2),-4),14),5),1)"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = drop([2, -5, 4],1)",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2, 4, -1, 4]\noutput : list = [-16, -16, -8, -8, 4]",
    "output": "generated_output : list = mul_n(sort_des([2, 2, 4, -1, 4]),-4)",
    "io_inp": [
      2,
      2,
      4,
      -1,
      4
    ],
    "io_out": [
      -16,
      -16,
      -8,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [8, 0]",
    "output": "generated_output : list = take(mul_n([4, 0],2),5)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),5)"
  },
  {
    "input": "input : list = [-2, 3, 2, 4, 2, 4]\noutput : list = [3, -2]",
    "output": "generated_output : list = reverse(take([-2, 3, 2, 4, 2, 4],2))",
    "io_inp": [
      -2,
      3,
      2,
      4,
      2,
      4
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-5, 2, 2, -1, 0]\noutput : list = [25, -3, -3, 9, 5]",
    "output": "generated_output : list = mul_n(take(sub_n(take(mul_n([-5, 2, 2, -1, 0],-4),7),-5),33),1)",
    "io_inp": [
      -5,
      2,
      2,
      -1,
      0
    ],
    "io_out": [
      25,
      -3,
      -3,
      9,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(mul_n(input,-4),7),-5),33),1)"
  },
  {
    "input": "input : list = [3, -5, 4, 1]\noutput : list = [-1, -9, 0, -3]",
    "output": "generated_output : list = sub_n([3, -5, 4, 1],4)",
    "io_inp": [
      3,
      -5,
      4,
      1
    ],
    "io_out": [
      -1,
      -9,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, -2, -1, 5, -5]\noutput : list = [5, 2, -1, -2, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_des(sort_asc([2, -2, -1, 5, -5])),18)),22)",
    "io_inp": [
      2,
      -2,
      -1,
      5,
      -5
    ],
    "io_out": [
      5,
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(sort_asc(input)),18)),22)"
  },
  {
    "input": "input : list = [4, 0, -1, -2, -1, 3]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(drop(sort_asc([4, 0, -1, -2, -1, 3]),3),3)),-2)",
    "io_inp": [
      4,
      0,
      -1,
      -2,
      -1,
      3
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(drop(sort_asc(input),3),3)),-2)"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [20, 16, 6]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sub_n([-3, -5, 2],5),-2))),15)",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      20,
      16,
      6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sub_n(input,5),-2))),15)"
  },
  {
    "input": "input : list = [4, 1, -4, -1]\noutput : list = [2, -1, 4, 7]",
    "output": "generated_output : list = add_n(reverse([4, 1, -4, -1]),3)",
    "io_inp": [
      4,
      1,
      -4,
      -1
    ],
    "io_out": [
      2,
      -1,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-4, 2, 1, 3, 5, -5]\noutput : list = [-7, -6, -1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(add_n([-4, 2, 1, 3, 5, -5],-2),28))))",
    "io_inp": [
      -4,
      2,
      1,
      3,
      5,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(add_n(input,-2),28))))"
  },
  {
    "input": "input : list = [5, 5, 4, 4, -4]\noutput : list = [1, -7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(drop([5, 5, 4, 4, -4],3),10),1),5),-1)",
    "io_inp": [
      5,
      5,
      4,
      4,
      -4
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(drop(input,3),10),1),5),-1)"
  },
  {
    "input": "input : list = [5, 0, -2, -3, -4]\noutput : list = [-20, -10, -6, -4, -2]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des([5, 0, -2, -3, -4]),5)),-5),-2)",
    "io_inp": [
      5,
      0,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -20,
      -10,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des(input),5)),-5),-2)"
  },
  {
    "input": "input : list = [3, -4, 1, 5]\noutput : list = [5, 3, 1, -4]",
    "output": "generated_output : list = sort_des([3, -4, 1, 5])",
    "io_inp": [
      3,
      -4,
      1,
      5
    ],
    "io_out": [
      5,
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, -1, -5, 4]\noutput : list = [11, 10, 6, 4, 2]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(sort_asc([-3, 3, -1, -5, 4])),-1),-4),4)",
    "io_inp": [
      -3,
      3,
      -1,
      -5,
      4
    ],
    "io_out": [
      11,
      10,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(sort_asc(input)),-1),-4),4)"
  },
  {
    "input": "input : list = [4, 3, -2, 3, 1]\noutput : list = [2, 4, 14, 4, 8]",
    "output": "generated_output : list = mul_n(add_n([4, 3, -2, 3, 1],-5),-2)",
    "io_inp": [
      4,
      3,
      -2,
      3,
      1
    ],
    "io_out": [
      2,
      4,
      14,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),-2)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc([-1, 1, -4])",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [-8, -1, 1]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(add_n([5, 3, -4],-5),1))),31)",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      -8,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(add_n(input,-5),1))),31)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(sort_des([4, -5])))),2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [-5, -1, -4]\noutput : list = [10, 7, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(add_n([-5, -1, -4],3),1)),4),-5)",
    "io_inp": [
      -5,
      -1,
      -4
    ],
    "io_out": [
      10,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(add_n(input,3),1)),4),-5)"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(take([4, -5, -3],1))),4))",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(take(input,1))),4))"
  },
  {
    "input": "input : list = [-4, -1, -1]\noutput : list = [1, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-4, -1, -1]),-5))",
    "io_inp": [
      -4,
      -1,
      -1
    ],
    "io_out": [
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [-3, -3, -5, -5]\noutput : list = [-5, -5, -3, -3]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -3, -5, -5]))",
    "io_inp": [
      -3,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 3, -1, 2, 2, 1]\noutput : list = [-8, -4, -2, -1, -1, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sort_des([-5, 3, -1, 2, 2, 1]))),3))",
    "io_inp": [
      -5,
      3,
      -1,
      2,
      2,
      1
    ],
    "io_out": [
      -8,
      -4,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sort_des(input))),3))"
  },
  {
    "input": "input : list = [-1, -4, 0, 1, 2, 5]\noutput : list = [8, 2, 0, -2, -4, -10]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse([-1, -4, 0, 1, 2, 5]),23)),-2)",
    "io_inp": [
      -1,
      -4,
      0,
      1,
      2,
      5
    ],
    "io_out": [
      8,
      2,
      0,
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(input),23)),-2)"
  },
  {
    "input": "input : list = [3, 2, 3, 0, 1]\noutput : list = [1, 2, 3, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n([3, 2, 3, 0, 1],1))))",
    "io_inp": [
      3,
      2,
      3,
      0,
      1
    ],
    "io_out": [
      1,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(input,1))))"
  },
  {
    "input": "input : list = [0, -3, 1, 5, 2]\noutput : list = [-64, -28, -16, -4, 32]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(mul_n([0, -3, 1, 5, 2],-4),3),4)))",
    "io_inp": [
      0,
      -3,
      1,
      5,
      2
    ],
    "io_out": [
      -64,
      -28,
      -16,
      -4,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(mul_n(input,-4),3),4)))"
  },
  {
    "input": "input : list = [1, 2, 3, 4]\noutput : list = [4, 3, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, 3, 4])",
    "io_inp": [
      1,
      2,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -2, -1, 4, -2]\noutput : list = [1, 1, -2, -17, -17, -20]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_des([4, 5, -2, -1, 4, -2]),-3),5)),1)",
    "io_inp": [
      4,
      5,
      -2,
      -1,
      4,
      -2
    ],
    "io_out": [
      1,
      1,
      -2,
      -17,
      -17,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_des(input),-3),5)),1)"
  },
  {
    "input": "input : list = [3, -5, -5, 5, 4]\noutput : list = [4, 3, 2, -6, -6]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(add_n(sub_n([3, -5, -5, 5, 4],5),4)),1))",
    "io_inp": [
      3,
      -5,
      -5,
      5,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(add_n(sub_n(input,5),4)),1))"
  },
  {
    "input": "input : list = [-4, -5, -5, 5]\noutput : list = [-10, -10, -8, 10]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(mul_n([-4, -5, -5, 5],2)))),30)",
    "io_inp": [
      -4,
      -5,
      -5,
      5
    ],
    "io_out": [
      -10,
      -10,
      -8,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(mul_n(input,2)))),30)"
  },
  {
    "input": "input : list = [5, -1, 3, 1, 2, 0]\noutput : list = [-3, -9, -5, -7, -6, -8]",
    "output": "generated_output : list = add_n(sub_n([5, -1, 3, 1, 2, 0],5),-3)",
    "io_inp": [
      5,
      -1,
      3,
      1,
      2,
      0
    ],
    "io_out": [
      -3,
      -9,
      -5,
      -7,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-3)"
  },
  {
    "input": "input : list = [-5, -2, 4, -1]\noutput : list = [4, -1, -2, -5]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(sort_asc([-5, -2, 4, -1])),2)),-2)",
    "io_inp": [
      -5,
      -2,
      4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(sort_asc(input)),2)),-2)"
  },
  {
    "input": "input : list = [2, 2, -1, 4, 0]\noutput : list = [2, -6, -22, -22, -38]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(sort_asc([2, 2, -1, 4, 0]),2),-4),4),-2)",
    "io_inp": [
      2,
      2,
      -1,
      4,
      0
    ],
    "io_out": [
      2,
      -6,
      -22,
      -22,
      -38
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(sort_asc(input),2),-4),4),-2)"
  },
  {
    "input": "input : list = [5, -2, -4, 4]\noutput : list = [0, -8, -6]",
    "output": "generated_output : list = take(add_n(add_n(reverse(sub_n([5, -2, -4, 4],1)),1),-4),3)",
    "io_inp": [
      5,
      -2,
      -4,
      4
    ],
    "io_out": [
      0,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(sub_n(input,1)),1),-4),3)"
  },
  {
    "input": "input : list = [4, 0, 1, -1, 4]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des(drop([4, 0, 1, -1, 4],2)))),-2)",
    "io_inp": [
      4,
      0,
      1,
      -1,
      4
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(drop(input,2)))),-2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [76, 64]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(mul_n([-5, -4],-3),-5),1),4))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      76,
      64
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(mul_n(input,-3),-5),1),4))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [20, -10]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(mul_n([-1, 5],5),-2)),-3))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      20,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(mul_n(input,5),-2)),-3))"
  },
  {
    "input": "input : list = [-2, 0, -3, -2, 3]\noutput : list = [-4, -1, -1, 5, 14]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc([-2, 0, -3, -2, 3])),3),5)",
    "io_inp": [
      -2,
      0,
      -3,
      -2,
      3
    ],
    "io_out": [
      -4,
      -1,
      -1,
      5,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(input)),3),5)"
  },
  {
    "input": "input : list = [-5, -1, 4, -3, -4]\noutput : list = [-4, -9, -11, -12, -13]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n([-5, -1, 4, -3, -4],5),3),16))",
    "io_inp": [
      -5,
      -1,
      4,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -9,
      -11,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(input,5),3),16))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [8, -40]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des([2, -4]),-2),2),-4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      8,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(input),-2),2),-4)"
  },
  {
    "input": "input : list = [-1, 4, -1, -5, 4, 4]\noutput : list = [1, 6, 1, -3, 6, 6]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(reverse([-1, 4, -1, -5, 4, 4])))),-2)",
    "io_inp": [
      -1,
      4,
      -1,
      -5,
      4,
      4
    ],
    "io_out": [
      1,
      6,
      1,
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [2, -2, 2]\noutput : list = [-6, 6, -6]",
    "output": "generated_output : list = mul_n([2, -2, 2],-3)",
    "io_inp": [
      2,
      -2,
      2
    ],
    "io_out": [
      -6,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [-13, -3, 22]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n([-4, 1, 3],-5)),2),1)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      -13,
      -3,
      22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(input,-5)),2),1)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc([-3, 5])))))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, 3, 5]\noutput : list = [-5]",
    "output": "generated_output : list = take(take([-5, 3, 5],1),9)",
    "io_inp": [
      -5,
      3,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,1),9)"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(take([4, -2, -3],1),-1),23)),-5)",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(take(input,1),-1),23)),-5)"
  },
  {
    "input": "input : list = [0, 4, -4, -1]\noutput : list = [-25, 15, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(drop([0, 4, -4, -1],1),-5))),5)",
    "io_inp": [
      0,
      4,
      -4,
      -1
    ],
    "io_out": [
      -25,
      15,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(drop(input,1),-5))),5)"
  },
  {
    "input": "input : list = [3, 5, 5, -4, -4]\noutput : list = [0, 0, -2, -9, -9]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(add_n([3, 5, 5, -4, -4],-5),1))))",
    "io_inp": [
      3,
      5,
      5,
      -4,
      -4
    ],
    "io_out": [
      0,
      0,
      -2,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(add_n(input,-5),1))))"
  },
  {
    "input": "input : list = [5, 3, -5, -5, -3, 1]\noutput : list = [-25, -15, 25, 25, 15, -5]",
    "output": "generated_output : list = mul_n([5, 3, -5, -5, -3, 1],-5)",
    "io_inp": [
      5,
      3,
      -5,
      -5,
      -3,
      1
    ],
    "io_out": [
      -25,
      -15,
      25,
      25,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([-1, -5, 5],1)))",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [5, -5, 4, -2, 0, 4]\noutput : list = [-7, -4, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(take(take(take([5, -5, 4, -2, 0, 4],4),22),23)),-2)",
    "io_inp": [
      5,
      -5,
      4,
      -2,
      0,
      4
    ],
    "io_out": [
      -7,
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(take(input,4),22),23)),-2)"
  },
  {
    "input": "input : list = [0, 5, -3]\noutput : list = [-3, 0, 5]",
    "output": "generated_output : list = sort_asc([0, 5, -3])",
    "io_inp": [
      0,
      5,
      -3
    ],
    "io_out": [
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [-3, 0, 1]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take(add_n([0, -1, -4],1),14))))",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(add_n(input,1),14))))"
  },
  {
    "input": "input : list = [3, 3, 2, -4, 2, 1]\noutput : list = [-4, 1, 2, 2, 3, 3]",
    "output": "generated_output : list = take(sort_asc([3, 3, 2, -4, 2, 1]),14)",
    "io_inp": [
      3,
      3,
      2,
      -4,
      2,
      1
    ],
    "io_out": [
      -4,
      1,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc([-3, 1])",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -4, -4, -5, -2]\noutput : list = [-25, -20, -20, -10, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(mul_n([1, -4, -4, -5, -2],5)))))",
    "io_inp": [
      1,
      -4,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -25,
      -20,
      -20,
      -10,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-2, 5, 0, 4, 2, -4]\noutput : list = [15, 12, 6, 0, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([-2, 5, 0, 4, 2, -4],1),23),3)))",
    "io_inp": [
      -2,
      5,
      0,
      4,
      2,
      -4
    ],
    "io_out": [
      15,
      12,
      6,
      0,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,1),23),3)))"
  },
  {
    "input": "input : list = [-4, -2, 5, -3, -1, -4]\noutput : list = [5, -1, -2, -3, -4, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, -2, 5, -3, -1, -4]))",
    "io_inp": [
      -4,
      -2,
      5,
      -3,
      -1,
      -4
    ],
    "io_out": [
      5,
      -1,
      -2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 1, -4]\noutput : list = [-2, 4, -1]",
    "output": "generated_output : list = sub_n([-5, 1, -4],-3)",
    "io_inp": [
      -5,
      1,
      -4
    ],
    "io_out": [
      -2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [-3, 3, 4]",
    "output": "generated_output : list = take(sort_asc([-3, 4, 3]),5)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-1, -5, 0, 3]\noutput : list = [12, 60, 0, -36]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(mul_n([-1, -5, 0, 3],1),4),-3)))",
    "io_inp": [
      -1,
      -5,
      0,
      3
    ],
    "io_out": [
      12,
      60,
      0,
      -36
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(mul_n(input,1),4),-3)))"
  },
  {
    "input": "input : list = [-1, 2, 2]\noutput : list = [17, -31, -31]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n([-1, 2, 2],-4),-4),-1),-1)",
    "io_inp": [
      -1,
      2,
      2
    ],
    "io_out": [
      17,
      -31,
      -31
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(input,-4),-4),-1),-1)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(take(reverse([-5, -2]),10))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),10))"
  },
  {
    "input": "input : list = [-4, 1, -4, 5, 0, -1]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sub_n(take(add_n(take(take([-4, 1, -4, 5, 0, -1],2),27),1),41),4)",
    "io_inp": [
      -4,
      1,
      -4,
      5,
      0,
      -1
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(take(input,2),27),1),41),4)"
  },
  {
    "input": "input : list = [1, -2, 3, -5, 5, -1]\noutput : list = [21, 9]",
    "output": "generated_output : list = add_n(drop(mul_n(add_n(reverse([1, -2, 3, -5, 5, -1]),-3),-4),4),1)",
    "io_inp": [
      1,
      -2,
      3,
      -5,
      5,
      -1
    ],
    "io_out": [
      21,
      9
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(add_n(reverse(input),-3),-4),4),1)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [7, 4, 1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des([-1, 2, -4])),-5))",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(input)),-5))"
  },
  {
    "input": "input : list = [3, 2, 1, 1, -1, 1]\noutput : list = [-4, -8, -12, -12, -20, -12]",
    "output": "generated_output : list = mul_n(add_n([3, 2, 1, 1, -1, 1],-4),4)",
    "io_inp": [
      3,
      2,
      1,
      1,
      -1,
      1
    ],
    "io_out": [
      -4,
      -8,
      -12,
      -12,
      -20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),4)"
  },
  {
    "input": "input : list = [-3, 0, -5, 2]\noutput : list = [0, -7, -2]",
    "output": "generated_output : list = add_n(reverse(drop([-3, 0, -5, 2],1)),-2)",
    "io_inp": [
      -3,
      0,
      -5,
      2
    ],
    "io_out": [
      0,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [32, 8]",
    "output": "generated_output : list = take(mul_n(sub_n([3, -3],-5),4),11)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      32,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,-5),4),11)"
  },
  {
    "input": "input : list = [-3, -4, 1, 4, 0]\noutput : list = [20, 15, 0, -5, -20]",
    "output": "generated_output : list = sort_des(mul_n([-3, -4, 1, 4, 0],-5))",
    "io_inp": [
      -3,
      -4,
      1,
      4,
      0
    ],
    "io_out": [
      20,
      15,
      0,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 2, -3, -2, 1]\noutput : list = [13, 13, 9, -3, -7]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(mul_n([-3, 2, -3, -2, 1],-4),1),-2)),9)",
    "io_inp": [
      -3,
      2,
      -3,
      -2,
      1
    ],
    "io_out": [
      13,
      13,
      9,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(mul_n(input,-4),1),-2)),9)"
  },
  {
    "input": "input : list = [-2, -5, -4, 3, 2]\noutput : list = [-3, 0, -1, -8, -7]",
    "output": "generated_output : list = add_n(mul_n([-2, -5, -4, 3, 2],-1),-5)",
    "io_inp": [
      -2,
      -5,
      -4,
      3,
      2
    ],
    "io_out": [
      -3,
      0,
      -1,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),-5)"
  },
  {
    "input": "input : list = [-5, 1, 5, 2, -3]\noutput : list = [3, -2]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(drop([-5, 1, 5, 2, -3],3),2),-1)))",
    "io_inp": [
      -5,
      1,
      5,
      2,
      -3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(drop(input,3),2),-1)))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n([2, 0],1),1)))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(input,1),1)))"
  },
  {
    "input": "input : list = [1, -5, -5, -5, 1, 4]\noutput : list = [6, 0, 0, 0, 6, 9]",
    "output": "generated_output : list = add_n(mul_n([1, -5, -5, -5, 1, 4],1),5)",
    "io_inp": [
      1,
      -5,
      -5,
      -5,
      1,
      4
    ],
    "io_out": [
      6,
      0,
      0,
      0,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),5)"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [5, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 5])",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 0, -4, 3]\noutput : list = [-3, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n([4, 0, -4, 3],-1))",
    "io_inp": [
      4,
      0,
      -4,
      3
    ],
    "io_out": [
      -3,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [2, 5, 5, -4]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(drop(sort_asc(mul_n(reverse([2, 5, 5, -4]),-1)),3))",
    "io_inp": [
      2,
      5,
      5,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_asc(mul_n(reverse(input),-1)),3))"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [-10, -10]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(drop([-2, -5, -5],1),-5)),29))",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(drop(input,1),-5)),29))"
  },
  {
    "input": "input : list = [0, -4, 4, 3, -1, -3]\noutput : list = [9, 8, 5, 4, 2, 1]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des([0, -4, 4, 3, -1, -3])),5),10)",
    "io_inp": [
      0,
      -4,
      4,
      3,
      -1,
      -3
    ],
    "io_out": [
      9,
      8,
      5,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(input)),5),10)"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = drop([3, 0, -1],1)",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 0, 2, -1, -4, 5]\noutput : list = [-13, -10, -1, 2, 8, 17]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(reverse([-5, 0, 2, -1, -4, 5]),3),2),24))",
    "io_inp": [
      -5,
      0,
      2,
      -1,
      -4,
      5
    ],
    "io_out": [
      -13,
      -10,
      -1,
      2,
      8,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(reverse(input),3),2),24))"
  },
  {
    "input": "input : list = [2, -3, -5, 5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(take([2, -3, -5, 5],1)),10)),3)",
    "io_inp": [
      2,
      -3,
      -5,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(take(input,1)),10)),3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [6, 10]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(sub_n([-1, 3],-1),11),1),1),-4)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(sub_n(input,-1),11),1),1),-4)"
  },
  {
    "input": "input : list = [5, 1, -1, -5, -5, 0]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = take([5, 1, -1, -5, -5, 0],3)",
    "io_inp": [
      5,
      1,
      -1,
      -5,
      -5,
      0
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, 1, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(drop([4, 1, -3, 3],2))",
    "io_inp": [
      4,
      1,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [-7, -2, -7]",
    "output": "generated_output : list = sub_n(sub_n([-2, 3, -2],1),4)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      -7,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),4)"
  },
  {
    "input": "input : list = [4, 4, -3, -5]\noutput : list = [1, 3, 10, 10]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(sub_n([4, 4, -3, -5],-2),2),2)))",
    "io_inp": [
      4,
      4,
      -3,
      -5
    ],
    "io_out": [
      1,
      3,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(sub_n(input,-2),2),2)))"
  },
  {
    "input": "input : list = [1, 1, 3, -1, 1, -4]\noutput : list = [4, 4, 6, 2]",
    "output": "generated_output : list = add_n(take([1, 1, 3, -1, 1, -4],4),3)",
    "io_inp": [
      1,
      1,
      3,
      -1,
      1,
      -4
    ],
    "io_out": [
      4,
      4,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,4),3)"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [-3, -12, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(sub_n([4, -5, 0],-4),-2),5),-3),-5)",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      -3,
      -12,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(sub_n(input,-4),-2),5),-3),-5)"
  },
  {
    "input": "input : list = [0, 5, 1, 4, -3, 0]\noutput : list = [3, 8, 4, 7, 0, 3]",
    "output": "generated_output : list = add_n([0, 5, 1, 4, -3, 0],3)",
    "io_inp": [
      0,
      5,
      1,
      4,
      -3,
      0
    ],
    "io_out": [
      3,
      8,
      4,
      7,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, 2, 0, 2, 0, 5]\noutput : list = [-17, -5, 3, -5, 3, -17]",
    "output": "generated_output : list = take(sub_n(mul_n([5, 2, 0, 2, 0, 5],-4),-3),20)",
    "io_inp": [
      5,
      2,
      0,
      2,
      0,
      5
    ],
    "io_out": [
      -17,
      -5,
      3,
      -5,
      3,
      -17
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,-4),-3),20)"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [5, -1, -4]",
    "output": "generated_output : list = take(sub_n(take(reverse(sort_asc([-2, 4, -5])),11),-1),23)",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(sort_asc(input)),11),-1),23)"
  },
  {
    "input": "input : list = [0, 2, -1, 4, -4, -4]\noutput : list = [4, 2, -1, -4, -4]",
    "output": "generated_output : list = take(sort_des(drop([0, 2, -1, 4, -4, -4],1)),29)",
    "io_inp": [
      0,
      2,
      -1,
      4,
      -4,
      -4
    ],
    "io_out": [
      4,
      2,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,1)),29)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([1, -2]),-2),-5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),-2),-5)"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(take([5, 4, 4],1)))),44)",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(take(input,1)))),44)"
  },
  {
    "input": "input : list = [2, 3, 2, -1, 5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take([2, 3, 2, -1, 5],1))))",
    "io_inp": [
      2,
      3,
      2,
      -1,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(input,1))))"
  },
  {
    "input": "input : list = [-1, 1, -2, 1]\noutput : list = [7, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(take([-1, 1, -2, 1],2),5),-2)))",
    "io_inp": [
      -1,
      1,
      -2,
      1
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(take(input,2),5),-2)))"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [-64, -48, -48]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n([3, 3, 4],4)),-4))",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      -64,
      -48,
      -48
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(input,4)),-4))"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = take(sub_n([4, 2, 1],4),14)",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),14)"
  },
  {
    "input": "input : list = [-4, 1, 5, -3]\noutput : list = [-10, -9, -5, -1]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(reverse([-4, 1, 5, -3])),4),-5),1)",
    "io_inp": [
      -4,
      1,
      5,
      -3
    ],
    "io_out": [
      -10,
      -9,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(reverse(input)),4),-5),1)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-10, 0]",
    "output": "generated_output : list = sort_asc(mul_n([-5, 0],2))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-2, -2, -5, 1]\noutput : list = [-20, -35, -50]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(drop([-2, -2, -5, 1],1),4),-5),-5))",
    "io_inp": [
      -2,
      -2,
      -5,
      1
    ],
    "io_out": [
      -20,
      -35,
      -50
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(drop(input,1),4),-5),-5))"
  },
  {
    "input": "input : list = [3, 2, 5, 5]\noutput : list = [-10, -10, -6, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([3, 2, 5, 5]),-2))",
    "io_inp": [
      3,
      2,
      5,
      5
    ],
    "io_out": [
      -10,
      -10,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [0, -5, -5, -4, 5, -4]\noutput : list = [-8, 1, -8, -9, -9, -4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(reverse([0, -5, -5, -4, 5, -4]),-1),-3),2),-2)",
    "io_inp": [
      0,
      -5,
      -5,
      -4,
      5,
      -4
    ],
    "io_out": [
      -8,
      1,
      -8,
      -9,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(reverse(input),-1),-3),2),-2)"
  },
  {
    "input": "input : list = [5, -2, -4, -1]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(take([5, -2, -4, -1],1)),23),5),-2)",
    "io_inp": [
      5,
      -2,
      -4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(take(input,1)),23),5),-2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -1],-4))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-5, 3, 1, 2, 4, 3]\noutput : list = [4, 3, 2, 1]",
    "output": "generated_output : list = reverse(sort_asc(drop([-5, 3, 1, 2, 4, 3],2)))",
    "io_inp": [
      -5,
      3,
      1,
      2,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [0, 4, 2, -3, -4, -5]\noutput : list = [2, 0, -5, -6, -7]",
    "output": "generated_output : list = sub_n(take(drop([0, 4, 2, -3, -4, -5],1),26),2)",
    "io_inp": [
      0,
      4,
      2,
      -3,
      -4,
      -5
    ],
    "io_out": [
      2,
      0,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,1),26),2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n([3, -5],2)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, -4, -3, 2]\noutput : list = [6, 3, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n([-1, -4, -3, 2],-4))))",
    "io_inp": [
      -1,
      -4,
      -3,
      2
    ],
    "io_out": [
      6,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(input,-4))))"
  },
  {
    "input": "input : list = [-1, -1, -4, -2, 5]\noutput : list = [5, -2, -4, -1, -1]",
    "output": "generated_output : list = reverse([-1, -1, -4, -2, 5])",
    "io_inp": [
      -1,
      -1,
      -4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, -3, 5, 3]\noutput : list = [-9, -9, -3, 9, 15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(reverse([-1, -3, -3, 5, 3])))),3)",
    "io_inp": [
      -1,
      -3,
      -3,
      5,
      3
    ],
    "io_out": [
      -9,
      -9,
      -3,
      9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(sub_n(take([-3, -4, 2],1),-4))",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(input,1),-4))"
  },
  {
    "input": "input : list = [4, 4, 3, 4, -1]\noutput : list = [12, 28, 32, 32, 32]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_des([4, 4, 3, 4, -1]),4)),4))",
    "io_inp": [
      4,
      4,
      3,
      4,
      -1
    ],
    "io_out": [
      12,
      28,
      32,
      32,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_des(input),4)),4))"
  },
  {
    "input": "input : list = [0, -2, -4, -5, 3]\noutput : list = [6, 3, 1, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(sub_n([0, -2, -4, -5, 3],-1),6),-4)),2)",
    "io_inp": [
      0,
      -2,
      -4,
      -5,
      3
    ],
    "io_out": [
      6,
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(sub_n(input,-1),6),-4)),2)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sub_n([3, 4],5)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, 4, 5, 2, -5]\noutput : list = [5, 4, 2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des([-4, 4, 5, 2, -5]))",
    "io_inp": [
      -4,
      4,
      5,
      2,
      -5
    ],
    "io_out": [
      5,
      4,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -4, -2, 5]\noutput : list = [20, -8, -16, -16]",
    "output": "generated_output : list = sort_des(take(take(take(mul_n([-4, -4, -2, 5],4),12),11),35))",
    "io_inp": [
      -4,
      -4,
      -2,
      5
    ],
    "io_out": [
      20,
      -8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(mul_n(input,4),12),11),35))"
  },
  {
    "input": "input : list = [-1, 5, 2, -2, -2]\noutput : list = [-2, -2, -1, 2, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, 2, -2, -2])",
    "io_inp": [
      -1,
      5,
      2,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, 4, 0]\noutput : list = [-7, 1, 1, -3]",
    "output": "generated_output : list = take(add_n([-4, 4, 4, 0],-3),5)",
    "io_inp": [
      -4,
      4,
      4,
      0
    ],
    "io_out": [
      -7,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),5)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-1, 11]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_asc([3, 0]),-1),4)),3)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -1,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_asc(input),-1),4)),3)"
  },
  {
    "input": "input : list = [1, 4, 2, 5, -3, -4]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = drop([1, 4, 2, 5, -3, -4],3)",
    "io_inp": [
      1,
      4,
      2,
      5,
      -3,
      -4
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, 1, 1, -2, 4]\noutput : list = [6, 3, 3, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(sub_n([-4, 1, 1, -2, 4],-2)))))",
    "io_inp": [
      -4,
      1,
      1,
      -2,
      4
    ],
    "io_out": [
      6,
      3,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [4, -2, -1]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(drop([4, -2, -1],1))),-3))",
    "io_inp": [
      4,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(drop(input,1))),-3))"
  },
  {
    "input": "input : list = [-1, -2, 4]\noutput : list = [100, 0, -20]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n([-1, -2, 4],1)),-4),-5))",
    "io_inp": [
      -1,
      -2,
      4
    ],
    "io_out": [
      100,
      0,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n(input,1)),-4),-5))"
  },
  {
    "input": "input : list = [3, -3, -3, -2]\noutput : list = [0, 0, 1, 6]",
    "output": "generated_output : list = add_n(sort_asc([3, -3, -3, -2]),3)",
    "io_inp": [
      3,
      -3,
      -3,
      -2
    ],
    "io_out": [
      0,
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [5, -4, -4, -4, -1, 3]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(take([5, -4, -4, -4, -1, 3],2),2))))",
    "io_inp": [
      5,
      -4,
      -4,
      -4,
      -1,
      3
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(take(input,2),2))))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-5, -15]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n([3, 1],-5)),-1),-1)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(input,-5)),-1),-1)"
  },
  {
    "input": "input : list = [4, -2, 2, 1, 5, 1]\noutput : list = [-2, -6, -2, -3, 1, -5]",
    "output": "generated_output : list = sub_n(sub_n(reverse(take(mul_n([4, -2, 2, 1, 5, 1],-1),23)),2),-1)",
    "io_inp": [
      4,
      -2,
      2,
      1,
      5,
      1
    ],
    "io_out": [
      -2,
      -6,
      -2,
      -3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(take(mul_n(input,-1),23)),2),-1)"
  },
  {
    "input": "input : list = [-5, 5, 0, 3, -3]\noutput : list = [-50, -30, 0, 30, 50]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(mul_n([-5, 5, 0, 3, -3],5),-2))),15)",
    "io_inp": [
      -5,
      5,
      0,
      3,
      -3
    ],
    "io_out": [
      -50,
      -30,
      0,
      30,
      50
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(mul_n(input,5),-2))),15)"
  },
  {
    "input": "input : list = [0, -4, 0, 4, 0, 3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take([0, -4, 0, 4, 0, 3],1)),2))",
    "io_inp": [
      0,
      -4,
      0,
      4,
      0,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(input,1)),2))"
  },
  {
    "input": "input : list = [3, -2, -1, 4, -2]\noutput : list = [-4, -4, -3, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(drop([3, -2, -1, 4, -2],1),17))),-2)",
    "io_inp": [
      3,
      -2,
      -1,
      4,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(drop(input,1),17))),-2)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [12, -9, 18]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n([-2, 5, -4],-3),-2),4),4)",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      12,
      -9,
      18
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(input,-3),-2),4),4)"
  },
  {
    "input": "input : list = [5, -4, -3, 2, 2, 4]\noutput : list = [11, 9, 5, 5, -5, -7]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(mul_n([5, -4, -3, 2, 2, 4],2)),-4),31),-3)",
    "io_inp": [
      5,
      -4,
      -3,
      2,
      2,
      4
    ],
    "io_out": [
      11,
      9,
      5,
      5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(mul_n(input,2)),-4),31),-3)"
  },
  {
    "input": "input : list = [-3, -3, 5, -4]\noutput : list = [8, 0, 0, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_des([-3, -3, 5, -4])),-3)))",
    "io_inp": [
      -3,
      -3,
      5,
      -4
    ],
    "io_out": [
      8,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [-3, -4, 0, 3, -3]\noutput : list = [5, 2, -1, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des([-3, -4, 0, 3, -3]),-2)",
    "io_inp": [
      -3,
      -4,
      0,
      3,
      -3
    ],
    "io_out": [
      5,
      2,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-2, -2, 3, 3]\noutput : list = [-24, -24, -4, -4]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(sub_n([-2, -2, 3, 3],4),-3),-3),4),32)",
    "io_inp": [
      -2,
      -2,
      3,
      3
    ],
    "io_out": [
      -24,
      -24,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(sub_n(input,4),-3),-3),4),32)"
  },
  {
    "input": "input : list = [-1, 5, 0, 1, -3, 0]\noutput : list = [2, 4, 5, 5, 6, 10]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_asc([-1, 5, 0, 1, -3, 0])),5)))",
    "io_inp": [
      -1,
      5,
      0,
      1,
      -3,
      0
    ],
    "io_out": [
      2,
      4,
      5,
      5,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [4, 2, -2, 3, 5]\noutput : list = [3, 2, 1, 0, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(add_n([4, 2, -2, 3, 5],-2)))))",
    "io_inp": [
      4,
      2,
      -2,
      3,
      5
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-4, 0, -2, 5]\noutput : list = [-3, -8, -10, -12]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(mul_n([-4, 0, -2, 5],1),4)),4))",
    "io_inp": [
      -4,
      0,
      -2,
      5
    ],
    "io_out": [
      -3,
      -8,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(mul_n(input,1),4)),4))"
  },
  {
    "input": "input : list = [2, 2, -2, 5]\noutput : list = [2, 2]",
    "output": "generated_output : list = take([2, 2, -2, 5],2)",
    "io_inp": [
      2,
      2,
      -2,
      5
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -4, -1, -1, -2, 1]\noutput : list = [2]",
    "output": "generated_output : list = take(take([2, -4, -1, -1, -2, 1],1),26)",
    "io_inp": [
      2,
      -4,
      -1,
      -1,
      -2,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(input,1),26)"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [-1, -6]",
    "output": "generated_output : list = take(sub_n(drop(take(sub_n([3, 1, -4],-3),11),1),5),26)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(take(sub_n(input,-3),11),1),5),26)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc([-2, 3])",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [28, -12]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des([5, -5]),-4),4)),-4)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      28,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des(input),-4),4)),-4)"
  },
  {
    "input": "input : list = [-3, 2, -3, -2, 3, -2]\noutput : list = [-6, 24, -6]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(drop([-3, 2, -3, -2, 3, -2],3),1),-3),-2))",
    "io_inp": [
      -3,
      2,
      -3,
      -2,
      3,
      -2
    ],
    "io_out": [
      -6,
      24,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(drop(input,3),1),-3),-2))"
  },
  {
    "input": "input : list = [0, -2, 5]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -2, 5],1)",
    "io_inp": [
      0,
      -2,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 2, -3, -2]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(drop([5, 2, -3, -2],1))),39)",
    "io_inp": [
      5,
      2,
      -3,
      -2
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(drop(input,1))),39)"
  },
  {
    "input": "input : list = [-5, -3, -2, -2]\noutput : list = [-9, -11]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(take([-5, -3, -2, -2],2),2),1)),3)",
    "io_inp": [
      -5,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(take(input,2),2),1)),3)"
  },
  {
    "input": "input : list = [-3, -5, -2, -2, -4]\noutput : list = [-3, -2, -1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sub_n([-3, -5, -2, -2, -4],3)))),-5)",
    "io_inp": [
      -3,
      -5,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sub_n(input,3)))),-5)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = take(sort_des([-3, 5, -4]),14)",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [3, 5, -4, 5, -5]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(sub_n(reverse(drop(sort_des([3, 5, -4, 5, -5]),4)),-1),2)",
    "io_inp": [
      3,
      5,
      -4,
      5,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(drop(sort_des(input),4)),-1),2)"
  },
  {
    "input": "input : list = [2, -3, 1, -3, 1, 4]\noutput : list = [10, -15, 5, -15, 5, 20]",
    "output": "generated_output : list = mul_n([2, -3, 1, -3, 1, 4],5)",
    "io_inp": [
      2,
      -3,
      1,
      -3,
      1,
      4
    ],
    "io_out": [
      10,
      -15,
      5,
      -15,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 2, 5, -2]\noutput : list = [0, -3, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n([1, 2, 5, -2],2),18)),-3))",
    "io_inp": [
      1,
      2,
      5,
      -2
    ],
    "io_out": [
      0,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n(input,2),18)),-3))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(add_n([1, -3],-4),-2),-4)),-5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(add_n(input,-4),-2),-4)),-5)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-4, -8]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(sub_n([-3, 1],4))),1))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(sub_n(input,4))),1))"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-25, -17, 11]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(sub_n([-5, -3, 4],2),-1),-4),-3),25)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -25,
      -17,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(sub_n(input,2),-1),-4),-3),25)"
  },
  {
    "input": "input : list = [-1, 3, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(sort_des([-1, 3, -3])))),1)",
    "io_inp": [
      -1,
      3,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [4, 0, 1, 0, 3]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(take([4, 0, 1, 0, 3],3)))),-5)",
    "io_inp": [
      4,
      0,
      1,
      0,
      3
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(take(input,3)))),-5)"
  },
  {
    "input": "input : list = [5, 1, -1, -3]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(take([5, 1, -1, -3],1))),3),2)",
    "io_inp": [
      5,
      1,
      -1,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(take(input,1))),3),2)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sort_asc([-2, 2])),4)))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-4, 3, 3, 0, 3]\noutput : list = [3, 0, 3]",
    "output": "generated_output : list = drop([-4, 3, 3, 0, 3],2)",
    "io_inp": [
      -4,
      3,
      3,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -2, -1, 5, 5, 3]\noutput : list = [1, -1, -5, -9, -13, -13]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(mul_n([1, -2, -1, 5, 5, 3],-2),3))))",
    "io_inp": [
      1,
      -2,
      -1,
      5,
      5,
      3
    ],
    "io_out": [
      1,
      -1,
      -5,
      -9,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(mul_n(input,-2),3))))"
  },
  {
    "input": "input : list = [-3, 3, -4]\noutput : list = [-2, -1, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sub_n([-3, 3, -4],1),3))))",
    "io_inp": [
      -3,
      3,
      -4
    ],
    "io_out": [
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sub_n(input,1),3))))"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [-27, -15, -27]",
    "output": "generated_output : list = mul_n(add_n([5, 1, 5],4),-3)",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      -27,
      -15,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),-3)"
  },
  {
    "input": "input : list = [5, 1, -1, -4]\noutput : list = [-2, -4, -7]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(drop([5, 1, -1, -4],1)),9),1),2)",
    "io_inp": [
      5,
      1,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(drop(input,1)),9),1),2)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [20, -30]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([2, -3]),-2),-5)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      20,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-2),-5)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [6, 3]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(drop([1, 4, 1],1),-2),3)))",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(drop(input,1),-2),3)))"
  },
  {
    "input": "input : list = [-1, -1, -4, 3]\noutput : list = [-5, -12, -9, -9]",
    "output": "generated_output : list = add_n(take(sub_n(take(reverse([-1, -1, -4, 3]),15),3),30),-5)",
    "io_inp": [
      -1,
      -1,
      -4,
      3
    ],
    "io_out": [
      -5,
      -12,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(reverse(input),15),3),30),-5)"
  },
  {
    "input": "input : list = [5, 2, -4]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(sub_n([5, 2, -4],5),1))))",
    "io_inp": [
      5,
      2,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(sub_n(input,5),1))))"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [5, 1, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(sort_asc([0, -5, 4]))),3),2)",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(sort_asc(input))),3),2)"
  },
  {
    "input": "input : list = [-1, 3, 5, -4, 0, 2]\noutput : list = [-2, 2, 4, -5, -1, 1]",
    "output": "generated_output : list = add_n([-1, 3, 5, -4, 0, 2],-1)",
    "io_inp": [
      -1,
      3,
      5,
      -4,
      0,
      2
    ],
    "io_out": [
      -2,
      2,
      4,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, -2, 3, 1, 2, -5]\noutput : list = [2, -2, 3, 1, 2, -5]",
    "output": "generated_output : list = reverse(reverse([2, -2, 3, 1, 2, -5]))",
    "io_inp": [
      2,
      -2,
      3,
      1,
      2,
      -5
    ],
    "io_out": [
      2,
      -2,
      3,
      1,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = reverse([-5, 1])",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, -1, 5, 3, -1]\noutput : list = [5, 5, 3, -1, -1, -1]",
    "output": "generated_output : list = sort_des([5, -1, -1, 5, 3, -1])",
    "io_inp": [
      5,
      -1,
      -1,
      5,
      3,
      -1
    ],
    "io_out": [
      5,
      5,
      3,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(add_n([1, 5],5),-1)),4))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(add_n(input,5),-1)),4))"
  },
  {
    "input": "input : list = [-3, 4, -2, 4, 4]\noutput : list = [5, 5, 5, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des([-3, 4, -2, 4, 4]),1))))",
    "io_inp": [
      -3,
      4,
      -2,
      4,
      4
    ],
    "io_out": [
      5,
      5,
      5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [3, -2, 5, -4, -2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, 5, -4, -2],1)",
    "io_inp": [
      3,
      -2,
      5,
      -4,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -5, 2, 0, 0]\noutput : list = [4, 9]",
    "output": "generated_output : list = sub_n(take(take(add_n(take([-1, 4, -5, 2, 0, 0],2),2),28),23),-3)",
    "io_inp": [
      -1,
      4,
      -5,
      2,
      0,
      0
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(take(input,2),2),28),23),-3)"
  },
  {
    "input": "input : list = [1, 3, -5, 1, 0, -5]\noutput : list = [3, 1, 1, 0, -5, -5]",
    "output": "generated_output : list = sort_des(reverse([1, 3, -5, 1, 0, -5]))",
    "io_inp": [
      1,
      3,
      -5,
      1,
      0,
      -5
    ],
    "io_out": [
      3,
      1,
      1,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = mul_n([-5, 5],-1)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-15, -13]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(sub_n([1, 2],-5),-2))),1)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -15,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(sub_n(input,-5),-2))),1)"
  },
  {
    "input": "input : list = [3, 0, 3]\noutput : list = [7, 4, 7]",
    "output": "generated_output : list = sub_n(reverse(take(add_n([3, 0, 3],-1),12)),-5)",
    "io_inp": [
      3,
      0,
      3
    ],
    "io_out": [
      7,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(input,-1),12)),-5)"
  },
  {
    "input": "input : list = [2, 3, 4, -5]\noutput : list = [-1, 6, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc([2, 3, 4, -5]),4)",
    "io_inp": [
      2,
      3,
      4,
      -5
    ],
    "io_out": [
      -1,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [0, 4, 2, -1, -3]\noutput : list = [-3, -5, -7, -8, -10]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des([0, 4, 2, -1, -3]),-5),2))",
    "io_inp": [
      0,
      4,
      2,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(input),-5),2))"
  },
  {
    "input": "input : list = [1, -4, -2, -5, -2, 0]\noutput : list = [0, 2, 5, 2, 4, -1]",
    "output": "generated_output : list = mul_n(reverse([1, -4, -2, -5, -2, 0]),-1)",
    "io_inp": [
      1,
      -4,
      -2,
      -5,
      -2,
      0
    ],
    "io_out": [
      0,
      2,
      5,
      2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-3, 3, -3, 5]\noutput : list = [-5, 1, -5, 3]",
    "output": "generated_output : list = add_n([-3, 3, -3, 5],-2)",
    "io_inp": [
      -3,
      3,
      -3,
      5
    ],
    "io_out": [
      -5,
      1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -1, -1, -1]\noutput : list = [2, 2, 2, 2]",
    "output": "generated_output : list = mul_n(sort_des([-1, -1, -1, -1]),-2)",
    "io_inp": [
      -1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [2, -3, -2, -4, -1, 0]\noutput : list = [2, 0, -1, -2, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sub_n([2, -3, -2, -4, -1, 0],3)),-3)))",
    "io_inp": [
      2,
      -3,
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sub_n(input,3)),-3)))"
  },
  {
    "input": "input : list = [3, -1, 3]\noutput : list = [5, 5, 1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(sub_n([3, -1, 3],-4),-1)),-1))",
    "io_inp": [
      3,
      -1,
      3
    ],
    "io_out": [
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(sub_n(input,-4),-1)),-1))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(reverse([-3, -2]),2)),25))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(reverse(input),2)),25))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [0, 3]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(add_n([1, 4],2)),21),2),5)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(add_n(input,2)),21),2),5)"
  },
  {
    "input": "input : list = [0, -5, 1, -1, 4, 1]\noutput : list = [0, -5, 1]",
    "output": "generated_output : list = take([0, -5, 1, -1, 4, 1],3)",
    "io_inp": [
      0,
      -5,
      1,
      -1,
      4,
      1
    ],
    "io_out": [
      0,
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [-6, 9, 15]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(sort_des([-3, -5, 2]),-3),9),17))",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      -6,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(sort_des(input),-3),9),17))"
  },
  {
    "input": "input : list = [-4, -3, 1, 1, 1]\noutput : list = [-19, -18, -14, -14, -14]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(sub_n([-4, -3, 1, 1, 1],5),3),1),-5),1)",
    "io_inp": [
      -4,
      -3,
      1,
      1,
      1
    ],
    "io_out": [
      -19,
      -18,
      -14,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(sub_n(input,5),3),1),-5),1)"
  },
  {
    "input": "input : list = [-3, 4, -1, 3, -5]\noutput : list = [-5, 3, -1, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, -1, 3, -5])",
    "io_inp": [
      -3,
      4,
      -1,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      -1,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 2, 4, 1, -2]\noutput : list = [5, 7, 4, 6, 3, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([3, 5, 2, 4, 1, -2],4),-2),-4)",
    "io_inp": [
      3,
      5,
      2,
      4,
      1,
      -2
    ],
    "io_out": [
      5,
      7,
      4,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,4),-2),-4)"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sort_asc([1, 0, 3])))))",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, 0, 5, 2]\noutput : list = [10, 6, 11, 8]",
    "output": "generated_output : list = sub_n(sub_n([4, 0, 5, 2],-4),-2)",
    "io_inp": [
      4,
      0,
      5,
      2
    ],
    "io_out": [
      10,
      6,
      11,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-2)"
  },
  {
    "input": "input : list = [-1, 4, 0, 4, 1]\noutput : list = [3, 0, -3, -12, -12]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(mul_n([-1, 4, 0, 4, 1],-3),-5),5)))",
    "io_inp": [
      -1,
      4,
      0,
      4,
      1
    ],
    "io_out": [
      3,
      0,
      -3,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(mul_n(input,-3),-5),5)))"
  },
  {
    "input": "input : list = [2, -2, -5, 5, 0, -5]\noutput : list = [-12, 8, 23]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(take([2, -2, -5, 5, 0, -5],3),-5),2)))",
    "io_inp": [
      2,
      -2,
      -5,
      5,
      0,
      -5
    ],
    "io_out": [
      -12,
      8,
      23
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(take(input,3),-5),2)))"
  },
  {
    "input": "input : list = [0, 0, -2, -5, 3, -4]\noutput : list = [-6, -5, -3, -1, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sort_asc([0, 0, -2, -5, 3, -4])),2)),1)",
    "io_inp": [
      0,
      0,
      -2,
      -5,
      3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sort_asc(input)),2)),1)"
  },
  {
    "input": "input : list = [-4, 1, 2, 1]\noutput : list = [8, 5, 5, -10]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse([-4, 1, 2, 1])),3),2)",
    "io_inp": [
      -4,
      1,
      2,
      1
    ],
    "io_out": [
      8,
      5,
      5,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(input)),3),2)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [-5, -5, -9]",
    "output": "generated_output : list = add_n([0, 0, -4],-5)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 2, 5, 2, 1]\noutput : list = [64, -32, -80, -32, -16]",
    "output": "generated_output : list = mul_n(mul_n([-4, 2, 5, 2, 1],4),-4)",
    "io_inp": [
      -4,
      2,
      5,
      2,
      1
    ],
    "io_out": [
      64,
      -32,
      -80,
      -32,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),-4)"
  },
  {
    "input": "input : list = [4, 5, -1, 1, -5, 1]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_asc(take([4, 5, -1, 1, -5, 1],1)),28)",
    "io_inp": [
      4,
      5,
      -1,
      1,
      -5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,1)),28)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [16, -48]",
    "output": "generated_output : list = mul_n(take(take(mul_n(sort_asc([3, -1]),-4),8),8),4)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      16,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(sort_asc(input),-4),8),8),4)"
  },
  {
    "input": "input : list = [-4, 4, -5, 1]\noutput : list = [-8, -7, -2, 1]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(sub_n([-4, 4, -5, 1],3)),9)),1)",
    "io_inp": [
      -4,
      4,
      -5,
      1
    ],
    "io_out": [
      -8,
      -7,
      -2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(sub_n(input,3)),9)),1)"
  },
  {
    "input": "input : list = [-3, 2, -2, 1]\noutput : list = [0, -1, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sort_asc([-3, 2, -2, 1]),3),1)),-1)",
    "io_inp": [
      -3,
      2,
      -2,
      1
    ],
    "io_out": [
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sort_asc(input),3),1)),-1)"
  },
  {
    "input": "input : list = [2, 5, -5, -3]\noutput : list = [2, -1, -6, -8]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(sort_des([2, 5, -5, -3]),-4),4),-2),-1)",
    "io_inp": [
      2,
      5,
      -5,
      -3
    ],
    "io_out": [
      2,
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(sort_des(input),-4),4),-2),-1)"
  },
  {
    "input": "input : list = [5, 2, 3, 1, -5, 0]\noutput : list = [0, -5, 1, 3, 2, 5]",
    "output": "generated_output : list = reverse([5, 2, 3, 1, -5, 0])",
    "io_inp": [
      5,
      2,
      3,
      1,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      1,
      3,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, 3, 1, 2]\noutput : list = [3, 5, 7, 15, 17]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(sub_n([-4, -3, 3, 1, 2],3),18),-2),-3))",
    "io_inp": [
      -4,
      -3,
      3,
      1,
      2
    ],
    "io_out": [
      3,
      5,
      7,
      15,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(sub_n(input,3),18),-2),-3))"
  },
  {
    "input": "input : list = [-4, -1, -1, 2]\noutput : list = [15, 6, 6, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(mul_n([-4, -1, -1, 2],-3)))),3)",
    "io_inp": [
      -4,
      -1,
      -1,
      2
    ],
    "io_out": [
      15,
      6,
      6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(mul_n(input,-3)))),3)"
  },
  {
    "input": "input : list = [-3, 5, 1, 4]\noutput : list = [50, 40, 10, -30]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(sort_des([-3, 5, 1, 4])),-2)),-5)",
    "io_inp": [
      -3,
      5,
      1,
      4
    ],
    "io_out": [
      50,
      40,
      10,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(sort_des(input)),-2)),-5)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [15, 15, -20]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([-2, 5, -2],-1)),-5)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      15,
      15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,-1)),-5)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [15, 3, -15]",
    "output": "generated_output : list = reverse(take(mul_n([-5, 1, 5],3),12))",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      15,
      3,
      -15
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,3),12))"
  },
  {
    "input": "input : list = [4, 0, 3, -2, -4, -4]\noutput : list = [10, 10, 6, 2, -4, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(sort_des([4, 0, 3, -2, -4, -4]),-3),2),-2))",
    "io_inp": [
      4,
      0,
      3,
      -2,
      -4,
      -4
    ],
    "io_out": [
      10,
      10,
      6,
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(sort_des(input),-3),2),-2))"
  },
  {
    "input": "input : list = [0, 1, 2, 4]\noutput : list = [6, 8]",
    "output": "generated_output : list = sub_n(sort_asc(drop([0, 1, 2, 4],2)),-4)",
    "io_inp": [
      0,
      1,
      2,
      4
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,2)),-4)"
  },
  {
    "input": "input : list = [2, 3, 0, 5, -5]\noutput : list = [-4, 1, 3, 4, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse([2, 3, 0, 5, -5])),1),-1)",
    "io_inp": [
      2,
      3,
      0,
      5,
      -5
    ],
    "io_out": [
      -4,
      1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(input)),1),-1)"
  },
  {
    "input": "input : list = [-4, 1, 2, 1, 5]\noutput : list = [8, 4, 8, -8]",
    "output": "generated_output : list = take(take(mul_n(drop(sub_n([-4, 1, 2, 1, 5],3),1),-4),9),27)",
    "io_inp": [
      -4,
      1,
      2,
      1,
      5
    ],
    "io_out": [
      8,
      4,
      8,
      -8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(drop(sub_n(input,3),1),-4),9),27)"
  },
  {
    "input": "input : list = [2, -4, 1, 3, 2, 5]\noutput : list = [-6, -1, 0, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([2, -4, 1, 3, 2, 5]),-2))",
    "io_inp": [
      2,
      -4,
      1,
      3,
      2,
      5
    ],
    "io_out": [
      -6,
      -1,
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n([2, 3, 3],-4)))))",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n(add_n([-5, -1],1),-2)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,1),-2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n([2, -2],-2))))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(input,-2))))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc([-2, -2]),-1)),28))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc(input),-1)),28))"
  },
  {
    "input": "input : list = [4, 4, 3, -5, 2, 1]\noutput : list = [3, 4, 4]",
    "output": "generated_output : list = take(mul_n(reverse(take(take([4, 4, 3, -5, 2, 1],3),11)),1),37)",
    "io_inp": [
      4,
      4,
      3,
      -5,
      2,
      1
    ],
    "io_out": [
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(take(input,3),11)),1),37)"
  },
  {
    "input": "input : list = [0, 1, 2, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(take([0, 1, 2, -3],1)),7)))",
    "io_inp": [
      0,
      1,
      2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(take(input,1)),7)))"
  },
  {
    "input": "input : list = [-1, 1, 1, 3]\noutput : list = [3, 5, 5, 7]",
    "output": "generated_output : list = sub_n([-1, 1, 1, 3],-4)",
    "io_inp": [
      -1,
      1,
      1,
      3
    ],
    "io_out": [
      3,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -2, -1],1)",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 3, 2, -1]\noutput : list = [-16, -4]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(take([-3, 3, 2, -1],2),-5),2),8))",
    "io_inp": [
      -3,
      3,
      2,
      -1
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(take(input,2),-5),2),8))"
  },
  {
    "input": "input : list = [-2, 1, 4, -4, 5, 3]\noutput : list = [10, 9, 8, 1]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(drop([-2, 1, 4, -4, 5, 3],2)),5)),15)",
    "io_inp": [
      -2,
      1,
      4,
      -4,
      5,
      3
    ],
    "io_out": [
      10,
      9,
      8,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(drop(input,2)),5)),15)"
  },
  {
    "input": "input : list = [4, 0, 3]\noutput : list = [-4, -8, -20]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(sub_n([4, 0, 3],4),4))),4)",
    "io_inp": [
      4,
      0,
      3
    ],
    "io_out": [
      -4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(sub_n(input,4),4))),4)"
  },
  {
    "input": "input : list = [-4, -5, -5, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(drop([-4, -5, -5, -1],2),1)),38))",
    "io_inp": [
      -4,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(drop(input,2),1)),38))"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [-7, -3, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(add_n([-2, 5, 2],-4)),-1),-1),3)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      -7,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(add_n(input,-4)),-1),-1),3)"
  },
  {
    "input": "input : list = [-3, -5, 0, -5, -2, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(take([-3, -5, 0, -5, -2, 5],1),-2),4)))",
    "io_inp": [
      -3,
      -5,
      0,
      -5,
      -2,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(take(input,1),-2),4)))"
  },
  {
    "input": "input : list = [4, 4, 4, 2, -2, -2]\noutput : list = [-3, -3, 1, 3, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(drop([4, 4, 4, 2, -2, -2],1))),31),1)",
    "io_inp": [
      4,
      4,
      4,
      2,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(drop(input,1))),31),1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [25, 25]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(reverse([-5, -5])),25),-5))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      25,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(reverse(input)),25),-5))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-9, -5]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(add_n([0, -4],4),2),-3),19),-1)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(add_n(input,4),2),-3),19),-1)"
  },
  {
    "input": "input : list = [0, 5, -4, -5]\noutput : list = [-5, -4, 5, 0]",
    "output": "generated_output : list = reverse([0, 5, -4, -5])",
    "io_inp": [
      0,
      5,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = drop([5, -5, -4],1)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -4, -4, 2]\noutput : list = [-21, 33, 33, 33]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(reverse([-4, -4, -4, 2]),3),-3)),3)",
    "io_inp": [
      -4,
      -4,
      -4,
      2
    ],
    "io_out": [
      -21,
      33,
      33,
      33
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(reverse(input),3),-3)),3)"
  },
  {
    "input": "input : list = [-3, 1, -1, -2, 0, 2]\noutput : list = [-3, -2, -1, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, 1, -1, -2, 0, 2]))",
    "io_inp": [
      -3,
      1,
      -1,
      -2,
      0,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [-10, -10, -7]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(sort_asc([-5, -2, -5])))),-5)",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [2, -3, 5, -3, 5, 4]\noutput : list = [12, 12, 10, 6, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(mul_n([2, -3, 5, -3, 5, 4],2),-4),2)))",
    "io_inp": [
      2,
      -3,
      5,
      -3,
      5,
      4
    ],
    "io_out": [
      12,
      12,
      10,
      6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(mul_n(input,2),-4),2)))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = add_n(sort_asc([-4, 0]),3)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [1, 3, -4, -1, 3]\noutput : list = [25, 25, 9, -7, -31]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n([1, 3, -4, -1, 3],-2),-4))),-1)",
    "io_inp": [
      1,
      3,
      -4,
      -1,
      3
    ],
    "io_out": [
      25,
      25,
      9,
      -7,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n(input,-2),-4))),-1)"
  },
  {
    "input": "input : list = [-5, 2, -2, -4, -4, 3]\noutput : list = [-15, -13, -13, -9, -1, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(mul_n([-5, 2, -2, -4, -4, 3],2))),5),45)",
    "io_inp": [
      -5,
      2,
      -2,
      -4,
      -4,
      3
    ],
    "io_out": [
      -15,
      -13,
      -13,
      -9,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(mul_n(input,2))),5),45)"
  },
  {
    "input": "input : list = [-4, -2, -2, 2]\noutput : list = [-3, -7, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n([-4, -2, -2, 2],5))",
    "io_inp": [
      -4,
      -2,
      -2,
      2
    ],
    "io_out": [
      -3,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [1, -2, 5, 3, 3, 2]\noutput : list = [-2, 1, 2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([1, -2, 5, 3, 3, 2])",
    "io_inp": [
      1,
      -2,
      5,
      3,
      3,
      2
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -5, 2, -3, 2, 1]\noutput : list = [-14, -14, -12, -4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(drop([-5, -5, 2, -3, 2, 1],2)),-5)),-2)",
    "io_inp": [
      -5,
      -5,
      2,
      -3,
      2,
      1
    ],
    "io_out": [
      -14,
      -14,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(drop(input,2)),-5)),-2)"
  },
  {
    "input": "input : list = [2, -1, 5]\noutput : list = [21, 12, 3]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc([2, -1, 5]),2))),3)",
    "io_inp": [
      2,
      -1,
      5
    ],
    "io_out": [
      21,
      12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc(input),2))),3)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-13, 17]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_des([-5, 5]),-3)),-2))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -13,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_des(input),-3)),-2))"
  },
  {
    "input": "input : list = [2, -5, 3, 3, 2, -3]\noutput : list = [-3, -3, 0, 0, 15, 21]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(reverse([2, -5, 3, 3, 2, -3])),-3),4),2)",
    "io_inp": [
      2,
      -5,
      3,
      3,
      2,
      -3
    ],
    "io_out": [
      -3,
      -3,
      0,
      0,
      15,
      21
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(reverse(input)),-3),4),2)"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [-6, 9, 15]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n([3, 5, -2],3),9)))",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      -6,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(input,3),9)))"
  },
  {
    "input": "input : list = [0, 3, -5, 4, 2]\noutput : list = [0, 3, -5, 4, 2]",
    "output": "generated_output : list = sub_n(sub_n([0, 3, -5, 4, 2],-3),3)",
    "io_inp": [
      0,
      3,
      -5,
      4,
      2
    ],
    "io_out": [
      0,
      3,
      -5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),3)"
  },
  {
    "input": "input : list = [-2, 3, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(mul_n(take(take(take([-2, 3, 5],1),2),18),-2))",
    "io_inp": [
      -2,
      3,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(take(input,1),2),18),-2))"
  },
  {
    "input": "input : list = [1, 3, -4, 4, 5, -2]\noutput : list = [6, 5, 4, 2, -1, -3]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des([1, 3, -4, 4, 5, -2]),-4)),2),3)",
    "io_inp": [
      1,
      3,
      -4,
      4,
      5,
      -2
    ],
    "io_out": [
      6,
      5,
      4,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des(input),-4)),2),3)"
  },
  {
    "input": "input : list = [-2, -1, -3, 0, 2]\noutput : list = [-15, -10, -5]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(take([-2, -1, -3, 0, 2],3)),3)),5)",
    "io_inp": [
      -2,
      -1,
      -3,
      0,
      2
    ],
    "io_out": [
      -15,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(take(input,3)),3)),5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sub_n([-2, -1],4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [0, 5, 0, 2, -3]\noutput : list = [-15, -30, -15]",
    "output": "generated_output : list = mul_n(reverse(add_n(take([0, 5, 0, 2, -3],3),5)),-3)",
    "io_inp": [
      0,
      5,
      0,
      2,
      -3
    ],
    "io_out": [
      -15,
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(input,3),5)),-3)"
  },
  {
    "input": "input : list = [4, -1, 1, -5, 5, 4]\noutput : list = [5, 4, 4, 1, -1, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des([4, -1, 1, -5, 5, 4])))",
    "io_inp": [
      4,
      -1,
      1,
      -5,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-5, -1, 1, 4, 0, 1]\noutput : list = [0, -3, -3, -4, -5, -9]",
    "output": "generated_output : list = take(sort_des(sort_des(take(sub_n([-5, -1, 1, 4, 0, 1],4),7))),53)",
    "io_inp": [
      -5,
      -1,
      1,
      4,
      0,
      1
    ],
    "io_out": [
      0,
      -3,
      -3,
      -4,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(sub_n(input,4),7))),53)"
  },
  {
    "input": "input : list = [-5, -4, -2, 3, 3, 5]\noutput : list = [-10, -8, -4, 6, 6, 10]",
    "output": "generated_output : list = mul_n([-5, -4, -2, 3, 3, 5],2)",
    "io_inp": [
      -5,
      -4,
      -2,
      3,
      3,
      5
    ],
    "io_out": [
      -10,
      -8,
      -4,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-4, -12]",
    "output": "generated_output : list = mul_n(sub_n([-3, -5],-2),4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),4)"
  },
  {
    "input": "input : list = [-3, 4, 1, 4, 4, -5]\noutput : list = [4, 4, 4, 1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(sort_asc([-3, 4, 1, 4, 4, -5]),14))))",
    "io_inp": [
      -3,
      4,
      1,
      4,
      4,
      -5
    ],
    "io_out": [
      4,
      4,
      4,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(sort_asc(input),14))))"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [3, -7, -22]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(mul_n([0, 5, 2],-5),-4),2),1))",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      3,
      -7,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(mul_n(input,-5),-4),2),1))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [6, -2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([4, -4],2)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,2)))"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = add_n(mul_n([-2, -1, 0],-1),-2)",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),-2)"
  },
  {
    "input": "input : list = [-3, 4, -2, -2, -2, -3]\noutput : list = [12, 6, 6, 6, 5, 5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc([-3, 4, -2, -2, -2, -3]),-4),4)))",
    "io_inp": [
      -3,
      4,
      -2,
      -2,
      -2,
      -3
    ],
    "io_out": [
      12,
      6,
      6,
      6,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc(input),-4),4)))"
  },
  {
    "input": "input : list = [4, -5, 1, 0, 1, 4]\noutput : list = [-5, 0, 1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, -5, 1, 0, 1, 4])",
    "io_inp": [
      4,
      -5,
      1,
      0,
      1,
      4
    ],
    "io_out": [
      -5,
      0,
      1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, -1, -4]\noutput : list = [12, -8, -12, -24]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(add_n([0, 5, -1, -4],-2))),4))",
    "io_inp": [
      0,
      5,
      -1,
      -4
    ],
    "io_out": [
      12,
      -8,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(add_n(input,-2))),4))"
  },
  {
    "input": "input : list = [-3, -3, -4, 1, -4, -4]\noutput : list = [1, -3, -3, -4, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-3, -3, -4, 1, -4, -4]))",
    "io_inp": [
      -3,
      -3,
      -4,
      1,
      -4,
      -4
    ],
    "io_out": [
      1,
      -3,
      -3,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -5, 1]\noutput : list = [-48]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(take([5, -5, 1],1),-4)),-5),-3)",
    "io_inp": [
      5,
      -5,
      1
    ],
    "io_out": [
      -48
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(take(input,1),-4)),-5),-3)"
  },
  {
    "input": "input : list = [-3, -5, 5, -1, 4]\noutput : list = [-12, -9, 6, 12, 18]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(mul_n([-3, -5, 5, -1, 4],-3),-1),33)),-2)",
    "io_inp": [
      -3,
      -5,
      5,
      -1,
      4
    ],
    "io_out": [
      -12,
      -9,
      6,
      12,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(mul_n(input,-3),-1),33)),-2)"
  },
  {
    "input": "input : list = [-3, 1, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop([-3, 1, -2, 4],2)",
    "io_inp": [
      -3,
      1,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 5, -5, -5]\noutput : list = [-15, -15, 15, 15]",
    "output": "generated_output : list = take(mul_n(reverse([5, 5, -5, -5]),3),5)",
    "io_inp": [
      5,
      5,
      -5,
      -5
    ],
    "io_out": [
      -15,
      -15,
      15,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),3),5)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [1, -8, -9]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([4, 5, -5],4)),-1)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      1,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,4)),-1)"
  },
  {
    "input": "input : list = [0, -2, 1, -2, 5, -5]\noutput : list = [-15, -9, -9, -5, -3, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(mul_n([0, -2, 1, -2, 5, -5],2))),5))",
    "io_inp": [
      0,
      -2,
      1,
      -2,
      5,
      -5
    ],
    "io_out": [
      -15,
      -9,
      -9,
      -5,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(mul_n(input,2))),5))"
  },
  {
    "input": "input : list = [-5, 0, 3, 3, 1]\noutput : list = [1, 3, 3, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, 3, 3, 1])",
    "io_inp": [
      -5,
      0,
      3,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, -3, -5, 5, -2]\noutput : list = [-22, -18, -18, 6, 10, 18]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(reverse([4, 4, -3, -5, 5, -2]),-4),33)),2)",
    "io_inp": [
      4,
      4,
      -3,
      -5,
      5,
      -2
    ],
    "io_out": [
      -22,
      -18,
      -18,
      6,
      10,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(reverse(input),-4),33)),2)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-1, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(sort_asc([-4, 3]))),4))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [2, -5, -1, 0]\noutput : list = [-40, -20, -10, 30]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n([2, -5, -1, 0],-2),-4),5)))",
    "io_inp": [
      2,
      -5,
      -1,
      0
    ],
    "io_out": [
      -40,
      -20,
      -10,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n(input,-2),-4),5)))"
  },
  {
    "input": "input : list = [-2, 2, -3, -4, -4]\noutput : list = [-4, 4, -6, -8, -8]",
    "output": "generated_output : list = mul_n([-2, 2, -3, -4, -4],2)",
    "io_inp": [
      -2,
      2,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      4,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 4, -5, -3, 1]\noutput : list = [-5, -5, -3, 1, 4]",
    "output": "generated_output : list = take(take(sort_asc(sort_asc(sort_des([-5, 4, -5, -3, 1]))),23),21)",
    "io_inp": [
      -5,
      4,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_asc(sort_des(input))),23),21)"
  },
  {
    "input": "input : list = [-5, 3, 1, -3, 4]\noutput : list = [7, 6, 4, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(reverse([-5, 3, 1, -3, 4])),-3)))",
    "io_inp": [
      -5,
      3,
      1,
      -3,
      4
    ],
    "io_out": [
      7,
      6,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [2, 5, 5, 0]\noutput : list = [-1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n([2, 5, 5, 0],1))",
    "io_inp": [
      2,
      5,
      5,
      0
    ],
    "io_out": [
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [2, 3, -2, 2]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(drop([2, 3, -2, 2],2)),-3),-1),32)",
    "io_inp": [
      2,
      3,
      -2,
      2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(drop(input,2)),-3),-1),32)"
  },
  {
    "input": "input : list = [0, 1, -2, 1, -3]\noutput : list = [7, 6]",
    "output": "generated_output : list = add_n(mul_n(sub_n(reverse(take([0, 1, -2, 1, -3],2)),-4),1),2)",
    "io_inp": [
      0,
      1,
      -2,
      1,
      -3
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(reverse(take(input,2)),-4),1),2)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(reverse(take(reverse(reverse([-5, 5])),22)))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(reverse(input)),22)))"
  },
  {
    "input": "input : list = [1, -3, -3, -1]\noutput : list = [1, 1, 3, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc([1, -3, -3, -1]),19)),-4)",
    "io_inp": [
      1,
      -3,
      -3,
      -1
    ],
    "io_out": [
      1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(input),19)),-4)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [3, 5]",
    "output": "generated_output : list = sub_n(reverse([1, -1]),-4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-5, -2, -3]\noutput : list = [-7, -5, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(add_n([-5, -2, -3],5),-5)),3),5)",
    "io_inp": [
      -5,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(add_n(input,5),-5)),3),5)"
  },
  {
    "input": "input : list = [-2, 1, -5, -2]\noutput : list = [2, 5, -1, 2]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(reverse([-2, 1, -5, -2]),17)),1),4)",
    "io_inp": [
      -2,
      1,
      -5,
      -2
    ],
    "io_out": [
      2,
      5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(reverse(input),17)),1),4)"
  },
  {
    "input": "input : list = [-1, -5, 2, -5, -3, 5]\noutput : list = [-25, -25, -15, -5, 10, 25]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-1, -5, 2, -5, -3, 5])),5)",
    "io_inp": [
      -1,
      -5,
      2,
      -5,
      -3,
      5
    ],
    "io_out": [
      -25,
      -25,
      -15,
      -5,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(reverse([-1, 0]))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [25, 10]",
    "output": "generated_output : list = mul_n([-5, -2],-5)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(take(add_n(take(drop([-1, -5, -4],1),1),-3),6))",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(drop(input,1),1),-3),6))"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-1, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(reverse([0, -3, -3]),-5),-1)),-3)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(reverse(input),-5),-1)),-3)"
  },
  {
    "input": "input : list = [2, -4, -2, -2, 1, -2]\noutput : list = [4, 3, 0, 0, 0, -2]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(add_n([2, -4, -2, -2, 1, -2],3),-1)),36))",
    "io_inp": [
      2,
      -4,
      -2,
      -2,
      1,
      -2
    ],
    "io_out": [
      4,
      3,
      0,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(add_n(input,3),-1)),36))"
  },
  {
    "input": "input : list = [-2, -4, 2, -4, 4]\noutput : list = [-8, -8, 0, 16, 24]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(reverse([-2, -4, 2, -4, 4]),2),4)))",
    "io_inp": [
      -2,
      -4,
      2,
      -4,
      4
    ],
    "io_out": [
      -8,
      -8,
      0,
      16,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(reverse(input),2),4)))"
  },
  {
    "input": "input : list = [-2, 0, 5, 2, 2]\noutput : list = [-5, -2, -2]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(sort_des([-2, 0, 5, 2, 2]),3),-1),12))",
    "io_inp": [
      -2,
      0,
      5,
      2,
      2
    ],
    "io_out": [
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(sort_des(input),3),-1),12))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [4, 4]",
    "output": "generated_output : list = sub_n([0, 0],-4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3, 3, -4, 2]\noutput : list = [-8, -8, -8, -5, 13]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(mul_n([3, 3, 3, -4, 2],-3)),1),3),-5)",
    "io_inp": [
      3,
      3,
      3,
      -4,
      2
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -5,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(mul_n(input,-3)),1),3),-5)"
  },
  {
    "input": "input : list = [3, 2, 0]\noutput : list = [-5, -10, -20]",
    "output": "generated_output : list = add_n(mul_n(add_n([3, 2, 0],-5),5),5)",
    "io_inp": [
      3,
      2,
      0
    ],
    "io_out": [
      -5,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-5),5),5)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des([-4, 0])",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, 5, 4]\noutput : list = [12, 11, 11, 2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n([-5, 4, 5, 4],4)),3))",
    "io_inp": [
      -5,
      4,
      5,
      4
    ],
    "io_out": [
      12,
      11,
      11,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(input,4)),3))"
  },
  {
    "input": "input : list = [4, 2, -1, -2, 3, 2]\noutput : list = [4, 3, 2, 2, -1, -2]",
    "output": "generated_output : list = sort_des([4, 2, -1, -2, 3, 2])",
    "io_inp": [
      4,
      2,
      -1,
      -2,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [10, 5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-4, 1],-5)),-4)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-5)),-4)"
  },
  {
    "input": "input : list = [3, 2, 0, 1]\noutput : list = [-9, -6, -3, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse([3, 2, 0, 1]),11)),-3))",
    "io_inp": [
      3,
      2,
      0,
      1
    ],
    "io_out": [
      -9,
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse(input),11)),-3))"
  },
  {
    "input": "input : list = [-1, 3, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(drop([-1, 3, -1, 1],2)),4)),4)",
    "io_inp": [
      -1,
      3,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(drop(input,2)),4)),4)"
  },
  {
    "input": "input : list = [-1, -2, -4, -4, -4, -4]\noutput : list = [-4, -5, -7, -7, -7, -7]",
    "output": "generated_output : list = add_n([-1, -2, -4, -4, -4, -4],-3)",
    "io_inp": [
      -1,
      -2,
      -4,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [5, -1, -4, 3]\noutput : list = [16, 4, -12]",
    "output": "generated_output : list = sort_des(mul_n(reverse(drop([5, -1, -4, 3],1)),-4))",
    "io_inp": [
      5,
      -1,
      -4,
      3
    ],
    "io_out": [
      16,
      4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(drop(input,1)),-4))"
  },
  {
    "input": "input : list = [-3, 3, -3]\noutput : list = [-6, 0, -6]",
    "output": "generated_output : list = add_n([-3, 3, -3],-3)",
    "io_inp": [
      -3,
      3,
      -3
    ],
    "io_out": [
      -6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [8, 5, 9]",
    "output": "generated_output : list = add_n([4, 1, 5],4)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      8,
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, -1, -1, -5, -4, -2]\noutput : list = [4, -1, -1, -5, -4, -2]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(sub_n([4, -1, -1, -5, -4, -2],-2))),-5),3)",
    "io_inp": [
      4,
      -1,
      -1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      4,
      -1,
      -1,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(sub_n(input,-2))),-5),3)"
  },
  {
    "input": "input : list = [1, 2, -3, 5, 2, 2]\noutput : list = [2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(drop([1, 2, -3, 5, 2, 2],3)))))",
    "io_inp": [
      1,
      2,
      -3,
      5,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(drop(input,3)))))"
  },
  {
    "input": "input : list = [4, 5, -2, -5, 4, 2]\noutput : list = [2, 4, -5, -2, 5, 4]",
    "output": "generated_output : list = reverse([4, 5, -2, -5, 4, 2])",
    "io_inp": [
      4,
      5,
      -2,
      -5,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      -5,
      -2,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4, -5, 2, -4]\noutput : list = [16, 4, -20, -20, -24]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sort_des([5, -4, -5, 2, -4])),2),2),4)",
    "io_inp": [
      5,
      -4,
      -5,
      2,
      -4
    ],
    "io_out": [
      16,
      4,
      -20,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sort_des(input)),2),2),4)"
  },
  {
    "input": "input : list = [3, 5, -4, 3]\noutput : list = [-160, -96, -96, 128]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(mul_n([3, 5, -4, 3],-4),-2),-4)),1)",
    "io_inp": [
      3,
      5,
      -4,
      3
    ],
    "io_out": [
      -160,
      -96,
      -96,
      128
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(mul_n(input,-4),-2),-4)),1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-9, -27]",
    "output": "generated_output : list = reverse(take(mul_n(take(add_n([4, -2],5),13),-3),30))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -9,
      -27
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(add_n(input,5),13),-3),30))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-37, -17]",
    "output": "generated_output : list = sub_n(mul_n(add_n([5, 1],2),-5),2)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -37,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,2),-5),2)"
  },
  {
    "input": "input : list = [1, 4, 1, -3, -3, 5]\noutput : list = [-60, -48, -12, -12, 36, 36]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(mul_n([1, 4, 1, -3, -3, 5],4)),-3)))",
    "io_inp": [
      1,
      4,
      1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -60,
      -48,
      -12,
      -12,
      36,
      36
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(mul_n(input,4)),-3)))"
  },
  {
    "input": "input : list = [0, 5, -3]\noutput : list = [3, -2, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n([0, 5, -3],3))),-1)",
    "io_inp": [
      0,
      5,
      -3
    ],
    "io_out": [
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(input,3))),-1)"
  },
  {
    "input": "input : list = [1, 1, -1, 4, -1, -2]\noutput : list = [2]",
    "output": "generated_output : list = drop(sort_des(sub_n(add_n(take([1, 1, -1, 4, -1, -2],2),-1),-2)),1)",
    "io_inp": [
      1,
      1,
      -1,
      4,
      -1,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(add_n(take(input,2),-1),-2)),1)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [6]",
    "output": "generated_output : list = reverse(sub_n(take(take(take([2, -5, -3],1),10),9),-4))",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(take(input,1),10),9),-4))"
  },
  {
    "input": "input : list = [-4, -3, -3, -2]\noutput : list = [-7, -6, -6, -5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([-4, -3, -3, -2],-3)))",
    "io_inp": [
      -4,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-3)))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(add_n([-5, -1],3))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, -3, -1, 3, 1, 2]\noutput : list = [-1, 1, 3, 5, 6, 7]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(sort_des([-5, -3, -1, 3, 1, 2]),4))))",
    "io_inp": [
      -5,
      -3,
      -1,
      3,
      1,
      2
    ],
    "io_out": [
      -1,
      1,
      3,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-1, -3, -2, 1]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(take([-1, -3, -2, 1],2))),-2))",
    "io_inp": [
      -1,
      -3,
      -2,
      1
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(take(input,2))),-2))"
  },
  {
    "input": "input : list = [-2, 4, 3, -3, -3, -5]\noutput : list = [5, 4, -1, -2, -2, -4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-2, 4, 3, -3, -3, -5],-1)),1)",
    "io_inp": [
      -2,
      4,
      3,
      -3,
      -3,
      -5
    ],
    "io_out": [
      5,
      4,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-1)),1)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [8, -6]",
    "output": "generated_output : list = mul_n(take(take(sub_n(reverse([-3, 2, -5]),-1),2),29),-2)",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(reverse(input),-1),2),29),-2)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n([2, 3, 1],5)))),1)",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n(input,5)))),1)"
  },
  {
    "input": "input : list = [4, 3, 1, 5]\noutput : list = [0, 2, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sort_des([4, 3, 1, 5])))),1)",
    "io_inp": [
      4,
      3,
      1,
      5
    ],
    "io_out": [
      0,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [-5, -5, -3]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(take([-5, -5, -3],1)),24)),-2)",
    "io_inp": [
      -5,
      -5,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(take(input,1)),24)),-2)"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [49, 64, 79]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(add_n([-2, -1, 0],5),-5),-1),3),4)",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      49,
      64,
      79
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(add_n(input,5),-5),-1),3),4)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [7, 13]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(sort_des([2, -1]),2),-4),5))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      7,
      13
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(sort_des(input),2),-4),5))"
  },
  {
    "input": "input : list = [-3, 2, -4, 4, -4]\noutput : list = [4, 2, -3, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(add_n([-3, 2, -4, 4, -4],-5)),5)))",
    "io_inp": [
      -3,
      2,
      -4,
      4,
      -4
    ],
    "io_out": [
      4,
      2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(add_n(input,-5)),5)))"
  },
  {
    "input": "input : list = [-2, 1, 3, 5, 0]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sort_asc(take([-2, 1, 3, 5, 0],1)))",
    "io_inp": [
      -2,
      1,
      3,
      5,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [3, -1, 1, 1, 5, 1]\noutput : list = [-16, 0]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(drop([3, -1, 1, 1, 5, 1],4)),-4),4),4)",
    "io_inp": [
      3,
      -1,
      1,
      1,
      5,
      1
    ],
    "io_out": [
      -16,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(drop(input,4)),-4),4),4)"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [28, 12, -8]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(add_n([-4, 5, 0],-3),-2),2)))",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      28,
      12,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(add_n(input,-3),-2),2)))"
  },
  {
    "input": "input : list = [-1, 3, -2, -2]\noutput : list = [2, -6, 4, 4]",
    "output": "generated_output : list = mul_n([-1, 3, -2, -2],-2)",
    "io_inp": [
      -1,
      3,
      -2,
      -2
    ],
    "io_out": [
      2,
      -6,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, -2, 1, 2, 0, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(take([3, -2, 1, 2, 0, 5],1),18))))",
    "io_inp": [
      3,
      -2,
      1,
      2,
      0,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(take(input,1),18))))"
  },
  {
    "input": "input : list = [-1, -4, -5, -4]\noutput : list = [-12, -14, -12]",
    "output": "generated_output : list = mul_n(sub_n(drop([-1, -4, -5, -4],1),2),2)",
    "io_inp": [
      -1,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -12,
      -14,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,1),2),2)"
  },
  {
    "input": "input : list = [1, -2, 4, 1, -2]\noutput : list = [3, -6, 12, 3, -6]",
    "output": "generated_output : list = mul_n([1, -2, 4, 1, -2],3)",
    "io_inp": [
      1,
      -2,
      4,
      1,
      -2
    ],
    "io_out": [
      3,
      -6,
      12,
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_asc([-4, 2])))))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -4, 4, 5, 1]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(take([5, -4, 4, 5, 1],1),1)",
    "io_inp": [
      5,
      -4,
      4,
      5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),1)"
  },
  {
    "input": "input : list = [0, -2, 5, -2, 2, -3]\noutput : list = [12, 8, 8, 0, -8, -20]",
    "output": "generated_output : list = sort_des(mul_n([0, -2, 5, -2, 2, -3],-4))",
    "io_inp": [
      0,
      -2,
      5,
      -2,
      2,
      -3
    ],
    "io_out": [
      12,
      8,
      8,
      0,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-4))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-5, -1]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(sub_n([1, -3],2))),6),31)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(sub_n(input,2))),6),31)"
  },
  {
    "input": "input : list = [-3, 5, -1, -4, -3]\noutput : list = [-100, 20, 60, 60, 80]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_asc([-3, 5, -1, -4, -3]),-4))),5)",
    "io_inp": [
      -3,
      5,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -100,
      20,
      60,
      60,
      80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_asc(input),-4))),5)"
  },
  {
    "input": "input : list = [1, 0, 0, -2]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take([1, 0, 0, -2],1))",
    "io_inp": [
      1,
      0,
      0,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [13, 13]",
    "output": "generated_output : list = sub_n(add_n(reverse([3, 3]),5),-5)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),5),-5)"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [5, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(add_n([-2, -3, 3],4),7)),2))",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(add_n(input,4),7)),2))"
  },
  {
    "input": "input : list = [0, -1, 2, 4]\noutput : list = [-5, -7, -1, 3]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(mul_n([0, -1, 2, 4],2))),-3),-2)",
    "io_inp": [
      0,
      -1,
      2,
      4
    ],
    "io_out": [
      -5,
      -7,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(mul_n(input,2))),-3),-2)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [0, -3, 1]",
    "output": "generated_output : list = reverse([1, -3, 0])",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -5, -2, -5]\noutput : list = [25, -10, -25, -25]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des([5, -5, -2, -5])),5))",
    "io_inp": [
      5,
      -5,
      -2,
      -5
    ],
    "io_out": [
      25,
      -10,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(input)),5))"
  },
  {
    "input": "input : list = [-2, 2, 5, 5]\noutput : list = [-4, 4, 10, 10]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(mul_n([-2, 2, 5, 5],2)),28)))",
    "io_inp": [
      -2,
      2,
      5,
      5
    ],
    "io_out": [
      -4,
      4,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(mul_n(input,2)),28)))"
  },
  {
    "input": "input : list = [1, -4, 4, 4]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(drop(reverse([1, -4, 4, 4]),1)))",
    "io_inp": [
      1,
      -4,
      4,
      4
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(reverse(input),1)))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [-3, -4, 0]",
    "output": "generated_output : list = reverse(reverse([-3, -4, 0]))",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      -3,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, -4, 0, 2, -2]\noutput : list = [-4, -2, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(take(mul_n([3, -4, 0, 2, -2],1),16))",
    "io_inp": [
      3,
      -4,
      0,
      2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,1),16))"
  },
  {
    "input": "input : list = [-2, 1, -1, 3]\noutput : list = [5, 3, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n([-2, 1, -1, 3],-2))",
    "io_inp": [
      -2,
      1,
      -1,
      3
    ],
    "io_out": [
      5,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [0, -3, 7]",
    "output": "generated_output : list = take(add_n([-2, -5, 5],2),4)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      0,
      -3,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),4)"
  },
  {
    "input": "input : list = [-5, -5, 2, 4, -5]\noutput : list = [-7, 11, 7, -7, -7]",
    "output": "generated_output : list = add_n(reverse(mul_n([-5, -5, 2, 4, -5],2)),3)",
    "io_inp": [
      -5,
      -5,
      2,
      4,
      -5
    ],
    "io_out": [
      -7,
      11,
      7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,2)),3)"
  },
  {
    "input": "input : list = [3, 3, 1, -1, -2, 5]\noutput : list = [3, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(drop(add_n([3, 3, 1, -1, -2, 5],-1),2),9),1))",
    "io_inp": [
      3,
      3,
      1,
      -1,
      -2,
      5
    ],
    "io_out": [
      3,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(drop(add_n(input,-1),2),9),1))"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [-6, -3, -1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des([0, -5, -2]),-4)),-3)",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(input),-4)),-3)"
  },
  {
    "input": "input : list = [2, -2, -3, -2, 5]\noutput : list = [9, 6, 2, 2, 1]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(sub_n([2, -2, -3, -2, 5],3),4),3)))",
    "io_inp": [
      2,
      -2,
      -3,
      -2,
      5
    ],
    "io_out": [
      9,
      6,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(sub_n(input,3),4),3)))"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [-16, 16, 8]",
    "output": "generated_output : list = reverse(mul_n([2, 4, -4],4))",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      -16,
      16,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [-2, 3, 3, 0, -4, -4]\noutput : list = [4, 4, 1, -1, -3, -3]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_des([-2, 3, 3, 0, -4, -4])),1)),-1)",
    "io_inp": [
      -2,
      3,
      3,
      0,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_des(input)),1)),-1)"
  },
  {
    "input": "input : list = [4, -1, 1, -2]\noutput : list = [4, 1, -1, -2]",
    "output": "generated_output : list = sort_des([4, -1, 1, -2])",
    "io_inp": [
      4,
      -1,
      1,
      -2
    ],
    "io_out": [
      4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, -3]\noutput : list = [-3, 0, 3]",
    "output": "generated_output : list = reverse([3, 0, -3])",
    "io_inp": [
      3,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, -3, 1]\noutput : list = [12, 4, -12]",
    "output": "generated_output : list = mul_n(sort_des(reverse(drop([3, 3, -3, 1],1))),4)",
    "io_inp": [
      3,
      3,
      -3,
      1
    ],
    "io_out": [
      12,
      4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(drop(input,1))),4)"
  },
  {
    "input": "input : list = [1, 0, 4, 0]\noutput : list = [0, 0, -3, -12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(reverse([1, 0, 4, 0]))),-1),3)",
    "io_inp": [
      1,
      0,
      4,
      0
    ],
    "io_out": [
      0,
      0,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(reverse(input))),-1),3)"
  },
  {
    "input": "input : list = [-5, 3, 1, 4, -1, -1]\noutput : list = [-8, -6, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(mul_n([-5, 3, 1, 4, -1, -1],-1),3))),-5)",
    "io_inp": [
      -5,
      3,
      1,
      4,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(mul_n(input,-1),3))),-5)"
  },
  {
    "input": "input : list = [0, -3, 1, 5, 0, -5]\noutput : list = [11, 7, 6, 6, 3, 1]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(reverse([0, -3, 1, 5, 0, -5]),3)),3),48)",
    "io_inp": [
      0,
      -3,
      1,
      5,
      0,
      -5
    ],
    "io_out": [
      11,
      7,
      6,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(reverse(input),3)),3),48)"
  },
  {
    "input": "input : list = [2, -2, 5, 5, 0, 5]\noutput : list = [-8, 0, 8, 20, 20, 20]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sort_asc([2, -2, 5, 5, 0, 5])),26),37),4)",
    "io_inp": [
      2,
      -2,
      5,
      5,
      0,
      5
    ],
    "io_out": [
      -8,
      0,
      8,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sort_asc(input)),26),37),4)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-3, -7]",
    "output": "generated_output : list = reverse(sub_n(sub_n([-1, 3],1),5))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,1),5))"
  },
  {
    "input": "input : list = [4, -4, -1, -1, 1, -3]\noutput : list = [7, -1, 2, 2, 4, 0]",
    "output": "generated_output : list = sub_n([4, -4, -1, -1, 1, -3],-3)",
    "io_inp": [
      4,
      -4,
      -1,
      -1,
      1,
      -3
    ],
    "io_out": [
      7,
      -1,
      2,
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 3, 0, -1, 4, 0]\noutput : list = [6, 2, 1, 1, -2, -3]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(sub_n([-5, 3, 0, -1, 4, 0],2)),-1)),-1)",
    "io_inp": [
      -5,
      3,
      0,
      -1,
      4,
      0
    ],
    "io_out": [
      6,
      2,
      1,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(sub_n(input,2)),-1)),-1)"
  },
  {
    "input": "input : list = [-3, -1, -4, 2]\noutput : list = [-1, -4, 2]",
    "output": "generated_output : list = drop([-3, -1, -4, 2],1)",
    "io_inp": [
      -3,
      -1,
      -4,
      2
    ],
    "io_out": [
      -1,
      -4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -1, -4, 2, 5, 4]\noutput : list = [-1, -5, -8, -2, 1, 0]",
    "output": "generated_output : list = sub_n([3, -1, -4, 2, 5, 4],4)",
    "io_inp": [
      3,
      -1,
      -4,
      2,
      5,
      4
    ],
    "io_out": [
      -1,
      -5,
      -8,
      -2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 4, -1, 5]\noutput : list = [-23, 7]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(drop([-4, 4, -1, 5],2),-5),2)),2)",
    "io_inp": [
      -4,
      4,
      -1,
      5
    ],
    "io_out": [
      -23,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(drop(input,2),-5),2)),2)"
  },
  {
    "input": "input : list = [-2, -5, 5, -1, -5]\noutput : list = [5, -1, -2, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([-2, -5, 5, -1, -5])))",
    "io_inp": [
      -2,
      -5,
      5,
      -1,
      -5
    ],
    "io_out": [
      5,
      -1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, 2, -2, 5, 0, 2]\noutput : list = [8, -2, -2, -12, -12, -27]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([0, 2, -2, 5, 0, 2]),-5),-2)",
    "io_inp": [
      0,
      2,
      -2,
      5,
      0,
      2
    ],
    "io_out": [
      8,
      -2,
      -2,
      -12,
      -12,
      -27
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),-5),-2)"
  },
  {
    "input": "input : list = [1, 2, -3, -1, 5, 2]\noutput : list = [-3, -1, 5, 2]",
    "output": "generated_output : list = drop([1, 2, -3, -1, 5, 2],2)",
    "io_inp": [
      1,
      2,
      -3,
      -1,
      5,
      2
    ],
    "io_out": [
      -3,
      -1,
      5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -1, -5, 3]\noutput : list = [2, 3, -1, 7]",
    "output": "generated_output : list = sub_n([-2, -1, -5, 3],-4)",
    "io_inp": [
      -2,
      -1,
      -5,
      3
    ],
    "io_out": [
      2,
      3,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 1, 2, -1, -2]\noutput : list = [4, 3, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(sub_n([3, 1, 2, -1, -2],-4)),2),1))",
    "io_inp": [
      3,
      1,
      2,
      -1,
      -2
    ],
    "io_out": [
      4,
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(sub_n(input,-4)),2),1))"
  },
  {
    "input": "input : list = [2, -1, 5, -5, -2, 1]\noutput : list = [2, -1, -2, -4, -5, -8]",
    "output": "generated_output : list = add_n(sort_des([2, -1, 5, -5, -2, 1]),-3)",
    "io_inp": [
      2,
      -1,
      5,
      -5,
      -2,
      1
    ],
    "io_out": [
      2,
      -1,
      -2,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [4, 0, 0, -3, -5]\noutput : list = [9, 7, 4, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(add_n([4, 0, 0, -3, -5],-2)),-2),-1))",
    "io_inp": [
      4,
      0,
      0,
      -3,
      -5
    ],
    "io_out": [
      9,
      7,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(add_n(input,-2)),-2),-1))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = take(reverse(reverse(take(reverse([1, 3]),2))),31)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(reverse(input),2))),31)"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [-10, -15, -5]",
    "output": "generated_output : list = mul_n([-2, -3, -1],5)",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      -10,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [12]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(take([-3, 3, 3],1))),-5),3)",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(take(input,1))),-5),3)"
  },
  {
    "input": "input : list = [5, 1, 2, -5, 4, -4]\noutput : list = [-14, 2]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(drop([5, 1, 2, -5, 4, -4],4),-3),20)),2)",
    "io_inp": [
      5,
      1,
      2,
      -5,
      4,
      -4
    ],
    "io_out": [
      -14,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(drop(input,4),-3),20)),2)"
  },
  {
    "input": "input : list = [-5, -4, 1, -2]\noutput : list = [-25, -20, 5, -10]",
    "output": "generated_output : list = mul_n([-5, -4, 1, -2],5)",
    "io_inp": [
      -5,
      -4,
      1,
      -2
    ],
    "io_out": [
      -25,
      -20,
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -5, 4]\noutput : list = [-10, -8, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc([-3, -5, 4]),5),8)",
    "io_inp": [
      -3,
      -5,
      4
    ],
    "io_out": [
      -10,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),5),8)"
  },
  {
    "input": "input : list = [3, 5, 2, 2, 4, 2]\noutput : list = [-6, -7, -8, -9, -9, -9]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(sub_n([3, 5, 2, 2, 4, 2],4),2),4),5))",
    "io_inp": [
      3,
      5,
      2,
      2,
      4,
      2
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(sub_n(input,4),2),4),5))"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(sort_des([0, 0, 3]),1),-3),10),-2)",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(sort_des(input),1),-3),10),-2)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(add_n(reverse([3, 0]),-1))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [5, 4, -1, 2, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(take(reverse(drop(reverse([5, 4, -1, 2, 5]),3)),28))",
    "io_inp": [
      5,
      4,
      -1,
      2,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(drop(reverse(input),3)),28))"
  },
  {
    "input": "input : list = [4, 2, 4, 0, -4]\noutput : list = [-4, 0, 2, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 2, 4, 0, -4])",
    "io_inp": [
      4,
      2,
      4,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, 3, 3, -1, 2]\noutput : list = [0, -1, -2, -2, -3, -6]",
    "output": "generated_output : list = add_n(take(sort_des([5, 4, 3, 3, -1, 2]),9),-5)",
    "io_inp": [
      5,
      4,
      3,
      3,
      -1,
      2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),9),-5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc([-3, 0]),4))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = drop([-2, -3, 3],1)",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -2, 4]\noutput : list = [-5, 1, -3]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n([2, -2, 4],-3)),4),-1)",
    "io_inp": [
      2,
      -2,
      4
    ],
    "io_out": [
      -5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(input,-3)),4),-1)"
  },
  {
    "input": "input : list = [4, -1, -5, 3, 2, 3]\noutput : list = [-16, 4, 20]",
    "output": "generated_output : list = take(take(mul_n([4, -1, -5, 3, 2, 3],-4),3),6)",
    "io_inp": [
      4,
      -1,
      -5,
      3,
      2,
      3
    ],
    "io_out": [
      -16,
      4,
      20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-4),3),6)"
  },
  {
    "input": "input : list = [2, 1, 1, -4, 0]\noutput : list = [-8, 0, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n([2, 1, 1, -4, 0],2))",
    "io_inp": [
      2,
      1,
      1,
      -4,
      0
    ],
    "io_out": [
      -8,
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [1, -3, 5, -4]\noutput : list = [-3, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(take([1, -3, 5, -4],2),2),3)))",
    "io_inp": [
      1,
      -3,
      5,
      -4
    ],
    "io_out": [
      -3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(take(input,2),2),3)))"
  },
  {
    "input": "input : list = [-2, -5, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = drop([-2, -5, -2, -2],2)",
    "io_inp": [
      -2,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -4, -5, 0, -3, -1]\noutput : list = [0, 1, 2, 4, 5, 10]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_asc([5, -4, -5, 0, -3, -1]),2),-5),-2)",
    "io_inp": [
      5,
      -4,
      -5,
      0,
      -3,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      4,
      5,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_asc(input),2),-5),-2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc([4, 5]),3),-1),-1),-5)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc(input),3),-1),-1),-5)"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [-7, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(drop([4, 3, -5],1),-2))))",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(drop(input,1),-2))))"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [3, 1, -4]",
    "output": "generated_output : list = reverse([-4, 1, 3])",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -3, 5, -5]\noutput : list = [-13, -11, -8, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(reverse([0, -3, 5, -5])),3),5),23)",
    "io_inp": [
      0,
      -3,
      5,
      -5
    ],
    "io_out": [
      -13,
      -11,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(reverse(input)),3),5),23)"
  },
  {
    "input": "input : list = [-4, -4, 1]\noutput : list = [8, -2, -2]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(sort_asc([-4, -4, 1]),-3)),2),37)",
    "io_inp": [
      -4,
      -4,
      1
    ],
    "io_out": [
      8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(sort_asc(input),-3)),2),37)"
  },
  {
    "input": "input : list = [4, 3, -5, -5]\noutput : list = [-24, -20, 12, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([4, 3, -5, -5],-2),-4))",
    "io_inp": [
      4,
      3,
      -5,
      -5
    ],
    "io_out": [
      -24,
      -20,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-2),-4))"
  },
  {
    "input": "input : list = [-2, 4, 2, 3, -3]\noutput : list = [-3, -2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, 2, 3, -3])",
    "io_inp": [
      -2,
      4,
      2,
      3,
      -3
    ],
    "io_out": [
      -3,
      -2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 2, 3, 1, -2]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(drop([2, 2, 3, 1, -2],2),-2),1)),-1)",
    "io_inp": [
      2,
      2,
      3,
      1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(drop(input,2),-2),1)),-1)"
  },
  {
    "input": "input : list = [0, 0, 4, 1]\noutput : list = [2, 8, 0, 0]",
    "output": "generated_output : list = reverse(reverse(reverse(take(mul_n([0, 0, 4, 1],2),19))))",
    "io_inp": [
      0,
      0,
      4,
      1
    ],
    "io_out": [
      2,
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(mul_n(input,2),19))))"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [10, 6, 2]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([-3, -1, -5]),1),-2)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      10,
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),1),-2)"
  },
  {
    "input": "input : list = [2, 0, 0, 1]\noutput : list = [-36, -24, -12, -12]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des(sort_des([2, 0, 0, 1])),-1),-3),4)",
    "io_inp": [
      2,
      0,
      0,
      1
    ],
    "io_out": [
      -36,
      -24,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(sort_des(input)),-1),-3),4)"
  },
  {
    "input": "input : list = [2, 5, 0]\noutput : list = [-1, 2, -3]",
    "output": "generated_output : list = sub_n([2, 5, 0],3)",
    "io_inp": [
      2,
      5,
      0
    ],
    "io_out": [
      -1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, 5, -2, -4, 1]\noutput : list = [-12, 8]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(take([-5, 5, -2, -4, 1],2),-2),-2)),23)",
    "io_inp": [
      -5,
      5,
      -2,
      -4,
      1
    ],
    "io_out": [
      -12,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(take(input,2),-2),-2)),23)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = sort_des([-4, 2, 0])",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, 2, -3, -3, -5]\noutput : list = [11, 11, 5, -10, -10, -16]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(mul_n([4, 4, 2, -3, -3, -5],3),7))),-1)",
    "io_inp": [
      4,
      4,
      2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      11,
      11,
      5,
      -10,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(mul_n(input,3),7))),-1)"
  },
  {
    "input": "input : list = [4, 2, 1, 0, -3, 1]\noutput : list = [4, 2, 1, 1, 0, -3]",
    "output": "generated_output : list = sort_des([4, 2, 1, 0, -3, 1])",
    "io_inp": [
      4,
      2,
      1,
      0,
      -3,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, 2, 3, 2, 0]\noutput : list = [-8, -8, -8, -12]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(take([2, 2, 2, 3, 2, 0],4)),8)),-4)",
    "io_inp": [
      2,
      2,
      2,
      3,
      2,
      0
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(take(input,4)),8)),-4)"
  },
  {
    "input": "input : list = [4, 2, 5, -4]\noutput : list = [-1, -3, 0, -9]",
    "output": "generated_output : list = sub_n([4, 2, 5, -4],5)",
    "io_inp": [
      4,
      2,
      5,
      -4
    ],
    "io_out": [
      -1,
      -3,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [11, 8]",
    "output": "generated_output : list = take(take(sub_n(reverse(sub_n([1, 4],-4)),-3),33),18)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      11,
      8
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(sub_n(input,-4)),-3),33),18)"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [0, -3, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc([-4, 0, 3])),2),1)",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(input)),2),1)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [10, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(reverse([4, 0, -1]),3),-2)))",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      10,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(reverse(input),3),-2)))"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-3, -4, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(take(sort_asc([-3, -4, -4]),13))),40)",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(sort_asc(input),13))),40)"
  },
  {
    "input": "input : list = [-2, 3, 3, -4, -2]\noutput : list = [164, 124, 124, 24, 24]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sub_n([-2, 3, 3, -4, -2],4),5)),-4),-4)",
    "io_inp": [
      -2,
      3,
      3,
      -4,
      -2
    ],
    "io_out": [
      164,
      124,
      124,
      24,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sub_n(input,4),5)),-4),-4)"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(reverse([-2, -5, -5]),16)),5))",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(reverse(input),16)),5))"
  },
  {
    "input": "input : list = [-3, -5, -3, 2]\noutput : list = [3, -2, -2, -4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(sub_n([-3, -5, -3, 2],4),3))),2)",
    "io_inp": [
      -3,
      -5,
      -3,
      2
    ],
    "io_out": [
      3,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(sub_n(input,4),3))),2)"
  },
  {
    "input": "input : list = [-4, 0, 1, 3]\noutput : list = [2, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(drop([-4, 0, 1, 3],1),1))",
    "io_inp": [
      -4,
      0,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),1))"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [9, 9, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([1, 2, 1]),-4),4)",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      9,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-4),4)"
  },
  {
    "input": "input : list = [2, -4, 1, -2, 2]\noutput : list = [3, -3, 2, -1, 3]",
    "output": "generated_output : list = take(take(add_n([2, -4, 1, -2, 2],1),20),13)",
    "io_inp": [
      2,
      -4,
      1,
      -2,
      2
    ],
    "io_out": [
      3,
      -3,
      2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,1),20),13)"
  },
  {
    "input": "input : list = [-1, 3, -3, -1, 3, -1]\noutput : list = [-5, 15, -15, -5, 15, -5]",
    "output": "generated_output : list = mul_n([-1, 3, -3, -1, 3, -1],5)",
    "io_inp": [
      -1,
      3,
      -3,
      -1,
      3,
      -1
    ],
    "io_out": [
      -5,
      15,
      -15,
      -5,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des(reverse([2, -1]))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [1, -5, 1]",
    "output": "generated_output : list = reverse(mul_n([1, -5, 1],1))",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-3, -4, 3, 4, 2, -2]\noutput : list = [-14, -6, 10]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(drop([-3, -4, 3, 4, 2, -2],3),-4),2))",
    "io_inp": [
      -3,
      -4,
      3,
      4,
      2,
      -2
    ],
    "io_out": [
      -14,
      -6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(drop(input,3),-4),2))"
  },
  {
    "input": "input : list = [4, -3, 1, -2, -5, 4]\noutput : list = [-4, 5, 2, -1, 3, -4]",
    "output": "generated_output : list = mul_n(reverse([4, -3, 1, -2, -5, 4]),-1)",
    "io_inp": [
      4,
      -3,
      1,
      -2,
      -5,
      4
    ],
    "io_out": [
      -4,
      5,
      2,
      -1,
      3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [5, 0, 0]\noutput : list = [-20, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc([5, 0, 0]))),-4)",
    "io_inp": [
      5,
      0,
      0
    ],
    "io_out": [
      -20,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(input))),-4)"
  },
  {
    "input": "input : list = [3, 5, 0, 1]\noutput : list = [-3, -2, 0, 2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(reverse([3, 5, 0, 1])),2),-5),-4)",
    "io_inp": [
      3,
      5,
      0,
      1
    ],
    "io_out": [
      -3,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(reverse(input)),2),-5),-4)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [8, 10]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(drop([2, 4, 5],1)),2)))",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(drop(input,1)),2)))"
  },
  {
    "input": "input : list = [2, -3, -4]\noutput : list = [-16, 24, 32]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([2, -3, -4],-2),4))",
    "io_inp": [
      2,
      -3,
      -4
    ],
    "io_out": [
      -16,
      24,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,-2),4))"
  },
  {
    "input": "input : list = [-4, 3, 5, -1, -2, -2]\noutput : list = [2, 4]",
    "output": "generated_output : list = take(sub_n(sort_asc(add_n(add_n([-4, 3, 5, -1, -2, -2],5),2)),1),2)",
    "io_inp": [
      -4,
      3,
      5,
      -1,
      -2,
      -2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(add_n(add_n(input,5),2)),1),2)"
  },
  {
    "input": "input : list = [0, -5, -3, 2, -4, 3]\noutput : list = [-3, 4, -2, 3, 5, 0]",
    "output": "generated_output : list = reverse(mul_n([0, -5, -3, 2, -4, 3],-1))",
    "io_inp": [
      0,
      -5,
      -3,
      2,
      -4,
      3
    ],
    "io_out": [
      -3,
      4,
      -2,
      3,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [5, -1, -3]\noutput : list = [29, 13, -35]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n([5, -1, -3],2),-4),-5))",
    "io_inp": [
      5,
      -1,
      -3
    ],
    "io_out": [
      29,
      13,
      -35
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(input,2),-4),-5))"
  },
  {
    "input": "input : list = [4, 3, 2, 0, -5]\noutput : list = [7, 6, 5]",
    "output": "generated_output : list = sub_n(add_n(take([4, 3, 2, 0, -5],3),2),-1)",
    "io_inp": [
      4,
      3,
      2,
      0,
      -5
    ],
    "io_out": [
      7,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(input,3),2),-1)"
  },
  {
    "input": "input : list = [-4, -1, 3]\noutput : list = [-2, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc([-4, -1, 3]),-2)",
    "io_inp": [
      -4,
      -1,
      3
    ],
    "io_out": [
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-1, -1, 0, -2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(mul_n(reverse(take([-1, -1, 0, -2],1)),-2),-3)",
    "io_inp": [
      -1,
      -1,
      0,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(input,1)),-2),-3)"
  },
  {
    "input": "input : list = [-1, 5, -1, 3, -2]\noutput : list = [-5, -4, 0, 2]",
    "output": "generated_output : list = sort_asc(drop(sub_n([-1, 5, -1, 3, -2],3),1))",
    "io_inp": [
      -1,
      5,
      -1,
      3,
      -2
    ],
    "io_out": [
      -5,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(input,3),1))"
  },
  {
    "input": "input : list = [1, -4, -3, -2, -3]\noutput : list = [-2, -1, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(reverse([1, -4, -3, -2, -3]),2))))",
    "io_inp": [
      1,
      -4,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [4, -5, -5]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(sub_n([-5, 4, -5],-4),2)),2),41)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(sub_n(input,-4),2)),2),41)"
  },
  {
    "input": "input : list = [-4, 3, -3, -3, -2]\noutput : list = [-3, -3, -2]",
    "output": "generated_output : list = mul_n(sort_asc(drop([-4, 3, -3, -3, -2],2)),1)",
    "io_inp": [
      -4,
      3,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,2)),1)"
  },
  {
    "input": "input : list = [5, 2, -4, 0]\noutput : list = [-50, -20, 0, 40]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(mul_n([5, 2, -4, 0],5)),-2)))",
    "io_inp": [
      5,
      2,
      -4,
      0
    ],
    "io_out": [
      -50,
      -20,
      0,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(mul_n(input,5)),-2)))"
  },
  {
    "input": "input : list = [3, -1, -4, 3, 0]\noutput : list = [-4, -1, 0, 3, 3]",
    "output": "generated_output : list = sort_asc([3, -1, -4, 3, 0])",
    "io_inp": [
      3,
      -1,
      -4,
      3,
      0
    ],
    "io_out": [
      -4,
      -1,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, 0, 3, 4]\noutput : list = [4, 3, 0, -1, -2]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(sort_asc([-2, -1, 0, 3, 4])),21)),1)",
    "io_inp": [
      -2,
      -1,
      0,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(sort_asc(input)),21)),1)"
  },
  {
    "input": "input : list = [-2, 1, 4, -1]\noutput : list = [-1, 4, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, 4, -1])",
    "io_inp": [
      -2,
      1,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, 2, 2, 2]\noutput : list = [2, -6, 0, 0, 0]",
    "output": "generated_output : list = sub_n(add_n([4, -4, 2, 2, 2],-3),-1)",
    "io_inp": [
      4,
      -4,
      2,
      2,
      2
    ],
    "io_out": [
      2,
      -6,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),-1)"
  },
  {
    "input": "input : list = [-4, 1, -1, 3, -5]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take([-4, 1, -1, 3, -5],1)),5),3)",
    "io_inp": [
      -4,
      1,
      -1,
      3,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(input,1)),5),3)"
  },
  {
    "input": "input : list = [1, 5, -4, -2]\noutput : list = [-2, -4, 5, 1]",
    "output": "generated_output : list = reverse([1, 5, -4, -2])",
    "io_inp": [
      1,
      5,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-8, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(mul_n([2, -5],1))),4),1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -8,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(mul_n(input,1))),4),1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 5]))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [5, 3]",
    "output": "generated_output : list = add_n([2, 0],3)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, 0, 4, -4, -4, -3]\noutput : list = [-4, -4, -3, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([-1, 0, 4, -4, -4, -3])",
    "io_inp": [
      -1,
      0,
      4,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [-80, 16, 48]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(sort_des([-2, -4, 4]),-1),4),2),-2)",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      -80,
      16,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(sort_des(input),-1),4),2),-2)"
  },
  {
    "input": "input : list = [-5, -2, -3, 5, 2, -4]\noutput : list = [-5, -4, -3, -2, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(reverse([-5, -2, -3, 5, 2, -4])))))",
    "io_inp": [
      -5,
      -2,
      -3,
      5,
      2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [1, 2, 3, -3]\noutput : list = [5, 10, 15, -15]",
    "output": "generated_output : list = mul_n([1, 2, 3, -3],5)",
    "io_inp": [
      1,
      2,
      3,
      -3
    ],
    "io_out": [
      5,
      10,
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(take([0, 5, 3],1),5),3),5))",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(take(input,1),5),3),5))"
  },
  {
    "input": "input : list = [-5, 1, -5]\noutput : list = [5, -25, 5]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-5, 1, -5],4),-1),5)",
    "io_inp": [
      -5,
      1,
      -5
    ],
    "io_out": [
      5,
      -25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,4),-1),5)"
  },
  {
    "input": "input : list = [1, 5, -4]\noutput : list = [-9, -4, 0]",
    "output": "generated_output : list = take(sort_asc(add_n([1, 5, -4],-5)),12)",
    "io_inp": [
      1,
      5,
      -4
    ],
    "io_out": [
      -9,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-5)),12)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = mul_n(sort_asc([2, 5]),1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(sub_n([-3, -5],4),5)),2),-1)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(sub_n(input,4),5)),2),-1)"
  },
  {
    "input": "input : list = [-4, -5, -5]\noutput : list = [-7, -8, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc([-4, -5, -5]),3)))",
    "io_inp": [
      -4,
      -5,
      -5
    ],
    "io_out": [
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(input),3)))"
  },
  {
    "input": "input : list = [0, 3, 5, 0, 5]\noutput : list = [5, 5, 8, 10, 10]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des([0, 3, 5, 0, 5]))),5)",
    "io_inp": [
      0,
      3,
      5,
      0,
      5
    ],
    "io_out": [
      5,
      5,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(input))),5)"
  },
  {
    "input": "input : list = [1, -5, 2, 4, -4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(drop([1, -5, 2, 4, -4, -2],4))",
    "io_inp": [
      1,
      -5,
      2,
      4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,4))"
  },
  {
    "input": "input : list = [1, -2, -4, -5, 4]\noutput : list = [12, -6, -12, -15]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(drop([1, -2, -4, -5, 4],1),3)))",
    "io_inp": [
      1,
      -2,
      -4,
      -5,
      4
    ],
    "io_out": [
      12,
      -6,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(drop(input,1),3)))"
  },
  {
    "input": "input : list = [-2, -4, 1, -3]\noutput : list = [2, 4, -1, 3]",
    "output": "generated_output : list = take(mul_n([-2, -4, 1, -3],-1),18)",
    "io_inp": [
      -2,
      -4,
      1,
      -3
    ],
    "io_out": [
      2,
      4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),18)"
  },
  {
    "input": "input : list = [2, 2, 0, 1]\noutput : list = [-3, -3, -6, -9]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(add_n([2, 2, 0, 1],-3))),3))",
    "io_inp": [
      2,
      2,
      0,
      1
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(add_n(input,-3))),3))"
  },
  {
    "input": "input : list = [-5, -5, -4, -4, 4, -1]\noutput : list = [7, 2, -1, -1, -2, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(add_n([-5, -5, -4, -4, 4, -1],3)))))",
    "io_inp": [
      -5,
      -5,
      -4,
      -4,
      4,
      -1
    ],
    "io_out": [
      7,
      2,
      -1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(reverse([-3, 1])),2)))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(reverse(input)),2)))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [9, 5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(sort_des([4, 0]))),-5))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-4, 3, -2, 0, -4, 0]\noutput : list = [-7, -7, -5, -3, -3, 0]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc([-4, 3, -2, 0, -4, 0]),23),1),3)",
    "io_inp": [
      -4,
      3,
      -2,
      0,
      -4,
      0
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(input),23),1),3)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n([-2, -1],4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [3, -3, -21]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(add_n([4, -2, -4],3),-3)),20))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      3,
      -3,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(add_n(input,3),-3)),20))"
  },
  {
    "input": "input : list = [-1, -1, 4, -3]\noutput : list = [10, 24, 14, 14]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n([-1, -1, 4, -3],-5)),-3),2)",
    "io_inp": [
      -1,
      -1,
      4,
      -3
    ],
    "io_out": [
      10,
      24,
      14,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(input,-5)),-3),2)"
  },
  {
    "input": "input : list = [0, 2, -1, 5, 1]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(take([0, 2, -1, 5, 1],3))),-1),-4)",
    "io_inp": [
      0,
      2,
      -1,
      5,
      1
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(take(input,3))),-1),-4)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [-10, -25, -25]",
    "output": "generated_output : list = sort_des(mul_n([5, 5, 2],-5))",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      -10,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-21, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-2, 5]),-2),-3)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -21,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),-2),-3)"
  },
  {
    "input": "input : list = [-2, -1, 1, 4]\noutput : list = [-12, -9, -3, 6]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(sort_des([-2, -1, 1, 4]),-2)),3),23)",
    "io_inp": [
      -2,
      -1,
      1,
      4
    ],
    "io_out": [
      -12,
      -9,
      -3,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(sort_des(input),-2)),3),23)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(reverse([-1, 1]))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, -1, 2, 3]\noutput : list = [8, 8]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(take([-1, -1, 2, 3],2)),3),-2))",
    "io_inp": [
      -1,
      -1,
      2,
      3
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(take(input,2)),3),-2))"
  },
  {
    "input": "input : list = [-5, -4, 2]\noutput : list = [-7, -13]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(drop([-5, -4, 2],1)),4),7),5)",
    "io_inp": [
      -5,
      -4,
      2
    ],
    "io_out": [
      -7,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(drop(input,1)),4),7),5)"
  },
  {
    "input": "input : list = [0, -5, -5, -1]\noutput : list = [0, 0, -16]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(drop([0, -5, -5, -1],1)),-5),-1),4)",
    "io_inp": [
      0,
      -5,
      -5,
      -1
    ],
    "io_out": [
      0,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(drop(input,1)),-5),-1),4)"
  },
  {
    "input": "input : list = [-5, -2, -5, -1, 3, -4]\noutput : list = [-5, -1, 3, -4]",
    "output": "generated_output : list = drop([-5, -2, -5, -1, 3, -4],2)",
    "io_inp": [
      -5,
      -2,
      -5,
      -1,
      3,
      -4
    ],
    "io_out": [
      -5,
      -1,
      3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [8, 5, -10]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(mul_n([-4, 2, 1],3))),-2))",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      8,
      5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(mul_n(input,3))),-2))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [2, -18]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_des([-1, 3])),-5)),-3)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      2,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_des(input)),-5)),-3)"
  },
  {
    "input": "input : list = [-2, 3, -5]\noutput : list = [-4, -1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(reverse([-2, 3, -5])),-3),-4))",
    "io_inp": [
      -2,
      3,
      -5
    ],
    "io_out": [
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(reverse(input)),-3),-4))"
  },
  {
    "input": "input : list = [1, -3, -2, 1]\noutput : list = [-8, 4, 8, -8]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(reverse([1, -3, -2, 1]),12),4),-1),4)",
    "io_inp": [
      1,
      -3,
      -2,
      1
    ],
    "io_out": [
      -8,
      4,
      8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(reverse(input),12),4),-1),4)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-7, -5]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(add_n([-5, -3],-2)),19)),3)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(add_n(input,-2)),19)),3)"
  },
  {
    "input": "input : list = [-3, 1, 4, 2, -4]\noutput : list = [-20, -10, -5, 15, 20]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(reverse([-3, 1, 4, 2, -4])),-5)))",
    "io_inp": [
      -3,
      1,
      4,
      2,
      -4
    ],
    "io_out": [
      -20,
      -10,
      -5,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_des([-2, -1, -5])),-3)),44)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_des(input)),-3)),44)"
  },
  {
    "input": "input : list = [-3, -2, 3, 4, 3, -5]\noutput : list = [-5, -3, -2, 3, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([-3, -2, 3, 4, 3, -5])))",
    "io_inp": [
      -3,
      -2,
      3,
      4,
      3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, 0, 3, 0]\noutput : list = [-6, -1, -1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-5, 0, 3, 0],2),-1))",
    "io_inp": [
      -5,
      0,
      3,
      0
    ],
    "io_out": [
      -6,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,2),-1))"
  },
  {
    "input": "input : list = [-2, -4, 1, 5]\noutput : list = [-8, -3, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(drop([-2, -4, 1, 5],1)),4)))",
    "io_inp": [
      -2,
      -4,
      1,
      5
    ],
    "io_out": [
      -8,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(drop(input,1)),4)))"
  },
  {
    "input": "input : list = [2, 1, 4, 4]\noutput : list = [-20, -20, -28, -32]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(sort_asc([2, 1, 4, 4])),4),-5),4)",
    "io_inp": [
      2,
      1,
      4,
      4
    ],
    "io_out": [
      -20,
      -20,
      -28,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(sort_asc(input)),4),-5),4)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [5, 3]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(reverse([2, 4]),-1))),20)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(reverse(input),-1))),20)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, 3]))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -4, 4, -3, 0, 0]\noutput : list = [84, 64, 4, 4, -56, -76]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(reverse([3, -4, 4, -3, 0, 0])),4),5),-4)",
    "io_inp": [
      3,
      -4,
      4,
      -3,
      0,
      0
    ],
    "io_out": [
      84,
      64,
      4,
      4,
      -56,
      -76
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(reverse(input)),4),5),-4)"
  },
  {
    "input": "input : list = [1, 4, 0, -3, -1]\noutput : list = [6, 3, 2, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des([1, 4, 0, -3, -1]),-2)",
    "io_inp": [
      1,
      4,
      0,
      -3,
      -1
    ],
    "io_out": [
      6,
      3,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-5, 1, -1, 4, 3, -1]\noutput : list = [-10, -4, -6, -1, -2, -6]",
    "output": "generated_output : list = add_n([-5, 1, -1, 4, 3, -1],-5)",
    "io_inp": [
      -5,
      1,
      -1,
      4,
      3,
      -1
    ],
    "io_out": [
      -10,
      -4,
      -6,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [16, 16]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sort_des([3, 3]),1),-5)),2)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sort_des(input),1),-5)),2)"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [2]",
    "output": "generated_output : list = drop(sub_n(sort_des(take(sort_asc([-2, -2, -2]),9)),-4),2)",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(sub_n(sort_des(take(sort_asc(input),9)),-4),2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sort_des([-5, 2])),-2)),29)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sort_des(input)),-2)),29)"
  },
  {
    "input": "input : list = [4, -1, -5]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(take([4, -1, -5],1),5)",
    "io_inp": [
      4,
      -1,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [-2, 4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(mul_n([-3, 3, 3],1),1)),32))",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(mul_n(input,1),1)),32))"
  },
  {
    "input": "input : list = [-1, 2, 1, -4, 5]\noutput : list = [-12, 0, 8, 12, 24]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(reverse([-1, 2, 1, -4, 5]),6)),4),-4)",
    "io_inp": [
      -1,
      2,
      1,
      -4,
      5
    ],
    "io_out": [
      -12,
      0,
      8,
      12,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(reverse(input),6)),4),-4)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [27, -18]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(drop([-3, -3, 2],1),-3)),3))",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      27,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(drop(input,1),-3)),3))"
  },
  {
    "input": "input : list = [-1, -4, -1, 2]\noutput : list = [9, 0, 9, 18]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n(sub_n([-1, -4, -1, 2],4),5),3),4),-5)",
    "io_inp": [
      -1,
      -4,
      -1,
      2
    ],
    "io_out": [
      9,
      0,
      9,
      18
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(sub_n(input,4),5),3),4),-5)"
  },
  {
    "input": "input : list = [-4, -1, 1]\noutput : list = [28, 18, 3]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(sub_n([-4, -1, 1],-4)),5),17),-3)",
    "io_inp": [
      -4,
      -1,
      1
    ],
    "io_out": [
      28,
      18,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(sub_n(input,-4)),5),17),-3)"
  },
  {
    "input": "input : list = [0, -2, 2, 2]\noutput : list = [-5, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(reverse([0, -2, 2, 2])),14),3))",
    "io_inp": [
      0,
      -2,
      2,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(reverse(input)),14),3))"
  },
  {
    "input": "input : list = [5, 1, 2, 0, -1]\noutput : list = [9, 6, 5, 4, 3]",
    "output": "generated_output : list = reverse(take(take(sort_asc(add_n([5, 1, 2, 0, -1],4)),32),7))",
    "io_inp": [
      5,
      1,
      2,
      0,
      -1
    ],
    "io_out": [
      9,
      6,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(add_n(input,4)),32),7))"
  },
  {
    "input": "input : list = [0, 3, 2, 0, -1]\noutput : list = [3, 2, 0, -1]",
    "output": "generated_output : list = sort_des(drop([0, 3, 2, 0, -1],1))",
    "io_inp": [
      0,
      3,
      2,
      0,
      -1
    ],
    "io_out": [
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [3, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sort_des([-4, 0]),2),5)))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sort_des(input),2),5)))"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(take([-1, -3, 1],1),-1),3)),-5)",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(take(input,1),-1),3)),-5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(sort_asc([5, 2]),7)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [-4, 2, 2, -3, 3]\noutput : list = [-4, -3, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([-4, 2, 2, -3, 3]))",
    "io_inp": [
      -4,
      2,
      2,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, 0, 2, -1, 1, -1]\noutput : list = [-30, -30, -10]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(take([0, 0, 2, -1, 1, -1],3),-2),5),-1),-5)",
    "io_inp": [
      0,
      0,
      2,
      -1,
      1,
      -1
    ],
    "io_out": [
      -30,
      -30,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(take(input,3),-2),5),-1),-5)"
  },
  {
    "input": "input : list = [-4, 4, 2, -1, -2]\noutput : list = [-24, -21, -12]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(drop([-4, 4, 2, -1, -2],2),1),-5)),3)",
    "io_inp": [
      -4,
      4,
      2,
      -1,
      -2
    ],
    "io_out": [
      -24,
      -21,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(drop(input,2),1),-5)),3)"
  },
  {
    "input": "input : list = [2, -3, 1, 1, 2, -5]\noutput : list = [7, 2, 6, 6, 7, 0]",
    "output": "generated_output : list = add_n(add_n([2, -3, 1, 1, 2, -5],4),1)",
    "io_inp": [
      2,
      -3,
      1,
      1,
      2,
      -5
    ],
    "io_out": [
      7,
      2,
      6,
      6,
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),1)"
  },
  {
    "input": "input : list = [1, -3, 0, 4, 2]\noutput : list = [-29, 1, 21, 41]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(drop([1, -3, 0, 4, 2],1),5),2),-1))",
    "io_inp": [
      1,
      -3,
      0,
      4,
      2
    ],
    "io_out": [
      -29,
      1,
      21,
      41
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(drop(input,1),5),2),-1))"
  },
  {
    "input": "input : list = [-1, 3, 2, 2, 2, -1]\noutput : list = [1, 1, 4, 4, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-1, 3, 2, 2, 2, -1])),-2)",
    "io_inp": [
      -1,
      3,
      2,
      2,
      2,
      -1
    ],
    "io_out": [
      1,
      1,
      4,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [3, 4, -3]\noutput : list = [30, 42, -42]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(mul_n([3, 4, -3],4),3),7),3),3)",
    "io_inp": [
      3,
      4,
      -3
    ],
    "io_out": [
      30,
      42,
      -42
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(mul_n(input,4),3),7),3),3)"
  },
  {
    "input": "input : list = [5, -5, 0, -2, 1, -2]\noutput : list = [-15, 15, 0, 6, -3, 6]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(reverse([5, -5, 0, -2, 1, -2])),-3)))",
    "io_inp": [
      5,
      -5,
      0,
      -2,
      1,
      -2
    ],
    "io_out": [
      -15,
      15,
      0,
      6,
      -3,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [-4, -10, 0]",
    "output": "generated_output : list = add_n([1, -5, 5],-5)",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      -4,
      -10,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, 2, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(take(take([4, 2, 5],1),2))",
    "io_inp": [
      4,
      2,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,1),2))"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [-12, -12, -4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(mul_n([0, -4, -4],2),3))),-1)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(mul_n(input,2),3))),-1)"
  },
  {
    "input": "input : list = [5, -2, -5, 3, -1, 5]\noutput : list = [-7, -4, -3, 1, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(drop([5, -2, -5, 3, -1, 5],1)),2)),56)",
    "io_inp": [
      5,
      -2,
      -5,
      3,
      -1,
      5
    ],
    "io_out": [
      -7,
      -4,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(drop(input,1)),2)),56)"
  },
  {
    "input": "input : list = [-4, -1, -5, -3, 4]\noutput : list = [-15, -12, -9, -3, 12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([-4, -1, -5, -3, 4]),1),3)",
    "io_inp": [
      -4,
      -1,
      -5,
      -3,
      4
    ],
    "io_out": [
      -15,
      -12,
      -9,
      -3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),1),3)"
  },
  {
    "input": "input : list = [1, 4, 1, -2, 0, 5]\noutput : list = [-2, 0, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(drop([1, 4, 1, -2, 0, 5],3),8))),24)",
    "io_inp": [
      1,
      4,
      1,
      -2,
      0,
      5
    ],
    "io_out": [
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(drop(input,3),8))),24)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, -3]))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [5, 6, -1]",
    "output": "generated_output : list = sub_n([1, 2, -5],-4)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      5,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 4, -2, 4]\noutput : list = [-32, 32]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(take([-4, 4, -2, 4],2),-4))),-2)",
    "io_inp": [
      -4,
      4,
      -2,
      4
    ],
    "io_out": [
      -32,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(take(input,2),-4))),-2)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [-5, 5]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(drop([3, -4, -2],1),3))),-5)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(drop(input,1),3))),-5)"
  },
  {
    "input": "input : list = [-2, -2, -4]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(sort_asc([-2, -2, -4])))),-1)",
    "io_inp": [
      -2,
      -2,
      -4
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [-5, -4, 2, 2, 0, -5]\noutput : list = [8, 8, 0, -16, -20, -20]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(reverse([-5, -4, 2, 2, 0, -5]))),4))",
    "io_inp": [
      -5,
      -4,
      2,
      2,
      0,
      -5
    ],
    "io_out": [
      8,
      8,
      0,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(sort_des([-2, -4])),8)),31)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(sort_des(input)),8)),31)"
  },
  {
    "input": "input : list = [-1, -3, 4, 3]\noutput : list = [4, 3, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc([-1, -3, 4, 3]))",
    "io_inp": [
      -1,
      -3,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [8, -28]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(drop([-5, -5, 4],1),-3),23),-4))",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      8,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(drop(input,1),-3),23),-4))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-5, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n([0, 5],1)),5)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(input,1)),5)"
  },
  {
    "input": "input : list = [3, -2, 0, 2]\noutput : list = [-6, -4, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_des(add_n([3, -2, 0, 2],1)),-2)),-3)",
    "io_inp": [
      3,
      -2,
      0,
      2
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_des(add_n(input,1)),-2)),-3)"
  },
  {
    "input": "input : list = [-2, 0, 0, 2, -2]\noutput : list = [-4, 0, 0, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n([-2, 0, 0, 2, -2],-2)))",
    "io_inp": [
      -2,
      0,
      0,
      2,
      -2
    ],
    "io_out": [
      -4,
      0,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [3, 4, -5, 0, 3, -5]\noutput : list = [6, 3, -2, -2]",
    "output": "generated_output : list = take(sort_des(drop(add_n(sub_n([3, 4, -5, 0, 3, -5],-5),-2),2)),30)",
    "io_inp": [
      3,
      4,
      -5,
      0,
      3,
      -5
    ],
    "io_out": [
      6,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(add_n(sub_n(input,-5),-2),2)),30)"
  },
  {
    "input": "input : list = [3, 3, -3, -2, 1, 1]\noutput : list = [-17, -17, -11, -11, -2, 1]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(sort_des([3, 3, -3, -2, 1, 1]),-2),14),-3),-2)",
    "io_inp": [
      3,
      3,
      -3,
      -2,
      1,
      1
    ],
    "io_out": [
      -17,
      -17,
      -11,
      -11,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(sort_des(input),-2),14),-3),-2)"
  },
  {
    "input": "input : list = [-1, -4, 2, 3]\noutput : list = [-4, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(sub_n([-1, -4, 2, 3],4),-4)),7))",
    "io_inp": [
      -1,
      -4,
      2,
      3
    ],
    "io_out": [
      -4,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(sub_n(input,4),-4)),7))"
  },
  {
    "input": "input : list = [-2, 3, 5]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = sort_des([-2, 3, 5])",
    "io_inp": [
      -2,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 3, -1, -4, -3]\noutput : list = [-6, -4, 0, 4, 8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sort_des([1, 5, 3, -1, -4, -3]),2),-2),1))",
    "io_inp": [
      1,
      5,
      3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -4,
      0,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sort_des(input),2),-2),1))"
  },
  {
    "input": "input : list = [3, -3, 0, -2, -2]\noutput : list = [-7, 11]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(take([3, -3, 0, -2, -2],2)),-3),-2))",
    "io_inp": [
      3,
      -3,
      0,
      -2,
      -2
    ],
    "io_out": [
      -7,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(take(input,2)),-3),-2))"
  },
  {
    "input": "input : list = [-5, 2, -5, 3, -3, -1]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(drop([-5, 2, -5, 3, -3, -1],4),-2),7)))",
    "io_inp": [
      -5,
      2,
      -5,
      3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(drop(input,4),-2),7)))"
  },
  {
    "input": "input : list = [2, 0, 2, -3, 0, -4]\noutput : list = [-4, -3, 0, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(reverse([2, 0, 2, -3, 0, -4])),29)))",
    "io_inp": [
      2,
      0,
      2,
      -3,
      0,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(reverse(input)),29)))"
  },
  {
    "input": "input : list = [3, 0, 5]\noutput : list = [8, 6, 3]",
    "output": "generated_output : list = take(sort_des(take(add_n(reverse([3, 0, 5]),3),4)),18)",
    "io_inp": [
      3,
      0,
      5
    ],
    "io_out": [
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(reverse(input),3),4)),18)"
  },
  {
    "input": "input : list = [4, -2, -1]\noutput : list = [-12, -32, -36]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(add_n([4, -2, -1],-4),3),4)))",
    "io_inp": [
      4,
      -2,
      -1
    ],
    "io_out": [
      -12,
      -32,
      -36
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(add_n(input,-4),3),4)))"
  },
  {
    "input": "input : list = [-1, -3, -5, -2, 0, 2]\noutput : list = [-250, -150, -100, -50, 0, 100]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(sort_des([-1, -3, -5, -2, 0, 2]),2),-5)),-5)",
    "io_inp": [
      -1,
      -3,
      -5,
      -2,
      0,
      2
    ],
    "io_out": [
      -250,
      -150,
      -100,
      -50,
      0,
      100
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(sort_des(input),2),-5)),-5)"
  },
  {
    "input": "input : list = [-3, 5, -3, 3]\noutput : list = [-55, -25]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(drop([-3, 5, -3, 3],2)),-3),-5),-5)",
    "io_inp": [
      -3,
      5,
      -3,
      3
    ],
    "io_out": [
      -55,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(drop(input,2)),-3),-5),-5)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(drop([-5, -1, 2],1)),-5)),39)",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(drop(input,1)),-5)),39)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [12, 0, 8]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(sub_n([-5, 1, -3],1))),13),-2)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      12,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(sub_n(input,1))),13),-2)"
  },
  {
    "input": "input : list = [2, -2, 0, 2, 2]\noutput : list = [6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(take([2, -2, 0, 2, 2],1))),3))",
    "io_inp": [
      2,
      -2,
      0,
      2,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(take(input,1))),3))"
  },
  {
    "input": "input : list = [-4, -1, -4, 4, 0]\noutput : list = [-60, -20, -10, 20, 20]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(mul_n([-4, -1, -4, 4, 0],-2),-4))),5)",
    "io_inp": [
      -4,
      -1,
      -4,
      4,
      0
    ],
    "io_out": [
      -60,
      -20,
      -10,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(mul_n(input,-2),-4))),5)"
  },
  {
    "input": "input : list = [-5, 5, 1, -2]\noutput : list = [-8, 4, 13, 22]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(sub_n([-5, 5, 1, -2],3)),-3),-2),1)",
    "io_inp": [
      -5,
      5,
      1,
      -2
    ],
    "io_out": [
      -8,
      4,
      13,
      22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(sub_n(input,3)),-3),-2),1)"
  },
  {
    "input": "input : list = [-2, 5, 5, -4, 3]\noutput : list = [8, 8, 1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(take([-2, 5, 5, -4, 3],3),10),-3)))",
    "io_inp": [
      -2,
      5,
      5,
      -4,
      3
    ],
    "io_out": [
      8,
      8,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(take(input,3),10),-3)))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [20, 8]",
    "output": "generated_output : list = mul_n([-5, -2],-4)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-5, -7]",
    "output": "generated_output : list = sub_n([-1, -3],4)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, 0, 1, 4]\noutput : list = [12, 0, -12, -48]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sort_des([-1, 0, 1, 4]),-2)),3),2)",
    "io_inp": [
      -1,
      0,
      1,
      4
    ],
    "io_out": [
      12,
      0,
      -12,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sort_des(input),-2)),3),2)"
  },
  {
    "input": "input : list = [-2, 0, 0, -5]\noutput : list = [-8, 1, 7, 7]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_asc([-2, 0, 0, -5]),-1),-3),4),3)",
    "io_inp": [
      -2,
      0,
      0,
      -5
    ],
    "io_out": [
      -8,
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_asc(input),-1),-3),4),3)"
  },
  {
    "input": "input : list = [4, 0, -1, 1, 4, 2]\noutput : list = [9, 7, 6, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(drop([4, 0, -1, 1, 4, 2],2),4))),-1)",
    "io_inp": [
      4,
      0,
      -1,
      1,
      4,
      2
    ],
    "io_out": [
      9,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(drop(input,2),4))),-1)"
  },
  {
    "input": "input : list = [2, -1, -4, -5, 0, 2]\noutput : list = [-9, -8, -5, -4, -2, -2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sub_n([2, -1, -4, -5, 0, 2],-1),-5))))",
    "io_inp": [
      2,
      -1,
      -4,
      -5,
      0,
      2
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sub_n(input,-1),-5))))"
  },
  {
    "input": "input : list = [-3, -5, 3, -2, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(add_n(drop(sub_n(sort_asc([-3, -5, 3, -2, -5]),-2),3),-5))",
    "io_inp": [
      -3,
      -5,
      3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(sub_n(sort_asc(input),-2),3),-5))"
  },
  {
    "input": "input : list = [-3, 3, -5, 2, 5, 4]\noutput : list = [-10, -8, -6, -4, 6, 10]",
    "output": "generated_output : list = mul_n(sort_des([-3, 3, -5, 2, 5, 4]),-2)",
    "io_inp": [
      -3,
      3,
      -5,
      2,
      5,
      4
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -4,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-4, -4, -5, 5, -4]\noutput : list = [3, -6]",
    "output": "generated_output : list = sub_n(drop([-4, -4, -5, 5, -4],3),2)",
    "io_inp": [
      -4,
      -4,
      -5,
      5,
      -4
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),2)"
  },
  {
    "input": "input : list = [0, -3, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(drop([0, -3, -3, -3],2)))))",
    "io_inp": [
      0,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(drop(input,2)))))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des([-2, 1])",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5, 3, -4]\noutput : list = [-10, -9, -6, -2]",
    "output": "generated_output : list = add_n(sort_asc([-1, -5, 3, -4]),-5)",
    "io_inp": [
      -1,
      -5,
      3,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [1, 2, 5, 0, 3, -5]\noutput : list = [4, 5, 8, 3, 6, -2]",
    "output": "generated_output : list = add_n([1, 2, 5, 0, 3, -5],3)",
    "io_inp": [
      1,
      2,
      5,
      0,
      3,
      -5
    ],
    "io_out": [
      4,
      5,
      8,
      3,
      6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, 2, 0, 3]\noutput : list = [3, 2, 1, 0]",
    "output": "generated_output : list = sort_des([1, 2, 0, 3])",
    "io_inp": [
      1,
      2,
      0,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, -3, -2, -3, 0]\noutput : list = [-3, 0, -1, 0, -1, 2]",
    "output": "generated_output : list = sub_n([-5, -2, -3, -2, -3, 0],-2)",
    "io_inp": [
      -5,
      -2,
      -3,
      -2,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      -1,
      0,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, -5, 3, 1, -4]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(take([0, -5, 3, 1, -4],2),10)",
    "io_inp": [
      0,
      -5,
      3,
      1,
      -4
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,2),10)"
  },
  {
    "input": "input : list = [2, 4, -5, 4]\noutput : list = [7, -2]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(drop([2, 4, -5, 4],2))),-3))",
    "io_inp": [
      2,
      4,
      -5,
      4
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(drop(input,2))),-3))"
  },
  {
    "input": "input : list = [1, -2, -3, -2, -2]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(drop(sort_des(sort_asc(take([1, -2, -3, -2, -2],3))),1),-2)",
    "io_inp": [
      1,
      -2,
      -3,
      -2,
      -2
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(sort_asc(take(input,3))),1),-2)"
  },
  {
    "input": "input : list = [-1, -4, 5, 2, -3, 4]\noutput : list = [-3, 3, 9, 15]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(take([-1, -4, 5, 2, -3, 4],4)),2),5),6)",
    "io_inp": [
      -1,
      -4,
      5,
      2,
      -3,
      4
    ],
    "io_out": [
      -3,
      3,
      9,
      15
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(take(input,4)),2),5),6)"
  },
  {
    "input": "input : list = [-2, -1, 1, -3]\noutput : list = [6, 18]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(drop([-2, -1, 1, -3],2),5)),3),32)",
    "io_inp": [
      -2,
      -1,
      1,
      -3
    ],
    "io_out": [
      6,
      18
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(drop(input,2),5)),3),32)"
  },
  {
    "input": "input : list = [3, -1, 4, -5, 0]\noutput : list = [4, 3, 0, -1, -5]",
    "output": "generated_output : list = sort_des([3, -1, 4, -5, 0])",
    "io_inp": [
      3,
      -1,
      4,
      -5,
      0
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, 3, 4]\noutput : list = [20, 15, 15, 5]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(sort_asc([3, 1, 3, 4])),5)))",
    "io_inp": [
      3,
      1,
      3,
      4
    ],
    "io_out": [
      20,
      15,
      15,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [3, -4, 0, 4]\noutput : list = [4, 3, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n([3, -4, 0, 4],1))",
    "io_inp": [
      3,
      -4,
      0,
      4
    ],
    "io_out": [
      4,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [3, 5, -3, 5, -5]\noutput : list = [26, 56, -64, 56, -94]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n(mul_n([3, 5, -3, 5, -5],-3),-3),-5),-2),-2)",
    "io_inp": [
      3,
      5,
      -3,
      5,
      -5
    ],
    "io_out": [
      26,
      56,
      -64,
      56,
      -94
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(mul_n(input,-3),-3),-5),-2),-2)"
  },
  {
    "input": "input : list = [1, 0, -5, -1, 1]\noutput : list = [4, 4, 3, 2, -2]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(sort_asc([1, 0, -5, -1, 1]),5)),2),46)",
    "io_inp": [
      1,
      0,
      -5,
      -1,
      1
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(sort_asc(input),5)),2),46)"
  },
  {
    "input": "input : list = [4, 3, 4, -2, -1]\noutput : list = [4]",
    "output": "generated_output : list = take(take(take([4, 3, 4, -2, -1],2),1),24)",
    "io_inp": [
      4,
      3,
      4,
      -2,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(take(input,2),1),24)"
  },
  {
    "input": "input : list = [5, 1, 2, 0, -4, 1]\noutput : list = [-1, 3, 4, 4, 5, 8]",
    "output": "generated_output : list = take(sort_asc(add_n(take(sort_des([5, 1, 2, 0, -4, 1]),19),3)),51)",
    "io_inp": [
      5,
      1,
      2,
      0,
      -4,
      1
    ],
    "io_out": [
      -1,
      3,
      4,
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(sort_des(input),19),3)),51)"
  },
  {
    "input": "input : list = [5, -4, 4, 5, 5]\noutput : list = [1, 1, 0, -8, 1]",
    "output": "generated_output : list = take(reverse(take(sub_n(add_n([5, -4, 4, 5, 5],-2),2),13)),18)",
    "io_inp": [
      5,
      -4,
      4,
      5,
      5
    ],
    "io_out": [
      1,
      1,
      0,
      -8,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(add_n(input,-2),2),13)),18)"
  },
  {
    "input": "input : list = [-4, 2, -4]\noutput : list = [-10, -10, -40]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sort_des([-4, 2, -4])),-1),5),-5)",
    "io_inp": [
      -4,
      2,
      -4
    ],
    "io_out": [
      -10,
      -10,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sort_des(input)),-1),5),-5)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [1, 9, 7]",
    "output": "generated_output : list = sub_n(reverse([2, 4, -4]),-5)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      1,
      9,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [2, -2, -4, 1, 5]\noutput : list = [-8, -4, 2, 4, 10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(sort_asc([2, -2, -4, 1, 5])),2)))",
    "io_inp": [
      2,
      -2,
      -4,
      1,
      5
    ],
    "io_out": [
      -8,
      -4,
      2,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_asc([0, -1])))),5)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [4, -2, -4]",
    "output": "generated_output : list = sort_des([4, -4, -2])",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = drop([-4, 0, 5],1)",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-16, 0]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(mul_n([-3, 5],-1)),5),-3),2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(mul_n(input,-1)),5),-3),2)"
  },
  {
    "input": "input : list = [2, -5, 4, -1, -5, 2]\noutput : list = [1, 1, 5, 8, 8, 10]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_asc([2, -5, 4, -1, -5, 2]),-4),-3),-2),-3)",
    "io_inp": [
      2,
      -5,
      4,
      -1,
      -5,
      2
    ],
    "io_out": [
      1,
      1,
      5,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_asc(input),-4),-3),-2),-3)"
  },
  {
    "input": "input : list = [0, -2, -1, 4, 0, -3]\noutput : list = [-4, -1, 3, -2, -3, -1]",
    "output": "generated_output : list = sub_n(reverse([0, -2, -1, 4, 0, -3]),1)",
    "io_inp": [
      0,
      -2,
      -1,
      4,
      0,
      -3
    ],
    "io_out": [
      -4,
      -1,
      3,
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [1, -3, 3, -2]\noutput : list = [8, -4, 14, -1]",
    "output": "generated_output : list = add_n(mul_n([1, -3, 3, -2],3),5)",
    "io_inp": [
      1,
      -3,
      3,
      -2
    ],
    "io_out": [
      8,
      -4,
      14,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),5)"
  },
  {
    "input": "input : list = [1, -1, 3, -1, -5, 3]\noutput : list = [4, 4, 2, 0, 0, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(add_n([1, -1, 3, -1, -5, 3],3),4))),2)",
    "io_inp": [
      1,
      -1,
      3,
      -1,
      -5,
      3
    ],
    "io_out": [
      4,
      4,
      2,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(add_n(input,3),4))),2)"
  },
  {
    "input": "input : list = [5, 0, 5, -2, 5]\noutput : list = [5, 5, 5, 0, -2]",
    "output": "generated_output : list = take(take(sort_des(sort_asc(sort_des([5, 0, 5, -2, 5]))),26),35)",
    "io_inp": [
      5,
      0,
      5,
      -2,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(sort_des(input))),26),35)"
  },
  {
    "input": "input : list = [-5, -4, 4]\noutput : list = [-2, 6]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(drop([-5, -4, 4],1),2),-4)),-1)",
    "io_inp": [
      -5,
      -4,
      4
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(drop(input,1),2),-4)),-1)"
  },
  {
    "input": "input : list = [-5, 5, 5, -4, 0, 4]\noutput : list = [-20, -20, 16, 0, -16]",
    "output": "generated_output : list = drop(mul_n([-5, 5, 5, -4, 0, 4],-4),1)",
    "io_inp": [
      -5,
      5,
      5,
      -4,
      0,
      4
    ],
    "io_out": [
      -20,
      -20,
      16,
      0,
      -16
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,-4),1)"
  },
  {
    "input": "input : list = [1, -4, 3, 4, 5]\noutput : list = [2, -3, 4]",
    "output": "generated_output : list = sub_n(take([1, -4, 3, 4, 5],3),-1)",
    "io_inp": [
      1,
      -4,
      3,
      4,
      5
    ],
    "io_out": [
      2,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-1)"
  },
  {
    "input": "input : list = [2, -1, 0, 0, -4]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take([2, -1, 0, 0, -4],1))",
    "io_inp": [
      2,
      -1,
      0,
      0,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(reverse([-1, -1])))),5)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(reverse(input)))),5)"
  },
  {
    "input": "input : list = [-5, -2, 4, 1, -1]\noutput : list = [6, 3, 1, 0, -3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(mul_n([-5, -2, 4, 1, -1],1)),3)),1)",
    "io_inp": [
      -5,
      -2,
      4,
      1,
      -1
    ],
    "io_out": [
      6,
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(mul_n(input,1)),3)),1)"
  },
  {
    "input": "input : list = [3, 1, -1, 3, 3, 0]\noutput : list = [-24, -24, -24, -8, 0, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(mul_n([3, 1, -1, 3, 3, 0],-2),4),13)))",
    "io_inp": [
      3,
      1,
      -1,
      3,
      3,
      0
    ],
    "io_out": [
      -24,
      -24,
      -24,
      -8,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(mul_n(input,-2),4),13)))"
  },
  {
    "input": "input : list = [1, -1, 2, 3, -3, 3]\noutput : list = [3, -3, 3, 2, -1, 1]",
    "output": "generated_output : list = reverse([1, -1, 2, 3, -3, 3])",
    "io_inp": [
      1,
      -1,
      2,
      3,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      3,
      2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(reverse(drop([-3, 5, 5],1)))",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-3, -5, 5, 4]\noutput : list = [140, 100, -40, -60]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(sort_asc([-3, -5, 5, 4]),-2),21),-5),4)",
    "io_inp": [
      -3,
      -5,
      5,
      4
    ],
    "io_out": [
      140,
      100,
      -40,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(sort_asc(input),-2),21),-5),4)"
  },
  {
    "input": "input : list = [-4, -3, -2, 0, -1]\noutput : list = [-6, -5, -4, -2, -3]",
    "output": "generated_output : list = take(reverse(reverse(take(add_n([-4, -3, -2, 0, -1],-2),17))),46)",
    "io_inp": [
      -4,
      -3,
      -2,
      0,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(add_n(input,-2),17))),46)"
  },
  {
    "input": "input : list = [1, 1, 2, 0, 2]\noutput : list = [2, 2, 1, 1, 0]",
    "output": "generated_output : list = sort_des([1, 1, 2, 0, 2])",
    "io_inp": [
      1,
      1,
      2,
      0,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [45, 10]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_des([-4, 3])),5)),-5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      45,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_des(input)),5)),-5)"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [1, -6, -5]",
    "output": "generated_output : list = sub_n([3, -4, -3],2)",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      1,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, -1, -1, -3, 5, 0]\noutput : list = [-2, 0, 0, 1, 6]",
    "output": "generated_output : list = sub_n(sort_asc(take(add_n(drop([2, -1, -1, -3, 5, 0],1),3),27)),2)",
    "io_inp": [
      2,
      -1,
      -1,
      -3,
      5,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(add_n(drop(input,1),3),27)),2)"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n(add_n([4, 1, 2],-3),3))))",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(add_n(input,-3),3))))"
  },
  {
    "input": "input : list = [1, 3, 3, 4]\noutput : list = [8, 10, 10, 11]",
    "output": "generated_output : list = take(take(sort_asc(add_n(sub_n([1, 3, 3, 4],-5),2)),28),41)",
    "io_inp": [
      1,
      3,
      3,
      4
    ],
    "io_out": [
      8,
      10,
      10,
      11
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(sub_n(input,-5),2)),28),41)"
  },
  {
    "input": "input : list = [-1, -2, 3, -2]\noutput : list = [-24, -24, -14, 26]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(mul_n([-1, -2, 3, -2],5),2),-4)))",
    "io_inp": [
      -1,
      -2,
      3,
      -2
    ],
    "io_out": [
      -24,
      -24,
      -14,
      26
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(mul_n(input,5),2),-4)))"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [-44, 4, 28]",
    "output": "generated_output : list = mul_n(add_n(mul_n([2, -2, -4],3),5),-4)",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      -44,
      4,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,3),5),-4)"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [-2, -7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(drop([-5, -4, 1],1),11),-1),4))",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(drop(input,1),11),-1),4))"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [-2, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc([-4, 2, 4]),-2)",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [4, -4, 1, 4, 1, 5]\noutput : list = [-12, 12, -3, -12, -3, -15]",
    "output": "generated_output : list = mul_n([4, -4, 1, 4, 1, 5],-3)",
    "io_inp": [
      4,
      -4,
      1,
      4,
      1,
      5
    ],
    "io_out": [
      -12,
      12,
      -3,
      -12,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [8, 4]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(reverse([3, 1]),12)),2),-2)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(reverse(input),12)),2),-2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(sub_n([-5, -4],-1),6)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),6)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sort_asc([3, 5]))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -5, 4, 5, -3, 2]\noutput : list = [5, 1, 10, 11, 3, 8]",
    "output": "generated_output : list = add_n(sub_n([-1, -5, 4, 5, -3, 2],-2),4)",
    "io_inp": [
      -1,
      -5,
      4,
      5,
      -3,
      2
    ],
    "io_out": [
      5,
      1,
      10,
      11,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),4)"
  },
  {
    "input": "input : list = [-2, -4, 4, 3, 1, 5]\noutput : list = [5, 1, 3, 4, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, 4, 3, 1, 5])",
    "io_inp": [
      -2,
      -4,
      4,
      3,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      3,
      4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, -2, -3, -3, 1]\noutput : list = [-60, -60, -50, -40]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(take([-1, -3, -2, -3, -3, 1],4)),3),5),2)",
    "io_inp": [
      -1,
      -3,
      -2,
      -3,
      -3,
      1
    ],
    "io_out": [
      -60,
      -60,
      -50,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(take(input,4)),3),5),2)"
  },
  {
    "input": "input : list = [-3, -3, -2, 5, -4]\noutput : list = [-26, -26, -18, 38, -34]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(reverse([-3, -3, -2, 5, -4]),4)),2),2)",
    "io_inp": [
      -3,
      -3,
      -2,
      5,
      -4
    ],
    "io_out": [
      -26,
      -26,
      -18,
      38,
      -34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(reverse(input),4)),2),2)"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [4, 4, 2]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(sort_des([4, 2, 4])))),3)",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [-1, 2, -3, -2, 3]\noutput : list = [-2, 4, -6]",
    "output": "generated_output : list = take(mul_n([-1, 2, -3, -2, 3],2),3)",
    "io_inp": [
      -1,
      2,
      -3,
      -2,
      3
    ],
    "io_out": [
      -2,
      4,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [-1, 1, -1, 0]\noutput : list = [6, 5, 4, 4]",
    "output": "generated_output : list = sub_n(sort_des([-1, 1, -1, 0]),-5)",
    "io_inp": [
      -1,
      1,
      -1,
      0
    ],
    "io_out": [
      6,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [-10, 6, 6]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(sort_asc([1, 1, -3])),4),-2),9)",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      -10,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(sort_asc(input)),4),-2),9)"
  },
  {
    "input": "input : list = [1, -5, -5, 5]\noutput : list = [2, -8, -8, -2]",
    "output": "generated_output : list = sub_n(reverse([1, -5, -5, 5]),3)",
    "io_inp": [
      1,
      -5,
      -5,
      5
    ],
    "io_out": [
      2,
      -8,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-1, 0, -4, -2]\noutput : list = [1, 0, -1, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(add_n([-1, 0, -4, -2],1)))),35)",
    "io_inp": [
      -1,
      0,
      -4,
      -2
    ],
    "io_out": [
      1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(add_n(input,1)))),35)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-10, 25]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(add_n([-4, 3],1)),-2),-5))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(add_n(input,1)),-2),-5))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [25, 25]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc([-5, -5]),16)),-5)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(input),16)),-5)"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [4, 4, 4]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sub_n([3, 3, 3],4),5),9)))",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sub_n(input,4),5),9)))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = reverse(reverse(sort_asc([-2, 1])))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([1, -2, -1])))",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [4, -4, -2, -1, 0]\noutput : list = [-9, -7, -6, -5, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sub_n([4, -4, -2, -1, 0],5)))))",
    "io_inp": [
      4,
      -4,
      -2,
      -1,
      0
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sub_n(input,5)))))"
  },
  {
    "input": "input : list = [-2, 3, 0]\noutput : list = [3, 0, -2]",
    "output": "generated_output : list = sort_des([-2, 3, 0])",
    "io_inp": [
      -2,
      3,
      0
    ],
    "io_out": [
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -1, 5, -4, -3]\noutput : list = [20, 15, 5, -10, -25]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(reverse([2, -1, 5, -4, -3]))),41),-5)",
    "io_inp": [
      2,
      -1,
      5,
      -4,
      -3
    ],
    "io_out": [
      20,
      15,
      5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(reverse(input))),41),-5)"
  },
  {
    "input": "input : list = [2, -4, -4, 5]\noutput : list = [-11, -11, -5, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(sort_des([2, -4, -4, 5]),3),2),2))",
    "io_inp": [
      2,
      -4,
      -4,
      5
    ],
    "io_out": [
      -11,
      -11,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(sort_des(input),3),2),2))"
  },
  {
    "input": "input : list = [-5, 2, 0, 3, -3, 2]\noutput : list = [160, 128, 128, 64, -32, -96]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sub_n([-5, 2, 0, 3, -3, 2],-2),2)),-4),-4)",
    "io_inp": [
      -5,
      2,
      0,
      3,
      -3,
      2
    ],
    "io_out": [
      160,
      128,
      128,
      64,
      -32,
      -96
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sub_n(input,-2),2)),-4),-4)"
  },
  {
    "input": "input : list = [-1, 2, 4, 2, -3, -4]\noutput : list = [-5, -2, 0, -2, -7, -8]",
    "output": "generated_output : list = add_n(add_n([-1, 2, 4, 2, -3, -4],-3),-1)",
    "io_inp": [
      -1,
      2,
      4,
      2,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -2,
      0,
      -2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),-1)"
  },
  {
    "input": "input : list = [-5, -5, -5, -4, -2, 0]\noutput : list = [-14, -14, -14, -12, -8, -4]",
    "output": "generated_output : list = mul_n(add_n(sub_n([-5, -5, -5, -4, -2, 0],3),1),2)",
    "io_inp": [
      -5,
      -5,
      -5,
      -4,
      -2,
      0
    ],
    "io_out": [
      -14,
      -14,
      -14,
      -12,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,3),1),2)"
  },
  {
    "input": "input : list = [-1, 0, -5, 4, -1, 3]\noutput : list = [4, 3, 0, -1, -1, -5]",
    "output": "generated_output : list = take(sort_des(take(sub_n(sub_n([-1, 0, -5, 4, -1, 3],3),-3),23)),28)",
    "io_inp": [
      -1,
      0,
      -5,
      4,
      -1,
      3
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(sub_n(input,3),-3),23)),28)"
  },
  {
    "input": "input : list = [-4, 4, 4, 0, 0]\noutput : list = [0, 0, 4, 4, -4]",
    "output": "generated_output : list = reverse([-4, 4, 4, 0, 0])",
    "io_inp": [
      -4,
      4,
      4,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 3, -2, -3, 3]\noutput : list = [-13, 17, 12, -13, 27, 27]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n([-5, -5, 3, -2, -3, 3],5),2),-4)),-1)",
    "io_inp": [
      -5,
      -5,
      3,
      -2,
      -3,
      3
    ],
    "io_out": [
      -13,
      17,
      12,
      -13,
      27,
      27
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n(input,5),2),-4)),-1)"
  },
  {
    "input": "input : list = [-4, -1, -1, -1]\noutput : list = [-1, 2, 2, 2]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(sub_n([-4, -1, -1, -1],3),-3),1),-4),-4)",
    "io_inp": [
      -4,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(sub_n(input,3),-3),1),-4),-4)"
  },
  {
    "input": "input : list = [-1, -2, -2, 1, 4]\noutput : list = [0, -3, -6, -6]",
    "output": "generated_output : list = reverse(sub_n(drop([-1, -2, -2, 1, 4],1),4))",
    "io_inp": [
      -1,
      -2,
      -2,
      1,
      4
    ],
    "io_out": [
      0,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,1),4))"
  },
  {
    "input": "input : list = [3, -4, 3, 0]\noutput : list = [-4, 0, 3, 3]",
    "output": "generated_output : list = sort_asc([3, -4, 3, 0])",
    "io_inp": [
      3,
      -4,
      3,
      0
    ],
    "io_out": [
      -4,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, 3, -5]\noutput : list = [-34, -22, -22, -2]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(add_n([0, 0, 3, -5],5)),-4)),2)",
    "io_inp": [
      0,
      0,
      3,
      -5
    ],
    "io_out": [
      -34,
      -22,
      -22,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(add_n(input,5)),-4)),2)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [8, 4, 2]",
    "output": "generated_output : list = sub_n(sort_des([-3, -1, 3]),-5)",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      8,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [4, 8, 5]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n([-2, 2, -1],-5),4),-4),1)",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      4,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(input,-5),4),-4),1)"
  },
  {
    "input": "input : list = [-5, -5, 2, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(sort_des(take([-5, -5, 2, -3],1)))",
    "io_inp": [
      -5,
      -5,
      2,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [5, -4, 5, 4]\noutput : list = [-75, -75, -60, 60]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(mul_n([5, -4, 5, 4],5),11)),-3))",
    "io_inp": [
      5,
      -4,
      5,
      4
    ],
    "io_out": [
      -75,
      -75,
      -60,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(mul_n(input,5),11)),-3))"
  },
  {
    "input": "input : list = [3, 1, -4, -4, -1, -5]\noutput : list = [8, 6, 6, 0, -4, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(add_n([3, 1, -4, -4, -1, -5],1)))),-2)",
    "io_inp": [
      3,
      1,
      -4,
      -4,
      -1,
      -5
    ],
    "io_out": [
      8,
      6,
      6,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(add_n(input,1)))),-2)"
  },
  {
    "input": "input : list = [-2, 4, -3, -3]\noutput : list = [50]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(mul_n([-2, 4, -3, -3],5),1),-5)))",
    "io_inp": [
      -2,
      4,
      -3,
      -3
    ],
    "io_out": [
      50
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(mul_n(input,5),1),-5)))"
  },
  {
    "input": "input : list = [2, 1, 1, 0, 0, -2]\noutput : list = [-2, -1, -1, 0, 0, 2]",
    "output": "generated_output : list = mul_n([2, 1, 1, 0, 0, -2],-1)",
    "io_inp": [
      2,
      1,
      1,
      0,
      0,
      -2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 5, 4, 4, -2, 1]\noutput : list = [-4, -2, 1, 4, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(reverse([-4, 5, 4, 4, -2, 1])))))",
    "io_inp": [
      -4,
      5,
      4,
      4,
      -2,
      1
    ],
    "io_out": [
      -4,
      -2,
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [10, 9]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(sort_des([2, 3]),-5),5),32),3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      10,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(sort_des(input),-5),5),32),3)"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [-8, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(drop([0, 0, 4],1),-2)),-5),-1)",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(drop(input,1),-2)),-5),-1)"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(take([2, 5, 5],1)),1),-1),12)",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(take(input,1)),1),-1),12)"
  },
  {
    "input": "input : list = [0, 4, -2, -3]\noutput : list = [-180, -120, 0, 240]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(mul_n([0, 4, -2, -3],-3),-4)),5))",
    "io_inp": [
      0,
      4,
      -2,
      -3
    ],
    "io_out": [
      -180,
      -120,
      0,
      240
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(mul_n(input,-3),-4)),5))"
  },
  {
    "input": "input : list = [-4, 5, 3, -2]\noutput : list = [0, -9]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse(take([-4, 5, 3, -2],2)),-4),1),-1)",
    "io_inp": [
      -4,
      5,
      3,
      -2
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(take(input,2)),-4),1),-1)"
  },
  {
    "input": "input : list = [4, -1, 0, -4]\noutput : list = [18]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(take([4, -1, 0, -4],1),5))),-2)",
    "io_inp": [
      4,
      -1,
      0,
      -4
    ],
    "io_out": [
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(take(input,1),5))),-2)"
  },
  {
    "input": "input : list = [2, 3, 4, 1]\noutput : list = [-12, -9]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(take([2, 3, 4, 1],2)),-3)),-3)",
    "io_inp": [
      2,
      3,
      4,
      1
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(take(input,2)),-3)),-3)"
  },
  {
    "input": "input : list = [1, 3, -3, -3]\noutput : list = [1, 3, -3, -3]",
    "output": "generated_output : list = mul_n([1, 3, -3, -3],1)",
    "io_inp": [
      1,
      3,
      -3,
      -3
    ],
    "io_out": [
      1,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n([1, -3],-2),15)))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(input,-2),15)))"
  },
  {
    "input": "input : list = [-5, 0, -2, -4, 5, 0]\noutput : list = [5, 0, 0, -2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des([-5, 0, -2, -4, 5, 0])))",
    "io_inp": [
      -5,
      0,
      -2,
      -4,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [4, -5, 0, 1, -1, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(drop([4, -5, 0, 1, -1, 0],4)),5)))",
    "io_inp": [
      4,
      -5,
      0,
      1,
      -1,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(drop(input,4)),5)))"
  },
  {
    "input": "input : list = [2, -4, 1]\noutput : list = [0]",
    "output": "generated_output : list = add_n(add_n(take([2, -4, 1],1),1),-3)",
    "io_inp": [
      2,
      -4,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),1),-3)"
  },
  {
    "input": "input : list = [0, -4, -3, -5, -4]\noutput : list = [21]",
    "output": "generated_output : list = take(add_n(mul_n(take(reverse([0, -4, -3, -5, -4]),1),-5),1),33)",
    "io_inp": [
      0,
      -4,
      -3,
      -5,
      -4
    ],
    "io_out": [
      21
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(reverse(input),1),-5),1),33)"
  },
  {
    "input": "input : list = [2, 3, -5, 2, 0]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(reverse([2, 3, -5, 2, 0])),1),-5))",
    "io_inp": [
      2,
      3,
      -5,
      2,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(reverse(input)),1),-5))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-40, -36]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(add_n([-2, -3],-3),4),15),4))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -40,
      -36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(add_n(input,-3),4),15),4))"
  },
  {
    "input": "input : list = [4, 5, -3, -3, 1, -3]\noutput : list = [12, -4, 12]",
    "output": "generated_output : list = reverse(mul_n(drop([4, 5, -3, -3, 1, -3],3),-4))",
    "io_inp": [
      4,
      5,
      -3,
      -3,
      1,
      -3
    ],
    "io_out": [
      12,
      -4,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,3),-4))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-98, -58]",
    "output": "generated_output : list = sub_n(take(take(mul_n(mul_n([-5, -3],-5),-4),4),18),-2)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -98,
      -58
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(mul_n(input,-5),-4),4),18),-2)"
  },
  {
    "input": "input : list = [1, 3, -5, 1]\noutput : list = [-41, -53, -5, -41]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(sub_n([1, 3, -5, 1],-5),-2),3),5),32)",
    "io_inp": [
      1,
      3,
      -5,
      1
    ],
    "io_out": [
      -41,
      -53,
      -5,
      -41
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(sub_n(input,-5),-2),3),5),32)"
  },
  {
    "input": "input : list = [5, -5, -1, -1, -4]\noutput : list = [5, -1, -1, -4, -5]",
    "output": "generated_output : list = sort_des([5, -5, -1, -1, -4])",
    "io_inp": [
      5,
      -5,
      -1,
      -1,
      -4
    ],
    "io_out": [
      5,
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1, -1, 1, 2, -2]\noutput : list = [-9, -6, -3, 3, 3, 6]",
    "output": "generated_output : list = take(sort_asc(take(mul_n([3, -1, -1, 1, 2, -2],-3),21)),31)",
    "io_inp": [
      3,
      -1,
      -1,
      1,
      2,
      -2
    ],
    "io_out": [
      -9,
      -6,
      -3,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(input,-3),21)),31)"
  },
  {
    "input": "input : list = [1, -3, 0, -1, -4]\noutput : list = [-42, -27, -22, -37, -17]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(sub_n([1, -3, 0, -1, -4],4)),5),-2),21)",
    "io_inp": [
      1,
      -3,
      0,
      -1,
      -4
    ],
    "io_out": [
      -42,
      -27,
      -22,
      -37,
      -17
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(sub_n(input,4)),5),-2),21)"
  },
  {
    "input": "input : list = [-2, 3, 3, -5]\noutput : list = [22, 2, 2, 34]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(sub_n([-2, 3, 3, -5],3),1),-4),5),1)",
    "io_inp": [
      -2,
      3,
      3,
      -5
    ],
    "io_out": [
      22,
      2,
      2,
      34
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(sub_n(input,3),1),-4),5),1)"
  },
  {
    "input": "input : list = [2, 5, -1, 1, -1]\noutput : list = [40, 40, 50]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(drop([2, 5, -1, 1, -1],2)),-4),5),5)",
    "io_inp": [
      2,
      5,
      -1,
      1,
      -1
    ],
    "io_out": [
      40,
      40,
      50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(drop(input,2)),-4),5),5)"
  },
  {
    "input": "input : list = [0, -1, -4, -1, 3]\noutput : list = [-4, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(drop([0, -1, -4, -1, 3],2),24))))",
    "io_inp": [
      0,
      -1,
      -4,
      -1,
      3
    ],
    "io_out": [
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(drop(input,2),24))))"
  },
  {
    "input": "input : list = [-3, 2, 0, -3, 0]\noutput : list = [-3, 2, 0, -3, 0]",
    "output": "generated_output : list = reverse(reverse([-3, 2, 0, -3, 0]))",
    "io_inp": [
      -3,
      2,
      0,
      -3,
      0
    ],
    "io_out": [
      -3,
      2,
      0,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [3, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(drop([-3, 4, -3],1),-3),-4)),-5)",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      3,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(drop(input,1),-3),-4)),-5)"
  },
  {
    "input": "input : list = [-3, -3, -3, -5]\noutput : list = [-1, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(drop([-3, -3, -3, -5],1),-2),30)))",
    "io_inp": [
      -3,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(drop(input,1),-2),30)))"
  },
  {
    "input": "input : list = [-3, -4, 0, -1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(take([-3, -4, 0, -1],2)))))",
    "io_inp": [
      -3,
      -4,
      0,
      -1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(take(input,2)))))"
  },
  {
    "input": "input : list = [4, -1, 2, 1, 0]\noutput : list = [-1, 0, 1, 2, 4]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des([4, -1, 2, 1, 0])),31))",
    "io_inp": [
      4,
      -1,
      2,
      1,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(input)),31))"
  },
  {
    "input": "input : list = [3, 3, 2, -1, 5, -3]\noutput : list = [7, -9]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(drop([3, 3, 2, -1, 5, -3],4)),2),1),-1)",
    "io_inp": [
      3,
      3,
      2,
      -1,
      5,
      -3
    ],
    "io_out": [
      7,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(drop(input,4)),2),1),-1)"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [23, 3, -13]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(sort_asc([0, -5, 4]),-4),3)),33)",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      23,
      3,
      -13
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(sort_asc(input),-4),3)),33)"
  },
  {
    "input": "input : list = [-5, 2, 1, -4, -2]\noutput : list = [-1, -3, -9, -13, -15]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(mul_n([-5, 2, 1, -4, -2],2)))),5)",
    "io_inp": [
      -5,
      2,
      1,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -9,
      -13,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(mul_n(input,2)))),5)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [10, 4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(sub_n([1, -2],1),2),-5),-2),3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(sub_n(input,1),2),-5),-2),3)"
  },
  {
    "input": "input : list = [5, -5, -1, 0, 3]\noutput : list = [3, -7, -3, -2, 1]",
    "output": "generated_output : list = add_n([5, -5, -1, 0, 3],-2)",
    "io_inp": [
      5,
      -5,
      -1,
      0,
      3
    ],
    "io_out": [
      3,
      -7,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [0, -1, 0, -1, 5, -2]\noutput : list = [-2, -1, -1, 0, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc([0, -1, 0, -1, 5, -2]))))",
    "io_inp": [
      0,
      -1,
      0,
      -1,
      5,
      -2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [-1, 3, -5, -5, -1, -4]\noutput : list = [-4, -4, -3, 0, 0, 4]",
    "output": "generated_output : list = sub_n(sort_asc([-1, 3, -5, -5, -1, -4]),-1)",
    "io_inp": [
      -1,
      3,
      -5,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-4, 2, 2, 0, 0]\noutput : list = [-3, 3, 3, 1]",
    "output": "generated_output : list = mul_n(sub_n(take(take(sub_n([-4, 2, 2, 0, 0],-4),18),4),3),1)",
    "io_inp": [
      -4,
      2,
      2,
      0,
      0
    ],
    "io_out": [
      -3,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(sub_n(input,-4),18),4),3),1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(sort_asc([3, 1]),14),-3)))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(sort_asc(input),14),-3)))"
  },
  {
    "input": "input : list = [4, -2, 2, -5]\noutput : list = [8, 4, -4, -10]",
    "output": "generated_output : list = sort_des(mul_n([4, -2, 2, -5],2))",
    "io_inp": [
      4,
      -2,
      2,
      -5
    ],
    "io_out": [
      8,
      4,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [3, -4, 2, -4]\noutput : list = [4, 4, -2, -3]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(sort_des([3, -4, 2, -4]),17)),-1),38)",
    "io_inp": [
      3,
      -4,
      2,
      -4
    ],
    "io_out": [
      4,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(sort_des(input),17)),-1),38)"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = sort_asc([2, -3, -5])",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, 1, -5, 2, -1]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(add_n([4, -3, 1, -5, 2, -1],4),3)),1),-2)",
    "io_inp": [
      4,
      -3,
      1,
      -5,
      2,
      -1
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(add_n(input,4),3)),1),-2)"
  },
  {
    "input": "input : list = [4, 4, 3, 2]\noutput : list = [7, 7, 6, 5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(reverse([4, 4, 3, 2]),3))))",
    "io_inp": [
      4,
      4,
      3,
      2
    ],
    "io_out": [
      7,
      7,
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [-5, 3, -1, 5, 3, 4]\noutput : list = [-5, -1, 3]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(take([-5, 3, -1, 5, 3, 4],3)),34)))",
    "io_inp": [
      -5,
      3,
      -1,
      5,
      3,
      4
    ],
    "io_out": [
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(take(input,3)),34)))"
  },
  {
    "input": "input : list = [-3, 3, -5, 4]\noutput : list = [25, 20, -10, -20]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-3, 3, -5, 4],1)),5)",
    "io_inp": [
      -3,
      3,
      -5,
      4
    ],
    "io_out": [
      25,
      20,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,1)),5)"
  },
  {
    "input": "input : list = [4, 4, 5, 3, 3, -2]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take([4, 4, 5, 3, 3, -2],2),-2))))",
    "io_inp": [
      4,
      4,
      5,
      3,
      3,
      -2
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take(input,2),-2))))"
  },
  {
    "input": "input : list = [0, 3, 3, -1, -2]\noutput : list = [6, 9, 9]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(take([0, 3, 3, -1, -2],3),-5),-4),-3),46)",
    "io_inp": [
      0,
      3,
      3,
      -1,
      -2
    ],
    "io_out": [
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(take(input,3),-5),-4),-3),46)"
  },
  {
    "input": "input : list = [-1, -3, -5, -2]\noutput : list = [1, -1, -3, 0]",
    "output": "generated_output : list = sub_n([-1, -3, -5, -2],-2)",
    "io_inp": [
      -1,
      -3,
      -5,
      -2
    ],
    "io_out": [
      1,
      -1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des([-5, -4]),14))),-4)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des(input),14))),-4)"
  },
  {
    "input": "input : list = [-4, 5, -4, 3, 3]\noutput : list = [-9, -9, 12, -15, 12]",
    "output": "generated_output : list = reverse(take(mul_n([-4, 5, -4, 3, 3],-3),17))",
    "io_inp": [
      -4,
      5,
      -4,
      3,
      3
    ],
    "io_out": [
      -9,
      -9,
      12,
      -15,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,-3),17))"
  },
  {
    "input": "input : list = [5, -3, -3, 2]\noutput : list = [6, 6, 11, 14]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(sub_n([5, -3, -3, 2],-5)))),-4)",
    "io_inp": [
      5,
      -3,
      -3,
      2
    ],
    "io_out": [
      6,
      6,
      11,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(sub_n(input,-5)))),-4)"
  },
  {
    "input": "input : list = [1, 2, 0, -3, 0]\noutput : list = [3, 2, 1, 1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([1, 2, 0, -3, 0],-1)))",
    "io_inp": [
      1,
      2,
      0,
      -3,
      0
    ],
    "io_out": [
      3,
      2,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [4, -3, -2, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([4, -3, -2, 0, -5],3)",
    "io_inp": [
      4,
      -3,
      -2,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 3, -4, 2]\noutput : list = [3, 2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([-2, 3, -4, 2])))",
    "io_inp": [
      -2,
      3,
      -4,
      2
    ],
    "io_out": [
      3,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [-2, 18, 8]",
    "output": "generated_output : list = add_n(mul_n(sub_n([5, -5, 0],5),-2),-2)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      -2,
      18,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,5),-2),-2)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [-4, -2, 5]",
    "output": "generated_output : list = sort_asc([-2, 5, -4])",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      -4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3, 1, 0, 4]\noutput : list = [3, 0, 4, 3, 7]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sub_n([0, -3, 1, 0, 4],3),-5),-1),2),-2)",
    "io_inp": [
      0,
      -3,
      1,
      0,
      4
    ],
    "io_out": [
      3,
      0,
      4,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sub_n(input,3),-5),-1),2),-2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n([-1, -1],-1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 0, -3]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(sort_asc([-5, 0, -3]),-2)),-3),13)",
    "io_inp": [
      -5,
      0,
      -3
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(sort_asc(input),-2)),-3),13)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([4, -3])))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, 1, -5, 0, 4]\noutput : list = [-2, 0, 10]",
    "output": "generated_output : list = take(drop(sort_asc(reverse(mul_n([4, 1, -5, 0, 4],-2))),2),48)",
    "io_inp": [
      4,
      1,
      -5,
      0,
      4
    ],
    "io_out": [
      -2,
      0,
      10
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(reverse(mul_n(input,-2))),2),48)"
  },
  {
    "input": "input : list = [2, 0, -2, 4]\noutput : list = [-2, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse([2, 0, -2, 4]))",
    "io_inp": [
      2,
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, 0, 5, 1, 4]\noutput : list = [-1, -4, 0, -5]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(reverse([2, 0, 5, 1, 4]),5))),4)",
    "io_inp": [
      2,
      0,
      5,
      1,
      4
    ],
    "io_out": [
      -1,
      -4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(reverse(input),5))),4)"
  },
  {
    "input": "input : list = [-1, 5, -2, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take([-1, 5, -2, -2],1))))",
    "io_inp": [
      -1,
      5,
      -2,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(input,1))))"
  },
  {
    "input": "input : list = [-1, -3, -5, 1]\noutput : list = [8, 4, 0, -4]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([-1, -3, -5, 1]),1),-2)",
    "io_inp": [
      -1,
      -3,
      -5,
      1
    ],
    "io_out": [
      8,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),1),-2)"
  },
  {
    "input": "input : list = [-4, -1, 5, 3, 5, -4]\noutput : list = [-9, -9, -6, -2, 0, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-4, -1, 5, 3, 5, -4]),5))",
    "io_inp": [
      -4,
      -1,
      5,
      3,
      5,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [-4, 3, 0, 5]\noutput : list = [-480, 0, 360, 600]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(mul_n([-4, 3, 0, 5],2),-3),-5)),4)",
    "io_inp": [
      -4,
      3,
      0,
      5
    ],
    "io_out": [
      -480,
      0,
      360,
      600
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(mul_n(input,2),-3),-5)),4)"
  },
  {
    "input": "input : list = [-3, 5, 3, 3, 2]\noutput : list = [-3, 2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([-3, 5, 3, 3, 2])",
    "io_inp": [
      -3,
      5,
      3,
      3,
      2
    ],
    "io_out": [
      -3,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, 1, 1, 2, -1]\noutput : list = [1, 5, 7, 7, 8, 11]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(add_n([5, -5, 1, 1, 2, -1],5),12)),-1),6)",
    "io_inp": [
      5,
      -5,
      1,
      1,
      2,
      -1
    ],
    "io_out": [
      1,
      5,
      7,
      7,
      8,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(add_n(input,5),12)),-1),6)"
  },
  {
    "input": "input : list = [4, -3, -1, 5, 2, 1]\noutput : list = [0, 2, 4, 5, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc([4, -3, -1, 5, 2, 1]),3)",
    "io_inp": [
      4,
      -3,
      -1,
      5,
      2,
      1
    ],
    "io_out": [
      0,
      2,
      4,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [0, 10]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(drop([2, 0, -5],1)),15),-2))",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(drop(input,1)),15),-2))"
  },
  {
    "input": "input : list = [0, 4, 1, 4, 0, 0]\noutput : list = [0, 12, 3, 12, 0, 0]",
    "output": "generated_output : list = mul_n([0, 4, 1, 4, 0, 0],3)",
    "io_inp": [
      0,
      4,
      1,
      4,
      0,
      0
    ],
    "io_out": [
      0,
      12,
      3,
      12,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [4, -4, -3, 5, 3]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(take([4, -4, -3, 5, 3],1),-1),2)),3)",
    "io_inp": [
      4,
      -4,
      -3,
      5,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(take(input,1),-1),2)),3)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [1, 9]",
    "output": "generated_output : list = sort_asc(sub_n([5, -3],-4))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(take([4, 1, 5],1)))),-4)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(take(input,1)))),-4)"
  },
  {
    "input": "input : list = [-1, -3, 5, -1]\noutput : list = [3, 5, 5, 11]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc([-1, -3, 5, -1])),-4),-2)",
    "io_inp": [
      -1,
      -3,
      5,
      -1
    ],
    "io_out": [
      3,
      5,
      5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(input)),-4),-2)"
  },
  {
    "input": "input : list = [0, -5, 3, 4, -4, -5]\noutput : list = [0, 1, 9]",
    "output": "generated_output : list = sort_asc(add_n(reverse(drop([0, -5, 3, 4, -4, -5],3)),5))",
    "io_inp": [
      0,
      -5,
      3,
      4,
      -4,
      -5
    ],
    "io_out": [
      0,
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(drop(input,3)),5))"
  },
  {
    "input": "input : list = [-4, -4, -4, 1, 0]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(take([-4, -4, -4, 1, 0],3),1),8)))",
    "io_inp": [
      -4,
      -4,
      -4,
      1,
      0
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(take(input,3),1),8)))"
  },
  {
    "input": "input : list = [1, 1, 0, -3]\noutput : list = [-10, -7, -6, -6]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n([1, 1, 0, -3],-3)),-4),22)",
    "io_inp": [
      1,
      1,
      0,
      -3
    ],
    "io_out": [
      -10,
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(input,-3)),-4),22)"
  },
  {
    "input": "input : list = [-3, -4, 5, 0, 5]\noutput : list = [-4, -3, 0, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([-3, -4, 5, 0, 5]))",
    "io_inp": [
      -3,
      -4,
      5,
      0,
      5
    ],
    "io_out": [
      -4,
      -3,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -4, 1, 4, -3]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -4, 1, 4, -3],1)",
    "io_inp": [
      4,
      -4,
      1,
      4,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -4, -5]\noutput : list = [4, -5, -6]",
    "output": "generated_output : list = sub_n([5, -4, -5],1)",
    "io_inp": [
      5,
      -4,
      -5
    ],
    "io_out": [
      4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, 2, 2, -4, 5, 5]\noutput : list = [10, 10, 4, 4, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(reverse([-3, 2, 2, -4, 5, 5])),26),2))",
    "io_inp": [
      -3,
      2,
      2,
      -4,
      5,
      5
    ],
    "io_out": [
      10,
      10,
      4,
      4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(reverse(input)),26),2))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [8, 7]",
    "output": "generated_output : list = add_n([3, 2],5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 5, -1, 0, 3, 2]\noutput : list = [5, 0, 0, -1]",
    "output": "generated_output : list = sort_des(take([0, 5, -1, 0, 3, 2],4))",
    "io_inp": [
      0,
      5,
      -1,
      0,
      3,
      2
    ],
    "io_out": [
      5,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [6, 4, 3]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(reverse([5, 3, 2]),-3),-1),-3))",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(reverse(input),-3),-1),-3))"
  },
  {
    "input": "input : list = [2, 3, -4, 5, -2, 4]\noutput : list = [19, 15, 11, 7, -9, -17]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc([2, 3, -4, 5, -2, 4])),4)),-1)",
    "io_inp": [
      2,
      3,
      -4,
      5,
      -2,
      4
    ],
    "io_out": [
      19,
      15,
      11,
      7,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc(input)),4)),-1)"
  },
  {
    "input": "input : list = [-2, -4, 2, -3, 3]\noutput : list = [-4, -6, 0, -5, 1]",
    "output": "generated_output : list = sub_n([-2, -4, 2, -3, 3],2)",
    "io_inp": [
      -2,
      -4,
      2,
      -3,
      3
    ],
    "io_out": [
      -4,
      -6,
      0,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, 1, 0, -1]\noutput : list = [65, 1, -63, 129]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(reverse([-2, 1, 0, -1]),4),4),-4),1)",
    "io_inp": [
      -2,
      1,
      0,
      -1
    ],
    "io_out": [
      65,
      1,
      -63,
      129
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(reverse(input),4),4),-4),1)"
  },
  {
    "input": "input : list = [-2, 0, 1, -4, -4]\noutput : list = [4, 4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(mul_n([-2, 0, 1, -4, -4],-1))",
    "io_inp": [
      -2,
      0,
      1,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-1, -2, 3, 5]\noutput : list = [-40, -24, 16, 8]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-1, -2, 3, 5],-2)),4)",
    "io_inp": [
      -1,
      -2,
      3,
      5
    ],
    "io_out": [
      -40,
      -24,
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-2)),4)"
  },
  {
    "input": "input : list = [2, 3, -2, 1]\noutput : list = [-2, -3, -4, -7]",
    "output": "generated_output : list = sort_des(add_n([2, 3, -2, 1],-5))",
    "io_inp": [
      2,
      3,
      -2,
      1
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [5, -1, 4, 3, 4, -2]\noutput : list = [8, 6, 6, 4, -4, -6]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sub_n([5, -1, 4, 3, 4, -2],1))),2))",
    "io_inp": [
      5,
      -1,
      4,
      3,
      4,
      -2
    ],
    "io_out": [
      8,
      6,
      6,
      4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sub_n(input,1))),2))"
  },
  {
    "input": "input : list = [3, -5, 5]\noutput : list = [-8, 2]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(drop([3, -5, 5],1)),12),-2),-5)",
    "io_inp": [
      3,
      -5,
      5
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(drop(input,1)),12),-2),-5)"
  },
  {
    "input": "input : list = [-2, 3, 2, 4]\noutput : list = [12, -8, -4, -12]",
    "output": "generated_output : list = sub_n(mul_n([-2, 3, 2, 4],-4),-4)",
    "io_inp": [
      -2,
      3,
      2,
      4
    ],
    "io_out": [
      12,
      -8,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),-4)"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [-12, 0, 0]",
    "output": "generated_output : list = reverse(take(take(sort_des(mul_n([0, 0, 3],-4)),26),5))",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(mul_n(input,-4)),26),5))"
  },
  {
    "input": "input : list = [1, 2, -1, 5]\noutput : list = [-1, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([1, 2, -1, 5]))",
    "io_inp": [
      1,
      2,
      -1,
      5
    ],
    "io_out": [
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 0, -5, -1, -2, 1]\noutput : list = [-56, -20, -32, 16, -44, -56]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(add_n([1, 0, -5, -1, -2, 1],5)),-3),4),4)",
    "io_inp": [
      1,
      0,
      -5,
      -1,
      -2,
      1
    ],
    "io_out": [
      -56,
      -20,
      -32,
      16,
      -44,
      -56
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(add_n(input,5)),-3),4),4)"
  },
  {
    "input": "input : list = [2, -1, 4, -2]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(sub_n([2, -1, 4, -2],1),12)),3))",
    "io_inp": [
      2,
      -1,
      4,
      -2
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(sub_n(input,1),12)),3))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [4, 11]",
    "output": "generated_output : list = add_n(add_n(take(add_n(sort_asc([4, -3]),-2),19),4),5)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      4,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(sort_asc(input),-2),19),4),5)"
  },
  {
    "input": "input : list = [5, 1, -2, -4, -1]\noutput : list = [8, 4, 1, -1, 2]",
    "output": "generated_output : list = take(take(add_n(sub_n(add_n([5, 1, -2, -4, -1],1),-1),1),7),42)",
    "io_inp": [
      5,
      1,
      -2,
      -4,
      -1
    ],
    "io_out": [
      8,
      4,
      1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(add_n(input,1),-1),1),7),42)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(add_n([-2, -3],-2),15))),2)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(add_n(input,-2),15))),2)"
  },
  {
    "input": "input : list = [5, -3, -3, -2]\noutput : list = [30, 9, 6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(sub_n([5, -3, -3, -2],-5),-3),27)),-1)",
    "io_inp": [
      5,
      -3,
      -3,
      -2
    ],
    "io_out": [
      30,
      9,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(sub_n(input,-5),-3),27)),-1)"
  },
  {
    "input": "input : list = [4, 5, -1, 5, -3, 4]\noutput : list = [3, 3, 2, 2, -3, -5]",
    "output": "generated_output : list = add_n(sort_des([4, 5, -1, 5, -3, 4]),-2)",
    "io_inp": [
      4,
      5,
      -1,
      5,
      -3,
      4
    ],
    "io_out": [
      3,
      3,
      2,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-1, 3, -3, 3, -4]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(sort_des([-1, 3, -3, 3, -4]),5),-3),2))",
    "io_inp": [
      -1,
      3,
      -3,
      3,
      -4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(sort_des(input),5),-3),2))"
  },
  {
    "input": "input : list = [-3, -4, 3]\noutput : list = [-1, 0, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc([-3, -4, 3])),-3)))",
    "io_inp": [
      -3,
      -4,
      3
    ],
    "io_out": [
      -1,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-18, -18]",
    "output": "generated_output : list = sort_des(mul_n(add_n([2, 2],4),-3))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,4),-3))"
  },
  {
    "input": "input : list = [1, 1, -2, -1, -5]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(take([1, 1, -2, -1, -5],2))",
    "io_inp": [
      1,
      1,
      -2,
      -1,
      -5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [4, 4, 3]\noutput : list = [0, 0, -4]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([4, 4, 3]),4),4)",
    "io_inp": [
      4,
      4,
      3
    ],
    "io_out": [
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),4),4)"
  },
  {
    "input": "input : list = [-3, 1, 0, -3, 3, -1]\noutput : list = [-1, 3, 2, -1, 5, 1]",
    "output": "generated_output : list = add_n([-3, 1, 0, -3, 3, -1],2)",
    "io_inp": [
      -3,
      1,
      0,
      -3,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      2,
      -1,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, -3, 0, 3, 2]\noutput : list = [36, 0, -24, -36, -48]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(mul_n([4, -3, 0, 3, 2],-4),1))),3)",
    "io_inp": [
      4,
      -3,
      0,
      3,
      2
    ],
    "io_out": [
      36,
      0,
      -24,
      -36,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(mul_n(input,-4),1))),3)"
  },
  {
    "input": "input : list = [1, 1, -5, 0, 2, -4]\noutput : list = [4, 3, 3, 2, -2, -3]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(sort_asc([1, 1, -5, 0, 2, -4]),-1)),3),43)",
    "io_inp": [
      1,
      1,
      -5,
      0,
      2,
      -4
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(sort_asc(input),-1)),3),43)"
  },
  {
    "input": "input : list = [-1, -4, 5, 1, -3]\noutput : list = [-2, -8, 10, 2, -6]",
    "output": "generated_output : list = mul_n([-1, -4, 5, 1, -3],2)",
    "io_inp": [
      -1,
      -4,
      5,
      1,
      -3
    ],
    "io_out": [
      -2,
      -8,
      10,
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 1, -3, 5, -5]\noutput : list = [-16, 8, -22]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(drop([-5, 1, -3, 5, -5],2),23),4),3),5)",
    "io_inp": [
      -5,
      1,
      -3,
      5,
      -5
    ],
    "io_out": [
      -16,
      8,
      -22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(drop(input,2),23),4),3),5)"
  },
  {
    "input": "input : list = [-3, 2, 0, 3, 2]\noutput : list = [-5, 0, -2, 1, 0]",
    "output": "generated_output : list = sub_n([-3, 2, 0, 3, 2],2)",
    "io_inp": [
      -3,
      2,
      0,
      3,
      2
    ],
    "io_out": [
      -5,
      0,
      -2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -3, 5, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(take([-4, -3, 5, 3],1))",
    "io_inp": [
      -4,
      -3,
      5,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, -4, 0, -3]\noutput : list = [-5, -4, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(sort_asc([-5, -4, 0, -3]),6))))",
    "io_inp": [
      -5,
      -4,
      0,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(sort_asc(input),6))))"
  },
  {
    "input": "input : list = [1, -1, -5, -2]\noutput : list = [15, 6, 3, -3]",
    "output": "generated_output : list = mul_n(sort_des(take(take(mul_n([1, -1, -5, -2],-3),22),19)),1)",
    "io_inp": [
      1,
      -1,
      -5,
      -2
    ],
    "io_out": [
      15,
      6,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(mul_n(input,-3),22),19)),1)"
  },
  {
    "input": "input : list = [-4, -3, 1, -1]\noutput : list = [13, 8, -2, -12]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(add_n([-4, -3, 1, -1],2),-5)),14),3)",
    "io_inp": [
      -4,
      -3,
      1,
      -1
    ],
    "io_out": [
      13,
      8,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(add_n(input,2),-5)),14),3)"
  },
  {
    "input": "input : list = [4, -1, 2, -4, -3]\noutput : list = [0, -3, -9, -18, -24]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sub_n([4, -1, 2, -4, -3],-1),1)),-2),-3)",
    "io_inp": [
      4,
      -1,
      2,
      -4,
      -3
    ],
    "io_out": [
      0,
      -3,
      -9,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sub_n(input,-1),1)),-2),-3)"
  },
  {
    "input": "input : list = [5, -5, 0, 5, -1, -3]\noutput : list = [-5, -3, -1, 0, 5, 5]",
    "output": "generated_output : list = sort_asc([5, -5, 0, 5, -1, -3])",
    "io_inp": [
      5,
      -5,
      0,
      5,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 3, 5, 5, -5, -2]\noutput : list = [-5, 10, -40, -40, -30, -15]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(add_n([0, 3, 5, 5, -5, -2],1),-3)),-5),-5)",
    "io_inp": [
      0,
      3,
      5,
      5,
      -5,
      -2
    ],
    "io_out": [
      -5,
      10,
      -40,
      -40,
      -30,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(add_n(input,1),-3)),-5),-5)"
  },
  {
    "input": "input : list = [4, 4, 5, 5]\noutput : list = [-7, -7, -9, -9]",
    "output": "generated_output : list = add_n(mul_n([4, 4, 5, 5],-2),1)",
    "io_inp": [
      4,
      4,
      5,
      5
    ],
    "io_out": [
      -7,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),1)"
  },
  {
    "input": "input : list = [-5, 1, -4, 1]\noutput : list = [-9, -9, 6, 9]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sub_n([-5, 1, -4, 1],4),1)),-5),-3)",
    "io_inp": [
      -5,
      1,
      -4,
      1
    ],
    "io_out": [
      -9,
      -9,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sub_n(input,4),1)),-5),-3)"
  },
  {
    "input": "input : list = [-3, -2, 3, -2]\noutput : list = [55, 35, 35, -65]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(sort_asc([-3, -2, 3, -2]),-4)),5),-5)",
    "io_inp": [
      -3,
      -2,
      3,
      -2
    ],
    "io_out": [
      55,
      35,
      35,
      -65
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(sort_asc(input),-4)),5),-5)"
  },
  {
    "input": "input : list = [-1, -5, -5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = take([-1, -5, -5, -1],2)",
    "io_inp": [
      -1,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -4, -4, -3, -1]\noutput : list = [1, 1, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(take(take([-3, -4, -4, -3, -1],3),16)),34),5)",
    "io_inp": [
      -3,
      -4,
      -4,
      -3,
      -1
    ],
    "io_out": [
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(take(input,3),16)),34),5)"
  },
  {
    "input": "input : list = [4, 4, 5, 1]\noutput : list = [1, 1, 2, -2]",
    "output": "generated_output : list = add_n([4, 4, 5, 1],-3)",
    "io_inp": [
      4,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      1,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(take([-5, 3, 1],1),8),-2)),-3)",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(take(input,1),8),-2)),-3)"
  },
  {
    "input": "input : list = [0, 2, 3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = drop([0, 2, 3, 1],2)",
    "io_inp": [
      0,
      2,
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -5, 5, -4, -2, -3]\noutput : list = [-4]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(take([-1, -5, 5, -4, -2, -3],1),2),1),-4),50)",
    "io_inp": [
      -1,
      -5,
      5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(take(input,1),2),1),-4),50)"
  },
  {
    "input": "input : list = [3, 2, -5, 5, 1]\noutput : list = [-3, -4, -11, -1, -5]",
    "output": "generated_output : list = add_n(take(add_n(take(mul_n([3, 2, -5, 5, 1],1),8),-5),9),-1)",
    "io_inp": [
      3,
      2,
      -5,
      5,
      1
    ],
    "io_out": [
      -3,
      -4,
      -11,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(mul_n(input,1),8),-5),9),-1)"
  },
  {
    "input": "input : list = [-2, 1, 4, -5]\noutput : list = [-5, 4, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, 4, -5])",
    "io_inp": [
      -2,
      1,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -1, 3, -5, 2, 4]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n(take([-2, -1, 3, -5, 2, 4],3),4),4))",
    "io_inp": [
      -2,
      -1,
      3,
      -5,
      2,
      4
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(input,3),4),4))"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(sort_des([-1, 5, 3])))))",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, 0, -2, 5, -3, -1]\noutput : list = [-4, -4, -3, -2, -1, 4]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(sort_des([-3, 0, -2, 5, -3, -1])),22),19),1)",
    "io_inp": [
      -3,
      0,
      -2,
      5,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(sort_des(input)),22),19),1)"
  },
  {
    "input": "input : list = [-3, 0, -4, -5, -4, 5]\noutput : list = [5, 0, -3, -4, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(sort_asc([-3, 0, -4, -5, -4, 5]),16),22)))",
    "io_inp": [
      -3,
      0,
      -4,
      -5,
      -4,
      5
    ],
    "io_out": [
      5,
      0,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(sort_asc(input),16),22)))"
  },
  {
    "input": "input : list = [2, -3, 1, 4]\noutput : list = [-4, 6, -2, -8]",
    "output": "generated_output : list = mul_n([2, -3, 1, 4],-2)",
    "io_inp": [
      2,
      -3,
      1,
      4
    ],
    "io_out": [
      -4,
      6,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -3, 5, 3, 2, -4]\noutput : list = [-10, -8, 0, -2, -3, -9]",
    "output": "generated_output : list = add_n([-5, -3, 5, 3, 2, -4],-5)",
    "io_inp": [
      -5,
      -3,
      5,
      3,
      2,
      -4
    ],
    "io_out": [
      -10,
      -8,
      0,
      -2,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, 4, -2, 0, -1]\noutput : list = [3, 4, 2, 8, 8]",
    "output": "generated_output : list = reverse(add_n([4, 4, -2, 0, -1],4))",
    "io_inp": [
      4,
      4,
      -2,
      0,
      -1
    ],
    "io_out": [
      3,
      4,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [5, 1, 3, 0, 0, 0]\noutput : list = [0, 0, 0]",
    "output": "generated_output : list = drop([5, 1, 3, 0, 0, 0],3)",
    "io_inp": [
      5,
      1,
      3,
      0,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 4, -5, -5, 0]\noutput : list = [20, 45]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sub_n(drop([-2, 4, -5, -5, 0],3),4),-5)))",
    "io_inp": [
      -2,
      4,
      -5,
      -5,
      0
    ],
    "io_out": [
      20,
      45
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sub_n(drop(input,3),4),-5)))"
  },
  {
    "input": "input : list = [-1, 4, -4, 1, 2, 2]\noutput : list = [12, 10, 10, 9, 7, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([-1, 4, -4, 1, 2, 2]),-4),-4)",
    "io_inp": [
      -1,
      4,
      -4,
      1,
      2,
      2
    ],
    "io_out": [
      12,
      10,
      10,
      9,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-4),-4)"
  },
  {
    "input": "input : list = [4, 2, 2, -5]\noutput : list = [-3, 4, 4, 6]",
    "output": "generated_output : list = sort_asc(sub_n([4, 2, 2, -5],-2))",
    "io_inp": [
      4,
      2,
      2,
      -5
    ],
    "io_out": [
      -3,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n([0, 1],2)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, 1, 1, 5, 1]\noutput : list = [22, 34, 22, 22, 25]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(add_n([2, 1, 1, 5, 1],5),3),-3),1))",
    "io_inp": [
      2,
      1,
      1,
      5,
      1
    ],
    "io_out": [
      22,
      34,
      22,
      22,
      25
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(add_n(input,5),3),-3),1))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [23, 18]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n(sub_n([2, 3],-1),5)),-3),18)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      23,
      18
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(sub_n(input,-1),5)),-3),18)"
  },
  {
    "input": "input : list = [4, -3, 4, 3, -2, -1]\noutput : list = [-23, -23, -17, 7, 13, 19]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(sort_des([4, -3, 4, 3, -2, -1]),-3),2),-1),37)",
    "io_inp": [
      4,
      -3,
      4,
      3,
      -2,
      -1
    ],
    "io_out": [
      -23,
      -23,
      -17,
      7,
      13,
      19
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(sort_des(input),-3),2),-1),37)"
  },
  {
    "input": "input : list = [2, 2, 0, 2, -2, 0]\noutput : list = [-7, -5, -5, -3, -3, -3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(reverse([2, 2, 0, 2, -2, 0]),15))),-5)",
    "io_inp": [
      2,
      2,
      0,
      2,
      -2,
      0
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(reverse(input),15))),-5)"
  },
  {
    "input": "input : list = [-3, 3, -1, -5, 1]\noutput : list = [-9, 3, 9, 15]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(drop([-3, 3, -1, -5, 1],1),2),3)))",
    "io_inp": [
      -3,
      3,
      -1,
      -5,
      1
    ],
    "io_out": [
      -9,
      3,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(drop(input,1),2),3)))"
  },
  {
    "input": "input : list = [-5, -3, -4, 4, -5, 5]\noutput : list = [-5, -5, -4, -3, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sort_asc([-5, -3, -4, 4, -5, 5]),20))))",
    "io_inp": [
      -5,
      -3,
      -4,
      4,
      -5,
      5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sort_asc(input),20))))"
  },
  {
    "input": "input : list = [-3, 1, -3, -3, 4, 0]\noutput : list = [-64, 0, 48]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(drop(mul_n([-3, 1, -3, -3, 4, 0],4),3)),-4))",
    "io_inp": [
      -3,
      1,
      -3,
      -3,
      4,
      0
    ],
    "io_out": [
      -64,
      0,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(drop(mul_n(input,4),3)),-4))"
  },
  {
    "input": "input : list = [1, 0, 3, -1]\noutput : list = [-1, 3, 0, 1]",
    "output": "generated_output : list = take(reverse([1, 0, 3, -1]),4)",
    "io_inp": [
      1,
      0,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [1, -4, -2]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse(take([1, -4, -2],1)),12)",
    "io_inp": [
      1,
      -4,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),12)"
  },
  {
    "input": "input : list = [-2, -2, -5, -4, -2]\noutput : list = [2, 2, -1, 0, 2]",
    "output": "generated_output : list = take(take(reverse(reverse(sub_n([-2, -2, -5, -4, -2],-4))),40),50)",
    "io_inp": [
      -2,
      -2,
      -5,
      -4,
      -2
    ],
    "io_out": [
      2,
      2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(sub_n(input,-4))),40),50)"
  },
  {
    "input": "input : list = [-5, -1, -3, 1, -3, -1]\noutput : list = [15, 3, 9, -3, 9, 3]",
    "output": "generated_output : list = reverse(mul_n(reverse([-5, -1, -3, 1, -3, -1]),-3))",
    "io_inp": [
      -5,
      -1,
      -3,
      1,
      -3,
      -1
    ],
    "io_out": [
      15,
      3,
      9,
      -3,
      9,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [1, -5, -4, 1, -5, -4]\noutput : list = [-14, -18]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(drop([1, -5, -4, 1, -5, -4],4),28),4),-2))",
    "io_inp": [
      1,
      -5,
      -4,
      1,
      -5,
      -4
    ],
    "io_out": [
      -14,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(drop(input,4),28),4),-2))"
  },
  {
    "input": "input : list = [5, 0, 1, 3, 2, 1]\noutput : list = [5, 0, 1, 3, 2, 1]",
    "output": "generated_output : list = reverse(reverse([5, 0, 1, 3, 2, 1]))",
    "io_inp": [
      5,
      0,
      1,
      3,
      2,
      1
    ],
    "io_out": [
      5,
      0,
      1,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, -4, -5, -1, 5, -1]\noutput : list = [7, 1, 0, 4, 10, 4]",
    "output": "generated_output : list = sub_n(take(take(add_n([2, -4, -5, -1, 5, -1],1),15),30),-4)",
    "io_inp": [
      2,
      -4,
      -5,
      -1,
      5,
      -1
    ],
    "io_out": [
      7,
      1,
      0,
      4,
      10,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(input,1),15),30),-4)"
  },
  {
    "input": "input : list = [-5, 0, 1, 4]\noutput : list = [-9, -4, -3, 0]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(sort_asc([-5, 0, 1, 4]))),-4))",
    "io_inp": [
      -5,
      0,
      1,
      4
    ],
    "io_out": [
      -9,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [4, -4, 4, -1, 3]\noutput : list = [-16, 16, -16, 4, -12]",
    "output": "generated_output : list = mul_n([4, -4, 4, -1, 3],-4)",
    "io_inp": [
      4,
      -4,
      4,
      -1,
      3
    ],
    "io_out": [
      -16,
      16,
      -16,
      4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 3, -5, -4, -2, -1]\noutput : list = [5, -7, -10, -10, -16, -19]",
    "output": "generated_output : list = sort_des(add_n(mul_n([-2, 3, -5, -4, -2, -1],3),-4))",
    "io_inp": [
      -2,
      3,
      -5,
      -4,
      -2,
      -1
    ],
    "io_out": [
      5,
      -7,
      -10,
      -10,
      -16,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,3),-4))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [7, 9]",
    "output": "generated_output : list = sort_asc(add_n(take(mul_n(sort_asc([-3, -5]),-1),17),4))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(mul_n(sort_asc(input),-1),17),4))"
  },
  {
    "input": "input : list = [-4, 2, 1, 2]\noutput : list = [1, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse(take([-4, 2, 1, 2],2)),-5)))",
    "io_inp": [
      -4,
      2,
      1,
      2
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(take(input,2)),-5)))"
  },
  {
    "input": "input : list = [2, 2, 2, 3, -3, 4]\noutput : list = [-9, 6, 6, 6, 9, 12]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n([2, 2, 2, 3, -3, 4],3),11)))",
    "io_inp": [
      2,
      2,
      2,
      3,
      -3,
      4
    ],
    "io_out": [
      -9,
      6,
      6,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(input,3),11)))"
  },
  {
    "input": "input : list = [-3, 0, 2, 2, 3]\noutput : list = [3, 2, 2, 0, -3]",
    "output": "generated_output : list = reverse([-3, 0, 2, 2, 3])",
    "io_inp": [
      -3,
      0,
      2,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [-24]",
    "output": "generated_output : list = add_n(sub_n(reverse(drop(mul_n([-3, -3, -5],5),2)),-2),-1)",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(drop(mul_n(input,5),2)),-2),-1)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(sort_asc([0, -3]),-1),-5),4),3)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(sort_asc(input),-1),-5),4),3)"
  },
  {
    "input": "input : list = [5, 2, -4, 2, 1, -3]\noutput : list = [-12, -9, 3, 6, 6, 15]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(mul_n([5, 2, -4, 2, 1, -3],3))),30))",
    "io_inp": [
      5,
      2,
      -4,
      2,
      1,
      -3
    ],
    "io_out": [
      -12,
      -9,
      3,
      6,
      6,
      15
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(mul_n(input,3))),30))"
  },
  {
    "input": "input : list = [5, 5, 1, 3, 4]\noutput : list = [0, 0, -4, -2, -1]",
    "output": "generated_output : list = add_n([5, 5, 1, 3, 4],-5)",
    "io_inp": [
      5,
      5,
      1,
      3,
      4
    ],
    "io_out": [
      0,
      0,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 3, -3, 0, -3]\noutput : list = [27, 0, -9, -27, -27]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(mul_n([-1, 3, -3, 0, -3],3)),3)))",
    "io_inp": [
      -1,
      3,
      -3,
      0,
      -3
    ],
    "io_out": [
      27,
      0,
      -9,
      -27,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(mul_n(input,3)),3)))"
  },
  {
    "input": "input : list = [2, 0, 1, 4, 1, -1]\noutput : list = [0, 1, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(take([2, 0, 1, 4, 1, -1],4)))))",
    "io_inp": [
      2,
      0,
      1,
      4,
      1,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(take(input,4)))))"
  },
  {
    "input": "input : list = [-3, -1, -1, 0, 1, 4]\noutput : list = [4, 1, 0, -1, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse(sort_des([-3, -1, -1, 0, 1, 4])))))",
    "io_inp": [
      -3,
      -1,
      -1,
      0,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, 2, 4]\noutput : list = [7, 5, 4]",
    "output": "generated_output : list = add_n(take(reverse(take(sub_n([1, 2, 4],1),12)),12),4)",
    "io_inp": [
      1,
      2,
      4
    ],
    "io_out": [
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sub_n(input,1),12)),12),4)"
  },
  {
    "input": "input : list = [-2, 1, -4, -4]\noutput : list = [10, 0, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(drop([-2, 1, -4, -4],1)),-4),2))",
    "io_inp": [
      -2,
      1,
      -4,
      -4
    ],
    "io_out": [
      10,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(drop(input,1)),-4),2))"
  },
  {
    "input": "input : list = [-2, -1, 4, 2]\noutput : list = [-89, -49, 11, 31]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(mul_n([-2, -1, 4, 2],4),-5),-4),-5))",
    "io_inp": [
      -2,
      -1,
      4,
      2
    ],
    "io_out": [
      -89,
      -49,
      11,
      31
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(mul_n(input,4),-5),-4),-5))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-1, 19]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n([1, -3],-5)),-1),5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -1,
      19
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(input,-5)),-1),5)"
  },
  {
    "input": "input : list = [-1, 4, 2, 3, -3, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = take([-1, 4, 2, 3, -3, -1],2)",
    "io_inp": [
      -1,
      4,
      2,
      3,
      -3,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 1, -4, 4, 3]\noutput : list = [31, 26, 26, 16, -9]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(mul_n([3, 1, -4, 4, 3],5),2),4),5))",
    "io_inp": [
      3,
      1,
      -4,
      4,
      3
    ],
    "io_out": [
      31,
      26,
      26,
      16,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(mul_n(input,5),2),4),5))"
  },
  {
    "input": "input : list = [0, 4, -3, -3, 2]\noutput : list = [-3, -3, 2]",
    "output": "generated_output : list = sort_asc(sort_des(drop([0, 4, -3, -3, 2],2)))",
    "io_inp": [
      0,
      4,
      -3,
      -3,
      2
    ],
    "io_out": [
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [-1, 2, -1, -5, -3, -3]\noutput : list = [4, 4, 0, 8, 14, 8]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sub_n([-1, 2, -1, -5, -3, -3],-2),-5),2),-4))",
    "io_inp": [
      -1,
      2,
      -1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      4,
      4,
      0,
      8,
      14,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sub_n(input,-2),-5),2),-4))"
  },
  {
    "input": "input : list = [-3, -3, -5, -1, 3]\noutput : list = [-2, 0, 0, 2, 6]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([-3, -3, -5, -1, 3]),-1),-2)",
    "io_inp": [
      -3,
      -3,
      -5,
      -1,
      3
    ],
    "io_out": [
      -2,
      0,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),-1),-2)"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [-12, -4, 24]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n([-2, -4, 5],4)),2),2)",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      -12,
      -4,
      24
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(input,4)),2),2)"
  },
  {
    "input": "input : list = [-3, 3, -5, 5]\noutput : list = [8, 6, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des([-3, 3, -5, 5]),-3)",
    "io_inp": [
      -3,
      3,
      -5,
      5
    ],
    "io_out": [
      8,
      6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-2, -3, -3, -4, -2, 1]\noutput : list = [-2, -5, -5, -6, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(reverse([-2, -3, -3, -4, -2, 1])),-3)))",
    "io_inp": [
      -2,
      -3,
      -3,
      -4,
      -2,
      1
    ],
    "io_out": [
      -2,
      -5,
      -5,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-6, 0, 6]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([2, 0, -2]),3),1)",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -6,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),3),1)"
  },
  {
    "input": "input : list = [4, -1, 5, -3, 3]\noutput : list = [11, 5, 10]",
    "output": "generated_output : list = take(add_n(add_n(reverse(take([4, -1, 5, -3, 3],3)),1),5),33)",
    "io_inp": [
      4,
      -1,
      5,
      -3,
      3
    ],
    "io_out": [
      11,
      5,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(take(input,3)),1),5),33)"
  },
  {
    "input": "input : list = [3, -1, 3, 5, -5]\noutput : list = [7, 3, 7, 9, -1]",
    "output": "generated_output : list = sub_n([3, -1, 3, 5, -5],-4)",
    "io_inp": [
      3,
      -1,
      3,
      5,
      -5
    ],
    "io_out": [
      7,
      3,
      7,
      9,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -5, 5, 2, 4, 5]\noutput : list = [8, 4, -6, -10, -12, -12]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(mul_n([-3, -5, 5, 2, 4, 5],-2)),-2)))",
    "io_inp": [
      -3,
      -5,
      5,
      2,
      4,
      5
    ],
    "io_out": [
      8,
      4,
      -6,
      -10,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(mul_n(input,-2)),-2)))"
  },
  {
    "input": "input : list = [-3, -4, 3, -4]\noutput : list = [7, 0]",
    "output": "generated_output : list = add_n(drop([-3, -4, 3, -4],2),4)",
    "io_inp": [
      -3,
      -4,
      3,
      -4
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [9, 8]",
    "output": "generated_output : list = sub_n(add_n(add_n([2, 1],3),2),-2)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,3),2),-2)"
  },
  {
    "input": "input : list = [1, 4, 3, -4, -3]\noutput : list = [12, 3]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(take([1, 4, 3, -4, -3],2)),3)))",
    "io_inp": [
      1,
      4,
      3,
      -4,
      -3
    ],
    "io_out": [
      12,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(take(input,2)),3)))"
  },
  {
    "input": "input : list = [-1, 5, 3, 1, 5]\noutput : list = [-6, -4, -2, 0, 0]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(sort_des([-1, 5, 3, 1, 5]))),19),-5)",
    "io_inp": [
      -1,
      5,
      3,
      1,
      5
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(sort_des(input))),19),-5)"
  },
  {
    "input": "input : list = [-5, 5, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(take(sort_des([-5, 5, 2]),1))",
    "io_inp": [
      -5,
      5,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),1))"
  },
  {
    "input": "input : list = [3, -4, 1, 4, 3]\noutput : list = [-27, -6, -21, -30, -27]",
    "output": "generated_output : list = take(mul_n(add_n(take(sub_n([3, -4, 1, 4, 3],-2),5),4),-3),38)",
    "io_inp": [
      3,
      -4,
      1,
      4,
      3
    ],
    "io_out": [
      -27,
      -6,
      -21,
      -30,
      -27
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(sub_n(input,-2),5),4),-3),38)"
  },
  {
    "input": "input : list = [-4, -1, 5, -2, -5]\noutput : list = [-24, -15, 3, -18, -27]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(sub_n([-4, -1, 5, -2, -5],3),1),1),-1),3)",
    "io_inp": [
      -4,
      -1,
      5,
      -2,
      -5
    ],
    "io_out": [
      -24,
      -15,
      3,
      -18,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(sub_n(input,3),1),1),-1),3)"
  },
  {
    "input": "input : list = [4, 4, -3, 2, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc(sub_n(drop(mul_n([4, 4, -3, 2, 0],5),4),2)),17)",
    "io_inp": [
      4,
      4,
      -3,
      2,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(drop(mul_n(input,5),4),2)),17)"
  },
  {
    "input": "input : list = [5, -3, -3, 1, 2, 3]\noutput : list = [12, 10, 9, 8, 4, 4]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(sort_des([5, -3, -3, 1, 2, 3]),1),4),3),14)",
    "io_inp": [
      5,
      -3,
      -3,
      1,
      2,
      3
    ],
    "io_out": [
      12,
      10,
      9,
      8,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(sort_des(input),1),4),3),14)"
  },
  {
    "input": "input : list = [-4, -2, 2, 5]\noutput : list = [-2, -5, -9, -11]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n([-4, -2, 2, 5],2))),4),-5)",
    "io_inp": [
      -4,
      -2,
      2,
      5
    ],
    "io_out": [
      -2,
      -5,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n(input,2))),4),-5)"
  },
  {
    "input": "input : list = [-2, 2, -2, -1]\noutput : list = [-2, -2, -1, 2]",
    "output": "generated_output : list = sort_asc([-2, 2, -2, -1])",
    "io_inp": [
      -2,
      2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4, -5, -3]\noutput : list = [0, -8]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(take([4, -4, -5, -3],2))),-4),48)",
    "io_inp": [
      4,
      -4,
      -5,
      -3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(take(input,2))),-4),48)"
  },
  {
    "input": "input : list = [-5, -4, 5, 3, -1, -3]\noutput : list = [12, 10, 8, 4, -4, -8]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(add_n([-5, -4, 5, 3, -1, -3],-1)),1),-2))",
    "io_inp": [
      -5,
      -4,
      5,
      3,
      -1,
      -3
    ],
    "io_out": [
      12,
      10,
      8,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(add_n(input,-1)),1),-2))"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-4, -6, -4]",
    "output": "generated_output : list = sub_n([1, -1, 1],5)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -4,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, 1, 1, -1, 2]\noutput : list = [-27, -21]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(add_n([-1, 1, 1, -1, 2],-2),4),-2),3),2)",
    "io_inp": [
      -1,
      1,
      1,
      -1,
      2
    ],
    "io_out": [
      -27,
      -21
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(add_n(input,-2),4),-2),3),2)"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [45, 36, 0]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(sort_des([4, 0, 5])),27),3),3)",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      45,
      36,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(sort_des(input)),27),3),3)"
  },
  {
    "input": "input : list = [-3, 3, 1]\noutput : list = [9, 7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(drop([-3, 3, 1],1)),-1)),-5)",
    "io_inp": [
      -3,
      3,
      1
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(drop(input,1)),-1)),-5)"
  },
  {
    "input": "input : list = [-5, -4, 4, 3, -2, -2]\noutput : list = [0, 4, 24, 24, 32, 36]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_asc([-5, -4, 4, 3, -2, -2]),4),1),-4))",
    "io_inp": [
      -5,
      -4,
      4,
      3,
      -2,
      -2
    ],
    "io_out": [
      0,
      4,
      24,
      24,
      32,
      36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_asc(input),4),1),-4))"
  },
  {
    "input": "input : list = [1, -2, 3, -4]\noutput : list = [-1, -4, 1, -6]",
    "output": "generated_output : list = add_n([1, -2, 3, -4],-2)",
    "io_inp": [
      1,
      -2,
      3,
      -4
    ],
    "io_out": [
      -1,
      -4,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, -2, -2, 4]\noutput : list = [-13, -14, -19, -19]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sub_n([3, -2, -2, 4],3),4),-5),-5))",
    "io_inp": [
      3,
      -2,
      -2,
      4
    ],
    "io_out": [
      -13,
      -14,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sub_n(input,3),4),-5),-5))"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [3]",
    "output": "generated_output : list = take(add_n(mul_n(drop(sub_n([-5, 2, -3],2),2),-1),-2),36)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(drop(sub_n(input,2),2),-1),-2),36)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_des([3, -1])),-4),-1))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_des(input)),-4),-1))"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [-1, 5, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([4, -5, 1])),4)",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      -1,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(take(sort_asc([2, 5]),13))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),13))"
  },
  {
    "input": "input : list = [-3, 1, 0, 1, 5, 0]\noutput : list = [-3, 0, 0, 1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(reverse([-3, 1, 0, 1, 5, 0])),9)))",
    "io_inp": [
      -3,
      1,
      0,
      1,
      5,
      0
    ],
    "io_out": [
      -3,
      0,
      0,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(reverse(input)),9)))"
  },
  {
    "input": "input : list = [1, 4, 5, -2, 0, -4]\noutput : list = [45, 180, 225, -90, 0, -180]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([1, 4, 5, -2, 0, -4],3),-5),-3)",
    "io_inp": [
      1,
      4,
      5,
      -2,
      0,
      -4
    ],
    "io_out": [
      45,
      180,
      225,
      -90,
      0,
      -180
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,3),-5),-3)"
  },
  {
    "input": "input : list = [2, 2, 2, -2, -2, 5]\noutput : list = [0, 14, 14, 6, 6, 6]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(add_n([2, 2, 2, -2, -2, 5],-5)),37),2),-1)",
    "io_inp": [
      2,
      2,
      2,
      -2,
      -2,
      5
    ],
    "io_out": [
      0,
      14,
      14,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(add_n(input,-5)),37),2),-1)"
  },
  {
    "input": "input : list = [-4, -1, -3, 0]\noutput : list = [-7, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(take([-4, -1, -3, 0],2),18)),1),4)",
    "io_inp": [
      -4,
      -1,
      -3,
      0
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(take(input,2),18)),1),4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [6, 8]",
    "output": "generated_output : list = reverse(sub_n(take(take(sort_des([3, 5]),12),6),-3))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(sort_des(input),12),6),-3))"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take([4, -2, 5],1))),4)",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(input,1))),4)"
  },
  {
    "input": "input : list = [0, -2, -5, -4]\noutput : list = [-52, -42, -22]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(sort_asc([0, -2, -5, -4]),-2),-5),3),2)",
    "io_inp": [
      0,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -52,
      -42,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(sort_asc(input),-2),-5),3),2)"
  },
  {
    "input": "input : list = [-4, -4, -4, -1, 1]\noutput : list = [-16, -16, -16, -4, 4]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc([-4, -4, -4, -1, 1])),4),21)",
    "io_inp": [
      -4,
      -4,
      -4,
      -1,
      1
    ],
    "io_out": [
      -16,
      -16,
      -16,
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(input)),4),21)"
  },
  {
    "input": "input : list = [4, -5, -2, 3]\noutput : list = [1, -8, -5, 0]",
    "output": "generated_output : list = add_n(add_n([4, -5, -2, 3],2),-5)",
    "io_inp": [
      4,
      -5,
      -2,
      3
    ],
    "io_out": [
      1,
      -8,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-5)"
  },
  {
    "input": "input : list = [3, 2, -5, -2, -3, 3]\noutput : list = [2, 2, 1, -3, -4, -6]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sub_n([3, 2, -5, -2, -3, 3],-2),3))))",
    "io_inp": [
      3,
      2,
      -5,
      -2,
      -3,
      3
    ],
    "io_out": [
      2,
      2,
      1,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sub_n(input,-2),3))))"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -4, -1],1)",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -1, 4, -2, -2, 2]\noutput : list = [-5, -2, -2, -1, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(reverse([-5, -1, 4, -2, -2, 2])))))",
    "io_inp": [
      -5,
      -1,
      4,
      -2,
      -2,
      2
    ],
    "io_out": [
      -5,
      -2,
      -2,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [2, -5, 4, 5]\noutput : list = [4]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(take([2, -5, 4, 5],1))),2))",
    "io_inp": [
      2,
      -5,
      4,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(take(input,1))),2))"
  },
  {
    "input": "input : list = [3, -5, 1, 5]\noutput : list = [-120, 0, 40, 80]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(mul_n([3, -5, 1, 5],-5))),5),-4)",
    "io_inp": [
      3,
      -5,
      1,
      5
    ],
    "io_out": [
      -120,
      0,
      40,
      80
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(mul_n(input,-5))),5),-4)"
  },
  {
    "input": "input : list = [-2, 2, 0, -2]\noutput : list = [8, 16, 24, 24]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(sort_des([-2, 2, 0, -2]))),-4),-4)",
    "io_inp": [
      -2,
      2,
      0,
      -2
    ],
    "io_out": [
      8,
      16,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(sort_des(input))),-4),-4)"
  },
  {
    "input": "input : list = [-5, 0, 3, 3, -2]\noutput : list = [8, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(drop([-5, 0, 3, 3, -2],2)),32),-4))",
    "io_inp": [
      -5,
      0,
      3,
      3,
      -2
    ],
    "io_out": [
      8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(drop(input,2)),32),-4))"
  },
  {
    "input": "input : list = [0, -3, 0]\noutput : list = [-8, -5, -5]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(sort_des([0, -3, 0])),5),9))",
    "io_inp": [
      0,
      -3,
      0
    ],
    "io_out": [
      -8,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(sort_des(input)),5),9))"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [6, 2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(sort_des([2, -4, -2]),2),1)),-5)",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(sort_des(input),2),1)),-5)"
  },
  {
    "input": "input : list = [5, 3, 1, 5, 3]\noutput : list = [1, 9, 9, 17, 17]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(mul_n([5, 3, 1, 5, 3],4),2)),39),-5)",
    "io_inp": [
      5,
      3,
      1,
      5,
      3
    ],
    "io_out": [
      1,
      9,
      9,
      17,
      17
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(mul_n(input,4),2)),39),-5)"
  },
  {
    "input": "input : list = [-1, 2, 2, 1, 5, 3]\noutput : list = [5, 3, 2, 2, 1, -1]",
    "output": "generated_output : list = sort_des([-1, 2, 2, 1, 5, 3])",
    "io_inp": [
      -1,
      2,
      2,
      1,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, 1, -5, -4, -5]\noutput : list = [-3, -6, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(take([-5, -2, 1, -5, -4, -5],3),9)),4))",
    "io_inp": [
      -5,
      -2,
      1,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(take(input,3),9)),4))"
  },
  {
    "input": "input : list = [-2, 3, -4, -1]\noutput : list = [-5, 5, 10, 30]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(reverse([-2, 3, -4, -1]),-3),5),26))",
    "io_inp": [
      -2,
      3,
      -4,
      -1
    ],
    "io_out": [
      -5,
      5,
      10,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(reverse(input),-3),5),26))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des([2, -4])",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, -2, 2, -3]\noutput : list = [1, 2]",
    "output": "generated_output : list = drop(sort_asc([-2, 1, -2, 2, -3]),3)",
    "io_inp": [
      -2,
      1,
      -2,
      2,
      -3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),3)"
  },
  {
    "input": "input : list = [5, 4, -5, -1, -4, -1]\noutput : list = [0, 9, 10]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sub_n(take([5, 4, -5, -1, -4, -1],3),-1),-4)))",
    "io_inp": [
      5,
      4,
      -5,
      -1,
      -4,
      -1
    ],
    "io_out": [
      0,
      9,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sub_n(take(input,3),-1),-4)))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [9, 6]",
    "output": "generated_output : list = add_n([5, 2],4)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -3, -1, 1, 0]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(drop([0, -3, -1, 1, 0],2))),13))",
    "io_inp": [
      0,
      -3,
      -1,
      1,
      0
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(drop(input,2))),13))"
  },
  {
    "input": "input : list = [-4, -5, 0, -4]\noutput : list = [-15, -14, -14, -10]",
    "output": "generated_output : list = take(reverse(add_n(add_n(sort_des([-4, -5, 0, -4]),-5),-5)),34)",
    "io_inp": [
      -4,
      -5,
      0,
      -4
    ],
    "io_out": [
      -15,
      -14,
      -14,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(sort_des(input),-5),-5)),34)"
  },
  {
    "input": "input : list = [-1, 1, -4, -4, 4]\noutput : list = [11, 2, -4, -13, -13]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n([-1, 1, -4, -4, 4],3),3),2))",
    "io_inp": [
      -1,
      1,
      -4,
      -4,
      4
    ],
    "io_out": [
      11,
      2,
      -4,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(input,3),3),2))"
  },
  {
    "input": "input : list = [-3, 2, -2, -3, 0, -2]\noutput : list = [-1, -3, -5, -5, -6, -6]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(reverse([-3, 2, -2, -3, 0, -2]),8),-3)))",
    "io_inp": [
      -3,
      2,
      -2,
      -3,
      0,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(reverse(input),8),-3)))"
  },
  {
    "input": "input : list = [4, -1, 0, -5]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take(take([4, -1, 0, -5],1),1),-3)",
    "io_inp": [
      4,
      -1,
      0,
      -5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),1),-3)"
  },
  {
    "input": "input : list = [-4, 1, -4, 1]\noutput : list = [-6, -11, -6, -11]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(reverse([-4, 1, -4, 1]),-1),-4),36),2)",
    "io_inp": [
      -4,
      1,
      -4,
      1
    ],
    "io_out": [
      -6,
      -11,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(reverse(input),-1),-4),36),2)"
  },
  {
    "input": "input : list = [2, -3, 4, -3, 2, -1]\noutput : list = [-1, 2, -3, 4, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 4, -3, 2, -1])",
    "io_inp": [
      2,
      -3,
      4,
      -3,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      -3,
      4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [6, -1, -1]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sub_n([-5, -5, 2],-4),11))))",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sub_n(input,-4),11))))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(sub_n([5, 0],-1))),4),3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(sub_n(input,-1))),4),3)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [1, 5]",
    "output": "generated_output : list = sub_n([-2, 2],-3)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, 3, 3]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(mul_n([4, 3, 3],-1)))))",
    "io_inp": [
      4,
      3,
      3
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [0, 1, 0, 5, 5]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(sort_asc([0, 1, 0, 5, 5]),3))),4)",
    "io_inp": [
      0,
      1,
      0,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(sort_asc(input),3))),4)"
  },
  {
    "input": "input : list = [2, 1, -5, 2]\noutput : list = [7, 7, 3, -21]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(mul_n([2, 1, -5, 2],4)),12),-1))",
    "io_inp": [
      2,
      1,
      -5,
      2
    ],
    "io_out": [
      7,
      7,
      3,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(mul_n(input,4)),12),-1))"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [-25, 5, 10]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n([1, 2, -5],5))),28)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      -25,
      5,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(input,5))),28)"
  },
  {
    "input": "input : list = [-2, -2, 0]\noutput : list = [-4, -6, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse([-2, -2, 0]),4)))",
    "io_inp": [
      -2,
      -2,
      0
    ],
    "io_out": [
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [0, 1, 4]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(sort_asc(take([0, 1, 4],1)),5),-3)",
    "io_inp": [
      0,
      1,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(input,1)),5),-3)"
  },
  {
    "input": "input : list = [0, 3, -1, 4, 3, 3]\noutput : list = [14, 12, 12, 12, 6, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n(sort_des([0, 3, -1, 4, 3, 3]),2),-3),1),-2)",
    "io_inp": [
      0,
      3,
      -1,
      4,
      3,
      3
    ],
    "io_out": [
      14,
      12,
      12,
      12,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(sort_des(input),2),-3),1),-2)"
  },
  {
    "input": "input : list = [4, -5, -4, 4, 4, -2]\noutput : list = [-5, -4, -2, 4, 4, 4]",
    "output": "generated_output : list = sort_asc([4, -5, -4, 4, 4, -2])",
    "io_inp": [
      4,
      -5,
      -4,
      4,
      4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -5, -2, -1, -4, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = take(sort_des([1, -5, -2, -1, -4, 4]),2)",
    "io_inp": [
      1,
      -5,
      -2,
      -1,
      -4,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),2)"
  },
  {
    "input": "input : list = [1, 1, 2, 1, -3, -4]\noutput : list = [-15, -15, -10, -15, -35, -40]",
    "output": "generated_output : list = add_n(mul_n(take(take(add_n([1, 1, 2, 1, -3, -4],-5),19),24),5),5)",
    "io_inp": [
      1,
      1,
      2,
      1,
      -3,
      -4
    ],
    "io_out": [
      -15,
      -15,
      -10,
      -15,
      -35,
      -40
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(add_n(input,-5),19),24),5),5)"
  },
  {
    "input": "input : list = [1, 4, -5, 2, -5]\noutput : list = [-7, -1, 2, 20, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(mul_n([1, 4, -5, 2, -5],-3),1),-5)))",
    "io_inp": [
      1,
      4,
      -5,
      2,
      -5
    ],
    "io_out": [
      -7,
      -1,
      2,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(mul_n(input,-3),1),-5)))"
  },
  {
    "input": "input : list = [-5, 3, -5, -5]\noutput : list = [8, 0, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n([-5, 3, -5, -5],5)))",
    "io_inp": [
      -5,
      3,
      -5,
      -5
    ],
    "io_out": [
      8,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,5)))"
  },
  {
    "input": "input : list = [2, -4, 1]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = sort_des([2, -4, 1])",
    "io_inp": [
      2,
      -4,
      1
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, 2, -4, -3]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(take(take(sub_n(reverse([0, -1, 2, -4, -3]),-2),1),33))",
    "io_inp": [
      0,
      -1,
      2,
      -4,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(reverse(input),-2),1),33))"
  },
  {
    "input": "input : list = [5, 2, -2]\noutput : list = [-1, 3, 6]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(add_n([5, 2, -2],-5)),5),34),1)",
    "io_inp": [
      5,
      2,
      -2
    ],
    "io_out": [
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(add_n(input,-5)),5),34),1)"
  },
  {
    "input": "input : list = [4, 4, 0, -1]\noutput : list = [-17, -17, -5, -2]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des([4, 4, 0, -1]),-3),-2),-5),-2)",
    "io_inp": [
      4,
      4,
      0,
      -1
    ],
    "io_out": [
      -17,
      -17,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des(input),-3),-2),-5),-2)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [20, -4, 12]",
    "output": "generated_output : list = mul_n([-5, 1, -3],-4)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      20,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-25, 45]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(mul_n([5, -2],-5),-2),-3)),-2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -25,
      45
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(mul_n(input,-5),-2),-3)),-2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [8, 8]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(sort_asc([3, 3]),5)),16),-4)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(sort_asc(input),5)),16),-4)"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [12, 92, 92]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(mul_n([5, 5, 1],-4)),-5),5),3)",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      12,
      92,
      92
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(mul_n(input,-4)),-5),5),3)"
  },
  {
    "input": "input : list = [2, -4, -3, 2, 5]\noutput : list = [1, -5, -4, 1, 4]",
    "output": "generated_output : list = sub_n([2, -4, -3, 2, 5],1)",
    "io_inp": [
      2,
      -4,
      -3,
      2,
      5
    ],
    "io_out": [
      1,
      -5,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, 5, -1, -4, -3]\noutput : list = [4, -2, -4]",
    "output": "generated_output : list = sub_n(take(take(sort_des(drop([1, 5, -1, -4, -3],1)),3),27),1)",
    "io_inp": [
      1,
      5,
      -1,
      -4,
      -3
    ],
    "io_out": [
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(drop(input,1)),3),27),1)"
  },
  {
    "input": "input : list = [-2, -1, 0, 2, -2]\noutput : list = [3, 7, 5, 4, 3]",
    "output": "generated_output : list = reverse(sub_n([-2, -1, 0, 2, -2],-5))",
    "io_inp": [
      -2,
      -1,
      0,
      2,
      -2
    ],
    "io_out": [
      3,
      7,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(drop([-3, 4, 2],1)))))",
    "io_inp": [
      -3,
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-2, 1, -2, 0, 3, -1]\noutput : list = [-2, -2, -1, 0, 1, 3]",
    "output": "generated_output : list = add_n(reverse(take(add_n(sort_des([-2, 1, -2, 0, 3, -1]),3),12)),-3)",
    "io_inp": [
      -2,
      1,
      -2,
      0,
      3,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(sort_des(input),3),12)),-3)"
  },
  {
    "input": "input : list = [-5, -4, 4, 3, -5]\noutput : list = [10, 8, -8, -6, 10]",
    "output": "generated_output : list = mul_n([-5, -4, 4, 3, -5],-2)",
    "io_inp": [
      -5,
      -4,
      4,
      3,
      -5
    ],
    "io_out": [
      10,
      8,
      -8,
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [8, 2, 1]",
    "output": "generated_output : list = sort_des(take(add_n(add_n([5, -2, -1],5),-2),19))",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      8,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(input,5),-2),19))"
  },
  {
    "input": "input : list = [1, -1, 4, 5, -1, 1]\noutput : list = [-1, -1, 1, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc([1, -1, 4, 5, -1, 1])),23)))",
    "io_inp": [
      1,
      -1,
      4,
      5,
      -1,
      1
    ],
    "io_out": [
      -1,
      -1,
      1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc(input)),23)))"
  },
  {
    "input": "input : list = [2, -1, -2, 3]\noutput : list = [2, 1, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(mul_n([2, -1, -2, 3],-1)))))",
    "io_inp": [
      2,
      -1,
      -2,
      3
    ],
    "io_out": [
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [5, 4, 3, 5, 4]\noutput : list = [-5, -5, -4, -4, -3]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(sort_des([5, 4, 3, 5, 4]),9),-1)))",
    "io_inp": [
      5,
      4,
      3,
      5,
      4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(sort_des(input),9),-1)))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse([-5, -2])",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [0, 0, 5]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_asc([-2, -2, -3])),2)),-5)",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_asc(input)),2)),-5)"
  },
  {
    "input": "input : list = [-1, 3, -3]\noutput : list = [-4, -8, -10]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(sub_n([-1, 3, -3],2)),-3),-2))",
    "io_inp": [
      -1,
      3,
      -3
    ],
    "io_out": [
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(sub_n(input,2)),-3),-2))"
  },
  {
    "input": "input : list = [-5, -3, -5]\noutput : list = [-3]",
    "output": "generated_output : list = drop(sort_asc([-5, -3, -5]),2)",
    "io_inp": [
      -5,
      -3,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-2, 2, -3, -2, 0]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(drop([-2, 2, -3, -2, 0],3),-2),26),-2),1)",
    "io_inp": [
      -2,
      2,
      -3,
      -2,
      0
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(drop(input,3),-2),26),-2),1)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des([-3, 0])",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [15, 9, 15]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(add_n([4, -2, 4],4),-2)),20),-5)",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      15,
      9,
      15
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(add_n(input,4),-2)),20),-5)"
  },
  {
    "input": "input : list = [2, 1, -1, 2, 5]\noutput : list = [5, 2, 2, 1, -1]",
    "output": "generated_output : list = sort_des([2, 1, -1, 2, 5])",
    "io_inp": [
      2,
      1,
      -1,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, -2, -2]\noutput : list = [-1, -2, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(sub_n([0, 1, -2, -2],1),1))))",
    "io_inp": [
      0,
      1,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(sub_n(input,1),1))))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-9, -7]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(reverse([5, 3]),2),-2)),-1)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(reverse(input),2),-2)),-1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-16, -16]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n([-5, -5],-4),-1)),2)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(input,-4),-1)),2)"
  },
  {
    "input": "input : list = [-1, -1, 5, 2]\noutput : list = [4, 1, -2, -2]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(add_n([-1, -1, 5, 2],-1)))),26)",
    "io_inp": [
      -1,
      -1,
      5,
      2
    ],
    "io_out": [
      4,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(add_n(input,-1)))),26)"
  },
  {
    "input": "input : list = [0, -4, 4, 1, 1]\noutput : list = [-32, -32, -8, -72, -40]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(reverse([0, -4, 4, 1, 1]),-5),-1),-2),4)",
    "io_inp": [
      0,
      -4,
      4,
      1,
      1
    ],
    "io_out": [
      -32,
      -32,
      -8,
      -72,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(reverse(input),-5),-1),-2),4)"
  },
  {
    "input": "input : list = [3, -3, 2, -2, 5, -5]\noutput : list = [-24, 24, -16, 16, -40, 40]",
    "output": "generated_output : list = mul_n(mul_n([3, -3, 2, -2, 5, -5],-4),2)",
    "io_inp": [
      3,
      -3,
      2,
      -2,
      5,
      -5
    ],
    "io_out": [
      -24,
      24,
      -16,
      16,
      -40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),2)"
  },
  {
    "input": "input : list = [1, -2, -5, -5, 1]\noutput : list = [0, 0, -3, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(sort_asc([1, -2, -5, -5, 1]),-5),-5),1))",
    "io_inp": [
      1,
      -2,
      -5,
      -5,
      1
    ],
    "io_out": [
      0,
      0,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(sort_asc(input),-5),-5),1))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(mul_n([2, 0],2),4)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),4)"
  },
  {
    "input": "input : list = [0, 2, -3, 1]\noutput : list = [-1, 2, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(reverse([0, 2, -3, 1])),3)),5)",
    "io_inp": [
      0,
      2,
      -3,
      1
    ],
    "io_out": [
      -1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(reverse(input)),3)),5)"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [12, 15, 18]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(mul_n([-3, -1, -2],-3)),-5),-4),19)",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      12,
      15,
      18
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(mul_n(input,-3)),-5),-4),19)"
  },
  {
    "input": "input : list = [5, 2, 3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop([5, 2, 3, 4],2)",
    "io_inp": [
      5,
      2,
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, 1, 4, 4, -4]\noutput : list = [-16, -16, -16, -4, 16]",
    "output": "generated_output : list = mul_n(sort_des(reverse([4, 1, 4, 4, -4])),-4)",
    "io_inp": [
      4,
      1,
      4,
      4,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -16,
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-4)"
  },
  {
    "input": "input : list = [3, -3, 1, 0, 1, 2]\noutput : list = [3, -3]",
    "output": "generated_output : list = take([3, -3, 1, 0, 1, 2],2)",
    "io_inp": [
      3,
      -3,
      1,
      0,
      1,
      2
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [-25]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(take([1, -4, -1],1))),-5),5)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(take(input,1))),-5),5)"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_des(reverse(add_n([4, 3, 0],-4))),2))",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(reverse(add_n(input,-4))),2))"
  },
  {
    "input": "input : list = [3, 0, -2, 1]\noutput : list = [-1, -3, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des([3, 0, -2, 1])),-4)",
    "io_inp": [
      3,
      0,
      -2,
      1
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [0, -3, -2, -3, 1, -5]\noutput : list = [-3, -2, -3, 1, -5]",
    "output": "generated_output : list = drop([0, -3, -2, -3, 1, -5],1)",
    "io_inp": [
      0,
      -3,
      -2,
      -3,
      1,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 3, 3, 3, 5, 3]\noutput : list = [5, 4, 3, 3, 3, 3]",
    "output": "generated_output : list = reverse(sort_asc([4, 3, 3, 3, 5, 3]))",
    "io_inp": [
      4,
      3,
      3,
      3,
      5,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([0, -5, 2])))",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc([-1, -4])",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, -5, -3, 5]\noutput : list = [3, 0, -5, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n([-5, 2, -5, -3, 5],3),25)),1))",
    "io_inp": [
      -5,
      2,
      -5,
      -3,
      5
    ],
    "io_out": [
      3,
      0,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n(input,3),25)),1))"
  },
  {
    "input": "input : list = [3, -2, -2, 2]\noutput : list = [-5, -5, 19, 25]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(mul_n([3, -2, -2, 2],-3),-2)),-2),3)",
    "io_inp": [
      3,
      -2,
      -2,
      2
    ],
    "io_out": [
      -5,
      -5,
      19,
      25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(mul_n(input,-3),-2)),-2),3)"
  },
  {
    "input": "input : list = [3, 3, -5, -1, -3, -4]\noutput : list = [2, 2, -6]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(take([3, 3, -5, -1, -3, -4],3),-1))),33)",
    "io_inp": [
      3,
      3,
      -5,
      -1,
      -3,
      -4
    ],
    "io_out": [
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(take(input,3),-1))),33)"
  },
  {
    "input": "input : list = [5, -1, 5, -1, -1, 1]\noutput : list = [5, 5, 5, -3, -19, -19]",
    "output": "generated_output : list = add_n(sort_des(take(sub_n(mul_n([5, -1, 5, -1, -1, 1],-4),3),15)),4)",
    "io_inp": [
      5,
      -1,
      5,
      -1,
      -1,
      1
    ],
    "io_out": [
      5,
      5,
      5,
      -3,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sub_n(mul_n(input,-4),3),15)),4)"
  },
  {
    "input": "input : list = [-4, -5, -3]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(take(add_n(drop([-4, -5, -3],1),1),14))",
    "io_inp": [
      -4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(drop(input,1),1),14))"
  },
  {
    "input": "input : list = [-1, -5, -4, 1, 3]\noutput : list = [4, 0, 1, 6, 8]",
    "output": "generated_output : list = sub_n([-1, -5, -4, 1, 3],-5)",
    "io_inp": [
      -1,
      -5,
      -4,
      1,
      3
    ],
    "io_out": [
      4,
      0,
      1,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [15, 25, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(mul_n([5, 5, 3],5),1),1)))",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      15,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(mul_n(input,5),1),1)))"
  },
  {
    "input": "input : list = [-1, 1, -4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = drop([-1, 1, -4, -3],2)",
    "io_inp": [
      -1,
      1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(take([-3, 4, 0],1)),6),-3))",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(take(input,1)),6),-3))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [40, 20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des([5, 0]),5),4)))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      40,
      20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des(input),5),4)))"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(reverse(sub_n(take([3, -3, 0],1),3)),-2)",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(take(input,1),3)),-2)"
  },
  {
    "input": "input : list = [5, -1, -4, -1, -5, -4]\noutput : list = [2, -4, -4, -7, -7, -8]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(sub_n([5, -1, -4, -1, -5, -4],3))),40))",
    "io_inp": [
      5,
      -1,
      -4,
      -1,
      -5,
      -4
    ],
    "io_out": [
      2,
      -4,
      -4,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(sub_n(input,3))),40))"
  },
  {
    "input": "input : list = [4, 5, -1, 1, 5, -2]\noutput : list = [-6, -5, -3, 0, 1, 1]",
    "output": "generated_output : list = add_n(sort_asc([4, 5, -1, 1, 5, -2]),-4)",
    "io_inp": [
      4,
      5,
      -1,
      1,
      5,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -3,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [5, 5, 4, -1, 4, -1]\noutput : list = [5]",
    "output": "generated_output : list = take(take(mul_n(reverse(take([5, 5, 4, -1, 4, -1],2)),1),24),1)",
    "io_inp": [
      5,
      5,
      4,
      -1,
      4,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(take(input,2)),1),24),1)"
  },
  {
    "input": "input : list = [2, 3, -5, 3, -5, 0]\noutput : list = [-5, 3, -5, 0]",
    "output": "generated_output : list = drop([2, 3, -5, 3, -5, 0],2)",
    "io_inp": [
      2,
      3,
      -5,
      3,
      -5,
      0
    ],
    "io_out": [
      -5,
      3,
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, 1, -1, 4, 0, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(take([1, 1, -1, 4, 0, -2],1),-5),4)),-4)",
    "io_inp": [
      1,
      1,
      -1,
      4,
      0,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(take(input,1),-5),4)),-4)"
  },
  {
    "input": "input : list = [4, 3, -3, 1, 4, 1]\noutput : list = [-5, -20, -5, 15, -15]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(drop([4, 3, -3, 1, 4, 1],1),-5),1)),-1)",
    "io_inp": [
      4,
      3,
      -3,
      1,
      4,
      1
    ],
    "io_out": [
      -5,
      -20,
      -5,
      15,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(drop(input,1),-5),1)),-1)"
  },
  {
    "input": "input : list = [4, -5, -4]\noutput : list = [10, 9]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(drop([4, -5, -4],1),-1),-1),1),5)",
    "io_inp": [
      4,
      -5,
      -4
    ],
    "io_out": [
      10,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(drop(input,1),-1),-1),1),5)"
  },
  {
    "input": "input : list = [-1, 3, 4, 2]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(reverse(take(sort_asc([-1, 3, 4, 2]),6))),1)",
    "io_inp": [
      -1,
      3,
      4,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(sort_asc(input),6))),1)"
  },
  {
    "input": "input : list = [-1, -2, -2, -4]\noutput : list = [-3, -1, -1, 0]",
    "output": "generated_output : list = add_n(reverse(sub_n([-1, -2, -2, -4],-3)),-2)",
    "io_inp": [
      -1,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-3)),-2)"
  },
  {
    "input": "input : list = [5, 0, 1, 1]\noutput : list = [-5, -1, -1, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(add_n([5, 0, 1, 1],-3),-3))),-1)",
    "io_inp": [
      5,
      0,
      1,
      1
    ],
    "io_out": [
      -5,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(add_n(input,-3),-3))),-1)"
  },
  {
    "input": "input : list = [5, -4, -5, 1, -3, 2]\noutput : list = [-4, -2, 6, 8, 10]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_des(drop([5, -4, -5, 1, -3, 2],1)),13)),-2)",
    "io_inp": [
      5,
      -4,
      -5,
      1,
      -3,
      2
    ],
    "io_out": [
      -4,
      -2,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_des(drop(input,1)),13)),-2)"
  },
  {
    "input": "input : list = [-4, -2, -1, 0, -2, 5]\noutput : list = [-45, -35, -35, -30, -25, 0]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n(sort_asc([-4, -2, -1, 0, -2, 5]),-5),25),5))",
    "io_inp": [
      -4,
      -2,
      -1,
      0,
      -2,
      5
    ],
    "io_out": [
      -45,
      -35,
      -35,
      -30,
      -25,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(sort_asc(input),-5),25),5))"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-5, -3, 2]))",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 5, -2, 2, 1, 5]\noutput : list = [0, -3, -7, -8]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(take([-3, 5, -2, 2, 1, 5],4)),1),4),32)",
    "io_inp": [
      -3,
      5,
      -2,
      2,
      1,
      5
    ],
    "io_out": [
      0,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(take(input,4)),1),4),32)"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(add_n([-1, 3, -4],4),3),5),1),4)",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(add_n(input,4),3),5),1),4)"
  },
  {
    "input": "input : list = [0, 3, 1, 2, -5]\noutput : list = [-6, 1, 0, 2, -1]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(mul_n([0, 3, 1, 2, -5],1)),4),12),3)",
    "io_inp": [
      0,
      3,
      1,
      2,
      -5
    ],
    "io_out": [
      -6,
      1,
      0,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(mul_n(input,1)),4),12),3)"
  },
  {
    "input": "input : list = [3, 0, -4, -5, 4, 5]\noutput : list = [-8, -7, -3, 0, 1, 2]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_asc(sub_n([3, 0, -4, -5, 4, 5],-3)),-2),-1),-5)",
    "io_inp": [
      3,
      0,
      -4,
      -5,
      4,
      5
    ],
    "io_out": [
      -8,
      -7,
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_asc(sub_n(input,-3)),-2),-1),-5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(sub_n([2, -2],-5)),15),4),4)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(sub_n(input,-5)),15),4),4)"
  },
  {
    "input": "input : list = [-5, -4, -5, -5, 5]\noutput : list = [-7, 2, 3, 3, 3]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(sort_des([-5, -4, -5, -5, 5]))),-2),-1)",
    "io_inp": [
      -5,
      -4,
      -5,
      -5,
      5
    ],
    "io_out": [
      -7,
      2,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(sort_des(input))),-2),-1)"
  },
  {
    "input": "input : list = [4, 0, 0, -5]\noutput : list = [0, 20, 20, 45]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(reverse([4, 0, 0, -5]),-3),-5),5))",
    "io_inp": [
      4,
      0,
      0,
      -5
    ],
    "io_out": [
      0,
      20,
      20,
      45
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(reverse(input),-3),-5),5))"
  },
  {
    "input": "input : list = [-1, 2, 4, 1, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take(mul_n(take([-1, 2, 4, 1, 5],2),1),21)",
    "io_inp": [
      -1,
      2,
      4,
      1,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,2),1),21)"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(sort_des([0, 2, 4])),-5)))",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(sort_des(input)),-5)))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-21, -6]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(add_n([-4, 1],-3),3))))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -21,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(add_n(input,-3),3))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [6, -24]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(reverse([1, -4]),1),2),4),-3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      6,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(reverse(input),1),2),4),-3)"
  },
  {
    "input": "input : list = [-1, -2, -5, 1]\noutput : list = [-36, 0, -18]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(drop([-1, -2, -5, 1],1),5),2),-3))",
    "io_inp": [
      -1,
      -2,
      -5,
      1
    ],
    "io_out": [
      -36,
      0,
      -18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(drop(input,1),5),2),-3))"
  },
  {
    "input": "input : list = [-1, 1, -5, -1, 0, -1]\noutput : list = [2, 4, -2, 2, 3, 2]",
    "output": "generated_output : list = sub_n([-1, 1, -5, -1, 0, -1],-3)",
    "io_inp": [
      -1,
      1,
      -5,
      -1,
      0,
      -1
    ],
    "io_out": [
      2,
      4,
      -2,
      2,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [19, 7]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(reverse([2, 5])),4),-3),-2)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      19,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(reverse(input)),4),-3),-2)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [2, 5]",
    "output": "generated_output : list = sub_n([0, 3],-2)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [3]",
    "output": "generated_output : list = add_n(add_n(take([2, 0, -3],1),-4),5)",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),-4),5)"
  },
  {
    "input": "input : list = [-5, 3, 0, 1, 4, -4]\noutput : list = [16, -16, -4, -8, -20, 12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n([-5, 3, 0, 1, 4, -4],3),-1),-3),-4)",
    "io_inp": [
      -5,
      3,
      0,
      1,
      4,
      -4
    ],
    "io_out": [
      16,
      -16,
      -4,
      -8,
      -20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(input,3),-1),-3),-4)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [3, -1, -1]",
    "output": "generated_output : list = sort_des([-1, -1, 3])",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3, 2]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(drop(reverse(sub_n(reverse([4, 3, 2]),5)),2),-1)",
    "io_inp": [
      4,
      3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(drop(reverse(sub_n(reverse(input),5)),2),-1)"
  },
  {
    "input": "input : list = [2, -4, 3, 0, 0]\noutput : list = [-2, -10, -10, -14, -16]",
    "output": "generated_output : list = take(sort_des(take(mul_n(add_n([2, -4, 3, 0, 0],5),-2),32)),41)",
    "io_inp": [
      2,
      -4,
      3,
      0,
      0
    ],
    "io_out": [
      -2,
      -10,
      -10,
      -14,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(add_n(input,5),-2),32)),41)"
  },
  {
    "input": "input : list = [-1, -3, 0]\noutput : list = [-3]",
    "output": "generated_output : list = drop(sort_des([-1, -3, 0]),2)",
    "io_inp": [
      -1,
      -3,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),2)"
  },
  {
    "input": "input : list = [5, 3, 2, -5]\noutput : list = [-1, 6, 7]",
    "output": "generated_output : list = add_n(reverse(drop([5, 3, 2, -5],1)),4)",
    "io_inp": [
      5,
      3,
      2,
      -5
    ],
    "io_out": [
      -1,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,1)),4)"
  },
  {
    "input": "input : list = [-5, -3, 1, 5, -4]\noutput : list = [10, 2, -6, -8, -10]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(reverse([-5, -3, 1, 5, -4])),-1),-2))",
    "io_inp": [
      -5,
      -3,
      1,
      5,
      -4
    ],
    "io_out": [
      10,
      2,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(reverse(input)),-1),-2))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n([3, 3],1),3)))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(input,1),3)))"
  },
  {
    "input": "input : list = [-1, 5, 4, 2, -5, 4]\noutput : list = [0, 0, -2, -9]",
    "output": "generated_output : list = sort_des(sort_asc(take(drop(add_n([-1, 5, 4, 2, -5, 4],-4),2),30)))",
    "io_inp": [
      -1,
      5,
      4,
      2,
      -5,
      4
    ],
    "io_out": [
      0,
      0,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(drop(add_n(input,-4),2),30)))"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(drop([-3, -2, 1],1),8)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),8)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [18, 3, 9]",
    "output": "generated_output : list = add_n(mul_n([-5, 0, -2],-3),3)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      18,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),3)"
  },
  {
    "input": "input : list = [-5, -3, 1, -4]\noutput : list = [-2, 6, 8, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(sort_des([-5, -3, 1, -4]),-2),25)))",
    "io_inp": [
      -5,
      -3,
      1,
      -4
    ],
    "io_out": [
      -2,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(sort_des(input),-2),25)))"
  },
  {
    "input": "input : list = [-2, 3, 5, 5, 1, -2]\noutput : list = [10, -15, -25, -25, -5, 10]",
    "output": "generated_output : list = mul_n([-2, 3, 5, 5, 1, -2],-5)",
    "io_inp": [
      -2,
      3,
      5,
      5,
      1,
      -2
    ],
    "io_out": [
      10,
      -15,
      -25,
      -25,
      -5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -4, -5, -3, -1]\noutput : list = [-12, -14, -16, -12, -8]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-3, -4, -5, -3, -1],-3),-1),-2)",
    "io_inp": [
      -3,
      -4,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -14,
      -16,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-3),-1),-2)"
  },
  {
    "input": "input : list = [0, 1, 4, 4, 2, -4]\noutput : list = [3, 4, 7, 7]",
    "output": "generated_output : list = sub_n(take([0, 1, 4, 4, 2, -4],4),-3)",
    "io_inp": [
      0,
      1,
      4,
      4,
      2,
      -4
    ],
    "io_out": [
      3,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,4),-3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-6, 1]",
    "output": "generated_output : list = reverse(sub_n([3, -4],2))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [0, 5, -5, 1]\noutput : list = [-27, -15, -12, 3]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sort_asc([0, 5, -5, 1]),-4)),-3))",
    "io_inp": [
      0,
      5,
      -5,
      1
    ],
    "io_out": [
      -27,
      -15,
      -12,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sort_asc(input),-4)),-3))"
  },
  {
    "input": "input : list = [2, 0, -1, -2]\noutput : list = [25, 15, 10, 5]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(reverse([2, 0, -1, -2])),-3)),5)",
    "io_inp": [
      2,
      0,
      -1,
      -2
    ],
    "io_out": [
      25,
      15,
      10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(reverse(input)),-3)),5)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [11, 7, 5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(sub_n([0, -2, 4],-2),-5))))",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      11,
      7,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(sub_n(input,-2),-5))))"
  },
  {
    "input": "input : list = [0, -1, 5]\noutput : list = [6, 12]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(drop([0, -1, 5],1))),4),-3)",
    "io_inp": [
      0,
      -1,
      5
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(drop(input,1))),4),-3)"
  },
  {
    "input": "input : list = [-1, -5, -5, 1, 1, 3]\noutput : list = [20, 68, 68, -4, -4, -28]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-1, -5, -5, 1, 1, 3],-3),2),4)",
    "io_inp": [
      -1,
      -5,
      -5,
      1,
      1,
      3
    ],
    "io_out": [
      20,
      68,
      68,
      -4,
      -4,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,-3),2),4)"
  },
  {
    "input": "input : list = [4, -1, -5]\noutput : list = [3, -2, -6]",
    "output": "generated_output : list = add_n([4, -1, -5],-1)",
    "io_inp": [
      4,
      -1,
      -5
    ],
    "io_out": [
      3,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -1, -3, -3, 5]\noutput : list = [-5, -2, -4, -4, 4]",
    "output": "generated_output : list = add_n([-4, -1, -3, -3, 5],-1)",
    "io_inp": [
      -4,
      -1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -5,
      -2,
      -4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -2, -2, -2]\noutput : list = [-6, -6, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_des([-3, -2, -2, -2])),-2),2))",
    "io_inp": [
      -3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_des(input)),-2),2))"
  },
  {
    "input": "input : list = [-5, 3, -3, 3, -3, 4]\noutput : list = [2, 9]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(drop([-5, 3, -3, 3, -3, 4],4))),-5),48)",
    "io_inp": [
      -5,
      3,
      -3,
      3,
      -3,
      4
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(drop(input,4))),-5),48)"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = drop([4, 4, -3],1)",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [4, -2]",
    "output": "generated_output : list = add_n([3, -3],1)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, -1, 5, -1, 2]\noutput : list = [2, -1, 5, -1, 2]",
    "output": "generated_output : list = reverse(reverse(reverse([2, -1, 5, -1, 2])))",
    "io_inp": [
      2,
      -1,
      5,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse(sub_n(take(take(sort_des([0, 3]),3),22),-1))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(sort_des(input),3),22),-1))"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-4, -2, -2]",
    "output": "generated_output : list = take(take(take(sub_n(sort_asc([1, -1, 1]),3),24),25),35)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(sort_asc(input),3),24),25),35)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(sort_asc([-3, -4])),12),4))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(sort_asc(input)),12),4))"
  },
  {
    "input": "input : list = [1, 5, 3]\noutput : list = [-25, -15, -5]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(add_n([1, 5, 3],-3),4)),3),-5)",
    "io_inp": [
      1,
      5,
      3
    ],
    "io_out": [
      -25,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(add_n(input,-3),4)),3),-5)"
  },
  {
    "input": "input : list = [3, 5, 4, 1, -3]\noutput : list = [-9, -8, -7, -5, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n([3, 5, 4, 1, -3],-1))),-4)",
    "io_inp": [
      3,
      5,
      4,
      1,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(input,-1))),-4)"
  },
  {
    "input": "input : list = [1, 0, 1, 2, 4]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(drop(sort_asc(reverse(add_n([1, 0, 1, 2, 4],-1))),3),6)",
    "io_inp": [
      1,
      0,
      1,
      2,
      4
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(reverse(add_n(input,-1))),3),6)"
  },
  {
    "input": "input : list = [-2, -2, -1, -3, -5]\noutput : list = [6, 5, 5, 4, 2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(sort_asc([-2, -2, -1, -3, -5]),23),-5)),-2)",
    "io_inp": [
      -2,
      -2,
      -1,
      -3,
      -5
    ],
    "io_out": [
      6,
      5,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(sort_asc(input),23),-5)),-2)"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(take([5, -2, -2],1),2),-3)",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,1),2),-3)"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = drop([1, 4, -5],1)",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3, -4, 0]\noutput : list = [-4, 0, 3, 3]",
    "output": "generated_output : list = reverse(sort_des([3, 3, -4, 0]))",
    "io_inp": [
      3,
      3,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -1, 4, -3]\noutput : list = [-6, 0, 15]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(drop(mul_n([-5, -1, 4, -3],3),1))),-3)",
    "io_inp": [
      -5,
      -1,
      4,
      -3
    ],
    "io_out": [
      -6,
      0,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(drop(mul_n(input,3),1))),-3)"
  },
  {
    "input": "input : list = [1, 1, -4, 0, -1]\noutput : list = [6, 5, 4, 1]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(drop([1, 1, -4, 0, -1],1)),19)),5)",
    "io_inp": [
      1,
      1,
      -4,
      0,
      -1
    ],
    "io_out": [
      6,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(drop(input,1)),19)),5)"
  },
  {
    "input": "input : list = [-1, -3, -3, -2, 3]\noutput : list = [-3, 1, 1, -1, -11]",
    "output": "generated_output : list = sub_n(mul_n([-1, -3, -3, -2, 3],-2),5)",
    "io_inp": [
      -1,
      -3,
      -3,
      -2,
      3
    ],
    "io_out": [
      -3,
      1,
      1,
      -1,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [80, 80]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(reverse([-4, -4]),-5),10)),4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      80,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(reverse(input),-5),10)),4)"
  },
  {
    "input": "input : list = [-1, -5, 5, 2, 0]\noutput : list = [10, 7, 5, 4, 0]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(add_n([-1, -5, 5, 2, 0],-1),-1),-4),3))",
    "io_inp": [
      -1,
      -5,
      5,
      2,
      0
    ],
    "io_out": [
      10,
      7,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(add_n(input,-1),-1),-4),3))"
  },
  {
    "input": "input : list = [4, -1, 5, -4]\noutput : list = [5, 4, -1, -4]",
    "output": "generated_output : list = sort_des([4, -1, 5, -4])",
    "io_inp": [
      4,
      -1,
      5,
      -4
    ],
    "io_out": [
      5,
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [7, 5, 4]",
    "output": "generated_output : list = reverse(add_n(take(sort_asc(sort_des([3, 0, 1])),26),4))",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_asc(sort_des(input)),26),4))"
  },
  {
    "input": "input : list = [-1, -2, -5, 0, -2, 5]\noutput : list = [-1, -2, -5, 0, -2, 5]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(add_n([-1, -2, -5, 0, -2, 5],4),5),4),1),4)",
    "io_inp": [
      -1,
      -2,
      -5,
      0,
      -2,
      5
    ],
    "io_out": [
      -1,
      -2,
      -5,
      0,
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(add_n(input,4),5),4),1),4)"
  },
  {
    "input": "input : list = [3, 3, -3, -2]\noutput : list = [-30, -30, 20, 30]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(sort_des([3, 3, -3, -2])),2)),-5)",
    "io_inp": [
      3,
      3,
      -3,
      -2
    ],
    "io_out": [
      -30,
      -30,
      20,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(sort_des(input)),2)),-5)"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [19, 1, 4]",
    "output": "generated_output : list = reverse(reverse(take(add_n(mul_n([-5, 1, 0],-3),4),9)))",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      19,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(mul_n(input,-3),4),9)))"
  },
  {
    "input": "input : list = [-5, -4, 5, 3, 5]\noutput : list = [-15, -15, -5, 30]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des([-5, -4, 5, 3, 5]),-2),-5),4)",
    "io_inp": [
      -5,
      -4,
      5,
      3,
      5
    ],
    "io_out": [
      -15,
      -15,
      -5,
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(input),-2),-5),4)"
  },
  {
    "input": "input : list = [-5, -3, 1, 1, 0]\noutput : list = [1, 1, 0, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-5, -3, 1, 1, 0])))",
    "io_inp": [
      -5,
      -3,
      1,
      1,
      0
    ],
    "io_out": [
      1,
      1,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 3, -3, 2]\noutput : list = [-100, -60, 0, 20]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n(mul_n([-1, 3, -3, 2],4),3)),-5),5)",
    "io_inp": [
      -1,
      3,
      -3,
      2
    ],
    "io_out": [
      -100,
      -60,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(mul_n(input,4),3)),-5),5)"
  },
  {
    "input": "input : list = [1, 2, -4, -1, -4]\noutput : list = [-4, -4, -1, 1, 2]",
    "output": "generated_output : list = mul_n(sort_asc([1, 2, -4, -1, -4]),1)",
    "io_inp": [
      1,
      2,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [2, -4, -1, -1]\noutput : list = [-2, -5, -5, -8]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_des([2, -4, -1, -1])),1),5),2)",
    "io_inp": [
      2,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_des(input)),1),5),2)"
  },
  {
    "input": "input : list = [-2, -5, 2, 4, 0, 1]\noutput : list = [1, 0, 4, 2, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, 2, 4, 0, 1])",
    "io_inp": [
      -2,
      -5,
      2,
      4,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      4,
      2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [7, 5]",
    "output": "generated_output : list = add_n(sort_des([3, 5]),2)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-5, -5, 2, -3]\noutput : list = [-7, 8, 14, 14]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(mul_n([-5, -5, 2, -3],-3),1))))",
    "io_inp": [
      -5,
      -5,
      2,
      -3
    ],
    "io_out": [
      -7,
      8,
      14,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(mul_n(input,-3),1))))"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = drop([-4, 0, -3],1)",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(add_n([-5, -1],2)))),41)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(add_n(input,2)))),41)"
  },
  {
    "input": "input : list = [-4, -3, 0, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(take([-4, -3, 0, -1],1))),-3))",
    "io_inp": [
      -4,
      -3,
      0,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(take(input,1))),-3))"
  },
  {
    "input": "input : list = [-4, 2, 0, -1]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sub_n(reverse(take(take([-4, 2, 0, -1],2),6)),4)",
    "io_inp": [
      -4,
      2,
      0,
      -1
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(input,2),6)),4)"
  },
  {
    "input": "input : list = [0, 4, 0, -1]\noutput : list = [23, 11, 11, 8]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(add_n([0, 4, 0, -1],5),3)),34),-4)",
    "io_inp": [
      0,
      4,
      0,
      -1
    ],
    "io_out": [
      23,
      11,
      11,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(add_n(input,5),3)),34),-4)"
  },
  {
    "input": "input : list = [1, 3, -2, 0, -4, 1]\noutput : list = [-1, 1, -4, -2, -6, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse([1, 3, -2, 0, -4, 1]),2))",
    "io_inp": [
      1,
      3,
      -2,
      0,
      -4,
      1
    ],
    "io_out": [
      -1,
      1,
      -4,
      -2,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),2))"
  },
  {
    "input": "input : list = [0, 4, 0, 1]\noutput : list = [-2, -5, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(sort_asc([0, 4, 0, 1])),1)),-5)",
    "io_inp": [
      0,
      4,
      0,
      1
    ],
    "io_out": [
      -2,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(sort_asc(input)),1)),-5)"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(take([-1, 4, -3],1),16),-4)),-1)",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(take(input,1),16),-4)),-1)"
  },
  {
    "input": "input : list = [-5, 1, 1, -4]\noutput : list = [2, 2, -8, -10]",
    "output": "generated_output : list = sort_des(mul_n([-5, 1, 1, -4],2))",
    "io_inp": [
      -5,
      1,
      1,
      -4
    ],
    "io_out": [
      2,
      2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [5, 4, 4, -4, 3, -3]\noutput : list = [-10, -10, -13]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(take([5, 4, 4, -4, 3, -3],3)),-3)),-2)",
    "io_inp": [
      5,
      4,
      4,
      -4,
      3,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(take(input,3)),-3)),-2)"
  },
  {
    "input": "input : list = [-1, -1, 0, -4, -3, -5]\noutput : list = [12, 14, 14, 18, 20, 22]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n([-1, -1, 0, -4, -3, -5],-5))),-1),-2)",
    "io_inp": [
      -1,
      -1,
      0,
      -4,
      -3,
      -5
    ],
    "io_out": [
      12,
      14,
      14,
      18,
      20,
      22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n(input,-5))),-1),-2)"
  },
  {
    "input": "input : list = [2, 1, 5, 0]\noutput : list = [0, 20]",
    "output": "generated_output : list = take(reverse(take(drop(mul_n([2, 1, 5, 0],4),2),19)),39)",
    "io_inp": [
      2,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(take(drop(mul_n(input,4),2),19)),39)"
  },
  {
    "input": "input : list = [5, 3, 0, -4, 2]\noutput : list = [9, 5, 3, 2, 0]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(sort_asc([5, 3, 0, -4, 2])),-1),-5))",
    "io_inp": [
      5,
      3,
      0,
      -4,
      2
    ],
    "io_out": [
      9,
      5,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(sort_asc(input)),-1),-5))"
  },
  {
    "input": "input : list = [0, -4, -1, -3, 1, -4]\noutput : list = [5, 4, 3, 1, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(sub_n([0, -4, -1, -3, 1, -4],-1),18)),-3))",
    "io_inp": [
      0,
      -4,
      -1,
      -3,
      1,
      -4
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(sub_n(input,-1),18)),-3))"
  },
  {
    "input": "input : list = [0, 1, 0, 1, -4]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = take(sort_des(sort_asc(take([0, 1, 0, 1, -4],3))),40)",
    "io_inp": [
      0,
      1,
      0,
      1,
      -4
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(input,3))),40)"
  },
  {
    "input": "input : list = [-5, -3, -5, -5, -2, -2]\noutput : list = [-1, -3, -3, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(take([-5, -3, -5, -5, -2, -2],4),2)),42))",
    "io_inp": [
      -5,
      -3,
      -5,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(take(input,4),2)),42))"
  },
  {
    "input": "input : list = [1, -5, 3, 0, 4, -3]\noutput : list = [4, 8, 1]",
    "output": "generated_output : list = add_n(add_n(add_n(drop(add_n([1, -5, 3, 0, 4, -3],3),3),3),1),-3)",
    "io_inp": [
      1,
      -5,
      3,
      0,
      4,
      -3
    ],
    "io_out": [
      4,
      8,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(drop(add_n(input,3),3),3),1),-3)"
  },
  {
    "input": "input : list = [1, -3, 5, -1, 1, 4]\noutput : list = [4, 3, 0, 0, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n([1, -3, 5, -1, 1, 4],2),-1)))",
    "io_inp": [
      1,
      -3,
      5,
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      3,
      0,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(input,2),-1)))"
  },
  {
    "input": "input : list = [-3, -5, 5, 1, 4, -4]\noutput : list = [-5, -4, -3, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-3, -5, 5, 1, 4, -4]))",
    "io_inp": [
      -3,
      -5,
      5,
      1,
      4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -3, -5, 0]\noutput : list = [-10, -9, -8, -5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(add_n([-4, -3, -5, 0],-5)))))",
    "io_inp": [
      -4,
      -3,
      -5,
      0
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [-3, -5, -3, 0]\noutput : list = [0, -30]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(drop([-3, -5, -3, 0],2),-5)),-2),10)",
    "io_inp": [
      -3,
      -5,
      -3,
      0
    ],
    "io_out": [
      0,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(drop(input,2),-5)),-2),10)"
  },
  {
    "input": "input : list = [4, -3, 1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop([4, -3, 1],1),1))))",
    "io_inp": [
      4,
      -3,
      1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [-4, -3, 0, -1]\noutput : list = [1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n([-4, -3, 0, -1],-5),14))))",
    "io_inp": [
      -4,
      -3,
      0,
      -1
    ],
    "io_out": [
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n(input,-5),14))))"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [1, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(take(sub_n(sort_asc([2, 3, 3]),1),5)),-1)",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sub_n(sort_asc(input),1),5)),-1)"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [-3, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(drop([-3, -1, -5],1))),3))",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(drop(input,1))),3))"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(take([-5, 0, -2],1),6),3)))",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(take(input,1),6),3)))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(mul_n([1, 0],-2),1),5),-5),9)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(mul_n(input,-2),1),5),-5),9)"
  },
  {
    "input": "input : list = [4, -1, 1, -1, 3]\noutput : list = [3, -2, 0, -2, 2]",
    "output": "generated_output : list = add_n([4, -1, 1, -1, 3],-1)",
    "io_inp": [
      4,
      -1,
      1,
      -1,
      3
    ],
    "io_out": [
      3,
      -2,
      0,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [5, 3, -4]",
    "output": "generated_output : list = sort_des([-4, 5, 3])",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, 3, 3, 1]\noutput : list = [3, 3, 1, -3, -4]",
    "output": "generated_output : list = sort_des([-4, -3, 3, 3, 1])",
    "io_inp": [
      -4,
      -3,
      3,
      3,
      1
    ],
    "io_out": [
      3,
      3,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [1, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(drop([5, 3, 0],1))),1),2)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(drop(input,1))),1),2)"
  },
  {
    "input": "input : list = [3, -1, -3, 1, -3, -5]\noutput : list = [-15, -7, 1, 9, 9, 17]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(sort_asc([3, -1, -3, 1, -3, -5]),-4),-3)))",
    "io_inp": [
      3,
      -1,
      -3,
      1,
      -3,
      -5
    ],
    "io_out": [
      -15,
      -7,
      1,
      9,
      9,
      17
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(sort_asc(input),-4),-3)))"
  },
  {
    "input": "input : list = [-2, 0, -2, 3, 5, -3]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(add_n(reverse(take([-2, 0, -2, 3, 5, -3],1)),-3),-1)",
    "io_inp": [
      -2,
      0,
      -2,
      3,
      5,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(input,1)),-3),-1)"
  },
  {
    "input": "input : list = [4, 5, -4, -4, -2]\noutput : list = [5, 5, 15, 45, 50]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(sort_asc([4, 5, -4, -4, -2]),3),2),5))",
    "io_inp": [
      4,
      5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      5,
      5,
      15,
      45,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(sort_asc(input),3),2),5))"
  },
  {
    "input": "input : list = [-4, 3, 5, 1, -5, -3]\noutput : list = [-30, -20, -10, 10, 15, 20]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(add_n([-4, 3, 5, 1, -5, -3],1),-5),9)))",
    "io_inp": [
      -4,
      3,
      5,
      1,
      -5,
      -3
    ],
    "io_out": [
      -30,
      -20,
      -10,
      10,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(add_n(input,1),-5),9)))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-8, -7]",
    "output": "generated_output : list = sort_asc(add_n([-3, -4],-4))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [5, 3, -4, 5, 3, 3]\noutput : list = [-8, -1, 1]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(take([5, 3, -4, 5, 3, 3],3)),3),9),1)",
    "io_inp": [
      5,
      3,
      -4,
      5,
      3,
      3
    ],
    "io_out": [
      -8,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(take(input,3)),3),9),1)"
  },
  {
    "input": "input : list = [1, -1, -1, 1, -3, -5]\noutput : list = [0, 2, 6, 4, 4, 6]",
    "output": "generated_output : list = reverse(add_n([1, -1, -1, 1, -3, -5],5))",
    "io_inp": [
      1,
      -1,
      -1,
      1,
      -3,
      -5
    ],
    "io_out": [
      0,
      2,
      6,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sub_n([-4, 1],4)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, 2, -2, 2, 5]\noutput : list = [3, 3, -9, -9, -18]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(sub_n([-2, 2, -2, 2, 5],-1))),-3))",
    "io_inp": [
      -2,
      2,
      -2,
      2,
      5
    ],
    "io_out": [
      3,
      3,
      -9,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(sub_n(input,-1))),-3))"
  },
  {
    "input": "input : list = [1, 1, -2, -1, -2]\noutput : list = [-2, -2, -1]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(drop([1, 1, -2, -1, -2],2)),16)),37)",
    "io_inp": [
      1,
      1,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(drop(input,2)),16)),37)"
  },
  {
    "input": "input : list = [3, 2, -1, 0, 0]\noutput : list = [7, 7, 11, -1, -5]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n([3, 2, -1, 0, 0],2)),-4),1)",
    "io_inp": [
      3,
      2,
      -1,
      0,
      0
    ],
    "io_out": [
      7,
      7,
      11,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(input,2)),-4),1)"
  },
  {
    "input": "input : list = [0, -5, -2, -3, 0, -1]\noutput : list = [5, 2, 3]",
    "output": "generated_output : list = reverse(mul_n(reverse(drop(take([0, -5, -2, -3, 0, -1],4),1)),-1))",
    "io_inp": [
      0,
      -5,
      -2,
      -3,
      0,
      -1
    ],
    "io_out": [
      5,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(drop(take(input,4),1)),-1))"
  },
  {
    "input": "input : list = [-5, -4, 1, -2, 5, -2]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(take([-5, -4, 1, -2, 5, -2],3),1))))",
    "io_inp": [
      -5,
      -4,
      1,
      -2,
      5,
      -2
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(take(input,3),1))))"
  },
  {
    "input": "input : list = [3, 4, 1, -5, 5, -4]\noutput : list = [-11, -7, 1, 25]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(take([3, 4, 1, -5, 5, -4],4))),-4),5)",
    "io_inp": [
      3,
      4,
      1,
      -5,
      5,
      -4
    ],
    "io_out": [
      -11,
      -7,
      1,
      25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(take(input,4))),-4),5)"
  },
  {
    "input": "input : list = [4, 0, -4, 0, 1, -1]\noutput : list = [-4, -1, 0, 0, 1, 4]",
    "output": "generated_output : list = take(sort_asc(take(mul_n([4, 0, -4, 0, 1, -1],-1),8)),37)",
    "io_inp": [
      4,
      0,
      -4,
      0,
      1,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(input,-1),8)),37)"
  },
  {
    "input": "input : list = [-1, -2, 2, -5]\noutput : list = [2, -1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([-1, -2, 2, -5]))",
    "io_inp": [
      -1,
      -2,
      2,
      -5
    ],
    "io_out": [
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -2, -5, -3, 1, -2]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(add_n(reverse(take([4, -2, -5, -3, 1, -2],1)),-5),-3)",
    "io_inp": [
      4,
      -2,
      -5,
      -3,
      1,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(input,1)),-5),-3)"
  },
  {
    "input": "input : list = [-4, 0, 2, -2, 1, 3]\noutput : list = [18, 30, 48, 24, 36, 60]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(add_n([-4, 0, 2, -2, 1, 3],-5),1)),-3),2)",
    "io_inp": [
      -4,
      0,
      2,
      -2,
      1,
      3
    ],
    "io_out": [
      18,
      30,
      48,
      24,
      36,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(add_n(input,-5),1)),-3),2)"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-6, -4, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse([-3, -5, -3])),-2),1)",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(input)),-2),1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [4, 13]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sub_n([-4, 5],3),-3),-5),-3))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      4,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sub_n(input,3),-3),-5),-3))"
  },
  {
    "input": "input : list = [5, 0, 3, 0]\noutput : list = [5, 3, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des([5, 0, 3, 0]))",
    "io_inp": [
      5,
      0,
      3,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, -1, -5]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -1, -5],1)",
    "io_inp": [
      3,
      -1,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(sub_n([-2, -2],-4))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [0, 0, 2, 5, -4, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(take([0, 0, 2, 5, -4, 3],2),7)",
    "io_inp": [
      0,
      0,
      2,
      5,
      -4,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(input,2),7)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(sort_asc([-3, -1]),1)),1),21)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(sort_asc(input),1)),1),21)"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = drop([1, 3, 0],1)",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 1, -2, 3]\noutput : list = [-7]",
    "output": "generated_output : list = take(take(reverse(add_n(take([-3, 1, -2, 3],1),-4)),25),33)",
    "io_inp": [
      -3,
      1,
      -2,
      3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(take(input,1),-4)),25),33)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-75, -60]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(mul_n([4, 5],-3)),5)))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -75,
      -60
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(mul_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [0, 0, 4, 5, -2]\noutput : list = [0, 0, -16, -20, 8]",
    "output": "generated_output : list = mul_n([0, 0, 4, 5, -2],-4)",
    "io_inp": [
      0,
      0,
      4,
      5,
      -2
    ],
    "io_out": [
      0,
      0,
      -16,
      -20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [4, -3, 5]",
    "output": "generated_output : list = reverse(reverse(mul_n([-4, 3, -5],-1)))",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [-3, -5, 1, 5, 0]\noutput : list = [1, -3, -4, -7, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([-3, -5, 1, 5, 0]),4))",
    "io_inp": [
      -3,
      -5,
      1,
      5,
      0
    ],
    "io_out": [
      1,
      -3,
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [0, -3, 4, 0]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n(take(drop([0, -3, 4, 0],2),9),-3)",
    "io_inp": [
      0,
      -3,
      4,
      0
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,2),9),-3)"
  },
  {
    "input": "input : list = [-3, -2, -3, 0, 0, 0]\noutput : list = [-3, -3, -2, 0, 0, 0]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(sort_des([-3, -2, -3, 0, 0, 0]))),43))",
    "io_inp": [
      -3,
      -2,
      -3,
      0,
      0,
      0
    ],
    "io_out": [
      -3,
      -3,
      -2,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(sort_des(input))),43))"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [10, -5, -14]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc(sort_asc([-5, 3, 0])),12),-3),5)",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      10,
      -5,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(sort_asc(input)),12),-3),5)"
  },
  {
    "input": "input : list = [0, 0, -2, -2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(drop([0, 0, -2, -2, -4],3))",
    "io_inp": [
      0,
      0,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [-3, -3, 0, -5, -4]\noutput : list = [-1, -1, 2, -3, -2]",
    "output": "generated_output : list = sub_n([-3, -3, 0, -5, -4],-2)",
    "io_inp": [
      -3,
      -3,
      0,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -1,
      2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [4, 4, 2, -3, 5, -2]\noutput : list = [3, 4, 8, 10, 10, 11]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n([4, 4, 2, -3, 5, -2],4),-2)))",
    "io_inp": [
      4,
      4,
      2,
      -3,
      5,
      -2
    ],
    "io_out": [
      3,
      4,
      8,
      10,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(input,4),-2)))"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [8, 6, -2]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sort_des([-1, 3, 4])),2)))",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      8,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [1, 1, 0, -2, -1]\noutput : list = [1, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des([1, 1, 0, -2, -1])))",
    "io_inp": [
      1,
      1,
      0,
      -2,
      -1
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-5, 5, 2]\noutput : list = [7, 4, -3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(sort_asc([-5, 5, 2]),8),-2)))",
    "io_inp": [
      -5,
      5,
      2
    ],
    "io_out": [
      7,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(sort_asc(input),8),-2)))"
  },
  {
    "input": "input : list = [5, -1, -4, 4]\noutput : list = [5, 4, -1, -4]",
    "output": "generated_output : list = sort_des([5, -1, -4, 4])",
    "io_inp": [
      5,
      -1,
      -4,
      4
    ],
    "io_out": [
      5,
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 3, 2, -1, -4, -5]\noutput : list = [2, 5, 8, 9]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(drop([3, 3, 2, -1, -4, -5],2)),-1),4))",
    "io_inp": [
      3,
      3,
      2,
      -1,
      -4,
      -5
    ],
    "io_out": [
      2,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(drop(input,2)),-1),4))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(sub_n([1, 5],-5))),-4))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(sub_n(input,-5))),-4))"
  },
  {
    "input": "input : list = [-2, 4, -1]\noutput : list = [4, -1, -2]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(sort_des([-2, 4, -1])))),25)",
    "io_inp": [
      -2,
      4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(sort_des(input)))),25)"
  },
  {
    "input": "input : list = [1, 5, -4, 4, -3]\noutput : list = [2, 3, 7, 10, 11]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n([1, 5, -4, 4, -3],-5))),-1)",
    "io_inp": [
      1,
      5,
      -4,
      4,
      -3
    ],
    "io_out": [
      2,
      3,
      7,
      10,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(input,-5))),-1)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-2, -3],-3)))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-12, -15]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(reverse([-5, -4]),3),17),-1),1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(reverse(input),3),17),-1),1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [8, 9]",
    "output": "generated_output : list = take(sort_asc(add_n(take(reverse([4, 3]),5),5)),35)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      8,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(reverse(input),5),5)),35)"
  },
  {
    "input": "input : list = [-4, -5, -4, 4]\noutput : list = [6, -2, -2, -3]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(sort_des([-4, -5, -4, 4])),-3),-1),44)",
    "io_inp": [
      -4,
      -5,
      -4,
      4
    ],
    "io_out": [
      6,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(sort_des(input)),-3),-1),44)"
  },
  {
    "input": "input : list = [-2, 5, 3, 3]\noutput : list = [3]",
    "output": "generated_output : list = add_n(take(drop(take(sub_n([-2, 5, 3, 3],1),20),3),4),1)",
    "io_inp": [
      -2,
      5,
      3,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(take(drop(take(sub_n(input,1),20),3),4),1)"
  },
  {
    "input": "input : list = [-2, 0, -3, -4]\noutput : list = [2, 0, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(sort_asc([-2, 0, -3, -4]),-5),4)),-3)",
    "io_inp": [
      -2,
      0,
      -3,
      -4
    ],
    "io_out": [
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(sort_asc(input),-5),4)),-3)"
  },
  {
    "input": "input : list = [-2, -2, 5]\noutput : list = [2, -5, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(reverse([-2, -2, 5]),1))),-4)",
    "io_inp": [
      -2,
      -2,
      5
    ],
    "io_out": [
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(reverse(input),1))),-4)"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [-2, -4, -3]",
    "output": "generated_output : list = take(reverse([-3, -4, -2]),4)",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [-5, -1, 1, -2, -5, 0]\noutput : list = [5, -10, -25, -40, -85, -85]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(add_n(mul_n([-5, -1, 1, -2, -5, 0],-5),3)),-3),1)",
    "io_inp": [
      -5,
      -1,
      1,
      -2,
      -5,
      0
    ],
    "io_out": [
      5,
      -10,
      -25,
      -40,
      -85,
      -85
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(add_n(mul_n(input,-5),3)),-3),1)"
  },
  {
    "input": "input : list = [2, -3, -2, 5, -1]\noutput : list = [-15, -10, -5, 10, 25]",
    "output": "generated_output : list = take(reverse(mul_n(take(sort_des([2, -3, -2, 5, -1]),22),5)),39)",
    "io_inp": [
      2,
      -3,
      -2,
      5,
      -1
    ],
    "io_out": [
      -15,
      -10,
      -5,
      10,
      25
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(sort_des(input),22),5)),39)"
  },
  {
    "input": "input : list = [-2, -3, -3]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(take([-2, -3, -3],1),-5)",
    "io_inp": [
      -2,
      -3,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [4, 0, 1, -1]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(take(take(take([4, 0, 1, -1],1),19),26),-3)",
    "io_inp": [
      4,
      0,
      1,
      -1
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(input,1),19),26),-3)"
  },
  {
    "input": "input : list = [-2, -2, 0]\noutput : list = [-1, 9, 9]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(mul_n([-2, -2, 0],-5),8)),2),3)",
    "io_inp": [
      -2,
      -2,
      0
    ],
    "io_out": [
      -1,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(mul_n(input,-5),8)),2),3)"
  },
  {
    "input": "input : list = [4, 2, 5, -5, 0]\noutput : list = [-4, 0, -6, 14, 4]",
    "output": "generated_output : list = mul_n(sub_n([4, 2, 5, -5, 0],2),-2)",
    "io_inp": [
      4,
      2,
      5,
      -5,
      0
    ],
    "io_out": [
      -4,
      0,
      -6,
      14,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),-2)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([0, -2, 4]))",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 1, 3, -3, -3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take([5, 1, 3, -3, -3],1),2),-1),-4)",
    "io_inp": [
      5,
      1,
      3,
      -3,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(input,1),2),-1),-4)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sub_n([1, 4],5))),-2))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sub_n(input,5))),-2))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(add_n([0, -2],5),-5))))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(add_n(input,5),-5))))"
  },
  {
    "input": "input : list = [2, -4, 1, 4]\noutput : list = [-4, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sort_asc([2, -4, 1, 4])),19),23))",
    "io_inp": [
      2,
      -4,
      1,
      4
    ],
    "io_out": [
      -4,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sort_asc(input)),19),23))"
  },
  {
    "input": "input : list = [-1, -2, -4, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take([-1, -2, -4, -3],1))",
    "io_inp": [
      -1,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [5, -3, -1, -5, -2]\noutput : list = [-42]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(take([5, -3, -1, -5, -2],1),3),-3),-5),2)",
    "io_inp": [
      5,
      -3,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -42
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(take(input,1),3),-3),-5),2)"
  },
  {
    "input": "input : list = [-3, 4, 1, 5, -5, -2]\noutput : list = [-2, -5, 5, 1, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, 1, 5, -5, -2])",
    "io_inp": [
      -3,
      4,
      1,
      5,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5,
      5,
      1,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, -1, 0]\noutput : list = [4, 2, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(sub_n([1, 3, -1, 0],1),4),6)),-2)",
    "io_inp": [
      1,
      3,
      -1,
      0
    ],
    "io_out": [
      4,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(sub_n(input,1),4),6)),-2)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [0, -7]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des([-2, 5]),1),2)),5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des(input),1),2)),5)"
  },
  {
    "input": "input : list = [1, -3, -2, 0, -4, 3]\noutput : list = [-24, -21, -18, -12, -9, -3]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n([1, -3, -2, 0, -4, 3],4))),3)",
    "io_inp": [
      1,
      -3,
      -2,
      0,
      -4,
      3
    ],
    "io_out": [
      -24,
      -21,
      -18,
      -12,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(input,4))),3)"
  },
  {
    "input": "input : list = [5, 0, 5, -2, 1, 1]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(drop([5, 0, 5, -2, 1, 1],3)),16)))",
    "io_inp": [
      5,
      0,
      5,
      -2,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(drop(input,3)),16)))"
  },
  {
    "input": "input : list = [-5, -4, -4, -5]\noutput : list = [0, 3, 3, 0]",
    "output": "generated_output : list = mul_n(sub_n(add_n([-5, -4, -4, -5],2),-3),3)",
    "io_inp": [
      -5,
      -4,
      -4,
      -5
    ],
    "io_out": [
      0,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,2),-3),3)"
  },
  {
    "input": "input : list = [4, -2, 0, -3]\noutput : list = [-3, -2, 0, 4]",
    "output": "generated_output : list = sort_asc([4, -2, 0, -3])",
    "io_inp": [
      4,
      -2,
      0,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 0, -3, 1]\noutput : list = [-1, 1, -2, 2]",
    "output": "generated_output : list = take(add_n([-2, 0, -3, 1],1),10)",
    "io_inp": [
      -2,
      0,
      -3,
      1
    ],
    "io_out": [
      -1,
      1,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),10)"
  },
  {
    "input": "input : list = [3, -5, -3, 0, -1]\noutput : list = [-1, 0, -3, -5, 3]",
    "output": "generated_output : list = add_n(sub_n(add_n(add_n(reverse([3, -5, -3, 0, -1]),-3),3),1),1)",
    "io_inp": [
      3,
      -5,
      -3,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      -3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(add_n(reverse(input),-3),3),1),1)"
  },
  {
    "input": "input : list = [1, -2, 2, -2, -3, -2]\noutput : list = [-3, -2, -2, -2, 1, 2]",
    "output": "generated_output : list = sort_asc([1, -2, 2, -2, -3, -2])",
    "io_inp": [
      1,
      -2,
      2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [9, -7]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(add_n([-3, 5],-2),-2),24)),-1)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(add_n(input,-2),-2),24)),-1)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [120, 168, 168]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(add_n([3, 5, 5],2),-4),3)),-2)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      120,
      168,
      168
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(add_n(input,2),-4),3)),-2)"
  },
  {
    "input": "input : list = [2, -1, -1, 5]\noutput : list = [1, -2, -5, -5]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(sort_des([2, -1, -1, 5]),3),1)),49)",
    "io_inp": [
      2,
      -1,
      -1,
      5
    ],
    "io_out": [
      1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(sort_des(input),3),1)),49)"
  },
  {
    "input": "input : list = [0, 2, 2, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sub_n(take(sub_n([0, 2, 2, 0],-1),2),2)",
    "io_inp": [
      0,
      2,
      2,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,-1),2),2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(reverse([1, 0]),11)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),11)"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [-1, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -5, -1])",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, -5, 1]\noutput : list = [-3, -9, -7, -8]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(reverse([-4, -3, -5, 1]),7))),4)",
    "io_inp": [
      -4,
      -3,
      -5,
      1
    ],
    "io_out": [
      -3,
      -9,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(reverse(input),7))),4)"
  },
  {
    "input": "input : list = [3, 4, -5, 1, 1, -4]\noutput : list = [5, -4, 2, 2, -3]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(drop([3, 4, -5, 1, 1, -4],1)),21)),-1)",
    "io_inp": [
      3,
      4,
      -5,
      1,
      1,
      -4
    ],
    "io_out": [
      5,
      -4,
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(drop(input,1)),21)),-1)"
  },
  {
    "input": "input : list = [4, 3, -2, -1, 3, 0]\noutput : list = [-16, -8, 0, 24, 24, 32]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(mul_n([4, 3, -2, -1, 3, 0],-2))),-4))",
    "io_inp": [
      4,
      3,
      -2,
      -1,
      3,
      0
    ],
    "io_out": [
      -16,
      -8,
      0,
      24,
      24,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(mul_n(input,-2))),-4))"
  },
  {
    "input": "input : list = [2, -3, -3, 4, 4, -3]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(mul_n(drop(take(take([2, -3, -3, 4, 4, -3],3),4),2),5))",
    "io_inp": [
      2,
      -3,
      -3,
      4,
      4,
      -3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(take(take(input,3),4),2),5))"
  },
  {
    "input": "input : list = [-1, -1, -3, 4]\noutput : list = [0, 0, 4, -10]",
    "output": "generated_output : list = mul_n(sub_n([-1, -1, -3, 4],-1),-2)",
    "io_inp": [
      -1,
      -1,
      -3,
      4
    ],
    "io_out": [
      0,
      0,
      4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-2)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [9]",
    "output": "generated_output : list = take(add_n(take(mul_n(sort_des([-2, 5]),2),1),-1),3)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sort_des(input),2),1),-1),3)"
  },
  {
    "input": "input : list = [-1, 2, 1, 5, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop(sort_des(sort_asc([-1, 2, 1, 5, 1])),3)",
    "io_inp": [
      -1,
      2,
      1,
      5,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [3, -1, 2, 5, -1]\noutput : list = [5, 3, 2, -1, -1]",
    "output": "generated_output : list = sort_des([3, -1, 2, 5, -1])",
    "io_inp": [
      3,
      -1,
      2,
      5,
      -1
    ],
    "io_out": [
      5,
      3,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, 3, -5, 4]\noutput : list = [-20, -16, 12, 12, 16]",
    "output": "generated_output : list = mul_n(sort_asc([3, -4, 3, -5, 4]),4)",
    "io_inp": [
      3,
      -4,
      3,
      -5,
      4
    ],
    "io_out": [
      -20,
      -16,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-4, -5, 5, 1, 0, -4]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(take([-4, -5, 5, 1, 0, -4],1),3)),-1))",
    "io_inp": [
      -4,
      -5,
      5,
      1,
      0,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(take(input,1),3)),-1))"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sub_n(sort_asc(drop([-3, -1, -2],1)),4)",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,1)),4)"
  },
  {
    "input": "input : list = [1, 1, -3, -2, -2]\noutput : list = [16, 13, 13, 4, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(add_n([1, 1, -3, -2, -2],-2),-3)),3),-4)",
    "io_inp": [
      1,
      1,
      -3,
      -2,
      -2
    ],
    "io_out": [
      16,
      13,
      13,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(add_n(input,-2),-3)),3),-4)"
  },
  {
    "input": "input : list = [2, -4, 0, 3, 0, 1]\noutput : list = [-2, -3, -4, -5, -5, -9]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sub_n([2, -4, 0, 3, 0, 1],2),1),2),1))",
    "io_inp": [
      2,
      -4,
      0,
      3,
      0,
      1
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sub_n(input,2),1),2),1))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-12, 8]",
    "output": "generated_output : list = mul_n(add_n(sub_n([-4, 1],2),3),4)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,2),3),4)"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [4, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(drop([-1, 5, 3],1),-4)),-5),2)",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(drop(input,1),-4)),-5),2)"
  },
  {
    "input": "input : list = [-2, -2, -4, 2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(take(add_n(add_n(take([-2, -2, -4, 2],2),4),-4),29),-2)",
    "io_inp": [
      -2,
      -2,
      -4,
      2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(take(input,2),4),-4),29),-2)"
  },
  {
    "input": "input : list = [1, -1, -3, 5, 0, -4]\noutput : list = [-7, -6, -4, -3, -2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(add_n([1, -1, -3, 5, 0, -4],-3),28),25)))",
    "io_inp": [
      1,
      -1,
      -3,
      5,
      0,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(add_n(input,-3),28),25)))"
  },
  {
    "input": "input : list = [1, -1, 2, 3, 2]\noutput : list = [0, 2, 3, 3, 4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc([1, -1, 2, 3, 2]),12)),-1),1)",
    "io_inp": [
      1,
      -1,
      2,
      3,
      2
    ],
    "io_out": [
      0,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc(input),12)),-1),1)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-4, -10]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(add_n([2, -1],-3),-1),10)),2)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(add_n(input,-3),-1),10)),2)"
  },
  {
    "input": "input : list = [-1, 0, 4]\noutput : list = [0, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des([-1, 0, 4]),4)))",
    "io_inp": [
      -1,
      0,
      4
    ],
    "io_out": [
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(input),4)))"
  },
  {
    "input": "input : list = [0, 4, 1, 1]\noutput : list = [-35, -20, -20, -15]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n([0, 4, 1, 1],2))),-1),-5)",
    "io_inp": [
      0,
      4,
      1,
      1
    ],
    "io_out": [
      -35,
      -20,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n(input,2))),-1),-5)"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [-6, -5, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n([-4, -3, 1],2),6))",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,2),6))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-4, -6]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse([3, 5]),-1),-1))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(input),-1),-1))"
  },
  {
    "input": "input : list = [2, 1, 2, -2, -5, 5]\noutput : list = [5, -5, -2, 2, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, 2, -2, -5, 5])",
    "io_inp": [
      2,
      1,
      2,
      -2,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      -2,
      2,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, -4, -3, -4]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(take(add_n([1, 2, -4, -3, -4],-1),2))",
    "io_inp": [
      1,
      2,
      -4,
      -3,
      -4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,-1),2))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-20, 0]",
    "output": "generated_output : list = sort_asc(take(mul_n([-5, 0],4),9))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,4),9))"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [0, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, 0])",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-25, 10]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(sort_des([3, -4]),5),-1)),5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(sort_des(input),5),-1)),5)"
  },
  {
    "input": "input : list = [5, -2, -4, -1, 5]\noutput : list = [5, 5, -1, -2, -4]",
    "output": "generated_output : list = sort_des([5, -2, -4, -1, 5])",
    "io_inp": [
      5,
      -2,
      -4,
      -1,
      5
    ],
    "io_out": [
      5,
      5,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, 0, 3, 0, -2]\noutput : list = [10, 5]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take([4, -1, 0, 3, 0, -2],2),-3),3))",
    "io_inp": [
      4,
      -1,
      0,
      3,
      0,
      -2
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(input,2),-3),3))"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [0, 1, 1]",
    "output": "generated_output : list = sub_n([-3, -2, -2],-3)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-8, -20]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(sort_des([-1, 5])),-5),28),-2)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(sort_des(input)),-5),28),-2)"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(take([1, 5, -5],1),-2),3),-2))",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(take(input,1),-2),3),-2))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [9, 8]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(sort_des([3, 4]),5)),1),34)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(sort_des(input),5)),1),34)"
  },
  {
    "input": "input : list = [-5, 3, 3, -3, 3, -1]\noutput : list = [12, 12, 12, 28, 36, 44]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(add_n([-5, 3, 3, -3, 3, -1],-4)),-2),23),-4)",
    "io_inp": [
      -5,
      3,
      3,
      -3,
      3,
      -1
    ],
    "io_out": [
      12,
      12,
      12,
      28,
      36,
      44
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(add_n(input,-4)),-2),23),-4)"
  },
  {
    "input": "input : list = [-4, 4, -3, 5]\noutput : list = [32]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(add_n(take([-4, 4, -3, 5],1),-3),-5)),3)",
    "io_inp": [
      -4,
      4,
      -3,
      5
    ],
    "io_out": [
      32
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(add_n(take(input,1),-3),-5)),3)"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [3, 8, 9]",
    "output": "generated_output : list = sort_asc(sub_n([4, 3, -2],-5))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      3,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 2, 4, 2, 2]\noutput : list = [-8, -3, -3, -3, -1]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n([-3, 2, 4, 2, 2],-5)),1),1))",
    "io_inp": [
      -3,
      2,
      4,
      2,
      2
    ],
    "io_out": [
      -8,
      -3,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n(input,-5)),1),1))"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [-24, 16, 16]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_asc([2, 2, -3])),-4),-2),35)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      -24,
      16,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_asc(input)),-4),-2),35)"
  },
  {
    "input": "input : list = [-3, 3, 3, -3]\noutput : list = [-3, -3, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse([-3, 3, 3, -3]))",
    "io_inp": [
      -3,
      3,
      3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, 3, 2, 2, -3]\noutput : list = [2, 4, 3, 3, -2]",
    "output": "generated_output : list = sub_n([1, 3, 2, 2, -3],-1)",
    "io_inp": [
      1,
      3,
      2,
      2,
      -3
    ],
    "io_out": [
      2,
      4,
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-1, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([-5, 5]),4))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [30, 5]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(add_n([-1, 4],-4),15),-5),-2),-3)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      30,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(add_n(input,-4),15),-5),-2),-3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-4, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-1, 3])),4)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = sort_des([3, 4, -5])",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, -4, -1]\noutput : list = [-10]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sub_n([-4, 5, -4, -1],2),1),-4),33))",
    "io_inp": [
      -4,
      5,
      -4,
      -1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sub_n(input,2),1),-4),33))"
  },
  {
    "input": "input : list = [4, 0, -2, 4, 0, -2]\noutput : list = [-14, -2, 4, -14, -2, 4]",
    "output": "generated_output : list = add_n(sub_n(reverse(reverse(mul_n([4, 0, -2, 4, 0, -2],-3))),5),3)",
    "io_inp": [
      4,
      0,
      -2,
      4,
      0,
      -2
    ],
    "io_out": [
      -14,
      -2,
      4,
      -14,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(reverse(mul_n(input,-3))),5),3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [4, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(reverse([-4, 2])),-5),3))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(reverse(input)),-5),3))"
  },
  {
    "input": "input : list = [1, -4, -5, 3]\noutput : list = [-10, -8, 2, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([1, -4, -5, 3]),2))",
    "io_inp": [
      1,
      -4,
      -5,
      3
    ],
    "io_out": [
      -10,
      -8,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [3, 0, -5, 5, 0, -5]\noutput : list = [-38, -28, -13, -13, 12, 12]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sub_n([3, 0, -5, 5, 0, -5],-2),-5))),3)",
    "io_inp": [
      3,
      0,
      -5,
      5,
      0,
      -5
    ],
    "io_out": [
      -38,
      -28,
      -13,
      -13,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sub_n(input,-2),-5))),3)"
  },
  {
    "input": "input : list = [3, 3, -4, 3, -4]\noutput : list = [6, -1, 6, 6]",
    "output": "generated_output : list = sub_n(drop(add_n(sub_n(reverse([3, 3, -4, 3, -4]),-4),3),1),4)",
    "io_inp": [
      3,
      3,
      -4,
      3,
      -4
    ],
    "io_out": [
      6,
      -1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(sub_n(reverse(input),-4),3),1),4)"
  },
  {
    "input": "input : list = [-3, 2, 0, -3, 3, -1]\noutput : list = [-7, -7, -5, -4, -2, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(sub_n([-3, 2, 0, -3, 3, -1],3))),1),44)",
    "io_inp": [
      -3,
      2,
      0,
      -3,
      3,
      -1
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(sub_n(input,3))),1),44)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-4, 16]",
    "output": "generated_output : list = mul_n([-1, 4],4)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [-4, -1, 4]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(reverse([-4, 4, -1])),23)))",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(reverse(input)),23)))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, -5, 0, 0]\noutput : list = [3, 3, 8, 4, -2]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse([5, -1, -5, 0, 0]),-1),21),-3)",
    "io_inp": [
      5,
      -1,
      -5,
      0,
      0
    ],
    "io_out": [
      3,
      3,
      8,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(input),-1),21),-3)"
  },
  {
    "input": "input : list = [-5, -4, 5, 4]\noutput : list = [9, 8, 0, -1]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_des([-5, -4, 5, 4]),-4)),37),38)",
    "io_inp": [
      -5,
      -4,
      5,
      4
    ],
    "io_out": [
      9,
      8,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_des(input),-4)),37),38)"
  },
  {
    "input": "input : list = [-4, 1, -5, 0]\noutput : list = [42, 34, 2, -6]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(mul_n([-4, 1, -5, 0],-2)),4),29),-2)",
    "io_inp": [
      -4,
      1,
      -5,
      0
    ],
    "io_out": [
      42,
      34,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(mul_n(input,-2)),4),29),-2)"
  },
  {
    "input": "input : list = [4, -4, 2, 0]\noutput : list = [5, 3, 1, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(reverse([4, -4, 2, 0]),-1))))",
    "io_inp": [
      4,
      -4,
      2,
      0
    ],
    "io_out": [
      5,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [4, -5, -1, -4]\noutput : list = [-15, 30, 10, 25]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(add_n([4, -5, -1, -4],-1),-5),-2),2),40)",
    "io_inp": [
      4,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -15,
      30,
      10,
      25
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(add_n(input,-1),-5),-2),2),40)"
  },
  {
    "input": "input : list = [-1, 0, -5, -4]\noutput : list = [2, 3, 6, 7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_des([-1, 0, -5, -4]),3),1),-5))",
    "io_inp": [
      -1,
      0,
      -5,
      -4
    ],
    "io_out": [
      2,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_des(input),3),1),-5))"
  },
  {
    "input": "input : list = [4, 0, -2]\noutput : list = [8, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(drop([4, 0, -2],1),-4))))",
    "io_inp": [
      4,
      0,
      -2
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(drop(input,1),-4))))"
  },
  {
    "input": "input : list = [-3, 2, -5, -3, 4]\noutput : list = [-17, 11]",
    "output": "generated_output : list = sub_n(mul_n(drop([-3, 2, -5, -3, 4],3),4),5)",
    "io_inp": [
      -3,
      2,
      -5,
      -3,
      4
    ],
    "io_out": [
      -17,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,3),4),5)"
  },
  {
    "input": "input : list = [5, 5, 1, -5, 3, 1]\noutput : list = [16, 16, 8, -4, 12, 8]",
    "output": "generated_output : list = mul_n(sub_n([5, 5, 1, -5, 3, 1],-3),2)",
    "io_inp": [
      5,
      5,
      1,
      -5,
      3,
      1
    ],
    "io_out": [
      16,
      16,
      8,
      -4,
      12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [7, 6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_asc([1, 0])),-2),5),1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_asc(input)),-2),5),1)"
  },
  {
    "input": "input : list = [-2, 5, -1, -5, 3, 1]\noutput : list = [-30, 0, 10, 30, 50, 70]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n([-2, 5, -1, -5, 3, 1],2)),5),2))",
    "io_inp": [
      -2,
      5,
      -1,
      -5,
      3,
      1
    ],
    "io_out": [
      -30,
      0,
      10,
      30,
      50,
      70
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n(input,2)),5),2))"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [-3, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(reverse([-4, 4, 4]),-2),-3),2))",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(reverse(input),-2),-3),2))"
  },
  {
    "input": "input : list = [2, -3, -2, 2, 4]\noutput : list = [-8, 12, 8, -8, -16]",
    "output": "generated_output : list = mul_n([2, -3, -2, 2, 4],-4)",
    "io_inp": [
      2,
      -3,
      -2,
      2,
      4
    ],
    "io_out": [
      -8,
      12,
      8,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, -2, 1, -4, 4, -2]\noutput : list = [-3, -1, -1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(reverse([2, -2, 1, -4, 4, -2]))),1))",
    "io_inp": [
      2,
      -2,
      1,
      -4,
      4,
      -2
    ],
    "io_out": [
      -3,
      -1,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [2, -3, 0, -4]\noutput : list = [7, 5, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n([2, -3, 0, -4],-5))",
    "io_inp": [
      2,
      -3,
      0,
      -4
    ],
    "io_out": [
      7,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-5, 0, 1, 1, -1, -5]\noutput : list = [63, 27, 9, 9, 18, 63]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(sub_n([-5, 0, 1, 1, -1, -5],2)),31),3),-3)",
    "io_inp": [
      -5,
      0,
      1,
      1,
      -1,
      -5
    ],
    "io_out": [
      63,
      27,
      9,
      9,
      18,
      63
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(sub_n(input,2)),31),3),-3)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [28, -44]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(mul_n([-3, 3],-3),-4),-4),-2),4)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      28,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(mul_n(input,-3),-4),-4),-2),4)"
  },
  {
    "input": "input : list = [1, -5, -3]\noutput : list = [-15, -7, 9]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n([1, -5, -3],4)),-1),-4))",
    "io_inp": [
      1,
      -5,
      -3
    ],
    "io_out": [
      -15,
      -7,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n(input,4)),-1),-4))"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse(drop([-2, -1, 4],1))",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [0, 1, -4, 2]\noutput : list = [2, -4, 1, 0]",
    "output": "generated_output : list = reverse([0, 1, -4, 2])",
    "io_inp": [
      0,
      1,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-1, 1, 7]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(sub_n([4, -2, -4],-4)),1)))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -1,
      1,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(sub_n(input,-4)),1)))"
  },
  {
    "input": "input : list = [5, 3, 2, 3, -3, 1]\noutput : list = [-3, 1, 2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 3, 2, 3, -3, 1]))",
    "io_inp": [
      5,
      3,
      2,
      3,
      -3,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -5, 4, 0]\noutput : list = [27, -81, 162, 162]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(mul_n([-5, -5, 4, 0],-3),-3),3)),3)",
    "io_inp": [
      -5,
      -5,
      4,
      0
    ],
    "io_out": [
      27,
      -81,
      162,
      162
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(mul_n(input,-3),-3),3)),3)"
  },
  {
    "input": "input : list = [2, 2, -3, -3, 3]\noutput : list = [3, 2, 2, -3, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc([2, 2, -3, -3, 3]),24))",
    "io_inp": [
      2,
      2,
      -3,
      -3,
      3
    ],
    "io_out": [
      3,
      2,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),24))"
  },
  {
    "input": "input : list = [-4, 4, 2, -2]\noutput : list = [7, 5, 1, -1]",
    "output": "generated_output : list = sub_n(take(sort_des(take(sort_des([-4, 4, 2, -2]),11)),36),-3)",
    "io_inp": [
      -4,
      4,
      2,
      -2
    ],
    "io_out": [
      7,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(sort_des(input),11)),36),-3)"
  },
  {
    "input": "input : list = [1, 3, -3, 3, -2]\noutput : list = [-24, -16, 8, 24, 24]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(mul_n([1, 3, -3, 3, -2],4)),6),2))",
    "io_inp": [
      1,
      3,
      -3,
      3,
      -2
    ],
    "io_out": [
      -24,
      -16,
      8,
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(mul_n(input,4)),6),2))"
  },
  {
    "input": "input : list = [-3, 5, -2, 3]\noutput : list = [12, 8, -12, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(mul_n([-3, 5, -2, 3],-2)))),2)",
    "io_inp": [
      -3,
      5,
      -2,
      3
    ],
    "io_out": [
      12,
      8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(mul_n(input,-2)))),2)"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [-21, -6, -1]",
    "output": "generated_output : list = add_n(take(sort_asc(mul_n(reverse([-4, -1, 0]),5)),34),-1)",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      -21,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(mul_n(reverse(input),5)),34),-1)"
  },
  {
    "input": "input : list = [1, -3, 2, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(take([1, -3, 2, -3],1),1),15),3))",
    "io_inp": [
      1,
      -3,
      2,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(take(input,1),1),15),3))"
  },
  {
    "input": "input : list = [3, 1, -2, 1]\noutput : list = [3, 1, 1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(sort_des([3, 1, -2, 1]))),23))",
    "io_inp": [
      3,
      1,
      -2,
      1
    ],
    "io_out": [
      3,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(sort_des(input))),23))"
  },
  {
    "input": "input : list = [4, -3, -1, 1]\noutput : list = [-1, -4, -6, -8]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des([4, -3, -1, 1])),-3),-2)",
    "io_inp": [
      4,
      -3,
      -1,
      1
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(input)),-3),-2)"
  },
  {
    "input": "input : list = [-2, 2, -3, -4, 2, -5]\noutput : list = [-4, 4, -6, -8, 4, -10]",
    "output": "generated_output : list = mul_n([-2, 2, -3, -4, 2, -5],2)",
    "io_inp": [
      -2,
      2,
      -3,
      -4,
      2,
      -5
    ],
    "io_out": [
      -4,
      4,
      -6,
      -8,
      4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, 5, 4]\noutput : list = [4]",
    "output": "generated_output : list = add_n(reverse(sub_n(drop(drop([1, 5, 4],1),1),-5)),-5)",
    "io_inp": [
      1,
      5,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(drop(drop(input,1),1),-5)),-5)"
  },
  {
    "input": "input : list = [5, -2, 0, -4, 4, 1]\noutput : list = [6, -1, 1, -3, 5, 2]",
    "output": "generated_output : list = sub_n([5, -2, 0, -4, 4, 1],-1)",
    "io_inp": [
      5,
      -2,
      0,
      -4,
      4,
      1
    ],
    "io_out": [
      6,
      -1,
      1,
      -3,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, 4, 0, -4, -3]\noutput : list = [-11, -9, -3, 5, 5]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(mul_n([4, 4, 0, -4, -3],-2)),-3),-1))",
    "io_inp": [
      4,
      4,
      0,
      -4,
      -3
    ],
    "io_out": [
      -11,
      -9,
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(mul_n(input,-2)),-3),-1))"
  },
  {
    "input": "input : list = [-1, -4, 0, 2, 1]\noutput : list = [-18, -12, -20, -24, -22]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n([-1, -4, 0, 2, 1],3),3),4),-2)",
    "io_inp": [
      -1,
      -4,
      0,
      2,
      1
    ],
    "io_out": [
      -18,
      -12,
      -20,
      -24,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(input,3),3),4),-2)"
  },
  {
    "input": "input : list = [4, 5, -3, 4, -4]\noutput : list = [5, 4, 4, -3, -4]",
    "output": "generated_output : list = take(take(reverse(sort_asc(sort_des([4, 5, -3, 4, -4]))),38),52)",
    "io_inp": [
      4,
      5,
      -3,
      4,
      -4
    ],
    "io_out": [
      5,
      4,
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(sort_des(input))),38),52)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [61, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_asc([-5, 0]),-3),1),4),-3)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      61,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_asc(input),-3),1),4),-3)"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [12, -8, -16]",
    "output": "generated_output : list = mul_n(sort_des(take(reverse(sort_asc([-2, 3, -4])),24)),4)",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      12,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(reverse(sort_asc(input)),24)),4)"
  },
  {
    "input": "input : list = [-4, -3, 3, 3, 2]\noutput : list = [-8, -7, -1, -1, -2]",
    "output": "generated_output : list = take(add_n([-4, -3, 3, 3, 2],-4),17)",
    "io_inp": [
      -4,
      -3,
      3,
      3,
      2
    ],
    "io_out": [
      -8,
      -7,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),17)"
  },
  {
    "input": "input : list = [-1, 2, -2, 5, -3]\noutput : list = [-3, 0, -4, 3, -5]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n([-1, 2, -2, 5, -3],1),-3)))",
    "io_inp": [
      -1,
      2,
      -2,
      5,
      -3
    ],
    "io_out": [
      -3,
      0,
      -4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(input,1),-3)))"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [-10, -10, -3]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n([-5, -5, 2],-5)),25))",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      -10,
      -10,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(input,-5)),25))"
  },
  {
    "input": "input : list = [-5, -5, -3, 0, 0]\noutput : list = [0, -3, -5, -5]",
    "output": "generated_output : list = drop(sort_des(reverse([-5, -5, -3, 0, 0])),1)",
    "io_inp": [
      -5,
      -5,
      -3,
      0,
      0
    ],
    "io_out": [
      0,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [1, 4, -2, 0, 5]\noutput : list = [-5, -3, -2, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(reverse([1, 4, -2, 0, 5]),3))))",
    "io_inp": [
      1,
      4,
      -2,
      0,
      5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(add_n(sort_des([-4, 3]),1),16)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),1),16)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-28, -3]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_asc([5, 0])),-5),-3))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -28,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_asc(input)),-5),-3))"
  },
  {
    "input": "input : list = [3, 0, 2, -5]\noutput : list = [8, 5, -1, -16]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_des([3, 0, 2, -5]),3),-2),3),-2)",
    "io_inp": [
      3,
      0,
      2,
      -5
    ],
    "io_out": [
      8,
      5,
      -1,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_des(input),3),-2),3),-2)"
  },
  {
    "input": "input : list = [3, 3, 0, -1, 2]\noutput : list = [-3, -3, -2, 0, 1]",
    "output": "generated_output : list = reverse(sort_des(mul_n([3, 3, 0, -1, 2],-1)))",
    "io_inp": [
      3,
      3,
      0,
      -1,
      2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [-2, 5, 1, 3, -5]\noutput : list = [5, 3, 1, -5]",
    "output": "generated_output : list = sort_des(take(reverse([-2, 5, 1, 3, -5]),4))",
    "io_inp": [
      -2,
      5,
      1,
      3,
      -5
    ],
    "io_out": [
      5,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),4))"
  },
  {
    "input": "input : list = [1, -1, -3, 3, 1, 3]\noutput : list = [10, 10, 0, 0, -10, -20]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_asc([1, -1, -3, 3, 1, 3]),5),-5)))",
    "io_inp": [
      1,
      -1,
      -3,
      3,
      1,
      3
    ],
    "io_out": [
      10,
      10,
      0,
      0,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_asc(input),5),-5)))"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [8, 7, 3]",
    "output": "generated_output : list = take(sort_des(sub_n(take(add_n([-2, 2, 3],4),13),-1)),19)",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(add_n(input,4),13),-1)),19)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [18]",
    "output": "generated_output : list = mul_n(drop(sort_asc(sort_asc(mul_n([-4, -3],3))),1),-2)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      18
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(sort_asc(mul_n(input,3))),1),-2)"
  },
  {
    "input": "input : list = [-4, 1, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(sub_n(take(take([-4, 1, -3],1),4),1))",
    "io_inp": [
      -4,
      1,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(input,1),4),1))"
  },
  {
    "input": "input : list = [3, -2, 3, -3, -4, 3]\noutput : list = [-20, -15, -10, 15, 15, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sort_asc([3, -2, 3, -3, -4, 3]),5))))",
    "io_inp": [
      3,
      -2,
      3,
      -3,
      -4,
      3
    ],
    "io_out": [
      -20,
      -15,
      -10,
      15,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [-5, -2, 4, 3, -4]\noutput : list = [7, 6, 1, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(sort_asc([-5, -2, 4, 3, -4])),1),-4))",
    "io_inp": [
      -5,
      -2,
      4,
      3,
      -4
    ],
    "io_out": [
      7,
      6,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [-1, -3, -5, -2, 0, 1]\noutput : list = [1, 0, -1, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-1, -3, -5, -2, 0, 1])",
    "io_inp": [
      -1,
      -3,
      -5,
      -2,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [-3, 0, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n([5, -5, -2],-3)),1))",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      -3,
      0,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(input,-3)),1))"
  },
  {
    "input": "input : list = [-3, -3, 4, 1, 5, 0]\noutput : list = [2, -1, -1]",
    "output": "generated_output : list = add_n(reverse(take(take(sort_asc([-3, -3, 4, 1, 5, 0]),3),34)),2)",
    "io_inp": [
      -3,
      -3,
      4,
      1,
      5,
      0
    ],
    "io_out": [
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(sort_asc(input),3),34)),2)"
  },
  {
    "input": "input : list = [4, 5, -2, 4, 0, -2]\noutput : list = [-10, -10, 0, 20, 20, 25]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(mul_n([4, 5, -2, 4, 0, -2],5)))))",
    "io_inp": [
      4,
      5,
      -2,
      4,
      0,
      -2
    ],
    "io_out": [
      -10,
      -10,
      0,
      20,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [10, 6]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(drop([-2, 1, 5],1)),5)))",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(drop(input,1)),5)))"
  },
  {
    "input": "input : list = [2, -5, 3, -4, 0]\noutput : list = [10, 8, 0, -4, -6]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(sort_asc([2, -5, 3, -4, 0])),7)),-2)",
    "io_inp": [
      2,
      -5,
      3,
      -4,
      0
    ],
    "io_out": [
      10,
      8,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(sort_asc(input)),7)),-2)"
  },
  {
    "input": "input : list = [5, -1, 4, 4, 4, 5]\noutput : list = [-40, -40, -32, -32, -32, 8]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(mul_n([5, -1, 4, 4, 4, 5],-4)),27),2))",
    "io_inp": [
      5,
      -1,
      4,
      4,
      4,
      5
    ],
    "io_out": [
      -40,
      -40,
      -32,
      -32,
      -32,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(mul_n(input,-4)),27),2))"
  },
  {
    "input": "input : list = [-3, 3, 3, 4, -5, 1]\noutput : list = [-55, -7, -7, 1, -71, -23]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(sub_n([-3, 3, 3, 4, -5, 1],3),-4),-2),-2),-5)",
    "io_inp": [
      -3,
      3,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      -55,
      -7,
      -7,
      1,
      -71,
      -23
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(sub_n(input,3),-4),-2),-2),-5)"
  },
  {
    "input": "input : list = [-1, -2, -2, -2, 0]\noutput : list = [-8, -8, -4]",
    "output": "generated_output : list = mul_n(reverse(take([-1, -2, -2, -2, 0],3)),4)",
    "io_inp": [
      -1,
      -2,
      -2,
      -2,
      0
    ],
    "io_out": [
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,3)),4)"
  },
  {
    "input": "input : list = [-5, -4, 4]\noutput : list = [-11, -10, -2]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(sort_asc([-5, -4, 4])),-1),28),5)",
    "io_inp": [
      -5,
      -4,
      4
    ],
    "io_out": [
      -11,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(sort_asc(input)),-1),28),5)"
  },
  {
    "input": "input : list = [5, 1, 1, 2, -3]\noutput : list = [-3, 1, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(take(sort_asc([5, 1, 1, 2, -3]),11),7)))",
    "io_inp": [
      5,
      1,
      1,
      2,
      -3
    ],
    "io_out": [
      -3,
      1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(sort_asc(input),11),7)))"
  },
  {
    "input": "input : list = [4, -3, 2, -2]\noutput : list = [-80, -30, 70, 95]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(mul_n([4, -3, 2, -2],5),4)),-5),1)",
    "io_inp": [
      4,
      -3,
      2,
      -2
    ],
    "io_out": [
      -80,
      -30,
      70,
      95
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(mul_n(input,5),4)),-5),1)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [14, -6, 14]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([5, -5, 5],-1),-2),-4)",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      14,
      -6,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,-1),-2),-4)"
  },
  {
    "input": "input : list = [-2, 1, -2, 5, -4, 1]\noutput : list = [11, 5, -4, -16]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(drop([-2, 1, -2, 5, -4, 1],2),-3),27)),-1)",
    "io_inp": [
      -2,
      1,
      -2,
      5,
      -4,
      1
    ],
    "io_out": [
      11,
      5,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(drop(input,2),-3),27)),-1)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(reverse(drop(sub_n(reverse([1, -3, -5]),3),2)),3)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(sub_n(reverse(input),3),2)),3)"
  },
  {
    "input": "input : list = [2, 0, -1, -4, -3]\noutput : list = [-16, -14, -10, -8, -4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_des([2, 0, -1, -4, -3])),-4),2))",
    "io_inp": [
      2,
      0,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -16,
      -14,
      -10,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_des(input)),-4),2))"
  },
  {
    "input": "input : list = [0, 3, 4]\noutput : list = [11, 10, 7]",
    "output": "generated_output : list = sub_n(take(take(reverse(add_n([0, 3, 4],2)),4),5),-5)",
    "io_inp": [
      0,
      3,
      4
    ],
    "io_out": [
      11,
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(add_n(input,2)),4),5),-5)"
  },
  {
    "input": "input : list = [-1, 5, 2, -5]\noutput : list = [-3, 1, 4, 7]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(reverse([-1, 5, 2, -5]),2),4)))",
    "io_inp": [
      -1,
      5,
      2,
      -5
    ],
    "io_out": [
      -3,
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(reverse(input),2),4)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-10, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(mul_n([-1, -2],5)))))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [5, 3, -5, -5, -3, 0]\noutput : list = [9, 7, -1, -1, 1, 4]",
    "output": "generated_output : list = sub_n([5, 3, -5, -5, -3, 0],-4)",
    "io_inp": [
      5,
      3,
      -5,
      -5,
      -3,
      0
    ],
    "io_out": [
      9,
      7,
      -1,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -1, 1, 1]\noutput : list = [-7, -4, -2, -2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(sort_des([-4, -1, 1, 1]),13),3)))",
    "io_inp": [
      -4,
      -1,
      1,
      1
    ],
    "io_out": [
      -7,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(sort_des(input),13),3)))"
  },
  {
    "input": "input : list = [4, 5, 4, -4, 4, 1]\noutput : list = [2, 3, 2, -6, 2, -1]",
    "output": "generated_output : list = add_n([4, 5, 4, -4, 4, 1],-2)",
    "io_inp": [
      4,
      5,
      4,
      -4,
      4,
      1
    ],
    "io_out": [
      2,
      3,
      2,
      -6,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, 16]",
    "output": "generated_output : list = mul_n(mul_n([0, -4],-4),1)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),1)"
  },
  {
    "input": "input : list = [-2, 4, -1]\noutput : list = [3, 4, 9]",
    "output": "generated_output : list = add_n(take(sort_asc([-2, 4, -1]),5),5)",
    "io_inp": [
      -2,
      4,
      -1
    ],
    "io_out": [
      3,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),5),5)"
  },
  {
    "input": "input : list = [5, 3, 5, 0]\noutput : list = [0, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(drop([5, 3, 5, 0],2),2)),-4))",
    "io_inp": [
      5,
      3,
      5,
      0
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(drop(input,2),2)),-4))"
  },
  {
    "input": "input : list = [-1, -2, 2, -5]\noutput : list = [-2, -5, -6, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n([-1, -2, 2, -5],-1)),-5))",
    "io_inp": [
      -1,
      -2,
      2,
      -5
    ],
    "io_out": [
      -2,
      -5,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(input,-1)),-5))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [0, 8]",
    "output": "generated_output : list = sub_n([-5, 3],-5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -5, -4, 0]\noutput : list = [0, -9, -12, -15]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(sort_des([-3, -5, -4, 0]))),3))",
    "io_inp": [
      -3,
      -5,
      -4,
      0
    ],
    "io_out": [
      0,
      -9,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(sort_des(input))),3))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, -7]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(add_n([-5, 2],-1),1))))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(add_n(input,-1),1))))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sub_n([-1, -5],1))),8))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sub_n(input,1))),8))"
  },
  {
    "input": "input : list = [-1, 3, 3, -2, 4, 2]\noutput : list = [-45, -20, 55, 80, 80, 105]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(mul_n([-1, 3, 3, -2, 4, 2],-5)),-5)),-5)",
    "io_inp": [
      -1,
      3,
      3,
      -2,
      4,
      2
    ],
    "io_out": [
      -45,
      -20,
      55,
      80,
      80,
      105
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(mul_n(input,-5)),-5)),-5)"
  },
  {
    "input": "input : list = [-5, -3, 0, -3, 2, -2]\noutput : list = [-2, 2, -3, 0, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, 0, -3, 2, -2])",
    "io_inp": [
      -5,
      -3,
      0,
      -3,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -3,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([-2, 4, 0],-1)),-1)",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-1)),-1)"
  },
  {
    "input": "input : list = [-2, 1, 1, -3, -2, -5]\noutput : list = [-1, 2, 2, -2, -1, -4]",
    "output": "generated_output : list = take(take(add_n([-2, 1, 1, -3, -2, -5],1),25),30)",
    "io_inp": [
      -2,
      1,
      1,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -1,
      2,
      2,
      -2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,1),25),30)"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [2, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(add_n([5, 4, 5],-1),3),4)))",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(add_n(input,-1),3),4)))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([4, 1],-1)))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-6, -6]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(add_n([4, 4],-1)),-1),2))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(add_n(input,-1)),-1),2))"
  },
  {
    "input": "input : list = [-5, -1, 4, 4, -2]\noutput : list = [-3, 1, 6, 6, 0]",
    "output": "generated_output : list = add_n(take(add_n([-5, -1, 4, 4, -2],5),20),-3)",
    "io_inp": [
      -5,
      -1,
      4,
      4,
      -2
    ],
    "io_out": [
      -3,
      1,
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,5),20),-3)"
  },
  {
    "input": "input : list = [4, 0, 5, 4, 4, -2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take(sub_n([4, 0, 5, 4, 4, -2],5),2))))",
    "io_inp": [
      4,
      0,
      5,
      4,
      4,
      -2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(sub_n(input,5),2))))"
  },
  {
    "input": "input : list = [0, 4, -5, 5, -2]\noutput : list = [8, 7, 3, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(reverse([0, 4, -5, 5, -2]),-3))))",
    "io_inp": [
      0,
      4,
      -5,
      5,
      -2
    ],
    "io_out": [
      8,
      7,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [0, -4, 0, -1, -3, 3]\noutput : list = [-4, -3, -1, 0, 0, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des([0, -4, 0, -1, -3, 3])),15)",
    "io_inp": [
      0,
      -4,
      0,
      -1,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),15)"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [5, 5, -3]",
    "output": "generated_output : list = sort_des([5, -3, 5])",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = reverse(reverse([-4, -1]))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-2, 3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = take(sort_des(sort_asc([-2, 3, 1])),2)",
    "io_inp": [
      -2,
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-3, 1, 3, -5]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(take([-3, 1, 3, -5],1),17))),-5)",
    "io_inp": [
      -3,
      1,
      3,
      -5
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(take(input,1),17))),-5)"
  },
  {
    "input": "input : list = [-3, 2, -3, -1, 2, 0]\noutput : list = [0, 5, 0, 2, 5, 3]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(sub_n([-3, 2, -3, -1, 2, 0],-1),-5),13),2),1)",
    "io_inp": [
      -3,
      2,
      -3,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      5,
      0,
      2,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(sub_n(input,-1),-5),13),2),1)"
  },
  {
    "input": "input : list = [-3, 5, -2, 3, 0, 1]\noutput : list = [1, 0, 3, -2, 5, -3]",
    "output": "generated_output : list = reverse([-3, 5, -2, 3, 0, 1])",
    "io_inp": [
      -3,
      5,
      -2,
      3,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      3,
      -2,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 2, -3, 0]\noutput : list = [-12, -20, -8, 12, 0]",
    "output": "generated_output : list = mul_n([3, 5, 2, -3, 0],-4)",
    "io_inp": [
      3,
      5,
      2,
      -3,
      0
    ],
    "io_out": [
      -12,
      -20,
      -8,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, -4, 0, 0, 1]\noutput : list = [6, -1, 3, 3, 4]",
    "output": "generated_output : list = add_n(sub_n([3, -4, 0, 0, 1],1),4)",
    "io_inp": [
      3,
      -4,
      0,
      0,
      1
    ],
    "io_out": [
      6,
      -1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),4)"
  },
  {
    "input": "input : list = [1, 1, 4, -5, -3, 4]\noutput : list = [1, 1, 4]",
    "output": "generated_output : list = take([1, 1, 4, -5, -3, 4],3)",
    "io_inp": [
      1,
      1,
      4,
      -5,
      -3,
      4
    ],
    "io_out": [
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, -2, 3, -2, 5]\noutput : list = [9, 7, 7, 2, 2]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(sort_des([3, -2, 3, -2, 5])),33)),-4)",
    "io_inp": [
      3,
      -2,
      3,
      -2,
      5
    ],
    "io_out": [
      9,
      7,
      7,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(sort_des(input)),33)),-4)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [12, 15]",
    "output": "generated_output : list = mul_n(sort_asc([5, 4]),3)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [3, -4, 2, -1, 1]\noutput : list = [4, 2, 5, -1]",
    "output": "generated_output : list = reverse(reverse(take(reverse(sub_n([3, -4, 2, -1, 1],-3)),4)))",
    "io_inp": [
      3,
      -4,
      2,
      -1,
      1
    ],
    "io_out": [
      4,
      2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(sub_n(input,-3)),4)))"
  },
  {
    "input": "input : list = [1, -4, 5, 1, -1]\noutput : list = [-28, -12, -4, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop([1, -4, 5, 1, -1],1),1)),-3),-4)",
    "io_inp": [
      1,
      -4,
      5,
      1,
      -1
    ],
    "io_out": [
      -28,
      -12,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop(input,1),1)),-3),-4)"
  },
  {
    "input": "input : list = [4, -2, -4, 2, -1, 3]\noutput : list = [6, 0, 2, 8]",
    "output": "generated_output : list = sub_n(take(reverse(take(take([4, -2, -4, 2, -1, 3],4),5)),26),-4)",
    "io_inp": [
      4,
      -2,
      -4,
      2,
      -1,
      3
    ],
    "io_out": [
      6,
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(take(input,4),5)),26),-4)"
  },
  {
    "input": "input : list = [5, 0, -5, -4, -2]\noutput : list = [-5, -4, -2, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([5, 0, -5, -4, -2])))",
    "io_inp": [
      5,
      0,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, 1, 2, -5]\noutput : list = [-1, -2, -8, -8]",
    "output": "generated_output : list = add_n(sort_des([-5, 1, 2, -5]),-3)",
    "io_inp": [
      -5,
      1,
      2,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [5, 2, 1, -1, -5, 1]\noutput : list = [-9, 9, -3, -9, -12, -21]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(mul_n([5, 2, 1, -1, -5, 1],-3),4)),1),3)",
    "io_inp": [
      5,
      2,
      1,
      -1,
      -5,
      1
    ],
    "io_out": [
      -9,
      9,
      -3,
      -9,
      -12,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(mul_n(input,-3),4)),1),3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [8, -6]",
    "output": "generated_output : list = mul_n(mul_n(reverse([3, -4]),-2),1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),-2),1)"
  },
  {
    "input": "input : list = [-1, -2, 1, -2, -1, -3]\noutput : list = [1, -1, -1, -2, -2, -3]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc([-1, -2, 1, -2, -1, -3]))))",
    "io_inp": [
      -1,
      -2,
      1,
      -2,
      -1,
      -3
    ],
    "io_out": [
      1,
      -1,
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [5, -2, -5, -1]\noutput : list = [-5, -2, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, -2, -5, -1]))",
    "io_inp": [
      5,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 0, 2, 2, 1]\noutput : list = [-20, -4, 0, 4, 4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(add_n([-4, 0, 2, 2, 1],-1)))),4)",
    "io_inp": [
      -4,
      0,
      2,
      2,
      1
    ],
    "io_out": [
      -20,
      -4,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(add_n(input,-1)))),4)"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [-4, -10, -8]",
    "output": "generated_output : list = sub_n(add_n([4, -2, 0],-3),5)",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      -4,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),5)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, -7]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(add_n([1, 5],-1),-3))),-5)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(add_n(input,-1),-3))),-5)"
  },
  {
    "input": "input : list = [-3, -4, 0, -2]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(reverse(take([-3, -4, 0, -2],1)),-4)",
    "io_inp": [
      -3,
      -4,
      0,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,1)),-4)"
  },
  {
    "input": "input : list = [-1, -3, 4, 2]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(take([-1, -3, 4, 2],2),4))))",
    "io_inp": [
      -1,
      -3,
      4,
      2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(take(input,2),4))))"
  },
  {
    "input": "input : list = [5, 2, -5, 3, -3]\noutput : list = [5, 3, 2, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([5, 2, -5, 3, -3])))",
    "io_inp": [
      5,
      2,
      -5,
      3,
      -3
    ],
    "io_out": [
      5,
      3,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [1, 3, 0, -5]\noutput : list = [-3, 2, 3, 5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_des([1, 3, 0, -5]),-1))),-3)",
    "io_inp": [
      1,
      3,
      0,
      -5
    ],
    "io_out": [
      -3,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_des(input),-1))),-3)"
  },
  {
    "input": "input : list = [-2, -5, -4, 3, 3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = drop([-2, -5, -4, 3, 3, -3],4)",
    "io_inp": [
      -2,
      -5,
      -4,
      3,
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [1, 3, 4, 1, 1]\noutput : list = [17, 12, 2]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(take([1, 3, 4, 1, 1],3),5),-4),1))",
    "io_inp": [
      1,
      3,
      4,
      1,
      1
    ],
    "io_out": [
      17,
      12,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(take(input,3),5),-4),1))"
  },
  {
    "input": "input : list = [-5, 4, -2, 5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(drop([-5, 4, -2, 5, 0],3))",
    "io_inp": [
      -5,
      4,
      -2,
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [5, 1, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([4, -5, 0],-1)))",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [1, 5, 6]",
    "output": "generated_output : list = add_n([-1, 3, 4],2)",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, -2, -5, -5, 1]\noutput : list = [1, 10, 19, 19, 19]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(sub_n([-5, -2, -5, -5, 1],3),-3),5)))",
    "io_inp": [
      -5,
      -2,
      -5,
      -5,
      1
    ],
    "io_out": [
      1,
      10,
      19,
      19,
      19
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(sub_n(input,3),-3),5)))"
  },
  {
    "input": "input : list = [4, 0, 4, -2, 4]\noutput : list = [5, -25, 5, -15, 5]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(add_n([4, 0, 4, -2, 4],1),4)),24),5)",
    "io_inp": [
      4,
      0,
      4,
      -2,
      4
    ],
    "io_out": [
      5,
      -25,
      5,
      -15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(add_n(input,1),4)),24),5)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 4]\noutput : list = [-4, 0, 1, 4, 5]",
    "output": "generated_output : list = take(take(sort_asc(take(mul_n([-5, -4, 0, -1, 4],-1),5)),21),24)",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      4
    ],
    "io_out": [
      -4,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(mul_n(input,-1),5)),21),24)"
  },
  {
    "input": "input : list = [4, -3, -5, 3, 5, 2]\noutput : list = [-31, -27, -23, -19, 1, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(add_n([4, -3, -5, 3, 5, 2],2),-4))),3)",
    "io_inp": [
      4,
      -3,
      -5,
      3,
      5,
      2
    ],
    "io_out": [
      -31,
      -27,
      -23,
      -19,
      1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(add_n(input,2),-4))),3)"
  },
  {
    "input": "input : list = [5, 5, -5, 1]\noutput : list = [-1, -1, -11, -5]",
    "output": "generated_output : list = sub_n(add_n([5, 5, -5, 1],-3),3)",
    "io_inp": [
      5,
      5,
      -5,
      1
    ],
    "io_out": [
      -1,
      -1,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),3)"
  },
  {
    "input": "input : list = [1, 2, -4, 0, 4, 0]\noutput : list = [0, 4, 4, 5, 6, 8]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(sub_n([1, 2, -4, 0, 4, 0],5)),4)),5)",
    "io_inp": [
      1,
      2,
      -4,
      0,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      4,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(sub_n(input,5)),4)),5)"
  },
  {
    "input": "input : list = [-4, 3, 5, 4, -4, 0]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(sort_des(take(take(take([-4, 3, 5, 4, -4, 0],1),25),23)))",
    "io_inp": [
      -4,
      3,
      5,
      4,
      -4,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(take(input,1),25),23)))"
  },
  {
    "input": "input : list = [-5, -5, 3, 3, -5]\noutput : list = [10, -6, -6, 10, 10]",
    "output": "generated_output : list = reverse(mul_n([-5, -5, 3, 3, -5],-2))",
    "io_inp": [
      -5,
      -5,
      3,
      3,
      -5
    ],
    "io_out": [
      10,
      -6,
      -6,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -5, 5, -4, -2, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(sort_asc([-2, -5, 5, -4, -2, -4]),2)",
    "io_inp": [
      -2,
      -5,
      5,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-1, -5, 0, 0, 3, 5]\noutput : list = [-5, 5, 20, 20, 25, 45]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sub_n([-1, -5, 0, 0, 3, 5],-1),5),-5)),7)",
    "io_inp": [
      -1,
      -5,
      0,
      0,
      3,
      5
    ],
    "io_out": [
      -5,
      5,
      20,
      20,
      25,
      45
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sub_n(input,-1),5),-5)),7)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-40, -90]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n([5, 3],-5),4),3)),5)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -40,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n(input,-5),4),3)),5)"
  },
  {
    "input": "input : list = [4, -3, 1, 4, -5, 3]\noutput : list = [-6, -4, 0]",
    "output": "generated_output : list = add_n(take(reverse(take(sort_des([4, -3, 1, 4, -5, 3]),13)),3),-1)",
    "io_inp": [
      4,
      -3,
      1,
      4,
      -5,
      3
    ],
    "io_out": [
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sort_des(input),13)),3),-1)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [0, -8, -9]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(reverse([-4, -3, 5])),-2),3),3)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      0,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(reverse(input)),-2),3),3)"
  },
  {
    "input": "input : list = [1, 2, 1, 3, -2, -5]\noutput : list = [-20, -8, 4, 4, 8, 12]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse([1, 2, 1, 3, -2, -5])),4))",
    "io_inp": [
      1,
      2,
      1,
      3,
      -2,
      -5
    ],
    "io_out": [
      -20,
      -8,
      4,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(input)),4))"
  },
  {
    "input": "input : list = [4, 4, 5, 0, -1, -5]\noutput : list = [-5, -1, 0, 4, 4, 5]",
    "output": "generated_output : list = take(sort_asc([4, 4, 5, 0, -1, -5]),15)",
    "io_inp": [
      4,
      4,
      5,
      0,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [2, -2, 2]\noutput : list = [2, -2, 2]",
    "output": "generated_output : list = reverse([2, -2, 2])",
    "io_inp": [
      2,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, -1, -2, 0]\noutput : list = [-20, -20, -4, 0, -8]",
    "output": "generated_output : list = mul_n(take(add_n([3, 3, -1, -2, 0],2),20),-4)",
    "io_inp": [
      3,
      3,
      -1,
      -2,
      0
    ],
    "io_out": [
      -20,
      -20,
      -4,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,2),20),-4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-12, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(mul_n([-4, 4],-3),15),-1),34))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(mul_n(input,-3),15),-1),34))"
  },
  {
    "input": "input : list = [4, 0, 5, 3, 3]\noutput : list = [7, 3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(take([4, 0, 5, 3, 3],2),3))))",
    "io_inp": [
      4,
      0,
      5,
      3,
      3
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(take(input,2),3))))"
  },
  {
    "input": "input : list = [5, -3, -2, -3]\noutput : list = [0, -7, -8, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(sort_asc([5, -3, -2, -3]),-2),3)),33)",
    "io_inp": [
      5,
      -3,
      -2,
      -3
    ],
    "io_out": [
      0,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(sort_asc(input),-2),3)),33)"
  },
  {
    "input": "input : list = [-3, 1, 3, 0]\noutput : list = [9, 0, -3, -9]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(mul_n([-3, 1, 3, 0],-3)))))",
    "io_inp": [
      -3,
      1,
      3,
      0
    ],
    "io_out": [
      9,
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [-1, 1, -4, -2, 5]\noutput : list = [-26, -20, -35, -29, -8]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n([-1, 1, -4, -2, 5],4),-5),3),4)",
    "io_inp": [
      -1,
      1,
      -4,
      -2,
      5
    ],
    "io_out": [
      -26,
      -20,
      -35,
      -29,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(input,4),-5),3),4)"
  },
  {
    "input": "input : list = [3, -4, 2, -1, 5, 1]\noutput : list = [72, 60, 54, 48, 36, 18]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(add_n([3, -4, 2, -1, 5, 1],2),5),-2)),-3)",
    "io_inp": [
      3,
      -4,
      2,
      -1,
      5,
      1
    ],
    "io_out": [
      72,
      60,
      54,
      48,
      36,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(add_n(input,2),5),-2)),-3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-9, 21]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n(mul_n([-1, 5],-1),1),1),-5),4)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -9,
      21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(mul_n(input,-1),1),1),-5),4)"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [2, 6, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-3, -1, -5],-2)))",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-4, 5, 1, -5, 2, -3]\noutput : list = [-7, 2, -2, -8, -1, -6]",
    "output": "generated_output : list = add_n([-4, 5, 1, -5, 2, -3],-3)",
    "io_inp": [
      -4,
      5,
      1,
      -5,
      2,
      -3
    ],
    "io_out": [
      -7,
      2,
      -2,
      -8,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -5, 2, 2, -2, -2]\noutput : list = [-7, -6, -4, -4, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(add_n([-4, -5, 2, 2, -2, -2],-4)),5)),3)",
    "io_inp": [
      -4,
      -5,
      2,
      2,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(add_n(input,-4)),5)),3)"
  },
  {
    "input": "input : list = [-5, 1, 5, 4]\noutput : list = [-5, 1, 5, 4]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse([-5, 1, 5, 4])),-3),-3)",
    "io_inp": [
      -5,
      1,
      5,
      4
    ],
    "io_out": [
      -5,
      1,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(input)),-3),-3)"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = take(drop([-4, -1, 5],1),8)",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),8)"
  },
  {
    "input": "input : list = [5, -4, 2, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sub_n(drop([5, -4, 2, -1],2),3)",
    "io_inp": [
      5,
      -4,
      2,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [6, -4]",
    "output": "generated_output : list = sub_n(add_n([5, -5],4),3)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),3)"
  },
  {
    "input": "input : list = [3, -1, 1, 2]\noutput : list = [7]",
    "output": "generated_output : list = add_n(take(add_n(take(sort_asc([3, -1, 1, 2]),1),5),34),3)",
    "io_inp": [
      3,
      -1,
      1,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sort_asc(input),1),5),34),3)"
  },
  {
    "input": "input : list = [-3, 5, 0, 1, 0, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(take([-3, 5, 0, 1, 0, -4],1),5)",
    "io_inp": [
      -3,
      5,
      0,
      1,
      0,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),5)"
  },
  {
    "input": "input : list = [3, 2, -5, 4, 2, -1]\noutput : list = [9, 8, 7, 7, 4, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(sort_asc([3, 2, -5, 4, 2, -1]),13),-5)))",
    "io_inp": [
      3,
      2,
      -5,
      4,
      2,
      -1
    ],
    "io_out": [
      9,
      8,
      7,
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(sort_asc(input),13),-5)))"
  },
  {
    "input": "input : list = [0, 3, -4, -1, -1, -3]\noutput : list = [-10, 5, 10, 10, 20, 25]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_asc([0, 3, -4, -1, -1, -3]),5),-1)),5)",
    "io_inp": [
      0,
      3,
      -4,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -10,
      5,
      10,
      10,
      20,
      25
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_asc(input),5),-1)),5)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [0, 8]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(drop([3, 0, -2],1),10),-4),28))",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(drop(input,1),10),-4),28))"
  },
  {
    "input": "input : list = [3, -4, -3, -1, -5, -3]\noutput : list = [8, 4, 2, 2, 1, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(add_n([3, -4, -3, -1, -5, -3],3),16)),-2))",
    "io_inp": [
      3,
      -4,
      -3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      8,
      4,
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(add_n(input,3),16)),-2))"
  },
  {
    "input": "input : list = [-2, 1, -2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_asc([-2, 1, -2]),2)),-4))",
    "io_inp": [
      -2,
      1,
      -2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_asc(input),2)),-4))"
  },
  {
    "input": "input : list = [-1, 2, 2, 3, 3, 3]\noutput : list = [2, 5, 5, 6, 6, 6]",
    "output": "generated_output : list = sub_n([-1, 2, 2, 3, 3, 3],-3)",
    "io_inp": [
      -1,
      2,
      2,
      3,
      3,
      3
    ],
    "io_out": [
      2,
      5,
      5,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 4, 0, -5, 3]\noutput : list = [3, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(take([1, 4, 0, -5, 3],2),-1))),1)",
    "io_inp": [
      1,
      4,
      0,
      -5,
      3
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(take(input,2),-1))),1)"
  },
  {
    "input": "input : list = [3, 5, 0, -2]\noutput : list = [8, 6, 3, 1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(sort_asc([3, 5, 0, -2]),8)),3))",
    "io_inp": [
      3,
      5,
      0,
      -2
    ],
    "io_out": [
      8,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(sort_asc(input),8)),3))"
  },
  {
    "input": "input : list = [-3, 5, -4, -5, -2]\noutput : list = [-5, -4, -3, -2, 5]",
    "output": "generated_output : list = reverse(sort_des([-3, 5, -4, -5, -2]))",
    "io_inp": [
      -3,
      5,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -3, 2, 0, -5, 5]\noutput : list = [30, 20, 15, 5, -5, -20]",
    "output": "generated_output : list = sort_des(mul_n(add_n([-2, -3, 2, 0, -5, 5],-1),-5))",
    "io_inp": [
      -2,
      -3,
      2,
      0,
      -5,
      5
    ],
    "io_out": [
      30,
      20,
      15,
      5,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,-1),-5))"
  },
  {
    "input": "input : list = [-3, -2, -5, 0, -1, -2]\noutput : list = [4, 3, 2, 2, 1, -1]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(add_n([-3, -2, -5, 0, -1, -2],4)),24)))",
    "io_inp": [
      -3,
      -2,
      -5,
      0,
      -1,
      -2
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(add_n(input,4)),24)))"
  },
  {
    "input": "input : list = [-4, -3, 3, -4, -4]\noutput : list = [-8, -14, -15, -15, -15]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(sub_n([-4, -3, 3, -4, -4],3),3)),-5))",
    "io_inp": [
      -4,
      -3,
      3,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -14,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(sub_n(input,3),3)),-5))"
  },
  {
    "input": "input : list = [1, 4, -5, 3, -1, -1]\noutput : list = [-12, 4, 4, 12, 20, 24]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(reverse([1, 4, -5, 3, -1, -1]),4)),3),5)",
    "io_inp": [
      1,
      4,
      -5,
      3,
      -1,
      -1
    ],
    "io_out": [
      -12,
      4,
      4,
      12,
      20,
      24
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(reverse(input),4)),3),5)"
  },
  {
    "input": "input : list = [0, 5, 1, -2]\noutput : list = [5, 10, 6, 3]",
    "output": "generated_output : list = sub_n([0, 5, 1, -2],-5)",
    "io_inp": [
      0,
      5,
      1,
      -2
    ],
    "io_out": [
      5,
      10,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, -5, 2, -5, 2]\noutput : list = [-2, -2, -3, -9, -9]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n([1, -5, 2, -5, 2],-4))))",
    "io_inp": [
      1,
      -5,
      2,
      -5,
      2
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(input,-4))))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [13, 15]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse([3, 1]),-4),-4),4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      13,
      15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(input),-4),-4),4)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [7, 2]",
    "output": "generated_output : list = add_n(take(take(add_n(drop([1, 2, -3],1),1),25),17),4)",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(drop(input,1),1),25),17),4)"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [13, 13, 19]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-5, -3, -3],-3),-4))",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      13,
      13,
      19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-3),-4))"
  },
  {
    "input": "input : list = [4, -5, -4, 1]\noutput : list = [3, 4, 9, 12]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sub_n([4, -5, -4, 1],-5),-5)),2))",
    "io_inp": [
      4,
      -5,
      -4,
      1
    ],
    "io_out": [
      3,
      4,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sub_n(input,-5),-5)),2))"
  },
  {
    "input": "input : list = [-4, 0, 4, -5, 5, -2]\noutput : list = [-7, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(drop([-4, 0, 4, -5, 5, -2],4),-5)),1))",
    "io_inp": [
      -4,
      0,
      4,
      -5,
      5,
      -2
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(drop(input,4),-5)),1))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [8, 0]",
    "output": "generated_output : list = mul_n(add_n([-1, 1],-1),-4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(sort_des([5, -5]))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(sub_n([-4, -3, 1],-1)))),30)",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(sub_n(input,-1)))),30)"
  },
  {
    "input": "input : list = [-5, -3, -5, -1, 3, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(take([-5, -3, -5, -1, 3, 1],2),-5),1),-5),-5)",
    "io_inp": [
      -5,
      -3,
      -5,
      -1,
      3,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(take(input,2),-5),1),-5),-5)"
  },
  {
    "input": "input : list = [-4, 3, 0, -3, 1, -2]\noutput : list = [3, 1, 0, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 3, 0, -3, 1, -2])",
    "io_inp": [
      -4,
      3,
      0,
      -3,
      1,
      -2
    ],
    "io_out": [
      3,
      1,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -4, -2, -1, 2]\noutput : list = [-16, -12, -12, -10, -10, -4]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(add_n([-2, -1, -4, -2, -1, 2],-3),1)),2),49)",
    "io_inp": [
      -2,
      -1,
      -4,
      -2,
      -1,
      2
    ],
    "io_out": [
      -16,
      -12,
      -12,
      -10,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(add_n(input,-3),1)),2),49)"
  },
  {
    "input": "input : list = [5, 5, -1, 4]\noutput : list = [9, 9, 8, 3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des([5, 5, -1, 4]),4))))",
    "io_inp": [
      5,
      5,
      -1,
      4
    ],
    "io_out": [
      9,
      9,
      8,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-5, -5, 0, 3, 1, -5]\noutput : list = [-7, -9, -10, -15, -15, -15]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(add_n([-5, -5, 0, 3, 1, -5],-1)),-3),-1),-5)",
    "io_inp": [
      -5,
      -5,
      0,
      3,
      1,
      -5
    ],
    "io_out": [
      -7,
      -9,
      -10,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(add_n(input,-1)),-3),-1),-5)"
  },
  {
    "input": "input : list = [-5, -4, -4, 4]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(take([-5, -4, -4, 4],1))),4),-3)",
    "io_inp": [
      -5,
      -4,
      -4,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(take(input,1))),4),-3)"
  },
  {
    "input": "input : list = [5, -2, 5, -2, -3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse(mul_n(take(take(reverse([5, -2, 5, -2, -3, -2]),19),2),1))",
    "io_inp": [
      5,
      -2,
      5,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(reverse(input),19),2),1))"
  },
  {
    "input": "input : list = [0, -4, -4, -2, -5]\noutput : list = [12, 10, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(drop([0, -4, -4, -2, -5],2),1)),-2)",
    "io_inp": [
      0,
      -4,
      -4,
      -2,
      -5
    ],
    "io_out": [
      12,
      10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(drop(input,2),1)),-2)"
  },
  {
    "input": "input : list = [4, 3, -2, -5, 3, 1]\noutput : list = [-29, -24, -24, -14, 1, 16]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(add_n([4, 3, -2, -5, 3, 1],2),-5),1)))",
    "io_inp": [
      4,
      3,
      -2,
      -5,
      3,
      1
    ],
    "io_out": [
      -29,
      -24,
      -24,
      -14,
      1,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(add_n(input,2),-5),1)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-4, 6]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(sub_n([-5, 0],2)),4),2),-2)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(sub_n(input,2)),4),2),-2)"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [2, 27, -3]",
    "output": "generated_output : list = add_n(take(mul_n([0, -5, 1],-5),17),2)",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      2,
      27,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,-5),17),2)"
  },
  {
    "input": "input : list = [0, -2, -5, 0, 5]\noutput : list = [4, -1, -1, -3, -6]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(sub_n([0, -2, -5, 0, 5],2))),1))",
    "io_inp": [
      0,
      -2,
      -5,
      0,
      5
    ],
    "io_out": [
      4,
      -1,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(sub_n(input,2))),1))"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([2, -3, -3],4),-5))",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,4),-5))"
  },
  {
    "input": "input : list = [-5, 2, -4, 2]\noutput : list = [56, 48, 0, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(sub_n([-5, 2, -4, 2],2),4),26),-2))",
    "io_inp": [
      -5,
      2,
      -4,
      2
    ],
    "io_out": [
      56,
      48,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(sub_n(input,2),4),26),-2))"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [-17, -1, 11]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_des([1, -3, 4]),-2),4)),3)",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      -17,
      -1,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_des(input),-2),4)),3)"
  },
  {
    "input": "input : list = [4, 3, -1, 0, 2, -5]\noutput : list = [9, 8]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(take([4, 3, -1, 0, 2, -5],2)),15),-5))",
    "io_inp": [
      4,
      3,
      -1,
      0,
      2,
      -5
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(take(input,2)),15),-5))"
  },
  {
    "input": "input : list = [-2, 0, 1, 1]\noutput : list = [-4, -4, -5, -7]",
    "output": "generated_output : list = add_n(sort_des([-2, 0, 1, 1]),-5)",
    "io_inp": [
      -2,
      0,
      1,
      1
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [0, 0, 1, 3, -1, -3]\noutput : list = [5, 7, 8, 8, 9, 11]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n([0, 0, 1, 3, -1, -3],-4),4)))",
    "io_inp": [
      0,
      0,
      1,
      3,
      -1,
      -3
    ],
    "io_out": [
      5,
      7,
      8,
      8,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(input,-4),4)))"
  },
  {
    "input": "input : list = [0, 1, -3, -4, 1]\noutput : list = [-1, 0, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(take(sub_n([0, 1, -3, -4, 1],-3),15))",
    "io_inp": [
      0,
      1,
      -3,
      -4,
      1
    ],
    "io_out": [
      -1,
      0,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,-3),15))"
  },
  {
    "input": "input : list = [3, -5, -4, -5, 5]\noutput : list = [6, -18, -15]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(take([3, -5, -4, -5, 5],3),-1)),3))",
    "io_inp": [
      3,
      -5,
      -4,
      -5,
      5
    ],
    "io_out": [
      6,
      -18,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(take(input,3),-1)),3))"
  },
  {
    "input": "input : list = [0, 1, 1, 0]\noutput : list = [5, 5, 4, 4]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(add_n([0, 1, 1, 0],4)))),40)",
    "io_inp": [
      0,
      1,
      1,
      0
    ],
    "io_out": [
      5,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(add_n(input,4)))),40)"
  },
  {
    "input": "input : list = [-3, 1, -3, -1, -1, 1]\noutput : list = [4, 6]",
    "output": "generated_output : list = add_n(take(drop([-3, 1, -3, -1, -1, 1],4),21),5)",
    "io_inp": [
      -3,
      1,
      -3,
      -1,
      -1,
      1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,4),21),5)"
  },
  {
    "input": "input : list = [0, 2, 3, 5]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(sub_n(drop(sort_des(mul_n([0, 2, 3, 5],5)),3),-5))",
    "io_inp": [
      0,
      2,
      3,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(sort_des(mul_n(input,5)),3),-5))"
  },
  {
    "input": "input : list = [5, -3, 2]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = take(sort_asc([5, -3, 2]),15)",
    "io_inp": [
      5,
      -3,
      2
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [-4, -5, -4]\noutput : list = [-5, -4, -4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(reverse([-4, -5, -4])))))",
    "io_inp": [
      -4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, 1, -5, 3]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(add_n(sub_n(drop(mul_n([-2, 1, -5, 3],-3),3),-1),1),-4)",
    "io_inp": [
      -2,
      1,
      -5,
      3
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(drop(mul_n(input,-3),3),-1),1),-4)"
  },
  {
    "input": "input : list = [-4, 1, -5, 3, 5, -5]\noutput : list = [-18, -18, -13, 12, 22, 32]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(reverse([-4, 1, -5, 3, 5, -5])),5),5),-2)",
    "io_inp": [
      -4,
      1,
      -5,
      3,
      5,
      -5
    ],
    "io_out": [
      -18,
      -18,
      -13,
      12,
      22,
      32
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(reverse(input)),5),5),-2)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [8, 7]",
    "output": "generated_output : list = take(add_n(take(add_n(sub_n([0, -1],-5),-1),9),4),23)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(sub_n(input,-5),-1),9),4),23)"
  },
  {
    "input": "input : list = [1, -5, 4, 1]\noutput : list = [-14, -11, -20, -14]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(sub_n([1, -5, 4, 1],5),4),-3),3))",
    "io_inp": [
      1,
      -5,
      4,
      1
    ],
    "io_out": [
      -14,
      -11,
      -20,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(sub_n(input,5),4),-3),3))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sort_asc([-1, 0]))),1),-2)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sort_asc(input))),1),-2)"
  },
  {
    "input": "input : list = [2, 4, -2]\noutput : list = [-6, 6, 12]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(reverse(mul_n([2, 4, -2],3)))))",
    "io_inp": [
      2,
      4,
      -2
    ],
    "io_out": [
      -6,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(reverse(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [5, 4, 1, 5, -5]\noutput : list = [4, 3, 0, 4, -6]",
    "output": "generated_output : list = sub_n([5, 4, 1, 5, -5],1)",
    "io_inp": [
      5,
      4,
      1,
      5,
      -5
    ],
    "io_out": [
      4,
      3,
      0,
      4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [8, -8, -20]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(mul_n([-5, -2, 2],4)),4)),-4)",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      8,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(mul_n(input,4)),4)),-4)"
  },
  {
    "input": "input : list = [2, -2, 2]\noutput : list = [-6, -10, -6]",
    "output": "generated_output : list = sub_n(add_n([2, -2, 2],-5),3)",
    "io_inp": [
      2,
      -2,
      2
    ],
    "io_out": [
      -6,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),3)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-1, 0]",
    "output": "generated_output : list = add_n([4, 5],-5)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [3, -1, 0, -3, 5]\noutput : list = [1, -7, -4, -5, -1]",
    "output": "generated_output : list = sub_n(sub_n(take(take(reverse([3, -1, 0, -3, 5]),20),24),5),-1)",
    "io_inp": [
      3,
      -1,
      0,
      -3,
      5
    ],
    "io_out": [
      1,
      -7,
      -4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(reverse(input),20),24),5),-1)"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [-1, 3, 3]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(add_n([4, 0, 4],-1))),36),16)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(add_n(input,-1))),36),16)"
  },
  {
    "input": "input : list = [4, 5, -3, -1, -3]\noutput : list = [27, 22, -3, -13, -13]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des([4, 5, -3, -1, -3])),5),-2)",
    "io_inp": [
      4,
      5,
      -3,
      -1,
      -3
    ],
    "io_out": [
      27,
      22,
      -3,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(input)),5),-2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(sub_n([0, -4],-4),12)),18),-3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(sub_n(input,-4),12)),18),-3)"
  },
  {
    "input": "input : list = [-4, 0, -2, 1, 4]\noutput : list = [-10, -1, 2, 8, 14]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(add_n([-4, 0, -2, 1, 4],1))),-3),-5)",
    "io_inp": [
      -4,
      0,
      -2,
      1,
      4
    ],
    "io_out": [
      -10,
      -1,
      2,
      8,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(add_n(input,1))),-3),-5)"
  },
  {
    "input": "input : list = [-1, -4, 4, 2]\noutput : list = [4, 2, -1]",
    "output": "generated_output : list = take(sort_des([-1, -4, 4, 2]),3)",
    "io_inp": [
      -1,
      -4,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),3)"
  },
  {
    "input": "input : list = [0, -1, -3, -2, -3]\noutput : list = [-3, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc([0, -1, -3, -2, -3])",
    "io_inp": [
      0,
      -1,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(drop(sub_n([0, 4],-5),1))),1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(drop(sub_n(input,-5),1))),1)"
  },
  {
    "input": "input : list = [-1, -2, -4, -3, 1, -3]\noutput : list = [1, -1, -2, -3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(sort_des([-1, -2, -4, -3, 1, -3])))))",
    "io_inp": [
      -1,
      -2,
      -4,
      -3,
      1,
      -3
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, 1, -5]\noutput : list = [-2, 4, 0]",
    "output": "generated_output : list = reverse(sub_n([-3, 1, -5],-3))",
    "io_inp": [
      -3,
      1,
      -5
    ],
    "io_out": [
      -2,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [3, 1, -2, 1, 5]\noutput : list = [-2, 1, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 1, -2, 1, 5])",
    "io_inp": [
      3,
      1,
      -2,
      1,
      5
    ],
    "io_out": [
      -2,
      1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, 5, 1, -2, 1]\noutput : list = [-30, -30, -25, -10, -10, 5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(sort_des([5, 4, 5, 1, -2, 1]),5)),-1),-5)",
    "io_inp": [
      5,
      4,
      5,
      1,
      -2,
      1
    ],
    "io_out": [
      -30,
      -30,
      -25,
      -10,
      -10,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(sort_des(input),5)),-1),-5)"
  },
  {
    "input": "input : list = [0, -1, -3, 1]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = sort_des(drop([0, -1, -3, 1],1))",
    "io_inp": [
      0,
      -1,
      -3,
      1
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [20, 16, -4]",
    "output": "generated_output : list = mul_n(sub_n(add_n([2, 1, -4],5),2),4)",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      20,
      16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,5),2),4)"
  },
  {
    "input": "input : list = [3, 5, 1, -4, 2]\noutput : list = [-1, -3, -4, -5, -10]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(add_n([3, 5, 1, -4, 2],-2),4))))",
    "io_inp": [
      3,
      5,
      1,
      -4,
      2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(add_n(input,-2),4))))"
  },
  {
    "input": "input : list = [-5, 0, 4, -3, -4]\noutput : list = [-4, -3, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(drop([-5, 0, 4, -3, -4],1)),33)))",
    "io_inp": [
      -5,
      0,
      4,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(drop(input,1)),33)))"
  },
  {
    "input": "input : list = [-5, 2, 1, 4, 0]\noutput : list = [18, 15, 9]",
    "output": "generated_output : list = drop(sort_des(mul_n(add_n(add_n([-5, 2, 1, 4, 0],-4),-3),-3)),2)",
    "io_inp": [
      -5,
      2,
      1,
      4,
      0
    ],
    "io_out": [
      18,
      15,
      9
    ],
    "output_masked": "generated_output : list = drop(sort_des(mul_n(add_n(add_n(input,-4),-3),-3)),2)"
  },
  {
    "input": "input : list = [-5, 2, -1]\noutput : list = [-4, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-5, 2, -1])),-1)",
    "io_inp": [
      -5,
      2,
      -1
    ],
    "io_out": [
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [17, 13]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(add_n([1, 5],3),-3),4)),-2)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      17,
      13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(add_n(input,3),-3),4)),-2)"
  },
  {
    "input": "input : list = [-5, 0, -5, 5, -3, -2]\noutput : list = [90, 0, 72, 63]",
    "output": "generated_output : list = mul_n(drop(mul_n(add_n(drop([-5, 0, -5, 5, -3, -2],1),-5),3),1),-3)",
    "io_inp": [
      -5,
      0,
      -5,
      5,
      -3,
      -2
    ],
    "io_out": [
      90,
      0,
      72,
      63
    ],
    "output_masked": "generated_output : list = mul_n(drop(mul_n(add_n(drop(input,1),-5),3),1),-3)"
  },
  {
    "input": "input : list = [3, 5, 0, 0, 3]\noutput : list = [3, 3, -6, -6, -12]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_des([3, 5, 0, 0, 3]),1)),-3),6)",
    "io_inp": [
      3,
      5,
      0,
      0,
      3
    ],
    "io_out": [
      3,
      3,
      -6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_des(input),1)),-3),6)"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(drop(sort_asc([-3, 5, 0]),1))))",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(drop(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-5, -2, -2]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = sub_n([-5, -2, -2],-3)",
    "io_inp": [
      -5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 4, -1, -2]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(take([-1, 4, -1, -2],1),4)),2),1)",
    "io_inp": [
      -1,
      4,
      -1,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(take(input,1),4)),2),1)"
  },
  {
    "input": "input : list = [-3, 4, 2, 4, 3, 5]\noutput : list = [25, 20, 20, 15, 10, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc([-3, 4, 2, 4, 3, 5]),5)))",
    "io_inp": [
      -3,
      4,
      2,
      4,
      3,
      5
    ],
    "io_out": [
      25,
      20,
      20,
      15,
      10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [-2, 2, -4, -2]\noutput : list = [5, 1, 1, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(reverse([-2, 2, -4, -2])))),3)",
    "io_inp": [
      -2,
      2,
      -4,
      -2
    ],
    "io_out": [
      5,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(reverse(input)))),3)"
  },
  {
    "input": "input : list = [5, 4, 1, -2, 0]\noutput : list = [12, 3, 0, -6]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([5, 4, 1, -2, 0],1),13),3)))",
    "io_inp": [
      5,
      4,
      1,
      -2,
      0
    ],
    "io_out": [
      12,
      3,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,1),13),3)))"
  },
  {
    "input": "input : list = [-5, 1, -2, -5, 3, 5]\noutput : list = [30, 20, 10, -5, -20, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_asc([-5, 1, -2, -5, 3, 5]),-2)),1),5)",
    "io_inp": [
      -5,
      1,
      -2,
      -5,
      3,
      5
    ],
    "io_out": [
      30,
      20,
      10,
      -5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_asc(input),-2)),1),5)"
  },
  {
    "input": "input : list = [0, -1, -4, 5]\noutput : list = [0, 3, 4, 9]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(reverse([0, -1, -4, 5])),-4)))",
    "io_inp": [
      0,
      -1,
      -4,
      5
    ],
    "io_out": [
      0,
      3,
      4,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [0, -1, 3, -3]\noutput : list = [-4, -2, -1, 2]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(sort_asc([0, -1, 3, -3]),2),-4),19),5)",
    "io_inp": [
      0,
      -1,
      3,
      -3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(sort_asc(input),2),-4),19),5)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [-2, -3, -7]",
    "output": "generated_output : list = sub_n(take(sort_des([1, 2, -3]),6),4)",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),6),4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des([5, 3])",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -2, 5, -3]\noutput : list = [-3, -2, 5, 5]",
    "output": "generated_output : list = sort_asc([5, -2, 5, -3])",
    "io_inp": [
      5,
      -2,
      5,
      -3
    ],
    "io_out": [
      -3,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, -5, -4, -5]\noutput : list = [-7, -10, -11, -11]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(drop([-3, -1, -5, -4, -5],1),3),1)),-3)",
    "io_inp": [
      -3,
      -1,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -10,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(drop(input,1),3),1)),-3)"
  },
  {
    "input": "input : list = [-4, -3, -1, -2]\noutput : list = [120, 100, 140, 160]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(reverse([-4, -3, -1, -2]),-5),5),5),-4)",
    "io_inp": [
      -4,
      -3,
      -1,
      -2
    ],
    "io_out": [
      120,
      100,
      140,
      160
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(reverse(input),-5),5),5),-4)"
  },
  {
    "input": "input : list = [5, 3, -1, -4, 1]\noutput : list = [2, 7]",
    "output": "generated_output : list = reverse(sort_des(sub_n(drop(add_n([5, 3, -1, -4, 1],4),3),-2)))",
    "io_inp": [
      5,
      3,
      -1,
      -4,
      1
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(drop(add_n(input,4),3),-2)))"
  },
  {
    "input": "input : list = [-5, 3, 4, -3, 0, 4]\noutput : list = [12, 12, 9, 0, -9, -15]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(sort_des([-5, 3, 4, -3, 0, 4]),18))),3)",
    "io_inp": [
      -5,
      3,
      4,
      -3,
      0,
      4
    ],
    "io_out": [
      12,
      12,
      9,
      0,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(sort_des(input),18))),3)"
  },
  {
    "input": "input : list = [2, 5, -2, 1, 0]\noutput : list = [10, 25, -10, 5, 0]",
    "output": "generated_output : list = mul_n([2, 5, -2, 1, 0],5)",
    "io_inp": [
      2,
      5,
      -2,
      1,
      0
    ],
    "io_out": [
      10,
      25,
      -10,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [13, 13, 8]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(add_n([3, 3, -2],5),5),15)))",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      13,
      13,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(add_n(input,5),5),15)))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [3, 0]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(sub_n([-5, -2],-2),-3))),11)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(sub_n(input,-2),-3))),11)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [-5, -1, 3]",
    "output": "generated_output : list = sort_asc([-5, -1, 3])",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, 1, 1]\noutput : list = [5, 1, 1, -5]",
    "output": "generated_output : list = sort_des(reverse([5, -5, 1, 1]))",
    "io_inp": [
      5,
      -5,
      1,
      1
    ],
    "io_out": [
      5,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, -1, -5, 0, 1, 0]\noutput : list = [0, 1, 0, -5, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, -5, 0, 1, 0])",
    "io_inp": [
      3,
      -1,
      -5,
      0,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      0,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4, -3, -2, -5]\noutput : list = [4, -3, -4]",
    "output": "generated_output : list = take(sort_des(take([-4, 4, -3, -2, -5],3)),25)",
    "io_inp": [
      -4,
      4,
      -3,
      -2,
      -5
    ],
    "io_out": [
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(input,3)),25)"
  },
  {
    "input": "input : list = [-1, 2, -1, 3]\noutput : list = [6, 5, 2, 2]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(sort_asc([-1, 2, -1, 3]),-3))))",
    "io_inp": [
      -1,
      2,
      -1,
      3
    ],
    "io_out": [
      6,
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [-4, 2, -2, 0, 0, -3]\noutput : list = [14, 10, 10, 6, 4, 2]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(add_n([-4, 2, -2, 0, 0, -3],5),2)),15))",
    "io_inp": [
      -4,
      2,
      -2,
      0,
      0,
      -3
    ],
    "io_out": [
      14,
      10,
      10,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(add_n(input,5),2)),15))"
  },
  {
    "input": "input : list = [0, 3, 1, 3, -1]\noutput : list = [13, 13, 5, 1, -3]",
    "output": "generated_output : list = take(sort_des(add_n(take(mul_n([0, 3, 1, 3, -1],4),8),1)),5)",
    "io_inp": [
      0,
      3,
      1,
      3,
      -1
    ],
    "io_out": [
      13,
      13,
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(mul_n(input,4),8),1)),5)"
  },
  {
    "input": "input : list = [-1, 1, -5, 5]\noutput : list = [-5, 1, 5]",
    "output": "generated_output : list = take(take(reverse(sort_des(drop([-1, 1, -5, 5],1))),36),6)",
    "io_inp": [
      -1,
      1,
      -5,
      5
    ],
    "io_out": [
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(drop(input,1))),36),6)"
  },
  {
    "input": "input : list = [4, -3, -1, -5]\noutput : list = [-23, -15, -7, 13]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n([4, -3, -1, -5],4),-2),-5))",
    "io_inp": [
      4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -23,
      -15,
      -7,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(input,4),-2),-5))"
  },
  {
    "input": "input : list = [2, 3, -2, 2]\noutput : list = [5, -11, 9]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(drop([2, 3, -2, 2],1),4)),2),5)",
    "io_inp": [
      2,
      3,
      -2,
      2
    ],
    "io_out": [
      5,
      -11,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(drop(input,1),4)),2),5)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [6, 6, -9]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(reverse([1, -4, 1])),3)),3)",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      6,
      6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(reverse(input)),3)),3)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(add_n(add_n([3, 2],3),-1))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,3),-1))"
  },
  {
    "input": "input : list = [4, -4, 1, 1, -2, 2]\noutput : list = [4, -4]",
    "output": "generated_output : list = take([4, -4, 1, 1, -2, 2],2)",
    "io_inp": [
      4,
      -4,
      1,
      1,
      -2,
      2
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [9, -9, -9]",
    "output": "generated_output : list = mul_n(add_n(take(add_n([-1, 5, 5],-1),16),-1),-3)",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(input,-1),16),-1),-3)"
  },
  {
    "input": "input : list = [-3, 1, -2, -3, 4, 2]\noutput : list = [9, -3, 6, 9, -12, -6]",
    "output": "generated_output : list = mul_n([-3, 1, -2, -3, 4, 2],-3)",
    "io_inp": [
      -3,
      1,
      -2,
      -3,
      4,
      2
    ],
    "io_out": [
      9,
      -3,
      6,
      9,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [-1, 2, 4]",
    "output": "generated_output : list = sort_asc([4, -1, 2])",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -4, -2, 0, 2]\noutput : list = [19]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(take([3, -4, -2, 0, 2],1),-3),4)),-5)",
    "io_inp": [
      3,
      -4,
      -2,
      0,
      2
    ],
    "io_out": [
      19
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(take(input,1),-3),4)),-5)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des([0, -2])))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(drop([4, -3, 5],1)),-1),-1),26)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(drop(input,1)),-1),-1),26)"
  },
  {
    "input": "input : list = [0, -5, -4]\noutput : list = [-4, -20, -24]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n([0, -5, -4],4))),4))",
    "io_inp": [
      0,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n(input,4))),4))"
  },
  {
    "input": "input : list = [5, 1, 1, -4, 3, -2]\noutput : list = [9, 5, 5, 0, 7, 2]",
    "output": "generated_output : list = sub_n([5, 1, 1, -4, 3, -2],-4)",
    "io_inp": [
      5,
      1,
      1,
      -4,
      3,
      -2
    ],
    "io_out": [
      9,
      5,
      5,
      0,
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, 5, -4, -3, 5]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(take([0, 5, -4, -3, 5],1),17),-2),2))",
    "io_inp": [
      0,
      5,
      -4,
      -3,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(take(input,1),17),-2),2))"
  },
  {
    "input": "input : list = [5, -5, 5, 2]\noutput : list = [-5, -5, 10, 45]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(sort_des([5, -5, 5, 2])),-4),-5))",
    "io_inp": [
      5,
      -5,
      5,
      2
    ],
    "io_out": [
      -5,
      -5,
      10,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(sort_des(input)),-4),-5))"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [10, -20, -30]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(mul_n([-1, 2, 3],1)),5),-2))",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      10,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(mul_n(input,1)),5),-2))"
  },
  {
    "input": "input : list = [-5, 3, -1, -1, 1, -1]\noutput : list = [-10, 2, 2, -4, 2]",
    "output": "generated_output : list = add_n(add_n(mul_n(drop([-5, 3, -1, -1, 1, -1],1),-3),4),-5)",
    "io_inp": [
      -5,
      3,
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      -10,
      2,
      2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(drop(input,1),-3),4),-5)"
  },
  {
    "input": "input : list = [-1, -5, -4, -2]\noutput : list = [-2, -6, -5, -3]",
    "output": "generated_output : list = sub_n([-1, -5, -4, -2],1)",
    "io_inp": [
      -1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [2, 0, -7]",
    "output": "generated_output : list = add_n(sort_des(reverse([3, -4, 5])),-3)",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      2,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(reverse([4, 3]))),-5))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(reverse(input))),-5))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [14, 4]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(sort_des([-2, 3]),2),-2),17),2)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      14,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(sort_des(input),2),-2),17),2)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-1, -3]",
    "output": "generated_output : list = reverse(add_n([2, 4],-5))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [-3, -4, 1, 3]\noutput : list = [-8, -4, -24, -32]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(sub_n([-3, -4, 1, 3],-3))),-2),-4)",
    "io_inp": [
      -3,
      -4,
      1,
      3
    ],
    "io_out": [
      -8,
      -4,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(sub_n(input,-3))),-2),-4)"
  },
  {
    "input": "input : list = [4, 3, 0, 1, 4]\noutput : list = [-1, 0, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([4, 3, 0, 1, 4]),-1))",
    "io_inp": [
      4,
      3,
      0,
      1,
      4
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [2, 5, 5, 2]\noutput : list = [3, 3, 0, 0]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_asc([2, 5, 5, 2]))),-2))",
    "io_inp": [
      2,
      5,
      5,
      2
    ],
    "io_out": [
      3,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-2, 3, -4, 3]\noutput : list = [-4, -2, 3, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc([-2, 3, -4, 3]))),11)",
    "io_inp": [
      -2,
      3,
      -4,
      3
    ],
    "io_out": [
      -4,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(input))),11)"
  },
  {
    "input": "input : list = [-3, -4, 3, 0, -5]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(drop(sort_des(sub_n(drop([-3, -4, 3, 0, -5],1),3)),3))",
    "io_inp": [
      -3,
      -4,
      3,
      0,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(sub_n(drop(input,1),3)),3))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-6, -3]",
    "output": "generated_output : list = take(add_n(sort_asc([-1, -4]),-2),15)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),-2),15)"
  },
  {
    "input": "input : list = [-5, -5, 1, 2, 4]\noutput : list = [12, 10, 9, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(add_n([-5, -5, 1, 2, 4],5))),1),-4)",
    "io_inp": [
      -5,
      -5,
      1,
      2,
      4
    ],
    "io_out": [
      12,
      10,
      9,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(add_n(input,5))),1),-4)"
  },
  {
    "input": "input : list = [3, -5, 4, 1, -5, 4]\noutput : list = [-9, 0, -3, -9, 0]",
    "output": "generated_output : list = add_n(sub_n(drop([3, -5, 4, 1, -5, 4],1),1),-3)",
    "io_inp": [
      3,
      -5,
      4,
      1,
      -5,
      4
    ],
    "io_out": [
      -9,
      0,
      -3,
      -9,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),1),-3)"
  },
  {
    "input": "input : list = [-4, 4, -2, 1]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(take([-4, 4, -2, 1],1),5),-3)),-2)",
    "io_inp": [
      -4,
      4,
      -2,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(take(input,1),5),-3)),-2)"
  },
  {
    "input": "input : list = [3, 3, -4]\noutput : list = [3, 3, -4]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(sub_n([3, 3, -4],-5)),1),-5))",
    "io_inp": [
      3,
      3,
      -4
    ],
    "io_out": [
      3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(sub_n(input,-5)),1),-5))"
  },
  {
    "input": "input : list = [-4, -1, 4, -2]\noutput : list = [4, -1, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(drop([-4, -1, 4, -2],1)))))",
    "io_inp": [
      -4,
      -1,
      4,
      -2
    ],
    "io_out": [
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [4, -1, -2, 3, -5, -5]\noutput : list = [0, 0, 3, 4, 8, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(sort_des([4, -1, -2, 3, -5, -5]))),-4),1)",
    "io_inp": [
      4,
      -1,
      -2,
      3,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      3,
      4,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(sort_des(input))),-4),1)"
  },
  {
    "input": "input : list = [5, 3, -1, -4, -5, 1]\noutput : list = [45, 27, 9, -9, -36, -45]",
    "output": "generated_output : list = sort_des(reverse(reverse(mul_n(mul_n([5, 3, -1, -4, -5, 1],-3),-3))))",
    "io_inp": [
      5,
      3,
      -1,
      -4,
      -5,
      1
    ],
    "io_out": [
      45,
      27,
      9,
      -9,
      -36,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(mul_n(mul_n(input,-3),-3))))"
  },
  {
    "input": "input : list = [-4, -2, -1, -2]\noutput : list = [-14, -12, -11, -12]",
    "output": "generated_output : list = add_n(add_n(add_n([-4, -2, -1, -2],-4),-1),-5)",
    "io_inp": [
      -4,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -14,
      -12,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-4),-1),-5)"
  },
  {
    "input": "input : list = [-2, 5, -1, 5, -2]\noutput : list = [-1, 6, 0, 6, -1]",
    "output": "generated_output : list = sub_n([-2, 5, -1, 5, -2],-1)",
    "io_inp": [
      -2,
      5,
      -1,
      5,
      -2
    ],
    "io_out": [
      -1,
      6,
      0,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [8, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n([-5, -5],-3))),-1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(input,-3))),-1)"
  },
  {
    "input": "input : list = [-4, 0, 5, 0, 2, -5]\noutput : list = [-5, 2, 0, 5, 0, -4]",
    "output": "generated_output : list = reverse([-4, 0, 5, 0, 2, -5])",
    "io_inp": [
      -4,
      0,
      5,
      0,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      0,
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [-5, -2, 5]",
    "output": "generated_output : list = take(sort_asc([-2, 5, -5]),7)",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      -5,
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = sort_asc([0, 0, -4])",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -1, -2, -5, 2]\noutput : list = [42, -12, 24, 42, 96, -30]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n([-2, 1, -1, -2, -5, 2],-3),-1),-2),-3)",
    "io_inp": [
      -2,
      1,
      -1,
      -2,
      -5,
      2
    ],
    "io_out": [
      42,
      -12,
      24,
      42,
      96,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(input,-3),-1),-2),-3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(take(take(sub_n(sub_n([4, -2],5),-4),21),27))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(sub_n(input,5),-4),21),27))"
  },
  {
    "input": "input : list = [5, 0, 1, 4, -2]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take([5, 0, 1, 4, -2],3),-1)))",
    "io_inp": [
      5,
      0,
      1,
      4,
      -2
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(input,3),-1)))"
  },
  {
    "input": "input : list = [1, 4, -2, 3]\noutput : list = [1, 4]",
    "output": "generated_output : list = take([1, 4, -2, 3],2)",
    "io_inp": [
      1,
      4,
      -2,
      3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -2, -4, 4, 1, 2]\noutput : list = [-4, -2, 1, 2, 3, 4]",
    "output": "generated_output : list = take(take(reverse(sort_des(reverse([3, -2, -4, 4, 1, 2]))),38),16)",
    "io_inp": [
      3,
      -2,
      -4,
      4,
      1,
      2
    ],
    "io_out": [
      -4,
      -2,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(reverse(input))),38),16)"
  },
  {
    "input": "input : list = [0, -4, -2, -4, -1, -3]\noutput : list = [-4, -4, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([0, -4, -2, -4, -1, -3]))",
    "io_inp": [
      0,
      -4,
      -2,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des([1, 5]))),-1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(input))),-1)"
  },
  {
    "input": "input : list = [-3, 3, 3, -1, -2, 2]\noutput : list = [-3, -2, -1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(take(reverse([-3, 3, 3, -1, -2, 2]),19))",
    "io_inp": [
      -3,
      3,
      3,
      -1,
      -2,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),19))"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [20, 20, 28]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des([-1, -1, -5]),-4),-5),-2)",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      20,
      20,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(input),-4),-5),-2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [8, 5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n([1, -2],5)),2))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(input,5)),2))"
  },
  {
    "input": "input : list = [-2, -3, -1, -3, -3, -5]\noutput : list = [-25]",
    "output": "generated_output : list = mul_n(take(take(take(reverse([-2, -3, -1, -3, -3, -5]),6),1),39),5)",
    "io_inp": [
      -2,
      -3,
      -1,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(reverse(input),6),1),39),5)"
  },
  {
    "input": "input : list = [2, 2, -2, -5, 1]\noutput : list = [-10, -4, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse([2, 2, -2, -5, 1])),2))",
    "io_inp": [
      2,
      2,
      -2,
      -5,
      1
    ],
    "io_out": [
      -10,
      -4,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(input)),2))"
  },
  {
    "input": "input : list = [5, -5, -5, -1, -1, 5]\noutput : list = [3, -7, -7, -3, -3, 3]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(reverse([5, -5, -5, -1, -1, 5]),5)),46),-3)",
    "io_inp": [
      5,
      -5,
      -5,
      -1,
      -1,
      5
    ],
    "io_out": [
      3,
      -7,
      -7,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(reverse(input),5)),46),-3)"
  },
  {
    "input": "input : list = [3, 0, 5, 0, 1, 0]\noutput : list = [-6, 0, -10, 0, -2, 0]",
    "output": "generated_output : list = mul_n([3, 0, 5, 0, 1, 0],-2)",
    "io_inp": [
      3,
      0,
      5,
      0,
      1,
      0
    ],
    "io_out": [
      -6,
      0,
      -10,
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, 1, 2, 1]\noutput : list = [22, 14, 14, 6]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n(mul_n([0, 1, 2, 1],4),-3)),38),2)",
    "io_inp": [
      0,
      1,
      2,
      1
    ],
    "io_out": [
      22,
      14,
      14,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(mul_n(input,4),-3)),38),2)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n(sort_asc([-4, -4]),-1)),2),-3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(sort_asc(input),-1)),2),-3)"
  },
  {
    "input": "input : list = [4, -4, 0, 3, 2]\noutput : list = [-8, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(take([4, -4, 0, 3, 2],2)),2),3),1)",
    "io_inp": [
      4,
      -4,
      0,
      3,
      2
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(take(input,2)),2),3),1)"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-5, -9, -11]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(mul_n([-2, -3, 0],2))),4),-1)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -5,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(mul_n(input,2))),4),-1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n([2, -3],1)),-1))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(input,1)),-1))"
  },
  {
    "input": "input : list = [3, 3, 4, 0]\noutput : list = [0, 15, 15, 20]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(reverse([3, 3, 4, 0])),24)),5)",
    "io_inp": [
      3,
      3,
      4,
      0
    ],
    "io_out": [
      0,
      15,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(reverse(input)),24)),5)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [0, -5]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(mul_n([1, 2],1),-1)),1),5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(mul_n(input,1),-1)),1),5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(reverse([3, -1]))))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(sort_des([5, 0])),-1)))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-5, -2, 1, -1]\noutput : list = [-22, -16, -14, -10]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(add_n([-5, -2, 1, -1],-3)),1),-2),2)",
    "io_inp": [
      -5,
      -2,
      1,
      -1
    ],
    "io_out": [
      -22,
      -16,
      -14,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(add_n(input,-3)),1),-2),2)"
  },
  {
    "input": "input : list = [0, -4, 4, 2, -1, -4]\noutput : list = [4, 6, 8, 9, 12, 12]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(mul_n([0, -4, 4, 2, -1, -4],-1),-5),-2),-5))",
    "io_inp": [
      0,
      -4,
      4,
      2,
      -1,
      -4
    ],
    "io_out": [
      4,
      6,
      8,
      9,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(mul_n(input,-1),-5),-2),-5))"
  },
  {
    "input": "input : list = [5, -1, 5]\noutput : list = [7, 7, 1]",
    "output": "generated_output : list = sort_des(sort_des(add_n([5, -1, 5],2)))",
    "io_inp": [
      5,
      -1,
      5
    ],
    "io_out": [
      7,
      7,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,2)))"
  },
  {
    "input": "input : list = [-4, 0, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 0, 4],1)",
    "io_inp": [
      -4,
      0,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -2, -3, 2]\noutput : list = [-3, -5, -3, -13]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(add_n([-3, -2, -3, 2],4),-1),1),2),3)",
    "io_inp": [
      -3,
      -2,
      -3,
      2
    ],
    "io_out": [
      -3,
      -5,
      -3,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(add_n(input,4),-1),1),2),3)"
  },
  {
    "input": "input : list = [1, 3, -4, -2, 1]\noutput : list = [-4, 3, 1]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sub_n([1, 3, -4, -2, 1],4),3),-3),1))",
    "io_inp": [
      1,
      3,
      -4,
      -2,
      1
    ],
    "io_out": [
      -4,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sub_n(input,4),3),-3),1))"
  },
  {
    "input": "input : list = [-5, -2, 0, -4]\noutput : list = [-5, -4, -2, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des([-5, -2, 0, -4]),1))",
    "io_inp": [
      -5,
      -2,
      0,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [7, -9]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(mul_n([4, -4],-2),-1))))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(mul_n(input,-2),-1))))"
  },
  {
    "input": "input : list = [3, 1, 5, -2, 5, 5]\noutput : list = [5, 5, 5, 3, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc([3, 1, 5, -2, 5, 5]))",
    "io_inp": [
      3,
      1,
      5,
      -2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -3, 2, 4]\noutput : list = [2, 6, 7, 9]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_des(add_n([1, -3, 2, 4],-2)),-4),3))",
    "io_inp": [
      1,
      -3,
      2,
      4
    ],
    "io_out": [
      2,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_des(add_n(input,-2)),-4),3))"
  },
  {
    "input": "input : list = [4, -5, 1, -3]\noutput : list = [-3, 1, -5, 4]",
    "output": "generated_output : list = take(reverse([4, -5, 1, -3]),17)",
    "io_inp": [
      4,
      -5,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),17)"
  },
  {
    "input": "input : list = [-4, 2, -2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(drop([-4, 2, -2, 0],2)))),-2)",
    "io_inp": [
      -4,
      2,
      -2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(drop(input,2)))),-2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [6, 5]",
    "output": "generated_output : list = sub_n(add_n([-2, -3],5),-3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [0, 0, -1, 5, -4, -2]\noutput : list = [19, 13, 10, 7, 7, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(mul_n([0, 0, -1, 5, -4, -2],-3),2),-5),37))",
    "io_inp": [
      0,
      0,
      -1,
      5,
      -4,
      -2
    ],
    "io_out": [
      19,
      13,
      10,
      7,
      7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(mul_n(input,-3),2),-5),37))"
  },
  {
    "input": "input : list = [-1, 3, 3, -4]\noutput : list = [-8, -2, 6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-1, 3, 3, -4])),2)",
    "io_inp": [
      -1,
      3,
      3,
      -4
    ],
    "io_out": [
      -8,
      -2,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [0, -2, -4, -4, 5]\noutput : list = [-4, -4, -2, 0, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sort_des([0, -2, -4, -4, 5]),-1)),4),-5)",
    "io_inp": [
      0,
      -2,
      -4,
      -4,
      5
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sort_des(input),-1)),4),-5)"
  },
  {
    "input": "input : list = [-5, -3, 5, -2]\noutput : list = [-3, 5, -2]",
    "output": "generated_output : list = drop([-5, -3, 5, -2],1)",
    "io_inp": [
      -5,
      -3,
      5,
      -2
    ],
    "io_out": [
      -3,
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 3, 2]\noutput : list = [-4, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sort_asc([-2, 3, 2]),2))))",
    "io_inp": [
      -2,
      3,
      2
    ],
    "io_out": [
      -4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [-2, -2, 0, 0, -4, 5]\noutput : list = [-10, -10, 0, 0, -20, 25]",
    "output": "generated_output : list = mul_n([-2, -2, 0, 0, -4, 5],5)",
    "io_inp": [
      -2,
      -2,
      0,
      0,
      -4,
      5
    ],
    "io_out": [
      -10,
      -10,
      0,
      0,
      -20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(mul_n([1, 0],-3),-5),4),21))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(mul_n(input,-3),-5),4),21))"
  },
  {
    "input": "input : list = [2, -5, 2, 2, -5, 1]\noutput : list = [-13, -13, -13, -5, 43, 43]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(mul_n([2, -5, 2, 2, -5, 1],-4)),2),4),1)",
    "io_inp": [
      2,
      -5,
      2,
      2,
      -5,
      1
    ],
    "io_out": [
      -13,
      -13,
      -13,
      -5,
      43,
      43
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(mul_n(input,-4)),2),4),1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(mul_n([0, 3],1)))))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [1, -2, -5, -2, -5]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = take([1, -2, -5, -2, -5],3)",
    "io_inp": [
      1,
      -2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sub_n(add_n([2, -1],5),3)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),3)"
  },
  {
    "input": "input : list = [4, 5, 2, 4]\noutput : list = [35, 45, 45, 50]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(reverse([4, 5, 2, 4]),-5)),25),5)",
    "io_inp": [
      4,
      5,
      2,
      4
    ],
    "io_out": [
      35,
      45,
      45,
      50
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(reverse(input),-5)),25),5)"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([-2, -3, -4])))",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, 5, -5, -3, -4]\noutput : list = [-6, -24, 36, 24]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(add_n([2, 5, -5, -3, -4],-1),-3),2),1),4)",
    "io_inp": [
      2,
      5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -24,
      36,
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(add_n(input,-1),-3),2),1),4)"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [4, 14, 0]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(add_n([-4, 3, -2],4)),-2),8),-1)",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      4,
      14,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(add_n(input,4)),-2),8),-1)"
  },
  {
    "input": "input : list = [3, -3, 3, 2, -3, -2]\noutput : list = [3, -3, 3, 2, -3, -2]",
    "output": "generated_output : list = add_n(add_n([3, -3, 3, 2, -3, -2],-3),3)",
    "io_inp": [
      3,
      -3,
      3,
      2,
      -3,
      -2
    ],
    "io_out": [
      3,
      -3,
      3,
      2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),3)"
  },
  {
    "input": "input : list = [-5, -3, -1, 3]\noutput : list = [3, -1, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, -1, 3])",
    "io_inp": [
      -5,
      -3,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des([0, -5, -1]))",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -5, 2, -4, 4]\noutput : list = [8, 7, 6, 0, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_asc([3, -5, 2, -4, 4]),-4))),41)",
    "io_inp": [
      3,
      -5,
      2,
      -4,
      4
    ],
    "io_out": [
      8,
      7,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_asc(input),-4))),41)"
  },
  {
    "input": "input : list = [-5, 4, 1, -1, 1, 5]\noutput : list = [-25, -5, 5, 20]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(take([-5, 4, 1, -1, 1, 5],4))),5),31)",
    "io_inp": [
      -5,
      4,
      1,
      -1,
      1,
      5
    ],
    "io_out": [
      -25,
      -5,
      5,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(take(input,4))),5),31)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([-3, -3, -1]),2),-3)",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),2),-3)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [1, 6]",
    "output": "generated_output : list = reverse(take(sub_n(take(sub_n([4, -1],-5),5),3),3))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(sub_n(input,-5),5),3),3))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-5, -10]",
    "output": "generated_output : list = take(sort_des(take(sub_n(sub_n([2, -3],5),2),8)),29)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(sub_n(input,5),2),8)),29)"
  },
  {
    "input": "input : list = [0, -4, 2, -5, 4, -3]\noutput : list = [1, -1, -5, -6]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(take([0, -4, 2, -5, 4, -3],4),1)),6))",
    "io_inp": [
      0,
      -4,
      2,
      -5,
      4,
      -3
    ],
    "io_out": [
      1,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(take(input,4),1)),6))"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [2, -8, -14]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(mul_n([0, 3, -5],-2))),-5),-3)",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      2,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(mul_n(input,-2))),-5),-3)"
  },
  {
    "input": "input : list = [-5, 1, 0, -2]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(add_n(take(drop([-5, 1, 0, -2],2),8),-1))",
    "io_inp": [
      -5,
      1,
      0,
      -2
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(drop(input,2),8),-1))"
  },
  {
    "input": "input : list = [-5, -5, 1, 0, -4]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take(take([-5, -5, 1, 0, -4],1),3),-2)",
    "io_inp": [
      -5,
      -5,
      1,
      0,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),3),-2)"
  },
  {
    "input": "input : list = [3, -1, -1]\noutput : list = [-1, -5, -5]",
    "output": "generated_output : list = add_n(mul_n([3, -1, -1],1),-4)",
    "io_inp": [
      3,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),-4)"
  },
  {
    "input": "input : list = [1, 5, 5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(drop([1, 5, 5, 1],2))",
    "io_inp": [
      1,
      5,
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-4, 4, -3, 0, 1]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take(take([-4, 4, -3, 0, 1],2),10)",
    "io_inp": [
      -4,
      4,
      -3,
      0,
      1
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(take(input,2),10)"
  },
  {
    "input": "input : list = [-2, 1, 0, 3, -1]\noutput : list = [4, -4, -8, -12, -16]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(sort_asc([-2, 1, 0, 3, -1]),3),-1),4))",
    "io_inp": [
      -2,
      1,
      0,
      3,
      -1
    ],
    "io_out": [
      4,
      -4,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(sort_asc(input),3),-1),4))"
  },
  {
    "input": "input : list = [-4, -2, -2, -3, -5]\noutput : list = [3, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(take([-4, -2, -2, -3, -5],2)))),-5)",
    "io_inp": [
      -4,
      -2,
      -2,
      -3,
      -5
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(take(input,2)))),-5)"
  },
  {
    "input": "input : list = [-3, -4, -1, -2, 3]\noutput : list = [12, 7]",
    "output": "generated_output : list = add_n(take(add_n(take(reverse([-3, -4, -1, -2, 3]),21),4),2),5)",
    "io_inp": [
      -3,
      -4,
      -1,
      -2,
      3
    ],
    "io_out": [
      12,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(reverse(input),21),4),2),5)"
  },
  {
    "input": "input : list = [-4, -2, 3, 2, 4, 0]\noutput : list = [12, 6, -9, -6, -12, 0]",
    "output": "generated_output : list = mul_n([-4, -2, 3, 2, 4, 0],-3)",
    "io_inp": [
      -4,
      -2,
      3,
      2,
      4,
      0
    ],
    "io_out": [
      12,
      6,
      -9,
      -6,
      -12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -1, 5, -3, -5]\noutput : list = [-1, 0, 1, 3, 9]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sub_n([-4, -1, 5, -3, -5],-4))),17))",
    "io_inp": [
      -4,
      -1,
      5,
      -3,
      -5
    ],
    "io_out": [
      -1,
      0,
      1,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sub_n(input,-4))),17))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [8, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n([-2, 1],-1)),-3)),3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n(input,-1)),-3)),3)"
  },
  {
    "input": "input : list = [-4, -3, 1, 2, -1]\noutput : list = [-5, -6, -8, -10, -11]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(reverse([-4, -3, 1, 2, -1]),6)),-3),4)",
    "io_inp": [
      -4,
      -3,
      1,
      2,
      -1
    ],
    "io_out": [
      -5,
      -6,
      -8,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(reverse(input),6)),-3),4)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-7, -5]",
    "output": "generated_output : list = take(take(reverse(reverse(sub_n([-2, 0],5))),3),2)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(sub_n(input,5))),3),2)"
  },
  {
    "input": "input : list = [0, -5, -5, 1, 0, 5]\noutput : list = [6, 2, 1, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(drop([0, -5, -5, 1, 0, 5],1)),1)))",
    "io_inp": [
      0,
      -5,
      -5,
      1,
      0,
      5
    ],
    "io_out": [
      6,
      2,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(drop(input,1)),1)))"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [2, 3, 0]",
    "output": "generated_output : list = take(add_n([0, 1, -2],2),13)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      2,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),13)"
  },
  {
    "input": "input : list = [-5, 3, -5, -2, -1, -3]\noutput : list = [4, 0, -1, -2, -4, -4]",
    "output": "generated_output : list = reverse(add_n(sort_asc([-5, 3, -5, -2, -1, -3]),1))",
    "io_inp": [
      -5,
      3,
      -5,
      -2,
      -1,
      -3
    ],
    "io_out": [
      4,
      0,
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [5, -3, 0, 3, -5]\noutput : list = [5, 3, 0, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sub_n([5, -3, 0, 3, -5],3)),-4)),1)",
    "io_inp": [
      5,
      -3,
      0,
      3,
      -5
    ],
    "io_out": [
      5,
      3,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sub_n(input,3)),-4)),1)"
  },
  {
    "input": "input : list = [5, 4, -1, 3, -5]\noutput : list = [-2, 2, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([5, 4, -1, 3, -5],-4),1))",
    "io_inp": [
      5,
      4,
      -1,
      3,
      -5
    ],
    "io_out": [
      -2,
      2,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-4),1))"
  },
  {
    "input": "input : list = [5, -4, -1, 2, -4, -2]\noutput : list = [-1, -1, 1, 2, 5, 8]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n([5, -4, -1, 2, -4, -2],-2),7),-5))",
    "io_inp": [
      5,
      -4,
      -1,
      2,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -1,
      1,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(input,-2),7),-5))"
  },
  {
    "input": "input : list = [5, -1, 5, 2, -3, 2]\noutput : list = [25, -5, 25, 10, -15, 10]",
    "output": "generated_output : list = mul_n([5, -1, 5, 2, -3, 2],5)",
    "io_inp": [
      5,
      -1,
      5,
      2,
      -3,
      2
    ],
    "io_out": [
      25,
      -5,
      25,
      10,
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [0, -5, -5, -3, 5]\noutput : list = [6, -9, -9, -3, 21]",
    "output": "generated_output : list = mul_n(add_n([0, -5, -5, -3, 5],2),3)",
    "io_inp": [
      0,
      -5,
      -5,
      -3,
      5
    ],
    "io_out": [
      6,
      -9,
      -9,
      -3,
      21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),3)"
  },
  {
    "input": "input : list = [4, -5, 2, -4]\noutput : list = [-4, 2, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, 2, -4])",
    "io_inp": [
      4,
      -5,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 0, -4, 4]\noutput : list = [-4, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 0, -4, 4])",
    "io_inp": [
      5,
      0,
      -4,
      4
    ],
    "io_out": [
      -4,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-6, -18]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n([5, 2],-4)),1),5),-2)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -6,
      -18
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n(input,-4)),1),5),-2)"
  },
  {
    "input": "input : list = [-2, 4, -1, -3, -1, 1]\noutput : list = [-8, -2, 2, 2, 4, 6]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(reverse([-2, 4, -1, -3, -1, 1])))),-2)",
    "io_inp": [
      -2,
      4,
      -1,
      -3,
      -1,
      1
    ],
    "io_out": [
      -8,
      -2,
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [1, -5, 1, 1, 1]\noutput : list = [-2, -2, -2, -2, 4]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(reverse([1, -5, 1, 1, 1])),-1)),-1)",
    "io_inp": [
      1,
      -5,
      1,
      1,
      1
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(reverse(input)),-1)),-1)"
  },
  {
    "input": "input : list = [0, 0, 5, 2, -3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(take([0, 0, 5, 2, -3],2),-3),19)),-3)",
    "io_inp": [
      0,
      0,
      5,
      2,
      -3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(take(input,2),-3),19)),-3)"
  },
  {
    "input": "input : list = [-1, -1, -2, -4, 5, 0]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(take([-1, -1, -2, -4, 5, 0],2)),-2),4))",
    "io_inp": [
      -1,
      -1,
      -2,
      -4,
      5,
      0
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(take(input,2)),-2),4))"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [2, 3]",
    "output": "generated_output : list = drop([1, 2, 3],1)",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 0, -5, 1]\noutput : list = [-12, -7, -6, -3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_des([4, 0, -5, 1])),5),2))",
    "io_inp": [
      4,
      0,
      -5,
      1
    ],
    "io_out": [
      -12,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_des(input)),5),2))"
  },
  {
    "input": "input : list = [-4, 3, 2, -3]\noutput : list = [-5, -4, 1, 2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des([-4, 3, 2, -3]),1),20))",
    "io_inp": [
      -4,
      3,
      2,
      -3
    ],
    "io_out": [
      -5,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(input),1),20))"
  },
  {
    "input": "input : list = [4, 4, 1, -3, 2, 4]\noutput : list = [110, 110, 110, 70, 50, -30]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_des([4, 4, 1, -3, 2, 4]),2),-3),-2),-5)",
    "io_inp": [
      4,
      4,
      1,
      -3,
      2,
      4
    ],
    "io_out": [
      110,
      110,
      110,
      70,
      50,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_des(input),2),-3),-2),-5)"
  },
  {
    "input": "input : list = [3, -1, 1, -2, 3, -1]\noutput : list = [0, -25, -10, -20, 0]",
    "output": "generated_output : list = mul_n(take(add_n(drop(reverse([3, -1, 1, -2, 3, -1]),1),-3),46),5)",
    "io_inp": [
      3,
      -1,
      1,
      -2,
      3,
      -1
    ],
    "io_out": [
      0,
      -25,
      -10,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(drop(reverse(input),1),-3),46),5)"
  },
  {
    "input": "input : list = [-5, 3, -2, -2, 1, 0]\noutput : list = [7, -9]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(take([-5, 3, -2, -2, 1, 0],2),-2),-1)),-2)",
    "io_inp": [
      -5,
      3,
      -2,
      -2,
      1,
      0
    ],
    "io_out": [
      7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(take(input,2),-2),-1)),-2)"
  },
  {
    "input": "input : list = [-2, 0, 3, 0]\noutput : list = [-4, -12, -24, -12]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(reverse([-2, 0, 3, 0]),3),19)),-4)",
    "io_inp": [
      -2,
      0,
      3,
      0
    ],
    "io_out": [
      -4,
      -12,
      -24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(reverse(input),3),19)),-4)"
  },
  {
    "input": "input : list = [-2, 5, 0, -4]\noutput : list = [-4, 0, 5]",
    "output": "generated_output : list = sort_asc(drop([-2, 5, 0, -4],1))",
    "io_inp": [
      -2,
      5,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -4, 2, 4]\noutput : list = [20, 10, -20, -5]",
    "output": "generated_output : list = mul_n(take(reverse([-1, -4, 2, 4]),11),5)",
    "io_inp": [
      -1,
      -4,
      2,
      4
    ],
    "io_out": [
      20,
      10,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),11),5)"
  },
  {
    "input": "input : list = [-1, 1, -1, -2]\noutput : list = [-7, -6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(drop([-1, 1, -1, -2],2)))),-5)",
    "io_inp": [
      -1,
      1,
      -1,
      -2
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(drop(input,2)))),-5)"
  },
  {
    "input": "input : list = [-1, 1, 0, 0]\noutput : list = [2, 1, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des(reverse([-1, 1, 0, 0])))),1)",
    "io_inp": [
      -1,
      1,
      0,
      0
    ],
    "io_out": [
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(reverse(input)))),1)"
  },
  {
    "input": "input : list = [-4, 4, 4, 1, -1, 2]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(take([-4, 4, 4, 1, -1, 2],2)),-5),-5))",
    "io_inp": [
      -4,
      4,
      4,
      1,
      -1,
      2
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(take(input,2)),-5),-5))"
  },
  {
    "input": "input : list = [-1, -3, 3, -5]\noutput : list = [4, 0, -4, -12]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sub_n([-1, -3, 3, -5],-3)))),-2)",
    "io_inp": [
      -1,
      -3,
      3,
      -5
    ],
    "io_out": [
      4,
      0,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sub_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [-2, -2, -1, 3, -3, 5]\noutput : list = [-2, -1, -1, 0, 4, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(sort_des([-2, -2, -1, 3, -3, 5]),-3)),2))",
    "io_inp": [
      -2,
      -2,
      -1,
      3,
      -3,
      5
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(sort_des(input),-3)),2))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(add_n(sub_n([2, 0],3),3))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,3),3))"
  },
  {
    "input": "input : list = [-3, 3, 2, -5, 1]\noutput : list = [17, 13, 9, -7, -15]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(reverse(mul_n([-3, 3, 2, -5, 1],-2))),-2),5)",
    "io_inp": [
      -3,
      3,
      2,
      -5,
      1
    ],
    "io_out": [
      17,
      13,
      9,
      -7,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(reverse(mul_n(input,-2))),-2),5)"
  },
  {
    "input": "input : list = [-3, 1, -1, -1, -2]\noutput : list = [5, 10, 15, 15, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(reverse([-3, 1, -1, -1, -2]),4)),5))",
    "io_inp": [
      -3,
      1,
      -1,
      -1,
      -2
    ],
    "io_out": [
      5,
      10,
      15,
      15,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(reverse(input),4)),5))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-3, 0]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([1, 4],1)),-4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,1)),-4)"
  },
  {
    "input": "input : list = [-3, 4, 5, -1, 2, 0]\noutput : list = [0, 6, -3, 15, 12]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(reverse([-3, 4, 5, -1, 2, 0])),3)),5)",
    "io_inp": [
      -3,
      4,
      5,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      6,
      -3,
      15,
      12
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(reverse(input)),3)),5)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-197, -53, 187]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(mul_n([4, -1, -4],3),-4),-4),5))",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -197,
      -53,
      187
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(mul_n(input,3),-4),-4),5))"
  },
  {
    "input": "input : list = [2, -5, -1, -1, -5, -3]\noutput : list = [-5, -5, -3, -1, -1, 2]",
    "output": "generated_output : list = take(sort_asc([2, -5, -1, -1, -5, -3]),23)",
    "io_inp": [
      2,
      -5,
      -1,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),23)"
  },
  {
    "input": "input : list = [3, 2, -4]\noutput : list = [-5, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sub_n([3, 2, -4],-2),7))),3)",
    "io_inp": [
      3,
      2,
      -4
    ],
    "io_out": [
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sub_n(input,-2),7))),3)"
  },
  {
    "input": "input : list = [-2, 5, 5, 3]\noutput : list = [60, 25, 25, 35]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n(sub_n([-2, 5, 5, 3],5),5)),-5))",
    "io_inp": [
      -2,
      5,
      5,
      3
    ],
    "io_out": [
      60,
      25,
      25,
      35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(sub_n(input,5),5)),-5))"
  },
  {
    "input": "input : list = [1, 2, -5, -3]\noutput : list = [1]",
    "output": "generated_output : list = take(take(reverse(sort_asc(take([1, 2, -5, -3],1))),7),24)",
    "io_inp": [
      1,
      2,
      -5,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(take(input,1))),7),24)"
  },
  {
    "input": "input : list = [-5, 0, 3, 0, -1, -2]\noutput : list = [-5, -15, -25, -55, -25, 25]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n([-5, 0, 3, 0, -1, -2],-2),5),5))",
    "io_inp": [
      -5,
      0,
      3,
      0,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -15,
      -25,
      -55,
      -25,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(input,-2),5),5))"
  },
  {
    "input": "input : list = [2, 5, 0, -1, 5, -2]\noutput : list = [20, 20, 8, 0, -4, -8]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_des([2, 5, 0, -1, 5, -2]))),1),4)",
    "io_inp": [
      2,
      5,
      0,
      -1,
      5,
      -2
    ],
    "io_out": [
      20,
      20,
      8,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_des(input))),1),4)"
  },
  {
    "input": "input : list = [5, 2, -2, 3, -5]\noutput : list = [-1, 2, 6, 7, 9]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(reverse([5, 2, -2, 3, -5])),3),30),1)",
    "io_inp": [
      5,
      2,
      -2,
      3,
      -5
    ],
    "io_out": [
      -1,
      2,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(reverse(input)),3),30),1)"
  },
  {
    "input": "input : list = [-1, 4, 0, 3]\noutput : list = [-4, -5, -8, -9]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(mul_n([-1, 4, 0, 3],1)),-5),3))",
    "io_inp": [
      -1,
      4,
      0,
      3
    ],
    "io_out": [
      -4,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(mul_n(input,1)),-5),3))"
  },
  {
    "input": "input : list = [-5, -2, -3, 5, 3, -4]\noutput : list = [-8, -5, -6, 2, 0, -7]",
    "output": "generated_output : list = take(add_n(take(add_n(sub_n([-5, -2, -3, 5, 3, -4],5),4),28),-2),17)",
    "io_inp": [
      -5,
      -2,
      -3,
      5,
      3,
      -4
    ],
    "io_out": [
      -8,
      -5,
      -6,
      2,
      0,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(sub_n(input,5),4),28),-2),17)"
  },
  {
    "input": "input : list = [-2, 0, 2, 4, -4]\noutput : list = [6, 4, 2, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n([-2, 0, 2, 4, -4],-2))",
    "io_inp": [
      -2,
      0,
      2,
      4,
      -4
    ],
    "io_out": [
      6,
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-3, 3, 4, 5, 1, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(take([-3, 3, 4, 5, 1, -3],1)),-1)),-2)",
    "io_inp": [
      -3,
      3,
      4,
      5,
      1,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(take(input,1)),-1)),-2)"
  },
  {
    "input": "input : list = [-5, 5, 2, -5]\noutput : list = [-11]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(take([-5, 5, 2, -5],1)),1),3),2)",
    "io_inp": [
      -5,
      5,
      2,
      -5
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(take(input,1)),1),3),2)"
  },
  {
    "input": "input : list = [-5, 5, -4, -1, 2, 0]\noutput : list = [5, 2, 0, -1, -4, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(reverse([-5, 5, -4, -1, 2, 0]))),14))",
    "io_inp": [
      -5,
      5,
      -4,
      -1,
      2,
      0
    ],
    "io_out": [
      5,
      2,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(reverse(input))),14))"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(take([5, -5, -3],1)),5),31))",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(take(input,1)),5),31))"
  },
  {
    "input": "input : list = [4, -5, 1, 4, 3, -1]\noutput : list = [-4, 12, 20, 28, 32, 32]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([4, -5, 1, 4, 3, -1],-4),4))",
    "io_inp": [
      4,
      -5,
      1,
      4,
      3,
      -1
    ],
    "io_out": [
      -4,
      12,
      20,
      28,
      32,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-4),4))"
  },
  {
    "input": "input : list = [-1, 3, 1, -2, 3, 0]\noutput : list = [9, 21, 15, 6, 21, 12]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-1, 3, 1, -2, 3, 0],1),4),3)",
    "io_inp": [
      -1,
      3,
      1,
      -2,
      3,
      0
    ],
    "io_out": [
      9,
      21,
      15,
      6,
      21,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,1),4),3)"
  },
  {
    "input": "input : list = [3, 2, -5, 0]\noutput : list = [-1, -2, -4, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n([3, 2, -5, 0],-4))))",
    "io_inp": [
      3,
      2,
      -5,
      0
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(input,-4))))"
  },
  {
    "input": "input : list = [3, -4, -1, 0, 2, 4]\noutput : list = [0, -7, -4, -3, -1, 1]",
    "output": "generated_output : list = sub_n([3, -4, -1, 0, 2, 4],3)",
    "io_inp": [
      3,
      -4,
      -1,
      0,
      2,
      4
    ],
    "io_out": [
      0,
      -7,
      -4,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, 4, 1, 4, -3, 3]\noutput : list = [14, 14, 11, 5, -7, -10]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_asc([-4, 4, 1, 4, -3, 3]),3),-2)))",
    "io_inp": [
      -4,
      4,
      1,
      4,
      -3,
      3
    ],
    "io_out": [
      14,
      14,
      11,
      5,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_asc(input),3),-2)))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [2]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(reverse([5, 5]),-2)),1),-1)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(reverse(input),-2)),1),-1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sub_n([-4, -2],1)),6)))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sub_n(input,1)),6)))"
  },
  {
    "input": "input : list = [0, 0, 2, -2, -3, 0]\noutput : list = [-2, -5, -4, 0, -2, -2]",
    "output": "generated_output : list = reverse(take(take(add_n(add_n([0, 0, 2, -2, -3, 0],2),-4),26),11))",
    "io_inp": [
      0,
      0,
      2,
      -2,
      -3,
      0
    ],
    "io_out": [
      -2,
      -5,
      -4,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(add_n(input,2),-4),26),11))"
  },
  {
    "input": "input : list = [-1, 5, 2, 5]\noutput : list = [-3, 6, 15, 15]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(reverse([-1, 5, 2, 5])),3)))",
    "io_inp": [
      -1,
      5,
      2,
      5
    ],
    "io_out": [
      -3,
      6,
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(reverse(input)),3)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(sub_n(take(sub_n(sort_des([1, -1]),3),9),-1),39)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(sort_des(input),3),9),-1),39)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-16, -41]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(add_n([2, -3],-5),-2),5),-4),-5)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -16,
      -41
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(add_n(input,-5),-2),5),-4),-5)"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [-20, -12, 16]",
    "output": "generated_output : list = reverse(sort_des(mul_n(add_n(sort_des([2, -5, 4]),1),-4)))",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      -20,
      -12,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(add_n(sort_des(input),1),-4)))"
  },
  {
    "input": "input : list = [-5, 5, 4, -3]\noutput : list = [2, 1, -6, -8]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n([-5, 5, 4, -3],-2)),-5))",
    "io_inp": [
      -5,
      5,
      4,
      -3
    ],
    "io_out": [
      2,
      1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(input,-2)),-5))"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [6, 1, -1]",
    "output": "generated_output : list = add_n(add_n([3, -2, -4],1),2)",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      6,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,1),2)"
  },
  {
    "input": "input : list = [2, -3, 3, 1, -4]\noutput : list = [6, 4, 2, -6, -8]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(mul_n([2, -3, 3, 1, -4],2)))))",
    "io_inp": [
      2,
      -3,
      3,
      1,
      -4
    ],
    "io_out": [
      6,
      4,
      2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [1, 5, -1, 1, -2, -4]\noutput : list = [15, -5, -5, -15, -20, -30]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(reverse([1, 5, -1, 1, -2, -4]),2)),5))",
    "io_inp": [
      1,
      5,
      -1,
      1,
      -2,
      -4
    ],
    "io_out": [
      15,
      -5,
      -5,
      -15,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(reverse(input),2)),5))"
  },
  {
    "input": "input : list = [-4, 2, 2, 0, 0, -3]\noutput : list = [2, 2, 0, 0, -3, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(sort_asc([-4, 2, 2, 0, 0, -3])))),35)",
    "io_inp": [
      -4,
      2,
      2,
      0,
      0,
      -3
    ],
    "io_out": [
      2,
      2,
      0,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(sort_asc(input)))),35)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [1, 2, -1]",
    "output": "generated_output : list = add_n(sub_n([3, 4, 1],1),-1)",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),-1)"
  },
  {
    "input": "input : list = [2, -2, -4, -3, 1]\noutput : list = [-1, -5, -6, -4, 0]",
    "output": "generated_output : list = sub_n(take(add_n(reverse([2, -2, -4, -3, 1]),-3),32),-1)",
    "io_inp": [
      2,
      -2,
      -4,
      -3,
      1
    ],
    "io_out": [
      -1,
      -5,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(input),-3),32),-1)"
  },
  {
    "input": "input : list = [3, -4, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(sub_n(drop([3, -4, 1, -1],2),3),-3)",
    "io_inp": [
      3,
      -4,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,2),3),-3)"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(drop([0, -5, -2],1),-1)),2),5)",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(drop(input,1),-1)),2),5)"
  },
  {
    "input": "input : list = [-3, -3, 0, -1, -3, -2]\noutput : list = [-5, -5, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(sort_des([-3, -3, 0, -1, -3, -2]),2),36),5))",
    "io_inp": [
      -3,
      -3,
      0,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(sort_des(input),2),36),5))"
  },
  {
    "input": "input : list = [4, 0, 5, -5, 0, 2]\noutput : list = [5, 4, 2, 0, 0, -5]",
    "output": "generated_output : list = sort_des([4, 0, 5, -5, 0, 2])",
    "io_inp": [
      4,
      0,
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, -3, 5, 3, 0]\noutput : list = [0, 3, 5, -3, 5, -5]",
    "output": "generated_output : list = reverse([-5, 5, -3, 5, 3, 0])",
    "io_inp": [
      -5,
      5,
      -3,
      5,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      5,
      -3,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, -2, 3, -3, 5]\noutput : list = [-4, -4, -3, -1, 2, 4]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_asc([-3, 0, -2, 3, -3, 5]))),46),-1)",
    "io_inp": [
      -3,
      0,
      -2,
      3,
      -3,
      5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_asc(input))),46),-1)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc([5, -5])",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, 2],1)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -1, 2, -3, 4, 5]\noutput : list = [7, 6, 4, 1, 0, -1]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(sort_asc([-2, -1, 2, -3, 4, 5])),1),-1))",
    "io_inp": [
      -2,
      -1,
      2,
      -3,
      4,
      5
    ],
    "io_out": [
      7,
      6,
      4,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(sort_asc(input)),1),-1))"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take(reverse(take([-1, -5, -1],1)),11))",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(input,1)),11))"
  },
  {
    "input": "input : list = [-4, 0, 3, -2, -2]\noutput : list = [2, 6, 9, 4, 4]",
    "output": "generated_output : list = sub_n(take(sub_n([-4, 0, 3, -2, -2],-2),19),-4)",
    "io_inp": [
      -4,
      0,
      3,
      -2,
      -2
    ],
    "io_out": [
      2,
      6,
      9,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,-2),19),-4)"
  },
  {
    "input": "input : list = [3, -3, -2, 0, 5, 3]\noutput : list = [-1, -3, 2]",
    "output": "generated_output : list = reverse(mul_n(add_n(drop([3, -3, -2, 0, 5, 3],3),-2),-1))",
    "io_inp": [
      3,
      -3,
      -2,
      0,
      5,
      3
    ],
    "io_out": [
      -1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(drop(input,3),-2),-1))"
  },
  {
    "input": "input : list = [2, -4, -4, 3]\noutput : list = [-96, -24]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(take([2, -4, -4, 3],2),-4)),-3),-4)",
    "io_inp": [
      2,
      -4,
      -4,
      3
    ],
    "io_out": [
      -96,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(take(input,2),-4)),-3),-4)"
  },
  {
    "input": "input : list = [0, -2, -5, -4]\noutput : list = [40, 30, 10, -10]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sort_des([0, -2, -5, -4]),5),-5),-2))",
    "io_inp": [
      0,
      -2,
      -5,
      -4
    ],
    "io_out": [
      40,
      30,
      10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sort_des(input),5),-5),-2))"
  },
  {
    "input": "input : list = [5, -1, 3, -3, -3, -1]\noutput : list = [-32, -24, -8, -8, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(add_n([5, -1, 3, -3, -3, -1],3),-4))))",
    "io_inp": [
      5,
      -1,
      3,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -32,
      -24,
      -8,
      -8,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(add_n(input,3),-4))))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-5, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(add_n([1, 3],-2)),-3),3))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(add_n(input,-2)),-3),3))"
  },
  {
    "input": "input : list = [3, -5, -5, 5, -1]\noutput : list = [-44, 20, 20, -60, -12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(mul_n([3, -5, -5, 5, -1],-4),17),5),5),2)",
    "io_inp": [
      3,
      -5,
      -5,
      5,
      -1
    ],
    "io_out": [
      -44,
      20,
      20,
      -60,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(mul_n(input,-4),17),5),5),2)"
  },
  {
    "input": "input : list = [5, 3, 5, -1, 1, 3]\noutput : list = [6, 0, 2, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(drop([5, 3, 5, -1, 1, 3],2),1),3),1)",
    "io_inp": [
      5,
      3,
      5,
      -1,
      1,
      3
    ],
    "io_out": [
      6,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(drop(input,2),1),3),1)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(sub_n([4, 2],2),12)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,2),12)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sort_asc([4, 0]))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -1, 0, 0, 0, 2]\noutput : list = [2, 0, 0, 0, -1, -2]",
    "output": "generated_output : list = reverse([-2, -1, 0, 0, 0, 2])",
    "io_inp": [
      -2,
      -1,
      0,
      0,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, 5, -3, -3]\noutput : list = [2, 2, 3, 10, 10]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(reverse([-2, 5, 5, -3, -3])),5),16))",
    "io_inp": [
      -2,
      5,
      5,
      -3,
      -3
    ],
    "io_out": [
      2,
      2,
      3,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(reverse(input)),5),16))"
  },
  {
    "input": "input : list = [5, 3, -2, -4]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(take([5, 3, -2, -4],1)),3),-4),-5)",
    "io_inp": [
      5,
      3,
      -2,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(take(input,1)),3),-4),-5)"
  },
  {
    "input": "input : list = [-3, 5, 5, -2, 4, 0]\noutput : list = [0, -48, 24, -60, -60, 36]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n([-3, 5, 5, -2, 4, 0],-3)),4),33)",
    "io_inp": [
      -3,
      5,
      5,
      -2,
      4,
      0
    ],
    "io_out": [
      0,
      -48,
      24,
      -60,
      -60,
      36
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(input,-3)),4),33)"
  },
  {
    "input": "input : list = [4, -3, -5]\noutput : list = [12, 5, 3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n([4, -3, -5],-4))),4))",
    "io_inp": [
      4,
      -3,
      -5
    ],
    "io_out": [
      12,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n(input,-4))),4))"
  },
  {
    "input": "input : list = [4, 1, -5, 5, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = take(take([4, 1, -5, 5, 1],2),4)",
    "io_inp": [
      4,
      1,
      -5,
      5,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = take(take(input,2),4)"
  },
  {
    "input": "input : list = [-1, 2, 5, -1]\noutput : list = [5, 2, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([-1, 2, 5, -1])))",
    "io_inp": [
      -1,
      2,
      5,
      -1
    ],
    "io_out": [
      5,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [5, -1, -1, 4, 5]\noutput : list = [2, 2, 1, -4, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(sub_n([5, -1, -1, 4, 5],2),-4),18),-3))",
    "io_inp": [
      5,
      -1,
      -1,
      4,
      5
    ],
    "io_out": [
      2,
      2,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(sub_n(input,2),-4),18),-3))"
  },
  {
    "input": "input : list = [1, -1, 0, 5, -2, 4]\noutput : list = [-3, -10, -4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(drop([1, -1, 0, 5, -2, 4],3),-5),-2),5)",
    "io_inp": [
      1,
      -1,
      0,
      5,
      -2,
      4
    ],
    "io_out": [
      -3,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(drop(input,3),-5),-2),5)"
  },
  {
    "input": "input : list = [4, 0, 0, 5, 2, 0]\noutput : list = [4, 4, 4, 6, 8, 9]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(sort_des([4, 0, 0, 5, 2, 0])),1),15),-3)",
    "io_inp": [
      4,
      0,
      0,
      5,
      2,
      0
    ],
    "io_out": [
      4,
      4,
      4,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(sort_des(input)),1),15),-3)"
  },
  {
    "input": "input : list = [3, 0, 4, -3]\noutput : list = [4, 3, 0, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des([3, 0, 4, -3])))",
    "io_inp": [
      3,
      0,
      4,
      -3
    ],
    "io_out": [
      4,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [2, 5, -1]\noutput : list = [0, 3, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n([2, 5, -1],-1)))",
    "io_inp": [
      2,
      5,
      -1
    ],
    "io_out": [
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [5, 3, -2, -5, -2, 2]\noutput : list = [6, 4, -1, -4, -1, 3]",
    "output": "generated_output : list = take(add_n(add_n([5, 3, -2, -5, -2, 2],5),-4),10)",
    "io_inp": [
      5,
      3,
      -2,
      -5,
      -2,
      2
    ],
    "io_out": [
      6,
      4,
      -1,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,5),-4),10)"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [24, 8]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(drop([-1, -4, 4],1),-3),5),2))",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      24,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(drop(input,1),-3),5),2))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [2, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_des([0, -2]))),-4),2)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_des(input))),-4),2)"
  },
  {
    "input": "input : list = [-3, 4, 2, -3, -2]\noutput : list = [6, 4, 0, -1, -1]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(sort_des([-3, 4, 2, -3, -2]),2))),54)",
    "io_inp": [
      -3,
      4,
      2,
      -3,
      -2
    ],
    "io_out": [
      6,
      4,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(sort_des(input),2))),54)"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [4, 4, 3]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n([2, 3, 3],-2))),3)",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(input,-2))),3)"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [3, 9, -9]",
    "output": "generated_output : list = take(mul_n([1, 3, -3],3),5)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      3,
      9,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),5)"
  },
  {
    "input": "input : list = [3, -5, 0, 1, -3, -5]\noutput : list = [15, 9, -3, 0, 15, -9]",
    "output": "generated_output : list = reverse(mul_n([3, -5, 0, 1, -3, -5],-3))",
    "io_inp": [
      3,
      -5,
      0,
      1,
      -3,
      -5
    ],
    "io_out": [
      15,
      9,
      -3,
      0,
      15,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [5, -2, -5, 2, -3]\noutput : list = [-40, -30, -25, -5, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(sub_n([5, -2, -5, 2, -3],4),1)),5))",
    "io_inp": [
      5,
      -2,
      -5,
      2,
      -3
    ],
    "io_out": [
      -40,
      -30,
      -25,
      -5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(sub_n(input,4),1)),5))"
  },
  {
    "input": "input : list = [-1, 4, 1, -2]\noutput : list = [-1, 2, 5, 0]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(sub_n([-1, 4, 1, -2],4)),5),5),1)",
    "io_inp": [
      -1,
      4,
      1,
      -2
    ],
    "io_out": [
      -1,
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(sub_n(input,4)),5),5),1)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(sort_des([5, 2]),3))))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(sort_des(input),3))))"
  },
  {
    "input": "input : list = [3, 4, -5, 1, 5]\noutput : list = [8, 6, 4, 0, -12]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(sub_n([3, 4, -5, 1, 5],5),-4),2),20))",
    "io_inp": [
      3,
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      8,
      6,
      4,
      0,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(sub_n(input,5),-4),2),20))"
  },
  {
    "input": "input : list = [5, -5, -1, -1]\noutput : list = [20, 4, 4, -20]",
    "output": "generated_output : list = take(take(sort_des(mul_n(reverse([5, -5, -1, -1]),-4)),40),17)",
    "io_inp": [
      5,
      -5,
      -1,
      -1
    ],
    "io_out": [
      20,
      4,
      4,
      -20
    ],
    "output_masked": "generated_output : list = take(take(sort_des(mul_n(reverse(input),-4)),40),17)"
  },
  {
    "input": "input : list = [-2, 4, 2, 2]\noutput : list = [11, -1, -1, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n([-2, 4, 2, 2],-3),5)))",
    "io_inp": [
      -2,
      4,
      2,
      2
    ],
    "io_out": [
      11,
      -1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(input,-3),5)))"
  },
  {
    "input": "input : list = [3, -3, -4]\noutput : list = [7]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(take([3, -3, -4],1))),1),3)",
    "io_inp": [
      3,
      -3,
      -4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(take(input,1))),1),3)"
  },
  {
    "input": "input : list = [5, -2, 4, -1, -4]\noutput : list = [7, 6, 1, 0, -2]",
    "output": "generated_output : list = add_n(sort_des([5, -2, 4, -1, -4]),2)",
    "io_inp": [
      5,
      -2,
      4,
      -1,
      -4
    ],
    "io_out": [
      7,
      6,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-4, 5, -2, -5, -5]\noutput : list = [-16, 12, 20, 24, 24]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n([-4, 5, -2, -5, -5],1)),-1),-4)",
    "io_inp": [
      -4,
      5,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -16,
      12,
      20,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(input,1)),-1),-4)"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(add_n([3, -1, -2],-5),3)),-4))",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(add_n(input,-5),3)),-4))"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [4, 1, 2]",
    "output": "generated_output : list = add_n(sub_n([3, 0, 1],2),3)",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      4,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),3)"
  },
  {
    "input": "input : list = [-4, 1, -2, 4, 5]\noutput : list = [18, 12, 3, -6, -9]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(sort_des([-4, 1, -2, 4, 5]),2),20)),-3)",
    "io_inp": [
      -4,
      1,
      -2,
      4,
      5
    ],
    "io_out": [
      18,
      12,
      3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(sort_des(input),2),20)),-3)"
  },
  {
    "input": "input : list = [-4, 3, 0, -3]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take([-4, 3, 0, -3],1))",
    "io_inp": [
      -4,
      3,
      0,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-2, 5, 4, -2, 2, -4]\noutput : list = [1, 8, 7, 1, 5, -1]",
    "output": "generated_output : list = add_n([-2, 5, 4, -2, 2, -4],3)",
    "io_inp": [
      -2,
      5,
      4,
      -2,
      2,
      -4
    ],
    "io_out": [
      1,
      8,
      7,
      1,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [-75, -15, 60]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(reverse([-5, 4, -1]),3),5),7))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      -75,
      -15,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(reverse(input),3),5),7))"
  },
  {
    "input": "input : list = [-5, -4, -5, 5]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, -4, -5, 5],1))",
    "io_inp": [
      -5,
      -4,
      -5,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [-18, 2, 22]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([5, 0, -5]),4),-2)",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      -18,
      2,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),4),-2)"
  },
  {
    "input": "input : list = [-3, 3, 1, 2]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take([-3, 3, 1, 2],2)",
    "io_inp": [
      -3,
      3,
      1,
      2
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-3, 6]",
    "output": "generated_output : list = sort_asc(mul_n([1, -2],-3))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-2, -1, 0, -3, 0]\noutput : list = [-9, -8, -7, -10, -7]",
    "output": "generated_output : list = take(reverse(add_n(reverse(sub_n([-2, -1, 0, -3, 0],3)),-4)),36)",
    "io_inp": [
      -2,
      -1,
      0,
      -3,
      0
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(sub_n(input,3)),-4)),36)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [-1, 2, -6]",
    "output": "generated_output : list = sub_n(take(add_n(take(sub_n([0, 3, -5],2),13),4),19),3)",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      -1,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sub_n(input,2),13),4),19),3)"
  },
  {
    "input": "input : list = [3, 4, -1, -3, 2, 5]\noutput : list = [7]",
    "output": "generated_output : list = drop(take(sort_asc(add_n(sort_des([3, 4, -1, -3, 2, 5]),2)),23),5)",
    "io_inp": [
      3,
      4,
      -1,
      -3,
      2,
      5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(add_n(sort_des(input),2)),23),5)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [17, 2]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(drop([1, -3, 0],1)),-5),-2))",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      17,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(drop(input,1)),-5),-2))"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [53, 48, 23]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc([1, -4, -5]),-5),-5),3)",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      53,
      48,
      23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(input),-5),-5),3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-30, 20]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(add_n([-5, 0],-1),-4),5),-2))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -30,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(add_n(input,-1),-4),5),-2))"
  },
  {
    "input": "input : list = [3, 4, -3, 4, 2, 5]\noutput : list = [-3, 2, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(reverse([3, 4, -3, 4, 2, 5])))))",
    "io_inp": [
      3,
      4,
      -3,
      4,
      2,
      5
    ],
    "io_out": [
      -3,
      2,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [2, -3, 4, 1, 0, 2]\noutput : list = [10, 4, 2, 0, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n(add_n([2, -3, 4, 1, 0, 2],-2),-2))",
    "io_inp": [
      2,
      -3,
      4,
      1,
      0,
      2
    ],
    "io_out": [
      10,
      4,
      2,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,-2),-2))"
  },
  {
    "input": "input : list = [1, -5, 0]\noutput : list = [-6, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(reverse([1, -5, 0])))),-1)",
    "io_inp": [
      1,
      -5,
      0
    ],
    "io_out": [
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [4, 0, 0, 2, 1, -4]\noutput : list = [4, 2, 1, 0, 0, -4]",
    "output": "generated_output : list = sort_des([4, 0, 0, 2, 1, -4])",
    "io_inp": [
      4,
      0,
      0,
      2,
      1,
      -4
    ],
    "io_out": [
      4,
      2,
      1,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, -2, 5, 3, -5]\noutput : list = [2, 0, -5, -8]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(drop([0, 1, -2, 5, 3, -5],2))),-3))",
    "io_inp": [
      0,
      1,
      -2,
      5,
      3,
      -5
    ],
    "io_out": [
      2,
      0,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(drop(input,2))),-3))"
  },
  {
    "input": "input : list = [-5, -3, 0, 0, 2]\noutput : list = [-6, -4, -1, -1, 1]",
    "output": "generated_output : list = sub_n([-5, -3, 0, 0, 2],1)",
    "io_inp": [
      -5,
      -3,
      0,
      0,
      2
    ],
    "io_out": [
      -6,
      -4,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, 0, 5, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = drop([-5, 0, 5, 1, 1],3)",
    "io_inp": [
      -5,
      0,
      5,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [25, 5, -5]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(sort_des([5, -1, 1]),8)),5),1)",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      25,
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(sort_des(input),8)),5),1)"
  },
  {
    "input": "input : list = [-3, 3, 5, 4]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(drop([-3, 3, 5, 4],1),-2),5)),2)",
    "io_inp": [
      -3,
      3,
      5,
      4
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(drop(input,1),-2),5)),2)"
  },
  {
    "input": "input : list = [1, 4, 4, 0]\noutput : list = [6, 6, 3, 2]",
    "output": "generated_output : list = sub_n(add_n(take(take(sort_des([1, 4, 4, 0]),6),28),3),1)",
    "io_inp": [
      1,
      4,
      4,
      0
    ],
    "io_out": [
      6,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(sort_des(input),6),28),3),1)"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [4, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, 4])",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -5, -3, 5, 5, 5]\noutput : list = [5, 5, 5, 1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([1, -5, -3, 5, 5, 5]))",
    "io_inp": [
      1,
      -5,
      -3,
      5,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -2, -5, 3, -2]\noutput : list = [3, -2, -5]",
    "output": "generated_output : list = sort_des(take(drop([-5, -2, -5, 3, -2],2),8))",
    "io_inp": [
      -5,
      -2,
      -5,
      3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,2),8))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-16, -21]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc([4, 5]),6),-5),4)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -16,
      -21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(input),6),-5),4)"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [3, 15, 18]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([-1, -2, 3],4),-3))",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      3,
      15,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,4),-3))"
  },
  {
    "input": "input : list = [2, -1, 4, 5, 1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(take([2, -1, 4, 5, 1],2),-5),-1)),-3)",
    "io_inp": [
      2,
      -1,
      4,
      5,
      1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(take(input,2),-5),-1)),-3)"
  },
  {
    "input": "input : list = [1, 0, 0, -5, 2]\noutput : list = [-1, 4, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(sub_n([1, 0, 0, -5, 2],-4))),24))",
    "io_inp": [
      1,
      0,
      0,
      -5,
      2
    ],
    "io_out": [
      -1,
      4,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(sub_n(input,-4))),24))"
  },
  {
    "input": "input : list = [-2, 1, 2, 0]\noutput : list = [2, 1, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([-2, 1, 2, 0])))",
    "io_inp": [
      -2,
      1,
      2,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [4, -1, 4, -4, 3, 1]\noutput : list = [3, 6, 8, 10, 11, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n([4, -1, 4, -4, 3, 1],2),5))",
    "io_inp": [
      4,
      -1,
      4,
      -4,
      3,
      1
    ],
    "io_out": [
      3,
      6,
      8,
      10,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,2),5))"
  },
  {
    "input": "input : list = [-4, 1, -4, -4, 5, 3]\noutput : list = [-2, 8, 8, -10, -6]",
    "output": "generated_output : list = mul_n(take(take(drop([-4, 1, -4, -4, 5, 3],1),10),21),-2)",
    "io_inp": [
      -4,
      1,
      -4,
      -4,
      5,
      3
    ],
    "io_out": [
      -2,
      8,
      8,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(drop(input,1),10),21),-2)"
  },
  {
    "input": "input : list = [1, -4, 5]\noutput : list = [1, -3, -8]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(add_n([1, -4, 5],-2),8),1)),2)",
    "io_inp": [
      1,
      -4,
      5
    ],
    "io_out": [
      1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(add_n(input,-2),8),1)),2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, -4, 0]\noutput : list = [4, 1, 0, -4]",
    "output": "generated_output : list = sort_des(sort_des([1, 4, -4, 0]))",
    "io_inp": [
      1,
      4,
      -4,
      0
    ],
    "io_out": [
      4,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -2, 4, -5, 1]\noutput : list = [-7, -6, 0, -9, -3]",
    "output": "generated_output : list = add_n([-3, -2, 4, -5, 1],-4)",
    "io_inp": [
      -3,
      -2,
      4,
      -5,
      1
    ],
    "io_out": [
      -7,
      -6,
      0,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 1, 1, 0, -2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take([-3, 1, 1, 0, -2],2)",
    "io_inp": [
      -3,
      1,
      1,
      0,
      -2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [4, -10, 6]",
    "output": "generated_output : list = mul_n([2, -5, 3],2)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      4,
      -10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 5, 2, 4]\noutput : list = [5, 5, 4, 2]",
    "output": "generated_output : list = sort_des([5, 5, 2, 4])",
    "io_inp": [
      5,
      5,
      2,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3, 2, 1]\noutput : list = [6, 5]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(drop([-1, 3, 2, 1],1),2),-4),-5),-4)",
    "io_inp": [
      -1,
      3,
      2,
      1
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(drop(input,1),2),-4),-5),-4)"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [14, -10]",
    "output": "generated_output : list = sort_des(sub_n(drop(add_n(mul_n([5, -3, 5],-3),4),1),-1))",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      14,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(add_n(mul_n(input,-3),4),1),-1))"
  },
  {
    "input": "input : list = [1, 2, 2, 0, -3]\noutput : list = [4, 7, 8, 9, 9]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_des([1, 2, 2, 0, -3]))),-4),-3)",
    "io_inp": [
      1,
      2,
      2,
      0,
      -3
    ],
    "io_out": [
      4,
      7,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_des(input))),-4),-3)"
  },
  {
    "input": "input : list = [2, 5, -5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop(sort_asc([2, 5, -5]),1)",
    "io_inp": [
      2,
      5,
      -5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),1)"
  },
  {
    "input": "input : list = [1, -1, 1, 3, 4, -1]\noutput : list = [2, 2, -2, -2, -6, -8]",
    "output": "generated_output : list = mul_n(sort_asc([1, -1, 1, 3, 4, -1]),-2)",
    "io_inp": [
      1,
      -1,
      1,
      3,
      4,
      -1
    ],
    "io_out": [
      2,
      2,
      -2,
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [1, 4, 3, -1, -3]\noutput : list = [-3, -1, 3, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, 3, -1, -3])",
    "io_inp": [
      1,
      4,
      3,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      3,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, -5, 5, -5, -1]\noutput : list = [-5, -5, 5, -5, -1]",
    "output": "generated_output : list = take(drop([-4, -5, -5, 5, -5, -1],1),16)",
    "io_inp": [
      -4,
      -5,
      -5,
      5,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -5,
      5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),16)"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [-60, -40, 80]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(mul_n([2, 3, -4],-5)),4)),34)",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      -60,
      -40,
      80
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(mul_n(input,-5)),4)),34)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [8, 0, -6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse([-3, 4, 0])),2)))",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      8,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse(input)),2)))"
  },
  {
    "input": "input : list = [0, 5, -3]\noutput : list = [-3, 0, 5]",
    "output": "generated_output : list = sub_n(add_n(sub_n(add_n(sort_asc([0, 5, -3]),4),2),-5),-3)",
    "io_inp": [
      0,
      5,
      -3
    ],
    "io_out": [
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(add_n(sort_asc(input),4),2),-5),-3)"
  },
  {
    "input": "input : list = [-1, -3, 4, -5]\noutput : list = [-7, 2, -5, -3]",
    "output": "generated_output : list = reverse(sub_n([-1, -3, 4, -5],2))",
    "io_inp": [
      -1,
      -3,
      4,
      -5
    ],
    "io_out": [
      -7,
      2,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(add_n(sort_des([1, 4]),-4),4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),-4),4)"
  },
  {
    "input": "input : list = [2, 2, -3, 0, 5, -2]\noutput : list = [60, 40, 0, -40, -40, -100]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(mul_n([2, 2, -3, 0, 5, -2],4),-5),-1),1))",
    "io_inp": [
      2,
      2,
      -3,
      0,
      5,
      -2
    ],
    "io_out": [
      60,
      40,
      0,
      -40,
      -40,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(mul_n(input,4),-5),-1),1))"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [20, 8, -16]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(sort_des([-5, 4, -2])),-4)),13)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      20,
      8,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(sort_des(input)),-4)),13)"
  },
  {
    "input": "input : list = [-3, -3, -5, 5, 3]\noutput : list = [-12, -12, -16, 4, 0]",
    "output": "generated_output : list = mul_n(sub_n([-3, -3, -5, 5, 3],3),2)",
    "io_inp": [
      -3,
      -3,
      -5,
      5,
      3
    ],
    "io_out": [
      -12,
      -12,
      -16,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),2)"
  },
  {
    "input": "input : list = [4, -2, 5, 5, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = drop([4, -2, 5, 5, 3, 3],4)",
    "io_inp": [
      4,
      -2,
      5,
      5,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [0, 0, -5, -4, 2]\noutput : list = [-3, -5, -5, -9, -10]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sort_des([0, 0, -5, -4, 2]),-5),32)))",
    "io_inp": [
      0,
      0,
      -5,
      -4,
      2
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sort_des(input),-5),32)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-6, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des([-3, -2]))),-4)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(input))),-4)"
  },
  {
    "input": "input : list = [-3, 4, -2, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = drop([-3, 4, -2, 2, 0],3)",
    "io_inp": [
      -3,
      4,
      -2,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, 3, 0, 5, 0, 5]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take([-3, 3, 0, 5, 0, 5],1),1),-5))",
    "io_inp": [
      -3,
      3,
      0,
      5,
      0,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(input,1),1),-5))"
  },
  {
    "input": "input : list = [4, 2, -5, -1]\noutput : list = [-5, -1, 2]",
    "output": "generated_output : list = sort_asc(drop([4, 2, -5, -1],1))",
    "io_inp": [
      4,
      2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-2, -2, 4, 4, 2, 4]\noutput : list = [0, 0, 0, -2, -6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n([-2, -2, 4, 4, 2, 4],4)))))",
    "io_inp": [
      -2,
      -2,
      4,
      4,
      2,
      4
    ],
    "io_out": [
      0,
      0,
      0,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [2, -3, -4, 2, 1, -3]\noutput : list = [-12, 4, 8, -16, -12, 8]",
    "output": "generated_output : list = mul_n(reverse([2, -3, -4, 2, 1, -3]),4)",
    "io_inp": [
      2,
      -3,
      -4,
      2,
      1,
      -3
    ],
    "io_out": [
      -12,
      4,
      8,
      -16,
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc(take([-2, 5, 5],1))),16),5)",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(take(input,1))),16),5)"
  },
  {
    "input": "input : list = [5, 1, -4, 1, 1]\noutput : list = [-10, 0, 0, 0, 8]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(reverse([5, 1, -4, 1, 1])),1),2),4)",
    "io_inp": [
      5,
      1,
      -4,
      1,
      1
    ],
    "io_out": [
      -10,
      0,
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(reverse(input)),1),2),4)"
  },
  {
    "input": "input : list = [-2, 2, 4, -5]\noutput : list = [10, -5, -25, -35]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(add_n([-2, 2, 4, -5],1),-2)),-5))",
    "io_inp": [
      -2,
      2,
      4,
      -5
    ],
    "io_out": [
      10,
      -5,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(add_n(input,1),-2)),-5))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-12, 20]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(reverse([5, -3]))),2),4)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(reverse(input))),2),4)"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [2, -1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc([-4, -1, 2])),23)))",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc(input)),23)))"
  },
  {
    "input": "input : list = [3, -5, 1, -3, 3, -5]\noutput : list = [4, 4, 2, -2, -4, -4]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des([3, -5, 1, -3, 3, -5]),-1)),1)",
    "io_inp": [
      3,
      -5,
      1,
      -3,
      3,
      -5
    ],
    "io_out": [
      4,
      4,
      2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(input),-1)),1)"
  },
  {
    "input": "input : list = [1, 3, 3, 2, 3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = drop([1, 3, 3, 2, 3, -5],4)",
    "io_inp": [
      1,
      3,
      3,
      2,
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [-7, -4, 1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(sub_n([-3, 5, 0],3),-5),4)))",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      -7,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(sub_n(input,3),-5),4)))"
  },
  {
    "input": "input : list = [4, -4, -5, -1, -1, -1]\noutput : list = [5, 5, 5, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(drop([4, -4, -5, -1, -1, -1],1),13),35),-5))",
    "io_inp": [
      4,
      -4,
      -5,
      -1,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      5,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(drop(input,1),13),35),-5))"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [-1, -5, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(reverse([1, 5, 1])),-1),-2),-2)",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      -1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(reverse(input)),-1),-2),-2)"
  },
  {
    "input": "input : list = [-4, -3, -2, -1, -2, 2]\noutput : list = [-3, -6, -7, -7]",
    "output": "generated_output : list = take(take(sort_des(add_n(drop([-4, -3, -2, -1, -2, 2],2),-5)),21),15)",
    "io_inp": [
      -4,
      -3,
      -2,
      -1,
      -2,
      2
    ],
    "io_out": [
      -3,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(drop(input,2),-5)),21),15)"
  },
  {
    "input": "input : list = [-4, 4, 4, 1, 5, 3]\noutput : list = [4, 1, 5, 3]",
    "output": "generated_output : list = take(drop([-4, 4, 4, 1, 5, 3],2),17)",
    "io_inp": [
      -4,
      4,
      4,
      1,
      5,
      3
    ],
    "io_out": [
      4,
      1,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),17)"
  },
  {
    "input": "input : list = [2, 4, 1, -5]\noutput : list = [30, 0, -5, -15]",
    "output": "generated_output : list = take(sort_des(mul_n(take(sub_n([2, 4, 1, -5],1),13),-5)),15)",
    "io_inp": [
      2,
      4,
      1,
      -5
    ],
    "io_out": [
      30,
      0,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(sub_n(input,1),13),-5)),15)"
  },
  {
    "input": "input : list = [4, -1, 0, 4, -4]\noutput : list = [7, 7, 3, 2, -1]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(reverse([4, -1, 0, 4, -4]),22),3)))",
    "io_inp": [
      4,
      -1,
      0,
      4,
      -4
    ],
    "io_out": [
      7,
      7,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(reverse(input),22),3)))"
  },
  {
    "input": "input : list = [0, 5, 4, 5]\noutput : list = [-3, -3, -4, -8]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sub_n([0, 5, 4, 5],3)),28)),-5)",
    "io_inp": [
      0,
      5,
      4,
      5
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sub_n(input,3)),28)),-5)"
  },
  {
    "input": "input : list = [-5, 5, -1, -2, 2]\noutput : list = [3, 11, 9, -3, 17]",
    "output": "generated_output : list = add_n(reverse(sub_n(mul_n([-5, 5, -1, -2, 2],-2),-5)),2)",
    "io_inp": [
      -5,
      5,
      -1,
      -2,
      2
    ],
    "io_out": [
      3,
      11,
      9,
      -3,
      17
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(mul_n(input,-2),-5)),2)"
  },
  {
    "input": "input : list = [5, 0, -3, -4]\noutput : list = [3, 4, 7, 12]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des([5, 0, -3, -4])),-5),2))",
    "io_inp": [
      5,
      0,
      -3,
      -4
    ],
    "io_out": [
      3,
      4,
      7,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des(input)),-5),2))"
  },
  {
    "input": "input : list = [5, -2, -5, 0]\noutput : list = [-10, -4, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(drop([5, -2, -5, 0],1),9))),2)",
    "io_inp": [
      5,
      -2,
      -5,
      0
    ],
    "io_out": [
      -10,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(drop(input,1),9))),2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take(take(sub_n(take(sort_des([2, 0]),4),5),27),9)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(sort_des(input),4),5),27),9)"
  },
  {
    "input": "input : list = [1, 5, 4, -1]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = drop([1, 5, 4, -1],1)",
    "io_inp": [
      1,
      5,
      4,
      -1
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -4, -4, 2, 0]\noutput : list = [-1, -2, -3, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(sub_n([1, -4, -4, 2, 0],-2))),-5))",
    "io_inp": [
      1,
      -4,
      -4,
      2,
      0
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(sub_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, 10]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(mul_n([-1, 1],5),-1),3)),1)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(mul_n(input,5),-1),3)),1)"
  },
  {
    "input": "input : list = [-4, 0, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(drop([-4, 0, -1],1))),-3),2)",
    "io_inp": [
      -4,
      0,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(drop(input,1))),-3),2)"
  },
  {
    "input": "input : list = [1, -5, -3]\noutput : list = [-9, -15, 3]",
    "output": "generated_output : list = reverse(mul_n([1, -5, -3],3))",
    "io_inp": [
      1,
      -5,
      -3
    ],
    "io_out": [
      -9,
      -15,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [2, 5, -5, -3]\noutput : list = [4, 1, -4, -6]",
    "output": "generated_output : list = add_n(sort_des([2, 5, -5, -3]),-1)",
    "io_inp": [
      2,
      5,
      -5,
      -3
    ],
    "io_out": [
      4,
      1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-4, 4, -1, 0]\noutput : list = [-5, -2, -1, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-4, 4, -1, 0]),1)",
    "io_inp": [
      -4,
      4,
      -1,
      0
    ],
    "io_out": [
      -5,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [20, -10, -20]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n([4, -4, 2],-5))))",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      20,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(input,-5))))"
  },
  {
    "input": "input : list = [4, -4, -4, 0]\noutput : list = [-48]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(take([4, -4, -4, 0],1),11),-3),4))",
    "io_inp": [
      4,
      -4,
      -4,
      0
    ],
    "io_out": [
      -48
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(take(input,1),11),-3),4))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(sort_des([2, -3]),8)),5))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(sort_des(input),8)),5))"
  },
  {
    "input": "input : list = [3, 0, -4]\noutput : list = [13, 4, -8]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(mul_n([3, 0, -4],-3),3),-1)),-4)",
    "io_inp": [
      3,
      0,
      -4
    ],
    "io_out": [
      13,
      4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(mul_n(input,-3),3),-1)),-4)"
  },
  {
    "input": "input : list = [-2, -1, 3, 5, -3, -3]\noutput : list = [10]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take([-2, -1, 3, 5, -3, -3],1),-5)))",
    "io_inp": [
      -2,
      -1,
      3,
      5,
      -3,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(input,1),-5)))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-3, -9]",
    "output": "generated_output : list = sort_des(mul_n([3, 1],-3))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [3, 3, -3, -1]\noutput : list = [0, 0, -4, -6]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sort_asc([3, 3, -3, -1])),30),-3))",
    "io_inp": [
      3,
      3,
      -3,
      -1
    ],
    "io_out": [
      0,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sort_asc(input)),30),-3))"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [12, 57, 57]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(mul_n([-4, -4, -1],5),-3),2),-1))",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      12,
      57,
      57
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(mul_n(input,5),-3),2),-1))"
  },
  {
    "input": "input : list = [0, 3, 1, -3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(take([0, 3, 1, -3],1)))))",
    "io_inp": [
      0,
      3,
      1,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, -2, -4, -3, -5]\noutput : list = [-8, -6, -8, -7, -9]",
    "output": "generated_output : list = add_n([-4, -2, -4, -3, -5],-4)",
    "io_inp": [
      -4,
      -2,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -8,
      -6,
      -8,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -4, -3, -2, -1]\noutput : list = [10, 5]",
    "output": "generated_output : list = take(mul_n(sort_asc(drop(drop([-4, -4, -3, -2, -1],2),1)),-5),31)",
    "io_inp": [
      -4,
      -4,
      -3,
      -2,
      -1
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(drop(drop(input,2),1)),-5),31)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [-14]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(mul_n([-4, -2, 0],4),1)),2))",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(mul_n(input,4),1)),2))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-15, 15]",
    "output": "generated_output : list = sub_n(mul_n([-2, 4],5),5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),5)"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [45, 0, -75]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(mul_n([3, 0, -5],3))),-1),-5)",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      45,
      0,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(mul_n(input,3))),-1),-5)"
  },
  {
    "input": "input : list = [4, -3, -1, 1, -5]\noutput : list = [2, -2, -10]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(drop([4, -3, -1, 1, -5],2),2))),41)",
    "io_inp": [
      4,
      -3,
      -1,
      1,
      -5
    ],
    "io_out": [
      2,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(drop(input,2),2))),41)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = add_n(add_n([0, -5],1),-1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,1),-1)"
  },
  {
    "input": "input : list = [-3, 3, -5, -4, -2]\noutput : list = [9, -6, -12, -15]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop([-3, 3, -5, -4, -2],1)))),3)",
    "io_inp": [
      -3,
      3,
      -5,
      -4,
      -2
    ],
    "io_out": [
      9,
      -6,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop(input,1)))),3)"
  },
  {
    "input": "input : list = [-4, 3, -2, 2, -4]\noutput : list = [-1, 6, 1, 5, -1]",
    "output": "generated_output : list = add_n([-4, 3, -2, 2, -4],3)",
    "io_inp": [
      -4,
      3,
      -2,
      2,
      -4
    ],
    "io_out": [
      -1,
      6,
      1,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(add_n([-4, 2],4),-2)),1),4)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(add_n(input,4),-2)),1),4)"
  },
  {
    "input": "input : list = [3, -1, 3, -5, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(reverse(drop(add_n(sort_asc([3, -1, 3, -5, 1]),-3),3)),3)",
    "io_inp": [
      3,
      -1,
      3,
      -5,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(add_n(sort_asc(input),-3),3)),3)"
  },
  {
    "input": "input : list = [-2, 1, 3, 2, -4, -3]\noutput : list = [-7, -6, -5, -2, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sub_n([-2, 1, 3, 2, -4, -3],3)))",
    "io_inp": [
      -2,
      1,
      3,
      2,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,3)))"
  },
  {
    "input": "input : list = [2, -3, -2]\noutput : list = [-22, -2, -6]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(sub_n([2, -3, -2],-5),-4),-1),39),-5)",
    "io_inp": [
      2,
      -3,
      -2
    ],
    "io_out": [
      -22,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(sub_n(input,-5),-4),-1),39),-5)"
  },
  {
    "input": "input : list = [3, 1, -2, -2, 4, 4]\noutput : list = [-12, 24, 24]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(drop([3, 1, -2, -2, 4, 4],3),-2),-1),40),3)",
    "io_inp": [
      3,
      1,
      -2,
      -2,
      4,
      4
    ],
    "io_out": [
      -12,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(drop(input,3),-2),-1),40),3)"
  },
  {
    "input": "input : list = [-4, 1, 2, 5]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(take([-4, 1, 2, 5],1),1),2)))",
    "io_inp": [
      -4,
      1,
      2,
      5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(take(input,1),1),2)))"
  },
  {
    "input": "input : list = [5, -3, -4, -2]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(take([5, -3, -4, -2],1)),-2)))",
    "io_inp": [
      5,
      -3,
      -4,
      -2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(take(input,1)),-2)))"
  },
  {
    "input": "input : list = [0, -5, -1, 0, -1]\noutput : list = [-6, -2, -2, -1, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n([0, -5, -1, 0, -1],1))))",
    "io_inp": [
      0,
      -5,
      -1,
      0,
      -1
    ],
    "io_out": [
      -6,
      -2,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(input,1))))"
  },
  {
    "input": "input : list = [-1, -2, 1, 1, -2]\noutput : list = [1, 1, -1, -2, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des([-1, -2, 1, 1, -2])))",
    "io_inp": [
      -1,
      -2,
      1,
      1,
      -2
    ],
    "io_out": [
      1,
      1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [1, 4, -2, -3, 2]\noutput : list = [-8, -7, -4, -3, -1]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(reverse([1, 4, -2, -3, 2]))),-5),25)",
    "io_inp": [
      1,
      4,
      -2,
      -3,
      2
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(reverse(input))),-5),25)"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-7, -6, -6]",
    "output": "generated_output : list = sub_n([-4, -3, -3],3)",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, 3, 2, 0]\noutput : list = [9, 8, 6, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(sort_asc([-5, 3, 2, 0]))),-2),4)",
    "io_inp": [
      -5,
      3,
      2,
      0
    ],
    "io_out": [
      9,
      8,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(sort_asc(input))),-2),4)"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [10, 6, 2]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(sort_asc([-3, 1, 5]))),8),-5)",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      10,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(sort_asc(input))),8),-5)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(add_n(sort_des([0, -2]),5))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [-3, 0, -2, 4, 5, -4]\noutput : list = [-3, 0, -2, 4]",
    "output": "generated_output : list = take([-3, 0, -2, 4, 5, -4],4)",
    "io_inp": [
      -3,
      0,
      -2,
      4,
      5,
      -4
    ],
    "io_out": [
      -3,
      0,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-2, 3, 4, 2, 2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(drop([-2, 3, 4, 2, 2, 3],4))),4),4)",
    "io_inp": [
      -2,
      3,
      4,
      2,
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(drop(input,4))),4),4)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(add_n([-4, 1],3),2),1),2),-5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(add_n(input,3),2),1),2),-5)"
  },
  {
    "input": "input : list = [5, -1, 3]\noutput : list = [-1, 3, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(sub_n([5, -1, 3],-1))),1))",
    "io_inp": [
      5,
      -1,
      3
    ],
    "io_out": [
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(sub_n(input,-1))),1))"
  },
  {
    "input": "input : list = [-3, -5, 1, 1, -2]\noutput : list = [8, 8, -28, -40, -64]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(mul_n([-3, -5, 1, 1, -2],3),11),4)),4)",
    "io_inp": [
      -3,
      -5,
      1,
      1,
      -2
    ],
    "io_out": [
      8,
      8,
      -28,
      -40,
      -64
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(mul_n(input,3),11),4)),4)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = sort_des([0, -2, 4])",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, -5, 2, 1]\noutput : list = [6, 5, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(drop([5, 5, -5, 2, 1],2)),5),-2),-1)",
    "io_inp": [
      5,
      5,
      -5,
      2,
      1
    ],
    "io_out": [
      6,
      5,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(drop(input,2)),5),-2),-1)"
  },
  {
    "input": "input : list = [0, -3, 3, 0, 0, 3]\noutput : list = [1, 4]",
    "output": "generated_output : list = add_n(drop([0, -3, 3, 0, 0, 3],4),1)",
    "io_inp": [
      0,
      -3,
      3,
      0,
      0,
      3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(drop(input,4),1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sub_n([4, 1],3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, 5, 1, -3, -5, -1]\noutput : list = [2, -2, 0, 4, 8, 8]",
    "output": "generated_output : list = add_n(reverse([5, 5, 1, -3, -5, -1]),3)",
    "io_inp": [
      5,
      5,
      1,
      -3,
      -5,
      -1
    ],
    "io_out": [
      2,
      -2,
      0,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc([1, 3])",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [-9, -3, -4]",
    "output": "generated_output : list = add_n([-5, 1, 0],-4)",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      -9,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, 5, -1]\noutput : list = [0, 15, 18]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(sort_asc([0, 5, -1])),1),-4),-3)",
    "io_inp": [
      0,
      5,
      -1
    ],
    "io_out": [
      0,
      15,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(sort_asc(input)),1),-4),-3)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [0, 7]",
    "output": "generated_output : list = sort_asc(add_n(drop([4, 2, -5],1),5))",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,1),5))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(add_n([-4, -3],-1))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [-1, 1, 5, 3]\noutput : list = [9, -1, -11, -21]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_asc([-1, 1, 5, 3]))),-5),4)",
    "io_inp": [
      -1,
      1,
      5,
      3
    ],
    "io_out": [
      9,
      -1,
      -11,
      -21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_asc(input))),-5),4)"
  },
  {
    "input": "input : list = [-1, -5, 2, -4, 3, 3]\noutput : list = [1, 1, -6, 0, -7, -3]",
    "output": "generated_output : list = add_n(reverse([-1, -5, 2, -4, 3, 3]),-2)",
    "io_inp": [
      -1,
      -5,
      2,
      -4,
      3,
      3
    ],
    "io_out": [
      1,
      1,
      -6,
      0,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [3, 2, -4]\noutput : list = [-9, -7, 5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc([3, 2, -4]),-2))),3)",
    "io_inp": [
      3,
      2,
      -4
    ],
    "io_out": [
      -9,
      -7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc(input),-2))),3)"
  },
  {
    "input": "input : list = [-2, -5, -1, 1]\noutput : list = [0, -2, -3, -6]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(sub_n([-2, -5, -1, 1],1)),20)))",
    "io_inp": [
      -2,
      -5,
      -1,
      1
    ],
    "io_out": [
      0,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(sub_n(input,1)),20)))"
  },
  {
    "input": "input : list = [-2, -3, -1, 1]\noutput : list = [10, 11, 9, 7]",
    "output": "generated_output : list = add_n(mul_n(add_n([-2, -3, -1, 1],-3),-1),5)",
    "io_inp": [
      -2,
      -3,
      -1,
      1
    ],
    "io_out": [
      10,
      11,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-3),-1),5)"
  },
  {
    "input": "input : list = [1, 1, -2, 3, -4, 2]\noutput : list = [5, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(drop([1, 1, -2, 3, -4, 2],4),16))),3)",
    "io_inp": [
      1,
      1,
      -2,
      3,
      -4,
      2
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(drop(input,4),16))),3)"
  },
  {
    "input": "input : list = [2, -1, 4, 3, -2, 5]\noutput : list = [-9, 16, 11, -14, 21]",
    "output": "generated_output : list = sub_n(mul_n(drop([2, -1, 4, 3, -2, 5],1),5),4)",
    "io_inp": [
      2,
      -1,
      4,
      3,
      -2,
      5
    ],
    "io_out": [
      -9,
      16,
      11,
      -14,
      21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,1),5),4)"
  },
  {
    "input": "input : list = [0, 0, 5, -1, -4, -1]\noutput : list = [-3, -3, 2, -4, -7, -4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse([0, 0, 5, -1, -4, -1]),-1)),4)",
    "io_inp": [
      0,
      0,
      5,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -3,
      2,
      -4,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(input),-1)),4)"
  },
  {
    "input": "input : list = [3, 4, -4, 2, 1]\noutput : list = [-5, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sub_n([3, 4, -4, 2, 1],2)),1)))",
    "io_inp": [
      3,
      4,
      -4,
      2,
      1
    ],
    "io_out": [
      -5,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sub_n(input,2)),1)))"
  },
  {
    "input": "input : list = [0, -3, -1, 0, -3, -4]\noutput : list = [0, 0, 3, 9, 9, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(sort_des([0, -3, -1, 0, -3, -4])),-3)))",
    "io_inp": [
      0,
      -3,
      -1,
      0,
      -3,
      -4
    ],
    "io_out": [
      0,
      0,
      3,
      9,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [1, 0, -4, 3, 1]\noutput : list = [-3, -7, 0, -2]",
    "output": "generated_output : list = take(take(take(drop(add_n([1, 0, -4, 3, 1],-3),1),14),31),32)",
    "io_inp": [
      1,
      0,
      -4,
      3,
      1
    ],
    "io_out": [
      -3,
      -7,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(take(drop(add_n(input,-3),1),14),31),32)"
  },
  {
    "input": "input : list = [5, -3, -4, 5, 4, 2]\noutput : list = [7, -1, -2, 7, 6, 4]",
    "output": "generated_output : list = sub_n([5, -3, -4, 5, 4, 2],-2)",
    "io_inp": [
      5,
      -3,
      -4,
      5,
      4,
      2
    ],
    "io_out": [
      7,
      -1,
      -2,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-15, 12]",
    "output": "generated_output : list = mul_n([5, -4],-3)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -15,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, 2, 4, -3, -5, 2]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(drop(sub_n([4, 2, 4, -3, -5, 2],-2),4)),31))",
    "io_inp": [
      4,
      2,
      4,
      -3,
      -5,
      2
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(drop(sub_n(input,-2),4)),31))"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-7, -7, 0]",
    "output": "generated_output : list = add_n(reverse([4, -3, -3]),-4)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [27, -45]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(mul_n([5, -3],3),-3))),37)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      27,
      -45
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(mul_n(input,3),-3))),37)"
  },
  {
    "input": "input : list = [1, 0, 0, 5, -5, 1]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(drop([1, 0, 0, 5, -5, 1],4),8),-1)))",
    "io_inp": [
      1,
      0,
      0,
      5,
      -5,
      1
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(drop(input,4),8),-1)))"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [0, -2, 1]",
    "output": "generated_output : list = reverse([1, -2, 0])",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 0, -3, 2, -3]\noutput : list = [-3, -3, 0, 0, 2]",
    "output": "generated_output : list = sort_asc([0, 0, -3, 2, -3])",
    "io_inp": [
      0,
      0,
      -3,
      2,
      -3
    ],
    "io_out": [
      -3,
      -3,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [18, 10, 14]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(add_n([-2, -4, 0],5),3),2),2))",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      18,
      10,
      14
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(add_n(input,5),3),2),2))"
  },
  {
    "input": "input : list = [3, 2, -4]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(take([3, 2, -4],1)))),-4)",
    "io_inp": [
      3,
      2,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(take(input,1)))),-4)"
  },
  {
    "input": "input : list = [-5, 4, -4, 5]\noutput : list = [-1, -2, -10, -11]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_des([-5, 4, -4, 5]))),-1),5)",
    "io_inp": [
      -5,
      4,
      -4,
      5
    ],
    "io_out": [
      -1,
      -2,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_des(input))),-1),5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-4, 16]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_asc([-1, -5]),-1),-5),-4))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_asc(input),-1),-5),-4))"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [-6, -6, 24]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des([1, -4, 1]),-2),5),3)",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      -6,
      -6,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(input),-2),5),3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-9, -11]",
    "output": "generated_output : list = add_n(reverse(add_n(take(sort_asc([-5, -3]),9),-5)),-1)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -9,
      -11
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(sort_asc(input),9),-5)),-1)"
  },
  {
    "input": "input : list = [0, -1, 3, 2]\noutput : list = [3, -2, 18, 13]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n([0, -1, 3, 2],5),-2),4),5)",
    "io_inp": [
      0,
      -1,
      3,
      2
    ],
    "io_out": [
      3,
      -2,
      18,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(input,5),-2),4),5)"
  },
  {
    "input": "input : list = [4, -4, 1, 3, 2, 4]\noutput : list = [5, 5, 4, 3, 2, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(sub_n([4, -4, 1, 3, 2, 4],-5))),-4))",
    "io_inp": [
      4,
      -4,
      1,
      3,
      2,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(sub_n(input,-5))),-4))"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [-5, 2, 3]",
    "output": "generated_output : list = take(sort_asc(add_n([4, -3, 5],-2)),16)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      -5,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-2)),16)"
  },
  {
    "input": "input : list = [4, -1, 4, 0, 0, -4]\noutput : list = [4, 4, 0, 0, -1, -4]",
    "output": "generated_output : list = sort_des([4, -1, 4, 0, 0, -4])",
    "io_inp": [
      4,
      -1,
      4,
      0,
      0,
      -4
    ],
    "io_out": [
      4,
      4,
      0,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -1, -4, 2, -2]\noutput : list = [-24, -12, -12, -6, 12]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(sort_asc([-2, -1, -4, 2, -2]))),2),3)",
    "io_inp": [
      -2,
      -1,
      -4,
      2,
      -2
    ],
    "io_out": [
      -24,
      -12,
      -12,
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(sort_asc(input))),2),3)"
  },
  {
    "input": "input : list = [-2, -2, 5, 3, 5]\noutput : list = [-2, -2, 5, 3, 5]",
    "output": "generated_output : list = reverse(take(reverse([-2, -2, 5, 3, 5]),24))",
    "io_inp": [
      -2,
      -2,
      5,
      3,
      5
    ],
    "io_out": [
      -2,
      -2,
      5,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),24))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(sort_des([4, 1])))),4)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(sort_des(input)))),4)"
  },
  {
    "input": "input : list = [2, 4, -4, 1, 4]\noutput : list = [8, -2, -4, -8, -8]",
    "output": "generated_output : list = sort_des(mul_n(reverse([2, 4, -4, 1, 4]),-2))",
    "io_inp": [
      2,
      4,
      -4,
      1,
      4
    ],
    "io_out": [
      8,
      -2,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [-11, -3, -2]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_asc([3, 4, -5]),4),2)))",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      -11,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_asc(input),4),2)))"
  },
  {
    "input": "input : list = [3, 0, 0, -3, -1]\noutput : list = [4, 1, 1, -2, 0]",
    "output": "generated_output : list = add_n([3, 0, 0, -3, -1],1)",
    "io_inp": [
      3,
      0,
      0,
      -3,
      -1
    ],
    "io_out": [
      4,
      1,
      1,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [0, -5, -9]",
    "output": "generated_output : list = add_n(sort_des([0, -4, 5]),-5)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      0,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-3, -2, 5, -4, -4, 0]\noutput : list = [0, 32, 32, -40, 16, 24]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(mul_n([-3, -2, 5, -4, -4, 0],-2),-4),-1)),36)",
    "io_inp": [
      -3,
      -2,
      5,
      -4,
      -4,
      0
    ],
    "io_out": [
      0,
      32,
      32,
      -40,
      16,
      24
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(mul_n(input,-2),-4),-1)),36)"
  },
  {
    "input": "input : list = [-3, -4, 4, 0]\noutput : list = [-36, -84, 12, 0]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(reverse([-3, -4, 4, 0]),1),-3),-3),4)",
    "io_inp": [
      -3,
      -4,
      4,
      0
    ],
    "io_out": [
      -36,
      -84,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(reverse(input),1),-3),-3),4)"
  },
  {
    "input": "input : list = [5, -3, -4, -5, 4]\noutput : list = [5, 4, -3, -4, -5]",
    "output": "generated_output : list = sort_des([5, -3, -4, -5, 4])",
    "io_inp": [
      5,
      -3,
      -4,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, 5, 1]\noutput : list = [-1, 3, 2, 2]",
    "output": "generated_output : list = take(reverse(sub_n(add_n([4, 4, 5, 1],-1),1)),36)",
    "io_inp": [
      4,
      4,
      5,
      1
    ],
    "io_out": [
      -1,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(input,-1),1)),36)"
  },
  {
    "input": "input : list = [5, 5, 2, 2, 5, 2]\noutput : list = [-20, -20, -8, -8]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(take([5, 5, 2, 2, 5, 2],4)),-4)),39)",
    "io_inp": [
      5,
      5,
      2,
      2,
      5,
      2
    ],
    "io_out": [
      -20,
      -20,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(take(input,4)),-4)),39)"
  },
  {
    "input": "input : list = [-4, 5, 0, -3]\noutput : list = [5, 0, -3, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(take(sort_asc([-4, 5, 0, -3]),22))),16)",
    "io_inp": [
      -4,
      5,
      0,
      -3
    ],
    "io_out": [
      5,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(sort_asc(input),22))),16)"
  },
  {
    "input": "input : list = [-2, 0, -3, 0, -1, 3]\noutput : list = [3, 0, 0, -1, -2, -3]",
    "output": "generated_output : list = sort_des([-2, 0, -3, 0, -1, 3])",
    "io_inp": [
      -2,
      0,
      -3,
      0,
      -1,
      3
    ],
    "io_out": [
      3,
      0,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 4, 0, -5, -1, -2]\noutput : list = [8, 4, 3, 2, 1, -1]",
    "output": "generated_output : list = sort_des(sub_n([-3, 4, 0, -5, -1, -2],-4))",
    "io_inp": [
      -3,
      4,
      0,
      -5,
      -1,
      -2
    ],
    "io_out": [
      8,
      4,
      3,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [4, -2, 2, -3, 3]\noutput : list = [8, 7, 6, 2, 1]",
    "output": "generated_output : list = add_n(sort_des([4, -2, 2, -3, 3]),4)",
    "io_inp": [
      4,
      -2,
      2,
      -3,
      3
    ],
    "io_out": [
      8,
      7,
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [3, 1, -4, 5]\noutput : list = [32, 12, 4, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n(add_n([3, 1, -4, 5],-4),-4))))",
    "io_inp": [
      3,
      1,
      -4,
      5
    ],
    "io_out": [
      32,
      12,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(add_n(input,-4),-4))))"
  },
  {
    "input": "input : list = [-1, 5, 5, 2, -5]\noutput : list = [5, 5, 2, -1, -5]",
    "output": "generated_output : list = sort_des([-1, 5, 5, 2, -5])",
    "io_inp": [
      -1,
      5,
      5,
      2,
      -5
    ],
    "io_out": [
      5,
      5,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [8, 7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sort_des([3, 4])),-4)))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [0, 2, 0, -5, -3, 5]\noutput : list = [0, 4, 0, -10, -6, 10]",
    "output": "generated_output : list = mul_n([0, 2, 0, -5, -3, 5],2)",
    "io_inp": [
      0,
      2,
      0,
      -5,
      -3,
      5
    ],
    "io_out": [
      0,
      4,
      0,
      -10,
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, 3, -3, 0, 1]\noutput : list = [0, 8, 12, 24, 24]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(mul_n([-3, 3, -3, 0, 1],1),-3))),-4)",
    "io_inp": [
      -3,
      3,
      -3,
      0,
      1
    ],
    "io_out": [
      0,
      8,
      12,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(mul_n(input,1),-3))),-4)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-40, -35]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(reverse([3, 4]),1)),3),-5)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -40,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(reverse(input),1)),3),-5)"
  },
  {
    "input": "input : list = [1, 5, 3, 2]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_des(take([1, 5, 3, 2],1)),3),-4))",
    "io_inp": [
      1,
      5,
      3,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_des(take(input,1)),3),-4))"
  },
  {
    "input": "input : list = [4, -4, 0, -5, -1, 5]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(take([4, -4, 0, -5, -1, 5],1),-2),1)))",
    "io_inp": [
      4,
      -4,
      0,
      -5,
      -1,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(take(input,1),-2),1)))"
  },
  {
    "input": "input : list = [2, -3, -3, 3, 1]\noutput : list = [4, 3, 2, -2, -2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des([2, -3, -3, 3, 1])),-2),-1))",
    "io_inp": [
      2,
      -3,
      -3,
      3,
      1
    ],
    "io_out": [
      4,
      3,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des(input)),-2),-1))"
  },
  {
    "input": "input : list = [-5, 2, 3]\noutput : list = [4]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(take([-5, 2, 3],1),3)),-1),-1)",
    "io_inp": [
      -5,
      2,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(take(input,1),3)),-1),-1)"
  },
  {
    "input": "input : list = [4, 1, 0, 4, -5]\noutput : list = [28, 28, 10, 4, -26]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(mul_n([4, 1, 0, 4, -5],-3),-2),-4)))",
    "io_inp": [
      4,
      1,
      0,
      4,
      -5
    ],
    "io_out": [
      28,
      28,
      10,
      4,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(mul_n(input,-3),-2),-4)))"
  },
  {
    "input": "input : list = [1, 5, -1, -2]\noutput : list = [5, 9, 3, 2]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse([1, 5, -1, -2]),1)),-4)",
    "io_inp": [
      1,
      5,
      -1,
      -2
    ],
    "io_out": [
      5,
      9,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(input),1)),-4)"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-6, -6, -7]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-4, -3, -3],-3)))",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-3)))"
  },
  {
    "input": "input : list = [-1, -4, -4, 1, -2, 1]\noutput : list = [-2, -8, -8, 2, -4, 2]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(sub_n([-1, -4, -4, 1, -2, 1],-5),2),-2),-5),2)",
    "io_inp": [
      -1,
      -4,
      -4,
      1,
      -2,
      1
    ],
    "io_out": [
      -2,
      -8,
      -8,
      2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(sub_n(input,-5),2),-2),-5),2)"
  },
  {
    "input": "input : list = [5, 2, 4, 5, -4]\noutput : list = [-18, 0, 6, 9, 9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_des([5, 2, 4, 5, -4]),3),-2)),4)",
    "io_inp": [
      5,
      2,
      4,
      5,
      -4
    ],
    "io_out": [
      -18,
      0,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_des(input),3),-2)),4)"
  },
  {
    "input": "input : list = [-3, 3, -1, -5, 1]\noutput : list = [-1, 1, 3, 5, 7]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(reverse([-3, 3, -1, -5, 1])),-4)),21)",
    "io_inp": [
      -3,
      3,
      -1,
      -5,
      1
    ],
    "io_out": [
      -1,
      1,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(reverse(input)),-4)),21)"
  },
  {
    "input": "input : list = [2, 0, 5, 0, -5, 2]\noutput : list = [55, 40, 40, 30, 30, 5]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n([2, 0, 5, 0, -5, 2],4))),-2),5)",
    "io_inp": [
      2,
      0,
      5,
      0,
      -5,
      2
    ],
    "io_out": [
      55,
      40,
      40,
      30,
      30,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n(input,4))),-2),5)"
  },
  {
    "input": "input : list = [2, 1, 1, -3, 2]\noutput : list = [10, -6, -6, -10, -10]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(mul_n([2, 1, 1, -3, 2],-4)),3),5),25)",
    "io_inp": [
      2,
      1,
      1,
      -3,
      2
    ],
    "io_out": [
      10,
      -6,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(mul_n(input,-4)),3),5),25)"
  },
  {
    "input": "input : list = [-2, 2, 0, 3, 1, 2]\noutput : list = [5, 4, 6, 3, 5, 1]",
    "output": "generated_output : list = take(sub_n(add_n(reverse([-2, 2, 0, 3, 1, 2]),-2),-5),35)",
    "io_inp": [
      -2,
      2,
      0,
      3,
      1,
      2
    ],
    "io_out": [
      5,
      4,
      6,
      3,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(input),-2),-5),35)"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [8]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take([5, 5, -5],1)),-3)))",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take(input,1)),-3)))"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-4, 16, 36]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(reverse([-5, 0, 5])),-4)),4)",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -4,
      16,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(reverse(input)),-4)),4)"
  },
  {
    "input": "input : list = [5, 2, -5, -4, -3]\noutput : list = [8, 7, 6, 13, 16]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sub_n([5, 2, -5, -4, -3],-5),14)),5),-1)",
    "io_inp": [
      5,
      2,
      -5,
      -4,
      -3
    ],
    "io_out": [
      8,
      7,
      6,
      13,
      16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sub_n(input,-5),14)),5),-1)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(add_n([4, 3, -1],-2),11),3),5))",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(add_n(input,-2),11),3),5))"
  },
  {
    "input": "input : list = [4, 2, -3, 0]\noutput : list = [-15, -7, 1, 13]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n([4, 2, -3, 0],-4),3)),4))",
    "io_inp": [
      4,
      2,
      -3,
      0
    ],
    "io_out": [
      -15,
      -7,
      1,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n(input,-4),3)),4))"
  },
  {
    "input": "input : list = [-1, 0, 3, -1, 3, 4]\noutput : list = [8, 0, -24]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(take([-1, 0, 3, -1, 3, 4],3)),-4)),2)",
    "io_inp": [
      -1,
      0,
      3,
      -1,
      3,
      4
    ],
    "io_out": [
      8,
      0,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(take(input,3)),-4)),2)"
  },
  {
    "input": "input : list = [3, 3, -4, 3, 1]\noutput : list = [-3, 2, 4, 4]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(drop([3, 3, -4, 3, 1],1))),11),-1)",
    "io_inp": [
      3,
      3,
      -4,
      3,
      1
    ],
    "io_out": [
      -3,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(drop(input,1))),11),-1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-12, -4]",
    "output": "generated_output : list = add_n(reverse(sub_n([5, -3],4)),-5)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -12,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,4)),-5)"
  },
  {
    "input": "input : list = [1, -2, -1, 5, 0, -4]\noutput : list = [-12, -10, -9, -8, -7, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([1, -2, -1, 5, 0, -4]),3),-5)",
    "io_inp": [
      1,
      -2,
      -1,
      5,
      0,
      -4
    ],
    "io_out": [
      -12,
      -10,
      -9,
      -8,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),3),-5)"
  },
  {
    "input": "input : list = [-5, 0, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = drop([-5, 0, -4, -4],2)",
    "io_inp": [
      -5,
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, -5, -5, 0, 4]\noutput : list = [8, 4, -1, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sub_n([-5, -5, -5, 0, 4],-4)))))",
    "io_inp": [
      -5,
      -5,
      -5,
      0,
      4
    ],
    "io_out": [
      8,
      4,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [3, -5, -1, 1]\noutput : list = [3, -5]",
    "output": "generated_output : list = take([3, -5, -1, 1],2)",
    "io_inp": [
      3,
      -5,
      -1,
      1
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -3, 1, -5, 3, 3]\noutput : list = [-26, -21, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(take([-4, -3, 1, -5, 3, 3],3),17),5),5),-1)",
    "io_inp": [
      -4,
      -3,
      1,
      -5,
      3,
      3
    ],
    "io_out": [
      -26,
      -21,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(take(input,3),17),5),5),-1)"
  },
  {
    "input": "input : list = [-4, 1, 3, -2]\noutput : list = [-9, -14]",
    "output": "generated_output : list = add_n(reverse(add_n(take(take([-4, 1, 3, -2],2),2),-5)),-5)",
    "io_inp": [
      -4,
      1,
      3,
      -2
    ],
    "io_out": [
      -9,
      -14
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(take(input,2),2),-5)),-5)"
  },
  {
    "input": "input : list = [2, 5, -5, 3, 2, -3]\noutput : list = [6, 9, -1, 7, 6, 1]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n([2, 5, -5, 3, 2, -3],1),-2),-3),5)",
    "io_inp": [
      2,
      5,
      -5,
      3,
      2,
      -3
    ],
    "io_out": [
      6,
      9,
      -1,
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(input,1),-2),-3),5)"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [2, 2, -5]",
    "output": "generated_output : list = take(take(mul_n(reverse(reverse([2, 2, -5])),1),4),29)",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(reverse(input)),1),4),29)"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(drop([1, -2, -2],1))",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = reverse(sort_des([2, 4]))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -5, -4, 0]\noutput : list = [-12, -24, -27, -15]",
    "output": "generated_output : list = mul_n(reverse(take(take(add_n([-1, -5, -4, 0],-4),17),16)),3)",
    "io_inp": [
      -1,
      -5,
      -4,
      0
    ],
    "io_out": [
      -12,
      -24,
      -27,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(add_n(input,-4),17),16)),3)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [4, 0, 0]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(add_n([1, 1, -3],-1)),17),-1))",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(add_n(input,-1)),17),-1))"
  },
  {
    "input": "input : list = [3, -4, 3, 5, -4]\noutput : list = [5, 3, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(drop([3, -4, 3, 5, -4],1)))",
    "io_inp": [
      3,
      -4,
      3,
      5,
      -4
    ],
    "io_out": [
      5,
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [-5, 4, -1]",
    "output": "generated_output : list = reverse(reverse([-5, 4, -1]))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      -5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, -5, -5, 3, 1, 0]\noutput : list = [-25]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([-5, -5, -5, 3, 1, 0],2),1),5)))",
    "io_inp": [
      -5,
      -5,
      -5,
      3,
      1,
      0
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,2),1),5)))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [0, -1]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sub_n([-4, -3],-2)),-1),-1),-1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sub_n(input,-2)),-1),-1),-1)"
  },
  {
    "input": "input : list = [2, 1, 4, 0, -1, 1]\noutput : list = [4, 2, 1, 1, 0, -1]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sort_asc([2, 1, 4, 0, -1, 1]))),1),33)",
    "io_inp": [
      2,
      1,
      4,
      0,
      -1,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sort_asc(input))),1),33)"
  },
  {
    "input": "input : list = [-1, 1, -4, 1, 4, 2]\noutput : list = [-1, -3, -4, -4, -6, -9]",
    "output": "generated_output : list = sort_des(sub_n([-1, 1, -4, 1, 4, 2],5))",
    "io_inp": [
      -1,
      1,
      -4,
      1,
      4,
      2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -4,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [9, 6]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(reverse([5, 2]))),-4),12)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(reverse(input))),-4),12)"
  },
  {
    "input": "input : list = [5, 1, 4, -4, 4]\noutput : list = [-4, -8, -5, -13, -5]",
    "output": "generated_output : list = take(sub_n(add_n([5, 1, 4, -4, 4],-5),4),18)",
    "io_inp": [
      5,
      1,
      4,
      -4,
      4
    ],
    "io_out": [
      -4,
      -8,
      -5,
      -13,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-5),4),18)"
  },
  {
    "input": "input : list = [1, -4, -3, 5, -1, -4]\noutput : list = [5, 1, -1, -3, -4, -4]",
    "output": "generated_output : list = sort_des([1, -4, -3, 5, -1, -4])",
    "io_inp": [
      1,
      -4,
      -3,
      5,
      -1,
      -4
    ],
    "io_out": [
      5,
      1,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, 4, 5]\noutput : list = [-5, -5, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sort_des([5, 4, 4, 5]),4),-5)))",
    "io_inp": [
      5,
      4,
      4,
      5
    ],
    "io_out": [
      -5,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sort_des(input),4),-5)))"
  },
  {
    "input": "input : list = [-1, 1, 4, 5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = mul_n(take(sort_des(take(mul_n([-1, 1, 4, 5],-1),2)),32),-3)",
    "io_inp": [
      -1,
      1,
      4,
      5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(mul_n(input,-1),2)),32),-3)"
  },
  {
    "input": "input : list = [-5, -4, 3, 4, 0]\noutput : list = [26, 23, 11, 2, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n([-5, -4, 3, 4, 0],3),-3))),2)",
    "io_inp": [
      -5,
      -4,
      3,
      4,
      0
    ],
    "io_out": [
      26,
      23,
      11,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n(input,3),-3))),2)"
  },
  {
    "input": "input : list = [3, -5, -3, 0]\noutput : list = [26, 16, 1, -14]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(sort_des([3, -5, -3, 0])),-5),-5),4)",
    "io_inp": [
      3,
      -5,
      -3,
      0
    ],
    "io_out": [
      26,
      16,
      1,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(sort_des(input)),-5),-5),4)"
  },
  {
    "input": "input : list = [-1, -2, -2, -1, 5]\noutput : list = [-9, -6]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(take([-1, -2, -2, -1, 5],2),1),3),17))",
    "io_inp": [
      -1,
      -2,
      -2,
      -1,
      5
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(take(input,2),1),3),17))"
  },
  {
    "input": "input : list = [-1, 2, -5, 3, -4, 4]\noutput : list = [-6, -5, -2, 1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse([-1, 2, -5, 3, -4, 4]),-5)),-4)",
    "io_inp": [
      -1,
      2,
      -5,
      3,
      -4,
      4
    ],
    "io_out": [
      -6,
      -5,
      -2,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(input),-5)),-4)"
  },
  {
    "input": "input : list = [1, -5, -1, 1]\noutput : list = [6, 6, 4, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(reverse([1, -5, -1, 1]),5))))",
    "io_inp": [
      1,
      -5,
      -1,
      1
    ],
    "io_out": [
      6,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-5, 3, -4, -1, -2]\noutput : list = [-6, 2, -5, -2, -3]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(reverse([-5, 3, -4, -1, -2])))),1)",
    "io_inp": [
      -5,
      3,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -6,
      2,
      -5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(reverse(input)))),1)"
  },
  {
    "input": "input : list = [1, 1, -4, -4, -1]\noutput : list = [-4, -4, -1, 1, 1]",
    "output": "generated_output : list = sort_asc([1, 1, -4, -4, -1])",
    "io_inp": [
      1,
      1,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-2, -1, -1]",
    "output": "generated_output : list = reverse(reverse(reverse(take(reverse([-2, -1, -1]),10))))",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(reverse(input),10))))"
  },
  {
    "input": "input : list = [5, 0, -1, 5]\noutput : list = [-3, -9, -8, -3]",
    "output": "generated_output : list = add_n(take(add_n(reverse([5, 0, -1, 5]),-3),9),-5)",
    "io_inp": [
      5,
      0,
      -1,
      5
    ],
    "io_out": [
      -3,
      -9,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(input),-3),9),-5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [7, 7]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_asc([2, 2])),-5)))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-7, 0]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sub_n([-5, 2],2))),19),31)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sub_n(input,2))),19),31)"
  },
  {
    "input": "input : list = [2, 4, 5, -4, -1, 3]\noutput : list = [6, -2, -8, 10]",
    "output": "generated_output : list = reverse(mul_n(take(drop([2, 4, 5, -4, -1, 3],2),18),2))",
    "io_inp": [
      2,
      4,
      5,
      -4,
      -1,
      3
    ],
    "io_out": [
      6,
      -2,
      -8,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(drop(input,2),18),2))"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [-25, -20, 0]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_asc(add_n([3, 2, -2],2)),8)),-5)",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      -25,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_asc(add_n(input,2)),8)),-5)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sub_n([4, -2],-1),5),1)),1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sub_n(input,-1),5),1)),1)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [8, -16]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(sub_n([-2, 4],2))),4),14)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(sub_n(input,2))),4),14)"
  },
  {
    "input": "input : list = [-2, 0, 1, -1, 4]\noutput : list = [4, 1, 0, -1, -2]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(sort_asc([-2, 0, 1, -1, 4])))),48)",
    "io_inp": [
      -2,
      0,
      1,
      -1,
      4
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(sort_asc(input)))),48)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-7, -7]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(sort_asc([-2, -2]),-5))),36)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(sort_asc(input),-5))),36)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-8, 2]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_asc([3, -2]),-1),-2)),26)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_asc(input),-1),-2)),26)"
  },
  {
    "input": "input : list = [-1, -4, 0, -3]\noutput : list = [0, -1, -3, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc([-1, -4, 0, -3]),21))",
    "io_inp": [
      -1,
      -4,
      0,
      -3
    ],
    "io_out": [
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),21))"
  },
  {
    "input": "input : list = [-3, 4, 2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(take([-3, 4, 2],1)),22)))",
    "io_inp": [
      -3,
      4,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(take(input,1)),22)))"
  },
  {
    "input": "input : list = [2, -4, -2, 5, -2, 4]\noutput : list = [14, 11, 5, -7, -7, -13]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc([2, -4, -2, 5, -2, 4]),3))),-1)",
    "io_inp": [
      2,
      -4,
      -2,
      5,
      -2,
      4
    ],
    "io_out": [
      14,
      11,
      5,
      -7,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc(input),3))),-1)"
  },
  {
    "input": "input : list = [-4, 3, 4, -2]\noutput : list = [17, 9, -11, -15]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(reverse([-4, 3, 4, -2]))),-4),-1)",
    "io_inp": [
      -4,
      3,
      4,
      -2
    ],
    "io_out": [
      17,
      9,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(reverse(input))),-4),-1)"
  },
  {
    "input": "input : list = [3, -3, -3, -3]\noutput : list = [-2, -2, -2, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(sort_asc([3, -3, -3, -3]),-1))))",
    "io_inp": [
      3,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [0, -1, -1, 1]\noutput : list = [-5, -6, -6, -4]",
    "output": "generated_output : list = add_n([0, -1, -1, 1],-5)",
    "io_inp": [
      0,
      -1,
      -1,
      1
    ],
    "io_out": [
      -5,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [3, -1, -5, 4, 5, -3]\noutput : list = [32, 16, 0]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(take([3, -1, -5, 4, 5, -3],3),-3),-4)),11)",
    "io_inp": [
      3,
      -1,
      -5,
      4,
      5,
      -3
    ],
    "io_out": [
      32,
      16,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(take(input,3),-3),-4)),11)"
  },
  {
    "input": "input : list = [2, 3, -2, -5]\noutput : list = [3, 2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc([2, 3, -2, -5]))",
    "io_inp": [
      2,
      3,
      -2,
      -5
    ],
    "io_out": [
      3,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -1, -5, 3, 5, 0]\noutput : list = [22, 12, 2, -3, -8, -28]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(mul_n([1, -1, -5, 3, 5, 0],5),-3))))",
    "io_inp": [
      1,
      -1,
      -5,
      3,
      5,
      0
    ],
    "io_out": [
      22,
      12,
      2,
      -3,
      -8,
      -28
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(mul_n(input,5),-3))))"
  },
  {
    "input": "input : list = [-4, 0, -5, 5, -2]\noutput : list = [0, -20, -25]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(take([-4, 0, -5, 5, -2],3),5))))",
    "io_inp": [
      -4,
      0,
      -5,
      5,
      -2
    ],
    "io_out": [
      0,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(take(input,3),5))))"
  },
  {
    "input": "input : list = [3, -1, 0]\noutput : list = [6, 3, 2]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n([3, -1, 0],3))),1)",
    "io_inp": [
      3,
      -1,
      0
    ],
    "io_out": [
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(input,3))),1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = sub_n([4, 3],-2)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, -4, 2, 2, 3]\noutput : list = [12, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(take([1, -4, 2, 2, 3],2)),-3)))",
    "io_inp": [
      1,
      -4,
      2,
      2,
      3
    ],
    "io_out": [
      12,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(take(input,2)),-3)))"
  },
  {
    "input": "input : list = [0, 3, 4, -3, -2, -5]\noutput : list = [4, 13, 16, -5, -2, -11]",
    "output": "generated_output : list = sub_n(mul_n([0, 3, 4, -3, -2, -5],3),-4)",
    "io_inp": [
      0,
      3,
      4,
      -3,
      -2,
      -5
    ],
    "io_out": [
      4,
      13,
      16,
      -5,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),-4)"
  },
  {
    "input": "input : list = [-5, 1, -5, -3, -3]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(drop([-5, 1, -5, -3, -3],2)),34),-3))",
    "io_inp": [
      -5,
      1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(drop(input,2)),34),-3))"
  },
  {
    "input": "input : list = [3, 2, 0, 0, -4]\noutput : list = [3, 7, 7, 9, 10]",
    "output": "generated_output : list = take(add_n(add_n(reverse(sub_n([3, 2, 0, 0, -4],-4)),5),-2),52)",
    "io_inp": [
      3,
      2,
      0,
      0,
      -4
    ],
    "io_out": [
      3,
      7,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(sub_n(input,-4)),5),-2),52)"
  },
  {
    "input": "input : list = [-3, -5, 2, 5, 5, -2]\noutput : list = [6, 6, 3, -1, -2, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(reverse([-3, -5, 2, 5, 5, -2]),4)),-3))",
    "io_inp": [
      -3,
      -5,
      2,
      5,
      5,
      -2
    ],
    "io_out": [
      6,
      6,
      3,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(reverse(input),4)),-3))"
  },
  {
    "input": "input : list = [0, 4, -5, -1]\noutput : list = [16, 8]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sub_n([0, 4, -5, -1],3)),2),3),-2)",
    "io_inp": [
      0,
      4,
      -5,
      -1
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sub_n(input,3)),2),3),-2)"
  },
  {
    "input": "input : list = [1, 5, 5]\noutput : list = [4, 8, 8]",
    "output": "generated_output : list = sort_asc(add_n([1, 5, 5],3))",
    "io_inp": [
      1,
      5,
      5
    ],
    "io_out": [
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [9, -15, -12]",
    "output": "generated_output : list = mul_n([-3, 5, 4],-3)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      9,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 0, 5, -2]\noutput : list = [8, 3, 2, 1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc([-1, 0, 5, -2]),-2)),-1)",
    "io_inp": [
      -1,
      0,
      5,
      -2
    ],
    "io_out": [
      8,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(input),-2)),-1)"
  },
  {
    "input": "input : list = [-1, 0, 5]\noutput : list = [-1, 0, 5]",
    "output": "generated_output : list = take(reverse(reverse(reverse(reverse([-1, 0, 5])))),38)",
    "io_inp": [
      -1,
      0,
      5
    ],
    "io_out": [
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(reverse(input)))),38)"
  },
  {
    "input": "input : list = [-1, -4, -5, -5, -2]\noutput : list = [-1, -2, -4, -5, -5]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_asc([-1, -4, -5, -5, -2]),2)),2),1)",
    "io_inp": [
      -1,
      -4,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_asc(input),2)),2),1)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(take([-4, -5, 3],1),-1))),-3)",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(take(input,1),-1))),-3)"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [5, 1, 2]",
    "output": "generated_output : list = add_n(reverse(sub_n([2, 1, 5],-3)),-3)",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-3)),-3)"
  },
  {
    "input": "input : list = [-2, 3, 0, 5]\noutput : list = [1, -4, -1, -6]",
    "output": "generated_output : list = take(add_n(reverse([-2, 3, 0, 5]),-4),8)",
    "io_inp": [
      -2,
      3,
      0,
      5
    ],
    "io_out": [
      1,
      -4,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),-4),8)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [12, 8, -12]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-3, 3, 2])),4)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      12,
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-3, 5, -5, 1]\noutput : list = [5, 1, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(sort_des([-3, 5, -5, 1]),3))))",
    "io_inp": [
      -3,
      5,
      -5,
      1
    ],
    "io_out": [
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(sort_des(input),3))))"
  },
  {
    "input": "input : list = [2, -5, 5, -3]\noutput : list = [-5, 5, -3]",
    "output": "generated_output : list = take(drop([2, -5, 5, -3],1),7)",
    "io_inp": [
      2,
      -5,
      5,
      -3
    ],
    "io_out": [
      -5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),7)"
  },
  {
    "input": "input : list = [-3, 5, -3, 1, 5, 1]\noutput : list = [-16, -16, -4, -4, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_asc([-3, 5, -3, 1, 5, 1]),-3),1)))",
    "io_inp": [
      -3,
      5,
      -3,
      1,
      5,
      1
    ],
    "io_out": [
      -16,
      -16,
      -4,
      -4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_asc(input),-3),1)))"
  },
  {
    "input": "input : list = [-3, -3, 3, 2]\noutput : list = [-6, -6, 4, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(sort_des([-3, -3, 3, 2]),5)),2))",
    "io_inp": [
      -3,
      -3,
      3,
      2
    ],
    "io_out": [
      -6,
      -6,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(sort_des(input),5)),2))"
  },
  {
    "input": "input : list = [5, 4, 5, 5, -2]\noutput : list = [22, 20, 22, 22, 8]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(add_n([5, 4, 5, 5, -2],1),2),4),-2),-4)",
    "io_inp": [
      5,
      4,
      5,
      5,
      -2
    ],
    "io_out": [
      22,
      20,
      22,
      22,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(add_n(input,1),2),4),-2),-4)"
  },
  {
    "input": "input : list = [1, -4, -3, -4]\noutput : list = [1, -3, -4, -4]",
    "output": "generated_output : list = sort_des([1, -4, -3, -4])",
    "io_inp": [
      1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5, 5, 4, -1]\noutput : list = [-3, 0, 0, -1, -6]",
    "output": "generated_output : list = add_n([2, 5, 5, 4, -1],-5)",
    "io_inp": [
      2,
      5,
      5,
      4,
      -1
    ],
    "io_out": [
      -3,
      0,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 3, 3, 4, -3]\noutput : list = [15, 11, 11, -13, -21]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(mul_n([-5, 3, 3, 4, -3],-4))),-1),1)",
    "io_inp": [
      -5,
      3,
      3,
      4,
      -3
    ],
    "io_out": [
      15,
      11,
      11,
      -13,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(mul_n(input,-4))),-1),1)"
  },
  {
    "input": "input : list = [1, 2, 2, 4]\noutput : list = [11, 3, 3, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(add_n([1, 2, 2, 4],-1),4))),-1)",
    "io_inp": [
      1,
      2,
      2,
      4
    ],
    "io_out": [
      11,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(add_n(input,-1),4))),-1)"
  },
  {
    "input": "input : list = [1, 2, 1, 2, 2, -5]\noutput : list = [-2, -3, -2, -3, -3, 4]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(add_n([1, 2, 1, 2, 2, -5],2)),-1),-1))",
    "io_inp": [
      1,
      2,
      1,
      2,
      2,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -2,
      -3,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(add_n(input,2)),-1),-1))"
  },
  {
    "input": "input : list = [5, 2, 0, -3, 2, -4]\noutput : list = [25, 10, 0, -15, 10, -20]",
    "output": "generated_output : list = mul_n(mul_n([5, 2, 0, -3, 2, -4],1),5)",
    "io_inp": [
      5,
      2,
      0,
      -3,
      2,
      -4
    ],
    "io_out": [
      25,
      10,
      0,
      -15,
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),5)"
  },
  {
    "input": "input : list = [-4, -1, 0, 1, -2]\noutput : list = [-5, -10, -15, -20, -30]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(add_n([-4, -1, 0, 1, -2],-2),5))),43)",
    "io_inp": [
      -4,
      -1,
      0,
      1,
      -2
    ],
    "io_out": [
      -5,
      -10,
      -15,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(add_n(input,-2),5))),43)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [12, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_des([-3, 0]),-3)),-4),1)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      12,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_des(input),-3)),-4),1)"
  },
  {
    "input": "input : list = [-2, -1, 3, 1]\noutput : list = [-2, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([-2, -1, 3, 1])",
    "io_inp": [
      -2,
      -1,
      3,
      1
    ],
    "io_out": [
      -2,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2, -1, -5, -3]\noutput : list = [-6, 6]",
    "output": "generated_output : list = mul_n(take([-2, 2, -1, -5, -3],2),3)",
    "io_inp": [
      -2,
      2,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),3)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = reverse(sort_des(drop([-4, -2, 0],1)))",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [5, 4, 2, -1]\noutput : list = [3, 6, 8, 9]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sub_n([5, 4, 2, -1],1),4)),-2),1)",
    "io_inp": [
      5,
      4,
      2,
      -1
    ],
    "io_out": [
      3,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sub_n(input,1),4)),-2),1)"
  },
  {
    "input": "input : list = [4, -5, 2, -1]\noutput : list = [-9, -5, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([4, -5, 2, -1],-4)))",
    "io_inp": [
      4,
      -5,
      2,
      -1
    ],
    "io_out": [
      -9,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [3, -3, -5, 5, 5, -4]\noutput : list = [-12, -12, -8, 4, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(mul_n([3, -3, -5, 5, 5, -4],-2)),2)))",
    "io_inp": [
      3,
      -3,
      -5,
      5,
      5,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -8,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(mul_n(input,-2)),2)))"
  },
  {
    "input": "input : list = [-3, 5, -2, 5]\noutput : list = [5, -2, 5, -3]",
    "output": "generated_output : list = reverse([-3, 5, -2, 5])",
    "io_inp": [
      -3,
      5,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0, -2, 5, -4]\noutput : list = [-3, 1, -1, 6, -3]",
    "output": "generated_output : list = add_n([-4, 0, -2, 5, -4],1)",
    "io_inp": [
      -4,
      0,
      -2,
      5,
      -4
    ],
    "io_out": [
      -3,
      1,
      -1,
      6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(take([0, 2, 1],1)),-2)),-5)",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(take(input,1)),-2)),-5)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [0, 9]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([5, -4]),2),-2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),2),-2)"
  },
  {
    "input": "input : list = [-3, -5, -5, -4, -4, 1]\noutput : list = [1, -3, -4, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-3, -5, -5, -4, -4, 1])",
    "io_inp": [
      -3,
      -5,
      -5,
      -4,
      -4,
      1
    ],
    "io_out": [
      1,
      -3,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4, -4, -5, 0, 3]\noutput : list = [2, 4, -4, -5, 0, 3]",
    "output": "generated_output : list = take(add_n(add_n([2, 4, -4, -5, 0, 3],-5),5),16)",
    "io_inp": [
      2,
      4,
      -4,
      -5,
      0,
      3
    ],
    "io_out": [
      2,
      4,
      -4,
      -5,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,-5),5),16)"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(take([0, -3, 2],1)),14)))",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(take(input,1)),14)))"
  },
  {
    "input": "input : list = [-5, 0, -2, -1]\noutput : list = [-28, -24]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(drop([-5, 0, -2, -1],2),-5)),4)",
    "io_inp": [
      -5,
      0,
      -2,
      -1
    ],
    "io_out": [
      -28,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(drop(input,2),-5)),4)"
  },
  {
    "input": "input : list = [4, 2, 5]\noutput : list = [10, 9, 7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([4, 2, 5]),-5))",
    "io_inp": [
      4,
      2,
      5
    ],
    "io_out": [
      10,
      9,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [3, -1, -1, -3, 4]\noutput : list = [3, 2, -2, -2, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des([3, -1, -1, -3, 4])),2),-3)",
    "io_inp": [
      3,
      -1,
      -1,
      -3,
      4
    ],
    "io_out": [
      3,
      2,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(input)),2),-3)"
  },
  {
    "input": "input : list = [-3, -1, -3, 1, -2]\noutput : list = [-120, -120, -70, -20, 80]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(mul_n([-3, -1, -3, 1, -2],5),3)),5),2)",
    "io_inp": [
      -3,
      -1,
      -3,
      1,
      -2
    ],
    "io_out": [
      -120,
      -120,
      -70,
      -20,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(mul_n(input,5),3)),5),2)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n([0, 4],-2),6)),-3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(input,-2),6)),-3)"
  },
  {
    "input": "input : list = [-3, -2, 3, -1, -1, 1]\noutput : list = [1, -1, -1, 3, -2]",
    "output": "generated_output : list = reverse(drop([-3, -2, 3, -1, -1, 1],1))",
    "io_inp": [
      -3,
      -2,
      3,
      -1,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -1, 4, -1, -1]\noutput : list = [2, 2, 7]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(drop([-1, -1, 4, -1, -1],2))),43),-3)",
    "io_inp": [
      -1,
      -1,
      4,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(drop(input,2))),43),-3)"
  },
  {
    "input": "input : list = [2, 5, -1, -5, 5]\noutput : list = [-5, -1, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([2, 5, -1, -5, 5]))",
    "io_inp": [
      2,
      5,
      -1,
      -5,
      5
    ],
    "io_out": [
      -5,
      -1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, -3, -3, -4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(take([4, -3, -3, -4],2))),3))",
    "io_inp": [
      4,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(take(input,2))),3))"
  },
  {
    "input": "input : list = [0, -2, 3, 5, 2]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = sort_asc(take([0, -2, 3, 5, 2],3))",
    "io_inp": [
      0,
      -2,
      3,
      5,
      2
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [5, 5, 0, 3, -4]\noutput : list = [6, 6, 1, 4, -3]",
    "output": "generated_output : list = add_n([5, 5, 0, 3, -4],1)",
    "io_inp": [
      5,
      5,
      0,
      3,
      -4
    ],
    "io_out": [
      6,
      6,
      1,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, 0, 0, 2, -4, 5]\noutput : list = [3, 7, 7, 7, 9, 12]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(add_n([0, 0, 0, 2, -4, 5],3)),4),17))",
    "io_inp": [
      0,
      0,
      0,
      2,
      -4,
      5
    ],
    "io_out": [
      3,
      7,
      7,
      7,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(add_n(input,3)),4),17))"
  },
  {
    "input": "input : list = [-2, 3, -3, -3]\noutput : list = [-3, -3, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 3, -3, -3]))",
    "io_inp": [
      -2,
      3,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, -2, -3, 0]\noutput : list = [-3, -1, 3, 11]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(mul_n([4, -2, -3, 0],2),-5)),-2))",
    "io_inp": [
      4,
      -2,
      -3,
      0
    ],
    "io_out": [
      -3,
      -1,
      3,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(mul_n(input,2),-5)),-2))"
  },
  {
    "input": "input : list = [1, 1, -4, 4]\noutput : list = [0, 10, 10, 16]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sub_n([1, 1, -4, 4],-2),2),-4)))",
    "io_inp": [
      1,
      1,
      -4,
      4
    ],
    "io_out": [
      0,
      10,
      10,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sub_n(input,-2),2),-4)))"
  },
  {
    "input": "input : list = [-3, 2, 2, 5, -3, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take([-3, 2, 2, 5, -3, -4],1),5)))",
    "io_inp": [
      -3,
      2,
      2,
      5,
      -3,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(input,1),5)))"
  },
  {
    "input": "input : list = [-2, -3, 1, 5, -1, 2]\noutput : list = [-60, -65, -45]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(take([-2, -3, 1, 5, -1, 2],3),-4),-3),-3),5)",
    "io_inp": [
      -2,
      -3,
      1,
      5,
      -1,
      2
    ],
    "io_out": [
      -60,
      -65,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(take(input,3),-4),-3),-3),5)"
  },
  {
    "input": "input : list = [-3, 3, -3, -5, -3]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(take([-3, 3, -3, -5, -3],1),8)),-5),1)",
    "io_inp": [
      -3,
      3,
      -3,
      -5,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(take(input,1),8)),-5),1)"
  },
  {
    "input": "input : list = [2, 5, -5, -2, -1]\noutput : list = [-3, 0, 1, 4, 7]",
    "output": "generated_output : list = sort_asc(sub_n([2, 5, -5, -2, -1],-2))",
    "io_inp": [
      2,
      5,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -3,
      0,
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [1, 3, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(mul_n([2, -4, 4],-1),5))))",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      1,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(mul_n(input,-1),5))))"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(take([2, 1, 0],1)),-3)),-5)",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(take(input,1)),-3)),-5)"
  },
  {
    "input": "input : list = [-2, 4, 3, 2, 0, 5]\noutput : list = [-1, -2, -4, 1]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(drop([-2, 4, 3, 2, 0, 5],2),22)),4))",
    "io_inp": [
      -2,
      4,
      3,
      2,
      0,
      5
    ],
    "io_out": [
      -1,
      -2,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(drop(input,2),22)),4))"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [-5, 0, 5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(add_n([0, 5, -5],2)),4),2))",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(add_n(input,2)),4),2))"
  },
  {
    "input": "input : list = [0, 4, -3, -5]\noutput : list = [-5, -3, 4, 0]",
    "output": "generated_output : list = reverse([0, 4, -3, -5])",
    "io_inp": [
      0,
      4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, -3]\noutput : list = [-7, -7, 9]",
    "output": "generated_output : list = reverse(sub_n(mul_n([5, -3, -3],2),1))",
    "io_inp": [
      5,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,2),1))"
  },
  {
    "input": "input : list = [-4, -3, 4, -2, 5]\noutput : list = [5, 4, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc([-4, -3, 4, -2, 5])),8)))",
    "io_inp": [
      -4,
      -3,
      4,
      -2,
      5
    ],
    "io_out": [
      5,
      4,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc(input)),8)))"
  },
  {
    "input": "input : list = [2, -3, 1, -4, 0, -2]\noutput : list = [-2, -3, -4, -6, -7, -8]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(sort_des([2, -3, 1, -4, 0, -2]),1),-4),25),-1)",
    "io_inp": [
      2,
      -3,
      1,
      -4,
      0,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(sort_des(input),1),-4),25),-1)"
  },
  {
    "input": "input : list = [-4, 3, 1, -1]\noutput : list = [1, 4, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(add_n([-4, 3, 1, -1],5)))",
    "io_inp": [
      -4,
      3,
      1,
      -1
    ],
    "io_out": [
      1,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,5)))"
  },
  {
    "input": "input : list = [3, -1, 3, 2, 5, 3]\noutput : list = [-9, 3, -9, -6, -15, -9]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(mul_n([3, -1, 3, 2, 5, 3],-3),3),34),2),-5)",
    "io_inp": [
      3,
      -1,
      3,
      2,
      5,
      3
    ],
    "io_out": [
      -9,
      3,
      -9,
      -6,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(mul_n(input,-3),3),34),2),-5)"
  },
  {
    "input": "input : list = [1, 5, -5, -4, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(drop(mul_n([1, 5, -5, -4, 2, -3],1),4),27)",
    "io_inp": [
      1,
      5,
      -5,
      -4,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(input,1),4),27)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [12, 8]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(sort_des([-4, 0])),-5),-3),-1)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(sort_des(input)),-5),-3),-1)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [3, -9]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n(sort_asc([1, -3]),-2),-4),3),-1)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(sort_asc(input),-2),-4),3),-1)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(reverse(take(drop([3, -5, -1],1),16)))",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(drop(input,1),16)))"
  },
  {
    "input": "input : list = [-2, -4, 2, 3, 1]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(take([-2, -4, 2, 3, 1],1),4))),-3)",
    "io_inp": [
      -2,
      -4,
      2,
      3,
      1
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(take(input,1),4))),-3)"
  },
  {
    "input": "input : list = [1, 3, 0, -2, 0]\noutput : list = [-3, 3, 3, 6, 12]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_des([1, 3, 0, -2, 0])),-3),-1),3)",
    "io_inp": [
      1,
      3,
      0,
      -2,
      0
    ],
    "io_out": [
      -3,
      3,
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_des(input)),-3),-1),3)"
  },
  {
    "input": "input : list = [-5, -5, -4, -5, -3]\noutput : list = [-4, -5, -6, -6, -6]",
    "output": "generated_output : list = take(add_n(sort_des([-5, -5, -4, -5, -3]),-1),19)",
    "io_inp": [
      -5,
      -5,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),-1),19)"
  },
  {
    "input": "input : list = [-2, -4, -4, -3, -1, 5]\noutput : list = [4, -2, -3, -4, -5, -5]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(sub_n([-2, -4, -4, -3, -1, 5],-4),1)),-4),59)",
    "io_inp": [
      -2,
      -4,
      -4,
      -3,
      -1,
      5
    ],
    "io_out": [
      4,
      -2,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(sub_n(input,-4),1)),-4),59)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(add_n([-3, 5],-2)))))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([2, 3, -1]),-1))",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),-1))"
  },
  {
    "input": "input : list = [0, -4, 1, 2, 2]\noutput : list = [2, 6, 7, 8, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(add_n([0, -4, 1, 2, 2],4),-3)),-3),-2)",
    "io_inp": [
      0,
      -4,
      1,
      2,
      2
    ],
    "io_out": [
      2,
      6,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(add_n(input,4),-3)),-3),-2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-14, -14]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(add_n([-1, -1],4),-2),3)),-4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(add_n(input,4),-2),3)),-4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-25, -15]",
    "output": "generated_output : list = mul_n([5, 3],-5)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = drop([-1, -1, 4],1)",
    "io_inp": [
      -1,
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, 4, 5]\noutput : list = [-100, 12, -84, -100]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n([5, -2, 4, 5],-1),-4),1),4)",
    "io_inp": [
      5,
      -2,
      4,
      5
    ],
    "io_out": [
      -100,
      12,
      -84,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(input,-1),-4),1),4)"
  },
  {
    "input": "input : list = [-2, 1, -4, 0]\noutput : list = [-12, -6, -16, -8]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(reverse([-2, 1, -4, 0]),2),-4)),-4)",
    "io_inp": [
      -2,
      1,
      -4,
      0
    ],
    "io_out": [
      -12,
      -6,
      -16,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(reverse(input),2),-4)),-4)"
  },
  {
    "input": "input : list = [-4, 4, 5, -1, 4, -1]\noutput : list = [5, 4, 4, -1, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des([-4, 4, 5, -1, 4, -1])))))",
    "io_inp": [
      -4,
      4,
      5,
      -1,
      4,
      -1
    ],
    "io_out": [
      5,
      4,
      4,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, -5, 5, -2, 5]\noutput : list = [3, 3, 9, 24, 33]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n([3, -5, 5, -2, 5],-2)),-4),-3)",
    "io_inp": [
      3,
      -5,
      5,
      -2,
      5
    ],
    "io_out": [
      3,
      3,
      9,
      24,
      33
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(input,-2)),-4),-3)"
  },
  {
    "input": "input : list = [-3, 3, -2, 1, 0, -3]\noutput : list = [7, 7, 3, -5, -9, -17]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(mul_n([-3, 3, -2, 1, 0, -3],-4)))),-5)",
    "io_inp": [
      -3,
      3,
      -2,
      1,
      0,
      -3
    ],
    "io_out": [
      7,
      7,
      3,
      -5,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(mul_n(input,-4)))),-5)"
  },
  {
    "input": "input : list = [5, -1, 0, 0, 3, -3]\noutput : list = [13, 9, 3, 3, 1, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n(sort_asc([5, -1, 0, 0, 3, -3]),2)),21),-3)",
    "io_inp": [
      5,
      -1,
      0,
      0,
      3,
      -3
    ],
    "io_out": [
      13,
      9,
      3,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(sort_asc(input),2)),21),-3)"
  },
  {
    "input": "input : list = [-4, -3, 4, -3]\noutput : list = [48, 36, -48, 36]",
    "output": "generated_output : list = mul_n(mul_n([-4, -3, 4, -3],-4),3)",
    "io_inp": [
      -4,
      -3,
      4,
      -3
    ],
    "io_out": [
      48,
      36,
      -48,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),3)"
  },
  {
    "input": "input : list = [5, 2, -1, 0, 3, -1]\noutput : list = [5, 10, 10]",
    "output": "generated_output : list = mul_n(add_n(drop(sort_des(reverse([5, 2, -1, 0, 3, -1])),3),-1),-5)",
    "io_inp": [
      5,
      2,
      -1,
      0,
      3,
      -1
    ],
    "io_out": [
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(sort_des(reverse(input)),3),-1),-5)"
  },
  {
    "input": "input : list = [3, -3, 4, 2, -5, -1]\noutput : list = [16, 12, 8, -4, -12, -20]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(sort_des([3, -3, 4, 2, -5, -1]),4))))",
    "io_inp": [
      3,
      -3,
      4,
      2,
      -5,
      -1
    ],
    "io_out": [
      16,
      12,
      8,
      -4,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-5, -5, -3, 4, 4]\noutput : list = [-40, -40]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(add_n([-5, -5, -3, 4, 4],-1),-2),5)),2)",
    "io_inp": [
      -5,
      -5,
      -3,
      4,
      4
    ],
    "io_out": [
      -40,
      -40
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(add_n(input,-1),-2),5)),2)"
  },
  {
    "input": "input : list = [-3, 3, -3, -4]\noutput : list = [0, 6, 0, -1]",
    "output": "generated_output : list = sub_n([-3, 3, -3, -4],-3)",
    "io_inp": [
      -3,
      3,
      -3,
      -4
    ],
    "io_out": [
      0,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, 3, -5, -2]\noutput : list = [-175, -175, -175, -50, 25]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n([3, 3, 3, -5, -2],-4),-5)),5),29)",
    "io_inp": [
      3,
      3,
      3,
      -5,
      -2
    ],
    "io_out": [
      -175,
      -175,
      -175,
      -50,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n(input,-4),-5)),5),29)"
  },
  {
    "input": "input : list = [-4, 4, -5, 5]\noutput : list = [-25, 15]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(drop([-4, 4, -5, 5],2),-4),-5)),38)",
    "io_inp": [
      -4,
      4,
      -5,
      5
    ],
    "io_out": [
      -25,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(drop(input,2),-4),-5)),38)"
  },
  {
    "input": "input : list = [0, -5, 3, -1]\noutput : list = [-5, -8, -9, -13]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc(add_n([0, -5, 3, -1],-3))),-5))",
    "io_inp": [
      0,
      -5,
      3,
      -1
    ],
    "io_out": [
      -5,
      -8,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(add_n(input,-3))),-5))"
  },
  {
    "input": "input : list = [-4, 0, 4, -2, 5, 2]\noutput : list = [-6, -4, -2, 0, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_des([-4, 0, 4, -2, 5, 2])),2)),4)",
    "io_inp": [
      -4,
      0,
      4,
      -2,
      5,
      2
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_des(input)),2)),4)"
  },
  {
    "input": "input : list = [5, -2, -2, 3]\noutput : list = [3, 1, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse([5, -2, -2, 3])),2)",
    "io_inp": [
      5,
      -2,
      -2,
      3
    ],
    "io_out": [
      3,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [-1, -4, -1, 3]\noutput : list = [21, 30, 21, 9]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(add_n([-1, -4, -1, 3],-2),2),-3),1),-3)",
    "io_inp": [
      -1,
      -4,
      -1,
      3
    ],
    "io_out": [
      21,
      30,
      21,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(add_n(input,-2),2),-3),1),-3)"
  },
  {
    "input": "input : list = [1, 2, 5, 3, -5, 3]\noutput : list = [3, -5, 3]",
    "output": "generated_output : list = drop([1, 2, 5, 3, -5, 3],3)",
    "io_inp": [
      1,
      2,
      5,
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-4, -16]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(sort_asc([-5, 1]),3)),2),16)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -4,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(sort_asc(input),3)),2),16)"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = take(add_n(add_n([4, -2, -2],-3),3),9)",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,-3),3),9)"
  },
  {
    "input": "input : list = [0, 4, 3, -5, -5, -1]\noutput : list = [15, 12, 3, 0, -12, -12]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n(sub_n([0, 4, 3, -5, -5, -1],-5),-4)),25),3)",
    "io_inp": [
      0,
      4,
      3,
      -5,
      -5,
      -1
    ],
    "io_out": [
      15,
      12,
      3,
      0,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(sub_n(input,-5),-4)),25),3)"
  },
  {
    "input": "input : list = [2, -2, -4, 3]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take([2, -2, -4, 3],1),-5)",
    "io_inp": [
      2,
      -2,
      -4,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [1, -7]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(sort_des([4, -4]),-1),3),18))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(sort_des(input),-1),3),18))"
  },
  {
    "input": "input : list = [5, 2, 5, 3]\noutput : list = [7, 8, 10, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sub_n([5, 2, 5, 3],-1),18))),-4)",
    "io_inp": [
      5,
      2,
      5,
      3
    ],
    "io_out": [
      7,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sub_n(input,-1),18))),-4)"
  },
  {
    "input": "input : list = [4, -4, 4]\noutput : list = [-2, -2, -10]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(add_n([4, -4, 4],4),1),5),-4))",
    "io_inp": [
      4,
      -4,
      4
    ],
    "io_out": [
      -2,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(add_n(input,4),1),5),-4))"
  },
  {
    "input": "input : list = [3, 2, 4, -3, -2, -2]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(drop([3, 2, 4, -3, -2, -2],3),1)))",
    "io_inp": [
      3,
      2,
      4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(drop(input,3),1)))"
  },
  {
    "input": "input : list = [2, 5, 5, -5, 0]\noutput : list = [-2, 1, 1, -9, -4]",
    "output": "generated_output : list = sub_n([2, 5, 5, -5, 0],4)",
    "io_inp": [
      2,
      5,
      5,
      -5,
      0
    ],
    "io_out": [
      -2,
      1,
      1,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, 1, -5, -2]\noutput : list = [-2, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sort_asc([-3, 1, -5, -2]),19),24),3))",
    "io_inp": [
      -3,
      1,
      -5,
      -2
    ],
    "io_out": [
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sort_asc(input),19),24),3))"
  },
  {
    "input": "input : list = [5, -1, -1]\noutput : list = [16]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(take([5, -1, -1],1))),-1),4)",
    "io_inp": [
      5,
      -1,
      -1
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(take(input,1))),-1),4)"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [38, 13, 3]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n([3, -2, -4],-4),13),5),3)",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      38,
      13,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(input,-4),13),5),3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-4, -9]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des([-5, 0]),3),4),3)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(input),3),4),3)"
  },
  {
    "input": "input : list = [4, 0, 3, -4, -4, 4]\noutput : list = [-1, -4, 0]",
    "output": "generated_output : list = take(add_n(add_n(drop(reverse([4, 0, 3, -4, -4, 4]),3),1),-5),18)",
    "io_inp": [
      4,
      0,
      3,
      -4,
      -4,
      4
    ],
    "io_out": [
      -1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(drop(reverse(input),3),1),-5),18)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [-8, -23]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n([1, 4, 1],-1),2),5),-3)",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      -8,
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(input,-1),2),5),-3)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [48, 52]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n(reverse([3, 2]),-5),-1),-5),-4)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      48,
      52
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(reverse(input),-5),-1),-5),-4)"
  },
  {
    "input": "input : list = [3, 4, -2, 2, -5, 3]\noutput : list = [19, -13, 15, -1, 23, 19]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(reverse([3, 4, -2, 2, -5, 3]),-2),4),1),7)",
    "io_inp": [
      3,
      4,
      -2,
      2,
      -5,
      3
    ],
    "io_out": [
      19,
      -13,
      15,
      -1,
      23,
      19
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(reverse(input),-2),4),1),7)"
  },
  {
    "input": "input : list = [-2, -3, -3, 5, -3, 4]\noutput : list = [-8, 6]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(drop([-2, -3, -3, 5, -3, 4],4)),-1),2))",
    "io_inp": [
      -2,
      -3,
      -3,
      5,
      -3,
      4
    ],
    "io_out": [
      -8,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(drop(input,4)),-1),2))"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [0, 1, 1]",
    "output": "generated_output : list = reverse(sort_des([1, 0, 1]))",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [2, 6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_des(sort_des([4, 0])),5)),-3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_des(sort_des(input)),5)),-3)"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sub_n(drop([-3, 0, 0],1),2)",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = drop([-4, 0, 2],1)",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 5, -4, 0, 2, -3]\noutput : list = [16, 8, 0, -24, -40, -64]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(add_n([-5, 5, -4, 0, 2, -3],3),-4)),2))",
    "io_inp": [
      -5,
      5,
      -4,
      0,
      2,
      -3
    ],
    "io_out": [
      16,
      8,
      0,
      -24,
      -40,
      -64
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(add_n(input,3),-4)),2))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-11, -13]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(sub_n([-5, -3],3),5))),26)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -11,
      -13
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(sub_n(input,3),5))),26)"
  },
  {
    "input": "input : list = [-2, -5, -2, -3]\noutput : list = [-2, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse(sort_asc([-2, -5, -2, -3])))))",
    "io_inp": [
      -2,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [-8, -1, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse([4, -3, 5]))),5)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      -8,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(input))),5)"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(sub_n(sub_n(take(add_n([-4, -2, 2],1),2),2),-3),21)",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(add_n(input,1),2),2),-3),21)"
  },
  {
    "input": "input : list = [0, -3, 2, -3]\noutput : list = [-3, -3, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc([0, -3, 2, -3])),1)))",
    "io_inp": [
      0,
      -3,
      2,
      -3
    ],
    "io_out": [
      -3,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [-5, 0, -1, -4]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(sort_des(take(drop(sub_n([-5, 0, -1, -4],1),3),7)),1)",
    "io_inp": [
      -5,
      0,
      -1,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(drop(sub_n(input,1),3),7)),1)"
  },
  {
    "input": "input : list = [3, 2, -3]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(take([3, 2, -3],1)),3),-1))",
    "io_inp": [
      3,
      2,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(take(input,1)),3),-1))"
  },
  {
    "input": "input : list = [2, 1, -5, -4]\noutput : list = [11, 8, -10, -7]",
    "output": "generated_output : list = add_n(mul_n([2, 1, -5, -4],3),5)",
    "io_inp": [
      2,
      1,
      -5,
      -4
    ],
    "io_out": [
      11,
      8,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),5)"
  },
  {
    "input": "input : list = [-2, 2, -4, 0]\noutput : list = [-32, 28, -62, -2]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(mul_n([-2, 2, -4, 0],-5),3),4),-3),5)",
    "io_inp": [
      -2,
      2,
      -4,
      0
    ],
    "io_out": [
      -32,
      28,
      -62,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(mul_n(input,-5),3),4),-3),5)"
  },
  {
    "input": "input : list = [-1, -3, -5, -3]\noutput : list = [-10, -8, -8, -6]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(sub_n([-1, -3, -5, -3],4),1))))",
    "io_inp": [
      -1,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(sub_n(input,4),1))))"
  },
  {
    "input": "input : list = [-5, -1, -1, -1, -2, -3]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(add_n([-5, -1, -1, -1, -2, -3],5)))),1)",
    "io_inp": [
      -5,
      -1,
      -1,
      -1,
      -2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(add_n(input,5)))),1)"
  },
  {
    "input": "input : list = [5, 0, 4, -4, -5]\noutput : list = [22, -3, 17, -23, -28]",
    "output": "generated_output : list = sub_n(add_n(mul_n([5, 0, 4, -4, -5],5),-5),-2)",
    "io_inp": [
      5,
      0,
      4,
      -4,
      -5
    ],
    "io_out": [
      22,
      -3,
      17,
      -23,
      -28
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,5),-5),-2)"
  },
  {
    "input": "input : list = [5, 2, -5, -2]\noutput : list = [-8, -2, 12, 6]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(mul_n([5, 2, -5, -2],1),1),-1),-2),-2)",
    "io_inp": [
      5,
      2,
      -5,
      -2
    ],
    "io_out": [
      -8,
      -2,
      12,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(mul_n(input,1),1),-1),-2),-2)"
  },
  {
    "input": "input : list = [1, 2, 1, -4]\noutput : list = [-8, -6, -6, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(mul_n([1, 2, 1, -4],-2)),-4)))",
    "io_inp": [
      1,
      2,
      1,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -6,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(mul_n(input,-2)),-4)))"
  },
  {
    "input": "input : list = [-4, 2, 3, 2]\noutput : list = [-47, 25, 37, 25]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(mul_n([-4, 2, 3, 2],-3),8),-1),-4),-3)",
    "io_inp": [
      -4,
      2,
      3,
      2
    ],
    "io_out": [
      -47,
      25,
      37,
      25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(mul_n(input,-3),8),-1),-4),-3)"
  },
  {
    "input": "input : list = [3, 0, -5, -4, -4, 3]\noutput : list = [8, 1]",
    "output": "generated_output : list = sub_n(reverse(drop([3, 0, -5, -4, -4, 3],4)),-5)",
    "io_inp": [
      3,
      0,
      -5,
      -4,
      -4,
      3
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,4)),-5)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-18, 2]",
    "output": "generated_output : list = sub_n(mul_n([-4, 0],5),-2)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -18,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-2)"
  },
  {
    "input": "input : list = [2, 2, -2, 4, 2, 1]\noutput : list = [2, 2, -2, 4]",
    "output": "generated_output : list = take([2, 2, -2, 4, 2, 1],4)",
    "io_inp": [
      2,
      2,
      -2,
      4,
      2,
      1
    ],
    "io_out": [
      2,
      2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [-1, -6, 1]",
    "output": "generated_output : list = sub_n([0, -5, 2],1)",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      -1,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(drop([5, 4, 5],1))",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [0, 2, -4]\noutput : list = [-35, -5]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(drop([0, 2, -4],1),-3),5),24))",
    "io_inp": [
      0,
      2,
      -4
    ],
    "io_out": [
      -35,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(drop(input,1),-3),5),24))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-55, -40]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(mul_n([4, 3],-5)),3),-5))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -55,
      -40
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(mul_n(input,-5)),3),-5))"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [3, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 3, -5])",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3, -4, -2, 3]\noutput : list = [-7, -6, -4, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(add_n([-5, 3, -4, -2, 3],-2)))))",
    "io_inp": [
      -5,
      3,
      -4,
      -2,
      3
    ],
    "io_out": [
      -7,
      -6,
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [5, 3, -4, 4]\noutput : list = [-130, -105, -80, 95]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(mul_n([5, 3, -4, 4],-5),5)),5))",
    "io_inp": [
      5,
      3,
      -4,
      4
    ],
    "io_out": [
      -130,
      -105,
      -80,
      95
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(mul_n(input,-5),5)),5))"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [5, 40, 50]",
    "output": "generated_output : list = mul_n(add_n([-4, 3, 5],5),5)",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      5,
      40,
      50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),5)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [0, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sub_n([-4, 2],-4)))))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [-3, 0, 2, 5, 5, -2]\noutput : list = [-13, -13, -4, 2, 8, 11]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n([-3, 0, 2, 5, 5, -2],-3),8),-2))",
    "io_inp": [
      -3,
      0,
      2,
      5,
      5,
      -2
    ],
    "io_out": [
      -13,
      -13,
      -4,
      2,
      8,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(input,-3),8),-2))"
  },
  {
    "input": "input : list = [0, -4, 0, -4, 1, 3]\noutput : list = [-80, -80, 0, 0, 20, 60]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(sort_des([0, -4, 0, -4, 1, 3]),-5),8),-4))",
    "io_inp": [
      0,
      -4,
      0,
      -4,
      1,
      3
    ],
    "io_out": [
      -80,
      -80,
      0,
      0,
      20,
      60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(sort_des(input),-5),8),-4))"
  },
  {
    "input": "input : list = [-3, -5, -5, -3]\noutput : list = [-6, -12, -12, -6]",
    "output": "generated_output : list = sub_n(mul_n([-3, -5, -5, -3],3),-3)",
    "io_inp": [
      -3,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -12,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),-3)"
  },
  {
    "input": "input : list = [-5, 4, -3, -1]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(take([-5, 4, -3, -1],1),4))),3)",
    "io_inp": [
      -5,
      4,
      -3,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(take(input,1),4))),3)"
  },
  {
    "input": "input : list = [-5, -2, 3, 5]\noutput : list = [18, 12, -3, -12]",
    "output": "generated_output : list = add_n(mul_n(sort_des([-5, -2, 3, 5]),3),3)",
    "io_inp": [
      -5,
      -2,
      3,
      5
    ],
    "io_out": [
      18,
      12,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),3),3)"
  },
  {
    "input": "input : list = [0, -4, 2, 0, -3, -5]\noutput : list = [8, 6, 6, 3, 2, 1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_asc([0, -4, 2, 0, -3, -5])),-5),-2),-3)",
    "io_inp": [
      0,
      -4,
      2,
      0,
      -3,
      -5
    ],
    "io_out": [
      8,
      6,
      6,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_asc(input)),-5),-2),-3)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-9, -13]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(sort_des([-4, -3]),4)),3))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(sort_des(input),4)),3))"
  },
  {
    "input": "input : list = [-5, -4, 5, 5, 2]\noutput : list = [40, 36, 12, 0, 0]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des(mul_n([-5, -4, 5, 5, 2],-1)),-5),-2),-2)",
    "io_inp": [
      -5,
      -4,
      5,
      5,
      2
    ],
    "io_out": [
      40,
      36,
      12,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(mul_n(input,-1)),-5),-2),-2)"
  },
  {
    "input": "input : list = [-4, 0, 4, -4, 0]\noutput : list = [4, 0, 0, -4, -4]",
    "output": "generated_output : list = take(take(take(sort_des(sort_des([-4, 0, 4, -4, 0])),35),38),42)",
    "io_inp": [
      -4,
      0,
      4,
      -4,
      0
    ],
    "io_out": [
      4,
      0,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(sort_des(sort_des(input)),35),38),42)"
  },
  {
    "input": "input : list = [0, -4, -5, -2, 5, 1]\noutput : list = [-9, -12, -11, -7]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(take([0, -4, -5, -2, 5, 1],4)),35),-5),2)",
    "io_inp": [
      0,
      -4,
      -5,
      -2,
      5,
      1
    ],
    "io_out": [
      -9,
      -12,
      -11,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(take(input,4)),35),-5),2)"
  },
  {
    "input": "input : list = [0, 0, -3, 3, -3, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, 0, -3, 3, -3, 0],1),4)",
    "io_inp": [
      0,
      0,
      -3,
      3,
      -3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),4)"
  },
  {
    "input": "input : list = [4, 3, -1, -3, -2, 2]\noutput : list = [8, 4, 2, 3, 7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(drop([4, 3, -1, -3, -2, 2],1),3),4),-3),-1)",
    "io_inp": [
      4,
      3,
      -1,
      -3,
      -2,
      2
    ],
    "io_out": [
      8,
      4,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(drop(input,1),3),4),-3),-1)"
  },
  {
    "input": "input : list = [-2, 4, 4, -4, 4]\noutput : list = [-9, -3]",
    "output": "generated_output : list = add_n(sub_n(take([-2, 4, 4, -4, 4],2),2),-5)",
    "io_inp": [
      -2,
      4,
      4,
      -4,
      4
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,2),2),-5)"
  },
  {
    "input": "input : list = [4, 4, -3, 3]\noutput : list = [7, 13, 14, 14]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(sub_n([4, 4, -3, 3],-5),17))),-5)",
    "io_inp": [
      4,
      4,
      -3,
      3
    ],
    "io_out": [
      7,
      13,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(sub_n(input,-5),17))),-5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sort_des([3, -1])),19)),-1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sort_des(input)),19)),-1)"
  },
  {
    "input": "input : list = [3, 5, 4, -3]\noutput : list = [96]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(take([3, 5, 4, -3],1),-5),3),4))",
    "io_inp": [
      3,
      5,
      4,
      -3
    ],
    "io_out": [
      96
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(take(input,1),-5),3),4))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n([-4, -2],-5))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(input,-5))))"
  },
  {
    "input": "input : list = [-1, -1, 1, -1]\noutput : list = [18, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(drop([-1, -1, 1, -1],2),-1),3),3),14)",
    "io_inp": [
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      18,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(drop(input,2),-1),3),3),14)"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [-2, 4, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(reverse([-1, 5, 5])))),-1)",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-1, 0, -4, 4]\noutput : list = [-19, -3, 1, 13]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_des([-1, 0, -4, 4]),-4),-4)),-1)",
    "io_inp": [
      -1,
      0,
      -4,
      4
    ],
    "io_out": [
      -19,
      -3,
      1,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_des(input),-4),-4)),-1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [0, 6]",
    "output": "generated_output : list = sub_n([-5, 1],-5)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [4, -1, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n([2, -3, 2],-2),-2),-2)",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-2),-2),-2)"
  },
  {
    "input": "input : list = [-4, 4, -4, -4, -2]\noutput : list = [1, -23, -31, -31, -31]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(add_n([-4, 4, -4, -4, -2],-3)),4),3))",
    "io_inp": [
      -4,
      4,
      -4,
      -4,
      -2
    ],
    "io_out": [
      1,
      -23,
      -31,
      -31,
      -31
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(add_n(input,-3)),4),3))"
  },
  {
    "input": "input : list = [2, 3, 0]\noutput : list = [8, 5]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n(drop([2, 3, 0],1),-5),13)))",
    "io_inp": [
      2,
      3,
      0
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(drop(input,1),-5),13)))"
  },
  {
    "input": "input : list = [-2, 4, -1, -2, 3, -4]\noutput : list = [-5, -3, -3, -2, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-2, 4, -1, -2, 3, -4],1)))",
    "io_inp": [
      -2,
      4,
      -1,
      -2,
      3,
      -4
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,1)))"
  },
  {
    "input": "input : list = [0, 3, 4]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_des([0, 3, 4])),5)),44)",
    "io_inp": [
      0,
      3,
      4
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_des(input)),5)),44)"
  },
  {
    "input": "input : list = [1, 0, -1, 1, 1]\noutput : list = [5, 5, 5, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n([1, 0, -1, 1, 1],2)),-1)),-5)",
    "io_inp": [
      1,
      0,
      -1,
      1,
      1
    ],
    "io_out": [
      5,
      5,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n(input,2)),-1)),-5)"
  },
  {
    "input": "input : list = [4, 1, 0, -4]\noutput : list = [-5, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n([4, 1, 0, -4],-1)))",
    "io_inp": [
      4,
      1,
      0,
      -4
    ],
    "io_out": [
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-1)))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(sort_asc([0, 0]))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 1, 1, -5, -2]\noutput : list = [-10, -10, -4, 2, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_des([-5, 1, 1, -5, -2]),2))))",
    "io_inp": [
      -5,
      1,
      1,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [-1, 5, -1, 2]\noutput : list = [0, 3, 6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(drop([-1, 5, -1, 2],1)),-5),-4))",
    "io_inp": [
      -1,
      5,
      -1,
      2
    ],
    "io_out": [
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(drop(input,1)),-5),-4))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 6]",
    "output": "generated_output : list = reverse(sub_n([3, 0],-3))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [5, 5, 2, 3, -3]\noutput : list = [5, 5, 2]",
    "output": "generated_output : list = take([5, 5, 2, 3, -3],3)",
    "io_inp": [
      5,
      5,
      2,
      3,
      -3
    ],
    "io_out": [
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [9, 8, 8]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(sub_n([5, 4, 4],-1),-3)),17))",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      9,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(sub_n(input,-1),-3)),17))"
  },
  {
    "input": "input : list = [0, -2, 5, 0]\noutput : list = [5, 0, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc([0, -2, 5, 0]))",
    "io_inp": [
      0,
      -2,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -3, 5, 0, 0, -3]\noutput : list = [0, 15, -25, 0, 0, 15]",
    "output": "generated_output : list = mul_n([0, -3, 5, 0, 0, -3],-5)",
    "io_inp": [
      0,
      -3,
      5,
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      15,
      -25,
      0,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, -2, -2, -4, 3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(mul_n(take([0, -2, -2, -4, 3],1),3))",
    "io_inp": [
      0,
      -2,
      -2,
      -4,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,1),3))"
  },
  {
    "input": "input : list = [4, -3, 5, -1, 3, -1]\noutput : list = [20, 10, 10, -10, -15, -20]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(sort_des([4, -3, 5, -1, 3, -1]),24),-5),5))",
    "io_inp": [
      4,
      -3,
      5,
      -1,
      3,
      -1
    ],
    "io_out": [
      20,
      10,
      10,
      -10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(sort_des(input),24),-5),5))"
  },
  {
    "input": "input : list = [2, -3, 4, -5, -2, -1]\noutput : list = [-5, -3, -2, -1, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse([2, -3, 4, -5, -2, -1]))",
    "io_inp": [
      2,
      -3,
      4,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [0, 1, 1]",
    "output": "generated_output : list = sort_asc([0, 1, 1])",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [7, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n(mul_n([-3, -2],-1),5))))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(mul_n(input,-1),5))))"
  },
  {
    "input": "input : list = [3, 2, 3, 5, 3]\noutput : list = [2, 3, 5, 3]",
    "output": "generated_output : list = drop([3, 2, 3, 5, 3],1)",
    "io_inp": [
      3,
      2,
      3,
      5,
      3
    ],
    "io_out": [
      2,
      3,
      5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 1, 3, -4]\noutput : list = [3, 1, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 1, 3, -4])",
    "io_inp": [
      -5,
      1,
      3,
      -4
    ],
    "io_out": [
      3,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, 0, -1, 4, -5]\noutput : list = [-1, 8, 3, 2]",
    "output": "generated_output : list = add_n(reverse(take(reverse(take([-4, 5, 0, -1, 4, -5],4)),31)),3)",
    "io_inp": [
      -4,
      5,
      0,
      -1,
      4,
      -5
    ],
    "io_out": [
      -1,
      8,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(take(input,4)),31)),3)"
  },
  {
    "input": "input : list = [-3, 1, 4, -3]\noutput : list = [3, 0, -4, -4]",
    "output": "generated_output : list = sort_des(add_n([-3, 1, 4, -3],-1))",
    "io_inp": [
      -3,
      1,
      4,
      -3
    ],
    "io_out": [
      3,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [4, 0, 1, 1, -3, 1]\noutput : list = [-2, 1, 2, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(add_n([4, 0, 1, 1, -3, 1],-4),5))))",
    "io_inp": [
      4,
      0,
      1,
      1,
      -3,
      1
    ],
    "io_out": [
      -2,
      1,
      2,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(add_n(input,-4),5))))"
  },
  {
    "input": "input : list = [-4, -5, -4, 3, 5]\noutput : list = [40, 24, -32, -40, -32]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse([-4, -5, -4, 3, 5]),-2),-4),14)",
    "io_inp": [
      -4,
      -5,
      -4,
      3,
      5
    ],
    "io_out": [
      40,
      24,
      -32,
      -40,
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(input),-2),-4),14)"
  },
  {
    "input": "input : list = [-2, -3, -1, 4, -3]\noutput : list = [0, -5, -6, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sub_n([-2, -3, -1, 4, -3],2),3),1)),-2)",
    "io_inp": [
      -2,
      -3,
      -1,
      4,
      -3
    ],
    "io_out": [
      0,
      -5,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sub_n(input,2),3),1)),-2)"
  },
  {
    "input": "input : list = [3, -5, -4, -2]\noutput : list = [10, 8, 4, -6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(mul_n([3, -5, -4, -2],2),-1))))",
    "io_inp": [
      3,
      -5,
      -4,
      -2
    ],
    "io_out": [
      10,
      8,
      4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(mul_n(input,2),-1))))"
  },
  {
    "input": "input : list = [0, -5, -4, 4]\noutput : list = [8, 0, -8, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([0, -5, -4, 4])),2)",
    "io_inp": [
      0,
      -5,
      -4,
      4
    ],
    "io_out": [
      8,
      0,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sort_asc([1, 1])),-5),5),1)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sort_asc(input)),-5),5),1)"
  },
  {
    "input": "input : list = [5, 4, 5, -1, -2]\noutput : list = [2, 3, 8, 9, 9]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des(add_n([5, 4, 5, -1, -2],4)))),44)",
    "io_inp": [
      5,
      4,
      5,
      -1,
      -2
    ],
    "io_out": [
      2,
      3,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(add_n(input,4)))),44)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [9, 6, -6]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(sort_asc([-3, -2, 2]),11),1),-3))",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      9,
      6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(sort_asc(input),11),1),-3))"
  },
  {
    "input": "input : list = [5, -2, 0, 2]\noutput : list = [-12, -20, -28, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n([5, -2, 0, 2],-5)),4)",
    "io_inp": [
      5,
      -2,
      0,
      2
    ],
    "io_out": [
      -12,
      -20,
      -28,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-5)),4)"
  },
  {
    "input": "input : list = [-3, 4, 5, 2]\noutput : list = [-3, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([-3, 4, 5, 2])",
    "io_inp": [
      -3,
      4,
      5,
      2
    ],
    "io_out": [
      -3,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, 3, -3]\noutput : list = [3, -1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des([-1, -1, 3, -3]),1))))",
    "io_inp": [
      -1,
      -1,
      3,
      -3
    ],
    "io_out": [
      3,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [1, 3, 1, -5, -2]\noutput : list = [-2, -5, 1, 3]",
    "output": "generated_output : list = reverse(drop([1, 3, 1, -5, -2],1))",
    "io_inp": [
      1,
      3,
      1,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 4, 5, 5, -4]\noutput : list = [24, 24, 20, -4, -12]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_asc([-2, 4, 5, 5, -4])),4),4))",
    "io_inp": [
      -2,
      4,
      5,
      5,
      -4
    ],
    "io_out": [
      24,
      24,
      20,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_asc(input)),4),4))"
  },
  {
    "input": "input : list = [0, -5, -4]\noutput : list = [-16, -20, 0]",
    "output": "generated_output : list = mul_n(reverse([0, -5, -4]),4)",
    "io_inp": [
      0,
      -5,
      -4
    ],
    "io_out": [
      -16,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [16, -80]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(reverse([5, -1]),4)),-4))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      16,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(reverse(input),4)),-4))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-4, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n([-4, 0],-3)),2),4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(input,-3)),2),4)"
  },
  {
    "input": "input : list = [-2, 2, -2, 1, 4, 1]\noutput : list = [2, 2, 5, 5, 6, 8]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(sort_des([-2, 2, -2, 1, 4, 1])),1),-4))",
    "io_inp": [
      -2,
      2,
      -2,
      1,
      4,
      1
    ],
    "io_out": [
      2,
      2,
      5,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(sort_des(input)),1),-4))"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [5, 5, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(reverse([-1, -1, -5]))),-5))",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      5,
      5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(reverse(input))),-5))"
  },
  {
    "input": "input : list = [4, -1, -5, -3]\noutput : list = [4, -1, -3, -5]",
    "output": "generated_output : list = sort_des([4, -1, -5, -3])",
    "io_inp": [
      4,
      -1,
      -5,
      -3
    ],
    "io_out": [
      4,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 0, 2, -1, 3]\noutput : list = [-1, -3, -3, -1, -4, 0]",
    "output": "generated_output : list = sub_n(add_n([2, 0, 0, 2, -1, 3],1),4)",
    "io_inp": [
      2,
      0,
      0,
      2,
      -1,
      3
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),4)"
  },
  {
    "input": "input : list = [2, 3, 4, 1, -5]\noutput : list = [6, 5, 4, 3, -3]",
    "output": "generated_output : list = sub_n(sort_des([2, 3, 4, 1, -5]),-2)",
    "io_inp": [
      2,
      3,
      4,
      1,
      -5
    ],
    "io_out": [
      6,
      5,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [3, 3, -1]\noutput : list = [43, 43, -21]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n(sort_des([3, 3, -1]),4),16),4),-5)",
    "io_inp": [
      3,
      3,
      -1
    ],
    "io_out": [
      43,
      43,
      -21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(sort_des(input),4),16),4),-5)"
  },
  {
    "input": "input : list = [3, 1, -3, 2, -2]\noutput : list = [26, 10, -6, -54, -70]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des([3, 1, -3, 2, -2]),-4),-5),-4),2)",
    "io_inp": [
      3,
      1,
      -3,
      2,
      -2
    ],
    "io_out": [
      26,
      10,
      -6,
      -54,
      -70
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des(input),-4),-5),-4),2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-6, -3]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(mul_n([3, 2],-3))),3))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(mul_n(input,-3))),3))"
  },
  {
    "input": "input : list = [1, -2, 1, -2, -4]\noutput : list = [2, -1, 2, -1, -3]",
    "output": "generated_output : list = add_n(sub_n(reverse(reverse(add_n([1, -2, 1, -2, -4],3))),-2),-4)",
    "io_inp": [
      1,
      -2,
      1,
      -2,
      -4
    ],
    "io_out": [
      2,
      -1,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(reverse(add_n(input,3))),-2),-4)"
  },
  {
    "input": "input : list = [-3, 0, 0, 2, -2, -1]\noutput : list = [-3, -2, -1, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_des([-3, 0, 0, 2, -2, -1])),13)))",
    "io_inp": [
      -3,
      0,
      0,
      2,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_des(input)),13)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = take(reverse(take(mul_n(sort_asc([-2, 5]),1),7)),41)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(sort_asc(input),1),7)),41)"
  },
  {
    "input": "input : list = [-4, -5, -2]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(sort_des(drop([-4, -5, -2],1)),-5)",
    "io_inp": [
      -4,
      -5,
      -2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),-5)"
  },
  {
    "input": "input : list = [-1, 3, 0, -5, -1, -5]\noutput : list = [8, 5, 4, 4, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(reverse([-1, 3, 0, -5, -1, -5]),7)),-5))",
    "io_inp": [
      -1,
      3,
      0,
      -5,
      -1,
      -5
    ],
    "io_out": [
      8,
      5,
      4,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(reverse(input),7)),-5))"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-30, -50]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(drop([-1, -5, -1],1)),-5),-1),-5)",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -30,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(drop(input,1)),-5),-1),-5)"
  },
  {
    "input": "input : list = [4, -3, -5, 4, 1]\noutput : list = [3]",
    "output": "generated_output : list = take(add_n(drop(mul_n([4, -3, -5, 4, 1],2),3),-5),1)",
    "io_inp": [
      4,
      -3,
      -5,
      4,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(add_n(drop(mul_n(input,2),3),-5),1)"
  },
  {
    "input": "input : list = [1, -3, 4, 2]\noutput : list = [-2, 6, -8, -4]",
    "output": "generated_output : list = mul_n([1, -3, 4, 2],-2)",
    "io_inp": [
      1,
      -3,
      4,
      2
    ],
    "io_out": [
      -2,
      6,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, -5, 0, -1, -5]\noutput : list = [-9, -5]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(drop([2, -5, 0, -1, -5],3))),4),9)",
    "io_inp": [
      2,
      -5,
      0,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(drop(input,3))),4),9)"
  },
  {
    "input": "input : list = [-2, 3, 5, 2, 1]\noutput : list = [-4, -3, 0, -2, -7]",
    "output": "generated_output : list = sub_n(reverse(add_n([-2, 3, 5, 2, 1],-3)),2)",
    "io_inp": [
      -2,
      3,
      5,
      2,
      1
    ],
    "io_out": [
      -4,
      -3,
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,-3)),2)"
  },
  {
    "input": "input : list = [0, 2, -5, 3]\noutput : list = [-23, -20, -14, 1]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(add_n([0, 2, -5, 3],4),-3)),-2),40)",
    "io_inp": [
      0,
      2,
      -5,
      3
    ],
    "io_out": [
      -23,
      -20,
      -14,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(add_n(input,4),-3)),-2),40)"
  },
  {
    "input": "input : list = [2, 1, 1, 2, -3, 2]\noutput : list = [1, 2, 2, 2]",
    "output": "generated_output : list = take(take(mul_n(drop(sort_asc([2, 1, 1, 2, -3, 2]),2),1),35),24)",
    "io_inp": [
      2,
      1,
      1,
      2,
      -3,
      2
    ],
    "io_out": [
      1,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(take(mul_n(drop(sort_asc(input),2),1),35),24)"
  },
  {
    "input": "input : list = [-1, 2, -5, -5, 1]\noutput : list = [-1, -1, 3, 5, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n([-1, 2, -5, -5, 1],-4)))",
    "io_inp": [
      -1,
      2,
      -5,
      -5,
      1
    ],
    "io_out": [
      -1,
      -1,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [3, 0, -2, 1, -3]\noutput : list = [-1, 0, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(add_n([3, 0, -2, 1, -3],2),19)),22))",
    "io_inp": [
      3,
      0,
      -2,
      1,
      -3
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(add_n(input,2),19)),22))"
  },
  {
    "input": "input : list = [5, -1, -4]\noutput : list = [4, -2, -5]",
    "output": "generated_output : list = add_n(sub_n([5, -1, -4],-4),-5)",
    "io_inp": [
      5,
      -1,
      -4
    ],
    "io_out": [
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-5)"
  },
  {
    "input": "input : list = [1, 0, 1, 3, 3]\noutput : list = [5, -5, -5]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(drop([1, 0, 1, 3, 3],2))),2),-5)",
    "io_inp": [
      1,
      0,
      1,
      3,
      3
    ],
    "io_out": [
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(drop(input,2))),2),-5)"
  },
  {
    "input": "input : list = [2, 3, -2, -1, -2]\noutput : list = [-5, -5, -4, -1, 0]",
    "output": "generated_output : list = sub_n(sort_asc([2, 3, -2, -1, -2]),3)",
    "io_inp": [
      2,
      3,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc([-4, 0]),10)))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(input),10)))"
  },
  {
    "input": "input : list = [4, 5, 2, 3, -2]\noutput : list = [3, 4, 1, 2, -3]",
    "output": "generated_output : list = add_n([4, 5, 2, 3, -2],-1)",
    "io_inp": [
      4,
      5,
      2,
      3,
      -2
    ],
    "io_out": [
      3,
      4,
      1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 3, 4, -5]\noutput : list = [7, 9, 10, 1]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(add_n([1, 3, 4, -5],-3),18),-5),-5),-1)",
    "io_inp": [
      1,
      3,
      4,
      -5
    ],
    "io_out": [
      7,
      9,
      10,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(add_n(input,-3),18),-5),-5),-1)"
  },
  {
    "input": "input : list = [0, -5, 3, -2, 1]\noutput : list = [4, -1, 7]",
    "output": "generated_output : list = add_n(take([0, -5, 3, -2, 1],3),4)",
    "io_inp": [
      0,
      -5,
      3,
      -2,
      1
    ],
    "io_out": [
      4,
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),4)"
  },
  {
    "input": "input : list = [1, -2, -1, -5, -3, 2]\noutput : list = [6, 15, 12, 24, 18, 3]",
    "output": "generated_output : list = mul_n(sub_n([1, -2, -1, -5, -3, 2],3),-3)",
    "io_inp": [
      1,
      -2,
      -1,
      -5,
      -3,
      2
    ],
    "io_out": [
      6,
      15,
      12,
      24,
      18,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-3)"
  },
  {
    "input": "input : list = [-2, -4, -3, -5, 4]\noutput : list = [0, 1, 2, 3, 9]",
    "output": "generated_output : list = sort_asc(sub_n([-2, -4, -3, -5, 4],-5))",
    "io_inp": [
      -2,
      -4,
      -3,
      -5,
      4
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 5, -4, -4]\noutput : list = [0, 8, -1, -1]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(add_n([-3, 5, -4, -4],-2)),4)),1)",
    "io_inp": [
      -3,
      5,
      -4,
      -4
    ],
    "io_out": [
      0,
      8,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(add_n(input,-2)),4)),1)"
  },
  {
    "input": "input : list = [2, -3, 5, 0]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = mul_n(sort_des(drop([2, -3, 5, 0],1)),1)",
    "io_inp": [
      2,
      -3,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,1)),1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3, -2, 0]\noutput : list = [6, 4]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(drop([-4, 3, -2, 0],2),-1),30),1),-5)",
    "io_inp": [
      -4,
      3,
      -2,
      0
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(drop(input,2),-1),30),1),-5)"
  },
  {
    "input": "input : list = [0, -2, -4, -1, 0]\noutput : list = [0, 0, -1, -2, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([0, -2, -4, -1, 0])),1)",
    "io_inp": [
      0,
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),1)"
  },
  {
    "input": "input : list = [3, 3, 5, 4]\noutput : list = [4, 5, 3, 3]",
    "output": "generated_output : list = reverse([3, 3, 5, 4])",
    "io_inp": [
      3,
      3,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 2, -1, 2]\noutput : list = [4, 4, 1, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(sub_n([-3, 2, -1, 2],5),3)),-4))",
    "io_inp": [
      -3,
      2,
      -1,
      2
    ],
    "io_out": [
      4,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(sub_n(input,5),3)),-4))"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(take([1, 2, -3],1)),6)))",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(take(input,1)),6)))"
  },
  {
    "input": "input : list = [-5, 5, 1, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(take(reverse(sub_n(drop([-5, 5, 1, -1],2),1)),32),30)",
    "io_inp": [
      -5,
      5,
      1,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(drop(input,2),1)),32),30)"
  },
  {
    "input": "input : list = [-2, 1, 2, -3, 0]\noutput : list = [-30, -15, 30]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(take([-2, 1, 2, -3, 0],3)),8),-3),5)",
    "io_inp": [
      -2,
      1,
      2,
      -3,
      0
    ],
    "io_out": [
      -30,
      -15,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(take(input,3)),8),-3),5)"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [9, 6, -12]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(add_n([2, -5, 1],1))),26),3)",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      9,
      6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(add_n(input,1))),26),3)"
  },
  {
    "input": "input : list = [2, 0, -1, -1]\noutput : list = [-1, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse([2, 0, -1, -1]))",
    "io_inp": [
      2,
      0,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, -3, -1, -5, 2]\noutput : list = [12, -8, 0, -16, 12]",
    "output": "generated_output : list = mul_n(add_n([2, -3, -1, -5, 2],1),4)",
    "io_inp": [
      2,
      -3,
      -1,
      -5,
      2
    ],
    "io_out": [
      12,
      -8,
      0,
      -16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),4)"
  },
  {
    "input": "input : list = [0, -4, 4, 1]\noutput : list = [-3, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(sub_n([0, -4, 4, 1],2)),1),2))",
    "io_inp": [
      0,
      -4,
      4,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(sub_n(input,2)),1),2))"
  },
  {
    "input": "input : list = [2, 5, -5]\noutput : list = [10, 4, -10]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(mul_n([2, 5, -5],2),11))))",
    "io_inp": [
      2,
      5,
      -5
    ],
    "io_out": [
      10,
      4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(mul_n(input,2),11))))"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n(take([-4, 1, 5],1),-4))))",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(take(input,1),-4))))"
  },
  {
    "input": "input : list = [-3, -2, 4, 5, 4, 3]\noutput : list = [8, 7, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(take([-3, -2, 4, 5, 4, 3],4)),-1)),4)",
    "io_inp": [
      -3,
      -2,
      4,
      5,
      4,
      3
    ],
    "io_out": [
      8,
      7,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(take(input,4)),-1)),4)"
  },
  {
    "input": "input : list = [5, -1, -3, 2]\noutput : list = [4, 1, -2, -4]",
    "output": "generated_output : list = take(take(add_n(sort_des([5, -1, -3, 2]),-1),30),5)",
    "io_inp": [
      5,
      -1,
      -3,
      2
    ],
    "io_out": [
      4,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(input),-1),30),5)"
  },
  {
    "input": "input : list = [5, -4, -4]\noutput : list = [-90, -90]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(drop([5, -4, -4],1),5),4),-5),5)",
    "io_inp": [
      5,
      -4,
      -4
    ],
    "io_out": [
      -90,
      -90
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(drop(input,1),5),4),-5),5)"
  },
  {
    "input": "input : list = [-1, -1, 4, 2, -1]\noutput : list = [1, 4, 6, 1, 1]",
    "output": "generated_output : list = add_n(reverse([-1, -1, 4, 2, -1]),2)",
    "io_inp": [
      -1,
      -1,
      4,
      2,
      -1
    ],
    "io_out": [
      1,
      4,
      6,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des([0, 5])",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [3, 3]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sub_n([0, 0],-3))),5),22)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sub_n(input,-3))),5),22)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc([4, -2])",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(reverse([-2, -2, -3]),-2))),-3)",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(reverse(input),-2))),-3)"
  },
  {
    "input": "input : list = [-1, 2, -3, -3]\noutput : list = [18, 18, -2, 10]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(sub_n([-1, 2, -3, -3],1),19),-4)),-2)",
    "io_inp": [
      -1,
      2,
      -3,
      -3
    ],
    "io_out": [
      18,
      18,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(sub_n(input,1),19),-4)),-2)"
  },
  {
    "input": "input : list = [-4, -5, -5, -5, 0]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(mul_n(take(take([-4, -5, -5, -5, 0],1),12),2))",
    "io_inp": [
      -4,
      -5,
      -5,
      -5,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(input,1),12),2))"
  },
  {
    "input": "input : list = [3, -5, 4, -2, -4, 3]\noutput : list = [9, 12, 18, 33, 33, 36]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(sub_n([3, -5, 4, -2, -4, 3],-5)),3)),3)",
    "io_inp": [
      3,
      -5,
      4,
      -2,
      -4,
      3
    ],
    "io_out": [
      9,
      12,
      18,
      33,
      33,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(sub_n(input,-5)),3)),3)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-7, 1]",
    "output": "generated_output : list = take(add_n(sort_asc(take(sort_des([5, -3]),7)),-4),22)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(sort_des(input),7)),-4),22)"
  },
  {
    "input": "input : list = [0, -4, -4, -1, 0]\noutput : list = [2, 5, 6]",
    "output": "generated_output : list = take(add_n(take(sub_n(drop([0, -4, -4, -1, 0],2),-1),31),5),14)",
    "io_inp": [
      0,
      -4,
      -4,
      -1,
      0
    ],
    "io_out": [
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(drop(input,2),-1),31),5),14)"
  },
  {
    "input": "input : list = [3, 5, -1, 1]\noutput : list = [10, 6, 2, -2]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(sort_asc([3, 5, -1, 1]))),12),2)",
    "io_inp": [
      3,
      5,
      -1,
      1
    ],
    "io_out": [
      10,
      6,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(sort_asc(input))),12),2)"
  },
  {
    "input": "input : list = [4, -2, -2, 0, 5]\noutput : list = [-10, -8, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(add_n([4, -2, -2, 0, 5],-1),-2),2)))",
    "io_inp": [
      4,
      -2,
      -2,
      0,
      5
    ],
    "io_out": [
      -10,
      -8,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(add_n(input,-1),-2),2)))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [2, 1]",
    "output": "generated_output : list = add_n(sort_des([4, 5]),-3)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [0, -2, 1, 1]\noutput : list = [34, 4, -11, -11]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(mul_n([0, -2, 1, 1],5),-3)),5),4)",
    "io_inp": [
      0,
      -2,
      1,
      1
    ],
    "io_out": [
      34,
      4,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(mul_n(input,5),-3)),5),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-6, 2]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc([-5, 3]),15)),-1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(input),15)),-1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(sort_asc([-5, 1]),13),-1),22))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(sort_asc(input),13),-1),22))"
  },
  {
    "input": "input : list = [-5, -1, 3, 4]\noutput : list = [11, 7, -9, -25]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(mul_n([-5, -1, 3, 4],4),4),1)))",
    "io_inp": [
      -5,
      -1,
      3,
      4
    ],
    "io_out": [
      11,
      7,
      -9,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(mul_n(input,4),4),1)))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc([5, 2]),11))))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc(input),11))))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [3, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(add_n([-3, 0],2)),-1)),-5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(add_n(input,2)),-1)),-5)"
  },
  {
    "input": "input : list = [-2, -4, 1, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(take([-2, -4, 1, -4],2))),35))",
    "io_inp": [
      -2,
      -4,
      1,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(take(input,2))),35))"
  },
  {
    "input": "input : list = [-1, 0, 2, 5, -4]\noutput : list = [-9, 0]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(drop([-1, 0, 2, 5, -4],3),-5))))",
    "io_inp": [
      -1,
      0,
      2,
      5,
      -4
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(drop(input,3),-5))))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse(add_n([-3, 0],-2))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(reverse([-1, 1])))),-2)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [5, 5, 2, 1]\noutput : list = [1, 2, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 5, 2, 1])",
    "io_inp": [
      5,
      5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0, -2, 2, -5]\noutput : list = [4, 0, -8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(take([1, 0, -2, 2, -5],3)))),4)",
    "io_inp": [
      1,
      0,
      -2,
      2,
      -5
    ],
    "io_out": [
      4,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(take(input,3)))),4)"
  },
  {
    "input": "input : list = [-4, 0, -4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = drop([-4, 0, -4, 1],2)",
    "io_inp": [
      -4,
      0,
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [4, 4, 6]",
    "output": "generated_output : list = mul_n([-2, -2, -3],-2)",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, 3, 2, -5, 1]\noutput : list = [1, 0, -1, -2, -7]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(sort_asc([0, 3, 2, -5, 1])),3),7),5)",
    "io_inp": [
      0,
      3,
      2,
      -5,
      1
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(sort_asc(input)),3),7),5)"
  },
  {
    "input": "input : list = [5, -2, 4, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse(take(take([5, -2, 4, 5],2),12))",
    "io_inp": [
      5,
      -2,
      4,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,2),12))"
  },
  {
    "input": "input : list = [-3, 1, -1, -4, -1]\noutput : list = [5, 15, 15, 25, 30]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(add_n([-3, 1, -1, -4, -1],-2),-5))))",
    "io_inp": [
      -3,
      1,
      -1,
      -4,
      -1
    ],
    "io_out": [
      5,
      15,
      15,
      25,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(add_n(input,-2),-5))))"
  },
  {
    "input": "input : list = [4, 2, 3, 5, 1, 4]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(drop([4, 2, 3, 5, 1, 4],4),18),4)),-2)",
    "io_inp": [
      4,
      2,
      3,
      5,
      1,
      4
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(drop(input,4),18),4)),-2)"
  },
  {
    "input": "input : list = [5, -4, -1, 1]\noutput : list = [0, 6, 10, 18]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(add_n([5, -4, -1, 1],3)),2),2),40)",
    "io_inp": [
      5,
      -4,
      -1,
      1
    ],
    "io_out": [
      0,
      6,
      10,
      18
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(add_n(input,3)),2),2),40)"
  },
  {
    "input": "input : list = [1, -3, -1, 3]\noutput : list = [3, -1, -3, 1]",
    "output": "generated_output : list = take(reverse([1, -3, -1, 3]),13)",
    "io_inp": [
      1,
      -3,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),13)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-7, -4]",
    "output": "generated_output : list = take(reverse(sub_n([0, -3],4)),23)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,4)),23)"
  },
  {
    "input": "input : list = [1, -4, 5]\noutput : list = [-20, -4, 16]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([1, -4, 5]),-4))",
    "io_inp": [
      1,
      -4,
      5
    ],
    "io_out": [
      -20,
      -4,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [5, -2, 3, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des([5, -2, 3, 3]))),-5),1)",
    "io_inp": [
      5,
      -2,
      3,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des(input))),-5),1)"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = drop(sort_des(reverse(sort_des(sub_n([0, 3, -1],1)))),1)",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(sort_des(sub_n(input,1)))),1)"
  },
  {
    "input": "input : list = [-1, -4, 5, 0]\noutput : list = [0, 5, -4, -1]",
    "output": "generated_output : list = reverse([-1, -4, 5, 0])",
    "io_inp": [
      -1,
      -4,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-3, -8]",
    "output": "generated_output : list = take(sub_n([2, -3],5),9)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),9)"
  },
  {
    "input": "input : list = [-1, 5, 3, -5, -1]\noutput : list = [4, 2, -2, -2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sort_des([-1, 5, 3, -5, -1])),1)))",
    "io_inp": [
      -1,
      5,
      3,
      -5,
      -1
    ],
    "io_out": [
      4,
      2,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [1, 1, -2, -5]\noutput : list = [-24, -12, 0, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(reverse([1, 1, -2, -5]),4),-2),4),-2)",
    "io_inp": [
      1,
      1,
      -2,
      -5
    ],
    "io_out": [
      -24,
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(reverse(input),4),-2),4),-2)"
  },
  {
    "input": "input : list = [5, -3, 0, 3, 4, 3]\noutput : list = [3, 4, 3, 0, -3, 5]",
    "output": "generated_output : list = take(reverse([5, -3, 0, 3, 4, 3]),13)",
    "io_inp": [
      5,
      -3,
      0,
      3,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      3,
      0,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(input),13)"
  },
  {
    "input": "input : list = [4, 3, -3, 3]\noutput : list = [-6, -3]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(take([4, 3, -3, 3],2),-5),5)),3)",
    "io_inp": [
      4,
      3,
      -3,
      3
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(take(input,2),-5),5)),3)"
  },
  {
    "input": "input : list = [-4, -2, 5, 5, -3, -5]\noutput : list = [1, 1, -6, -8]",
    "output": "generated_output : list = sort_des(take(add_n(take(take([-4, -2, 5, 5, -3, -5],4),5),-4),8))",
    "io_inp": [
      -4,
      -2,
      5,
      5,
      -3,
      -5
    ],
    "io_out": [
      1,
      1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(take(input,4),5),-4),8))"
  },
  {
    "input": "input : list = [-1, -4, -3]\noutput : list = [40, 56, 8]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(reverse([-1, -4, -3]),-4),4),-4),-4)",
    "io_inp": [
      -1,
      -4,
      -3
    ],
    "io_out": [
      40,
      56,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(reverse(input),-4),4),-4),-4)"
  },
  {
    "input": "input : list = [-5, 1, 3, -4, 3]\noutput : list = [-2, -2, -4, -9, -10]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des([-5, 1, 3, -4, 3]),5)),30)",
    "io_inp": [
      -5,
      1,
      3,
      -4,
      3
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(input),5)),30)"
  },
  {
    "input": "input : list = [-2, 2, -3, -2, -1]\noutput : list = [24, 15, 15, 6, -21]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(sort_asc([-2, 2, -3, -2, -1]),6),-3),3),-3)",
    "io_inp": [
      -2,
      2,
      -3,
      -2,
      -1
    ],
    "io_out": [
      24,
      15,
      15,
      6,
      -21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(sort_asc(input),6),-3),3),-3)"
  },
  {
    "input": "input : list = [4, -3, -3, -1]\noutput : list = [-5, -7, -7, 0]",
    "output": "generated_output : list = add_n(take(reverse([4, -3, -3, -1]),22),-4)",
    "io_inp": [
      4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -7,
      -7,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),22),-4)"
  },
  {
    "input": "input : list = [2, -4, 3, 0, -2]\noutput : list = [8, 7, 5, 3, 1]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n(reverse([2, -4, 3, 0, -2]),-5))))",
    "io_inp": [
      2,
      -4,
      3,
      0,
      -2
    ],
    "io_out": [
      8,
      7,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [-3, 4, -5, 5, -3]\noutput : list = [5, 4, -3, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_des([-3, 4, -5, 5, -3])))))",
    "io_inp": [
      -3,
      4,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      4,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, -3, -5, -4, -5, -4]\noutput : list = [1, 0, 1, 0, 2, 6]",
    "output": "generated_output : list = sub_n(reverse([1, -3, -5, -4, -5, -4]),-5)",
    "io_inp": [
      1,
      -3,
      -5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      1,
      0,
      1,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [0, 2, -2, 1]\noutput : list = [-8, -4, 0, 8]",
    "output": "generated_output : list = mul_n(sort_des([0, 2, -2, 1]),-4)",
    "io_inp": [
      0,
      2,
      -2,
      1
    ],
    "io_out": [
      -8,
      -4,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [4, 1, 1, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = add_n(add_n(take(reverse(drop([4, 1, 1, -2],1)),2),4),-5)",
    "io_inp": [
      4,
      1,
      1,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(drop(input,1)),2),4),-5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n([2, 2],3))),2),4)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n(input,3))),2),4)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(add_n([0, -1],-4),4),-4)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(add_n(input,-4),4),-4)))"
  },
  {
    "input": "input : list = [5, -1, 3, 1]\noutput : list = [-8, -6, -4, -2]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_des(add_n([5, -1, 3, 1],-2)),-5)),-1)",
    "io_inp": [
      5,
      -1,
      3,
      1
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_des(add_n(input,-2)),-5)),-1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [5, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(add_n([-2, 0],1)))),5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(add_n(input,1)))),5)"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc([2, 1, 1])))),-3)",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc(input)))),-3)"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(reverse(take([-1, -4, 1],1)),-5)",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,1)),-5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(sort_des([5, 5])))),5)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [1, 1, 4, -5]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(take([1, 1, 4, -5],2),1)),-1))",
    "io_inp": [
      1,
      1,
      4,
      -5
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(take(input,2),1)),-1))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [10, 0]",
    "output": "generated_output : list = add_n([5, -5],5)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n([2, 2],3),-2))),-2)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n(input,3),-2))),-2)"
  },
  {
    "input": "input : list = [2, 4, -1, 0, 1]\noutput : list = [1, 0, -1, 4, 2]",
    "output": "generated_output : list = reverse([2, 4, -1, 0, 1])",
    "io_inp": [
      2,
      4,
      -1,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -1,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-12, 12]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n([-4, 4],-1)),-3),11)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(input,-1)),-3),11)"
  },
  {
    "input": "input : list = [1, 0, -3, 3, -3, -2]\noutput : list = [3, 1, 0, -2, -3, -3]",
    "output": "generated_output : list = sort_des([1, 0, -3, 3, -3, -2])",
    "io_inp": [
      1,
      0,
      -3,
      3,
      -3,
      -2
    ],
    "io_out": [
      3,
      1,
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2, -3, -5, 4]\noutput : list = [7, 4, -1, -3, 6]",
    "output": "generated_output : list = add_n(take(mul_n([5, 2, -3, -5, 4],1),7),2)",
    "io_inp": [
      5,
      2,
      -3,
      -5,
      4
    ],
    "io_out": [
      7,
      4,
      -1,
      -3,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,1),7),2)"
  },
  {
    "input": "input : list = [4, -3, -4, -1, 2]\noutput : list = [5, -2]",
    "output": "generated_output : list = add_n(reverse(take(reverse(take([4, -3, -4, -1, 2],2)),5)),1)",
    "io_inp": [
      4,
      -3,
      -4,
      -1,
      2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(take(input,2)),5)),1)"
  },
  {
    "input": "input : list = [2, 1, -5, 0]\noutput : list = [0, 5, 6, 7]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n([2, 1, -5, 0],-5)))))",
    "io_inp": [
      2,
      1,
      -5,
      0
    ],
    "io_out": [
      0,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [4, 2, 5, 1, -4, -3]\noutput : list = [9, 7, 10, 6, 1, 2]",
    "output": "generated_output : list = sub_n([4, 2, 5, 1, -4, -3],-5)",
    "io_inp": [
      4,
      2,
      5,
      1,
      -4,
      -3
    ],
    "io_out": [
      9,
      7,
      10,
      6,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -5, 3, -4, 1, 2]\noutput : list = [6, 3, 0, -9, -15, -18]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(add_n([-2, -5, 3, -4, 1, 2],-1)),3)))",
    "io_inp": [
      -2,
      -5,
      3,
      -4,
      1,
      2
    ],
    "io_out": [
      6,
      3,
      0,
      -9,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(add_n(input,-1)),3)))"
  },
  {
    "input": "input : list = [2, -1, 3, 1, -4]\noutput : list = [2, -1, 3]",
    "output": "generated_output : list = take([2, -1, 3, 1, -4],3)",
    "io_inp": [
      2,
      -1,
      3,
      1,
      -4
    ],
    "io_out": [
      2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-25, -10]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(add_n([-4, -1],3)),-1),-3),5)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(add_n(input,3)),-1),-3),5)"
  },
  {
    "input": "input : list = [3, -2, 5]\noutput : list = [10, 8, 3]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(add_n([3, -2, 5],4),-2),3)))",
    "io_inp": [
      3,
      -2,
      5
    ],
    "io_out": [
      10,
      8,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(add_n(input,4),-2),3)))"
  },
  {
    "input": "input : list = [-2, -2, 2, 0, 5]\noutput : list = [2, 2, -2, 0, -5]",
    "output": "generated_output : list = mul_n([-2, -2, 2, 0, 5],-1)",
    "io_inp": [
      -2,
      -2,
      2,
      0,
      5
    ],
    "io_out": [
      2,
      2,
      -2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(drop([3, 2, 2],1),-1))))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(drop(input,1),-1))))"
  },
  {
    "input": "input : list = [3, -1, -5, 2]\noutput : list = [-7, -3, 0, 1]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(add_n([3, -1, -5, 2],-1),-4)),30),5)",
    "io_inp": [
      3,
      -1,
      -5,
      2
    ],
    "io_out": [
      -7,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(add_n(input,-1),-4)),30),5)"
  },
  {
    "input": "input : list = [5, 0, 1, 1]\noutput : list = [-2, 2, 2, 18]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des([5, 0, 1, 1]),4)),-2))",
    "io_inp": [
      5,
      0,
      1,
      1
    ],
    "io_out": [
      -2,
      2,
      2,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des(input),4)),-2))"
  },
  {
    "input": "input : list = [-4, -1, 4, 1, 5]\noutput : list = [31, 19, -1, 11, -5]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(reverse([-4, -1, 4, 1, 5]),-3),-4),3))",
    "io_inp": [
      -4,
      -1,
      4,
      1,
      5
    ],
    "io_out": [
      31,
      19,
      -1,
      11,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(reverse(input),-3),-4),3))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(add_n([-1, -1],-3),-5),-4)))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(add_n(input,-3),-5),-4)))"
  },
  {
    "input": "input : list = [5, 5, 4, 1]\noutput : list = [-60, -60, -48, -12]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(mul_n([5, 5, 4, 1],3))),-4))",
    "io_inp": [
      5,
      5,
      4,
      1
    ],
    "io_out": [
      -60,
      -60,
      -48,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(mul_n(input,3))),-4))"
  },
  {
    "input": "input : list = [-2, 0, -2, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(drop([-2, 0, -2, 0, -1],3)))))",
    "io_inp": [
      -2,
      0,
      -2,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(drop(input,3)))))"
  },
  {
    "input": "input : list = [2, 2, -1, 4]\noutput : list = [-1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 2, -1, 4])",
    "io_inp": [
      2,
      2,
      -1,
      4
    ],
    "io_out": [
      -1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -2, 5]\noutput : list = [5, -2, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, -2, 5])",
    "io_inp": [
      -2,
      1,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -5, 2])",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1, -4, 4, 3]\noutput : list = [-5, -1, -4]",
    "output": "generated_output : list = take([-5, -1, -4, 4, 3],3)",
    "io_inp": [
      -5,
      -1,
      -4,
      4,
      3
    ],
    "io_out": [
      -5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, 1, -3, 0, 4]\noutput : list = [1, -3, 0, 4]",
    "output": "generated_output : list = drop([0, 1, -3, 0, 4],1)",
    "io_inp": [
      0,
      1,
      -3,
      0,
      4
    ],
    "io_out": [
      1,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 3, 0, -5]\noutput : list = [3, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(drop([1, 3, 0, -5],1)))",
    "io_inp": [
      1,
      3,
      0,
      -5
    ],
    "io_out": [
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-3, -2, -3, -2, -3, 1]\noutput : list = [14, 11, 11, 10, 10, 10]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(sub_n([-3, -2, -3, -2, -3, 1],-3),4)),-3),-3)",
    "io_inp": [
      -3,
      -2,
      -3,
      -2,
      -3,
      1
    ],
    "io_out": [
      14,
      11,
      11,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(sub_n(input,-3),4)),-3),-3)"
  },
  {
    "input": "input : list = [-1, -2, -3, 1]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = take(take(reverse(sort_asc(drop([-1, -2, -3, 1],1))),37),26)",
    "io_inp": [
      -1,
      -2,
      -3,
      1
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(drop(input,1))),37),26)"
  },
  {
    "input": "input : list = [2, 0, 3, 0, -3]\noutput : list = [-1, 2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sort_asc([2, 0, 3, 0, -3]),-2))))",
    "io_inp": [
      2,
      0,
      3,
      0,
      -3
    ],
    "io_out": [
      -1,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [-3, -2, 1, 0]\noutput : list = [-1, 0, 2, 3]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([-3, -2, 1, 0])),-1)",
    "io_inp": [
      -3,
      -2,
      1,
      0
    ],
    "io_out": [
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [3, 0, -4, -4, -4, 5]\noutput : list = [12, 12, 12, 0, -9, -15]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sort_asc([3, 0, -4, -4, -4, 5]),14),-3)))",
    "io_inp": [
      3,
      0,
      -4,
      -4,
      -4,
      5
    ],
    "io_out": [
      12,
      12,
      12,
      0,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sort_asc(input),14),-3)))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = take(add_n(take(reverse(reverse([5, 3])),19),-2),40)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(reverse(input)),19),-2),40)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [-33, 3, 7]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n([4, 5, -5],4)),4)),-3)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      -33,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n(input,4)),4)),-3)"
  },
  {
    "input": "input : list = [-4, 4, -2, 0, -5]\noutput : list = [-5, 3, -3, -1, -6]",
    "output": "generated_output : list = sub_n([-4, 4, -2, 0, -5],1)",
    "io_inp": [
      -4,
      4,
      -2,
      0,
      -5
    ],
    "io_out": [
      -5,
      3,
      -3,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, -1, -1]\noutput : list = [45]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(take([0, -1, -1],1),5)),-3),3)",
    "io_inp": [
      0,
      -1,
      -1
    ],
    "io_out": [
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(take(input,1),5)),-3),3)"
  },
  {
    "input": "input : list = [5, 0, -3, 5]\noutput : list = [9, 9, 4, 1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(add_n([5, 0, -3, 5],3),-2)),-1))",
    "io_inp": [
      5,
      0,
      -3,
      5
    ],
    "io_out": [
      9,
      9,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(add_n(input,3),-2)),-1))"
  },
  {
    "input": "input : list = [-1, -3, 2, -3, 1]\noutput : list = [2, 1, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(drop([-1, -3, 2, -3, 1],1),4),-1),5))",
    "io_inp": [
      -1,
      -3,
      2,
      -3,
      1
    ],
    "io_out": [
      2,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(drop(input,1),4),-1),5))"
  },
  {
    "input": "input : list = [-3, 1, 0, 4, 1, -4]\noutput : list = [-12, 0, 4, 16]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(take([-3, 1, 0, 4, 1, -4],4),18)),-4),4)",
    "io_inp": [
      -3,
      1,
      0,
      4,
      1,
      -4
    ],
    "io_out": [
      -12,
      0,
      4,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(take(input,4),18)),-4),4)"
  },
  {
    "input": "input : list = [-2, -2, -1, -1, -3, -5]\noutput : list = [-4, -4, -8, -8, -12, -20]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(sort_asc([-2, -2, -1, -1, -3, -5])),4)),18)",
    "io_inp": [
      -2,
      -2,
      -1,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -8,
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(sort_asc(input)),4)),18)"
  },
  {
    "input": "input : list = [4, -2, -5, 5, 4]\noutput : list = [6, 0, -3, 7, 6]",
    "output": "generated_output : list = take(take(reverse(sub_n(reverse([4, -2, -5, 5, 4]),-2)),29),6)",
    "io_inp": [
      4,
      -2,
      -5,
      5,
      4
    ],
    "io_out": [
      6,
      0,
      -3,
      7,
      6
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(reverse(input),-2)),29),6)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(sub_n([3, -5],2)),3)))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(sub_n(input,2)),3)))"
  },
  {
    "input": "input : list = [2, 4, 1, -3, -3, 2]\noutput : list = [4, 4, 8, 9, 9, 11]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(sort_asc([2, 4, 1, -3, -3, 2]),-2),5)))",
    "io_inp": [
      2,
      4,
      1,
      -3,
      -3,
      2
    ],
    "io_out": [
      4,
      4,
      8,
      9,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(sort_asc(input),-2),5)))"
  },
  {
    "input": "input : list = [5, 3, -2, 4, -3, 3]\noutput : list = [-3, -2, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 3, -2, 4, -3, 3])",
    "io_inp": [
      5,
      3,
      -2,
      4,
      -3,
      3
    ],
    "io_out": [
      -3,
      -2,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -4, 3]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(take([3, -4, 3],1)))),-2)",
    "io_inp": [
      3,
      -4,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(take(input,1)))),-2)"
  },
  {
    "input": "input : list = [-4, -3, 0, -1, 0]\noutput : list = [-2, -1, 1, 2, 2]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(sub_n([-4, -3, 0, -1, 0],-2))),21))",
    "io_inp": [
      -4,
      -3,
      0,
      -1,
      0
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(sub_n(input,-2))),21))"
  },
  {
    "input": "input : list = [5, 5, 0, -1]\noutput : list = [5, 5, 0, -1]",
    "output": "generated_output : list = reverse(take(reverse(sort_des([5, 5, 0, -1])),19))",
    "io_inp": [
      5,
      5,
      0,
      -1
    ],
    "io_out": [
      5,
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(input)),19))"
  },
  {
    "input": "input : list = [-1, 2, -5, -5, 1]\noutput : list = [-9, -6, 0, 12, 12]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(add_n([-1, 2, -5, -5, 1],1)),-3)))",
    "io_inp": [
      -1,
      2,
      -5,
      -5,
      1
    ],
    "io_out": [
      -9,
      -6,
      0,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(add_n(input,1)),-3)))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(add_n(add_n([-1, -1],-2),-3),-1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-2),-3),-1)"
  },
  {
    "input": "input : list = [4, 2, -1, 4, -5]\noutput : list = [-10, -2, 4, 8, 8]",
    "output": "generated_output : list = sort_asc(mul_n([4, 2, -1, 4, -5],2))",
    "io_inp": [
      4,
      2,
      -1,
      4,
      -5
    ],
    "io_out": [
      -10,
      -2,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(reverse([4, 0]))),-3),3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(reverse(input))),-3),3)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [-4, -4, -8]",
    "output": "generated_output : list = add_n(reverse([-5, -1, -1]),-3)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [4, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse([5, 1]))),4))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [2, -5, -2, 1, -5, -2]\noutput : list = [7, 5, -1, -1, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(add_n([2, -5, -2, 1, -5, -2],3)),2),3))",
    "io_inp": [
      2,
      -5,
      -2,
      1,
      -5,
      -2
    ],
    "io_out": [
      7,
      5,
      -1,
      -1,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(add_n(input,3)),2),3))"
  },
  {
    "input": "input : list = [-5, -2, 0, -1]\noutput : list = [10, 15]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(drop([-5, -2, 0, -1],2),18)),-2),-5)",
    "io_inp": [
      -5,
      -2,
      0,
      -1
    ],
    "io_out": [
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(drop(input,2),18)),-2),-5)"
  },
  {
    "input": "input : list = [0, 0, -2]\noutput : list = [2, 2, 0]",
    "output": "generated_output : list = take(add_n(reverse(take(sort_asc([0, 0, -2]),17)),2),38)",
    "io_inp": [
      0,
      0,
      -2
    ],
    "io_out": [
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(sort_asc(input),17)),2),38)"
  },
  {
    "input": "input : list = [-4, 3, -2, 1, -5, 5]\noutput : list = [-5, -4, -2, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([-4, 3, -2, 1, -5, 5])",
    "io_inp": [
      -4,
      3,
      -2,
      1,
      -5,
      5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, 5, 2, -4, -4]\noutput : list = [-6, -6, -3, -2, 0, 3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-1, 0, 5, 2, -4, -4]),2))",
    "io_inp": [
      -1,
      0,
      5,
      2,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),2))"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(take(take(take(reverse([3, -1, 1]),1),10),10),-2)",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(reverse(input),1),10),10),-2)"
  },
  {
    "input": "input : list = [-5, -4, -4, 4, 1]\noutput : list = [80, 20, -80, -80, -100]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse([-5, -4, -4, 4, 1])),-5),-4)",
    "io_inp": [
      -5,
      -4,
      -4,
      4,
      1
    ],
    "io_out": [
      80,
      20,
      -80,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(input)),-5),-4)"
  },
  {
    "input": "input : list = [-5, 5, 3, -2]\noutput : list = [6, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(take([-5, 5, 3, -2],2),19))),1)",
    "io_inp": [
      -5,
      5,
      3,
      -2
    ],
    "io_out": [
      6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(take(input,2),19))),1)"
  },
  {
    "input": "input : list = [1, -4, 2]\noutput : list = [-9, 6, 9]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([1, -4, 2],3),-3))",
    "io_inp": [
      1,
      -4,
      2
    ],
    "io_out": [
      -9,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,3),-3))"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(add_n(take(sort_asc([4, -5, 2]),6),-4)),1)",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(sort_asc(input),6),-4)),1)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [-8]",
    "output": "generated_output : list = take(reverse(add_n(take([-5, -3, -1],1),-3)),37)",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(input,1),-3)),37)"
  },
  {
    "input": "input : list = [5, -1, 3]\noutput : list = [8, 6, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(sort_des([5, -1, 3])))),-3)",
    "io_inp": [
      5,
      -1,
      3
    ],
    "io_out": [
      8,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [5, 4, -3, 2, -4]\noutput : list = [-96, -80, 32, -48, 48]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(reverse([5, 4, -3, 2, -4])),-4),-4),4)",
    "io_inp": [
      5,
      4,
      -3,
      2,
      -4
    ],
    "io_out": [
      -96,
      -80,
      32,
      -48,
      48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(reverse(input)),-4),-4),4)"
  },
  {
    "input": "input : list = [1, -5, -3, -3, 1, 0]\noutput : list = [-8, -6, -6, -3, -2, -2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(sub_n([1, -5, -3, -3, 1, 0],3)))))",
    "io_inp": [
      1,
      -5,
      -3,
      -3,
      1,
      0
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [1, 3, -5, 3, 4]\noutput : list = [-1, -5, 11, -5, -7]",
    "output": "generated_output : list = sub_n(mul_n([1, 3, -5, 3, 4],-2),-1)",
    "io_inp": [
      1,
      3,
      -5,
      3,
      4
    ],
    "io_out": [
      -1,
      -5,
      11,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),-1)"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [10, 7, 7]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_des([2, -1, -1]),-4),-5),1))",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      10,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_des(input),-4),-5),1))"
  },
  {
    "input": "input : list = [3, 2, 2, -2, 5, 0]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(take([3, 2, 2, -2, 5, 0],2)),-1)))",
    "io_inp": [
      3,
      2,
      2,
      -2,
      5,
      0
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(take(input,2)),-1)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [8, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n([5, -4],2)),-1))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(input,2)),-1))"
  },
  {
    "input": "input : list = [0, -1, -1, -3, 4, 0]\noutput : list = [6, 2, 2, 0, 0, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(mul_n([0, -1, -1, -3, 4, 0],-2)))))",
    "io_inp": [
      0,
      -1,
      -1,
      -3,
      4,
      0
    ],
    "io_out": [
      6,
      2,
      2,
      0,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(mul_n(input,-2)))))"
  },
  {
    "input": "input : list = [2, 5, 3, -5, 5, -5]\noutput : list = [5, 5, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(reverse([2, 5, 3, -5, 5, -5]),-1))))",
    "io_inp": [
      2,
      5,
      3,
      -5,
      5,
      -5
    ],
    "io_out": [
      5,
      5,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-3, -1, -3, 0]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(take([-3, -1, -3, 0],1)))))",
    "io_inp": [
      -3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [1, -1, 4, 0]\noutput : list = [6, 7, 8, 11]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(sub_n([1, -1, 4, 0],-5),-3),-5)))",
    "io_inp": [
      1,
      -1,
      4,
      0
    ],
    "io_out": [
      6,
      7,
      8,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(sub_n(input,-5),-3),-5)))"
  },
  {
    "input": "input : list = [1, -1, 5, -3, 1, 0]\noutput : list = [-6, -10, -10, -11, -12, -14]",
    "output": "generated_output : list = sub_n(sub_n(take(add_n(sort_des([1, -1, 5, -3, 1, 0]),-5),8),1),5)",
    "io_inp": [
      1,
      -1,
      5,
      -3,
      1,
      0
    ],
    "io_out": [
      -6,
      -10,
      -10,
      -11,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(add_n(sort_des(input),-5),8),1),5)"
  },
  {
    "input": "input : list = [2, 1, 1, -4, -1, 2]\noutput : list = [2, 2, 1, 1, -1, -4]",
    "output": "generated_output : list = sort_des([2, 1, 1, -4, -1, 2])",
    "io_inp": [
      2,
      1,
      1,
      -4,
      -1,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(reverse([1, -1])),-3)),31)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(reverse(input)),-3)),31)"
  },
  {
    "input": "input : list = [0, -1, 5, 5, 2, 0]\noutput : list = [0, 0, -12, -20, -20, -24]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(reverse([0, -1, 5, 5, 2, 0]))),5),4)",
    "io_inp": [
      0,
      -1,
      5,
      5,
      2,
      0
    ],
    "io_out": [
      0,
      0,
      -12,
      -20,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(reverse(input))),5),4)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [18, 36]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sub_n([3, 1],5)),3),-3))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      18,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sub_n(input,5)),3),-3))"
  },
  {
    "input": "input : list = [-1, 5, -5, 0]\noutput : list = [-1, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(take([-1, 5, -5, 0],2)))),41)",
    "io_inp": [
      -1,
      5,
      -5,
      0
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(take(input,2)))),41)"
  },
  {
    "input": "input : list = [-4, 3, 1, -3, -5]\noutput : list = [3, 1, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(reverse([-4, 3, 1, -3, -5])),13)))",
    "io_inp": [
      -4,
      3,
      1,
      -3,
      -5
    ],
    "io_out": [
      3,
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(reverse(input)),13)))"
  },
  {
    "input": "input : list = [-4, 1, 2, -5, 5]\noutput : list = [-24, -15, -12, 3, 6]",
    "output": "generated_output : list = mul_n(sort_des(take(take(add_n([-4, 1, 2, -5, 5],3),24),17)),-3)",
    "io_inp": [
      -4,
      1,
      2,
      -5,
      5
    ],
    "io_out": [
      -24,
      -15,
      -12,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(add_n(input,3),24),17)),-3)"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [300, 300, -600]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(mul_n([2, -1, -1],-5),3),5),4))",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      300,
      300,
      -600
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(mul_n(input,-5),3),5),4))"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = sort_des([4, -5, 3])",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, 1, -5]\noutput : list = [-4, 1, -5]",
    "output": "generated_output : list = drop([-5, -4, 1, -5],1)",
    "io_inp": [
      -5,
      -4,
      1,
      -5
    ],
    "io_out": [
      -4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -1, -4, 2, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(take([-5, -1, -4, 2, 4],2),5),30)))",
    "io_inp": [
      -5,
      -1,
      -4,
      2,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(take(input,2),5),30)))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-3, -10]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(add_n([-3, 4],-4)),-2)),1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -3,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(add_n(input,-4)),-2)),1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n([-5, -1],3)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, 0, -5, 1, -5, 3]\noutput : list = [-20, -20, -5, -2, 4, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(reverse([3, 0, -5, 1, -5, 3]),3)),-2),-3)",
    "io_inp": [
      3,
      0,
      -5,
      1,
      -5,
      3
    ],
    "io_out": [
      -20,
      -20,
      -5,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(reverse(input),3)),-2),-3)"
  },
  {
    "input": "input : list = [4, -4, 3, 5]\noutput : list = [-1, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([4, -4, 3, 5],2),-5))",
    "io_inp": [
      4,
      -4,
      3,
      5
    ],
    "io_out": [
      -1,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,2),-5))"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(drop([4, 3, -3],1)))))",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [-3, -3, -9]",
    "output": "generated_output : list = add_n(sort_des([2, -4, 2]),-5)",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      -3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-2, 2, -1, 4, 2]\noutput : list = [1, -1, -1, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(add_n([-2, 2, -1, 4, 2],5)),-4)),4)",
    "io_inp": [
      -2,
      2,
      -1,
      4,
      2
    ],
    "io_out": [
      1,
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(add_n(input,5)),-4)),4)"
  },
  {
    "input": "input : list = [-2, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = drop([-2, 1, 0],1)",
    "io_inp": [
      -2,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 1, 1, -4]\noutput : list = [-1, -1, 4]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(drop([-3, 1, 1, -4],1),9),22),-1))",
    "io_inp": [
      -3,
      1,
      1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(drop(input,1),9),22),-1))"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = sort_asc([0, -2, 1])",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse([5, 4, -5]))))",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [-1, 0, 4, 4]\noutput : list = [7, 7, 3, 2]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(mul_n([-1, 0, 4, 4],1)),-2),-1),31)",
    "io_inp": [
      -1,
      0,
      4,
      4
    ],
    "io_out": [
      7,
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(mul_n(input,1)),-2),-1),31)"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(reverse([4, 2, 4]),4))))",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-1, 5, 0]\noutput : list = [25, 0, -5]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(mul_n([-1, 5, 0],5),-5),5)))",
    "io_inp": [
      -1,
      5,
      0
    ],
    "io_out": [
      25,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(mul_n(input,5),-5),5)))"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [2, 2, 1]",
    "output": "generated_output : list = sort_des([2, 1, 2])",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 4, 2, 0]\noutput : list = [19, 13, 4, 10, 16]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(reverse([-1, 1, 4, 2, 0]),-4)),-3),-4)",
    "io_inp": [
      -1,
      1,
      4,
      2,
      0
    ],
    "io_out": [
      19,
      13,
      4,
      10,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(reverse(input),-4)),-3),-4)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(sub_n([-1, 3],5),3),5)))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(sub_n(input,5),3),5)))"
  },
  {
    "input": "input : list = [3, -5, -3, -3, 5, -5]\noutput : list = [7, -1, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(drop([3, -5, -3, -3, 5, -5],2),-1))),3)",
    "io_inp": [
      3,
      -5,
      -3,
      -3,
      5,
      -5
    ],
    "io_out": [
      7,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(drop(input,2),-1))),3)"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 0, -5],1)",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 5, -4, -5, 1]\noutput : list = [10, 10, 1, 0, 6]",
    "output": "generated_output : list = sub_n([5, 5, -4, -5, 1],-5)",
    "io_inp": [
      5,
      5,
      -4,
      -5,
      1
    ],
    "io_out": [
      10,
      10,
      1,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -2, 5, -5, 0, -5]\noutput : list = [-31, -47, 65, -95, -15, -95]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(add_n([-1, -2, 5, -5, 0, -5],-1),4),4),-1),-2)",
    "io_inp": [
      -1,
      -2,
      5,
      -5,
      0,
      -5
    ],
    "io_out": [
      -31,
      -47,
      65,
      -95,
      -15,
      -95
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(add_n(input,-1),4),4),-1),-2)"
  },
  {
    "input": "input : list = [-3, 5, 3, 3]\noutput : list = [-3, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([-3, 5, 3, 3])",
    "io_inp": [
      -3,
      5,
      3,
      3
    ],
    "io_out": [
      -3,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, 1, 3, -4, -2]\noutput : list = [-8, -12]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(drop([-3, 5, 1, 3, -4, -2],4))),2),4)",
    "io_inp": [
      -3,
      5,
      1,
      3,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(drop(input,4))),2),4)"
  },
  {
    "input": "input : list = [0, -5, 0, -1, 1, -4]\noutput : list = [5, 6, 9, 10, 10, 11]",
    "output": "generated_output : list = add_n(sort_asc(add_n([0, -5, 0, -1, 1, -4],5)),5)",
    "io_inp": [
      0,
      -5,
      0,
      -1,
      1,
      -4
    ],
    "io_out": [
      5,
      6,
      9,
      10,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,5)),5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(reverse([-5, -4])))),6)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(reverse(input)))),6)"
  },
  {
    "input": "input : list = [2, -2, -5, 2, 4]\noutput : list = [-10, -1, 11, 11, 17]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(sort_asc([2, -2, -5, 2, 4]),-3),-1),12),5)",
    "io_inp": [
      2,
      -2,
      -5,
      2,
      4
    ],
    "io_out": [
      -10,
      -1,
      11,
      11,
      17
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(sort_asc(input),-3),-1),12),5)"
  },
  {
    "input": "input : list = [0, 1, 1, 4]\noutput : list = [1, -2, -2, -3]",
    "output": "generated_output : list = add_n(sort_des([0, 1, 1, 4]),-3)",
    "io_inp": [
      0,
      1,
      1,
      4
    ],
    "io_out": [
      1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [6, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([0, 0, -1],3)),-4)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,3)),-4)"
  },
  {
    "input": "input : list = [5, 5, 1, 1]\noutput : list = [4, 4, 8, 8]",
    "output": "generated_output : list = sub_n(reverse([5, 5, 1, 1]),-3)",
    "io_inp": [
      5,
      5,
      1,
      1
    ],
    "io_out": [
      4,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [3, -4, 4, -3]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(take([3, -4, 4, -3],1)))))",
    "io_inp": [
      3,
      -4,
      4,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc([0, -4])),2),26))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc(input)),2),26))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-25, -10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(sub_n([1, -2],-4)))),-5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(sub_n(input,-4)))),-5)"
  },
  {
    "input": "input : list = [0, -5, 1, -1, -3]\noutput : list = [1, -4, 2, 0, -2]",
    "output": "generated_output : list = sub_n([0, -5, 1, -1, -3],-1)",
    "io_inp": [
      0,
      -5,
      1,
      -1,
      -3
    ],
    "io_out": [
      1,
      -4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, 0, 1, -4, 3]\noutput : list = [-12, 0, 3, 3]",
    "output": "generated_output : list = sort_asc(take(mul_n([1, 0, 1, -4, 3],3),4))",
    "io_inp": [
      1,
      0,
      1,
      -4,
      3
    ],
    "io_out": [
      -12,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,3),4))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-1, -16]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(mul_n([1, -4],3)),5)),-1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -1,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(mul_n(input,3)),5)),-1)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(sort_des([3, -3]),-2),-1),16),4)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(sort_des(input),-2),-1),16),4)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [10, 10]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(add_n([2, 2],2),-2),1),-2),-4)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(add_n(input,2),-2),1),-2),-4)"
  },
  {
    "input": "input : list = [0, 1, 3, 5]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(take([0, 1, 3, 5],1),-1),1),23))",
    "io_inp": [
      0,
      1,
      3,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(take(input,1),-1),1),23))"
  },
  {
    "input": "input : list = [-3, -3, -2]\noutput : list = [-7, -7, -6]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-3, -3, -2]),-4))",
    "io_inp": [
      -3,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [5, 3, 0, -1]\noutput : list = [-30, -20, -5, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(mul_n([5, 3, 0, -1],-5))),-2),-3)",
    "io_inp": [
      5,
      3,
      0,
      -1
    ],
    "io_out": [
      -30,
      -20,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(mul_n(input,-5))),-2),-3)"
  },
  {
    "input": "input : list = [-2, 0, 5, 3, 1]\noutput : list = [4, 6, 8, 3, 1]",
    "output": "generated_output : list = take(add_n(take(add_n(reverse([-2, 0, 5, 3, 1]),5),11),-2),42)",
    "io_inp": [
      -2,
      0,
      5,
      3,
      1
    ],
    "io_out": [
      4,
      6,
      8,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(reverse(input),5),11),-2),42)"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [-43, -33, 7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n([5, 3, -5],-2),-5),3),5)",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      -43,
      -33,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(input,-2),-5),3),5)"
  },
  {
    "input": "input : list = [5, 0, 1, 2]\noutput : list = [-25, -10, -5, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sort_des([5, 0, 1, 2]),-5))))",
    "io_inp": [
      5,
      0,
      1,
      2
    ],
    "io_out": [
      -25,
      -10,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [2, -1, -1, -4, -1]\noutput : list = [-1, -1, -1, -4]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(drop([2, -1, -1, -4, -1],1))),26))",
    "io_inp": [
      2,
      -1,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(drop(input,1))),26))"
  },
  {
    "input": "input : list = [-3, 5, 4, 0, 4, -3]\noutput : list = [-9, 15, 12, 0, 12, -9]",
    "output": "generated_output : list = mul_n([-3, 5, 4, 0, 4, -3],3)",
    "io_inp": [
      -3,
      5,
      4,
      0,
      4,
      -3
    ],
    "io_out": [
      -9,
      15,
      12,
      0,
      12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc([-3, -4, 4]),2),1))",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(input),2),1))"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [0, 0, -2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([-1, 1, -1],1)),-1)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,1)),-1)"
  },
  {
    "input": "input : list = [4, -1, -1, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(drop([4, -1, -1, 1, 4],3)))))",
    "io_inp": [
      4,
      -1,
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(drop(input,3)))))"
  },
  {
    "input": "input : list = [-1, -5, -1, 1, 0]\noutput : list = [-4, -5, -6, -6, -10]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sub_n([-1, -5, -1, 1, 0],1)),4),25),35)",
    "io_inp": [
      -1,
      -5,
      -1,
      1,
      0
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sub_n(input,1)),4),25),35)"
  },
  {
    "input": "input : list = [3, 4, 5]\noutput : list = [16, 20, 24]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des(add_n([3, 4, 5],4)),-3)),4)",
    "io_inp": [
      3,
      4,
      5
    ],
    "io_out": [
      16,
      20,
      24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(add_n(input,4)),-3)),4)"
  },
  {
    "input": "input : list = [5, 3, -3, 5, -5]\noutput : list = [4, 4, 2, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sort_asc([5, 3, -3, 5, -5]),-3)),-2))",
    "io_inp": [
      5,
      3,
      -3,
      5,
      -5
    ],
    "io_out": [
      4,
      4,
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sort_asc(input),-3)),-2))"
  },
  {
    "input": "input : list = [-5, 0, -3, -2]\noutput : list = [3, 7, 9, 13]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(add_n([-5, 0, -3, -2],-1),-2)),1))",
    "io_inp": [
      -5,
      0,
      -3,
      -2
    ],
    "io_out": [
      3,
      7,
      9,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(add_n(input,-1),-2)),1))"
  },
  {
    "input": "input : list = [3, -5, 2, 0]\noutput : list = [-1, 15]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(take([3, -5, 2, 0],2),5),-2),14),5)",
    "io_inp": [
      3,
      -5,
      2,
      0
    ],
    "io_out": [
      -1,
      15
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(take(input,2),5),-2),14),5)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(add_n([4, -1],-2),5))),2)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(add_n(input,-2),5))),2)"
  },
  {
    "input": "input : list = [-4, -1, 1, 5, -4]\noutput : list = [-3, -15, 12]",
    "output": "generated_output : list = mul_n(drop([-4, -1, 1, 5, -4],2),-3)",
    "io_inp": [
      -4,
      -1,
      1,
      5,
      -4
    ],
    "io_out": [
      -3,
      -15,
      12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [-2, -9]",
    "output": "generated_output : list = reverse(sub_n(drop([5, -4, 3],1),5))",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,1),5))"
  },
  {
    "input": "input : list = [3, -3, 2, -5]\noutput : list = [-4, 20, 0, 28]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(mul_n([3, -3, 2, -5],-4),-2),-4),2),28)",
    "io_inp": [
      3,
      -3,
      2,
      -5
    ],
    "io_out": [
      -4,
      20,
      0,
      28
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(mul_n(input,-4),-2),-4),2),28)"
  },
  {
    "input": "input : list = [5, -1, 2, 1]\noutput : list = [33, 3, 18, 13]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([5, -1, 2, 1],5),-3),-5)",
    "io_inp": [
      5,
      -1,
      2,
      1
    ],
    "io_out": [
      33,
      3,
      18,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,5),-3),-5)"
  },
  {
    "input": "input : list = [-2, 0, -4, -4, 2, -5]\noutput : list = [-7, -6, -6, -4, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(reverse([-2, 0, -4, -4, 2, -5])),-2)",
    "io_inp": [
      -2,
      0,
      -4,
      -4,
      2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(input)),-2)"
  },
  {
    "input": "input : list = [5, 0, 0, 5, -3, -4]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = drop([5, 0, 0, 5, -3, -4],3)",
    "io_inp": [
      5,
      0,
      0,
      5,
      -3,
      -4
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, -3, -2, 1, 5]\noutput : list = [-3, -2, 1, 5]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(drop([4, -3, -2, 1, 5],1),18)),1),15)",
    "io_inp": [
      4,
      -3,
      -2,
      1,
      5
    ],
    "io_out": [
      -3,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(drop(input,1),18)),1),15)"
  },
  {
    "input": "input : list = [1, 5, -4, 5]\noutput : list = [-3, 6, -3, 1]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(sub_n([1, 5, -4, 5],4),-3),5),-1))",
    "io_inp": [
      1,
      5,
      -4,
      5
    ],
    "io_out": [
      -3,
      6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(sub_n(input,4),-3),5),-1))"
  },
  {
    "input": "input : list = [1, -5, 4]\noutput : list = [7, 13, 25]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(sub_n([1, -5, 4],4)),-5),-2),-3)",
    "io_inp": [
      1,
      -5,
      4
    ],
    "io_out": [
      7,
      13,
      25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(sub_n(input,4)),-5),-2),-3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(mul_n([0, 5],1))),-2))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(mul_n(input,1))),-2))"
  },
  {
    "input": "input : list = [-4, 3, 2, -1]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(drop([-4, 3, 2, -1],1))),23)",
    "io_inp": [
      -4,
      3,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(drop(input,1))),23)"
  },
  {
    "input": "input : list = [5, -1, -2, 0, 3, 0]\noutput : list = [17, 7, -3, -3, -33, -53]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(mul_n([5, -1, -2, 0, 3, 0],5),-2),-4)),1)",
    "io_inp": [
      5,
      -1,
      -2,
      0,
      3,
      0
    ],
    "io_out": [
      17,
      7,
      -3,
      -3,
      -33,
      -53
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(mul_n(input,5),-2),-4)),1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-25, 5]",
    "output": "generated_output : list = take(mul_n(sort_asc([-5, 1]),5),6)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -25,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),5),6)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-1, 0]",
    "output": "generated_output : list = add_n(sub_n([-5, -4],-3),1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-3),1)"
  },
  {
    "input": "input : list = [2, 0, -2, -1, -3, -4]\noutput : list = [-4, -3, -2, -1, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(sub_n([2, 0, -2, -1, -3, -4],1),27))),1)",
    "io_inp": [
      2,
      0,
      -2,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(sub_n(input,1),27))),1)"
  },
  {
    "input": "input : list = [0, -3, 0, -4]\noutput : list = [-5, -20, -5, -25]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(sub_n([0, -3, 0, -4],-2),1),1),3),5)",
    "io_inp": [
      0,
      -3,
      0,
      -4
    ],
    "io_out": [
      -5,
      -20,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(sub_n(input,-2),1),1),3),5)"
  },
  {
    "input": "input : list = [-1, 5, -1, 3, 0, 5]\noutput : list = [6, 1, 4, 0, 6, 0]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(sub_n([-1, 5, -1, 3, 0, 5],2),-1),1),-3))",
    "io_inp": [
      -1,
      5,
      -1,
      3,
      0,
      5
    ],
    "io_out": [
      6,
      1,
      4,
      0,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(sub_n(input,2),-1),1),-3))"
  },
  {
    "input": "input : list = [1, 4, 4]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(sort_des(add_n(take(drop([1, 4, 4],1),4),2)),7)",
    "io_inp": [
      1,
      4,
      4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(drop(input,1),4),2)),7)"
  },
  {
    "input": "input : list = [4, 2, 4, -2, 1]\noutput : list = [-30, -30, -24, -21, -12]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(add_n([4, 2, 4, -2, 1],4)),-2)),-3)",
    "io_inp": [
      4,
      2,
      4,
      -2,
      1
    ],
    "io_out": [
      -30,
      -30,
      -24,
      -21,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(add_n(input,4)),-2)),-3)"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [-22, -7, 3]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(sort_asc([-1, -4, 1]),5),7),3),1)",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      -22,
      -7,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(sort_asc(input),5),7),3),1)"
  },
  {
    "input": "input : list = [-5, -4, -4, -1]\noutput : list = [-2, 7, 7, 10]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(mul_n([-5, -4, -4, -1],-3),-5))))",
    "io_inp": [
      -5,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -2,
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(mul_n(input,-3),-5))))"
  },
  {
    "input": "input : list = [4, 1, 4, 3, 4, 0]\noutput : list = [-1, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(take([4, 1, 4, 3, 4, 0],3)),2)",
    "io_inp": [
      4,
      1,
      4,
      3,
      4,
      0
    ],
    "io_out": [
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(input,3)),2)"
  },
  {
    "input": "input : list = [-2, 5, 1, -5, -3]\noutput : list = [9, 5, 2, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(sub_n([-2, 5, 1, -5, -3],-5))),4),1)",
    "io_inp": [
      -2,
      5,
      1,
      -5,
      -3
    ],
    "io_out": [
      9,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(sub_n(input,-5))),4),1)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-1, -13]",
    "output": "generated_output : list = sort_des(add_n(reverse(mul_n(add_n([-3, 3],-4),2)),1))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -1,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(mul_n(add_n(input,-4),2)),1))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-60, 36]",
    "output": "generated_output : list = take(mul_n(mul_n([-5, 3],4),3),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -60,
      36
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,4),3),5)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(reverse(take(take(sort_asc([0, 4]),4),14)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sort_asc(input),4),14)))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(mul_n([3, 2],1),-1)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-1)"
  },
  {
    "input": "input : list = [5, 3, 3, 0]\noutput : list = [-8, -14, -14, -18]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(mul_n([5, 3, 3, 0],-2),6)),5),3)",
    "io_inp": [
      5,
      3,
      3,
      0
    ],
    "io_out": [
      -8,
      -14,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(mul_n(input,-2),6)),5),3)"
  },
  {
    "input": "input : list = [-3, -1, -2, -3, -5, 5]\noutput : list = [4, -2, -3, -4, -4, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(reverse([-3, -1, -2, -3, -5, 5]),1),1),-1))",
    "io_inp": [
      -3,
      -1,
      -2,
      -3,
      -5,
      5
    ],
    "io_out": [
      4,
      -2,
      -3,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(reverse(input),1),1),-1))"
  },
  {
    "input": "input : list = [-2, -4, 2, 3, 0, 4]\noutput : list = [-40, -30, -20, -10, -5, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(add_n([-2, -4, 2, 3, 0, 4],-1)),-3),5))",
    "io_inp": [
      -2,
      -4,
      2,
      3,
      0,
      4
    ],
    "io_out": [
      -40,
      -30,
      -20,
      -10,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(add_n(input,-1)),-3),5))"
  },
  {
    "input": "input : list = [-4, 4, -4, 4]\noutput : list = [12, 12, -20, -20]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(mul_n([-4, 4, -4, 4],1)),4),-4))",
    "io_inp": [
      -4,
      4,
      -4,
      4
    ],
    "io_out": [
      12,
      12,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(mul_n(input,1)),4),-4))"
  },
  {
    "input": "input : list = [-1, 2, 3, -2]\noutput : list = [8, 7, 4, 3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(sort_des([-1, 2, 3, -2]),18)),-5))",
    "io_inp": [
      -1,
      2,
      3,
      -2
    ],
    "io_out": [
      8,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(sort_des(input),18)),-5))"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(sort_des([2, 3, 3])))),3)",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [3, -5, 5, 5, 3, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take([3, -5, 5, 5, 3, 0],1)),-3))",
    "io_inp": [
      3,
      -5,
      5,
      5,
      3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(input,1)),-3))"
  },
  {
    "input": "input : list = [-5, -4, 0, -2, -3]\noutput : list = [-5, -4, -3, -2, 0]",
    "output": "generated_output : list = sort_asc([-5, -4, 0, -2, -3])",
    "io_inp": [
      -5,
      -4,
      0,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [5, -2, 1]",
    "output": "generated_output : list = sub_n(take(mul_n([-4, 3, 0],-1),10),-1)",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,-1),10),-1)"
  },
  {
    "input": "input : list = [2, -5, 0, 0, -4, -1]\noutput : list = [-1, -4, 0, 0, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 0, 0, -4, -1])",
    "io_inp": [
      2,
      -5,
      0,
      0,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4,
      0,
      0,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, -4, 3]\noutput : list = [6, 5, 3, -1]",
    "output": "generated_output : list = sort_des(sub_n(add_n([2, 0, -4, 3],1),-2))",
    "io_inp": [
      2,
      0,
      -4,
      3
    ],
    "io_out": [
      6,
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,1),-2))"
  },
  {
    "input": "input : list = [-1, -1, -3, -3, 5]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = drop(reverse([-1, -1, -3, -3, 5]),2)",
    "io_inp": [
      -1,
      -1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(reverse(input),2)"
  },
  {
    "input": "input : list = [4, -3, 2, 5, 0]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_asc(sort_des([4, -3, 2, 5, 0])),1)",
    "io_inp": [
      4,
      -3,
      2,
      5,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-4, -8]",
    "output": "generated_output : list = mul_n(sort_des([-1, -2]),4)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [5, 5, -3, 3, 1, -2]\noutput : list = [-37, -37, -21, -5, 19, 27]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(mul_n([5, 5, -3, 3, 1, -2],2),-4)),1),-4)",
    "io_inp": [
      5,
      5,
      -3,
      3,
      1,
      -2
    ],
    "io_out": [
      -37,
      -37,
      -21,
      -5,
      19,
      27
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(mul_n(input,2),-4)),1),-4)"
  },
  {
    "input": "input : list = [2, 3, 5, 1, -2, 4]\noutput : list = [-10, -8, -6, -4, -2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(mul_n([2, 3, 5, 1, -2, 4],-1),2),-3),3))",
    "io_inp": [
      2,
      3,
      5,
      1,
      -2,
      4
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(mul_n(input,-1),2),-3),3))"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [-1, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(mul_n([2, -1, -1],2)))),5)",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(mul_n(input,2)))),5)"
  },
  {
    "input": "input : list = [3, -5, -5, 3, -5]\noutput : list = [-8, -8, -8, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n([3, -5, -5, 3, -5],-3))",
    "io_inp": [
      3,
      -5,
      -5,
      3,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -8,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(drop([0, -1, 1],1)),-5),2))",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(drop(input,1)),-5),2))"
  },
  {
    "input": "input : list = [-4, 2, 0, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = take([-4, 2, 0, -4],2)",
    "io_inp": [
      -4,
      2,
      0,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-13, -5]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(reverse([0, 2])),-4)),5)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -13,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(reverse(input)),-4)),5)"
  },
  {
    "input": "input : list = [1, -2, 0, 3, 2, 1]\noutput : list = [3, 2, 1, 1, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_des([1, -2, 0, 3, 2, 1])))))",
    "io_inp": [
      1,
      -2,
      0,
      3,
      2,
      1
    ],
    "io_out": [
      3,
      2,
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, 2, 5, -2, -2]\noutput : list = [-14, -12, -12, -8, -5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(add_n([-4, 2, 5, -2, -2],-1),-5)),4))",
    "io_inp": [
      -4,
      2,
      5,
      -2,
      -2
    ],
    "io_out": [
      -14,
      -12,
      -12,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(add_n(input,-1),-5)),4))"
  },
  {
    "input": "input : list = [4, 4, 2, -1, 0, -1]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sub_n([4, 4, 2, -1, 0, -1],4)),2),3))",
    "io_inp": [
      4,
      4,
      2,
      -1,
      0,
      -1
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sub_n(input,4)),2),3))"
  },
  {
    "input": "input : list = [3, 1, -5, -2, -3, 4]\noutput : list = [-2, -1, 1, 4, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(mul_n([3, 1, -5, -2, -3, 4],-1)))),-2)",
    "io_inp": [
      3,
      1,
      -5,
      -2,
      -3,
      4
    ],
    "io_out": [
      -2,
      -1,
      1,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(mul_n(input,-1)))),-2)"
  },
  {
    "input": "input : list = [2, 2, -2, 3, 5]\noutput : list = [-6, -6, 6]",
    "output": "generated_output : list = mul_n(take([2, 2, -2, 3, 5],3),-3)",
    "io_inp": [
      2,
      2,
      -2,
      3,
      5
    ],
    "io_out": [
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [6, -15, -21]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sub_n([-2, -4, 5],3),-3),-1)))",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      6,
      -15,
      -21
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sub_n(input,3),-3),-1)))"
  },
  {
    "input": "input : list = [-3, -2, 3, 1]\noutput : list = [-9, -7, -4, -3]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(sub_n([-3, -2, 3, 1],-1)),5)),-1)",
    "io_inp": [
      -3,
      -2,
      3,
      1
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(sub_n(input,-1)),5)),-1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-18, -3]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(reverse([-4, 1])),2),31),3)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -18,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(reverse(input)),2),31),3)"
  },
  {
    "input": "input : list = [4, -3, 2, -2, 2]\noutput : list = [-6, -10, -6, -11, -4]",
    "output": "generated_output : list = add_n(sub_n(reverse([4, -3, 2, -2, 2]),5),-3)",
    "io_inp": [
      4,
      -3,
      2,
      -2,
      2
    ],
    "io_out": [
      -6,
      -10,
      -6,
      -11,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),5),-3)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [4, 4, 3]",
    "output": "generated_output : list = reverse(reverse(take(add_n(add_n([0, 0, -1],3),1),22)))",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(add_n(input,3),1),22)))"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [-16, -14, -10]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(sort_asc([3, 1, 4])),2),-2),-2)",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      -16,
      -14,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(sort_asc(input)),2),-2),-2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(sub_n([4, 2],1),-2)),3),8)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(sub_n(input,1),-2)),3),8)"
  },
  {
    "input": "input : list = [2, -5, 1, 4, -1, -1]\noutput : list = [4, 2, 1, -1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des([2, -5, 1, 4, -1, -1]))",
    "io_inp": [
      2,
      -5,
      1,
      4,
      -1,
      -1
    ],
    "io_out": [
      4,
      2,
      1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n([2, 5],1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 0, 3, -2]\noutput : list = [-2, 3, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, 3, -2])",
    "io_inp": [
      5,
      0,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 4, 3]\noutput : list = [1]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(take([3, 5, 4, 3],1)),4),-2),34)",
    "io_inp": [
      3,
      5,
      4,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(take(input,1)),4),-2),34)"
  },
  {
    "input": "input : list = [-5, -2, 4, 3, 1]\noutput : list = [4, -2, -5]",
    "output": "generated_output : list = reverse(take([-5, -2, 4, 3, 1],3))",
    "io_inp": [
      -5,
      -2,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(reverse([-2, -5]))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(add_n(take([0, 0, -4],1),-1))",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(input,1),-1))"
  },
  {
    "input": "input : list = [2, -4, -2, -2, 2]\noutput : list = [-5, -3, -3, 1, 1]",
    "output": "generated_output : list = sort_asc(take(sub_n([2, -4, -2, -2, 2],1),9))",
    "io_inp": [
      2,
      -4,
      -2,
      -2,
      2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,1),9))"
  },
  {
    "input": "input : list = [3, 5, -1, 0]\noutput : list = [0, 1, 4, 6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([3, 5, -1, 0],-5),-4))",
    "io_inp": [
      3,
      5,
      -1,
      0
    ],
    "io_out": [
      0,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-5),-4))"
  },
  {
    "input": "input : list = [4, 3, 5, 1]\noutput : list = [1, -3, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(mul_n([4, 3, 5, 1],-2)),-4),1))",
    "io_inp": [
      4,
      3,
      5,
      1
    ],
    "io_out": [
      1,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(mul_n(input,-2)),-4),1))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse([-5, -4]),-3),-2))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(input),-3),-2))"
  },
  {
    "input": "input : list = [5, 4, -4, -3, -4]\noutput : list = [3, 1, -13, -15, -15]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(sub_n([5, 4, -4, -3, -4],-4),5),2)),-5)",
    "io_inp": [
      5,
      4,
      -4,
      -3,
      -4
    ],
    "io_out": [
      3,
      1,
      -13,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(sub_n(input,-4),5),2)),-5)"
  },
  {
    "input": "input : list = [-4, -1, 0, 4, 5, 3]\noutput : list = [-5, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(drop([-4, -1, 0, 4, 5, 3],2))),5))",
    "io_inp": [
      -4,
      -1,
      0,
      4,
      5,
      3
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(drop(input,2))),5))"
  },
  {
    "input": "input : list = [3, 3, -5, -2]\noutput : list = [3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(take([3, 3, -5, -2],1)))))",
    "io_inp": [
      3,
      3,
      -5,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [5, -1, -2, -4]\noutput : list = [0, 2, 3, 9]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc([5, -1, -2, -4]))),4)",
    "io_inp": [
      5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      0,
      2,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(input))),4)"
  },
  {
    "input": "input : list = [3, -4, 4, -2]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(take(reverse(take(mul_n([3, -4, 4, -2],1),1)),12),5)",
    "io_inp": [
      3,
      -4,
      4,
      -2
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(mul_n(input,1),1)),12),5)"
  },
  {
    "input": "input : list = [4, 5, -5, -3, 1]\noutput : list = [5, 4, 1, -3]",
    "output": "generated_output : list = reverse(reverse(reverse(drop(sort_asc([4, 5, -5, -3, 1]),1))))",
    "io_inp": [
      4,
      5,
      -5,
      -3,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(drop(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [5, 25, 13]",
    "output": "generated_output : list = sub_n(mul_n([0, 5, 2],4),-5)",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      5,
      25,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),-5)"
  },
  {
    "input": "input : list = [-4, 3, -5, 2, -2]\noutput : list = [-6, -2, -9, -1, -8]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n([-4, 3, -5, 2, -2],2),2),3),-1))",
    "io_inp": [
      -4,
      3,
      -5,
      2,
      -2
    ],
    "io_out": [
      -6,
      -2,
      -9,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n(input,2),2),3),-1))"
  },
  {
    "input": "input : list = [-2, 4, -2, -1, 5, 3]\noutput : list = [8, 10, 4, 3, 9, 3]",
    "output": "generated_output : list = reverse(add_n(sub_n([-2, 4, -2, -1, 5, 3],-2),3))",
    "io_inp": [
      -2,
      4,
      -2,
      -1,
      5,
      3
    ],
    "io_out": [
      8,
      10,
      4,
      3,
      9,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-2),3))"
  },
  {
    "input": "input : list = [5, 1, 2, 4, -1]\noutput : list = [-5, 0, -2, -3, 1]",
    "output": "generated_output : list = take(add_n(reverse([5, 1, 2, 4, -1]),-4),5)",
    "io_inp": [
      5,
      1,
      2,
      4,
      -1
    ],
    "io_out": [
      -5,
      0,
      -2,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),-4),5)"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -2, 3],1)",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, 2, -3, -2]\noutput : list = [-11, -10, -9, -6, -5]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(sub_n([1, -4, 2, -3, -2],5)),-2)),16)",
    "io_inp": [
      1,
      -4,
      2,
      -3,
      -2
    ],
    "io_out": [
      -11,
      -10,
      -9,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(sub_n(input,5)),-2)),16)"
  },
  {
    "input": "input : list = [-1, 1, -3, 3]\noutput : list = [7, 5, 3, 1]",
    "output": "generated_output : list = take(sort_des(take(sub_n(sort_asc([-1, 1, -3, 3]),-4),24)),44)",
    "io_inp": [
      -1,
      1,
      -3,
      3
    ],
    "io_out": [
      7,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(sort_asc(input),-4),24)),44)"
  },
  {
    "input": "input : list = [5, 2, -5]\noutput : list = [7]",
    "output": "generated_output : list = add_n(take(add_n(take(take([5, 2, -5],1),4),-3),32),5)",
    "io_inp": [
      5,
      2,
      -5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(take(input,1),4),-3),32),5)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [4, 14]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(drop([4, 5, -5],1),-5))),-4)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      4,
      14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(drop(input,1),-5))),-4)"
  },
  {
    "input": "input : list = [-2, -2, -2, 5, 3, -4]\noutput : list = [-16, -16, 12, 4, -24]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(drop([-2, -2, -2, 5, 3, -4],1),4),3),5)",
    "io_inp": [
      -2,
      -2,
      -2,
      5,
      3,
      -4
    ],
    "io_out": [
      -16,
      -16,
      12,
      4,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(drop(input,1),4),3),5)"
  },
  {
    "input": "input : list = [0, -1, 5]\noutput : list = [15, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(mul_n([0, -1, 5],3)))))",
    "io_inp": [
      0,
      -1,
      5
    ],
    "io_out": [
      15,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [0, -5, -20]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(sort_asc([-2, -1, -5])),5),17),-5)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      0,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(sort_asc(input)),5),17),-5)"
  },
  {
    "input": "input : list = [5, -2, 2, 4]\noutput : list = [4, 3, 1, -3]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_asc([5, -2, 2, 4])),2),1))",
    "io_inp": [
      5,
      -2,
      2,
      4
    ],
    "io_out": [
      4,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_asc(input)),2),1))"
  },
  {
    "input": "input : list = [-1, 2, 0, 5, -4]\noutput : list = [-4, -1, 0, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(reverse([-1, 2, 0, 5, -4])))))",
    "io_inp": [
      -1,
      2,
      0,
      5,
      -4
    ],
    "io_out": [
      -4,
      -1,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [5, 1, 4, -1, -4, 3]\noutput : list = [-4, -1, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 1, 4, -1, -4, 3])",
    "io_inp": [
      5,
      1,
      4,
      -1,
      -4,
      3
    ],
    "io_out": [
      -4,
      -1,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, 2]\noutput : list = [-6, -8, -3]",
    "output": "generated_output : list = take(take(add_n([-1, -3, 2],-5),14),6)",
    "io_inp": [
      -1,
      -3,
      2
    ],
    "io_out": [
      -6,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-5),14),6)"
  },
  {
    "input": "input : list = [3, 1, 3, -3, -4, 4]\noutput : list = [35, 35, 11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(take([3, 1, 3, -3, -4, 4],3),4),3),1))",
    "io_inp": [
      3,
      1,
      3,
      -3,
      -4,
      4
    ],
    "io_out": [
      35,
      35,
      11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(take(input,3),4),3),1))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(sort_asc([2, 5]))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 3, -4, 2]\noutput : list = [5, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(drop(sort_asc(sub_n([4, 3, -4, 2],-4)),1),1))",
    "io_inp": [
      4,
      3,
      -4,
      2
    ],
    "io_out": [
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(sort_asc(sub_n(input,-4)),1),1))"
  },
  {
    "input": "input : list = [-5, 5, -3, 3]\noutput : list = [0, 2, 8, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(reverse([-5, 5, -3, 3]),-1))),-5)",
    "io_inp": [
      -5,
      5,
      -3,
      3
    ],
    "io_out": [
      0,
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(reverse(input),-1))),-5)"
  },
  {
    "input": "input : list = [-3, -5, -3, 1]\noutput : list = [-5, -3, -3, 1]",
    "output": "generated_output : list = sort_asc([-3, -5, -3, 1])",
    "io_inp": [
      -3,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1, -5, -2]\noutput : list = [-2, -11, -20, -29]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_asc(sub_n([4, 1, -5, -2],3)),3),-5))",
    "io_inp": [
      4,
      1,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -11,
      -20,
      -29
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_asc(sub_n(input,3)),3),-5))"
  },
  {
    "input": "input : list = [-5, 2, -2, 0, -1, -5]\noutput : list = [-9]",
    "output": "generated_output : list = sort_des(sub_n(take(take([-5, 2, -2, 0, -1, -5],1),23),4))",
    "io_inp": [
      -5,
      2,
      -2,
      0,
      -1,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(input,1),23),4))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-10, 30]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([1, -3],5),-2))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -10,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,5),-2))"
  },
  {
    "input": "input : list = [3, -1, -3]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(reverse(take([3, -1, -3],1)))",
    "io_inp": [
      3,
      -1,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [0, 16, 36]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des([-5, 4, -1]),5),4))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      0,
      16,
      36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(input),5),4))"
  },
  {
    "input": "input : list = [2, 0, 0, -1, 2, 2]\noutput : list = [-1, 0, 0, 2]",
    "output": "generated_output : list = take(drop(take(take(reverse([2, 0, 0, -1, 2, 2]),14),31),2),6)",
    "io_inp": [
      2,
      0,
      0,
      -1,
      2,
      2
    ],
    "io_out": [
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(drop(take(take(reverse(input),14),31),2),6)"
  },
  {
    "input": "input : list = [-1, -4, -3, 2, -2, -3]\noutput : list = [15, 3, -1, -5, -5, -9]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(mul_n([-1, -4, -3, 2, -2, -3],4),-2),5)))",
    "io_inp": [
      -1,
      -4,
      -3,
      2,
      -2,
      -3
    ],
    "io_out": [
      15,
      3,
      -1,
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(mul_n(input,4),-2),5)))"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [-4, -4, 10]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des([-3, 4, 4]),-2),4))",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      -4,
      -4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(input),-2),4))"
  },
  {
    "input": "input : list = [-2, 3, -3, -4, 0, -5]\noutput : list = [-2, -5, -7, -8, -9, -10]",
    "output": "generated_output : list = add_n(reverse(take(take(sort_asc([-2, 3, -3, -4, 0, -5]),15),29)),-5)",
    "io_inp": [
      -2,
      3,
      -3,
      -4,
      0,
      -5
    ],
    "io_out": [
      -2,
      -5,
      -7,
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(sort_asc(input),15),29)),-5)"
  },
  {
    "input": "input : list = [0, 3, 3]\noutput : list = [0, -36, -36]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(mul_n([0, 3, 3],-4)),3)))",
    "io_inp": [
      0,
      3,
      3
    ],
    "io_out": [
      0,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(mul_n(input,-4)),3)))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [27, 6]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_des(sort_des([3, -4])),-5),-3))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      27,
      6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_des(sort_des(input)),-5),-3))"
  },
  {
    "input": "input : list = [-4, -2, 0, 2, 4, -3]\noutput : list = [-16, -11, -6, 4, 14, 24]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-4, -2, 0, 2, 4, -3]),5),-4)",
    "io_inp": [
      -4,
      -2,
      0,
      2,
      4,
      -3
    ],
    "io_out": [
      -16,
      -11,
      -6,
      4,
      14,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),5),-4)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc([2, -5])",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, 1, -5, 0]\noutput : list = [-3, 0, 0, 3, 15]",
    "output": "generated_output : list = mul_n(sort_des([-1, 0, 1, -5, 0]),-3)",
    "io_inp": [
      -1,
      0,
      1,
      -5,
      0
    ],
    "io_out": [
      -3,
      0,
      0,
      3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take([-1, -5, 5],1))",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-3, -5, 3, -3]\noutput : list = [-78]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(take([-3, -5, 3, -3],1)),-5),-5),-3)",
    "io_inp": [
      -3,
      -5,
      3,
      -3
    ],
    "io_out": [
      -78
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(take(input,1)),-5),-5),-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(reverse(reverse([4, 2])),4)))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [4, 5, -5, -5]\noutput : list = [-15, -12, 15, 15]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(mul_n([4, 5, -5, -5],-3))),7))",
    "io_inp": [
      4,
      5,
      -5,
      -5
    ],
    "io_out": [
      -15,
      -12,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(mul_n(input,-3))),7))"
  },
  {
    "input": "input : list = [5, 5, 5, -3]\noutput : list = [-23, -23]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(take([5, 5, 5, -3],2),-4)),3))",
    "io_inp": [
      5,
      5,
      5,
      -3
    ],
    "io_out": [
      -23,
      -23
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(take(input,2),-4)),3))"
  },
  {
    "input": "input : list = [1, -3, -2, -3, -1]\noutput : list = [1, -1, -2, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(add_n([1, -3, -2, -3, -1],2),2))",
    "io_inp": [
      1,
      -3,
      -2,
      -3,
      -1
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,2),2))"
  },
  {
    "input": "input : list = [-4, 5, 0, 1]\noutput : list = [1, 10, 5, 6]",
    "output": "generated_output : list = sub_n([-4, 5, 0, 1],-5)",
    "io_inp": [
      -4,
      5,
      0,
      1
    ],
    "io_out": [
      1,
      10,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -3, 4, -4]\noutput : list = [-10, -8, -6, 8]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n([-5, -3, 4, -4],2))))",
    "io_inp": [
      -5,
      -3,
      4,
      -4
    ],
    "io_out": [
      -10,
      -8,
      -6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(input,2))))"
  },
  {
    "input": "input : list = [3, 1, 4, 0, 5, -2]\noutput : list = [-2, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse(drop([3, 1, 4, 0, 5, -2],3)))",
    "io_inp": [
      3,
      1,
      4,
      0,
      5,
      -2
    ],
    "io_out": [
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,3)))"
  },
  {
    "input": "input : list = [2, -4, -5, 4, -4]\noutput : list = [-11, -10, -10, -4, -2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([2, -4, -5, 4, -4],-5)),1)",
    "io_inp": [
      2,
      -4,
      -5,
      4,
      -4
    ],
    "io_out": [
      -11,
      -10,
      -10,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,-5)),1)"
  },
  {
    "input": "input : list = [5, -1, 4, 4, -3, 4]\noutput : list = [5, 4, 4, -1]",
    "output": "generated_output : list = sort_des(take([5, -1, 4, 4, -3, 4],4))",
    "io_inp": [
      5,
      -1,
      4,
      4,
      -3,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [-5, 2, 2, 2, -1]\noutput : list = [-7, -3, 0, 0, 0]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(reverse([-5, 2, 2, 2, -1]),8)),1),-2)",
    "io_inp": [
      -5,
      2,
      2,
      2,
      -1
    ],
    "io_out": [
      -7,
      -3,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(reverse(input),8)),1),-2)"
  },
  {
    "input": "input : list = [4, -2, -5, 3, -1, 3]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(drop([4, -2, -5, 3, -1, 3],4)),15),5),2)",
    "io_inp": [
      4,
      -2,
      -5,
      3,
      -1,
      3
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(drop(input,4)),15),5),2)"
  },
  {
    "input": "input : list = [-2, 4, 1, -4, 1]\noutput : list = [-2, 0, 3, 3, 6]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(add_n([-2, 4, 1, -4, 1],2)))),23)",
    "io_inp": [
      -2,
      4,
      1,
      -4,
      1
    ],
    "io_out": [
      -2,
      0,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(add_n(input,2)))),23)"
  },
  {
    "input": "input : list = [3, -4, 2, -4, 3, 0]\noutput : list = [-9, 12, -6]",
    "output": "generated_output : list = mul_n(take(take([3, -4, 2, -4, 3, 0],3),12),-3)",
    "io_inp": [
      3,
      -4,
      2,
      -4,
      3,
      0
    ],
    "io_out": [
      -9,
      12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,3),12),-3)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [4, -3, -3]",
    "output": "generated_output : list = sort_des([-3, 4, -3])",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sub_n([0, -4],4)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, -5, -4, 0]\noutput : list = [0, -2, -4, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des([-2, -5, -4, 0]),-3),3),14))",
    "io_inp": [
      -2,
      -5,
      -4,
      0
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des(input),-3),3),14))"
  },
  {
    "input": "input : list = [1, -3, 5, -4]\noutput : list = [-1, -10]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des(drop([1, -3, 5, -4],2))),1),-5)",
    "io_inp": [
      1,
      -3,
      5,
      -4
    ],
    "io_out": [
      -1,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(drop(input,2))),1),-5)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(reverse([-2, -4]))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [2, -8]",
    "output": "generated_output : list = reverse(mul_n([4, -1],-2))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-5, -5, -4, 5, -3, -2]\noutput : list = [-3, -3, -2, 7, -1, 0]",
    "output": "generated_output : list = add_n([-5, -5, -4, 5, -3, -2],2)",
    "io_inp": [
      -5,
      -5,
      -4,
      5,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [0, 1, -4, 1]\noutput : list = [-9, -5, -4, -4]",
    "output": "generated_output : list = sort_asc(add_n([0, 1, -4, 1],-5))",
    "io_inp": [
      0,
      1,
      -4,
      1
    ],
    "io_out": [
      -9,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(sort_asc([1, -5]),-1),17)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(sort_asc(input),-1),17)))"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-9]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(take([-3, 3, -2],1),5),-1),5))",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(take(input,1),5),-1),5))"
  },
  {
    "input": "input : list = [2, -1, -1, -4, 0]\noutput : list = [-6, -3, -3, -2, 0]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sub_n([2, -1, -1, -4, 0],2)))))",
    "io_inp": [
      2,
      -1,
      -1,
      -4,
      0
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [1, 1, -1]\noutput : list = [-15, -15, -5]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sub_n([1, 1, -1],-1)),-5)),5)",
    "io_inp": [
      1,
      1,
      -1
    ],
    "io_out": [
      -15,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sub_n(input,-1)),-5)),5)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [3, 1, -4]",
    "output": "generated_output : list = reverse([-4, 1, 3])",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -2, 4, -3, -2]\noutput : list = [4, -1, -2, -2, -3]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sort_des([-1, -2, 4, -3, -2]))),1),28)",
    "io_inp": [
      -1,
      -2,
      4,
      -3,
      -2
    ],
    "io_out": [
      4,
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sort_des(input))),1),28)"
  },
  {
    "input": "input : list = [4, -1, -1, -3, 5, 5]\noutput : list = [14, -6, -6, -14]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(take([4, -1, -1, -3, 5, 5],4)),4)),-2)",
    "io_inp": [
      4,
      -1,
      -1,
      -3,
      5,
      5
    ],
    "io_out": [
      14,
      -6,
      -6,
      -14
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(take(input,4)),4)),-2)"
  },
  {
    "input": "input : list = [1, 2, -4, 5]\noutput : list = [10, 4, 2, -8]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(sort_asc([1, 2, -4, 5]))),2))",
    "io_inp": [
      1,
      2,
      -4,
      5
    ],
    "io_out": [
      10,
      4,
      2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [8, 4]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(mul_n([0, -1],1)),-2),-3),-4)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(mul_n(input,1)),-2),-3),-4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(add_n(add_n([0, 4],3),-4),4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,3),-4),4)"
  },
  {
    "input": "input : list = [-4, 2, 5, -3, -5]\noutput : list = [-8, -2, 1, -7, -9]",
    "output": "generated_output : list = add_n([-4, 2, 5, -3, -5],-4)",
    "io_inp": [
      -4,
      2,
      5,
      -3,
      -5
    ],
    "io_out": [
      -8,
      -2,
      1,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 1, 2, 4, 0]\noutput : list = [5, 6, 7, 8, 10]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-1, 1, 2, 4, 0],3),-3))",
    "io_inp": [
      -1,
      1,
      2,
      4,
      0
    ],
    "io_out": [
      5,
      6,
      7,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,3),-3))"
  },
  {
    "input": "input : list = [0, 3, 5, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take([0, 3, 5, 0],1))",
    "io_inp": [
      0,
      3,
      5,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [0, -5, -4, -3, 1, -5]\noutput : list = [1, 3, 5, -5]",
    "output": "generated_output : list = drop(sub_n(reverse(mul_n(mul_n([0, -5, -4, -3, 1, -5],2),-1)),5),2)",
    "io_inp": [
      0,
      -5,
      -4,
      -3,
      1,
      -5
    ],
    "io_out": [
      1,
      3,
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(sub_n(reverse(mul_n(mul_n(input,2),-1)),5),2)"
  },
  {
    "input": "input : list = [-1, 5, -4, -1, -1]\noutput : list = [28]",
    "output": "generated_output : list = mul_n(drop(sort_des(mul_n(add_n([-1, 5, -4, -1, -1],-3),2)),4),-2)",
    "io_inp": [
      -1,
      5,
      -4,
      -1,
      -1
    ],
    "io_out": [
      28
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_des(mul_n(add_n(input,-3),2)),4),-2)"
  },
  {
    "input": "input : list = [-3, 2, 1, -4, -4, -3]\noutput : list = [-21, -26, -26, -1, 4, -21]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(mul_n([-3, 2, 1, -4, -4, -3],5)),3),-2),-5)",
    "io_inp": [
      -3,
      2,
      1,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -21,
      -26,
      -26,
      -1,
      4,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(mul_n(input,5)),3),-2),-5)"
  },
  {
    "input": "input : list = [3, 3, 3, -1]\noutput : list = [-1, -1, -5]",
    "output": "generated_output : list = sub_n(add_n(take(take(drop([3, 3, 3, -1],1),9),9),-1),3)",
    "io_inp": [
      3,
      3,
      3,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(drop(input,1),9),9),-1),3)"
  },
  {
    "input": "input : list = [-1, -2, 2, 5]\noutput : list = [0, 3]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(drop([-1, -2, 2, 5],2),-4)),-1),-1)",
    "io_inp": [
      -1,
      -2,
      2,
      5
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(drop(input,2),-4)),-1),-1)"
  },
  {
    "input": "input : list = [-1, -2, -5, 4, 5, 2]\noutput : list = [5, 4, 2, -1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse(reverse([-1, -2, -5, 4, 5, 2])))))",
    "io_inp": [
      -1,
      -2,
      -5,
      4,
      5,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, -4, 4, 2]\noutput : list = [0, -2]",
    "output": "generated_output : list = add_n(take([-2, -4, 4, 2],2),2)",
    "io_inp": [
      -2,
      -4,
      4,
      2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),2)"
  },
  {
    "input": "input : list = [-1, 1, -4, 1]\noutput : list = [1, 1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des([-1, 1, -4, 1]))",
    "io_inp": [
      -1,
      1,
      -4,
      1
    ],
    "io_out": [
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [-2, -10]",
    "output": "generated_output : list = take(mul_n(take(drop([5, -1, -5],1),14),2),30)",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(take(drop(input,1),14),2),30)"
  },
  {
    "input": "input : list = [-2, -4, 3, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -4, 3, -4],1)",
    "io_inp": [
      -2,
      -4,
      3,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 3, -4, -4, 3]\noutput : list = [23, 23, 18, -12, -12]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(mul_n([-3, 3, -4, -4, 3],-5),3))))",
    "io_inp": [
      -3,
      3,
      -4,
      -4,
      3
    ],
    "io_out": [
      23,
      23,
      18,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(mul_n(input,-5),3))))"
  },
  {
    "input": "input : list = [4, 3, -5, 0]\noutput : list = [45, 0, 72, 81]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(sub_n([4, 3, -5, 0],-5)),-3),26),-3)",
    "io_inp": [
      4,
      3,
      -5,
      0
    ],
    "io_out": [
      45,
      0,
      72,
      81
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(sub_n(input,-5)),-3),26),-3)"
  },
  {
    "input": "input : list = [3, 2, 1, -2, -1, 4]\noutput : list = [-7, -6, -4, -3, -2, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(add_n([3, 2, 1, -2, -1, 4],-1),1)),5))",
    "io_inp": [
      3,
      2,
      1,
      -2,
      -1,
      4
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(add_n(input,-1),1)),5))"
  },
  {
    "input": "input : list = [4, -1, -3, -1, -2, -3]\noutput : list = [-8, 2, 6, 2, 4, 6]",
    "output": "generated_output : list = mul_n([4, -1, -3, -1, -2, -3],-2)",
    "io_inp": [
      4,
      -1,
      -3,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -8,
      2,
      6,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -4, 1, -2, -3]\noutput : list = [-4, -3, -2, -2, 1]",
    "output": "generated_output : list = sort_asc([-2, -4, 1, -2, -3])",
    "io_inp": [
      -2,
      -4,
      1,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, 4, 1]\noutput : list = [-16, -8, -4, 0]",
    "output": "generated_output : list = mul_n(sort_des([0, 2, 4, 1]),-4)",
    "io_inp": [
      0,
      2,
      4,
      1
    ],
    "io_out": [
      -16,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [-8, -5, -2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sub_n(add_n([-4, -1, 2],-1),-1),-1)),3)",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sub_n(add_n(input,-1),-1),-1)),3)"
  },
  {
    "input": "input : list = [-1, 1, 1, 2]\noutput : list = [9, 11, 11, 12]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(sub_n([-1, 1, 1, 2],-5)),-4),-2),-1)",
    "io_inp": [
      -1,
      1,
      1,
      2
    ],
    "io_out": [
      9,
      11,
      11,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(sub_n(input,-5)),-4),-2),-1)"
  },
  {
    "input": "input : list = [1, 4, 1, -1, 1, 4]\noutput : list = [8, 10, 10, 10, 13, 13]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(reverse([1, 4, 1, -1, 1, 4]),-2),-4),-3))",
    "io_inp": [
      1,
      4,
      1,
      -1,
      1,
      4
    ],
    "io_out": [
      8,
      10,
      10,
      10,
      13,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(reverse(input),-2),-4),-3))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [10, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(mul_n([-3, -3],-4)))),2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(mul_n(input,-4)))),2)"
  },
  {
    "input": "input : list = [-4, 4, 0, 0, -4]\noutput : list = [-3, 5, 1, 1, -3]",
    "output": "generated_output : list = add_n([-4, 4, 0, 0, -4],1)",
    "io_inp": [
      -4,
      4,
      0,
      0,
      -4
    ],
    "io_out": [
      -3,
      5,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(add_n([3, -4],5),5))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(add_n(input,5),5))))"
  },
  {
    "input": "input : list = [3, -5, -2, 0, 2, 2]\noutput : list = [-8, -12, -12, -20, -28, -40]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(sub_n([3, -5, -2, 0, 2, 2],5),4))),37)",
    "io_inp": [
      3,
      -5,
      -2,
      0,
      2,
      2
    ],
    "io_out": [
      -8,
      -12,
      -12,
      -20,
      -28,
      -40
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(sub_n(input,5),4))),37)"
  },
  {
    "input": "input : list = [5, 1, -3, -5, 3, 4]\noutput : list = [7, 6, -2, 0, 4, 8]",
    "output": "generated_output : list = sub_n(reverse(sub_n([5, 1, -3, -5, 3, 4],2)),-5)",
    "io_inp": [
      5,
      1,
      -3,
      -5,
      3,
      4
    ],
    "io_out": [
      7,
      6,
      -2,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,2)),-5)"
  },
  {
    "input": "input : list = [-5, 5, 1, -1, -5, 0]\noutput : list = [-25, -25, -5, 0, 5, 25]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(mul_n([-5, 5, 1, -1, -5, 0],5),14)),9))",
    "io_inp": [
      -5,
      5,
      1,
      -1,
      -5,
      0
    ],
    "io_out": [
      -25,
      -25,
      -5,
      0,
      5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(mul_n(input,5),14)),9))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(reverse([4, 2]),11)),1))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(reverse(input),11)),1))"
  },
  {
    "input": "input : list = [-2, 4, 4, -2, 1, 0]\noutput : list = [0, 1, -2, 4, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, 4, -2, 1, 0])",
    "io_inp": [
      -2,
      4,
      4,
      -2,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      -2,
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, -1, -5, -3, -3]\noutput : list = [0, 10, -2, -10]",
    "output": "generated_output : list = mul_n(take([0, 5, -1, -5, -3, -3],4),2)",
    "io_inp": [
      0,
      5,
      -1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      0,
      10,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),2)"
  },
  {
    "input": "input : list = [-1, -3, 4]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(add_n([-1, -3, 4],-2)),21)))",
    "io_inp": [
      -1,
      -3,
      4
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(add_n(input,-2)),21)))"
  },
  {
    "input": "input : list = [-4, 0, -5, 5]\noutput : list = [-8, -7, -3, 2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(reverse([-4, 0, -5, 5]),-5)),-2))",
    "io_inp": [
      -4,
      0,
      -5,
      5
    ],
    "io_out": [
      -8,
      -7,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(reverse(input),-5)),-2))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-14, -6]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_des([-5, -1])),2),-4))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -14,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_des(input)),2),-4))"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [0, 10, 0]",
    "output": "generated_output : list = mul_n([0, 2, 0],5)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      0,
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [0, -4, -4, 3, -5, -4]\noutput : list = [7, 0, 0, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(drop([0, -4, -4, 3, -5, -4],1),-3),-1)))",
    "io_inp": [
      0,
      -4,
      -4,
      3,
      -5,
      -4
    ],
    "io_out": [
      7,
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(drop(input,1),-3),-1)))"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take([-4, 2, 1],1)),3),-1)",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(input,1)),3),-1)"
  },
  {
    "input": "input : list = [4, 4, -2, -1, -2]\noutput : list = [-45, -45, -20, -15, -15]",
    "output": "generated_output : list = mul_n(sort_des(add_n([4, 4, -2, -1, -2],5)),-5)",
    "io_inp": [
      4,
      4,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -45,
      -45,
      -20,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,5)),-5)"
  },
  {
    "input": "input : list = [0, 0, -2, 0, 1, 4]\noutput : list = [-1, -4, -5, -5, -5, -7]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(sort_asc([0, 0, -2, 0, 1, 4]))),18),-5)",
    "io_inp": [
      0,
      0,
      -2,
      0,
      1,
      4
    ],
    "io_out": [
      -1,
      -4,
      -5,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(sort_asc(input))),18),-5)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [5, 0]",
    "output": "generated_output : list = sub_n([4, -1],-1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [380, -120]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(mul_n([1, -4],5)),-1),5),-4)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      380,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(mul_n(input,5)),-1),5),-4)"
  },
  {
    "input": "input : list = [-4, 3, 2, 4, 3, -5]\noutput : list = [-17, -14, 4, 7, 7, 10]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_asc([-4, 3, 2, 4, 3, -5])),3)),-2)",
    "io_inp": [
      -4,
      3,
      2,
      4,
      3,
      -5
    ],
    "io_out": [
      -17,
      -14,
      4,
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_asc(input)),3)),-2)"
  },
  {
    "input": "input : list = [2, -3, -4, -2]\noutput : list = [-7, -8, -9]",
    "output": "generated_output : list = add_n(sort_des(take(drop([2, -3, -4, -2],1),7)),-5)",
    "io_inp": [
      2,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(drop(input,1),7)),-5)"
  },
  {
    "input": "input : list = [-4, 1, 0, 5, 1]\noutput : list = [-7, -15, -15, -17, -25]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n(sort_des([-4, 1, 0, 5, 1]),5),2),-3),4)",
    "io_inp": [
      -4,
      1,
      0,
      5,
      1
    ],
    "io_out": [
      -7,
      -15,
      -15,
      -17,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(sort_des(input),5),2),-3),4)"
  },
  {
    "input": "input : list = [-1, -5, 4, 0, -5]\noutput : list = [-5, 0, 4, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, 4, 0, -5])",
    "io_inp": [
      -1,
      -5,
      4,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(sub_n([1, 3],4))),17),2)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(sub_n(input,4))),17),2)"
  },
  {
    "input": "input : list = [-4, -2, 4, 1, -4, -4]\noutput : list = [1, 3, 9, 6, 1, 1]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n([-4, -2, 4, 1, -4, -4],-4),-4),28),-5)",
    "io_inp": [
      -4,
      -2,
      4,
      1,
      -4,
      -4
    ],
    "io_out": [
      1,
      3,
      9,
      6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(input,-4),-4),28),-5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(sub_n([2, 4],2),1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),1)"
  },
  {
    "input": "input : list = [0, 2, -2, 0, -1]\noutput : list = [3, 5, 1, 3, 2]",
    "output": "generated_output : list = sub_n(sub_n([0, 2, -2, 0, -1],-1),-2)",
    "io_inp": [
      0,
      2,
      -2,
      0,
      -1
    ],
    "io_out": [
      3,
      5,
      1,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),-2)"
  },
  {
    "input": "input : list = [-1, 2, -1, -1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = drop([-1, 2, -1, -1, -3],3)",
    "io_inp": [
      -1,
      2,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, -5, -2, 2, 1]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(mul_n([-1, -5, -2, 2, 1],3),-1),1),4),-4)",
    "io_inp": [
      -1,
      -5,
      -2,
      2,
      1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(mul_n(input,3),-1),1),4),-4)"
  },
  {
    "input": "input : list = [-2, 1, 3, -5, 2, 5]\noutput : list = [-15, -9, -6, -3, 6, 15]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(mul_n([-2, 1, 3, -5, 2, 5],-3),1)),28))",
    "io_inp": [
      -2,
      1,
      3,
      -5,
      2,
      5
    ],
    "io_out": [
      -15,
      -9,
      -6,
      -3,
      6,
      15
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(mul_n(input,-3),1)),28))"
  },
  {
    "input": "input : list = [-2, 3, -1, 2, -1]\noutput : list = [2, 0, -6, -6, -8]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des([-2, 3, -1, 2, -1]),2),4)),2)",
    "io_inp": [
      -2,
      3,
      -1,
      2,
      -1
    ],
    "io_out": [
      2,
      0,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des(input),2),4)),2)"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [8, -4, -4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(sort_asc([-2, -2, 4])))),2)",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [1, 2, 8]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc([4, -2, -3]),4)),13))",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      1,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc(input),4)),13))"
  },
  {
    "input": "input : list = [0, -1, -5, -5]\noutput : list = [-45]",
    "output": "generated_output : list = sort_asc(mul_n(take(drop(add_n([0, -1, -5, -5],-4),3),22),5))",
    "io_inp": [
      0,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(drop(add_n(input,-4),3),22),5))"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [4, 4, 10]",
    "output": "generated_output : list = add_n([-1, -1, 5],5)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      4,
      4,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse(sort_des(drop([3, -3, 2],1)))",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [9, 12]",
    "output": "generated_output : list = reverse(mul_n([4, 3],3))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [-2, -4, -1, 5, 4]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(take([-2, -4, -1, 5, 4],3),2))))",
    "io_inp": [
      -2,
      -4,
      -1,
      5,
      4
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(take(input,3),2))))"
  },
  {
    "input": "input : list = [-1, 5, 0, -1, 0]\noutput : list = [11, 1, 1, -1]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(mul_n([-1, 5, 0, -1, 0],2),-3)),4),4)",
    "io_inp": [
      -1,
      5,
      0,
      -1,
      0
    ],
    "io_out": [
      11,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(mul_n(input,2),-3)),4),4)"
  },
  {
    "input": "input : list = [4, 0, -1, -3, -4, -1]\noutput : list = [-4, -3, -1, -1, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([4, 0, -1, -3, -4, -1])))",
    "io_inp": [
      4,
      0,
      -1,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, -3, 1, -5, 3, -1]\noutput : list = [-10, -9, -8, -6, -4, -2]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc([-4, -3, 1, -5, 3, -1])),28),-5)",
    "io_inp": [
      -4,
      -3,
      1,
      -5,
      3,
      -1
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(input)),28),-5)"
  },
  {
    "input": "input : list = [-3, -5, 0, 5, 1, -4]\noutput : list = [7, 9, 4, -1, 3, 8]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([-3, -5, 0, 5, 1, -4],-1),-2),-2)",
    "io_inp": [
      -3,
      -5,
      0,
      5,
      1,
      -4
    ],
    "io_out": [
      7,
      9,
      4,
      -1,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,-1),-2),-2)"
  },
  {
    "input": "input : list = [-1, 1, -1, -3, -5]\noutput : list = [-2, 0, -2, -4, -6]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(sub_n([-1, 1, -1, -3, -5],3)),-2)),34)",
    "io_inp": [
      -1,
      1,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -2,
      0,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(sub_n(input,3)),-2)),34)"
  },
  {
    "input": "input : list = [2, -4, -4, 2, -4]\noutput : list = [4, 28, 28]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(drop([2, -4, -4, 2, -4],2),4),1),-4))",
    "io_inp": [
      2,
      -4,
      -4,
      2,
      -4
    ],
    "io_out": [
      4,
      28,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(drop(input,2),4),1),-4))"
  },
  {
    "input": "input : list = [-2, -3, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_des([-2, -3, 1]),1)",
    "io_inp": [
      -2,
      -3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),1)"
  },
  {
    "input": "input : list = [-4, -1, -3, -1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = reverse(sub_n(take([-4, -1, -3, -1, -2],2),-2))",
    "io_inp": [
      -4,
      -1,
      -3,
      -1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,2),-2))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [-4, 2, 2]",
    "output": "generated_output : list = sub_n([-5, 1, 1],-1)",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [2, 7]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(sort_asc([-1, 4]),2),-2),-3),25)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(sort_asc(input),2),-2),-3),25)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [19, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n([-3, 2],-5),4),1))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      19,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(input,-5),4),1))"
  },
  {
    "input": "input : list = [0, 5, -3, 0]\noutput : list = [5, 0, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([0, 5, -3, 0])))",
    "io_inp": [
      0,
      5,
      -3,
      0
    ],
    "io_out": [
      5,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [18, 3, -3]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(add_n([-3, 2, 4],2),2),-3),-3),46)",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      18,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(add_n(input,2),2),-3),-3),46)"
  },
  {
    "input": "input : list = [1, -1, -1, 0]\noutput : list = [-3, -4, -5, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(add_n([1, -1, -1, 0],-1),-1)),-2),4)",
    "io_inp": [
      1,
      -1,
      -1,
      0
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(add_n(input,-1),-1)),-2),4)"
  },
  {
    "input": "input : list = [-1, -5, -2]\noutput : list = [3, -1, 2]",
    "output": "generated_output : list = sub_n([-1, -5, -2],-4)",
    "io_inp": [
      -1,
      -5,
      -2
    ],
    "io_out": [
      3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, 0, 1, 3, 3]\noutput : list = [-12, -12, -2, 3, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(sort_des([0, 0, 1, 3, 3]),-5))),3)",
    "io_inp": [
      0,
      0,
      1,
      3,
      3
    ],
    "io_out": [
      -12,
      -12,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(sort_des(input),-5))),3)"
  },
  {
    "input": "input : list = [5, -2, 3, -5, -5]\noutput : list = [4, -3, 2, -6, -6]",
    "output": "generated_output : list = add_n([5, -2, 3, -5, -5],-1)",
    "io_inp": [
      5,
      -2,
      3,
      -5,
      -5
    ],
    "io_out": [
      4,
      -3,
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-8, 8]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(sort_des([-2, 2]))),-4))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [4, -3, 2, 3, 1]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take([4, -3, 2, 3, 1],2)),2))",
    "io_inp": [
      4,
      -3,
      2,
      3,
      1
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(input,2)),2))"
  },
  {
    "input": "input : list = [1, -1, -1, -3, -5, 5]\noutput : list = [2, -8, -6, -4, -4, -2]",
    "output": "generated_output : list = take(add_n(reverse([1, -1, -1, -3, -5, 5]),-3),25)",
    "io_inp": [
      1,
      -1,
      -1,
      -3,
      -5,
      5
    ],
    "io_out": [
      2,
      -8,
      -6,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),-3),25)"
  },
  {
    "input": "input : list = [0, -5, 3, -3, 5, 0]\noutput : list = [2, -3, 5, -1, 7, 2]",
    "output": "generated_output : list = add_n([0, -5, 3, -3, 5, 0],2)",
    "io_inp": [
      0,
      -5,
      3,
      -3,
      5,
      0
    ],
    "io_out": [
      2,
      -3,
      5,
      -1,
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-64, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n([-4, 0],-4))),-4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -64,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(input,-4))),-4)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [5, 10, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n([0, 5, 5],-1)),-4))",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(input,-1)),-4))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-6, 0]",
    "output": "generated_output : list = take(sort_asc(mul_n(reverse(sub_n([4, 2],2)),-3)),30)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(reverse(sub_n(input,2)),-3)),30)"
  },
  {
    "input": "input : list = [2, -2, 0, 0, 5, 3]\noutput : list = [-2, 0, 0, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(sort_des([2, -2, 0, 0, 5, 3]))),31))",
    "io_inp": [
      2,
      -2,
      0,
      0,
      5,
      3
    ],
    "io_out": [
      -2,
      0,
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(sort_des(input))),31))"
  },
  {
    "input": "input : list = [-1, -5, 4, -1, 2, 4]\noutput : list = [-6, -2, -2, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(add_n([-1, -5, 4, -1, 2, 4],-4),1)),-2))",
    "io_inp": [
      -1,
      -5,
      4,
      -1,
      2,
      4
    ],
    "io_out": [
      -6,
      -2,
      -2,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(add_n(input,-4),1)),-2))"
  },
  {
    "input": "input : list = [3, -1, 4, -5, 2]\noutput : list = [-15, 5, 20, 25, 30]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(add_n([3, -1, 4, -5, 2],2)))),5)",
    "io_inp": [
      3,
      -1,
      4,
      -5,
      2
    ],
    "io_out": [
      -15,
      5,
      20,
      25,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(add_n(input,2)))),5)"
  },
  {
    "input": "input : list = [-5, 2, -2, 3, 0, 0]\noutput : list = [0, -1, -3, -5, -8]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(add_n([-5, 2, -2, 3, 0, 0],-5),5),1)),-2)",
    "io_inp": [
      -5,
      2,
      -2,
      3,
      0,
      0
    ],
    "io_out": [
      0,
      -1,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(add_n(input,-5),5),1)),-2)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-7, -9]",
    "output": "generated_output : list = sub_n(sub_n([-2, -4],3),2)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),2)"
  },
  {
    "input": "input : list = [-2, -1, -3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(take([-2, -1, -3],1)),25)),4)",
    "io_inp": [
      -2,
      -1,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(take(input,1)),25)),4)"
  },
  {
    "input": "input : list = [-2, 0, 1, 0, 2]\noutput : list = [-18, -12, -12, -9, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(reverse([-2, 0, 1, 0, 2])),4)),3)",
    "io_inp": [
      -2,
      0,
      1,
      0,
      2
    ],
    "io_out": [
      -18,
      -12,
      -12,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(reverse(input)),4)),3)"
  },
  {
    "input": "input : list = [-4, -5, -3, -1, -2, -1]\noutput : list = [-5, -4, -3, -2, -1, -1]",
    "output": "generated_output : list = reverse(take(sort_des([-4, -5, -3, -1, -2, -1]),24))",
    "io_inp": [
      -4,
      -5,
      -3,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(input),24))"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [21, 21, 6]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sub_n([1, -2, -2],3)),3),-5),4)",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      21,
      21,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sub_n(input,3)),3),-5),4)"
  },
  {
    "input": "input : list = [2, -1, -2, -3, -3, 2]\noutput : list = [-4, -4, 0, 4, 16, 16]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(sort_asc([2, -1, -2, -3, -3, 2]),-2),-4),19),-1)",
    "io_inp": [
      2,
      -1,
      -2,
      -3,
      -3,
      2
    ],
    "io_out": [
      -4,
      -4,
      0,
      4,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(sort_asc(input),-2),-4),19),-1)"
  },
  {
    "input": "input : list = [-2, -3, -2]\noutput : list = [0, -1, 0]",
    "output": "generated_output : list = reverse(take(sub_n(reverse([-2, -3, -2]),-2),16))",
    "io_inp": [
      -2,
      -3,
      -2
    ],
    "io_out": [
      0,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(input),-2),16))"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take([0, 2, -5],1))",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, -4, 4, -4]\noutput : list = [-15, 13, 17, 17]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(mul_n([-3, -4, 4, -4],-4)),3),13),2)",
    "io_inp": [
      -3,
      -4,
      4,
      -4
    ],
    "io_out": [
      -15,
      13,
      17,
      17
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(mul_n(input,-4)),3),13),2)"
  },
  {
    "input": "input : list = [3, 4, -5, -5, -5]\noutput : list = [1, 0, -8, -8, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(add_n([3, 4, -5, -5, -5],-1),26))),-2)",
    "io_inp": [
      3,
      4,
      -5,
      -5,
      -5
    ],
    "io_out": [
      1,
      0,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(add_n(input,-1),26))),-2)"
  },
  {
    "input": "input : list = [4, -2, 4, -1, 2]\noutput : list = [-12, -12, -6, 3, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_des([4, -2, 4, -1, 2]))),-3))",
    "io_inp": [
      4,
      -2,
      4,
      -1,
      2
    ],
    "io_out": [
      -12,
      -12,
      -6,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [20, -10, 5]",
    "output": "generated_output : list = add_n(take(reverse(reverse(mul_n([-5, 1, -2],-5))),20),-5)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      20,
      -10,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(mul_n(input,-5))),20),-5)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [40, 20]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(sort_des([4, 2]),8),2)),5)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      40,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(sort_des(input),8),2)),5)"
  },
  {
    "input": "input : list = [-5, -4, 4]\noutput : list = [-16, 16, 20]",
    "output": "generated_output : list = mul_n(sort_des([-5, -4, 4]),-4)",
    "io_inp": [
      -5,
      -4,
      4
    ],
    "io_out": [
      -16,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 4, -4]\noutput : list = [-3, 6, -2]",
    "output": "generated_output : list = add_n([-5, 4, -4],2)",
    "io_inp": [
      -5,
      4,
      -4
    ],
    "io_out": [
      -3,
      6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, 1, -4, 1, 3]\noutput : list = [3, 2, 1, 1, -4]",
    "output": "generated_output : list = sort_des([2, 1, -4, 1, 3])",
    "io_inp": [
      2,
      1,
      -4,
      1,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, 0, 1, -5]\noutput : list = [4, 1, 0, -1, -2]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(sort_des([-2, -1, 0, 1, -5])),-5),4),-1)",
    "io_inp": [
      -2,
      -1,
      0,
      1,
      -5
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(sort_des(input)),-5),4),-1)"
  },
  {
    "input": "input : list = [-4, 2, 1, 3, -4, -3]\noutput : list = [-1, -1, 0, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(sub_n([-4, 2, 1, 3, -4, -3],-3))),11))",
    "io_inp": [
      -4,
      2,
      1,
      3,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -1,
      0,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(sub_n(input,-3))),11))"
  },
  {
    "input": "input : list = [-2, -3, 2, 4]\noutput : list = [17, 13, -3, -11]",
    "output": "generated_output : list = take(take(sort_des(sub_n(mul_n([-2, -3, 2, 4],-4),-5)),39),4)",
    "io_inp": [
      -2,
      -3,
      2,
      4
    ],
    "io_out": [
      17,
      13,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(mul_n(input,-4),-5)),39),4)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(sub_n([0, -1],2)),-1)),1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(sub_n(input,2)),-1)),1)"
  },
  {
    "input": "input : list = [-4, -4, 3, 2]\noutput : list = [20, 20, -10, -15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-4, -4, 3, 2])),-5)",
    "io_inp": [
      -4,
      -4,
      3,
      2
    ],
    "io_out": [
      20,
      20,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [7, 3, -1]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sort_asc([-3, 1, 5]),7),22),-2))",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      7,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sort_asc(input),7),22),-2))"
  },
  {
    "input": "input : list = [3, -5, -2, -3, -5]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = drop([3, -5, -2, -3, -5],2)",
    "io_inp": [
      3,
      -5,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 2, -4]\noutput : list = [3]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(take([2, 2, -4],1),3)),-4),2)",
    "io_inp": [
      2,
      2,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(take(input,1),3)),-4),2)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(drop([-4, 5, -4],1))),36))",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(drop(input,1))),36))"
  },
  {
    "input": "input : list = [4, 4, -1, 2, 3]\noutput : list = [8, 8, -2, 4, 6]",
    "output": "generated_output : list = reverse(mul_n(reverse([4, 4, -1, 2, 3]),2))",
    "io_inp": [
      4,
      4,
      -1,
      2,
      3
    ],
    "io_out": [
      8,
      8,
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),2))"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(drop(take(sort_des(add_n([-2, 4, 0],2)),14),1))",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(take(sort_des(add_n(input,2)),14),1))"
  },
  {
    "input": "input : list = [-4, -4, 4, -1]\noutput : list = [-40, -40, -25, 0]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(sort_des([-4, -4, 4, -1])),-3),-1),5)",
    "io_inp": [
      -4,
      -4,
      4,
      -1
    ],
    "io_out": [
      -40,
      -40,
      -25,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(sort_des(input)),-3),-1),5)"
  },
  {
    "input": "input : list = [2, -3, -5, 5, -5]\noutput : list = [-11, -11, -9, -4, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(sort_des([2, -3, -5, 5, -5]),2))),-4)",
    "io_inp": [
      2,
      -3,
      -5,
      5,
      -5
    ],
    "io_out": [
      -11,
      -11,
      -9,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(sort_des(input),2))),-4)"
  },
  {
    "input": "input : list = [3, 0, 5, -4]\noutput : list = [5, 2, 7, -2]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse([3, 0, 5, -4])),-4),2)",
    "io_inp": [
      3,
      0,
      5,
      -4
    ],
    "io_out": [
      5,
      2,
      7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(input)),-4),2)"
  },
  {
    "input": "input : list = [4, -2, -3, 3, 3, -3]\noutput : list = [0, -1, -1, -6, -7, -7]",
    "output": "generated_output : list = add_n(sort_des([4, -2, -3, 3, 3, -3]),-4)",
    "io_inp": [
      4,
      -2,
      -3,
      3,
      3,
      -3
    ],
    "io_out": [
      0,
      -1,
      -1,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse([-5, 4]),-1),-4),4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(input),-1),-4),4)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [4, 6]",
    "output": "generated_output : list = reverse(take(add_n(reverse(sort_asc([3, 1])),3),5))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(sort_asc(input)),3),5))"
  },
  {
    "input": "input : list = [1, -2, -3]\noutput : list = [32, 20, 16]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n(mul_n([1, -2, -3],-1),3)),-4),-4)",
    "io_inp": [
      1,
      -2,
      -3
    ],
    "io_out": [
      32,
      20,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(mul_n(input,-1),3)),-4),-4)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-6, 10]",
    "output": "generated_output : list = reverse(mul_n([5, -3],2))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [2, -3, -2, -3]\noutput : list = [-13, -17]",
    "output": "generated_output : list = sort_des(reverse(add_n(mul_n(drop([2, -3, -2, -3],2),4),-5)))",
    "io_inp": [
      2,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -13,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(mul_n(drop(input,2),4),-5)))"
  },
  {
    "input": "input : list = [1, -3, 1, -4, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take([1, -3, 1, -4, 1],2),-1)),2)",
    "io_inp": [
      1,
      -3,
      1,
      -4,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(input,2),-1)),2)"
  },
  {
    "input": "input : list = [-1, -5, -3]\noutput : list = [6, 12, 0]",
    "output": "generated_output : list = reverse(add_n(mul_n([-1, -5, -3],-3),-3))",
    "io_inp": [
      -1,
      -5,
      -3
    ],
    "io_out": [
      6,
      12,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-3),-3))"
  },
  {
    "input": "input : list = [4, 3, 0, -4, -5, 0]\noutput : list = [-2, -5, -9, -10, -5]",
    "output": "generated_output : list = sub_n(drop([4, 3, 0, -4, -5, 0],1),5)",
    "io_inp": [
      4,
      3,
      0,
      -4,
      -5,
      0
    ],
    "io_out": [
      -2,
      -5,
      -9,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [3, 12]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(drop([3, -1, -4],1)),-3),1))",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(drop(input,1)),-3),1))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = sub_n([4, 2],2)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [20, -60]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(mul_n([-3, 2],4)),-1),2),4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      20,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(mul_n(input,4)),-1),2),4)"
  },
  {
    "input": "input : list = [-2, 2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(drop([-2, 2, 2],1),3)),15),-4)",
    "io_inp": [
      -2,
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(drop(input,1),3)),15),-4)"
  },
  {
    "input": "input : list = [3, -5, 4, -2, 0]\noutput : list = [9, -15, 12, -6, 0]",
    "output": "generated_output : list = mul_n([3, -5, 4, -2, 0],3)",
    "io_inp": [
      3,
      -5,
      4,
      -2,
      0
    ],
    "io_out": [
      9,
      -15,
      12,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-24, 56]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(sort_des([2, -3]),2),-1),2),-4)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -24,
      56
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(sort_des(input),2),-1),2),-4)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [108, 48]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(add_n([-1, 4],5),2)),-3),-4)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      108,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(add_n(input,5),2)),-3),-4)"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop([-4, 1, -1],1)",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [-15, 15]",
    "output": "generated_output : list = mul_n(mul_n(add_n(drop(add_n([-1, 1, -1],4),1),-4),-5),3)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(drop(add_n(input,4),1),-4),-5),3)"
  },
  {
    "input": "input : list = [4, -3, 1, 1, 2]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = sub_n(take(sort_des(take(drop([4, -3, 1, 1, 2],2),3)),24),2)",
    "io_inp": [
      4,
      -3,
      1,
      1,
      2
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(drop(input,2),3)),24),2)"
  },
  {
    "input": "input : list = [2, 3, -2, 3, 4, 1]\noutput : list = [7, 2, 7, 8, 5]",
    "output": "generated_output : list = sub_n(drop([2, 3, -2, 3, 4, 1],1),-4)",
    "io_inp": [
      2,
      3,
      -2,
      3,
      4,
      1
    ],
    "io_out": [
      7,
      2,
      7,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [-3, -5, -4, 3]\noutput : list = [36, 44, 40, 12]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(add_n([-3, -5, -4, 3],-5),-4)),4))",
    "io_inp": [
      -3,
      -5,
      -4,
      3
    ],
    "io_out": [
      36,
      44,
      40,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(add_n(input,-5),-4)),4))"
  },
  {
    "input": "input : list = [-2, 4, 1, -2, -1, 4]\noutput : list = [-14, -5, 4]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(take([-2, 4, 1, -2, -1, 4],3),5),-3)),-2)",
    "io_inp": [
      -2,
      4,
      1,
      -2,
      -1,
      4
    ],
    "io_out": [
      -14,
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(take(input,3),5),-3)),-2)"
  },
  {
    "input": "input : list = [-5, -1, 3, -3, 3]\noutput : list = [-3, -3, -15, -21, -27]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_des([-5, -1, 3, -3, 3])),-4),3))",
    "io_inp": [
      -5,
      -1,
      3,
      -3,
      3
    ],
    "io_out": [
      -3,
      -3,
      -15,
      -21,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_des(input)),-4),3))"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(drop([2, 0, -5],1)),5),1),3)",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(drop(input,1)),5),1),3)"
  },
  {
    "input": "input : list = [5, 5, 5, 4]\noutput : list = [-26, -26, -26, -24]",
    "output": "generated_output : list = mul_n(add_n(sub_n([5, 5, 5, 4],-4),4),-2)",
    "io_inp": [
      5,
      5,
      5,
      4
    ],
    "io_out": [
      -26,
      -26,
      -26,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,-4),4),-2)"
  },
  {
    "input": "input : list = [-4, 1, 4, 1]\noutput : list = [-3, -8]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(take([-4, 1, 4, 1],2),-2)),3),-5)",
    "io_inp": [
      -4,
      1,
      4,
      1
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(take(input,2),-2)),3),-5)"
  },
  {
    "input": "input : list = [2, 4, -3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sub_n(drop([2, 4, -3],1),1)",
    "io_inp": [
      2,
      4,
      -3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [12, 16]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(add_n([-3, -4],1),-2),1),-4),25)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      12,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(add_n(input,1),-2),1),-4),25)"
  },
  {
    "input": "input : list = [-2, 5, 2, -5, -4]\noutput : list = [-9, -10]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(drop([-2, 5, 2, -5, -4],3)),-3),19),2)",
    "io_inp": [
      -2,
      5,
      2,
      -5,
      -4
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(drop(input,3)),-3),19),2)"
  },
  {
    "input": "input : list = [-1, 1, 1, 2]\noutput : list = [8, 2, 2, -1]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(sub_n([-1, 1, 1, 2],-2),5),24),-3),-4)",
    "io_inp": [
      -1,
      1,
      1,
      2
    ],
    "io_out": [
      8,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(sub_n(input,-2),5),24),-3),-4)"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [10, 10, -14]",
    "output": "generated_output : list = add_n(take(take(mul_n(sort_des([3, 3, -5]),3),11),15),1)",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      10,
      10,
      -14
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(sort_des(input),3),11),15),1)"
  },
  {
    "input": "input : list = [-3, 5, 1, 3, 3]\noutput : list = [52, 32, 32, 12, -28]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(mul_n([-3, 5, 1, 3, 3],5)),-1),1),-2)",
    "io_inp": [
      -3,
      5,
      1,
      3,
      3
    ],
    "io_out": [
      52,
      32,
      32,
      12,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(mul_n(input,5)),-1),1),-2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [9, -9]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(mul_n([3, -3],3)))))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [5, 5, -3, 0]\noutput : list = [0, -3, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, -3, 0])",
    "io_inp": [
      5,
      5,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, 3, 2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -3, 3, 2],1)",
    "io_inp": [
      -1,
      -3,
      3,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sub_n([-2, 5],1)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-4, 2, 0, -3]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 2, 0, -3],1)",
    "io_inp": [
      -4,
      2,
      0,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 3, 5, -3, 5]\noutput : list = [10, 2, 10]",
    "output": "generated_output : list = reverse(sub_n(drop([-3, 3, 5, -3, 5],2),-5))",
    "io_inp": [
      -3,
      3,
      5,
      -3,
      5
    ],
    "io_out": [
      10,
      2,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,2),-5))"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [0, -6, -8]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(sort_asc([-5, -3, 3])),-1),1),-1)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      0,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(sort_asc(input)),-1),1),-1)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [-3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(reverse([5, 5, -3])))))",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [0, -1]",
    "output": "generated_output : list = reverse(add_n([3, 4],-4))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [-4, 0, 2, -2]\noutput : list = [0, 2]",
    "output": "generated_output : list = drop(sort_asc(sort_asc(sort_des(sort_asc([-4, 0, 2, -2])))),2)",
    "io_inp": [
      -4,
      0,
      2,
      -2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_asc(sort_des(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([1, 2],1)),5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,1)),5)"
  },
  {
    "input": "input : list = [-3, -1, 0, -3, 5, 0]\noutput : list = [-9, -9, -3, 0, 0, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(mul_n([-3, -1, 0, -3, 5, 0],-3))),-1))",
    "io_inp": [
      -3,
      -1,
      0,
      -3,
      5,
      0
    ],
    "io_out": [
      -9,
      -9,
      -3,
      0,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(mul_n(input,-3))),-1))"
  },
  {
    "input": "input : list = [1, 1, -1, -4, -4]\noutput : list = [1, 1, -1, -4, -4]",
    "output": "generated_output : list = sort_des([1, 1, -1, -4, -4])",
    "io_inp": [
      1,
      1,
      -1,
      -4,
      -4
    ],
    "io_out": [
      1,
      1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, -1, -2, 5]\noutput : list = [-2, -1, 4, 4, 5]",
    "output": "generated_output : list = take(sort_asc([4, 4, -1, -2, 5]),15)",
    "io_inp": [
      4,
      4,
      -1,
      -2,
      5
    ],
    "io_out": [
      -2,
      -1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [0, -3, 5, 2, -3, 1]\noutput : list = [-3, 0]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take([0, -3, 5, 2, -3, 1],2))))",
    "io_inp": [
      0,
      -3,
      5,
      2,
      -3,
      1
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(input,2))))"
  },
  {
    "input": "input : list = [5, 3, -2, 3, 1, -1]\noutput : list = [10, 5, -5, -15, -15, -25]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(mul_n([5, 3, -2, 3, 1, -1],-5)),7)))",
    "io_inp": [
      5,
      3,
      -2,
      3,
      1,
      -1
    ],
    "io_out": [
      10,
      5,
      -5,
      -15,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(mul_n(input,-5)),7)))"
  },
  {
    "input": "input : list = [2, -4, -3, 0]\noutput : list = [0, -2, -5, -6]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(add_n([2, -4, -3, 0],-2)))))",
    "io_inp": [
      2,
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [3, -1, 3, 2]\noutput : list = [20, 20]",
    "output": "generated_output : list = mul_n(drop(sort_asc(add_n(add_n([3, -1, 3, 2],-3),-4)),2),-5)",
    "io_inp": [
      3,
      -1,
      3,
      2
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(add_n(add_n(input,-3),-4)),2),-5)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n([2, 5, 4],2)),1),2)",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(input,2)),1),2)"
  },
  {
    "input": "input : list = [2, 4, 2, -2, 4]\noutput : list = [-6, -2, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(drop([2, 4, 2, -2, 4],1)),-4)))",
    "io_inp": [
      2,
      4,
      2,
      -2,
      4
    ],
    "io_out": [
      -6,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(drop(input,1)),-4)))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n([2, 3],5),-1)))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(input,5),-1)))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-6, 4]",
    "output": "generated_output : list = add_n(sub_n(add_n([-5, 5],1),-1),-3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,1),-1),-3)"
  },
  {
    "input": "input : list = [4, -1, -5, 2, 3]\noutput : list = [9, 5, 2, 1, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des([4, -1, -5, 2, 3])),-4),-1)",
    "io_inp": [
      4,
      -1,
      -5,
      2,
      3
    ],
    "io_out": [
      9,
      5,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(input)),-4),-1)"
  },
  {
    "input": "input : list = [-4, 1, 5, -1, -3]\noutput : list = [8, 4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([-4, 1, 5, -1, -3],3)))",
    "io_inp": [
      -4,
      1,
      5,
      -1,
      -3
    ],
    "io_out": [
      8,
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,3)))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n([5, 1],5)),2),-1)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(input,5)),2),-1)"
  },
  {
    "input": "input : list = [-3, -5, 5, 2, 1, -1]\noutput : list = [0, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(drop([-3, -5, 5, 2, 1, -1],4)))),1)",
    "io_inp": [
      -3,
      -5,
      5,
      2,
      1,
      -1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(drop(input,4)))),1)"
  },
  {
    "input": "input : list = [2, 3, -4, -3, -2, -2]\noutput : list = [2, 1, -3, -3, -4, -5]",
    "output": "generated_output : list = sub_n(reverse(take(take(sort_asc([2, 3, -4, -3, -2, -2]),25),35)),1)",
    "io_inp": [
      2,
      3,
      -4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      2,
      1,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(sort_asc(input),25),35)),1)"
  },
  {
    "input": "input : list = [-2, -4, -2, 2]\noutput : list = [0, -8, -8, -12]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-2, -4, -2, 2],2)),4)",
    "io_inp": [
      -2,
      -4,
      -2,
      2
    ],
    "io_out": [
      0,
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,2)),4)"
  },
  {
    "input": "input : list = [-3, 2, 4, -5, -4, -3]\noutput : list = [-7]",
    "output": "generated_output : list = take(sort_asc(add_n(take(sort_asc([-3, 2, 4, -5, -4, -3]),29),-2)),1)",
    "io_inp": [
      -3,
      2,
      4,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(sort_asc(input),29),-2)),1)"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [-16, -16, -10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(sub_n([2, 5, 5],-3),6),-2)))",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      -16,
      -16,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(sub_n(input,-3),6),-2)))"
  },
  {
    "input": "input : list = [2, -4, -3, 2, 0, -2]\noutput : list = [-16, -12, -8, 0, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(sort_des([2, -4, -3, 2, 0, -2]),25),4)))",
    "io_inp": [
      2,
      -4,
      -3,
      2,
      0,
      -2
    ],
    "io_out": [
      -16,
      -12,
      -8,
      0,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(sort_des(input),25),4)))"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-8, -3, -9]",
    "output": "generated_output : list = add_n(add_n([-4, 1, -5],-5),1)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -8,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),1)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [0, 1, 1]",
    "output": "generated_output : list = sub_n([-1, 0, 0],-1)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, 4, -4, 1]\noutput : list = [0, -12, -15, -24]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(sort_asc([0, 4, -4, 1]),4),-3)),47)",
    "io_inp": [
      0,
      4,
      -4,
      1
    ],
    "io_out": [
      0,
      -12,
      -15,
      -24
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(sort_asc(input),4),-3)),47)"
  },
  {
    "input": "input : list = [2, 1, -3, 5, 3, 4]\noutput : list = [-10, -9, -8, -7, -6, -2]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(sort_des([2, 1, -3, 5, 3, 4]),3),2)),-1)",
    "io_inp": [
      2,
      1,
      -3,
      5,
      3,
      4
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(sort_des(input),3),2)),-1)"
  },
  {
    "input": "input : list = [-2, 3, -3, -1, 3]\noutput : list = [22, 22, 10, 7, 4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(add_n([-2, 3, -3, -1, 3],5)),3)),-2)",
    "io_inp": [
      -2,
      3,
      -3,
      -1,
      3
    ],
    "io_out": [
      22,
      22,
      10,
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(add_n(input,5)),3)),-2)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-8, 4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sub_n([-2, -5],2),-5),4)))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sub_n(input,2),-5),4)))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [4, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_des([-4, -3, 4]),-1),-1)),-2)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_des(input),-1),-1)),-2)"
  },
  {
    "input": "input : list = [5, -1, 4, 4, -2]\noutput : list = [2, 1, 1, -4, -5]",
    "output": "generated_output : list = take(add_n(take(sort_des([5, -1, 4, 4, -2]),22),-3),40)",
    "io_inp": [
      5,
      -1,
      4,
      4,
      -2
    ],
    "io_out": [
      2,
      1,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(input),22),-3),40)"
  },
  {
    "input": "input : list = [-2, 5, -2, -2]\noutput : list = [12]",
    "output": "generated_output : list = sub_n(take(drop(sort_asc(add_n([-2, 5, -2, -2],4)),3),15),-3)",
    "io_inp": [
      -2,
      5,
      -2,
      -2
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(sort_asc(add_n(input,4)),3),15),-3)"
  },
  {
    "input": "input : list = [2, -1, 1, 3]\noutput : list = [-4, 4, 8, 12]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(mul_n([2, -1, 1, 3],4)),19),-3),-3)",
    "io_inp": [
      2,
      -1,
      1,
      3
    ],
    "io_out": [
      -4,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(mul_n(input,4)),19),-3),-3)"
  },
  {
    "input": "input : list = [-4, 0, 0, 0]\noutput : list = [15, 15, 15, 31]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(sub_n([-4, 0, 0, 0],4)),-4),1),6)",
    "io_inp": [
      -4,
      0,
      0,
      0
    ],
    "io_out": [
      15,
      15,
      15,
      31
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(sub_n(input,4)),-4),1),6)"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(sort_des(take([4, 2, 3],1)),-5)",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,1)),-5)"
  },
  {
    "input": "input : list = [-3, -3, -5, -3, -4]\noutput : list = [-4, -4, -6, -4, -5]",
    "output": "generated_output : list = sub_n([-3, -3, -5, -3, -4],1)",
    "io_inp": [
      -3,
      -3,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -6,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-4, -2, 2, -3, 4, 0]\noutput : list = [23, 15, 7, -9, -25, -41]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(mul_n([-4, -2, 2, -3, 4, 0],4)),-5),-2),-1)",
    "io_inp": [
      -4,
      -2,
      2,
      -3,
      4,
      0
    ],
    "io_out": [
      23,
      15,
      7,
      -9,
      -25,
      -41
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(mul_n(input,4)),-5),-2),-1)"
  },
  {
    "input": "input : list = [1, -1, -2, 5, -5, 3]\noutput : list = [-3, 0, 1, 3, 5, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(sort_asc([1, -1, -2, 5, -5, 3]),-2))))",
    "io_inp": [
      1,
      -1,
      -2,
      5,
      -5,
      3
    ],
    "io_out": [
      -3,
      0,
      1,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [-2, -5, -5, -1, -3]\noutput : list = [-125, -125, -75, -50, -25]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(sort_asc([-2, -5, -5, -1, -3]))),5),5)",
    "io_inp": [
      -2,
      -5,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -125,
      -125,
      -75,
      -50,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(sort_asc(input))),5),5)"
  },
  {
    "input": "input : list = [3, -4, -3, 2, -5, -5]\noutput : list = [3, 3, 0, -3, -18, -21]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([3, -4, -3, 2, -5, -5],-4),-3))",
    "io_inp": [
      3,
      -4,
      -3,
      2,
      -5,
      -5
    ],
    "io_out": [
      3,
      3,
      0,
      -3,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,-4),-3))"
  },
  {
    "input": "input : list = [2, 4, 2, -2, -1]\noutput : list = [2, 3, 6, 6, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([2, 4, 2, -2, -1],-4),1))",
    "io_inp": [
      2,
      4,
      2,
      -2,
      -1
    ],
    "io_out": [
      2,
      3,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-4),1))"
  },
  {
    "input": "input : list = [4, 3, -3, 1, -3]\noutput : list = [3, 3, -1, -3, -4]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(sort_asc([4, 3, -3, 1, -3]),-1))),18)",
    "io_inp": [
      4,
      3,
      -3,
      1,
      -3
    ],
    "io_out": [
      3,
      3,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(sort_asc(input),-1))),18)"
  },
  {
    "input": "input : list = [-2, 5, 1, -3]\noutput : list = [-4, 3, -1, -5]",
    "output": "generated_output : list = sub_n([-2, 5, 1, -3],2)",
    "io_inp": [
      -2,
      5,
      1,
      -3
    ],
    "io_out": [
      -4,
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(reverse([-4, 2])),-2)),-2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(reverse(input)),-2)),-2)"
  },
  {
    "input": "input : list = [3, 0, 2, 1, -3, -3]\noutput : list = [6, 0, 4, 2, -6, -6]",
    "output": "generated_output : list = mul_n([3, 0, 2, 1, -3, -3],2)",
    "io_inp": [
      3,
      0,
      2,
      1,
      -3,
      -3
    ],
    "io_out": [
      6,
      0,
      4,
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [3, 3, 5, -3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 3, 5, -3],1)",
    "io_inp": [
      3,
      3,
      5,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(take([-5, 3, -1],1),3))),1)",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(take(input,1),3))),1)"
  },
  {
    "input": "input : list = [-1, 2, -1, -5, -1]\noutput : list = [-5, -1, -1, -1, 2]",
    "output": "generated_output : list = sort_asc([-1, 2, -1, -5, -1])",
    "io_inp": [
      -1,
      2,
      -1,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [2, 2, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n([-3, -1, -1],-4),-1))",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-4),-1))"
  },
  {
    "input": "input : list = [-4, -1, 5, 0]\noutput : list = [0, 3, 4, 9]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des([-4, -1, 5, 0])),-4),36)",
    "io_inp": [
      -4,
      -1,
      5,
      0
    ],
    "io_out": [
      0,
      3,
      4,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(input)),-4),36)"
  },
  {
    "input": "input : list = [1, 0, 2, 1, 3, 0]\noutput : list = [9, 8, 10, 9, 11, 8]",
    "output": "generated_output : list = sub_n(sub_n([1, 0, 2, 1, 3, 0],-3),-5)",
    "io_inp": [
      1,
      0,
      2,
      1,
      3,
      0
    ],
    "io_out": [
      9,
      8,
      10,
      9,
      11,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-5)"
  },
  {
    "input": "input : list = [-4, 5, 4, -5, 3]\noutput : list = [-35, -30, 5, 10, 15]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sub_n([-4, 5, 4, -5, 3],2),5))))",
    "io_inp": [
      -4,
      5,
      4,
      -5,
      3
    ],
    "io_out": [
      -35,
      -30,
      5,
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sub_n(input,2),5))))"
  },
  {
    "input": "input : list = [-2, -1, -1, 5, 4, -5]\noutput : list = [-9, -6, 9, 9, 12, 21]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_des(mul_n([-2, -1, -1, 5, 4, -5],-3)),5)),1)",
    "io_inp": [
      -2,
      -1,
      -1,
      5,
      4,
      -5
    ],
    "io_out": [
      -9,
      -6,
      9,
      9,
      12,
      21
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_des(mul_n(input,-3)),5)),1)"
  },
  {
    "input": "input : list = [1, -4, 4]\noutput : list = [-7, -12, -4]",
    "output": "generated_output : list = sub_n(take(sub_n([1, -4, 4],4),16),4)",
    "io_inp": [
      1,
      -4,
      4
    ],
    "io_out": [
      -7,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,4),16),4)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(sub_n([-5, 0],-1),4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),4)"
  },
  {
    "input": "input : list = [-2, -4, -4, 4]\noutput : list = [-15, -15, -9, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sort_asc([-2, -4, -4, 4]),3))),-3)",
    "io_inp": [
      -2,
      -4,
      -4,
      4
    ],
    "io_out": [
      -15,
      -15,
      -9,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sort_asc(input),3))),-3)"
  },
  {
    "input": "input : list = [-5, 1, 2, 5, -5]\noutput : list = [75, 75, -15, -30, -75]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(sort_des([-5, 1, 2, 5, -5]),-3),5)))",
    "io_inp": [
      -5,
      1,
      2,
      5,
      -5
    ],
    "io_out": [
      75,
      75,
      -15,
      -30,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(sort_des(input),-3),5)))"
  },
  {
    "input": "input : list = [1, -5, -3, -5, 1, -5]\noutput : list = [3, 3, -9, -15, -15, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n(sub_n([1, -5, -3, -5, 1, -5],-5),-5)),3))",
    "io_inp": [
      1,
      -5,
      -3,
      -5,
      1,
      -5
    ],
    "io_out": [
      3,
      3,
      -9,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(sub_n(input,-5),-5)),3))"
  },
  {
    "input": "input : list = [-4, 3, 1, -1]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = sort_des(drop([-4, 3, 1, -1],1))",
    "io_inp": [
      -4,
      3,
      1,
      -1
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [2, 1, -2, -4, -4]\noutput : list = [-4, -4, -2, 1, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des([2, 1, -2, -4, -4])),11)",
    "io_inp": [
      2,
      1,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),11)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-14, -11]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(add_n([5, 2],-4),-3)),4),5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -14,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(add_n(input,-4),-3)),4),5)"
  },
  {
    "input": "input : list = [-5, 4, 5, 4, 3]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(take([-5, 4, 5, 4, 3],1)))),-5)",
    "io_inp": [
      -5,
      4,
      5,
      4,
      3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(take(input,1)))),-5)"
  },
  {
    "input": "input : list = [-1, 0, -1, 0, -4]\noutput : list = [-9, 18, 18, 27, 27]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(add_n([-1, 0, -1, 0, -4],3),-3)),-3))",
    "io_inp": [
      -1,
      0,
      -1,
      0,
      -4
    ],
    "io_out": [
      -9,
      18,
      18,
      27,
      27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(add_n(input,3),-3)),-3))"
  },
  {
    "input": "input : list = [-3, 3, -5, -4, 4, 2]\noutput : list = [8, 7, 6, 1, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n([-3, 3, -5, -4, 4, 2],3),-1),-2)),2)",
    "io_inp": [
      -3,
      3,
      -5,
      -4,
      4,
      2
    ],
    "io_out": [
      8,
      7,
      6,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n(input,3),-1),-2)),2)"
  },
  {
    "input": "input : list = [-4, 2, -1]\noutput : list = [0, 6]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(sub_n([-4, 2, -1],-4),2))))",
    "io_inp": [
      -4,
      2,
      -1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(sub_n(input,-4),2))))"
  },
  {
    "input": "input : list = [-4, -1, -2, 4, 3, 4]\noutput : list = [-2, -2, -3, -7, -8, -10]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(add_n([-4, -1, -2, 4, 3, 4],-1)),-5),48))",
    "io_inp": [
      -4,
      -1,
      -2,
      4,
      3,
      4
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -7,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(add_n(input,-1)),-5),48))"
  },
  {
    "input": "input : list = [0, 1, -2, -5, 2, -3]\noutput : list = [15, 9, 3, -9, -15, -27]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(mul_n([0, 1, -2, -5, 2, -3],-2),-1),-3)))",
    "io_inp": [
      0,
      1,
      -2,
      -5,
      2,
      -3
    ],
    "io_out": [
      15,
      9,
      3,
      -9,
      -15,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(mul_n(input,-2),-1),-3)))"
  },
  {
    "input": "input : list = [0, 2, -2, 0]\noutput : list = [-6, -4, -4, -2]",
    "output": "generated_output : list = add_n(sort_asc([0, 2, -2, 0]),-4)",
    "io_inp": [
      0,
      2,
      -2,
      0
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-1, 4, -1, -1, 5]\noutput : list = [5, 5, -25]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(drop([-1, 4, -1, -1, 5],2)),23),-5))",
    "io_inp": [
      -1,
      4,
      -1,
      -1,
      5
    ],
    "io_out": [
      5,
      5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(drop(input,2)),23),-5))"
  },
  {
    "input": "input : list = [2, -2, 3, 4, 4]\noutput : list = [2, -2]",
    "output": "generated_output : list = take([2, -2, 3, 4, 4],2)",
    "io_inp": [
      2,
      -2,
      3,
      4,
      4
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [8, -24]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n([3, -1],4))),-2)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      8,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(input,4))),-2)"
  },
  {
    "input": "input : list = [-1, 3, 5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take(take([-1, 3, 5],1),5))",
    "io_inp": [
      -1,
      3,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,1),5))"
  },
  {
    "input": "input : list = [1, 1, 5, 4, 4]\noutput : list = [12, 7, 7]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(drop([1, 1, 5, 4, 4],2),3),5),1),3)",
    "io_inp": [
      1,
      1,
      5,
      4,
      4
    ],
    "io_out": [
      12,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(drop(input,2),3),5),1),3)"
  },
  {
    "input": "input : list = [3, -2, -3, 4, 5, -3]\noutput : list = [-10, -90, -80, -10, -20, -70]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(add_n([3, -2, -3, 4, 5, -3],2)),2),5),-2)",
    "io_inp": [
      3,
      -2,
      -3,
      4,
      5,
      -3
    ],
    "io_out": [
      -10,
      -90,
      -80,
      -10,
      -20,
      -70
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(add_n(input,2)),2),5),-2)"
  },
  {
    "input": "input : list = [-1, 1, 1, -2, -5, -1]\noutput : list = [3, 3, 1, 1, 0, -3]",
    "output": "generated_output : list = add_n(take(reverse(add_n(sort_asc([-1, 1, 1, -2, -5, -1]),3)),25),-1)",
    "io_inp": [
      -1,
      1,
      1,
      -2,
      -5,
      -1
    ],
    "io_out": [
      3,
      3,
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(add_n(sort_asc(input),3)),25),-1)"
  },
  {
    "input": "input : list = [2, 1, 4, 3, -5]\noutput : list = [-7, -6, -5, -4, 2]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(sort_asc([2, 1, 4, 3, -5]),-5)),-1),2)",
    "io_inp": [
      2,
      1,
      4,
      3,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(sort_asc(input),-5)),-1),2)"
  },
  {
    "input": "input : list = [-3, 0, -4, -1, 3, -3]\noutput : list = [-3, 0, -4, -1]",
    "output": "generated_output : list = take([-3, 0, -4, -1, 3, -3],4)",
    "io_inp": [
      -3,
      0,
      -4,
      -1,
      3,
      -3
    ],
    "io_out": [
      -3,
      0,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [5, -2, -1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(sort_des(drop([5, -2, -1, 3],2)))",
    "io_inp": [
      5,
      -2,
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [5, 0, -4]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(sort_des([-5, 4, -1])),1),26))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(sort_des(input)),1),26))"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(reverse([-1, -2, 0])))),33)",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(reverse(input)))),33)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-8, -18]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(mul_n([4, 2],-5),1)),-3),14)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -8,
      -18
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(mul_n(input,-5),1)),-3),14)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [10, -8]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n([-5, 4],-2))))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      10,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(input,-2))))"
  },
  {
    "input": "input : list = [-2, -1, 3, -3, -5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = drop([-2, -1, 3, -3, -5, 3],4)",
    "io_inp": [
      -2,
      -1,
      3,
      -3,
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [3, 3, 2, 5, -2, 4]\noutput : list = [-2, 2, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([3, 3, 2, 5, -2, 4])",
    "io_inp": [
      3,
      3,
      2,
      5,
      -2,
      4
    ],
    "io_out": [
      -2,
      2,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, 2, -4]\noutput : list = [4]",
    "output": "generated_output : list = take(take(mul_n(sort_des(take([-2, 1, 2, -4],1)),-2),35),2)",
    "io_inp": [
      -2,
      1,
      2,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(take(input,1)),-2),35),2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(sort_des([1, 0])),-2),1))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(sort_des(input)),-2),1))"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [10]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(sub_n([5, -2, 3],-1),1),-1),-5))",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(sub_n(input,-1),1),-1),-5))"
  },
  {
    "input": "input : list = [2, 4, 2, 3]\noutput : list = [2, 2, -2, -6]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(mul_n([2, 4, 2, 3],-4),-5),5)))",
    "io_inp": [
      2,
      4,
      2,
      3
    ],
    "io_out": [
      2,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(mul_n(input,-4),-5),5)))"
  },
  {
    "input": "input : list = [4, -5, 1, -1]\noutput : list = [0, 96, -192, 240]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(mul_n([4, -5, 1, -1],-4),-4),-3),4))",
    "io_inp": [
      4,
      -5,
      1,
      -1
    ],
    "io_out": [
      0,
      96,
      -192,
      240
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(mul_n(input,-4),-4),-3),4))"
  },
  {
    "input": "input : list = [-5, 3, 2, -1]\noutput : list = [0, -32, -28, -16]",
    "output": "generated_output : list = mul_n(add_n([-5, 3, 2, -1],5),-4)",
    "io_inp": [
      -5,
      3,
      2,
      -1
    ],
    "io_out": [
      0,
      -32,
      -28,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),-4)"
  },
  {
    "input": "input : list = [-1, -2, -3, -5, 5]\noutput : list = [-1, 1, 2, 3, 9]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(sort_asc([-1, -2, -3, -5, 5]),-4)),22))",
    "io_inp": [
      -1,
      -2,
      -3,
      -5,
      5
    ],
    "io_out": [
      -1,
      1,
      2,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(sort_asc(input),-4)),22))"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sort_asc([-1, 2, 1])",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, -1]\noutput : list = [6, 6, 10]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_asc([3, -1, -1]),-4))),-3)",
    "io_inp": [
      3,
      -1,
      -1
    ],
    "io_out": [
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_asc(input),-4))),-3)"
  },
  {
    "input": "input : list = [-1, 0, -2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(drop([-1, 0, -2],1)),-1)),-2)",
    "io_inp": [
      -1,
      0,
      -2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(drop(input,1)),-1)),-2)"
  },
  {
    "input": "input : list = [3, 5, -2, 4, -4, -5]\noutput : list = [2, 1, -4, -6, -7]",
    "output": "generated_output : list = take(drop(sub_n(sort_des(sub_n([3, 5, -2, 4, -4, -5],-1)),3),1),17)",
    "io_inp": [
      3,
      5,
      -2,
      4,
      -4,
      -5
    ],
    "io_out": [
      2,
      1,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(sort_des(sub_n(input,-1)),3),1),17)"
  },
  {
    "input": "input : list = [4, 5, -2, -5, -3, 4]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(take([4, 5, -2, -5, -3, 4],1),-4),-3)))",
    "io_inp": [
      4,
      5,
      -2,
      -5,
      -3,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(take(input,1),-4),-3)))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 4]",
    "output": "generated_output : list = mul_n([0, 1],4)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, -4, -5]\noutput : list = [-7, -6, 2]",
    "output": "generated_output : list = sort_asc(sub_n([4, -4, -5],2))",
    "io_inp": [
      4,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [-2, 4, -1, 3, -5, 5]\noutput : list = [-4, -1, 0, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sub_n([-2, 4, -1, 3, -5, 5],-1)))))",
    "io_inp": [
      -2,
      4,
      -1,
      3,
      -5,
      5
    ],
    "io_out": [
      -4,
      -1,
      0,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [3, 1, -1]\noutput : list = [10, 0, -10]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_des([3, 1, -1]))),-5),5)",
    "io_inp": [
      3,
      1,
      -1
    ],
    "io_out": [
      10,
      0,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_des(input))),-5),5)"
  },
  {
    "input": "input : list = [3, 5, 5, 2, -3, 4]\noutput : list = [2, 6, 6, 0]",
    "output": "generated_output : list = add_n(mul_n(take(take(take([3, 5, 5, 2, -3, 4],4),8),25),2),-4)",
    "io_inp": [
      3,
      5,
      5,
      2,
      -3,
      4
    ],
    "io_out": [
      2,
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(take(input,4),8),25),2),-4)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-17, 15]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n([4, -4],-4),-1),1)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -17,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n(input,-4),-1),1)))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-10, -45]",
    "output": "generated_output : list = mul_n(take(add_n(take(sort_des([3, -4]),12),-5),10),5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -10,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(sort_des(input),12),-5),10),5)"
  },
  {
    "input": "input : list = [-5, 1, -2, -4, -4, -2]\noutput : list = [-1, 0, 0, 2, 2, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(reverse([-5, 1, -2, -4, -4, -2]),4))))",
    "io_inp": [
      -5,
      1,
      -2,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -1,
      0,
      0,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [0, -3, -2, -2, -4]\noutput : list = [-1, -4, -3, -3, -5]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(reverse([0, -3, -2, -2, -4]),5),17)),4)",
    "io_inp": [
      0,
      -3,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(reverse(input),5),17)),4)"
  },
  {
    "input": "input : list = [-3, 0, 0, -5, -1, -3]\noutput : list = [-9, -7, -5, -4]",
    "output": "generated_output : list = take(sort_asc(take(add_n(reverse([-3, 0, 0, -5, -1, -3]),-4),4)),18)",
    "io_inp": [
      -3,
      0,
      0,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(reverse(input),-4),4)),18)"
  },
  {
    "input": "input : list = [-5, 0, -2, 0]\noutput : list = [0, 0, -10, -25]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_des([-5, 0, -2, 0])),-1)),-5)",
    "io_inp": [
      -5,
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      0,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_des(input)),-1)),-5)"
  },
  {
    "input": "input : list = [4, 4, 3, -2, -4]\noutput : list = [10, 10, 8, -2, -6]",
    "output": "generated_output : list = mul_n(take(add_n([4, 4, 3, -2, -4],1),5),2)",
    "io_inp": [
      4,
      4,
      3,
      -2,
      -4
    ],
    "io_out": [
      10,
      10,
      8,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,1),5),2)"
  },
  {
    "input": "input : list = [-5, 3, 2, 3, 2]\noutput : list = [3, 3, 2, 2, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(sort_des([-5, 3, 2, 3, 2])))))",
    "io_inp": [
      -5,
      3,
      2,
      3,
      2
    ],
    "io_out": [
      3,
      3,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [20, 8, 8]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(sort_des([-1, -1, -4]),19)),-1),-4)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      20,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(sort_des(input),19)),-1),-4)"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n([0, -2, -1],1),10))",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,1),10))"
  },
  {
    "input": "input : list = [2, 5, 2, -2]\noutput : list = [-2, 2, 5, 2]",
    "output": "generated_output : list = reverse([2, 5, 2, -2])",
    "io_inp": [
      2,
      5,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [-3, -1, -3]",
    "output": "generated_output : list = sub_n([0, 2, 0],3)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      -3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, -4, -2, -4]\noutput : list = [-6, -4, -6, 3]",
    "output": "generated_output : list = reverse(add_n([5, -4, -2, -4],-2))",
    "io_inp": [
      5,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -4,
      -6,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc([-1, -3])",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, 4, -3, -4, 3]\noutput : list = [-15, -15, -12, 9, 12, -9]",
    "output": "generated_output : list = reverse(take(mul_n(take(reverse([5, 5, 4, -3, -4, 3]),20),-3),16))",
    "io_inp": [
      5,
      5,
      4,
      -3,
      -4,
      3
    ],
    "io_out": [
      -15,
      -15,
      -12,
      9,
      12,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(reverse(input),20),-3),16))"
  },
  {
    "input": "input : list = [-3, 0, 0, 3, 3, 2]\noutput : list = [-25, -25, -15, 5, 5, 35]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(sort_des([-3, 0, 0, 3, 3, 2]),8),5),-2),5)",
    "io_inp": [
      -3,
      0,
      0,
      3,
      3,
      2
    ],
    "io_out": [
      -25,
      -25,
      -15,
      5,
      5,
      35
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(sort_des(input),8),5),-2),5)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [2, -5]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(sub_n([-4, 3],2))),1),1)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(sub_n(input,2))),1),1)"
  },
  {
    "input": "input : list = [0, 1, -3, -1]\noutput : list = [1, 0, -1, -3]",
    "output": "generated_output : list = sort_des([0, 1, -3, -1])",
    "io_inp": [
      0,
      1,
      -3,
      -1
    ],
    "io_out": [
      1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -2, -3, 3]\noutput : list = [-4, -3, -2, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sort_asc([-4, -2, -3, 3]))),12))",
    "io_inp": [
      -4,
      -2,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sort_asc(input))),12))"
  },
  {
    "input": "input : list = [-2, 2, 5, 2, 1, -4]\noutput : list = [-24, -12, -12, -8, 4, 12]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-2, 2, 5, 2, 1, -4],-1)),-4)",
    "io_inp": [
      -2,
      2,
      5,
      2,
      1,
      -4
    ],
    "io_out": [
      -24,
      -12,
      -12,
      -8,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-1)),-4)"
  },
  {
    "input": "input : list = [5, 0, -3, 5]\noutput : list = [5, 5, 0, -3]",
    "output": "generated_output : list = sort_des([5, 0, -3, 5])",
    "io_inp": [
      5,
      0,
      -3,
      5
    ],
    "io_out": [
      5,
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-24, -9]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des([5, 2]),-5),2)),-3)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -24,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des(input),-5),2)),-3)"
  },
  {
    "input": "input : list = [5, -4, -4, -4, -4]\noutput : list = [-36, -9, -9, -9, -9]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n([5, -4, -4, -4, -4],-5),-2),32),-3)",
    "io_inp": [
      5,
      -4,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -36,
      -9,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(input,-5),-2),32),-3)"
  },
  {
    "input": "input : list = [-4, 5, -1, -4]\noutput : list = [26, 8, -1, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(sort_des([-4, 5, -1, -4]),-5),3),2),-2)",
    "io_inp": [
      -4,
      5,
      -1,
      -4
    ],
    "io_out": [
      26,
      8,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(sort_des(input),-5),3),2),-2)"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = sort_des(sort_des([2, 1, 1]))",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(reverse([-4, 3]))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(take([2, 0, -3],1)),7),-1))",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(take(input,1)),7),-1))"
  },
  {
    "input": "input : list = [2, 3, 2, -1, -3]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(sort_des(take([2, 3, 2, -1, -3],2)),22)",
    "io_inp": [
      2,
      3,
      2,
      -1,
      -3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(input,2)),22)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [4]",
    "output": "generated_output : list = add_n(sort_des(drop(add_n(sort_des([3, -3]),4),1)),3)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(add_n(sort_des(input),4),1)),3)"
  },
  {
    "input": "input : list = [2, -3, 0, -4]\noutput : list = [2, -3, 0, -4]",
    "output": "generated_output : list = reverse(reverse([2, -3, 0, -4]))",
    "io_inp": [
      2,
      -3,
      0,
      -4
    ],
    "io_out": [
      2,
      -3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-7, -5]",
    "output": "generated_output : list = add_n(reverse([0, -2]),-5)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [9, 3, -3]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(sort_asc([-1, -3, 1]))),-3),43)",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      9,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(sort_asc(input))),-3),43)"
  },
  {
    "input": "input : list = [-5, -2, 5, 5, 5]\noutput : list = [-5, -2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(take([-5, -2, 5, 5, 5],3)))))",
    "io_inp": [
      -5,
      -2,
      5,
      5,
      5
    ],
    "io_out": [
      -5,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(take(input,3)))))"
  },
  {
    "input": "input : list = [-4, 5, 2, 3, 2]\noutput : list = [140, 160, 140, 200, 20]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(add_n([-4, 5, 2, 3, 2],5),-4)),34),-5)",
    "io_inp": [
      -4,
      5,
      2,
      3,
      2
    ],
    "io_out": [
      140,
      160,
      140,
      200,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(add_n(input,5),-4)),34),-5)"
  },
  {
    "input": "input : list = [-4, -1, -2, -3, 2]\noutput : list = [-2, -3, 2]",
    "output": "generated_output : list = take(drop([-4, -1, -2, -3, 2],2),15)",
    "io_inp": [
      -4,
      -1,
      -2,
      -3,
      2
    ],
    "io_out": [
      -2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(drop(input,2),15)"
  },
  {
    "input": "input : list = [4, -5, -5]\noutput : list = [4, -5, -5]",
    "output": "generated_output : list = sort_des(reverse([4, -5, -5]))",
    "io_inp": [
      4,
      -5,
      -5
    ],
    "io_out": [
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, -2, -3, 4]\noutput : list = [2, -5]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(add_n([5, -2, -3, 4],-1),2),-3),-5),1)",
    "io_inp": [
      5,
      -2,
      -3,
      4
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(add_n(input,-1),2),-3),-5),1)"
  },
  {
    "input": "input : list = [3, 1, 3, 1, -5, -5]\noutput : list = [115]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(mul_n([3, 1, 3, 1, -5, -5],-4),-3)),5),1)",
    "io_inp": [
      3,
      1,
      3,
      1,
      -5,
      -5
    ],
    "io_out": [
      115
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(mul_n(input,-4),-3)),5),1)"
  },
  {
    "input": "input : list = [3, -1, 1, -2, -3, -5]\noutput : list = [-20, -12, -8, -4, 4, 12]",
    "output": "generated_output : list = mul_n(sort_asc([3, -1, 1, -2, -3, -5]),4)",
    "io_inp": [
      3,
      -1,
      1,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -20,
      -12,
      -8,
      -4,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-1, 3, -1, 4, -4]\noutput : list = [0, -12, -12, -28, -32]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(reverse([-1, 3, -1, 4, -4]),4))),-4)",
    "io_inp": [
      -1,
      3,
      -1,
      4,
      -4
    ],
    "io_out": [
      0,
      -12,
      -12,
      -28,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(reverse(input),4))),-4)"
  },
  {
    "input": "input : list = [2, 2, -3, -3]\noutput : list = [4, 4, -1, -1]",
    "output": "generated_output : list = add_n(sub_n([2, 2, -3, -3],1),3)",
    "io_inp": [
      2,
      2,
      -3,
      -3
    ],
    "io_out": [
      4,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),3)"
  },
  {
    "input": "input : list = [4, -1, -2, 1]\noutput : list = [11, 6, 5, 8]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sub_n([4, -1, -2, 1],-3),11),-2),-2),25)",
    "io_inp": [
      4,
      -1,
      -2,
      1
    ],
    "io_out": [
      11,
      6,
      5,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sub_n(input,-3),11),-2),-2),25)"
  },
  {
    "input": "input : list = [-4, 3, -5, 1]\noutput : list = [-9, -2, -10, -4]",
    "output": "generated_output : list = take(take(sub_n([-4, 3, -5, 1],5),8),6)",
    "io_inp": [
      -4,
      3,
      -5,
      1
    ],
    "io_out": [
      -9,
      -2,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,5),8),6)"
  },
  {
    "input": "input : list = [2, -2, -1, -2]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(drop([2, -2, -1, -2],1)))))",
    "io_inp": [
      2,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [-4, 3, -4]",
    "output": "generated_output : list = sub_n(sub_n([-2, 5, -2],-2),4)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      -4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),4)"
  },
  {
    "input": "input : list = [3, -4, -1, 2, 0, 4]\noutput : list = [40, 4, -8, -32, -44, -56]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n([3, -4, -1, 2, 0, 4],3),-2),-4))",
    "io_inp": [
      3,
      -4,
      -1,
      2,
      0,
      4
    ],
    "io_out": [
      40,
      4,
      -8,
      -32,
      -44,
      -56
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(input,3),-2),-4))"
  },
  {
    "input": "input : list = [1, -2, -2, 4]\noutput : list = [9, 6, 3, 3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(reverse([1, -2, -2, 4])),2),-3))",
    "io_inp": [
      1,
      -2,
      -2,
      4
    ],
    "io_out": [
      9,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(reverse(input)),2),-3))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(add_n([2, -1],-1),3)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),3)"
  },
  {
    "input": "input : list = [-4, 4, -2, -5]\noutput : list = [60, -30, -60, -75]",
    "output": "generated_output : list = mul_n(mul_n(take(take(sort_des([-4, 4, -2, -5]),22),10),3),5)",
    "io_inp": [
      -4,
      4,
      -2,
      -5
    ],
    "io_out": [
      60,
      -30,
      -60,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(sort_des(input),22),10),3),5)"
  },
  {
    "input": "input : list = [4, 4, 0]\noutput : list = [-7, -7, 5]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(mul_n([4, 4, 0],-3))),35),5)",
    "io_inp": [
      4,
      4,
      0
    ],
    "io_out": [
      -7,
      -7,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(mul_n(input,-3))),35),5)"
  },
  {
    "input": "input : list = [-3, -3, -2, 2, 1]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(take([-3, -3, -2, 2, 1],1),2),-2),3))",
    "io_inp": [
      -3,
      -3,
      -2,
      2,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(take(input,1),2),-2),3))"
  },
  {
    "input": "input : list = [5, -5, 3, 3, 5, -2]\noutput : list = [-5, 5]",
    "output": "generated_output : list = mul_n(drop(take(reverse(mul_n([5, -5, 3, 3, 5, -2],1)),28),4),1)",
    "io_inp": [
      5,
      -5,
      3,
      3,
      5,
      -2
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(reverse(mul_n(input,1)),28),4),1)"
  },
  {
    "input": "input : list = [5, -1, -2, 0]\noutput : list = [7]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(take([5, -1, -2, 0],1),20),1),1),2)",
    "io_inp": [
      5,
      -1,
      -2,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(take(input,1),20),1),1),2)"
  },
  {
    "input": "input : list = [-3, -1, -4, 4, 2, 0]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(take([-3, -1, -4, 4, 2, 0],1),-1)",
    "io_inp": [
      -3,
      -1,
      -4,
      4,
      2,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [-1, 2, 0, 1, 5, -3]\noutput : list = [-3, -1, 0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([-1, 2, 0, 1, 5, -3])",
    "io_inp": [
      -1,
      2,
      0,
      1,
      5,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2, 2, 1]\noutput : list = [0, -3, 1]",
    "output": "generated_output : list = reverse(add_n(drop(reverse(sub_n([1, -2, 2, 1],-1)),1),-2))",
    "io_inp": [
      1,
      -2,
      2,
      1
    ],
    "io_out": [
      0,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(reverse(sub_n(input,-1)),1),-2))"
  },
  {
    "input": "input : list = [-3, 5, 1, 2, -2]\noutput : list = [0, -3, -4, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des([-3, 5, 1, 2, -2]),5)",
    "io_inp": [
      -3,
      5,
      1,
      2,
      -2
    ],
    "io_out": [
      0,
      -3,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [1, -2, -1, -1, 3, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(drop(sub_n(mul_n([1, -2, -1, -1, 3, -2],-2),5),5),45),32)",
    "io_inp": [
      1,
      -2,
      -1,
      -1,
      3,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(drop(sub_n(mul_n(input,-2),5),5),45),32)"
  },
  {
    "input": "input : list = [2, 2, 1, -4]\noutput : list = [-5, 0, 1, 1]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse([2, 2, 1, -4]),1)),23)",
    "io_inp": [
      2,
      2,
      1,
      -4
    ],
    "io_out": [
      -5,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(input),1)),23)"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sub_n(add_n(drop(sort_asc([2, -4, 4]),2),-3),3))",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(drop(sort_asc(input),2),-3),3))"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [0, -4, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(mul_n([-1, 0, -1],2)))),2)",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(mul_n(input,2)))),2)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-10, -1]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse([-2, -5]),12),3),-5)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -10,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(input),12),3),-5)"
  },
  {
    "input": "input : list = [1, 0, 5, -2, 3, -4]\noutput : list = [-2, 1, -14, 7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(take([1, 0, 5, -2, 3, -4],4),8),-3),3),-4)",
    "io_inp": [
      1,
      0,
      5,
      -2,
      3,
      -4
    ],
    "io_out": [
      -2,
      1,
      -14,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(take(input,4),8),-3),3),-4)"
  },
  {
    "input": "input : list = [-1, 0, 0, -4]\noutput : list = [0, 0, -1, -4]",
    "output": "generated_output : list = sort_des([-1, 0, 0, -4])",
    "io_inp": [
      -1,
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, -5, -5, 2, -5]\noutput : list = [-8, -8, -8, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(sort_asc([3, 5, -5, -5, 2, -5]),-1),2)))",
    "io_inp": [
      3,
      5,
      -5,
      -5,
      2,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(sort_asc(input),-1),2)))"
  },
  {
    "input": "input : list = [-2, 1, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([-2, 1, -3, -3],2)",
    "io_inp": [
      -2,
      1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 2, -4, 2, -5, -4]\noutput : list = [-18, -16, -16, -4, -4, -2]",
    "output": "generated_output : list = mul_n(take(take(add_n(sort_asc([3, 2, -4, 2, -5, -4]),-4),20),38),2)",
    "io_inp": [
      3,
      2,
      -4,
      2,
      -5,
      -4
    ],
    "io_out": [
      -18,
      -16,
      -16,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(sort_asc(input),-4),20),38),2)"
  },
  {
    "input": "input : list = [-1, -1, -5, -5, 2, -5]\noutput : list = [-25, -25]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(take([-1, -1, -5, -5, 2, -5],2)),-5),-5))",
    "io_inp": [
      -1,
      -1,
      -5,
      -5,
      2,
      -5
    ],
    "io_out": [
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(take(input,2)),-5),-5))"
  },
  {
    "input": "input : list = [0, 1, 3, 0]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sub_n(take([0, 1, 3, 0],1),4))",
    "io_inp": [
      0,
      1,
      3,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,1),4))"
  },
  {
    "input": "input : list = [4, -4, 0]\noutput : list = [-4, 4, 0]",
    "output": "generated_output : list = mul_n([4, -4, 0],-1)",
    "io_inp": [
      4,
      -4,
      0
    ],
    "io_out": [
      -4,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -4, -1, -2]\noutput : list = [2, 4, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(mul_n([-4, -4, -1, -2],2)),-1)))",
    "io_inp": [
      -4,
      -4,
      -1,
      -2
    ],
    "io_out": [
      2,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(mul_n(input,2)),-1)))"
  },
  {
    "input": "input : list = [5, -1, 2, -2, -3, 2]\noutput : list = [10, 4]",
    "output": "generated_output : list = take(sub_n(take([5, -1, 2, -2, -3, 2],2),-5),5)",
    "io_inp": [
      5,
      -1,
      2,
      -2,
      -3,
      2
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,2),-5),5)"
  },
  {
    "input": "input : list = [-1, 0, 3, 4, -4]\noutput : list = [4, 3, 0, -1, -4]",
    "output": "generated_output : list = sort_des([-1, 0, 3, 4, -4])",
    "io_inp": [
      -1,
      0,
      3,
      4,
      -4
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [-7, -5, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des([4, -4, -2]),1),3)))",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des(input),1),3)))"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [4, -2, -3]",
    "output": "generated_output : list = sort_des([4, -2, -3])",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, -5, -1, 5, 1]\noutput : list = [206, 186, 6, 86, 206, 126]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(sub_n([5, 4, -5, -1, 5, 1],-5),5),-1),4),2)",
    "io_inp": [
      5,
      4,
      -5,
      -1,
      5,
      1
    ],
    "io_out": [
      206,
      186,
      6,
      86,
      206,
      126
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(sub_n(input,-5),5),-1),4),2)"
  },
  {
    "input": "input : list = [1, 0, 3, -3, -5, -3]\noutput : list = [1, 0, 3, -3]",
    "output": "generated_output : list = take([1, 0, 3, -3, -5, -3],4)",
    "io_inp": [
      1,
      0,
      3,
      -3,
      -5,
      -3
    ],
    "io_out": [
      1,
      0,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [6]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(take([2, 3, 1],1)),12),-4))",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(take(input,1)),12),-4))"
  },
  {
    "input": "input : list = [-1, -2, 3, 3, 2, 4]\noutput : list = [8, 4, -8, -12, -12, -16]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(mul_n([-1, -2, 3, 3, 2, 4],-4)))),46)",
    "io_inp": [
      -1,
      -2,
      3,
      3,
      2,
      4
    ],
    "io_out": [
      8,
      4,
      -8,
      -12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(mul_n(input,-4)))),46)"
  },
  {
    "input": "input : list = [4, -2, -2, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take([4, -2, -2, -2],1)))))",
    "io_inp": [
      4,
      -2,
      -2,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-5, -5, 3, -5]\noutput : list = [-11, -11, -3, -11]",
    "output": "generated_output : list = add_n(sub_n([-5, -5, 3, -5],4),-2)",
    "io_inp": [
      -5,
      -5,
      3,
      -5
    ],
    "io_out": [
      -11,
      -11,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-2)"
  },
  {
    "input": "input : list = [0, 2, -5, -1]\noutput : list = [10, 0, -5, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(sort_asc([0, 2, -5, -1]))),5))",
    "io_inp": [
      0,
      2,
      -5,
      -1
    ],
    "io_out": [
      10,
      0,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-4, 1, -5, 0]\noutput : list = [4, -1, 5, 0]",
    "output": "generated_output : list = mul_n([-4, 1, -5, 0],-1)",
    "io_inp": [
      -4,
      1,
      -5,
      0
    ],
    "io_out": [
      4,
      -1,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 0, -1, 2]\noutput : list = [5, 6, 5, 8]",
    "output": "generated_output : list = add_n(add_n([-1, 0, -1, 2],5),1)",
    "io_inp": [
      -1,
      0,
      -1,
      2
    ],
    "io_out": [
      5,
      6,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),1)"
  },
  {
    "input": "input : list = [3, 4, 5, -1, 3, -3]\noutput : list = [-20, -16, -12, -12, 4, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([3, 4, 5, -1, 3, -3])),-4)",
    "io_inp": [
      3,
      4,
      5,
      -1,
      3,
      -3
    ],
    "io_out": [
      -20,
      -16,
      -12,
      -12,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [4, -1, 4, -4, 4, 2]\noutput : list = [34, 19]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(take([4, -1, 4, -4, 4, 2],2),-3),-4),3),-1)",
    "io_inp": [
      4,
      -1,
      4,
      -4,
      4,
      2
    ],
    "io_out": [
      34,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(take(input,2),-3),-4),3),-1)"
  },
  {
    "input": "input : list = [1, 4, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_des(drop([1, 4, 3, 3],2))",
    "io_inp": [
      1,
      4,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [0, -1, 4, 0, 4]\noutput : list = [32, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(drop([0, -1, 4, 0, 4],3),-4))),-2)",
    "io_inp": [
      0,
      -1,
      4,
      0,
      4
    ],
    "io_out": [
      32,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(drop(input,3),-4))),-2)"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [-50, 40, -40]",
    "output": "generated_output : list = mul_n(mul_n([5, -4, 4],-2),5)",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      -50,
      40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),5)"
  },
  {
    "input": "input : list = [-3, -3, 4, -2, -3]\noutput : list = [-3, -2, 4]",
    "output": "generated_output : list = take(reverse(drop([-3, -3, 4, -2, -3],2)),27)",
    "io_inp": [
      -3,
      -3,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(drop(input,2)),27)"
  },
  {
    "input": "input : list = [-2, 5, 2, -5, -5, 1]\noutput : list = [-10, -10, -4, 2, 4, 10]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc([-2, 5, 2, -5, -5, 1]),2))),36)",
    "io_inp": [
      -2,
      5,
      2,
      -5,
      -5,
      1
    ],
    "io_out": [
      -10,
      -10,
      -4,
      2,
      4,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc(input),2))),36)"
  },
  {
    "input": "input : list = [-1, 3, 4, 4, -3, 4]\noutput : list = [-4, -11, -4, -4, -5, -9]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(add_n([-1, 3, 4, 4, -3, 4],-2)),5),-5),-4)",
    "io_inp": [
      -1,
      3,
      4,
      4,
      -3,
      4
    ],
    "io_out": [
      -4,
      -11,
      -4,
      -4,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(add_n(input,-2)),5),-5),-4)"
  },
  {
    "input": "input : list = [3, -1, 2, -5, -2, 3]\noutput : list = [0, -5, -8, -1, -4, 0]",
    "output": "generated_output : list = reverse(sub_n([3, -1, 2, -5, -2, 3],3))",
    "io_inp": [
      3,
      -1,
      2,
      -5,
      -2,
      3
    ],
    "io_out": [
      0,
      -5,
      -8,
      -1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [4, 1, 6]",
    "output": "generated_output : list = take(sub_n([0, -3, 2],-4),8)",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      4,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),8)"
  },
  {
    "input": "input : list = [-5, -3, -4]\noutput : list = [-9, -6, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sub_n([-5, -3, -4],-2)))),3)",
    "io_inp": [
      -5,
      -3,
      -4
    ],
    "io_out": [
      -9,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sub_n(input,-2)))),3)"
  },
  {
    "input": "input : list = [5, -5, -4, -4, 4, -2]\noutput : list = [-4, -2, -2, 2, 14, 16]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n([5, -5, -4, -4, 4, -2],5)),-4),2),2)",
    "io_inp": [
      5,
      -5,
      -4,
      -4,
      4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      2,
      14,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n(input,5)),-4),2),2)"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [4, 0, 8]",
    "output": "generated_output : list = sub_n(add_n(sub_n(add_n(sub_n([0, -4, 4],1),2),-3),1),1)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      4,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(add_n(sub_n(input,1),2),-3),1),1)"
  },
  {
    "input": "input : list = [-2, 1, 3, -3, -1]\noutput : list = [45, 30, 15, -15, -45]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n([-2, 1, 3, -3, -1],-5))),3))",
    "io_inp": [
      -2,
      1,
      3,
      -3,
      -1
    ],
    "io_out": [
      45,
      30,
      15,
      -15,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n(input,-5))),3))"
  },
  {
    "input": "input : list = [-4, -5, 3, -3, 4, -5]\noutput : list = [4, 3, -3, -4, -5, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse([-4, -5, 3, -3, 4, -5]))),25)",
    "io_inp": [
      -4,
      -5,
      3,
      -3,
      4,
      -5
    ],
    "io_out": [
      4,
      3,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(input))),25)"
  },
  {
    "input": "input : list = [-2, -4, -2, -4, 2, 3]\noutput : list = [-3, -9]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(take([-2, -4, -2, -4, 2, 3],2),-1)),3))",
    "io_inp": [
      -2,
      -4,
      -2,
      -4,
      2,
      3
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(take(input,2),-1)),3))"
  },
  {
    "input": "input : list = [2, 4, 5, 5, 2, -3]\noutput : list = [-14, 6, 6, 14, 18, 18]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des([2, 4, 5, 5, 2, -3]),2),2)),-2)",
    "io_inp": [
      2,
      4,
      5,
      5,
      2,
      -3
    ],
    "io_out": [
      -14,
      6,
      6,
      14,
      18,
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des(input),2),2)),-2)"
  },
  {
    "input": "input : list = [2, -1, -2, 5, -4]\noutput : list = [72, 36, 18, -36, -90]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc([2, -1, -2, 5, -4]),-2),3),3)",
    "io_inp": [
      2,
      -1,
      -2,
      5,
      -4
    ],
    "io_out": [
      72,
      36,
      18,
      -36,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(input),-2),3),3)"
  },
  {
    "input": "input : list = [4, -3, -2, -2, 2]\noutput : list = [3, -1, -1, -2, 5]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(sub_n([4, -3, -2, -2, 2],1),3),22),1))",
    "io_inp": [
      4,
      -3,
      -2,
      -2,
      2
    ],
    "io_out": [
      3,
      -1,
      -1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(sub_n(input,1),3),22),1))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [28, -8]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n([-5, 4],1),1)),-4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      28,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(input,1),1)),-4)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [8, 5, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(sort_des([3, -3, 0]),15),-5)))",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      8,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(sort_des(input),15),-5)))"
  },
  {
    "input": "input : list = [-1, -3, -3, 3, -2]\noutput : list = [8, 4, 3, 2, 2]",
    "output": "generated_output : list = sort_des(add_n([-1, -3, -3, 3, -2],5))",
    "io_inp": [
      -1,
      -3,
      -3,
      3,
      -2
    ],
    "io_out": [
      8,
      4,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [20, -5]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(sort_des([1, 0]),7),-5),-5),-5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      20,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(sort_des(input),7),-5),-5),-5)"
  },
  {
    "input": "input : list = [2, 3, 3, 4, -4]\noutput : list = [2, 3]",
    "output": "generated_output : list = take([2, 3, 3, 4, -4],2)",
    "io_inp": [
      2,
      3,
      3,
      4,
      -4
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -4, 1, 0]\noutput : list = [-1, 0, -5, 4]",
    "output": "generated_output : list = reverse(sub_n([5, -4, 1, 0],1))",
    "io_inp": [
      5,
      -4,
      1,
      0
    ],
    "io_out": [
      -1,
      0,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [-5, 4, -5, 2, -4, -2]\noutput : list = [-5, 4, -5]",
    "output": "generated_output : list = take(take(take(reverse(reverse([-5, 4, -5, 2, -4, -2])),30),26),3)",
    "io_inp": [
      -5,
      4,
      -5,
      2,
      -4,
      -2
    ],
    "io_out": [
      -5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(reverse(input)),30),26),3)"
  },
  {
    "input": "input : list = [-1, -3, -2, -5, 4]\noutput : list = [-5, -3, -2, -1, 4]",
    "output": "generated_output : list = sort_asc([-1, -3, -2, -5, 4])",
    "io_inp": [
      -1,
      -3,
      -2,
      -5,
      4
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, -5, -3]\noutput : list = [-1, 1, 8, 9]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(sort_asc([5, 4, -5, -3]),-4)),15))",
    "io_inp": [
      5,
      4,
      -5,
      -3
    ],
    "io_out": [
      -1,
      1,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(sort_asc(input),-4)),15))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [9, 0]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(reverse([5, -4])),-2),18),2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(reverse(input)),-2),18),2)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [8, 4, -12]",
    "output": "generated_output : list = mul_n([-2, -1, 3],-4)",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      8,
      4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 3, -2, 5, 4, -2]\noutput : list = [5, 4, 3, -1, -2, -2]",
    "output": "generated_output : list = sort_des([-1, 3, -2, 5, 4, -2])",
    "io_inp": [
      -1,
      3,
      -2,
      5,
      4,
      -2
    ],
    "io_out": [
      5,
      4,
      3,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(sub_n([4, 3],2))),2))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(sub_n(input,2))),2))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(sort_asc([-2, -5]))),-2),25)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(sort_asc(input))),-2),25)"
  },
  {
    "input": "input : list = [4, -1, 5, -1]\noutput : list = [16]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(take([4, -1, 5, -1],1)),1)),4)",
    "io_inp": [
      4,
      -1,
      5,
      -1
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(take(input,1)),1)),4)"
  },
  {
    "input": "input : list = [5, 1, 0, -2, 2, 2]\noutput : list = [3, 5, 6, 7, 10]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(reverse([5, 1, 0, -2, 2, 2])),5),5))",
    "io_inp": [
      5,
      1,
      0,
      -2,
      2,
      2
    ],
    "io_out": [
      3,
      5,
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(reverse(input)),5),5))"
  },
  {
    "input": "input : list = [4, -4, 4, -1, -3]\noutput : list = [12, 4, 12]",
    "output": "generated_output : list = reverse(take(take(add_n(sub_n([4, -4, 4, -1, -3],-3),5),3),21))",
    "io_inp": [
      4,
      -4,
      4,
      -1,
      -3
    ],
    "io_out": [
      12,
      4,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(sub_n(input,-3),5),3),21))"
  },
  {
    "input": "input : list = [3, -5, -4, 0, 5]\noutput : list = [3, 2, -2, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(reverse([3, -5, -4, 0, 5]),-1),13)),2)",
    "io_inp": [
      3,
      -5,
      -4,
      0,
      5
    ],
    "io_out": [
      3,
      2,
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(reverse(input),-1),13)),2)"
  },
  {
    "input": "input : list = [-1, 2, 0, 1, -3]\noutput : list = [-7, -4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(take([-1, 2, 0, 1, -3],2)),-5)),-1)",
    "io_inp": [
      -1,
      2,
      0,
      1,
      -3
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(take(input,2)),-5)),-1)"
  },
  {
    "input": "input : list = [1, -3, -4, 2, 0]\noutput : list = [-7, -6, -3, -2, -1]",
    "output": "generated_output : list = take(take(add_n(sort_asc([1, -3, -4, 2, 0]),-3),13),32)",
    "io_inp": [
      1,
      -3,
      -4,
      2,
      0
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(input),-3),13),32)"
  },
  {
    "input": "input : list = [4, 2, -5, -2, 4]\noutput : list = [5, -1, -4, 3, 5]",
    "output": "generated_output : list = reverse(take(sub_n([4, 2, -5, -2, 4],-1),16))",
    "io_inp": [
      4,
      2,
      -5,
      -2,
      4
    ],
    "io_out": [
      5,
      -1,
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-1),16))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-13, 11]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n([4, -4],3)),1),1)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -13,
      11
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(input,3)),1),1)"
  },
  {
    "input": "input : list = [5, -3, -5, 5, -5]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(drop([5, -3, -5, 5, -5],1),2),3),1))",
    "io_inp": [
      5,
      -3,
      -5,
      5,
      -5
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(drop(input,1),2),3),1))"
  },
  {
    "input": "input : list = [-2, -2, -5, -5, -5, -3]\noutput : list = [-2, -2, -3, -5, -5, -5]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_asc([-2, -2, -5, -5, -5, -3]))),4),-4)",
    "io_inp": [
      -2,
      -2,
      -5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_asc(input))),4),-4)"
  },
  {
    "input": "input : list = [0, 0, -3, -4, 3, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n(drop([0, 0, -3, -4, 3, 3],4),-3)),1)",
    "io_inp": [
      0,
      0,
      -3,
      -4,
      3,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(drop(input,4),-3)),1)"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(take([0, 3, -1],1),2)",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),2)"
  },
  {
    "input": "input : list = [-1, 0, -1, 0, -3]\noutput : list = [1, 0, 0, -2]",
    "output": "generated_output : list = take(take(drop(sub_n(sort_des([-1, 0, -1, 0, -3]),-1),1),43),52)",
    "io_inp": [
      -1,
      0,
      -1,
      0,
      -3
    ],
    "io_out": [
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(drop(sub_n(sort_des(input),-1),1),43),52)"
  },
  {
    "input": "input : list = [-3, 1, -5, -4, 5]\noutput : list = [22, 10, -2, -5, -8]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(mul_n([-3, 1, -5, -4, 5],3)),5),2),48)",
    "io_inp": [
      -3,
      1,
      -5,
      -4,
      5
    ],
    "io_out": [
      22,
      10,
      -2,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(mul_n(input,3)),5),2),48)"
  },
  {
    "input": "input : list = [-4, -2, -5, 1, 2]\noutput : list = [3, 2, -1, -3, -4]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(add_n([-4, -2, -5, 1, 2],-2)),-4),1))",
    "io_inp": [
      -4,
      -2,
      -5,
      1,
      2
    ],
    "io_out": [
      3,
      2,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(add_n(input,-2)),-4),1))"
  },
  {
    "input": "input : list = [5, -1, -3]\noutput : list = [-15, 3, 9]",
    "output": "generated_output : list = mul_n([5, -1, -3],-3)",
    "io_inp": [
      5,
      -1,
      -3
    ],
    "io_out": [
      -15,
      3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n(add_n(sub_n([0, 5],-1),-1),-2)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,-1),-1),-2)"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [0, 2, -3]",
    "output": "generated_output : list = add_n([3, 5, 0],-3)",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      0,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -4, -2, 2]\noutput : list = [10, 2, -2, -2]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse([-4, -4, -2, 2]),-3)),2)",
    "io_inp": [
      -4,
      -4,
      -2,
      2
    ],
    "io_out": [
      10,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(input),-3)),2)"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(drop([-3, 0, 0],1),3),-2),-4))",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(drop(input,1),3),-2),-4))"
  },
  {
    "input": "input : list = [4, -3, 2, -1, 4, 3]\noutput : list = [9, 13, -7, 5, -15, 13]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(mul_n([4, -3, 2, -1, 4, 3],4),2),5)),32)",
    "io_inp": [
      4,
      -3,
      2,
      -1,
      4,
      3
    ],
    "io_out": [
      9,
      13,
      -7,
      5,
      -15,
      13
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(mul_n(input,4),2),5)),32)"
  },
  {
    "input": "input : list = [4, 2, 0, 4]\noutput : list = [6, 6, 4, 2]",
    "output": "generated_output : list = take(sort_des(add_n([4, 2, 0, 4],2)),12)",
    "io_inp": [
      4,
      2,
      0,
      4
    ],
    "io_out": [
      6,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,2)),12)"
  },
  {
    "input": "input : list = [-2, -5, 2, 3]\noutput : list = [4, 3, -1, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_asc([-2, -5, 2, 3]))),3),-2)",
    "io_inp": [
      -2,
      -5,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_asc(input))),3),-2)"
  },
  {
    "input": "input : list = [-2, -2, -1, -4]\noutput : list = [2, 1, 1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(reverse([-2, -2, -1, -4]),3))))",
    "io_inp": [
      -2,
      -2,
      -1,
      -4
    ],
    "io_out": [
      2,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [0, 1, 4, 1, 4]\noutput : list = [2, 2, 8, 8]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(drop([0, 1, 4, 1, 4],1)),6),28),2)",
    "io_inp": [
      0,
      1,
      4,
      1,
      4
    ],
    "io_out": [
      2,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(drop(input,1)),6),28),2)"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [8, 8, 7]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(reverse([2, 3, 3]))),-5),30)",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      8,
      8,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(reverse(input))),-5),30)"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [0, -3, -9]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(sort_des([4, -5, 1]),-4))),32)",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(sort_des(input),-4))),32)"
  },
  {
    "input": "input : list = [-5, 0, 0, 2]\noutput : list = [-5, 0, 0, 2]",
    "output": "generated_output : list = sort_asc([-5, 0, 0, 2])",
    "io_inp": [
      -5,
      0,
      0,
      2
    ],
    "io_out": [
      -5,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2, 3]\noutput : list = [-54, -48, -18]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(add_n([-3, 2, 3],5),1)),2),-3)",
    "io_inp": [
      -3,
      2,
      3
    ],
    "io_out": [
      -54,
      -48,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(add_n(input,5),1)),2),-3)"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [5, 1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(reverse([1, -5, 5])))))",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      5,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [3, 1, -3, -4, -5]\noutput : list = [0, -4, -8, -24, -32]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sort_asc([3, 1, -3, -4, -5]),-5),-4)))",
    "io_inp": [
      3,
      1,
      -3,
      -4,
      -5
    ],
    "io_out": [
      0,
      -4,
      -8,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sort_asc(input),-5),-4)))"
  },
  {
    "input": "input : list = [-1, 1, -5, 4, 5]\noutput : list = [-7, -3, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sort_asc([-1, 1, -5, 4, 5]))),-2))",
    "io_inp": [
      -1,
      1,
      -5,
      4,
      5
    ],
    "io_out": [
      -7,
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-4, -5, 3, -1, 0, 5]\noutput : list = [-9, -10, -2, -6, -5, 0]",
    "output": "generated_output : list = take(add_n([-4, -5, 3, -1, 0, 5],-5),8)",
    "io_inp": [
      -4,
      -5,
      3,
      -1,
      0,
      5
    ],
    "io_out": [
      -9,
      -10,
      -2,
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),8)"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [4, 1, -2]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n([5, 2, -1],-1)))),1)",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n(input,-1)))),1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(sort_asc([3, 2]),6)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),6)"
  },
  {
    "input": "input : list = [-2, 1, -4, -5, -1]\noutput : list = [-4, -5, -1]",
    "output": "generated_output : list = drop([-2, 1, -4, -5, -1],2)",
    "io_inp": [
      -2,
      1,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 4, -4, -4, -3]\noutput : list = [3, 2, -4, -5, -5]",
    "output": "generated_output : list = add_n(sort_des([3, 4, -4, -4, -3]),-1)",
    "io_inp": [
      3,
      4,
      -4,
      -4,
      -3
    ],
    "io_out": [
      3,
      2,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [4, -5, -2, 0]\noutput : list = [-5, -7]",
    "output": "generated_output : list = take(sub_n(sort_des(drop([4, -5, -2, 0],2)),5),14)",
    "io_inp": [
      4,
      -5,
      -2,
      0
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(drop(input,2)),5),14)"
  },
  {
    "input": "input : list = [1, -3, -1, -5]\noutput : list = [-3, -1, -5]",
    "output": "generated_output : list = take(drop([1, -3, -1, -5],1),3)",
    "io_inp": [
      1,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),3)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-9, -16, -17]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(sort_asc([-5, -4, 3])),4),-5),-3)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -9,
      -16,
      -17
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(sort_asc(input)),4),-5),-3)"
  },
  {
    "input": "input : list = [5, 4, 1, 0, -3, 4]\noutput : list = [-2, 1, 2, 5, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(sub_n([5, 4, 1, 0, -3, 4],-4)),33),3))",
    "io_inp": [
      5,
      4,
      1,
      0,
      -3,
      4
    ],
    "io_out": [
      -2,
      1,
      2,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(sub_n(input,-4)),33),3))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 4]))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -5, 0, 2, 4]\noutput : list = [-4, -4, 1, 3, 5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(add_n([-5, -5, 0, 2, 4],1),4),-4),-1),1)",
    "io_inp": [
      -5,
      -5,
      0,
      2,
      4
    ],
    "io_out": [
      -4,
      -4,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(add_n(input,1),4),-4),-1),1)"
  },
  {
    "input": "input : list = [-1, -5, 5, -4]\noutput : list = [-7, -11]",
    "output": "generated_output : list = sub_n(sub_n(take([-1, -5, 5, -4],2),2),4)",
    "io_inp": [
      -1,
      -5,
      5,
      -4
    ],
    "io_out": [
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,2),2),4)"
  },
  {
    "input": "input : list = [5, 0, -3, 0, 1]\noutput : list = [-15, 0, 9, 0, -3]",
    "output": "generated_output : list = reverse(take(mul_n(take(reverse([5, 0, -3, 0, 1]),16),-3),20))",
    "io_inp": [
      5,
      0,
      -3,
      0,
      1
    ],
    "io_out": [
      -15,
      0,
      9,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(reverse(input),16),-3),20))"
  },
  {
    "input": "input : list = [-2, -2, -5, 1, -3]\noutput : list = [-4, -2, -1, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc([-2, -2, -5, 1, -3]),1)",
    "io_inp": [
      -2,
      -2,
      -5,
      1,
      -3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [5, -5, 3, 3, -1]\noutput : list = [-5, 5, -3, -3, 1]",
    "output": "generated_output : list = mul_n([5, -5, 3, 3, -1],-1)",
    "io_inp": [
      5,
      -5,
      3,
      3,
      -1
    ],
    "io_out": [
      -5,
      5,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [6, 9]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n([5, 2],-1)),5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(input,-1)),5))"
  },
  {
    "input": "input : list = [1, -4, 2, 1]\noutput : list = [-4, -5, -5, -10]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(add_n([1, -4, 2, 1],1),5))),-2)",
    "io_inp": [
      1,
      -4,
      2,
      1
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(add_n(input,1),5))),-2)"
  },
  {
    "input": "input : list = [3, 1, -3, -3, 5]\noutput : list = [-7, -7, 1, 5, 9]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(sort_des([3, 1, -3, -3, 5])),2),11),1)",
    "io_inp": [
      3,
      1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -7,
      -7,
      1,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(sort_des(input)),2),11),1)"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [2, -3, -1]",
    "output": "generated_output : list = add_n([4, -1, 1],-2)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -4, 3, 4, 0, 0]\noutput : list = [-5, -5, 11, 7, -21, 11]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n(reverse([4, -4, 3, 4, 0, 0]),4),-5),1),48)",
    "io_inp": [
      4,
      -4,
      3,
      4,
      0,
      0
    ],
    "io_out": [
      -5,
      -5,
      11,
      7,
      -21,
      11
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(reverse(input),4),-5),1),48)"
  },
  {
    "input": "input : list = [-1, 2, 2, 2, 3, 4]\noutput : list = [7, 3, -1, -1, -1, -13]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_des([-1, 2, 2, 2, 3, 4]),4)),-4),-5)",
    "io_inp": [
      -1,
      2,
      2,
      2,
      3,
      4
    ],
    "io_out": [
      7,
      3,
      -1,
      -1,
      -1,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_des(input),4)),-4),-5)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-10, 10]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(sort_asc([5, 0]),-2),1),4),-2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(sort_asc(input),-2),1),4),-2)"
  },
  {
    "input": "input : list = [3, 1, 3, -3, 1, -4]\noutput : list = [1, 2, 6, 6, 8, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n([3, 1, 3, -3, 1, -4],-5))))",
    "io_inp": [
      3,
      1,
      3,
      -3,
      1,
      -4
    ],
    "io_out": [
      1,
      2,
      6,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(input,-5))))"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [-5, 1, -1]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(add_n([-4, 2, 0],2),1),-3),15),1)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      -5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(add_n(input,2),1),-3),15),1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [10, 4]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(sort_des([5, -1]),-5))),17)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(sort_des(input),-5))),17)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [45, 50, 40]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(reverse([3, 5, 4]),-5),-3),-3),5)",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      45,
      50,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(reverse(input),-5),-3),-3),5)"
  },
  {
    "input": "input : list = [-3, 5, 1, -4, -5, -3]\noutput : list = [0, 1, 2, 2, 6, 10]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(reverse([-3, 5, 1, -4, -5, -3])),21),-5))",
    "io_inp": [
      -3,
      5,
      1,
      -4,
      -5,
      -3
    ],
    "io_out": [
      0,
      1,
      2,
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(reverse(input)),21),-5))"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(drop([1, 4, 1],1),-3),-1),3),29)",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(drop(input,1),-3),-1),3),29)"
  },
  {
    "input": "input : list = [3, -3, -4, -5, 1, 0]\noutput : list = [3, 1, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([3, -3, -4, -5, 1, 0]))",
    "io_inp": [
      3,
      -3,
      -4,
      -5,
      1,
      0
    ],
    "io_out": [
      3,
      1,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse([-2, -2]),-5),1),-2)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(input),-5),1),-2)"
  },
  {
    "input": "input : list = [2, 2, -5, 1]\noutput : list = [15, 15, 5, -55]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(mul_n([2, 2, -5, 1],-2),8),-5),5))",
    "io_inp": [
      2,
      2,
      -5,
      1
    ],
    "io_out": [
      15,
      15,
      5,
      -55
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(mul_n(input,-2),8),-5),5))"
  },
  {
    "input": "input : list = [4, -5, -4, -5, -4, 0]\noutput : list = [27, 27, 24, 24, 12, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sub_n([4, -5, -4, -5, -4, 0],3)),1)),-3)",
    "io_inp": [
      4,
      -5,
      -4,
      -5,
      -4,
      0
    ],
    "io_out": [
      27,
      27,
      24,
      24,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sub_n(input,3)),1)),-3)"
  },
  {
    "input": "input : list = [1, 2, 1, 4, -5]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(take([1, 2, 1, 4, -5],1),-2)",
    "io_inp": [
      1,
      2,
      1,
      4,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-4, 1, 0, 5, -2]\noutput : list = [10, 6, 5, 3, 1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(sort_des([-4, 1, 0, 5, -2]),12),-3),-4),2)",
    "io_inp": [
      -4,
      1,
      0,
      5,
      -2
    ],
    "io_out": [
      10,
      6,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(sort_des(input),12),-3),-4),2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(drop(sort_des([4, 2]),1),-2)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(input),1),-2)"
  },
  {
    "input": "input : list = [-3, -4, 2, -3, 0, 5]\noutput : list = [35, 25, 25, -5, -25, -55]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(mul_n([-3, -4, 2, -3, 0, 5],2)),1)),-5)",
    "io_inp": [
      -3,
      -4,
      2,
      -3,
      0,
      5
    ],
    "io_out": [
      35,
      25,
      25,
      -5,
      -25,
      -55
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(mul_n(input,2)),1)),-5)"
  },
  {
    "input": "input : list = [5, 5, 0]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 5, 0],1)",
    "io_inp": [
      5,
      5,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 2, 1]\noutput : list = [2, 1, -1, -4]",
    "output": "generated_output : list = sort_des([-1, -4, 2, 1])",
    "io_inp": [
      -1,
      -4,
      2,
      1
    ],
    "io_out": [
      2,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 4, -4]\noutput : list = [-5, 3]",
    "output": "generated_output : list = add_n(sort_asc(drop([0, 4, -4],1)),-1)",
    "io_inp": [
      0,
      4,
      -4
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [-2, 5, -3, 4]\noutput : list = [24, 16, -32, -40]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(mul_n([-2, 5, -3, 4],4),11),-2)))",
    "io_inp": [
      -2,
      5,
      -3,
      4
    ],
    "io_out": [
      24,
      16,
      -32,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(mul_n(input,4),11),-2)))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(sort_asc([-2, -3]))),1),2)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(sort_asc(input))),1),2)"
  },
  {
    "input": "input : list = [-4, -2, 4, -3]\noutput : list = [13, 5, -19, 9]",
    "output": "generated_output : list = sub_n(mul_n([-4, -2, 4, -3],-4),3)",
    "io_inp": [
      -4,
      -2,
      4,
      -3
    ],
    "io_out": [
      13,
      5,
      -19,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),3)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3, 3, -1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sort_des(take(take([5, 3, 3, -1],1),19)),4)",
    "io_inp": [
      5,
      3,
      3,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(input,1),19)),4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-10, 5]",
    "output": "generated_output : list = take(mul_n(sub_n(take(sub_n([4, 1],3),12),-1),-5),39)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -10,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(sub_n(input,3),12),-1),-5),39)"
  },
  {
    "input": "input : list = [-4, -5, 2, -3]\noutput : list = [4, -1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(sub_n([-4, -5, 2, -3],-5),3),20)))",
    "io_inp": [
      -4,
      -5,
      2,
      -3
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(sub_n(input,-5),3),20)))"
  },
  {
    "input": "input : list = [-4, -4, -5, 3, -1]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take(drop(sort_des([-4, -4, -5, 3, -1]),4),17))",
    "io_inp": [
      -4,
      -4,
      -5,
      3,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(drop(sort_des(input),4),17))"
  },
  {
    "input": "input : list = [-1, -1, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(drop([-1, -1, 3, 3],2))",
    "io_inp": [
      -1,
      -1,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-4, 1, -5, 0, -3]\noutput : list = [15, 12, 9, 0, -3]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(reverse([-4, 1, -5, 0, -3])),34),-3))",
    "io_inp": [
      -4,
      1,
      -5,
      0,
      -3
    ],
    "io_out": [
      15,
      12,
      9,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(reverse(input)),34),-3))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take(sort_asc([3, -3]),7)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [-2, 5, -1, 1]\noutput : list = [-16, -44]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(take([-2, 5, -1, 1],2),-5),14),-4),-4)",
    "io_inp": [
      -2,
      5,
      -1,
      1
    ],
    "io_out": [
      -16,
      -44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(take(input,2),-5),14),-4),-4)"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [10, 5, -20]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(mul_n([-3, -4, 2],-5),-5)),-5),5)",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      10,
      5,
      -20
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(mul_n(input,-5),-5)),-5),5)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [12, 14]",
    "output": "generated_output : list = take(sort_asc(add_n(take(sub_n([5, 3],-4),14),5)),22)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      12,
      14
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(sub_n(input,-4),14),5)),22)"
  },
  {
    "input": "input : list = [5, 3, 1, -4, 5, 0]\noutput : list = [-3, 1, 5, 15, -3, 7]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(sub_n([5, 3, 1, -4, 5, 0],2),-2),1),5),-3)",
    "io_inp": [
      5,
      3,
      1,
      -4,
      5,
      0
    ],
    "io_out": [
      -3,
      1,
      5,
      15,
      -3,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(sub_n(input,2),-2),1),5),-3)"
  },
  {
    "input": "input : list = [-3, -2, -4, -4, -3]\noutput : list = [-5, -7, -7, -9, -9]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_asc([-3, -2, -4, -4, -3]),2),-1)))",
    "io_inp": [
      -3,
      -2,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_asc(input),2),-1)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(sort_asc([-3, -3]))),2),37)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(sort_asc(input))),2),37)"
  },
  {
    "input": "input : list = [-1, 4, -3, 4]\noutput : list = [5, 5, 0, -2]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(sort_des([-1, 4, -3, 4]),5)),1),1)",
    "io_inp": [
      -1,
      4,
      -3,
      4
    ],
    "io_out": [
      5,
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(sort_des(input),5)),1),1)"
  },
  {
    "input": "input : list = [4, -1, 1, 5, 4, -2]\noutput : list = [-2, -1, 1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(reverse([4, -1, 1, 5, 4, -2]),1),1),42))",
    "io_inp": [
      4,
      -1,
      1,
      5,
      4,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(reverse(input),1),1),42))"
  },
  {
    "input": "input : list = [-1, -3, -4, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(add_n([-1, -3, -4, -3],5)),2),4))",
    "io_inp": [
      -1,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(add_n(input,5)),2),4))"
  },
  {
    "input": "input : list = [-5, -5, -4, -2, -1, 0]\noutput : list = [0, -3, -6, -12, -15]",
    "output": "generated_output : list = mul_n(sort_des(drop([-5, -5, -4, -2, -1, 0],1)),3)",
    "io_inp": [
      -5,
      -5,
      -4,
      -2,
      -1,
      0
    ],
    "io_out": [
      0,
      -3,
      -6,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,1)),3)"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [-9, -4, 11]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(sort_des([1, 2, -2])),-5)),1)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      -9,
      -4,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(sort_des(input)),-5)),1)"
  },
  {
    "input": "input : list = [2, 5, -2, -2]\noutput : list = [-2, -2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(sort_des([2, 5, -2, -2]),21))))",
    "io_inp": [
      2,
      5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(sort_des(input),21))))"
  },
  {
    "input": "input : list = [0, 4, -3, 2, 2, 4]\noutput : list = [4, 8, 1, 6, 6, 8]",
    "output": "generated_output : list = sub_n([0, 4, -3, 2, 2, 4],-4)",
    "io_inp": [
      0,
      4,
      -3,
      2,
      2,
      4
    ],
    "io_out": [
      4,
      8,
      1,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, -2, 1, 5]\noutput : list = [-2, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([0, -2, 1, 5])",
    "io_inp": [
      0,
      -2,
      1,
      5
    ],
    "io_out": [
      -2,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4, -3, -4]\noutput : list = [105, 105, 90, 15]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_des([2, -4, -3, -4]),-3),-5)),3)",
    "io_inp": [
      2,
      -4,
      -3,
      -4
    ],
    "io_out": [
      105,
      105,
      90,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_des(input),-3),-5)),3)"
  },
  {
    "input": "input : list = [-4, -2, 3, -2, -2, 0]\noutput : list = [7, 4, 2, 2, 2]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(drop([-4, -2, 3, -2, -2, 0],1),-4))))",
    "io_inp": [
      -4,
      -2,
      3,
      -2,
      -2,
      0
    ],
    "io_out": [
      7,
      4,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(drop(input,1),-4))))"
  },
  {
    "input": "input : list = [-2, 0, -1]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n([-2, 0, -1],-5)),-2),-5)",
    "io_inp": [
      -2,
      0,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(input,-5)),-2),-5)"
  },
  {
    "input": "input : list = [-5, 1, 0, 2, 1, 2]\noutput : list = [2, 2, 1, 0]",
    "output": "generated_output : list = take(sort_des(reverse(take(drop([-5, 1, 0, 2, 1, 2],2),8))),52)",
    "io_inp": [
      -5,
      1,
      0,
      2,
      1,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(drop(input,2),8))),52)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [6, 10]",
    "output": "generated_output : list = take(take(reverse(mul_n(sort_asc([-3, -5]),-2)),17),43)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(sort_asc(input),-2)),17),43)"
  },
  {
    "input": "input : list = [0, 1, -3, -2, -1]\noutput : list = [5, 10, 15, 20, 25]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(sub_n([0, 1, -3, -2, -1],2),-5))))",
    "io_inp": [
      0,
      1,
      -3,
      -2,
      -1
    ],
    "io_out": [
      5,
      10,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(sub_n(input,2),-5))))"
  },
  {
    "input": "input : list = [5, 3, 3, 1]\noutput : list = [1, 1, -5]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(drop([5, 3, 3, 1],1),3),1),3),-2)",
    "io_inp": [
      5,
      3,
      3,
      1
    ],
    "io_out": [
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(drop(input,1),3),1),3),-2)"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n([2, -1, 3],5),5)),28))",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n(input,5),5)),28))"
  },
  {
    "input": "input : list = [3, 4, 2, -5, -1, 3]\noutput : list = [4, 3, 3, 2, -1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(reverse([3, 4, 2, -5, -1, 3])))))",
    "io_inp": [
      3,
      4,
      2,
      -5,
      -1,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(drop(drop([2, 3, -3],1),1),4),-2),-3)",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(drop(drop(input,1),1),4),-2),-3)"
  },
  {
    "input": "input : list = [-2, 1, -3, 4, 0]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sub_n(take([-2, 1, -3, 4, 0],1),2))",
    "io_inp": [
      -2,
      1,
      -3,
      4,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,1),2))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [0, 8]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(add_n([-3, 5],-2),6))),-5)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(add_n(input,-2),6))),-5)"
  },
  {
    "input": "input : list = [4, 3, -3, 4]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take([4, 3, -3, 4],1),-1),3),2)",
    "io_inp": [
      4,
      3,
      -3,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(input,1),-1),3),2)"
  },
  {
    "input": "input : list = [-4, 4, 5, 0]\noutput : list = [14, -2, -18, -22]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(mul_n([-4, 4, 5, 0],-4),5),5),-2))",
    "io_inp": [
      -4,
      4,
      5,
      0
    ],
    "io_out": [
      14,
      -2,
      -18,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(mul_n(input,-4),5),5),-2))"
  },
  {
    "input": "input : list = [2, -1, -1, 3, -2]\noutput : list = [-10, 5, 5, -15, 10]",
    "output": "generated_output : list = mul_n([2, -1, -1, 3, -2],-5)",
    "io_inp": [
      2,
      -1,
      -1,
      3,
      -2
    ],
    "io_out": [
      -10,
      5,
      5,
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, -2, 2, 4]\noutput : list = [4, 2, 0, -2]",
    "output": "generated_output : list = sort_des(reverse([0, -2, 2, 4]))",
    "io_inp": [
      0,
      -2,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [16, 16, -2]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(sub_n([-2, -2, 4],1),1),-3)),4)",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      16,
      16,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(sub_n(input,1),1),-3)),4)"
  },
  {
    "input": "input : list = [-4, 2, 2, -5]\noutput : list = [35, 14, 14, 32]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sub_n([-4, 2, 2, -5],4),1),-3),5))",
    "io_inp": [
      -4,
      2,
      2,
      -5
    ],
    "io_out": [
      35,
      14,
      14,
      32
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sub_n(input,4),1),-3),5))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(sub_n([-1, -5],4),-5),3),3),-4)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(sub_n(input,4),-5),3),3),-4)"
  },
  {
    "input": "input : list = [-2, 1, -5, 3]\noutput : list = [11, 9, 6, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des([-2, 1, -5, 3]),-4)),-4)",
    "io_inp": [
      -2,
      1,
      -5,
      3
    ],
    "io_out": [
      11,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(input),-4)),-4)"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [-8, -5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(drop([0, 0, -3],1),-5))))",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(drop(input,1),-5))))"
  },
  {
    "input": "input : list = [5, 0, 2]\noutput : list = [-8, -6, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sort_asc([5, 0, 2])),3),5))",
    "io_inp": [
      5,
      0,
      2
    ],
    "io_out": [
      -8,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sort_asc(input)),3),5))"
  },
  {
    "input": "input : list = [-5, -3, 3, 4, 2]\noutput : list = [-6, -4, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(take([-5, -3, 3, 4, 2],3)),4),-1))",
    "io_inp": [
      -5,
      -3,
      3,
      4,
      2
    ],
    "io_out": [
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(take(input,3)),4),-1))"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [2, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(drop([0, 5, 0],1),2))),-3)",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(drop(input,1),2))),-3)"
  },
  {
    "input": "input : list = [-3, -1, 4, 1, 3, -3]\noutput : list = [0, 2, 4, 7]",
    "output": "generated_output : list = sort_asc(add_n(take([-3, -1, 4, 1, 3, -3],4),3))",
    "io_inp": [
      -3,
      -1,
      4,
      1,
      3,
      -3
    ],
    "io_out": [
      0,
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,4),3))"
  },
  {
    "input": "input : list = [0, 2, -4, -3, 4, 5]\noutput : list = [24, 48]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(take([0, 2, -4, -3, 4, 5],2),-2),4),3))",
    "io_inp": [
      0,
      2,
      -4,
      -3,
      4,
      5
    ],
    "io_out": [
      24,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(take(input,2),-2),4),3))"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [-8, 8, 12]",
    "output": "generated_output : list = mul_n(sort_des([2, -2, -3]),-4)",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      -8,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-1, 3, 4, 4, -5, 0]\noutput : list = [4, 4, -5, 0]",
    "output": "generated_output : list = drop([-1, 3, 4, 4, -5, 0],2)",
    "io_inp": [
      -1,
      3,
      4,
      4,
      -5,
      0
    ],
    "io_out": [
      4,
      4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 3, -4, -4]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(take([-1, 3, -4, -4],2),3)",
    "io_inp": [
      -1,
      3,
      -4,
      -4
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(take(input,2),3)"
  },
  {
    "input": "input : list = [-1, -2, 3, 5, -1]\noutput : list = [30, 0, 10, 35, 30]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-1, -2, 3, 5, -1],5)),-5)",
    "io_inp": [
      -1,
      -2,
      3,
      5,
      -1
    ],
    "io_out": [
      30,
      0,
      10,
      35,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,5)),-5)"
  },
  {
    "input": "input : list = [3, 1, 1, -5, -1, 2]\noutput : list = [5, 2, -2, 4, 4, 6]",
    "output": "generated_output : list = reverse(add_n([3, 1, 1, -5, -1, 2],3))",
    "io_inp": [
      3,
      1,
      1,
      -5,
      -1,
      2
    ],
    "io_out": [
      5,
      2,
      -2,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-1, 5, -5, -3]\noutput : list = [-25, 25, 15]",
    "output": "generated_output : list = mul_n(drop([-1, 5, -5, -3],1),-5)",
    "io_inp": [
      -1,
      5,
      -5,
      -3
    ],
    "io_out": [
      -25,
      25,
      15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sort_asc([-3, -1]),1),19)),1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sort_asc(input),1),19)),1)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-12, -4]",
    "output": "generated_output : list = reverse(take(reverse(reverse(mul_n([-1, -3],4))),20))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(mul_n(input,4))),20))"
  },
  {
    "input": "input : list = [3, 5, -3, 2, -2]\noutput : list = [5, 3, 2, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(reverse([3, 5, -3, 2, -2]),-1))),1)",
    "io_inp": [
      3,
      5,
      -3,
      2,
      -2
    ],
    "io_out": [
      5,
      3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(reverse(input),-1))),1)"
  },
  {
    "input": "input : list = [-5, 4, -3, 2]\noutput : list = [2, -3, 4, -5]",
    "output": "generated_output : list = reverse([-5, 4, -3, 2])",
    "io_inp": [
      -5,
      4,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [12, 0]",
    "output": "generated_output : list = mul_n([-3, 0],-4)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [8, 4]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(sub_n([-5, -4],-1)),5),4))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(sub_n(input,-1)),5),4))"
  },
  {
    "input": "input : list = [3, 5, -2, 3, 0]\noutput : list = [8, 10, 3]",
    "output": "generated_output : list = add_n(take(take([3, 5, -2, 3, 0],3),3),5)",
    "io_inp": [
      3,
      5,
      -2,
      3,
      0
    ],
    "io_out": [
      8,
      10,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(take(input,3),3),5)"
  },
  {
    "input": "input : list = [-4, 4, -1, -3]\noutput : list = [-8, 0]",
    "output": "generated_output : list = add_n(take([-4, 4, -1, -3],2),-4)",
    "io_inp": [
      -4,
      4,
      -1,
      -3
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [-5, 4, 0]\noutput : list = [-4, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(reverse([-5, 4, 0])),-1)))",
    "io_inp": [
      -5,
      4,
      0
    ],
    "io_out": [
      -4,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [3, -4, -2, 2, -5]\noutput : list = [8, 7, 3, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc([3, -4, -2, 2, -5])),5))",
    "io_inp": [
      3,
      -4,
      -2,
      2,
      -5
    ],
    "io_out": [
      8,
      7,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(input)),5))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [20, 20]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(mul_n([-1, -1],-1),3),5),9))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(mul_n(input,-1),3),5),9))"
  },
  {
    "input": "input : list = [3, 4, 3, -4, 1]\noutput : list = [-1, 4, 6, 6, 7]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([3, 4, 3, -4, 1],3)),1)",
    "io_inp": [
      3,
      4,
      3,
      -4,
      1
    ],
    "io_out": [
      -1,
      4,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,3)),1)"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [6, 4, -8]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(sort_asc([4, -2, 5])),2),4))",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      6,
      4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(sort_asc(input)),2),4))"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des([-1, -2, 5]),3)",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-5, -1, 4, 0, 4, 5]\noutput : list = [-23, -18, -18, 2, 7, 27]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(mul_n([-5, -1, 4, 0, 4, 5],-5),2))))",
    "io_inp": [
      -5,
      -1,
      4,
      0,
      4,
      5
    ],
    "io_out": [
      -23,
      -18,
      -18,
      2,
      7,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(mul_n(input,-5),2))))"
  },
  {
    "input": "input : list = [5, 5, 3, 1, 2]\noutput : list = [-2, -4, -6, -10, -10]",
    "output": "generated_output : list = mul_n(sort_asc([5, 5, 3, 1, 2]),-2)",
    "io_inp": [
      5,
      5,
      3,
      1,
      2
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-2, -5, -2, -5, -1]\noutput : list = [-14]",
    "output": "generated_output : list = sub_n(mul_n(take(drop(mul_n([-2, -5, -2, -5, -1],-3),4),26),-5),-1)",
    "io_inp": [
      -2,
      -5,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(drop(mul_n(input,-3),4),26),-5),-1)"
  },
  {
    "input": "input : list = [3, -3, -4, 3, 1]\noutput : list = [7, 1, 0, 7, 5]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(reverse([3, -3, -4, 3, 1]),1),27),-5))",
    "io_inp": [
      3,
      -3,
      -4,
      3,
      1
    ],
    "io_out": [
      7,
      1,
      0,
      7,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(reverse(input),1),27),-5))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = mul_n(reverse([4, -3]),1)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [1, -3, 1, 3, 1]\noutput : list = [3, -1, -1, -1, -3]",
    "output": "generated_output : list = reverse(mul_n(sort_des([1, -3, 1, 3, 1]),-1))",
    "io_inp": [
      1,
      -3,
      1,
      3,
      1
    ],
    "io_out": [
      3,
      -1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),-1))"
  },
  {
    "input": "input : list = [1, -4, -4, 1, -5, -4]\noutput : list = [4, 4, -1, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(reverse([1, -4, -4, 1, -5, -4]))),-3))",
    "io_inp": [
      1,
      -4,
      -4,
      1,
      -5,
      -4
    ],
    "io_out": [
      4,
      4,
      -1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-3, 1, -5, -1]\noutput : list = [1, -5, -1]",
    "output": "generated_output : list = drop([-3, 1, -5, -1],1)",
    "io_inp": [
      -3,
      1,
      -5,
      -1
    ],
    "io_out": [
      1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -4, -2, -3]\noutput : list = [-24]",
    "output": "generated_output : list = take(take(sub_n(mul_n(take([-5, -4, -2, -3],1),5),-1),27),1)",
    "io_inp": [
      -5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(take(input,1),5),-1),27),1)"
  },
  {
    "input": "input : list = [4, -2, 1, 5, 4, 0]\noutput : list = [0, 4, 5, 1, -2, 4]",
    "output": "generated_output : list = add_n(add_n(reverse([4, -2, 1, 5, 4, 0]),-3),3)",
    "io_inp": [
      4,
      -2,
      1,
      5,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      5,
      1,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),-3),3)"
  },
  {
    "input": "input : list = [0, 0, -5]\noutput : list = [0, 0, -15]",
    "output": "generated_output : list = reverse(mul_n(reverse([0, 0, -5]),3))",
    "io_inp": [
      0,
      0,
      -5
    ],
    "io_out": [
      0,
      0,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),3))"
  },
  {
    "input": "input : list = [5, -3, 1, -1, 2, 4]\noutput : list = [8, 2, -4, -7, -13, -16]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(add_n([5, -3, 1, -1, 2, 4],2)),-3)),-5)",
    "io_inp": [
      5,
      -3,
      1,
      -1,
      2,
      4
    ],
    "io_out": [
      8,
      2,
      -4,
      -7,
      -13,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(add_n(input,2)),-3)),-5)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(reverse([2, -1]))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(add_n([1, -2],-4))),4),-4)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(add_n(input,-4))),4),-4)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = sort_des([-1, 0, -5])",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3, 0, 2, -4]\noutput : list = [16, -4, -14, -19, -24]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(mul_n([4, 3, 0, 2, -4],-5)),25)),-4)",
    "io_inp": [
      4,
      3,
      0,
      2,
      -4
    ],
    "io_out": [
      16,
      -4,
      -14,
      -19,
      -24
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(mul_n(input,-5)),25)),-4)"
  },
  {
    "input": "input : list = [-3, -1, 5, -4, 3]\noutput : list = [-4, -6, -10, -12, -13]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_des([-3, -1, 5, -4, 3]),-3),-1),5))",
    "io_inp": [
      -3,
      -1,
      5,
      -4,
      3
    ],
    "io_out": [
      -4,
      -6,
      -10,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_des(input),-3),-1),5))"
  },
  {
    "input": "input : list = [5, 1, -1, 2, -1, -1]\noutput : list = [1, -3, -5, -2, -5, -5]",
    "output": "generated_output : list = sub_n([5, 1, -1, 2, -1, -1],4)",
    "io_inp": [
      5,
      1,
      -1,
      2,
      -1,
      -1
    ],
    "io_out": [
      1,
      -3,
      -5,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 4, 1, 4]\noutput : list = [-11, -5, -2, -2]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(sort_des([-5, 4, 1, 4]),-4),18),-2))",
    "io_inp": [
      -5,
      4,
      1,
      4
    ],
    "io_out": [
      -11,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(sort_des(input),-4),18),-2))"
  },
  {
    "input": "input : list = [4, 4, 1, -1, 4, -1]\noutput : list = [-9, -9, -7, -4, -4, -4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_asc([4, 4, 1, -1, 4, -1])),-4),5),-1)",
    "io_inp": [
      4,
      4,
      1,
      -1,
      4,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_asc(input)),-4),5),-1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-11, -10]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(sort_asc([-2, -1]),4)),4),-5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -11,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(sort_asc(input),4)),4),-5)"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = reverse([1, 1, 2])",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [13, -12, -22]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(mul_n([5, -2, 3],-5),-2),5),6))",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      13,
      -12,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(mul_n(input,-5),-2),5),6))"
  },
  {
    "input": "input : list = [-2, -1, -1, -5, -2]\noutput : list = [-7, -6, -6, -10, -7]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(sub_n([-2, -1, -1, -5, -2],4),2)),3))",
    "io_inp": [
      -2,
      -1,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(sub_n(input,4),2)),3))"
  },
  {
    "input": "input : list = [3, -5, -1, -3]\noutput : list = [-5, -1, -3]",
    "output": "generated_output : list = drop([3, -5, -1, -3],1)",
    "io_inp": [
      3,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 5, -3, -2]\noutput : list = [2, 1, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n([4, 5, -3, -2],-2),1))",
    "io_inp": [
      4,
      5,
      -3,
      -2
    ],
    "io_out": [
      2,
      1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-2),1))"
  },
  {
    "input": "input : list = [-2, -2, 3, -1, -4]\noutput : list = [1, 4]",
    "output": "generated_output : list = mul_n(sort_des(take(take(drop([-2, -2, 3, -1, -4],3),3),14)),-1)",
    "io_inp": [
      -2,
      -2,
      3,
      -1,
      -4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(drop(input,3),3),14)),-1)"
  },
  {
    "input": "input : list = [-1, -4, -5, 3, 3, -3]\noutput : list = [7, 7, 1]",
    "output": "generated_output : list = take(sub_n(sub_n(drop([-1, -4, -5, 3, 3, -3],3),1),-5),32)",
    "io_inp": [
      -1,
      -4,
      -5,
      3,
      3,
      -3
    ],
    "io_out": [
      7,
      7,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(drop(input,3),1),-5),32)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-17, 3]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(mul_n([-3, 2],4),4),-5),4),2)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -17,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(mul_n(input,4),4),-5),4),2)"
  },
  {
    "input": "input : list = [-2, 5, 4, -4]\noutput : list = [3, 10, 9, 1]",
    "output": "generated_output : list = add_n([-2, 5, 4, -4],5)",
    "io_inp": [
      -2,
      5,
      4,
      -4
    ],
    "io_out": [
      3,
      10,
      9,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = reverse(sort_des(take(reverse([2, 5]),5)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(input),5)))"
  },
  {
    "input": "input : list = [0, 2, -3, 5, -5]\noutput : list = [-5, -3, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([0, 2, -3, 5, -5])",
    "io_inp": [
      0,
      2,
      -3,
      5,
      -5
    ],
    "io_out": [
      -5,
      -3,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [2, -8]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(drop([-3, -4, 1],1),2))),40)",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(drop(input,1),2))),40)"
  },
  {
    "input": "input : list = [4, 0, 4, -2, 3, 1]\noutput : list = [6, 9, 11]",
    "output": "generated_output : list = sort_asc(sub_n(drop(add_n(mul_n([4, 0, 4, -2, 3, 1],1),4),3),-4))",
    "io_inp": [
      4,
      0,
      4,
      -2,
      3,
      1
    ],
    "io_out": [
      6,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(add_n(mul_n(input,1),4),3),-4))"
  },
  {
    "input": "input : list = [2, -1, 0, -1, 1, -1]\noutput : list = [-22, -10]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(take([2, -1, 0, -1, 1, -1],2),-1),5),-4),-2)",
    "io_inp": [
      2,
      -1,
      0,
      -1,
      1,
      -1
    ],
    "io_out": [
      -22,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(take(input,2),-1),5),-4),-2)"
  },
  {
    "input": "input : list = [-5, 2, -5, 4, -4]\noutput : list = [-5, -4, 4]",
    "output": "generated_output : list = sort_asc(drop([-5, 2, -5, 4, -4],2))",
    "io_inp": [
      -5,
      2,
      -5,
      4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-4, 5, -2, -2, 3, 0]\noutput : list = [5, 3, 0, -2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([-4, 5, -2, -2, 3, 0]))",
    "io_inp": [
      -4,
      5,
      -2,
      -2,
      3,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [3]",
    "output": "generated_output : list = drop(add_n([-2, -2, 2],1),2)",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(add_n(input,1),2)"
  },
  {
    "input": "input : list = [5, 5, 5, -1, 0, 3]\noutput : list = [-7, -4, 5, 11, 11, 11]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc([5, 5, 5, -1, 0, 3]),3),4),9)",
    "io_inp": [
      5,
      5,
      5,
      -1,
      0,
      3
    ],
    "io_out": [
      -7,
      -4,
      5,
      11,
      11,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(input),3),4),9)"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [1, 0, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sort_asc([-5, -2, -1]))),-2))",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-3, -2, -2, -5, 1]\noutput : list = [-12, -10, -9, -9, -6]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(add_n([-3, -2, -2, -5, 1],-2))),5),10)",
    "io_inp": [
      -3,
      -2,
      -2,
      -5,
      1
    ],
    "io_out": [
      -12,
      -10,
      -9,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(add_n(input,-2))),5),10)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [7, 12]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(sort_des([4, -1]),-4)),34),4)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      7,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(sort_des(input),-4)),34),4)"
  },
  {
    "input": "input : list = [4, -4, 0, 4, -4, -4]\noutput : list = [-12, -12, -4, 4, 4, 4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sub_n([4, -4, 0, 4, -4, -4],-5))),-3),-2)",
    "io_inp": [
      4,
      -4,
      0,
      4,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -4,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sub_n(input,-5))),-3),-2)"
  },
  {
    "input": "input : list = [5, -2, 4]\noutput : list = [11, -1, -3]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(sub_n([5, -2, 4],1),8),-2)),-5)",
    "io_inp": [
      5,
      -2,
      4
    ],
    "io_out": [
      11,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(sub_n(input,1),8),-2)),-5)"
  },
  {
    "input": "input : list = [-4, -4, -4, 0, 2, 4]\noutput : list = [0, 4, 6, 8]",
    "output": "generated_output : list = take(add_n(sort_asc(drop([-4, -4, -4, 0, 2, 4],2)),4),42)",
    "io_inp": [
      -4,
      -4,
      -4,
      0,
      2,
      4
    ],
    "io_out": [
      0,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(drop(input,2)),4),42)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-10, -25]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(mul_n([-1, -4],5),4)),5))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(mul_n(input,5),4)),5))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [25, 35]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_des([3, 5])),-2),5),35)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      25,
      35
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_des(input)),-2),5),35)"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [8, -8, -8]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des([-4, 4, 4]),-2))))",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [13]",
    "output": "generated_output : list = sub_n(mul_n(drop(mul_n([4, -1],3),1),-5),2)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(mul_n(input,3),1),-5),2)"
  },
  {
    "input": "input : list = [-3, -3, 0, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = drop([-3, -3, 0, 2, -2],3)",
    "io_inp": [
      -3,
      -3,
      0,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(reverse([4, 1]),7)),-4),-2)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(reverse(input),7)),-4),-2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(sub_n([4, 5],-1))),9))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(sub_n(input,-1))),9))"
  },
  {
    "input": "input : list = [2, -1, -3, -3]\noutput : list = [12, 12, 18, 27]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_des([2, -1, -3, -3]),2)),-5),3)",
    "io_inp": [
      2,
      -1,
      -3,
      -3
    ],
    "io_out": [
      12,
      12,
      18,
      27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_des(input),2)),-5),3)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [1, -4]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(reverse([3, -2]),1))),-1)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(reverse(input),1))),-1)"
  },
  {
    "input": "input : list = [4, 1, -4, 2, 5]\noutput : list = [6, -4, -6, -10, -12]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(mul_n([4, 1, -4, 2, 5],-2))),-2))",
    "io_inp": [
      4,
      1,
      -4,
      2,
      5
    ],
    "io_out": [
      6,
      -4,
      -6,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(mul_n(input,-2))),-2))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-9, 6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([3, -2],-3)))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -9,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [3, -5, 0, -1, 0, 1]\noutput : list = [-4, -6, -7, -7, -8, -12]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(sort_asc([3, -5, 0, -1, 0, 1])),5),11),2)",
    "io_inp": [
      3,
      -5,
      0,
      -1,
      0,
      1
    ],
    "io_out": [
      -4,
      -6,
      -7,
      -7,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(sort_asc(input)),5),11),2)"
  },
  {
    "input": "input : list = [0, -3, -4, -1]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(take([0, -3, -4, -1],2),2)),14))",
    "io_inp": [
      0,
      -3,
      -4,
      -1
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(take(input,2),2)),14))"
  },
  {
    "input": "input : list = [-1, 0, 0, -4, 2]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(drop([-1, 0, 0, -4, 2],2))),31))",
    "io_inp": [
      -1,
      0,
      0,
      -4,
      2
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(drop(input,2))),31))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-5, -3],1)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-3, 0, 3, 5, -3]\noutput : list = [-7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take([-3, 0, 3, 5, -3],1)),4))",
    "io_inp": [
      -3,
      0,
      3,
      5,
      -3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(input,1)),4))"
  },
  {
    "input": "input : list = [0, -3, -2]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = take(sort_asc(add_n(sub_n(reverse([0, -3, -2]),4),3)),14)",
    "io_inp": [
      0,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sub_n(reverse(input),4),3)),14)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [8, -13]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([-3, 4],-3),1),1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      8,
      -13
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,-3),1),1)"
  },
  {
    "input": "input : list = [-5, -3, -2, -5, 2]\noutput : list = [40, -100]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(drop([-5, -3, -2, -5, 2],3),4))),5)",
    "io_inp": [
      -5,
      -3,
      -2,
      -5,
      2
    ],
    "io_out": [
      40,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(drop(input,3),4))),5)"
  },
  {
    "input": "input : list = [-5, 4, 0, 3, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(take([-5, 4, 0, 3, -1],1),22))))",
    "io_inp": [
      -5,
      4,
      0,
      3,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(take(input,1),22))))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [7, 7]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc([4, 4]),3),15))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(input),3),15))"
  },
  {
    "input": "input : list = [1, -2, 2, 3]\noutput : list = [45, 30, -30, 15]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(reverse([1, -2, 2, 3])),5),3))",
    "io_inp": [
      1,
      -2,
      2,
      3
    ],
    "io_out": [
      45,
      30,
      -30,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(reverse(input)),5),3))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [7]",
    "output": "generated_output : list = drop(sub_n(add_n([-5, 5],3),1),1)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = drop(sub_n(add_n(input,3),1),1)"
  },
  {
    "input": "input : list = [-4, 2, -3, 4, 2]\noutput : list = [1, -1, -1, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n([-4, 2, -3, 4, 2],3))",
    "io_inp": [
      -4,
      2,
      -3,
      4,
      2
    ],
    "io_out": [
      1,
      -1,
      -1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [4, 5, 3, 2]\noutput : list = [-25, -20]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(take([4, 5, 3, 2],2),-5))))",
    "io_inp": [
      4,
      5,
      3,
      2
    ],
    "io_out": [
      -25,
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(take(input,2),-5))))"
  },
  {
    "input": "input : list = [0, -4, 3, -1, 5]\noutput : list = [-1, -4, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(take([0, -4, 3, -1, 5],3),-1))),5)",
    "io_inp": [
      0,
      -4,
      3,
      -1,
      5
    ],
    "io_out": [
      -1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(take(input,3),-1))),5)"
  },
  {
    "input": "input : list = [-2, 4, 4, 1, 1, -4]\noutput : list = [-4, -2, 1, 1, 4, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(add_n([-2, 4, 4, 1, 1, -4],-2))),-5),-3)",
    "io_inp": [
      -2,
      4,
      4,
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -2,
      1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(add_n(input,-2))),-5),-3)"
  },
  {
    "input": "input : list = [3, 0, -1, 0, -5, 3]\noutput : list = [18, 18, 3, 3, -2, -22]",
    "output": "generated_output : list = add_n(sort_des(mul_n([3, 0, -1, 0, -5, 3],5)),3)",
    "io_inp": [
      3,
      0,
      -1,
      0,
      -5,
      3
    ],
    "io_out": [
      18,
      18,
      3,
      3,
      -2,
      -22
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,5)),3)"
  },
  {
    "input": "input : list = [5, 4, -3, -4, 1, 2]\noutput : list = [0, -8, -40, -48, -64, -72]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_des([5, 4, -3, -4, 1, 2]),-4)),-4),2)",
    "io_inp": [
      5,
      4,
      -3,
      -4,
      1,
      2
    ],
    "io_out": [
      0,
      -8,
      -40,
      -48,
      -64,
      -72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_des(input),-4)),-4),2)"
  },
  {
    "input": "input : list = [4, -4, -3, -4]\noutput : list = [3, 3, 4, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n([4, -4, -3, -4],-5))),-2)",
    "io_inp": [
      4,
      -4,
      -3,
      -4
    ],
    "io_out": [
      3,
      3,
      4,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(input,-5))),-2)"
  },
  {
    "input": "input : list = [3, -2, -3, -3, -3, 5]\noutput : list = [-3, -5, -10, -11, -11, -11]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(sub_n([3, -2, -3, -3, -3, 5],3),5)),3),3)",
    "io_inp": [
      3,
      -2,
      -3,
      -3,
      -3,
      5
    ],
    "io_out": [
      -3,
      -5,
      -10,
      -11,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(sub_n(input,3),5)),3),3)"
  },
  {
    "input": "input : list = [-4, -3, -2]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc([-4, -3, -2]))),16)",
    "io_inp": [
      -4,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(input))),16)"
  },
  {
    "input": "input : list = [-5, -2, -2, 2]\noutput : list = [3, 7, 7, 10]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(sort_asc([-5, -2, -2, 2]),-1),-5)))",
    "io_inp": [
      -5,
      -2,
      -2,
      2
    ],
    "io_out": [
      3,
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(sort_asc(input),-1),-5)))"
  },
  {
    "input": "input : list = [0, 0, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(take([0, 0, -2],1)),-1),-2))",
    "io_inp": [
      0,
      0,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(take(input,1)),-1),-2))"
  },
  {
    "input": "input : list = [-3, -3, -3, -2, -2]\noutput : list = [1, 1, 0, 0, 0]",
    "output": "generated_output : list = reverse(add_n(take(add_n(add_n([-3, -3, -3, -2, -2],4),-4),8),3))",
    "io_inp": [
      -3,
      -3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      1,
      1,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(add_n(input,4),-4),8),3))"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [-2, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, -2])",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [15, 45]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(reverse([-2, 4]),-5)),2),-5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      15,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(reverse(input),-5)),2),-5)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(reverse([5, -5]))),5),5)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(reverse(input))),5),5)"
  },
  {
    "input": "input : list = [2, 4, -3, -3]\noutput : list = [-4, -4, 3, 1]",
    "output": "generated_output : list = reverse(add_n(add_n([2, 4, -3, -3],2),-3))",
    "io_inp": [
      2,
      4,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,2),-3))"
  },
  {
    "input": "input : list = [5, -1, 2, 2, 4]\noutput : list = [-2, -8, -8, -12, -14]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(sort_asc([5, -1, 2, 2, 4]),12),-2)),-2)",
    "io_inp": [
      5,
      -1,
      2,
      2,
      4
    ],
    "io_out": [
      -2,
      -8,
      -8,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(sort_asc(input),12),-2)),-2)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [-3, 15]",
    "output": "generated_output : list = mul_n(sort_asc(drop([3, 5, -1],1)),3)",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      -3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,1)),3)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [25, 10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse([5, 2])))),5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse(input)))),5)"
  },
  {
    "input": "input : list = [-5, -3, -4, -2, 5]\noutput : list = [-27, -36, -45]",
    "output": "generated_output : list = drop(mul_n(sort_des(mul_n(reverse([-5, -3, -4, -2, 5]),3)),3),2)",
    "io_inp": [
      -5,
      -3,
      -4,
      -2,
      5
    ],
    "io_out": [
      -27,
      -36,
      -45
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_des(mul_n(reverse(input),3)),3),2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse(take(take(take(mul_n([-1, -2],-1),5),4),8))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(mul_n(input,-1),5),4),8))"
  },
  {
    "input": "input : list = [1, -5, -4, -3]\noutput : list = [-9, -8, -7, -3]",
    "output": "generated_output : list = take(sort_asc(sub_n(mul_n(sort_asc([1, -5, -4, -3]),1),4)),35)",
    "io_inp": [
      1,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(mul_n(sort_asc(input),1),4)),35)"
  },
  {
    "input": "input : list = [-1, -5, -3, 5, -1, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = take(sort_asc(take([-1, -5, -3, 5, -1, -1],2)),21)",
    "io_inp": [
      -1,
      -5,
      -3,
      5,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,2)),21)"
  },
  {
    "input": "input : list = [-1, -4, -2, -4, 3]\noutput : list = [-5, -8, -6, -8, -1]",
    "output": "generated_output : list = sub_n([-1, -4, -2, -4, 3],4)",
    "io_inp": [
      -1,
      -4,
      -2,
      -4,
      3
    ],
    "io_out": [
      -5,
      -8,
      -6,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, -1, -2]\noutput : list = [-3, -4, -6]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(sort_des([-4, -1, -2]),-2))),18)",
    "io_inp": [
      -4,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(sort_des(input),-2))),18)"
  },
  {
    "input": "input : list = [-2, -3, -5]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = sort_des([-2, -3, -5])",
    "io_inp": [
      -2,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [0, -7]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(reverse([-3, 4]),-4))),8)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(reverse(input),-4))),8)"
  },
  {
    "input": "input : list = [-2, 2, 0]\noutput : list = [-3, -5, -7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_des([-2, 2, 0]),5),-5),-5))",
    "io_inp": [
      -2,
      2,
      0
    ],
    "io_out": [
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_des(input),5),-5),-5))"
  },
  {
    "input": "input : list = [-4, -3, -4, 5, 2]\noutput : list = [-7, -6, -7]",
    "output": "generated_output : list = add_n(take([-4, -3, -4, 5, 2],3),-3)",
    "io_inp": [
      -4,
      -3,
      -4,
      5,
      2
    ],
    "io_out": [
      -7,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [1, -1, 1, -5, 2, 3]\noutput : list = [1, -1, 1, -5]",
    "output": "generated_output : list = take([1, -1, 1, -5, 2, 3],4)",
    "io_inp": [
      1,
      -1,
      1,
      -5,
      2,
      3
    ],
    "io_out": [
      1,
      -1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-1, 4, 0, 4, -3]\noutput : list = [12, 4, 0, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc([-1, 4, 0, 4, -3])),-4))",
    "io_inp": [
      -1,
      4,
      0,
      4,
      -3
    ],
    "io_out": [
      12,
      4,
      0,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(input)),-4))"
  },
  {
    "input": "input : list = [-2, -2, 5, 1]\noutput : list = [9, 21, 0, 0]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(reverse([-2, -2, 5, 1]),3),5),3),24)",
    "io_inp": [
      -2,
      -2,
      5,
      1
    ],
    "io_out": [
      9,
      21,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(reverse(input),3),5),3),24)"
  },
  {
    "input": "input : list = [-3, 4, 1, 1]\noutput : list = [12]",
    "output": "generated_output : list = take(mul_n(drop(reverse(sort_des([-3, 4, 1, 1])),3),3),1)",
    "io_inp": [
      -3,
      4,
      1,
      1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(reverse(sort_des(input)),3),3),1)"
  },
  {
    "input": "input : list = [-1, 5, 5, 3]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(take([-1, 5, 5, 3],1),2),-5)))",
    "io_inp": [
      -1,
      5,
      5,
      3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(take(input,1),2),-5)))"
  },
  {
    "input": "input : list = [5, 0, -1, -2, 3, -1]\noutput : list = [0, 2, 5, 6, 6, 7]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_des([5, 0, -1, -2, 3, -1]))),-5),-1)",
    "io_inp": [
      5,
      0,
      -1,
      -2,
      3,
      -1
    ],
    "io_out": [
      0,
      2,
      5,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_des(input))),-5),-1)"
  },
  {
    "input": "input : list = [5, 0, -5, -2]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(mul_n(take(reverse([5, 0, -5, -2]),1),2),10))",
    "io_inp": [
      5,
      0,
      -5,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(reverse(input),1),2),10))"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [0, 1, 1]",
    "output": "generated_output : list = sort_asc([0, 1, 1])",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -2, -3, 2, 2]\noutput : list = [-8, -4, 4, 12, 12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(add_n([0, -2, -3, 2, 2],-4)),-5),4))",
    "io_inp": [
      0,
      -2,
      -3,
      2,
      2
    ],
    "io_out": [
      -8,
      -4,
      4,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(add_n(input,-4)),-5),4))"
  },
  {
    "input": "input : list = [1, 1, 4, 2, 1]\noutput : list = [-3, -3, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(reverse([1, 1, 4, 2, 1])),-4)))",
    "io_inp": [
      1,
      1,
      4,
      2,
      1
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-2, -5, 3, 5, 0, -1]\noutput : list = [-2, 1, 2, 3, 6, 8]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse([-2, -5, 3, 5, 0, -1]),14)),3)",
    "io_inp": [
      -2,
      -5,
      3,
      5,
      0,
      -1
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(input),14)),3)"
  },
  {
    "input": "input : list = [-2, -4, -1, -3, 1]\noutput : list = [0, 2, 4, 6, 10]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(add_n([-2, -4, -1, -3, 1],4),2))))",
    "io_inp": [
      -2,
      -4,
      -1,
      -3,
      1
    ],
    "io_out": [
      0,
      2,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(add_n(input,4),2))))"
  },
  {
    "input": "input : list = [4, 2, 2, -2, 3]\noutput : list = [1, 0, -1, -1, -5]",
    "output": "generated_output : list = sort_des(sub_n([4, 2, 2, -2, 3],3))",
    "io_inp": [
      4,
      2,
      2,
      -2,
      3
    ],
    "io_out": [
      1,
      0,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [4, -1, 5, 3, -4, 0]\noutput : list = [5, 4, 3, -1]",
    "output": "generated_output : list = sort_des(sort_asc(take([4, -1, 5, 3, -4, 0],4)))",
    "io_inp": [
      4,
      -1,
      5,
      3,
      -4,
      0
    ],
    "io_out": [
      5,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,4)))"
  },
  {
    "input": "input : list = [-2, 4, 1, 5, 0]\noutput : list = [-5, -1, 1, 7, 9]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(reverse(add_n([-2, 4, 1, 5, 0],1)),2)),3)",
    "io_inp": [
      -2,
      4,
      1,
      5,
      0
    ],
    "io_out": [
      -5,
      -1,
      1,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(reverse(add_n(input,1)),2)),3)"
  },
  {
    "input": "input : list = [3, -4, -2, 1]\noutput : list = [-4, -2, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([3, -4, -2, 1])))",
    "io_inp": [
      3,
      -4,
      -2,
      1
    ],
    "io_out": [
      -4,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, -1, 4, -5]\noutput : list = [-1, -6, -6, -10]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(sort_asc([-1, -1, 4, -5])),-5)),18)",
    "io_inp": [
      -1,
      -1,
      4,
      -5
    ],
    "io_out": [
      -1,
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(sort_asc(input)),-5)),18)"
  },
  {
    "input": "input : list = [5, -4, 4, 2]\noutput : list = [3, 2, 0, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(reverse([5, -4, 4, 2]))),-2))",
    "io_inp": [
      5,
      -4,
      4,
      2
    ],
    "io_out": [
      3,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(reverse(input))),-2))"
  },
  {
    "input": "input : list = [-1, 3, 3, -3, 1]\noutput : list = [5, -15, -15, 15, -5]",
    "output": "generated_output : list = mul_n([-1, 3, 3, -3, 1],-5)",
    "io_inp": [
      -1,
      3,
      3,
      -3,
      1
    ],
    "io_out": [
      5,
      -15,
      -15,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [5, 4, 1]\noutput : list = [8, 7, 4]",
    "output": "generated_output : list = sub_n([5, 4, 1],-3)",
    "io_inp": [
      5,
      4,
      1
    ],
    "io_out": [
      8,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, 4, -3, -3, -3, 5]\noutput : list = [7, 7, 7, 14, 15, 15]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(sub_n([5, 4, -3, -3, -3, 5],-4),-3),18)),3)",
    "io_inp": [
      5,
      4,
      -3,
      -3,
      -3,
      5
    ],
    "io_out": [
      7,
      7,
      7,
      14,
      15,
      15
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(sub_n(input,-4),-3),18)),3)"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, 0],1)",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 3, 4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(drop([0, 3, 4, -2],2)),22),33))",
    "io_inp": [
      0,
      3,
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(drop(input,2)),22),33))"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take(take(reverse(take([5, 4, -5],1)),23),30))",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(take(input,1)),23),30))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [10, 7]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_des([2, 5]),-5))))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      10,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = add_n(reverse([1, 4, 5]),-2)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [2, -4, -6]",
    "output": "generated_output : list = reverse(sub_n([-5, -3, 3],1))",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [9, 3, 0]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(reverse([5, -4, -1]),-4),-4),-4))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      9,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(reverse(input),-4),-4),-4))"
  },
  {
    "input": "input : list = [-1, 5, 5, -2]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(take([-1, 5, 5, -2],1),13)),-4),-3)",
    "io_inp": [
      -1,
      5,
      5,
      -2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(take(input,1),13)),-4),-3)"
  },
  {
    "input": "input : list = [3, 5, -5, 1]\noutput : list = [-3, -5, 5, -1]",
    "output": "generated_output : list = take(mul_n([3, 5, -5, 1],-1),16)",
    "io_inp": [
      3,
      5,
      -5,
      1
    ],
    "io_out": [
      -3,
      -5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),16)"
  },
  {
    "input": "input : list = [0, -5, -4, 0]\noutput : list = [0, -5, -4, 0]",
    "output": "generated_output : list = reverse(reverse([0, -5, -4, 0]))",
    "io_inp": [
      0,
      -5,
      -4,
      0
    ],
    "io_out": [
      0,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sub_n(take(take(take([-1, 2, 2],1),8),7),-2),2)",
    "io_inp": [
      -1,
      2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(take(input,1),8),7),-2),2)"
  },
  {
    "input": "input : list = [2, 2, 3, 3, -3, -1]\noutput : list = [1, 1, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(take([2, 2, 3, 3, -3, -1],4)),2)),-1)",
    "io_inp": [
      2,
      2,
      3,
      3,
      -3,
      -1
    ],
    "io_out": [
      1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(take(input,4)),2)),-1)"
  },
  {
    "input": "input : list = [-1, 0, 5, 2, 5]\noutput : list = [5, 5, 2, 0, -1]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(sort_asc([-1, 0, 5, 2, 5])))),22)",
    "io_inp": [
      -1,
      0,
      5,
      2,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(sort_asc(input)))),22)"
  },
  {
    "input": "input : list = [0, 5, -1, 3, -5, -4]\noutput : list = [8, 6, 3, 2, -1, -2]",
    "output": "generated_output : list = reverse(add_n(reverse(take(sort_des([0, 5, -1, 3, -5, -4]),24)),3))",
    "io_inp": [
      0,
      5,
      -1,
      3,
      -5,
      -4
    ],
    "io_out": [
      8,
      6,
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(sort_des(input),24)),3))"
  },
  {
    "input": "input : list = [4, 5, 2, -5]\noutput : list = [5, 2, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(drop([4, 5, 2, -5],1)))))",
    "io_inp": [
      4,
      5,
      2,
      -5
    ],
    "io_out": [
      5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [0, -1, -1, 2, 0, -5]\noutput : list = [-2, 0, 0, 1, 1, 5]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_des([0, -1, -1, 2, 0, -5]))),-1),10)",
    "io_inp": [
      0,
      -1,
      -1,
      2,
      0,
      -5
    ],
    "io_out": [
      -2,
      0,
      0,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_des(input))),-1),10)"
  },
  {
    "input": "input : list = [-4, -1, 0, 2]\noutput : list = [-8, -5, -4, -2]",
    "output": "generated_output : list = sub_n([-4, -1, 0, 2],4)",
    "io_inp": [
      -4,
      -1,
      0,
      2
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 0, 3, -1]\noutput : list = [4, 0]",
    "output": "generated_output : list = mul_n(take([-4, 0, 3, -1],2),-1)",
    "io_inp": [
      -4,
      0,
      3,
      -1
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [-1, -3, -2, 4]\noutput : list = [-2, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(drop([-1, -3, -2, 4],2),-5))),-1)",
    "io_inp": [
      -1,
      -3,
      -2,
      4
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(drop(input,2),-5))),-1)"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [2, 8]",
    "output": "generated_output : list = sub_n(sort_asc(take(add_n(drop([1, 1, -5],1),2),17)),-5)",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(add_n(drop(input,1),2),17)),-5)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(sub_n([-1, -3, 5],-3),2)),1),-2)",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(sub_n(input,-3),2)),1),-2)"
  },
  {
    "input": "input : list = [-4, 5, -4, 5, -1]\noutput : list = [2, 2, -4, -16, -16]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc([-4, 5, -4, 5, -1]),-2),-5)),1)",
    "io_inp": [
      -4,
      5,
      -4,
      5,
      -1
    ],
    "io_out": [
      2,
      2,
      -4,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc(input),-2),-5)),1)"
  },
  {
    "input": "input : list = [-2, -5, 1, 2, -1]\noutput : list = [2, 1, -1, -2, -5]",
    "output": "generated_output : list = sort_des([-2, -5, 1, 2, -1])",
    "io_inp": [
      -2,
      -5,
      1,
      2,
      -1
    ],
    "io_out": [
      2,
      1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [20, -60]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n([-1, 3],4)),-5)))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      20,
      -60
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n(input,4)),-5)))"
  },
  {
    "input": "input : list = [4, -1, -4, 1, 2]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(drop([4, -1, -4, 1, 2],3),-3))),-3)",
    "io_inp": [
      4,
      -1,
      -4,
      1,
      2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(drop(input,3),-3))),-3)"
  },
  {
    "input": "input : list = [-5, -5, -4, 4, -2, -4]\noutput : list = [4, -2, -4, -4, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, -5, -4, 4, -2, -4]))",
    "io_inp": [
      -5,
      -5,
      -4,
      4,
      -2,
      -4
    ],
    "io_out": [
      4,
      -2,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [5, 4]",
    "output": "generated_output : list = take(sub_n(take(reverse(reverse([0, -1])),12),-5),25)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(reverse(input)),12),-5),25)"
  },
  {
    "input": "input : list = [-2, 1, 2, 1, 2]\noutput : list = [-7, -3, -7, -3, 9]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n([-2, 1, 2, 1, 2],-4),11),-1))",
    "io_inp": [
      -2,
      1,
      2,
      1,
      2
    ],
    "io_out": [
      -7,
      -3,
      -7,
      -3,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(input,-4),11),-1))"
  },
  {
    "input": "input : list = [-4, 3, 0, -4, -3]\noutput : list = [-12, -8, -24, -36, -8]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(add_n([-4, 3, 0, -4, -3],2),4),2)),-2)",
    "io_inp": [
      -4,
      3,
      0,
      -4,
      -3
    ],
    "io_out": [
      -12,
      -8,
      -24,
      -36,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(add_n(input,2),4),2)),-2)"
  },
  {
    "input": "input : list = [-1, 0, 1, 5, 2, 1]\noutput : list = [1, 2, 5, 1, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, 1, 5, 2, 1])",
    "io_inp": [
      -1,
      0,
      1,
      5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      5,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 2, -3, 4, 4]\noutput : list = [14, -2, 18, -10, -10]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(mul_n([-2, 2, -3, 4, 4],-1),4),12),2),4)",
    "io_inp": [
      -2,
      2,
      -3,
      4,
      4
    ],
    "io_out": [
      14,
      -2,
      18,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(mul_n(input,-1),4),12),2),4)"
  },
  {
    "input": "input : list = [4, -4, 1, 1]\noutput : list = [4, 1, 1, -4]",
    "output": "generated_output : list = sort_des([4, -4, 1, 1])",
    "io_inp": [
      4,
      -4,
      1,
      1
    ],
    "io_out": [
      4,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, -4, -1, 3, 1]\noutput : list = [1, 0, -1, -3, -5, -8]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(sub_n([5, 4, -4, -1, 3, 1],-1))),-5),19)",
    "io_inp": [
      5,
      4,
      -4,
      -1,
      3,
      1
    ],
    "io_out": [
      1,
      0,
      -1,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(sub_n(input,-1))),-5),19)"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [1, 2, 11]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(sort_des([5, -5, -4]),-4),3)),1)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      1,
      2,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(sort_des(input),-4),3)),1)"
  },
  {
    "input": "input : list = [-2, 2, -3, 5, 5]\noutput : list = [8, -8, 12, -20, -20]",
    "output": "generated_output : list = mul_n([-2, 2, -3, 5, 5],-4)",
    "io_inp": [
      -2,
      2,
      -3,
      5,
      5
    ],
    "io_out": [
      8,
      -8,
      12,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 3, -3, -2, 0]\noutput : list = [2]",
    "output": "generated_output : list = take(mul_n(take(sub_n(take([-2, 3, -3, -2, 0],1),-4),21),1),8)",
    "io_inp": [
      -2,
      3,
      -3,
      -2,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(take(input,1),-4),21),1),8)"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_des([1, -1, -1]))),-3))",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [-3, 4, 4, 0]\noutput : list = [4, 4, 0, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc([-3, 4, 4, 0])),25)",
    "io_inp": [
      -3,
      4,
      4,
      0
    ],
    "io_out": [
      4,
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),25)"
  },
  {
    "input": "input : list = [-3, 2, 3, -5]\noutput : list = [-5, -3, 2, 3]",
    "output": "generated_output : list = sort_asc([-3, 2, 3, -5])",
    "io_inp": [
      -3,
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [1, -2]",
    "output": "generated_output : list = mul_n([-1, 2],-1)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = sort_asc([-3, -4, -2])",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, 3, -3]\noutput : list = [-15, 15]",
    "output": "generated_output : list = take(mul_n(take(reverse([4, -1, 3, -3]),2),5),14)",
    "io_inp": [
      4,
      -1,
      3,
      -3
    ],
    "io_out": [
      -15,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(input),2),5),14)"
  },
  {
    "input": "input : list = [-3, 1, -4, -3, 5, -3]\noutput : list = [-3, -2, -2, 2]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(take([-3, 1, -4, -3, 5, -3],4),-5),1)),-4)",
    "io_inp": [
      -3,
      1,
      -4,
      -3,
      5,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(take(input,4),-5),1)),-4)"
  },
  {
    "input": "input : list = [5, -1, 5, 2, 4]\noutput : list = [-1, 2, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(drop([5, -1, 5, 2, 4],1),1))))",
    "io_inp": [
      5,
      -1,
      5,
      2,
      4
    ],
    "io_out": [
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [0, 0, -3, 5, -4, 0]\noutput : list = [-4, -4, -7, 1, -8, -4]",
    "output": "generated_output : list = sub_n([0, 0, -3, 5, -4, 0],4)",
    "io_inp": [
      0,
      0,
      -3,
      5,
      -4,
      0
    ],
    "io_out": [
      -4,
      -4,
      -7,
      1,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, -5, 3, -4, -5, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(take([3, -5, 3, -4, -5, -4],1)))),4)",
    "io_inp": [
      3,
      -5,
      3,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(take(input,1)))),4)"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = reverse(sort_des(drop([-3, -4, 4],1)))",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [4, -4, 5, -5, -5, -4]\noutput : list = [20, 16]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(drop([4, -4, 5, -5, -5, -4],4),-4))))",
    "io_inp": [
      4,
      -4,
      5,
      -5,
      -5,
      -4
    ],
    "io_out": [
      20,
      16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(drop(input,4),-4))))"
  },
  {
    "input": "input : list = [0, 2, 0, 5, -2]\noutput : list = [-23, -11, -11, 1, 19]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(mul_n([0, 2, 0, 5, -2],3)),-3),2),5)",
    "io_inp": [
      0,
      2,
      0,
      5,
      -2
    ],
    "io_out": [
      -23,
      -11,
      -11,
      1,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(mul_n(input,3)),-3),2),5)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [13, -2, -12]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([3, 0, -2],5)),2)",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      13,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,5)),2)"
  },
  {
    "input": "input : list = [-1, 4, 3]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(take([-1, 4, 3],1),-1))),4)",
    "io_inp": [
      -1,
      4,
      3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(take(input,1),-1))),4)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse([-1, 4])),-1))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(input)),-1))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [6, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sub_n([1, 4],4)))),-2)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sub_n(input,4)))),-2)"
  },
  {
    "input": "input : list = [-4, -5, -4]\noutput : list = [-20, -20, -24]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_asc([-4, -5, -4]),4),-4)))",
    "io_inp": [
      -4,
      -5,
      -4
    ],
    "io_out": [
      -20,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_asc(input),4),-4)))"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(mul_n(take(take(sort_des([-2, -1, -1]),1),12),-2))",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sort_des(input),1),12),-2))"
  },
  {
    "input": "input : list = [5, -3, 3, -5]\noutput : list = [10, 8, 2, 0]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(add_n([5, -3, 3, -5],5)))),30)",
    "io_inp": [
      5,
      -3,
      3,
      -5
    ],
    "io_out": [
      10,
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(add_n(input,5)))),30)"
  },
  {
    "input": "input : list = [4, -1, 0, -5, -1, 3]\noutput : list = [21, 1, 1, -4, -19, -24]",
    "output": "generated_output : list = sub_n(take(mul_n(take(sort_asc([4, -1, 0, -5, -1, 3]),9),-5),20),4)",
    "io_inp": [
      4,
      -1,
      0,
      -5,
      -1,
      3
    ],
    "io_out": [
      21,
      1,
      1,
      -4,
      -19,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(sort_asc(input),9),-5),20),4)"
  },
  {
    "input": "input : list = [1, 4, 3, 2, 2, 1]\noutput : list = [-4, -1, -2, -3, -3, -4]",
    "output": "generated_output : list = add_n([1, 4, 3, 2, 2, 1],-5)",
    "io_inp": [
      1,
      4,
      3,
      2,
      2,
      1
    ],
    "io_out": [
      -4,
      -1,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, -4, 4]\noutput : list = [4, 4, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc([4, -4, 4])),15))",
    "io_inp": [
      4,
      -4,
      4
    ],
    "io_out": [
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(input)),15))"
  },
  {
    "input": "input : list = [-4, 1, 4, -3]\noutput : list = [-1, 0, 4, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(add_n([-4, 1, 4, -3],4))),1))",
    "io_inp": [
      -4,
      1,
      4,
      -3
    ],
    "io_out": [
      -1,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(add_n(input,4))),1))"
  },
  {
    "input": "input : list = [3, 2, -1, -3]\noutput : list = [-2, -3, -6, -8]",
    "output": "generated_output : list = add_n(add_n([3, 2, -1, -3],-1),-4)",
    "io_inp": [
      3,
      2,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),-4)"
  },
  {
    "input": "input : list = [-2, 0, 4, -5]\noutput : list = [-4, -2, 2, -7]",
    "output": "generated_output : list = add_n(add_n([-2, 0, 4, -5],-4),2)",
    "io_inp": [
      -2,
      0,
      4,
      -5
    ],
    "io_out": [
      -4,
      -2,
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),2)"
  },
  {
    "input": "input : list = [4, 3, 1, 2, -1, 1]\noutput : list = [-7, -5, -5, -4, -3, -2]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(add_n([4, 3, 1, 2, -1, 1],-2),4)),14),33)",
    "io_inp": [
      4,
      3,
      1,
      2,
      -1,
      1
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(add_n(input,-2),4)),14),33)"
  },
  {
    "input": "input : list = [4, 0, 0, 5, 0, -4]\noutput : list = [-100, 0, 0, -80]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(take([4, 0, 0, 5, 0, -4],4),4)),19),-5)",
    "io_inp": [
      4,
      0,
      0,
      5,
      0,
      -4
    ],
    "io_out": [
      -100,
      0,
      0,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(take(input,4),4)),19),-5)"
  },
  {
    "input": "input : list = [0, 4, 5, -5]\noutput : list = [-2, -6]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(take([0, 4, 5, -5],2)),5),-1))",
    "io_inp": [
      0,
      4,
      5,
      -5
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(take(input,2)),5),-1))"
  },
  {
    "input": "input : list = [4, 4, -2, -4, 5, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = take([4, 4, -2, -4, 5, -4],2)",
    "io_inp": [
      4,
      4,
      -2,
      -4,
      5,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 2, 4, -5, 1]\noutput : list = [-18, 0, 3, 3, 9]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n([2, 2, 4, -5, 1],1)),3)",
    "io_inp": [
      2,
      2,
      4,
      -5,
      1
    ],
    "io_out": [
      -18,
      0,
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(input,1)),3)"
  },
  {
    "input": "input : list = [-2, 3, 3, -5, 3, -2]\noutput : list = [2, 5, 5, 10, 10, 10]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(sub_n([-2, 3, 3, -5, 3, -2],-1),1),-5)))",
    "io_inp": [
      -2,
      3,
      3,
      -5,
      3,
      -2
    ],
    "io_out": [
      2,
      5,
      5,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(sub_n(input,-1),1),-5)))"
  },
  {
    "input": "input : list = [-5, -2, 4, 2, 3]\noutput : list = [3, 6, 12]",
    "output": "generated_output : list = sub_n(take(take(add_n(take([-5, -2, 4, 2, 3],3),5),20),27),-3)",
    "io_inp": [
      -5,
      -2,
      4,
      2,
      3
    ],
    "io_out": [
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(take(input,3),5),20),27),-3)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = drop([2, 3, 2],1)",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n(reverse(reverse([-3, 2])),1)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),1)"
  },
  {
    "input": "input : list = [1, 3, 5, 1, -5]\noutput : list = [-2, 0, 2, -2, -8]",
    "output": "generated_output : list = add_n(sub_n([1, 3, 5, 1, -5],2),-1)",
    "io_inp": [
      1,
      3,
      5,
      1,
      -5
    ],
    "io_out": [
      -2,
      0,
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-1)"
  },
  {
    "input": "input : list = [2, -5, 2, -1]\noutput : list = [2, 2, -1, -5]",
    "output": "generated_output : list = sort_des([2, -5, 2, -1])",
    "io_inp": [
      2,
      -5,
      2,
      -1
    ],
    "io_out": [
      2,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, -2, -3, 3, 0]\noutput : list = [-1, 2, 3, 3]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(add_n([4, 4, -2, -3, 3, 0],-1)),4)),25)",
    "io_inp": [
      4,
      4,
      -2,
      -3,
      3,
      0
    ],
    "io_out": [
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(add_n(input,-1)),4)),25)"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [0, -3, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(mul_n([0, 1, 0],3),2)),-1))",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(mul_n(input,3),2)),-1))"
  },
  {
    "input": "input : list = [-4, 3, 0, 5]\noutput : list = [17, -11, 1, -19]",
    "output": "generated_output : list = add_n(mul_n([-4, 3, 0, 5],-4),1)",
    "io_inp": [
      -4,
      3,
      0,
      5
    ],
    "io_out": [
      17,
      -11,
      1,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sub_n([-2, 0],-3),-2)),13))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sub_n(input,-3),-2)),13))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [27, -45]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(reverse([3, -5]))),3),3)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      27,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(reverse(input))),3),3)"
  },
  {
    "input": "input : list = [3, -4, 0, 4]\noutput : list = [12, 8, 4, 11]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(add_n([3, -4, 0, 4],4)),3),1),1)",
    "io_inp": [
      3,
      -4,
      0,
      4
    ],
    "io_out": [
      12,
      8,
      4,
      11
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(add_n(input,4)),3),1),1)"
  },
  {
    "input": "input : list = [5, -1, 2, 5, -4, 5]\noutput : list = [-4, -1, 2, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse([5, -1, 2, 5, -4, 5]))",
    "io_inp": [
      5,
      -1,
      2,
      5,
      -4,
      5
    ],
    "io_out": [
      -4,
      -1,
      2,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = drop([-1, -5, -5],1)",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 2, -5, 2, 2]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(take(sort_des([0, 2, -5, 2, 2]),1),-2)",
    "io_inp": [
      0,
      2,
      -5,
      2,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),1),-2)"
  },
  {
    "input": "input : list = [-3, -4, -3, -4, -3, 1]\noutput : list = [-4, -4, -3, -3, 1]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(drop([-3, -4, -3, -4, -3, 1],1),23)),28),1)",
    "io_inp": [
      -3,
      -4,
      -3,
      -4,
      -3,
      1
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(drop(input,1),23)),28),1)"
  },
  {
    "input": "input : list = [-5, -4, 5, 4, -1]\noutput : list = [-10, -9, -6, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_asc([-5, -4, 5, 4, -1]),5))))",
    "io_inp": [
      -5,
      -4,
      5,
      4,
      -1
    ],
    "io_out": [
      -10,
      -9,
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [4, -1, 5, 4, 1]\noutput : list = [10, 0, 12, 10, 4]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(sub_n([4, -1, 5, 4, 1],-1),-2),2),2),31)",
    "io_inp": [
      4,
      -1,
      5,
      4,
      1
    ],
    "io_out": [
      10,
      0,
      12,
      10,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(sub_n(input,-1),-2),2),2),31)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [4, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(add_n([3, 5],-4)),4)),1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(add_n(input,-4)),4)),1)"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [0, 10, 20]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(add_n([-1, -3, 1],3)),5),12))",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      0,
      10,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(add_n(input,3)),5),12))"
  },
  {
    "input": "input : list = [5, -3, 5, -4, -3]\noutput : list = [10, -6, 10, -8, -6]",
    "output": "generated_output : list = mul_n([5, -3, 5, -4, -3],2)",
    "io_inp": [
      5,
      -3,
      5,
      -4,
      -3
    ],
    "io_out": [
      10,
      -6,
      10,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, 1, 0]\noutput : list = [-8, -12, -20]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n([-2, 1, 0],3)))),4)",
    "io_inp": [
      -2,
      1,
      0
    ],
    "io_out": [
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n(input,3)))),4)"
  },
  {
    "input": "input : list = [1, 3, 2]\noutput : list = [-36, -84, -60]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(mul_n([1, 3, 2],3),-4),-4),2),2)",
    "io_inp": [
      1,
      3,
      2
    ],
    "io_out": [
      -36,
      -84,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(mul_n(input,3),-4),-4),2),2)"
  },
  {
    "input": "input : list = [-1, -2, 4]\noutput : list = [-3, 1, 21]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc([-1, -2, 4])),4),5)",
    "io_inp": [
      -1,
      -2,
      4
    ],
    "io_out": [
      -3,
      1,
      21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(input)),4),5)"
  },
  {
    "input": "input : list = [4, 2, 5, 0]\noutput : list = [5, 4, 2, 0]",
    "output": "generated_output : list = sort_des(reverse([4, 2, 5, 0]))",
    "io_inp": [
      4,
      2,
      5,
      0
    ],
    "io_out": [
      5,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-3, -9]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n([-2, -5],-2))),-1),-1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n(input,-2))),-1),-1)"
  },
  {
    "input": "input : list = [-1, 3, -4, 2]\noutput : list = [8, 7, 4, 1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(reverse([-1, 3, -4, 2]),-4))),-1)",
    "io_inp": [
      -1,
      3,
      -4,
      2
    ],
    "io_out": [
      8,
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(reverse(input),-4))),-1)"
  },
  {
    "input": "input : list = [3, 4, 2, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = drop([3, 4, 2, -5, -4],3)",
    "io_inp": [
      3,
      4,
      2,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2, -20]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(sub_n([4, -2],5)),3),1))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(sub_n(input,5)),3),1))"
  },
  {
    "input": "input : list = [5, -5, -2, 4, -1]\noutput : list = [-5, -2, -1, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -5, -2, 4, -1])",
    "io_inp": [
      5,
      -5,
      -2,
      4,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, 5, -4, 1, 5]\noutput : list = [-4, 16, 16]",
    "output": "generated_output : list = reverse(mul_n(add_n(take(take([0, 0, 5, -4, 1, 5],3),20),-4),-4))",
    "io_inp": [
      0,
      0,
      5,
      -4,
      1,
      5
    ],
    "io_out": [
      -4,
      16,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(take(input,3),20),-4),-4))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse([-3, 0]),3),3),-2)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(input),3),3),-2)"
  },
  {
    "input": "input : list = [5, 2, 1, 4, -3]\noutput : list = [25, 10, 5, 20, -15]",
    "output": "generated_output : list = mul_n([5, 2, 1, 4, -3],5)",
    "io_inp": [
      5,
      2,
      1,
      4,
      -3
    ],
    "io_out": [
      25,
      10,
      5,
      20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, -2, 3, 3, -5, 3]\noutput : list = [3, 3, 3, 3, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(reverse([3, -2, 3, 3, -5, 3])),9)))",
    "io_inp": [
      3,
      -2,
      3,
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      3,
      3,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(reverse(input)),9)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-9, 0]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(reverse([4, -5])),-1)),-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(reverse(input)),-1)),-3)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des(reverse([4, 1]))),33))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(reverse(input))),33))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [8, 7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n(sort_des([-3, -4]),2),-4),-3),2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(sort_des(input),2),-4),-3),2)"
  },
  {
    "input": "input : list = [5, 2, 2, 5, 5]\noutput : list = [5, 5, 2, 2, 5]",
    "output": "generated_output : list = reverse([5, 2, 2, 5, 5])",
    "io_inp": [
      5,
      2,
      2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2, 4, 4, 4, -2]\noutput : list = [-7, -3, -1, -1, -1]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(drop([5, 2, 4, 4, 4, -2],1)),-5)),9)",
    "io_inp": [
      5,
      2,
      4,
      4,
      4,
      -2
    ],
    "io_out": [
      -7,
      -3,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(drop(input,1)),-5)),9)"
  },
  {
    "input": "input : list = [2, -3, 1, 5, -2]\noutput : list = [1, 5, -2]",
    "output": "generated_output : list = drop([2, -3, 1, 5, -2],2)",
    "io_inp": [
      2,
      -3,
      1,
      5,
      -2
    ],
    "io_out": [
      1,
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 2, -3]\noutput : list = [-10, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(drop([-1, 2, -3],1),4),-2)))",
    "io_inp": [
      -1,
      2,
      -3
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(drop(input,1),4),-2)))"
  },
  {
    "input": "input : list = [-3, 2, -5, 0, 2]\noutput : list = [-2, -4, -9]",
    "output": "generated_output : list = take(take(take(reverse(sub_n([-3, 2, -5, 0, 2],4)),3),31),40)",
    "io_inp": [
      -3,
      2,
      -5,
      0,
      2
    ],
    "io_out": [
      -2,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(sub_n(input,4)),3),31),40)"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [6, 3, 0]",
    "output": "generated_output : list = sub_n([2, -1, -4],-4)",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, 4, 5, 3]\noutput : list = [15, 20, 25, 25]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(mul_n([5, 4, 5, 3],5)),24)))",
    "io_inp": [
      5,
      4,
      5,
      3
    ],
    "io_out": [
      15,
      20,
      25,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(mul_n(input,5)),24)))"
  },
  {
    "input": "input : list = [0, 1, -1, 3]\noutput : list = [20, 15, 10, 0]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(reverse([0, 1, -1, 3]),4)),-5),5)",
    "io_inp": [
      0,
      1,
      -1,
      3
    ],
    "io_out": [
      20,
      15,
      10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(reverse(input),4)),-5),5)"
  },
  {
    "input": "input : list = [-1, 4, -2, 2, -3]\noutput : list = [-3, -2, -1, 2, 4]",
    "output": "generated_output : list = sort_asc([-1, 4, -2, 2, -3])",
    "io_inp": [
      -1,
      4,
      -2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, 0, -4]\noutput : list = [8, 8, 0, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(reverse([0, -4, 0, -4]),-2))),1)",
    "io_inp": [
      0,
      -4,
      0,
      -4
    ],
    "io_out": [
      8,
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(reverse(input),-2))),1)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [-30, 5, 10]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n([-4, -3, 4],-2)),5),-5)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      -30,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(input,-2)),5),-5)"
  },
  {
    "input": "input : list = [-4, -5, 1, 3, 5, 3]\noutput : list = [-4, -5]",
    "output": "generated_output : list = take([-4, -5, 1, 3, 5, 3],2)",
    "io_inp": [
      -4,
      -5,
      1,
      3,
      5,
      3
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -1, 5, -1, -3, 4]\noutput : list = [4, -3, -1, 5, -1]",
    "output": "generated_output : list = reverse(drop([-3, -1, 5, -1, -3, 4],1))",
    "io_inp": [
      -3,
      -1,
      5,
      -1,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -1,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [14, 12, 11]",
    "output": "generated_output : list = add_n(sub_n(add_n([4, 2, 1],5),-1),4)",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      14,
      12,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,5),-1),4)"
  },
  {
    "input": "input : list = [-5, -4, 1, -3]\noutput : list = [1, -3, -4, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(sort_des([-5, -4, 1, -3]),1)),21))",
    "io_inp": [
      -5,
      -4,
      1,
      -3
    ],
    "io_out": [
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(sort_des(input),1)),21))"
  },
  {
    "input": "input : list = [-3, 0, -4, 2, 3, 1]\noutput : list = [-3, -2, 1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(sub_n([-3, 0, -4, 2, 3, 1],-1)),29)))",
    "io_inp": [
      -3,
      0,
      -4,
      2,
      3,
      1
    ],
    "io_out": [
      -3,
      -2,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(sub_n(input,-1)),29)))"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-12, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(drop([-5, -3, 4],1),-3))))",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -12,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [-4, 5, 1, 2]\noutput : list = [-4, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, 1, 2])",
    "io_inp": [
      -4,
      5,
      1,
      2
    ],
    "io_out": [
      -4,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, 4, -4]\noutput : list = [-4, -3, -1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(reverse([-3, -1, 4, -4]),21))),50)",
    "io_inp": [
      -3,
      -1,
      4,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(reverse(input),21))),50)"
  },
  {
    "input": "input : list = [2, -3, 1, -2, -4]\noutput : list = [-9, -5, 7, 11, 15]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(mul_n([2, -3, 1, -2, -4],-4)),-1)))",
    "io_inp": [
      2,
      -3,
      1,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -5,
      7,
      11,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(mul_n(input,-4)),-1)))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-18, 24]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([4, -3]),2),3)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),2),3)"
  },
  {
    "input": "input : list = [-5, 4, 5, 0]\noutput : list = [0, -1, -5, -10]",
    "output": "generated_output : list = sort_des(sub_n([-5, 4, 5, 0],5))",
    "io_inp": [
      -5,
      4,
      5,
      0
    ],
    "io_out": [
      0,
      -1,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [2, 2, -2, -3, 0, 2]\noutput : list = [-1, 2, 4]",
    "output": "generated_output : list = sub_n(take(drop([2, 2, -2, -3, 0, 2],3),12),-2)",
    "io_inp": [
      2,
      2,
      -2,
      -3,
      0,
      2
    ],
    "io_out": [
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,3),12),-2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [1, 9]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n([0, -4],-2)),5),4))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n(input,-2)),5),4))"
  },
  {
    "input": "input : list = [3, 4, 2, -5]\noutput : list = [-5, 2, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(drop([3, 4, 2, -5],1))),25))",
    "io_inp": [
      3,
      4,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(drop(input,1))),25))"
  },
  {
    "input": "input : list = [0, 3, 4, 0]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(take([0, 3, 4, 0],2),-2),-5),-1))",
    "io_inp": [
      0,
      3,
      4,
      0
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(take(input,2),-2),-5),-1))"
  },
  {
    "input": "input : list = [5, 5, -1]\noutput : list = [5, 5, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc([5, 5, -1]),12))))",
    "io_inp": [
      5,
      5,
      -1
    ],
    "io_out": [
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc(input),12))))"
  },
  {
    "input": "input : list = [-3, -4, -5, 3, -2, -1]\noutput : list = [-12, -16, -20, 12, -8, -4]",
    "output": "generated_output : list = mul_n([-3, -4, -5, 3, -2, -1],4)",
    "io_inp": [
      -3,
      -4,
      -5,
      3,
      -2,
      -1
    ],
    "io_out": [
      -12,
      -16,
      -20,
      12,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [-1, -2, 5]",
    "output": "generated_output : list = reverse([5, -2, -1])",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-3, 1]",
    "output": "generated_output : list = add_n(mul_n(sort_des([0, 4]),-1),1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),-1),1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [10, -8]",
    "output": "generated_output : list = mul_n(reverse([4, -5]),-2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      10,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-3, -1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = drop([-3, -1, -4],1)",
    "io_inp": [
      -3,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [0, -7, -10]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(sort_asc([-2, 5, -5]),6)),-5))",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      0,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(sort_asc(input),6)),-5))"
  },
  {
    "input": "input : list = [-3, 4, -2, -2, -2, 4]\noutput : list = [-6, -6, 0]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(drop([-3, 4, -2, -2, -2, 4],3)),22)),4)",
    "io_inp": [
      -3,
      4,
      -2,
      -2,
      -2,
      4
    ],
    "io_out": [
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(drop(input,3)),22)),4)"
  },
  {
    "input": "input : list = [-1, -2, -2, 3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take([-1, -2, -2, 3],2)",
    "io_inp": [
      -1,
      -2,
      -2,
      3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(reverse([2, 0]),-2)),1))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(reverse(input),-2)),1))"
  },
  {
    "input": "input : list = [1, 3, -2, 4, -1, 0]\noutput : list = [8]",
    "output": "generated_output : list = take(take(reverse(mul_n(sort_asc([1, 3, -2, 4, -1, 0]),2)),1),28)",
    "io_inp": [
      1,
      3,
      -2,
      4,
      -1,
      0
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(sort_asc(input),2)),1),28)"
  },
  {
    "input": "input : list = [1, 2, -4, 5, -5]\noutput : list = [3, -7]",
    "output": "generated_output : list = add_n(take(take(drop([1, 2, -4, 5, -5],3),8),3),-2)",
    "io_inp": [
      1,
      2,
      -4,
      5,
      -5
    ],
    "io_out": [
      3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(input,3),8),3),-2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(sub_n([0, -4],-2),15))))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(sub_n(input,-2),15))))"
  },
  {
    "input": "input : list = [-2, 3, -4, -3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse(drop([-2, 3, -4, -3, -3],3)))),2)",
    "io_inp": [
      -2,
      3,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(drop(input,3)))),2)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [27, 0]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(mul_n([-1, -4],-3),3)),9),3)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      27,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(mul_n(input,-3),3)),9),3)"
  },
  {
    "input": "input : list = [4, 2, -5, -4, 1, -2]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(sub_n(take([4, 2, -5, -4, 1, -2],2),1),2)",
    "io_inp": [
      4,
      2,
      -5,
      -4,
      1,
      -2
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,2),1),2)"
  },
  {
    "input": "input : list = [5, 1, 3, -1, 5]\noutput : list = [5, 5, 3, 1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc([5, 1, 3, -1, 5]))))",
    "io_inp": [
      5,
      1,
      3,
      -1,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [3, 4, -3, 5]\noutput : list = [6, 5, 4, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sort_des([3, 4, -3, 5]),1))))",
    "io_inp": [
      3,
      4,
      -3,
      5
    ],
    "io_out": [
      6,
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-3, -1, -3, -2]\noutput : list = [1, 0, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(sub_n([-3, -1, -3, -2],3),5))",
    "io_inp": [
      -3,
      -1,
      -3,
      -2
    ],
    "io_out": [
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,3),5))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc([-1, -3])),23)))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc(input)),23)))"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [13, 7, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse([-1, -3, -5]),-1),1),3),-5)",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      13,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse(input),-1),1),3),-5)"
  },
  {
    "input": "input : list = [3, 2, -1, -2, -1, -4]\noutput : list = [13]",
    "output": "generated_output : list = add_n(take(sort_asc(mul_n(take([3, 2, -1, -2, -1, -4],1),3)),33),4)",
    "io_inp": [
      3,
      2,
      -1,
      -2,
      -1,
      -4
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(mul_n(take(input,1),3)),33),4)"
  },
  {
    "input": "input : list = [-1, 2, 3, -1, -5]\noutput : list = [3, 2, -1, -1, -5]",
    "output": "generated_output : list = sort_des([-1, 2, 3, -1, -5])",
    "io_inp": [
      -1,
      2,
      3,
      -1,
      -5
    ],
    "io_out": [
      3,
      2,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0, -3]\noutput : list = [8, 6, 2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sub_n([-2, 0, -3],1),-2))))",
    "io_inp": [
      -2,
      0,
      -3
    ],
    "io_out": [
      8,
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sub_n(input,1),-2))))"
  },
  {
    "input": "input : list = [0, -4, -4, 3, -5]\noutput : list = [-220, -200, -200, -120, -60]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sub_n([0, -4, -4, 3, -5],5)),-5),-5),-4)",
    "io_inp": [
      0,
      -4,
      -4,
      3,
      -5
    ],
    "io_out": [
      -220,
      -200,
      -200,
      -120,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sub_n(input,5)),-5),-5),-4)"
  },
  {
    "input": "input : list = [3, 3, 1, 1, -5, 5]\noutput : list = [5, 3, 3, 1, 1, -5]",
    "output": "generated_output : list = sort_des([3, 3, 1, 1, -5, 5])",
    "io_inp": [
      3,
      3,
      1,
      1,
      -5,
      5
    ],
    "io_out": [
      5,
      3,
      3,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-5, -3])))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse(sort_des([-1, 4]))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 0]))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-6, 2]",
    "output": "generated_output : list = add_n(sort_asc([-5, 3]),-1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-1, 5, 2, 4, -2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = drop([-1, 5, 2, 4, -2, 3],4)",
    "io_inp": [
      -1,
      5,
      2,
      4,
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -1, 4],1)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(sort_des([-4, 4]),6)),21))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(sort_des(input),6)),21))"
  },
  {
    "input": "input : list = [0, -5, -5, -2]\noutput : list = [3, 1, -2, -2]",
    "output": "generated_output : list = add_n(add_n(sort_des(sub_n(reverse([0, -5, -5, -2]),-3)),2),-2)",
    "io_inp": [
      0,
      -5,
      -5,
      -2
    ],
    "io_out": [
      3,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sub_n(reverse(input),-3)),2),-2)"
  },
  {
    "input": "input : list = [5, 5, 0, -3, -5]\noutput : list = [1, 6, 6]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(take([5, 5, 0, -3, -5],3)),-4),20),-5)",
    "io_inp": [
      5,
      5,
      0,
      -3,
      -5
    ],
    "io_out": [
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(take(input,3)),-4),20),-5)"
  },
  {
    "input": "input : list = [-5, -4, -2, -4, -4]\noutput : list = [3, 1, 1, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n([-5, -4, -2, -4, -4],-5))",
    "io_inp": [
      -5,
      -4,
      -2,
      -4,
      -4
    ],
    "io_out": [
      3,
      1,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 1, 5, 1, 3]\noutput : list = [-1, 3, -5, 3, 11]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(mul_n([-3, 1, 5, 1, 3],-2),4)),19),-1)",
    "io_inp": [
      -3,
      1,
      5,
      1,
      3
    ],
    "io_out": [
      -1,
      3,
      -5,
      3,
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(mul_n(input,-2),4)),19),-1)"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [-8, -9, -13]",
    "output": "generated_output : list = take(add_n(reverse(add_n(sort_asc([2, -3, 1]),-5)),-5),43)",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      -8,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(sort_asc(input),-5)),-5),43)"
  },
  {
    "input": "input : list = [1, 3, 1, 5, 3]\noutput : list = [4, 2, 2, 0, 0]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sort_asc([1, 3, 1, 5, 3]),5),-4)),35)",
    "io_inp": [
      1,
      3,
      1,
      5,
      3
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sort_asc(input),5),-4)),35)"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [1, 2, 3]",
    "output": "generated_output : list = mul_n(take(sub_n(take(sort_asc([-1, -2, 0]),13),-3),36),1)",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(sort_asc(input),13),-3),36),1)"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(drop([-1, 4, 2],1),-4),-5),2))",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(drop(input,1),-4),-5),2))"
  },
  {
    "input": "input : list = [-2, -5, -5, -1]\noutput : list = [-18, -18, -9, -6]",
    "output": "generated_output : list = reverse(take(add_n(mul_n(sort_des([-2, -5, -5, -1]),3),-3),10))",
    "io_inp": [
      -2,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -18,
      -18,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(sort_des(input),3),-3),10))"
  },
  {
    "input": "input : list = [-2, 3, 0, -5]\noutput : list = [0, -3, -5, -8]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(reverse([-2, 3, 0, -5]),-1),-5)))",
    "io_inp": [
      -2,
      3,
      0,
      -5
    ],
    "io_out": [
      0,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(reverse(input),-1),-5)))"
  },
  {
    "input": "input : list = [-4, 3, 1, 1, 4]\noutput : list = [4, 3, 1, 1, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-4, 3, 1, 1, 4])))",
    "io_inp": [
      -4,
      3,
      1,
      1,
      4
    ],
    "io_out": [
      4,
      3,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [1, 5, 0, -5]\noutput : list = [-2, 2, -3, -8]",
    "output": "generated_output : list = sub_n([1, 5, 0, -5],3)",
    "io_inp": [
      1,
      5,
      0,
      -5
    ],
    "io_out": [
      -2,
      2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, -12]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_des([1, 0])),-4),3),25)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_des(input)),-4),3),25)"
  },
  {
    "input": "input : list = [-3, 0, 3, 2, 4, 1]\noutput : list = [-33, 12, 27, 42, 57, 72]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(sort_des([-3, 0, 3, 2, 4, 1]),5)),-4),3)",
    "io_inp": [
      -3,
      0,
      3,
      2,
      4,
      1
    ],
    "io_out": [
      -33,
      12,
      27,
      42,
      57,
      72
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(sort_des(input),5)),-4),3)"
  },
  {
    "input": "input : list = [3, 3, 0, 2, -2]\noutput : list = [0, 2, 4, 5, 5]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sort_des([3, 3, 0, 2, -2]),3),-5)),33)",
    "io_inp": [
      3,
      3,
      0,
      2,
      -2
    ],
    "io_out": [
      0,
      2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sort_des(input),3),-5)),33)"
  },
  {
    "input": "input : list = [-4, -5, 2, -3, -4, -3]\noutput : list = [-9, -8, -8, -7, -7, -2]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(add_n([-4, -5, 2, -3, -4, -3],-1))),42),-3)",
    "io_inp": [
      -4,
      -5,
      2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -7,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(add_n(input,-1))),42),-3)"
  },
  {
    "input": "input : list = [-4, 2, 1, 0, 1, -3]\noutput : list = [-2, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(take([-4, 2, 1, 0, 1, -3],3),3))),-1)",
    "io_inp": [
      -4,
      2,
      1,
      0,
      1,
      -3
    ],
    "io_out": [
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(take(input,3),3))),-1)"
  },
  {
    "input": "input : list = [5, -3, 4, -5, 2, 4]\noutput : list = [-5, -3, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -3, 4, -5, 2, 4])",
    "io_inp": [
      5,
      -3,
      4,
      -5,
      2,
      4
    ],
    "io_out": [
      -5,
      -3,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [-20, 8, 8]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(add_n([-4, -4, 3],4),-2)),-4),28)",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      -20,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(add_n(input,4),-2)),-4),28)"
  },
  {
    "input": "input : list = [1, -4, 4, 5]\noutput : list = [5, 4, -4, 1]",
    "output": "generated_output : list = reverse([1, -4, 4, 5])",
    "io_inp": [
      1,
      -4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2, -2]\noutput : list = [2, 2, -2]",
    "output": "generated_output : list = take(sort_des(sort_des([2, 2, -2])),18)",
    "io_inp": [
      2,
      2,
      -2
    ],
    "io_out": [
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),18)"
  },
  {
    "input": "input : list = [-3, -2, 3, 0]\noutput : list = [-6, -5, -3, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n([-3, -2, 3, 0],-5)),-3),5)",
    "io_inp": [
      -3,
      -2,
      3,
      0
    ],
    "io_out": [
      -6,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(input,-5)),-3),5)"
  },
  {
    "input": "input : list = [-3, -3, -5, -4, 5, -2]\noutput : list = [11, 11, 15, 13, -5, 9]",
    "output": "generated_output : list = sub_n(mul_n([-3, -3, -5, -4, 5, -2],-2),-5)",
    "io_inp": [
      -3,
      -3,
      -5,
      -4,
      5,
      -2
    ],
    "io_out": [
      11,
      11,
      15,
      13,
      -5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),-5)"
  },
  {
    "input": "input : list = [-3, 2, 3, -4, -1]\noutput : list = [3, 4, 6, 9, 10]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc([-3, 2, 3, -4, -1]),3),-4))",
    "io_inp": [
      -3,
      2,
      3,
      -4,
      -1
    ],
    "io_out": [
      3,
      4,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(input),3),-4))"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take([-4, 4, 5],1),-1)",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(take([2, 5, -3],1)),3)))",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(take(input,1)),3)))"
  },
  {
    "input": "input : list = [2, -5, -1]\noutput : list = [-1, 3, 6]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(reverse([2, -5, -1]),4)),19))",
    "io_inp": [
      2,
      -5,
      -1
    ],
    "io_out": [
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(reverse(input),4)),19))"
  },
  {
    "input": "input : list = [1, 0, -2, -5, -4]\noutput : list = [2, 0, -4, -8, -10]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sort_des([1, 0, -2, -5, -4]),2))))",
    "io_inp": [
      1,
      0,
      -2,
      -5,
      -4
    ],
    "io_out": [
      2,
      0,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [-3, 0, 0]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_des([-3, 0, 0])))))",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(sub_n([-1, 1],-1),12)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),12)"
  },
  {
    "input": "input : list = [2, -1, 0]\noutput : list = [2, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(sort_asc([2, -1, 0])))))",
    "io_inp": [
      2,
      -1,
      0
    ],
    "io_out": [
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [7, 7, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([5, -5, 5])),-2)",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      7,
      7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-1, 5, 0, 5, -1, -5]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(take([-1, 5, 0, 5, -1, -5],1)),-2)),-4)",
    "io_inp": [
      -1,
      5,
      0,
      5,
      -1,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(take(input,1)),-2)),-4)"
  },
  {
    "input": "input : list = [3, -2, -4, -1, 1]\noutput : list = [5, 3, 1, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sub_n(sort_asc([3, -2, -4, -1, 1]),-1)),-1))",
    "io_inp": [
      3,
      -2,
      -4,
      -1,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sub_n(sort_asc(input),-1)),-1))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc([3, 0])",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, 3, -3, -3, -4]\noutput : list = [-2, -2, -2, -1, -1, 5]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(sort_asc([-4, -4, 3, -3, -3, -4]),-5)),-3),23)",
    "io_inp": [
      -4,
      -4,
      3,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(sort_asc(input),-5)),-3),23)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc([3, -3])",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, -4, 3, 5]\noutput : list = [5, 3, -1, -4, -4]",
    "output": "generated_output : list = sort_des([-1, -4, -4, 3, 5])",
    "io_inp": [
      -1,
      -4,
      -4,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5, -1, 0, 3, -4]\noutput : list = [15, 0, -5, -15, -20, -25]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(mul_n([-3, -5, -1, 0, 3, -4],1)),5)))",
    "io_inp": [
      -3,
      -5,
      -1,
      0,
      3,
      -4
    ],
    "io_out": [
      15,
      0,
      -5,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(mul_n(input,1)),5)))"
  },
  {
    "input": "input : list = [-4, -5, 1, -3, 4]\noutput : list = [3, 0, -4, -5, -6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(reverse([-4, -5, 1, -3, 4]))),-5),-4)",
    "io_inp": [
      -4,
      -5,
      1,
      -3,
      4
    ],
    "io_out": [
      3,
      0,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(reverse(input))),-5),-4)"
  },
  {
    "input": "input : list = [2, 5, -1, 1, 0, 0]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sub_n(take([2, 5, -1, 1, 0, 0],2),3)",
    "io_inp": [
      2,
      5,
      -1,
      1,
      0,
      0
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),3)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n([-3, -3],2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-6, -6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(reverse([-5, -5]),-2)),-3),1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(reverse(input),-2)),-3),1)"
  },
  {
    "input": "input : list = [2, 0, 4, -3, -5, -4]\noutput : list = [-23, -13, -3, 12, 17, 22]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sort_des([2, 0, 4, -3, -5, -4]),-5),-4)),1)",
    "io_inp": [
      2,
      0,
      4,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -23,
      -13,
      -3,
      12,
      17,
      22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sort_des(input),-5),-4)),1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-123, 102]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc([5, -4])),-5),5),2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -123,
      102
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc(input)),-5),5),2)"
  },
  {
    "input": "input : list = [-1, -4, 5, 3]\noutput : list = [-2, 1, -8, -6]",
    "output": "generated_output : list = sub_n(mul_n([-1, -4, 5, 3],-1),3)",
    "io_inp": [
      -1,
      -4,
      5,
      3
    ],
    "io_out": [
      -2,
      1,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),3)"
  },
  {
    "input": "input : list = [-5, 1, -3, 4, -1]\noutput : list = [-6, -4, -2, 0, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n([-5, 1, -3, 4, -1],5)),2),4)",
    "io_inp": [
      -5,
      1,
      -3,
      4,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(input,5)),2),4)"
  },
  {
    "input": "input : list = [4, 3, 1, -1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = drop([4, 3, 1, -1, 4],3)",
    "io_inp": [
      4,
      3,
      1,
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, -1, 3, 1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(take([-1, -1, 3, 1],2)))))",
    "io_inp": [
      -1,
      -1,
      3,
      1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(take(input,2)))))"
  },
  {
    "input": "input : list = [4, 3, 5, -1, 4]\noutput : list = [-4, -14, -2, -6, -4]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(sub_n([4, 3, 5, -1, 4],2),-5)),1),2)",
    "io_inp": [
      4,
      3,
      5,
      -1,
      4
    ],
    "io_out": [
      -4,
      -14,
      -2,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(sub_n(input,2),-5)),1),2)"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [8, 7, 9]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-1, -2, 0],1),-5),5)",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      8,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,1),-5),5)"
  },
  {
    "input": "input : list = [-5, 2, 2, -3, 5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 2, 2, -3, 5, 3],1)",
    "io_inp": [
      -5,
      2,
      2,
      -3,
      5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des([4, -5]),1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),1)"
  },
  {
    "input": "input : list = [-4, -1, 0, 4, -4]\noutput : list = [-4, -4, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc([-4, -1, 0, 4, -4]),4))))",
    "io_inp": [
      -4,
      -1,
      0,
      4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(take(take(take(add_n([0, 5],-5),8),22),9))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(add_n(input,-5),8),22),9))"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [-8, -1, -7]",
    "output": "generated_output : list = add_n([-5, 2, -4],-3)",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      -8,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 5, 0, 1, -3]\noutput : list = [-7, -6, -4, -3, 1]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(reverse([-2, 5, 0, 1, -3])),-4)),31)",
    "io_inp": [
      -2,
      5,
      0,
      1,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(reverse(input)),-4)),31)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-10, -2]",
    "output": "generated_output : list = mul_n([5, 1],-2)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, 3, -4, -2, 4]\noutput : list = [2, 3, 3, 8, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sub_n([3, 3, -4, -2, 4],4),2),-1)))",
    "io_inp": [
      3,
      3,
      -4,
      -2,
      4
    ],
    "io_out": [
      2,
      3,
      3,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sub_n(input,4),2),-1)))"
  },
  {
    "input": "input : list = [-2, -4, -1, 1, 2, -5]\noutput : list = [-5, -4, -2, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_des([-2, -4, -1, 1, 2, -5])))))",
    "io_inp": [
      -2,
      -4,
      -1,
      1,
      2,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, -1, 0, 5, -2]\noutput : list = [3, -2, -3, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(sub_n([-4, -1, 0, 5, -2],3),1))),2)",
    "io_inp": [
      -4,
      -1,
      0,
      5,
      -2
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(sub_n(input,3),1))),2)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-10, -10, -5]",
    "output": "generated_output : list = take(add_n(take(sub_n(add_n([-5, -5, 0],-4),-4),23),-5),13)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -10,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(add_n(input,-4),-4),23),-5),13)"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse([1, -2, 0]))",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, 4, -2, -1]\noutput : list = [-16, -4, -28, -24]",
    "output": "generated_output : list = mul_n(sub_n([1, 4, -2, -1],5),4)",
    "io_inp": [
      1,
      4,
      -2,
      -1
    ],
    "io_out": [
      -16,
      -4,
      -28,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),4)"
  },
  {
    "input": "input : list = [-4, 5, -5, -4, 2, -2]\noutput : list = [-8, 8]",
    "output": "generated_output : list = mul_n(drop([-4, 5, -5, -4, 2, -2],4),-4)",
    "io_inp": [
      -4,
      5,
      -5,
      -4,
      2,
      -2
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,4),-4)"
  },
  {
    "input": "input : list = [-3, 3, 3, 0, 1]\noutput : list = [-6, 0, 2, 6, 6]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sort_asc([-3, 3, 3, 0, 1]),2),18)),33)",
    "io_inp": [
      -3,
      3,
      3,
      0,
      1
    ],
    "io_out": [
      -6,
      0,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sort_asc(input),2),18)),33)"
  },
  {
    "input": "input : list = [2, 1, 4, -5, 0, -1]\noutput : list = [-8, -7, -12, -3, -6, -5]",
    "output": "generated_output : list = sub_n(take(reverse(take(sub_n([2, 1, 4, -5, 0, -1],3),26)),45),4)",
    "io_inp": [
      2,
      1,
      4,
      -5,
      0,
      -1
    ],
    "io_out": [
      -8,
      -7,
      -12,
      -3,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sub_n(input,3),26)),45),4)"
  },
  {
    "input": "input : list = [0, -4, 4, 0, -5, -3]\noutput : list = [-5, -4, -3, 0, 0, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(sort_des([0, -4, 4, 0, -5, -3])),7)))",
    "io_inp": [
      0,
      -4,
      4,
      0,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(sort_des(input)),7)))"
  },
  {
    "input": "input : list = [5, 4, 3, 5, 1]\noutput : list = [4, 3, 2, 4, 0]",
    "output": "generated_output : list = add_n([5, 4, 3, 5, 1],-1)",
    "io_inp": [
      5,
      4,
      3,
      5,
      1
    ],
    "io_out": [
      4,
      3,
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 1, 5, -1, 1]\noutput : list = [-4, -1, 1, 1, 5]",
    "output": "generated_output : list = sort_asc([-4, 1, 5, -1, 1])",
    "io_inp": [
      -4,
      1,
      5,
      -1,
      1
    ],
    "io_out": [
      -4,
      -1,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, -3, -1, 1, 0]\noutput : list = [0, 3, -3, -9, 6, 15]",
    "output": "generated_output : list = reverse(mul_n([5, 2, -3, -1, 1, 0],3))",
    "io_inp": [
      5,
      2,
      -3,
      -1,
      1,
      0
    ],
    "io_out": [
      0,
      3,
      -3,
      -9,
      6,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [3, 4, 0, 0, 3]\noutput : list = [0, 0, 3, 3, 4]",
    "output": "generated_output : list = sort_asc([3, 4, 0, 0, 3])",
    "io_inp": [
      3,
      4,
      0,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0, 2, 5, 2, 2]\noutput : list = [3, 3, 3, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(drop([-3, 0, 2, 5, 2, 2],2))),43),-1)",
    "io_inp": [
      -3,
      0,
      2,
      5,
      2,
      2
    ],
    "io_out": [
      3,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(drop(input,2))),43),-1)"
  },
  {
    "input": "input : list = [-2, -2, 2, -1, -4]\noutput : list = [-8, 4, 8, 8, 16]",
    "output": "generated_output : list = mul_n(sort_des([-2, -2, 2, -1, -4]),-4)",
    "io_inp": [
      -2,
      -2,
      2,
      -1,
      -4
    ],
    "io_out": [
      -8,
      4,
      8,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-2, -1, -4, -3]\noutput : list = [-5, -4, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc([-2, -1, -4, -3]),-1)",
    "io_inp": [
      -2,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-2, -2, -3, -2, -3, -3]\noutput : list = [-6, -6, -6, -7, -7, -7]",
    "output": "generated_output : list = reverse(add_n(take(add_n(sort_asc([-2, -2, -3, -2, -3, -3]),1),17),-5))",
    "io_inp": [
      -2,
      -2,
      -3,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(sort_asc(input),1),17),-5))"
  },
  {
    "input": "input : list = [-2, 0, -3, -3]\noutput : list = [-3, -5, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_des([-2, 0, -3, -3]),5))),2)",
    "io_inp": [
      -2,
      0,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_des(input),5))),2)"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(sort_asc([1, 2, -2])),-2)),-1)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(sort_asc(input)),-2)),-1)"
  },
  {
    "input": "input : list = [4, 2, -2, 3]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 2, -2, 3],1)",
    "io_inp": [
      4,
      2,
      -2,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 5, -3, -5, 0]\noutput : list = [1, 1, -4, -7, -9]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(sub_n([5, 5, -3, -5, 0],4)),14)))",
    "io_inp": [
      5,
      5,
      -3,
      -5,
      0
    ],
    "io_out": [
      1,
      1,
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(sub_n(input,4)),14)))"
  },
  {
    "input": "input : list = [3, 2, 4, 5]\noutput : list = [-27, -21, -9, -15]",
    "output": "generated_output : list = add_n(mul_n(take(reverse(mul_n([3, 2, 4, 5],-2)),15),3),3)",
    "io_inp": [
      3,
      2,
      4,
      5
    ],
    "io_out": [
      -27,
      -21,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(mul_n(input,-2)),15),3),3)"
  },
  {
    "input": "input : list = [3, 3, 2, 0]\noutput : list = [-12, -12, -9, -3]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(add_n([3, 3, 2, 0],-3),-3),1),-3),37)",
    "io_inp": [
      3,
      3,
      2,
      0
    ],
    "io_out": [
      -12,
      -12,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(add_n(input,-3),-3),1),-3),37)"
  },
  {
    "input": "input : list = [4, 1, 3, 1, 4, 2]\noutput : list = [3, 1, 4]",
    "output": "generated_output : list = reverse(take([4, 1, 3, 1, 4, 2],3))",
    "io_inp": [
      4,
      1,
      3,
      1,
      4,
      2
    ],
    "io_out": [
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [1, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_asc([-3, -3]),-1)),-3),38)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_asc(input),-1)),-3),38)"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [6, 10, 14]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc([1, -3, 5]),-4),-5)),30)",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      6,
      10,
      14
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc(input),-4),-5)),30)"
  },
  {
    "input": "input : list = [-1, 3, -5, 2]\noutput : list = [8, 7, 4, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(sort_des([-1, 3, -5, 2]),-3),2)))",
    "io_inp": [
      -1,
      3,
      -5,
      2
    ],
    "io_out": [
      8,
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(sort_des(input),-3),2)))"
  },
  {
    "input": "input : list = [4, 2, 5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(take([4, 2, 5],1)),1),27),2)",
    "io_inp": [
      4,
      2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(take(input,1)),1),27),2)"
  },
  {
    "input": "input : list = [4, 3, -3, -2, 4]\noutput : list = [8, 8, 7, 2, 1]",
    "output": "generated_output : list = add_n(sort_des([4, 3, -3, -2, 4]),4)",
    "io_inp": [
      4,
      3,
      -3,
      -2,
      4
    ],
    "io_out": [
      8,
      8,
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse([1, -1, 3])))",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [5, -2, 4, -4, 3, 4]\noutput : list = [10, 9, 9, 8, 3, 1]",
    "output": "generated_output : list = add_n(sort_des([5, -2, 4, -4, 3, 4]),5)",
    "io_inp": [
      5,
      -2,
      4,
      -4,
      3,
      4
    ],
    "io_out": [
      10,
      9,
      9,
      8,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [12, -8]",
    "output": "generated_output : list = sort_des(take(mul_n([-2, 3],4),8))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,4),8))"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [-2, 7, 13]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(mul_n([-2, -4, 1],-3),1),14)))",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      -2,
      7,
      13
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(mul_n(input,-3),1),14)))"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = sort_des([0, 3, -3])",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, 4, 0, 1]\noutput : list = [18, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(take([-1, -3, 4, 0, 1],2)),4),1),-3)",
    "io_inp": [
      -1,
      -3,
      4,
      0,
      1
    ],
    "io_out": [
      18,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(take(input,2)),4),1),-3)"
  },
  {
    "input": "input : list = [-2, -1, 5]\noutput : list = [7, 1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(drop([-2, -1, 5],1),-2)))",
    "io_inp": [
      -2,
      -1,
      5
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(drop(input,1),-2)))"
  },
  {
    "input": "input : list = [3, 1, -5, -2]\noutput : list = [-20, -60, -180, -120]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(reverse([3, 1, -5, -2])),-4),5),4)",
    "io_inp": [
      3,
      1,
      -5,
      -2
    ],
    "io_out": [
      -20,
      -60,
      -180,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(reverse(input)),-4),5),4)"
  },
  {
    "input": "input : list = [2, 0, -4, -1, 0, 4]\noutput : list = [-4, 0, 8, 2, 0, -8]",
    "output": "generated_output : list = mul_n([2, 0, -4, -1, 0, 4],-2)",
    "io_inp": [
      2,
      0,
      -4,
      -1,
      0,
      4
    ],
    "io_out": [
      -4,
      0,
      8,
      2,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, -4, -1, 5, 1]\noutput : list = [5, 1, -1, -4]",
    "output": "generated_output : list = sort_des(drop([3, -4, -1, 5, 1],1))",
    "io_inp": [
      3,
      -4,
      -1,
      5,
      1
    ],
    "io_out": [
      5,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [2, -5, 0, -1]\noutput : list = [-11, -7, -6, -4]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(sub_n([2, -5, 0, -1],5)),7),-4),3)",
    "io_inp": [
      2,
      -5,
      0,
      -1
    ],
    "io_out": [
      -11,
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(sub_n(input,5)),7),-4),3)"
  },
  {
    "input": "input : list = [0, 2, -3, 4, -2, -2]\noutput : list = [-1, -3, -5, -7, -7, -8]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(reverse([0, 2, -3, 4, -2, -2])),5)))",
    "io_inp": [
      0,
      2,
      -3,
      4,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(reverse(input)),5)))"
  },
  {
    "input": "input : list = [1, 4, -3, 1, 5, 3]\noutput : list = [-3, 1, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([1, 4, -3, 1, 5, 3])",
    "io_inp": [
      1,
      4,
      -3,
      1,
      5,
      3
    ],
    "io_out": [
      -3,
      1,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, 4, 0, -3]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take(take(take(drop([-4, 3, 4, 0, -3],1),19),25),1))",
    "io_inp": [
      -4,
      3,
      4,
      0,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(drop(input,1),19),25),1))"
  },
  {
    "input": "input : list = [0, -4, 3, 5, 0]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -4, 3, 5, 0],1)",
    "io_inp": [
      0,
      -4,
      3,
      5,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 3, 4, -1, -3]\noutput : list = [8, 7, 6, 3, 1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(add_n([2, 3, 4, -1, -3],1)))),3)",
    "io_inp": [
      2,
      3,
      4,
      -1,
      -3
    ],
    "io_out": [
      8,
      7,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(add_n(input,1)))),3)"
  },
  {
    "input": "input : list = [1, -2, -1, 0, 4]\noutput : list = [-30, -75, -60, -45, 15]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([1, -2, -1, 0, 4],3),5),3)",
    "io_inp": [
      1,
      -2,
      -1,
      0,
      4
    ],
    "io_out": [
      -30,
      -75,
      -60,
      -45,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,3),5),3)"
  },
  {
    "input": "input : list = [3, 0, 2, 1, -1, -4]\noutput : list = [20, 5, 0, -5, -10, -15]",
    "output": "generated_output : list = mul_n(sort_asc([3, 0, 2, 1, -1, -4]),-5)",
    "io_inp": [
      3,
      0,
      2,
      1,
      -1,
      -4
    ],
    "io_out": [
      20,
      5,
      0,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [0, -3, -4, 5, 4, 5]\noutput : list = [16, 16, 14, 6, 0, -2]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n([0, -3, -4, 5, 4, 5],-3)),2),38)",
    "io_inp": [
      0,
      -3,
      -4,
      5,
      4,
      5
    ],
    "io_out": [
      16,
      16,
      14,
      6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(input,-3)),2),38)"
  },
  {
    "input": "input : list = [3, -5, 2, 0, -1, 1]\noutput : list = [-5, -1, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_asc([3, -5, 2, 0, -1, 1]),24),19),6))",
    "io_inp": [
      3,
      -5,
      2,
      0,
      -1,
      1
    ],
    "io_out": [
      -5,
      -1,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_asc(input),24),19),6))"
  },
  {
    "input": "input : list = [-5, 1, 4, 4, 0, -3]\noutput : list = [-7, -4, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(drop([-5, 1, 4, 4, 0, -3],2)),4)",
    "io_inp": [
      -5,
      1,
      4,
      4,
      0,
      -3
    ],
    "io_out": [
      -7,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,2)),4)"
  },
  {
    "input": "input : list = [5, 5, -4, -4]\noutput : list = [-24, -24, 21, 21]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sub_n([5, 5, -4, -4],1),5)),4),5)",
    "io_inp": [
      5,
      5,
      -4,
      -4
    ],
    "io_out": [
      -24,
      -24,
      21,
      21
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sub_n(input,1),5)),4),5)"
  },
  {
    "input": "input : list = [3, 5, -4, -2]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(take([3, 5, -4, -2],2),2)",
    "io_inp": [
      3,
      5,
      -4,
      -2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(take(input,2),2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-16, -12]",
    "output": "generated_output : list = take(take(sort_asc(mul_n([-4, -3],4)),12),2)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -16,
      -12
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(input,4)),12),2)"
  },
  {
    "input": "input : list = [5, -5, 3, 1, -1, 5]\noutput : list = [10, 0, 8, 6, 4, 10]",
    "output": "generated_output : list = add_n([5, -5, 3, 1, -1, 5],5)",
    "io_inp": [
      5,
      -5,
      3,
      1,
      -1,
      5
    ],
    "io_out": [
      10,
      0,
      8,
      6,
      4,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [4, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, 4])",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 1, -2, -2, 0]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(reverse(take([-2, 1, -2, -2, 0],1)),30))",
    "io_inp": [
      -2,
      1,
      -2,
      -2,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(input,1)),30))"
  },
  {
    "input": "input : list = [3, -2, 4, -3]\noutput : list = [-68, -48, 52, 72]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(mul_n([3, -2, 4, -3],-5)),-3),1),-4)",
    "io_inp": [
      3,
      -2,
      4,
      -3
    ],
    "io_out": [
      -68,
      -48,
      52,
      72
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(mul_n(input,-5)),-3),1),-4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des([3, 0]))),3)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(input))),3)"
  },
  {
    "input": "input : list = [-2, 2, 3, 5, 2]\noutput : list = [2, 5, 3, 2, -2]",
    "output": "generated_output : list = reverse([-2, 2, 3, 5, 2])",
    "io_inp": [
      -2,
      2,
      3,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0, -1, 5, 1, 4]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(take(take([3, 0, -1, 5, 1, 4],3),21)),1)",
    "io_inp": [
      3,
      0,
      -1,
      5,
      1,
      4
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(input,3),21)),1)"
  },
  {
    "input": "input : list = [3, 0, -4, -5]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(add_n([3, 0, -4, -5],3),2),-2)),-1)",
    "io_inp": [
      3,
      0,
      -4,
      -5
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(add_n(input,3),2),-2)),-1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [3, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(sub_n([-1, -2],2),3),-4)))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(sub_n(input,2),3),-4)))"
  },
  {
    "input": "input : list = [3, -2, -5, 5, -3]\noutput : list = [5, 3, -2, -3, -5]",
    "output": "generated_output : list = sort_des([3, -2, -5, 5, -3])",
    "io_inp": [
      3,
      -2,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 3, -1, -5, -4, -5]\noutput : list = [2, 0, -4, -8, -7, -8]",
    "output": "generated_output : list = sub_n([5, 3, -1, -5, -4, -5],3)",
    "io_inp": [
      5,
      3,
      -1,
      -5,
      -4,
      -5
    ],
    "io_out": [
      2,
      0,
      -4,
      -8,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [-16, -18, -16]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(mul_n([-3, -4, -3],2),-1),4),9),-5)",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      -16,
      -18,
      -16
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(mul_n(input,2),-1),4),9),-5)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [-16, -8, -24]",
    "output": "generated_output : list = reverse(sub_n(mul_n([5, 1, 3],-4),4))",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      -16,
      -8,
      -24
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-4),4))"
  },
  {
    "input": "input : list = [-4, -5, 4, 4, 3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(drop([-4, -5, 4, 4, 3, -3],4))",
    "io_inp": [
      -4,
      -5,
      4,
      4,
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,4))"
  },
  {
    "input": "input : list = [-1, 5, 1, 2]\noutput : list = [2, -10, -2, -4]",
    "output": "generated_output : list = reverse(reverse(mul_n([-1, 5, 1, 2],-2)))",
    "io_inp": [
      -1,
      5,
      1,
      2
    ],
    "io_out": [
      2,
      -10,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [4, -2, 3, 5]\noutput : list = [7, 1, 6, 8]",
    "output": "generated_output : list = add_n(add_n([4, -2, 3, 5],-2),5)",
    "io_inp": [
      4,
      -2,
      3,
      5
    ],
    "io_out": [
      7,
      1,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),5)"
  },
  {
    "input": "input : list = [5, 4, -4, 0, 3]\noutput : list = [-12, -9, 15, 3, -6]",
    "output": "generated_output : list = take(add_n(mul_n([5, 4, -4, 0, 3],-3),3),26)",
    "io_inp": [
      5,
      4,
      -4,
      0,
      3
    ],
    "io_out": [
      -12,
      -9,
      15,
      3,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,-3),3),26)"
  },
  {
    "input": "input : list = [3, -4, -4, 0, -5, 4]\noutput : list = [-7, 3, 11]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(drop([3, -4, -4, 0, -5, 4],3)),2)),3)",
    "io_inp": [
      3,
      -4,
      -4,
      0,
      -5,
      4
    ],
    "io_out": [
      -7,
      3,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(drop(input,3)),2)),3)"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [0, -18, -6]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n([1, 5, -1],-3),3)),22)",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      0,
      -18,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(input,-3),3)),22)"
  },
  {
    "input": "input : list = [-2, 1, 4, 5, -5]\noutput : list = [5, 4, 1, -2, -5]",
    "output": "generated_output : list = sort_des([-2, 1, 4, 5, -5])",
    "io_inp": [
      -2,
      1,
      4,
      5,
      -5
    ],
    "io_out": [
      5,
      4,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = drop([-5, 0, 3],1)",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, -5, -1, -4, -2]\noutput : list = [21, 27, 18, 30, 21, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(add_n([5, -2, -5, -1, -4, -2],-4)),1),45),-3)",
    "io_inp": [
      5,
      -2,
      -5,
      -1,
      -4,
      -2
    ],
    "io_out": [
      21,
      27,
      18,
      30,
      21,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(add_n(input,-4)),1),45),-3)"
  },
  {
    "input": "input : list = [2, -1, -3, -4]\noutput : list = [8, -4, -12, -16]",
    "output": "generated_output : list = mul_n([2, -1, -3, -4],4)",
    "io_inp": [
      2,
      -1,
      -3,
      -4
    ],
    "io_out": [
      8,
      -4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [3, 1, 2]",
    "output": "generated_output : list = add_n([0, -2, -1],3)",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      3,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(add_n([2, 2],-1),13))),-1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(add_n(input,-1),13))),-1)"
  },
  {
    "input": "input : list = [-5, -5, 1, 1]\noutput : list = [-15, -15, 3, 3]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_asc([-5, -5, 1, 1]))),15),3)",
    "io_inp": [
      -5,
      -5,
      1,
      1
    ],
    "io_out": [
      -15,
      -15,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_asc(input))),15),3)"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [-7, -5, -4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sub_n([2, -1, 1],1)),-5)))",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      -7,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sub_n(input,1)),-5)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sort_asc([-4, 4]))),18),40)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sort_asc(input))),18),40)"
  },
  {
    "input": "input : list = [-4, 3, 2, 2, 2]\noutput : list = [0, 0, 0, 1, -6]",
    "output": "generated_output : list = reverse(take(add_n(add_n([-4, 3, 2, 2, 2],-4),2),23))",
    "io_inp": [
      -4,
      3,
      2,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      0,
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(input,-4),2),23))"
  },
  {
    "input": "input : list = [-5, 2, 4, 5, -1, 1]\noutput : list = [10, 9, 7, 6, 4, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n([-5, 2, 4, 5, -1, 1],-2)))),-3)",
    "io_inp": [
      -5,
      2,
      4,
      5,
      -1,
      1
    ],
    "io_out": [
      10,
      9,
      7,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n(input,-2)))),-3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [2, -6]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n([-1, 3],-2))),13)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(input,-2))),13)"
  },
  {
    "input": "input : list = [3, 2, 4, -1, 5]\noutput : list = [-6, -3, -2, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(add_n([3, 2, 4, -1, 5],-5)))))",
    "io_inp": [
      3,
      2,
      4,
      -1,
      5
    ],
    "io_out": [
      -6,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [1, 2, 1, 4, -5, 4]\noutput : list = [1, 4, -5, 4]",
    "output": "generated_output : list = drop([1, 2, 1, 4, -5, 4],2)",
    "io_inp": [
      1,
      2,
      1,
      4,
      -5,
      4
    ],
    "io_out": [
      1,
      4,
      -5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 3, 1, 5, 1]\noutput : list = [20, -12, -4, -20, -4]",
    "output": "generated_output : list = mul_n([-5, 3, 1, 5, 1],-4)",
    "io_inp": [
      -5,
      3,
      1,
      5,
      1
    ],
    "io_out": [
      20,
      -12,
      -4,
      -20,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [4, 0, 5, -2]\noutput : list = [2, -2, 3, -4]",
    "output": "generated_output : list = sub_n([4, 0, 5, -2],2)",
    "io_inp": [
      4,
      0,
      5,
      -2
    ],
    "io_out": [
      2,
      -2,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 3, -1, -2, -4]\noutput : list = [0, 8, 12, 28]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(drop([-4, 3, -1, -2, -4],1),-4))),4)",
    "io_inp": [
      -4,
      3,
      -1,
      -2,
      -4
    ],
    "io_out": [
      0,
      8,
      12,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(drop(input,1),-4))),4)"
  },
  {
    "input": "input : list = [-5, -5, -4, -4]\noutput : list = [-10, -10, -7, -7]",
    "output": "generated_output : list = add_n(mul_n(sub_n(reverse(sort_des([-5, -5, -4, -4])),-3),3),-4)",
    "io_inp": [
      -5,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -10,
      -10,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(reverse(sort_des(input)),-3),3),-4)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([3, -5])))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, 2, -4, -1, 1, 0]\noutput : list = [-2, 1, 2, 3, 4, 7]",
    "output": "generated_output : list = add_n(sort_asc(reverse([5, 2, -4, -1, 1, 0])),2)",
    "io_inp": [
      5,
      2,
      -4,
      -1,
      1,
      0
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(input)),2)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, 1, 5, -1, -2]\noutput : list = [-5, -2, -1, 1, 1, 5]",
    "output": "generated_output : list = sort_asc([-5, 1, 1, 5, -1, -2])",
    "io_inp": [
      -5,
      1,
      1,
      5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3, 0, -2, -3]\noutput : list = [-3, -2, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sort_asc([1, 3, 0, -2, -3])))))",
    "io_inp": [
      1,
      3,
      0,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [-13, -20]",
    "output": "generated_output : list = drop(add_n(add_n(add_n(add_n([-3, 2, -5],-4),-1),-5),-5),1)",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      -13,
      -20
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(add_n(add_n(input,-4),-1),-5),-5),1)"
  },
  {
    "input": "input : list = [3, -1, 4, 3, -2]\noutput : list = [-2, -1, 3, 3, 4]",
    "output": "generated_output : list = sort_asc([3, -1, 4, 3, -2])",
    "io_inp": [
      3,
      -1,
      4,
      3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, -3, -3]\noutput : list = [-1, 1, 0, 0]",
    "output": "generated_output : list = sub_n([-4, -2, -3, -3],-3)",
    "io_inp": [
      -4,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -1,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [3, -1]",
    "output": "generated_output : list = take(mul_n([-3, 1],-1),11)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),11)"
  },
  {
    "input": "input : list = [1, -5, 3]\noutput : list = [1, 7, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(add_n([1, -5, 3],4),-5),-2),5))",
    "io_inp": [
      1,
      -5,
      3
    ],
    "io_out": [
      1,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(add_n(input,4),-5),-2),5))"
  },
  {
    "input": "input : list = [5, -4, 5, 0, -3, -1]\noutput : list = [80, 240, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n(drop([5, -4, 5, 0, -3, -1],3),4),-4)),5)",
    "io_inp": [
      5,
      -4,
      5,
      0,
      -3,
      -1
    ],
    "io_out": [
      80,
      240,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(drop(input,3),4),-4)),5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc([-5, 2])",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [5, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-5, 5, -1])))",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [0, 2, 5]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = reverse(take(take(sort_asc(sort_asc([0, 2, 5])),14),11))",
    "io_inp": [
      0,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(sort_asc(input)),14),11))"
  },
  {
    "input": "input : list = [5, 4, 0, -4, 1, -2]\noutput : list = [35, 29, 11, 5, -7, -19]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n([5, 4, 0, -4, 1, -2],-3))),-2),5)",
    "io_inp": [
      5,
      4,
      0,
      -4,
      1,
      -2
    ],
    "io_out": [
      35,
      29,
      11,
      5,
      -7,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n(input,-3))),-2),5)"
  },
  {
    "input": "input : list = [-3, 3, -1, 1]\noutput : list = [30, 10, -10, -30]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(mul_n([-3, 3, -1, 1],-2)),5)))",
    "io_inp": [
      -3,
      3,
      -1,
      1
    ],
    "io_out": [
      30,
      10,
      -10,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(mul_n(input,-2)),5)))"
  },
  {
    "input": "input : list = [4, 1, -4]\noutput : list = [5, 2, -3]",
    "output": "generated_output : list = add_n(sub_n([4, 1, -4],3),4)",
    "io_inp": [
      4,
      1,
      -4
    ],
    "io_out": [
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),4)"
  },
  {
    "input": "input : list = [-5, -2, -2, -2]\noutput : list = [-11, -8, -8, -8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-5, -2, -2, -2],5),1))",
    "io_inp": [
      -5,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -11,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,5),1))"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [0, 7, 7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(add_n([2, -5, 2],2)),-5),2))",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      0,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(add_n(input,2)),-5),2))"
  },
  {
    "input": "input : list = [1, 1, 0, -1]\noutput : list = [1, 4, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des([1, 1, 0, -1]),3),4))",
    "io_inp": [
      1,
      1,
      0,
      -1
    ],
    "io_out": [
      1,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(input),3),4))"
  },
  {
    "input": "input : list = [-4, -1, -1, 2, -2]\noutput : list = [1, 1, 4, 0]",
    "output": "generated_output : list = add_n(drop([-4, -1, -1, 2, -2],1),2)",
    "io_inp": [
      -4,
      -1,
      -1,
      2,
      -2
    ],
    "io_out": [
      1,
      1,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-2, 4, -1, 5, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(drop(add_n(mul_n(take([-2, 4, -1, 5, -3],3),3),4),2))",
    "io_inp": [
      -2,
      4,
      -1,
      5,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(mul_n(take(input,3),3),4),2))"
  },
  {
    "input": "input : list = [-4, -3, 1, -4]\noutput : list = [-4, -4, -3, 1]",
    "output": "generated_output : list = take(sort_asc([-4, -3, 1, -4]),10)",
    "io_inp": [
      -4,
      -3,
      1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),10)"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [128, 8, 28]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n([-4, -5, 1],-5),-5),-2)),-4)",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      128,
      8,
      28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n(input,-5),-5),-2)),-4)"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(sort_asc([-1, -1, 0]),3),1),-3),-5)",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(sort_asc(input),3),1),-3),-5)"
  },
  {
    "input": "input : list = [-1, -5, -2, -2, 2]\noutput : list = [3, -1]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(drop([-1, -5, -2, -2, 2],2))),2),-1)",
    "io_inp": [
      -1,
      -5,
      -2,
      -2,
      2
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(drop(input,2))),2),-1)"
  },
  {
    "input": "input : list = [1, 4, -1, 2, -5, 2]\noutput : list = [-5, -1, 1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des([1, 4, -1, 2, -5, 2]))",
    "io_inp": [
      1,
      4,
      -1,
      2,
      -5,
      2
    ],
    "io_out": [
      -5,
      -1,
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-25, 0]",
    "output": "generated_output : list = reverse(sort_des(take(take(mul_n([-5, 0],5),8),7)))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -25,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(mul_n(input,5),8),7)))"
  },
  {
    "input": "input : list = [-3, 0, 4, 0]\noutput : list = [8, 4]",
    "output": "generated_output : list = sub_n(drop([-3, 0, 4, 0],2),-4)",
    "io_inp": [
      -3,
      0,
      4,
      0
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [-5, 3, 4, 0, 2, 0]\noutput : list = [20, 10, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(drop([-5, 3, 4, 0, 2, 0],2)))),5)",
    "io_inp": [
      -5,
      3,
      4,
      0,
      2,
      0
    ],
    "io_out": [
      20,
      10,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(drop(input,2)))),5)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [6, -4, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(sort_asc([2, -3, 3]),17))),-2)",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      6,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(sort_asc(input),17))),-2)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [32]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(take([-4, -2, 4],1),-4),-4)))",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      32
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(take(input,1),-4),-4)))"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = add_n(sort_asc([2, 1, 4]),-1)",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-5, 2, -1]\noutput : list = [-5, -1, 2]",
    "output": "generated_output : list = sort_asc([-5, 2, -1])",
    "io_inp": [
      -5,
      2,
      -1
    ],
    "io_out": [
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, -3, -4, -4]\noutput : list = [5, -1, -3, -4, -4]",
    "output": "generated_output : list = mul_n(mul_n([5, -1, -3, -4, -4],1),1)",
    "io_inp": [
      5,
      -1,
      -3,
      -4,
      -4
    ],
    "io_out": [
      5,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),1)"
  },
  {
    "input": "input : list = [1, 2, 3, 4, -5, 1]\noutput : list = [0, -1, -2, -3, -3, -9]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(sub_n([1, 2, 3, 4, -5, 1],-1))),5),42)",
    "io_inp": [
      1,
      2,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(sub_n(input,-1))),5),42)"
  },
  {
    "input": "input : list = [3, 0, 0, 0, 0, -1]\noutput : list = [3, 0, 0, 0, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc([3, 0, 0, 0, 0, -1]))",
    "io_inp": [
      3,
      0,
      0,
      0,
      0,
      -1
    ],
    "io_out": [
      3,
      0,
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des([3, 4])",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [-5, 1, 3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des([5, -3, 3]),4),4)),2)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des(input),4),4)),2)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des([-4, 0])",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, 4, -5, 4]\noutput : list = [-1, -1, 2, 8, 8]",
    "output": "generated_output : list = sub_n(sort_asc([-2, -5, 4, -5, 4]),-4)",
    "io_inp": [
      -2,
      -5,
      4,
      -5,
      4
    ],
    "io_out": [
      -1,
      -1,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [5, 3, -2, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(take([5, 3, -2, 2],1)))))",
    "io_inp": [
      5,
      3,
      -2,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [3, -2, 2, 2, 4]\noutput : list = [4, 2, 2, -2, 3]",
    "output": "generated_output : list = reverse(take(reverse(reverse([3, -2, 2, 2, 4])),16))",
    "io_inp": [
      3,
      -2,
      2,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(input)),16))"
  },
  {
    "input": "input : list = [-4, 4, -2, -2]\noutput : list = [-2, 0, 0, 6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des([-4, 4, -2, -2])),-2))",
    "io_inp": [
      -4,
      4,
      -2,
      -2
    ],
    "io_out": [
      -2,
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(input)),-2))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sub_n([5, 4],-1),-3)),-1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sub_n(input,-1),-3)),-1))"
  },
  {
    "input": "input : list = [-1, -2, -3, 5, 2]\noutput : list = [-28, -24]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(take([-1, -2, -3, 5, 2],2)),-1),-4),4)",
    "io_inp": [
      -1,
      -2,
      -3,
      5,
      2
    ],
    "io_out": [
      -28,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(take(input,2)),-1),-4),4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [7, 12]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([5, 0],-2)),5)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      7,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-2)),5)"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [-17, 3]",
    "output": "generated_output : list = add_n(mul_n(reverse(drop([5, 1, -3],1)),5),-2)",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      -17,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(drop(input,1)),5),-2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [5, 13]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sub_n([3, -5],-1),5)),4))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      5,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sub_n(input,-1),5)),4))"
  },
  {
    "input": "input : list = [0, -2, 1, 1, 3]\noutput : list = [1, -1, -1, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n([0, -2, 1, 1, 3],-2)))))",
    "io_inp": [
      0,
      -2,
      1,
      1,
      3
    ],
    "io_out": [
      1,
      -1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-3, 5, 4, 0, 2, 0]\noutput : list = [87, 72, 42, 12, 12, -33]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(mul_n([-3, 5, 4, 0, 2, 0],5),-4),3)))",
    "io_inp": [
      -3,
      5,
      4,
      0,
      2,
      0
    ],
    "io_out": [
      87,
      72,
      42,
      12,
      12,
      -33
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(mul_n(input,5),-4),3)))"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(reverse([-4, 2, 1]),-3),2),30))",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(reverse(input),-3),2),30))"
  },
  {
    "input": "input : list = [0, -3, 3, 3, -1, 4]\noutput : list = [9, 8, 8, 5, 4, 2]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(sort_asc([0, -3, 3, 3, -1, 4]),-2)),1),3)",
    "io_inp": [
      0,
      -3,
      3,
      3,
      -1,
      4
    ],
    "io_out": [
      9,
      8,
      8,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(sort_asc(input),-2)),1),3)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-15, 9]",
    "output": "generated_output : list = reverse(take(take(mul_n(reverse([5, -3]),-3),4),20))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -15,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(reverse(input),-3),4),20))"
  },
  {
    "input": "input : list = [1, 4, 1, -1, -4]\noutput : list = [2, 8, 2, -2, -8]",
    "output": "generated_output : list = mul_n([1, 4, 1, -1, -4],2)",
    "io_inp": [
      1,
      4,
      1,
      -1,
      -4
    ],
    "io_out": [
      2,
      8,
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [3, -2, 0, 5, -4]\noutput : list = [-25, 15, -1, -41, 31]",
    "output": "generated_output : list = take(sub_n(mul_n(take(mul_n([3, -2, 0, 5, -4],2),11),-4),1),13)",
    "io_inp": [
      3,
      -2,
      0,
      5,
      -4
    ],
    "io_out": [
      -25,
      15,
      -1,
      -41,
      31
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(mul_n(input,2),11),-4),1),13)"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [2, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, 2])",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, -4, -5, 0]\noutput : list = [20, 0, -5, -20, -25]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(sort_des([4, -1, -4, -5, 0]))),28),5)",
    "io_inp": [
      4,
      -1,
      -4,
      -5,
      0
    ],
    "io_out": [
      20,
      0,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(sort_des(input))),28),5)"
  },
  {
    "input": "input : list = [-4, 0, 2, 2]\noutput : list = [-6, -2, 0, 0]",
    "output": "generated_output : list = add_n(sub_n([-4, 0, 2, 2],4),2)",
    "io_inp": [
      -4,
      0,
      2,
      2
    ],
    "io_out": [
      -6,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),2)"
  },
  {
    "input": "input : list = [0, 4, 4, 3, 0, 5]\noutput : list = [0, -16, -16, -12, 0, -20]",
    "output": "generated_output : list = mul_n([0, 4, 4, 3, 0, 5],-4)",
    "io_inp": [
      0,
      4,
      4,
      3,
      0,
      5
    ],
    "io_out": [
      0,
      -16,
      -16,
      -12,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 4, -4]\noutput : list = [-5, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des([-1, 4, -4]),-1)))",
    "io_inp": [
      -1,
      4,
      -4
    ],
    "io_out": [
      -5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(input),-1)))"
  },
  {
    "input": "input : list = [-5, -1, 4]\noutput : list = [4, -1, -5]",
    "output": "generated_output : list = add_n(reverse(add_n([-5, -1, 4],1)),-1)",
    "io_inp": [
      -5,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,1)),-1)"
  },
  {
    "input": "input : list = [2, 3, 2, 4]\noutput : list = [2]",
    "output": "generated_output : list = take(take(sub_n(add_n(take([2, 3, 2, 4],1),5),5),24),20)",
    "io_inp": [
      2,
      3,
      2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(take(input,1),5),5),24),20)"
  },
  {
    "input": "input : list = [4, 1, 4, -3, 3, 4]\noutput : list = [-6, -9, -6, -13, -7, -6]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(add_n([4, 1, 4, -3, 3, 4],-4),2),1),21),3)",
    "io_inp": [
      4,
      1,
      4,
      -3,
      3,
      4
    ],
    "io_out": [
      -6,
      -9,
      -6,
      -13,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(add_n(input,-4),2),1),21),3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(sort_des([-5, 0])),-1)),29)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(sort_des(input)),-1)),29)"
  },
  {
    "input": "input : list = [2, 1, -1, 2, 1]\noutput : list = [0, -1, -3, 0, -1]",
    "output": "generated_output : list = sub_n([2, 1, -1, 2, 1],2)",
    "io_inp": [
      2,
      1,
      -1,
      2,
      1
    ],
    "io_out": [
      0,
      -1,
      -3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-2, -7]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(add_n([1, -4],1),1),-5),-3),-1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(add_n(input,1),1),-5),-3),-1)"
  },
  {
    "input": "input : list = [4, 5, 0, 2, -4, -3]\noutput : list = [30, 33, 18, 24]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(take([4, 5, 0, 2, -4, -3],4),2),-4),3),42)",
    "io_inp": [
      4,
      5,
      0,
      2,
      -4,
      -3
    ],
    "io_out": [
      30,
      33,
      18,
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(take(input,4),2),-4),3),42)"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [5, 6, 8]",
    "output": "generated_output : list = sub_n([2, 3, 5],-3)",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -3, 0]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -3, 0],1)",
    "io_inp": [
      -3,
      -3,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(add_n([3, -1],5)),23),1))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(add_n(input,5)),23),1))"
  },
  {
    "input": "input : list = [-4, -2, 4, 1, 0]\noutput : list = [9, 3, -15, -6, -3]",
    "output": "generated_output : list = mul_n(add_n([-4, -2, 4, 1, 0],1),-3)",
    "io_inp": [
      -4,
      -2,
      4,
      1,
      0
    ],
    "io_out": [
      9,
      3,
      -15,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-3)"
  },
  {
    "input": "input : list = [-3, -2, -5, -4, -1, 3]\noutput : list = [-5, -4, -3, -2, -1, 3]",
    "output": "generated_output : list = sort_asc([-3, -2, -5, -4, -1, 3])",
    "io_inp": [
      -3,
      -2,
      -5,
      -4,
      -1,
      3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 4, 0]\noutput : list = [6, 2, 0, -1]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(sort_des([-3, -2, 4, 0]),1)),38),2)",
    "io_inp": [
      -3,
      -2,
      4,
      0
    ],
    "io_out": [
      6,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(sort_des(input),1)),38),2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(reverse([2, -1])),-4)))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-2, 1, -5, 2, -4, 0]\noutput : list = [0, -4, 2, -5, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, -5, 2, -4, 0])",
    "io_inp": [
      -2,
      1,
      -5,
      2,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      2,
      -5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, -4, 0]\noutput : list = [-12, -4, 0, 16]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n([1, 3, -4, 0],-1)),4))",
    "io_inp": [
      1,
      3,
      -4,
      0
    ],
    "io_out": [
      -12,
      -4,
      0,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(input,-1)),4))"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [-6, -4]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(drop([-1, -4, -2],1),-2))),1)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(drop(input,1),-2))),1)"
  },
  {
    "input": "input : list = [-5, -4, -4, 5]\noutput : list = [-1, -2, -2, -11]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(sub_n([-5, -4, -4, 5],-5),5),29),-4),-1)",
    "io_inp": [
      -5,
      -4,
      -4,
      5
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(sub_n(input,-5),5),29),-4),-1)"
  },
  {
    "input": "input : list = [-1, 2, 2, -2, -5]\noutput : list = [-5, -2, -1, 2, 2]",
    "output": "generated_output : list = mul_n(sort_asc([-1, 2, 2, -2, -5]),1)",
    "io_inp": [
      -1,
      2,
      2,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [0, -2, 2, 3, 2, -1]\noutput : list = [-6, -5, -4, -2, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sort_asc([0, -2, 2, 3, 2, -1]),4))))",
    "io_inp": [
      0,
      -2,
      2,
      3,
      2,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(add_n([-2, -2],-2)),3)),4)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(add_n(input,-2)),3)),4)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-85, -35, -70]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(add_n([5, -5, 2],5),2),-5),24),-5)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -85,
      -35,
      -70
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(add_n(input,5),2),-5),24),-5)"
  },
  {
    "input": "input : list = [3, -2, 0, 1, -1]\noutput : list = [-9, -3, -6, -12, 3]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(sub_n([3, -2, 0, 1, -1],1),1),-1)),-3)",
    "io_inp": [
      3,
      -2,
      0,
      1,
      -1
    ],
    "io_out": [
      -9,
      -3,
      -6,
      -12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(sub_n(input,1),1),-1)),-3)"
  },
  {
    "input": "input : list = [4, 2, 3, -5, 4, 4]\noutput : list = [-12, -5, -4, -3, -3, -3]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n([4, 2, 3, -5, 4, 4],2),-5)),11))",
    "io_inp": [
      4,
      2,
      3,
      -5,
      4,
      4
    ],
    "io_out": [
      -12,
      -5,
      -4,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n(input,2),-5)),11))"
  },
  {
    "input": "input : list = [-3, 1, 5, 1, 0]\noutput : list = [10, 6, 6, 5, 2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(sort_asc([-3, 1, 5, 1, 0]),11),-5)))",
    "io_inp": [
      -3,
      1,
      5,
      1,
      0
    ],
    "io_out": [
      10,
      6,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(sort_asc(input),11),-5)))"
  },
  {
    "input": "input : list = [2, -1, 1, -5, 2, -3]\noutput : list = [-11, -9, -7, -5, -4, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(add_n([2, -1, 1, -5, 2, -3],-1),-2)),-5),-2)",
    "io_inp": [
      2,
      -1,
      1,
      -5,
      2,
      -3
    ],
    "io_out": [
      -11,
      -9,
      -7,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(add_n(input,-1),-2)),-5),-2)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des([-2, 3])",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, -1, 1]\noutput : list = [-6, -3, 3, 6]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(sort_des([2, -2, -1, 1]))),11),-3)",
    "io_inp": [
      2,
      -2,
      -1,
      1
    ],
    "io_out": [
      -6,
      -3,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(sort_des(input))),11),-3)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(add_n([2, 5],1))),2),23)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(add_n(input,1))),2),23)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse([-2, -3])",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0, 3]\noutput : list = [-6, 0, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(mul_n([3, 0, 3],-1)),-3),20),-2)",
    "io_inp": [
      3,
      0,
      3
    ],
    "io_out": [
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(mul_n(input,-1)),-3),20),-2)"
  },
  {
    "input": "input : list = [-1, 1, -4, 3, -3]\noutput : list = [-4, -3, -1, 1, 3]",
    "output": "generated_output : list = reverse(sort_des([-1, 1, -4, 3, -3]))",
    "io_inp": [
      -1,
      1,
      -4,
      3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [1, -3, 4, 4]\noutput : list = [-3, 1, 4, 4]",
    "output": "generated_output : list = take(sort_asc(take(reverse(sort_asc([1, -3, 4, 4])),14)),29)",
    "io_inp": [
      1,
      -3,
      4,
      4
    ],
    "io_out": [
      -3,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(sort_asc(input)),14)),29)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-24, -22]",
    "output": "generated_output : list = mul_n(add_n(add_n([-5, -4],-5),-2),2)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -24,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-5),-2),2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc([4, 2])",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, 2, -1, 4]\noutput : list = [-6, -4, -1, -4, 1]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(sub_n([-3, -1, 2, -1, 4],2),-2))),-1)",
    "io_inp": [
      -3,
      -1,
      2,
      -1,
      4
    ],
    "io_out": [
      -6,
      -4,
      -1,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(sub_n(input,2),-2))),-1)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [-3, 0, 3]",
    "output": "generated_output : list = sort_asc(take(take(reverse(mul_n([0, 3, -3],1)),13),29))",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(mul_n(input,1)),13),29))"
  },
  {
    "input": "input : list = [-3, 0, 0, 4]\noutput : list = [-30, 0, 0, 40]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(reverse([-3, 0, 0, 4]),5)),2))",
    "io_inp": [
      -3,
      0,
      0,
      4
    ],
    "io_out": [
      -30,
      0,
      0,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(reverse(input),5)),2))"
  },
  {
    "input": "input : list = [-2, -3, 3, 4, 5]\noutput : list = [7, 6, 5, 0, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(sort_asc([-2, -3, 3, 4, 5]))),-2))",
    "io_inp": [
      -2,
      -3,
      3,
      4,
      5
    ],
    "io_out": [
      7,
      6,
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [5, 1, 3, 1, 2]\noutput : list = [5, 3, 2, 1, 1]",
    "output": "generated_output : list = sort_des(sort_asc([5, 1, 3, 1, 2]))",
    "io_inp": [
      5,
      1,
      3,
      1,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 1, -3, 3]\noutput : list = [-8, -4, 0, 4]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(sub_n([-1, 1, -3, 3],2),-1))),2)",
    "io_inp": [
      -1,
      1,
      -3,
      3
    ],
    "io_out": [
      -8,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(sub_n(input,2),-1))),2)"
  },
  {
    "input": "input : list = [-2, -3, 4, -2, -4]\noutput : list = [1, 3, 9, 2, 3]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(add_n([-2, -3, 4, -2, -4],-2),2),29),-5))",
    "io_inp": [
      -2,
      -3,
      4,
      -2,
      -4
    ],
    "io_out": [
      1,
      3,
      9,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(add_n(input,-2),2),29),-5))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [3, 4]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n([-3, -4],-2)),5),7)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(input,-2)),5),7)"
  },
  {
    "input": "input : list = [5, 1, -2, 3, 2]\noutput : list = [2, 3, -2, 1, 5]",
    "output": "generated_output : list = reverse([5, 1, -2, 3, 2])",
    "io_inp": [
      5,
      1,
      -2,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-11, -9, -7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([2, 0, -2]),-4),5)",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -11,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),-4),5)"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n(take([-1, -1, 0],1),-5),-5)),1)",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(take(input,1),-5),-5)),1)"
  },
  {
    "input": "input : list = [5, -5, 0, -5, -1]\noutput : list = [-6, -6, -2, -1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([5, -5, 0, -5, -1]),1))",
    "io_inp": [
      5,
      -5,
      0,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [2, 3, 1, -4]\noutput : list = [-5, 0, 1, 2]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(sort_asc([2, 3, 1, -4])),-1)),4)",
    "io_inp": [
      2,
      3,
      1,
      -4
    ],
    "io_out": [
      -5,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(sort_asc(input)),-1)),4)"
  },
  {
    "input": "input : list = [0, 4, 1, -5, 1, -3]\noutput : list = [-8, -20, -11, 7, -11, 1]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(mul_n([0, 4, 1, -5, 1, -3],-3),4),1),3),2)",
    "io_inp": [
      0,
      4,
      1,
      -5,
      1,
      -3
    ],
    "io_out": [
      -8,
      -20,
      -11,
      7,
      -11,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(mul_n(input,-3),4),1),3),2)"
  },
  {
    "input": "input : list = [2, -2, -5, -5, 1, -1]\noutput : list = [-20, -4, 8, 8, -16, -8]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n([2, -2, -5, -5, 1, -1],5),1),-4),-3),-4)",
    "io_inp": [
      2,
      -2,
      -5,
      -5,
      1,
      -1
    ],
    "io_out": [
      -20,
      -4,
      8,
      8,
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n(input,5),1),-4),-3),-4)"
  },
  {
    "input": "input : list = [-5, 5, -5]\noutput : list = [-25, 25, -25]",
    "output": "generated_output : list = mul_n([-5, 5, -5],5)",
    "io_inp": [
      -5,
      5,
      -5
    ],
    "io_out": [
      -25,
      25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-4, -1, 0, 1]\noutput : list = [-9, -10, -11, -14]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_asc([-4, -1, 0, 1]),-5)),3),-2)",
    "io_inp": [
      -4,
      -1,
      0,
      1
    ],
    "io_out": [
      -9,
      -10,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_asc(input),-5)),3),-2)"
  },
  {
    "input": "input : list = [4, 1, -3, -3]\noutput : list = [4, 4, 8, 11]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(reverse([4, 1, -3, -3])),-5),10),-2)",
    "io_inp": [
      4,
      1,
      -3,
      -3
    ],
    "io_out": [
      4,
      4,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(reverse(input)),-5),10),-2)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, -9]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(mul_n([3, 0],-3)))))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [-1, 0, 4]\noutput : list = [14, 10, 9]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(sub_n([-1, 0, 4],-5),-5))),22)",
    "io_inp": [
      -1,
      0,
      4
    ],
    "io_out": [
      14,
      10,
      9
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(sub_n(input,-5),-5))),22)"
  },
  {
    "input": "input : list = [3, -2, 5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(drop([3, -2, 5, -1],2)))),1)",
    "io_inp": [
      3,
      -2,
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(drop(input,2)))),1)"
  },
  {
    "input": "input : list = [-1, -5, -5, 2, 1, 3]\noutput : list = [-5, -5, -1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(sort_des([-1, -5, -5, 2, 1, 3]))),12))",
    "io_inp": [
      -1,
      -5,
      -5,
      2,
      1,
      3
    ],
    "io_out": [
      -5,
      -5,
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(sort_des(input))),12))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = add_n(take(reverse(add_n(reverse([-5, 5]),4)),27),-4)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(add_n(reverse(input),4)),27),-4)"
  },
  {
    "input": "input : list = [1, -5, 4]\noutput : list = [5, 2, -4]",
    "output": "generated_output : list = sort_des(reverse(add_n([1, -5, 4],1)))",
    "io_inp": [
      1,
      -5,
      4
    ],
    "io_out": [
      5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,1)))"
  },
  {
    "input": "input : list = [-4, 5, 2, -1]\noutput : list = [-125, -50, 25, 100]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des([-4, 5, 2, -1]),7),5),-5)",
    "io_inp": [
      -4,
      5,
      2,
      -1
    ],
    "io_out": [
      -125,
      -50,
      25,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(input),7),5),-5)"
  },
  {
    "input": "input : list = [0, -1, -2, 2, 2]\noutput : list = [-50, -25, 0, 50, 50]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([0, -1, -2, 2, 2]),5),5)",
    "io_inp": [
      0,
      -1,
      -2,
      2,
      2
    ],
    "io_out": [
      -50,
      -25,
      0,
      50,
      50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),5),5)"
  },
  {
    "input": "input : list = [1, 1, 4, 5]\noutput : list = [-3, -3, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(sort_des([1, 1, 4, 5]),7))),-4)",
    "io_inp": [
      1,
      1,
      4,
      5
    ],
    "io_out": [
      -3,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(sort_des(input),7))),-4)"
  },
  {
    "input": "input : list = [0, -3, 0, 3, 3, -1]\noutput : list = [-2, 2, 2, -1, -4, -1]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(reverse([0, -3, 0, 3, 3, -1]),1)),45))",
    "io_inp": [
      0,
      -3,
      0,
      3,
      3,
      -1
    ],
    "io_out": [
      -2,
      2,
      2,
      -1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(reverse(input),1)),45))"
  },
  {
    "input": "input : list = [5, 5, 0, 2, 4]\noutput : list = [23]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des(mul_n([5, 5, 0, 2, 4],5)),1)),-2)",
    "io_inp": [
      5,
      5,
      0,
      2,
      4
    ],
    "io_out": [
      23
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(mul_n(input,5)),1)),-2)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(add_n([-4, -4],-3)))))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [5, 5, 4, 4]\noutput : list = [3, 3, 2, 2]",
    "output": "generated_output : list = reverse(sub_n(reverse([5, 5, 4, 4]),2))",
    "io_inp": [
      5,
      5,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),2))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc([-4, -1])",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, -4]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -4])",
    "io_inp": [
      5,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 1, 1]\noutput : list = [8, 5, 5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sub_n([4, 1, 1],-4)))))",
    "io_inp": [
      4,
      1,
      1
    ],
    "io_out": [
      8,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [-3, -7, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des([-1, 3, -1])),5),-2),1)",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des(input)),5),-2),1)"
  },
  {
    "input": "input : list = [-5, 3, 3]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(add_n(take([-5, 3, 3],1),1))",
    "io_inp": [
      -5,
      3,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(input,1),1))"
  },
  {
    "input": "input : list = [2, 1, -2, 1, 2]\noutput : list = [0, -3, -3, -4, -4]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sort_asc([2, 1, -2, 1, 2]),-2))),-1)",
    "io_inp": [
      2,
      1,
      -2,
      1,
      2
    ],
    "io_out": [
      0,
      -3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sort_asc(input),-2))),-1)"
  },
  {
    "input": "input : list = [2, 2, 3, 5, 5, -5]\noutput : list = [15, 15, 9, 6, -15]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(drop([2, 2, 3, 5, 5, -5],1)),31),3))",
    "io_inp": [
      2,
      2,
      3,
      5,
      5,
      -5
    ],
    "io_out": [
      15,
      15,
      9,
      6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(drop(input,1)),31),3))"
  },
  {
    "input": "input : list = [0, 2, 0, -4, 0]\noutput : list = [4, 2, 2, 2, -2]",
    "output": "generated_output : list = add_n(sort_des(reverse([0, 2, 0, -4, 0])),2)",
    "io_inp": [
      0,
      2,
      0,
      -4,
      0
    ],
    "io_out": [
      4,
      2,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc([4, -5])",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, -3, -3, 2]\noutput : list = [-9, -6, -9, -9, 6]",
    "output": "generated_output : list = take(mul_n([-3, -2, -3, -3, 2],3),11)",
    "io_inp": [
      -3,
      -2,
      -3,
      -3,
      2
    ],
    "io_out": [
      -9,
      -6,
      -9,
      -9,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),11)"
  },
  {
    "input": "input : list = [-2, 1, -2, -3, 3]\noutput : list = [-9, -21, -9, -5, -29]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(add_n([-2, 1, -2, -3, 3],4),18),-4),1),-2)",
    "io_inp": [
      -2,
      1,
      -2,
      -3,
      3
    ],
    "io_out": [
      -9,
      -21,
      -9,
      -5,
      -29
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(add_n(input,4),18),-4),1),-2)"
  },
  {
    "input": "input : list = [0, -1, 2, 1]\noutput : list = [-1, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_des([0, -1, 2, 1])))))",
    "io_inp": [
      0,
      -1,
      2,
      1
    ],
    "io_out": [
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, 2, -2, -2, 4]\noutput : list = [8, 8, 9, 12, 14]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(reverse([-1, 2, -2, -2, 4]))),5),5)",
    "io_inp": [
      -1,
      2,
      -2,
      -2,
      4
    ],
    "io_out": [
      8,
      8,
      9,
      12,
      14
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(reverse(input))),5),5)"
  },
  {
    "input": "input : list = [4, 3, 4, -4, 5, -2]\noutput : list = [-2, -3, -3, -4, -9, -11]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sub_n([4, 3, 4, -4, 5, -2],1),1),5),10))",
    "io_inp": [
      4,
      3,
      4,
      -4,
      5,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -4,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sub_n(input,1),1),5),10))"
  },
  {
    "input": "input : list = [-2, 1, 1, 2, 0]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n(take(reverse([-2, 1, 1, 2, 0]),2),-1)",
    "io_inp": [
      -2,
      1,
      1,
      2,
      0
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),2),-1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-9, -6]",
    "output": "generated_output : list = add_n(add_n(sub_n(take(mul_n([4, 3],-3),14),1),3),1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(take(mul_n(input,-3),14),1),3),1)"
  },
  {
    "input": "input : list = [-4, -3, 2, -3]\noutput : list = [-3, 2, -3]",
    "output": "generated_output : list = drop([-4, -3, 2, -3],1)",
    "io_inp": [
      -4,
      -3,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 0, 2, -1]\noutput : list = [-2, 0, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n([2, 0, 2, -1],2))))",
    "io_inp": [
      2,
      0,
      2,
      -1
    ],
    "io_out": [
      -2,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(input,2))))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [20]",
    "output": "generated_output : list = drop(mul_n(mul_n([0, 5],-1),-4),1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(input,-1),-4),1)"
  },
  {
    "input": "input : list = [-2, -1, 2, 1, -1, -2]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, -1, 2, 1, -1, -2],1),9)",
    "io_inp": [
      -2,
      -1,
      2,
      1,
      -1,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),9)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [7, 9]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(sort_asc([1, 3]),5),1),2),36)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(sort_asc(input),5),1),2),36)"
  },
  {
    "input": "input : list = [-4, 5, -5, -5, -3, 2]\noutput : list = [-2, -2, -1, 0, 5, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n([-4, 5, -5, -5, -3, 2],-3))))",
    "io_inp": [
      -4,
      5,
      -5,
      -5,
      -3,
      2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(input,-3))))"
  },
  {
    "input": "input : list = [-5, 5, 1, 1]\noutput : list = [-10, 10, 2, 2]",
    "output": "generated_output : list = take(mul_n([-5, 5, 1, 1],2),12)",
    "io_inp": [
      -5,
      5,
      1,
      1
    ],
    "io_out": [
      -10,
      10,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),12)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(mul_n(drop([-5, 5, 1],1),-1),8),3))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(mul_n(drop(input,1),-1),8),3))"
  },
  {
    "input": "input : list = [4, -2, 3, 1]\noutput : list = [3, 6, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(sort_asc([4, -2, 3, 1])))),5)",
    "io_inp": [
      4,
      -2,
      3,
      1
    ],
    "io_out": [
      3,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [-2, -2, -2, 4, 1, 3]\noutput : list = [-2, -2, -2, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des([-2, -2, -2, 4, 1, 3]),24))))",
    "io_inp": [
      -2,
      -2,
      -2,
      4,
      1,
      3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des(input),24))))"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [1, -1, -5]",
    "output": "generated_output : list = sort_des(reverse([1, -5, -1]))",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 0, 2, 0, 4]\noutput : list = [11, 3, 7, 3, -7]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(mul_n([-5, 0, 2, 0, 4],2)),10),3),1)",
    "io_inp": [
      -5,
      0,
      2,
      0,
      4
    ],
    "io_out": [
      11,
      3,
      7,
      3,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(mul_n(input,2)),10),3),1)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(add_n([3, 3],1),1)),-4))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(add_n(input,1),1)),-4))"
  },
  {
    "input": "input : list = [-1, -3, 5, -3]\noutput : list = [0, -6, -8, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([-1, -3, 5, -3]),5))",
    "io_inp": [
      -1,
      -3,
      5,
      -3
    ],
    "io_out": [
      0,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [3, -1, -4, -1]\noutput : list = [6, 2, -1, 2]",
    "output": "generated_output : list = sub_n(mul_n([3, -1, -4, -1],1),-3)",
    "io_inp": [
      3,
      -1,
      -4,
      -1
    ],
    "io_out": [
      6,
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-3)"
  },
  {
    "input": "input : list = [4, 5, -2, -1, 0, -4]\noutput : list = [10, 9, 5, 4, 3, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n([4, 5, -2, -1, 0, -4],3),4))),2)",
    "io_inp": [
      4,
      5,
      -2,
      -1,
      0,
      -4
    ],
    "io_out": [
      10,
      9,
      5,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n(input,3),4))),2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, 1, 1, 3]\noutput : list = [1, -6, -2, -2, 0]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n([4, -3, 1, 1, 3],-2),1)))",
    "io_inp": [
      4,
      -3,
      1,
      1,
      3
    ],
    "io_out": [
      1,
      -6,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(input,-2),1)))"
  },
  {
    "input": "input : list = [-3, -5, 0, 1, 3, 4]\noutput : list = [7, 6, 4, 3, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sort_des([-3, -5, 0, 1, 3, 4]),22),22),-3))",
    "io_inp": [
      -3,
      -5,
      0,
      1,
      3,
      4
    ],
    "io_out": [
      7,
      6,
      4,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sort_des(input),22),22),-3))"
  },
  {
    "input": "input : list = [3, -3, -3, 5, -3]\noutput : list = [3, -15, -15, -15]",
    "output": "generated_output : list = mul_n(drop(sub_n(add_n(sort_des([3, -3, -3, 5, -3]),1),3),1),3)",
    "io_inp": [
      3,
      -3,
      -3,
      5,
      -3
    ],
    "io_out": [
      3,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(add_n(sort_des(input),1),3),1),3)"
  },
  {
    "input": "input : list = [-4, 5, -5, 2, 2]\noutput : list = [4, 1, 1, -5, -6]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des([-4, 5, -5, 2, 2]),-1))))",
    "io_inp": [
      -4,
      5,
      -5,
      2,
      2
    ],
    "io_out": [
      4,
      1,
      1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [-1, -1, 2, -5, 2, -3]\noutput : list = [-7, -2, -9, -2, -5]",
    "output": "generated_output : list = take(take(add_n(sub_n(reverse([-1, -1, 2, -5, 2, -3]),5),1),9),5)",
    "io_inp": [
      -1,
      -1,
      2,
      -5,
      2,
      -3
    ],
    "io_out": [
      -7,
      -2,
      -9,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(reverse(input),5),1),9),5)"
  },
  {
    "input": "input : list = [3, 4, 1, 4, -5, -2]\noutput : list = [24, 24, 18, 6, -12, -30]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(reverse([3, 4, 1, 4, -5, -2]),2),1)),3)",
    "io_inp": [
      3,
      4,
      1,
      4,
      -5,
      -2
    ],
    "io_out": [
      24,
      24,
      18,
      6,
      -12,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(reverse(input),2),1)),3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sort_asc(add_n(add_n([-5, 0],-4),2))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,-4),2))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(add_n([-4, -1],1)))))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(add_n(input,1)))))"
  },
  {
    "input": "input : list = [1, -5, -2, -5]\noutput : list = [-2, -8, -8]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(drop([1, -5, -2, -5],1),2))),-2)",
    "io_inp": [
      1,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(drop(input,1),2))),-2)"
  },
  {
    "input": "input : list = [0, -3, 5, 5, 5, -1]\noutput : list = [2, -10, 22, 22, 22, -2]",
    "output": "generated_output : list = add_n(take(mul_n([0, -3, 5, 5, 5, -1],4),10),2)",
    "io_inp": [
      0,
      -3,
      5,
      5,
      5,
      -1
    ],
    "io_out": [
      2,
      -10,
      22,
      22,
      22,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,4),10),2)"
  },
  {
    "input": "input : list = [4, -2, -3, 4, 2, 3]\noutput : list = [3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(take([4, -2, -3, 4, 2, 3],1),13))),-1)",
    "io_inp": [
      4,
      -2,
      -3,
      4,
      2,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(take(input,1),13))),-1)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n(mul_n(reverse([2, 2]),2),-1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),2),-1)"
  },
  {
    "input": "input : list = [3, 2, 1, 1]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = sort_des(drop([3, 2, 1, 1],1))",
    "io_inp": [
      3,
      2,
      1,
      1
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-3, -1, 5, -4, -1, 5]\noutput : list = [-13, -7, -4, -13, -7, -5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(mul_n([-3, -1, 5, -4, -1, 5],-1),5)),2),5)",
    "io_inp": [
      -3,
      -1,
      5,
      -4,
      -1,
      5
    ],
    "io_out": [
      -13,
      -7,
      -4,
      -13,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(mul_n(input,-1),5)),2),5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [0, 0, -4]",
    "output": "generated_output : list = sub_n([5, 5, 1],5)",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, 5, 0, -5]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take([-1, 5, 0, -5],1))),3)",
    "io_inp": [
      -1,
      5,
      0,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(input,1))),3)"
  },
  {
    "input": "input : list = [1, 4, -3, 4]\noutput : list = [-5, -2, -9, -2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(add_n([1, 4, -3, 4],-4),4),1),3),2)",
    "io_inp": [
      1,
      4,
      -3,
      4
    ],
    "io_out": [
      -5,
      -2,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(add_n(input,-4),4),1),3),2)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(sub_n([-5, -1],-1))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [1, 2, -5, 0, -3, 4]\noutput : list = [-5, -3, -2, -1, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(mul_n([1, 2, -5, 0, -3, 4],-1),2),10),-1))",
    "io_inp": [
      1,
      2,
      -5,
      0,
      -3,
      4
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(mul_n(input,-1),2),10),-1))"
  },
  {
    "input": "input : list = [-2, -4, 0, -3]\noutput : list = [-4, -3, -2, 0]",
    "output": "generated_output : list = sort_asc([-2, -4, 0, -3])",
    "io_inp": [
      -2,
      -4,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, -2, -1]\noutput : list = [8, 3, 2, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sort_des([4, -2, -2, -1]),21))),4)",
    "io_inp": [
      4,
      -2,
      -2,
      -1
    ],
    "io_out": [
      8,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sort_des(input),21))),4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_des(add_n([0, 4],-5))),33))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_des(add_n(input,-5))),33))"
  },
  {
    "input": "input : list = [0, -4, 4, -1]\noutput : list = [-19, -3, 1, 13]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n([0, -4, 4, -1],-4)),3))",
    "io_inp": [
      0,
      -4,
      4,
      -1
    ],
    "io_out": [
      -19,
      -3,
      1,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(input,-4)),3))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n([4, 0],-2)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [-12, 20, 8]",
    "output": "generated_output : list = mul_n(reverse([2, 5, -3]),4)",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      -12,
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [-4]",
    "output": "generated_output : list = take(sort_des(mul_n(take([2, 2, 5],1),-2)),20)",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(input,1),-2)),20)"
  },
  {
    "input": "input : list = [-2, 3, 2, 5]\noutput : list = [8, 6, 5, 1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(sort_asc([-2, 3, 2, 5]),6))),3)",
    "io_inp": [
      -2,
      3,
      2,
      5
    ],
    "io_out": [
      8,
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(sort_asc(input),6))),3)"
  },
  {
    "input": "input : list = [-2, -4, 0, -2, 3, 4]\noutput : list = [-4, -3, 0, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(mul_n([-2, -4, 0, -2, 3, 4],1)),-1)))",
    "io_inp": [
      -2,
      -4,
      0,
      -2,
      3,
      4
    ],
    "io_out": [
      -4,
      -3,
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(mul_n(input,1)),-1)))"
  },
  {
    "input": "input : list = [0, 5, 2, 0, -1]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(take([0, 5, 2, 0, -1],1),-4))),22)",
    "io_inp": [
      0,
      5,
      2,
      0,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(take(input,1),-4))),22)"
  },
  {
    "input": "input : list = [-5, 4, 3, 2, -4, 1]\noutput : list = [12, 11, 10, 9, 4, 3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sub_n([-5, 4, 3, 2, -4, 1],-3),5)))",
    "io_inp": [
      -5,
      4,
      3,
      2,
      -4,
      1
    ],
    "io_out": [
      12,
      11,
      10,
      9,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sub_n(input,-3),5)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 2]))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -3, -5]\noutput : list = [-3, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc([-5, -3, -5]))))",
    "io_inp": [
      -5,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [-5, -2, -3, 4, -5, 2]\noutput : list = [-2, -2, 0, 1, 5, 7]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(sub_n([-5, -2, -3, 4, -5, 2],-1)),-3),5))",
    "io_inp": [
      -5,
      -2,
      -3,
      4,
      -5,
      2
    ],
    "io_out": [
      -2,
      -2,
      0,
      1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(sub_n(input,-1)),-3),5))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [9, 3]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(add_n([5, -1],4),5),18)))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(add_n(input,4),5),18)))"
  },
  {
    "input": "input : list = [-4, -5, -3, -3, 1, 1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(take([-4, -5, -3, -3, 1, 1],2)),-2),-1),1)",
    "io_inp": [
      -4,
      -5,
      -3,
      -3,
      1,
      1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(take(input,2)),-2),-1),1)"
  },
  {
    "input": "input : list = [0, 3, 5, -4, -5]\noutput : list = [-25, -15, 0, 20, 25]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(sort_asc([0, 3, 5, -4, -5]))),5),-5)",
    "io_inp": [
      0,
      3,
      5,
      -4,
      -5
    ],
    "io_out": [
      -25,
      -15,
      0,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(sort_asc(input))),5),-5)"
  },
  {
    "input": "input : list = [2, 2, -5, 1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n(drop([2, 2, -5, 1],2),-4)",
    "io_inp": [
      2,
      2,
      -5,
      1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [-1, 3, 0, 3]\noutput : list = [-12, -12, 0, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(sort_des([-1, 3, 0, 3]))),-4))",
    "io_inp": [
      -1,
      3,
      0,
      3
    ],
    "io_out": [
      -12,
      -12,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [-5, 1, -3, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, 1, -3, -1],1))",
    "io_inp": [
      -5,
      1,
      -3,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-4, -4, 5, 5]\noutput : list = [-3, -3, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sort_des([-4, -4, 5, 5]))),1))",
    "io_inp": [
      -4,
      -4,
      5,
      5
    ],
    "io_out": [
      -3,
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [4, -2, 1, -4, -1, -4]\noutput : list = [2, -4, -1, -6, -3, -6]",
    "output": "generated_output : list = add_n([4, -2, 1, -4, -1, -4],-2)",
    "io_inp": [
      4,
      -2,
      1,
      -4,
      -1,
      -4
    ],
    "io_out": [
      2,
      -4,
      -1,
      -6,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [0, -4, -1]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([0, -4, -1]))",
    "io_inp": [
      0,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -1, 3, 3, -1]\noutput : list = [-8, -4, 0, 0, -4]",
    "output": "generated_output : list = add_n(sub_n([-5, -1, 3, 3, -1],-2),-5)",
    "io_inp": [
      -5,
      -1,
      3,
      3,
      -1
    ],
    "io_out": [
      -8,
      -4,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),-5)"
  },
  {
    "input": "input : list = [-1, 5, 0, 3, -4, -3]\noutput : list = [-40, -30]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(drop([-1, 5, 0, 3, -4, -3],4)),2)),5)",
    "io_inp": [
      -1,
      5,
      0,
      3,
      -4,
      -3
    ],
    "io_out": [
      -40,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(drop(input,4)),2)),5)"
  },
  {
    "input": "input : list = [0, -4, -3, -4, 3, 1]\noutput : list = [5, 3, 2, -1, -2, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n([0, -4, -3, -4, 3, 1],2)))))",
    "io_inp": [
      0,
      -4,
      -3,
      -4,
      3,
      1
    ],
    "io_out": [
      5,
      3,
      2,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n(input,2)))))"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [2, 7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(sort_des([3, 4, -2])),20)),-4)",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(sort_des(input)),20)),-4)"
  },
  {
    "input": "input : list = [3, -4, 4, 0]\noutput : list = [0, 4, 7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_asc([3, -4, 4, 0]))),-4))",
    "io_inp": [
      3,
      -4,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [-5, 1, 2, -1, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, 1, 2, -1, 3],1))",
    "io_inp": [
      -5,
      1,
      2,
      -1,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [2, -4, 3, -2, 1, -2]\noutput : list = [-2, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([2, -4, 3, -2, 1, -2],3)))",
    "io_inp": [
      2,
      -4,
      3,
      -2,
      1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,3)))"
  },
  {
    "input": "input : list = [4, 4, 5, 2, 3, -1]\noutput : list = [-6, -2, -3, 0, -1, -1]",
    "output": "generated_output : list = sub_n(reverse([4, 4, 5, 2, 3, -1]),5)",
    "io_inp": [
      4,
      4,
      5,
      2,
      3,
      -1
    ],
    "io_out": [
      -6,
      -2,
      -3,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-5, -3, -3, -1]\noutput : list = [-1, -3, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, -3, -1])",
    "io_inp": [
      -5,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, -2, 1, 5, 3]\noutput : list = [5, -4]",
    "output": "generated_output : list = take(reverse(reverse(reverse(take([-4, 5, -2, 1, 5, 3],2)))),35)",
    "io_inp": [
      -4,
      5,
      -2,
      1,
      5,
      3
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(take(input,2)))),35)"
  },
  {
    "input": "input : list = [4, 0, -5, 3, -2, 5]\noutput : list = [-5, -2, 0, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 0, -5, 3, -2, 5])",
    "io_inp": [
      4,
      0,
      -5,
      3,
      -2,
      5
    ],
    "io_out": [
      -5,
      -2,
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-60, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(reverse([3, 0]),5)),-4))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -60,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(reverse(input),5)),-4))"
  },
  {
    "input": "input : list = [-2, 1, -3, 0, 3, 3]\noutput : list = [13, 4, 1, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(drop([-2, 1, -3, 0, 3, 3],1),-3),24),-4))",
    "io_inp": [
      -2,
      1,
      -3,
      0,
      3,
      3
    ],
    "io_out": [
      13,
      4,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(drop(input,1),-3),24),-4))"
  },
  {
    "input": "input : list = [-3, 3, -3, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take([-3, 3, -3, 5],1),-4),3))",
    "io_inp": [
      -3,
      3,
      -3,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(input,1),-4),3))"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([1, 0, 4]),-1),-1)",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-1),-1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n([3, 0],3)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, -5, -5, 2, 2, -3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -5, -5, 2, 2, -3],1)",
    "io_inp": [
      3,
      -5,
      -5,
      2,
      2,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [15, -20]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n([-3, 4],-5),12)))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(input,-5),12)))"
  },
  {
    "input": "input : list = [3, -2, 3, 2, -1]\noutput : list = [-1, -6, -1, -2, -5]",
    "output": "generated_output : list = add_n([3, -2, 3, 2, -1],-4)",
    "io_inp": [
      3,
      -2,
      3,
      2,
      -1
    ],
    "io_out": [
      -1,
      -6,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, 5, -1, -5, 3]\noutput : list = [42, 27, 24]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(take([0, 5, -1, -5, 3],3)),5),-4),3)",
    "io_inp": [
      0,
      5,
      -1,
      -5,
      3
    ],
    "io_out": [
      42,
      27,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(take(input,3)),5),-4),3)"
  },
  {
    "input": "input : list = [1, 2, 4, 5, 4, 2]\noutput : list = [-4, -8]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(drop([1, 2, 4, 5, 4, 2],4))),-2),47)",
    "io_inp": [
      1,
      2,
      4,
      5,
      4,
      2
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(drop(input,4))),-2),47)"
  },
  {
    "input": "input : list = [0, 3, -5, 2, 0, -4]\noutput : list = [1, 4, -4, 3, 1, -3]",
    "output": "generated_output : list = take(sub_n([0, 3, -5, 2, 0, -4],-1),20)",
    "io_inp": [
      0,
      3,
      -5,
      2,
      0,
      -4
    ],
    "io_out": [
      1,
      4,
      -4,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),20)"
  },
  {
    "input": "input : list = [-5, -2, 4, -4, -5]\noutput : list = [-2, 4, 6, 7]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(sub_n([-5, -2, 4, -4, -5],2),4))),-1)",
    "io_inp": [
      -5,
      -2,
      4,
      -4,
      -5
    ],
    "io_out": [
      -2,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(sub_n(input,2),4))),-1)"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [-12, -5, -7]",
    "output": "generated_output : list = sub_n(sub_n([-5, 2, 0],4),3)",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      -12,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),3)"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(add_n([-2, 1, -4],3)))))",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(add_n(input,3)))))"
  },
  {
    "input": "input : list = [-5, -4, 2, 4, 3]\noutput : list = [-32]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(take([-5, -4, 2, 4, 3],1),-3),4),25),4)",
    "io_inp": [
      -5,
      -4,
      2,
      4,
      3
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(take(input,1),-3),4),25),4)"
  },
  {
    "input": "input : list = [5, -3, -4, -3]\noutput : list = [3, 2, 2, -6]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(add_n([5, -3, -4, -3],-1))),2),-1)",
    "io_inp": [
      5,
      -3,
      -4,
      -3
    ],
    "io_out": [
      3,
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(add_n(input,-1))),2),-1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take(take(sort_asc(take(sort_asc([-3, -5]),16)),27),10)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(sort_asc(input),16)),27),10)"
  },
  {
    "input": "input : list = [-2, -4, 3]\noutput : list = [-4, -2, 3]",
    "output": "generated_output : list = sort_asc([-2, -4, 3])",
    "io_inp": [
      -2,
      -4,
      3
    ],
    "io_out": [
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 2, 1]\noutput : list = [-8, -4, 4, 16]",
    "output": "generated_output : list = mul_n(sort_des([-1, -4, 2, 1]),-4)",
    "io_inp": [
      -1,
      -4,
      2,
      1
    ],
    "io_out": [
      -8,
      -4,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [12, 16]",
    "output": "generated_output : list = add_n(add_n(take(take(sub_n([1, 5],-4),13),11),3),4)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      12,
      16
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(sub_n(input,-4),13),11),3),4)"
  },
  {
    "input": "input : list = [5, -5, -3, -1, 1]\noutput : list = [10, -10, -6]",
    "output": "generated_output : list = mul_n(take([5, -5, -3, -1, 1],3),2)",
    "io_inp": [
      5,
      -5,
      -3,
      -1,
      1
    ],
    "io_out": [
      10,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),2)"
  },
  {
    "input": "input : list = [-2, 0, 4, 1, 0, 5]\noutput : list = [4, 3, 0, -1, -1]",
    "output": "generated_output : list = take(sort_des(add_n(drop([-2, 0, 4, 1, 0, 5],1),-1)),9)",
    "io_inp": [
      -2,
      0,
      4,
      1,
      0,
      5
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(drop(input,1),-1)),9)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [0, 2]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(add_n([-4, -3],4),-3),3),2),2)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(add_n(input,4),-3),3),2),2)"
  },
  {
    "input": "input : list = [-1, 3, -3, 1, -5]\noutput : list = [-5, -3, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3, -3, 1, -5])",
    "io_inp": [
      -1,
      3,
      -3,
      1,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [6, 3, 12]",
    "output": "generated_output : list = mul_n([-2, -1, -4],-3)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      6,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [0, 8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(drop([2, 4, 0],1)),2)),1)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(drop(input,1)),2)),1)"
  },
  {
    "input": "input : list = [4, -4, 0]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(drop([4, -4, 0],1),3),2))",
    "io_inp": [
      4,
      -4,
      0
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(drop(input,1),3),2))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [14, -6]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(sub_n([0, -5],-4),4))),2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      14,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(sub_n(input,-4),4))),2)"
  },
  {
    "input": "input : list = [0, 5, -4, 3, -1]\noutput : list = [8, -12, 23, -22, 3]",
    "output": "generated_output : list = sub_n(mul_n(reverse([0, 5, -4, 3, -1]),-5),-3)",
    "io_inp": [
      0,
      5,
      -4,
      3,
      -1
    ],
    "io_out": [
      8,
      -12,
      23,
      -22,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),-5),-3)"
  },
  {
    "input": "input : list = [0, 4, 5, -4, -2]\noutput : list = [-4, 5, 3]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(drop([0, 4, 5, -4, -2],2),12),-5),4),-1)",
    "io_inp": [
      0,
      4,
      5,
      -4,
      -2
    ],
    "io_out": [
      -4,
      5,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(drop(input,2),12),-5),4),-1)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = sort_des(add_n([-3, -1, 3],-1))",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [5, 1, 0, 5]\noutput : list = [-1, 0, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sub_n([5, 1, 0, 5],1)))))",
    "io_inp": [
      5,
      1,
      0,
      5
    ],
    "io_out": [
      -1,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-5, -4, 2, -1, -4]\noutput : list = [1, 7]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sub_n(drop([-5, -4, 2, -1, -4],3),-4),2)),-1)",
    "io_inp": [
      -5,
      -4,
      2,
      -1,
      -4
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sub_n(drop(input,3),-4),2)),-1)"
  },
  {
    "input": "input : list = [-2, -2, 4, 3]\noutput : list = [-10, -10, 15, 20]",
    "output": "generated_output : list = take(sort_asc(mul_n([-2, -2, 4, 3],5)),30)",
    "io_inp": [
      -2,
      -2,
      4,
      3
    ],
    "io_out": [
      -10,
      -10,
      15,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,5)),30)"
  },
  {
    "input": "input : list = [-5, -2, -3, -3, -5, -4]\noutput : list = [6, 6, 3, 0, 0, -3]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sub_n([-5, -2, -3, -3, -5, -4],-3),30),-3)))",
    "io_inp": [
      -5,
      -2,
      -3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      6,
      6,
      3,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sub_n(input,-3),30),-3)))"
  },
  {
    "input": "input : list = [-2, -5, -4]\noutput : list = [-40, -80, -100]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(sort_asc([-2, -5, -4]),4)),5),9)",
    "io_inp": [
      -2,
      -5,
      -4
    ],
    "io_out": [
      -40,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(sort_asc(input),4)),5),9)"
  },
  {
    "input": "input : list = [4, 2, -5, 0]\noutput : list = [4, -4, -32, -12]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(add_n([4, 2, -5, 0],-3),-4),-1)))",
    "io_inp": [
      4,
      2,
      -5,
      0
    ],
    "io_out": [
      4,
      -4,
      -32,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(add_n(input,-3),-4),-1)))"
  },
  {
    "input": "input : list = [5, 3, 5, 1, -5]\noutput : list = [20, -4, -20, -12, -20]",
    "output": "generated_output : list = mul_n(reverse([5, 3, 5, 1, -5]),-4)",
    "io_inp": [
      5,
      3,
      5,
      1,
      -5
    ],
    "io_out": [
      20,
      -4,
      -20,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [-3, 9, 9]",
    "output": "generated_output : list = mul_n(add_n([-5, -1, -1],4),3)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      -3,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),3)"
  },
  {
    "input": "input : list = [-3, 2, 2]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des(sort_des([-3, 2, 2])))),19)",
    "io_inp": [
      -3,
      2,
      2
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(sort_des(input)))),19)"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [6, 14, 16]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(sub_n([-4, -3, 1],4))),1),-2)",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      6,
      14,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(sub_n(input,4))),1),-2)"
  },
  {
    "input": "input : list = [-4, -4, 5, -2, 5, 3]\noutput : list = [-2, 12, 8]",
    "output": "generated_output : list = mul_n(drop(add_n([-4, -4, 5, -2, 5, 3],1),3),2)",
    "io_inp": [
      -4,
      -4,
      5,
      -2,
      5,
      3
    ],
    "io_out": [
      -2,
      12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(input,1),3),2)"
  },
  {
    "input": "input : list = [4, 1, -4, -1, -3, -4]\noutput : list = [5, 2, 0, -2, -3, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n([4, 1, -4, -1, -3, -4],1))))",
    "io_inp": [
      4,
      1,
      -4,
      -1,
      -3,
      -4
    ],
    "io_out": [
      5,
      2,
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(input,1))))"
  },
  {
    "input": "input : list = [-2, 2, -1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = drop([-2, 2, -1, 0],2)",
    "io_inp": [
      -2,
      2,
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -2, 4, -3, -2]\noutput : list = [-2, -3, 4, -2, 5]",
    "output": "generated_output : list = reverse([5, -2, 4, -3, -2])",
    "io_inp": [
      5,
      -2,
      4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, 3, -2, 5]\noutput : list = [-9, -6, -1, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(drop([-3, -5, 3, -2, 5],1),4)),6))",
    "io_inp": [
      -3,
      -5,
      3,
      -2,
      5
    ],
    "io_out": [
      -9,
      -6,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(drop(input,1),4)),6))"
  },
  {
    "input": "input : list = [-2, 4, -4, 3]\noutput : list = [-2, 4, -4, 3]",
    "output": "generated_output : list = reverse(reverse(take(take(mul_n([-2, 4, -4, 3],1),11),23)))",
    "io_inp": [
      -2,
      4,
      -4,
      3
    ],
    "io_out": [
      -2,
      4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(mul_n(input,1),11),23)))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [24, 12]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(mul_n([1, 2],1),2),2)),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      24,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(mul_n(input,1),2),2)),3)"
  },
  {
    "input": "input : list = [-5, -1, -2, -3, -4]\noutput : list = [-6]",
    "output": "generated_output : list = drop(add_n([-5, -1, -2, -3, -4],-2),4)",
    "io_inp": [
      -5,
      -1,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-2),4)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [20, -20, -25]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n([4, -4, 5],-5)),7))",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      20,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(input,-5)),7))"
  },
  {
    "input": "input : list = [5, -5, 2, 4, -3]\noutput : list = [3, -7, 0, 2, -5]",
    "output": "generated_output : list = sub_n([5, -5, 2, 4, -3],2)",
    "io_inp": [
      5,
      -5,
      2,
      4,
      -3
    ],
    "io_out": [
      3,
      -7,
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, -3, -2, -1]\noutput : list = [20, 5, 10, 15]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n(add_n([0, -3, -2, -1],1),-3),-1),1),5)",
    "io_inp": [
      0,
      -3,
      -2,
      -1
    ],
    "io_out": [
      20,
      5,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(add_n(input,1),-3),-1),1),5)"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [-6, 18, -12]",
    "output": "generated_output : list = mul_n(mul_n([1, -3, 2],-2),3)",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      -6,
      18,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),3)"
  },
  {
    "input": "input : list = [-4, 3, -5, -5, -1]\noutput : list = [-5, -9]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(drop([-4, 3, -5, -5, -1],3)),27)),4)",
    "io_inp": [
      -4,
      3,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(drop(input,3)),27)),4)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-8, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-4, 0]),2),-2)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),2),-2)"
  },
  {
    "input": "input : list = [-5, -3, 2, -1]\noutput : list = [2, 5, 0, -2]",
    "output": "generated_output : list = reverse(sub_n([-5, -3, 2, -1],-3))",
    "io_inp": [
      -5,
      -3,
      2,
      -1
    ],
    "io_out": [
      2,
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = mul_n(sub_n([2, 2, 2],-2),-1)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),-1)"
  },
  {
    "input": "input : list = [1, 3, -2, -5, 4, -3]\noutput : list = [-5, -1, 5]",
    "output": "generated_output : list = take(sort_asc(sub_n(mul_n(take([1, 3, -2, -5, 4, -3],3),-2),-1)),30)",
    "io_inp": [
      1,
      3,
      -2,
      -5,
      4,
      -3
    ],
    "io_out": [
      -5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(mul_n(take(input,3),-2),-1)),30)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-12, 16]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n([3, -4],-4))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [-2, 3, 2, -2, 4]\noutput : list = [4, 3, 2, -2, -2]",
    "output": "generated_output : list = sort_des([-2, 3, 2, -2, 4])",
    "io_inp": [
      -2,
      3,
      2,
      -2,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, -4]\noutput : list = [1, 4, 10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sort_des([-1, 5, -4]),-1)),-4),-2)",
    "io_inp": [
      -1,
      5,
      -4
    ],
    "io_out": [
      1,
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sort_des(input),-1)),-4),-2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-6, 3]",
    "output": "generated_output : list = mul_n(sub_n([5, -4],-1),-1)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-1)"
  },
  {
    "input": "input : list = [5, -2, -3, 3]\noutput : list = [1, -6, -7, -1]",
    "output": "generated_output : list = add_n([5, -2, -3, 3],-4)",
    "io_inp": [
      5,
      -2,
      -3,
      3
    ],
    "io_out": [
      1,
      -6,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [7, 0]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sort_asc([5, -2])),2),2))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sort_asc(input)),2),2))"
  },
  {
    "input": "input : list = [1, -1, 2, -4, -1, 5]\noutput : list = [5, -10, 20, 5, -25]",
    "output": "generated_output : list = mul_n(drop([1, -1, 2, -4, -1, 5],1),-5)",
    "io_inp": [
      1,
      -1,
      2,
      -4,
      -1,
      5
    ],
    "io_out": [
      5,
      -10,
      20,
      5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-3, 2, -4, -1, -3, 1]\noutput : list = [1, 0, -2, -4, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(drop([-3, 2, -4, -1, -3, 1],1),20),-3)),-1)",
    "io_inp": [
      -3,
      2,
      -4,
      -1,
      -3,
      1
    ],
    "io_out": [
      1,
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(drop(input,1),20),-3)),-1)"
  },
  {
    "input": "input : list = [0, 4, -4]\noutput : list = [-18, 2, 22]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(sort_des([0, 4, -4]),5),1),1))",
    "io_inp": [
      0,
      4,
      -4
    ],
    "io_out": [
      -18,
      2,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(sort_des(input),5),1),1))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-15, 20]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-2, 5],2)),-5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,2)),-5)"
  },
  {
    "input": "input : list = [-4, 3, 5, 2, 2, 1]\noutput : list = [-6, 4, 9, 9, 14, 39]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(add_n([-4, 3, 5, 2, 2, 1],-3),17),-5),4))",
    "io_inp": [
      -4,
      3,
      5,
      2,
      2,
      1
    ],
    "io_out": [
      -6,
      4,
      9,
      9,
      14,
      39
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(add_n(input,-3),17),-5),4))"
  },
  {
    "input": "input : list = [4, -2, 1, 5, -1]\noutput : list = [5, 4, 1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([4, -2, 1, 5, -1])))",
    "io_inp": [
      4,
      -2,
      1,
      5,
      -1
    ],
    "io_out": [
      5,
      4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, 0, -4, -2]\noutput : list = [3, 2, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(sort_des([1, 0, -4, -2])),-2)))",
    "io_inp": [
      1,
      0,
      -4,
      -2
    ],
    "io_out": [
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [1, 0, 4, 4]\noutput : list = [5, 6, 9, 9]",
    "output": "generated_output : list = sub_n(sort_asc([1, 0, 4, 4]),-5)",
    "io_inp": [
      1,
      0,
      4,
      4
    ],
    "io_out": [
      5,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-4, 4, -4, 1]\noutput : list = [3, -5, 3, -2]",
    "output": "generated_output : list = sub_n(mul_n([-4, 4, -4, 1],-1),1)",
    "io_inp": [
      -4,
      4,
      -4,
      1
    ],
    "io_out": [
      3,
      -5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),1)"
  },
  {
    "input": "input : list = [-4, 1, 2, -1]\noutput : list = [-4, 1, 2, -1]",
    "output": "generated_output : list = mul_n([-4, 1, 2, -1],1)",
    "io_inp": [
      -4,
      1,
      2,
      -1
    ],
    "io_out": [
      -4,
      1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [-3, 3, 1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(add_n([3, 5, -1],-2),1),-3)),3)",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      -3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(add_n(input,-2),1),-3)),3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [23, 7]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(mul_n([5, 1],4),-3))))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      23,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(mul_n(input,4),-3))))"
  },
  {
    "input": "input : list = [4, -1, 1, 4]\noutput : list = [9, 14]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(take([4, -1, 1, 4],2)),5)),5)",
    "io_inp": [
      4,
      -1,
      1,
      4
    ],
    "io_out": [
      9,
      14
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(take(input,2)),5)),5)"
  },
  {
    "input": "input : list = [5, -4, -5, 0]\noutput : list = [0, -3, -15, -30]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sort_asc([5, -4, -5, 0]),5),-3)))",
    "io_inp": [
      5,
      -4,
      -5,
      0
    ],
    "io_out": [
      0,
      -3,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sort_asc(input),5),-3)))"
  },
  {
    "input": "input : list = [2, 2, -3, -4, -1]\noutput : list = [-4, -3, -1, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([2, 2, -3, -4, -1])))",
    "io_inp": [
      2,
      2,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [6, 5, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(reverse([4, 5, 2]),6)),-1))",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(reverse(input),6)),-1))"
  },
  {
    "input": "input : list = [-5, 2, -3, 0, 2, 3]\noutput : list = [6, 0, -9, -15, -15, -18]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(add_n([-5, 2, -3, 0, 2, 3],4),-3)),4),-1)",
    "io_inp": [
      -5,
      2,
      -3,
      0,
      2,
      3
    ],
    "io_out": [
      6,
      0,
      -9,
      -15,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(add_n(input,4),-3)),4),-1)"
  },
  {
    "input": "input : list = [-2, -3, -5, 0, 5]\noutput : list = [-5, -3, -2, 0, 5]",
    "output": "generated_output : list = sort_asc([-2, -3, -5, 0, 5])",
    "io_inp": [
      -2,
      -3,
      -5,
      0,
      5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, -1, -1, -1]\noutput : list = [2, 2, 2, -4, -7]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(sort_des([-4, -3, -1, -1, -1]),3)),24),5)",
    "io_inp": [
      -4,
      -3,
      -1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(sort_des(input),3)),24),5)"
  },
  {
    "input": "input : list = [-2, 2, 1]\noutput : list = [-10, 5, 10]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(sub_n([-2, 2, 1],2),-2)),5))",
    "io_inp": [
      -2,
      2,
      1
    ],
    "io_out": [
      -10,
      5,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(sub_n(input,2),-2)),5))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sort_asc([-1, 3]))),5))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-3, 4, 5, 0]\noutput : list = [0, 5, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, 5, 0])",
    "io_inp": [
      -3,
      4,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, -1, -1]\noutput : list = [-20, -4, 4, 4]",
    "output": "generated_output : list = mul_n([5, 1, -1, -1],-4)",
    "io_inp": [
      5,
      1,
      -1,
      -1
    ],
    "io_out": [
      -20,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 5, 4, -2, -4, -4]\noutput : list = [-12, -20]",
    "output": "generated_output : list = mul_n(take([3, 5, 4, -2, -4, -4],2),-4)",
    "io_inp": [
      3,
      5,
      4,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [-4, -5, -3, -4]\noutput : list = [-12, -13, -13, -14]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(add_n([-4, -5, -3, -4],-4),5))))",
    "io_inp": [
      -4,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -12,
      -13,
      -13,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(add_n(input,-4),5))))"
  },
  {
    "input": "input : list = [1, 2, 5, 4, -4]\noutput : list = [-75, -60, -30, -15, 60]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n([1, 2, 5, 4, -4],3)),-5),25)",
    "io_inp": [
      1,
      2,
      5,
      4,
      -4
    ],
    "io_out": [
      -75,
      -60,
      -30,
      -15,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(input,3)),-5),25)"
  },
  {
    "input": "input : list = [-1, 5, -3, -5, -5]\noutput : list = [-4, 20, -12, -20, -20]",
    "output": "generated_output : list = mul_n([-1, 5, -3, -5, -5],4)",
    "io_inp": [
      -1,
      5,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -4,
      20,
      -12,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(add_n([-3, 0, 4],-3))),-3))",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(add_n(input,-3))),-3))"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = sort_asc([3, 0, 2])",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, -4, 4, 0, 0]\noutput : list = [2, 2, 1, -2, -2, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sub_n([4, 3, -4, 4, 0, 0],2)))))",
    "io_inp": [
      4,
      3,
      -4,
      4,
      0,
      0
    ],
    "io_out": [
      2,
      2,
      1,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [-5, 1, 0, 0, -1]\noutput : list = [-1, 0, 0, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 0, 0, -1])",
    "io_inp": [
      -5,
      1,
      0,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 1, -3, 4]\noutput : list = [-23, -11, 5, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(add_n([-4, 1, -3, 4],1),-4)),30),3)",
    "io_inp": [
      -4,
      1,
      -3,
      4
    ],
    "io_out": [
      -23,
      -11,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(add_n(input,1),-4)),30),3)"
  },
  {
    "input": "input : list = [-5, 3, 5, -4]\noutput : list = [3, -24, -18, 6]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(add_n([-5, 3, 5, -4],3),14),-1)),3)",
    "io_inp": [
      -5,
      3,
      5,
      -4
    ],
    "io_out": [
      3,
      -24,
      -18,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(add_n(input,3),14),-1)),3)"
  },
  {
    "input": "input : list = [4, 2, 5, 2, 2]\noutput : list = [10, 12]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(take([4, 2, 5, 2, 2],2)),-5),3),43)",
    "io_inp": [
      4,
      2,
      5,
      2,
      2
    ],
    "io_out": [
      10,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(take(input,2)),-5),3),43)"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [25, 17, 5]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_asc([1, -1, 4]),-1),-4),4),-5)",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      25,
      17,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_asc(input),-1),-4),4),-5)"
  },
  {
    "input": "input : list = [3, -4, -4, -3, -4, -3]\noutput : list = [-24, 24, 24, 32, 32, 32]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(reverse([3, -4, -4, -3, -4, -3]),-2))),4)",
    "io_inp": [
      3,
      -4,
      -4,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -24,
      24,
      24,
      32,
      32,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(reverse(input),-2))),4)"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(reverse([2, -5, 1])),-2),3),-3)",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(reverse(input)),-2),3),-3)"
  },
  {
    "input": "input : list = [-5, 2, 0, -5]\noutput : list = [17, 17, -3, -11]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(reverse([-5, 2, 0, -5])),-2),-4),5)",
    "io_inp": [
      -5,
      2,
      0,
      -5
    ],
    "io_out": [
      17,
      17,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(reverse(input)),-2),-4),5)"
  },
  {
    "input": "input : list = [-5, -1, -3, 0, 1]\noutput : list = [5, 4, 1]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(reverse([-5, -1, -3, 0, 1]),3),4)))",
    "io_inp": [
      -5,
      -1,
      -3,
      0,
      1
    ],
    "io_out": [
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(reverse(input),3),4)))"
  },
  {
    "input": "input : list = [-3, 3, -3, 0]\noutput : list = [3, -3, 0]",
    "output": "generated_output : list = drop([-3, 3, -3, 0],1)",
    "io_inp": [
      -3,
      3,
      -3,
      0
    ],
    "io_out": [
      3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, 0, -2, 2]\noutput : list = [5, 2, 0, -2, -2]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(add_n([5, -2, 0, -2, 2],5)),-5)),40)",
    "io_inp": [
      5,
      -2,
      0,
      -2,
      2
    ],
    "io_out": [
      5,
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(add_n(input,5)),-5)),40)"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(take(sort_des(take(drop([-2, 4, 4],1),2)),15))",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(drop(input,1),2)),15))"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(drop([0, 0, 4],1),1)),2))",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(drop(input,1),1)),2))"
  },
  {
    "input": "input : list = [3, 5, -1, -5, 1, 4]\noutput : list = [7, 4, -2, 2, 8, 6]",
    "output": "generated_output : list = sub_n(reverse([3, 5, -1, -5, 1, 4]),-3)",
    "io_inp": [
      3,
      5,
      -1,
      -5,
      1,
      4
    ],
    "io_out": [
      7,
      4,
      -2,
      2,
      8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [1, -4, 1, -3, 4]\noutput : list = [-5, -4, 0, 0, 3]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(add_n([1, -4, 1, -3, 4],-3)),-3)),-1)",
    "io_inp": [
      1,
      -4,
      1,
      -3,
      4
    ],
    "io_out": [
      -5,
      -4,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(add_n(input,-3)),-3)),-1)"
  },
  {
    "input": "input : list = [-3, 4, 2, 5, -3, 4]\noutput : list = [-8, 13, 7, 16, -8, 13]",
    "output": "generated_output : list = add_n(mul_n([-3, 4, 2, 5, -3, 4],3),1)",
    "io_inp": [
      -3,
      4,
      2,
      5,
      -3,
      4
    ],
    "io_out": [
      -8,
      13,
      7,
      16,
      -8,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),1)"
  },
  {
    "input": "input : list = [3, 2, 2, -1]\noutput : list = [-1, -13, -13, -17]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(sort_des([3, 2, 2, -1])),-4),-2),-3)",
    "io_inp": [
      3,
      2,
      2,
      -1
    ],
    "io_out": [
      -1,
      -13,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(sort_des(input)),-4),-2),-3)"
  },
  {
    "input": "input : list = [-4, -4, 2, -1, 3]\noutput : list = [-3, -3, 0, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_des([-4, -4, 2, -1, 3]),6),-4)),3)",
    "io_inp": [
      -4,
      -4,
      2,
      -1,
      3
    ],
    "io_out": [
      -3,
      -3,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_des(input),6),-4)),3)"
  },
  {
    "input": "input : list = [-3, -2, -2, 0, -5, 5]\noutput : list = [-5, 20, 30, 30, 35, 45]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n([-3, -2, -2, 0, -5, 5],-4),-5)))",
    "io_inp": [
      -3,
      -2,
      -2,
      0,
      -5,
      5
    ],
    "io_out": [
      -5,
      20,
      30,
      30,
      35,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(input,-4),-5)))"
  },
  {
    "input": "input : list = [5, 2, 0, 1, -3]\noutput : list = [-4, -1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n([5, 2, 0, 1, -3],-1))))",
    "io_inp": [
      5,
      2,
      0,
      1,
      -3
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(input,-1))))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-2, 10]",
    "output": "generated_output : list = mul_n(add_n([3, -3],-2),-2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-2)"
  },
  {
    "input": "input : list = [5, -1, -1, -4, 5, 4]\noutput : list = [4, 5, -4, -1, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -1, -4, 5, 4])",
    "io_inp": [
      5,
      -1,
      -1,
      -4,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      -4,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, 0, 3, 4]\noutput : list = [8, 4, -8, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(mul_n([-3, -2, 0, 3, 4],1),-3),5),4))",
    "io_inp": [
      -3,
      -2,
      0,
      3,
      4
    ],
    "io_out": [
      8,
      4,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(mul_n(input,1),-3),5),4))"
  },
  {
    "input": "input : list = [2, -3, -5, 2]\noutput : list = [7, 2, 0, 7]",
    "output": "generated_output : list = take(add_n([2, -3, -5, 2],5),14)",
    "io_inp": [
      2,
      -3,
      -5,
      2
    ],
    "io_out": [
      7,
      2,
      0,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),14)"
  },
  {
    "input": "input : list = [3, 5, -1, -3, -1]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(take([3, 5, -1, -3, -1],2),-4)),4))",
    "io_inp": [
      3,
      5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(take(input,2),-4)),4))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse(sort_des([-1, -2]))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -1, -5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = drop([-1, -1, -5, 1],2)",
    "io_inp": [
      -1,
      -1,
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [3, -1, -1]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(reverse([-1, 3, -1])),11)))",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(reverse(input)),11)))"
  },
  {
    "input": "input : list = [5, 1, 3, -2, 3, 2]\noutput : list = [28, 18, 18, 13, 8, -7]",
    "output": "generated_output : list = take(take(sort_des(add_n(mul_n([5, 1, 3, -2, 3, 2],5),3)),13),25)",
    "io_inp": [
      5,
      1,
      3,
      -2,
      3,
      2
    ],
    "io_out": [
      28,
      18,
      18,
      13,
      8,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(mul_n(input,5),3)),13),25)"
  },
  {
    "input": "input : list = [-3, 0, 0, 1]\noutput : list = [18, 3, 3, -2]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(reverse([-3, 0, 0, 1])),-5),3))",
    "io_inp": [
      -3,
      0,
      0,
      1
    ],
    "io_out": [
      18,
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(reverse(input)),-5),3))"
  },
  {
    "input": "input : list = [1, 5, 3]\noutput : list = [30, 20, 10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(mul_n([1, 5, 3],-1),1),-5)))",
    "io_inp": [
      1,
      5,
      3
    ],
    "io_out": [
      30,
      20,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(mul_n(input,-1),1),-5)))"
  },
  {
    "input": "input : list = [0, 3, 5, 5, 3]\noutput : list = [0, 3, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([0, 3, 5, 5, 3])",
    "io_inp": [
      0,
      3,
      5,
      5,
      3
    ],
    "io_out": [
      0,
      3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, -5, -2]\noutput : list = [-1, 2, 2, 7]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(add_n([-2, 3, -5, -2],4)),15),9))",
    "io_inp": [
      -2,
      3,
      -5,
      -2
    ],
    "io_out": [
      -1,
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(add_n(input,4)),15),9))"
  },
  {
    "input": "input : list = [5, 4, -4, 0]\noutput : list = [-9, -13, -5, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(sub_n([5, 4, -4, 0],-2),-3),4),-4))",
    "io_inp": [
      5,
      4,
      -4,
      0
    ],
    "io_out": [
      -9,
      -13,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(sub_n(input,-2),-3),4),-4))"
  },
  {
    "input": "input : list = [-5, 1, -3, 4, -2, -3]\noutput : list = [25, -5, 15, -20, 10, 15]",
    "output": "generated_output : list = mul_n(mul_n([-5, 1, -3, 4, -2, -3],-5),1)",
    "io_inp": [
      -5,
      1,
      -3,
      4,
      -2,
      -3
    ],
    "io_out": [
      25,
      -5,
      15,
      -20,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),1)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-8, -3]",
    "output": "generated_output : list = add_n(add_n([-1, 4],-3),-4)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),-4)"
  },
  {
    "input": "input : list = [-1, 5, -3, -1, 0, -4]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = sort_asc(drop([-1, 5, -3, -1, 0, -4],3))",
    "io_inp": [
      -1,
      5,
      -3,
      -1,
      0,
      -4
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [2, 10]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des([-3, 1]),-2),-4))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(input),-2),-4))"
  },
  {
    "input": "input : list = [-2, 2, 5, -2, -5, -1]\noutput : list = [-5, -2, -2, -1, 2, 5]",
    "output": "generated_output : list = reverse(sort_des([-2, 2, 5, -2, -5, -1]))",
    "io_inp": [
      -2,
      2,
      5,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -2,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [1, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([-4, 2, -3])),1)",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),1)"
  },
  {
    "input": "input : list = [5, -2, 1, 3, -2]\noutput : list = [7, 5, 3, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(add_n([5, -2, 1, 3, -2],-5),21),-3)),-4)",
    "io_inp": [
      5,
      -2,
      1,
      3,
      -2
    ],
    "io_out": [
      7,
      5,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(add_n(input,-5),21),-3)),-4)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(reverse([4, 3])))))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [0, -4, 2, -2, -5, -2]\noutput : list = [3, 1, -1, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n([0, -4, 2, -2, -5, -2],-1))",
    "io_inp": [
      0,
      -4,
      2,
      -2,
      -5,
      -2
    ],
    "io_out": [
      3,
      1,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-12, 2, -8]",
    "output": "generated_output : list = sub_n(mul_n([-5, 2, -3],2),2)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -12,
      2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),2)"
  },
  {
    "input": "input : list = [0, -2, -2, 1, 5]\noutput : list = [-1, -1, 1, 2, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des([0, -2, -2, 1, 5])),1)",
    "io_inp": [
      0,
      -2,
      -2,
      1,
      5
    ],
    "io_out": [
      -1,
      -1,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [8, 12]",
    "output": "generated_output : list = mul_n(drop([-2, -2, -3],1),-4)",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [3, 1, -3, 0, -5]\noutput : list = [20, 60, 80, 140, 180]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc([3, 1, -3, 0, -5])),-4),-5),4)",
    "io_inp": [
      3,
      1,
      -3,
      0,
      -5
    ],
    "io_out": [
      20,
      60,
      80,
      140,
      180
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc(input)),-4),-5),4)"
  },
  {
    "input": "input : list = [-3, -2, -3, 2]\noutput : list = [-15, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(drop([-3, -2, -3, 2],2),5))))",
    "io_inp": [
      -3,
      -2,
      -3,
      2
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(drop(input,2),5))))"
  },
  {
    "input": "input : list = [-1, -2, 5, -2, 4]\noutput : list = [6, -1, 5]",
    "output": "generated_output : list = take(mul_n(sub_n(drop([-1, -2, 5, -2, 4],2),-1),1),5)",
    "io_inp": [
      -1,
      -2,
      5,
      -2,
      4
    ],
    "io_out": [
      6,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(drop(input,2),-1),1),5)"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [-6, 3]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(drop([2, 1, 4],1),-3)),2),4)",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(drop(input,1),-3)),2),4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [2, 6]",
    "output": "generated_output : list = take(add_n(sort_asc([0, 4]),2),19)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),2),19)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [4, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([-3, 4, -5]))",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, -2, -5, 0, 0, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(reverse(take([0, -2, -5, 0, 0, 2],2)),-1)",
    "io_inp": [
      0,
      -2,
      -5,
      0,
      0,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,2)),-1)"
  },
  {
    "input": "input : list = [2, 0, -4]\noutput : list = [1, -1, -5]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(sort_asc([2, 0, -4])),1),1),18)",
    "io_inp": [
      2,
      0,
      -4
    ],
    "io_out": [
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(sort_asc(input)),1),1),18)"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [-12, -10, -7]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(sub_n([-2, -4, 1],5))),3),16)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      -12,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(sub_n(input,5))),3),16)"
  },
  {
    "input": "input : list = [-2, -3, 4, 0, 4]\noutput : list = [4, 4, 0, -2, -3]",
    "output": "generated_output : list = sort_des([-2, -3, 4, 0, 4])",
    "io_inp": [
      -2,
      -3,
      4,
      0,
      4
    ],
    "io_out": [
      4,
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 0, 3, 1]\noutput : list = [0, -1, 2, 0]",
    "output": "generated_output : list = add_n([1, 0, 3, 1],-1)",
    "io_inp": [
      1,
      0,
      3,
      1
    ],
    "io_out": [
      0,
      -1,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, -2, 0, -2, -4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = drop([2, -2, 0, -2, -4, 0],4)",
    "io_inp": [
      2,
      -2,
      0,
      -2,
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-3, -5, 0, 4, -5, 4]\noutput : list = [-9, -11, -6, -2, -11, -2]",
    "output": "generated_output : list = mul_n(take(take(add_n(sub_n([-3, -5, 0, 4, -5, 4],1),-5),29),32),1)",
    "io_inp": [
      -3,
      -5,
      0,
      4,
      -5,
      4
    ],
    "io_out": [
      -9,
      -11,
      -6,
      -2,
      -11,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(sub_n(input,1),-5),29),32),1)"
  },
  {
    "input": "input : list = [5, -4, -3, 1]\noutput : list = [0, -1, -5, -9]",
    "output": "generated_output : list = add_n(sort_des(mul_n([5, -4, -3, 1],-1)),-4)",
    "io_inp": [
      5,
      -4,
      -3,
      1
    ],
    "io_out": [
      0,
      -1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,-1)),-4)"
  },
  {
    "input": "input : list = [-3, -1, -1, 1]\noutput : list = [3, -5]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(drop([-3, -1, -1, 1],2),4),1)),2)",
    "io_inp": [
      -3,
      -1,
      -1,
      1
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(drop(input,2),4),1)),2)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(drop([-3, -5, -2],1),3),27)),1)",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(drop(input,1),3),27)),1)"
  },
  {
    "input": "input : list = [0, 2, -2, 0]\noutput : list = [-9, -3, -3, 3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(sort_asc([0, 2, -2, 0]),1))),3)",
    "io_inp": [
      0,
      2,
      -2,
      0
    ],
    "io_out": [
      -9,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(sort_asc(input),1))),3)"
  },
  {
    "input": "input : list = [-2, 1, 1, 3, 3, 4]\noutput : list = [-1, -3, -3, -6]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(take([-2, 1, 1, 3, 3, 4],4)),-4)))",
    "io_inp": [
      -2,
      1,
      1,
      3,
      3,
      4
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(take(input,4)),-4)))"
  },
  {
    "input": "input : list = [-1, 5, 3, -4]\noutput : list = [20]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(drop(sub_n([-1, 5, 3, -4],1),3),-5)),-5)",
    "io_inp": [
      -1,
      5,
      3,
      -4
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(drop(sub_n(input,1),3),-5)),-5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-7, -9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sub_n([2, 4],-1),-4))),-1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sub_n(input,-1),-4))),-1)"
  },
  {
    "input": "input : list = [-4, -3, -1]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = sort_asc([-4, -3, -1])",
    "io_inp": [
      -4,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, 2, -3, 5, 1]\noutput : list = [1, 5, 2, -3]",
    "output": "generated_output : list = take([1, 5, 2, -3, 5, 1],4)",
    "io_inp": [
      1,
      5,
      2,
      -3,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [3, 1, 5, 0, 3, 4]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n([3, 1, 5, 0, 3, 4],-5))),2)",
    "io_inp": [
      3,
      1,
      5,
      0,
      3,
      4
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(input,-5))),2)"
  },
  {
    "input": "input : list = [5, 2, 3, -5, 1]\noutput : list = [-3, 6, 3, 27, 9]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(add_n([5, 2, 3, -5, 1],-3),1))),-3)",
    "io_inp": [
      5,
      2,
      3,
      -5,
      1
    ],
    "io_out": [
      -3,
      6,
      3,
      27,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(add_n(input,-3),1))),-3)"
  },
  {
    "input": "input : list = [1, 3, -3, 0, 0, -1]\noutput : list = [-8, -6, -5, -5, -4, -2]",
    "output": "generated_output : list = add_n(add_n(sort_asc([1, 3, -3, 0, 0, -1]),-3),-2)",
    "io_inp": [
      1,
      3,
      -3,
      0,
      0,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),-3),-2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des([5, 2]),3),-2)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),3),-2)"
  },
  {
    "input": "input : list = [-4, -3, -5, -4, -4]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = add_n(sort_des(take([-4, -3, -5, -4, -4],3)),3)",
    "io_inp": [
      -4,
      -3,
      -5,
      -4,
      -4
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,3)),3)"
  },
  {
    "input": "input : list = [5, 5, -3, -2, 1]\noutput : list = [-5, -5, 3, 2, -1]",
    "output": "generated_output : list = mul_n(mul_n([5, 5, -3, -2, 1],1),-1)",
    "io_inp": [
      5,
      5,
      -3,
      -2,
      1
    ],
    "io_out": [
      -5,
      -5,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-1)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([3, -5])),2)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-4, 5, -2, -5]\noutput : list = [0, -14, -18, -20]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(mul_n([-4, 5, -2, -5],-1),-5),22)),-2)",
    "io_inp": [
      -4,
      5,
      -2,
      -5
    ],
    "io_out": [
      0,
      -14,
      -18,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(mul_n(input,-1),-5),22)),-2)"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [1, 1, 0]",
    "output": "generated_output : list = reverse([0, 1, 1])",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, 4, 4, -4, -5]\noutput : list = [-22, -17, -17, 18, 23, 28]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_asc([5, -3, 4, 4, -4, -5])),-5)),-3)",
    "io_inp": [
      5,
      -3,
      4,
      4,
      -4,
      -5
    ],
    "io_out": [
      -22,
      -17,
      -17,
      18,
      23,
      28
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_asc(input)),-5)),-3)"
  },
  {
    "input": "input : list = [-2, -4, 4, 1, 4]\noutput : list = [-9, -7, -4, -1, -1]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(sub_n([-2, -4, 4, 1, 4],5))),32))",
    "io_inp": [
      -2,
      -4,
      4,
      1,
      4
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(sub_n(input,5))),32))"
  },
  {
    "input": "input : list = [-2, 1, -4, 0]\noutput : list = [2, 5, 0, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-2, 1, -4, 0],-5),-3),-2)",
    "io_inp": [
      -2,
      1,
      -4,
      0
    ],
    "io_out": [
      2,
      5,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-5),-3),-2)"
  },
  {
    "input": "input : list = [2, 2, 5, 5, 0, 4]\noutput : list = [5, 5, 4, 2, 2, 0]",
    "output": "generated_output : list = sort_des(reverse([2, 2, 5, 5, 0, 4]))",
    "io_inp": [
      2,
      2,
      5,
      5,
      0,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, 3, -5, -5]\noutput : list = [20, 20, 0, -12]",
    "output": "generated_output : list = mul_n(sort_asc([0, 3, -5, -5]),-4)",
    "io_inp": [
      0,
      3,
      -5,
      -5
    ],
    "io_out": [
      20,
      20,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, 2, -2, -2]\noutput : list = [7, 7, 7, 11]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(sub_n([-2, 2, -2, -2],-1),-3),30)),-5)",
    "io_inp": [
      -2,
      2,
      -2,
      -2
    ],
    "io_out": [
      7,
      7,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(sub_n(input,-1),-3),30)),-5)"
  },
  {
    "input": "input : list = [2, 4, -5, -5]\noutput : list = [65, 65, -43, -19]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse([2, 4, -5, -5]),-3),4),5)",
    "io_inp": [
      2,
      4,
      -5,
      -5
    ],
    "io_out": [
      65,
      65,
      -43,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(input),-3),4),5)"
  },
  {
    "input": "input : list = [4, -5, -2, -3, -2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(drop([4, -5, -2, -3, -2, -5],4)))",
    "io_inp": [
      4,
      -5,
      -2,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,4)))"
  },
  {
    "input": "input : list = [-2, 1, -4, 2, 0]\noutput : list = [6, 5, 4, 2, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(reverse([-2, 1, -4, 2, 0])),4)))",
    "io_inp": [
      -2,
      1,
      -4,
      2,
      0
    ],
    "io_out": [
      6,
      5,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [3, 4, -1, -4, 0]\noutput : list = [-5, -6, -9, -10, -13]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(add_n([3, 4, -1, -4, 0],-1),-3)),-5),6)",
    "io_inp": [
      3,
      4,
      -1,
      -4,
      0
    ],
    "io_out": [
      -5,
      -6,
      -9,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(add_n(input,-1),-3)),-5),6)"
  },
  {
    "input": "input : list = [-3, -1, -3, -3, 5]\noutput : list = [-16, 8, 16, 16, 16]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(reverse([-3, -1, -3, -3, 5]),1),4),-1))",
    "io_inp": [
      -3,
      -1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -16,
      8,
      16,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(reverse(input),1),4),-1))"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [-10, -4, 14]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(sub_n([2, 4, -4],1),-3)),1))",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      -10,
      -4,
      14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(sub_n(input,1),-3)),1))"
  },
  {
    "input": "input : list = [2, -4, -3, -5, -2]\noutput : list = [2, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des([2, -4, -3, -5, -2])",
    "io_inp": [
      2,
      -4,
      -3,
      -5,
      -2
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 4, -1, 5, 3]\noutput : list = [7, 11, -1, 9, 1]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(mul_n([0, 4, -1, 5, 3],2)),-4),1),-2)",
    "io_inp": [
      0,
      4,
      -1,
      5,
      3
    ],
    "io_out": [
      7,
      11,
      -1,
      9,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(mul_n(input,2)),-4),1),-2)"
  },
  {
    "input": "input : list = [1, 1, -3, -1]\noutput : list = [4, 24, -16, -16]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(reverse([1, 1, -3, -1]),-5),-2),1),2)",
    "io_inp": [
      1,
      1,
      -3,
      -1
    ],
    "io_out": [
      4,
      24,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(reverse(input),-5),-2),1),2)"
  },
  {
    "input": "input : list = [4, 4, 5, 4, 2, -3]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(mul_n(take(reverse(take([4, 4, 5, 4, 2, -3],1)),33),-1),-3)",
    "io_inp": [
      4,
      4,
      5,
      4,
      2,
      -3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(take(input,1)),33),-1),-3)"
  },
  {
    "input": "input : list = [-4, 1, 0, -2]\noutput : list = [0, -2, -4, -5]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(reverse([-4, 1, 0, -2]),-4)),-1),5)",
    "io_inp": [
      -4,
      1,
      0,
      -2
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(reverse(input),-4)),-1),5)"
  },
  {
    "input": "input : list = [1, -1, -2]\noutput : list = [-15, -25, -30]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(sub_n([1, -1, -2],-1),13)),-5),5)",
    "io_inp": [
      1,
      -1,
      -2
    ],
    "io_out": [
      -15,
      -25,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(sub_n(input,-1),13)),-5),5)"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [2, 2, -1]",
    "output": "generated_output : list = add_n(sort_des(sub_n([-2, 1, 1],-4)),-3)",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,-4)),-3)"
  },
  {
    "input": "input : list = [4, -5, 0, 4]\noutput : list = [50, 25, 5, 5]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(add_n([4, -5, 0, 4],-5)),-5),9))",
    "io_inp": [
      4,
      -5,
      0,
      4
    ],
    "io_out": [
      50,
      25,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(add_n(input,-5)),-5),9))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse([3, 4])",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, 5]\noutput : list = [-9, -6, 15]",
    "output": "generated_output : list = take(mul_n(take(sort_asc([-3, -2, 5, 5]),3),3),16)",
    "io_inp": [
      -3,
      -2,
      5,
      5
    ],
    "io_out": [
      -9,
      -6,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_asc(input),3),3),16)"
  },
  {
    "input": "input : list = [2, 4, -3, -3, -1]\noutput : list = [32, 96, 96]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(drop([2, 4, -3, -3, -1],2)),-2),4),4)",
    "io_inp": [
      2,
      4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      32,
      96,
      96
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(drop(input,2)),-2),4),4)"
  },
  {
    "input": "input : list = [4, 1, 5, 5, -1]\noutput : list = [-1, 1, 4, 5, 5]",
    "output": "generated_output : list = take(reverse(sort_des([4, 1, 5, 5, -1])),14)",
    "io_inp": [
      4,
      1,
      5,
      5,
      -1
    ],
    "io_out": [
      -1,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),14)"
  },
  {
    "input": "input : list = [0, 5, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop([0, 5, -2, 4],2)",
    "io_inp": [
      0,
      5,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 0, -1, 0]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(add_n(drop([2, 0, -1, 0],2),3))",
    "io_inp": [
      2,
      0,
      -1,
      0
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,2),3))"
  },
  {
    "input": "input : list = [-2, 3, 4, 2, -2, 3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = drop(sort_des(take(take(sort_asc([-2, 3, 4, 2, -2, 3]),14),23)),4)",
    "io_inp": [
      -2,
      3,
      4,
      2,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(sort_des(take(take(sort_asc(input),14),23)),4)"
  },
  {
    "input": "input : list = [4, 0, 5, 0, -1, -3]\noutput : list = [2, 4, 5, 5, 10]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse([4, 0, 5, 0, -1, -3]),5)),5)",
    "io_inp": [
      4,
      0,
      5,
      0,
      -1,
      -3
    ],
    "io_out": [
      2,
      4,
      5,
      5,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(input),5)),5)"
  },
  {
    "input": "input : list = [-2, -3, 5, -4, 4, 5]\noutput : list = [40, 40, 32, -16, -24, -32]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([-2, -3, 5, -4, 4, 5],-2),-4))",
    "io_inp": [
      -2,
      -3,
      5,
      -4,
      4,
      5
    ],
    "io_out": [
      40,
      40,
      32,
      -16,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-2),-4))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, 16]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(reverse([-1, 0]),4))),-4)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(reverse(input),4))),-4)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [3, 6]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(sort_des([-2, 1]),14),5)),1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(sort_des(input),14),5)),1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [12, -8]",
    "output": "generated_output : list = take(mul_n(reverse(take(sort_des([2, -3]),3)),-4),2)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(sort_des(input),3)),-4),2)"
  },
  {
    "input": "input : list = [0, -4, -5, -4]\noutput : list = [12, 20, 20, 22]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(sub_n([0, -4, -5, -4],5),-1),-2),27))",
    "io_inp": [
      0,
      -4,
      -5,
      -4
    ],
    "io_out": [
      12,
      20,
      20,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(sub_n(input,5),-1),-2),27))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [4, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(sub_n([-2, 2],1),4),3),3))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(sub_n(input,1),4),3),3))"
  },
  {
    "input": "input : list = [2, 0, -5, 0, -2, -1]\noutput : list = [-5, -2, -1, 0, 0, 2]",
    "output": "generated_output : list = sort_asc([2, 0, -5, 0, -2, -1])",
    "io_inp": [
      2,
      0,
      -5,
      0,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, -5, 5]\noutput : list = [6, 0, -4, -4]",
    "output": "generated_output : list = sort_des(add_n(reverse([-1, -5, -5, 5]),1))",
    "io_inp": [
      -1,
      -5,
      -5,
      5
    ],
    "io_out": [
      6,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),1))"
  },
  {
    "input": "input : list = [-2, 0, -1]\noutput : list = [-6, -3, 0]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_des([-2, 0, -1]),3))),33)",
    "io_inp": [
      -2,
      0,
      -1
    ],
    "io_out": [
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_des(input),3))),33)"
  },
  {
    "input": "input : list = [0, -2, 1, 4, 2]\noutput : list = [32, 0, -16, -32, -64]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([0, -2, 1, 4, 2],-4)),4)",
    "io_inp": [
      0,
      -2,
      1,
      4,
      2
    ],
    "io_out": [
      32,
      0,
      -16,
      -32,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,-4)),4)"
  },
  {
    "input": "input : list = [2, 1, -5, 4, -3, 2]\noutput : list = [1, 0, -6, 3, -4, 1]",
    "output": "generated_output : list = add_n([2, 1, -5, 4, -3, 2],-1)",
    "io_inp": [
      2,
      1,
      -5,
      4,
      -3,
      2
    ],
    "io_out": [
      1,
      0,
      -6,
      3,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = take(take(sort_des(sort_des(sort_des([-2, 0]))),17),19)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_des(sort_des(input))),17),19)"
  },
  {
    "input": "input : list = [-5, 3, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = drop([-5, 3, 0, -4],2)",
    "io_inp": [
      -5,
      3,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [-3, -3, 9]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(sub_n([0, 0, 4],1))),3),35)",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      -3,
      -3,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(sub_n(input,1))),3),35)"
  },
  {
    "input": "input : list = [-5, 2, -3, -2]\noutput : list = [-73, 32, -43, -28]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(mul_n([-5, 2, -3, -2],-3),5),1),-1),-3)",
    "io_inp": [
      -5,
      2,
      -3,
      -2
    ],
    "io_out": [
      -73,
      32,
      -43,
      -28
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(mul_n(input,-3),5),1),-1),-3)"
  },
  {
    "input": "input : list = [0, 4, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = drop([0, 4, -2, -2],2)",
    "io_inp": [
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 1, 2, -4, 2]\noutput : list = [-13, -10, 5, 8, 8]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(mul_n([-5, 1, 2, -4, 2],3),-2))))",
    "io_inp": [
      -5,
      1,
      2,
      -4,
      2
    ],
    "io_out": [
      -13,
      -10,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(mul_n(input,3),-2))))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(sub_n([1, 2],2),3))))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(sub_n(input,2),3))))"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [-13, -5, 5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(mul_n([-4, 5, 0],2)),3),-2))",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      -13,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(mul_n(input,2)),3),-2))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [0]",
    "output": "generated_output : list = add_n(mul_n(take([5, -4, 2],1),1),-5)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,1),1),-5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse([-2, 5])",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(drop(take(sub_n(add_n([2, -5, 5],-1),5),13),2),4)",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(take(sub_n(add_n(input,-1),5),13),2),4)"
  },
  {
    "input": "input : list = [-4, 3, 5, -4]\noutput : list = [34, 34, 6, -2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n([-4, 3, 5, -4],-5),-4),2)),4)",
    "io_inp": [
      -4,
      3,
      5,
      -4
    ],
    "io_out": [
      34,
      34,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n(input,-5),-4),2)),4)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [-20, -30, -35]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sub_n([1, 3, 4],-3))),-5),7)",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      -20,
      -30,
      -35
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sub_n(input,-3))),-5),7)"
  },
  {
    "input": "input : list = [-4, 0, -2, -2, -4, 5]\noutput : list = [-5, -1, -3, -3, -5, 4]",
    "output": "generated_output : list = mul_n(add_n([-4, 0, -2, -2, -4, 5],-1),1)",
    "io_inp": [
      -4,
      0,
      -2,
      -2,
      -4,
      5
    ],
    "io_out": [
      -5,
      -1,
      -3,
      -3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),1)"
  },
  {
    "input": "input : list = [5, -2, -2, 0, 4, 5]\noutput : list = [-100, 40, 40, 0, -80, -100]",
    "output": "generated_output : list = mul_n(mul_n([5, -2, -2, 0, 4, 5],-5),4)",
    "io_inp": [
      5,
      -2,
      -2,
      0,
      4,
      5
    ],
    "io_out": [
      -100,
      40,
      40,
      0,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),4)"
  },
  {
    "input": "input : list = [-1, -5, 0, 5, -3]\noutput : list = [12]",
    "output": "generated_output : list = drop(mul_n([-1, -5, 0, 5, -3],-4),4)",
    "io_inp": [
      -1,
      -5,
      0,
      5,
      -3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,-4),4)"
  },
  {
    "input": "input : list = [4, 5, -1, -5, -2, -5]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 5, -1, -5, -2, -5],1)",
    "io_inp": [
      4,
      5,
      -1,
      -5,
      -2,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(add_n([-2, 1],-1),1),3),-2))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(add_n(input,-1),1),3),-2))"
  },
  {
    "input": "input : list = [-5, -2, 0, 3, 3]\noutput : list = [3, 3, 0, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, -2, 0, 3, 3]))",
    "io_inp": [
      -5,
      -2,
      0,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, -5, -2, -1, -5, 0]\noutput : list = [-5, -5, -2, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, -5, -2, -1, -5, 0]))",
    "io_inp": [
      3,
      -5,
      -2,
      -1,
      -5,
      0
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [16, 32]",
    "output": "generated_output : list = take(take(mul_n(add_n(add_n([-3, 1],4),3),4),27),7)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      16,
      32
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(add_n(input,4),3),4),27),7)"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take([4, 5, 3],1))",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [4, -2, 3, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(take([4, -2, 3, -2],1),4),-1),25))",
    "io_inp": [
      4,
      -2,
      3,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(take(input,1),4),-1),25))"
  },
  {
    "input": "input : list = [2, -2, 4, 3, 2, 1]\noutput : list = [11, 10, 9, 9, 8, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_asc([2, -2, 4, 3, 2, 1]),5))),-2)",
    "io_inp": [
      2,
      -2,
      4,
      3,
      2,
      1
    ],
    "io_out": [
      11,
      10,
      9,
      9,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_asc(input),5))),-2)"
  },
  {
    "input": "input : list = [-1, -5, 2, 0, 5]\noutput : list = [-1, 7, -7, -3, -13]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(add_n([-1, -5, 2, 0, 5],3),-4),-2),1),5)",
    "io_inp": [
      -1,
      -5,
      2,
      0,
      5
    ],
    "io_out": [
      -1,
      7,
      -7,
      -3,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(add_n(input,3),-4),-2),1),5)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(mul_n([4, 2],-1))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [5, -5, -5, -3, 4]\noutput : list = [-7, 0, 2, 2, -8]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse([5, -5, -5, -3, 4]),-1),-5),3),5)",
    "io_inp": [
      5,
      -5,
      -5,
      -3,
      4
    ],
    "io_out": [
      -7,
      0,
      2,
      2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse(input),-1),-5),3),5)"
  },
  {
    "input": "input : list = [2, -4, 3, 4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(reverse(reverse(drop([2, -4, 3, 4, -3],3))))",
    "io_inp": [
      2,
      -4,
      3,
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(drop(input,3))))"
  },
  {
    "input": "input : list = [-4, -1, -5, -1, -1]\noutput : list = [-2, -2, -2, -8, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-4, -1, -5, -1, -1])),2)",
    "io_inp": [
      -4,
      -1,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),2)"
  },
  {
    "input": "input : list = [-3, 2, 3, 1, -1, -1]\noutput : list = [-3, -3, -1, 1, 0, -5]",
    "output": "generated_output : list = add_n(reverse([-3, 2, 3, 1, -1, -1]),-2)",
    "io_inp": [
      -3,
      2,
      3,
      1,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -1,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(sub_n([-5, 3, 0],-1))),-1),4)",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(sub_n(input,-1))),-1),4)"
  },
  {
    "input": "input : list = [-4, 0, 3, 4]\noutput : list = [9]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(take([-4, 0, 3, 4],1),5),-4)),4)",
    "io_inp": [
      -4,
      0,
      3,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(take(input,1),5),-4)),4)"
  },
  {
    "input": "input : list = [0, 2, 0, -1]\noutput : list = [-1, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse([0, 2, 0, -1]))",
    "io_inp": [
      0,
      2,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, -4, -2, -4, 5]\noutput : list = [10, 20, -25]",
    "output": "generated_output : list = mul_n(drop([1, -4, -2, -4, 5],2),-5)",
    "io_inp": [
      1,
      -4,
      -2,
      -4,
      5
    ],
    "io_out": [
      10,
      20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [-4, -5, -2, 3, -5, 4]\noutput : list = [-25, -10, 15, 20]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop([-4, -5, -2, 3, -5, 4],2)),5)))",
    "io_inp": [
      -4,
      -5,
      -2,
      3,
      -5,
      4
    ],
    "io_out": [
      -25,
      -10,
      15,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop(input,2)),5)))"
  },
  {
    "input": "input : list = [1, -2, 2, -4, 2]\noutput : list = [-3, -1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(add_n([1, -2, 2, -4, 2],1)),17)))",
    "io_inp": [
      1,
      -2,
      2,
      -4,
      2
    ],
    "io_out": [
      -3,
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(add_n(input,1)),17)))"
  },
  {
    "input": "input : list = [5, 2, -3, 0, -4]\noutput : list = [5, 2, 0, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(sort_des([5, 2, -3, 0, -4])))))",
    "io_inp": [
      5,
      2,
      -3,
      0,
      -4
    ],
    "io_out": [
      5,
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [17, 23, 2]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(add_n([3, -4, -2],-4)),-3),33),-1)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      17,
      23,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(add_n(input,-4)),-3),33),-1)"
  },
  {
    "input": "input : list = [0, -1, -4, 3]\noutput : list = [-6, -7, -10, -3]",
    "output": "generated_output : list = add_n(sub_n(take(take(add_n([0, -1, -4, 3],-2),5),23),5),1)",
    "io_inp": [
      0,
      -1,
      -4,
      3
    ],
    "io_out": [
      -6,
      -7,
      -10,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(add_n(input,-2),5),23),5),1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(drop(take(sub_n(sort_asc([-4, -3]),5),24),1))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(drop(take(sub_n(sort_asc(input),5),24),1))"
  },
  {
    "input": "input : list = [1, -2, 5, 0, -3, 5]\noutput : list = [5, 6, 8, 9, 13, 13]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des([1, -2, 5, 0, -3, 5]),1),-3)),-4)",
    "io_inp": [
      1,
      -2,
      5,
      0,
      -3,
      5
    ],
    "io_out": [
      5,
      6,
      8,
      9,
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des(input),1),-3)),-4)"
  },
  {
    "input": "input : list = [-3, 2, 1, -3, -2]\noutput : list = [-3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(drop([-3, 2, 1, -3, -2],1))))",
    "io_inp": [
      -3,
      2,
      1,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(drop(input,1))))"
  },
  {
    "input": "input : list = [-1, 4, 0, 0]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(drop([-1, 4, 0, 0],2),-3)",
    "io_inp": [
      -1,
      4,
      0,
      0
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-3, 1, -5, 1, -1, -5]\noutput : list = [-5, -5, -3, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, 1, -5, 1, -1, -5]))",
    "io_inp": [
      -3,
      1,
      -5,
      1,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 4, -3, -5, -5, -3]\noutput : list = [5, 5, -1, -1, -4, -22]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(sub_n([-2, 4, -3, -5, -5, -3],-2),-3),4)))",
    "io_inp": [
      -2,
      4,
      -3,
      -5,
      -5,
      -3
    ],
    "io_out": [
      5,
      5,
      -1,
      -1,
      -4,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(sub_n(input,-2),-3),4)))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_des([4, 4]),13)),5),-4)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_des(input),13)),5),-4)"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(take(sub_n(take(take([-5, -2, 2],1),8),1),2))",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(take(input,1),8),1),2))"
  },
  {
    "input": "input : list = [-3, 2, -5, 0, 5, -2]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sub_n(take([-3, 2, -5, 0, 5, -2],2),1)",
    "io_inp": [
      -3,
      2,
      -5,
      0,
      5,
      -2
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),1)"
  },
  {
    "input": "input : list = [-2, -5, -2, -5]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(take([-2, -5, -2, -5],2))),-3),5)",
    "io_inp": [
      -2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(take(input,2))),-3),5)"
  },
  {
    "input": "input : list = [-2, -3, 1, -1]\noutput : list = [-1, -2, 2, 0]",
    "output": "generated_output : list = sub_n(add_n([-2, -3, 1, -1],2),1)",
    "io_inp": [
      -2,
      -3,
      1,
      -1
    ],
    "io_out": [
      -1,
      -2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),1)"
  },
  {
    "input": "input : list = [-2, -2, 1, 3, 4, 1]\noutput : list = [-2, -2, 1, 3, 4, 1]",
    "output": "generated_output : list = reverse(take(reverse([-2, -2, 1, 3, 4, 1]),18))",
    "io_inp": [
      -2,
      -2,
      1,
      3,
      4,
      1
    ],
    "io_out": [
      -2,
      -2,
      1,
      3,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),18))"
  },
  {
    "input": "input : list = [-5, 5, -4, -2]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(take([-5, 5, -4, -2],1),-2),5),40))",
    "io_inp": [
      -5,
      5,
      -4,
      -2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(take(input,1),-2),5),40))"
  },
  {
    "input": "input : list = [1, -4, 3, 4, -5]\noutput : list = [-7, -8, -10, -15, -16]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(add_n([1, -4, 3, 4, -5],-5))),-4),2)",
    "io_inp": [
      1,
      -4,
      3,
      4,
      -5
    ],
    "io_out": [
      -7,
      -8,
      -10,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(add_n(input,-5))),-4),2)"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [-20, -12, 8]",
    "output": "generated_output : list = sort_asc(mul_n([3, 5, -2],-4))",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      -20,
      -12,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [3, 2, 4, 1, -2, -1]\noutput : list = [-6, -3, 0, 3, 9, 12]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([3, 2, 4, 1, -2, -1],-2),-3))",
    "io_inp": [
      3,
      2,
      4,
      1,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -3,
      0,
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,-2),-3))"
  },
  {
    "input": "input : list = [2, -2, 0, -2, 3, 2]\noutput : list = [6, 4, 4, 0, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n([2, -2, 0, -2, 3, 2],2))",
    "io_inp": [
      2,
      -2,
      0,
      -2,
      3,
      2
    ],
    "io_out": [
      6,
      4,
      4,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [4, -4, 4, 5, -1]\noutput : list = [-2, 4, 3]",
    "output": "generated_output : list = take(add_n(reverse(add_n(drop([4, -4, 4, 5, -1],2),-4)),3),33)",
    "io_inp": [
      4,
      -4,
      4,
      5,
      -1
    ],
    "io_out": [
      -2,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(drop(input,2),-4)),3),33)"
  },
  {
    "input": "input : list = [-5, -2, -3, -5]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = take(reverse(reverse(drop([-5, -2, -3, -5],1))),28)",
    "io_inp": [
      -5,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(drop(input,1))),28)"
  },
  {
    "input": "input : list = [4, 4, -1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 4, -1],1)",
    "io_inp": [
      4,
      4,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 1, 4, 1, 3]\noutput : list = [25, 25, 20, 15, 10]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sub_n([2, 1, 4, 1, 3],1),-5)),1),-5)",
    "io_inp": [
      2,
      1,
      4,
      1,
      3
    ],
    "io_out": [
      25,
      25,
      20,
      15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sub_n(input,1),-5)),1),-5)"
  },
  {
    "input": "input : list = [-1, -4, -4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(drop([-1, -4, -4, 1],2),15)",
    "io_inp": [
      -1,
      -4,
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,2),15)"
  },
  {
    "input": "input : list = [3, 0, -5, 3]\noutput : list = [-9, 0, 15, -9]",
    "output": "generated_output : list = take(mul_n([3, 0, -5, 3],-3),6)",
    "io_inp": [
      3,
      0,
      -5,
      3
    ],
    "io_out": [
      -9,
      0,
      15,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),6)"
  },
  {
    "input": "input : list = [5, 1, 1, 0, 1, -2]\noutput : list = [0, 1, -2]",
    "output": "generated_output : list = drop([5, 1, 1, 0, 1, -2],3)",
    "io_inp": [
      5,
      1,
      1,
      0,
      1,
      -2
    ],
    "io_out": [
      0,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, -5, 1, -3, 5, -5]\noutput : list = [-15, -6, -3, 9, 15, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n([2, -5, 1, -3, 5, -5],-1),3))))",
    "io_inp": [
      2,
      -5,
      1,
      -3,
      5,
      -5
    ],
    "io_out": [
      -15,
      -6,
      -3,
      9,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n(input,-1),3))))"
  },
  {
    "input": "input : list = [5, -2, -4, -4, -4]\noutput : list = [40, 5, -5, -5, -5]",
    "output": "generated_output : list = take(take(mul_n(take(sub_n([5, -2, -4, -4, -4],-3),12),5),10),9)",
    "io_inp": [
      5,
      -2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      40,
      5,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(sub_n(input,-3),12),5),10),9)"
  },
  {
    "input": "input : list = [-3, -4, -4, 5]\noutput : list = [17, 17, 14, -10]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_des([-3, -4, -4, 5])),-3)),-5)",
    "io_inp": [
      -3,
      -4,
      -4,
      5
    ],
    "io_out": [
      17,
      17,
      14,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_des(input)),-3)),-5)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [9, 1]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(reverse([-1, 3])),2),-3))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(reverse(input)),2),-3))"
  },
  {
    "input": "input : list = [-2, -2, 1, -5]\noutput : list = [-4, -4, -1, -7]",
    "output": "generated_output : list = add_n([-2, -2, 1, -5],-2)",
    "io_inp": [
      -2,
      -2,
      1,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -4, -1, 0, 2]\noutput : list = [25, -5, -20, -65, -65]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse([-4, -4, -1, 0, 2]),-3),-1),-5)",
    "io_inp": [
      -4,
      -4,
      -1,
      0,
      2
    ],
    "io_out": [
      25,
      -5,
      -20,
      -65,
      -65
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(input),-3),-1),-5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [2]",
    "output": "generated_output : list = drop(sub_n([0, -1],-3),1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-3),1)"
  },
  {
    "input": "input : list = [2, -5, -1, 5, 5, 3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(take([2, -5, -1, 5, 5, 3],1)),3)))",
    "io_inp": [
      2,
      -5,
      -1,
      5,
      5,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(take(input,1)),3)))"
  },
  {
    "input": "input : list = [-3, -3, -1, 3, 1]\noutput : list = [3, 5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(drop([-3, -3, -1, 3, 1],2),-1),3),-3))",
    "io_inp": [
      -3,
      -3,
      -1,
      3,
      1
    ],
    "io_out": [
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(drop(input,2),-1),3),-3))"
  },
  {
    "input": "input : list = [1, -2, -3, -1]\noutput : list = [-9, -6]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(take([1, -2, -3, -1],2),-5),-2)))",
    "io_inp": [
      1,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(take(input,2),-5),-2)))"
  },
  {
    "input": "input : list = [0, -5, 2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(drop([0, -5, 2, -2],2))),13))",
    "io_inp": [
      0,
      -5,
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(drop(input,2))),13))"
  },
  {
    "input": "input : list = [-2, 0, 1, 5, 1]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 0, 1, 5, 1],1)",
    "io_inp": [
      -2,
      0,
      1,
      5,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(take([2, 0, 2],1),3),-4)))",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(take(input,1),3),-4)))"
  },
  {
    "input": "input : list = [1, 2, -4, -1, 4]\noutput : list = [-7, -4, -2, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc([1, 2, -4, -1, 4]),-3)",
    "io_inp": [
      1,
      2,
      -4,
      -1,
      4
    ],
    "io_out": [
      -7,
      -4,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-2, -4, -3, -3, 0, -3]\noutput : list = [-12, -11, -11, -11, -10, -8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(reverse([-2, -4, -3, -3, 0, -3])),5),3))",
    "io_inp": [
      -2,
      -4,
      -3,
      -3,
      0,
      -3
    ],
    "io_out": [
      -12,
      -11,
      -11,
      -11,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(reverse(input)),5),3))"
  },
  {
    "input": "input : list = [-3, 3, -3, 1, 5, 5]\noutput : list = [-3, 1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(drop([-3, 3, -3, 1, 5, 5],1))",
    "io_inp": [
      -3,
      3,
      -3,
      1,
      5,
      5
    ],
    "io_out": [
      -3,
      1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [4, 4, -2, -5, -5, -4]\noutput : list = [-4, -4, 0, 8, 32, 32]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sub_n([4, 4, -2, -5, -5, -4],-1)),3),24),4)",
    "io_inp": [
      4,
      4,
      -2,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0,
      8,
      32,
      32
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sub_n(input,-1)),3),24),4)"
  },
  {
    "input": "input : list = [-5, -1, 4, -4, -1]\noutput : list = [-2, -1, 2, 2, 7]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_des([-5, -1, 4, -4, -1])),21),-3))",
    "io_inp": [
      -5,
      -1,
      4,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -1,
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_des(input)),21),-3))"
  },
  {
    "input": "input : list = [-1, 0, -4, -5]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take(take([-1, 0, -4, -5],1),17),-3)",
    "io_inp": [
      -1,
      0,
      -4,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(take(input,1),17),-3)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [28, 12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_des([-2, 2]),5),-4)))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      28,
      12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_des(input),5),-4)))"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [2, 3, 6]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(sort_asc([0, 4, 1]),-2))),24)",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(sort_asc(input),-2))),24)"
  },
  {
    "input": "input : list = [5, 2, 2, 2]\noutput : list = [15, 6]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(drop(sort_asc([5, 2, 2, 2]),2)),3),1)",
    "io_inp": [
      5,
      2,
      2,
      2
    ],
    "io_out": [
      15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(drop(sort_asc(input),2)),3),1)"
  },
  {
    "input": "input : list = [4, -3, -5]\noutput : list = [-45, -10, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(add_n([4, -3, -5],5),3),3),19),-5)",
    "io_inp": [
      4,
      -3,
      -5
    ],
    "io_out": [
      -45,
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(add_n(input,5),3),3),19),-5)"
  },
  {
    "input": "input : list = [-1, 3, 1, 2, 3]\noutput : list = [-15, -25, -30, -35, -35]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(sort_asc([-1, 3, 1, 2, 3])),-4),-5))",
    "io_inp": [
      -1,
      3,
      1,
      2,
      3
    ],
    "io_out": [
      -15,
      -25,
      -30,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(sort_asc(input)),-4),-5))"
  },
  {
    "input": "input : list = [-4, 3, -3, -2]\noutput : list = [-1, 0, 1, 6]",
    "output": "generated_output : list = add_n(sub_n(take(take(sort_asc([-4, 3, -3, -2]),7),23),2),5)",
    "io_inp": [
      -4,
      3,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(sort_asc(input),7),23),2),5)"
  },
  {
    "input": "input : list = [4, 5, -5, 3, -4, -1]\noutput : list = [0, 1, 4, 8, 9, 10]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(sort_des([4, 5, -5, 3, -4, -1]))),8),-5)",
    "io_inp": [
      4,
      5,
      -5,
      3,
      -4,
      -1
    ],
    "io_out": [
      0,
      1,
      4,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(sort_des(input))),8),-5)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sort_asc([1, 1]),5))))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [2, -3, -5, 2, 2]\noutput : list = [-7]",
    "output": "generated_output : list = drop(add_n(sort_des(take([2, -3, -5, 2, 2],2)),-4),1)",
    "io_inp": [
      2,
      -3,
      -5,
      2,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_des(take(input,2)),-4),1)"
  },
  {
    "input": "input : list = [0, -1, -5, 0, 1]\noutput : list = [-1, 3, 4, 4, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n([0, -1, -5, 0, 1],-3)),4),-5)",
    "io_inp": [
      0,
      -1,
      -5,
      0,
      1
    ],
    "io_out": [
      -1,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(input,-3)),4),-5)"
  },
  {
    "input": "input : list = [-3, 1, -5, 5]\noutput : list = [-8, -4, -10, 0]",
    "output": "generated_output : list = take(sub_n(sub_n([-3, 1, -5, 5],1),4),30)",
    "io_inp": [
      -3,
      1,
      -5,
      5
    ],
    "io_out": [
      -8,
      -4,
      -10,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,1),4),30)"
  },
  {
    "input": "input : list = [3, -5, 5, -3, -1]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sort_des(take(take([3, -5, 5, -3, -1],1),14)),-3)",
    "io_inp": [
      3,
      -5,
      5,
      -3,
      -1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(input,1),14)),-3)"
  },
  {
    "input": "input : list = [2, 2, 5, 5, 5, -2]\noutput : list = [-10, -10, -10, -4, -4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(mul_n([2, 2, 5, 5, 5, -2],-2),17)),7))",
    "io_inp": [
      2,
      2,
      5,
      5,
      5,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -10,
      -4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(mul_n(input,-2),17)),7))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n(reverse([2, -1]),2))))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [4, -4, -2, -5]\noutput : list = [-4, -1, -3, 5]",
    "output": "generated_output : list = add_n(reverse([4, -4, -2, -5]),1)",
    "io_inp": [
      4,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [5, -1, 3]\noutput : list = [40]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(take([5, -1, 3],1),-4)),-2))",
    "io_inp": [
      5,
      -1,
      3
    ],
    "io_out": [
      40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(take(input,1),-4)),-2))"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = reverse(take(sort_asc([-1, 2, 3]),11))",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),11))"
  },
  {
    "input": "input : list = [-1, -5, 1, -5, 1]\noutput : list = [10, 6]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(take([-1, -5, 1, -5, 1],2),5)),-1))",
    "io_inp": [
      -1,
      -5,
      1,
      -5,
      1
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(take(input,2),5)),-1))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(mul_n([-1, -1],5)))))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [5, -4, 3, -1]\noutput : list = [-5, 4, -3, 1]",
    "output": "generated_output : list = mul_n([5, -4, 3, -1],-1)",
    "io_inp": [
      5,
      -4,
      3,
      -1
    ],
    "io_out": [
      -5,
      4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [3, 3, 5]\noutput : list = [11, 9, 9]",
    "output": "generated_output : list = sub_n(sub_n(reverse([3, 3, 5]),-2),-4)",
    "io_inp": [
      3,
      3,
      5
    ],
    "io_out": [
      11,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-2),-4)"
  },
  {
    "input": "input : list = [-3, 3, -1, -1]\noutput : list = [-8, -6, -6, -2]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(sub_n([-3, 3, -1, -1],3))),-2))",
    "io_inp": [
      -3,
      3,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(sub_n(input,3))),-2))"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [7, 3, -21]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_des([1, 2, -5]),4)),-1))",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      7,
      3,
      -21
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_des(input),4)),-1))"
  },
  {
    "input": "input : list = [-5, -5, 1]\noutput : list = [14, 2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(drop([-5, -5, 1],1))),-2),-4)",
    "io_inp": [
      -5,
      -5,
      1
    ],
    "io_out": [
      14,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(drop(input,1))),-2),-4)"
  },
  {
    "input": "input : list = [-2, -3, -3, 4]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(take([-2, -3, -3, 4],1),2))))",
    "io_inp": [
      -2,
      -3,
      -3,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(take(input,1),2))))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [64, 64]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(mul_n([-4, -4],-3),-4),-2)),-4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      64,
      64
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(mul_n(input,-3),-4),-2)),-4)"
  },
  {
    "input": "input : list = [1, 1, -1]\noutput : list = [-4, 4, 4]",
    "output": "generated_output : list = mul_n(reverse([1, 1, -1]),4)",
    "io_inp": [
      1,
      1,
      -1
    ],
    "io_out": [
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [3, 1, 4, 5, 1, 0]\noutput : list = [13, 28, 28, 58, 73, 88]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(mul_n([3, 1, 4, 5, 1, 0],-3),-2),-5),3))",
    "io_inp": [
      3,
      1,
      4,
      5,
      1,
      0
    ],
    "io_out": [
      13,
      28,
      28,
      58,
      73,
      88
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(mul_n(input,-3),-2),-5),3))"
  },
  {
    "input": "input : list = [-1, -5, -5, 0, 0]\noutput : list = [-4, -4, -9, -9, -5]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(sub_n([-1, -5, -5, 0, 0],5),-2),-1)),-2)",
    "io_inp": [
      -1,
      -5,
      -5,
      0,
      0
    ],
    "io_out": [
      -4,
      -4,
      -9,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(sub_n(input,5),-2),-1)),-2)"
  },
  {
    "input": "input : list = [5, -3, -1, -5, -2, -2]\noutput : list = [-7, -3, -5, 3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(take([5, -3, -1, -5, -2, -2],4),7),1),1))",
    "io_inp": [
      5,
      -3,
      -1,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(take(input,4),7),1),1))"
  },
  {
    "input": "input : list = [1, 5, 3, -5, -2, -2]\noutput : list = [-7, -7]",
    "output": "generated_output : list = take(take(add_n(sort_asc(drop([1, 5, 3, -5, -2, -2],4)),-5),37),28)",
    "io_inp": [
      1,
      5,
      3,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(drop(input,4)),-5),37),28)"
  },
  {
    "input": "input : list = [-2, 5, 4, -3]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take([-2, 5, 4, -3],2)",
    "io_inp": [
      -2,
      5,
      4,
      -3
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [-6, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sort_des([-5, 5, 5]),2),1)))",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      -6,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sort_des(input),2),1)))"
  },
  {
    "input": "input : list = [1, -5, -4, 1, 3]\noutput : list = [4, 2, -3, -4, 2]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(mul_n([1, -5, -4, 1, 3],1),-3),19),2))",
    "io_inp": [
      1,
      -5,
      -4,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      -3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(mul_n(input,1),-3),19),2))"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [4, 1, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(sort_des([-4, 4, -1]),11)),-1))",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(sort_des(input),11)),-1))"
  },
  {
    "input": "input : list = [4, 4, 4]\noutput : list = [16, 16, 16]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(mul_n([4, 4, 4],4)))))",
    "io_inp": [
      4,
      4,
      4
    ],
    "io_out": [
      16,
      16,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [2, 3, 0, -4]\noutput : list = [-3, 1, 3, 4]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(sort_des([2, 3, 0, -4]),-5),19)),-4)",
    "io_inp": [
      2,
      3,
      0,
      -4
    ],
    "io_out": [
      -3,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(sort_des(input),-5),19)),-4)"
  },
  {
    "input": "input : list = [-4, -1, -2, 0]\noutput : list = [0, 2, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(add_n([-4, -1, -2, 0],1),-5),-2)),-4)",
    "io_inp": [
      -4,
      -1,
      -2,
      0
    ],
    "io_out": [
      0,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(add_n(input,1),-5),-2)),-4)"
  },
  {
    "input": "input : list = [5, -4, -5, 3, 4, 0]\noutput : list = [49, 44, 39, 24, 4, -1]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc([5, -4, -5, 3, 4, 0]),-5),5),-1))",
    "io_inp": [
      5,
      -4,
      -5,
      3,
      4,
      0
    ],
    "io_out": [
      49,
      44,
      39,
      24,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc(input),-5),5),-1))"
  },
  {
    "input": "input : list = [5, -3, 3, 0, 4]\noutput : list = [4]",
    "output": "generated_output : list = take(sub_n([5, -3, 3, 0, 4],1),1)",
    "io_inp": [
      5,
      -3,
      3,
      0,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),1)"
  },
  {
    "input": "input : list = [0, -4, -5, -5, -2, -5]\noutput : list = [-2, -4, -6, -7, -7, -7]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des([0, -4, -5, -5, -2, -5])),-2),49))",
    "io_inp": [
      0,
      -4,
      -5,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des(input)),-2),49))"
  },
  {
    "input": "input : list = [-4, -4, 5, -1]\noutput : list = [-20, -20, -5, 25]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sort_asc([-4, -4, 5, -1]))),5),37)",
    "io_inp": [
      -4,
      -4,
      5,
      -1
    ],
    "io_out": [
      -20,
      -20,
      -5,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sort_asc(input))),5),37)"
  },
  {
    "input": "input : list = [0, -2, 4, -5, 4]\noutput : list = [80, 32, 0, -64, -64]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(sort_des([0, -2, 4, -5, 4]))),4),-4)",
    "io_inp": [
      0,
      -2,
      4,
      -5,
      4
    ],
    "io_out": [
      80,
      32,
      0,
      -64,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(sort_des(input))),4),-4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc([5, 0]))))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [0, -2, -1, 2, -5]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n(take([0, -2, -1, 2, -5],2),2))))",
    "io_inp": [
      0,
      -2,
      -1,
      2,
      -5
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(take(input,2),2))))"
  },
  {
    "input": "input : list = [3, 0, 0, -4]\noutput : list = [3, 0, 0, -4]",
    "output": "generated_output : list = sort_des([3, 0, 0, -4])",
    "io_inp": [
      3,
      0,
      0,
      -4
    ],
    "io_out": [
      3,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [4, -5]",
    "output": "generated_output : list = mul_n(drop([0, -4, 5],1),-1)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-3, -5, -5]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(sort_des([-3, -5, -5]),1))))",
    "io_inp": [
      -3,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-5, 5, 0, -2, -4]\noutput : list = [-9, -7, -5, 0, -10]",
    "output": "generated_output : list = reverse(add_n([-5, 5, 0, -2, -4],-5))",
    "io_inp": [
      -5,
      5,
      0,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -5,
      0,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [-5, -1, 3, 5]\noutput : list = [-56, -8]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(mul_n([-5, -1, 3, 5],3),1),2)),4)",
    "io_inp": [
      -5,
      -1,
      3,
      5
    ],
    "io_out": [
      -56,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(mul_n(input,3),1),2)),4)"
  },
  {
    "input": "input : list = [5, 3, -4, 0]\noutput : list = [5, 9, 12, 14]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(add_n([5, 3, -4, 0],5),4))))",
    "io_inp": [
      5,
      3,
      -4,
      0
    ],
    "io_out": [
      5,
      9,
      12,
      14
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(add_n(input,5),4))))"
  },
  {
    "input": "input : list = [-4, -4, -5, -3, 0]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(add_n(add_n(take(take([-4, -4, -5, -3, 0],1),3),-2),-4),1)",
    "io_inp": [
      -4,
      -4,
      -5,
      -3,
      0
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(take(input,1),3),-2),-4),1)"
  },
  {
    "input": "input : list = [4, -4, 5, -3, -5]\noutput : list = [12, 52, 7, 47]",
    "output": "generated_output : list = drop(reverse(sub_n(mul_n(sub_n([4, -4, 5, -3, -5],-5),5),-2)),1)",
    "io_inp": [
      4,
      -4,
      5,
      -3,
      -5
    ],
    "io_out": [
      12,
      52,
      7,
      47
    ],
    "output_masked": "generated_output : list = drop(reverse(sub_n(mul_n(sub_n(input,-5),5),-2)),1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [1, 7]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(sort_des([1, -5])),-5),1),5)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(sort_des(input)),-5),1),5)"
  },
  {
    "input": "input : list = [4, 3, 2, 5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take([4, 3, 2, 5],1),1)",
    "io_inp": [
      4,
      3,
      2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),1)"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [-20, -25, 10]",
    "output": "generated_output : list = mul_n([4, 5, -2],-5)",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      -20,
      -25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, 3, 4, -1, 1, 0]\noutput : list = [4, -1, 1, 0]",
    "output": "generated_output : list = drop([4, 3, 4, -1, 1, 0],2)",
    "io_inp": [
      4,
      3,
      4,
      -1,
      1,
      0
    ],
    "io_out": [
      4,
      -1,
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -5, -4, -1]\noutput : list = [-1, -5, -13, -17]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc([-2, -5, -4, -1]),4),-1)),4)",
    "io_inp": [
      -2,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc(input),4),-1)),4)"
  },
  {
    "input": "input : list = [5, 1, -5, 3, 5]\noutput : list = [-10, -4, -2, 0, 0]",
    "output": "generated_output : list = add_n(take(sort_asc([5, 1, -5, 3, 5]),10),-5)",
    "io_inp": [
      5,
      1,
      -5,
      3,
      5
    ],
    "io_out": [
      -10,
      -4,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),10),-5)"
  },
  {
    "input": "input : list = [4, 0, 4, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_des(drop(mul_n([4, 0, 4, -1, 0],1),4)))",
    "io_inp": [
      4,
      0,
      4,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(mul_n(input,1),4)))"
  },
  {
    "input": "input : list = [-2, 4, -5, -1, 1, 3]\noutput : list = [-4, -6, -8, -12, -3, -9]",
    "output": "generated_output : list = add_n(sub_n(reverse([-2, 4, -5, -1, 1, 3]),3),-4)",
    "io_inp": [
      -2,
      4,
      -5,
      -1,
      1,
      3
    ],
    "io_out": [
      -4,
      -6,
      -8,
      -12,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),3),-4)"
  },
  {
    "input": "input : list = [2, 4, -5, -2, 1]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(take([2, 4, -5, -2, 1],1),-2),5)),3)",
    "io_inp": [
      2,
      4,
      -5,
      -2,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(take(input,1),-2),5)),3)"
  },
  {
    "input": "input : list = [-2, -1, 4, -1, 4]\noutput : list = [6, 6, 1, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_asc([-2, -1, 4, -1, 4]))),2))",
    "io_inp": [
      -2,
      -1,
      4,
      -1,
      4
    ],
    "io_out": [
      6,
      6,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [0, 0, 2, 5, 0, -2]\noutput : list = [-2, 0, 0, 0, 2, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des([0, 0, 2, 5, 0, -2]),19))",
    "io_inp": [
      0,
      0,
      2,
      5,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      0,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),19))"
  },
  {
    "input": "input : list = [3, -3, 4, 2, 3]\noutput : list = [4, 2, 3]",
    "output": "generated_output : list = take(drop([3, -3, 4, 2, 3],2),17)",
    "io_inp": [
      3,
      -3,
      4,
      2,
      3
    ],
    "io_out": [
      4,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),17)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [6, 2]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(add_n([0, 4],-1),-3))),42)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(add_n(input,-1),-3))),42)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -2, 4],1)",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -4, 5, -3, -3]\noutput : list = [-7, -6, 1, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([4, -4, 5, -3, -3],-1)),-2)",
    "io_inp": [
      4,
      -4,
      5,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -6,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,-1)),-2)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_des([4, -1]),4),1),2),-2)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_des(input),4),1),2),-2)"
  },
  {
    "input": "input : list = [1, -4, -4, -3]\noutput : list = [1, -9, -9, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n([1, -4, -4, -3],2),1),-2),2)",
    "io_inp": [
      1,
      -4,
      -4,
      -3
    ],
    "io_out": [
      1,
      -9,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(input,2),1),-2),2)"
  },
  {
    "input": "input : list = [3, 1, 3, -2]\noutput : list = [-5, 10, 20, 20]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(mul_n([3, 1, 3, -2],5))),-5),42)",
    "io_inp": [
      3,
      1,
      3,
      -2
    ],
    "io_out": [
      -5,
      10,
      20,
      20
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(mul_n(input,5))),-5),42)"
  },
  {
    "input": "input : list = [2, -4, 3, 5]\noutput : list = [1, 7, 8, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sub_n([2, -4, 3, 5],-2))),-3))",
    "io_inp": [
      2,
      -4,
      3,
      5
    ],
    "io_out": [
      1,
      7,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sub_n(input,-2))),-3))"
  },
  {
    "input": "input : list = [2, 4, -2, 2]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(take([2, 4, -2, 2],1)),26),2))",
    "io_inp": [
      2,
      4,
      -2,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(take(input,1)),26),2))"
  },
  {
    "input": "input : list = [-2, 1, 5, 3, 4]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc([-2, 1, 5, 3, 4]),-4),1))",
    "io_inp": [
      -2,
      1,
      5,
      3,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(input),-4),1))"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = sort_des(reverse(add_n(drop([-2, -5, -3],1),-3)))",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(drop(input,1),-3)))"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [11]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n(take([5, 0, -1],1),-5),-5),1),-5)",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(take(input,1),-5),-5),1),-5)"
  },
  {
    "input": "input : list = [-3, 5, 2, 4, 0, 4]\noutput : list = [-3, 0, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, 5, 2, 4, 0, 4]))",
    "io_inp": [
      -3,
      5,
      2,
      4,
      0,
      4
    ],
    "io_out": [
      -3,
      0,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 3, 2, 2, -4]\noutput : list = [-27, -27, 3, 3, 8]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(mul_n([-4, 3, 2, 2, -4],5),-1),-5),3))",
    "io_inp": [
      -4,
      3,
      2,
      2,
      -4
    ],
    "io_out": [
      -27,
      -27,
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(mul_n(input,5),-1),-5),3))"
  },
  {
    "input": "input : list = [-4, -2, -2, -3, -3, 2]\noutput : list = [3, -1, -1, -2, -2, -3]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(sort_asc([-4, -2, -2, -3, -3, 2]),-1))),9)",
    "io_inp": [
      -4,
      -2,
      -2,
      -3,
      -3,
      2
    ],
    "io_out": [
      3,
      -1,
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(sort_asc(input),-1))),9)"
  },
  {
    "input": "input : list = [0, 5, 3, -4]\noutput : list = [-8, -1]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(drop([0, 5, 3, -4],2),4),21),20))",
    "io_inp": [
      0,
      5,
      3,
      -4
    ],
    "io_out": [
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(drop(input,2),4),21),20))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = add_n([-3, 4],-1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 0, 0, 0]\noutput : list = [26]",
    "output": "generated_output : list = reverse(add_n(mul_n(drop(reverse([-5, 0, 0, 0]),3),-5),1))",
    "io_inp": [
      -5,
      0,
      0,
      0
    ],
    "io_out": [
      26
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(drop(reverse(input),3),-5),1))"
  },
  {
    "input": "input : list = [5, 4, 1, -5]\noutput : list = [-9, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(drop([5, 4, 1, -5],1)),4))",
    "io_inp": [
      5,
      4,
      1,
      -5
    ],
    "io_out": [
      -9,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(drop(input,1)),4))"
  },
  {
    "input": "input : list = [-5, 2, -3, 4]\noutput : list = [0, 2, 7, 9]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(sort_asc([-5, 2, -3, 4])),-5),37))",
    "io_inp": [
      -5,
      2,
      -3,
      4
    ],
    "io_out": [
      0,
      2,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(sort_asc(input)),-5),37))"
  },
  {
    "input": "input : list = [0, 3, 4]\noutput : list = [8, 11, 12]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse([0, 3, 4]),-5))),3)",
    "io_inp": [
      0,
      3,
      4
    ],
    "io_out": [
      8,
      11,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse(input),-5))),3)"
  },
  {
    "input": "input : list = [0, 4, 2, 2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(take([0, 4, 2, 2],1))),28),-3)",
    "io_inp": [
      0,
      4,
      2,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(take(input,1))),28),-3)"
  },
  {
    "input": "input : list = [1, 5, -3, -3, 0]\noutput : list = [0, -3, -3, 5]",
    "output": "generated_output : list = reverse(drop([1, 5, -3, -3, 0],1))",
    "io_inp": [
      1,
      5,
      -3,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 13]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(sort_des([-5, 4]),-4),-2),27),5)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(sort_des(input),-4),-2),27),5)"
  },
  {
    "input": "input : list = [1, -5, 5, 2]\noutput : list = [-4, 8, 10, 16]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sub_n([1, -5, 5, 2],-3),2))),37)",
    "io_inp": [
      1,
      -5,
      5,
      2
    ],
    "io_out": [
      -4,
      8,
      10,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sub_n(input,-3),2))),37)"
  },
  {
    "input": "input : list = [-2, -2, -3, -4, -4]\noutput : list = [7, 7, 6, 5, 5]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(add_n([-2, -2, -3, -4, -4],-5),6)),-1),2)",
    "io_inp": [
      -2,
      -2,
      -3,
      -4,
      -4
    ],
    "io_out": [
      7,
      7,
      6,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(add_n(input,-5),6)),-1),2)"
  },
  {
    "input": "input : list = [-1, -3, -2]\noutput : list = [4, 6]",
    "output": "generated_output : list = mul_n(reverse(drop([-1, -3, -2],1)),-2)",
    "io_inp": [
      -1,
      -3,
      -2
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [-10, -4, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(mul_n([-1, -4, 4],1),-1)),2))",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      -10,
      -4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(mul_n(input,1),-1)),2))"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [-31, -25, 11]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(mul_n([-2, 5, 4],3),-2),1)))",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      -31,
      -25,
      11
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(mul_n(input,3),-2),1)))"
  },
  {
    "input": "input : list = [-3, -3, -5, -4, 2]\noutput : list = [-4, -3, -2, -2, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-3, -3, -5, -4, 2]),-1)",
    "io_inp": [
      -3,
      -3,
      -5,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [5, 2, 5, 4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(drop([5, 2, 5, 4, -2],3),2))))",
    "io_inp": [
      5,
      2,
      5,
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(drop(input,3),2))))"
  },
  {
    "input": "input : list = [-1, -3, -1, -4]\noutput : list = [5, 5, 15, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([-1, -3, -1, -4]),-5))",
    "io_inp": [
      -1,
      -3,
      -1,
      -4
    ],
    "io_out": [
      5,
      5,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [5, -4, 2, 1, 1]\noutput : list = [1, 1, 2]",
    "output": "generated_output : list = reverse(mul_n(take(take(drop([5, -4, 2, 1, 1],2),7),22),1))",
    "io_inp": [
      5,
      -4,
      2,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(drop(input,2),7),22),1))"
  },
  {
    "input": "input : list = [3, -1, 2, 3, 1, -5]\noutput : list = [33, 27, 9]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(drop([3, -1, 2, 3, 1, -5],3),2),-1),5),3)",
    "io_inp": [
      3,
      -1,
      2,
      3,
      1,
      -5
    ],
    "io_out": [
      33,
      27,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(drop(input,3),2),-1),5),3)"
  },
  {
    "input": "input : list = [1, 0, 1, -5, 1]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take([1, 0, 1, -5, 1],1))",
    "io_inp": [
      1,
      0,
      1,
      -5,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [4, -5, -4, -1, 0, -3]\noutput : list = [4, 40]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(take([4, -5, -4, -1, 0, -3],2))),-5),-4)",
    "io_inp": [
      4,
      -5,
      -4,
      -1,
      0,
      -3
    ],
    "io_out": [
      4,
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(take(input,2))),-5),-4)"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [-5, -7, -10]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n([-1, -4, 1],4),17)),-2))",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      -5,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n(input,4),17)),-2))"
  },
  {
    "input": "input : list = [0, 2, 1, 1, -2, 2]\noutput : list = [1, 3, 4, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n([0, 2, 1, 1, -2, 2],-5)),-2)))",
    "io_inp": [
      0,
      2,
      1,
      1,
      -2,
      2
    ],
    "io_out": [
      1,
      3,
      4,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n(input,-5)),-2)))"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc([4, 1, 2])),-1))",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(input)),-1))"
  },
  {
    "input": "input : list = [4, 5, -2, 2, -5]\noutput : list = [10, 5, -5, -25, -40]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n([4, 5, -2, 2, -5],-3),5)))",
    "io_inp": [
      4,
      5,
      -2,
      2,
      -5
    ],
    "io_out": [
      10,
      5,
      -5,
      -25,
      -40
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(input,-3),5)))"
  },
  {
    "input": "input : list = [-5, -5, 2, 4]\noutput : list = [-8, -8, -1, 1]",
    "output": "generated_output : list = add_n([-5, -5, 2, 4],-3)",
    "io_inp": [
      -5,
      -5,
      2,
      4
    ],
    "io_out": [
      -8,
      -8,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, 2, 4, 4, 5]\noutput : list = [-4, -4, -8, -8, -10]",
    "output": "generated_output : list = mul_n([2, 2, 4, 4, 5],-2)",
    "io_inp": [
      2,
      2,
      4,
      4,
      5
    ],
    "io_out": [
      -4,
      -4,
      -8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -2, -5, 1, 1]\noutput : list = [-7, -4, -4, -1, -1]",
    "output": "generated_output : list = sort_asc(sub_n([-2, -2, -5, 1, 1],2))",
    "io_inp": [
      -2,
      -2,
      -5,
      1,
      1
    ],
    "io_out": [
      -7,
      -4,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [9, 4]",
    "output": "generated_output : list = reverse(mul_n(add_n([1, -4],-5),-1))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-5),-1))"
  },
  {
    "input": "input : list = [-1, -1, 3, 5, 4]\noutput : list = [10]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(mul_n([-1, -1, 3, 5, 4],-2)),1),-1))",
    "io_inp": [
      -1,
      -1,
      3,
      5,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(mul_n(input,-2)),1),-1))"
  },
  {
    "input": "input : list = [2, -4, -4]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(drop([2, -4, -4],1),10),-3)))",
    "io_inp": [
      2,
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(drop(input,1),10),-3)))"
  },
  {
    "input": "input : list = [2, 5, 3, 3, 5, -2]\noutput : list = [0, -28, -20, -20, -28, -16]",
    "output": "generated_output : list = mul_n(reverse(add_n([2, 5, 3, 3, 5, -2],2)),-4)",
    "io_inp": [
      2,
      5,
      3,
      3,
      5,
      -2
    ],
    "io_out": [
      0,
      -28,
      -20,
      -20,
      -28,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,2)),-4)"
  },
  {
    "input": "input : list = [-1, -1, -1, -3]\noutput : list = [0, 2, 2, 2]",
    "output": "generated_output : list = sub_n(take(take(reverse(add_n([-1, -1, -1, -3],4)),8),14),1)",
    "io_inp": [
      -1,
      -1,
      -1,
      -3
    ],
    "io_out": [
      0,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(add_n(input,4)),8),14),1)"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(sort_des([1, 2, 1])))),-1)",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-3, 6]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([5, -4]),-2),1)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),-2),1)"
  },
  {
    "input": "input : list = [0, -4, 2, -3, -5, 3]\noutput : list = [3, 2, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des([0, -4, 2, -3, -5, 3])",
    "io_inp": [
      0,
      -4,
      2,
      -3,
      -5,
      3
    ],
    "io_out": [
      3,
      2,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, -1, -3, -4, -2]\noutput : list = [0, 1, 1, 2, 3, 4]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(sort_des([-3, 0, -1, -3, -4, -2]),-5),-4),3))",
    "io_inp": [
      -3,
      0,
      -1,
      -3,
      -4,
      -2
    ],
    "io_out": [
      0,
      1,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(sort_des(input),-5),-4),3))"
  },
  {
    "input": "input : list = [4, 4, 3, 3, 1]\noutput : list = [4, 4, 2, 2, -2]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([4, 4, 3, 3, 1],1),2),4)",
    "io_inp": [
      4,
      4,
      3,
      3,
      1
    ],
    "io_out": [
      4,
      4,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,1),2),4)"
  },
  {
    "input": "input : list = [-2, 2, 4, -5, 2, -1]\noutput : list = [-8, 8, 16, -20, 8, -4]",
    "output": "generated_output : list = mul_n([-2, 2, 4, -5, 2, -1],4)",
    "io_inp": [
      -2,
      2,
      4,
      -5,
      2,
      -1
    ],
    "io_out": [
      -8,
      8,
      16,
      -20,
      8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sub_n([1, -5],-2)),18)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sub_n(input,-2)),18)))"
  },
  {
    "input": "input : list = [5, -1, 5, 4, 5, 1]\noutput : list = [5]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n([5, -1, 5, 4, 5, 1],-5))),1)",
    "io_inp": [
      5,
      -1,
      5,
      4,
      5,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(input,-5))),1)"
  },
  {
    "input": "input : list = [5, -5, 5, -1, 5, -5]\noutput : list = [20, 20, 20, -4, -20, -20]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(sort_asc([5, -5, 5, -1, 5, -5]),4),34)))",
    "io_inp": [
      5,
      -5,
      5,
      -1,
      5,
      -5
    ],
    "io_out": [
      20,
      20,
      20,
      -4,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(sort_asc(input),4),34)))"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [3, 1, 5]",
    "output": "generated_output : list = take(take(sub_n(take(reverse([3, -1, 1]),12),-2),26),34)",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      3,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(reverse(input),12),-2),26),34)"
  },
  {
    "input": "input : list = [1, 1, 4, 2, 3, -3]\noutput : list = [-28, -22, -16, -10, -10, 14]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(mul_n([1, 1, 4, 2, 3, -3],-3)),2),2))",
    "io_inp": [
      1,
      1,
      4,
      2,
      3,
      -3
    ],
    "io_out": [
      -28,
      -22,
      -16,
      -10,
      -10,
      14
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(mul_n(input,-3)),2),2))"
  },
  {
    "input": "input : list = [-3, 4, 5, 1]\noutput : list = [1, 5, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, 5, 1])",
    "io_inp": [
      -3,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, -4]\noutput : list = [9, 9, -12]",
    "output": "generated_output : list = take(take(mul_n([3, 3, -4],3),8),18)",
    "io_inp": [
      3,
      3,
      -4
    ],
    "io_out": [
      9,
      9,
      -12
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,3),8),18)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(reverse([-4, -4])),-2),-1))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(reverse(input)),-2),-1))"
  },
  {
    "input": "input : list = [1, 0, -4, 5]\noutput : list = [-13, -9, -8, -4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(add_n([1, 0, -4, 5],-5),-3)),1))",
    "io_inp": [
      1,
      0,
      -4,
      5
    ],
    "io_out": [
      -13,
      -9,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(add_n(input,-5),-3)),1))"
  },
  {
    "input": "input : list = [4, 2, -5, 0, 0, 3]\noutput : list = [-15, 0, 0, 6, 9, 12]",
    "output": "generated_output : list = mul_n(sort_asc([4, 2, -5, 0, 0, 3]),3)",
    "io_inp": [
      4,
      2,
      -5,
      0,
      0,
      3
    ],
    "io_out": [
      -15,
      0,
      0,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-5, 4, -4, 5, -2, 0]\noutput : list = [-9, 0, -8, 1, -6, -4]",
    "output": "generated_output : list = take(add_n([-5, 4, -4, 5, -2, 0],-4),18)",
    "io_inp": [
      -5,
      4,
      -4,
      5,
      -2,
      0
    ],
    "io_out": [
      -9,
      0,
      -8,
      1,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),18)"
  },
  {
    "input": "input : list = [3, 2, 3, -1, 4, 2]\noutput : list = [-1, 2, 2, 3, 3, 4]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sort_des([3, 2, 3, -1, 4, 2]))),29))",
    "io_inp": [
      3,
      2,
      3,
      -1,
      4,
      2
    ],
    "io_out": [
      -1,
      2,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sort_des(input))),29))"
  },
  {
    "input": "input : list = [2, -5, -4, 4, -1, -4]\noutput : list = [10, -25, -20, 20, -5, -20]",
    "output": "generated_output : list = mul_n([2, -5, -4, 4, -1, -4],5)",
    "io_inp": [
      2,
      -5,
      -4,
      4,
      -1,
      -4
    ],
    "io_out": [
      10,
      -25,
      -20,
      20,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, 3, 1, 4, -2, -5]\noutput : list = [4, 2, 5, -1, -4]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(drop([2, 3, 1, 4, -2, -5],1),-1)),14))",
    "io_inp": [
      2,
      3,
      1,
      4,
      -2,
      -5
    ],
    "io_out": [
      4,
      2,
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(drop(input,1),-1)),14))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-8, -7]",
    "output": "generated_output : list = sub_n(take(sub_n([-1, 0],4),8),3)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,4),8),3)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [3, -1, -5]",
    "output": "generated_output : list = sort_des([3, -5, -1])",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, -5, -2, -4]\noutput : list = [16, -20, -8, -16]",
    "output": "generated_output : list = mul_n(drop([-1, 4, -5, -2, -4],1),4)",
    "io_inp": [
      -1,
      4,
      -5,
      -2,
      -4
    ],
    "io_out": [
      16,
      -20,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [36, -28, -44]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(mul_n([5, 3, -5],-4)),2)),2)",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      36,
      -28,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(mul_n(input,-4)),2)),2)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [30, 12]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(add_n([-1, 5],5),-1)),3),3)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      30,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(add_n(input,5),-1)),3),3)"
  },
  {
    "input": "input : list = [-1, -4, 4, 4, -3]\noutput : list = [-5, -8, 0, 0, -7]",
    "output": "generated_output : list = add_n([-1, -4, 4, 4, -3],-4)",
    "io_inp": [
      -1,
      -4,
      4,
      4,
      -3
    ],
    "io_out": [
      -5,
      -8,
      0,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 5, 3, 3, 4]\noutput : list = [-16, -12, -8, -8, 20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(add_n([-4, 5, 3, 3, 4],-1)))),-4)",
    "io_inp": [
      -4,
      5,
      3,
      3,
      4
    ],
    "io_out": [
      -16,
      -12,
      -8,
      -8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(add_n(input,-1)))),-4)"
  },
  {
    "input": "input : list = [-4, -5, -3, 2, 5, -5]\noutput : list = [-3, -3, -2, -1, 4, 7]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(add_n([-4, -5, -3, 2, 5, -5],3)),37),-1))",
    "io_inp": [
      -4,
      -5,
      -3,
      2,
      5,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(add_n(input,3)),37),-1))"
  },
  {
    "input": "input : list = [5, -5, -1, -3]\noutput : list = [3, 1, 5, -5]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n([5, -5, -1, -3],1)),12),-1)",
    "io_inp": [
      5,
      -5,
      -1,
      -3
    ],
    "io_out": [
      3,
      1,
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(input,1)),12),-1)"
  },
  {
    "input": "input : list = [2, -2, -4, -5, -4, 3]\noutput : list = [1, 0, -4, -6, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des([2, -2, -4, -5, -4, 3]),2)",
    "io_inp": [
      2,
      -2,
      -4,
      -5,
      -4,
      3
    ],
    "io_out": [
      1,
      0,
      -4,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-4, -2, 4, 2]\noutput : list = [-9, -7, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n([-4, -2, 4, 2],-2))),-3))",
    "io_inp": [
      -4,
      -2,
      4,
      2
    ],
    "io_out": [
      -9,
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n(input,-2))),-3))"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [4, -4, -20]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(sort_des([1, 5, -1]),-4))))",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [-3, 3, 1, 5, -3, 3]\noutput : list = [8, 6, 6, 4, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n([-3, 3, 1, 5, -3, 3],-3))",
    "io_inp": [
      -3,
      3,
      1,
      5,
      -3,
      3
    ],
    "io_out": [
      8,
      6,
      6,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [1, -2, 3, -1]\noutput : list = [2, 1, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(drop([1, -2, 3, -1],1),-1),8)))",
    "io_inp": [
      1,
      -2,
      3,
      -1
    ],
    "io_out": [
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(drop(input,1),-1),8)))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des([-2, 0])),-2),25)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(input)),-2),25)"
  },
  {
    "input": "input : list = [4, 3, -2, 5, 3]\noutput : list = [8, 7, 2, 9, 7]",
    "output": "generated_output : list = add_n(add_n(add_n([4, 3, -2, 5, 3],4),1),-1)",
    "io_inp": [
      4,
      3,
      -2,
      5,
      3
    ],
    "io_out": [
      8,
      7,
      2,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,4),1),-1)"
  },
  {
    "input": "input : list = [3, -3, -3, -5, -3]\noutput : list = [9, -9]",
    "output": "generated_output : list = mul_n(take([3, -3, -3, -5, -3],2),3)",
    "io_inp": [
      3,
      -3,
      -3,
      -5,
      -3
    ],
    "io_out": [
      9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),3)"
  },
  {
    "input": "input : list = [5, 3, 4, -4, 0]\noutput : list = [-4, 0, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 3, 4, -4, 0])",
    "io_inp": [
      5,
      3,
      4,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, -5, -2]\noutput : list = [15, 9, 8, 5]",
    "output": "generated_output : list = add_n(take(take(sub_n(sort_des([-1, 5, -5, -2]),-5),27),12),5)",
    "io_inp": [
      -1,
      5,
      -5,
      -2
    ],
    "io_out": [
      15,
      9,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(sort_des(input),-5),27),12),5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [12, 16]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n(sort_asc([0, 1]),-4)),27),-4)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(sort_asc(input),-4)),27),-4)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-8, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(sub_n([1, -5],-1),2))))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(sub_n(input,-1),2))))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [9, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n([-4, 3],2)))),4)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n(input,2)))),4)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [-2, -6, -8]",
    "output": "generated_output : list = reverse(add_n(add_n([-5, -3, 1],-2),-1))",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-2),-1))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_asc([-2, 0]),8)),2))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_asc(input),8)),2))"
  },
  {
    "input": "input : list = [0, 3, 2, -1, 1, -1]\noutput : list = [-1, -1, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([0, 3, 2, -1, 1, -1]))",
    "io_inp": [
      0,
      3,
      2,
      -1,
      1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [6, 2, 2]",
    "output": "generated_output : list = add_n(sort_des([0, 0, 4]),2)",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-4, 2, 2, -5, 5, -5]\noutput : list = [35, 20, 20, -10, -15, -15]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(sub_n([-4, 2, 2, -5, 5, -5],-1)),1),2),5)",
    "io_inp": [
      -4,
      2,
      2,
      -5,
      5,
      -5
    ],
    "io_out": [
      35,
      20,
      20,
      -10,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(sub_n(input,-1)),1),2),5)"
  },
  {
    "input": "input : list = [-4, 2, -4, -4, 0, -4]\noutput : list = [-5, 1, -5, -5, -1, -5]",
    "output": "generated_output : list = add_n([-4, 2, -4, -4, 0, -4],-1)",
    "io_inp": [
      -4,
      2,
      -4,
      -4,
      0,
      -4
    ],
    "io_out": [
      -5,
      1,
      -5,
      -5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [0, -1, -6]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(sort_des([-3, 3, 2]),3),1)))",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(sort_des(input),3),1)))"
  },
  {
    "input": "input : list = [-2, 5, 1, -5, 3, 1]\noutput : list = [5, 3, 1, 1, -2, -5]",
    "output": "generated_output : list = sort_des([-2, 5, 1, -5, 3, 1])",
    "io_inp": [
      -2,
      5,
      1,
      -5,
      3,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, 1, -1, 5, 4]\noutput : list = [-26, -26, 4, -6, 24, 19]",
    "output": "generated_output : list = add_n(mul_n([-5, -5, 1, -1, 5, 4],5),-1)",
    "io_inp": [
      -5,
      -5,
      1,
      -1,
      5,
      4
    ],
    "io_out": [
      -26,
      -26,
      4,
      -6,
      24,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),-1)"
  },
  {
    "input": "input : list = [5, 2, -5, 0, -5, 0]\noutput : list = [20, -8, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc(take([5, 2, -5, 0, -5, 0],3))),-4))",
    "io_inp": [
      5,
      2,
      -5,
      0,
      -5,
      0
    ],
    "io_out": [
      20,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(take(input,3))),-4))"
  },
  {
    "input": "input : list = [-1, -4, 5, -1, 0]\noutput : list = [5, 0, -1]",
    "output": "generated_output : list = sort_des(drop([-1, -4, 5, -1, 0],2))",
    "io_inp": [
      -1,
      -4,
      5,
      -1,
      0
    ],
    "io_out": [
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [0, -4, 1, -2, 4]\noutput : list = [5, 2, 1, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sub_n([0, -4, 1, -2, 4],-2),-3)),-2))",
    "io_inp": [
      0,
      -4,
      1,
      -2,
      4
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sub_n(input,-2),-3)),-2))"
  },
  {
    "input": "input : list = [5, -3, 3, 0, 2]\noutput : list = [-25, 15, -15, 0, -10]",
    "output": "generated_output : list = mul_n([5, -3, 3, 0, 2],-5)",
    "io_inp": [
      5,
      -3,
      3,
      0,
      2
    ],
    "io_out": [
      -25,
      15,
      -15,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, -2, 2, -5]\noutput : list = [-8, 0, 8, 20]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n([0, -2, 2, -5],-4))))",
    "io_inp": [
      0,
      -2,
      2,
      -5
    ],
    "io_out": [
      -8,
      0,
      8,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [-4, 0, 5, 1]\noutput : list = [10, 2, 0, -8]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n([-4, 0, 5, 1],-1),-2)),27)",
    "io_inp": [
      -4,
      0,
      5,
      1
    ],
    "io_out": [
      10,
      2,
      0,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(input,-1),-2)),27)"
  },
  {
    "input": "input : list = [1, 3, -1, -3, -1, 1]\noutput : list = [-4, -6, -8, -10]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des(take([1, 3, -1, -3, -1, 1],4)),4)),3)",
    "io_inp": [
      1,
      3,
      -1,
      -3,
      -1,
      1
    ],
    "io_out": [
      -4,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(take(input,4)),4)),3)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc([5, 5])",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, 1, 0]\noutput : list = [4, -20, -16]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(drop([-1, -5, 1, 0],1),-3),-2),5),-4)",
    "io_inp": [
      -1,
      -5,
      1,
      0
    ],
    "io_out": [
      4,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(drop(input,1),-3),-2),5),-4)"
  },
  {
    "input": "input : list = [-1, 3, -4, -4, -4, -3]\noutput : list = [-4, -4, -4, -3, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3, -4, -4, -4, -3])",
    "io_inp": [
      -1,
      3,
      -4,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3, 5, -5, 0, 2]\noutput : list = [5, 5, 2, 0, -3, -5]",
    "output": "generated_output : list = sort_des([5, -3, 5, -5, 0, 2])",
    "io_inp": [
      5,
      -3,
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      5,
      5,
      2,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 2]",
    "output": "generated_output : list = take(reverse([2, 4]),3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),3)"
  },
  {
    "input": "input : list = [2, -1, -5, -3, 0]\noutput : list = [-6, 3, 15, 9, 0]",
    "output": "generated_output : list = mul_n([2, -1, -5, -3, 0],-3)",
    "io_inp": [
      2,
      -1,
      -5,
      -3,
      0
    ],
    "io_out": [
      -6,
      3,
      15,
      9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = reverse(mul_n([-1, -1, -4],-1))",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [0, 5, -5, 4]\noutput : list = [-18, 2, 18, 22]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(mul_n([0, 5, -5, 4],4),-2))))",
    "io_inp": [
      0,
      5,
      -5,
      4
    ],
    "io_out": [
      -18,
      2,
      18,
      22
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(mul_n(input,4),-2))))"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [-4, 1, 1]",
    "output": "generated_output : list = reverse(reverse(reverse([1, 1, -4])))",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [0, -3, -5, -2]\noutput : list = [0, -2, -3, -5]",
    "output": "generated_output : list = take(sort_des(reverse([0, -3, -5, -2])),21)",
    "io_inp": [
      0,
      -3,
      -5,
      -2
    ],
    "io_out": [
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),21)"
  },
  {
    "input": "input : list = [1, -3, -1]\noutput : list = [5, -5, -15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(sort_des([1, -3, -1])))),5)",
    "io_inp": [
      1,
      -3,
      -1
    ],
    "io_out": [
      5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [12, -8]",
    "output": "generated_output : list = mul_n([3, -2],4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, -1, 5, 0, -1]\noutput : list = [8, 3, 2, 2, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(sub_n([-4, -1, 5, 0, -1],-3),8))))",
    "io_inp": [
      -4,
      -1,
      5,
      0,
      -1
    ],
    "io_out": [
      8,
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(sub_n(input,-3),8))))"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [-24, -60, -72]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des([4, 1, 5]),-1),3),-4))",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      -24,
      -60,
      -72
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des(input),-1),3),-4))"
  },
  {
    "input": "input : list = [5, -5, -3, 0, -3, -5]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = drop([5, -5, -3, 0, -3, -5],3)",
    "io_inp": [
      5,
      -5,
      -3,
      0,
      -3,
      -5
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, -5, 0, -5, -3]\noutput : list = [-22, -30, -10, -30, -30]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(mul_n([-5, -5, 0, -5, -3],2),3),-2),2))",
    "io_inp": [
      -5,
      -5,
      0,
      -5,
      -3
    ],
    "io_out": [
      -22,
      -30,
      -10,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(mul_n(input,2),3),-2),2))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [0, -6]",
    "output": "generated_output : list = sub_n(sort_des([4, -2]),4)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [0, 1, 2, 2]\noutput : list = [7, 7, 6, 5]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(reverse([0, 1, 2, 2]),5))))",
    "io_inp": [
      0,
      1,
      2,
      2
    ],
    "io_out": [
      7,
      7,
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-5, -5, -5]\noutput : list = [-13, -13, -13]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sort_des([-5, -5, -5])),4)),-4)",
    "io_inp": [
      -5,
      -5,
      -5
    ],
    "io_out": [
      -13,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sort_des(input)),4)),-4)"
  },
  {
    "input": "input : list = [-3, 1, 4, 4, 1, 1]\noutput : list = [20, 4, -8, -8, 4, 4]",
    "output": "generated_output : list = mul_n(add_n([-3, 1, 4, 4, 1, 1],-2),-4)",
    "io_inp": [
      -3,
      1,
      4,
      4,
      1,
      1
    ],
    "io_out": [
      20,
      4,
      -8,
      -8,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-4)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [2, 4]",
    "output": "generated_output : list = add_n(sort_asc([1, 3]),1)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [4, -1, -3, 4, -1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(drop([4, -1, -3, 4, -1, 3],4),6))))",
    "io_inp": [
      4,
      -1,
      -3,
      4,
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(drop(input,4),6))))"
  },
  {
    "input": "input : list = [-1, -4, -3, -3, 0]\noutput : list = [-3, -3, 0]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(drop([-1, -4, -3, -3, 0],1)),3),8))",
    "io_inp": [
      -1,
      -4,
      -3,
      -3,
      0
    ],
    "io_out": [
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(drop(input,1)),3),8))"
  },
  {
    "input": "input : list = [1, -2, -1, 2, -5]\noutput : list = [-12]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(take([1, -2, -1, 2, -5],1),-3),24),4))",
    "io_inp": [
      1,
      -2,
      -1,
      2,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(take(input,1),-3),24),4))"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [-12, -20, 8]",
    "output": "generated_output : list = mul_n([3, 5, -2],-4)",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      -12,
      -20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [-7, 0, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_asc([5, 3, -4])),-3),4),-4)",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      -7,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_asc(input)),-3),4),-4)"
  },
  {
    "input": "input : list = [3, 2, -5, -3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(drop([3, 2, -5, -3, 0],3))",
    "io_inp": [
      3,
      2,
      -5,
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [4, 4, 2, -1, 4, 2]\noutput : list = [7, 5, 5, 2]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(drop([4, 4, 2, -1, 4, 2],2)),6)),-3)",
    "io_inp": [
      4,
      4,
      2,
      -1,
      4,
      2
    ],
    "io_out": [
      7,
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(drop(input,2)),6)),-3)"
  },
  {
    "input": "input : list = [1, -5, -5, 1, 5, 5]\noutput : list = [-9, -9, -3, -3, 1, 1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(reverse([1, -5, -5, 1, 5, 5])),2)),-2)",
    "io_inp": [
      1,
      -5,
      -5,
      1,
      5,
      5
    ],
    "io_out": [
      -9,
      -9,
      -3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(reverse(input)),2)),-2)"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [0, 8, 16]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(sub_n([-2, -4, 0],-4)),26),-4),-4)",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      0,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(sub_n(input,-4)),26),-4),-4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = take(reverse([1, 1]),4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, -4, -4, 1]\noutput : list = [-4, -4, -2, 1]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc([-2, -4, -4, 1]))))",
    "io_inp": [
      -2,
      -4,
      -4,
      1
    ],
    "io_out": [
      -4,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [1, -5, 5, 2]\noutput : list = [5, 2, 1, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([1, -5, 5, 2])),1)",
    "io_inp": [
      1,
      -5,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),1)"
  },
  {
    "input": "input : list = [2, -2, -1, -2]\noutput : list = [11, 11, 6, -9]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n([2, -2, -1, -2],-5),1),2))",
    "io_inp": [
      2,
      -2,
      -1,
      -2
    ],
    "io_out": [
      11,
      11,
      6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(input,-5),1),2))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [6, -3]",
    "output": "generated_output : list = mul_n([2, -1],3)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sub_n(take(take(sub_n([-3, 3],1),1),6),-4),-2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(sub_n(input,1),1),6),-4),-2)"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(drop([1, -4, -3],1))",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [4, 1, -3, 2, -3, 5]\noutput : list = [5, 4, 2, 1, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([4, 1, -3, 2, -3, 5])))",
    "io_inp": [
      4,
      1,
      -3,
      2,
      -3,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, 5, 1, -5]\noutput : list = [-3, -3, 3, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_asc([-5, 5, 1, -5])))),-2)",
    "io_inp": [
      -5,
      5,
      1,
      -5
    ],
    "io_out": [
      -3,
      -3,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n([4, 5],-1)),21))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(input,-1)),21))"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [-6, -10, -2]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(sub_n([0, -4, -2],-4),5)),2),46)",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(sub_n(input,-4),5)),2),46)"
  },
  {
    "input": "input : list = [4, -5, 1, 2, 4, 2]\noutput : list = [-7, -1, 0, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc([4, -5, 1, 2, 4, 2]),2),4)",
    "io_inp": [
      4,
      -5,
      1,
      2,
      4,
      2
    ],
    "io_out": [
      -7,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),2),4)"
  },
  {
    "input": "input : list = [0, 0, -3, 5, 1]\noutput : list = [4, 0, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(drop([0, 0, -3, 5, 1],1)),1)))",
    "io_inp": [
      0,
      0,
      -3,
      5,
      1
    ],
    "io_out": [
      4,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(drop(input,1)),1)))"
  },
  {
    "input": "input : list = [-5, 3, 3, -3, 1]\noutput : list = [-6, -4, 0, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([-5, 3, 3, -3, 1],-1)),2)",
    "io_inp": [
      -5,
      3,
      3,
      -3,
      1
    ],
    "io_out": [
      -6,
      -4,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-1)),2)"
  },
  {
    "input": "input : list = [-2, 2, 0, -3]\noutput : list = [-19, -18, -16, -14]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sub_n([-2, 2, 0, -3],2),-4),5),5))",
    "io_inp": [
      -2,
      2,
      0,
      -3
    ],
    "io_out": [
      -19,
      -18,
      -16,
      -14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sub_n(input,2),-4),5),5))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-6, -3]",
    "output": "generated_output : list = add_n([-5, -2],-1)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, 4, 3]\noutput : list = [3, 4, 4]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(reverse([4, 4, 3])),25)))",
    "io_inp": [
      4,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(reverse(input)),25)))"
  },
  {
    "input": "input : list = [-1, 5, 5, 3, -4]\noutput : list = [-33, -69, -69, -57, -15]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n(add_n([-1, 5, 5, 3, -4],5),-2),3),36),3)",
    "io_inp": [
      -1,
      5,
      5,
      3,
      -4
    ],
    "io_out": [
      -33,
      -69,
      -69,
      -57,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(add_n(input,5),-2),3),36),3)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [30, 15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(add_n([0, 1],-2),5))),-3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      30,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(add_n(input,-2),5))),-3)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc([-2, -2])",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -4, -4, -3]\noutput : list = [1, -4, -4, -3]",
    "output": "generated_output : list = reverse(reverse([1, -4, -4, -3]))",
    "io_inp": [
      1,
      -4,
      -4,
      -3
    ],
    "io_out": [
      1,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-3, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([5, -5]),-1),-3)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),-1),-3)"
  },
  {
    "input": "input : list = [3, 1, 1, 3, -2]\noutput : list = [-12, -10, -10, -12, -7]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(sub_n([3, 1, 1, 3, -2],-4),-1),-5),-2),2)",
    "io_inp": [
      3,
      1,
      1,
      3,
      -2
    ],
    "io_out": [
      -12,
      -10,
      -10,
      -12,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(sub_n(input,-4),-1),-5),-2),2)"
  },
  {
    "input": "input : list = [5, 0, 3, 3, -3, -1]\noutput : list = [12, 4, 0, -12, -12, -20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(reverse([5, 0, 3, 3, -3, -1]),-1),4)))",
    "io_inp": [
      5,
      0,
      3,
      3,
      -3,
      -1
    ],
    "io_out": [
      12,
      4,
      0,
      -12,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(reverse(input),-1),4)))"
  },
  {
    "input": "input : list = [-2, 1, -1, -1, -3, -5]\noutput : list = [-7, -3, -3, -1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(take([-2, 1, -1, -1, -3, -5],4)),-2)),-5)",
    "io_inp": [
      -2,
      1,
      -1,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -7,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(take(input,4)),-2)),-5)"
  },
  {
    "input": "input : list = [-3, -4, 1, -5, 4]\noutput : list = [-7]",
    "output": "generated_output : list = reverse(take(add_n(sub_n([-3, -4, 1, -5, 4],5),1),1))",
    "io_inp": [
      -3,
      -4,
      1,
      -5,
      4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(input,5),1),1))"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [25, 10, -5]",
    "output": "generated_output : list = sort_des(mul_n([-5, -2, 1],-5))",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      25,
      10,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [4, 5, 0]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc([4, 5, 0]),-1)",
    "io_inp": [
      4,
      5,
      0
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [3, -4, -3, 2]\noutput : list = [1, 2, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n([3, -4, -3, 2],-5))))",
    "io_inp": [
      3,
      -4,
      -3,
      2
    ],
    "io_out": [
      1,
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(input,-5))))"
  },
  {
    "input": "input : list = [-4, 0, 4, -3, 4]\noutput : list = [8, 4, 0, 7, 0]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-4, 0, 4, -3, 4],5),-1),1)",
    "io_inp": [
      -4,
      0,
      4,
      -3,
      4
    ],
    "io_out": [
      8,
      4,
      0,
      7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,5),-1),1)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-28, -10]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(mul_n([1, 4],-2),13)),3),-4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -28,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(mul_n(input,-2),13)),3),-4)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [2, 0]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(add_n([1, 3],2))),6),3)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(add_n(input,2))),6),3)"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [8, 10, 13]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n([0, 5, 2],4)),-4))",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      8,
      10,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(input,4)),-4))"
  },
  {
    "input": "input : list = [1, -5, -2, -3]\noutput : list = [-7, 8, 13, 23]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(reverse([1, -5, -2, -3]),-5),1)),-3)",
    "io_inp": [
      1,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -7,
      8,
      13,
      23
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(reverse(input),-5),1)),-3)"
  },
  {
    "input": "input : list = [4, -2, 3, -5, 5]\noutput : list = [8, -4, 6, -10, 10]",
    "output": "generated_output : list = mul_n([4, -2, 3, -5, 5],2)",
    "io_inp": [
      4,
      -2,
      3,
      -5,
      5
    ],
    "io_out": [
      8,
      -4,
      6,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 3, 5]\noutput : list = [10, -6, -10]",
    "output": "generated_output : list = reverse(reverse(mul_n([-5, 3, 5],-2)))",
    "io_inp": [
      -5,
      3,
      5
    ],
    "io_out": [
      10,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-3, -3, 2, -1, 5]\noutput : list = [3, 0, 6]",
    "output": "generated_output : list = add_n(drop([-3, -3, 2, -1, 5],2),1)",
    "io_inp": [
      -3,
      -3,
      2,
      -1,
      5
    ],
    "io_out": [
      3,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),1)"
  },
  {
    "input": "input : list = [-2, -1, -5, 2, 3]\noutput : list = [-7, 0, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(drop([-2, -1, -5, 2, 3],2))),4),-2)",
    "io_inp": [
      -2,
      -1,
      -5,
      2,
      3
    ],
    "io_out": [
      -7,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(drop(input,2))),4),-2)"
  },
  {
    "input": "input : list = [-3, -5, -5, -1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take([-3, -5, -5, -1],1),-4)",
    "io_inp": [
      -3,
      -5,
      -5,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-2, 3, 3, -5]\noutput : list = [9, 9, -15]",
    "output": "generated_output : list = mul_n(drop([-2, 3, 3, -5],1),3)",
    "io_inp": [
      -2,
      3,
      3,
      -5
    ],
    "io_out": [
      9,
      9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(drop([0, 3, -2],1),16))))",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(drop(input,1),16))))"
  },
  {
    "input": "input : list = [3, -2, 3, -1, 3]\noutput : list = [7, 2, 7, 3, 7]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(add_n([3, -2, 3, -1, 3],1),3),4),2),14)",
    "io_inp": [
      3,
      -2,
      3,
      -1,
      3
    ],
    "io_out": [
      7,
      2,
      7,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(add_n(input,1),3),4),2),14)"
  },
  {
    "input": "input : list = [-3, 4, -1, -5, 0, 3]\noutput : list = [-2, -7, -22, -27, -37, -47]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(add_n([-3, 4, -1, -5, 0, 3],-4),5)),-2))",
    "io_inp": [
      -3,
      4,
      -1,
      -5,
      0,
      3
    ],
    "io_out": [
      -2,
      -7,
      -22,
      -27,
      -37,
      -47
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(add_n(input,-4),5)),-2))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(sort_asc([5, 5]),1)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [2, 1, -2, 0]\noutput : list = [-12, -15, -18, -24]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(sort_asc([2, 1, -2, 0])),1),-5),3)",
    "io_inp": [
      2,
      1,
      -2,
      0
    ],
    "io_out": [
      -12,
      -15,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(sort_asc(input)),1),-5),3)"
  },
  {
    "input": "input : list = [2, 5, 1, -1]\noutput : list = [-3, 3, 6, 15]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(reverse([2, 5, 1, -1]),-3),17)),-1)",
    "io_inp": [
      2,
      5,
      1,
      -1
    ],
    "io_out": [
      -3,
      3,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(reverse(input),-3),17)),-1)"
  },
  {
    "input": "input : list = [-2, -3, 0, -4, -4]\noutput : list = [-9, -9, -8, -7, -5]",
    "output": "generated_output : list = sort_asc(add_n([-2, -3, 0, -4, -4],-5))",
    "io_inp": [
      -2,
      -3,
      0,
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_asc([3, -2])),-1),8))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_asc(input)),-1),8))"
  },
  {
    "input": "input : list = [-2, 4, 4, -3]\noutput : list = [29, -41, -41]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(drop([-2, 4, 4, -3],1),-2),5),-1))",
    "io_inp": [
      -2,
      4,
      4,
      -3
    ],
    "io_out": [
      29,
      -41,
      -41
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(drop(input,1),-2),5),-1))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(add_n([-5, -3],5)),19)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(add_n(input,5)),19)))"
  },
  {
    "input": "input : list = [0, 3, 3, 0, -5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(sort_asc([0, 3, 3, 0, -5, 3]),1),3),5),-2)",
    "io_inp": [
      0,
      3,
      3,
      0,
      -5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(sort_asc(input),1),3),5),-2)"
  },
  {
    "input": "input : list = [-3, -2, -5, 5]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(take([-3, -2, -5, 5],2)),-1),39))",
    "io_inp": [
      -3,
      -2,
      -5,
      5
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(take(input,2)),-1),39))"
  },
  {
    "input": "input : list = [1, -1, 3, 4]\noutput : list = [3, 5, 7, 8]",
    "output": "generated_output : list = take(add_n(sort_asc(take(sort_des([1, -1, 3, 4]),5)),4),45)",
    "io_inp": [
      1,
      -1,
      3,
      4
    ],
    "io_out": [
      3,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(sort_des(input),5)),4),45)"
  },
  {
    "input": "input : list = [-4, -3, 2]\noutput : list = [12, 9, -6]",
    "output": "generated_output : list = sort_des(reverse(take(take(mul_n([-4, -3, 2],-3),13),9)))",
    "io_inp": [
      -4,
      -3,
      2
    ],
    "io_out": [
      12,
      9,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(mul_n(input,-3),13),9)))"
  },
  {
    "input": "input : list = [0, -3, 0]\noutput : list = [0, 3, 0]",
    "output": "generated_output : list = mul_n([0, -3, 0],-1)",
    "io_inp": [
      0,
      -3,
      0
    ],
    "io_out": [
      0,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 3, -3, -1]\noutput : list = [-7]",
    "output": "generated_output : list = take(take(add_n(reverse(take([-3, 3, -3, -1],1)),-4),10),18)",
    "io_inp": [
      -3,
      3,
      -3,
      -1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(take(input,1)),-4),10),18)"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [64, 48, 0]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(sort_asc([-2, -4, 4]),4),-2),8),4)",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      64,
      48,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(sort_asc(input),4),-2),8),4)"
  },
  {
    "input": "input : list = [4, 3, 3, -5, 1, 0]\noutput : list = [-5, 0, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(drop([4, 3, 3, -5, 1, 0],1)))))",
    "io_inp": [
      4,
      3,
      3,
      -5,
      1,
      0
    ],
    "io_out": [
      -5,
      0,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-1, -2, -4, 1]\noutput : list = [-13, -11, -10, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(add_n([-1, -2, -4, 1],-1),5)),3))",
    "io_inp": [
      -1,
      -2,
      -4,
      1
    ],
    "io_out": [
      -13,
      -11,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(add_n(input,-1),5)),3))"
  },
  {
    "input": "input : list = [-3, -1, 5, 1, 1, 4]\noutput : list = [-5, -3, -1, -1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(sub_n([-3, -1, 5, 1, 1, 4],1)))),1)",
    "io_inp": [
      -3,
      -1,
      5,
      1,
      1,
      4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(sub_n(input,1)))),1)"
  },
  {
    "input": "input : list = [-3, -4, 3, -1, 5, 2]\noutput : list = [1, 8, 7]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(take([-3, -4, 3, -1, 5, 2],3),-3)),-1),-1)",
    "io_inp": [
      -3,
      -4,
      3,
      -1,
      5,
      2
    ],
    "io_out": [
      1,
      8,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(take(input,3),-3)),-1),-1)"
  },
  {
    "input": "input : list = [-2, 3, 2, -4, -5, 1]\noutput : list = [-2, 3, 2, -4, -5, 1]",
    "output": "generated_output : list = reverse(reverse([-2, 3, 2, -4, -5, 1]))",
    "io_inp": [
      -2,
      3,
      2,
      -4,
      -5,
      1
    ],
    "io_out": [
      -2,
      3,
      2,
      -4,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [3]",
    "output": "generated_output : list = add_n(add_n(drop(reverse(reverse([4, -5])),1),3),5)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(reverse(reverse(input)),1),3),5)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [0, -35]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des(sub_n([2, -5],3)),5),-5),28)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      0,
      -35
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(sub_n(input,3)),5),-5),28)"
  },
  {
    "input": "input : list = [2, -1, -2, -2, -2, -5]\noutput : list = [8, 5, 4, 4, 4, 1]",
    "output": "generated_output : list = add_n(sort_des(sub_n([2, -1, -2, -2, -2, -5],-1)),5)",
    "io_inp": [
      2,
      -1,
      -2,
      -2,
      -2,
      -5
    ],
    "io_out": [
      8,
      5,
      4,
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,-1)),5)"
  },
  {
    "input": "input : list = [4, 4, 0]\noutput : list = [-65, -65, -45]",
    "output": "generated_output : list = take(mul_n(add_n(add_n([4, 4, 0],4),5),-5),9)",
    "io_inp": [
      4,
      4,
      0
    ],
    "io_out": [
      -65,
      -65,
      -45
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(input,4),5),-5),9)"
  },
  {
    "input": "input : list = [5, -4, 2, 1]\noutput : list = [5, 2, 1, -4]",
    "output": "generated_output : list = sort_des([5, -4, 2, 1])",
    "io_inp": [
      5,
      -4,
      2,
      1
    ],
    "io_out": [
      5,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, 4, 4]\noutput : list = [27]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(take([3, 2, 4, 4],1),-3),3)),3)",
    "io_inp": [
      3,
      2,
      4,
      4
    ],
    "io_out": [
      27
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(take(input,1),-3),3)),3)"
  },
  {
    "input": "input : list = [4, 3, -3, 0]\noutput : list = [14, 11, 2, -7]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse([4, 3, -3, 0])),3),2)",
    "io_inp": [
      4,
      3,
      -3,
      0
    ],
    "io_out": [
      14,
      11,
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(input)),3),2)"
  },
  {
    "input": "input : list = [-4, 2, -4, -4, -5, 0]\noutput : list = [-5]",
    "output": "generated_output : list = drop(sort_des(sort_des(reverse(sort_asc([-4, 2, -4, -4, -5, 0])))),5)",
    "io_inp": [
      -4,
      2,
      -4,
      -4,
      -5,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [-15, -11, 1]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sub_n([-1, 5, -3],5)),2),-1))",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      -15,
      -11,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sub_n(input,5)),2),-1))"
  },
  {
    "input": "input : list = [1, 1, -2, -4]\noutput : list = [24, 12, -6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(mul_n([1, 1, -2, -4],3)),31)),-2)",
    "io_inp": [
      1,
      1,
      -2,
      -4
    ],
    "io_out": [
      24,
      12,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(mul_n(input,3)),31)),-2)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [10]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take([-1, -1, -1],1),4),-2))",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(input,1),4),-2))"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-5, 2, -5],1)))",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-2, -5, 1, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(take([-2, -5, 1, -2],2),-5),1)),2)",
    "io_inp": [
      -2,
      -5,
      1,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(take(input,2),-5),1)),2)"
  },
  {
    "input": "input : list = [-5, -1, -2, -4]\noutput : list = [34, 24, 19, 39]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(sub_n([-5, -1, -2, -4],3),-5)),19),-1)",
    "io_inp": [
      -5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      34,
      24,
      19,
      39
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(sub_n(input,3),-5)),19),-1)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-9, -8, 0]",
    "output": "generated_output : list = take(add_n(take(sort_asc(mul_n([-4, -3, 5],1)),19),-5),40)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -9,
      -8,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(mul_n(input,1)),19),-5),40)"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(reverse([4, -1, 1])))),1)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(reverse(input)))),1)"
  },
  {
    "input": "input : list = [4, 5, -1, 3, 3]\noutput : list = [-13, -10]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(take([4, 5, -1, 3, 3],2),3),-1)),-2)",
    "io_inp": [
      4,
      5,
      -1,
      3,
      3
    ],
    "io_out": [
      -13,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(take(input,2),3),-1)),-2)"
  },
  {
    "input": "input : list = [2, 3, -5, 4, -5, -1]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(reverse(drop(sort_asc(drop([2, 3, -5, 4, -5, -1],3)),2)),-5)",
    "io_inp": [
      2,
      3,
      -5,
      4,
      -5,
      -1
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(sort_asc(drop(input,3)),2)),-5)"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [-15, -12, -9]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(sort_asc([-5, 1, -2]),-1),4),1),5)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      -15,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(sort_asc(input),-1),4),1),5)"
  },
  {
    "input": "input : list = [1, 2, 5, -2]\noutput : list = [16, -12, 0, 4]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n([1, 2, 5, -2],-4),5),-3))",
    "io_inp": [
      1,
      2,
      5,
      -2
    ],
    "io_out": [
      16,
      -12,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(input,-4),5),-3))"
  },
  {
    "input": "input : list = [3, -3, 3, 1, 0]\noutput : list = [0, 3, 4, 6, 6]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n([3, -3, 3, 1, 0],-1)),4))",
    "io_inp": [
      3,
      -3,
      3,
      1,
      0
    ],
    "io_out": [
      0,
      3,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(input,-1)),4))"
  },
  {
    "input": "input : list = [1, 2, -2, -2, -5, -1]\noutput : list = [4, 4, 2, -2, -4]",
    "output": "generated_output : list = mul_n(drop(sort_asc(reverse(sort_des([1, 2, -2, -2, -5, -1]))),1),-2)",
    "io_inp": [
      1,
      2,
      -2,
      -2,
      -5,
      -1
    ],
    "io_out": [
      4,
      4,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(reverse(sort_des(input))),1),-2)"
  },
  {
    "input": "input : list = [4, 3, 4, 0, -5]\noutput : list = [5, 6]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(take([4, 3, 4, 0, -5],2),-2),18),34))",
    "io_inp": [
      4,
      3,
      4,
      0,
      -5
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(take(input,2),-2),18),34))"
  },
  {
    "input": "input : list = [3, 4, -5, 2, -5, -3]\noutput : list = [-5, -5, -3, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([3, 4, -5, 2, -5, -3])",
    "io_inp": [
      3,
      4,
      -5,
      2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3, 4]\noutput : list = [10, 2, 9]",
    "output": "generated_output : list = take(take(sub_n([5, -3, 4],-5),8),9)",
    "io_inp": [
      5,
      -3,
      4
    ],
    "io_out": [
      10,
      2,
      9
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,-5),8),9)"
  },
  {
    "input": "input : list = [2, -4, 1, 4]\noutput : list = [5, -1, 4, 7]",
    "output": "generated_output : list = sub_n([2, -4, 1, 4],-3)",
    "io_inp": [
      2,
      -4,
      1,
      4
    ],
    "io_out": [
      5,
      -1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 1, 3, 3, 3, 3]\noutput : list = [1, 3, 5, 5, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc([-1, 1, 3, 3, 3, 3]),-2)",
    "io_inp": [
      -1,
      1,
      3,
      3,
      3,
      3
    ],
    "io_out": [
      1,
      3,
      5,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [1, 5, -3]\noutput : list = [12, -4, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_asc([1, 5, -3]),2)),-2))",
    "io_inp": [
      1,
      5,
      -3
    ],
    "io_out": [
      12,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_asc(input),2)),-2))"
  },
  {
    "input": "input : list = [3, 5, 5, 0, 3, 4]\noutput : list = [4, 6, 6, 1, 4, 5]",
    "output": "generated_output : list = add_n(sub_n([3, 5, 5, 0, 3, 4],1),2)",
    "io_inp": [
      3,
      5,
      5,
      0,
      3,
      4
    ],
    "io_out": [
      4,
      6,
      6,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),2)"
  },
  {
    "input": "input : list = [3, -1, -3, -4]\noutput : list = [-8, -4, -2, -1]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(mul_n([3, -1, -3, -4],-1),15),24)),5)",
    "io_inp": [
      3,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -8,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(mul_n(input,-1),15),24)),5)"
  },
  {
    "input": "input : list = [4, -2, -1, -3, 0]\noutput : list = [10, 6, 5, 4, 3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n([4, -2, -1, -3, 0],-1)),-5))",
    "io_inp": [
      4,
      -2,
      -1,
      -3,
      0
    ],
    "io_out": [
      10,
      6,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(input,-1)),-5))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(mul_n([0, 1],-3)),13)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(mul_n(input,-3)),13)))"
  },
  {
    "input": "input : list = [2, 5, -3, 2]\noutput : list = [-6, 9, 9, 18]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([2, 5, -3, 2]),1),3)",
    "io_inp": [
      2,
      5,
      -3,
      2
    ],
    "io_out": [
      -6,
      9,
      9,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),1),3)"
  },
  {
    "input": "input : list = [4, 5, -4, 4, 5]\noutput : list = [5, 5, 4, 4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse([4, 5, -4, 4, 5]))))",
    "io_inp": [
      4,
      5,
      -4,
      4,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des([-3, 3]),-1)),2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(input),-1)),2)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(sub_n([-1, 5],1)),-2),15))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(sub_n(input,1)),-2),15))"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [-28, -23, 12]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n([3, -4, -5],1)),5)),-2)",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      -28,
      -23,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n(input,1)),5)),-2)"
  },
  {
    "input": "input : list = [0, 1, 0, 1, 5]\noutput : list = [0, 15, 0, 15, 75]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(mul_n([0, 1, 0, 1, 5],5))),34),3)",
    "io_inp": [
      0,
      1,
      0,
      1,
      5
    ],
    "io_out": [
      0,
      15,
      0,
      15,
      75
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(mul_n(input,5))),34),3)"
  },
  {
    "input": "input : list = [-2, -4, 2, -5]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(take([-2, -4, 2, -5],2),8))))",
    "io_inp": [
      -2,
      -4,
      2,
      -5
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(take(input,2),8))))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-6, -5]",
    "output": "generated_output : list = add_n([-5, -4],-1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-6, -15]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_asc([-2, -5])))),3)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [5, -1, 1, 1]\noutput : list = [-5, 5, 5]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(reverse([5, -1, 1, 1])),5),18),3)",
    "io_inp": [
      5,
      -1,
      1,
      1
    ],
    "io_out": [
      -5,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(reverse(input)),5),18),3)"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [9, 7, 1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([5, 3, -3],4)))",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      9,
      7,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,4)))"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [-4, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, -4])",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, 0, -1, 5, 3]\noutput : list = [-4, -3, -3, 0, 2, 2]",
    "output": "generated_output : list = add_n(add_n(sort_asc([0, 5, 0, -1, 5, 3]),2),-5)",
    "io_inp": [
      0,
      5,
      0,
      -1,
      5,
      3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),2),-5)"
  },
  {
    "input": "input : list = [1, 3, -2, -3, 5]\noutput : list = [-3, -2, 1, 3, 5]",
    "output": "generated_output : list = take(reverse(sort_des(reverse([1, 3, -2, -3, 5]))),30)",
    "io_inp": [
      1,
      3,
      -2,
      -3,
      5
    ],
    "io_out": [
      -3,
      -2,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(input))),30)"
  },
  {
    "input": "input : list = [2, -3, -1, 2, -4]\noutput : list = [-2, -1, 1, 4, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse([2, -3, -1, 2, -4]))),2)",
    "io_inp": [
      2,
      -3,
      -1,
      2,
      -4
    ],
    "io_out": [
      -2,
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(input))),2)"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [6, -15, -21]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(sort_asc([5, -4, -2]),-3)),3),3)",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      6,
      -15,
      -21
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(sort_asc(input),-3)),3),3)"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [-8, -7, 0]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_des(sort_asc([2, 3, -5])),-1),1),-4)",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      -8,
      -7,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_des(sort_asc(input)),-1),1),-4)"
  },
  {
    "input": "input : list = [1, -1, -2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(mul_n([1, -1, -2],-1),14))))",
    "io_inp": [
      1,
      -1,
      -2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(mul_n(input,-1),14))))"
  },
  {
    "input": "input : list = [-2, 3, 1, 4]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(drop([-2, 3, 1, 4],1),10)),-2))",
    "io_inp": [
      -2,
      3,
      1,
      4
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(drop(input,1),10)),-2))"
  },
  {
    "input": "input : list = [-1, 5, 2, 5, 3, -3]\noutput : list = [5, -20, -25, -35, -35]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(drop([-1, 5, 2, 5, 3, -3],1),2),-5)))",
    "io_inp": [
      -1,
      5,
      2,
      5,
      3,
      -3
    ],
    "io_out": [
      5,
      -20,
      -25,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(drop(input,1),2),-5)))"
  },
  {
    "input": "input : list = [5, -3, 0, -2]\noutput : list = [9, 4, 2, 1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse([5, -3, 0, -2]),-4)))",
    "io_inp": [
      5,
      -3,
      0,
      -2
    ],
    "io_out": [
      9,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(input),-4)))"
  },
  {
    "input": "input : list = [-5, -1, -2, 1]\noutput : list = [-5, -2, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc([-5, -1, -2, 1]),21)))",
    "io_inp": [
      -5,
      -1,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(input),21)))"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [-29, -29, -29]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(mul_n([-1, -1, -1],2),3),5),3),-1)",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      -29,
      -29,
      -29
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(mul_n(input,2),3),5),3),-1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [25, 25]",
    "output": "generated_output : list = sort_asc(mul_n([-5, -5],-5))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [2, -3]",
    "output": "generated_output : list = add_n(reverse([0, 5]),-3)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-2, 2, 1, -5, -1, -3]\noutput : list = [3, -5, -3, 9, 1, 5]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n([-2, 2, 1, -5, -1, -3],-2),-1)))",
    "io_inp": [
      -2,
      2,
      1,
      -5,
      -1,
      -3
    ],
    "io_out": [
      3,
      -5,
      -3,
      9,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(input,-2),-1)))"
  },
  {
    "input": "input : list = [-4, 2, -5]\noutput : list = [-4, 10]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(drop([-4, 2, -5],1))),16),-2)",
    "io_inp": [
      -4,
      2,
      -5
    ],
    "io_out": [
      -4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(drop(input,1))),16),-2)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [10, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n([4, -4],5)),1))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(input,5)),1))"
  },
  {
    "input": "input : list = [3, 4, 3, 4]\noutput : list = [4, 4, 3, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(mul_n([3, 4, 3, 4],1),-2),-1)),1)",
    "io_inp": [
      3,
      4,
      3,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(mul_n(input,1),-2),-1)),1)"
  },
  {
    "input": "input : list = [0, -3, 1, -4, 2, -1]\noutput : list = [7, 6, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(add_n([0, -3, 1, -4, 2, -1],4),3))),2)",
    "io_inp": [
      0,
      -3,
      1,
      -4,
      2,
      -1
    ],
    "io_out": [
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(add_n(input,4),3))),2)"
  },
  {
    "input": "input : list = [5, 0, 1, 0, -1]\noutput : list = [-6, -7, -8]",
    "output": "generated_output : list = add_n(take(take(add_n(drop([5, 0, 1, 0, -1],2),-5),6),13),-2)",
    "io_inp": [
      5,
      0,
      1,
      0,
      -1
    ],
    "io_out": [
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(drop(input,2),-5),6),13),-2)"
  },
  {
    "input": "input : list = [2, 4, -4, -1, 0, -5]\noutput : list = [20, 10, 0, -5, -20, -25]",
    "output": "generated_output : list = mul_n(sort_des([2, 4, -4, -1, 0, -5]),5)",
    "io_inp": [
      2,
      4,
      -4,
      -1,
      0,
      -5
    ],
    "io_out": [
      20,
      10,
      0,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [2, 5, 1, 3, -4, -5]\noutput : list = [3, 6, 2]",
    "output": "generated_output : list = reverse(reverse(take(take(add_n([2, 5, 1, 3, -4, -5],1),3),4)))",
    "io_inp": [
      2,
      5,
      1,
      3,
      -4,
      -5
    ],
    "io_out": [
      3,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(add_n(input,1),3),4)))"
  },
  {
    "input": "input : list = [-5, 0, -4, -3]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(sub_n([-5, 0, -4, -3],5),1))),1)",
    "io_inp": [
      -5,
      0,
      -4,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(sub_n(input,5),1))),1)"
  },
  {
    "input": "input : list = [-5, 2, -5, -5]\noutput : list = [2, -5, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, 2, -5, -5]))",
    "io_inp": [
      -5,
      2,
      -5,
      -5
    ],
    "io_out": [
      2,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -4, 1, -3, 1]\noutput : list = [-9]",
    "output": "generated_output : list = reverse(sort_des(sub_n(drop(sub_n([-5, -4, 1, -3, 1],5),4),5)))",
    "io_inp": [
      -5,
      -4,
      1,
      -3,
      1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(drop(sub_n(input,5),4),5)))"
  },
  {
    "input": "input : list = [-1, 3, -2, 5, -2, 3]\noutput : list = [-2, 6, -4, 10, -4, 6]",
    "output": "generated_output : list = add_n(reverse(sub_n(mul_n(reverse([-1, 3, -2, 5, -2, 3]),2),-3)),-3)",
    "io_inp": [
      -1,
      3,
      -2,
      5,
      -2,
      3
    ],
    "io_out": [
      -2,
      6,
      -4,
      10,
      -4,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(mul_n(reverse(input),2),-3)),-3)"
  },
  {
    "input": "input : list = [4, 3, -5, 2, 3]\noutput : list = [16, 12, -20, 8, 12]",
    "output": "generated_output : list = take(mul_n([4, 3, -5, 2, 3],4),21)",
    "io_inp": [
      4,
      3,
      -5,
      2,
      3
    ],
    "io_out": [
      16,
      12,
      -20,
      8,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),21)"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [-2, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, 2, -2]))",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [6, 1, 6]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(add_n([5, 0, 5],1)),-3)),3)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      6,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(add_n(input,1)),-3)),3)"
  },
  {
    "input": "input : list = [-2, -3, -5, 0, 0, -4]\noutput : list = [28, 23, 18, 13, 3, 3]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(reverse([-2, -3, -5, 0, 0, -4]),15),-5)),3)",
    "io_inp": [
      -2,
      -3,
      -5,
      0,
      0,
      -4
    ],
    "io_out": [
      28,
      23,
      18,
      13,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(reverse(input),15),-5)),3)"
  },
  {
    "input": "input : list = [3, 3, -5, 5]\noutput : list = [16, -4, 12, 12]",
    "output": "generated_output : list = mul_n(take(take(sub_n(reverse([3, 3, -5, 5]),-3),23),22),2)",
    "io_inp": [
      3,
      3,
      -5,
      5
    ],
    "io_out": [
      16,
      -4,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(reverse(input),-3),23),22),2)"
  },
  {
    "input": "input : list = [-4, 0, -3, 5, 3, -3]\noutput : list = [2, 0, -3, -6, -6, -7]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(reverse([-4, 0, -3, 5, 3, -3])),-3),21))",
    "io_inp": [
      -4,
      0,
      -3,
      5,
      3,
      -3
    ],
    "io_out": [
      2,
      0,
      -3,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(reverse(input)),-3),21))"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [-7, -2]",
    "output": "generated_output : list = reverse(add_n(drop([0, 2, -3],1),-4))",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(input,1),-4))"
  },
  {
    "input": "input : list = [-1, -1, -3, 1, 0]\noutput : list = [5, 7, 7, 8, 9]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(sort_des([-1, -1, -3, 1, 0]),-1)),-4),3)",
    "io_inp": [
      -1,
      -1,
      -3,
      1,
      0
    ],
    "io_out": [
      5,
      7,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(sort_des(input),-1)),-4),3)"
  },
  {
    "input": "input : list = [-2, -5, 0, 5, 5, -1]\noutput : list = [8, 2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(drop(sub_n([-2, -5, 0, 5, 5, -1],-3),4))))",
    "io_inp": [
      -2,
      -5,
      0,
      5,
      5,
      -1
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(drop(sub_n(input,-3),4))))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des([4, -3]))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(reverse([2, 0])))))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [3, 3, -3, 0, -3]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(drop([3, 3, -3, 0, -3],2))),4))",
    "io_inp": [
      3,
      3,
      -3,
      0,
      -3
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(drop(input,2))),4))"
  },
  {
    "input": "input : list = [-4, -5, 0, 5, 0, 4]\noutput : list = [160]",
    "output": "generated_output : list = drop(mul_n(mul_n(mul_n(sub_n([-4, -5, 0, 5, 0, 4],2),-4),4),-5),5)",
    "io_inp": [
      -4,
      -5,
      0,
      5,
      0,
      4
    ],
    "io_out": [
      160
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(mul_n(sub_n(input,2),-4),4),-5),5)"
  },
  {
    "input": "input : list = [5, 4, -4, 2]\noutput : list = [5, -1, 7, 8]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse([5, 4, -4, 2]),-4),-5),-4)",
    "io_inp": [
      5,
      4,
      -4,
      2
    ],
    "io_out": [
      5,
      -1,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(input),-4),-5),-4)"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take([1, 1, 2],1))",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, 5, 4, -4]\noutput : list = [-20, 10, 5, -35]",
    "output": "generated_output : list = mul_n(add_n([-1, 5, 4, -4],-3),5)",
    "io_inp": [
      -1,
      5,
      4,
      -4
    ],
    "io_out": [
      -20,
      10,
      5,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-3),5)"
  },
  {
    "input": "input : list = [-2, -2, -5, 3, 4]\noutput : list = [4, 3, -5, -2, -2]",
    "output": "generated_output : list = reverse([-2, -2, -5, 3, 4])",
    "io_inp": [
      -2,
      -2,
      -5,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2, 1, -4]\noutput : list = [6, 5, 2, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(reverse([2, -2, 1, -4])),-4)))",
    "io_inp": [
      2,
      -2,
      1,
      -4
    ],
    "io_out": [
      6,
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [13, 12, 11]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_asc([2, 1, 0])),-5),-2),4)",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      13,
      12,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_asc(input)),-5),-2),4)"
  },
  {
    "input": "input : list = [5, 0, 4, -5]\noutput : list = [12, 11, 7, 2]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(reverse([5, 0, 4, -5]),3)),-1),5)",
    "io_inp": [
      5,
      0,
      4,
      -5
    ],
    "io_out": [
      12,
      11,
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(reverse(input),3)),-1),5)"
  },
  {
    "input": "input : list = [-2, 0, 1, -3, 2]\noutput : list = [-12, -16, -20, -28, -32]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(add_n([-2, 0, 1, -3, 2],-5),4))),54)",
    "io_inp": [
      -2,
      0,
      1,
      -3,
      2
    ],
    "io_out": [
      -12,
      -16,
      -20,
      -28,
      -32
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(add_n(input,-5),4))),54)"
  },
  {
    "input": "input : list = [-4, 4, 5, 4]\noutput : list = [5, 4, 4, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, 4, 5, 4]))",
    "io_inp": [
      -4,
      4,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 1, -5, 2, -1, 3]\noutput : list = [-25, -115, 155, -160, -25, -205]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(sub_n([-1, 1, -5, 2, -1, 3],-1),3),-3),5),5)",
    "io_inp": [
      -1,
      1,
      -5,
      2,
      -1,
      3
    ],
    "io_out": [
      -25,
      -115,
      155,
      -160,
      -25,
      -205
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(sub_n(input,-1),3),-3),5),5)"
  },
  {
    "input": "input : list = [-3, 3, -5]\noutput : list = [7, 3, -9]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n([-3, 3, -5],-3),-2)),3)",
    "io_inp": [
      -3,
      3,
      -5
    ],
    "io_out": [
      7,
      3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(input,-3),-2)),3)"
  },
  {
    "input": "input : list = [0, 5, -1, 0, 4]\noutput : list = [-1, 0, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 5, -1, 0, 4])",
    "io_inp": [
      0,
      5,
      -1,
      0,
      4
    ],
    "io_out": [
      -1,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [3, 5]",
    "output": "generated_output : list = reverse(add_n([2, 0],3))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sort_des([-1, -1])),8)),3)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sort_des(input)),8)),3)"
  },
  {
    "input": "input : list = [-3, -3, 0]\noutput : list = [-1, -1, 2]",
    "output": "generated_output : list = add_n([-3, -3, 0],2)",
    "io_inp": [
      -3,
      -3,
      0
    ],
    "io_out": [
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [1, 2, 3, -4]\noutput : list = [-4, 3, 2, 1]",
    "output": "generated_output : list = reverse(mul_n([1, 2, 3, -4],1))",
    "io_inp": [
      1,
      2,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-4, -2, 2, 4]\noutput : list = [5, 7, 11, 13]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(sub_n([-4, -2, 2, 4],-1),-5),6),3))",
    "io_inp": [
      -4,
      -2,
      2,
      4
    ],
    "io_out": [
      5,
      7,
      11,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(sub_n(input,-1),-5),6),3))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc([-3, 0])",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [-1, 8, 7]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(sub_n([-4, 5, 4],-5))),2),39)",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      -1,
      8,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(sub_n(input,-5))),2),39)"
  },
  {
    "input": "input : list = [-4, 3, 5, -5, -3, -2]\noutput : list = [-6, -5, -4, -3, 2, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_asc([-4, 3, 5, -5, -3, -2]))),-2),1)",
    "io_inp": [
      -4,
      3,
      5,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_asc(input))),-2),1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-50, -50]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(mul_n([-1, -1],5)),5)),2)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(mul_n(input,5)),5)),2)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(sort_asc(take(reverse(sort_des([-1, -3])),5)),16)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(sort_des(input)),5)),16)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [10, 7, 4]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(sub_n([0, 3, -3],-2)),5)))",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      10,
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(sub_n(input,-2)),5)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [20, 30]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n([-1, -3],-3)),1),-5))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      20,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n(input,-3)),1),-5))"
  },
  {
    "input": "input : list = [3, 2, 2, 3, 1]\noutput : list = [-2, -2, -1, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(mul_n([3, 2, 2, 3, 1],-1)),4)),-3)",
    "io_inp": [
      3,
      2,
      2,
      3,
      1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(mul_n(input,-1)),4)),-3)"
  },
  {
    "input": "input : list = [-2, -5, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(drop(sort_des(sort_des(reverse([-2, -5, -1]))),2))",
    "io_inp": [
      -2,
      -5,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_des(sort_des(reverse(input))),2))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [15, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([4, -3],-5)))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      15,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [5, 4, -3, 2, 5]\noutput : list = [-3, 2, 4, 5, 5]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sort_des([5, 4, -3, 2, 5])),-4)),4)",
    "io_inp": [
      5,
      4,
      -3,
      2,
      5
    ],
    "io_out": [
      -3,
      2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sort_des(input)),-4)),4)"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [-4, -4, -1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(add_n([1, 1, 4],-3)),2)))",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(add_n(input,-3)),2)))"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = drop([-1, 5, 3],1)",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 3, 1, 2, -4]\noutput : list = [3, 1, 2, -4]",
    "output": "generated_output : list = drop([4, 3, 1, 2, -4],1)",
    "io_inp": [
      4,
      3,
      1,
      2,
      -4
    ],
    "io_out": [
      3,
      1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, 4, -3, 0]\noutput : list = [9, 5, -3, -19, -23]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(mul_n([5, -2, 4, -3, 0],-4),6))),3)",
    "io_inp": [
      5,
      -2,
      4,
      -3,
      0
    ],
    "io_out": [
      9,
      5,
      -3,
      -19,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(mul_n(input,-4),6))),3)"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [-14, -14, 2]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(mul_n([0, -2, -2],-4),2),-2),-1))",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      -14,
      -14,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(mul_n(input,-4),2),-2),-1))"
  },
  {
    "input": "input : list = [1, -3, 2, 5, 1]\noutput : list = [-5, 0, 3, -1]",
    "output": "generated_output : list = take(sub_n(drop([1, -3, 2, 5, 1],1),2),11)",
    "io_inp": [
      1,
      -3,
      2,
      5,
      1
    ],
    "io_out": [
      -5,
      0,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,1),2),11)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [17, 27]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n([3, 5],5)),2)))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      17,
      27
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n(input,5)),2)))"
  },
  {
    "input": "input : list = [-2, 4, 3, -4, 5, -5]\noutput : list = [5, 4, 3, -2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(sort_asc([-2, 4, 3, -4, 5, -5]),16))))",
    "io_inp": [
      -2,
      4,
      3,
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      4,
      3,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(sort_asc(input),16))))"
  },
  {
    "input": "input : list = [0, 3, -2, -4, 1]\noutput : list = [0, -15, 10, 20, -5]",
    "output": "generated_output : list = mul_n([0, 3, -2, -4, 1],-5)",
    "io_inp": [
      0,
      3,
      -2,
      -4,
      1
    ],
    "io_out": [
      0,
      -15,
      10,
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, -1, 3, 3, 2]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(add_n(drop([4, -1, 3, 3, 2],2),-3)))",
    "io_inp": [
      4,
      -1,
      3,
      3,
      2
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(drop(input,2),-3)))"
  },
  {
    "input": "input : list = [-2, -5, -3, 5]\noutput : list = [52, 32, 22, -48]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(mul_n([-2, -5, -3, 5],5),-2),2),36))",
    "io_inp": [
      -2,
      -5,
      -3,
      5
    ],
    "io_out": [
      52,
      32,
      22,
      -48
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(mul_n(input,5),-2),2),36))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [2, 11]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sub_n([-1, -4],1),-3),2),-2),-2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      2,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sub_n(input,1),-3),2),-2),-2)"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [-75, -15, 25]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des(mul_n([0, 3, -2],4))),3),-5)",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      -75,
      -15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(mul_n(input,4))),3),-5)"
  },
  {
    "input": "input : list = [4, -4, 2, 1]\noutput : list = [-4, -2, -1, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(sort_des([4, -4, 2, 1])),-1)))",
    "io_inp": [
      4,
      -4,
      2,
      1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-4, 1, -5, -4]\noutput : list = [-5, -4, -4, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des([-4, 1, -5, -4]),4))",
    "io_inp": [
      -4,
      1,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),4))"
  },
  {
    "input": "input : list = [4, 0, -2, 2, -2, -3]\noutput : list = [19]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(take([4, 0, -2, 2, -2, -3],1),5))),1)",
    "io_inp": [
      4,
      0,
      -2,
      2,
      -2,
      -3
    ],
    "io_out": [
      19
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(take(input,1),5))),1)"
  },
  {
    "input": "input : list = [4, 5, -1, -1, -3]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(take([4, 5, -1, -1, -3],1),2)",
    "io_inp": [
      4,
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),2)"
  },
  {
    "input": "input : list = [4, -5, 3, 4, -4]\noutput : list = [-14, -11, 10, 13, 13]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(sort_des([4, -5, 3, 4, -4])),3),-1),2)",
    "io_inp": [
      4,
      -5,
      3,
      4,
      -4
    ],
    "io_out": [
      -14,
      -11,
      10,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(sort_des(input)),3),-1),2)"
  },
  {
    "input": "input : list = [-5, -2, -3, -4, 3, -1]\noutput : list = [3, -1, -2, -3, -4, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des([-5, -2, -3, -4, 3, -1]))),12)",
    "io_inp": [
      -5,
      -2,
      -3,
      -4,
      3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(input))),12)"
  },
  {
    "input": "input : list = [-1, 5, 0, -1, 2]\noutput : list = [5, 2, 0, -1, -1]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc([-1, 5, 0, -1, 2])),32))",
    "io_inp": [
      -1,
      5,
      0,
      -1,
      2
    ],
    "io_out": [
      5,
      2,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(input)),32))"
  },
  {
    "input": "input : list = [5, 5, 4, -4]\noutput : list = [14, 14, 12, -4]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse([5, 5, 4, -4])),2),2)",
    "io_inp": [
      5,
      5,
      4,
      -4
    ],
    "io_out": [
      14,
      14,
      12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(input)),2),2)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = sub_n([-5, 0],-5)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, -3, -3, -3, 0, -4]\noutput : list = [-7, -6, -6, -6, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n([2, -3, -3, -3, 0, -4],1)),-2))",
    "io_inp": [
      2,
      -3,
      -3,
      -3,
      0,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(input,1)),-2))"
  },
  {
    "input": "input : list = [-4, -2, -3]\noutput : list = [2, 1, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des([-4, -2, -3])),-2),-1)",
    "io_inp": [
      -4,
      -2,
      -3
    ],
    "io_out": [
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(input)),-2),-1)"
  },
  {
    "input": "input : list = [3, 4, 3, 0, -5]\noutput : list = [7, 6, 6, 3, -2]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(sub_n([3, 4, 3, 0, -5],-4))),36),1)",
    "io_inp": [
      3,
      4,
      3,
      0,
      -5
    ],
    "io_out": [
      7,
      6,
      6,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(sub_n(input,-4))),36),1)"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [-6, 12, 6]",
    "output": "generated_output : list = sub_n(mul_n([-4, 5, 2],2),-2)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      -6,
      12,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-2)"
  },
  {
    "input": "input : list = [-4, -3, 1, -1]\noutput : list = [9, 11, 7, 6]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(add_n([-4, -3, 1, -1],4)),-1),7),5)",
    "io_inp": [
      -4,
      -3,
      1,
      -1
    ],
    "io_out": [
      9,
      11,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(add_n(input,4)),-1),7),5)"
  },
  {
    "input": "input : list = [-5, 3, 5]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(take([-5, 3, 5],1)))),-1)",
    "io_inp": [
      -5,
      3,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(take(input,1)))),-1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [5, 8]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc([-2, -5]),-1))),-3)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc(input),-1))),-3)"
  },
  {
    "input": "input : list = [5, 5, -3, 5]\noutput : list = [25, 25, -15, 25]",
    "output": "generated_output : list = mul_n([5, 5, -3, 5],5)",
    "io_inp": [
      5,
      5,
      -3,
      5
    ],
    "io_out": [
      25,
      25,
      -15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, -1, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(drop(mul_n([4, -1, 0],2),1),-3),-3))",
    "io_inp": [
      4,
      -1,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(drop(mul_n(input,2),1),-3),-3))"
  },
  {
    "input": "input : list = [0, -3, -4, 2, 2]\noutput : list = [-4]",
    "output": "generated_output : list = drop(sort_des(sort_des([0, -3, -4, 2, 2])),4)",
    "io_inp": [
      0,
      -3,
      -4,
      2,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [2, -3, -3, -2]\noutput : list = [24, 24, 36, 84]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(add_n([2, -3, -3, -2],5),4),14)),3)",
    "io_inp": [
      2,
      -3,
      -3,
      -2
    ],
    "io_out": [
      24,
      24,
      36,
      84
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(add_n(input,5),4),14)),3)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [3, 1]",
    "output": "generated_output : list = add_n([-2, -4],5)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 4, -4, -1, -3, 3]\noutput : list = [-8, -8, -7, -5, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-4, 4, -4, -1, -3, 3]),4))",
    "io_inp": [
      -4,
      4,
      -4,
      -1,
      -3,
      3
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),4))"
  },
  {
    "input": "input : list = [5, -3, -2, -5]\noutput : list = [2, -6, -5, -8]",
    "output": "generated_output : list = add_n([5, -3, -2, -5],-3)",
    "io_inp": [
      5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      2,
      -6,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [7, -17, -20]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(mul_n([-4, 5, 4],-3),-4),-3),4))",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      7,
      -17,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(mul_n(input,-3),-4),-3),4))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(sub_n([0, 0],1),-5)),-3),7)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(sub_n(input,1),-5)),-3),7)"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [-2, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n([-1, 5, 5],1))))",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(input,1))))"
  },
  {
    "input": "input : list = [4, -4, 2, 5]\noutput : list = [-18, -6, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sub_n([4, -4, 2, 5],5),2))))",
    "io_inp": [
      4,
      -4,
      2,
      5
    ],
    "io_out": [
      -18,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sub_n(input,5),2))))"
  },
  {
    "input": "input : list = [5, -5, -2, -2, -1]\noutput : list = [-8, -5, -5, -4, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([5, -5, -2, -2, -1]),3))",
    "io_inp": [
      5,
      -5,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -8,
      -5,
      -5,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-5, 2, 2, 0]\noutput : list = [-4, -4, 0, 10]",
    "output": "generated_output : list = mul_n(sort_des(reverse([-5, 2, 2, 0])),-2)",
    "io_inp": [
      -5,
      2,
      2,
      0
    ],
    "io_out": [
      -4,
      -4,
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-2)"
  },
  {
    "input": "input : list = [1, 2, 3, -2, 1]\noutput : list = [5, 35, -15, -5, 5]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n([1, 2, 3, -2, 1],-2),3)),5)",
    "io_inp": [
      1,
      2,
      3,
      -2,
      1
    ],
    "io_out": [
      5,
      35,
      -15,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(input,-2),3)),5)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [5, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(sub_n([0, -4],-5),2))),4)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(sub_n(input,-5),2))),4)"
  },
  {
    "input": "input : list = [2, 2, 1, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(add_n(sort_asc(take(sort_des([2, 2, 1, 2]),2)),2),23)",
    "io_inp": [
      2,
      2,
      1,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(sort_des(input),2)),2),23)"
  },
  {
    "input": "input : list = [-2, -2, 2, 2, 4]\noutput : list = [4, 4, -16, -16, -26]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(mul_n([-2, -2, 2, 2, 4],-5))),2),4)",
    "io_inp": [
      -2,
      -2,
      2,
      2,
      4
    ],
    "io_out": [
      4,
      4,
      -16,
      -16,
      -26
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(mul_n(input,-5))),2),4)"
  },
  {
    "input": "input : list = [3, 4, -5, -2, 1]\noutput : list = [12, 16, 24, 36, 48]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(add_n([3, 4, -5, -2, 1],-4),3),-4),5))",
    "io_inp": [
      3,
      4,
      -5,
      -2,
      1
    ],
    "io_out": [
      12,
      16,
      24,
      36,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(add_n(input,-4),3),-4),5))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(reverse([-4, 3]))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, 4, -1, -4]\noutput : list = [5, 4]",
    "output": "generated_output : list = take(take([5, 4, -1, -4],2),5)",
    "io_inp": [
      5,
      4,
      -1,
      -4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = take(take(input,2),5)"
  },
  {
    "input": "input : list = [1, -1, 3, 1]\noutput : list = [-3, -5, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sub_n([1, -1, 3, 1],4),11))),2)",
    "io_inp": [
      1,
      -1,
      3,
      1
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sub_n(input,4),11))),2)"
  },
  {
    "input": "input : list = [-3, -2, 5, -5]\noutput : list = [0, 1, 8, -2]",
    "output": "generated_output : list = sub_n([-3, -2, 5, -5],-3)",
    "io_inp": [
      -3,
      -2,
      5,
      -5
    ],
    "io_out": [
      0,
      1,
      8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, -4, 2, 5, 5]\noutput : list = [35, 5, 0, -10, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(sub_n([3, -4, 2, 5, 5],4),-1)),-5))",
    "io_inp": [
      3,
      -4,
      2,
      5,
      5
    ],
    "io_out": [
      35,
      5,
      0,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(sub_n(input,4),-1)),-5))"
  },
  {
    "input": "input : list = [-1, -3, 4]\noutput : list = [0, -15, -21]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(add_n([-1, -3, 4],-4),3)),24))",
    "io_inp": [
      -1,
      -3,
      4
    ],
    "io_out": [
      0,
      -15,
      -21
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(add_n(input,-4),3)),24))"
  },
  {
    "input": "input : list = [4, -2, -2, 3, 1, 1]\noutput : list = [-13, -10, -4, -4, 5, 5]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(sort_asc([4, -2, -2, 3, 1, 1]),1),-3),2))",
    "io_inp": [
      4,
      -2,
      -2,
      3,
      1,
      1
    ],
    "io_out": [
      -13,
      -10,
      -4,
      -4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(sort_asc(input),1),-3),2))"
  },
  {
    "input": "input : list = [2, 1, -1, -4, -2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sub_n(drop([2, 1, -1, -4, -2],3),-3)",
    "io_inp": [
      2,
      1,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),-3)"
  },
  {
    "input": "input : list = [-5, 5, -5, 0, -4, 5]\noutput : list = [-120, 105]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(mul_n([-5, 5, -5, 0, -4, 5],-5),-1)),5),2)",
    "io_inp": [
      -5,
      5,
      -5,
      0,
      -4,
      5
    ],
    "io_out": [
      -120,
      105
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(mul_n(input,-5),-1)),5),2)"
  },
  {
    "input": "input : list = [3, 4, -2, -3, -2]\noutput : list = [-2, -1, 5, 4]",
    "output": "generated_output : list = take(sub_n(drop(sub_n(reverse([3, 4, -2, -3, -2]),3),1),-4),31)",
    "io_inp": [
      3,
      4,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(sub_n(reverse(input),3),1),-4),31)"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take([2, -3, -5],1))),-1)",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(input,1))),-1)"
  },
  {
    "input": "input : list = [-4, 3, 5, 5]\noutput : list = [5, 5, 3, -4]",
    "output": "generated_output : list = reverse([-4, 3, 5, 5])",
    "io_inp": [
      -4,
      3,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 1, 0, -5, -3, 4]\noutput : list = [-18, 0, -3]",
    "output": "generated_output : list = mul_n(sub_n(take([-5, 1, 0, -5, -3, 4],3),1),3)",
    "io_inp": [
      -5,
      1,
      0,
      -5,
      -3,
      4
    ],
    "io_out": [
      -18,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,3),1),3)"
  },
  {
    "input": "input : list = [-5, 0, 3, 4, -2]\noutput : list = [-9, -4, -1, 0, -6]",
    "output": "generated_output : list = add_n([-5, 0, 3, 4, -2],-4)",
    "io_inp": [
      -5,
      0,
      3,
      4,
      -2
    ],
    "io_out": [
      -9,
      -4,
      -1,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 3, 1, 5, 2]\noutput : list = [-9, 7]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(take([-5, 3, 1, 5, 2],2),2),-1)),-2)",
    "io_inp": [
      -5,
      3,
      1,
      5,
      2
    ],
    "io_out": [
      -9,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(take(input,2),2),-1)),-2)"
  },
  {
    "input": "input : list = [2, 1, 0, 4, -5]\noutput : list = [-10, -14, -18, -2, -38]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([2, 1, 0, 4, -5],5),4),-2)",
    "io_inp": [
      2,
      1,
      0,
      4,
      -5
    ],
    "io_out": [
      -10,
      -14,
      -18,
      -2,
      -38
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,5),4),-2)"
  },
  {
    "input": "input : list = [-2, 3, -1, 0]\noutput : list = [1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(add_n([-2, 3, -1, 0],-2))",
    "io_inp": [
      -2,
      3,
      -1,
      0
    ],
    "io_out": [
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des([-2, -3, 0]))))",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [0, 2, -5, 5]\noutput : list = [10, 7, 5, 0]",
    "output": "generated_output : list = sort_des(sub_n([0, 2, -5, 5],-5))",
    "io_inp": [
      0,
      2,
      -5,
      5
    ],
    "io_out": [
      10,
      7,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [7, 4, -1]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(sort_des([-4, 1, 4]))),20),-3)",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      7,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(sort_des(input))),20),-3)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [-2, -12, -10]",
    "output": "generated_output : list = take(mul_n(take(sub_n(add_n([0, 5, 4],2),1),20),-2),17)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      -2,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(add_n(input,2),1),20),-2),17)"
  },
  {
    "input": "input : list = [4, -2, -2, -2]\noutput : list = [3]",
    "output": "generated_output : list = take(sub_n(take(sort_des(sort_des([4, -2, -2, -2])),3),1),1)",
    "io_inp": [
      4,
      -2,
      -2,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(sort_des(input)),3),1),1)"
  },
  {
    "input": "input : list = [1, -3, 2, -1, 3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = take(drop([1, -3, 2, -1, 3, -3],4),3)",
    "io_inp": [
      1,
      -3,
      2,
      -1,
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,4),3)"
  },
  {
    "input": "input : list = [2, 2, 1, 1, 2, -4]\noutput : list = [0, 0, 0, -1, -1, -6]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(reverse([2, 2, 1, 1, 2, -4]),-2)),24))",
    "io_inp": [
      2,
      2,
      1,
      1,
      2,
      -4
    ],
    "io_out": [
      0,
      0,
      0,
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(reverse(input),-2)),24))"
  },
  {
    "input": "input : list = [4, 1, -5, -3, 2, -1]\noutput : list = [6, 4, 3, 1, -1, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(sort_des([4, 1, -5, -3, 2, -1]),-5),-5),-2),25)",
    "io_inp": [
      4,
      1,
      -5,
      -3,
      2,
      -1
    ],
    "io_out": [
      6,
      4,
      3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(sort_des(input),-5),-5),-2),25)"
  },
  {
    "input": "input : list = [-5, -1, 4, 3]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(add_n(add_n(take([-5, -1, 4, 3],1),5),1),-4)",
    "io_inp": [
      -5,
      -1,
      4,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(input,1),5),1),-4)"
  },
  {
    "input": "input : list = [-5, 3, -2, 0, -2, 1]\noutput : list = [-1, -1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(drop([-5, 3, -2, 0, -2, 1],1))),-1))",
    "io_inp": [
      -5,
      3,
      -2,
      0,
      -2,
      1
    ],
    "io_out": [
      -1,
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(drop(input,1))),-1))"
  },
  {
    "input": "input : list = [1, -4, 2, -2]\noutput : list = [-12, 3]",
    "output": "generated_output : list = mul_n(reverse(take([1, -4, 2, -2],2)),3)",
    "io_inp": [
      1,
      -4,
      2,
      -2
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,2)),3)"
  },
  {
    "input": "input : list = [-2, 4, 0, 2, 5, 1]\noutput : list = [2, 0, -1, -2, -4, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des([-2, 4, 0, 2, 5, 1]))),-1)",
    "io_inp": [
      -2,
      4,
      0,
      2,
      5,
      1
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(input))),-1)"
  },
  {
    "input": "input : list = [3, 0, -1, 5]\noutput : list = [7, 5, 2, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([3, 0, -1, 5]),-2))",
    "io_inp": [
      3,
      0,
      -1,
      5
    ],
    "io_out": [
      7,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [2, 0, 1, -5, 5]\noutput : list = [15, 6, 3, 0, -15]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(mul_n([2, 0, 1, -5, 5],3)),18)))",
    "io_inp": [
      2,
      0,
      1,
      -5,
      5
    ],
    "io_out": [
      15,
      6,
      3,
      0,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(mul_n(input,3)),18)))"
  },
  {
    "input": "input : list = [-1, 1, 1, 2]\noutput : list = [-6, -7, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(sub_n([-1, 1, 1, 2],4),1),9),4))",
    "io_inp": [
      -1,
      1,
      1,
      2
    ],
    "io_out": [
      -6,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(sub_n(input,4),1),9),4))"
  },
  {
    "input": "input : list = [3, -3, 5, 2, -4, 5]\noutput : list = [2, -4, 5]",
    "output": "generated_output : list = drop([3, -3, 5, 2, -4, 5],3)",
    "io_inp": [
      3,
      -3,
      5,
      2,
      -4,
      5
    ],
    "io_out": [
      2,
      -4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 2, -5]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(drop([5, 2, -5],1),2),-3),18))",
    "io_inp": [
      5,
      2,
      -5
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(drop(input,1),2),-3),18))"
  },
  {
    "input": "input : list = [5, -3, -1, -3, 3]\noutput : list = [5, 3, -1, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_des([5, -3, -1, -3, 3])))))",
    "io_inp": [
      5,
      -3,
      -1,
      -3,
      3
    ],
    "io_out": [
      5,
      3,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, -4, 4, -4, 5]\noutput : list = [4, 3, -5, 3, -6]",
    "output": "generated_output : list = mul_n(sub_n([-5, -4, 4, -4, 5],-1),-1)",
    "io_inp": [
      -5,
      -4,
      4,
      -4,
      5
    ],
    "io_out": [
      4,
      3,
      -5,
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-1)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [0, -16, 20]",
    "output": "generated_output : list = mul_n([0, -4, 5],4)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      0,
      -16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, 3, 0, 5, 4, -4]\noutput : list = [-16, -14, -12, -6, -4, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(add_n([-1, 3, 0, 5, 4, -4],3),-2))))",
    "io_inp": [
      -1,
      3,
      0,
      5,
      4,
      -4
    ],
    "io_out": [
      -16,
      -14,
      -12,
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(add_n(input,3),-2))))"
  },
  {
    "input": "input : list = [3, -1, -3, -1, -2]\noutput : list = [18, 12, 6, 6, -18]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(mul_n([3, -1, -3, -1, -2],-2),3),24)))",
    "io_inp": [
      3,
      -1,
      -3,
      -1,
      -2
    ],
    "io_out": [
      18,
      12,
      6,
      6,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(mul_n(input,-2),3),24)))"
  },
  {
    "input": "input : list = [-1, 0, -1, -4]\noutput : list = [-9, -6, -6, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_des([-1, 0, -1, -4])),5)",
    "io_inp": [
      -1,
      0,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),5)"
  },
  {
    "input": "input : list = [2, -2, -4, 5, -5]\noutput : list = [-3, -7, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take([2, -2, -4, 5, -5],3)),5))",
    "io_inp": [
      2,
      -2,
      -4,
      5,
      -5
    ],
    "io_out": [
      -3,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(input,3)),5))"
  },
  {
    "input": "input : list = [-5, -1, 5, 0, -3, -4]\noutput : list = [-7, -6, -3, 2, -4, -8]",
    "output": "generated_output : list = sub_n(reverse([-5, -1, 5, 0, -3, -4]),3)",
    "io_inp": [
      -5,
      -1,
      5,
      0,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -3,
      2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-2, 2, 2, 4, -2]\noutput : list = [-5, -5, -1, -1, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(sort_des([-2, 2, 2, 4, -2]),-2),-5)))",
    "io_inp": [
      -2,
      2,
      2,
      4,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(sort_des(input),-2),-5)))"
  },
  {
    "input": "input : list = [-3, 4, -5, -2]\noutput : list = [20, -10, -15, -25]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([-3, 4, -5, -2]),5))",
    "io_inp": [
      -3,
      4,
      -5,
      -2
    ],
    "io_out": [
      20,
      -10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-4, 4, 0, 3]\noutput : list = [20, 15, 0, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_asc([-4, 4, 0, 3])))),5)",
    "io_inp": [
      -4,
      4,
      0,
      3
    ],
    "io_out": [
      20,
      15,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [24, -30]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_asc([4, -5]),-3),1),-2))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      24,
      -30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_asc(input),-3),1),-2))"
  },
  {
    "input": "input : list = [3, 3, -3, -4, -2]\noutput : list = [7, 7, 2, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n([3, 3, -3, -4, -2],-4))",
    "io_inp": [
      3,
      3,
      -3,
      -4,
      -2
    ],
    "io_out": [
      7,
      7,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [-32, -8, 0]",
    "output": "generated_output : list = take(mul_n(take(sort_des(mul_n([0, 4, 1],4)),5),-2),16)",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      -32,
      -8,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(mul_n(input,4)),5),-2),16)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des([-5, 4])",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 2, 1, 5, -3]\noutput : list = [-13, -7, -5, 3, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des([-4, 2, 1, 5, -3]),-2)),-3))",
    "io_inp": [
      -4,
      2,
      1,
      5,
      -3
    ],
    "io_out": [
      -13,
      -7,
      -5,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des(input),-2)),-3))"
  },
  {
    "input": "input : list = [-5, 4, 1, 1, 1]\noutput : list = [-60, 12, 12, 12, 48]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n([-5, 4, 1, 1, 1],3)),31),4)",
    "io_inp": [
      -5,
      4,
      1,
      1,
      1
    ],
    "io_out": [
      -60,
      12,
      12,
      12,
      48
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(input,3)),31),4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-16, -26]",
    "output": "generated_output : list = add_n(mul_n([-3, -5],5),-1)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -16,
      -26
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),-1)"
  },
  {
    "input": "input : list = [-1, -4, 5, -3, 5, -3]\noutput : list = [-4, -3, -3, -1, 5, 5]",
    "output": "generated_output : list = sort_asc([-1, -4, 5, -3, 5, -3])",
    "io_inp": [
      -1,
      -4,
      5,
      -3,
      5,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([2, 3]))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -4, -1, 4, -4, 1]\noutput : list = [0, 0, -9, -24, 0, -15]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(add_n([-4, -4, -1, 4, -4, 1],2),2),1),43),-3)",
    "io_inp": [
      -4,
      -4,
      -1,
      4,
      -4,
      1
    ],
    "io_out": [
      0,
      0,
      -9,
      -24,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(add_n(input,2),2),1),43),-3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(reverse(mul_n([-5, 0],-1)))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [5, 2, 3, -4, -1]\noutput : list = [-4, -1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(sort_des([5, 2, 3, -4, -1]),8))))",
    "io_inp": [
      5,
      2,
      3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(sort_des(input),8))))"
  },
  {
    "input": "input : list = [5, 0, 0]\noutput : list = [-125, -125, -250]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(sort_asc([5, 0, 0]),-5),5)),-5)",
    "io_inp": [
      5,
      0,
      0
    ],
    "io_out": [
      -125,
      -125,
      -250
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(sort_asc(input),-5),5)),-5)"
  },
  {
    "input": "input : list = [5, 2, -5, 2]\noutput : list = [5, 2, 2, -5]",
    "output": "generated_output : list = sort_des([5, 2, -5, 2])",
    "io_inp": [
      5,
      2,
      -5,
      2
    ],
    "io_out": [
      5,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -4, 5, 5, -3, -5]\noutput : list = [93, -87, 93, 93, -67, -107]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n(mul_n([5, -4, 5, 5, -3, -5],-4),-1),1),-5),-3)",
    "io_inp": [
      5,
      -4,
      5,
      5,
      -3,
      -5
    ],
    "io_out": [
      93,
      -87,
      93,
      93,
      -67,
      -107
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(mul_n(input,-4),-1),1),-5),-3)"
  },
  {
    "input": "input : list = [4, -1, -4, -2, 5]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(take([4, -1, -4, -2, 5],1),18))),4)",
    "io_inp": [
      4,
      -1,
      -4,
      -2,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(take(input,1),18))),4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [12, 20]",
    "output": "generated_output : list = reverse(reverse(take(mul_n([3, 5],4),7)))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      12,
      20
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(input,4),7)))"
  },
  {
    "input": "input : list = [-1, -2, 1, 3, 1, -2]\noutput : list = [3, 6, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(drop([-1, -2, 1, 3, 1, -2],2))),5))",
    "io_inp": [
      -1,
      -2,
      1,
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(drop(input,2))),5))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [2, -10]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des([4, -2]),1)),-2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(input),1)),-2)"
  },
  {
    "input": "input : list = [-3, -2, 0, -4, 3, -1]\noutput : list = [4, 3, 2, 1, 0, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(sort_des([-3, -2, 0, -4, 3, -1]),-1)),23))",
    "io_inp": [
      -3,
      -2,
      0,
      -4,
      3,
      -1
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(sort_des(input),-1)),23))"
  },
  {
    "input": "input : list = [-5, 5, 5, -1, -3, -3]\noutput : list = [-6, -2, -2, 2, 14, 14]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(sub_n([-5, 5, 5, -1, -3, -3],-4),2)),17),2)",
    "io_inp": [
      -5,
      5,
      5,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -2,
      -2,
      2,
      14,
      14
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(sub_n(input,-4),2)),17),2)"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [8, 5, 3]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(sort_asc([4, 1, -1])),-5),7),-1)",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      8,
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(sort_asc(input)),-5),7),-1)"
  },
  {
    "input": "input : list = [0, -2, -3, -2, 0]\noutput : list = [32, 22, 17, 22, 32]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(sub_n([0, -2, -3, -2, 0],-2),5),5),23),3)",
    "io_inp": [
      0,
      -2,
      -3,
      -2,
      0
    ],
    "io_out": [
      32,
      22,
      17,
      22,
      32
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(sub_n(input,-2),5),5),23),3)"
  },
  {
    "input": "input : list = [-5, 4, -3, -4]\noutput : list = [-5, -4, -3, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse([-5, 4, -3, -4]))))",
    "io_inp": [
      -5,
      4,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(input))))"
  },
  {
    "input": "input : list = [-1, 0, 5, -1, -1, 3]\noutput : list = [-1, -1, -1, -2, -5, -7]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_des([-1, 0, 5, -1, -1, 3]))),-2),-1)",
    "io_inp": [
      -1,
      0,
      5,
      -1,
      -1,
      3
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_des(input))),-2),-1)"
  },
  {
    "input": "input : list = [-1, 0, 0, 5, 1, 5]\noutput : list = [1, -4, -4, -5]",
    "output": "generated_output : list = take(sub_n(reverse(take([-1, 0, 0, 5, 1, 5],4)),4),19)",
    "io_inp": [
      -1,
      0,
      0,
      5,
      1,
      5
    ],
    "io_out": [
      1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(input,4)),4),19)"
  },
  {
    "input": "input : list = [-1, 2, 0, -5, 0]\noutput : list = [8, 4, 4, 2, -6]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(sort_asc([-1, 2, 0, -5, 0])),11),2),2)",
    "io_inp": [
      -1,
      2,
      0,
      -5,
      0
    ],
    "io_out": [
      8,
      4,
      4,
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(sort_asc(input)),11),2),2)"
  },
  {
    "input": "input : list = [-4, -1, 2, -3, 2, -3]\noutput : list = [-9, -8, -8, -6, -3, -3]",
    "output": "generated_output : list = take(reverse(add_n(sort_des([-4, -1, 2, -3, 2, -3]),-5)),45)",
    "io_inp": [
      -4,
      -1,
      2,
      -3,
      2,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(input),-5)),45)"
  },
  {
    "input": "input : list = [4, -3, 1, -3, -4, -5]\noutput : list = [0, -7, -3, -7, -8, -9]",
    "output": "generated_output : list = add_n([4, -3, 1, -3, -4, -5],-4)",
    "io_inp": [
      4,
      -3,
      1,
      -3,
      -4,
      -5
    ],
    "io_out": [
      0,
      -7,
      -3,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-5, 20]",
    "output": "generated_output : list = mul_n(add_n(drop([-3, 4, -1],1),-3),-5)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,1),-3),-5)"
  },
  {
    "input": "input : list = [1, 4, 3, -3, 5, -4]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(drop([1, 4, 3, -3, 5, -4],3),3)))",
    "io_inp": [
      1,
      4,
      3,
      -3,
      5,
      -4
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(drop(input,3),3)))"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [9]",
    "output": "generated_output : list = sub_n(take([5, -3, 5],1),-4)",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [1, 1, 3, 0]\noutput : list = [9, 9]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(take([1, 1, 3, 0],2),-4),5),-1),25)",
    "io_inp": [
      1,
      1,
      3,
      0
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(take(input,2),-4),5),-1),25)"
  },
  {
    "input": "input : list = [5, 2, 1, -3, 1, 2]\noutput : list = [5, 2, 2, 1, 1, -3]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des([5, 2, 1, -3, 1, 2]),1)))",
    "io_inp": [
      5,
      2,
      1,
      -3,
      1,
      2
    ],
    "io_out": [
      5,
      2,
      2,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(input),1)))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-10, -3]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([2, -5])),-5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -10,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [-3, 3, 5, 2, -4]\noutput : list = [-6, 0, 3, 18, 21]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(add_n([-3, 3, 5, 2, -4],-3),-3))))",
    "io_inp": [
      -3,
      3,
      5,
      2,
      -4
    ],
    "io_out": [
      -6,
      0,
      3,
      18,
      21
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(add_n(input,-3),-3))))"
  },
  {
    "input": "input : list = [0, 3, -1, -2]\noutput : list = [2, 3, 6]",
    "output": "generated_output : list = drop(reverse(add_n(sort_des([0, 3, -1, -2]),3)),1)",
    "io_inp": [
      0,
      3,
      -1,
      -2
    ],
    "io_out": [
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(sort_des(input),3)),1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-7, -2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(add_n([-4, 1],-3),3))),43)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(add_n(input,-3),3))),43)"
  },
  {
    "input": "input : list = [0, 4, 2, 2, -2, 5]\noutput : list = [-4, 0, -2, -2, -6, 1]",
    "output": "generated_output : list = sub_n([0, 4, 2, 2, -2, 5],4)",
    "io_inp": [
      0,
      4,
      2,
      2,
      -2,
      5
    ],
    "io_out": [
      -4,
      0,
      -2,
      -2,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, -3, -4, -1]\noutput : list = [5, 0, -2, -3]",
    "output": "generated_output : list = sort_des(add_n([4, -3, -4, -1],1))",
    "io_inp": [
      4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      5,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [5, -4, 2, -1]\noutput : list = [0, 3, 6, 9]",
    "output": "generated_output : list = sub_n(sort_asc([5, -4, 2, -1]),-4)",
    "io_inp": [
      5,
      -4,
      2,
      -1
    ],
    "io_out": [
      0,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, -1, -5, 4]\noutput : list = [1, -4, -5, -8]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(sort_des([-2, -1, -5, 4]),7)),4),1)",
    "io_inp": [
      -2,
      -1,
      -5,
      4
    ],
    "io_out": [
      1,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(sort_des(input),7)),4),1)"
  },
  {
    "input": "input : list = [-4, 4, 0, -4]\noutput : list = [10, 2, -6, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(add_n([-4, 4, 0, -4],4),1),-2),2))",
    "io_inp": [
      -4,
      4,
      0,
      -4
    ],
    "io_out": [
      10,
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(add_n(input,4),1),-2),2))"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [-2, -6, -1]",
    "output": "generated_output : list = sub_n(take(add_n(reverse([0, -5, -1]),2),13),3)",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(input),2),13),3)"
  },
  {
    "input": "input : list = [4, -2, -4, 5, 5]\noutput : list = [0, 0, 5, 35, 45]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(mul_n([4, -2, -4, 5, 5],-1)),5),5))",
    "io_inp": [
      4,
      -2,
      -4,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      5,
      35,
      45
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(mul_n(input,-1)),5),5))"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [11, -29, 3]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n([-5, 5, -3],-1),4),-4),-5)",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      11,
      -29,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(input,-1),4),-4),-5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [12, -9]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n([3, -4],-3))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      12,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(input,-3))))"
  },
  {
    "input": "input : list = [-4, 1, -5, -2, 3, -2]\noutput : list = [-16, 24, -16, -40, 8, -32]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-4, 1, -5, -2, 3, -2]),4),2)",
    "io_inp": [
      -4,
      1,
      -5,
      -2,
      3,
      -2
    ],
    "io_out": [
      -16,
      24,
      -16,
      -40,
      8,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),4),2)"
  },
  {
    "input": "input : list = [2, 5, -4]\noutput : list = [5, 2, -4]",
    "output": "generated_output : list = sort_des([2, 5, -4])",
    "io_inp": [
      2,
      5,
      -4
    ],
    "io_out": [
      5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 3, 4, -5, -1, 0]\noutput : list = [0, -1, -5, 4, 3, 5]",
    "output": "generated_output : list = reverse([5, 3, 4, -5, -1, 0])",
    "io_inp": [
      5,
      3,
      4,
      -5,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -5,
      4,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, -3]\noutput : list = [8, 6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(drop([2, -1, -3],1),17),-4),-5))",
    "io_inp": [
      2,
      -1,
      -3
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(drop(input,1),17),-4),-5))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [39, 15]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(mul_n([-2, -5],2),8),-4),-1))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      39,
      15
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(mul_n(input,2),8),-4),-1))"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [-1]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(take([3, -3, -5],1)),-2),-1),20)",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(take(input,1)),-2),-1),20)"
  },
  {
    "input": "input : list = [-5, 3, -2, -3, -3, 2]\noutput : list = [-11, -9, -9, -8, -4, -3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(add_n([-5, 3, -2, -3, -3, 2],1),-2),-5)))",
    "io_inp": [
      -5,
      3,
      -2,
      -3,
      -3,
      2
    ],
    "io_out": [
      -11,
      -9,
      -9,
      -8,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(add_n(input,1),-2),-5)))"
  },
  {
    "input": "input : list = [-2, -1, 5, -4, 4]\noutput : list = [11, 3]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(drop([-2, -1, 5, -4, 4],3)),25),-5),2)",
    "io_inp": [
      -2,
      -1,
      5,
      -4,
      4
    ],
    "io_out": [
      11,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(drop(input,3)),25),-5),2)"
  },
  {
    "input": "input : list = [5, -5, 0, 1]\noutput : list = [-83, -3, 17, 117]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n([5, -5, 0, 1],-5),5),4)),-3)",
    "io_inp": [
      5,
      -5,
      0,
      1
    ],
    "io_out": [
      -83,
      -3,
      17,
      117
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n(input,-5),5),4)),-3)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-10, -8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sub_n([-4, -2],2),-1))),3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sub_n(input,2),-1))),3)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-9, 1]",
    "output": "generated_output : list = sort_asc(add_n([-5, 5],-4))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -9,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [-1, -3, -3, -5]\noutput : list = [145, 95, 95, 45]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_des(mul_n([-1, -3, -3, -5],-5)),4),5))",
    "io_inp": [
      -1,
      -3,
      -3,
      -5
    ],
    "io_out": [
      145,
      95,
      95,
      45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_des(mul_n(input,-5)),4),5))"
  },
  {
    "input": "input : list = [-3, -4, -1, -1, -4]\noutput : list = [-1, -1, -3, -4, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des([-3, -4, -1, -1, -4])))",
    "io_inp": [
      -3,
      -4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [3, -2, 4, 5]\noutput : list = [3, -2]",
    "output": "generated_output : list = take([3, -2, 4, 5],2)",
    "io_inp": [
      3,
      -2,
      4,
      5
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -3, 3, 1]\noutput : list = [15, 15, 5, -15]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(reverse([3, -3, 3, 1])),16),5))",
    "io_inp": [
      3,
      -3,
      3,
      1
    ],
    "io_out": [
      15,
      15,
      5,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(reverse(input)),16),5))"
  },
  {
    "input": "input : list = [-3, -1, 0]\noutput : list = [20]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(take([-3, -1, 0],1),2),-3),2))",
    "io_inp": [
      -3,
      -1,
      0
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(take(input,1),2),-3),2))"
  },
  {
    "input": "input : list = [2, -5, 0, -4]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n(drop([2, -5, 0, -4],2),-1),5)))",
    "io_inp": [
      2,
      -5,
      0,
      -4
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(drop(input,2),-1),5)))"
  },
  {
    "input": "input : list = [-4, -1, 4, -2]\noutput : list = [-9, -3, -8, -11]",
    "output": "generated_output : list = add_n(take(add_n(take(reverse([-4, -1, 4, -2]),12),-5),9),-2)",
    "io_inp": [
      -4,
      -1,
      4,
      -2
    ],
    "io_out": [
      -9,
      -3,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(reverse(input),12),-5),9),-2)"
  },
  {
    "input": "input : list = [-2, -5, 1, 3, -4]\noutput : list = [3, 1, -4, -5]",
    "output": "generated_output : list = take(sort_des(drop([-2, -5, 1, 3, -4],1)),27)",
    "io_inp": [
      -2,
      -5,
      1,
      3,
      -4
    ],
    "io_out": [
      3,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,1)),27)"
  },
  {
    "input": "input : list = [-5, 1, 1, 1]\noutput : list = [16, 4, 4, 4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(add_n([-5, 1, 1, 1],-1),-2)),-4))",
    "io_inp": [
      -5,
      1,
      1,
      1
    ],
    "io_out": [
      16,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(add_n(input,-1),-2)),-4))"
  },
  {
    "input": "input : list = [5, -4, 3, -1, -4]\noutput : list = [8, 8, 2, -6, -10]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(sort_asc([5, -4, 3, -1, -4]))),-2))",
    "io_inp": [
      5,
      -4,
      3,
      -1,
      -4
    ],
    "io_out": [
      8,
      8,
      2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-3, -4, -3, -1]\noutput : list = [-16, -12, -4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(drop([-3, -4, -3, -1],1),4))))",
    "io_inp": [
      -3,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -16,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(drop(input,1),4))))"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [8, -7]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(drop([5, 3, -2],1),-3),2),4))",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      8,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(drop(input,1),-3),2),4))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(mul_n([2, 2],2),3)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [4, 4, 0, -5, -4, -3]\noutput : list = [4, 4, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des([4, 4, 0, -5, -4, -3])",
    "io_inp": [
      4,
      4,
      0,
      -5,
      -4,
      -3
    ],
    "io_out": [
      4,
      4,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, 2, -4, -1]\noutput : list = [1, -2, -5, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(add_n([-4, -4, 2, -4, -1],-1)))))",
    "io_inp": [
      -4,
      -4,
      2,
      -4,
      -1
    ],
    "io_out": [
      1,
      -2,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [3, 1, 5, 4]\noutput : list = [-17, -14, -11, -5]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([3, 1, 5, 4],-3),-2))",
    "io_inp": [
      3,
      1,
      5,
      4
    ],
    "io_out": [
      -17,
      -14,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,-3),-2))"
  },
  {
    "input": "input : list = [-1, -5, 5, -5, 2, 5]\noutput : list = [-25, -25, -5, 10, 25, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-1, -5, 5, -5, 2, 5],5)))",
    "io_inp": [
      -1,
      -5,
      5,
      -5,
      2,
      5
    ],
    "io_out": [
      -25,
      -25,
      -5,
      10,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,5)))"
  },
  {
    "input": "input : list = [-3, 0, 1, -2, 0, 2]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(drop([-3, 0, 1, -2, 0, 2],4),-1),-2),1),-5)",
    "io_inp": [
      -3,
      0,
      1,
      -2,
      0,
      2
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(drop(input,4),-1),-2),1),-5)"
  },
  {
    "input": "input : list = [4, -1, 4, 5, 0, 3]\noutput : list = [5, 0, 5, 6, 1, 4]",
    "output": "generated_output : list = add_n(sub_n([4, -1, 4, 5, 0, 3],2),3)",
    "io_inp": [
      4,
      -1,
      4,
      5,
      0,
      3
    ],
    "io_out": [
      5,
      0,
      5,
      6,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),3)"
  },
  {
    "input": "input : list = [2, -2, 3, 5, 0, -4]\noutput : list = [12, -3, -15]",
    "output": "generated_output : list = take(drop(sub_n(mul_n([2, -2, 3, 5, 0, -4],3),3),3),24)",
    "io_inp": [
      2,
      -2,
      3,
      5,
      0,
      -4
    ],
    "io_out": [
      12,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(mul_n(input,3),3),3),24)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, 3, -1, 2, 1]\noutput : list = [8, 6, 5, 4, 4, 2]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(sub_n([5, 1, 3, -1, 2, 1],-3)))),33)",
    "io_inp": [
      5,
      1,
      3,
      -1,
      2,
      1
    ],
    "io_out": [
      8,
      6,
      5,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(sub_n(input,-3)))),33)"
  },
  {
    "input": "input : list = [2, -3, 4, 1, -3, 1]\noutput : list = [4, 2, 1, 1, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des([2, -3, 4, 1, -3, 1]))",
    "io_inp": [
      2,
      -3,
      4,
      1,
      -3,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -3, -3]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(drop(reverse([-2, -3, -3]),2))))",
    "io_inp": [
      -2,
      -3,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(drop(reverse(input),2))))"
  },
  {
    "input": "input : list = [-5, 5, 5, -3]\noutput : list = [4, 4, -12, -16]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n([-5, 5, 5, -3],2),-1)),2)",
    "io_inp": [
      -5,
      5,
      5,
      -3
    ],
    "io_out": [
      4,
      4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(input,2),-1)),2)"
  },
  {
    "input": "input : list = [4, 0, 2, 2]\noutput : list = [4, 0]",
    "output": "generated_output : list = take([4, 0, 2, 2],2)",
    "io_inp": [
      4,
      0,
      2,
      2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -1, 5, -3]\noutput : list = [2, 10, 4, 9]",
    "output": "generated_output : list = sub_n(take(take(reverse([4, -1, 5, -3]),17),4),-5)",
    "io_inp": [
      4,
      -1,
      5,
      -3
    ],
    "io_out": [
      2,
      10,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(input),17),4),-5)"
  },
  {
    "input": "input : list = [-4, 3, 0, 4, 5, 2]\noutput : list = [-5, -1, 1, 2, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(sort_des([-4, 3, 0, 4, 5, 2])))),-1)",
    "io_inp": [
      -4,
      3,
      0,
      4,
      5,
      2
    ],
    "io_out": [
      -5,
      -1,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [3, -1, 5, -4, 1, 3]\noutput : list = [2, 0, 0, -2, -4, -7]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(sort_asc([3, -1, 5, -4, 1, 3]),-3))),35)",
    "io_inp": [
      3,
      -1,
      5,
      -4,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(sort_asc(input),-3))),35)"
  },
  {
    "input": "input : list = [3, -1, -5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = take(drop([3, -1, -5, 3],2),12)",
    "io_inp": [
      3,
      -1,
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),12)"
  },
  {
    "input": "input : list = [-4, -3, 0, 2, 1]\noutput : list = [-2, -1, -3, -6, -7]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(add_n([-4, -3, 0, 2, 1],-1),25),-1),-3))",
    "io_inp": [
      -4,
      -3,
      0,
      2,
      1
    ],
    "io_out": [
      -2,
      -1,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(add_n(input,-1),25),-1),-3))"
  },
  {
    "input": "input : list = [4, 0, -2]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([4, 0, -2])))",
    "io_inp": [
      4,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-72, -72, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(mul_n([-5, -5, 0],4),2))),4)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -72,
      -72,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(mul_n(input,4),2))),4)"
  },
  {
    "input": "input : list = [5, -3, 0, -4, 0, 4]\noutput : list = [16, 12, 0, 0, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(sort_asc([5, -3, 0, -4, 0, 4]))),-4))",
    "io_inp": [
      5,
      -3,
      0,
      -4,
      0,
      4
    ],
    "io_out": [
      16,
      12,
      0,
      0,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [-3, 2, -2, -5, 5, 5]\noutput : list = [-5, -5, -8, -12, -13, -15]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(add_n([-3, 2, -2, -5, 5, 5],-4),-4),-2),23))",
    "io_inp": [
      -3,
      2,
      -2,
      -5,
      5,
      5
    ],
    "io_out": [
      -5,
      -5,
      -8,
      -12,
      -13,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(add_n(input,-4),-4),-2),23))"
  },
  {
    "input": "input : list = [2, -4, -4, -2, -3]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(take([2, -4, -4, -2, -3],1)),14)))",
    "io_inp": [
      2,
      -4,
      -4,
      -2,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(take(input,1)),14)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(mul_n([-2, 5],-1))),1))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(mul_n(input,-1))),1))"
  },
  {
    "input": "input : list = [1, 4, 1, 0, 5, 0]\noutput : list = [0, 2, 2, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(take([1, 4, 1, 0, 5, 0],4),2)),32)",
    "io_inp": [
      1,
      4,
      1,
      0,
      5,
      0
    ],
    "io_out": [
      0,
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(input,4),2)),32)"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take([4, -3, -2],1))",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [5, -7]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(sub_n([-5, 1],-2),2),4),-1))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(sub_n(input,-2),2),4),-1))"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(drop([5, 0, 1],1))),2),2)",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(drop(input,1))),2),2)"
  },
  {
    "input": "input : list = [-5, 3, -3, -4]\noutput : list = [-7, -6]",
    "output": "generated_output : list = take(sort_asc(take(take(add_n([-5, 3, -3, -4],-2),13),22)),2)",
    "io_inp": [
      -5,
      3,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(take(add_n(input,-2),13),22)),2)"
  },
  {
    "input": "input : list = [3, -1, 3, -1, 3, 4]\noutput : list = [-4, -4, 0, 0, 0, 1]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(sort_des([3, -1, 3, -1, 3, 4]),1),-5),-3))",
    "io_inp": [
      3,
      -1,
      3,
      -1,
      3,
      4
    ],
    "io_out": [
      -4,
      -4,
      0,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(sort_des(input),1),-5),-3))"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [-1, -2, -10]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([4, 3, -5],5)))",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,5)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = take(reverse([2, -4]),5)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [1, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n([0, -2, 3],-2)))",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-2)))"
  },
  {
    "input": "input : list = [3, -1, -4, -2]\noutput : list = [-7, -11, -12, -14]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(sort_asc([3, -1, -4, -2]),11)),-5),-5)",
    "io_inp": [
      3,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -11,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(sort_asc(input),11)),-5),-5)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(sort_des([-4, 0])),15),1),1)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(sort_des(input)),15),1),1)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [3, 8]",
    "output": "generated_output : list = take(add_n(take(sub_n(sort_asc([3, -3, 2]),-3),2),3),5)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(sort_asc(input),-3),2),3),5)"
  },
  {
    "input": "input : list = [5, 2, -5, -3, 1, -3]\noutput : list = [9, -3, 9, 15, -6, -15]",
    "output": "generated_output : list = mul_n(reverse([5, 2, -5, -3, 1, -3]),-3)",
    "io_inp": [
      5,
      2,
      -5,
      -3,
      1,
      -3
    ],
    "io_out": [
      9,
      -3,
      9,
      15,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n([1, 4],3),-1),4),1))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n(input,3),-1),4),1))"
  },
  {
    "input": "input : list = [-3, -2, -4, -1, 2, -3]\noutput : list = [13, -7]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(drop([-3, -2, -4, -1, 2, -3],4)),4)),5)",
    "io_inp": [
      -3,
      -2,
      -4,
      -1,
      2,
      -3
    ],
    "io_out": [
      13,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(drop(input,4)),4)),5)"
  },
  {
    "input": "input : list = [5, -5, 0, -3, -5]\noutput : list = [-2, -2, 0, 3, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(add_n([5, -5, 0, -3, -5],-1),4))))",
    "io_inp": [
      5,
      -5,
      0,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -2,
      0,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(add_n(input,-1),4))))"
  },
  {
    "input": "input : list = [2, 0, 1, 4]\noutput : list = [-12, -4, 0, 4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_des([2, 0, 1, 4])),1)),-4)",
    "io_inp": [
      2,
      0,
      1,
      4
    ],
    "io_out": [
      -12,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_des(input)),1)),-4)"
  },
  {
    "input": "input : list = [5, 4, 2, 0, -4, 4]\noutput : list = [-2, 2, 4, 6, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(sub_n([5, 4, 2, 0, -4, 4],-4),2)),4))",
    "io_inp": [
      5,
      4,
      2,
      0,
      -4,
      4
    ],
    "io_out": [
      -2,
      2,
      4,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(sub_n(input,-4),2)),4))"
  },
  {
    "input": "input : list = [1, 4, -4, 3, -4]\noutput : list = [-5, -5, 0, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(add_n(reverse(reverse([1, 4, -4, 3, -4])),-1)))",
    "io_inp": [
      1,
      4,
      -4,
      3,
      -4
    ],
    "io_out": [
      -5,
      -5,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [6, -6, -8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc([-3, 4, 3]),2),-2),-2)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(input),2),-2),-2)"
  },
  {
    "input": "input : list = [1, -2, -5, -2, -1]\noutput : list = [-5, -2, -2, -1, 1]",
    "output": "generated_output : list = sort_asc([1, -2, -5, -2, -1])",
    "io_inp": [
      1,
      -2,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [12, 5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(sort_des([5, -2]),5)),2))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      12,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(sort_des(input),5)),2))"
  },
  {
    "input": "input : list = [0, 0, -3, -5]\noutput : list = [-5, -3, 0, 0]",
    "output": "generated_output : list = sort_asc([0, 0, -3, -5])",
    "io_inp": [
      0,
      0,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 2, 4, 4]\noutput : list = [-5, 10]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(take([-1, 2, 4, 4],2)),5),9))",
    "io_inp": [
      -1,
      2,
      4,
      4
    ],
    "io_out": [
      -5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(take(input,2)),5),9))"
  },
  {
    "input": "input : list = [-1, 2, -1, -5, -3, -3]\noutput : list = [-5, -3, -3, -1, -1, 2]",
    "output": "generated_output : list = sort_asc([-1, 2, -1, -5, -3, -3])",
    "io_inp": [
      -1,
      2,
      -1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3, 1, 1]\noutput : list = [-2, -2, -3, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n([0, -3, 1, 1],-3)),4),2)",
    "io_inp": [
      0,
      -3,
      1,
      1
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(input,-3)),4),2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-16, 12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n([2, -5],2))),-4)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(input,2))),-4)"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = drop([-4, 5, 1],1)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 2, 4, 3]\noutput : list = [8, 9, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(drop([-4, 2, 4, 3],1),15),-2),-4))",
    "io_inp": [
      -4,
      2,
      4,
      3
    ],
    "io_out": [
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(drop(input,1),15),-2),-4))"
  },
  {
    "input": "input : list = [-1, -3, 5, 3, 2]\noutput : list = [1, 3, 6, 7, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(reverse([-1, -3, 5, 3, 2])))),-4)",
    "io_inp": [
      -1,
      -3,
      5,
      3,
      2
    ],
    "io_out": [
      1,
      3,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [2, -2, -2, -4, 4, 3]\noutput : list = [3, 2, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(reverse([2, -2, -2, -4, 4, 3]),4),1)))",
    "io_inp": [
      2,
      -2,
      -2,
      -4,
      4,
      3
    ],
    "io_out": [
      3,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(reverse(input),4),1)))"
  },
  {
    "input": "input : list = [-3, 3, 1, 5, 0]\noutput : list = [-16, -8, 0, 4, 16]",
    "output": "generated_output : list = sub_n(sort_asc(take(add_n(mul_n([-3, 3, 1, 5, 0],-4),5),9)),1)",
    "io_inp": [
      -3,
      3,
      1,
      5,
      0
    ],
    "io_out": [
      -16,
      -8,
      0,
      4,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(add_n(mul_n(input,-4),5),9)),1)"
  },
  {
    "input": "input : list = [4, -3, -5]\noutput : list = [8, 1, -1]",
    "output": "generated_output : list = take(sub_n([4, -3, -5],-4),15)",
    "io_inp": [
      4,
      -3,
      -5
    ],
    "io_out": [
      8,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),15)"
  },
  {
    "input": "input : list = [3, 5, -2, 4]\noutput : list = [7, 9]",
    "output": "generated_output : list = sub_n(take(take([3, 5, -2, 4],2),2),-4)",
    "io_inp": [
      3,
      5,
      -2,
      4
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,2),2),-4)"
  },
  {
    "input": "input : list = [0, 0, 3, -1]\noutput : list = [-7, -3, -6, -6]",
    "output": "generated_output : list = take(add_n(add_n(reverse(sub_n([0, 0, 3, -1],-1)),-5),-2),45)",
    "io_inp": [
      0,
      0,
      3,
      -1
    ],
    "io_out": [
      -7,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(sub_n(input,-1)),-5),-2),45)"
  },
  {
    "input": "input : list = [2, 1, 4, 0, 5]\noutput : list = [5, 4, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(drop([2, 1, 4, 0, 5],1)))",
    "io_inp": [
      2,
      1,
      4,
      0,
      5
    ],
    "io_out": [
      5,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -5, -3, 3, 0, 1]\noutput : list = [-5, -3, 0, 1, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -5, -3, 3, 0, 1])",
    "io_inp": [
      1,
      -5,
      -3,
      3,
      0,
      1
    ],
    "io_out": [
      -5,
      -3,
      0,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 2, 3, 2, 0, -3]\noutput : list = [8, 7, 7, 7, 5, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_des([2, 2, 3, 2, 0, -3]),5))",
    "io_inp": [
      2,
      2,
      3,
      2,
      0,
      -3
    ],
    "io_out": [
      8,
      7,
      7,
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [-2, 0, -2, 2, 3, 5]\noutput : list = [-20, -12]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(sub_n([-2, 0, -2, 2, 3, 5],3),2),4)))",
    "io_inp": [
      -2,
      0,
      -2,
      2,
      3,
      5
    ],
    "io_out": [
      -20,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(sub_n(input,3),2),4)))"
  },
  {
    "input": "input : list = [-1, 0, -4, -2, -2, 3]\noutput : list = [3, -2, -2, -4, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, -4, -2, -2, 3])",
    "io_inp": [
      -1,
      0,
      -4,
      -2,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      -2,
      -4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5, 4, 2, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse(drop([4, -5, 4, 2, -3, -3],4))",
    "io_inp": [
      4,
      -5,
      4,
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,4))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-11, -9]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sub_n([-1, -3],5),3),-5),1))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -11,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sub_n(input,5),3),-5),1))"
  },
  {
    "input": "input : list = [-3, -3, -1, 4, 4, -3]\noutput : list = [-3, -3, -3, -1, 4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(reverse([-3, -3, -1, 4, 4, -3]))),29))",
    "io_inp": [
      -3,
      -3,
      -1,
      4,
      4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(reverse(input))),29))"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(drop([1, -1, -1],1),3),-2)),34)",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(drop(input,1),3),-2)),34)"
  },
  {
    "input": "input : list = [2, -5, 2, 0]\noutput : list = [-2, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(reverse(add_n([2, -5, 2, 0],3)),9)))",
    "io_inp": [
      2,
      -5,
      2,
      0
    ],
    "io_out": [
      -2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(reverse(add_n(input,3)),9)))"
  },
  {
    "input": "input : list = [5, 5, 4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(reverse(drop([5, 5, 4, 2],2)))",
    "io_inp": [
      5,
      5,
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-1, 5, -4, 5, -5, -2]\noutput : list = [0, 0, -6, -7, -9, -10]",
    "output": "generated_output : list = take(mul_n(sort_des(take(add_n([-1, 5, -4, 5, -5, -2],-5),12)),1),10)",
    "io_inp": [
      -1,
      5,
      -4,
      5,
      -5,
      -2
    ],
    "io_out": [
      0,
      0,
      -6,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(add_n(input,-5),12)),1),10)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [10, 1, 1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(reverse([-4, 5, -4]),12))),5)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      10,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(reverse(input),12))),5)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [40, 45]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(add_n([3, 4],5))),-5),-1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      40,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(add_n(input,5))),-5),-1)"
  },
  {
    "input": "input : list = [1, 2, 1, 2, -1]\noutput : list = [42, 42, 22, 22, -18]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(mul_n([1, 2, 1, 2, -1],5)),4),-2))",
    "io_inp": [
      1,
      2,
      1,
      2,
      -1
    ],
    "io_out": [
      42,
      42,
      22,
      22,
      -18
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(mul_n(input,5)),4),-2))"
  },
  {
    "input": "input : list = [-5, 5, -2, 1]\noutput : list = [4, 0, -3, -6]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des(sort_asc([-5, 5, -2, 1]))),5),4)",
    "io_inp": [
      -5,
      5,
      -2,
      1
    ],
    "io_out": [
      4,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(sort_asc(input))),5),4)"
  },
  {
    "input": "input : list = [-5, 4, 5]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(drop([-5, 4, 5],1)),-3),-2))",
    "io_inp": [
      -5,
      4,
      5
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(drop(input,1)),-3),-2))"
  },
  {
    "input": "input : list = [4, 5, 2, 3, 5, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take(add_n(add_n(take(mul_n([4, 5, 2, 3, 5, 3],1),1),-3),-3),33)",
    "io_inp": [
      4,
      5,
      2,
      3,
      5,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(mul_n(input,1),1),-3),-3),33)"
  },
  {
    "input": "input : list = [3, -3, 4, 1, -3]\noutput : list = [-2, -8, -1, -4]",
    "output": "generated_output : list = take(sub_n([3, -3, 4, 1, -3],5),4)",
    "io_inp": [
      3,
      -3,
      4,
      1,
      -3
    ],
    "io_out": [
      -2,
      -8,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),4)"
  },
  {
    "input": "input : list = [-1, 3, -5, -3, -5, 4]\noutput : list = [0, -4, -6, -8]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(take([-1, 3, -5, -3, -5, 4],4),3),1)))",
    "io_inp": [
      -1,
      3,
      -5,
      -3,
      -5,
      4
    ],
    "io_out": [
      0,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(take(input,4),3),1)))"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n([-1, -4, -1],-4),-4),2))",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(input,-4),-4),2))"
  },
  {
    "input": "input : list = [-3, 2, -4, 0, -3]\noutput : list = [3, 1, -2, -2, -3]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sort_des([-3, 2, -4, 0, -3])),1),24))",
    "io_inp": [
      -3,
      2,
      -4,
      0,
      -3
    ],
    "io_out": [
      3,
      1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sort_des(input)),1),24))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-1, 5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n([3, -3],2))),1)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(input,2))),1)"
  },
  {
    "input": "input : list = [-2, 0, 0, 2]\noutput : list = [-3, -1, -1, 1]",
    "output": "generated_output : list = reverse(take(add_n(take(mul_n([-2, 0, 0, 2],-1),9),-1),27))",
    "io_inp": [
      -2,
      0,
      0,
      2
    ],
    "io_out": [
      -3,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(mul_n(input,-1),9),-1),27))"
  },
  {
    "input": "input : list = [-2, -4, -1, 5, 4]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc(reverse(drop(reverse([-2, -4, -1, 5, 4]),4))),4)",
    "io_inp": [
      -2,
      -4,
      -1,
      5,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(drop(reverse(input),4))),4)"
  },
  {
    "input": "input : list = [-4, -5, -3, -5, -1]\noutput : list = [1, -9, -14, -19, -19]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(mul_n([-4, -5, -3, -5, -1],5)),-4)),-2)",
    "io_inp": [
      -4,
      -5,
      -3,
      -5,
      -1
    ],
    "io_out": [
      1,
      -9,
      -14,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(mul_n(input,5)),-4)),-2)"
  },
  {
    "input": "input : list = [2, -4, -5, -2, -5, -2]\noutput : list = [-6, -6, -5, -3, -3, 1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(sort_des([2, -4, -5, -2, -5, -2]),-4)),-3))",
    "io_inp": [
      2,
      -4,
      -5,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(sort_des(input),-4)),-3))"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [-9, -4, -2]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(sub_n([-3, 2, 4],3)),11)),3)",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      -9,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(sub_n(input,3)),11)),3)"
  },
  {
    "input": "input : list = [-3, -5, -4, -1, 1, 2]\noutput : list = [20, 15, 5, -10, -15, -5]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(sub_n([-3, -5, -4, -1, 1, 2],-4),-2),38),5))",
    "io_inp": [
      -3,
      -5,
      -4,
      -1,
      1,
      2
    ],
    "io_out": [
      20,
      15,
      5,
      -10,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(sub_n(input,-4),-2),38),5))"
  },
  {
    "input": "input : list = [-3, -5, 5, -4, -3]\noutput : list = [-20, -16, -12, -12, 20]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(sort_asc([-3, -5, 5, -4, -3]))),4),40)",
    "io_inp": [
      -3,
      -5,
      5,
      -4,
      -3
    ],
    "io_out": [
      -20,
      -16,
      -12,
      -12,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(sort_asc(input))),4),40)"
  },
  {
    "input": "input : list = [5, -2, 0, 0]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(take([5, -2, 0, 0],2))",
    "io_inp": [
      5,
      -2,
      0,
      0
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [5, 3, -1, -5, -3, 1]\noutput : list = [-7, -5, -3, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(reverse(sub_n([5, 3, -1, -5, -3, 1],2)),15)))",
    "io_inp": [
      5,
      3,
      -1,
      -5,
      -3,
      1
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(reverse(sub_n(input,2)),15)))"
  },
  {
    "input": "input : list = [0, -2, -5, 2, 3]\noutput : list = [8, 7, 5, 3, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(sub_n([0, -2, -5, 2, 3],-5),1)),7))",
    "io_inp": [
      0,
      -2,
      -5,
      2,
      3
    ],
    "io_out": [
      8,
      7,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(sub_n(input,-5),1)),7))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = add_n(sort_asc([5, -3]),-2)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-3, -1, -1, -2]\noutput : list = [-3, -2, -1, -1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n([-3, -1, -1, -2],2),3)),-1)",
    "io_inp": [
      -3,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(input,2),3)),-1)"
  },
  {
    "input": "input : list = [5, 5, 0, -1, 2, -4]\noutput : list = [-36, -24, -20, -12, 0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sub_n([5, 5, 0, -1, 2, -4],5)))),4)",
    "io_inp": [
      5,
      5,
      0,
      -1,
      2,
      -4
    ],
    "io_out": [
      -36,
      -24,
      -20,
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sub_n(input,5)))),4)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_des([5, -1])))))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [25]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take([-5, 1, 5],1)),-5))",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(input,1)),-5))"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [3, -3]",
    "output": "generated_output : list = take(drop(add_n(mul_n(reverse([2, -4, 2]),-1),-1),1),29)",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(add_n(mul_n(reverse(input),-1),-1),1),29)"
  },
  {
    "input": "input : list = [-4, 5, -3, 5]\noutput : list = [5, 5, -3, -4]",
    "output": "generated_output : list = take(add_n(reverse(add_n(sort_asc([-4, 5, -3, 5]),-2)),2),29)",
    "io_inp": [
      -4,
      5,
      -3,
      5
    ],
    "io_out": [
      5,
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(sort_asc(input),-2)),2),29)"
  },
  {
    "input": "input : list = [-2, 1, 0, 2, 3]\noutput : list = [-9, -3, 0, 3, 6]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sub_n([-2, 1, 0, 2, 3],2),1)),1),3)",
    "io_inp": [
      -2,
      1,
      0,
      2,
      3
    ],
    "io_out": [
      -9,
      -3,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sub_n(input,2),1)),1),3)"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(take([4, -5, -2],1)),27),3))",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(take(input,1)),27),3))"
  },
  {
    "input": "input : list = [2, -5, -4, 0, -1, 5]\noutput : list = [0, -12, -20, -24, -36, -40]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(mul_n([2, -5, -4, 0, -1, 5],-1))),-5),-4)",
    "io_inp": [
      2,
      -5,
      -4,
      0,
      -1,
      5
    ],
    "io_out": [
      0,
      -12,
      -20,
      -24,
      -36,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(mul_n(input,-1))),-5),-4)"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [10, 8, 3]",
    "output": "generated_output : list = sub_n(reverse(take(add_n(sort_asc([-5, 2, 0]),4),25)),-4)",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      10,
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(sort_asc(input),4),25)),-4)"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [-15, -15, -3]",
    "output": "generated_output : list = take(mul_n([-5, -5, -1],3),12)",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      -15,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),12)"
  },
  {
    "input": "input : list = [4, 3, 5, -2, 3, -1]\noutput : list = [36, 27, 45, -18, 27, -9]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(add_n([4, 3, 5, -2, 3, -1],-2),-1),-1),-3),-3)",
    "io_inp": [
      4,
      3,
      5,
      -2,
      3,
      -1
    ],
    "io_out": [
      36,
      27,
      45,
      -18,
      27,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(add_n(input,-2),-1),-1),-3),-3)"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(sort_des([0, 4, -5]),-5)),-5))",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(sort_des(input),-5)),-5))"
  },
  {
    "input": "input : list = [-2, 3, 1, 4, 5]\noutput : list = [-6, 3, 9, 12, 15]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_asc([-2, 3, 1, 4, 5])))),3)",
    "io_inp": [
      -2,
      3,
      1,
      4,
      5
    ],
    "io_out": [
      -6,
      3,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [5, 1, -3]",
    "output": "generated_output : list = sort_des([1, -3, 5])",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5, 4, -2, 4]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(sort_des(take([-1, -5, 4, -2, 4],2)))",
    "io_inp": [
      -1,
      -5,
      4,
      -2,
      4
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [2, -2, -4, -1, -3]\noutput : list = [6, 3, 2, 1, 0]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(add_n([2, -2, -4, -1, -3],4)),24),5),-5)",
    "io_inp": [
      2,
      -2,
      -4,
      -1,
      -3
    ],
    "io_out": [
      6,
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(add_n(input,4)),24),5),-5)"
  },
  {
    "input": "input : list = [-5, -3, 0, 2]\noutput : list = [-7, -5, -2]",
    "output": "generated_output : list = add_n(reverse(drop(reverse([-5, -3, 0, 2]),1)),-2)",
    "io_inp": [
      -5,
      -3,
      0,
      2
    ],
    "io_out": [
      -7,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(reverse(input),1)),-2)"
  },
  {
    "input": "input : list = [-4, 2, 2, 2, 4]\noutput : list = [6, 4, 4, 4, -2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(sort_asc([-4, 2, 2, 2, 4]),-4),-3)),-3)",
    "io_inp": [
      -4,
      2,
      2,
      2,
      4
    ],
    "io_out": [
      6,
      4,
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(sort_asc(input),-4),-3)),-3)"
  },
  {
    "input": "input : list = [-1, 3, 3, -3]\noutput : list = [-6, -4, 0, 0]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des([-1, 3, 3, -3]))),-3)",
    "io_inp": [
      -1,
      3,
      3,
      -3
    ],
    "io_out": [
      -6,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(input))),-3)"
  },
  {
    "input": "input : list = [0, 3, -4, 4, -3, -1]\noutput : list = [-3, -1, -8, 0, -7, -4]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(mul_n([0, 3, -4, 4, -3, -1],-1)))),-4)",
    "io_inp": [
      0,
      3,
      -4,
      4,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -8,
      0,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(mul_n(input,-1)))),-4)"
  },
  {
    "input": "input : list = [0, -4, -4, -5]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(take([0, -4, -4, -5],2)))))",
    "io_inp": [
      0,
      -4,
      -4,
      -5
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [3, 2, -4, 3, 2]\noutput : list = [-4, 2, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([3, 2, -4, 3, 2])",
    "io_inp": [
      3,
      2,
      -4,
      3,
      2
    ],
    "io_out": [
      -4,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 3])",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [30, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n([0, 2],5)),3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,5)),3)"
  },
  {
    "input": "input : list = [-2, -4, 1, -5, 0, 5]\noutput : list = [1, -5, 0, 5]",
    "output": "generated_output : list = drop([-2, -4, 1, -5, 0, 5],2)",
    "io_inp": [
      -2,
      -4,
      1,
      -5,
      0,
      5
    ],
    "io_out": [
      1,
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = mul_n(drop([1, -5, 5],1),1)",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [-3, 1, -5, 2, -5]\noutput : list = [-5, -5, -3, 1, 2]",
    "output": "generated_output : list = take(sort_asc(take(reverse(sort_des([-3, 1, -5, 2, -5])),9)),35)",
    "io_inp": [
      -3,
      1,
      -5,
      2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(sort_des(input)),9)),35)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(reverse([4, 4]))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, 3, -5, 3]\noutput : list = [25, -15]",
    "output": "generated_output : list = mul_n(drop([-2, 3, -5, 3],2),-5)",
    "io_inp": [
      -2,
      3,
      -5,
      3
    ],
    "io_out": [
      25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [3, 2, 3, -5]\noutput : list = [15, -6, -9, -9]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(add_n([3, 2, 3, -5],-4),-4)),-3))",
    "io_inp": [
      3,
      2,
      3,
      -5
    ],
    "io_out": [
      15,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(add_n(input,-4),-4)),-3))"
  },
  {
    "input": "input : list = [3, -1, 1, 4]\noutput : list = [-6, -4, -2, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(sort_asc([3, -1, 1, 4]),5)),9))",
    "io_inp": [
      3,
      -1,
      1,
      4
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(sort_asc(input),5)),9))"
  },
  {
    "input": "input : list = [4, -5, 4, 0]\noutput : list = [4, 4, -12, -32]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n([4, -5, 4, 0],-3)),4),20)",
    "io_inp": [
      4,
      -5,
      4,
      0
    ],
    "io_out": [
      4,
      4,
      -12,
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(input,-3)),4),20)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(take(sub_n([5, 5],5),4),5)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,5),4),5)"
  },
  {
    "input": "input : list = [-3, 3, -3, -2, -2]\noutput : list = [3, -2, -2, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n(reverse([-3, 3, -3, -2, -2]),1))))",
    "io_inp": [
      -3,
      3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      3,
      -2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [5, -5, -5, 3, 2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = mul_n(drop([5, -5, -5, 3, 2],3),-1)",
    "io_inp": [
      5,
      -5,
      -5,
      3,
      2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [0, -35]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(sub_n([4, -3],4))),5))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      0,
      -35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(sub_n(input,4))),5))"
  },
  {
    "input": "input : list = [1, -4, -4, -1, 4, 0]\noutput : list = [2, -8]",
    "output": "generated_output : list = mul_n(take(drop([1, -4, -4, -1, 4, 0],3),2),-2)",
    "io_inp": [
      1,
      -4,
      -4,
      -1,
      4,
      0
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(input,3),2),-2)"
  },
  {
    "input": "input : list = [5, 4, 3]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(sort_des([5, 4, 3]),-4),18)))",
    "io_inp": [
      5,
      4,
      3
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(sort_des(input),-4),18)))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [17, 5]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(mul_n([5, 1],3),3),5),23))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      17,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(mul_n(input,3),3),5),23))"
  },
  {
    "input": "input : list = [-2, 1, 0, -2, 3, 0]\noutput : list = [-6, 0, 3, 3, 9]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(drop([-2, 1, 0, -2, 3, 0],1),-1),-3)),12)",
    "io_inp": [
      -2,
      1,
      0,
      -2,
      3,
      0
    ],
    "io_out": [
      -6,
      0,
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(drop(input,1),-1),-3)),12)"
  },
  {
    "input": "input : list = [-5, -4, -2, 0]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(take([-5, -4, -2, 0],1)))),3)",
    "io_inp": [
      -5,
      -4,
      -2,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(take(input,1)))),3)"
  },
  {
    "input": "input : list = [4, -3, -1, 2]\noutput : list = [10, 3, 5, 8]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(add_n([4, -3, -1, 2],2),6)),-4))",
    "io_inp": [
      4,
      -3,
      -1,
      2
    ],
    "io_out": [
      10,
      3,
      5,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(add_n(input,2),6)),-4))"
  },
  {
    "input": "input : list = [-4, -3, -1, -3, -5]\noutput : list = [0, 1, 3, 1, -1]",
    "output": "generated_output : list = sub_n([-4, -3, -1, -3, -5],-4)",
    "io_inp": [
      -4,
      -3,
      -1,
      -3,
      -5
    ],
    "io_out": [
      0,
      1,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc(add_n([3, 0],-2))),1),4)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(add_n(input,-2))),1),4)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sort_asc(mul_n([1, 3],-2))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-5, 4, -3, -3, 0]\noutput : list = [39, 33, 33, 24, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(add_n([-5, 4, -3, -3, 0],-3),5))),-3)",
    "io_inp": [
      -5,
      4,
      -3,
      -3,
      0
    ],
    "io_out": [
      39,
      33,
      33,
      24,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(add_n(input,-3),5))),-3)"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [18, -12]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(drop([-3, 4, -1],1),1),-2),32),-3)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      18,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(drop(input,1),1),-2),32),-3)"
  },
  {
    "input": "input : list = [-5, -1, 1, 1]\noutput : list = [-1, 1, 1]",
    "output": "generated_output : list = drop([-5, -1, 1, 1],1)",
    "io_inp": [
      -5,
      -1,
      1,
      1
    ],
    "io_out": [
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [9, 73, 73]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_des([0, -4, -4]),4),-2),-4),1)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      9,
      73,
      73
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_des(input),4),-2),-4),1)"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [6, -14, -18]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(mul_n([-3, -4, 2],4),2))))",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      6,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(mul_n(input,4),2))))"
  },
  {
    "input": "input : list = [2, 3, -4, -2]\noutput : list = [9, -6, -12]",
    "output": "generated_output : list = sort_des(sort_des(reverse(drop(mul_n([2, 3, -4, -2],3),1))))",
    "io_inp": [
      2,
      3,
      -4,
      -2
    ],
    "io_out": [
      9,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(drop(mul_n(input,3),1))))"
  },
  {
    "input": "input : list = [5, -3, -2, -2, 0, 2]\noutput : list = [-12, -8, -8, 0, 8, 20]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_des([5, -3, -2, -2, 0, 2]))),47),4)",
    "io_inp": [
      5,
      -3,
      -2,
      -2,
      0,
      2
    ],
    "io_out": [
      -12,
      -8,
      -8,
      0,
      8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_des(input))),47),4)"
  },
  {
    "input": "input : list = [3, -3, 1, -5, 5, -3]\noutput : list = [5, 3, 1, -3, -3, -5]",
    "output": "generated_output : list = take(sort_des([3, -3, 1, -5, 5, -3]),21)",
    "io_inp": [
      3,
      -3,
      1,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),21)"
  },
  {
    "input": "input : list = [0, -4, -4, -1, 1, 2]\noutput : list = [10, 5, 0, -5, -20, -20]",
    "output": "generated_output : list = sort_des(reverse(mul_n([0, -4, -4, -1, 1, 2],5)))",
    "io_inp": [
      0,
      -4,
      -4,
      -1,
      1,
      2
    ],
    "io_out": [
      10,
      5,
      0,
      -5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,5)))"
  },
  {
    "input": "input : list = [3, 3, 2, 4, -4, -1]\noutput : list = [10]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take([3, 3, 2, 4, -4, -1],1)),4),-3)",
    "io_inp": [
      3,
      3,
      2,
      4,
      -4,
      -1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(input,1)),4),-3)"
  },
  {
    "input": "input : list = [-2, -4, 2, -5, -3]\noutput : list = [4, -4, -6, -8, -10]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(mul_n([-2, -4, 2, -5, -3],2)))))",
    "io_inp": [
      -2,
      -4,
      2,
      -5,
      -3
    ],
    "io_out": [
      4,
      -4,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [1, 0, -3]\noutput : list = [5, 4, 1]",
    "output": "generated_output : list = sub_n(sort_des([1, 0, -3]),-4)",
    "io_inp": [
      1,
      0,
      -3
    ],
    "io_out": [
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-2, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des([-4, -3]),3)),2))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des(input),3)),2))"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [9, -26, -31]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n([3, -5, -4],5))),-2),4)",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      9,
      -26,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n(input,5))),-2),4)"
  },
  {
    "input": "input : list = [3, -2, 4]\noutput : list = [6, -4, 8]",
    "output": "generated_output : list = take(take(reverse(mul_n(reverse([3, -2, 4]),2)),21),39)",
    "io_inp": [
      3,
      -2,
      4
    ],
    "io_out": [
      6,
      -4,
      8
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(reverse(input),2)),21),39)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_des([1, -2, 5]),1),-2)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),1),-2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des([5, -2])",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [10, 30]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sub_n([-5, -1],-4),-3),5)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      10,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sub_n(input,-4),-3),5)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [8, 18]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(reverse([-5, 0]))),4),-2)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      8,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(reverse(input))),4),-2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-1, -1])))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [2, 5, 0, 5, 0]\noutput : list = [8, 20, 0]",
    "output": "generated_output : list = mul_n(take(take([2, 5, 0, 5, 0],3),7),4)",
    "io_inp": [
      2,
      5,
      0,
      5,
      0
    ],
    "io_out": [
      8,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,3),7),4)"
  },
  {
    "input": "input : list = [-1, 3, -5, 3, 1]\noutput : list = [-12, -28, -12, -20]",
    "output": "generated_output : list = mul_n(add_n(drop(reverse(add_n([-1, 3, -5, 3, 1],-5)),1),-4),2)",
    "io_inp": [
      -1,
      3,
      -5,
      3,
      1
    ],
    "io_out": [
      -12,
      -28,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(reverse(add_n(input,-5)),1),-4),2)"
  },
  {
    "input": "input : list = [-4, -5, -1, 3, -5]\noutput : list = [3, 3, 0, -9, -21]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([-4, -5, -1, 3, -5],-4),-3))",
    "io_inp": [
      -4,
      -5,
      -1,
      3,
      -5
    ],
    "io_out": [
      3,
      3,
      0,
      -9,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,-4),-3))"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [2, 5, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(sort_asc([0, 3, 5]),3)),-2),-1)",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      2,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(sort_asc(input),3)),-2),-1)"
  },
  {
    "input": "input : list = [1, -1, 1, -2]\noutput : list = [-60, 60, -60, 120]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(mul_n([1, -1, 1, -2],-5),-2),3),26),-2)",
    "io_inp": [
      1,
      -1,
      1,
      -2
    ],
    "io_out": [
      -60,
      60,
      -60,
      120
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(mul_n(input,-5),-2),3),26),-2)"
  },
  {
    "input": "input : list = [2, 5, 2, 4, 1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = drop([2, 5, 2, 4, 1, -4],4)",
    "io_inp": [
      2,
      5,
      2,
      4,
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-4, -1, 4, -1, 3, -5]\noutput : list = [-7, -6, -3, -3, 1, 2]",
    "output": "generated_output : list = sort_asc(add_n([-4, -1, 4, -1, 3, -5],-2))",
    "io_inp": [
      -4,
      -1,
      4,
      -1,
      3,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [-4, -4, -6]",
    "output": "generated_output : list = add_n(take(sort_des([0, -2, 0]),6),-4)",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),6),-4)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [-1, -2, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(reverse([3, -3, 2]),-1))),5)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(reverse(input),-1))),5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [63, 36]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_asc([0, 3]),4),-3)),-3)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      63,
      36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_asc(input),4),-3)),-3)"
  },
  {
    "input": "input : list = [-1, -2, 1, 1]\noutput : list = [-4, -6, 0, 0]",
    "output": "generated_output : list = sub_n(mul_n([-1, -2, 1, 1],2),2)",
    "io_inp": [
      -1,
      -2,
      1,
      1
    ],
    "io_out": [
      -4,
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),2)"
  },
  {
    "input": "input : list = [-4, -4, 1, 0, 2, 2]\noutput : list = [-2, -3, -1, -1]",
    "output": "generated_output : list = add_n(drop([-4, -4, 1, 0, 2, 2],2),-3)",
    "io_inp": [
      -4,
      -4,
      1,
      0,
      2,
      2
    ],
    "io_out": [
      -2,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-5, 3, 4, -1]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = sort_asc(drop([-5, 3, 4, -1],1))",
    "io_inp": [
      -5,
      3,
      4,
      -1
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [0, 3, 2, 2, 1, -5]\noutput : list = [-9, -3, -2, -2, -1, -4]",
    "output": "generated_output : list = add_n(reverse([0, 3, 2, 2, 1, -5]),-4)",
    "io_inp": [
      0,
      3,
      2,
      2,
      1,
      -5
    ],
    "io_out": [
      -9,
      -3,
      -2,
      -2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-2, 1, 3, -1, -3, -5]\noutput : list = [-20, -10, -5, 0, 10, 20]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n([-2, 1, 3, -1, -3, -5],-1)),5))",
    "io_inp": [
      -2,
      1,
      3,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -20,
      -10,
      -5,
      0,
      10,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(input,-1)),5))"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = sort_des([5, 0, 1])",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3, 5, 1]\noutput : list = [-13, -5, -3, -7]",
    "output": "generated_output : list = take(sub_n(take(take(add_n([-5, 3, 5, 1],-5),9),20),3),21)",
    "io_inp": [
      -5,
      3,
      5,
      1
    ],
    "io_out": [
      -13,
      -5,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(add_n(input,-5),9),20),3),21)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-8, 2]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(mul_n([4, -1],2)),-1)))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(mul_n(input,2)),-1)))"
  },
  {
    "input": "input : list = [-2, -3, 1]\noutput : list = [8, 4, -8]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(sort_des([-2, -3, 1]),-4),-1),3))",
    "io_inp": [
      -2,
      -3,
      1
    ],
    "io_out": [
      8,
      4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(sort_des(input),-4),-1),3))"
  },
  {
    "input": "input : list = [5, -2, 4, 0, 4]\noutput : list = [5, 4, 4, 0, -2]",
    "output": "generated_output : list = sort_des(take(sort_des([5, -2, 4, 0, 4]),7))",
    "io_inp": [
      5,
      -2,
      4,
      0,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),7))"
  },
  {
    "input": "input : list = [2, 1, -4, 3, 5]\noutput : list = [-3, 2, 3, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc([2, 1, -4, 3, 5]),1)",
    "io_inp": [
      2,
      1,
      -4,
      3,
      5
    ],
    "io_out": [
      -3,
      2,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(sub_n([-4, -4],-1),2)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([2, -5],3)),1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,3)),1)"
  },
  {
    "input": "input : list = [2, -3, -1, -4, -2]\noutput : list = [-4, -3, -2, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse([2, -3, -1, -4, -2])))",
    "io_inp": [
      2,
      -3,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [5, -1, 3, -3, -2, 3]\noutput : list = [-4, 0, 4, 20, 20, 28]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc(sub_n([5, -1, 3, -3, -2, 3],-3)),33),4),4)",
    "io_inp": [
      5,
      -1,
      3,
      -3,
      -2,
      3
    ],
    "io_out": [
      -4,
      0,
      4,
      20,
      20,
      28
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(sub_n(input,-3)),33),4),4)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [8, 11, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([1, 1, -2],-5)),-5)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      8,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-5)),-5)"
  },
  {
    "input": "input : list = [5, 5, 0, -1, -2, 1]\noutput : list = [-1, 0, 1, 2, 6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(sort_asc([5, 5, 0, -1, -2, 1]),17)),-1))",
    "io_inp": [
      5,
      5,
      0,
      -1,
      -2,
      1
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(sort_asc(input),17)),-1))"
  },
  {
    "input": "input : list = [-5, 2, -1, 0, 1]\noutput : list = [-14, -7, -10, -9, -8]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(add_n([-5, 2, -1, 0, 1],5),-5),-5),11),4)",
    "io_inp": [
      -5,
      2,
      -1,
      0,
      1
    ],
    "io_out": [
      -14,
      -7,
      -10,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(add_n(input,5),-5),-5),11),4)"
  },
  {
    "input": "input : list = [0, 5, -4, -3, 4, -4]\noutput : list = [0, 25, -20, -15, 20, -20]",
    "output": "generated_output : list = mul_n([0, 5, -4, -3, 4, -4],5)",
    "io_inp": [
      0,
      5,
      -4,
      -3,
      4,
      -4
    ],
    "io_out": [
      0,
      25,
      -20,
      -15,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-2, 5, 3, 3, -4, 5]\noutput : list = [-9, -7, -2, -2, 0, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(sort_asc([-2, 5, 3, 3, -4, 5]),8)),-5))",
    "io_inp": [
      -2,
      5,
      3,
      3,
      -4,
      5
    ],
    "io_out": [
      -9,
      -7,
      -2,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(sort_asc(input),8)),-5))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-8, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_asc([-4, -4])))),2)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [1, -2, 1, 0, -2]\noutput : list = [2, 2, 1, -1, -1]",
    "output": "generated_output : list = sort_des(take(sub_n(take(add_n([1, -2, 1, 0, -2],4),22),3),8))",
    "io_inp": [
      1,
      -2,
      1,
      0,
      -2
    ],
    "io_out": [
      2,
      2,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(add_n(input,4),22),3),8))"
  },
  {
    "input": "input : list = [2, 0, 0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(drop([2, 0, 0, -3],2),16)",
    "io_inp": [
      2,
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),16)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, -3, 0, 0, -4]\noutput : list = [5, 10, 3, 6, 6, 2]",
    "output": "generated_output : list = sub_n(sub_n([-1, 4, -3, 0, 0, -4],-5),-1)",
    "io_inp": [
      -1,
      4,
      -3,
      0,
      0,
      -4
    ],
    "io_out": [
      5,
      10,
      3,
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),-1)"
  },
  {
    "input": "input : list = [3, 2, 4, -1, -1]\noutput : list = [-1, -1, 4, 2, 3]",
    "output": "generated_output : list = reverse([3, 2, 4, -1, -1])",
    "io_inp": [
      3,
      2,
      4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      4,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [7, 2, 1]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n([-2, -3, 3],-2),-2)),33))",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n(input,-2),-2)),33))"
  },
  {
    "input": "input : list = [1, 5, 2, -1]\noutput : list = [-26]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(drop(add_n([1, 5, 2, -1],3),3),-5),-4),-2)",
    "io_inp": [
      1,
      5,
      2,
      -1
    ],
    "io_out": [
      -26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(drop(add_n(input,3),3),-5),-4),-2)"
  },
  {
    "input": "input : list = [2, -5, 2, -3]\noutput : list = [-6, 9]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(drop([2, -5, 2, -3],2))),35),-3)",
    "io_inp": [
      2,
      -5,
      2,
      -3
    ],
    "io_out": [
      -6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(drop(input,2))),35),-3)"
  },
  {
    "input": "input : list = [-2, -5, 3, 1]\noutput : list = [2, 0, -3, -6]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_asc([-2, -5, 3, 1]),22)),33),1)",
    "io_inp": [
      -2,
      -5,
      3,
      1
    ],
    "io_out": [
      2,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_asc(input),22)),33),1)"
  },
  {
    "input": "input : list = [-5, 5, 2, 5]\noutput : list = [6, 6, 3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([-5, 5, 2, 5],-1)))",
    "io_inp": [
      -5,
      5,
      2,
      5
    ],
    "io_out": [
      6,
      6,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [-1, 2, 1, 4, 0]\noutput : list = [6, 4, 2, 0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(mul_n([-1, 2, 1, 4, 0],-2),-4))))",
    "io_inp": [
      -1,
      2,
      1,
      4,
      0
    ],
    "io_out": [
      6,
      4,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(mul_n(input,-2),-4))))"
  },
  {
    "input": "input : list = [-3, 5, 2, 2]\noutput : list = [5, 15, 15, 21]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(mul_n([-3, 5, 2, 2],2)),-5),-5),-1)",
    "io_inp": [
      -3,
      5,
      2,
      2
    ],
    "io_out": [
      5,
      15,
      15,
      21
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(mul_n(input,2)),-5),-5),-1)"
  },
  {
    "input": "input : list = [1, 3, 0, -3, -2]\noutput : list = [-6, -2, 0, 4, 6]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(sort_des([1, 3, 0, -3, -2])),30)),-2)",
    "io_inp": [
      1,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -2,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(sort_des(input)),30)),-2)"
  },
  {
    "input": "input : list = [5, 3, 5, -3, -1, 4]\noutput : list = [8, -2, -6, 10, 6, 10]",
    "output": "generated_output : list = take(take(take(reverse(mul_n([5, 3, 5, -3, -1, 4],2)),7),44),47)",
    "io_inp": [
      5,
      3,
      5,
      -3,
      -1,
      4
    ],
    "io_out": [
      8,
      -2,
      -6,
      10,
      6,
      10
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(mul_n(input,2)),7),44),47)"
  },
  {
    "input": "input : list = [-5, 4, -2, -3, 4, -4]\noutput : list = [10, 9, 8, 7, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(sort_asc([-5, 4, -2, -3, 4, -4]),5),-3),-1),2)",
    "io_inp": [
      -5,
      4,
      -2,
      -3,
      4,
      -4
    ],
    "io_out": [
      10,
      9,
      8,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(sort_asc(input),5),-3),-1),2)"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [-13, -11, -8]",
    "output": "generated_output : list = add_n(take(take(sort_asc(add_n([1, -2, -4],-4)),9),17),-5)",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      -13,
      -11,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(add_n(input,-4)),9),17),-5)"
  },
  {
    "input": "input : list = [-1, -3, 2, -1]\noutput : list = [-8, 1, 1, 7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(sort_asc([-1, -3, 2, -1]),-3)),2),-4)",
    "io_inp": [
      -1,
      -3,
      2,
      -1
    ],
    "io_out": [
      -8,
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(sort_asc(input),-3)),2),-4)"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [-1, 1, 6]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc([5, 0, -2]))),-1)",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(input))),-1)"
  },
  {
    "input": "input : list = [5, 5, -3, -5, 1, -5]\noutput : list = [10, 10, 6, -2, -10, -10]",
    "output": "generated_output : list = take(mul_n(sort_asc([5, 5, -3, -5, 1, -5]),-2),20)",
    "io_inp": [
      5,
      5,
      -3,
      -5,
      1,
      -5
    ],
    "io_out": [
      10,
      10,
      6,
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),-2),20)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(reverse(mul_n([1, 1],-1)))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [5, -1, -4, -3]\noutput : list = [6, -12, -18, -21]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(add_n([5, -1, -4, -3],-3)),17)),3)",
    "io_inp": [
      5,
      -1,
      -4,
      -3
    ],
    "io_out": [
      6,
      -12,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(add_n(input,-3)),17)),3)"
  },
  {
    "input": "input : list = [3, -1, -3, -3, 5]\noutput : list = [-15, -9, 3, 9, 9]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(sort_asc([3, -1, -3, -3, 5]),-3))))",
    "io_inp": [
      3,
      -1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -15,
      -9,
      3,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [-5, 3, -2, 4, -2]\noutput : list = [-5, -2, -2, 3, 4]",
    "output": "generated_output : list = sort_asc([-5, 3, -2, 4, -2])",
    "io_inp": [
      -5,
      3,
      -2,
      4,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, 0, -2]\noutput : list = [2, 3, 3, 1]",
    "output": "generated_output : list = sub_n(mul_n([-1, 0, 0, -2],1),-3)",
    "io_inp": [
      -1,
      0,
      0,
      -2
    ],
    "io_out": [
      2,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-3)"
  },
  {
    "input": "input : list = [-1, 5, 1, -1, 5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(drop([-1, 5, 1, -1, 5, -3],4),-4))),4)",
    "io_inp": [
      -1,
      5,
      1,
      -1,
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(drop(input,4),-4))),4)"
  },
  {
    "input": "input : list = [-2, -2, -3, 1, -5, 2]\noutput : list = [2, 1, 5, -1, 6]",
    "output": "generated_output : list = add_n(add_n(sub_n(drop(sub_n([-2, -2, -3, 1, -5, 2],1),1),2),4),3)",
    "io_inp": [
      -2,
      -2,
      -3,
      1,
      -5,
      2
    ],
    "io_out": [
      2,
      1,
      5,
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(drop(sub_n(input,1),1),2),4),3)"
  },
  {
    "input": "input : list = [-5, 2, 3, 4, -4]\noutput : list = [2, 0, -2, -14, -16]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des([-5, 2, 3, 4, -4]),-5),2),4)",
    "io_inp": [
      -5,
      2,
      3,
      4,
      -4
    ],
    "io_out": [
      2,
      0,
      -2,
      -14,
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(input),-5),2),4)"
  },
  {
    "input": "input : list = [2, 4, -2, -5, 0]\noutput : list = [-2, -4, 2, 5, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse([2, 4, -2, -5, 0]),-1))",
    "io_inp": [
      2,
      4,
      -2,
      -5,
      0
    ],
    "io_out": [
      -2,
      -4,
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [2, -2, -5, 4, -5, 5]\noutput : list = [2, -2, -5, 4]",
    "output": "generated_output : list = take(take([2, -2, -5, 4, -5, 5],4),18)",
    "io_inp": [
      2,
      -2,
      -5,
      4,
      -5,
      5
    ],
    "io_out": [
      2,
      -2,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(take(input,4),18)"
  },
  {
    "input": "input : list = [-4, 0, -2, 0]\noutput : list = [8]",
    "output": "generated_output : list = add_n(sub_n(take(add_n([-4, 0, -2, 0],4),1),-5),3)",
    "io_inp": [
      -4,
      0,
      -2,
      0
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(input,4),1),-5),3)"
  },
  {
    "input": "input : list = [0, 3, -4, 4]\noutput : list = [4, 3, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(sort_des([0, 3, -4, 4])),1),1))",
    "io_inp": [
      0,
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(sort_des(input)),1),1))"
  },
  {
    "input": "input : list = [3, 2, -2, 2]\noutput : list = [6, 5, 5, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(sort_des([3, 2, -2, 2]),18)),-4),1)",
    "io_inp": [
      3,
      2,
      -2,
      2
    ],
    "io_out": [
      6,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(sort_des(input),18)),-4),1)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [8, 6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse([1, 3])),-5))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(input)),-5))"
  },
  {
    "input": "input : list = [0, -1, -4, -5, -2]\noutput : list = [-2, -5, -4, -1, 0]",
    "output": "generated_output : list = reverse([0, -1, -4, -5, -2])",
    "io_inp": [
      0,
      -1,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, -1, -3]\noutput : list = [-1, 1, 1, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(sub_n([5, -1, -1, -3],-2)))))",
    "io_inp": [
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -1,
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [2, -2, 3, -3, -3]\noutput : list = [3, 2, -2, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([2, -2, 3, -3, -3])))",
    "io_inp": [
      2,
      -2,
      3,
      -3,
      -3
    ],
    "io_out": [
      3,
      2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [0, -2, 3, 2, -5, -4]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(take([0, -2, 3, 2, -5, -4],2))),46))",
    "io_inp": [
      0,
      -2,
      3,
      2,
      -5,
      -4
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(take(input,2))),46))"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [7, 2, 1]",
    "output": "generated_output : list = sub_n(reverse([-2, -1, 4]),-3)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [2, 2, 1, -5, 4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(take([2, 2, 1, -5, 4],2))),1),3)",
    "io_inp": [
      2,
      2,
      1,
      -5,
      4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(take(input,2))),1),3)"
  },
  {
    "input": "input : list = [1, -2, -4, 2, 5]\noutput : list = [5, 2, 1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([1, -2, -4, 2, 5]))",
    "io_inp": [
      1,
      -2,
      -4,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des([1, 4])",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, -5, -5]\noutput : list = [-8, -8, -2, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(take(sub_n([4, 1, -5, -5],3),7),28)))",
    "io_inp": [
      4,
      1,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(sub_n(input,3),7),28)))"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [-27]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(take([-5, 4, 1],1)),5),-2),20)",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(take(input,1)),5),-2),20)"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [135, 45, 0]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(add_n([-4, 2, 5],-5),3),1),-5),-5)",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      135,
      45,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(add_n(input,-5),3),1),-5),-5)"
  },
  {
    "input": "input : list = [-3, 4, -1, -1, 5]\noutput : list = [2, 0, 0, -5, -6]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(reverse([-3, 4, -1, -1, 5])),-1),1),-1)",
    "io_inp": [
      -3,
      4,
      -1,
      -1,
      5
    ],
    "io_out": [
      2,
      0,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(reverse(input)),-1),1),-1)"
  },
  {
    "input": "input : list = [-4, -3, -1, -1, -4, 5]\noutput : list = [-4, -4, -3, -1, -1, 5]",
    "output": "generated_output : list = sort_asc([-4, -3, -1, -1, -4, 5])",
    "io_inp": [
      -4,
      -3,
      -1,
      -1,
      -4,
      5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [21, 13]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(sub_n([1, 3],5),13),-4)),-5)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      21,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(sub_n(input,5),13),-4)),-5)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [10, 20]",
    "output": "generated_output : list = mul_n([-2, -4],-5)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [5, 5, -3, 3]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(take([5, 5, -3, 3],2),-1)),5))",
    "io_inp": [
      5,
      5,
      -3,
      3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(take(input,2),-1)),5))"
  },
  {
    "input": "input : list = [-4, 3, -1, 2]\noutput : list = [16, 12, 0, -12]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(sort_asc([-4, 3, -1, 2]),1),30)),4)",
    "io_inp": [
      -4,
      3,
      -1,
      2
    ],
    "io_out": [
      16,
      12,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(sort_asc(input),1),30)),4)"
  },
  {
    "input": "input : list = [-2, 4, 4, 4]\noutput : list = [-7, -1, -1, -1]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(sort_des([-2, 4, 4, 4])))),-5)",
    "io_inp": [
      -2,
      4,
      4,
      4
    ],
    "io_out": [
      -7,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [2, 0, -1, -5]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = reverse(sort_asc(drop([2, 0, -1, -5],1)))",
    "io_inp": [
      2,
      0,
      -1,
      -5
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [5, 3, 1, -5, 1, 2]\noutput : list = [-10, -4, -4, -3, -2, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(reverse([5, 3, 1, -5, 1, 2]))),5))",
    "io_inp": [
      5,
      3,
      1,
      -5,
      1,
      2
    ],
    "io_out": [
      -10,
      -4,
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(reverse(input))),5))"
  },
  {
    "input": "input : list = [-3, -5, 1, 1, 2]\noutput : list = [28, 20, 4, 4, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_asc([-3, -5, 1, 1, 2]),2),-4)))",
    "io_inp": [
      -3,
      -5,
      1,
      1,
      2
    ],
    "io_out": [
      28,
      20,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_asc(input),2),-4)))"
  },
  {
    "input": "input : list = [-3, 0, -5, 0, 2, 5]\noutput : list = [0, -9, -15, -15, -24, -30]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n([-3, 0, -5, 0, 2, 5],5),21)),3)",
    "io_inp": [
      -3,
      0,
      -5,
      0,
      2,
      5
    ],
    "io_out": [
      0,
      -9,
      -15,
      -15,
      -24,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(input,5),21)),3)"
  },
  {
    "input": "input : list = [0, -3, -3, -4, -5, 0]\noutput : list = [0, 0, -3, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([0, -3, -3, -4, -5, 0])))",
    "io_inp": [
      0,
      -3,
      -3,
      -4,
      -5,
      0
    ],
    "io_out": [
      0,
      0,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(sort_des([-1, 3])),11)),2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(sort_des(input)),11)),2)"
  },
  {
    "input": "input : list = [-1, 1, 5]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(drop([-1, 1, 5],1),9),1)))",
    "io_inp": [
      -1,
      1,
      5
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(drop(input,1),9),1)))"
  },
  {
    "input": "input : list = [-5, -1, -1, 1, 1]\noutput : list = [1, 1, -1, -1, -5]",
    "output": "generated_output : list = sort_des([-5, -1, -1, 1, 1])",
    "io_inp": [
      -5,
      -1,
      -1,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-6, -4, 10]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_des([-5, -4, 3]),2))),2)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -6,
      -4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_des(input),2))),2)"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [9, 3, 5]",
    "output": "generated_output : list = sub_n(sub_n([3, -3, -1],-4),-2)",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      9,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-2)"
  },
  {
    "input": "input : list = [1, 5, 1, -4, 3]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(take([1, 5, 1, -4, 3],2)))))",
    "io_inp": [
      1,
      5,
      1,
      -4,
      3
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [5, -3, -1, -5]\noutput : list = [5, -3]",
    "output": "generated_output : list = take([5, -3, -1, -5],2)",
    "io_inp": [
      5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 5, -5, 0, 2]\noutput : list = [-8, -3, -1]",
    "output": "generated_output : list = add_n(take(drop([-2, 5, -5, 0, 2],2),8),-3)",
    "io_inp": [
      -2,
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      -8,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,2),8),-3)"
  },
  {
    "input": "input : list = [3, 4, -5, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take([3, 4, -5, 5],1))",
    "io_inp": [
      3,
      4,
      -5,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [4, -8]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(sub_n([-5, -1],-3),14),3),-2))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(sub_n(input,-3),14),3),-2))"
  },
  {
    "input": "input : list = [-2, 3, 4, 2, -1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(drop([-2, 3, 4, 2, -1, 4],4)))))",
    "io_inp": [
      -2,
      3,
      4,
      2,
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(drop(input,4)))))"
  },
  {
    "input": "input : list = [2, 1, -4, -2, -1]\noutput : list = [-2, -3, -8, -6, -5]",
    "output": "generated_output : list = sub_n([2, 1, -4, -2, -1],4)",
    "io_inp": [
      2,
      1,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, -3, -5, 0]\noutput : list = [-6, -8, -9, -11]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(reverse([-2, -3, -5, 0])),-2),-1),-5)",
    "io_inp": [
      -2,
      -3,
      -5,
      0
    ],
    "io_out": [
      -6,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(reverse(input)),-2),-1),-5)"
  },
  {
    "input": "input : list = [-1, 3, -4, 4]\noutput : list = [2, 6, -1, 7]",
    "output": "generated_output : list = sub_n([-1, 3, -4, 4],-3)",
    "io_inp": [
      -1,
      3,
      -4,
      4
    ],
    "io_out": [
      2,
      6,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-100, -50]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc([1, 3]),5),5),5))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -100,
      -50
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc(input),5),5),5))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(reverse([2, -2]))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -1, -5, 5, 1]\noutput : list = [9, 5, 3, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(drop([0, -1, -5, 5, 1],1),5)),1))",
    "io_inp": [
      0,
      -1,
      -5,
      5,
      1
    ],
    "io_out": [
      9,
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(drop(input,1),5)),1))"
  },
  {
    "input": "input : list = [-1, -2, 1, -3, 1]\noutput : list = [10, 5, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(take([-1, -2, 1, -3, 1],3)))),-5)",
    "io_inp": [
      -1,
      -2,
      1,
      -3,
      1
    ],
    "io_out": [
      10,
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(take(input,3)))),-5)"
  },
  {
    "input": "input : list = [-4, -3, -2, -2, -3, -2]\noutput : list = [-10, -10, -10, -11, -11, -12]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(sort_des([-4, -3, -2, -2, -3, -2]),22),5),-4),-1)",
    "io_inp": [
      -4,
      -3,
      -2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -10,
      -11,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(sort_des(input),22),5),-4),-1)"
  },
  {
    "input": "input : list = [3, 4, -2, 3, -1]\noutput : list = [20, 15, 15, -5, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(sort_des([3, 4, -2, 3, -1])))),5)",
    "io_inp": [
      3,
      4,
      -2,
      3,
      -1
    ],
    "io_out": [
      20,
      15,
      15,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [2, 5, 1, 1, -3, -1]\noutput : list = [-1, -3, 1, 1, 5, 2]",
    "output": "generated_output : list = take(reverse([2, 5, 1, 1, -3, -1]),23)",
    "io_inp": [
      2,
      5,
      1,
      1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      1,
      1,
      5,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),23)"
  },
  {
    "input": "input : list = [0, 0, -3, 1]\noutput : list = [0, -1, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(take(take(reverse([0, 0, -3, 1]),15),17),-1))",
    "io_inp": [
      0,
      0,
      -3,
      1
    ],
    "io_out": [
      0,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(reverse(input),15),17),-1))"
  },
  {
    "input": "input : list = [5, 2, 0]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = take(sort_asc(add_n([5, 2, 0],-2)),3)",
    "io_inp": [
      5,
      2,
      0
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-2)),3)"
  },
  {
    "input": "input : list = [-5, 1, 5, -1]\noutput : list = [5, 1, -1, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc([-5, 1, 5, -1])),16)",
    "io_inp": [
      -5,
      1,
      5,
      -1
    ],
    "io_out": [
      5,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),16)"
  },
  {
    "input": "input : list = [-3, 1, 0]\noutput : list = [-9, -4]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(drop([-3, 1, 0],1),-5),13),3),1)",
    "io_inp": [
      -3,
      1,
      0
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(drop(input,1),-5),13),3),1)"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -2, -2],1)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 2, -2, 2, 1, -1]\noutput : list = [6, 3, -1, 3, 2, 0]",
    "output": "generated_output : list = sub_n([5, 2, -2, 2, 1, -1],-1)",
    "io_inp": [
      5,
      2,
      -2,
      2,
      1,
      -1
    ],
    "io_out": [
      6,
      3,
      -1,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, -1, 3, -2]\noutput : list = [2]",
    "output": "generated_output : list = drop(add_n(add_n(drop(mul_n([1, -1, 3, -2],-2),1),-1),-1),2)",
    "io_inp": [
      1,
      -1,
      3,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(drop(mul_n(input,-2),1),-1),-1),2)"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [2, 0]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(drop([-3, -3, -5],1))),-1),3)",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(drop(input,1))),-1),3)"
  },
  {
    "input": "input : list = [-2, -1, 4, -1, -3, 4]\noutput : list = [3, 4, 5, 5, 10, 10]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([-2, -1, 4, -1, -3, 4],-5),1))",
    "io_inp": [
      -2,
      -1,
      4,
      -1,
      -3,
      4
    ],
    "io_out": [
      3,
      4,
      5,
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-5),1))"
  },
  {
    "input": "input : list = [4, 0, 4, -2]\noutput : list = [-4, 2, -2, 2]",
    "output": "generated_output : list = reverse(add_n([4, 0, 4, -2],-2))",
    "io_inp": [
      4,
      0,
      4,
      -2
    ],
    "io_out": [
      -4,
      2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [1, -1, -5, 5]\noutput : list = [4, -6, -2, 0]",
    "output": "generated_output : list = reverse(sub_n([1, -1, -5, 5],1))",
    "io_inp": [
      1,
      -1,
      -5,
      5
    ],
    "io_out": [
      4,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [-4, -2, 2, 1]\noutput : list = [0, 2, 6, 5]",
    "output": "generated_output : list = add_n(sub_n([-4, -2, 2, 1],-3),1)",
    "io_inp": [
      -4,
      -2,
      2,
      1
    ],
    "io_out": [
      0,
      2,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-3),1)"
  },
  {
    "input": "input : list = [-3, 5, -2, 4, 2, 2]\noutput : list = [-8, 0, -7, -1, -3, -3]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(add_n([-3, 5, -2, 4, 2, 2],-1))),-1),-3)",
    "io_inp": [
      -3,
      5,
      -2,
      4,
      2,
      2
    ],
    "io_out": [
      -8,
      0,
      -7,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(add_n(input,-1))),-1),-3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(reverse([0, 5]),-2),20)))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(reverse(input),-2),20)))"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [80, 40, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(add_n([-1, -3, 1],3),-4))),-5)",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      80,
      40,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(add_n(input,3),-4))),-5)"
  },
  {
    "input": "input : list = [-5, -2, -5, -4, 0, 0]\noutput : list = [-8, -5, -8, -7, -3, -3]",
    "output": "generated_output : list = add_n([-5, -2, -5, -4, 0, 0],-3)",
    "io_inp": [
      -5,
      -2,
      -5,
      -4,
      0,
      0
    ],
    "io_out": [
      -8,
      -5,
      -8,
      -7,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [-3, -3, 5]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(sort_asc([3, 3, -5])),-1)))",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      -3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [35, -25, -25]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse([1, 1, -5]),-2),-2),5),-5)",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      35,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse(input),-2),-2),5),-5)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des([3, -2])",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, 0, 0, 5, 3]\noutput : list = [18, 30, 0]",
    "output": "generated_output : list = reverse(mul_n(take(drop(mul_n([1, -1, 0, 0, 5, 3],3),3),26),2))",
    "io_inp": [
      1,
      -1,
      0,
      0,
      5,
      3
    ],
    "io_out": [
      18,
      30,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(drop(mul_n(input,3),3),26),2))"
  },
  {
    "input": "input : list = [2, -5, -3, 1]\noutput : list = [18, 12, 0, -3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(mul_n([2, -5, -3, 1],-3))),3))",
    "io_inp": [
      2,
      -5,
      -3,
      1
    ],
    "io_out": [
      18,
      12,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(mul_n(input,-3))),3))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [17, 25]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(sub_n([2, 4],-3),4),3)))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      17,
      25
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(sub_n(input,-3),4),3)))"
  },
  {
    "input": "input : list = [-1, -2, 2]\noutput : list = [-20, -45, 55]",
    "output": "generated_output : list = add_n(mul_n(take(take(mul_n([-1, -2, 2],5),6),11),5),5)",
    "io_inp": [
      -1,
      -2,
      2
    ],
    "io_out": [
      -20,
      -45,
      55
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(mul_n(input,5),6),11),5),5)"
  },
  {
    "input": "input : list = [4, -1, -3, 2, 5, -1]\noutput : list = [3, 2, 0, -3, -3, -5]",
    "output": "generated_output : list = add_n(sort_des([4, -1, -3, 2, 5, -1]),-2)",
    "io_inp": [
      4,
      -1,
      -3,
      2,
      5,
      -1
    ],
    "io_out": [
      3,
      2,
      0,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-3, -3, -5, -1, -1, -4]\noutput : list = [-3, -2, -1, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-3, -3, -5, -1, -1, -4],3),-5))",
    "io_inp": [
      -3,
      -3,
      -5,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,3),-5))"
  },
  {
    "input": "input : list = [0, -2, 1, 0]\noutput : list = [-1, -6]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n(drop([0, -2, 1, 0],2),-5))),-1)",
    "io_inp": [
      0,
      -2,
      1,
      0
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(drop(input,2),-5))),-1)"
  },
  {
    "input": "input : list = [-3, -4, 5, -2]\noutput : list = [-2, -23, -26, -29]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(add_n([-3, -4, 5, -2],-1),-3),3)),5)",
    "io_inp": [
      -3,
      -4,
      5,
      -2
    ],
    "io_out": [
      -2,
      -23,
      -26,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(add_n(input,-1),-3),3)),5)"
  },
  {
    "input": "input : list = [-3, -5, 3, 0, -4, -4]\noutput : list = [-9, -7, -7, -5, 1, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(mul_n([-3, -5, 3, 0, -4, -4],2)),1)))",
    "io_inp": [
      -3,
      -5,
      3,
      0,
      -4,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -7,
      -5,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(mul_n(input,2)),1)))"
  },
  {
    "input": "input : list = [-1, 5, -4, 2]\noutput : list = [1, -2, -5, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(take(sub_n([-1, 5, -4, 2],4),9)),8))",
    "io_inp": [
      -1,
      5,
      -4,
      2
    ],
    "io_out": [
      1,
      -2,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(sub_n(input,4),9)),8))"
  },
  {
    "input": "input : list = [0, 1, 2, -1, -4, 1]\noutput : list = [1, 2, -1, -4, 1]",
    "output": "generated_output : list = drop([0, 1, 2, -1, -4, 1],1)",
    "io_inp": [
      0,
      1,
      2,
      -1,
      -4,
      1
    ],
    "io_out": [
      1,
      2,
      -1,
      -4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [10, -20]",
    "output": "generated_output : list = mul_n([-2, 4],-5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([2, -1, 1])))",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [0, -3, -4, 3, 4, 1]\noutput : list = [4, 3, 1, 0, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc([0, -3, -4, 3, 4, 1]))",
    "io_inp": [
      0,
      -3,
      -4,
      3,
      4,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 1, 1, -3, -2, -5]\noutput : list = [1, 1, -1, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-1, 1, 1, -3, -2, -5])",
    "io_inp": [
      -1,
      1,
      1,
      -3,
      -2,
      -5
    ],
    "io_out": [
      1,
      1,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, 1, -1]\noutput : list = [1, 3]",
    "output": "generated_output : list = take([1, 3, 1, -1],2)",
    "io_inp": [
      1,
      3,
      1,
      -1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 2, -1, 3]\noutput : list = [4, 7, 8, 10]",
    "output": "generated_output : list = sub_n(sort_asc([5, 2, -1, 3]),-5)",
    "io_inp": [
      5,
      2,
      -1,
      3
    ],
    "io_out": [
      4,
      7,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-4, -4, -4, -2, -1]\noutput : list = [-4, -4, -4, -2, -1]",
    "output": "generated_output : list = mul_n([-4, -4, -4, -2, -1],1)",
    "io_inp": [
      -4,
      -4,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, -5, 3, 1, -4]\noutput : list = [-3, -5, -7, -10, -11]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-1, -5, 3, 1, -4]),-2),4)",
    "io_inp": [
      -1,
      -5,
      3,
      1,
      -4
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),-2),4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(reverse([0, 5]),4),7)))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(reverse(input),4),7)))"
  },
  {
    "input": "input : list = [3, 3, 1, -2, -4, -2]\noutput : list = [3, 3, 1]",
    "output": "generated_output : list = take([3, 3, 1, -2, -4, -2],3)",
    "io_inp": [
      3,
      3,
      1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, 2, -2, -3]\noutput : list = [1, 1, 2, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n(add_n([-3, 2, -2, -3],-2),1),-5),6))",
    "io_inp": [
      -3,
      2,
      -2,
      -3
    ],
    "io_out": [
      1,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(add_n(input,-2),1),-5),6))"
  },
  {
    "input": "input : list = [3, 2, 3, -3, 3, -2]\noutput : list = [13, 9, 13, -11, 13, -7]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(mul_n([3, 2, 3, -3, 3, -2],-4),5),-3),3),-1)",
    "io_inp": [
      3,
      2,
      3,
      -3,
      3,
      -2
    ],
    "io_out": [
      13,
      9,
      13,
      -11,
      13,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(mul_n(input,-4),5),-3),3),-1)"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = add_n(take(drop([0, -2, -1],1),17),-1)",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,1),17),-1)"
  },
  {
    "input": "input : list = [4, -1, -2, 1]\noutput : list = [-5, 0, 1, -2]",
    "output": "generated_output : list = add_n(mul_n(sub_n([4, -1, -2, 1],-2),-1),1)",
    "io_inp": [
      4,
      -1,
      -2,
      1
    ],
    "io_out": [
      -5,
      0,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-2),-1),1)"
  },
  {
    "input": "input : list = [5, 1, -1, -3, -5, 5]\noutput : list = [4, 4, 0, -2, -4, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(sub_n([5, 1, -1, -3, -5, 5],1)))))",
    "io_inp": [
      5,
      1,
      -1,
      -3,
      -5,
      5
    ],
    "io_out": [
      4,
      4,
      0,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(drop([5, -4, -1],1),-1),-2),27))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(drop(input,1),-1),-2),27))"
  },
  {
    "input": "input : list = [-5, -3, -3, -5, 1, -2]\noutput : list = [-8, -5, -2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(drop([-5, -3, -3, -5, 1, -2],3),27),-1),-4))",
    "io_inp": [
      -5,
      -3,
      -3,
      -5,
      1,
      -2
    ],
    "io_out": [
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(drop(input,3),27),-1),-4))"
  },
  {
    "input": "input : list = [-3, 2, -5, -4, -2]\noutput : list = [4, -4, -6, -8, -10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(mul_n([-3, 2, -5, -4, -2],2)),1)))",
    "io_inp": [
      -3,
      2,
      -5,
      -4,
      -2
    ],
    "io_out": [
      4,
      -4,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(mul_n(input,2)),1)))"
  },
  {
    "input": "input : list = [4, 5, -3, -3]\noutput : list = [-27, -24, -3, -3]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(sort_asc([4, 5, -3, -3]),2),2),-3))",
    "io_inp": [
      4,
      5,
      -3,
      -3
    ],
    "io_out": [
      -27,
      -24,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(sort_asc(input),2),2),-3))"
  },
  {
    "input": "input : list = [1, -3, -1, 0, 1, 4]\noutput : list = [-20, -10, -5, 0, 0, 15]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n([1, -3, -1, 0, 1, 4],5)),-5)))",
    "io_inp": [
      1,
      -3,
      -1,
      0,
      1,
      4
    ],
    "io_out": [
      -20,
      -10,
      -5,
      0,
      0,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n(input,5)),-5)))"
  },
  {
    "input": "input : list = [-5, -1, -4, 5, 3]\noutput : list = [-10, -8, -4, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n([-5, -1, -4, 5, 3],-1))),-5))",
    "io_inp": [
      -5,
      -1,
      -4,
      5,
      3
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n(input,-1))),-5))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sub_n([-4, 4],-3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 3, 0, -1, 2, 5]\noutput : list = [-6, 14, 24, 44, 54, 54]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sub_n([-1, 3, 0, -1, 2, 5],5),-5),3)),2)",
    "io_inp": [
      -1,
      3,
      0,
      -1,
      2,
      5
    ],
    "io_out": [
      -6,
      14,
      24,
      44,
      54,
      54
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sub_n(input,5),-5),3)),2)"
  },
  {
    "input": "input : list = [-1, 2, 2, 3, 4, -1]\noutput : list = [-1, -1, 2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([-1, 2, 2, 3, 4, -1])",
    "io_inp": [
      -1,
      2,
      2,
      3,
      4,
      -1
    ],
    "io_out": [
      -1,
      -1,
      2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc([3, -5])",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(take([0, -4, 3],1))),11))",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(take(input,1))),11))"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [1, -1, -6]",
    "output": "generated_output : list = add_n(take(reverse(take(sort_asc([5, -2, 3]),14)),18),-4)",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sort_asc(input),14)),18),-4)"
  },
  {
    "input": "input : list = [-2, 4, 3, 4, 5, 2]\noutput : list = [4, 1]",
    "output": "generated_output : list = add_n(drop([-2, 4, 3, 4, 5, 2],4),-1)",
    "io_inp": [
      -2,
      4,
      3,
      4,
      5,
      2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,4),-1)"
  },
  {
    "input": "input : list = [3, -3, -2, 1, 0, -2]\noutput : list = [-4, -3, -3, -1, 0, 2]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(sort_des([3, -3, -2, 1, 0, -2])),-4),-1),-4)",
    "io_inp": [
      3,
      -3,
      -2,
      1,
      0,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(sort_des(input)),-4),-1),-4)"
  },
  {
    "input": "input : list = [-2, 4, -2, -1, 3, 2]\noutput : list = [7, 6, 5, 2, 1, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_des([-2, 4, -2, -1, 3, 2]),3))",
    "io_inp": [
      -2,
      4,
      -2,
      -1,
      3,
      2
    ],
    "io_out": [
      7,
      6,
      5,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(mul_n([2, -1, 1],5)),1)))",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(mul_n(input,5)),1)))"
  },
  {
    "input": "input : list = [5, 1, 3, 4]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = drop([5, 1, 3, 4],1)",
    "io_inp": [
      5,
      1,
      3,
      4
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des([0, 1])",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [51, -45]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n([4, -4],4),-3)),3)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      51,
      -45
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(input,4),-3)),3)"
  },
  {
    "input": "input : list = [2, 5, -5, 0, 2]\noutput : list = [-10, -3, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(take([2, 5, -5, 0, 2],3),3)),2),10)",
    "io_inp": [
      2,
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      -10,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(take(input,3),3)),2),10)"
  },
  {
    "input": "input : list = [-4, -3, 2, -2]\noutput : list = [4, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_asc([-4, -3, 2, -2]),3),-4),-1))",
    "io_inp": [
      -4,
      -3,
      2,
      -2
    ],
    "io_out": [
      4,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_asc(input),3),-4),-1))"
  },
  {
    "input": "input : list = [2, -4, 3, 2, -2, 0]\noutput : list = [2, -10, 4, 2, -6, -2]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(reverse([2, -4, 3, 2, -2, 0])),-1),-1),-2)",
    "io_inp": [
      2,
      -4,
      3,
      2,
      -2,
      0
    ],
    "io_out": [
      2,
      -10,
      4,
      2,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(reverse(input)),-1),-1),-2)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-7, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n([4, -1],5),-1))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,5),-1))"
  },
  {
    "input": "input : list = [-1, -1, 2]\noutput : list = [6, 3, 3]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sort_des([-1, -1, 2])),-4)))",
    "io_inp": [
      -1,
      -1,
      2
    ],
    "io_out": [
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(sub_n([-1, 4],-3)),2),5),1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(sub_n(input,-3)),2),5),1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(add_n([-4, -3],3),-1),-4)),-1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(add_n(input,3),-1),-4)),-1)"
  },
  {
    "input": "input : list = [-3, 2, 2, 3, -1, 1]\noutput : list = [3, 2, 2, 1, -1]",
    "output": "generated_output : list = take(sort_des(take(drop([-3, 2, 2, 3, -1, 1],1),25)),29)",
    "io_inp": [
      -3,
      2,
      2,
      3,
      -1,
      1
    ],
    "io_out": [
      3,
      2,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(drop(input,1),25)),29)"
  },
  {
    "input": "input : list = [2, -4, 0, -1, 1]\noutput : list = [-20, 10, -10, -5, -15]",
    "output": "generated_output : list = mul_n(add_n([2, -4, 0, -1, 1],2),-5)",
    "io_inp": [
      2,
      -4,
      0,
      -1,
      1
    ],
    "io_out": [
      -20,
      10,
      -10,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),-5)"
  },
  {
    "input": "input : list = [-5, 4, 0, 0, 3]\noutput : list = [3, 12, 8, 8, 11]",
    "output": "generated_output : list = add_n(sub_n(add_n([-5, 4, 0, 0, 3],-1),-4),5)",
    "io_inp": [
      -5,
      4,
      0,
      0,
      3
    ],
    "io_out": [
      3,
      12,
      8,
      8,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,-1),-4),5)"
  },
  {
    "input": "input : list = [-2, -1, -2, -4, 0, -5]\noutput : list = [-5, -4, -2, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, -1, -2, -4, 0, -5]))",
    "io_inp": [
      -2,
      -1,
      -2,
      -4,
      0,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = take(take(sort_asc([-3, -5, 2]),10),11)",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),10),11)"
  },
  {
    "input": "input : list = [-2, 5, 3, -5, -3, -4]\noutput : list = [-2, 6, 26, 30, 34, 38]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(sort_des([-2, 5, 3, -5, -3, -4]),5),-4),25),-2)",
    "io_inp": [
      -2,
      5,
      3,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -2,
      6,
      26,
      30,
      34,
      38
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(sort_des(input),5),-4),25),-2)"
  },
  {
    "input": "input : list = [2, -5, -5]\noutput : list = [-12, -12, 9]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(mul_n([2, -5, -5],3),-3))),37)",
    "io_inp": [
      2,
      -5,
      -5
    ],
    "io_out": [
      -12,
      -12,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(mul_n(input,3),-3))),37)"
  },
  {
    "input": "input : list = [0, -3, 0, -4, -1, -5]\noutput : list = [0, 0, -1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(sort_asc([0, -3, 0, -4, -1, -5])))))",
    "io_inp": [
      0,
      -3,
      0,
      -4,
      -1,
      -5
    ],
    "io_out": [
      0,
      0,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, 2, 5, -4, -1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 2, 5, -4, -1],1)",
    "io_inp": [
      3,
      2,
      5,
      -4,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [1, 7, 4]",
    "output": "generated_output : list = reverse(take(take(sub_n(mul_n([0, 3, -3],1),-4),23),7))",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      1,
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(mul_n(input,1),-4),23),7))"
  },
  {
    "input": "input : list = [5, 5, -3, 2]\noutput : list = [-2, -7, 1, 1]",
    "output": "generated_output : list = sub_n(reverse([5, 5, -3, 2]),4)",
    "io_inp": [
      5,
      5,
      -3,
      2
    ],
    "io_out": [
      -2,
      -7,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [4, 0, 0, 5, 2]\noutput : list = [-15, -12, -6, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sort_asc([4, 0, 0, 5, 2]))),-3))",
    "io_inp": [
      4,
      0,
      0,
      5,
      2
    ],
    "io_out": [
      -15,
      -12,
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [0, 1, -4, 3, 1]\noutput : list = [25, 15, 15, 10, -10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n([0, 1, -4, 3, 1],2),5)))",
    "io_inp": [
      0,
      1,
      -4,
      3,
      1
    ],
    "io_out": [
      25,
      15,
      15,
      10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(input,2),5)))"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = sort_asc([-3, 3, -2])",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1, -2, 1, -4]\noutput : list = [-4, 2, 2, 8, 12]",
    "output": "generated_output : list = mul_n(take(sub_n(take(sort_des([4, 1, -2, 1, -4]),19),2),30),-2)",
    "io_inp": [
      4,
      1,
      -2,
      1,
      -4
    ],
    "io_out": [
      -4,
      2,
      2,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(sort_des(input),19),2),30),-2)"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = sort_asc([-2, -3, 3])",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, 1, 1, 1, 1]\noutput : list = [8, 8, 8, 8, 6, 5]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(sort_des([-2, -1, 1, 1, 1, 1]),6),2),3),-2)",
    "io_inp": [
      -2,
      -1,
      1,
      1,
      1,
      1
    ],
    "io_out": [
      8,
      8,
      8,
      8,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(sort_des(input),6),2),3),-2)"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [-3, -3, -7]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des([5, 1, 5]),4),17),-4)",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(input),4),17),-4)"
  },
  {
    "input": "input : list = [-5, -5, 3, -3]\noutput : list = [2, 2, -2, -14]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse(sub_n([-5, -5, 3, -3],-2))),-2),-2)",
    "io_inp": [
      -5,
      -5,
      3,
      -3
    ],
    "io_out": [
      2,
      2,
      -2,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(sub_n(input,-2))),-2),-2)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [19, 19, 4]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(sort_asc([1, 1, -2]),3)),5),1)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      19,
      19,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(sort_asc(input),3)),5),1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-1, 2]",
    "output": "generated_output : list = add_n(sort_asc([3, 0]),-1)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-4, 0, -5, -3, 3, 2]\noutput : list = [-5, -3, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(take(drop([-4, 0, -5, -3, 3, 2],2),26),27)))",
    "io_inp": [
      -4,
      0,
      -5,
      -3,
      3,
      2
    ],
    "io_out": [
      -5,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(drop(input,2),26),27)))"
  },
  {
    "input": "input : list = [-5, -2, -3, -4, 2]\noutput : list = [7, 1, 3, 5, -7]",
    "output": "generated_output : list = add_n(add_n(mul_n([-5, -2, -3, -4, 2],-2),1),-4)",
    "io_inp": [
      -5,
      -2,
      -3,
      -4,
      2
    ],
    "io_out": [
      7,
      1,
      3,
      5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,-2),1),-4)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-12, -12]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(sort_asc([4, 4]))),-3),35)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(sort_asc(input))),-3),35)"
  },
  {
    "input": "input : list = [-1, 4, -4, 5]\noutput : list = [20, 17, 2, -7]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_des([-1, 4, -4, 5]),3),30),-5),21)",
    "io_inp": [
      -1,
      4,
      -4,
      5
    ],
    "io_out": [
      20,
      17,
      2,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_des(input),3),30),-5),21)"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [4, 4, -4]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(sort_asc([5, -3, 5]))),1),41)",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(sort_asc(input))),1),41)"
  },
  {
    "input": "input : list = [5, 5, 3, 1, 4, -4]\noutput : list = [0, -5, -7, -8, -9, -9]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(sort_des([5, 5, 3, 1, 4, -4]),-4),-1)),53)",
    "io_inp": [
      5,
      5,
      3,
      1,
      4,
      -4
    ],
    "io_out": [
      0,
      -5,
      -7,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(sort_des(input),-4),-1)),53)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [12, 15, -15]",
    "output": "generated_output : list = take(mul_n([4, 5, -5],3),13)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      12,
      15,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),13)"
  },
  {
    "input": "input : list = [-4, 4, 2, 4, 1]\noutput : list = [-60, 100, 60, 100, 40]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-4, 4, 2, 4, 1],-5),-5),-4)",
    "io_inp": [
      -4,
      4,
      2,
      4,
      1
    ],
    "io_out": [
      -60,
      100,
      60,
      100,
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,-5),-5),-4)"
  },
  {
    "input": "input : list = [0, 0, 2, 2, -2]\noutput : list = [2, 2, 0, 0, -2]",
    "output": "generated_output : list = sort_des([0, 0, 2, 2, -2])",
    "io_inp": [
      0,
      0,
      2,
      2,
      -2
    ],
    "io_out": [
      2,
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-36, -28]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(sub_n([-2, 0],4),-3),4)))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -36,
      -28
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(sub_n(input,4),-3),4)))"
  },
  {
    "input": "input : list = [-3, -4, 1, -4]\noutput : list = [-36, 24, -36, -24]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(mul_n([-3, -4, 1, -4],3),-4)),1),4)",
    "io_inp": [
      -3,
      -4,
      1,
      -4
    ],
    "io_out": [
      -36,
      24,
      -36,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(mul_n(input,3),-4)),1),4)"
  },
  {
    "input": "input : list = [-2, 4, 2, -4, -5, 4]\noutput : list = [4, 4, 0, -8, -12, -14]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n([-2, 4, 2, -4, -5, 4],2),2),16))",
    "io_inp": [
      -2,
      4,
      2,
      -4,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      0,
      -8,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(input,2),2),16))"
  },
  {
    "input": "input : list = [3, -5, -3, 5, 5]\noutput : list = [49, 49, 39, 9, -1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n([3, -5, -3, 5, 5],5),5),-1))",
    "io_inp": [
      3,
      -5,
      -3,
      5,
      5
    ],
    "io_out": [
      49,
      49,
      39,
      9,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(input,5),5),-1))"
  },
  {
    "input": "input : list = [-2, -5, -5, 2, -2]\noutput : list = [5, 5, 2, 2, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([-2, -5, -5, 2, -2])),-1)",
    "io_inp": [
      -2,
      -5,
      -5,
      2,
      -2
    ],
    "io_out": [
      5,
      5,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [2, -5, 4, 3, 1, -5]\noutput : list = [-1, 5, 7, 8, -1, 6]",
    "output": "generated_output : list = add_n(reverse([2, -5, 4, 3, 1, -5]),4)",
    "io_inp": [
      2,
      -5,
      4,
      3,
      1,
      -5
    ],
    "io_out": [
      -1,
      5,
      7,
      8,
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [4, 0, -3, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n(take(sub_n([4, 0, -3, -3],5),2),2)",
    "io_inp": [
      4,
      0,
      -3,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,5),2),2)"
  },
  {
    "input": "input : list = [-1, -5, 0, -4]\noutput : list = [-5, -4, -1, 0]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(sort_asc([-1, -5, 0, -4]),4))),-4)",
    "io_inp": [
      -1,
      -5,
      0,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(sort_asc(input),4))),-4)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(reverse([-4, 0])))),2)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(reverse(input)))),2)"
  },
  {
    "input": "input : list = [5, 5, 4]\noutput : list = [6, 7, 7]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n([5, 5, 4],-1)),-3)))",
    "io_inp": [
      5,
      5,
      4
    ],
    "io_out": [
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n(input,-1)),-3)))"
  },
  {
    "input": "input : list = [-1, -5, 1, 5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(drop([-1, -5, 1, 5],2)),-1))",
    "io_inp": [
      -1,
      -5,
      1,
      5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(drop(input,2)),-1))"
  },
  {
    "input": "input : list = [0, 0, -2, 3]\noutput : list = [-10, -8, -8, -5]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc([0, 0, -2, 3]),5),3))",
    "io_inp": [
      0,
      0,
      -2,
      3
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(input),5),3))"
  },
  {
    "input": "input : list = [-2, 0, 0, -1, 1, 4]\noutput : list = [-24, -15, -12, -12, -9, -6]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(sort_des([-2, 0, 0, -1, 1, 4]),3),1),6),-3)",
    "io_inp": [
      -2,
      0,
      0,
      -1,
      1,
      4
    ],
    "io_out": [
      -24,
      -15,
      -12,
      -12,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(sort_des(input),3),1),6),-3)"
  },
  {
    "input": "input : list = [-3, 5, -3, -1, 1]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(take([-3, 5, -3, -1, 1],1),-1)),3),-2)",
    "io_inp": [
      -3,
      5,
      -3,
      -1,
      1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(take(input,1),-1)),3),-2)"
  },
  {
    "input": "input : list = [1, -1, -4, 3, -2]\noutput : list = [0, -6, -12]",
    "output": "generated_output : list = take(add_n(mul_n(drop(sort_asc([1, -1, -4, 3, -2]),2),-3),-3),30)",
    "io_inp": [
      1,
      -1,
      -4,
      3,
      -2
    ],
    "io_out": [
      0,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(drop(sort_asc(input),2),-3),-3),30)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-9, 3]",
    "output": "generated_output : list = mul_n([3, -1],-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 5, 1, -4, 3, -2]\noutput : list = [-3, -3, -1, 2, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(sub_n([-4, 5, 1, -4, 3, -2],-1),-5))),5)",
    "io_inp": [
      -4,
      5,
      1,
      -4,
      3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -1,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(sub_n(input,-1),-5))),5)"
  },
  {
    "input": "input : list = [-1, 5, 4, -3]\noutput : list = [65, 55, 30, 25]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sub_n([-1, 5, 4, -3],1),4),5),-5))",
    "io_inp": [
      -1,
      5,
      4,
      -3
    ],
    "io_out": [
      65,
      55,
      30,
      25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sub_n(input,1),4),5),-5))"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take([3, -1, 1],1))",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(take(take(sort_des(reverse([-4, -1, -4])),20),1),-2)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(reverse(input)),20),1),-2)"
  },
  {
    "input": "input : list = [-4, -2, 3, -1, 0, -2]\noutput : list = [-17, -9, 11, -5, -1, -9]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(mul_n([-4, -2, 3, -1, 0, -2],-4),-3),-1),23),-2)",
    "io_inp": [
      -4,
      -2,
      3,
      -1,
      0,
      -2
    ],
    "io_out": [
      -17,
      -9,
      11,
      -5,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(mul_n(input,-4),-3),-1),23),-2)"
  },
  {
    "input": "input : list = [-5, 0, -4, 3, 0, -3]\noutput : list = [0, -3, -3, -6, -7, -8]",
    "output": "generated_output : list = add_n(sort_des([-5, 0, -4, 3, 0, -3]),-3)",
    "io_inp": [
      -5,
      0,
      -4,
      3,
      0,
      -3
    ],
    "io_out": [
      0,
      -3,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [1, 4, 2, -1, -5, 5]\noutput : list = [-7, -3, -1, 0, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(sub_n([1, 4, 2, -1, -5, 5],2)))",
    "io_inp": [
      1,
      4,
      2,
      -1,
      -5,
      5
    ],
    "io_out": [
      -7,
      -3,
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-3, -3, 5, -4, -3, -5]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take(sub_n(take(sub_n([-3, -3, 5, -4, -3, -5],1),1),-5),38))",
    "io_inp": [
      -3,
      -3,
      5,
      -4,
      -3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(sub_n(input,1),1),-5),38))"
  },
  {
    "input": "input : list = [5, 4, -2, 2, -2, -2]\noutput : list = [-2, -2, 2, -2, 4, 5]",
    "output": "generated_output : list = reverse([5, 4, -2, 2, -2, -2])",
    "io_inp": [
      5,
      4,
      -2,
      2,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      2,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, 4, 1]\noutput : list = [-4, 20, 11]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(drop([3, -4, 4, 1],1),3),3),3),-4)",
    "io_inp": [
      3,
      -4,
      4,
      1
    ],
    "io_out": [
      -4,
      20,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(drop(input,1),3),3),3),-4)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-6, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(reverse([4, -5]),2)),1))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(reverse(input),2)),1))"
  },
  {
    "input": "input : list = [-2, -2, -4, -4, 5]\noutput : list = [-2, -2, 0, 0, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([-2, -2, -4, -4, 5]),-2))",
    "io_inp": [
      -2,
      -2,
      -4,
      -4,
      5
    ],
    "io_out": [
      -2,
      -2,
      0,
      0,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [1, -4, 0, -3, 4, -3]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(take([1, -4, 0, -3, 4, -3],1))),-5),-5)",
    "io_inp": [
      1,
      -4,
      0,
      -3,
      4,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(take(input,1))),-5),-5)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-10, 14]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(mul_n([4, -2],-4),10),-5)),-1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -10,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(mul_n(input,-4),10),-5)),-1)"
  },
  {
    "input": "input : list = [2, -5, -5, -5]\noutput : list = [8, 1]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(take([2, -5, -5, -5],2)),18),-2),-4)",
    "io_inp": [
      2,
      -5,
      -5,
      -5
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(take(input,2)),18),-2),-4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([-3, -5],-3),4))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-3),4))"
  },
  {
    "input": "input : list = [-3, -2, 1, -3, 3, 1]\noutput : list = [0, 1, 4, 0, 6, 4]",
    "output": "generated_output : list = sub_n([-3, -2, 1, -3, 3, 1],-3)",
    "io_inp": [
      -3,
      -2,
      1,
      -3,
      3,
      1
    ],
    "io_out": [
      0,
      1,
      4,
      0,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des([-4, 0])",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-13, -10]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_des([-4, -3]),-3),-4),-3),1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -13,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_des(input),-3),-4),-3),1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(add_n([-5, -5],5))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(sort_asc([2, 2]))),7))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(sort_asc(input))),7))"
  },
  {
    "input": "input : list = [-1, -4, 5, 5, -5]\noutput : list = [-16, -16, 8, 20, 24]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_des([-1, -4, 5, 5, -5])),1),-4))",
    "io_inp": [
      -1,
      -4,
      5,
      5,
      -5
    ],
    "io_out": [
      -16,
      -16,
      8,
      20,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_des(input)),1),-4))"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [2, -4, 5]",
    "output": "generated_output : list = reverse(reverse([2, -4, 5]))",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      2,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, 3, -1, 3]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(add_n(mul_n(take([5, 3, -1, 3],1),-1),-4),1)",
    "io_inp": [
      5,
      3,
      -1,
      3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(input,1),-1),-4),1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [5, -15]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n([5, 0],-4)),2),3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      5,
      -15
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(input,-4)),2),3)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-6, -3, -1]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(sort_des([-5, 0, -2])),-1)),28)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(sort_des(input)),-1)),28)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [11, 9]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(sub_n([5, 3],1),-4)),3),10)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      11,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(sub_n(input,1),-4)),3),10)"
  },
  {
    "input": "input : list = [4, 3, 3]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(reverse([4, 3, 3]),-3)),-3),1)",
    "io_inp": [
      4,
      3,
      3
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(reverse(input),-3)),-3),1)"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [4, 7, 8]",
    "output": "generated_output : list = add_n(take(sort_asc([4, 3, 0]),15),4)",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),15),4)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = take(sub_n([-3, -3, -1],-1),4)",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),4)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [-20, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(mul_n([1, -4, 1],4),-4),26)))",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      -20,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(mul_n(input,4),-4),26)))"
  },
  {
    "input": "input : list = [-5, 3, -3, -1]\noutput : list = [2, -6]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(take([-5, 3, -3, -1],2)),-1)))",
    "io_inp": [
      -5,
      3,
      -3,
      -1
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(take(input,2)),-1)))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [8, 2]",
    "output": "generated_output : list = sub_n(take(sort_des([5, -1]),12),-3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),12),-3)"
  },
  {
    "input": "input : list = [-4, 1, -2, 2, 1]\noutput : list = [-4, 1, -2]",
    "output": "generated_output : list = take(take([-4, 1, -2, 2, 1],3),4)",
    "io_inp": [
      -4,
      1,
      -2,
      2,
      1
    ],
    "io_out": [
      -4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,3),4)"
  },
  {
    "input": "input : list = [4, -1, 3, -1, 3]\noutput : list = [32, -8, 24]",
    "output": "generated_output : list = mul_n(mul_n(take([4, -1, 3, -1, 3],3),4),2)",
    "io_inp": [
      4,
      -1,
      3,
      -1,
      3
    ],
    "io_out": [
      32,
      -8,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,3),4),2)"
  },
  {
    "input": "input : list = [-5, 1, 0, -4, 4, 5]\noutput : list = [9, 8, 5, 4, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sort_des([-5, 1, 0, -4, 4, 5]),1))),4)",
    "io_inp": [
      -5,
      1,
      0,
      -4,
      4,
      5
    ],
    "io_out": [
      9,
      8,
      5,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sort_des(input),1))),4)"
  },
  {
    "input": "input : list = [1, -4, 1, -4, -5, 2]\noutput : list = [1, 0, 0, -5, -5, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([1, -4, 1, -4, -5, 2],1)))",
    "io_inp": [
      1,
      -4,
      1,
      -4,
      -5,
      2
    ],
    "io_out": [
      1,
      0,
      0,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [2, 11]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(add_n([-2, 1],-2),-3)),1),12)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      2,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(add_n(input,-2),-3)),1),12)"
  },
  {
    "input": "input : list = [-2, -4, 0, -5, -4]\noutput : list = [-20, 0, -16, -8]",
    "output": "generated_output : list = drop(reverse(mul_n([-2, -4, 0, -5, -4],4)),1)",
    "io_inp": [
      -2,
      -4,
      0,
      -5,
      -4
    ],
    "io_out": [
      -20,
      0,
      -16,
      -8
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(input,4)),1)"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [10, 3]",
    "output": "generated_output : list = add_n(sort_des(add_n(drop([-1, -2, 5],1),2)),3)",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      10,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(drop(input,1),2)),3)"
  },
  {
    "input": "input : list = [5, -1, -3, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = drop([5, -1, -3, 2, -2],3)",
    "io_inp": [
      5,
      -1,
      -3,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, 2, 2, 1, 1, 5]\noutput : list = [-3, -15]",
    "output": "generated_output : list = take(mul_n(drop([4, 2, 2, 1, 1, 5],4),-3),18)",
    "io_inp": [
      4,
      2,
      2,
      1,
      1,
      5
    ],
    "io_out": [
      -3,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,4),-3),18)"
  },
  {
    "input": "input : list = [-1, 0, -5, 4, 5]\noutput : list = [5, 4, 0, -1, -5]",
    "output": "generated_output : list = sort_des([-1, 0, -5, 4, 5])",
    "io_inp": [
      -1,
      0,
      -5,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, 1, -2, 0]\noutput : list = [-3, 3, 6, 12, 21]",
    "output": "generated_output : list = take(mul_n(add_n(take(sort_des([3, -5, 1, -2, 0]),16),-2),-3),31)",
    "io_inp": [
      3,
      -5,
      1,
      -2,
      0
    ],
    "io_out": [
      -3,
      3,
      6,
      12,
      21
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(sort_des(input),16),-2),-3),31)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n([1, 2],-1)),-1),-3))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n(input,-1)),-1),-3))"
  },
  {
    "input": "input : list = [-4, -1, 2, -5]\noutput : list = [-4, -3, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(sub_n([-4, -1, 2, -5],-3),-3)),-5))",
    "io_inp": [
      -4,
      -1,
      2,
      -5
    ],
    "io_out": [
      -4,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(sub_n(input,-3),-3)),-5))"
  },
  {
    "input": "input : list = [3, -2, 5, 2, -3]\noutput : list = [1, -1, -2, -6, -7]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(sort_des([3, -2, 5, 2, -3])),-3)),-1)",
    "io_inp": [
      3,
      -2,
      5,
      2,
      -3
    ],
    "io_out": [
      1,
      -1,
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(sort_des(input)),-3)),-1)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-14, 6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sub_n([3, -2],2)),4)),2)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -14,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sub_n(input,2)),4)),2)"
  },
  {
    "input": "input : list = [4, 3, 5, -1]\noutput : list = [-2, 6, 8, 10]",
    "output": "generated_output : list = mul_n(sort_asc([4, 3, 5, -1]),2)",
    "io_inp": [
      4,
      3,
      5,
      -1
    ],
    "io_out": [
      -2,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [12, 12, 3]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sort_asc([-4, -4, -1])))),-3)",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      12,
      12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sort_asc(input)))),-3)"
  },
  {
    "input": "input : list = [1, -4, -3, 3]\noutput : list = [6, 4, 0, -1]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse([1, -4, -3, 3]))),-2),5)",
    "io_inp": [
      1,
      -4,
      -3,
      3
    ],
    "io_out": [
      6,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse(input))),-2),5)"
  },
  {
    "input": "input : list = [-2, 3, -2, -4, 3, 1]\noutput : list = [-11, -11, -7, -1, -1, 3]",
    "output": "generated_output : list = mul_n(add_n(take(mul_n(sort_des([-2, 3, -2, -4, 3, 1]),-2),32),-5),1)",
    "io_inp": [
      -2,
      3,
      -2,
      -4,
      3,
      1
    ],
    "io_out": [
      -11,
      -11,
      -7,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(mul_n(sort_des(input),-2),32),-5),1)"
  },
  {
    "input": "input : list = [-2, 1, -5, -3, -3]\noutput : list = [3, 0, -1, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n([-2, 1, -5, -3, -3],-1),5),-1))",
    "io_inp": [
      -2,
      1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      3,
      0,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(input,-1),5),-1))"
  },
  {
    "input": "input : list = [-5, -2, -2, 1, 0]\noutput : list = [-8, -7, -10, -10, -13]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(reverse([-5, -2, -2, 1, 0]))),3),5)",
    "io_inp": [
      -5,
      -2,
      -2,
      1,
      0
    ],
    "io_out": [
      -8,
      -7,
      -10,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(reverse(input))),3),5)"
  },
  {
    "input": "input : list = [1, 5, 4, 4, 5, -3]\noutput : list = [-3, 5, 4, 4, 5, 1]",
    "output": "generated_output : list = reverse([1, 5, 4, 4, 5, -3])",
    "io_inp": [
      1,
      5,
      4,
      4,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      4,
      4,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1, 5, 4]\noutput : list = [12, -4, -20, -16]",
    "output": "generated_output : list = mul_n([-3, 1, 5, 4],-4)",
    "io_inp": [
      -3,
      1,
      5,
      4
    ],
    "io_out": [
      12,
      -4,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [4, -5, 0, -2, 3, 4]\noutput : list = [1, 6, 10]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(take([4, -5, 0, -2, 3, 4],3),-2),27)),-4)",
    "io_inp": [
      4,
      -5,
      0,
      -2,
      3,
      4
    ],
    "io_out": [
      1,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(take(input,3),-2),27)),-4)"
  },
  {
    "input": "input : list = [4, -3, 1, 3, -2, 5]\noutput : list = [2, 3, 6, 8, 9, 10]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(reverse([4, -3, 1, 3, -2, 5]),25),1),-5))",
    "io_inp": [
      4,
      -3,
      1,
      3,
      -2,
      5
    ],
    "io_out": [
      2,
      3,
      6,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(reverse(input),25),1),-5))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sort_asc([-2, 4])))),39)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sort_asc(input)))),39)"
  },
  {
    "input": "input : list = [-2, 3, -5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(take([-2, 3, -5],1),-3),13)))",
    "io_inp": [
      -2,
      3,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(take(input,1),-3),13)))"
  },
  {
    "input": "input : list = [-4, 5, 4, -4, -3]\noutput : list = [15, 12, -9, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(reverse([-4, 5, 4, -4, -3]),3))",
    "io_inp": [
      -4,
      5,
      4,
      -4,
      -3
    ],
    "io_out": [
      15,
      12,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-4, -5, -3]\noutput : list = [-4, -5, -3]",
    "output": "generated_output : list = reverse(reverse([-4, -5, -3]))",
    "io_inp": [
      -4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, 5, 0, 5]\noutput : list = [0, 4, 9, 9]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc([-4, 5, 0, 5])),14),4))",
    "io_inp": [
      -4,
      5,
      0,
      5
    ],
    "io_out": [
      0,
      4,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc(input)),14),4))"
  },
  {
    "input": "input : list = [1, -1, 0, -2, -2]\noutput : list = [12, 24, 18, 30, 30]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(mul_n([1, -1, 0, -2, -2],3),5),-1),3),-2)",
    "io_inp": [
      1,
      -1,
      0,
      -2,
      -2
    ],
    "io_out": [
      12,
      24,
      18,
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(mul_n(input,3),5),-1),3),-2)"
  },
  {
    "input": "input : list = [-2, 4, 0, -4, 2]\noutput : list = [0, -6]",
    "output": "generated_output : list = add_n(reverse(take(add_n(take([-2, 4, 0, -4, 2],2),-2),24)),-2)",
    "io_inp": [
      -2,
      4,
      0,
      -4,
      2
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(take(input,2),-2),24)),-2)"
  },
  {
    "input": "input : list = [-2, -2, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(mul_n(take([-2, -2, -4],1),3),2)",
    "io_inp": [
      -2,
      -2,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,1),3),2)"
  },
  {
    "input": "input : list = [4, 4, -4, 3, -4]\noutput : list = [-4, -4, 4, -3, 4]",
    "output": "generated_output : list = mul_n([4, 4, -4, 3, -4],-1)",
    "io_inp": [
      4,
      4,
      -4,
      3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, -5, 4, 1, 0]\noutput : list = [0, 10, 15, 20, 45]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sort_des([2, -5, 4, 1, 0])),4),-5))",
    "io_inp": [
      2,
      -5,
      4,
      1,
      0
    ],
    "io_out": [
      0,
      10,
      15,
      20,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sort_des(input)),4),-5))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([0, 1])),3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-1, -4, 1, 4, 2]\noutput : list = [3, 6, 8, 9, 11]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(sort_des([-1, -4, 1, 4, 2])),-4)),3)",
    "io_inp": [
      -1,
      -4,
      1,
      4,
      2
    ],
    "io_out": [
      3,
      6,
      8,
      9,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(sort_des(input)),-4)),3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [1, -7]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n([-3, 5],4))),21)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(input,4))),21)"
  },
  {
    "input": "input : list = [-1, 4, 5, 1, 3]\noutput : list = [13, 11, 15, 14]",
    "output": "generated_output : list = reverse(drop(add_n(add_n([-1, 4, 5, 1, 3],5),5),1))",
    "io_inp": [
      -1,
      4,
      5,
      1,
      3
    ],
    "io_out": [
      13,
      11,
      15,
      14
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(add_n(input,5),5),1))"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [11, 11, -19]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(mul_n([5, 5, -5],3),2),-2)))",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      11,
      11,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(mul_n(input,3),2),-2)))"
  },
  {
    "input": "input : list = [4, -1, 3, 3, -3]\noutput : list = [-3, -1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(drop([4, -1, 3, 3, -3],1))))",
    "io_inp": [
      4,
      -1,
      3,
      3,
      -3
    ],
    "io_out": [
      -3,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(drop(input,1))))"
  },
  {
    "input": "input : list = [2, 3, -3, 1, 0]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(reverse(sort_asc(drop(sort_des([2, 3, -3, 1, 0]),1))),2)",
    "io_inp": [
      2,
      3,
      -3,
      1,
      0
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(drop(sort_des(input),1))),2)"
  },
  {
    "input": "input : list = [-5, -1, 2, 0, 2, 1]\noutput : list = [-25, -5, 10]",
    "output": "generated_output : list = take(mul_n(take([-5, -1, 2, 0, 2, 1],3),5),33)",
    "io_inp": [
      -5,
      -1,
      2,
      0,
      2,
      1
    ],
    "io_out": [
      -25,
      -5,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,3),5),33)"
  },
  {
    "input": "input : list = [-1, 2, -4, -5]\noutput : list = [-30, 6, 42, 54]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(mul_n([-1, 2, -4, -5],-2),2)),-2),3)",
    "io_inp": [
      -1,
      2,
      -4,
      -5
    ],
    "io_out": [
      -30,
      6,
      42,
      54
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(mul_n(input,-2),2)),-2),3)"
  },
  {
    "input": "input : list = [5, 3, 1, -4, -3]\noutput : list = [-16, -12, 4, 12, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc([5, 3, 1, -4, -3])),4)))",
    "io_inp": [
      5,
      3,
      1,
      -4,
      -3
    ],
    "io_out": [
      -16,
      -12,
      4,
      12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-4, 1, -1, 0, -3, 0]\noutput : list = [1, 6, 4, 5, 2, 5]",
    "output": "generated_output : list = sub_n([-4, 1, -1, 0, -3, 0],-5)",
    "io_inp": [
      -4,
      1,
      -1,
      0,
      -3,
      0
    ],
    "io_out": [
      1,
      6,
      4,
      5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, 5, -5, 4, 4]\noutput : list = [-5, 0, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 5, -5, 4, 4])",
    "io_inp": [
      0,
      5,
      -5,
      4,
      4
    ],
    "io_out": [
      -5,
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, -4, -1, -2]\noutput : list = [-4, -2, -1, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse([4, 5, -4, -1, -2])))",
    "io_inp": [
      4,
      5,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-3, -3, -4, 4]\noutput : list = [-8, -8, -10, 6]",
    "output": "generated_output : list = sub_n(mul_n([-3, -3, -4, 4],2),2)",
    "io_inp": [
      -3,
      -3,
      -4,
      4
    ],
    "io_out": [
      -8,
      -8,
      -10,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(reverse([0, -4])))))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [-12, -9, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n([-4, 5, -3],3))))",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      -12,
      -9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(input,3))))"
  },
  {
    "input": "input : list = [-2, -3, -2, 3]\noutput : list = [0, -5, -5, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(sort_des([-2, -3, -2, 3]))),3),12)",
    "io_inp": [
      -2,
      -3,
      -2,
      3
    ],
    "io_out": [
      0,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(sort_des(input))),3),12)"
  },
  {
    "input": "input : list = [5, 2, 1, 1, -1, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(drop([5, 2, 1, 1, -1, -3],4),2)),23))",
    "io_inp": [
      5,
      2,
      1,
      1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(drop(input,4),2)),23))"
  },
  {
    "input": "input : list = [-2, 1, 5, -2]\noutput : list = [-2, -2, 1, 5]",
    "output": "generated_output : list = sort_asc([-2, 1, 5, -2])",
    "io_inp": [
      -2,
      1,
      5,
      -2
    ],
    "io_out": [
      -2,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, -2, 4, -2]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_des([-4, -2, -2, 4, -2]),-5)),1),2)",
    "io_inp": [
      -4,
      -2,
      -2,
      4,
      -2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_des(input),-5)),1),2)"
  },
  {
    "input": "input : list = [1, 1, -4, -2, -3, 4]\noutput : list = [-4, -3, -2, 1, 1, 4]",
    "output": "generated_output : list = sort_asc([1, 1, -4, -2, -3, 4])",
    "io_inp": [
      1,
      1,
      -4,
      -2,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-7, -11]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(reverse([0, -4]),3),4)),20)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -7,
      -11
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(reverse(input),3),4)),20)"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take([-4, -3, 1],1))",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [2, 2, 0]\noutput : list = [0, 2, 2]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des([2, 2, 0]),1)),23)",
    "io_inp": [
      2,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(input),1)),23)"
  },
  {
    "input": "input : list = [-4, 0, 3, 2, 3, -5]\noutput : list = [1, 5, 7, 8, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(sort_des([-4, 0, 3, 2, 3, -5]),5))),5)",
    "io_inp": [
      -4,
      0,
      3,
      2,
      3,
      -5
    ],
    "io_out": [
      1,
      5,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(sort_des(input),5))),5)"
  },
  {
    "input": "input : list = [4, -3, -3, -3, 1, 0]\noutput : list = [10, 5, 25, 25]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(drop([4, -3, -3, -3, 1, 0],2),1)),1),-5)",
    "io_inp": [
      4,
      -3,
      -3,
      -3,
      1,
      0
    ],
    "io_out": [
      10,
      5,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(drop(input,2),1)),1),-5)"
  },
  {
    "input": "input : list = [-3, 4, 2, 3, 2, 5]\noutput : list = [-7, 3, 3, 5, 7, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(reverse([-3, 4, 2, 3, 2, 5]),2)),1))",
    "io_inp": [
      -3,
      4,
      2,
      3,
      2,
      5
    ],
    "io_out": [
      -7,
      3,
      3,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(reverse(input),2)),1))"
  },
  {
    "input": "input : list = [-2, -4, 3]\noutput : list = [-7, -1, 14]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sub_n([-2, -4, 3],-2),3),-1)))",
    "io_inp": [
      -2,
      -4,
      3
    ],
    "io_out": [
      -7,
      -1,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sub_n(input,-2),3),-1)))"
  },
  {
    "input": "input : list = [-5, 3, -5, -4, -3]\noutput : list = [7, 1, 0, -1, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(sort_des([-5, 3, -5, -4, -3]),4))),30)",
    "io_inp": [
      -5,
      3,
      -5,
      -4,
      -3
    ],
    "io_out": [
      7,
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(sort_des(input),4))),30)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [400, 400]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(mul_n([-4, -4],4),-5),10)),5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      400,
      400
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(mul_n(input,4),-5),10)),5)"
  },
  {
    "input": "input : list = [-1, -4, 2, 0]\noutput : list = [5, 7, 1, 4]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(sub_n([-1, -4, 2, 0],-4),-5),-2),-2))",
    "io_inp": [
      -1,
      -4,
      2,
      0
    ],
    "io_out": [
      5,
      7,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(sub_n(input,-4),-5),-2),-2))"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [9, -18, 6]",
    "output": "generated_output : list = mul_n(add_n([-4, 5, -3],1),-3)",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      9,
      -18,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-3)"
  },
  {
    "input": "input : list = [3, -2, -4, -1]\noutput : list = [-8]",
    "output": "generated_output : list = take(take(drop(add_n(mul_n([3, -2, -4, -1],4),-4),3),27),12)",
    "io_inp": [
      3,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(take(drop(add_n(mul_n(input,4),-4),3),27),12)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(add_n([5, 4],-1),5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [-2, -4, -5, -1, -2]\noutput : list = [-5, -4, -2, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([-2, -4, -5, -1, -2])))",
    "io_inp": [
      -2,
      -4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-3, -3, 0, -5, -5, -5]\noutput : list = [-15, -15, -15, -9, -9, 0]",
    "output": "generated_output : list = mul_n(sort_asc([-3, -3, 0, -5, -5, -5]),3)",
    "io_inp": [
      -3,
      -3,
      0,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -15,
      -15,
      -15,
      -9,
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-5, -5, 0, -3, 0]\noutput : list = [5, -5, -20, -20]",
    "output": "generated_output : list = sort_des(take(drop(mul_n(add_n([-5, -5, 0, -3, 0],4),-5),1),28))",
    "io_inp": [
      -5,
      -5,
      0,
      -3,
      0
    ],
    "io_out": [
      5,
      -5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(mul_n(add_n(input,4),-5),1),28))"
  },
  {
    "input": "input : list = [-3, 1, 0, 5, 4, -5]\noutput : list = [5, 4, 1, 0, -3, -5]",
    "output": "generated_output : list = take(sort_des([-3, 1, 0, 5, 4, -5]),20)",
    "io_inp": [
      -3,
      1,
      0,
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      1,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),20)"
  },
  {
    "input": "input : list = [3, -2, 2, 2]\noutput : list = [1]",
    "output": "generated_output : list = add_n(take([3, -2, 2, 2],1),-2)",
    "io_inp": [
      3,
      -2,
      2,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-4, 3, 1, -2]\noutput : list = [-1, 1, 4, 6]",
    "output": "generated_output : list = take(reverse(add_n(take(sort_des([-4, 3, 1, -2]),8),3)),34)",
    "io_inp": [
      -4,
      3,
      1,
      -2
    ],
    "io_out": [
      -1,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sort_des(input),8),3)),34)"
  },
  {
    "input": "input : list = [-2, 3, 3, -3, -2, 0]\noutput : list = [-2, -5, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(drop([-2, 3, 3, -3, -2, 0],2),-1),15)),-4)",
    "io_inp": [
      -2,
      3,
      3,
      -3,
      -2,
      0
    ],
    "io_out": [
      -2,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(drop(input,2),-1),15)),-4)"
  },
  {
    "input": "input : list = [0, -3, 1, -5, 3]\noutput : list = [4, 6, 9, 10, 12]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(add_n([0, -3, 1, -5, 3],4),3))),2)",
    "io_inp": [
      0,
      -3,
      1,
      -5,
      3
    ],
    "io_out": [
      4,
      6,
      9,
      10,
      12
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(add_n(input,4),3))),2)"
  },
  {
    "input": "input : list = [-5, -2, 4, 3, 0]\noutput : list = [0, 3, 4, -2, -5]",
    "output": "generated_output : list = reverse([-5, -2, 4, 3, 0])",
    "io_inp": [
      -5,
      -2,
      4,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, 2, -4, 3]\noutput : list = [0, -1, -3, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des([0, -4, 2, -4, 3]),-4)),-1)",
    "io_inp": [
      0,
      -4,
      2,
      -4,
      3
    ],
    "io_out": [
      0,
      -1,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(input),-4)),-1)"
  },
  {
    "input": "input : list = [5, 2, -2, -5, 4, 1]\noutput : list = [15, 12, 6, 3, -6, -15]",
    "output": "generated_output : list = sort_des(mul_n([5, 2, -2, -5, 4, 1],3))",
    "io_inp": [
      5,
      2,
      -2,
      -5,
      4,
      1
    ],
    "io_out": [
      15,
      12,
      6,
      3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [-1, 1, 4, -5, -4, -2]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = take([-1, 1, 4, -5, -4, -2],3)",
    "io_inp": [
      -1,
      1,
      4,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, 2, 0, -4, -1]\noutput : list = [-4, -5, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(drop([4, 2, 0, -4, -1],2)),4)),20)",
    "io_inp": [
      4,
      2,
      0,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(drop(input,2)),4)),20)"
  },
  {
    "input": "input : list = [2, -1, -3]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = sub_n(take(add_n(take(sort_asc([2, -1, -3]),13),-3),7),-5)",
    "io_inp": [
      2,
      -1,
      -3
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sort_asc(input),13),-3),7),-5)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [3, 1, 1]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sort_asc([3, 1, 1]),6))))",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sort_asc(input),6))))"
  },
  {
    "input": "input : list = [0, 4, 2, 2, -4, 3]\noutput : list = [3, -4, 2, 2]",
    "output": "generated_output : list = reverse(drop([0, 4, 2, 2, -4, 3],2))",
    "io_inp": [
      0,
      4,
      2,
      2,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 2, 1, -2, -1, 1]\noutput : list = [0, -2, -3, 0, 1, -3]",
    "output": "generated_output : list = take(add_n(take(sub_n(reverse([-2, 2, 1, -2, -1, 1]),-3),36),-4),47)",
    "io_inp": [
      -2,
      2,
      1,
      -2,
      -1,
      1
    ],
    "io_out": [
      0,
      -2,
      -3,
      0,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(reverse(input),-3),36),-4),47)"
  },
  {
    "input": "input : list = [4, 4, 5, 5, -1, 1]\noutput : list = [8, 8, 7, 7, 4, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_asc([4, 4, 5, 5, -1, 1]),5)),1),-1)",
    "io_inp": [
      4,
      4,
      5,
      5,
      -1,
      1
    ],
    "io_out": [
      8,
      8,
      7,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_asc(input),5)),1),-1)"
  },
  {
    "input": "input : list = [-5, -3, 3, 3, 5]\noutput : list = [-7, -5, 1, 1, 3]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(add_n([-5, -3, 3, 3, 5],-3)),1)),44)",
    "io_inp": [
      -5,
      -3,
      3,
      3,
      5
    ],
    "io_out": [
      -7,
      -5,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(add_n(input,-3)),1)),44)"
  },
  {
    "input": "input : list = [-2, -4, -5]\noutput : list = [-6, -5, -3]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(sub_n([-2, -4, -5],-2),-1),-4)))",
    "io_inp": [
      -2,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(sub_n(input,-2),-1),-4)))"
  },
  {
    "input": "input : list = [4, 4, -5, -2, -2, -4]\noutput : list = [-5, -4, -2, -2, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([4, 4, -5, -2, -2, -4])))",
    "io_inp": [
      4,
      4,
      -5,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, 0, -4, -4, -5, -5]\noutput : list = [-30, -30, -25, -25, -5, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(mul_n([1, 0, -4, -4, -5, -5],5)))),-5)",
    "io_inp": [
      1,
      0,
      -4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -30,
      -30,
      -25,
      -25,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(mul_n(input,5)))),-5)"
  },
  {
    "input": "input : list = [-3, 0, 3, 5]\noutput : list = [10, 8, 5, 2]",
    "output": "generated_output : list = sort_des(add_n(take(take(add_n([-3, 0, 3, 5],4),9),6),1))",
    "io_inp": [
      -3,
      0,
      3,
      5
    ],
    "io_out": [
      10,
      8,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(add_n(input,4),9),6),1))"
  },
  {
    "input": "input : list = [-3, 2, -1, -1]\noutput : list = [-14, -14]",
    "output": "generated_output : list = add_n(mul_n(mul_n(drop([-3, 2, -1, -1],2),-5),-2),-4)",
    "io_inp": [
      -3,
      2,
      -1,
      -1
    ],
    "io_out": [
      -14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(drop(input,2),-5),-2),-4)"
  },
  {
    "input": "input : list = [3, -2, -2, 2, 5, -4]\noutput : list = [-3, -3, 2]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(mul_n([3, -2, -2, 2, 5, -4],1),-3),3),-4))",
    "io_inp": [
      3,
      -2,
      -2,
      2,
      5,
      -4
    ],
    "io_out": [
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(mul_n(input,1),-3),3),-4))"
  },
  {
    "input": "input : list = [-2, -1, -1, 5, -1, -5]\noutput : list = [2, -4, -8]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(drop([-2, -1, -1, 5, -1, -5],3),2),5)))",
    "io_inp": [
      -2,
      -1,
      -1,
      5,
      -1,
      -5
    ],
    "io_out": [
      2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(drop(input,3),2),5)))"
  },
  {
    "input": "input : list = [5, -2, 3, 5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(mul_n(drop([5, -2, 3, 5, 4],3),1))",
    "io_inp": [
      5,
      -2,
      3,
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,3),1))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [15, 0]",
    "output": "generated_output : list = mul_n(sort_des([3, 0]),5)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc([4, 0, 1]))",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -2, 1, -4, -2]\noutput : list = [2, 1, -2, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(add_n([2, -2, 1, -4, -2],1)),4)),-3)",
    "io_inp": [
      2,
      -2,
      1,
      -4,
      -2
    ],
    "io_out": [
      2,
      1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(add_n(input,1)),4)),-3)"
  },
  {
    "input": "input : list = [-2, 5, 1, -3, 3, -5]\noutput : list = [14, 12, 10, 7, 6, 4]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(reverse(sub_n([-2, 5, 1, -3, 3, -5],-4)),5)))",
    "io_inp": [
      -2,
      5,
      1,
      -3,
      3,
      -5
    ],
    "io_out": [
      14,
      12,
      10,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(reverse(sub_n(input,-4)),5)))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(sort_des(reverse([5, 1])))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [5, 4, -2, 1, 0]\noutput : list = [-2, 0, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc([5, 4, -2, 1, 0]),7))",
    "io_inp": [
      5,
      4,
      -2,
      1,
      0
    ],
    "io_out": [
      -2,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),7))"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = drop([0, -4, -4],1)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 0, -5, -3]\noutput : list = [-4, -2, 1, 6]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(reverse([5, 0, -5, -3]),4),5),22))",
    "io_inp": [
      5,
      0,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -2,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(reverse(input),4),5),22))"
  },
  {
    "input": "input : list = [-3, 1, 1, -5, 0]\noutput : list = [-6, -11, -5, -5, -9]",
    "output": "generated_output : list = sub_n(reverse(sub_n([-3, 1, 1, -5, 0],1)),5)",
    "io_inp": [
      -3,
      1,
      1,
      -5,
      0
    ],
    "io_out": [
      -6,
      -11,
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,1)),5)"
  },
  {
    "input": "input : list = [-1, -1, 2, 5]\noutput : list = [5, 2, -1, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(sort_asc([-1, -1, 2, 5])))),24)",
    "io_inp": [
      -1,
      -1,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(sort_asc(input)))),24)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [2, 5, 6]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sub_n([1, -3, 0],-1)),1),4))",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sub_n(input,-1)),1),4))"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [20, 8, -16]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(mul_n([4, -5, -2],1)))),-4)",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      20,
      8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(mul_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [-5, 0, -5, 2, 4, 2]\noutput : list = [15, 0, -6, -6, -12]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(drop([-5, 0, -5, 2, 4, 2],1)),-3)))",
    "io_inp": [
      -5,
      0,
      -5,
      2,
      4,
      2
    ],
    "io_out": [
      15,
      0,
      -6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(drop(input,1)),-3)))"
  },
  {
    "input": "input : list = [-4, -4, 2, -2, -3]\noutput : list = [12, 12, 9, 6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(mul_n([-4, -4, 2, -2, -3],-3)))))",
    "io_inp": [
      -4,
      -4,
      2,
      -2,
      -3
    ],
    "io_out": [
      12,
      12,
      9,
      6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [0, 0, -4, 4]\noutput : list = [0, 0, -20, 20]",
    "output": "generated_output : list = mul_n([0, 0, -4, 4],5)",
    "io_inp": [
      0,
      0,
      -4,
      4
    ],
    "io_out": [
      0,
      0,
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, 0, -5, 4, -4]\noutput : list = [-11, -6, -11, -2, -10]",
    "output": "generated_output : list = add_n(sub_n([-5, 0, -5, 4, -4],1),-5)",
    "io_inp": [
      -5,
      0,
      -5,
      4,
      -4
    ],
    "io_out": [
      -11,
      -6,
      -11,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [5, 7, 11]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(sub_n([-5, -3, 1],-4),7),2),-5),-3)",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      5,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(sub_n(input,-4),7),2),-5),-3)"
  },
  {
    "input": "input : list = [-3, 0, 5, -2]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take([-3, 0, 5, -2],1)),2))",
    "io_inp": [
      -3,
      0,
      5,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(input,1)),2))"
  },
  {
    "input": "input : list = [-4, 2, -1, 0, 3, 4]\noutput : list = [3, 2, 1, -1, -2, -5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-4, 2, -1, 0, 3, 4],1)),1)",
    "io_inp": [
      -4,
      2,
      -1,
      0,
      3,
      4
    ],
    "io_out": [
      3,
      2,
      1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,1)),1)"
  },
  {
    "input": "input : list = [-3, -5, 3]\noutput : list = [24, 18, 0]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(sub_n([-3, -5, 3],2),-5),4),-3))",
    "io_inp": [
      -3,
      -5,
      3
    ],
    "io_out": [
      24,
      18,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(sub_n(input,2),-5),4),-3))"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [-5, -1, -1]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(add_n([1, 1, 5],-1),-1))),-1)",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(add_n(input,-1),-1))),-1)"
  },
  {
    "input": "input : list = [2, 0, 0, 3]\noutput : list = [0, 0, -10, -15]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n([2, 0, 0, 3],-5)))))",
    "io_inp": [
      2,
      0,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [-5, 3, -5, -2]\noutput : list = [0, 8, 0, 3]",
    "output": "generated_output : list = take(sub_n([-5, 3, -5, -2],-5),12)",
    "io_inp": [
      -5,
      3,
      -5,
      -2
    ],
    "io_out": [
      0,
      8,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),12)"
  },
  {
    "input": "input : list = [-5, 0, -1, 2, -1]\noutput : list = [-5, -1, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, 0, -1, 2, -1]))",
    "io_inp": [
      -5,
      0,
      -1,
      2,
      -1
    ],
    "io_out": [
      -5,
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 0, 2, 5, 0]\noutput : list = [-2, -2, 0, 1, 3]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(sort_des([3, 0, 2, 5, 0])),-5),-3),16)",
    "io_inp": [
      3,
      0,
      2,
      5,
      0
    ],
    "io_out": [
      -2,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(sort_des(input)),-5),-3),16)"
  },
  {
    "input": "input : list = [2, 5, -2, -3, 3, 3]\noutput : list = [-7, -7, 23, 18, -17, -2]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(mul_n([2, 5, -2, -3, 3, 3],-5),-3),-5),42))",
    "io_inp": [
      2,
      5,
      -2,
      -3,
      3,
      3
    ],
    "io_out": [
      -7,
      -7,
      23,
      18,
      -17,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(mul_n(input,-5),-3),-5),42))"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take([3, -4, 5],1)))))",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [5, 4, 2, 5]\noutput : list = [-25, -25, -20, -10]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sort_des([5, 4, 2, 5]),9)),-5))",
    "io_inp": [
      5,
      4,
      2,
      5
    ],
    "io_out": [
      -25,
      -25,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sort_des(input),9)),-5))"
  },
  {
    "input": "input : list = [3, 1, 3, -1]\noutput : list = [-71, -71, -21, 29]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(mul_n([3, 1, 3, -1],5),-5),-4)))",
    "io_inp": [
      3,
      1,
      3,
      -1
    ],
    "io_out": [
      -71,
      -71,
      -21,
      29
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(mul_n(input,5),-5),-4)))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [6, 3]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(sub_n([1, 4],-2))),31))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(sub_n(input,-2))),31))"
  },
  {
    "input": "input : list = [3, 1, -5, -2]\noutput : list = [2, 0, -3, -6]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n([3, 1, -5, -2],-1)))))",
    "io_inp": [
      3,
      1,
      -5,
      -2
    ],
    "io_out": [
      2,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [2, -5, -2]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = sort_des([2, -5, -2])",
    "io_inp": [
      2,
      -5,
      -2
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0, -3, 4, -1, 2]\noutput : list = [5, 15, 0, 35, 10, 25]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n([-2, 0, -3, 4, -1, 2],-2),4),-1),5)",
    "io_inp": [
      -2,
      0,
      -3,
      4,
      -1,
      2
    ],
    "io_out": [
      5,
      15,
      0,
      35,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(input,-2),4),-1),5)"
  },
  {
    "input": "input : list = [-4, -5, 1, -3]\noutput : list = [96, 120]",
    "output": "generated_output : list = mul_n(mul_n(take(mul_n(take([-4, -5, 1, -3],2),-3),25),2),4)",
    "io_inp": [
      -4,
      -5,
      1,
      -3
    ],
    "io_out": [
      96,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(mul_n(take(input,2),-3),25),2),4)"
  },
  {
    "input": "input : list = [-4, 2, -2, -5]\noutput : list = [-5, -4, -2, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(reverse([-4, 2, -2, -5])))))",
    "io_inp": [
      -4,
      2,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-6, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(add_n([-5, 5],2)))),-3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(add_n(input,2)))),-3)"
  },
  {
    "input": "input : list = [5, 4, 0]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc([5, 4, 0]),3)",
    "io_inp": [
      5,
      4,
      0
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [2, 5, -4, 2, -1]\noutput : list = [-7, -1, -4]",
    "output": "generated_output : list = take(add_n(take(drop(sub_n([2, 5, -4, 2, -1],-1),2),12),-4),41)",
    "io_inp": [
      2,
      5,
      -4,
      2,
      -1
    ],
    "io_out": [
      -7,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(drop(sub_n(input,-1),2),12),-4),41)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [2, 0, 4]",
    "output": "generated_output : list = take(add_n(sub_n([3, 1, 5],3),2),12)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,3),2),12)"
  },
  {
    "input": "input : list = [5, 4, -4]\noutput : list = [-21, -17, 15]",
    "output": "generated_output : list = take(sub_n(mul_n([5, 4, -4],-4),1),21)",
    "io_inp": [
      5,
      4,
      -4
    ],
    "io_out": [
      -21,
      -17,
      15
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,-4),1),21)"
  },
  {
    "input": "input : list = [-1, -4, 0, 5]\noutput : list = [8, 3, 2, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([-1, -4, 0, 5])),3)",
    "io_inp": [
      -1,
      -4,
      0,
      5
    ],
    "io_out": [
      8,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [0, -5, 0, 0]\noutput : list = [-11, -11, -11, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(add_n([0, -5, 0, 0],2),-4)),-3))",
    "io_inp": [
      0,
      -5,
      0,
      0
    ],
    "io_out": [
      -11,
      -11,
      -11,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(add_n(input,2),-4)),-3))"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(take([-1, 5, -1],1)),-4)))",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(take(input,1)),-4)))"
  },
  {
    "input": "input : list = [0, 3, -2, -3, 2, 2]\noutput : list = [-1, -5, -13, -21, -21, -25]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(sub_n([0, 3, -2, -3, 2, 2],-3),-4)),-1))",
    "io_inp": [
      0,
      3,
      -2,
      -3,
      2,
      2
    ],
    "io_out": [
      -1,
      -5,
      -13,
      -21,
      -21,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(sub_n(input,-3),-4)),-1))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [18, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n([2, 5],-4),-2))),-1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      18,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n(input,-4),-2))),-1)"
  },
  {
    "input": "input : list = [2, 0, -2, 3, 3]\noutput : list = [-11, -11, 14, 4, -6]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(mul_n([2, 0, -2, 3, 3],-5)),-4),6),1)",
    "io_inp": [
      2,
      0,
      -2,
      3,
      3
    ],
    "io_out": [
      -11,
      -11,
      14,
      4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(mul_n(input,-5)),-4),6),1)"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [4, 6, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(reverse([-1, 1, 3]))),-5))",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(reverse(input))),-5))"
  },
  {
    "input": "input : list = [-5, 2, -3, 5]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(take([-5, 2, -3, 5],1)),-3)),1)",
    "io_inp": [
      -5,
      2,
      -3,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(take(input,1)),-3)),1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [24, 6]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(mul_n([-4, -1],-1)),2),12),3)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      24,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(mul_n(input,-1)),2),12),3)"
  },
  {
    "input": "input : list = [0, 5, -3, -3]\noutput : list = [-3, -3, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sort_des([0, 5, -3, -3])))))",
    "io_inp": [
      0,
      5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, 0, -1, -5, -2]\noutput : list = [15, 6, 3, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(mul_n([0, 0, -1, -5, -2],-3)))))",
    "io_inp": [
      0,
      0,
      -1,
      -5,
      -2
    ],
    "io_out": [
      15,
      6,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [4, 5, 1, -5]\noutput : list = [41, 17, 5, 1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(reverse([4, 5, 1, -5]),5)),-4),1)",
    "io_inp": [
      4,
      5,
      1,
      -5
    ],
    "io_out": [
      41,
      17,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(reverse(input),5)),-4),1)"
  },
  {
    "input": "input : list = [2, -5, 3, 2, 3, -2]\noutput : list = [22, 10, -6, -6, -10, -10]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(reverse([2, -5, 3, 2, 3, -2]),9)),-4),2)",
    "io_inp": [
      2,
      -5,
      3,
      2,
      3,
      -2
    ],
    "io_out": [
      22,
      10,
      -6,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(reverse(input),9)),-4),2)"
  },
  {
    "input": "input : list = [-1, -2, -3, -1, 2]\noutput : list = [4, 1, -1, 0, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(add_n([-1, -2, -3, -1, 2],-1),4),-4)),-3)",
    "io_inp": [
      -1,
      -2,
      -3,
      -1,
      2
    ],
    "io_out": [
      4,
      1,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(add_n(input,-1),4),-4)),-3)"
  },
  {
    "input": "input : list = [0, 5, 0, 4, 4]\noutput : list = [-4, 1, -4, 0, 0]",
    "output": "generated_output : list = take(sub_n(sub_n([0, 5, 0, 4, 4],3),1),9)",
    "io_inp": [
      0,
      5,
      0,
      4,
      4
    ],
    "io_out": [
      -4,
      1,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,3),1),9)"
  },
  {
    "input": "input : list = [-5, -5, 3, -1, -2]\noutput : list = [4, 4, 7, 8, 12]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_des([-5, -5, 3, -1, -2])),-5),-4))",
    "io_inp": [
      -5,
      -5,
      3,
      -1,
      -2
    ],
    "io_out": [
      4,
      4,
      7,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_des(input)),-5),-4))"
  },
  {
    "input": "input : list = [-1, -3, 0, -1, 5, -5]\noutput : list = [-5, -3, -1, -1, 0, 5]",
    "output": "generated_output : list = sort_asc([-1, -3, 0, -1, 5, -5])",
    "io_inp": [
      -1,
      -3,
      0,
      -1,
      5,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop([-3, -4, 4],1)))),4)",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop(input,1)))),4)"
  },
  {
    "input": "input : list = [-5, 5, -5, 4, 1, 2]\noutput : list = [-8, 2, -8, 1, -2, -1]",
    "output": "generated_output : list = add_n([-5, 5, -5, 4, 1, 2],-3)",
    "io_inp": [
      -5,
      5,
      -5,
      4,
      1,
      2
    ],
    "io_out": [
      -8,
      2,
      -8,
      1,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 2, -2, 3]\noutput : list = [8, 4, -4, -6]",
    "output": "generated_output : list = mul_n(sort_asc([-4, 2, -2, 3]),-2)",
    "io_inp": [
      -4,
      2,
      -2,
      3
    ],
    "io_out": [
      8,
      4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [12, 7, -28]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(mul_n([-3, 5, -2],-5)),-3)))",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      12,
      7,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(mul_n(input,-5)),-3)))"
  },
  {
    "input": "input : list = [4, -1, 2, -3]\noutput : list = [-12, -6, 3, 9]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n([4, -1, 2, -3],3)),-3))",
    "io_inp": [
      4,
      -1,
      2,
      -3
    ],
    "io_out": [
      -12,
      -6,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(input,3)),-3))"
  },
  {
    "input": "input : list = [-4, -1, -3, -2, 1, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(take([-4, -1, -3, -2, 1, 3],1),4),35),-4))",
    "io_inp": [
      -4,
      -1,
      -3,
      -2,
      1,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(take(input,1),4),35),-4))"
  },
  {
    "input": "input : list = [5, -3, 4, -1, 4, -5]\noutput : list = [-3, -1, 4, 4, 5]",
    "output": "generated_output : list = reverse(reverse(take(drop(sort_asc([5, -3, 4, -1, 4, -5]),1),7)))",
    "io_inp": [
      5,
      -3,
      4,
      -1,
      4,
      -5
    ],
    "io_out": [
      -3,
      -1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(drop(sort_asc(input),1),7)))"
  },
  {
    "input": "input : list = [-3, 0, 1, 0]\noutput : list = [7, 6, 6, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-3, 0, 1, 0]),1),-5)",
    "io_inp": [
      -3,
      0,
      1,
      0
    ],
    "io_out": [
      7,
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),1),-5)"
  },
  {
    "input": "input : list = [2, -4, 5, -1, 0]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(drop([2, -4, 5, -1, 0],1)),2),3))",
    "io_inp": [
      2,
      -4,
      5,
      -1,
      0
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(drop(input,1)),2),3))"
  },
  {
    "input": "input : list = [4, 0, 5, 2]\noutput : list = [3, 5, 7, 8]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(sub_n([4, 0, 5, 2],-3)))),37)",
    "io_inp": [
      4,
      0,
      5,
      2
    ],
    "io_out": [
      3,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(sub_n(input,-3)))),37)"
  },
  {
    "input": "input : list = [-1, -2, -3, 4, 5]\noutput : list = [9, 8, 3, 2, 1]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(sort_des([-1, -2, -3, 4, 5])),1),3))",
    "io_inp": [
      -1,
      -2,
      -3,
      4,
      5
    ],
    "io_out": [
      9,
      8,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(sort_des(input)),1),3))"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [-3, -1, 5]",
    "output": "generated_output : list = reverse(take(add_n(reverse(sub_n([-3, -1, 5],1)),1),14))",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(sub_n(input,1)),1),14))"
  },
  {
    "input": "input : list = [-4, 5, 4, -5, -2]\noutput : list = [-5, -14, 13, 16, -11]",
    "output": "generated_output : list = reverse(add_n(mul_n([-4, 5, 4, -5, -2],3),1))",
    "io_inp": [
      -4,
      5,
      4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -14,
      13,
      16,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,3),1))"
  },
  {
    "input": "input : list = [3, -5, -1, 3, -5]\noutput : list = [0, 0, 4, 8, 8]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(sort_des([3, -5, -1, 3, -5]),-5)),27))",
    "io_inp": [
      3,
      -5,
      -1,
      3,
      -5
    ],
    "io_out": [
      0,
      0,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(sort_des(input),-5)),27))"
  },
  {
    "input": "input : list = [0, -1, -1, -4, -5, 3]\noutput : list = [-12, -8, 4, 4, 8, 20]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(add_n([0, -1, -1, -4, -5, 3],2),4)),36),47)",
    "io_inp": [
      0,
      -1,
      -1,
      -4,
      -5,
      3
    ],
    "io_out": [
      -12,
      -8,
      4,
      4,
      8,
      20
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(add_n(input,2),4)),36),47)"
  },
  {
    "input": "input : list = [0, 1, 3, -2]\noutput : list = [-7, -5, -4, -2]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(sub_n([0, 1, 3, -2],5))),18))",
    "io_inp": [
      0,
      1,
      3,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(sub_n(input,5))),18))"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [-15, -23, -23]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sub_n([5, 5, 3],-2),-4),1)),-5)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      -15,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sub_n(input,-2),-4),1)),-5)"
  },
  {
    "input": "input : list = [-3, -1, -2, -4, -5, -2]\noutput : list = [-13, -3, -8, -18]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(take([-3, -1, -2, -4, -5, -2],4),5),31),-2),4)",
    "io_inp": [
      -3,
      -1,
      -2,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -13,
      -3,
      -8,
      -18
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(take(input,4),5),31),-2),4)"
  },
  {
    "input": "input : list = [3, 2, -3, 2, -4, 1]\noutput : list = [-2, -7, -1, -6, -1, 0]",
    "output": "generated_output : list = sub_n(reverse([3, 2, -3, 2, -4, 1]),3)",
    "io_inp": [
      3,
      2,
      -3,
      2,
      -4,
      1
    ],
    "io_out": [
      -2,
      -7,
      -1,
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-4, -8]",
    "output": "generated_output : list = add_n([-1, -5],-3)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -5, -3, 1, 3]\noutput : list = [6, 4, 0, -2, -1]",
    "output": "generated_output : list = reverse(add_n(take(add_n(sub_n([-4, -5, -3, 1, 3],4),2),9),5))",
    "io_inp": [
      -4,
      -5,
      -3,
      1,
      3
    ],
    "io_out": [
      6,
      4,
      0,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(sub_n(input,4),2),9),5))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [15, -25]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-3, 5]),2),5)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),2),5)"
  },
  {
    "input": "input : list = [1, -1, -3, -3, 0, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = add_n(take(drop([1, -1, -3, -3, 0, -2],4),8),-3)",
    "io_inp": [
      1,
      -1,
      -3,
      -3,
      0,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,4),8),-3)"
  },
  {
    "input": "input : list = [0, -1, -5, -5]\noutput : list = [-1, -2, -6, -6]",
    "output": "generated_output : list = take(sort_des(take(sub_n(sort_asc([0, -1, -5, -5]),1),28)),39)",
    "io_inp": [
      0,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(sort_asc(input),1),28)),39)"
  },
  {
    "input": "input : list = [-2, 4, -1, -3, 2]\noutput : list = [4, 2, -1, -2, -3]",
    "output": "generated_output : list = sort_des([-2, 4, -1, -3, 2])",
    "io_inp": [
      -2,
      4,
      -1,
      -3,
      2
    ],
    "io_out": [
      4,
      2,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, -4, 5]\noutput : list = [42, 62, 62, -28]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(mul_n([-2, -4, -4, 5],-2),2),-2),5),2)",
    "io_inp": [
      -2,
      -4,
      -4,
      5
    ],
    "io_out": [
      42,
      62,
      62,
      -28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(mul_n(input,-2),2),-2),5),2)"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [-3, 5, -1]",
    "output": "generated_output : list = add_n([-4, 4, -2],1)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      -3,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, 3, 0, 0, -2]\noutput : list = [5, -5, -5, -20, -5]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(sub_n([0, 3, 0, 0, -2],-1),-5)),-1),1)",
    "io_inp": [
      0,
      3,
      0,
      0,
      -2
    ],
    "io_out": [
      5,
      -5,
      -5,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(sub_n(input,-1),-5)),-1),1)"
  },
  {
    "input": "input : list = [3, -2, 2, 3]\noutput : list = [3, 2, -2, 3]",
    "output": "generated_output : list = take(take(reverse([3, -2, 2, 3]),14),15)",
    "io_inp": [
      3,
      -2,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),14),15)"
  },
  {
    "input": "input : list = [2, 5, -2, -1, 2, -3]\noutput : list = [4, 1, 1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n([2, 5, -2, -1, 2, -3],2),4)),-1))",
    "io_inp": [
      2,
      5,
      -2,
      -1,
      2,
      -3
    ],
    "io_out": [
      4,
      1,
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n(input,2),4)),-1))"
  },
  {
    "input": "input : list = [4, 2, 0, -3, -3, 1]\noutput : list = [-40, -30, -25, -20, -5, -5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(add_n([4, 2, 0, -3, -3, 1],5),-1),-5)))",
    "io_inp": [
      4,
      2,
      0,
      -3,
      -3,
      1
    ],
    "io_out": [
      -40,
      -30,
      -25,
      -20,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(add_n(input,5),-1),-5)))"
  },
  {
    "input": "input : list = [-4, -1, 5, 0]\noutput : list = [1, -24]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(drop([-4, -1, 5, 0],2),1)),-5),-1)",
    "io_inp": [
      -4,
      -1,
      5,
      0
    ],
    "io_out": [
      1,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(drop(input,2),1)),-5),-1)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [1, -3]",
    "output": "generated_output : list = drop(sub_n(sort_des(mul_n(sort_asc([-5, -1, 2]),1)),-2),1)",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = drop(sub_n(sort_des(mul_n(sort_asc(input),1)),-2),1)"
  },
  {
    "input": "input : list = [-3, 3, 5, -1, 4]\noutput : list = [9, 8, 3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(drop([-3, 3, 5, -1, 4],2)),4)))",
    "io_inp": [
      -3,
      3,
      5,
      -1,
      4
    ],
    "io_out": [
      9,
      8,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(drop(input,2)),4)))"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(take(take([2, 3, -1],1),9),5))",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(input,1),9),5))"
  },
  {
    "input": "input : list = [-5, 3, 2, 1, 3, -3]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(drop([-5, 3, 2, 1, 3, -3],4),3),1))",
    "io_inp": [
      -5,
      3,
      2,
      1,
      3,
      -3
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(drop(input,4),3),1))"
  },
  {
    "input": "input : list = [0, 1, 5, 2, 3, -3]\noutput : list = [0, -15, -75]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(take([0, 1, 5, 2, 3, -3],3),-5),15)),3)",
    "io_inp": [
      0,
      1,
      5,
      2,
      3,
      -3
    ],
    "io_out": [
      0,
      -15,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(take(input,3),-5),15)),3)"
  },
  {
    "input": "input : list = [-5, -4, 2, -1, -5]\noutput : list = [10, -5, -20, -25, -25]",
    "output": "generated_output : list = take(sort_des(mul_n([-5, -4, 2, -1, -5],5)),31)",
    "io_inp": [
      -5,
      -4,
      2,
      -1,
      -5
    ],
    "io_out": [
      10,
      -5,
      -20,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,5)),31)"
  },
  {
    "input": "input : list = [3, 4, 5]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 4, 5],1)",
    "io_inp": [
      3,
      4,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -2, 4, -3, 0]\noutput : list = [-2, -3, -6, -8, -9]",
    "output": "generated_output : list = sub_n(sort_des(add_n(take(sub_n([3, -2, 4, -3, 0],5),11),-2)),-1)",
    "io_inp": [
      3,
      -2,
      4,
      -3,
      0
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(take(sub_n(input,5),11),-2)),-1)"
  },
  {
    "input": "input : list = [-5, 5, -2]\noutput : list = [5, -5, 2]",
    "output": "generated_output : list = reverse(mul_n(reverse([-5, 5, -2]),-1))",
    "io_inp": [
      -5,
      5,
      -2
    ],
    "io_out": [
      5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [0, -2, 3, 1, 4]\noutput : list = [5, 3, 8, 6, 9]",
    "output": "generated_output : list = add_n([0, -2, 3, 1, 4],5)",
    "io_inp": [
      0,
      -2,
      3,
      1,
      4
    ],
    "io_out": [
      5,
      3,
      8,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 1, -4, -5]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take([-4, 1, -4, -5],2)",
    "io_inp": [
      -4,
      1,
      -4,
      -5
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 2, 2, 5, -4, -3]\noutput : list = [-8, -1, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(take([-5, 2, 2, 5, -4, -3],4)))),-3)",
    "io_inp": [
      -5,
      2,
      2,
      5,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(take(input,4)))),-3)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-33, -13]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sub_n([-3, 1],3))),5),3)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -33,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sub_n(input,3))),5),3)"
  },
  {
    "input": "input : list = [-5, -1, -3, -5, -2, -3]\noutput : list = [80, 80, 40, 40, 20, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n([-5, -1, -3, -5, -2, -3],1)),5),-4)",
    "io_inp": [
      -5,
      -1,
      -3,
      -5,
      -2,
      -3
    ],
    "io_out": [
      80,
      80,
      40,
      40,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(input,1)),5),-4)"
  },
  {
    "input": "input : list = [-5, 1, -5, -5, -3, 0]\noutput : list = [-5, -5, -5, -3, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse([-5, 1, -5, -5, -3, 0]))))",
    "io_inp": [
      -5,
      1,
      -5,
      -5,
      -3,
      0
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(input))))"
  },
  {
    "input": "input : list = [2, -3, -5, 2, -1]\noutput : list = [9, 4, 2, 9, 6]",
    "output": "generated_output : list = sub_n(add_n([2, -3, -5, 2, -1],4),-3)",
    "io_inp": [
      2,
      -3,
      -5,
      2,
      -1
    ],
    "io_out": [
      9,
      4,
      2,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),-3)"
  },
  {
    "input": "input : list = [-2, 0, 4, -2, 5, -2]\noutput : list = [5, 4, 0, -2, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sub_n([-2, 0, 4, -2, 5, -2],3)),3)))",
    "io_inp": [
      -2,
      0,
      4,
      -2,
      5,
      -2
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sub_n(input,3)),3)))"
  },
  {
    "input": "input : list = [5, -2, -4, -2, 1]\noutput : list = [0, -21, -27, -21, -12]",
    "output": "generated_output : list = mul_n(take(add_n([5, -2, -4, -2, 1],-5),5),3)",
    "io_inp": [
      5,
      -2,
      -4,
      -2,
      1
    ],
    "io_out": [
      0,
      -21,
      -27,
      -21,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,-5),5),3)"
  },
  {
    "input": "input : list = [-4, -5, 4, 1, 2, 1]\noutput : list = [0, -8, -9]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(take([-4, -5, 4, 1, 2, 1],3),4))),30)",
    "io_inp": [
      -4,
      -5,
      4,
      1,
      2,
      1
    ],
    "io_out": [
      0,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(take(input,3),4))),30)"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [102, -78, -78]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(mul_n([-2, 3, -2],-3),4)),2),-3)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      102,
      -78,
      -78
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(mul_n(input,-3),4)),2),-3)"
  },
  {
    "input": "input : list = [-2, 1, -3, -1]\noutput : list = [-5, 15, 5]",
    "output": "generated_output : list = mul_n(drop([-2, 1, -3, -1],1),-5)",
    "io_inp": [
      -2,
      1,
      -3,
      -1
    ],
    "io_out": [
      -5,
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-3, -5, -3, -4, -5, 3]\noutput : list = [10, 12, 14, -2]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(drop([-3, -5, -3, -4, -5, 3],2))),-2),4)",
    "io_inp": [
      -3,
      -5,
      -3,
      -4,
      -5,
      3
    ],
    "io_out": [
      10,
      12,
      14,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(drop(input,2))),-2),4)"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [33, 9, -15]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(mul_n([-1, 1, 3],-3),-4))),-3)",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      33,
      9,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(mul_n(input,-3),-4))),-3)"
  },
  {
    "input": "input : list = [3, -4, 1]\noutput : list = [0, -5, 2]",
    "output": "generated_output : list = add_n(reverse([3, -4, 1]),-1)",
    "io_inp": [
      3,
      -4,
      1
    ],
    "io_out": [
      0,
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-2, -1, 1, -4, -2]\noutput : list = [0, 2, 2, 3, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des([-2, -1, 1, -4, -2])),-2),-2)",
    "io_inp": [
      -2,
      -1,
      1,
      -4,
      -2
    ],
    "io_out": [
      0,
      2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(input)),-2),-2)"
  },
  {
    "input": "input : list = [4, 5, -4, -2, -3, 3]\noutput : list = [5, -4, -2, -3, 3]",
    "output": "generated_output : list = drop([4, 5, -4, -2, -3, 3],1)",
    "io_inp": [
      4,
      5,
      -4,
      -2,
      -3,
      3
    ],
    "io_out": [
      5,
      -4,
      -2,
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -4, -5, 3]\noutput : list = [8, 8, 1, 0]",
    "output": "generated_output : list = add_n(reverse(sort_asc([3, -4, -5, 3])),5)",
    "io_inp": [
      3,
      -4,
      -5,
      3
    ],
    "io_out": [
      8,
      8,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [-3, 1, 5, 4]\noutput : list = [10, 9, 6, 2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(sort_asc([-3, 1, 5, 4]))),1),-4)",
    "io_inp": [
      -3,
      1,
      5,
      4
    ],
    "io_out": [
      10,
      9,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(sort_asc(input))),1),-4)"
  },
  {
    "input": "input : list = [-3, 0, 3, 3]\noutput : list = [-12, -12, -48, -84]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(add_n([-3, 0, 3, 3],-4),-4)),-3),35)",
    "io_inp": [
      -3,
      0,
      3,
      3
    ],
    "io_out": [
      -12,
      -12,
      -48,
      -84
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(add_n(input,-4),-4)),-3),35)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [9, 9, 0]",
    "output": "generated_output : list = sub_n(sort_des(add_n([5, 5, -4],-1)),-5)",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      9,
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-1)),-5)"
  },
  {
    "input": "input : list = [2, 4, 1, 3, 2]\noutput : list = [1, 0, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc([2, 4, 1, 3, 2])),3))",
    "io_inp": [
      2,
      4,
      1,
      3,
      2
    ],
    "io_out": [
      1,
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(input)),3))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = take(take(reverse(sort_asc(sort_des([-2, 2]))),21),19)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(sort_des(input))),21),19)"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(take([1, 4, 2],1)),2)))",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(take(input,1)),2)))"
  },
  {
    "input": "input : list = [-1, -2, 2, -1]\noutput : list = [2, -1, -1, -2]",
    "output": "generated_output : list = take(sort_des(sort_des([-1, -2, 2, -1])),9)",
    "io_inp": [
      -1,
      -2,
      2,
      -1
    ],
    "io_out": [
      2,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),9)"
  },
  {
    "input": "input : list = [5, 2, -2, 0, -2]\noutput : list = [8, 8, 16, 24, 36]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(add_n([5, 2, -2, 0, -2],4)))),4)",
    "io_inp": [
      5,
      2,
      -2,
      0,
      -2
    ],
    "io_out": [
      8,
      8,
      16,
      24,
      36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(add_n(input,4)))),4)"
  },
  {
    "input": "input : list = [2, -5, -2, 4]\noutput : list = [8, 6, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n([2, -5, -2, 4],5))),1)",
    "io_inp": [
      2,
      -5,
      -2,
      4
    ],
    "io_out": [
      8,
      6,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(input,5))),1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n([3, -1],-1)),3),3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(input,-1)),3),3)"
  },
  {
    "input": "input : list = [-5, -4, 1, -3]\noutput : list = [-20]",
    "output": "generated_output : list = sort_des(take(mul_n(take([-5, -4, 1, -3],1),4),26))",
    "io_inp": [
      -5,
      -4,
      1,
      -3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(input,1),4),26))"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [-2, 14, 16]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des(reverse([3, 4, -5])),4)),2)",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      -2,
      14,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(reverse(input)),4)),2)"
  },
  {
    "input": "input : list = [0, -3, -5, 0, -3]\noutput : list = [10, 10, 7, 7, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n([0, -3, -5, 0, -3],-5)))),-5)",
    "io_inp": [
      0,
      -3,
      -5,
      0,
      -3
    ],
    "io_out": [
      10,
      10,
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [-5, 2, -3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(drop([-5, 2, -3, 3],2)))))",
    "io_inp": [
      -5,
      2,
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [-5, -1, -5, 2]\noutput : list = [20, 20, 4, -8]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n([-5, -1, -5, 2],-4))))",
    "io_inp": [
      -5,
      -1,
      -5,
      2
    ],
    "io_out": [
      20,
      20,
      4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [5, -3, 2, 5]\noutput : list = [5, -3, 2, 5]",
    "output": "generated_output : list = mul_n(reverse(take(take(reverse([5, -3, 2, 5]),19),5)),1)",
    "io_inp": [
      5,
      -3,
      2,
      5
    ],
    "io_out": [
      5,
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(reverse(input),19),5)),1)"
  },
  {
    "input": "input : list = [1, 4, -1, -1, 1, 5]\noutput : list = [-5, -25]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([1, 4, -1, -1, 1, 5],4),11),-5)))",
    "io_inp": [
      1,
      4,
      -1,
      -1,
      1,
      5
    ],
    "io_out": [
      -5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,4),11),-5)))"
  },
  {
    "input": "input : list = [5, 3, -1, -2, -3]\noutput : list = [-3, -2, -1, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(sort_des([5, 3, -1, -2, -3])),21)))",
    "io_inp": [
      5,
      3,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(sort_des(input)),21)))"
  },
  {
    "input": "input : list = [0, 1, 3, 4]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(take([0, 1, 3, 4],1),3),-2),2),-3)",
    "io_inp": [
      0,
      1,
      3,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(take(input,1),3),-2),2),-3)"
  },
  {
    "input": "input : list = [1, 4, -4, 3]\noutput : list = [2, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(take([1, 4, -4, 3],2))),-3),-5)",
    "io_inp": [
      1,
      4,
      -4,
      3
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(take(input,2))),-3),-5)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [-5, 0, 15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sort_asc([-3, -4, 0]),3))),5)",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      -5,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sort_asc(input),3))),5)"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [0, -20, 20]",
    "output": "generated_output : list = mul_n([0, -4, 4],5)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      0,
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, -4, 1, -5]\noutput : list = [25, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(drop([-1, -4, 1, -5],2),-5))))",
    "io_inp": [
      -1,
      -4,
      1,
      -5
    ],
    "io_out": [
      25,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(drop(input,2),-5))))"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [9]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(take([3, -1, -4],1)),-1),-4),3)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(take(input,1)),-1),-4),3)"
  },
  {
    "input": "input : list = [-1, 5, 4, 5]\noutput : list = [1, 6, 7, 7]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n([-1, 5, 4, 5],2))),22))",
    "io_inp": [
      -1,
      5,
      4,
      5
    ],
    "io_out": [
      1,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n(input,2))),22))"
  },
  {
    "input": "input : list = [-2, -1, 0, 3, 5, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(sort_asc([-2, -1, 0, 3, 5, 0]),2)),-2))",
    "io_inp": [
      -2,
      -1,
      0,
      3,
      5,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(sort_asc(input),2)),-2))"
  },
  {
    "input": "input : list = [-1, -1, -4, -5]\noutput : list = [9]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(take([-1, -1, -4, -5],1),-4)),3))",
    "io_inp": [
      -1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(take(input,1),-4)),3))"
  },
  {
    "input": "input : list = [-5, -2, -3, -1, -5]\noutput : list = [17, 1, 9, 5, 17]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(mul_n([-5, -2, -3, -1, -5],-4),-3),4)),-2)",
    "io_inp": [
      -5,
      -2,
      -3,
      -1,
      -5
    ],
    "io_out": [
      17,
      1,
      9,
      5,
      17
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(mul_n(input,-4),-3),4)),-2)"
  },
  {
    "input": "input : list = [-1, 4, 4, 4]\noutput : list = [2, 7, 7, 7]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(add_n([-1, 4, 4, 4],3),20))),10)",
    "io_inp": [
      -1,
      4,
      4,
      4
    ],
    "io_out": [
      2,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(add_n(input,3),20))),10)"
  },
  {
    "input": "input : list = [5, 3, -3, 4, 2]\noutput : list = [7, 1]",
    "output": "generated_output : list = add_n(mul_n(take(take(drop([5, 3, -3, 4, 2],3),3),18),3),-5)",
    "io_inp": [
      5,
      3,
      -3,
      4,
      2
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(drop(input,3),3),18),3),-5)"
  },
  {
    "input": "input : list = [4, -2, 2, -5]\noutput : list = [17, -1, 11, -10]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n([4, -2, 2, -5],1),3),18),-5)",
    "io_inp": [
      4,
      -2,
      2,
      -5
    ],
    "io_out": [
      17,
      -1,
      11,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(input,1),3),18),-5)"
  },
  {
    "input": "input : list = [-1, 3, -3, -2, 2]\noutput : list = [16]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(drop(sub_n([-1, 3, -3, -2, 2],-2),4),4)))",
    "io_inp": [
      -1,
      3,
      -3,
      -2,
      2
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(drop(sub_n(input,-2),4),4)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc([-1, -2])",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [1, -2]",
    "output": "generated_output : list = sub_n(reverse([2, 5]),4)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, -1, -3, -5, -3, 5]\noutput : list = [-30, -20, -20, -15, -10, 20]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc([-2, -1, -3, -5, -3, 5]),-3),-4),5)",
    "io_inp": [
      -2,
      -1,
      -3,
      -5,
      -3,
      5
    ],
    "io_out": [
      -30,
      -20,
      -20,
      -15,
      -10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(input),-3),-4),5)"
  },
  {
    "input": "input : list = [0, 4, 1, -3, -2]\noutput : list = [16, 20, 4, -8, 8]",
    "output": "generated_output : list = mul_n(add_n(reverse([0, 4, 1, -3, -2]),-2),-4)",
    "io_inp": [
      0,
      4,
      1,
      -3,
      -2
    ],
    "io_out": [
      16,
      20,
      4,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-2),-4)"
  },
  {
    "input": "input : list = [1, 5, -4, 3]\noutput : list = [5, 3, 1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([1, 5, -4, 3])))",
    "io_inp": [
      1,
      5,
      -4,
      3
    ],
    "io_out": [
      5,
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(reverse([-3, -2]),6),2),1))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(reverse(input),6),2),1))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [6, 8]",
    "output": "generated_output : list = add_n([2, 4],4)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, -5, 2, 5]\noutput : list = [11, 8, 4, 1]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc([-2, -5, 2, 5])),3)),3)",
    "io_inp": [
      -2,
      -5,
      2,
      5
    ],
    "io_out": [
      11,
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc(input)),3)),3)"
  },
  {
    "input": "input : list = [-5, -5, 3, -3]\noutput : list = [5, -1, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(add_n([-5, -5, 3, -3],-1),3))))",
    "io_inp": [
      -5,
      -5,
      3,
      -3
    ],
    "io_out": [
      5,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(add_n(input,-1),3))))"
  },
  {
    "input": "input : list = [2, -4, 1, 3, -2]\noutput : list = [-8, -3, -1, -6]",
    "output": "generated_output : list = sub_n(drop([2, -4, 1, 3, -2],1),4)",
    "io_inp": [
      2,
      -4,
      1,
      3,
      -2
    ],
    "io_out": [
      -8,
      -3,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [-3, -4, 3, 0]\noutput : list = [8, 2, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(mul_n([-3, -4, 3, 0],2)),25),-2))",
    "io_inp": [
      -3,
      -4,
      3,
      0
    ],
    "io_out": [
      8,
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(mul_n(input,2)),25),-2))"
  },
  {
    "input": "input : list = [2, -3, -2, 4, 5]\noutput : list = [-10, -12, -2]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(take([2, -3, -2, 4, 5],3),3)),-3),2)",
    "io_inp": [
      2,
      -3,
      -2,
      4,
      5
    ],
    "io_out": [
      -10,
      -12,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(take(input,3),3)),-3),2)"
  },
  {
    "input": "input : list = [5, 2, 3, -4, 2]\noutput : list = [-43, -13, -13, -8, 2]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(sort_des([5, 2, 3, -4, 2]),5),5)),2)",
    "io_inp": [
      5,
      2,
      3,
      -4,
      2
    ],
    "io_out": [
      -43,
      -13,
      -13,
      -8,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(sort_des(input),5),5)),2)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [10, 6]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(reverse([5, 3])),2)))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(reverse(input)),2)))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(reverse([4, -2]),1))))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(reverse(input),1))))"
  },
  {
    "input": "input : list = [-3, -5, -4, -5]\noutput : list = [-5, -6, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n([-3, -5, -4, -5],-1)),-3))",
    "io_inp": [
      -3,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(input,-1)),-3))"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-5, 0, 5]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(reverse([-5, 0, 5])),4)))",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [-4, 5, -5, 4]\noutput : list = [5, -5, 4]",
    "output": "generated_output : list = drop([-4, 5, -5, 4],1)",
    "io_inp": [
      -4,
      5,
      -5,
      4
    ],
    "io_out": [
      5,
      -5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -1, 1, 4]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(add_n(take([-5, -1, 1, 4],1),-1),2)",
    "io_inp": [
      -5,
      -1,
      1,
      4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,1),-1),2)"
  },
  {
    "input": "input : list = [-2, 1, -2, 2, 1, -5]\noutput : list = [2, 1, 1, -2, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(sort_des([-2, 1, -2, 2, 1, -5])),1)))",
    "io_inp": [
      -2,
      1,
      -2,
      2,
      1,
      -5
    ],
    "io_out": [
      2,
      1,
      1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [-5, -4, 3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = drop([-5, -4, 3, 0],2)",
    "io_inp": [
      -5,
      -4,
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -1, 2, 5, -2, 5]\noutput : list = [5, 3, 6, 9, 2, 9]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(sub_n([1, -1, 2, 5, -2, 5],-4)))))",
    "io_inp": [
      1,
      -1,
      2,
      5,
      -2,
      5
    ],
    "io_out": [
      5,
      3,
      6,
      9,
      2,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [-1, 1, -2]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(mul_n([-3, 0, -2],-1),17),-1)),-1)",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      -1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(mul_n(input,-1),17),-1)),-1)"
  },
  {
    "input": "input : list = [5, -1, 2, 2, 4]\noutput : list = [0, 3, 3, 5, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_asc([5, -1, 2, 2, 4]),-1)),44))",
    "io_inp": [
      5,
      -1,
      2,
      2,
      4
    ],
    "io_out": [
      0,
      3,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_asc(input),-1)),44))"
  },
  {
    "input": "input : list = [1, 5, 4, -2]\noutput : list = [-8, 4, 16, 20]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(reverse([1, 5, 4, -2])))),4)",
    "io_inp": [
      1,
      5,
      4,
      -2
    ],
    "io_out": [
      -8,
      4,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(reverse(input)))),4)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [7, 1]",
    "output": "generated_output : list = add_n(take(sub_n(take(mul_n([-5, -3],-3),3),4),17),-4)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(mul_n(input,-3),3),4),17),-4)"
  },
  {
    "input": "input : list = [-5, 3, -2, -1, -2, -2]\noutput : list = [-55, -15, -5, -5, -5, 25]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(sort_des([-5, 3, -2, -1, -2, -2])),-2),-5),5)",
    "io_inp": [
      -5,
      3,
      -2,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -55,
      -15,
      -5,
      -5,
      -5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(sort_des(input)),-2),-5),5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [1, -6]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(add_n([3, -4],3)),3),2),34)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(add_n(input,3)),3),2),34)"
  },
  {
    "input": "input : list = [4, 3, 3, -4]\noutput : list = [4, 3, 3, -4]",
    "output": "generated_output : list = mul_n([4, 3, 3, -4],1)",
    "io_inp": [
      4,
      3,
      3,
      -4
    ],
    "io_out": [
      4,
      3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-3, 3, -2, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 3, -2, 5],1)",
    "io_inp": [
      -3,
      3,
      -2,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, 2]\noutput : list = [12, -3, -6]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([1, -4, 2],-3)))",
    "io_inp": [
      1,
      -4,
      2
    ],
    "io_out": [
      12,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [-3, 5, 3, 3, 2]\noutput : list = [-3, 5]",
    "output": "generated_output : list = reverse(drop(reverse([-3, 5, 3, 3, 2]),3))",
    "io_inp": [
      -3,
      5,
      3,
      3,
      2
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(reverse(input),3))"
  },
  {
    "input": "input : list = [-5, -3, -5, 1, 4]\noutput : list = [-7, -5, -7, -1, 2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(reverse([-5, -3, -5, 1, 4])),-1),5),2)",
    "io_inp": [
      -5,
      -3,
      -5,
      1,
      4
    ],
    "io_out": [
      -7,
      -5,
      -7,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(reverse(input)),-1),5),2)"
  },
  {
    "input": "input : list = [3, 4, 4, 3]\noutput : list = [7, 8, 8, 7]",
    "output": "generated_output : list = reverse(add_n([3, 4, 4, 3],4))",
    "io_inp": [
      3,
      4,
      4,
      3
    ],
    "io_out": [
      7,
      8,
      8,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [-2, 4, -2, 3, -4, 4]\noutput : list = [-5, -3, -3, 2, 3, 3]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des(sub_n([-2, 4, -2, 3, -4, 4],-4)),35)),-5)",
    "io_inp": [
      -2,
      4,
      -2,
      3,
      -4,
      4
    ],
    "io_out": [
      -5,
      -3,
      -3,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(sub_n(input,-4)),35)),-5)"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [25]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(drop(drop([-3, 3, 0],1),1),-5),-5))",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(drop(drop(input,1),1),-5),-5))"
  },
  {
    "input": "input : list = [1, -1, -5]\noutput : list = [1, -1, -5]",
    "output": "generated_output : list = sort_des(reverse([1, -1, -5]))",
    "io_inp": [
      1,
      -1,
      -5
    ],
    "io_out": [
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -3, -1, -4]\noutput : list = [-4, -16]",
    "output": "generated_output : list = drop(mul_n(reverse(reverse([0, -3, -1, -4])),4),2)",
    "io_inp": [
      0,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -16
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(reverse(input)),4),2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n(sort_des(add_n([1, -1],-4)),-1)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(input,-4)),-1)"
  },
  {
    "input": "input : list = [3, -5, 3, 4, 5]\noutput : list = [2, 1, 0, 0, -8]",
    "output": "generated_output : list = sort_des(sub_n([3, -5, 3, 4, 5],3))",
    "io_inp": [
      3,
      -5,
      3,
      4,
      5
    ],
    "io_out": [
      2,
      1,
      0,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [2, 3, -5, -5]\noutput : list = [2, 1, -6, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(sort_des([2, 3, -5, -5]),6)),-1))",
    "io_inp": [
      2,
      3,
      -5,
      -5
    ],
    "io_out": [
      2,
      1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(sort_des(input),6)),-1))"
  },
  {
    "input": "input : list = [4, 4, 1, -2, 4, -5]\noutput : list = [8, 8, 8, 2, -4, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(sort_des([4, 4, 1, -2, 4, -5]),13),2)))",
    "io_inp": [
      4,
      4,
      1,
      -2,
      4,
      -5
    ],
    "io_out": [
      8,
      8,
      8,
      2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(sort_des(input),13),2)))"
  },
  {
    "input": "input : list = [4, -5, -2, 5, 4, -5]\noutput : list = [-5, -5, -2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(sort_asc([4, -5, -2, 5, 4, -5]),4),4),9))",
    "io_inp": [
      4,
      -5,
      -2,
      5,
      4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(sort_asc(input),4),4),9))"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [-40, 200, 120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-1, 5, 3],2),4),5)",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      -40,
      200,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,2),4),5)"
  },
  {
    "input": "input : list = [0, 3, 1]\noutput : list = [0]",
    "output": "generated_output : list = take(mul_n([0, 3, 1],5),1)",
    "io_inp": [
      0,
      3,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,5),1)"
  },
  {
    "input": "input : list = [0, -2, 1, 3]\noutput : list = [-2, -8, -17, -11]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(sub_n([0, -2, 1, 3],1),-4)),3),4)",
    "io_inp": [
      0,
      -2,
      1,
      3
    ],
    "io_out": [
      -2,
      -8,
      -17,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(sub_n(input,1),-4)),3),4)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-6, 6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc([3, -3]),2)))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(input),2)))"
  },
  {
    "input": "input : list = [5, -4, -5, 5]\noutput : list = [-4, -5, 5]",
    "output": "generated_output : list = drop([5, -4, -5, 5],1)",
    "io_inp": [
      5,
      -4,
      -5,
      5
    ],
    "io_out": [
      -4,
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 3, 1, -2]\noutput : list = [-8, -5]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(add_n([1, 3, 1, -2],-4)),1),2),-1)",
    "io_inp": [
      1,
      3,
      1,
      -2
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(add_n(input,-4)),1),2),-1)"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [0, 0, -3]",
    "output": "generated_output : list = reverse([-3, 0, 0])",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-7, -10]",
    "output": "generated_output : list = sub_n([-2, -5],5)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, 3, -4, 1]\noutput : list = [20, -5, -15]",
    "output": "generated_output : list = sort_des(mul_n(drop([-2, 3, -4, 1],1),-5))",
    "io_inp": [
      -2,
      3,
      -4,
      1
    ],
    "io_out": [
      20,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,1),-5))"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [4, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 4, 4])",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, 4, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(take([5, 5, 4, 2],2)),-4)),1)",
    "io_inp": [
      5,
      5,
      4,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(take(input,2)),-4)),1)"
  },
  {
    "input": "input : list = [-2, -3, -3, 4]\noutput : list = [15, 15, 12, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n([-2, -3, -3, 4],2)),-3)",
    "io_inp": [
      -2,
      -3,
      -3,
      4
    ],
    "io_out": [
      15,
      15,
      12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(input,2)),-3)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse(sort_des([-1, 0]))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -2, 4, -3, 0]\noutput : list = [-2, -6, -8, -9, -10]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(reverse([-4, -2, 4, -3, 0]),5),-1)),40)",
    "io_inp": [
      -4,
      -2,
      4,
      -3,
      0
    ],
    "io_out": [
      -2,
      -6,
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(reverse(input),5),-1)),40)"
  },
  {
    "input": "input : list = [4, 3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(drop([4, 3, 1],1),1),2)),-3)",
    "io_inp": [
      4,
      3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(drop(input,1),1),2)),-3)"
  },
  {
    "input": "input : list = [-3, 5, 3, 3, -5, -4]\noutput : list = [-6, 2, 0, 0, -8, -7]",
    "output": "generated_output : list = add_n([-3, 5, 3, 3, -5, -4],-3)",
    "io_inp": [
      -3,
      5,
      3,
      3,
      -5,
      -4
    ],
    "io_out": [
      -6,
      2,
      0,
      0,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-15, -3, 0]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(sort_des([3, -2, -1]),2),28)),-3)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -15,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(sort_des(input),2),28)),-3)"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [5, 9]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(drop([2, -2, 0],1)),1),-2),-5)",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(drop(input,1)),1),-2),-5)"
  },
  {
    "input": "input : list = [5, -4, -2, -1, -4]\noutput : list = [10, 1, 3, 4, 1]",
    "output": "generated_output : list = sub_n(sub_n([5, -4, -2, -1, -4],-2),-3)",
    "io_inp": [
      5,
      -4,
      -2,
      -1,
      -4
    ],
    "io_out": [
      10,
      1,
      3,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-10, 5]",
    "output": "generated_output : list = add_n(mul_n(add_n([0, 5],-3),3),-1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -10,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-3),3),-1)"
  },
  {
    "input": "input : list = [5, 4, 5, 2, -2, 2]\noutput : list = [-10, -11, -10, -13, -17, -13]",
    "output": "generated_output : list = take(add_n(add_n(add_n([5, 4, 5, 2, -2, 2],-5),-5),-5),37)",
    "io_inp": [
      5,
      4,
      5,
      2,
      -2,
      2
    ],
    "io_out": [
      -10,
      -11,
      -10,
      -13,
      -17,
      -13
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(input,-5),-5),-5),37)"
  },
  {
    "input": "input : list = [-1, 0, -3, -5, -3, 4]\noutput : list = [-6, -5, -8, -10, -8, -1]",
    "output": "generated_output : list = sub_n([-1, 0, -3, -5, -3, 4],5)",
    "io_inp": [
      -1,
      0,
      -3,
      -5,
      -3,
      4
    ],
    "io_out": [
      -6,
      -5,
      -8,
      -10,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, -3, 2, 1, -5]\noutput : list = [104, 88, 72, 8, -8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(mul_n([-4, -3, 2, 1, -5],-4)),-3),-3),4)",
    "io_inp": [
      -4,
      -3,
      2,
      1,
      -5
    ],
    "io_out": [
      104,
      88,
      72,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(mul_n(input,-4)),-3),-3),4)"
  },
  {
    "input": "input : list = [-1, 2, -4, 2, 3]\noutput : list = [-4, -3, -3, 0, 3]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_des([-1, 2, -4, 2, 3]),1),-1),2),-3)",
    "io_inp": [
      -1,
      2,
      -4,
      2,
      3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_des(input),1),-1),2),-3)"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [-6, -2, 0]",
    "output": "generated_output : list = sort_asc(take(take(add_n(reverse([1, -5, -1]),-1),11),27))",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(reverse(input),-1),11),27))"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 4, -2],1)",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 4, -3, 0]\noutput : list = [-3, 0, 3, 4]",
    "output": "generated_output : list = sort_asc([3, 4, -3, 0])",
    "io_inp": [
      3,
      4,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, 3, -5, 2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = drop([-2, -1, 3, -5, 2, 1],4)",
    "io_inp": [
      -2,
      -1,
      3,
      -5,
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-5, -2, 2, -4]\noutput : list = [2, 14, 6, 0]",
    "output": "generated_output : list = reverse(take(mul_n(take(sub_n([-5, -2, 2, -4],-5),18),2),28))",
    "io_inp": [
      -5,
      -2,
      2,
      -4
    ],
    "io_out": [
      2,
      14,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(sub_n(input,-5),18),2),28))"
  },
  {
    "input": "input : list = [1, -5, -1, -3]\noutput : list = [-100, -80, -60, -40]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(sub_n([1, -5, -1, -3],1)),4),5),2)",
    "io_inp": [
      1,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -100,
      -80,
      -60,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(sub_n(input,1)),4),5),2)"
  },
  {
    "input": "input : list = [2, 4, -4, 3, 1, -2]\noutput : list = [0, -1, -2, -8]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take([2, 4, -4, 3, 1, -2],4),-4)))",
    "io_inp": [
      2,
      4,
      -4,
      3,
      1,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(input,4),-4)))"
  },
  {
    "input": "input : list = [-4, 2, 1, 2, -3]\noutput : list = [-2, -1, -6]",
    "output": "generated_output : list = add_n(drop([-4, 2, 1, 2, -3],2),-3)",
    "io_inp": [
      -4,
      2,
      1,
      2,
      -3
    ],
    "io_out": [
      -2,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [27, 11, 7]",
    "output": "generated_output : list = sub_n(take(take(mul_n(add_n([4, 0, -1],4),4),6),12),5)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      27,
      11,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(add_n(input,4),4),6),12),5)"
  },
  {
    "input": "input : list = [-2, 4, 3, -5, -2]\noutput : list = [20, 15, -10, -10, -25]",
    "output": "generated_output : list = mul_n(sort_des([-2, 4, 3, -5, -2]),5)",
    "io_inp": [
      -2,
      4,
      3,
      -5,
      -2
    ],
    "io_out": [
      20,
      15,
      -10,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(mul_n(drop(reverse(add_n([-1, -5],4)),1),-1))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(reverse(add_n(input,4)),1),-1))"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = drop([0, -3, -4],1)",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2, -3, -5, 5, 1]\noutput : list = [2, 2, -3, -5, 5, 1]",
    "output": "generated_output : list = mul_n([2, 2, -3, -5, 5, 1],1)",
    "io_inp": [
      2,
      2,
      -3,
      -5,
      5,
      1
    ],
    "io_out": [
      2,
      2,
      -3,
      -5,
      5,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 2, -2],1)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [21, 17, -11]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(mul_n([-3, 4, 5],4),-1),5)),5)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      21,
      17,
      -11
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(mul_n(input,4),-1),5)),5)"
  },
  {
    "input": "input : list = [-1, 2, 2, -3]\noutput : list = [-3, 0, 0, -5]",
    "output": "generated_output : list = add_n(sub_n([-1, 2, 2, -3],-3),-5)",
    "io_inp": [
      -1,
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-3),-5)"
  },
  {
    "input": "input : list = [-3, 0, -4, 1]\noutput : list = [3, -2, -17, -22]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(mul_n([-3, 0, -4, 1],5)),5),-3))",
    "io_inp": [
      -3,
      0,
      -4,
      1
    ],
    "io_out": [
      3,
      -2,
      -17,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(mul_n(input,5)),5),-3))"
  },
  {
    "input": "input : list = [-1, 1, -1, -4, 4]\noutput : list = [-23, -8, 2, 2, 17]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(mul_n([-1, 1, -1, -4, 4],-5),20),-3)))",
    "io_inp": [
      -1,
      1,
      -1,
      -4,
      4
    ],
    "io_out": [
      -23,
      -8,
      2,
      2,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(mul_n(input,-5),20),-3)))"
  },
  {
    "input": "input : list = [0, -4, 3, -4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(take([0, -4, 3, -4, 2],1))),2))",
    "io_inp": [
      0,
      -4,
      3,
      -4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(take(input,1))),2))"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [15, 3, 0]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(sort_des([3, -2, -1]),-2),-3)),-1)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      15,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(sort_des(input),-2),-3)),-1)"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = drop([-5, 1, 0],1)",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -5, 3, 0]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(drop([5, -5, 3, 0],1)),-1)))",
    "io_inp": [
      5,
      -5,
      3,
      0
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(drop(input,1)),-1)))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-8, -10]",
    "output": "generated_output : list = add_n([-3, -5],-5)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [1, 1, -2, -1, 1]\noutput : list = [4, 4, 4, -4, -8]",
    "output": "generated_output : list = mul_n(sort_des([1, 1, -2, -1, 1]),4)",
    "io_inp": [
      1,
      1,
      -2,
      -1,
      1
    ],
    "io_out": [
      4,
      4,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = drop([-5, 1, 5],1)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3, -5, -1, 5, -2]\noutput : list = [15, 7, 7, -9, -13, -25]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(mul_n([3, 3, -5, -1, 5, -2],4)),5)))",
    "io_inp": [
      3,
      3,
      -5,
      -1,
      5,
      -2
    ],
    "io_out": [
      15,
      7,
      7,
      -9,
      -13,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(mul_n(input,4)),5)))"
  },
  {
    "input": "input : list = [3, -2, 5, 2]\noutput : list = [-4, 4, 6, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(sub_n([3, -2, 5, 2],4),-4)),2))",
    "io_inp": [
      3,
      -2,
      5,
      2
    ],
    "io_out": [
      -4,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(sub_n(input,4),-4)),2))"
  },
  {
    "input": "input : list = [1, 2, 3, 4, 1, -1]\noutput : list = [4, 6, 9, 8, 7, 6]",
    "output": "generated_output : list = add_n(reverse([1, 2, 3, 4, 1, -1]),5)",
    "io_inp": [
      1,
      2,
      3,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      6,
      9,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [1, -1, -4, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(take([1, -1, -4, -1],2)),15))",
    "io_inp": [
      1,
      -1,
      -4,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(input,2)),15))"
  },
  {
    "input": "input : list = [0, 0, -1, -3, 1]\noutput : list = [-7, -5, -4, -3]",
    "output": "generated_output : list = add_n(take(take(sort_asc(drop([0, 0, -1, -3, 1],1)),32),42),-4)",
    "io_inp": [
      0,
      0,
      -1,
      -3,
      1
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(drop(input,1)),32),42),-4)"
  },
  {
    "input": "input : list = [-1, 5, -5, 4, -3, -2]\noutput : list = [-36, -24]",
    "output": "generated_output : list = mul_n(mul_n(drop([-1, 5, -5, 4, -3, -2],4),3),4)",
    "io_inp": [
      -1,
      5,
      -5,
      4,
      -3,
      -2
    ],
    "io_out": [
      -36,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(input,4),3),4)"
  },
  {
    "input": "input : list = [3, -3, -2, -4, -2]\noutput : list = [-24, -32, -24, -28, -4]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(reverse([3, -3, -2, -4, -2]),1),-2),-5),4)",
    "io_inp": [
      3,
      -3,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -24,
      -32,
      -24,
      -28,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(reverse(input),1),-2),-5),4)"
  },
  {
    "input": "input : list = [-3, -5, -3, 0, 5]\noutput : list = [7, 2, -1, -3, -1]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(sub_n([-3, -5, -3, 0, 5],-2),4)),42),4)",
    "io_inp": [
      -3,
      -5,
      -3,
      0,
      5
    ],
    "io_out": [
      7,
      2,
      -1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(sub_n(input,-2),4)),42),4)"
  },
  {
    "input": "input : list = [-1, 3, 0, -2]\noutput : list = [1, -2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(add_n([-1, 3, 0, -2],-2)))))",
    "io_inp": [
      -1,
      3,
      0,
      -2
    ],
    "io_out": [
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [3, 0, 2, 4, -2, -4]\noutput : list = [-4]",
    "output": "generated_output : list = drop(sort_des(sort_asc(take(reverse([3, 0, 2, 4, -2, -4]),15))),5)",
    "io_inp": [
      3,
      0,
      2,
      4,
      -2,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_asc(take(reverse(input),15))),5)"
  },
  {
    "input": "input : list = [-1, 5, 2, -4, -2, -5]\noutput : list = [-15, -6, 3, 6, 12, 15]",
    "output": "generated_output : list = sort_asc(mul_n([-1, 5, 2, -4, -2, -5],-3))",
    "io_inp": [
      -1,
      5,
      2,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -15,
      -6,
      3,
      6,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [5, 1, 2]\noutput : list = [1, 4, 13]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(sort_des([5, 1, 2]),3)),30),2)",
    "io_inp": [
      5,
      1,
      2
    ],
    "io_out": [
      1,
      4,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(sort_des(input),3)),30),2)"
  },
  {
    "input": "input : list = [2, 3, 1, 3]\noutput : list = [0, 1, 2, 2]",
    "output": "generated_output : list = sort_asc(sub_n([2, 3, 1, 3],1))",
    "io_inp": [
      2,
      3,
      1,
      3
    ],
    "io_out": [
      0,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [4, -3, 1, 2]\noutput : list = [-36]",
    "output": "generated_output : list = drop(take(mul_n(mul_n(sub_n([4, -3, 1, 2],5),-3),-4),37),3)",
    "io_inp": [
      4,
      -3,
      1,
      2
    ],
    "io_out": [
      -36
    ],
    "output_masked": "generated_output : list = drop(take(mul_n(mul_n(sub_n(input,5),-3),-4),37),3)"
  },
  {
    "input": "input : list = [5, -5, -1, -2, 2]\noutput : list = [5, 2, -1, -2, -5]",
    "output": "generated_output : list = sort_des([5, -5, -1, -2, 2])",
    "io_inp": [
      5,
      -5,
      -1,
      -2,
      2
    ],
    "io_out": [
      5,
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [4, -1, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(sort_asc([2, -3, -3]),2))))",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [-4, 3, -5, 2, -4]\noutput : list = [-5, 2, -6, 1, -5]",
    "output": "generated_output : list = sub_n([-4, 3, -5, 2, -4],1)",
    "io_inp": [
      -4,
      3,
      -5,
      2,
      -4
    ],
    "io_out": [
      -5,
      2,
      -6,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(take([3, 3, 3],1),2)),26))",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(take(input,1),2)),26))"
  },
  {
    "input": "input : list = [0, -5, -4, 5, -3]\noutput : list = [-7, 1, -8, -9, -4]",
    "output": "generated_output : list = add_n(add_n(reverse([0, -5, -4, 5, -3]),-1),-3)",
    "io_inp": [
      0,
      -5,
      -4,
      5,
      -3
    ],
    "io_out": [
      -7,
      1,
      -8,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),-1),-3)"
  },
  {
    "input": "input : list = [0, -1, -3, -4]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = take(take(drop([0, -1, -3, -4],1),4),16)",
    "io_inp": [
      0,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(take(drop(input,1),4),16)"
  },
  {
    "input": "input : list = [4, 2, 4, -1]\noutput : list = [-2, 4, 8, 8]",
    "output": "generated_output : list = sort_asc(mul_n([4, 2, 4, -1],2))",
    "io_inp": [
      4,
      2,
      4,
      -1
    ],
    "io_out": [
      -2,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [6, 7, 8]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(add_n([3, 5, 4],3))),21))",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(add_n(input,3))),21))"
  },
  {
    "input": "input : list = [-3, -3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = drop([-3, -3, -4],1)",
    "io_inp": [
      -3,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 5, -3, 5, 0]\noutput : list = [-3, 0, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([4, 5, -3, 5, 0])",
    "io_inp": [
      4,
      5,
      -3,
      5,
      0
    ],
    "io_out": [
      -3,
      0,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, -3, -1, -2, 1]\noutput : list = [6, 3, 2, 0, -1, -2]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(sort_des([5, 2, -3, -1, -2, 1]),1))),24)",
    "io_inp": [
      5,
      2,
      -3,
      -1,
      -2,
      1
    ],
    "io_out": [
      6,
      3,
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(sort_des(input),1))),24)"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_des([2, 1, 4])))))",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, 0, 0, 3, -4]\noutput : list = [-4, 0, 0, -3, 4]",
    "output": "generated_output : list = take(mul_n([4, 0, 0, 3, -4],-1),18)",
    "io_inp": [
      4,
      0,
      0,
      3,
      -4
    ],
    "io_out": [
      -4,
      0,
      0,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),18)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(sort_des(sort_des([-3, -2])),13)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),13)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [7, 2]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n(reverse([-5, 0]),-2),4),-4),-5)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(reverse(input),-2),4),-4),-5)"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(take([1, -2, -2],1)),-5),18),-1)",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(take(input,1)),-5),18),-1)"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 3, -2],1)",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -3, -1, 4]\noutput : list = [-7, -5, -5, 0, 1]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_des([-1, 5, -3, -1, 4]),14)),16),4)",
    "io_inp": [
      -1,
      5,
      -3,
      -1,
      4
    ],
    "io_out": [
      -7,
      -5,
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_des(input),14)),16),4)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(drop(sort_asc([1, -2]),1))),5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(drop(sort_asc(input),1))),5)"
  },
  {
    "input": "input : list = [-3, -2, 2, -5]\noutput : list = [7, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(drop([-3, -2, 2, -5],2)),-5)))",
    "io_inp": [
      -3,
      -2,
      2,
      -5
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(drop(input,2)),-5)))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(sub_n([3, 2],2))),-1))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(sub_n(input,2))),-1))"
  },
  {
    "input": "input : list = [-1, 0, -1, 2, 1]\noutput : list = [-4, -4, 2, 8, 14]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(mul_n([-1, 0, -1, 2, 1],3))),1),2)",
    "io_inp": [
      -1,
      0,
      -1,
      2,
      1
    ],
    "io_out": [
      -4,
      -4,
      2,
      8,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(mul_n(input,3))),1),2)"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [15, 15]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(drop(sub_n([-2, 4, 4],-1),1),4)),5)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(drop(sub_n(input,-1),1),4)),5)"
  },
  {
    "input": "input : list = [0, -1, 4, 1, -4, -5]\noutput : list = [4, 1, 0, -1, -4, -5]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(sort_des([0, -1, 4, 1, -4, -5]),-1),-1)),14)",
    "io_inp": [
      0,
      -1,
      4,
      1,
      -4,
      -5
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(sort_des(input),-1),-1)),14)"
  },
  {
    "input": "input : list = [-4, 2, -3, -3, -2, -5]\noutput : list = [0, -45]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(drop([-4, 2, -3, -3, -2, -5],4),-2),-5),-3)",
    "io_inp": [
      -4,
      2,
      -3,
      -3,
      -2,
      -5
    ],
    "io_out": [
      0,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(drop(input,4),-2),-5),-3)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(take([1, 0, -1],1),5),9)))",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(take(input,1),5),9)))"
  },
  {
    "input": "input : list = [0, 4, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(take(drop(reverse(sort_asc([0, 4, -2])),1),17))",
    "io_inp": [
      0,
      4,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(reverse(sort_asc(input)),1),17))"
  },
  {
    "input": "input : list = [-5, -3, -1, -5, -2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = drop([-5, -3, -1, -5, -2, 2],4)",
    "io_inp": [
      -5,
      -3,
      -1,
      -5,
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [-2, 3, 3]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(add_n([-3, -3, 2],-5),4)),-1),-1)",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(add_n(input,-5),4)),-1),-1)"
  },
  {
    "input": "input : list = [0, 2, -2, -4, 2, 0]\noutput : list = [-15, -15, -9, -9, -3, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(add_n([0, 2, -2, -4, 2, 0],3))),-3))",
    "io_inp": [
      0,
      2,
      -2,
      -4,
      2,
      0
    ],
    "io_out": [
      -15,
      -15,
      -9,
      -9,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(add_n(input,3))),-3))"
  },
  {
    "input": "input : list = [-5, 4, -5, 4, 4, -3]\noutput : list = [-5, -5, -3, 4, 4, 4]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_asc([-5, 4, -5, 4, 4, -3])),5)),5)",
    "io_inp": [
      -5,
      4,
      -5,
      4,
      4,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_asc(input)),5)),5)"
  },
  {
    "input": "input : list = [2, 1, 3, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = take([2, 1, 3, -2],2)",
    "io_inp": [
      2,
      1,
      3,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [27, 6, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([4, -5, 2],4),-3))",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      27,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,4),-3))"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(take([4, -1, -4],1),5)),-5))",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(take(input,1),5)),-5))"
  },
  {
    "input": "input : list = [3, 5, -5, -3, 0]\noutput : list = [-7, -11, 9, 5, -1]",
    "output": "generated_output : list = add_n(take(take(add_n(mul_n([3, 5, -5, -3, 0],-2),1),31),13),-2)",
    "io_inp": [
      3,
      5,
      -5,
      -3,
      0
    ],
    "io_out": [
      -7,
      -11,
      9,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(mul_n(input,-2),1),31),13),-2)"
  },
  {
    "input": "input : list = [2, -3, 1, -1, 2]\noutput : list = [7, 2, 6, 4, 7]",
    "output": "generated_output : list = take(sub_n([2, -3, 1, -1, 2],-5),7)",
    "io_inp": [
      2,
      -3,
      1,
      -1,
      2
    ],
    "io_out": [
      7,
      2,
      6,
      4,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),7)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [12, -9, -12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(reverse([-3, 5, 4])),1)),-3)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      12,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(reverse(input)),1)),-3)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [18, -6]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_asc([-2, 4]))),4),2)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      18,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_asc(input))),4),2)"
  },
  {
    "input": "input : list = [0, -5, -1, 3, 5, -3]\noutput : list = [5, 25]",
    "output": "generated_output : list = add_n(take(add_n(mul_n([0, -5, -1, 3, 5, -3],-4),3),2),2)",
    "io_inp": [
      0,
      -5,
      -1,
      3,
      5,
      -3
    ],
    "io_out": [
      5,
      25
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(input,-4),3),2),2)"
  },
  {
    "input": "input : list = [-5, 3, 2, 2, -3, 1]\noutput : list = [6, 5, 5, 0, 4]",
    "output": "generated_output : list = drop(sub_n([-5, 3, 2, 2, -3, 1],-3),1)",
    "io_inp": [
      -5,
      3,
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      6,
      5,
      5,
      0,
      4
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-3),1)"
  },
  {
    "input": "input : list = [-3, -1, 3, 2]\noutput : list = [12, 4, -8, -12]",
    "output": "generated_output : list = mul_n(sort_asc([-3, -1, 3, 2]),-4)",
    "io_inp": [
      -3,
      -1,
      3,
      2
    ],
    "io_out": [
      12,
      4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [2, 8, 2]",
    "output": "generated_output : list = add_n([-1, 5, -1],3)",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      2,
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, -4, 2, -2, 2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take([-4, -4, 2, -2, 2],2)",
    "io_inp": [
      -4,
      -4,
      2,
      -2,
      2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -3, 4, -5, -4, 2]\noutput : list = [-4, -3, -2, -2, 3, 5]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(add_n([-3, -3, 4, -5, -4, 2],3))),2),33)",
    "io_inp": [
      -3,
      -3,
      4,
      -5,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(add_n(input,3))),2),33)"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [66, 50, -78]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n([4, 3, -5],4),10)),4),-2)",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      66,
      50,
      -78
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n(input,4),10)),4),-2)"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [-64, 16]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(drop([1, 1, -4],1),-2)),2),-4)",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      -64,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(drop(input,1),-2)),2),-4)"
  },
  {
    "input": "input : list = [4, -3, -2, 5, -4]\noutput : list = [7, -2]",
    "output": "generated_output : list = drop(add_n([4, -3, -2, 5, -4],2),3)",
    "io_inp": [
      4,
      -3,
      -2,
      5,
      -4
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = drop(add_n(input,2),3)"
  },
  {
    "input": "input : list = [-1, 0, 2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(mul_n(drop(reverse(drop([-1, 0, 2],1)),1),-5),-2)",
    "io_inp": [
      -1,
      0,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(reverse(drop(input,1)),1),-5),-2)"
  },
  {
    "input": "input : list = [-2, 2, -3]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = sort_asc([-2, 2, -3])",
    "io_inp": [
      -2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, -1, 1]\noutput : list = [-12, -36]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(take([-1, 5, -1, 1],2),4),4)),4)",
    "io_inp": [
      -1,
      5,
      -1,
      1
    ],
    "io_out": [
      -12,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(take(input,2),4),4)),4)"
  },
  {
    "input": "input : list = [1, -3, -3, 4, -4, -5]\noutput : list = [1, 2, 3, 3, 7, 10]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([1, -3, -3, 4, -4, -5],5)),-1)",
    "io_inp": [
      1,
      -3,
      -3,
      4,
      -4,
      -5
    ],
    "io_out": [
      1,
      2,
      3,
      3,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,5)),-1)"
  },
  {
    "input": "input : list = [-4, 4, -2, -4, 2, -1]\noutput : list = [-80, 80, -40, -80, 40, -20]",
    "output": "generated_output : list = mul_n(mul_n([-4, 4, -2, -4, 2, -1],-4),-5)",
    "io_inp": [
      -4,
      4,
      -2,
      -4,
      2,
      -1
    ],
    "io_out": [
      -80,
      80,
      -40,
      -80,
      40,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),-5)"
  },
  {
    "input": "input : list = [1, -1, 4, 0, -4, 1]\noutput : list = [-32, -8, -8, 0, 8, 32]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(sort_asc([1, -1, 4, 0, -4, 1]),9),-4)),2)",
    "io_inp": [
      1,
      -1,
      4,
      0,
      -4,
      1
    ],
    "io_out": [
      -32,
      -8,
      -8,
      0,
      8,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(sort_asc(input),9),-4)),2)"
  },
  {
    "input": "input : list = [5, -1, 2, 5, -3]\noutput : list = [5, 5, 2, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(reverse([5, -1, 2, 5, -3])))))",
    "io_inp": [
      5,
      -1,
      2,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [5, -4, -1, -2]\noutput : list = [8, 6, 5, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(sort_asc([5, -4, -1, -2]),-1),3),1))",
    "io_inp": [
      5,
      -4,
      -1,
      -2
    ],
    "io_out": [
      8,
      6,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(sort_asc(input),-1),3),1))"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [0, -6, 1]",
    "output": "generated_output : list = add_n(add_n(take(add_n(reverse([4, -3, 3]),-1),6),-5),3)",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      0,
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(reverse(input),-1),6),-5),3)"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(take(take(take(sort_des([2, 0, 2]),4),2),25),-3)",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(take(take(sort_des(input),4),2),25),-3)"
  },
  {
    "input": "input : list = [5, 4, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n(drop([5, 4, 1],1),-1)",
    "io_inp": [
      5,
      4,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [2, -2, -4, 2]\noutput : list = [1, 3, 7, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(sub_n([2, -2, -4, 2],-3),20)),-2),-4)",
    "io_inp": [
      2,
      -2,
      -4,
      2
    ],
    "io_out": [
      1,
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(sub_n(input,-3),20)),-2),-4)"
  },
  {
    "input": "input : list = [-1, -3, 3, -3, -4]\noutput : list = [16, 12, 12, 4, -12]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n([-1, -3, 3, -3, -4],-4))))",
    "io_inp": [
      -1,
      -3,
      3,
      -3,
      -4
    ],
    "io_out": [
      16,
      12,
      12,
      4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [-3, 2, 0, 4, 5, 2]\noutput : list = [30, 24, 12]",
    "output": "generated_output : list = reverse(mul_n(drop(sort_des(mul_n([-3, 2, 0, 4, 5, 2],-3)),3),-2))",
    "io_inp": [
      -3,
      2,
      0,
      4,
      5,
      2
    ],
    "io_out": [
      30,
      24,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(sort_des(mul_n(input,-3)),3),-2))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-3, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n([0, -5],-5))),2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(input,-5))),2)"
  },
  {
    "input": "input : list = [-3, 4, 5, -1]\noutput : list = [2]",
    "output": "generated_output : list = drop(sort_asc(add_n(take([-3, 4, 5, -1],2),-2)),1)",
    "io_inp": [
      -3,
      4,
      5,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(take(input,2),-2)),1)"
  },
  {
    "input": "input : list = [0, 2, 2, 2]\noutput : list = [-8, -8, -8, -10]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(add_n([0, 2, 2, 2],-4)),-3)),-3)",
    "io_inp": [
      0,
      2,
      2,
      2
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(add_n(input,-4)),-3)),-3)"
  },
  {
    "input": "input : list = [0, -3, 4, -2, 1]\noutput : list = [-8, -2, 0, 4, 6]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_asc([0, -3, 4, -2, 1]),-2))),46)",
    "io_inp": [
      0,
      -3,
      4,
      -2,
      1
    ],
    "io_out": [
      -8,
      -2,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_asc(input),-2))),46)"
  },
  {
    "input": "input : list = [4, -5, 2, -5, 0]\noutput : list = [9]",
    "output": "generated_output : list = add_n(take([4, -5, 2, -5, 0],1),5)",
    "io_inp": [
      4,
      -5,
      2,
      -5,
      0
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = add_n(sort_des(add_n([-5, -3],-5)),2)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(input,-5)),2)"
  },
  {
    "input": "input : list = [-3, 3, -1, -4, 0]\noutput : list = [0, 4, 1, -3, 3]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(mul_n([-3, 3, -1, -4, 0],1))),-1))",
    "io_inp": [
      -3,
      3,
      -1,
      -4,
      0
    ],
    "io_out": [
      0,
      4,
      1,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(mul_n(input,1))),-1))"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [30, -15, 60]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n([-1, -4, 1],3),3),14),5)",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      30,
      -15,
      60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(input,3),3),14),5)"
  },
  {
    "input": "input : list = [-2, -1, -5, 1, 1, 2]\noutput : list = [2, 3, 3, 9, 5, 6]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(add_n([-2, -1, -5, 1, 1, 2],-4),-1),2)),-2)",
    "io_inp": [
      -2,
      -1,
      -5,
      1,
      1,
      2
    ],
    "io_out": [
      2,
      3,
      3,
      9,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(add_n(input,-4),-1),2)),-2)"
  },
  {
    "input": "input : list = [-2, 2, -2, -5, -2]\noutput : list = [4, 8, 4, 1, 4]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(sub_n([-2, 2, -2, -5, -2],-1),5),-5),7),-5)",
    "io_inp": [
      -2,
      2,
      -2,
      -5,
      -2
    ],
    "io_out": [
      4,
      8,
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(sub_n(input,-1),5),-5),7),-5)"
  },
  {
    "input": "input : list = [5, -1, -3, -3, -1, 3]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(take(add_n([5, -1, -3, -3, -1, 3],-4),1),-4)",
    "io_inp": [
      5,
      -1,
      -3,
      -3,
      -1,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,-4),1),-4)"
  },
  {
    "input": "input : list = [-4, 0, 0, 2]\noutput : list = [11, 9, 9, 5]",
    "output": "generated_output : list = sub_n(sort_des(add_n([-4, 0, 0, 2],5)),-4)",
    "io_inp": [
      -4,
      0,
      0,
      2
    ],
    "io_out": [
      11,
      9,
      9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,5)),-4)"
  },
  {
    "input": "input : list = [1, -5, 5, 3, 3]\noutput : list = [2, -2, -8]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(take([1, -5, 5, 3, 3],3))),12),3)",
    "io_inp": [
      1,
      -5,
      5,
      3,
      3
    ],
    "io_out": [
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(take(input,3))),12),3)"
  },
  {
    "input": "input : list = [-3, 0, 5, 3]\noutput : list = [-1, 2, 7, 5]",
    "output": "generated_output : list = add_n([-3, 0, 5, 3],2)",
    "io_inp": [
      -3,
      0,
      5,
      3
    ],
    "io_out": [
      -1,
      2,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [1, 1, 4, 0]\noutput : list = [-120, -30, -30, 0]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(mul_n([1, 1, 4, 0],-2)),3),5))",
    "io_inp": [
      1,
      1,
      4,
      0
    ],
    "io_out": [
      -120,
      -30,
      -30,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(mul_n(input,-2)),3),5))"
  },
  {
    "input": "input : list = [4, 4, 4, 0]\noutput : list = [2, 6, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc([4, 4, 4, 0]),5)),-3))",
    "io_inp": [
      4,
      4,
      4,
      0
    ],
    "io_out": [
      2,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc(input),5)),-3))"
  },
  {
    "input": "input : list = [-1, 3, -2, 0]\noutput : list = [2, 3, 4, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(reverse([-1, 3, -2, 0])),9)),-4)",
    "io_inp": [
      -1,
      3,
      -2,
      0
    ],
    "io_out": [
      2,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(reverse(input)),9)),-4)"
  },
  {
    "input": "input : list = [1, 2, 4, 4, -5, -2]\noutput : list = [-14, -18, -26, -26, 10, -2]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(mul_n([1, 2, 4, 4, -5, -2],-4),5)),5))",
    "io_inp": [
      1,
      2,
      4,
      4,
      -5,
      -2
    ],
    "io_out": [
      -14,
      -18,
      -26,
      -26,
      10,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(mul_n(input,-4),5)),5))"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [18, -6, -22]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n([5, -1, -5],4),9)),1),2)",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      18,
      -6,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(mul_n(input,4),9)),1),2)"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-35, -30, -20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(sub_n([-1, -3, -4],3)),5)))",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -35,
      -30,
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(sub_n(input,3)),5)))"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [-10, -10, -9]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(add_n([-1, 0, -1],-5)))),-4)",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      -10,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(add_n(input,-5)))),-4)"
  },
  {
    "input": "input : list = [4, -1, -2, 5, 0, 1]\noutput : list = [2, -3, -4, 3, -2, -1]",
    "output": "generated_output : list = sub_n([4, -1, -2, 5, 0, 1],2)",
    "io_inp": [
      4,
      -1,
      -2,
      5,
      0,
      1
    ],
    "io_out": [
      2,
      -3,
      -4,
      3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 3, 4, -1, 5]\noutput : list = [-5, -1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([-5, 3, 4, -1, 5])",
    "io_inp": [
      -5,
      3,
      4,
      -1,
      5
    ],
    "io_out": [
      -5,
      -1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(reverse([4, -5])),-3)),-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(reverse(input)),-3)),-3)"
  },
  {
    "input": "input : list = [2, -1, 2, -1, 5, -4]\noutput : list = [1, -2, 1, -2, 4, -5]",
    "output": "generated_output : list = add_n([2, -1, 2, -1, 5, -4],-1)",
    "io_inp": [
      2,
      -1,
      2,
      -1,
      5,
      -4
    ],
    "io_out": [
      1,
      -2,
      1,
      -2,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, -5, -5, -5, -2, 1]\noutput : list = [0, 2, 6, 12, 12, 12]",
    "output": "generated_output : list = mul_n(sort_des(take(take(sub_n([0, -5, -5, -5, -2, 1],1),9),30)),-2)",
    "io_inp": [
      0,
      -5,
      -5,
      -5,
      -2,
      1
    ],
    "io_out": [
      0,
      2,
      6,
      12,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(sub_n(input,1),9),30)),-2)"
  },
  {
    "input": "input : list = [-4, 2, 0, 0]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = sort_asc(take(take(take(mul_n([-4, 2, 0, 0],1),3),20),6))",
    "io_inp": [
      -4,
      2,
      0,
      0
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(mul_n(input,1),3),20),6))"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = mul_n([0, 0, -1],-3)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 5, 2, -1, 5, 4]\noutput : list = [4, 7, 8, 9, 10, 10]",
    "output": "generated_output : list = sort_asc(take(take(take(sub_n([3, 5, 2, -1, 5, 4],-5),17),11),27))",
    "io_inp": [
      3,
      5,
      2,
      -1,
      5,
      4
    ],
    "io_out": [
      4,
      7,
      8,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sub_n(input,-5),17),11),27))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(sort_des([-2, -5]),1)),3),1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(sort_des(input),1)),3),1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n(sort_asc([0, 0]),-3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-4, -1, -4, 2, -1]\noutput : list = [-7, -7, -4, -4, -1]",
    "output": "generated_output : list = add_n(sort_asc(reverse([-4, -1, -4, 2, -1])),-3)",
    "io_inp": [
      -4,
      -1,
      -4,
      2,
      -1
    ],
    "io_out": [
      -7,
      -7,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-4, 4, -5]\noutput : list = [-9, -8, 0]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(sub_n([-4, 4, -5],4)),6)))",
    "io_inp": [
      -4,
      4,
      -5
    ],
    "io_out": [
      -9,
      -8,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(sub_n(input,4)),6)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(take(sort_des([1, -1]),15),17)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),15),17)"
  },
  {
    "input": "input : list = [-3, 4, 3, -5, 3, 0]\noutput : list = [-19, -15, -15, -3, 9, 17]",
    "output": "generated_output : list = add_n(mul_n(take(take(sort_des([-3, 4, 3, -5, 3, 0]),11),18),-4),-3)",
    "io_inp": [
      -3,
      4,
      3,
      -5,
      3,
      0
    ],
    "io_out": [
      -19,
      -15,
      -15,
      -3,
      9,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(sort_des(input),11),18),-4),-3)"
  },
  {
    "input": "input : list = [-1, -3, 5, 1, 1]\noutput : list = [-4, -6, 2, -2, -2]",
    "output": "generated_output : list = add_n([-1, -3, 5, 1, 1],-3)",
    "io_inp": [
      -1,
      -3,
      5,
      1,
      1
    ],
    "io_out": [
      -4,
      -6,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -3, 1, 5, 3, -5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(take([-3, -3, 1, 5, 3, -5],1),19),3),-4),3)",
    "io_inp": [
      -3,
      -3,
      1,
      5,
      3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(take(input,1),19),3),-4),3)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [7, -3]",
    "output": "generated_output : list = sub_n(mul_n([-2, 0],-5),3)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-5),3)"
  },
  {
    "input": "input : list = [-1, 2, -2, -3, -5, -2]\noutput : list = [-8, -4, -2, -2, 0, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc([-1, 2, -2, -3, -5, -2])),1),2)",
    "io_inp": [
      -1,
      2,
      -2,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -8,
      -4,
      -2,
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(input)),1),2)"
  },
  {
    "input": "input : list = [2, 2, 3, -2, -1]\noutput : list = [3, 2, 2, -1, -2]",
    "output": "generated_output : list = sort_des([2, 2, 3, -2, -1])",
    "io_inp": [
      2,
      2,
      3,
      -2,
      -1
    ],
    "io_out": [
      3,
      2,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2, -2, 0, -2]\noutput : list = [13, 10, 10, 4, -2]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_asc([-3, 2, -2, 0, -2]),-2),2),-3),-4)",
    "io_inp": [
      -3,
      2,
      -2,
      0,
      -2
    ],
    "io_out": [
      13,
      10,
      10,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_asc(input),-2),2),-3),-4)"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [-20, -15, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(mul_n([3, -4, -3],1))),5))",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      -20,
      -15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(mul_n(input,1))),5))"
  },
  {
    "input": "input : list = [4, 1, 2, 0, -1, 5]\noutput : list = [5, -1, 0, 2, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 2, 0, -1, 5])",
    "io_inp": [
      4,
      1,
      2,
      0,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      0,
      2,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [3, 2, -4]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(reverse([5, 4, -2])),2)))",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(reverse(input)),2)))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(add_n([0, -1],3),-5)),3),-1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(add_n(input,3),-5)),3),-1)"
  },
  {
    "input": "input : list = [4, 2, 2, 4, -1]\noutput : list = [19, 19, 11, 11, -1]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([4, 2, 2, 4, -1],4)),-3)",
    "io_inp": [
      4,
      2,
      2,
      4,
      -1
    ],
    "io_out": [
      19,
      19,
      11,
      11,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,4)),-3)"
  },
  {
    "input": "input : list = [1, -5, -4, 0, -2, 0]\noutput : list = [0, -2, 0]",
    "output": "generated_output : list = take(drop([1, -5, -4, 0, -2, 0],3),15)",
    "io_inp": [
      1,
      -5,
      -4,
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(drop(input,3),15)"
  },
  {
    "input": "input : list = [-2, -2, -4, 5]\noutput : list = [3, -6, -4]",
    "output": "generated_output : list = reverse(drop(sub_n([-2, -2, -4, 5],2),1))",
    "io_inp": [
      -2,
      -2,
      -4,
      5
    ],
    "io_out": [
      3,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(sub_n(input,2),1))"
  },
  {
    "input": "input : list = [3, -5, -4, 0]\noutput : list = [2, -6, -5, -1]",
    "output": "generated_output : list = add_n(take(add_n([3, -5, -4, 0],-2),19),1)",
    "io_inp": [
      3,
      -5,
      -4,
      0
    ],
    "io_out": [
      2,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-2),19),1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n([-4, 1],-3)))),3)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n(input,-3)))),3)"
  },
  {
    "input": "input : list = [5, -4, 5, 5]\noutput : list = [1, 10, 10, 10]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n([5, -4, 5, 5],5))))",
    "io_inp": [
      5,
      -4,
      5,
      5
    ],
    "io_out": [
      1,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(input,5))))"
  },
  {
    "input": "input : list = [3, -3, -5, 2]\noutput : list = [-15, 15, 25, -10]",
    "output": "generated_output : list = mul_n([3, -3, -5, 2],-5)",
    "io_inp": [
      3,
      -3,
      -5,
      2
    ],
    "io_out": [
      -15,
      15,
      25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [14, 11]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sort_des([3, 0]),-5),4),-2),15)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      14,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sort_des(input),-5),4),-2),15)"
  },
  {
    "input": "input : list = [5, 1, 5, 1, 1, -4]\noutput : list = [6, 2, 6, 2, 2, -3]",
    "output": "generated_output : list = sub_n([5, 1, 5, 1, 1, -4],-1)",
    "io_inp": [
      5,
      1,
      5,
      1,
      1,
      -4
    ],
    "io_out": [
      6,
      2,
      6,
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, 0, 4, -2, 5]\noutput : list = [3, 2, -1, -2, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(sort_des([1, 0, 4, -2, 5])),18),2))",
    "io_inp": [
      1,
      0,
      4,
      -2,
      5
    ],
    "io_out": [
      3,
      2,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(sort_des(input)),18),2))"
  },
  {
    "input": "input : list = [4, -5, 1, 4]\noutput : list = [4, -5, 1, 4]",
    "output": "generated_output : list = sub_n(sub_n([4, -5, 1, 4],3),-3)",
    "io_inp": [
      4,
      -5,
      1,
      4
    ],
    "io_out": [
      4,
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),-3)"
  },
  {
    "input": "input : list = [-1, 4, 0]\noutput : list = [12, 0, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(sort_asc([-1, 4, 0]))),3))",
    "io_inp": [
      -1,
      4,
      0
    ],
    "io_out": [
      12,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-12, -8]",
    "output": "generated_output : list = take(add_n(reverse(add_n(sub_n([5, 1],4),-4)),-5),32)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(sub_n(input,4),-4)),-5),32)"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [-2, 6, -3]",
    "output": "generated_output : list = add_n(add_n(reverse(take(add_n([-4, 5, -3],5),15)),1),-5)",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      -2,
      6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(add_n(input,5),15)),1),-5)"
  },
  {
    "input": "input : list = [-1, 5, 0, 3, 0, 1]\noutput : list = [-6, -5, -5, -4, -2, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_asc([-1, 5, 0, 3, 0, 1]),24))),5)",
    "io_inp": [
      -1,
      5,
      0,
      3,
      0,
      1
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_asc(input),24))),5)"
  },
  {
    "input": "input : list = [-5, -1, -4, -2, 2]\noutput : list = [-4, -3, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(sub_n([-5, -1, -4, -2, 2],2),3))))",
    "io_inp": [
      -5,
      -1,
      -4,
      -2,
      2
    ],
    "io_out": [
      -4,
      -3,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(sub_n(input,2),3))))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [-28, -3, 22]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des([5, -5, 0]),10),-5),-3)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      -28,
      -3,
      22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(input),10),-5),-3)"
  },
  {
    "input": "input : list = [2, 4, 5, 2]\noutput : list = [30, 25, 15, 15]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(reverse([2, 4, 5, 2]))),5),-5)",
    "io_inp": [
      2,
      4,
      5,
      2
    ],
    "io_out": [
      30,
      25,
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(reverse(input))),5),-5)"
  },
  {
    "input": "input : list = [0, 1, 4, 1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(take([0, 1, 4, 1],2)),9)),-2)",
    "io_inp": [
      0,
      1,
      4,
      1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(take(input,2)),9)),-2)"
  },
  {
    "input": "input : list = [0, -4, 0, -2, 2, 0]\noutput : list = [30, 20, 10, 10, 10, 0]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sort_des([0, -4, 0, -2, 2, 0]),-2),-5)),43)",
    "io_inp": [
      0,
      -4,
      0,
      -2,
      2,
      0
    ],
    "io_out": [
      30,
      20,
      10,
      10,
      10,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sort_des(input),-2),-5)),43)"
  },
  {
    "input": "input : list = [-1, 0, 4, 0, -5, -2]\noutput : list = [-10, 10, 10, 15, 20, 35]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-1, 0, 4, 0, -5, -2],-2)),-5)",
    "io_inp": [
      -1,
      0,
      4,
      0,
      -5,
      -2
    ],
    "io_out": [
      -10,
      10,
      10,
      15,
      20,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,-2)),-5)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [26, 26]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(mul_n([3, 3],-5),2)),-1),4)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      26,
      26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(mul_n(input,-5),2)),-1),4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [2, 22]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n([3, -2],-4),2),-2),2)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      2,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(input,-4),2),-2),2)"
  },
  {
    "input": "input : list = [-5, -3, -4, 3, 5]\noutput : list = [3, -3, -24, -21, -27]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sub_n([-5, -3, -4, 3, 5],5),5)),-1),3)",
    "io_inp": [
      -5,
      -3,
      -4,
      3,
      5
    ],
    "io_out": [
      3,
      -3,
      -24,
      -21,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sub_n(input,5),5)),-1),3)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(take([2, 4, -4],1))),5))",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(take(input,1))),5))"
  },
  {
    "input": "input : list = [-4, -4, 3, 2, -2, 5]\noutput : list = [-3, 3, 6, 18, 24, 24]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(add_n([-4, -4, 3, 2, -2, 5],-5),3)),-1),3)",
    "io_inp": [
      -4,
      -4,
      3,
      2,
      -2,
      5
    ],
    "io_out": [
      -3,
      3,
      6,
      18,
      24,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(add_n(input,-5),3)),-1),3)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-15, -3]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(sub_n([-3, 3],-5),-2),19)),1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -15,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(sub_n(input,-5),-2),19)),1)"
  },
  {
    "input": "input : list = [4, -2, 2, -5]\noutput : list = [1, -3, -6]",
    "output": "generated_output : list = take(take(sort_des(add_n(drop([4, -2, 2, -5],1),-1)),33),33)",
    "io_inp": [
      4,
      -2,
      2,
      -5
    ],
    "io_out": [
      1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(drop(input,1),-1)),33),33)"
  },
  {
    "input": "input : list = [5, -5, -3, 2, 3, 2]\noutput : list = [-7, 13, 9, -1, -3, -1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(reverse([5, -5, -3, 2, 3, 2]),24),-2)),-3)",
    "io_inp": [
      5,
      -5,
      -3,
      2,
      3,
      2
    ],
    "io_out": [
      -7,
      13,
      9,
      -1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(reverse(input),24),-2)),-3)"
  },
  {
    "input": "input : list = [1, -3, 0, 2, 1, 0]\noutput : list = [-6, -3, -3, -2, -2, -1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_des(add_n([1, -3, 0, 2, 1, 0],-3)))))",
    "io_inp": [
      1,
      -3,
      0,
      2,
      1,
      0
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_des(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [-1, -5, 3, 5, -2, 3]\noutput : list = [7, 5, 5, 1, 0, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_des([-1, -5, 3, 5, -2, 3])))),-2)",
    "io_inp": [
      -1,
      -5,
      3,
      5,
      -2,
      3
    ],
    "io_out": [
      7,
      5,
      5,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [0, 1, 0, 5]\noutput : list = [11, 7, 6, 6]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(sub_n([0, 1, 0, 5],-3),-3))),15)",
    "io_inp": [
      0,
      1,
      0,
      5
    ],
    "io_out": [
      11,
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(sub_n(input,-3),-3))),15)"
  },
  {
    "input": "input : list = [5, -2, -5, -2, 0, 2]\noutput : list = [5, -2, -5, -2]",
    "output": "generated_output : list = take([5, -2, -5, -2, 0, 2],4)",
    "io_inp": [
      5,
      -2,
      -5,
      -2,
      0,
      2
    ],
    "io_out": [
      5,
      -2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-8, -16]",
    "output": "generated_output : list = mul_n(sort_des([-2, -4]),4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [0, 2, 0, 5, 5]\noutput : list = [-1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(drop([0, 2, 0, 5, 5],1))),-1))",
    "io_inp": [
      0,
      2,
      0,
      5,
      5
    ],
    "io_out": [
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(drop(input,1))),-1))"
  },
  {
    "input": "input : list = [-1, -3, 2, 4, -5, 3]\noutput : list = [0, -2, 3, 5, -4, 4]",
    "output": "generated_output : list = add_n(take(sub_n([-1, -3, 2, 4, -5, 3],-4),28),-3)",
    "io_inp": [
      -1,
      -3,
      2,
      4,
      -5,
      3
    ],
    "io_out": [
      0,
      -2,
      3,
      5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-4),28),-3)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [30]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(take([3, 1, 5],1))),-3),5)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(take(input,1))),-3),5)"
  },
  {
    "input": "input : list = [-3, -5, 4, -2, 0]\noutput : list = [-50, -30, -20, 0, 40]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([-3, -5, 4, -2, 0],-5),-2))",
    "io_inp": [
      -3,
      -5,
      4,
      -2,
      0
    ],
    "io_out": [
      -50,
      -30,
      -20,
      0,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,-5),-2))"
  },
  {
    "input": "input : list = [-2, -2, -5, -1, -2]\noutput : list = [2, 2, 5, 1, 2]",
    "output": "generated_output : list = mul_n([-2, -2, -5, -1, -2],-1)",
    "io_inp": [
      -2,
      -2,
      -5,
      -1,
      -2
    ],
    "io_out": [
      2,
      2,
      5,
      1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -3, 1, 5, 5, -3]\noutput : list = [-9, -5, -1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(drop([-1, -3, 1, 5, 5, -3],2),1),5))",
    "io_inp": [
      -1,
      -3,
      1,
      5,
      5,
      -3
    ],
    "io_out": [
      -9,
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(drop(input,2),1),5))"
  },
  {
    "input": "input : list = [-4, -2, 1, 5, 2, 3]\noutput : list = [16, 8, -4, -20, -8, -12]",
    "output": "generated_output : list = mul_n([-4, -2, 1, 5, 2, 3],-4)",
    "io_inp": [
      -4,
      -2,
      1,
      5,
      2,
      3
    ],
    "io_out": [
      16,
      8,
      -4,
      -20,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 1, -4, 2, 1]\noutput : list = [-4, -4, 1, 1, 2]",
    "output": "generated_output : list = take(sort_asc([-4, 1, -4, 2, 1]),23)",
    "io_inp": [
      -4,
      1,
      -4,
      2,
      1
    ],
    "io_out": [
      -4,
      -4,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),23)"
  },
  {
    "input": "input : list = [-1, 4, 5, 0, -1, -3]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-1, 4, 5, 0, -1, -3],2)))",
    "io_inp": [
      -1,
      4,
      5,
      0,
      -1,
      -3
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [-1, -4, 0, 1, 4]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take([-1, -4, 0, 1, 4],1))),-1)",
    "io_inp": [
      -1,
      -4,
      0,
      1,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(input,1))),-1)"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [2, 6, 9]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des(sub_n([-2, 5, 2],-4))),11))",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      2,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(sub_n(input,-4))),11))"
  },
  {
    "input": "input : list = [5, 0, -5, -2, -5, -5]\noutput : list = [-1, -3, -6, -6, -6]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(drop([5, 0, -5, -2, -5, -5],1)),18)),-1)",
    "io_inp": [
      5,
      0,
      -5,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -1,
      -3,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(drop(input,1)),18)),-1)"
  },
  {
    "input": "input : list = [-3, -5, -3, -4, 4]\noutput : list = [50, 40, 30, 30, -40]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(mul_n([-3, -5, -3, -4, 4],2),20),-5)))",
    "io_inp": [
      -3,
      -5,
      -3,
      -4,
      4
    ],
    "io_out": [
      50,
      40,
      30,
      30,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(mul_n(input,2),20),-5)))"
  },
  {
    "input": "input : list = [-3, 5, 3, 0, 1, 0]\noutput : list = [1, 4, 4, 5, 7, 9]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(sort_des([-3, 5, 3, 0, 1, 0])),4)),17)",
    "io_inp": [
      -3,
      5,
      3,
      0,
      1,
      0
    ],
    "io_out": [
      1,
      4,
      4,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(sort_des(input)),4)),17)"
  },
  {
    "input": "input : list = [4, -4, 5, -4, -5, -4]\noutput : list = [-6, -3, -3, -3, 24]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(drop([4, -4, 5, -4, -5, -4],1),-3),3),23))",
    "io_inp": [
      4,
      -4,
      5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -3,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(drop(input,1),-3),3),23))"
  },
  {
    "input": "input : list = [-3, -3, 3, -3, -5, 1]\noutput : list = [0, 120, 360, 360, 360, 480]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(add_n([-3, -3, 3, -3, -5, 1],-3)),-5),3),4)",
    "io_inp": [
      -3,
      -3,
      3,
      -3,
      -5,
      1
    ],
    "io_out": [
      0,
      120,
      360,
      360,
      360,
      480
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(add_n(input,-3)),-5),3),4)"
  },
  {
    "input": "input : list = [0, -3, -1, 5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = take(add_n(take([0, -3, -1, 5],2),-2),7)",
    "io_inp": [
      0,
      -3,
      -1,
      5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,2),-2),7)"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [-6, -13, -13]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(reverse([-5, -5, 2])),4)),4)",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      -6,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(reverse(input)),4)),4)"
  },
  {
    "input": "input : list = [3, 0, 4, -4, 0]\noutput : list = [3, 0, 4, -4, 0]",
    "output": "generated_output : list = add_n(sub_n([3, 0, 4, -4, 0],1),1)",
    "io_inp": [
      3,
      0,
      4,
      -4,
      0
    ],
    "io_out": [
      3,
      0,
      4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),1)"
  },
  {
    "input": "input : list = [-2, -1, -5, -2, -4]\noutput : list = [-3, -2, -2, 0, 1]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(mul_n([-2, -1, -5, -2, -4],-1),26),-4)),1)",
    "io_inp": [
      -2,
      -1,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(mul_n(input,-1),26),-4)),1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc([-3, 1]),10),-2)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),10),-2)"
  },
  {
    "input": "input : list = [2, -4, -4, -4, -4]\noutput : list = [-14, -14]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(drop([2, -4, -4, -4, -4],3),4)),2))",
    "io_inp": [
      2,
      -4,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -14,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(drop(input,3),4)),2))"
  },
  {
    "input": "input : list = [2, 4, -5]\noutput : list = [3, 1, -6]",
    "output": "generated_output : list = add_n(sort_des(sub_n([2, 4, -5],5)),4)",
    "io_inp": [
      2,
      4,
      -5
    ],
    "io_out": [
      3,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,5)),4)"
  },
  {
    "input": "input : list = [-5, 4, 5, 1, -3]\noutput : list = [16, -16, -48, -40, 32]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(reverse([-5, 4, 5, 1, -3]),-1),4),-2),8)",
    "io_inp": [
      -5,
      4,
      5,
      1,
      -3
    ],
    "io_out": [
      16,
      -16,
      -48,
      -40,
      32
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(reverse(input),-1),4),-2),8)"
  },
  {
    "input": "input : list = [3, -1, -3, -1, 4]\noutput : list = [1, 0, -4, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(sub_n([3, -1, -3, -1, 4],-1),-5))),1)",
    "io_inp": [
      3,
      -1,
      -3,
      -1,
      4
    ],
    "io_out": [
      1,
      0,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(sub_n(input,-1),-5))),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des([4, -3])",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 2, -1, -1]\noutput : list = [-3, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_asc([0, 2, -1, -1]))),2))",
    "io_inp": [
      0,
      2,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [0, 0, 2, 5, -5, -3]\noutput : list = [0, 0, -4, -10, 10, 6]",
    "output": "generated_output : list = mul_n([0, 0, 2, 5, -5, -3],-2)",
    "io_inp": [
      0,
      0,
      2,
      5,
      -5,
      -3
    ],
    "io_out": [
      0,
      0,
      -4,
      -10,
      10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, -2, 5, 5]\noutput : list = [2, 2, -12, 2]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(reverse([5, -2, 5, 5]),2),1),-5),-2)",
    "io_inp": [
      5,
      -2,
      5,
      5
    ],
    "io_out": [
      2,
      2,
      -12,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(reverse(input),2),1),-5),-2)"
  },
  {
    "input": "input : list = [2, -2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = drop([2, -2, -1],1)",
    "io_inp": [
      2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [6, 4]",
    "output": "generated_output : list = reverse(sub_n([3, 5],-1))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [3, 0, -4, -5, 0]\noutput : list = [-225, 0, 0, 300, 375]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(mul_n([3, 0, -4, -5, 0],5))),3),-5)",
    "io_inp": [
      3,
      0,
      -4,
      -5,
      0
    ],
    "io_out": [
      -225,
      0,
      0,
      300,
      375
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(mul_n(input,5))),3),-5)"
  },
  {
    "input": "input : list = [-1, 2, 0]\noutput : list = [-36, -24, -32]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n(sub_n([-1, 2, 0],5),4),5),-2),5)",
    "io_inp": [
      -1,
      2,
      0
    ],
    "io_out": [
      -36,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(sub_n(input,5),4),5),-2),5)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 3, -1])",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0, -2, 3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(take([-3, 0, -2, 3],2),18))))",
    "io_inp": [
      -3,
      0,
      -2,
      3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(take(input,2),18))))"
  },
  {
    "input": "input : list = [1, -3, 4, -2, 3]\noutput : list = [6, 5, 3, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([1, -3, 4, -2, 3],-2)))",
    "io_inp": [
      1,
      -3,
      4,
      -2,
      3
    ],
    "io_out": [
      6,
      5,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-5, -2, -3, -5, 5, -5]\noutput : list = [-6, -6, -6, -4, -3, 4]",
    "output": "generated_output : list = take(add_n(sort_asc([-5, -2, -3, -5, 5, -5]),-1),18)",
    "io_inp": [
      -5,
      -2,
      -3,
      -5,
      5,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),-1),18)"
  },
  {
    "input": "input : list = [2, 0, 1, -1]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(take([2, 0, 1, -1],1)),-3),3),4)",
    "io_inp": [
      2,
      0,
      1,
      -1
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(take(input,1)),-3),3),4)"
  },
  {
    "input": "input : list = [5, 0, 4, 3, 5, 4]\noutput : list = [4, 4, 3, 3, 2, -1]",
    "output": "generated_output : list = take(sub_n(take(sort_des(sort_asc([5, 0, 4, 3, 5, 4])),16),1),38)",
    "io_inp": [
      5,
      0,
      4,
      3,
      5,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(sort_asc(input)),16),1),38)"
  },
  {
    "input": "input : list = [2, 5, -1, 1]\noutput : list = [4, -4, -8, -20]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(mul_n([2, 5, -1, 1],-4),10))))",
    "io_inp": [
      2,
      5,
      -1,
      1
    ],
    "io_out": [
      4,
      -4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(mul_n(input,-4),10))))"
  },
  {
    "input": "input : list = [-5, -3, 1, -4]\noutput : list = [1, 6, 2, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n([-5, -3, 1, -4],2)),-3)",
    "io_inp": [
      -5,
      -3,
      1,
      -4
    ],
    "io_out": [
      1,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,2)),-3)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-6, 4]",
    "output": "generated_output : list = take(add_n(take(add_n(add_n([-5, 5],1),-5),10),3),14)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(add_n(input,1),-5),10),3),14)"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [-1, 14, 20]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(add_n([-3, -5, 2],-1),1),-3),5))",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      -1,
      14,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(add_n(input,-1),1),-3),5))"
  },
  {
    "input": "input : list = [4, -4, -5, -3, -4, 1]\noutput : list = [-5, -4, -4, -3, 1, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse([4, -4, -5, -3, -4, 1])))",
    "io_inp": [
      4,
      -4,
      -5,
      -3,
      -4,
      1
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [3, 0, 3, -4]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n(take(reverse(reverse(take([3, 0, 3, -4],2))),30),-2)",
    "io_inp": [
      3,
      0,
      3,
      -4
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(take(input,2))),30),-2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sort_asc([3, 2]))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -5, 0, -3]\noutput : list = [-19, -16]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(take([-2, -5, 0, -3],2),-5),5)),-4)",
    "io_inp": [
      -2,
      -5,
      0,
      -3
    ],
    "io_out": [
      -19,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(take(input,2),-5),5)),-4)"
  },
  {
    "input": "input : list = [1, -2, -3]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = sort_des(mul_n(reverse([1, -2, -3]),1))",
    "io_inp": [
      1,
      -2,
      -3
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),1))"
  },
  {
    "input": "input : list = [2, 4, 1, -4]\noutput : list = [-48, 12, 24, 48]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_asc(mul_n([2, 4, 1, -4],-4)),5)),-3)",
    "io_inp": [
      2,
      4,
      1,
      -4
    ],
    "io_out": [
      -48,
      12,
      24,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_asc(mul_n(input,-4)),5)),-3)"
  },
  {
    "input": "input : list = [0, 3, 0, 3, -5]\noutput : list = [10, 10, 7, 7, 2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(sub_n([0, 3, 0, 3, -5],1),7),-5),-3))",
    "io_inp": [
      0,
      3,
      0,
      3,
      -5
    ],
    "io_out": [
      10,
      10,
      7,
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(sub_n(input,1),7),-5),-3))"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [-18, -27]",
    "output": "generated_output : list = mul_n(sub_n(drop([-3, 2, 5],1),-4),-3)",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      -18,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,1),-4),-3)"
  },
  {
    "input": "input : list = [2, 0, 0, -5, 1]\noutput : list = [10, 7, 4, 4, -11]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(reverse([2, 0, 0, -5, 1]),3),4),39))",
    "io_inp": [
      2,
      0,
      0,
      -5,
      1
    ],
    "io_out": [
      10,
      7,
      4,
      4,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(reverse(input),3),4),39))"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [-25, -45, -20]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n([0, -5, -1],4),5)),21)",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      -25,
      -45,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(input,4),5)),21)"
  },
  {
    "input": "input : list = [-4, 3, -5, -3]\noutput : list = [0, 1, 2, 8]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(sort_asc([-4, 3, -5, -3]),20))),-5)",
    "io_inp": [
      -4,
      3,
      -5,
      -3
    ],
    "io_out": [
      0,
      1,
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(sort_asc(input),20))),-5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([3, -1]),3))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(sub_n([-1, -3],-3))),-4),27)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(sub_n(input,-3))),-4),27)"
  },
  {
    "input": "input : list = [1, -2, 3, 1, -5, 1]\noutput : list = [-8, -4, -4, -4, 2, 8]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(reverse([1, -2, 3, 1, -5, 1])),-1),11),-2)",
    "io_inp": [
      1,
      -2,
      3,
      1,
      -5,
      1
    ],
    "io_out": [
      -8,
      -4,
      -4,
      -4,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(reverse(input)),-1),11),-2)"
  },
  {
    "input": "input : list = [1, 3, 2, 1, -1, 0]\noutput : list = [6, 8, 7, 6, 4, 5]",
    "output": "generated_output : list = add_n([1, 3, 2, 1, -1, 0],5)",
    "io_inp": [
      1,
      3,
      2,
      1,
      -1,
      0
    ],
    "io_out": [
      6,
      8,
      7,
      6,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, 1, -1, -5, -1, 5]\noutput : list = [-10, -2, 2, 2, 10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_des([-5, 1, -1, -5, -1, 5]))),-2))",
    "io_inp": [
      -5,
      1,
      -1,
      -5,
      -1,
      5
    ],
    "io_out": [
      -10,
      -2,
      2,
      2,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [0, 0, -5, 4]\noutput : list = [2, -7, -2, -2]",
    "output": "generated_output : list = add_n(take(reverse(add_n(sub_n([0, 0, -5, 4],-4),-3)),9),-3)",
    "io_inp": [
      0,
      0,
      -5,
      4
    ],
    "io_out": [
      2,
      -7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(add_n(sub_n(input,-4),-3)),9),-3)"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [-3, -2, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([-3, -2, 4])))",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [21, 9]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(add_n([-1, 3],4),3),22)))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      21,
      9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(add_n(input,4),3),22)))"
  },
  {
    "input": "input : list = [-5, -2, 3, 5]\noutput : list = [-3, 0, 5, 7]",
    "output": "generated_output : list = sub_n([-5, -2, 3, 5],-2)",
    "io_inp": [
      -5,
      -2,
      3,
      5
    ],
    "io_out": [
      -3,
      0,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, 4, 1, 3, -3, -4]\noutput : list = [4, 3, 3, 1, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(reverse([3, 4, 1, 3, -3, -4])))))",
    "io_inp": [
      3,
      4,
      1,
      3,
      -3,
      -4
    ],
    "io_out": [
      4,
      3,
      3,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [1, 3, 2, -3, -4, -3]\noutput : list = [1, 2, 2, 6, 7, 8]",
    "output": "generated_output : list = reverse(take(take(sort_des(add_n([1, 3, 2, -3, -4, -3],5)),31),14))",
    "io_inp": [
      1,
      3,
      2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      1,
      2,
      2,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(add_n(input,5)),31),14))"
  },
  {
    "input": "input : list = [0, 0, 2, -1]\noutput : list = [2, 0, 0, -1]",
    "output": "generated_output : list = sort_des([0, 0, 2, -1])",
    "io_inp": [
      0,
      0,
      2,
      -1
    ],
    "io_out": [
      2,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2, -5, 4, -2, 3]\noutput : list = [-5, -3, -2, -2, 3, 4]",
    "output": "generated_output : list = sort_asc([-3, -2, -5, 4, -2, 3])",
    "io_inp": [
      -3,
      -2,
      -5,
      4,
      -2,
      3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [75, 45, -45]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(sort_asc([5, 3, -3]),16),-5)),-3)",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      75,
      45,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(sort_asc(input),16),-5)),-3)"
  },
  {
    "input": "input : list = [2, -2, -3, 5, 5]\noutput : list = [15, 15, 9, 1, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(mul_n([2, -2, -3, 5, 5],2),5))),35)",
    "io_inp": [
      2,
      -2,
      -3,
      5,
      5
    ],
    "io_out": [
      15,
      15,
      9,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(mul_n(input,2),5))),35)"
  },
  {
    "input": "input : list = [-3, 5, -3, 1, -5]\noutput : list = [-12, 20, -12, 4, -20]",
    "output": "generated_output : list = mul_n([-3, 5, -3, 1, -5],4)",
    "io_inp": [
      -3,
      5,
      -3,
      1,
      -5
    ],
    "io_out": [
      -12,
      20,
      -12,
      4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, 3, -1, 2, 2]\noutput : list = [0, -3, -3]",
    "output": "generated_output : list = mul_n(sub_n(drop([-3, 3, -1, 2, 2],2),-1),-1)",
    "io_inp": [
      -3,
      3,
      -1,
      2,
      2
    ],
    "io_out": [
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,2),-1),-1)"
  },
  {
    "input": "input : list = [-1, 1, 1]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(sub_n([-1, 1, 1],3),16),-2)),3)",
    "io_inp": [
      -1,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(sub_n(input,3),16),-2)),3)"
  },
  {
    "input": "input : list = [2, 4, -4, 0, -1, 2]\noutput : list = [6, 12, -12, 0, -3, 6]",
    "output": "generated_output : list = mul_n([2, 4, -4, 0, -1, 2],3)",
    "io_inp": [
      2,
      4,
      -4,
      0,
      -1,
      2
    ],
    "io_out": [
      6,
      12,
      -12,
      0,
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, 3, 0, -4]\noutput : list = [3, 11, -1, -17]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n([1, 3, 0, -4],4),-1)))",
    "io_inp": [
      1,
      3,
      0,
      -4
    ],
    "io_out": [
      3,
      11,
      -1,
      -17
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(input,4),-1)))"
  },
  {
    "input": "input : list = [0, 4, -4, 1]\noutput : list = [-80, 0, 20, 80]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des([0, 4, -4, 1])),5),4)",
    "io_inp": [
      0,
      4,
      -4,
      1
    ],
    "io_out": [
      -80,
      0,
      20,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(input)),5),4)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [1, 0]",
    "output": "generated_output : list = sub_n([4, 3],3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, 1, -1, 5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = drop([-2, 1, -1, 5, 0],3)",
    "io_inp": [
      -2,
      1,
      -1,
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(add_n([5, -1],-3),-5),-3)))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(add_n(input,-3),-5),-3)))"
  },
  {
    "input": "input : list = [4, 3, -3, -5, 0, -2]\noutput : list = [-5, -3, -2, 0, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 3, -3, -5, 0, -2])",
    "io_inp": [
      4,
      3,
      -3,
      -5,
      0,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-5, -6]",
    "output": "generated_output : list = take(take(sub_n(reverse(sub_n([1, 2],5)),2),2),12)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(sub_n(input,5)),2),2),12)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [6, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(sub_n([5, -4],-3),3),9),-1))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(sub_n(input,-3),3),9),-1))"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [10, -8, 10]",
    "output": "generated_output : list = sub_n(mul_n([-4, 5, -4],-2),-2)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      10,
      -8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),-2)"
  },
  {
    "input": "input : list = [-5, -4, -4, 5]\noutput : list = [5, -4, -4, -5]",
    "output": "generated_output : list = reverse([-5, -4, -4, 5])",
    "io_inp": [
      -5,
      -4,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, -3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(drop([-2, 3, -3, -2],2))),29))",
    "io_inp": [
      -2,
      3,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(drop(input,2))),29))"
  },
  {
    "input": "input : list = [-4, 1, -2, -5, -1, 5]\noutput : list = [-11, -7, -5, -4, -2, -1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(sort_asc([-4, 1, -2, -5, -1, 5]),-5)),-1),1)",
    "io_inp": [
      -4,
      1,
      -2,
      -5,
      -1,
      5
    ],
    "io_out": [
      -11,
      -7,
      -5,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(sort_asc(input),-5)),-1),1)"
  },
  {
    "input": "input : list = [4, 4, -5, -5, 5, 3]\noutput : list = [5, 7, -3, -3, 6, 6]",
    "output": "generated_output : list = reverse(add_n([4, 4, -5, -5, 5, 3],2))",
    "io_inp": [
      4,
      4,
      -5,
      -5,
      5,
      3
    ],
    "io_out": [
      5,
      7,
      -3,
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [0, 4, 4]\noutput : list = [5, 5, 1]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(sub_n([0, 4, 4],2)),-3),19))",
    "io_inp": [
      0,
      4,
      4
    ],
    "io_out": [
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(sub_n(input,2)),-3),19))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-63, -123]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n([2, 4],-2),5),3),3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -63,
      -123
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(input,-2),5),3),3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_des([1, 4])))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [2, 1, 0, 1]\noutput : list = [-2, -3, -3, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(mul_n([2, 1, 0, 1],-1))),-1),-1)",
    "io_inp": [
      2,
      1,
      0,
      1
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(mul_n(input,-1))),-1),-1)"
  },
  {
    "input": "input : list = [-1, -1, 2, 5, 1, 5]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(drop(sort_asc(mul_n(add_n([-1, -1, 2, 5, 1, 5],-4),1)),5))",
    "io_inp": [
      -1,
      -1,
      2,
      5,
      1,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_asc(mul_n(add_n(input,-4),1)),5))"
  },
  {
    "input": "input : list = [5, 1, 2, 3]\noutput : list = [33]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(take([5, 1, 2, 3],1),6),5),-4),4)",
    "io_inp": [
      5,
      1,
      2,
      3
    ],
    "io_out": [
      33
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(take(input,1),6),5),-4),4)"
  },
  {
    "input": "input : list = [3, -3, 2, 0, 0, 2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(drop([3, -3, 2, 0, 0, 2],4),15))),5)",
    "io_inp": [
      3,
      -3,
      2,
      0,
      0,
      2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(drop(input,4),15))),5)"
  },
  {
    "input": "input : list = [-2, 3, 5, -4]\noutput : list = [7, 5, 0, -2]",
    "output": "generated_output : list = sort_des(take(take(sort_des(add_n([-2, 3, 5, -4],2)),19),15))",
    "io_inp": [
      -2,
      3,
      5,
      -4
    ],
    "io_out": [
      7,
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(add_n(input,2)),19),15))"
  },
  {
    "input": "input : list = [-4, -5, -2, -5, -1, -4]\noutput : list = [-2, -4, -5]",
    "output": "generated_output : list = take(sort_des(take([-4, -5, -2, -5, -1, -4],3)),38)",
    "io_inp": [
      -4,
      -5,
      -2,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(input,3)),38)"
  },
  {
    "input": "input : list = [2, 3, -4, 4]\noutput : list = [-4, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse([2, 3, -4, 4]))",
    "io_inp": [
      2,
      3,
      -4,
      4
    ],
    "io_out": [
      -4,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, 1, 1, 5]\noutput : list = [1, 2, 2, 6]",
    "output": "generated_output : list = sub_n([0, 1, 1, 5],-1)",
    "io_inp": [
      0,
      1,
      1,
      5
    ],
    "io_out": [
      1,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, 3, -4, -1, -3, 0]\noutput : list = [3, 2, 0, -1, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc([2, 3, -4, -1, -3, 0]))",
    "io_inp": [
      2,
      3,
      -4,
      -1,
      -3,
      0
    ],
    "io_out": [
      3,
      2,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -4, -3, -4, -1, 4]\noutput : list = [-9, -9, -8, -9, -6, -1]",
    "output": "generated_output : list = add_n([-4, -4, -3, -4, -1, 4],-5)",
    "io_inp": [
      -4,
      -4,
      -3,
      -4,
      -1,
      4
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -9,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [6, -8]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(add_n([2, -5],1)),1),-2))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(add_n(input,1)),1),-2))"
  },
  {
    "input": "input : list = [2, -3, 0, 3, -3]\noutput : list = [2, 8, 5, 2, 7]",
    "output": "generated_output : list = add_n(add_n(take(reverse(sub_n([2, -3, 0, 3, -3],-2)),11),5),-2)",
    "io_inp": [
      2,
      -3,
      0,
      3,
      -3
    ],
    "io_out": [
      2,
      8,
      5,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(sub_n(input,-2)),11),5),-2)"
  },
  {
    "input": "input : list = [0, 3, -5, 5, -3]\noutput : list = [-12, -2, 28, 38]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(drop(add_n([0, 3, -5, 5, -3],-3),1),-5)),-2)",
    "io_inp": [
      0,
      3,
      -5,
      5,
      -3
    ],
    "io_out": [
      -12,
      -2,
      28,
      38
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(drop(add_n(input,-3),1),-5)),-2)"
  },
  {
    "input": "input : list = [-4, -1, -3, 4, 3]\noutput : list = [6, 5, 1, -1, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n([-4, -1, -3, 4, 3],1))),-2)",
    "io_inp": [
      -4,
      -1,
      -3,
      4,
      3
    ],
    "io_out": [
      6,
      5,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(input,1))),-2)"
  },
  {
    "input": "input : list = [-3, 2, 0, 4, 1]\noutput : list = [4, 2, 1, 0, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des([-3, 2, 0, 4, 1])))",
    "io_inp": [
      -3,
      2,
      0,
      4,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-5, 5, 0, 0]\noutput : list = [-6, 4, -1, -1]",
    "output": "generated_output : list = add_n([-5, 5, 0, 0],-1)",
    "io_inp": [
      -5,
      5,
      0,
      0
    ],
    "io_out": [
      -6,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 3, -2]))",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 2, -5, -1, 1]\noutput : list = [-5, -5, -1, 1, 2]",
    "output": "generated_output : list = sort_asc([-5, 2, -5, -1, 1])",
    "io_inp": [
      -5,
      2,
      -5,
      -1,
      1
    ],
    "io_out": [
      -5,
      -5,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, -4, -4, -3]\noutput : list = [-6, -10, 8, 8, 6]",
    "output": "generated_output : list = mul_n([3, 5, -4, -4, -3],-2)",
    "io_inp": [
      3,
      5,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -10,
      8,
      8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, -4, 4, -5]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(take([4, -4, 4, -5],1),1))),2)",
    "io_inp": [
      4,
      -4,
      4,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(take(input,1),1))),2)"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [-8, -16, 8]",
    "output": "generated_output : list = reverse(mul_n([2, -4, -2],4))",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -16,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [-2, 1, 3, -3, 0, 5]\noutput : list = [6, 8, 2, 5, 10]",
    "output": "generated_output : list = sub_n(drop([-2, 1, 3, -3, 0, 5],1),-5)",
    "io_inp": [
      -2,
      1,
      3,
      -3,
      0,
      5
    ],
    "io_out": [
      6,
      8,
      2,
      5,
      10
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc([-5, -4]),2),3))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(input),2),3))"
  },
  {
    "input": "input : list = [-3, -4, -3, 0]\noutput : list = [-6, -9, -9, -10]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sub_n(add_n([-3, -4, -3, 0],-3),2),-1)))",
    "io_inp": [
      -3,
      -4,
      -3,
      0
    ],
    "io_out": [
      -6,
      -9,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sub_n(add_n(input,-3),2),-1)))"
  },
  {
    "input": "input : list = [5, 0, 3, 4, -1]\noutput : list = [8, 10, 16, 18, 20]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(reverse([5, 0, 3, 4, -1])),5),2))",
    "io_inp": [
      5,
      0,
      3,
      4,
      -1
    ],
    "io_out": [
      8,
      10,
      16,
      18,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(reverse(input)),5),2))"
  },
  {
    "input": "input : list = [0, -5, 1, 1, 2, 1]\noutput : list = [4, -1, -2, -2, -2, -3]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(mul_n([0, -5, 1, 1, 2, 1],-1)),-5),-4))",
    "io_inp": [
      0,
      -5,
      1,
      1,
      2,
      1
    ],
    "io_out": [
      4,
      -1,
      -2,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(mul_n(input,-1)),-5),-4))"
  },
  {
    "input": "input : list = [3, -5, -2, 1, 1]\noutput : list = [3, 1, 1, -2, -5]",
    "output": "generated_output : list = sort_des([3, -5, -2, 1, 1])",
    "io_inp": [
      3,
      -5,
      -2,
      1,
      1
    ],
    "io_out": [
      3,
      1,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, -2, 4, 4]\noutput : list = [-12, 20, 16, -8, -8]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(sub_n([5, -3, -2, 4, 4],2),5),-4),1),1)",
    "io_inp": [
      5,
      -3,
      -2,
      4,
      4
    ],
    "io_out": [
      -12,
      20,
      16,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(sub_n(input,2),5),-4),1),1)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 3, 2]\noutput : list = [-8, -12, -20, -24, -36, -40]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n([-5, -4, 0, -1, 3, 2],5)))),4)",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      3,
      2
    ],
    "io_out": [
      -8,
      -12,
      -20,
      -24,
      -36,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n(input,5)))),4)"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(take([0, -1, 0],1),2),-1),19))",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(take(input,1),2),-1),19))"
  },
  {
    "input": "input : list = [-5, -3, -3, 0]\noutput : list = [0, 12]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(drop([-5, -3, -3, 0],2),5),18),-4))",
    "io_inp": [
      -5,
      -3,
      -3,
      0
    ],
    "io_out": [
      0,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(drop(input,2),5),18),-4))"
  },
  {
    "input": "input : list = [2, 4, 0, 3, 0]\noutput : list = [1, 0, -1, -3, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(add_n([2, 4, 0, 3, 0],-3),1))),13)",
    "io_inp": [
      2,
      4,
      0,
      3,
      0
    ],
    "io_out": [
      1,
      0,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(add_n(input,-3),1))),13)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-6, -8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(mul_n([-1, -2],-2),5)),-4),1)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(mul_n(input,-2),5)),-4),1)"
  },
  {
    "input": "input : list = [-5, 5, -4, -1, 3]\noutput : list = [-10, 0, -9, -6, -2]",
    "output": "generated_output : list = take(sub_n([-5, 5, -4, -1, 3],5),21)",
    "io_inp": [
      -5,
      5,
      -4,
      -1,
      3
    ],
    "io_out": [
      -10,
      0,
      -9,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),21)"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(take([0, 3, 0],1),-5),5)))",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(take(input,1),-5),5)))"
  },
  {
    "input": "input : list = [-2, -3, 0, 5, 2]\noutput : list = [0, 3, 8, 5]",
    "output": "generated_output : list = add_n(drop([-2, -3, 0, 5, 2],1),3)",
    "io_inp": [
      -2,
      -3,
      0,
      5,
      2
    ],
    "io_out": [
      0,
      3,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [3, -4, -5, 5, 0]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = take([3, -4, -5, 5, 0],3)",
    "io_inp": [
      3,
      -4,
      -5,
      5,
      0
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [4, -2]",
    "output": "generated_output : list = add_n(reverse([-5, 1]),3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sub_n(add_n([-5, 1],2),4)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-3, -7]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sort_des([0, -4]),-3))))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [12, 12, -2]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(sort_asc([4, -3, -3])),-3),-2))",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      12,
      12,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(sort_asc(input)),-3),-2))"
  },
  {
    "input": "input : list = [-2, -4, 4, -1, -2]\noutput : list = [-13, -11, -11, -10, -5]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc([-2, -4, 4, -1, -2]),4),3),3),5)",
    "io_inp": [
      -2,
      -4,
      4,
      -1,
      -2
    ],
    "io_out": [
      -13,
      -11,
      -11,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc(input),4),3),3),5)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [9, 5, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(sort_des([-3, -2, 2]),5))),-2)",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      9,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(sort_des(input),5))),-2)"
  },
  {
    "input": "input : list = [5, -4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = drop([5, -4, 0],1)",
    "io_inp": [
      5,
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 5, 0, 2]\noutput : list = [0, -6, -6, -15]",
    "output": "generated_output : list = mul_n(sort_asc([2, 5, 0, 2]),-3)",
    "io_inp": [
      2,
      5,
      0,
      2
    ],
    "io_out": [
      0,
      -6,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [1, 4, -5, -2, 2, -5]\noutput : list = [4, 2, 1, -2, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des([1, 4, -5, -2, 2, -5]))",
    "io_inp": [
      1,
      4,
      -5,
      -2,
      2,
      -5
    ],
    "io_out": [
      4,
      2,
      1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, -2, 0, 0, -2, 2]\noutput : list = [1, -6, -4, -4, -6, -2]",
    "output": "generated_output : list = add_n([5, -2, 0, 0, -2, 2],-4)",
    "io_inp": [
      5,
      -2,
      0,
      0,
      -2,
      2
    ],
    "io_out": [
      1,
      -6,
      -4,
      -4,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(reverse(drop([-5, 4, -2],1))),1))",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(reverse(drop(input,1))),1))"
  },
  {
    "input": "input : list = [0, -4, -5, 3, -1]\noutput : list = [3, 7]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(drop([0, -4, -5, 3, -1],3)),4),22))",
    "io_inp": [
      0,
      -4,
      -5,
      3,
      -1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(drop(input,3)),4),22))"
  },
  {
    "input": "input : list = [-1, 1, -3, -5]\noutput : list = [1, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([-1, 1, -3, -5]))",
    "io_inp": [
      -1,
      1,
      -3,
      -5
    ],
    "io_out": [
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, 4, -5, 4]\noutput : list = [20, 20, -25, 20]",
    "output": "generated_output : list = mul_n([4, 4, -5, 4],5)",
    "io_inp": [
      4,
      4,
      -5,
      4
    ],
    "io_out": [
      20,
      20,
      -25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [8, 8]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(add_n([5, 5],-2)),3),2),27)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(add_n(input,-2)),3),2),27)"
  },
  {
    "input": "input : list = [-4, 0, 3, 0, 3, -4]\noutput : list = [-6, -6, 2, 2, 8, 8]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_des(mul_n([-4, 0, 3, 0, 3, -4],-1)),-2),-4),2)",
    "io_inp": [
      -4,
      0,
      3,
      0,
      3,
      -4
    ],
    "io_out": [
      -6,
      -6,
      2,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_des(mul_n(input,-1)),-2),-4),2)"
  },
  {
    "input": "input : list = [-2, -1, -5, -1, -1]\noutput : list = [-1, -5, -1, -1]",
    "output": "generated_output : list = drop([-2, -1, -5, -1, -1],1)",
    "io_inp": [
      -2,
      -1,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3, 3, -1, 3]\noutput : list = [-8, -7, -4, -4, -4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_des([0, 3, 3, -1, 3]),-2),5)))",
    "io_inp": [
      0,
      3,
      3,
      -1,
      3
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_des(input),-2),5)))"
  },
  {
    "input": "input : list = [2, -5, 4, 5]\noutput : list = [-2, 5, -4, -5]",
    "output": "generated_output : list = mul_n([2, -5, 4, 5],-1)",
    "io_inp": [
      2,
      -5,
      4,
      5
    ],
    "io_out": [
      -2,
      5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, 4, 4, 0, 2, 3]\noutput : list = [-1, -1, -1, -5, -3, -2]",
    "output": "generated_output : list = take(add_n(sub_n([4, 4, 4, 0, 2, 3],4),-1),9)",
    "io_inp": [
      4,
      4,
      4,
      0,
      2,
      3
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,4),-1),9)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(mul_n([-3, 5],1),-1),-1),1))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(mul_n(input,1),-1),-1),1))"
  },
  {
    "input": "input : list = [-4, 0, 0, 3]\noutput : list = [7, -2, -2, -14]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_asc(mul_n([-4, 0, 0, 3],3)),19)),2)",
    "io_inp": [
      -4,
      0,
      0,
      3
    ],
    "io_out": [
      7,
      -2,
      -2,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_asc(mul_n(input,3)),19)),2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des([4, 5])",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 2, -2, -3, 5]\noutput : list = [8, 6, -2, -6, -8]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sub_n([4, 2, -2, -3, 5],-1))),-2),4)",
    "io_inp": [
      4,
      2,
      -2,
      -3,
      5
    ],
    "io_out": [
      8,
      6,
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sub_n(input,-1))),-2),4)"
  },
  {
    "input": "input : list = [-1, -1, 5, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(take([-1, -1, 5, 0],2)))),-3)",
    "io_inp": [
      -1,
      -1,
      5,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(take(input,2)))),-3)"
  },
  {
    "input": "input : list = [-5, 3, -3]\noutput : list = [-28, -4, 4]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(add_n([-5, 3, -3],4)),-2)),2)",
    "io_inp": [
      -5,
      3,
      -3
    ],
    "io_out": [
      -28,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(add_n(input,4)),-2)),2)"
  },
  {
    "input": "input : list = [4, -1, -3, 5]\noutput : list = [24, 20, 10, 8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sub_n([4, -1, -3, 5],5),4))),-2)",
    "io_inp": [
      4,
      -1,
      -3,
      5
    ],
    "io_out": [
      24,
      20,
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sub_n(input,5),4))),-2)"
  },
  {
    "input": "input : list = [-2, -1, 4, 2]\noutput : list = [-40, -20, 40, 80]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(reverse([-2, -1, 4, 2])),1),-5),-4)",
    "io_inp": [
      -2,
      -1,
      4,
      2
    ],
    "io_out": [
      -40,
      -20,
      40,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(reverse(input)),1),-5),-4)"
  },
  {
    "input": "input : list = [-2, 4, 0, 0, 3]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(drop(sort_des(reverse([-2, 4, 0, 0, 3])),2)),-1)",
    "io_inp": [
      -2,
      4,
      0,
      0,
      3
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(sort_des(reverse(input)),2)),-1)"
  },
  {
    "input": "input : list = [-5, -1, -2]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n([-5, -1, -2],-5),10)))",
    "io_inp": [
      -5,
      -1,
      -2
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(input,-5),10)))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-35, -5]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(sort_asc([1, -5]),2),5)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -35,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(sort_asc(input),2),5)))"
  },
  {
    "input": "input : list = [0, 3, -1, -2, 5, -3]\noutput : list = [5, 3, 0, -1, -2, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc([0, 3, -1, -2, 5, -3])))))",
    "io_inp": [
      0,
      3,
      -1,
      -2,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [102]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take([-5, -4, 1],1),-5),4),-2)",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      102
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(input,1),-5),4),-2)"
  },
  {
    "input": "input : list = [5, 0, -5, -4, -2]\noutput : list = [5, 0, -2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([5, 0, -5, -4, -2]))",
    "io_inp": [
      5,
      0,
      -5,
      -4,
      -2
    ],
    "io_out": [
      5,
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(take([-5, 2, 4],1)),-2),-2),-2)",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(take(input,1)),-2),-2),-2)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(sort_asc([0, -2])))))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-3, 12, 21]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n([4, -1, -4],3)),-3))",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -3,
      12,
      21
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(input,3)),-3))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(reverse(sort_asc([4, 0])),10)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),10)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n([1, 0],-5))),2))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n(input,-5))),2))"
  },
  {
    "input": "input : list = [-3, -1, 3, 0, -1]\noutput : list = [9, 3, -9, 0, 3]",
    "output": "generated_output : list = mul_n([-3, -1, 3, 0, -1],-3)",
    "io_inp": [
      -3,
      -1,
      3,
      0,
      -1
    ],
    "io_out": [
      9,
      3,
      -9,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 1, -2, -2]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(drop([-2, 1, -2, -2],2),5),24),-1),-1)",
    "io_inp": [
      -2,
      1,
      -2,
      -2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(drop(input,2),5),24),-1),-1)"
  },
  {
    "input": "input : list = [2, 3, 5, 5, -5]\noutput : list = [7, 7, 5, 4, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(add_n(reverse([2, 3, 5, 5, -5]),2)),1))",
    "io_inp": [
      2,
      3,
      5,
      5,
      -5
    ],
    "io_out": [
      7,
      7,
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(add_n(reverse(input),2)),1))"
  },
  {
    "input": "input : list = [-2, 2, 2, -3, 1]\noutput : list = [-6, -11, -7]",
    "output": "generated_output : list = add_n(add_n(take(drop([-2, 2, 2, -3, 1],2),16),-3),-5)",
    "io_inp": [
      -2,
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      -6,
      -11,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(drop(input,2),16),-3),-5)"
  },
  {
    "input": "input : list = [-2, 1, 1, 2, 5, -4]\noutput : list = [-1, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(take([-2, 1, 1, 2, 5, -4],4),22),3)))",
    "io_inp": [
      -2,
      1,
      1,
      2,
      5,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(take(input,4),22),3)))"
  },
  {
    "input": "input : list = [-5, -4, 4, 4, 3]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(drop([-5, -4, 4, 4, 3],2),3),5),-1),5)",
    "io_inp": [
      -5,
      -4,
      4,
      4,
      3
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(drop(input,2),3),5),-1),5)"
  },
  {
    "input": "input : list = [-2, 3, 2, 0, 3, -1]\noutput : list = [6, 3, 2]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(drop([-2, 3, 2, 0, 3, -1],3)),-3)),34)",
    "io_inp": [
      -2,
      3,
      2,
      0,
      3,
      -1
    ],
    "io_out": [
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(drop(input,3)),-3)),34)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-22, 8]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(sort_des([-2, 4]),-5)),-3),1)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -22,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(sort_des(input),-5)),-3),1)"
  },
  {
    "input": "input : list = [-4, 5, 5, -1, -5, -3]\noutput : list = [-3, -2, -1, 1, 7, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sub_n([-4, 5, 5, -1, -5, -3],-2)))))",
    "io_inp": [
      -4,
      5,
      5,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [2, -5, 3, 2, -3]\noutput : list = [3, 2, 2, -3, -5]",
    "output": "generated_output : list = sort_des(reverse([2, -5, 3, 2, -3]))",
    "io_inp": [
      2,
      -5,
      3,
      2,
      -3
    ],
    "io_out": [
      3,
      2,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(reverse([1, 4, 2])))),-3)",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [-10, -2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(drop([-1, 3, -5],1),-5),-5),5))",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(drop(input,1),-5),-5),5))"
  },
  {
    "input": "input : list = [-5, 5, -2]\noutput : list = [-7, 3, -4]",
    "output": "generated_output : list = sub_n(add_n([-5, 5, -2],-1),1)",
    "io_inp": [
      -5,
      5,
      -2
    ],
    "io_out": [
      -7,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),1)"
  },
  {
    "input": "input : list = [1, 5, 0, 0, -1, 1]\noutput : list = [-7, -13]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(drop([1, 5, 0, 0, -1, 1],4),3),-5),5))",
    "io_inp": [
      1,
      5,
      0,
      0,
      -1,
      1
    ],
    "io_out": [
      -7,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(drop(input,4),3),-5),5))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take(mul_n(take(add_n([-1, 5],-2),2),1),23)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(take(add_n(input,-2),2),1),23)"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [-9, 0, 12]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(mul_n([0, -3, 4],3),-1),1)),-2)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      -9,
      0,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(mul_n(input,3),-1),1)),-2)"
  },
  {
    "input": "input : list = [-2, -3, 3, 5, -2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_des(reverse(drop(drop([-2, -3, 3, 5, -2],2),2))))",
    "io_inp": [
      -2,
      -3,
      3,
      5,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(drop(drop(input,2),2))))"
  },
  {
    "input": "input : list = [-4, 4, -5, 2, -4]\noutput : list = [0, 6, -1, 8, 0]",
    "output": "generated_output : list = add_n(add_n(take(add_n(reverse([-4, 4, -5, 2, -4]),-5),13),5),4)",
    "io_inp": [
      -4,
      4,
      -5,
      2,
      -4
    ],
    "io_out": [
      0,
      6,
      -1,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(reverse(input),-5),13),5),4)"
  },
  {
    "input": "input : list = [4, 4, 5, -4, -4, -1]\noutput : list = [-20]",
    "output": "generated_output : list = add_n(take(take(take(mul_n([4, 4, 5, -4, -4, -1],-4),6),3),1),-4)",
    "io_inp": [
      4,
      4,
      5,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = add_n(take(take(take(mul_n(input,-4),6),3),1),-4)"
  },
  {
    "input": "input : list = [-5, -5, 2, 0, -2]\noutput : list = [-10, -10, -7, -5, -3]",
    "output": "generated_output : list = reverse(add_n(sort_des([-5, -5, 2, 0, -2]),-5))",
    "io_inp": [
      -5,
      -5,
      2,
      0,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -7,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-1, -3, 0, 5]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take([-1, -3, 0, 5],2)",
    "io_inp": [
      -1,
      -3,
      0,
      5
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 2, -4, 1, -3, -4]\noutput : list = [-4, -4, -3, -3, 1, 2]",
    "output": "generated_output : list = reverse(sort_des([-3, 2, -4, 1, -3, -4]))",
    "io_inp": [
      -3,
      2,
      -4,
      1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 5, -2]\noutput : list = [0, 14]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(drop([-4, 5, -2],1)),2),2))",
    "io_inp": [
      -4,
      5,
      -2
    ],
    "io_out": [
      0,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(drop(input,1)),2),2))"
  },
  {
    "input": "input : list = [5, 3, -5, -5]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(take([5, 3, -5, -5],1)),10)),1)",
    "io_inp": [
      5,
      3,
      -5,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(take(input,1)),10)),1)"
  },
  {
    "input": "input : list = [3, -4, -4, 0, 1]\noutput : list = [-4, -4, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, -4, -4, 0, 1]))",
    "io_inp": [
      3,
      -4,
      -4,
      0,
      1
    ],
    "io_out": [
      -4,
      -4,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(sub_n([1, 4],-1))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-5, -4, -4, 5, 0]\noutput : list = [2, -3, -7, -7, -8]",
    "output": "generated_output : list = take(sort_des(add_n([-5, -4, -4, 5, 0],-3)),5)",
    "io_inp": [
      -5,
      -4,
      -4,
      5,
      0
    ],
    "io_out": [
      2,
      -3,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-3)),5)"
  },
  {
    "input": "input : list = [3, 1, -5, -1, -4]\noutput : list = [48, 12, 60, -12, -36]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(reverse([3, 1, -5, -1, -4]),-3),4),1),35)",
    "io_inp": [
      3,
      1,
      -5,
      -1,
      -4
    ],
    "io_out": [
      48,
      12,
      60,
      -12,
      -36
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(reverse(input),-3),4),1),35)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [5]",
    "output": "generated_output : list = drop(sort_des(sub_n(add_n(sort_asc([-4, 1]),5),-4)),1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(add_n(sort_asc(input),5),-4)),1)"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [-4, -2, 3]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_asc([5, 0, -2]),3),-3),1),5)",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_asc(input),3),-3),1),5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [32, -4]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sort_asc([4, -5]),3))),-4)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      32,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sort_asc(input),3))),-4)"
  },
  {
    "input": "input : list = [-5, -5, 5, 5, 5, -3]\noutput : list = [-2, -2, -2, 6, 8, 8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(add_n([-5, -5, 5, 5, 5, -3],-5),1),3)),-1)",
    "io_inp": [
      -5,
      -5,
      5,
      5,
      5,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(add_n(input,-5),1),3)),-1)"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = drop([-1, -4, 3],1)",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -2, -2, -3, -2]\noutput : list = [21, 19]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(drop([-5, -2, -2, -3, -2],3),-1),-5),-2),3)",
    "io_inp": [
      -5,
      -2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      21,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(drop(input,3),-1),-5),-2),3)"
  },
  {
    "input": "input : list = [1, -5, 1, -4]\noutput : list = [-2, -1, 4, 4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(reverse([1, -5, 1, -4]),-5),-5)),3)",
    "io_inp": [
      1,
      -5,
      1,
      -4
    ],
    "io_out": [
      -2,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(reverse(input),-5),-5)),3)"
  },
  {
    "input": "input : list = [-2, 4, 2, 1]\noutput : list = [8, -1, -4, -10]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(add_n([-2, 4, 2, 1],-1),-3)),-2),3)",
    "io_inp": [
      -2,
      4,
      2,
      1
    ],
    "io_out": [
      8,
      -1,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(add_n(input,-1),-3)),-2),3)"
  },
  {
    "input": "input : list = [5, -1, -4, 5]\noutput : list = [5, -4, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -4, 5])",
    "io_inp": [
      5,
      -1,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, 1, -2, 0]\noutput : list = [6, 8, 9, 9, 13]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(sub_n([5, 1, 1, -2, 0],-5)),1),-2),25)",
    "io_inp": [
      5,
      1,
      1,
      -2,
      0
    ],
    "io_out": [
      6,
      8,
      9,
      9,
      13
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(sub_n(input,-5)),1),-2),25)"
  },
  {
    "input": "input : list = [-2, -2, -2, -4]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sub_n(drop([-2, -2, -2, -4],2),2)",
    "io_inp": [
      -2,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),2)"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [0, 1, -2]",
    "output": "generated_output : list = add_n([-3, -2, -5],3)",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      0,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des([2, -2])",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 1, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 1, 1, 0],1)",
    "io_inp": [
      -1,
      1,
      1,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 3, 5, 4, -3, -5]\noutput : list = [32, 28, 24, 16, 0, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(sub_n([1, 3, 5, 4, -3, -5],-3),28))),4)",
    "io_inp": [
      1,
      3,
      5,
      4,
      -3,
      -5
    ],
    "io_out": [
      32,
      28,
      24,
      16,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(sub_n(input,-3),28))),4)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(sort_des([0, 2]))),-2))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [0, 5, 0, 1, -1, 3]\noutput : list = [0, 20, 0, 4, -4, 12]",
    "output": "generated_output : list = mul_n([0, 5, 0, 1, -1, 3],4)",
    "io_inp": [
      0,
      5,
      0,
      1,
      -1,
      3
    ],
    "io_out": [
      0,
      20,
      0,
      4,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 3, 2, -2, 4]\noutput : list = [0, -1, -2, -6, -9]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(add_n([-5, 3, 2, -2, 4],-4),10))))",
    "io_inp": [
      -5,
      3,
      2,
      -2,
      4
    ],
    "io_out": [
      0,
      -1,
      -2,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(add_n(input,-4),10))))"
  },
  {
    "input": "input : list = [-4, 1, 0, -3, -3]\noutput : list = [12, 12, 24, 28, 8]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sub_n([-4, 1, 0, -3, -3],-3),3),2)),2)",
    "io_inp": [
      -4,
      1,
      0,
      -3,
      -3
    ],
    "io_out": [
      12,
      12,
      24,
      28,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sub_n(input,-3),3),2)),2)"
  },
  {
    "input": "input : list = [-2, -5, 2, 1, -1, -2]\noutput : list = [-5, -2, -2, -1, 1, 2]",
    "output": "generated_output : list = sort_asc([-2, -5, 2, 1, -1, -2])",
    "io_inp": [
      -2,
      -5,
      2,
      1,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, 5, -1, 4]\noutput : list = [0, 3, 4, 8, 9]",
    "output": "generated_output : list = take(add_n(sort_asc([0, -4, 5, -1, 4]),4),23)",
    "io_inp": [
      0,
      -4,
      5,
      -1,
      4
    ],
    "io_out": [
      0,
      3,
      4,
      8,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),4),23)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_des([-5, -4]),5),19),5))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_des(input),5),19),5))"
  },
  {
    "input": "input : list = [-4, -3, 1, 3]\noutput : list = [-4, -3, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-4, -3, 1, 3]))",
    "io_inp": [
      -4,
      -3,
      1,
      3
    ],
    "io_out": [
      -4,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, 5, 1, 4, 0]\noutput : list = [0, 1, 3, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([3, 5, 1, 4, 0]))",
    "io_inp": [
      3,
      5,
      1,
      4,
      0
    ],
    "io_out": [
      0,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 1, 5, -4, -5]\noutput : list = [3, 2, 6, -3, -4]",
    "output": "generated_output : list = add_n([2, 1, 5, -4, -5],1)",
    "io_inp": [
      2,
      1,
      5,
      -4,
      -5
    ],
    "io_out": [
      3,
      2,
      6,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(sub_n([-2, -1],-1),3),12)))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(sub_n(input,-1),3),12)))"
  },
  {
    "input": "input : list = [-2, 3, 2, -1, 0, -2]\noutput : list = [-1, 0, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(take([-2, 3, 2, -1, 0, -2],4),-1))),-2)",
    "io_inp": [
      -2,
      3,
      2,
      -1,
      0,
      -2
    ],
    "io_out": [
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(take(input,4),-1))),-2)"
  },
  {
    "input": "input : list = [-2, 4, 1, -4, 2]\noutput : list = [2, -4, 1, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, 1, -4, 2])",
    "io_inp": [
      -2,
      4,
      1,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      1,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(reverse([-2, -2]),-2),4),4))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(reverse(input),-2),4),4))"
  },
  {
    "input": "input : list = [-5, -5, -5]\noutput : list = [20, 20, 20]",
    "output": "generated_output : list = mul_n([-5, -5, -5],-4)",
    "io_inp": [
      -5,
      -5,
      -5
    ],
    "io_out": [
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc([0, 0]),-2),-2),3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(input),-2),-2),3)"
  },
  {
    "input": "input : list = [0, 2, 1, 2, 2, 5]\noutput : list = [4, 6, 5, 6, 6, 9]",
    "output": "generated_output : list = sub_n([0, 2, 1, 2, 2, 5],-4)",
    "io_inp": [
      0,
      2,
      1,
      2,
      2,
      5
    ],
    "io_out": [
      4,
      6,
      5,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-18, -28]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(mul_n([-5, -3],5),5)),2),-5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -18,
      -28
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(mul_n(input,5),5)),2),-5)"
  },
  {
    "input": "input : list = [3, 1, 1, 2, -4, -5]\noutput : list = [0, -2, -2, -1, -7, -8]",
    "output": "generated_output : list = sub_n([3, 1, 1, 2, -4, -5],3)",
    "io_inp": [
      3,
      1,
      1,
      2,
      -4,
      -5
    ],
    "io_out": [
      0,
      -2,
      -2,
      -1,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-12, 0]",
    "output": "generated_output : list = mul_n(mul_n([-2, 0],-3),-2)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),-2)"
  },
  {
    "input": "input : list = [3, 1, 3, 1, -5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(take([3, 1, 3, 1, -5],1)),3),-3),4)",
    "io_inp": [
      3,
      1,
      3,
      1,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(take(input,1)),3),-3),4)"
  },
  {
    "input": "input : list = [-1, 2, 1, 4]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(drop(mul_n(take(drop([-1, 2, 1, 4],2),18),5),1),-1)",
    "io_inp": [
      -1,
      2,
      1,
      4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(drop(mul_n(take(drop(input,2),18),5),1),-1)"
  },
  {
    "input": "input : list = [3, 3, 2, 4, 1, 1]\noutput : list = [1, 1, 2, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([3, 3, 2, 4, 1, 1])))",
    "io_inp": [
      3,
      3,
      2,
      4,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [1, 0, -4, 5]\noutput : list = [-4, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([1, 0, -4, 5])",
    "io_inp": [
      1,
      0,
      -4,
      5
    ],
    "io_out": [
      -4,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4, -1, -3, 3]\noutput : list = [-7, -5, -1, -1, 0]",
    "output": "generated_output : list = take(sort_asc(take(add_n(reverse([3, 4, -1, -3, 3]),-4),9)),11)",
    "io_inp": [
      3,
      4,
      -1,
      -3,
      3
    ],
    "io_out": [
      -7,
      -5,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(reverse(input),-4),9)),11)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [7, -1]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(reverse([5, -3]),1),1)))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(reverse(input),1),1)))"
  },
  {
    "input": "input : list = [-3, 3, 1, -4, 5]\noutput : list = [-1, -3, -5, -9, -10]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(sub_n([-3, 3, 1, -4, 5],3))),3))",
    "io_inp": [
      -3,
      3,
      1,
      -4,
      5
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(sub_n(input,3))),3))"
  },
  {
    "input": "input : list = [2, 2, -2, 4, 5]\noutput : list = [5, 4, 2, 2, -2]",
    "output": "generated_output : list = sort_des([2, 2, -2, 4, 5])",
    "io_inp": [
      2,
      2,
      -2,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, -2, -4, 1, 2]\noutput : list = [1, 0, -3, -4, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(drop([0, -3, -2, -4, 1, 2],1)),1))",
    "io_inp": [
      0,
      -3,
      -2,
      -4,
      1,
      2
    ],
    "io_out": [
      1,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(drop(input,1)),1))"
  },
  {
    "input": "input : list = [-2, -3, 5]\noutput : list = [4, 6, -10]",
    "output": "generated_output : list = mul_n([-2, -3, 5],-2)",
    "io_inp": [
      -2,
      -3,
      5
    ],
    "io_out": [
      4,
      6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc([0, -1, 1])),25)",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),25)"
  },
  {
    "input": "input : list = [3, 0, 2, -5, -5, 2]\noutput : list = [-5, -5, 0, 2, 2, 3]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(reverse([3, 0, 2, -5, -5, 2]),1),25)),48)",
    "io_inp": [
      3,
      0,
      2,
      -5,
      -5,
      2
    ],
    "io_out": [
      -5,
      -5,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(reverse(input),1),25)),48)"
  },
  {
    "input": "input : list = [-1, 2, 5, 3, 4]\noutput : list = [-6, -3, -2, -1, 0]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(reverse([-1, 2, 5, 3, 4]))),5),5)",
    "io_inp": [
      -1,
      2,
      5,
      3,
      4
    ],
    "io_out": [
      -6,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(reverse(input))),5),5)"
  },
  {
    "input": "input : list = [-4, -2, -5, 1, -4]\noutput : list = [-5, 0]",
    "output": "generated_output : list = add_n(reverse(drop([-4, -2, -5, 1, -4],3)),-1)",
    "io_inp": [
      -4,
      -2,
      -5,
      1,
      -4
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,3)),-1)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [8, 1]",
    "output": "generated_output : list = add_n([3, -4],5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, 4, 2, 3, 3, 1]\noutput : list = [-4, -12, -12, -8, -16, 12]",
    "output": "generated_output : list = reverse(take(mul_n([-3, 4, 2, 3, 3, 1],-4),23))",
    "io_inp": [
      -3,
      4,
      2,
      3,
      3,
      1
    ],
    "io_out": [
      -4,
      -12,
      -12,
      -8,
      -16,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,-4),23))"
  },
  {
    "input": "input : list = [5, 2, 1, 3, 3]\noutput : list = [5, 3, 3, 2, 1]",
    "output": "generated_output : list = reverse(sort_asc([5, 2, 1, 3, 3]))",
    "io_inp": [
      5,
      2,
      1,
      3,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 3, 5, -2, 5]\noutput : list = [0, -7, 0, -2, -2]",
    "output": "generated_output : list = take(add_n(reverse(add_n(add_n([3, 3, 5, -2, 5],-4),-2)),1),52)",
    "io_inp": [
      3,
      3,
      5,
      -2,
      5
    ],
    "io_out": [
      0,
      -7,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(add_n(input,-4),-2)),1),52)"
  },
  {
    "input": "input : list = [3, -1, -3, -3, -1, -4]\noutput : list = [-1, 0, 0, 2, 2, 6]",
    "output": "generated_output : list = sub_n(sort_asc([3, -1, -3, -3, -1, -4]),-3)",
    "io_inp": [
      3,
      -1,
      -3,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -1,
      0,
      0,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [0, 1, 5, 4, 5, 4]\noutput : list = [0, -15, -75]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(take([0, 1, 5, 4, 5, 4],3),-5),3),4),4)",
    "io_inp": [
      0,
      1,
      5,
      4,
      5,
      4
    ],
    "io_out": [
      0,
      -15,
      -75
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(take(input,3),-5),3),4),4)"
  },
  {
    "input": "input : list = [-5, -1, -1, 2, 1]\noutput : list = [45, 9, 9, -18, -9]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n([-5, -1, -1, 2, 1],3),2),-2),-3)",
    "io_inp": [
      -5,
      -1,
      -1,
      2,
      1
    ],
    "io_out": [
      45,
      9,
      9,
      -18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(input,3),2),-2),-3)"
  },
  {
    "input": "input : list = [-5, 1, -4]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take([-5, 1, -4],1),1)",
    "io_inp": [
      -5,
      1,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),1)"
  },
  {
    "input": "input : list = [3, -1, -1]\noutput : list = [-12, 4, 4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(reverse([3, -1, -1])))),-4)",
    "io_inp": [
      3,
      -1,
      -1
    ],
    "io_out": [
      -12,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 3, 4],1)",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 2, 5, -4]\noutput : list = [5, 5, 2, -4]",
    "output": "generated_output : list = sort_des(reverse([5, 2, 5, -4]))",
    "io_inp": [
      5,
      2,
      5,
      -4
    ],
    "io_out": [
      5,
      5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, -3, -2, 5, -3, -5]\noutput : list = [-2, 6, 4, -10, 6, 10]",
    "output": "generated_output : list = mul_n([1, -3, -2, 5, -3, -5],-2)",
    "io_inp": [
      1,
      -3,
      -2,
      5,
      -3,
      -5
    ],
    "io_out": [
      -2,
      6,
      4,
      -10,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [0, -9, -4]",
    "output": "generated_output : list = add_n([4, -5, 0],-4)",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      0,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 0, -1, 4, -1, 5]\noutput : list = [30, 25, 5, 0, 0, -5]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(reverse([-2, 0, -1, 4, -1, 5]),5))),5)",
    "io_inp": [
      -2,
      0,
      -1,
      4,
      -1,
      5
    ],
    "io_out": [
      30,
      25,
      5,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(reverse(input),5))),5)"
  },
  {
    "input": "input : list = [-4, 1, 3, 3, 1, 2]\noutput : list = [1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(drop([-4, 1, 3, 3, 1, 2],2))",
    "io_inp": [
      -4,
      1,
      3,
      3,
      1,
      2
    ],
    "io_out": [
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [4, 4, -2, 5]\noutput : list = [5, 11, 11, 12]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(add_n([4, 4, -2, 5],4))),3))",
    "io_inp": [
      4,
      4,
      -2,
      5
    ],
    "io_out": [
      5,
      11,
      11,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(add_n(input,4))),3))"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [15, 15, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(sort_des([2, -3, -3]),4),-5)))",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      15,
      15,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(sort_des(input),4),-5)))"
  },
  {
    "input": "input : list = [-1, -5, 1, -1, 5]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(drop([-1, -5, 1, -1, 5],2),3),4),1))",
    "io_inp": [
      -1,
      -5,
      1,
      -1,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(drop(input,2),3),4),1))"
  },
  {
    "input": "input : list = [-3, 2, 1, 1, 3]\noutput : list = [-6, -2, -2, -1, 0]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(sort_asc([-3, 2, 1, 1, 3]),-5),1),3),5)",
    "io_inp": [
      -3,
      2,
      1,
      1,
      3
    ],
    "io_out": [
      -6,
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(sort_asc(input),-5),1),3),5)"
  },
  {
    "input": "input : list = [0, 5, -5, -5]\noutput : list = [-9, -9]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(drop([0, 5, -5, -5],2)),1),-5))",
    "io_inp": [
      0,
      5,
      -5,
      -5
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(drop(input,2)),1),-5))"
  },
  {
    "input": "input : list = [4, 3, 0, -2]\noutput : list = [3, 2, -1, -3]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(sub_n([4, 3, 0, -2],-4),-5),1),33))",
    "io_inp": [
      4,
      3,
      0,
      -2
    ],
    "io_out": [
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(sub_n(input,-4),-5),1),33))"
  },
  {
    "input": "input : list = [1, -2, 1, -3, 2]\noutput : list = [3, 0, 3, -1, 4]",
    "output": "generated_output : list = sub_n([1, -2, 1, -3, 2],-2)",
    "io_inp": [
      1,
      -2,
      1,
      -3,
      2
    ],
    "io_out": [
      3,
      0,
      3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [-3, 0, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([2, -2, -5])),-2)",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [1, -2, 1]",
    "output": "generated_output : list = sub_n(reverse(reverse([-1, -4, -1])),-2)",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-2)"
  },
  {
    "input": "input : list = [0, -2, -2, 5, 3]\noutput : list = [-32, -32, 0, 48, 80]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse([0, -2, -2, 5, 3]),-2),2),-4))",
    "io_inp": [
      0,
      -2,
      -2,
      5,
      3
    ],
    "io_out": [
      -32,
      -32,
      0,
      48,
      80
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse(input),-2),2),-4))"
  },
  {
    "input": "input : list = [2, 1, 2, -1, -2, -2]\noutput : list = [-8, -5, -8, 1, 4, 4]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(add_n([2, 1, 2, -1, -2, -2],-1),-3),35),3),2)",
    "io_inp": [
      2,
      1,
      2,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -8,
      -5,
      -8,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(add_n(input,-1),-3),35),3),2)"
  },
  {
    "input": "input : list = [-2, -1, 5, -5, 1]\noutput : list = [-2, -1, 5]",
    "output": "generated_output : list = take([-2, -1, 5, -5, 1],3)",
    "io_inp": [
      -2,
      -1,
      5,
      -5,
      1
    ],
    "io_out": [
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(take([-5, 2, -4],1)),-1)))",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(take(input,1)),-1)))"
  },
  {
    "input": "input : list = [0, 0, -2]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, -2])",
    "io_inp": [
      0,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4, 0, -1, 2]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = sort_des(take([2, -4, 0, -1, 2],3))",
    "io_inp": [
      2,
      -4,
      0,
      -1,
      2
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-1, -3, -3, 0, 5, 1]\noutput : list = [0, -4, -5, -6, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_asc([-1, -3, -3, 0, 5, 1])))),5)",
    "io_inp": [
      -1,
      -3,
      -3,
      0,
      5,
      1
    ],
    "io_out": [
      0,
      -4,
      -5,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [-1, -4, 0, 0, -3, 0]\noutput : list = [-8, -8, -8, -9, -11, -12]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(add_n([-1, -4, 0, 0, -3, 0],-5))),-3),28)",
    "io_inp": [
      -1,
      -4,
      0,
      0,
      -3,
      0
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -9,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(add_n(input,-5))),-3),28)"
  },
  {
    "input": "input : list = [-4, 0, -5, 4, -4, 4]\noutput : list = [-20, 20, -20, 25, 0, 20]",
    "output": "generated_output : list = mul_n(reverse([-4, 0, -5, 4, -4, 4]),-5)",
    "io_inp": [
      -4,
      0,
      -5,
      4,
      -4,
      4
    ],
    "io_out": [
      -20,
      20,
      -20,
      25,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [0, 2, -4, 3, 1]\noutput : list = [3, 5, -1, 6, 4]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(reverse([0, 2, -4, 3, 1]),-1),-4)),52)",
    "io_inp": [
      0,
      2,
      -4,
      3,
      1
    ],
    "io_out": [
      3,
      5,
      -1,
      6,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(reverse(input),-1),-4)),52)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(drop([5, 1, 3],1),15)",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),15)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [-2, 2, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n([1, 1, -3],-1))))",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(input,-1))))"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [3, -2, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse([4, -4, -1])),-1))",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(input)),-1))"
  },
  {
    "input": "input : list = [0, 2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_des(drop([0, 2, -1],1)))))",
    "io_inp": [
      0,
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-5, -1, -1, -3, 4, 3]\noutput : list = [-7, -5, -3, -3, 1, 2]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des([-5, -1, -1, -3, 4, 3]),3),-5))",
    "io_inp": [
      -5,
      -1,
      -1,
      -3,
      4,
      3
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(input),3),-5))"
  },
  {
    "input": "input : list = [-5, 3, -5, 0]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(drop(sub_n(drop([-5, 3, -5, 0],2),-1),1))",
    "io_inp": [
      -5,
      3,
      -5,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(drop(input,2),-1),1))"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [-2, 4, 5]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sub_n([-4, 3, 2],-2)),7),28))",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sub_n(input,-2)),7),28))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [4, 10]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sub_n([-5, 1],1),1)),-1),-5)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sub_n(input,1),1)),-1),-5)"
  },
  {
    "input": "input : list = [-2, 2, 3, -5, 4, -3]\noutput : list = [22, 12, 7, -13, -18, -23]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(mul_n(sort_des([-2, 2, 3, -5, 4, -3]),-5),3)),1)",
    "io_inp": [
      -2,
      2,
      3,
      -5,
      4,
      -3
    ],
    "io_out": [
      22,
      12,
      7,
      -13,
      -18,
      -23
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(mul_n(sort_des(input),-5),3)),1)"
  },
  {
    "input": "input : list = [-2, -5, 5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = drop([-2, -5, 5, 1],2)",
    "io_inp": [
      -2,
      -5,
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 1, -3, -4, -3]\noutput : list = [1, 0, -3, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc([0, 1, -3, -4, -3]))",
    "io_inp": [
      0,
      1,
      -3,
      -4,
      -3
    ],
    "io_out": [
      1,
      0,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(reverse([4, 4]),1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-7, -2]",
    "output": "generated_output : list = take(add_n([-4, 1],-3),3)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),3)"
  },
  {
    "input": "input : list = [3, -1, -5, 1, 1]\noutput : list = [2, 6, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take([3, -1, -5, 1, 1],3),-4)),-3)",
    "io_inp": [
      3,
      -1,
      -5,
      1,
      1
    ],
    "io_out": [
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(input,3),-4)),-3)"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [8, 5, 3]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(sort_asc([-2, -4, 1]),3))),4)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      8,
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(sort_asc(input),3))),4)"
  },
  {
    "input": "input : list = [-2, -5, 3]\noutput : list = [2, 5, -3]",
    "output": "generated_output : list = mul_n([-2, -5, 3],-1)",
    "io_inp": [
      -2,
      -5,
      3
    ],
    "io_out": [
      2,
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 2, 1, 0, -5, -5]\noutput : list = [-10, -10, -4, 0, 2, 4]",
    "output": "generated_output : list = mul_n(sort_asc([-2, 2, 1, 0, -5, -5]),2)",
    "io_inp": [
      -2,
      2,
      1,
      0,
      -5,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-5, 1, -1, -2]\noutput : list = [-6, 0, 3, 12]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sub_n([-5, 1, -1, -2],2),-3))),-3)",
    "io_inp": [
      -5,
      1,
      -1,
      -2
    ],
    "io_out": [
      -6,
      0,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sub_n(input,2),-3))),-3)"
  },
  {
    "input": "input : list = [-3, 0, 1, 2, 5, -5]\noutput : list = [5, 2, 1, 0, -3, -5]",
    "output": "generated_output : list = sort_des([-3, 0, 1, 2, 5, -5])",
    "io_inp": [
      -3,
      0,
      1,
      2,
      5,
      -5
    ],
    "io_out": [
      5,
      2,
      1,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n([0, -5],1),4))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,1),4))"
  },
  {
    "input": "input : list = [4, 3, -3, 5]\noutput : list = [7, 6, 5, -1]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(mul_n([4, 3, -3, 5],1)),29)),2)",
    "io_inp": [
      4,
      3,
      -3,
      5
    ],
    "io_out": [
      7,
      6,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(mul_n(input,1)),29)),2)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [-30, -30, -30]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(add_n([5, 5, 5],5)))),-3)",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      -30,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(add_n(input,5)))),-3)"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [5, -19, -25]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sub_n([3, 5, -5],-3),-3)),-1))",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      5,
      -19,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sub_n(input,-3),-3)),-1))"
  },
  {
    "input": "input : list = [4, 4, 0, 4, -2, -3]\noutput : list = [8, 8, 8, 4, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des([4, 4, 0, 4, -2, -3]),11),4))",
    "io_inp": [
      4,
      4,
      0,
      4,
      -2,
      -3
    ],
    "io_out": [
      8,
      8,
      8,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(input),11),4))"
  },
  {
    "input": "input : list = [-3, 1, -2, 5]\noutput : list = [7, 0, 3, -1]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(sub_n([-3, 1, -2, 5],-3)))),1)",
    "io_inp": [
      -3,
      1,
      -2,
      5
    ],
    "io_out": [
      7,
      0,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(sub_n(input,-3)))),1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [15, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(mul_n([-3, 1],-3),-2)),3),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      15,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(mul_n(input,-3),-2)),3),-5)"
  },
  {
    "input": "input : list = [-3, -3, 1, 0, -5, -3]\noutput : list = [-12, -12, -8, -9, -14, -12]",
    "output": "generated_output : list = sub_n(add_n(add_n([-3, -3, 1, 0, -5, -3],-3),-1),5)",
    "io_inp": [
      -3,
      -3,
      1,
      0,
      -5,
      -3
    ],
    "io_out": [
      -12,
      -12,
      -8,
      -9,
      -14,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-3),-1),5)"
  },
  {
    "input": "input : list = [2, 3, 3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(drop([2, 3, 3, 0],2),3))))",
    "io_inp": [
      2,
      3,
      3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(drop(input,2),3))))"
  },
  {
    "input": "input : list = [4, 3, -3, 3, 4, -4]\noutput : list = [-8, -2, -1]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(take([4, 3, -3, 3, 4, -4],3)),26),-1),-4)",
    "io_inp": [
      4,
      3,
      -3,
      3,
      4,
      -4
    ],
    "io_out": [
      -8,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(take(input,3)),26),-1),-4)"
  },
  {
    "input": "input : list = [-3, 2, 5, 0, -5, 0]\noutput : list = [7, 2, 2, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n(drop([-3, 2, 5, 0, -5, 0],2),-3),5))",
    "io_inp": [
      -3,
      2,
      5,
      0,
      -5,
      0
    ],
    "io_out": [
      7,
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(drop(input,2),-3),5))"
  },
  {
    "input": "input : list = [-3, -2, -4, -3]\noutput : list = [-3, -2, -4, -3]",
    "output": "generated_output : list = reverse(reverse([-3, -2, -4, -3]))",
    "io_inp": [
      -3,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-60, -30, 15]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-1, 2, 4]),3),-5)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -60,
      -30,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),3),-5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(add_n([0, -1],-2)),15),1))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(add_n(input,-2)),15),1))"
  },
  {
    "input": "input : list = [3, 1, 2, -5, -4]\noutput : list = [5, 4, 3, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(add_n([3, 1, 2, -5, -4],2)))))",
    "io_inp": [
      3,
      1,
      2,
      -5,
      -4
    ],
    "io_out": [
      5,
      4,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(add_n(input,2)))))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [1, -9]",
    "output": "generated_output : list = take(mul_n(sub_n([-5, 5],-4),-1),20)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      1,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,-4),-1),20)"
  },
  {
    "input": "input : list = [4, -2, 5, 3, -1]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take([4, -2, 5, 3, -1],1),1)))",
    "io_inp": [
      4,
      -2,
      5,
      3,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(input,1),1)))"
  },
  {
    "input": "input : list = [-4, -5, 1, -3]\noutput : list = [20, 260, 320, 380]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(mul_n([-4, -5, 1, -3],-3),4)),-4),-5)",
    "io_inp": [
      -4,
      -5,
      1,
      -3
    ],
    "io_out": [
      20,
      260,
      320,
      380
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(mul_n(input,-3),4)),-4),-5)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc([-1, 5]),-4)))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(input),-4)))"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(take([-2, -4, 1],1),3)),24),2)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(take(input,1),3)),24),2)"
  },
  {
    "input": "input : list = [-1, -4, -3, 0, -4, 0]\noutput : list = [-1, -1, -2, -4, -5, -5]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(sub_n([-1, -4, -3, 0, -4, 0],-3)),-2),-2))",
    "io_inp": [
      -1,
      -4,
      -3,
      0,
      -4,
      0
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(sub_n(input,-3)),-2),-2))"
  },
  {
    "input": "input : list = [-2, -1, -3]\noutput : list = [-1, 0, -2]",
    "output": "generated_output : list = add_n([-2, -1, -3],1)",
    "io_inp": [
      -2,
      -1,
      -3
    ],
    "io_out": [
      -1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, -2, -4, 5, -1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(take([0, -2, -4, 5, -1],2)),-2)))",
    "io_inp": [
      0,
      -2,
      -4,
      5,
      -1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(take(input,2)),-2)))"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(take([3, 5, 4],1)))),-4)",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(take(input,1)))),-4)"
  },
  {
    "input": "input : list = [5, -2, -4, -1, 5, -4]\noutput : list = [-25, -25, 5, 10, 20, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n([5, -2, -4, -1, 5, -4],-5),12))",
    "io_inp": [
      5,
      -2,
      -4,
      -1,
      5,
      -4
    ],
    "io_out": [
      -25,
      -25,
      5,
      10,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,-5),12))"
  },
  {
    "input": "input : list = [-5, 2, -3, 1, -3]\noutput : list = [3, 5, 5, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(sub_n([-5, 2, -3, 1, -3],-5),-5),5),3))",
    "io_inp": [
      -5,
      2,
      -3,
      1,
      -3
    ],
    "io_out": [
      3,
      5,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(sub_n(input,-5),-5),5),3))"
  },
  {
    "input": "input : list = [-1, -4, -2, 5, -1, 5]\noutput : list = [-3, -6, -4, 3, -3, 3]",
    "output": "generated_output : list = sub_n([-1, -4, -2, 5, -1, 5],2)",
    "io_inp": [
      -1,
      -4,
      -2,
      5,
      -1,
      5
    ],
    "io_out": [
      -3,
      -6,
      -4,
      3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-3, 2],1),1))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,1),1))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [2, 1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(reverse([-1, 0])),3)),1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(reverse(input)),3)),1)"
  },
  {
    "input": "input : list = [2, -3, -2, -3, 4, -1]\noutput : list = [1, -4, -3, -4, 3, -2]",
    "output": "generated_output : list = take(sub_n([2, -3, -2, -3, 4, -1],1),14)",
    "io_inp": [
      2,
      -3,
      -2,
      -3,
      4,
      -1
    ],
    "io_out": [
      1,
      -4,
      -3,
      -4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),14)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-11, -1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(reverse([-5, 5]),1),-4)),-2)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -11,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(reverse(input),1),-4)),-2)"
  },
  {
    "input": "input : list = [-3, -2, 2, 4, 4, -3]\noutput : list = [0, 7, 7, 5, 1, 0]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(reverse([-3, -2, 2, 4, 4, -3])),-1)),4)",
    "io_inp": [
      -3,
      -2,
      2,
      4,
      4,
      -3
    ],
    "io_out": [
      0,
      7,
      7,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(reverse(input)),-1)),4)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(take(sort_des([-1, -2]),15))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),15))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse(reverse(take(add_n(add_n([-4, -4],-1),2),10)))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(add_n(input,-1),2),10)))"
  },
  {
    "input": "input : list = [-4, 2, -3, 4, 5]\noutput : list = [-25, -20, -10, 15, 20]",
    "output": "generated_output : list = mul_n(sort_des([-4, 2, -3, 4, 5]),-5)",
    "io_inp": [
      -4,
      2,
      -3,
      4,
      5
    ],
    "io_out": [
      -25,
      -20,
      -10,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-10, -10]",
    "output": "generated_output : list = add_n(sub_n(reverse([-3, -3]),5),-2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),5),-2)"
  },
  {
    "input": "input : list = [5, 3, 0, -3, -4]\noutput : list = [20, 12, 0, -12, -16]",
    "output": "generated_output : list = mul_n(take(mul_n([5, 3, 0, -3, -4],-2),5),-2)",
    "io_inp": [
      5,
      3,
      0,
      -3,
      -4
    ],
    "io_out": [
      20,
      12,
      0,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-2),5),-2)"
  },
  {
    "input": "input : list = [2, 1, -5, -1]\noutput : list = [30, 10, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_asc([2, 1, -5, -1]),-5),5)))",
    "io_inp": [
      2,
      1,
      -5,
      -1
    ],
    "io_out": [
      30,
      10,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_asc(input),-5),5)))"
  },
  {
    "input": "input : list = [-4, 2, -2]\noutput : list = [-12, 6, -6]",
    "output": "generated_output : list = mul_n([-4, 2, -2],3)",
    "io_inp": [
      -4,
      2,
      -2
    ],
    "io_out": [
      -12,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, 5, -4, 5, 4]\noutput : list = [-4, 4, 5, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([5, 5, -4, 5, 4]))",
    "io_inp": [
      5,
      5,
      -4,
      5,
      4
    ],
    "io_out": [
      -4,
      4,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [7, -2]",
    "output": "generated_output : list = sub_n([4, -5],-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 4, -2, 0, -2, 0]\noutput : list = [6, 6, 6, 2, 2, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(mul_n([-2, 4, -2, 0, -2, 0],-2)))),2)",
    "io_inp": [
      -2,
      4,
      -2,
      0,
      -2,
      0
    ],
    "io_out": [
      6,
      6,
      6,
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(mul_n(input,-2)))),2)"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [-40, -20, 20]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(sub_n([4, 2, 1],3),-4)),-5),39)",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      -40,
      -20,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(sub_n(input,3),-4)),-5),39)"
  },
  {
    "input": "input : list = [-3, 4, -2, 5]\noutput : list = [-23, -18, 12, 17]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(sort_asc([-3, 4, -2, 5])),5),-1),-2)",
    "io_inp": [
      -3,
      4,
      -2,
      5
    ],
    "io_out": [
      -23,
      -18,
      12,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(sort_asc(input)),5),-1),-2)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [3, 3, -2]",
    "output": "generated_output : list = reverse(add_n([-5, 0, 0],3))",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-4, 4, -5]\noutput : list = [50, 5, 45]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(sub_n([-4, 4, -5],1)),-4),3),-5)",
    "io_inp": [
      -4,
      4,
      -5
    ],
    "io_out": [
      50,
      5,
      45
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(sub_n(input,1)),-4),3),-5)"
  },
  {
    "input": "input : list = [5, -2, 2, -1, -5, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take([5, -2, 2, -1, -5, 2],1))",
    "io_inp": [
      5,
      -2,
      2,
      -1,
      -5,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-4, -2, -3, 0]\noutput : list = [0, 20, 30, 40]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(reverse([-4, -2, -3, 0]),11),2)),-5)",
    "io_inp": [
      -4,
      -2,
      -3,
      0
    ],
    "io_out": [
      0,
      20,
      30,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(reverse(input),11),2)),-5)"
  },
  {
    "input": "input : list = [5, 4, -4]\noutput : list = [3, 2, -6]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n([5, 4, -4],2)))))",
    "io_inp": [
      5,
      4,
      -4
    ],
    "io_out": [
      3,
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [1, -1, 4, -2, 3]\noutput : list = [-2, -4, -8, -12, -14]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sort_asc([1, -1, 4, -2, 3]),3))),-2)",
    "io_inp": [
      1,
      -1,
      4,
      -2,
      3
    ],
    "io_out": [
      -2,
      -4,
      -8,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sort_asc(input),3))),-2)"
  },
  {
    "input": "input : list = [2, 0, 2, -4, 0]\noutput : list = [12, 0, 0, -6, -6]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(mul_n([2, 0, 2, -4, 0],-3)))))",
    "io_inp": [
      2,
      0,
      2,
      -4,
      0
    ],
    "io_out": [
      12,
      0,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [4, 1, 1, 3, 2, 0]\noutput : list = [0, 2, 4, 6, 6, 8]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc([4, 1, 1, 3, 2, 0]))),-4),-2)",
    "io_inp": [
      4,
      1,
      1,
      3,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      4,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc(input))),-4),-2)"
  },
  {
    "input": "input : list = [0, 3, 2, 3]\noutput : list = [-5, -3, -2, -2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_asc([0, 3, 2, 3])),1),-4))",
    "io_inp": [
      0,
      3,
      2,
      3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [1, 1, 3, 4]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(take([1, 1, 3, 4],1)))))",
    "io_inp": [
      1,
      1,
      3,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-10, -5]",
    "output": "generated_output : list = sort_asc(sub_n([0, -5],5))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,5))"
  },
  {
    "input": "input : list = [-5, -4, 1, -3]\noutput : list = [-20, -15, -10, 10]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([-5, -4, 1, -3],5),5))",
    "io_inp": [
      -5,
      -4,
      1,
      -3
    ],
    "io_out": [
      -20,
      -15,
      -10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,5),5))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [7, 15]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n([4, 2],4),5)),4))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      7,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n(input,4),5)),4))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [9, 9]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(mul_n([-3, -3],-3)),3)),32)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(mul_n(input,-3)),3)),32)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [4, 10]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([4, -2]),2),-4)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),2),-4)"
  },
  {
    "input": "input : list = [4, -4, -3, -1, 5, 4]\noutput : list = [12, 13, 7, 5]",
    "output": "generated_output : list = reverse(sub_n(sub_n(drop([4, -4, -3, -1, 5, 4],2),-3),-5))",
    "io_inp": [
      4,
      -4,
      -3,
      -1,
      5,
      4
    ],
    "io_out": [
      12,
      13,
      7,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(drop(input,2),-3),-5))"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [8, -12, -12]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(add_n([5, 5, -5],3),-3),1)),-2)",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(add_n(input,3),-3),1)),-2)"
  },
  {
    "input": "input : list = [4, -2, 3, -1]\noutput : list = [10, 2]",
    "output": "generated_output : list = add_n(add_n(mul_n(drop([4, -2, 3, -1],2),2),-1),5)",
    "io_inp": [
      4,
      -2,
      3,
      -1
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(drop(input,2),2),-1),5)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 4]))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 1, 0, -1]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = drop([0, 1, 0, -1],1)",
    "io_inp": [
      0,
      1,
      0,
      -1
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-8, -10]",
    "output": "generated_output : list = add_n([-3, -5],-5)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 0, -1, -2, -4]\noutput : list = [-5, -3, -2, -1, 1]",
    "output": "generated_output : list = reverse(take(add_n([2, 0, -1, -2, -4],-1),26))",
    "io_inp": [
      2,
      0,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-1),26))"
  },
  {
    "input": "input : list = [2, 2, -2, -4, -2, -1]\noutput : list = [10, 10, -10, -20, -10, -5]",
    "output": "generated_output : list = mul_n(sub_n(add_n([2, 2, -2, -4, -2, -1],3),3),5)",
    "io_inp": [
      2,
      2,
      -2,
      -4,
      -2,
      -1
    ],
    "io_out": [
      10,
      10,
      -10,
      -20,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,3),3),5)"
  },
  {
    "input": "input : list = [-5, -4, -5, 3, 2]\noutput : list = [10, 8, 10]",
    "output": "generated_output : list = mul_n(take([-5, -4, -5, 3, 2],3),-2)",
    "io_inp": [
      -5,
      -4,
      -5,
      3,
      2
    ],
    "io_out": [
      10,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-2)"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [-6, -4, -2]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(add_n([-1, -3, 1],-4))),1))",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(add_n(input,-4))),1))"
  },
  {
    "input": "input : list = [2, -3, 0, 3, 0, -5]\noutput : list = [2, 4, 8, 8, 14, 18]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([2, -3, 0, 3, 0, -5],4)),-2)",
    "io_inp": [
      2,
      -3,
      0,
      3,
      0,
      -5
    ],
    "io_out": [
      2,
      4,
      8,
      8,
      14,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,4)),-2)"
  },
  {
    "input": "input : list = [-2, -1, 1, -2, 2]\noutput : list = [-8, 8]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(drop([-2, -1, 1, -2, 2],3)),4),37))",
    "io_inp": [
      -2,
      -1,
      1,
      -2,
      2
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(drop(input,3)),4),37))"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [-3, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n([-4, 3, 1],-1))",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [4, 6, 9]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(sub_n([3, -2, 0],-1),5),11)))",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      4,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(sub_n(input,-1),5),11)))"
  },
  {
    "input": "input : list = [-5, 1, -2, 4, 2]\noutput : list = [20, 10, 5, -10, -25]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(reverse([-5, 1, -2, 4, 2]),5),24)))",
    "io_inp": [
      -5,
      1,
      -2,
      4,
      2
    ],
    "io_out": [
      20,
      10,
      5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(reverse(input),5),24)))"
  },
  {
    "input": "input : list = [-1, -2, 4]\noutput : list = [-2, -1, 4]",
    "output": "generated_output : list = sort_asc(reverse([-1, -2, 4]))",
    "io_inp": [
      -1,
      -2,
      4
    ],
    "io_out": [
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, -1, -1, 0, 1, -4]\noutput : list = [-4, -1, -1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse([4, -1, -1, 0, 1, -4]))",
    "io_inp": [
      4,
      -1,
      -1,
      0,
      1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, -5, 4, -3, 3]\noutput : list = [-5, -3, -1, 3, 4]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_des([-1, -5, 4, -3, 3]),-2),1),-2))",
    "io_inp": [
      -1,
      -5,
      4,
      -3,
      3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_des(input),-2),1),-2))"
  },
  {
    "input": "input : list = [3, -2, -1, -1, -1]\noutput : list = [-17, 3, 3, 3, 8]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(reverse([3, -2, -1, -1, -1])),-5),-2))",
    "io_inp": [
      3,
      -2,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -17,
      3,
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(reverse(input)),-5),-2))"
  },
  {
    "input": "input : list = [0, -1, -1, 2]\noutput : list = [-1, -1, 0, 2]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des([0, -1, -1, 2]))))",
    "io_inp": [
      0,
      -1,
      -1,
      2
    ],
    "io_out": [
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(drop([3, -5, -5],1)),21),-2))",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(drop(input,1)),21),-2))"
  },
  {
    "input": "input : list = [4, 5, 2, 5, -5, 1]\noutput : list = [-7, -7, -8, -10, -11, -17]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(sub_n([4, 5, 2, 5, -5, 1],4))),-4),-4)",
    "io_inp": [
      4,
      5,
      2,
      5,
      -5,
      1
    ],
    "io_out": [
      -7,
      -7,
      -8,
      -10,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(sub_n(input,4))),-4),-4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, -4]))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -4, -3, -4]\noutput : list = [-1, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-1, -4, -3, -4])",
    "io_inp": [
      -1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5, 5, 2]\noutput : list = [5, 2, -4, -5]",
    "output": "generated_output : list = sort_des([-4, -5, 5, 2])",
    "io_inp": [
      -4,
      -5,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des([-5, 4]),13))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),13))"
  },
  {
    "input": "input : list = [2, -3, 4, 0, -5, -4]\noutput : list = [-5, -4, -3, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(reverse([2, -3, 4, 0, -5, -4])))))",
    "io_inp": [
      2,
      -3,
      4,
      0,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [7]",
    "output": "generated_output : list = take(add_n([2, 0],5),1)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),1)"
  },
  {
    "input": "input : list = [-5, 2, -5, 1, 1, -4]\noutput : list = [-9, -2, -9]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(take([-5, 2, -5, 1, 1, -4],3),1),1),2))",
    "io_inp": [
      -5,
      2,
      -5,
      1,
      1,
      -4
    ],
    "io_out": [
      -9,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(take(input,3),1),1),2))"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [-1, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(add_n([5, -1, 1],-2),-1)),3))",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(add_n(input,-2),-1)),3))"
  },
  {
    "input": "input : list = [-3, -3, -1, 4, -3]\noutput : list = [14, 14, 14, 6, -14]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_des([-3, -3, -1, 4, -3]),-4))),2)",
    "io_inp": [
      -3,
      -3,
      -1,
      4,
      -3
    ],
    "io_out": [
      14,
      14,
      14,
      6,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_des(input),-4))),2)"
  },
  {
    "input": "input : list = [-2, 5, -5, 2]\noutput : list = [10, -4]",
    "output": "generated_output : list = reverse(take(mul_n([-2, 5, -5, 2],2),2))",
    "io_inp": [
      -2,
      5,
      -5,
      2
    ],
    "io_out": [
      10,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,2),2))"
  },
  {
    "input": "input : list = [3, 3, -3, 3, -4, -4]\noutput : list = [1, 1, 1, -5, -6, -6]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(sort_asc([3, 3, -3, 3, -4, -4]),-2),16)))",
    "io_inp": [
      3,
      3,
      -3,
      3,
      -4,
      -4
    ],
    "io_out": [
      1,
      1,
      1,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(sort_asc(input),-2),16)))"
  },
  {
    "input": "input : list = [-1, -3, -4, -4]\noutput : list = [24, 24, 18, 6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(mul_n([-1, -3, -4, -4],2)),-3)))",
    "io_inp": [
      -1,
      -3,
      -4,
      -4
    ],
    "io_out": [
      24,
      24,
      18,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(mul_n(input,2)),-3)))"
  },
  {
    "input": "input : list = [-5, 3, 5]\noutput : list = [5, 3, -5]",
    "output": "generated_output : list = reverse([-5, 3, 5])",
    "io_inp": [
      -5,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(sort_des(sort_des([5, 2])),17)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),17)"
  },
  {
    "input": "input : list = [0, -2, 0, -2, -4, 5]\noutput : list = [-4, -2, -2, 0, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([0, -2, 0, -2, -4, 5])))",
    "io_inp": [
      0,
      -2,
      0,
      -2,
      -4,
      5
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, 1, 3, 5, 3, -1]\noutput : list = [-6, -5, -3, -1, -1, 1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse([-2, 1, 3, 5, 3, -1]),4)))",
    "io_inp": [
      -2,
      1,
      3,
      5,
      3,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [1, -4, 4, 1, 1]\noutput : list = [37, 17, 17, 17, 5]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(sub_n([1, -4, 4, 1, 1],1)),-5),-4),-3)",
    "io_inp": [
      1,
      -4,
      4,
      1,
      1
    ],
    "io_out": [
      37,
      17,
      17,
      17,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(sub_n(input,1)),-5),-4),-3)"
  },
  {
    "input": "input : list = [-2, -3, 5, 1]\noutput : list = [-10, -9, -17, -13]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n([-2, -3, 5, 1],-3),-4),-5),-1)",
    "io_inp": [
      -2,
      -3,
      5,
      1
    ],
    "io_out": [
      -10,
      -9,
      -17,
      -13
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(input,-3),-4),-5),-1)"
  },
  {
    "input": "input : list = [-1, -1, -4, -5, 3]\noutput : list = [-11, -10, -7, -7, -3]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(sub_n([-1, -1, -4, -5, 3],4)),-1),-3),33)",
    "io_inp": [
      -1,
      -1,
      -4,
      -5,
      3
    ],
    "io_out": [
      -11,
      -10,
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(sub_n(input,4)),-1),-3),33)"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [-6, -3, 9]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(add_n([-1, -2, 3],-3)),-5),2),3)",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      -6,
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(add_n(input,-3)),-5),2),3)"
  },
  {
    "input": "input : list = [-5, 2, 5, 2, 5, 3]\noutput : list = [5, 5, 3, 2, 2, -5]",
    "output": "generated_output : list = sort_des([-5, 2, 5, 2, 5, 3])",
    "io_inp": [
      -5,
      2,
      5,
      2,
      5,
      3
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, 2, 4, 2, -2]\noutput : list = [3, 2, 0, 0]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(add_n([5, -3, 2, 4, 2, -2],-4),2))),4)",
    "io_inp": [
      5,
      -3,
      2,
      4,
      2,
      -2
    ],
    "io_out": [
      3,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(add_n(input,-4),2))),4)"
  },
  {
    "input": "input : list = [-2, 5, 4, 5]\noutput : list = [1, 7, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(add_n(sort_des([-2, 5, 4, 5]),3))))",
    "io_inp": [
      -2,
      5,
      4,
      5
    ],
    "io_out": [
      1,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(add_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [-3, 5, 5, 2]\noutput : list = [12]",
    "output": "generated_output : list = add_n(drop(sort_asc(sub_n([-3, 5, 5, 2],-4)),3),3)",
    "io_inp": [
      -3,
      5,
      5,
      2
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_asc(sub_n(input,-4)),3),3)"
  },
  {
    "input": "input : list = [0, 2, 1, -1]\noutput : list = [4, 6, 5, 3]",
    "output": "generated_output : list = sub_n([0, 2, 1, -1],-4)",
    "io_inp": [
      0,
      2,
      1,
      -1
    ],
    "io_out": [
      4,
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [6, 13, 16]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(sort_des([5, -5, 2])),-5),-4),-2)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      6,
      13,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(sort_des(input)),-5),-4),-2)"
  },
  {
    "input": "input : list = [-1, 1, -2, 2, 5]\noutput : list = [-2, -1, 1, 2, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(sub_n([-1, 1, -2, 2, 5],-1),2)),3))",
    "io_inp": [
      -1,
      1,
      -2,
      2,
      5
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(sub_n(input,-1),2)),3))"
  },
  {
    "input": "input : list = [4, -1, -3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = drop([4, -1, -3, -4],2)",
    "io_inp": [
      4,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [-6, -4, -1]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(sort_asc([-2, 1, -4]),-3),-1),-2),-4)",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(sort_asc(input),-3),-1),-2),-4)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -3, -3],1)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [20, -120]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(mul_n([-5, 2],4),-1)),-3),5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      20,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(mul_n(input,4),-1)),-3),5)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [30, -20, -30]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(sort_asc([3, -3, 2]),-5),2)))",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      30,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(sort_asc(input),-5),2)))"
  },
  {
    "input": "input : list = [1, -4, -1, 1, -5, -3]\noutput : list = [4, 4, 2, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(mul_n([1, -4, -1, 1, -5, -3],1),3))))",
    "io_inp": [
      1,
      -4,
      -1,
      1,
      -5,
      -3
    ],
    "io_out": [
      4,
      4,
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(mul_n(input,1),3))))"
  },
  {
    "input": "input : list = [0, 3, -1, 3, 2]\noutput : list = [0, -15, 5, -15, -10]",
    "output": "generated_output : list = mul_n([0, 3, -1, 3, 2],-5)",
    "io_inp": [
      0,
      3,
      -1,
      3,
      2
    ],
    "io_out": [
      0,
      -15,
      5,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 3, 4]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(drop(take(reverse([-4, 3, 4]),9),2),-2)",
    "io_inp": [
      -4,
      3,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(take(reverse(input),9),2),-2)"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [3]",
    "output": "generated_output : list = add_n(take(reverse(reverse(take([5, -4, 3],1))),12),-2)",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(take(input,1))),12),-2)"
  },
  {
    "input": "input : list = [-1, 1, -5, -5]\noutput : list = [0, 2, -4, -4]",
    "output": "generated_output : list = add_n([-1, 1, -5, -5],1)",
    "io_inp": [
      -1,
      1,
      -5,
      -5
    ],
    "io_out": [
      0,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(drop(add_n(reverse(sort_asc([0, -5, -5])),-2),2))",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(reverse(sort_asc(input)),-2),2))"
  },
  {
    "input": "input : list = [3, 5, 1, -5, 5, 3]\noutput : list = [5, 5, 3, 3, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(reverse([3, 5, 1, -5, 5, 3])),30)))",
    "io_inp": [
      3,
      5,
      1,
      -5,
      5,
      3
    ],
    "io_out": [
      5,
      5,
      3,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(reverse(input)),30)))"
  },
  {
    "input": "input : list = [4, 1, 3, -3, 4]\noutput : list = [-20, -5, -15, 15, -20]",
    "output": "generated_output : list = mul_n([4, 1, 3, -3, 4],-5)",
    "io_inp": [
      4,
      1,
      3,
      -3,
      4
    ],
    "io_out": [
      -20,
      -5,
      -15,
      15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -5, -5, -3, 0]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(add_n(take(drop(sub_n([-2, -5, -5, -3, 0],4),4),8),3),4)",
    "io_inp": [
      -2,
      -5,
      -5,
      -3,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(drop(sub_n(input,4),4),8),3),4)"
  },
  {
    "input": "input : list = [-5, 4, 2, 5]\noutput : list = [4, 1, 3]",
    "output": "generated_output : list = reverse(take(take(add_n(drop([-5, 4, 2, 5],1),-1),6),11))",
    "io_inp": [
      -5,
      4,
      2,
      5
    ],
    "io_out": [
      4,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(drop(input,1),-1),6),11))"
  },
  {
    "input": "input : list = [-4, -5, -4, 1, -3]\noutput : list = [10, 8, 6, -2]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(drop([-4, -5, -4, 1, -3],1))),37),-2)",
    "io_inp": [
      -4,
      -5,
      -4,
      1,
      -3
    ],
    "io_out": [
      10,
      8,
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(drop(input,1))),37),-2)"
  },
  {
    "input": "input : list = [4, -4, -3, 5, 0, 4]\noutput : list = [5, -3, -4, 4]",
    "output": "generated_output : list = reverse(take([4, -4, -3, 5, 0, 4],4))",
    "io_inp": [
      4,
      -4,
      -3,
      5,
      0,
      4
    ],
    "io_out": [
      5,
      -3,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,4))"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [-30, -18, 30]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sort_des([3, 5, -5]),-3),-1),-2),25)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      -30,
      -18,
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sort_des(input),-3),-1),-2),25)"
  },
  {
    "input": "input : list = [2, -4, -4, -5, 3]\noutput : list = [8, 0, 1, 1, 7]",
    "output": "generated_output : list = reverse(add_n([2, -4, -4, -5, 3],5))",
    "io_inp": [
      2,
      -4,
      -4,
      -5,
      3
    ],
    "io_out": [
      8,
      0,
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [-3, 2, 0, -2, 2]\noutput : list = [0, 1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sub_n([-3, 2, 0, -2, 2],-3))",
    "io_inp": [
      -3,
      2,
      0,
      -2,
      2
    ],
    "io_out": [
      0,
      1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-3))"
  },
  {
    "input": "input : list = [2, 1, 1, 2, 2, 2]\noutput : list = [2, 1, 1, 2]",
    "output": "generated_output : list = take([2, 1, 1, 2, 2, 2],4)",
    "io_inp": [
      2,
      1,
      1,
      2,
      2,
      2
    ],
    "io_out": [
      2,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [2, -3, -4, 2, -1, 4]\noutput : list = [0, -2, -2, -5, -7, -8]",
    "output": "generated_output : list = add_n(sort_des([2, -3, -4, 2, -1, 4]),-4)",
    "io_inp": [
      2,
      -3,
      -4,
      2,
      -1,
      4
    ],
    "io_out": [
      0,
      -2,
      -2,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-3, 1, -1, 0]\noutput : list = [15, 5, 0, -5]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(sort_des([-3, 1, -1, 0])),-5)))",
    "io_inp": [
      -3,
      1,
      -1,
      0
    ],
    "io_out": [
      15,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(sort_des(input)),-5)))"
  },
  {
    "input": "input : list = [4, 5, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(drop(sub_n(reverse(reverse([4, 5, 0])),1),2),2)",
    "io_inp": [
      4,
      5,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(reverse(reverse(input)),1),2),2)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [6, 6, 5]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(reverse([0, 0, -1]),-1)),-2),-5)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(reverse(input),-1)),-2),-5)"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-2, -9, -9]",
    "output": "generated_output : list = add_n(take(add_n(take(sub_n([4, -3, -3],4),5),3),34),-5)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sub_n(input,4),5),3),34),-5)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4, -9]",
    "output": "generated_output : list = sort_des(take(reverse(add_n([-4, 1],-5)),15))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(input,-5)),15))"
  },
  {
    "input": "input : list = [2, 3, 1, -3, -2, -2]\noutput : list = [-11, -11, -12, -8, -6, -7]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(sub_n([2, 3, 1, -3, -2, -2],1),3),5),29))",
    "io_inp": [
      2,
      3,
      1,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -11,
      -11,
      -12,
      -8,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(sub_n(input,1),3),5),29))"
  },
  {
    "input": "input : list = [0, 0, 5, -4, 3]\noutput : list = [-7, -3, -3, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(reverse([0, 0, 5, -4, 3])),5),-2))",
    "io_inp": [
      0,
      0,
      5,
      -4,
      3
    ],
    "io_out": [
      -7,
      -3,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(reverse(input)),5),-2))"
  },
  {
    "input": "input : list = [-4, -4, 1, -3]\noutput : list = [-1, -1, 4, 0]",
    "output": "generated_output : list = sub_n([-4, -4, 1, -3],-3)",
    "io_inp": [
      -4,
      -4,
      1,
      -3
    ],
    "io_out": [
      -1,
      -1,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 5, 5, 1]\noutput : list = [1, 5, 5, -3]",
    "output": "generated_output : list = take(reverse([-3, 5, 5, 1]),12)",
    "io_inp": [
      -3,
      5,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),12)"
  },
  {
    "input": "input : list = [4, -1, 5, 4, -5, 5]\noutput : list = [-1, 5, 4, -5, 5]",
    "output": "generated_output : list = drop([4, -1, 5, 4, -5, 5],1)",
    "io_inp": [
      4,
      -1,
      5,
      4,
      -5,
      5
    ],
    "io_out": [
      -1,
      5,
      4,
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 2, -4, -4, 0, -4]\noutput : list = [-3, 0, -6, -6, -2, -6]",
    "output": "generated_output : list = sub_n([-1, 2, -4, -4, 0, -4],2)",
    "io_inp": [
      -1,
      2,
      -4,
      -4,
      0,
      -4
    ],
    "io_out": [
      -3,
      0,
      -6,
      -6,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [100, 70]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sub_n([-2, 0],5),-3)),1),5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      100,
      70
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sub_n(input,5),-3)),1),5)"
  },
  {
    "input": "input : list = [-5, -3, -4, -1, 4]\noutput : list = [4, -1, -4, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, -4, -1, 4])",
    "io_inp": [
      -5,
      -3,
      -4,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, 1, 4, -3, -5]\noutput : list = [-6, -4, -2]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(take([-1, -3, 1, 4, -3, -5],3)),-3)),38)",
    "io_inp": [
      -1,
      -3,
      1,
      4,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(take(input,3)),-3)),38)"
  },
  {
    "input": "input : list = [4, 3, -4, 0]\noutput : list = [-36, -32, -20, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n(sort_des([4, 3, -4, 0]),5)),-4))",
    "io_inp": [
      4,
      3,
      -4,
      0
    ],
    "io_out": [
      -36,
      -32,
      -20,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(sort_des(input),5)),-4))"
  },
  {
    "input": "input : list = [2, -5, -3, 2, 0, 2]\noutput : list = [-3, -3, -3, 3, 12, 18]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc([2, -5, -3, 2, 0, 2]),1)),-3)",
    "io_inp": [
      2,
      -5,
      -3,
      2,
      0,
      2
    ],
    "io_out": [
      -3,
      -3,
      -3,
      3,
      12,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(input),1)),-3)"
  },
  {
    "input": "input : list = [-2, 3, 5, -5, 2]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sub_n(take([-2, 3, 5, -5, 2],2),5)",
    "io_inp": [
      -2,
      3,
      5,
      -5,
      2
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),5)"
  },
  {
    "input": "input : list = [5, 4, 1, 1]\noutput : list = [10, 9, 6, 6]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc(sort_des([5, 4, 1, 1]))),5))",
    "io_inp": [
      5,
      4,
      1,
      1
    ],
    "io_out": [
      10,
      9,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(sort_des(input))),5))"
  },
  {
    "input": "input : list = [5, 1, 3, 3, -1, 2]\noutput : list = [2, -2, 0, 0, -4, -1]",
    "output": "generated_output : list = sub_n([5, 1, 3, 3, -1, 2],3)",
    "io_inp": [
      5,
      1,
      3,
      3,
      -1,
      2
    ],
    "io_out": [
      2,
      -2,
      0,
      0,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = take(sort_asc([5, 0]),12)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),12)"
  },
  {
    "input": "input : list = [5, -4, 0, 0, 2, 4]\noutput : list = [31, -5, 11, 11, 19, 27]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n([5, -4, 0, 0, 2, 4],-3),-4),4),-4),3)",
    "io_inp": [
      5,
      -4,
      0,
      0,
      2,
      4
    ],
    "io_out": [
      31,
      -5,
      11,
      11,
      19,
      27
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n(input,-3),-4),4),-4),3)"
  },
  {
    "input": "input : list = [-1, -2, -2, -4, -5, 3]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = take([-1, -2, -2, -4, -5, 3],3)",
    "io_inp": [
      -1,
      -2,
      -2,
      -4,
      -5,
      3
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [6, 2]",
    "output": "generated_output : list = reverse(sort_asc(add_n([4, 0],2)))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,2)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-12, -30]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(sub_n([2, -4],-2)),4),-4),3)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -12,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(sub_n(input,-2)),4),-4),3)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-7, -7]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_des([-4, -4]))),20),-3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_des(input))),20),-3)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [-10, -8, -7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(sort_des([-2, 0, 1]))),-4),4)",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      -10,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(sort_des(input))),-4),4)"
  },
  {
    "input": "input : list = [-1, 2, -5, 0, 4, -3]\noutput : list = [-7, -4, -11, -6, -2, -9]",
    "output": "generated_output : list = sub_n(take(take(sub_n(sub_n([-1, 2, -5, 0, 4, -3],4),5),13),38),-3)",
    "io_inp": [
      -1,
      2,
      -5,
      0,
      4,
      -3
    ],
    "io_out": [
      -7,
      -4,
      -11,
      -6,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(sub_n(input,4),5),13),38),-3)"
  },
  {
    "input": "input : list = [4, 3, 4, 3]\noutput : list = [-24, -24, -32, -32]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(mul_n([4, 3, 4, 3],4)))),-2)",
    "io_inp": [
      4,
      3,
      4,
      3
    ],
    "io_out": [
      -24,
      -24,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(mul_n(input,4)))),-2)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n(take(sort_des([5, 3]),12),-3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),12),-3)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [-7, -4, -1]",
    "output": "generated_output : list = sort_asc(sub_n([1, -5, -2],2))",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [24, -1, -11]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(mul_n([5, -2, 0],1)),5)),1)",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      24,
      -1,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(mul_n(input,1)),5)),1)"
  },
  {
    "input": "input : list = [-1, 0, -4, 3, 1]\noutput : list = [13, 11, 10, 9, 6]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des([-1, 0, -4, 3, 1]),5),5))",
    "io_inp": [
      -1,
      0,
      -4,
      3,
      1
    ],
    "io_out": [
      13,
      11,
      10,
      9,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(input),5),5))"
  },
  {
    "input": "input : list = [0, -3, 5, 2, -5]\noutput : list = [15, 6, 0, -9, -15]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse([0, -3, 5, 2, -5]),3)))",
    "io_inp": [
      0,
      -3,
      5,
      2,
      -5
    ],
    "io_out": [
      15,
      6,
      0,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(input),3)))"
  },
  {
    "input": "input : list = [4, -4, -1, 4]\noutput : list = [-8, -2, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc([4, -4, -1, 4]),2),3)",
    "io_inp": [
      4,
      -4,
      -1,
      4
    ],
    "io_out": [
      -8,
      -2,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),2),3)"
  },
  {
    "input": "input : list = [-5, 2, -1, -2, 2, 0]\noutput : list = [-1, 1, -3, -2, 1, -6]",
    "output": "generated_output : list = reverse(reverse(reverse(add_n([-5, 2, -1, -2, 2, 0],-1))))",
    "io_inp": [
      -5,
      2,
      -1,
      -2,
      2,
      0
    ],
    "io_out": [
      -1,
      1,
      -3,
      -2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(add_n(input,-1))))"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(drop(take(sort_asc(drop([-3, 5, -4],1)),22),1))",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(drop(take(sort_asc(drop(input,1)),22),1))"
  },
  {
    "input": "input : list = [5, -5, -3, 0, 0, -2]\noutput : list = [-2, 0, 0, -3, -5, 5]",
    "output": "generated_output : list = reverse([5, -5, -3, 0, 0, -2])",
    "io_inp": [
      5,
      -5,
      -3,
      0,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      0,
      -3,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4, -5, -4]\noutput : list = [-10, -9, -9, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc([5, -4, -5, -4]))),5))",
    "io_inp": [
      5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -9,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [5, -1, -4, 1, 5]\noutput : list = [10, 4, 1, 6, 10]",
    "output": "generated_output : list = add_n([5, -1, -4, 1, 5],5)",
    "io_inp": [
      5,
      -1,
      -4,
      1,
      5
    ],
    "io_out": [
      10,
      4,
      1,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [-6, 4, 2]",
    "output": "generated_output : list = sub_n([-5, 5, 3],1)",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      -6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, -5, 5, 4, -2, 4]\noutput : list = [-16, -10, -16, -17, -7, -16]",
    "output": "generated_output : list = sub_n(add_n(add_n(reverse(mul_n([4, -5, 5, 4, -2, 4],-1)),-2),-5),5)",
    "io_inp": [
      4,
      -5,
      5,
      4,
      -2,
      4
    ],
    "io_out": [
      -16,
      -10,
      -16,
      -17,
      -7,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(reverse(mul_n(input,-1)),-2),-5),5)"
  },
  {
    "input": "input : list = [-5, 4, -3, 4, -4, -1]\noutput : list = [-15, -10, 0, 25]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(drop([-5, 4, -3, 4, -4, -1],2)),5),-5))",
    "io_inp": [
      -5,
      4,
      -3,
      4,
      -4,
      -1
    ],
    "io_out": [
      -15,
      -10,
      0,
      25
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(drop(input,2)),5),-5))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-12, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n([4, -1],-3))))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(input,-3))))"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [1, 0, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-1, 0, -5],-3)),2)",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-3)),2)"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [11, 9, 3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n(reverse([3, 5, -3]),-5),-1)))",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      11,
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(reverse(input),-5),-1)))"
  },
  {
    "input": "input : list = [-3, -4, 1, 1, 2, 2]\noutput : list = [2, 2, 1, 1, -3, -4]",
    "output": "generated_output : list = sort_des(reverse([-3, -4, 1, 1, 2, 2]))",
    "io_inp": [
      -3,
      -4,
      1,
      1,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -1, 3, -2, -5]\noutput : list = [-10, -4, -2, 6, 8]",
    "output": "generated_output : list = mul_n(reverse(sort_des([4, -1, 3, -2, -5])),2)",
    "io_inp": [
      4,
      -1,
      3,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -4,
      -2,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),2)"
  },
  {
    "input": "input : list = [-3, -4, 2, -3, 4]\noutput : list = [9, 12, -6, 9, -12]",
    "output": "generated_output : list = mul_n([-3, -4, 2, -3, 4],-3)",
    "io_inp": [
      -3,
      -4,
      2,
      -3,
      4
    ],
    "io_out": [
      9,
      12,
      -6,
      9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 4, -2, 5, 1, 4]\noutput : list = [-25, 20, -10, 25]",
    "output": "generated_output : list = mul_n(take([-5, 4, -2, 5, 1, 4],4),5)",
    "io_inp": [
      -5,
      4,
      -2,
      5,
      1,
      4
    ],
    "io_out": [
      -25,
      20,
      -10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),5)"
  },
  {
    "input": "input : list = [-2, 3, -2, 4, 1]\noutput : list = [-2, -2, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 3, -2, 4, 1]))",
    "io_inp": [
      -2,
      3,
      -2,
      4,
      1
    ],
    "io_out": [
      -2,
      -2,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -1, 4]\noutput : list = [2, -3, -6]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_des([-4, -1, 4])),1),5),2)",
    "io_inp": [
      -4,
      -1,
      4
    ],
    "io_out": [
      2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_des(input)),1),5),2)"
  },
  {
    "input": "input : list = [5, -1, -4, -5, 3]\noutput : list = [-1, -4, -5, 3]",
    "output": "generated_output : list = drop([5, -1, -4, -5, 3],1)",
    "io_inp": [
      5,
      -1,
      -4,
      -5,
      3
    ],
    "io_out": [
      -1,
      -4,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3, 0, 5, 2, 4]\noutput : list = [7, -23, 7, -43, -13, -33]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(mul_n([0, 3, 0, 5, 2, 4],2),-2),1),-5),-3)",
    "io_inp": [
      0,
      3,
      0,
      5,
      2,
      4
    ],
    "io_out": [
      7,
      -23,
      7,
      -43,
      -13,
      -33
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(mul_n(input,2),-2),1),-5),-3)"
  },
  {
    "input": "input : list = [2, 3, 4, -4]\noutput : list = [20, 8, 6, 4]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(reverse([2, 3, 4, -4]),2),-4),-2))",
    "io_inp": [
      2,
      3,
      4,
      -4
    ],
    "io_out": [
      20,
      8,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(reverse(input),2),-4),-2))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-45, -20]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(sort_asc([-5, 0]),4),5),32))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -45,
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(sort_asc(input),4),5),32))"
  },
  {
    "input": "input : list = [5, 4, 3, -5, 4, 4]\noutput : list = [5, -35, -40, -40, -40, -45]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(mul_n([5, 4, 3, -5, 4, 4],-1),4),5)))",
    "io_inp": [
      5,
      4,
      3,
      -5,
      4,
      4
    ],
    "io_out": [
      5,
      -35,
      -40,
      -40,
      -40,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(mul_n(input,-1),4),5)))"
  },
  {
    "input": "input : list = [-2, 4, 1, 0, 5]\noutput : list = [-3, -9]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(take([-2, 4, 1, 0, 5],2),5))),2)",
    "io_inp": [
      -2,
      4,
      1,
      0,
      5
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(take(input,2),5))),2)"
  },
  {
    "input": "input : list = [5, -4, -4, -2, 4, -1]\noutput : list = [4, 5]",
    "output": "generated_output : list = drop(mul_n(sort_asc([5, -4, -4, -2, 4, -1]),1),4)",
    "io_inp": [
      5,
      -4,
      -4,
      -2,
      4,
      -1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_asc(input),1),4)"
  },
  {
    "input": "input : list = [-2, -2, 0, -2, 2]\noutput : list = [-2, -4, -6, -6, -6]",
    "output": "generated_output : list = take(take(take(sort_des(sub_n([-2, -2, 0, -2, 2],4)),26),43),8)",
    "io_inp": [
      -2,
      -2,
      0,
      -2,
      2
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(take(take(sort_des(sub_n(input,4)),26),43),8)"
  },
  {
    "input": "input : list = [4, 0, -3]\noutput : list = [8, 4, 1]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sort_des([4, 0, -3]),-2),5),-2),-4)",
    "io_inp": [
      4,
      0,
      -3
    ],
    "io_out": [
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sort_des(input),-2),5),-2),-4)"
  },
  {
    "input": "input : list = [5, 3, 1, -4]\noutput : list = [5, -20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop([5, 3, 1, -4],2),-3)),5),-1)",
    "io_inp": [
      5,
      3,
      1,
      -4
    ],
    "io_out": [
      5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop(input,2),-3)),5),-1)"
  },
  {
    "input": "input : list = [-4, 4, 4, -5, 0]\noutput : list = [8, -10, 0]",
    "output": "generated_output : list = mul_n(take(take(mul_n(drop([-4, 4, 4, -5, 0],2),1),5),19),2)",
    "io_inp": [
      -4,
      4,
      4,
      -5,
      0
    ],
    "io_out": [
      8,
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(drop(input,2),1),5),19),2)"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [-16, -8, 8]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc([2, -2, -4]),4),4),-1),-3)",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      -16,
      -8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc(input),4),4),-1),-3)"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = add_n([-2, 1, 2],-2)",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, -2, -4, 4, 3, -2]\noutput : list = [6, 2, 0, 8, 7, 2]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n([2, -2, -4, 4, 3, -2],3),2),-3)))",
    "io_inp": [
      2,
      -2,
      -4,
      4,
      3,
      -2
    ],
    "io_out": [
      6,
      2,
      0,
      8,
      7,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n(input,3),2),-3)))"
  },
  {
    "input": "input : list = [5, -3, 0, 2, 5]\noutput : list = [-6, -6, 3, 9, 18]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse([5, -3, 0, 2, 5])),3),-3)",
    "io_inp": [
      5,
      -3,
      0,
      2,
      5
    ],
    "io_out": [
      -6,
      -6,
      3,
      9,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(input)),3),-3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n(take(take(take(sort_asc([4, -2]),4),19),32),-1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(sort_asc(input),4),19),32),-1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [6, 12]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(sort_asc([-4, -2])),-1),21),3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(sort_asc(input)),-1),21),3)"
  },
  {
    "input": "input : list = [-1, -1, -5, -5, -2, 5]\noutput : list = [-1, -1, 7, 7, 1]",
    "output": "generated_output : list = sub_n(take(mul_n([-1, -1, -5, -5, -2, 5],-2),5),3)",
    "io_inp": [
      -1,
      -1,
      -5,
      -5,
      -2,
      5
    ],
    "io_out": [
      -1,
      -1,
      7,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,-2),5),3)"
  },
  {
    "input": "input : list = [-5, 4, -5, 1, -3]\noutput : list = [-4, -1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(reverse([-5, 4, -5, 1, -3])),-1),44))",
    "io_inp": [
      -5,
      4,
      -5,
      1,
      -3
    ],
    "io_out": [
      -4,
      -1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(reverse(input)),-1),44))"
  },
  {
    "input": "input : list = [2, 4, 3, 2, -4, 1]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(drop(sort_des(sort_asc(sort_des([2, 4, 3, 2, -4, 1]))),5),-1)",
    "io_inp": [
      2,
      4,
      3,
      2,
      -4,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(sort_asc(sort_des(input))),5),-1)"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(sort_des([2, -4, -1]))),-3))",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [-2, 3, -3, -1]\noutput : list = [-3, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n([-2, 3, -3, -1],1),8)))",
    "io_inp": [
      -2,
      3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(input,1),8)))"
  },
  {
    "input": "input : list = [1, 3, 0, 5]\noutput : list = [8, 4, 0, -2]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(add_n([1, 3, 0, 5],-1)),2)),1)",
    "io_inp": [
      1,
      3,
      0,
      5
    ],
    "io_out": [
      8,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(add_n(input,-1)),2)),1)"
  },
  {
    "input": "input : list = [4, -4, -1, -5, -5, -5]\noutput : list = [-11, -11, -11, -10, -7, -2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(add_n([4, -4, -1, -5, -5, -5],4),3),-2)),-5)",
    "io_inp": [
      4,
      -4,
      -1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -11,
      -11,
      -11,
      -10,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(add_n(input,4),3),-2)),-5)"
  },
  {
    "input": "input : list = [-3, -5, -4, 1, -1]\noutput : list = [-4, 0, -2, -12, -8]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(add_n([-3, -5, -4, 1, -1],2),-2),-2),7),-2)",
    "io_inp": [
      -3,
      -5,
      -4,
      1,
      -1
    ],
    "io_out": [
      -4,
      0,
      -2,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(add_n(input,2),-2),-2),7),-2)"
  },
  {
    "input": "input : list = [-1, 0, -5, -5, -4]\noutput : list = [-12, -8, 4, 8, 8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(add_n([-1, 0, -5, -5, -4],3)))),-4)",
    "io_inp": [
      -1,
      0,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -12,
      -8,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(add_n(input,3)))),-4)"
  },
  {
    "input": "input : list = [4, -5, -1, -2, -1]\noutput : list = [-16]",
    "output": "generated_output : list = sort_des(mul_n(take([4, -5, -1, -2, -1],1),-4))",
    "io_inp": [
      4,
      -5,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),-4))"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [-8, -4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(mul_n([4, -2, 2],-2)))))",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      -8,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(mul_n(input,-2)))))"
  },
  {
    "input": "input : list = [-5, 2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(drop([-5, 2, 3],1))))",
    "io_inp": [
      -5,
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(drop(input,1))))"
  },
  {
    "input": "input : list = [-5, -5, -2, -3]\noutput : list = [44, 44, 32, 36]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(sub_n([-5, -5, -2, -3],-1),-1),-3),-3),-4)",
    "io_inp": [
      -5,
      -5,
      -2,
      -3
    ],
    "io_out": [
      44,
      44,
      32,
      36
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(sub_n(input,-1),-1),-3),-3),-4)"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [4, 0, -1]",
    "output": "generated_output : list = reverse(take(take(sort_asc([0, 4, -1]),18),24))",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(input),18),24))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [12, 16]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_des([-3, -4]),-4)),24))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_des(input),-4)),24))"
  },
  {
    "input": "input : list = [0, 2, 3, -1, 3]\noutput : list = [-1, -1, -2, -4, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(reverse([0, 2, 3, -1, 3]))),4))",
    "io_inp": [
      0,
      2,
      3,
      -1,
      3
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [3, 3, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-3, -3, 2])),-1)",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [-3, 0, -2, -5]\noutput : list = [5, 15, 20, 30]",
    "output": "generated_output : list = take(sort_asc(sub_n(mul_n(reverse([-3, 0, -2, -5]),-5),-5)),39)",
    "io_inp": [
      -3,
      0,
      -2,
      -5
    ],
    "io_out": [
      5,
      15,
      20,
      30
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(mul_n(reverse(input),-5),-5)),39)"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(drop([5, -4, 2],1),3),-2)))",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(drop(input,1),3),-2)))"
  },
  {
    "input": "input : list = [4, -3, -4, 0, 2, 2]\noutput : list = [24, 18, 18, 12, 3, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(sort_des([4, -3, -4, 0, 2, 2]),4),33),3))",
    "io_inp": [
      4,
      -3,
      -4,
      0,
      2,
      2
    ],
    "io_out": [
      24,
      18,
      18,
      12,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(sort_des(input),4),33),3))"
  },
  {
    "input": "input : list = [-4, -5, 4, 2]\noutput : list = [-1, 1, 7, 8]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(add_n([-4, -5, 4, 2],-2),-1),1)))",
    "io_inp": [
      -4,
      -5,
      4,
      2
    ],
    "io_out": [
      -1,
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(add_n(input,-2),-1),1)))"
  },
  {
    "input": "input : list = [-2, 3, 4, 4]\noutput : list = [4, 4, 3, -2]",
    "output": "generated_output : list = sort_des([-2, 3, 4, 4])",
    "io_inp": [
      -2,
      3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, -1, 2, 2]\noutput : list = [2, 2, -1, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, -1, 2, 2])",
    "io_inp": [
      -5,
      0,
      -1,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, 2, -1, 5, -3]\noutput : list = [-5, -3, -3, -1, 2, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take(reverse([-3, -5, 2, -1, 5, -3]),11))))",
    "io_inp": [
      -3,
      -5,
      2,
      -1,
      5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(reverse(input),11))))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(sort_des(add_n([4, 5],-3)))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,-3)))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(take(add_n(add_n(mul_n([2, 1],2),1),-4),19))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(mul_n(input,2),1),-4),19))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sub_n([-2, -4],-1)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -2, 0, -4, -4, 4]\noutput : list = [11, 12, 10, 14, 14, 6]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(sub_n([-1, -2, 0, -4, -4, 4],4),19),-5),-1),1)",
    "io_inp": [
      -1,
      -2,
      0,
      -4,
      -4,
      4
    ],
    "io_out": [
      11,
      12,
      10,
      14,
      14,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(sub_n(input,4),19),-5),-1),1)"
  },
  {
    "input": "input : list = [-4, 5, -1]\noutput : list = [2, 5, 11]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n([-4, 5, -1],-4))),2)",
    "io_inp": [
      -4,
      5,
      -1
    ],
    "io_out": [
      2,
      5,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(input,-4))),2)"
  },
  {
    "input": "input : list = [1, -3, 0, -1]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sort_des(add_n(drop(reverse([1, -3, 0, -1]),3),-5)))",
    "io_inp": [
      1,
      -3,
      0,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(drop(reverse(input),3),-5)))"
  },
  {
    "input": "input : list = [-5, 4, 1, -3]\noutput : list = [4, 1, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(take(take(sort_des([-5, 4, 1, -3]),12),25)))",
    "io_inp": [
      -5,
      4,
      1,
      -3
    ],
    "io_out": [
      4,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sort_des(input),12),25)))"
  },
  {
    "input": "input : list = [1, -4, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(take([1, -4, 0],1),-4),4),5))",
    "io_inp": [
      1,
      -4,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(take(input,1),-4),4),5))"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [8]",
    "output": "generated_output : list = take(add_n(take(add_n(take([2, -3, 2],1),2),11),4),14)",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(take(input,1),2),11),4),14)"
  },
  {
    "input": "input : list = [-3, 4, 2, 1, -2]\noutput : list = [5, 4, 1]",
    "output": "generated_output : list = sub_n(drop([-3, 4, 2, 1, -2],2),-3)",
    "io_inp": [
      -3,
      4,
      2,
      1,
      -2
    ],
    "io_out": [
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [0, 0, -2, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(drop(sort_asc(mul_n([0, 0, -2, 0],-2)),2))",
    "io_inp": [
      0,
      0,
      -2,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(mul_n(input,-2)),2))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-104, -104]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n(mul_n([-5, -5],-3),-2),-2),4))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -104,
      -104
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(mul_n(input,-3),-2),-2),4))"
  },
  {
    "input": "input : list = [-2, 1, 1, -1]\noutput : list = [-2, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([-2, 1, 1, -1])))",
    "io_inp": [
      -2,
      1,
      1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, 2, 2, 3, 2]\noutput : list = [-3, -1, -1, -1, 0]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(sort_des([0, 2, 2, 3, 2])),3),39))",
    "io_inp": [
      0,
      2,
      2,
      3,
      2
    ],
    "io_out": [
      -3,
      -1,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(sort_des(input)),3),39))"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(mul_n([0, 3, -1],-1),2)",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),2)"
  },
  {
    "input": "input : list = [5, -4, -4, 5]\noutput : list = [-20, -20, 7, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(mul_n([5, -4, -4, 5],-3))),5))",
    "io_inp": [
      5,
      -4,
      -4,
      5
    ],
    "io_out": [
      -20,
      -20,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(mul_n(input,-3))),5))"
  },
  {
    "input": "input : list = [-3, -1, 0]\noutput : list = [4, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sort_asc([-3, -1, 0]),5)),1))",
    "io_inp": [
      -3,
      -1,
      0
    ],
    "io_out": [
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sort_asc(input),5)),1))"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [-7, -9]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(drop([-5, -1, -3],1)),-4),5),-5)",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(drop(input,1)),-4),5),-5)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_des([4, 5])),-1),3),3)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_des(input)),-1),3),3)"
  },
  {
    "input": "input : list = [1, 4, -5, 5, 5, 5]\noutput : list = [3, 6, -3, 7, 7, 7]",
    "output": "generated_output : list = sub_n(mul_n([1, 4, -5, 5, 5, 5],1),-2)",
    "io_inp": [
      1,
      4,
      -5,
      5,
      5,
      5
    ],
    "io_out": [
      3,
      6,
      -3,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-2)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([1, -4]),-3))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [3, 2, 5, 0, 5, -1]\noutput : list = [4, -20, 0, -20, -8, -12]",
    "output": "generated_output : list = reverse(mul_n([3, 2, 5, 0, 5, -1],-4))",
    "io_inp": [
      3,
      2,
      5,
      0,
      5,
      -1
    ],
    "io_out": [
      4,
      -20,
      0,
      -20,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [5, -2, 4, 4]\noutput : list = [8, 1, 7, 7]",
    "output": "generated_output : list = add_n([5, -2, 4, 4],3)",
    "io_inp": [
      5,
      -2,
      4,
      4
    ],
    "io_out": [
      8,
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [48, 0, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(add_n([-5, -1, -1],1),-4)),3))",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      48,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(add_n(input,1),-4)),3))"
  },
  {
    "input": "input : list = [-1, 1, 3, -4]\noutput : list = [-12, 16, 8, 0]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n([-1, 1, 3, -4],2),4),4))",
    "io_inp": [
      -1,
      1,
      3,
      -4
    ],
    "io_out": [
      -12,
      16,
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(input,2),4),4))"
  },
  {
    "input": "input : list = [-1, -1, -3, 0, -2, 2]\noutput : list = [2, -2, 0, -3, -1, -1]",
    "output": "generated_output : list = reverse([-1, -1, -3, 0, -2, 2])",
    "io_inp": [
      -1,
      -1,
      -3,
      0,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      0,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -3, 0, -3, 1]\noutput : list = [0, -1, -1, -4, -4]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(sort_des([0, -3, 0, -3, 1]),-5)),4))",
    "io_inp": [
      0,
      -3,
      0,
      -3,
      1
    ],
    "io_out": [
      0,
      -1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(sort_des(input),-5)),4))"
  },
  {
    "input": "input : list = [-2, -1, -2, -1]\noutput : list = [-11, -16, -11, -16]",
    "output": "generated_output : list = reverse(take(add_n(add_n(mul_n([-2, -1, -2, -1],5),-3),-3),9))",
    "io_inp": [
      -2,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -11,
      -16,
      -11,
      -16
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(mul_n(input,5),-3),-3),9))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sort_des([1, -2]),12),4),5))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sort_des(input),12),4),5))"
  },
  {
    "input": "input : list = [-2, 3, 1]\noutput : list = [6, -3, -9]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(sort_des([-2, 3, 1]))),-3))",
    "io_inp": [
      -2,
      3,
      1
    ],
    "io_out": [
      6,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [-3, 5, 5, 1, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(sort_des([-3, 5, 5, 1, 5]))),2))",
    "io_inp": [
      -3,
      5,
      5,
      1,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(sort_des(input))),2))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [8, 7]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_asc([0, 1])),5),2),4)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_asc(input)),5),2),4)"
  },
  {
    "input": "input : list = [5, -5, -3, 0]\noutput : list = [5]",
    "output": "generated_output : list = take(take([5, -5, -3, 0],1),6)",
    "io_inp": [
      5,
      -5,
      -3,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(input,1),6)"
  },
  {
    "input": "input : list = [4, 4, -5]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 4, -5],1)",
    "io_inp": [
      4,
      4,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -3, -1, 2, 2, 4]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(take([5, -3, -1, 2, 2, 4],1)),-2)))",
    "io_inp": [
      5,
      -3,
      -1,
      2,
      2,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(take(input,1)),-2)))"
  },
  {
    "input": "input : list = [-5, -5, -4, 0, 3]\noutput : list = [-25, -25, -20, 0, 15]",
    "output": "generated_output : list = mul_n([-5, -5, -4, 0, 3],5)",
    "io_inp": [
      -5,
      -5,
      -4,
      0,
      3
    ],
    "io_out": [
      -25,
      -25,
      -20,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [-6, 2]",
    "output": "generated_output : list = mul_n(sub_n(take(drop([-2, -4, 0],1),7),-1),2)",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(drop(input,1),7),-1),2)"
  },
  {
    "input": "input : list = [-2, 4, -2, 1, 5]\noutput : list = [1, 9, 15, 3, 15]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(add_n([-2, 4, -2, 1, 5],-2),1),-2),5))",
    "io_inp": [
      -2,
      4,
      -2,
      1,
      5
    ],
    "io_out": [
      1,
      9,
      15,
      3,
      15
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(add_n(input,-2),1),-2),5))"
  },
  {
    "input": "input : list = [-1, 4, 4, 1, 5, -5]\noutput : list = [-12, -9, -9, 0, 6, 18]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(mul_n([-1, 4, 4, 1, 5, -5],-3),14))),3)",
    "io_inp": [
      -1,
      4,
      4,
      1,
      5,
      -5
    ],
    "io_out": [
      -12,
      -9,
      -9,
      0,
      6,
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(mul_n(input,-3),14))),3)"
  },
  {
    "input": "input : list = [-1, -3, 0, 2, 5]\noutput : list = [-7, -4, -2, -1, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(mul_n([-1, -3, 0, 2, 5],1),-1)),-2))",
    "io_inp": [
      -1,
      -3,
      0,
      2,
      5
    ],
    "io_out": [
      -7,
      -4,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(mul_n(input,1),-1)),-2))"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-12, -12, -13]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(sort_asc([-4, -3, -3]),4),-1)),-4)",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -12,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(sort_asc(input),4),-1)),-4)"
  },
  {
    "input": "input : list = [-5, -2, -5, -4]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, -2, -5, -4],1))",
    "io_inp": [
      -5,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-1, 5, 4, 3, 3, -2]\noutput : list = [5, 4, 3, 3, -1, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc([-1, 5, 4, 3, 3, -2])))))",
    "io_inp": [
      -1,
      5,
      4,
      3,
      3,
      -2
    ],
    "io_out": [
      5,
      4,
      3,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, -3, -1, 4, 2, -4]\noutput : list = [4, 2, 1, -1, -3, -4]",
    "output": "generated_output : list = take(sort_des(reverse([1, -3, -1, 4, 2, -4])),11)",
    "io_inp": [
      1,
      -3,
      -1,
      4,
      2,
      -4
    ],
    "io_out": [
      4,
      2,
      1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),11)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-12, -6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(add_n([3, 5],3),4)),-3))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(add_n(input,3),4)),-3))"
  },
  {
    "input": "input : list = [-5, -1, 3, -3, 2, 2]\noutput : list = [51, 36, 36, -9, -39, -69]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(mul_n([-5, -1, 3, -3, 2, 2],-5),2),-3)))",
    "io_inp": [
      -5,
      -1,
      3,
      -3,
      2,
      2
    ],
    "io_out": [
      51,
      36,
      36,
      -9,
      -39,
      -69
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(mul_n(input,-5),2),-3)))"
  },
  {
    "input": "input : list = [2, 0, -1, -3, 3, 4]\noutput : list = [8, 0, -4, -12, 12, 16]",
    "output": "generated_output : list = mul_n([2, 0, -1, -3, 3, 4],4)",
    "io_inp": [
      2,
      0,
      -1,
      -3,
      3,
      4
    ],
    "io_out": [
      8,
      0,
      -4,
      -12,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, 4, 0, -2]\noutput : list = [5, 4, 0, -2]",
    "output": "generated_output : list = reverse(reverse([5, 4, 0, -2]))",
    "io_inp": [
      5,
      4,
      0,
      -2
    ],
    "io_out": [
      5,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, 5, 4, 0, 0, 1]\noutput : list = [2, 5]",
    "output": "generated_output : list = take([2, 5, 4, 0, 0, 1],2)",
    "io_inp": [
      2,
      5,
      4,
      0,
      0,
      1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-6, 21]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(add_n([-5, 4],3)),3),4))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -6,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(add_n(input,3)),3),4))"
  },
  {
    "input": "input : list = [1, -4, -3, 1]\noutput : list = [6, 7, 11, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc([1, -4, -3, 1]),-5),5))",
    "io_inp": [
      1,
      -4,
      -3,
      1
    ],
    "io_out": [
      6,
      7,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(input),-5),5))"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [-2, -6, 1]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n(mul_n([1, 5, -2],-1),2),4),2),5)",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      -2,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(mul_n(input,-1),2),4),2),5)"
  },
  {
    "input": "input : list = [4, 0, -3, -2, -3]\noutput : list = [36, 36, 24, 0, -48]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(mul_n([4, 0, -3, -2, -3],4)),-3),13))",
    "io_inp": [
      4,
      0,
      -3,
      -2,
      -3
    ],
    "io_out": [
      36,
      36,
      24,
      0,
      -48
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(mul_n(input,4)),-3),13))"
  },
  {
    "input": "input : list = [1, -3, 0, 5]\noutput : list = [8, -4, -8, -24]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(reverse([1, -3, 0, 5])),-1)),-4)",
    "io_inp": [
      1,
      -3,
      0,
      5
    ],
    "io_out": [
      8,
      -4,
      -8,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(reverse(input)),-1)),-4)"
  },
  {
    "input": "input : list = [-4, -2, 5, 3]\noutput : list = [-9, -7, -2, 0]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc([-4, -2, 5, 3]),-5)),28))",
    "io_inp": [
      -4,
      -2,
      5,
      3
    ],
    "io_out": [
      -9,
      -7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc(input),-5)),28))"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [0, 1, 6]",
    "output": "generated_output : list = take(reverse(add_n(add_n(sort_des([-3, 3, -2]),1),2)),19)",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(sort_des(input),1),2)),19)"
  },
  {
    "input": "input : list = [-1, -3, -5, -3, -3, -1]\noutput : list = [-6, -8, -10, -8, -8, -6]",
    "output": "generated_output : list = add_n(take(add_n([-1, -3, -5, -3, -3, -1],-2),15),-3)",
    "io_inp": [
      -1,
      -3,
      -5,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -8,
      -10,
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-2),15),-3)"
  },
  {
    "input": "input : list = [-5, 1, 0, -5, 1, -3]\noutput : list = [2, 2]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(sort_des([-5, 1, 0, -5, 1, -3]))),2),2)",
    "io_inp": [
      -5,
      1,
      0,
      -5,
      1,
      -3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(sort_des(input))),2),2)"
  },
  {
    "input": "input : list = [-3, -4, 5, -1]\noutput : list = [-4, -3, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-3, -4, 5, -1]))",
    "io_inp": [
      -3,
      -4,
      5,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 3, -1, -2, 4]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(take(drop(add_n([-3, 3, -1, -2, 4],4),4),17))",
    "io_inp": [
      -3,
      3,
      -1,
      -2,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(add_n(input,4),4),17))"
  },
  {
    "input": "input : list = [1, 4, -2, -3, 5, -4]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(take([1, 4, -2, -3, 5, -4],4),1),1),1))",
    "io_inp": [
      1,
      4,
      -2,
      -3,
      5,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(take(input,4),1),1),1))"
  },
  {
    "input": "input : list = [-4, 4, 0, 5, -3, 4]\noutput : list = [-25, -20, -20, 0, 15, 20]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(mul_n([-4, 4, 0, 5, -3, 4],-5),26))))",
    "io_inp": [
      -4,
      4,
      0,
      5,
      -3,
      4
    ],
    "io_out": [
      -25,
      -20,
      -20,
      0,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(mul_n(input,-5),26))))"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [-9, -4, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(add_n([3, -2, 3],2))),5),4)",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      -9,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(add_n(input,2))),5),4)"
  },
  {
    "input": "input : list = [1, 0, 0, 5]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(take([1, 0, 0, 5],2))",
    "io_inp": [
      1,
      0,
      0,
      5
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [1, -1, -3, -3, 1]\noutput : list = [4, 2, 0, 0, 4]",
    "output": "generated_output : list = add_n(add_n([1, -1, -3, -3, 1],-2),5)",
    "io_inp": [
      1,
      -1,
      -3,
      -3,
      1
    ],
    "io_out": [
      4,
      2,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),5)"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [-6, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(add_n([4, 0, 5],-3)),3)))",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(add_n(input,-3)),3)))"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [-10, 20, 0]",
    "output": "generated_output : list = mul_n([2, -4, 0],-5)",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      -10,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [45, 30]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(drop([-3, -5, -2],1)),-4),-5)",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      45,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(drop(input,1)),-4),-5)"
  },
  {
    "input": "input : list = [0, 1, -5, -1, 3, 4]\noutput : list = [4, 3, 1, 0, -1, -5]",
    "output": "generated_output : list = sort_des([0, 1, -5, -1, 3, 4])",
    "io_inp": [
      0,
      1,
      -5,
      -1,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, 2, -1]\noutput : list = [6, 3, 1, -1]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-5, -3, 2, -1],4)),1)",
    "io_inp": [
      -5,
      -3,
      2,
      -1
    ],
    "io_out": [
      6,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,4)),1)"
  },
  {
    "input": "input : list = [5, -4, -2, -3, 0, 2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, -2, -3, 0, 2],1)",
    "io_inp": [
      5,
      -4,
      -2,
      -3,
      0,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 1, -5, 0]\noutput : list = [4, 1, 0, -5]",
    "output": "generated_output : list = sort_des([4, 1, -5, 0])",
    "io_inp": [
      4,
      1,
      -5,
      0
    ],
    "io_out": [
      4,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, 2, 1, -1]\noutput : list = [11, 11, 7, -1, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(mul_n([-2, -2, 2, 1, -1],-4)))),-3)",
    "io_inp": [
      -2,
      -2,
      2,
      1,
      -1
    ],
    "io_out": [
      11,
      11,
      7,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(mul_n(input,-4)))),-3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-1, -9]",
    "output": "generated_output : list = sort_des(take(take(take(add_n([-5, 3],-4),6),2),19))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(add_n(input,-4),6),2),19))"
  },
  {
    "input": "input : list = [-4, -4, 4, 3, 4, 3]\noutput : list = [-16, -16, -2, -2, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(add_n([-4, -4, 4, 3, 4, 3],-4),2))))",
    "io_inp": [
      -4,
      -4,
      4,
      3,
      4,
      3
    ],
    "io_out": [
      -16,
      -16,
      -2,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(add_n(input,-4),2))))"
  },
  {
    "input": "input : list = [-1, 5, -4, 1, 2]\noutput : list = [18, 6, 2, -6, -18]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(mul_n([-1, 5, -4, 1, 2],4)),-2),37))",
    "io_inp": [
      -1,
      5,
      -4,
      1,
      2
    ],
    "io_out": [
      18,
      6,
      2,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(mul_n(input,4)),-2),37))"
  },
  {
    "input": "input : list = [-3, -4, 4, -2, 1, 0]\noutput : list = [-24, -6, 0, 12, 18, 24]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(mul_n([-3, -4, 4, -2, 1, 0],-3))),2))",
    "io_inp": [
      -3,
      -4,
      4,
      -2,
      1,
      0
    ],
    "io_out": [
      -24,
      -6,
      0,
      12,
      18,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(mul_n(input,-3))),2))"
  },
  {
    "input": "input : list = [2, -5, 3, -2, -5]\noutput : list = [-1, -1, 2, 7]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(drop([2, -5, 3, -2, -5],1),-2),-2),-4))",
    "io_inp": [
      2,
      -5,
      3,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -1,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(drop(input,1),-2),-2),-4))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2, -1, 2]\noutput : list = [7, 7, 4]",
    "output": "generated_output : list = sort_des(sub_n(drop(sub_n([-4, 2, -1, 2],-4),1),-1))",
    "io_inp": [
      -4,
      2,
      -1,
      2
    ],
    "io_out": [
      7,
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(sub_n(input,-4),1),-1))"
  },
  {
    "input": "input : list = [4, 3, -2, -3, -5]\noutput : list = [-9, -8, -3, -2, 0]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(sub_n([4, 3, -2, -3, -5],-5),-1),-3),35),-3)",
    "io_inp": [
      4,
      3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(sub_n(input,-5),-1),-3),35),-3)"
  },
  {
    "input": "input : list = [2, -2, -2, 5]\noutput : list = [8, 1, 1, 5]",
    "output": "generated_output : list = reverse(add_n([2, -2, -2, 5],3))",
    "io_inp": [
      2,
      -2,
      -2,
      5
    ],
    "io_out": [
      8,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-4, -2, 3]",
    "output": "generated_output : list = reverse(sort_des([-4, -2, 3]))",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-12, -16]",
    "output": "generated_output : list = take(take(sub_n(mul_n(reverse([-5, -4]),4),-4),2),29)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -12,
      -16
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(reverse(input),4),-4),2),29)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [4, 3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([3, -4, 4]))",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [4, -3, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(take([4, -3, 1],1))",
    "io_inp": [
      4,
      -3,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-2, -4, -2, 3, -3, -5]\noutput : list = [-5, -4, -3, -2, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sort_asc([-2, -4, -2, 3, -3, -5])))))",
    "io_inp": [
      -2,
      -4,
      -2,
      3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-3, 2, -4, 4, -2, -2]\noutput : list = [4, 2, -2, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-3, 2, -4, 4, -2, -2])",
    "io_inp": [
      -3,
      2,
      -4,
      4,
      -2,
      -2
    ],
    "io_out": [
      4,
      2,
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-40, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n([3, -5],5),-5)))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -40,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(input,5),-5)))"
  },
  {
    "input": "input : list = [-3, 3, -3, -1, 0, 1]\noutput : list = [-8, -2, -8, -6, -5, -4]",
    "output": "generated_output : list = sub_n([-3, 3, -3, -1, 0, 1],5)",
    "io_inp": [
      -3,
      3,
      -3,
      -1,
      0,
      1
    ],
    "io_out": [
      -8,
      -2,
      -8,
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [0, 2, -4, -3, 4]\noutput : list = [-9, -8, -5, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n([0, 2, -4, -3, 4],3)),-2)))",
    "io_inp": [
      0,
      2,
      -4,
      -3,
      4
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n(input,3)),-2)))"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -5, 2],1)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -4, -5, 5, 5, -1]\noutput : list = [2, -6, -7, 3, 3, -3]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(sub_n([4, -4, -5, 5, 5, -1],1)),-3)),2)",
    "io_inp": [
      4,
      -4,
      -5,
      5,
      5,
      -1
    ],
    "io_out": [
      2,
      -6,
      -7,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(sub_n(input,1)),-3)),2)"
  },
  {
    "input": "input : list = [1, -2, -4, -3, -5, -4]\noutput : list = [1, -2, -4, -3, -5, -4]",
    "output": "generated_output : list = mul_n([1, -2, -4, -3, -5, -4],1)",
    "io_inp": [
      1,
      -2,
      -4,
      -3,
      -5,
      -4
    ],
    "io_out": [
      1,
      -2,
      -4,
      -3,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(sub_n([1, -4, 1],1))),6),1)",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(sub_n(input,1))),6),1)"
  },
  {
    "input": "input : list = [-5, 2, -3, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 2, -3, -5],1)",
    "io_inp": [
      -5,
      2,
      -3,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [9, 8, 2]",
    "output": "generated_output : list = take(sub_n(reverse(take(reverse([5, 4, -2]),13)),-4),14)",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      9,
      8,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(reverse(input),13)),-4),14)"
  },
  {
    "input": "input : list = [0, 0, 5, -1, 0, 2]\noutput : list = [-4, -3, -3, -3, -1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sub_n([0, 0, 5, -1, 0, 2],2))),1))",
    "io_inp": [
      0,
      0,
      5,
      -1,
      0,
      2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sub_n(input,2))),1))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [9, -6]",
    "output": "generated_output : list = mul_n(add_n([5, 0],-2),3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [4, -4, -8]",
    "output": "generated_output : list = add_n(mul_n(add_n([5, 1, -1],-2),2),-2)",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-2),2),-2)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-15, -7]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des([1, 3]),-4),-3),11)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -15,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(input),-4),-3),11)"
  },
  {
    "input": "input : list = [5, 3, 4, -3, 3]\noutput : list = [-50, -40, -45]",
    "output": "generated_output : list = take(take(mul_n(sub_n([5, 3, 4, -3, 3],-5),-5),3),29)",
    "io_inp": [
      5,
      3,
      4,
      -3,
      3
    ],
    "io_out": [
      -50,
      -40,
      -45
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(input,-5),-5),3),29)"
  },
  {
    "input": "input : list = [-3, -3, 4, -5]\noutput : list = [-5, 4, -3, -3]",
    "output": "generated_output : list = reverse([-3, -3, 4, -5])",
    "io_inp": [
      -3,
      -3,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, -1, 1]\noutput : list = [1, -2, -2, 0]",
    "output": "generated_output : list = sub_n([2, -1, -1, 1],1)",
    "io_inp": [
      2,
      -1,
      -1,
      1
    ],
    "io_out": [
      1,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 1, -2, 3, -4]\noutput : list = [10, 9, 7, 4, 2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse([4, 1, -2, 3, -4]),-5),1))",
    "io_inp": [
      4,
      1,
      -2,
      3,
      -4
    ],
    "io_out": [
      10,
      9,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(input),-5),1))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-4]",
    "output": "generated_output : list = drop(take(sub_n([-2, -1],3),12),1)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(input,3),12),1)"
  },
  {
    "input": "input : list = [-2, -1, -4, -2, 5, -4]\noutput : list = [-5, -10, 5, -5, -40, 5]",
    "output": "generated_output : list = mul_n(take(sub_n([-2, -1, -4, -2, 5, -4],-3),30),-5)",
    "io_inp": [
      -2,
      -1,
      -4,
      -2,
      5,
      -4
    ],
    "io_out": [
      -5,
      -10,
      5,
      -5,
      -40,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-3),30),-5)"
  },
  {
    "input": "input : list = [1, -5, 2, -1]\noutput : list = [3, -3, 4, 1]",
    "output": "generated_output : list = sub_n(add_n([1, -5, 2, -1],5),3)",
    "io_inp": [
      1,
      -5,
      2,
      -1
    ],
    "io_out": [
      3,
      -3,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),3)"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [-12, 0]",
    "output": "generated_output : list = sort_asc(take(mul_n(drop([-5, 0, 3],1),-4),14))",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(drop(input,1),-4),14))"
  },
  {
    "input": "input : list = [2, 1, 5, 5, 3]\noutput : list = [5, 4, 8, 8, 6]",
    "output": "generated_output : list = add_n([2, 1, 5, 5, 3],3)",
    "io_inp": [
      2,
      1,
      5,
      5,
      3
    ],
    "io_out": [
      5,
      4,
      8,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, 2, -4, 3, -5, -2]\noutput : list = [-5, -4, -2, 3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(drop([1, 2, -4, 3, -5, -2],2))),1)",
    "io_inp": [
      1,
      2,
      -4,
      3,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(drop(input,2))),1)"
  },
  {
    "input": "input : list = [0, 5, -4, 1, -3]\noutput : list = [-6, -5, -2, -1, 3]",
    "output": "generated_output : list = sub_n(sort_asc([0, 5, -4, 1, -3]),2)",
    "io_inp": [
      0,
      5,
      -4,
      1,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [-5, -4, -4]",
    "output": "generated_output : list = mul_n(take(add_n(reverse([-1, -1, -2]),-3),26),1)",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(input),-3),26),1)"
  },
  {
    "input": "input : list = [-5, -2, 5, 0]\noutput : list = [-3, 2, -5]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(drop([-5, -2, 5, 0],1)))),3)",
    "io_inp": [
      -5,
      -2,
      5,
      0
    ],
    "io_out": [
      -3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(drop(input,1)))),3)"
  },
  {
    "input": "input : list = [-5, 0, 4]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(take([-5, 0, 4],1),2)),-4))",
    "io_inp": [
      -5,
      0,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(take(input,1),2)),-4))"
  },
  {
    "input": "input : list = [-3, 2, -2, -2, -1, 5]\noutput : list = [21]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(mul_n([-3, 2, -2, -2, -1, 5],-4),5),3)),1)",
    "io_inp": [
      -3,
      2,
      -2,
      -2,
      -1,
      5
    ],
    "io_out": [
      21
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(mul_n(input,-4),5),3)),1)"
  },
  {
    "input": "input : list = [-3, -4, 5, -4, -4, -2]\noutput : list = [-10, -30, -30, 60, -30, -20]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n([-3, -4, 5, -4, -4, -2],2),2)),5)",
    "io_inp": [
      -3,
      -4,
      5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -30,
      -30,
      60,
      -30,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(input,2),2)),5)"
  },
  {
    "input": "input : list = [-1, 2, 2, 0]\noutput : list = [2, 2, 0, -1]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(sort_asc([-1, 2, 2, 0]))),27))",
    "io_inp": [
      -1,
      2,
      2,
      0
    ],
    "io_out": [
      2,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(sort_asc(input))),27))"
  },
  {
    "input": "input : list = [2, 4, 5, -4, 0, -3]\noutput : list = [-3, 0, -4, 5, 4, 2]",
    "output": "generated_output : list = reverse([2, 4, 5, -4, 0, -3])",
    "io_inp": [
      2,
      4,
      5,
      -4,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      -4,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 0, -2, -3]\noutput : list = [12, 10, 6, 10]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-2, 0, -2, -3],3)),-2)",
    "io_inp": [
      -2,
      0,
      -2,
      -3
    ],
    "io_out": [
      12,
      10,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,3)),-2)"
  },
  {
    "input": "input : list = [-4, -4, 4, 1]\noutput : list = [-16, -16, 16, 4]",
    "output": "generated_output : list = mul_n([-4, -4, 4, 1],4)",
    "io_inp": [
      -4,
      -4,
      4,
      1
    ],
    "io_out": [
      -16,
      -16,
      16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, -4, -1, -2, -3, 4]\noutput : list = [-1, -8]",
    "output": "generated_output : list = add_n(reverse(take(drop([2, -4, -1, -2, -3, 4],4),11)),-5)",
    "io_inp": [
      2,
      -4,
      -1,
      -2,
      -3,
      4
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(drop(input,4),11)),-5)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [12, -9]",
    "output": "generated_output : list = mul_n(sort_des([-3, 4]),3)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [3, -4, 1, -1, -1]\noutput : list = [3]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(sub_n([3, -4, 1, -1, -1],2)),-1),1),3)",
    "io_inp": [
      3,
      -4,
      1,
      -1,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(sub_n(input,2)),-1),1),3)"
  },
  {
    "input": "input : list = [2, 4, -1, -1]\noutput : list = [32, 16, -8, -8]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(sort_asc([2, 4, -1, -1]),-2),-4)),36)",
    "io_inp": [
      2,
      4,
      -1,
      -1
    ],
    "io_out": [
      32,
      16,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(sort_asc(input),-2),-4)),36)"
  },
  {
    "input": "input : list = [2, 5, 3, -3, -4]\noutput : list = [-2, -1, 4, 5, 7]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des([2, 5, 3, -3, -4]),1),17)),2)",
    "io_inp": [
      2,
      5,
      3,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -1,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des(input),1),17)),2)"
  },
  {
    "input": "input : list = [-1, -2, 2]\noutput : list = [4, 3, 7]",
    "output": "generated_output : list = take(take(add_n([-1, -2, 2],5),17),18)",
    "io_inp": [
      -1,
      -2,
      2
    ],
    "io_out": [
      4,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,5),17),18)"
  },
  {
    "input": "input : list = [3, -5, -5, -4, -1]\noutput : list = [-9, -21, -25, -25, 7]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(mul_n([3, -5, -5, -4, -1],4),-2)),-2),5)",
    "io_inp": [
      3,
      -5,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -21,
      -25,
      -25,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(mul_n(input,4),-2)),-2),5)"
  },
  {
    "input": "input : list = [1, -3, -4]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sub_n(take(drop([1, -3, -4],1),5),4)",
    "io_inp": [
      1,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,1),5),4)"
  },
  {
    "input": "input : list = [-4, 0, -2, -1, 4, 3]\noutput : list = [-9, -7, -6, -5, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des([-4, 0, -2, -1, 4, 3]))),-5)",
    "io_inp": [
      -4,
      0,
      -2,
      -1,
      4,
      3
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(input))),-5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [3, -5]",
    "output": "generated_output : list = sort_des(mul_n([-3, 5],-1))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [3, -5, 1, 4, -1]\noutput : list = [9, 6, 4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(drop([3, -5, 1, 4, -1],2),-5))))",
    "io_inp": [
      3,
      -5,
      1,
      4,
      -1
    ],
    "io_out": [
      9,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(drop(input,2),-5))))"
  },
  {
    "input": "input : list = [-5, 3, -2, -3, -1, 5]\noutput : list = [10, -6, 4, 6, 2, -10]",
    "output": "generated_output : list = mul_n(mul_n([-5, 3, -2, -3, -1, 5],1),-2)",
    "io_inp": [
      -5,
      3,
      -2,
      -3,
      -1,
      5
    ],
    "io_out": [
      10,
      -6,
      4,
      6,
      2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-2)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [9, 4]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n([4, -1],5),-3),-3),1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(input,5),-3),-3),1)"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(take([2, -3, -5],1)),5),17))",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(take(input,1)),5),17))"
  },
  {
    "input": "input : list = [0, -2, 5, -4]\noutput : list = [5, 7, 9, 14]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([0, -2, 5, -4],-5),4))",
    "io_inp": [
      0,
      -2,
      5,
      -4
    ],
    "io_out": [
      5,
      7,
      9,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-5),4))"
  },
  {
    "input": "input : list = [-3, 0, -1, -1, 5]\noutput : list = [-4, -2, -2, -1, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(take(sort_asc([-3, 0, -1, -1, 5]),8),-1)),11)",
    "io_inp": [
      -3,
      0,
      -1,
      -1,
      5
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(sort_asc(input),8),-1)),11)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(take([4, 2, -1],1))",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-1, -17]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_des([0, 4])),-4)),-1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -1,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_des(input)),-4)),-1)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [2, -1]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(drop([3, 4, 1],1))),15),-2)",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(drop(input,1))),15),-2)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(take([3, -2, -1],1),-1),1),-5),4)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(take(input,1),-1),1),-5),4)"
  },
  {
    "input": "input : list = [-3, -2, -2, -2, -1]\noutput : list = [8, 12, 12, 12, 16]",
    "output": "generated_output : list = mul_n(add_n(add_n([-3, -2, -2, -2, -1],4),1),4)",
    "io_inp": [
      -3,
      -2,
      -2,
      -2,
      -1
    ],
    "io_out": [
      8,
      12,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,4),1),4)"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take([5, -1, -5],1))),2)",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(input,1))),2)"
  },
  {
    "input": "input : list = [-2, -2, 0, 5]\noutput : list = [-2, -2, 0, 5]",
    "output": "generated_output : list = reverse(sort_des(take(take(sort_asc([-2, -2, 0, 5]),21),17)))",
    "io_inp": [
      -2,
      -2,
      0,
      5
    ],
    "io_out": [
      -2,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(sort_asc(input),21),17)))"
  },
  {
    "input": "input : list = [5, -3, -2, 1]\noutput : list = [-7, -6, -3, 1]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(reverse([5, -3, -2, 1])),-4)))",
    "io_inp": [
      5,
      -3,
      -2,
      1
    ],
    "io_out": [
      -7,
      -6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [0, -2, -3, 5, -5, 2]\noutput : list = [3, 1, 0, 8, -2, 5]",
    "output": "generated_output : list = sub_n([0, -2, -3, 5, -5, 2],-3)",
    "io_inp": [
      0,
      -2,
      -3,
      5,
      -5,
      2
    ],
    "io_out": [
      3,
      1,
      0,
      8,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [2, -7]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des([-2, 1]),3),-1),21)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(input),3),-1),21)"
  },
  {
    "input": "input : list = [3, 1, -1, 0, -4]\noutput : list = [5, 3, 2, 1, -2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(sort_des([3, 1, -1, 0, -4])))),-2)",
    "io_inp": [
      3,
      1,
      -1,
      0,
      -4
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [1, -2, 0, 3, -2, -5]\noutput : list = [-7, -4, -4, -2, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse([1, -2, 0, 3, -2, -5]),-1))),-3)",
    "io_inp": [
      1,
      -2,
      0,
      3,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -4,
      -4,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse(input),-1))),-3)"
  },
  {
    "input": "input : list = [1, 1, -5, -4, -4, -5]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(drop(sort_asc(reverse(mul_n([1, 1, -5, -4, -4, -5],1))),4))",
    "io_inp": [
      1,
      1,
      -5,
      -4,
      -4,
      -5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(reverse(mul_n(input,1))),4))"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [-3, 5, 3]",
    "output": "generated_output : list = reverse([3, 5, -3])",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -1, 1, 5, 5]\noutput : list = [-5, -2, 0, 4, 4]",
    "output": "generated_output : list = sub_n(take(add_n([-4, -1, 1, 5, 5],1),12),2)",
    "io_inp": [
      -4,
      -1,
      1,
      5,
      5
    ],
    "io_out": [
      -5,
      -2,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,1),12),2)"
  },
  {
    "input": "input : list = [1, 3, -4, 0]\noutput : list = [-3, 1, 2, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(add_n(sub_n([1, 3, -4, 0],-1),-5))),5)",
    "io_inp": [
      1,
      3,
      -4,
      0
    ],
    "io_out": [
      -3,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(add_n(sub_n(input,-1),-5))),5)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [-4, 1, 6]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(sort_asc([5, -5, 0]),-1),17),5))",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      -4,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(sort_asc(input),-1),17),5))"
  },
  {
    "input": "input : list = [2, 4, 3, 1]\noutput : list = [8, 7, 6, 5]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(add_n([2, 4, 3, 1],1),4),-2)),1)",
    "io_inp": [
      2,
      4,
      3,
      1
    ],
    "io_out": [
      8,
      7,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(add_n(input,1),4),-2)),1)"
  },
  {
    "input": "input : list = [-5, 4, -3, 1, 1]\noutput : list = [-5, -3, 1, 1, 4]",
    "output": "generated_output : list = sort_asc([-5, 4, -3, 1, 1])",
    "io_inp": [
      -5,
      4,
      -3,
      1,
      1
    ],
    "io_out": [
      -5,
      -3,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1, -4, -5]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = sort_asc(drop([5, 1, -4, -5],1))",
    "io_inp": [
      5,
      1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [7, -3]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(sort_asc([-5, 5]),1),-3),17))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(sort_asc(input),1),-3),17))"
  },
  {
    "input": "input : list = [5, 5, -5, -1]\noutput : list = [20, 20, -20, -4]",
    "output": "generated_output : list = mul_n(mul_n([5, 5, -5, -1],4),1)",
    "io_inp": [
      5,
      5,
      -5,
      -1
    ],
    "io_out": [
      20,
      20,
      -20,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),1)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-8, -12]",
    "output": "generated_output : list = mul_n(take(take(take(sort_des([-2, -3]),16),4),8),4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(sort_des(input),16),4),8),4)"
  },
  {
    "input": "input : list = [4, 0, 1, 4, -3]\noutput : list = [-3, 0, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 0, 1, 4, -3])",
    "io_inp": [
      4,
      0,
      1,
      4,
      -3
    ],
    "io_out": [
      -3,
      0,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(drop([1, 1, 4],1),-2),-3)))",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(drop(input,1),-2),-3)))"
  },
  {
    "input": "input : list = [3, -4, 4, 0]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take([3, -4, 4, 0],1),-4)",
    "io_inp": [
      3,
      -4,
      4,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-4, -3, 3, -4, 0, 5]\noutput : list = [-4, -4, -3, 0, 3, 5]",
    "output": "generated_output : list = sort_asc([-4, -3, 3, -4, 0, 5])",
    "io_inp": [
      -4,
      -3,
      3,
      -4,
      0,
      5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, -5, -3]\noutput : list = [-3, 3, 12, 18]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(add_n([2, 0, -5, -3],-3),-2))),-3)",
    "io_inp": [
      2,
      0,
      -5,
      -3
    ],
    "io_out": [
      -3,
      3,
      12,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(add_n(input,-3),-2))),-3)"
  },
  {
    "input": "input : list = [4, 4, 1, -2, 1]\noutput : list = [1, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(drop([4, 4, 1, -2, 1],2),5)),2))",
    "io_inp": [
      4,
      4,
      1,
      -2,
      1
    ],
    "io_out": [
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(drop(input,2),5)),2))"
  },
  {
    "input": "input : list = [1, 0, 2, -5, -4]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(take([1, 0, 2, -5, -4],2),-4)),-1),-5)",
    "io_inp": [
      1,
      0,
      2,
      -5,
      -4
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(take(input,2),-4)),-1),-5)"
  },
  {
    "input": "input : list = [-2, 3, 0, -2, 4]\noutput : list = [-2, 3, 0]",
    "output": "generated_output : list = take([-2, 3, 0, -2, 4],3)",
    "io_inp": [
      -2,
      3,
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, -1, -3, -1, 5, 1]\noutput : list = [13, 17, 11, 9, 11, 8]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sub_n([-4, -1, -3, -1, 5, 1],-5),-4),-3)),11)",
    "io_inp": [
      -4,
      -1,
      -3,
      -1,
      5,
      1
    ],
    "io_out": [
      13,
      17,
      11,
      9,
      11,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sub_n(input,-5),-4),-3)),11)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(reverse([2, 5]),6)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [2, -4, 5, 0, -5, -3]\noutput : list = [-37, -17, -5, 3]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(drop([2, -4, 5, 0, -5, -3],2)),5),-4),-3)",
    "io_inp": [
      2,
      -4,
      5,
      0,
      -5,
      -3
    ],
    "io_out": [
      -37,
      -17,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(drop(input,2)),5),-4),-3)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = reverse([0, -3])",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [-20, 0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(add_n([-5, 5, 5],-2),3))),2)",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      -20,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(add_n(input,-2),3))),2)"
  },
  {
    "input": "input : list = [-1, -2, -4, -1, 3, -3]\noutput : list = [1, 2, 3, 4, 4, 8]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sub_n([-1, -2, -4, -1, 3, -3],1),5)),1))",
    "io_inp": [
      -1,
      -2,
      -4,
      -1,
      3,
      -3
    ],
    "io_out": [
      1,
      2,
      3,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sub_n(input,1),5)),1))"
  },
  {
    "input": "input : list = [-2, -2, -1]\noutput : list = [-12, -16]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n(drop([-2, -2, -1],1),2)),32),4)",
    "io_inp": [
      -2,
      -2,
      -1
    ],
    "io_out": [
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(drop(input,1),2)),32),4)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, -15]",
    "output": "generated_output : list = mul_n([0, 3],-5)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [2, -3, -2]",
    "output": "generated_output : list = reverse([-2, -3, 2])",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-14, 31]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(mul_n([5, -4],5)),21),5),-1)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -14,
      31
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(mul_n(input,5)),21),5),-1)"
  },
  {
    "input": "input : list = [-5, -4, 2, -2, 2]\noutput : list = [-2, -1, 5, 1, 5]",
    "output": "generated_output : list = sub_n([-5, -4, 2, -2, 2],-3)",
    "io_inp": [
      -5,
      -4,
      2,
      -2,
      2
    ],
    "io_out": [
      -2,
      -1,
      5,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [-6, 0, 15]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(sort_des([5, -2, 0]),12),3),33))",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      -6,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(sort_des(input),12),3),33))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sort_des([3, 4]),-1),1),3),29)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sort_des(input),-1),1),3),29)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = sort_asc(take(reverse([-2, -1, -5]),9))",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),9))"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(drop([1, -4, -4],1))),5),-4)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(drop(input,1))),5),-4)"
  },
  {
    "input": "input : list = [-2, 5, -2, 0, 2]\noutput : list = [1, 1, -7, -15, -27]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(mul_n([-2, 5, -2, 0, 2],-4)),-3),4),49)",
    "io_inp": [
      -2,
      5,
      -2,
      0,
      2
    ],
    "io_out": [
      1,
      1,
      -7,
      -15,
      -27
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(mul_n(input,-4)),-3),4),49)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des([-1, -5]))))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [1, 1, 1]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc([3, 3, 3]),3)),-2)",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(input),3)),-2)"
  },
  {
    "input": "input : list = [1, 0, 3, 5, -4, 5]\noutput : list = [-60, -60, -36, -12, 0, 48]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n([1, 0, 3, 5, -4, 5],-3)),4))",
    "io_inp": [
      1,
      0,
      3,
      5,
      -4,
      5
    ],
    "io_out": [
      -60,
      -60,
      -36,
      -12,
      0,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(input,-3)),4))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(sub_n([-4, -1],2)),1)))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(sub_n(input,2)),1)))"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [3, 4]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(drop([2, -1, -2],1)),4),-1),36)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(drop(input,1)),4),-1),36)"
  },
  {
    "input": "input : list = [4, 1, 5, 0, 5]\noutput : list = [6, 7, 10, 11, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([4, 1, 5, 0, 5],-3),3))",
    "io_inp": [
      4,
      1,
      5,
      0,
      5
    ],
    "io_out": [
      6,
      7,
      10,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-3),3))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-14, -19]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(sort_asc([3, 2])),-5)),4)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -14,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(sort_asc(input)),-5)),4)"
  },
  {
    "input": "input : list = [-4, -5, -1, -3, 5]\noutput : list = [7, 1, -1, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(sort_asc([-4, -5, -1, -3, 5]),24)),2))",
    "io_inp": [
      -4,
      -5,
      -1,
      -3,
      5
    ],
    "io_out": [
      7,
      1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(sort_asc(input),24)),2))"
  },
  {
    "input": "input : list = [3, -1, -3, 1, -5, 2]\noutput : list = [-6, -4, -2, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(sort_asc([3, -1, -3, 1, -5, 2]))),1))",
    "io_inp": [
      3,
      -1,
      -3,
      1,
      -5,
      2
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [1, 2, -3, 2, -3, -4]\noutput : list = [4, 5, 5, 9, 10, 10]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(add_n([1, 2, -3, 2, -3, -4],5),17),3)))",
    "io_inp": [
      1,
      2,
      -3,
      2,
      -3,
      -4
    ],
    "io_out": [
      4,
      5,
      5,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(add_n(input,5),17),3)))"
  },
  {
    "input": "input : list = [-1, 0, 1, 3, 0]\noutput : list = [-13, -18, -18, -23, -33]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(reverse(add_n([-1, 0, 1, 3, 0],4))),-5),2)",
    "io_inp": [
      -1,
      0,
      1,
      3,
      0
    ],
    "io_out": [
      -13,
      -18,
      -18,
      -23,
      -33
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(reverse(add_n(input,4))),-5),2)"
  },
  {
    "input": "input : list = [-1, -1, -5, 4, -2, 1]\noutput : list = [1]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(take([-1, -1, -5, 4, -2, 1],1)))),2)",
    "io_inp": [
      -1,
      -1,
      -5,
      4,
      -2,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(take(input,1)))),2)"
  },
  {
    "input": "input : list = [3, -1, 1, 1]\noutput : list = [-3, -5, -5, -7]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_des([3, -1, 1, 1]))),4),-1)",
    "io_inp": [
      3,
      -1,
      1,
      1
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_des(input))),4),-1)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(sort_asc([-4, 2]),-4),-1),-1))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(sort_asc(input),-4),-1),-1))"
  },
  {
    "input": "input : list = [-1, 5, 4, -2]\noutput : list = [-2, 4, 5, -1]",
    "output": "generated_output : list = reverse([-1, 5, 4, -2])",
    "io_inp": [
      -1,
      5,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, 2]\noutput : list = [-13, -5, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(mul_n([0, -1, 2],-4))),5),5)",
    "io_inp": [
      0,
      -1,
      2
    ],
    "io_out": [
      -13,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(mul_n(input,-4))),5),5)"
  },
  {
    "input": "input : list = [2, 4, 1, -5]\noutput : list = [-40, -20, -10, 50]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(mul_n([2, 4, 1, -5],-2))),5),23)",
    "io_inp": [
      2,
      4,
      1,
      -5
    ],
    "io_out": [
      -40,
      -20,
      -10,
      50
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(mul_n(input,-2))),5),23)"
  },
  {
    "input": "input : list = [4, 2, 5, -4]\noutput : list = [24]",
    "output": "generated_output : list = take(take(mul_n(take(add_n([4, 2, 5, -4],2),10),4),30),1)",
    "io_inp": [
      4,
      2,
      5,
      -4
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(add_n(input,2),10),4),30),1)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(sort_asc([5, 2])))))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -1, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(reverse(drop(drop([3, -1, -1, 0],1),2))),34)",
    "io_inp": [
      3,
      -1,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(drop(drop(input,1),2))),34)"
  },
  {
    "input": "input : list = [-2, 3, 2, 5]\noutput : list = [-3, -8, -7, -10]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(add_n([-2, 3, 2, 5],2),-1),4),22),-1)",
    "io_inp": [
      -2,
      3,
      2,
      5
    ],
    "io_out": [
      -3,
      -8,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(add_n(input,2),-1),4),22),-1)"
  },
  {
    "input": "input : list = [3, 1, 1, -2, -2, 1]\noutput : list = [15, 5, 5, 5, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des(take(take(mul_n([3, 1, 1, -2, -2, 1],1),6),34)),5)",
    "io_inp": [
      3,
      1,
      1,
      -2,
      -2,
      1
    ],
    "io_out": [
      15,
      5,
      5,
      5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(mul_n(input,1),6),34)),5)"
  },
  {
    "input": "input : list = [-4, 0, 0, -5, 0, 2]\noutput : list = [0, 0, -4]",
    "output": "generated_output : list = reverse(take([-4, 0, 0, -5, 0, 2],3))",
    "io_inp": [
      -4,
      0,
      0,
      -5,
      0,
      2
    ],
    "io_out": [
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [2, 2, 3]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sub_n([2, 2, 3],1),5),4)))",
    "io_inp": [
      2,
      2,
      3
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sub_n(input,1),5),4)))"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 2, -3],1)",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -4, 0, 2, 3]\noutput : list = [-1, 3, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(drop([5, -4, 0, 2, 3],1)),3)",
    "io_inp": [
      5,
      -4,
      0,
      2,
      3
    ],
    "io_out": [
      -1,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,1)),3)"
  },
  {
    "input": "input : list = [2, -2, -2, 2, 1, 2]\noutput : list = [5, 1, 1, 5, 4, 5]",
    "output": "generated_output : list = take(sub_n([2, -2, -2, 2, 1, 2],-3),26)",
    "io_inp": [
      2,
      -2,
      -2,
      2,
      1,
      2
    ],
    "io_out": [
      5,
      1,
      1,
      5,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),26)"
  },
  {
    "input": "input : list = [-5, 1, 5, -4, 5, 5]\noutput : list = [5, 5, 5, 1, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 1, 5, -4, 5, 5])",
    "io_inp": [
      -5,
      1,
      5,
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [-4, -2, 4]",
    "output": "generated_output : list = take(sort_asc([4, -4, -2]),12)",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),12)"
  },
  {
    "input": "input : list = [4, 3, -5, 0, 3, 1]\noutput : list = [12, 9, 9, 3, 0, -15]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(sort_asc([4, 3, -5, 0, 3, 1])),3)))",
    "io_inp": [
      4,
      3,
      -5,
      0,
      3,
      1
    ],
    "io_out": [
      12,
      9,
      9,
      3,
      0,
      -15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [1, 5, 2, 0]\noutput : list = [3, 4, 5, 8]",
    "output": "generated_output : list = add_n(sort_asc([1, 5, 2, 0]),3)",
    "io_inp": [
      1,
      5,
      2,
      0
    ],
    "io_out": [
      3,
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-4, 5, 1, 2]\noutput : list = [2, 1, 5, -4]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse([-4, 5, 1, 2]),-1),-3),-1),-3)",
    "io_inp": [
      -4,
      5,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse(input),-1),-3),-1),-3)"
  },
  {
    "input": "input : list = [2, 5, 5, -4]\noutput : list = [2, -1]",
    "output": "generated_output : list = sub_n(reverse(add_n(take([2, 5, 5, -4],2),-1)),2)",
    "io_inp": [
      2,
      5,
      5,
      -4
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(input,2),-1)),2)"
  },
  {
    "input": "input : list = [4, 1, 3, 4, -3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(drop([4, 1, 3, 4, -3, -2],4))",
    "io_inp": [
      4,
      1,
      3,
      4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,4))"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop([1, 2, 5],1)",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_des(reverse(take(take([1, -4, -4],1),16))),26)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(take(input,1),16))),26)"
  },
  {
    "input": "input : list = [3, 5, 0, -2, 3]\noutput : list = [-1, -6]",
    "output": "generated_output : list = add_n(sort_des(drop([3, 5, 0, -2, 3],3)),-4)",
    "io_inp": [
      3,
      5,
      0,
      -2,
      3
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,3)),-4)"
  },
  {
    "input": "input : list = [3, 4, -3, -4, -3]\noutput : list = [4, 3, -3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([3, 4, -3, -4, -3]))",
    "io_inp": [
      3,
      4,
      -3,
      -4,
      -3
    ],
    "io_out": [
      4,
      3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 5, -3, 4, -2, 0]\noutput : list = [-5, 0, -8, -1, -7, -5]",
    "output": "generated_output : list = add_n([0, 5, -3, 4, -2, 0],-5)",
    "io_inp": [
      0,
      5,
      -3,
      4,
      -2,
      0
    ],
    "io_out": [
      -5,
      0,
      -8,
      -1,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 1, -2, 0]\noutput : list = [1, 0, -2, -4]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(sort_des([-4, 1, -2, 0]))),33))",
    "io_inp": [
      -4,
      1,
      -2,
      0
    ],
    "io_out": [
      1,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(sort_des(input))),33))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(reverse([0, 5]))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-4, -5, -5, 4]\noutput : list = [4, -4, -5, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des([-4, -5, -5, 4])),31))",
    "io_inp": [
      -4,
      -5,
      -5,
      4
    ],
    "io_out": [
      4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(input)),31))"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [15, 25, -25]",
    "output": "generated_output : list = mul_n([3, 5, -5],5)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      15,
      25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [12, -4, -8]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(add_n([-2, 2, 3],-2)),-1),4),-1)",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      12,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(add_n(input,-2)),-1),4),-1)"
  },
  {
    "input": "input : list = [-4, 0, 5, -4, -5, -3]\noutput : list = [-5]",
    "output": "generated_output : list = drop(reverse(add_n(reverse(reverse([-4, 0, 5, -4, -5, -3])),-1)),5)",
    "io_inp": [
      -4,
      0,
      5,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(reverse(reverse(input)),-1)),5)"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [16]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(take([4, -3, 2],1),4)),4))",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(take(input,1),4)),4))"
  },
  {
    "input": "input : list = [1, 3, 0, 0, 1, 3]\noutput : list = [13, 37, 1, 1, 13, 37]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n([1, 3, 0, 0, 1, 3],3))),4),-1)",
    "io_inp": [
      1,
      3,
      0,
      0,
      1,
      3
    ],
    "io_out": [
      13,
      37,
      1,
      1,
      13,
      37
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n(input,3))),4),-1)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = add_n([-4, 2],2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [100, -100]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(mul_n([5, -5],-2),10),5),2))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      100,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(mul_n(input,-2),10),5),2))"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-4, -4, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sort_des([-3, -3, 1])))),-1)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(drop(drop([4, 5, -2],1),1),-2)),-4)",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(drop(drop(input,1),1),-2)),-4)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-1, 1],-2),-5))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-2),-5))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-4, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(sort_des([2, -2]),2))))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [0, -4, 2, 5, 1]\noutput : list = [-6, -2, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(add_n([0, -4, 2, 5, 1],2),-1)),-3))",
    "io_inp": [
      0,
      -4,
      2,
      5,
      1
    ],
    "io_out": [
      -6,
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(add_n(input,2),-1)),-3))"
  },
  {
    "input": "input : list = [5, 5, -1]\noutput : list = [-2, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n([5, 5, -1],-1))",
    "io_inp": [
      5,
      5,
      -1
    ],
    "io_out": [
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [-8, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n([4, -5, 3],3))",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      -8,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-2, 3, -3, -1, -3]\noutput : list = [-3, -3, -2, -1, 3]",
    "output": "generated_output : list = take(sort_asc([-2, 3, -3, -1, -3]),27)",
    "io_inp": [
      -2,
      3,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),27)"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [-27, -17, 13]",
    "output": "generated_output : list = sub_n(mul_n([5, 3, -3],-5),2)",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      -27,
      -17,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-5),2)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [-300, -300, 200]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_asc([-3, -3, 2])),-5),-5),4)",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      -300,
      -300,
      200
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_asc(input)),-5),-5),4)"
  },
  {
    "input": "input : list = [-2, 5, -3, -3, 3]\noutput : list = [-10, -10, -9, -4, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse([-2, 5, -3, -3, 3]),2),5))",
    "io_inp": [
      -2,
      5,
      -3,
      -3,
      3
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(input),2),5))"
  },
  {
    "input": "input : list = [4, 3, -4, 2]\noutput : list = [11, 15, 19, 43]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(sort_des([4, 3, -4, 2]),-3),-4),-4),-1)",
    "io_inp": [
      4,
      3,
      -4,
      2
    ],
    "io_out": [
      11,
      15,
      19,
      43
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(sort_des(input),-3),-4),-4),-1)"
  },
  {
    "input": "input : list = [3, -1, -3]\noutput : list = [10, 6, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des(add_n([3, -1, -3],5))),-1),1)",
    "io_inp": [
      3,
      -1,
      -3
    ],
    "io_out": [
      10,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(add_n(input,5))),-1),1)"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [2, -6, 0]",
    "output": "generated_output : list = add_n(add_n([5, -3, 3],1),-4)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      2,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,1),-4)"
  },
  {
    "input": "input : list = [-2, 3, -3]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = sub_n(sort_asc([-2, 3, -3]),2)",
    "io_inp": [
      -2,
      3,
      -3
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-1, -1, 3, 3, -3, 2]\noutput : list = [3, 3, 2, -1, -1, -3]",
    "output": "generated_output : list = sort_des([-1, -1, 3, 3, -3, 2])",
    "io_inp": [
      -1,
      -1,
      3,
      3,
      -3,
      2
    ],
    "io_out": [
      3,
      3,
      2,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [10, 9]",
    "output": "generated_output : list = sort_des(add_n(sort_des([4, 5]),5))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      10,
      9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [3, 5, -5, 1, -4]\noutput : list = [9, 15, -15, 3, -12]",
    "output": "generated_output : list = mul_n([3, 5, -5, 1, -4],3)",
    "io_inp": [
      3,
      5,
      -5,
      1,
      -4
    ],
    "io_out": [
      9,
      15,
      -15,
      3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [4, 3, 5, -3, -3]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(drop([4, 3, 5, -3, -3],3),-4),-5)))",
    "io_inp": [
      4,
      3,
      5,
      -3,
      -3
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(drop(input,3),-4),-5)))"
  },
  {
    "input": "input : list = [-3, 4, 5, 3, 0, -2]\noutput : list = [4, -10]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(take([-3, 4, 5, 3, 0, -2],2)),-2)),2)",
    "io_inp": [
      -3,
      4,
      5,
      3,
      0,
      -2
    ],
    "io_out": [
      4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(take(input,2)),-2)),2)"
  },
  {
    "input": "input : list = [-5, -3, -1, 0]\noutput : list = [36, 28, 20, 16]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n([-5, -3, -1, 0],2),5),-4)),4)",
    "io_inp": [
      -5,
      -3,
      -1,
      0
    ],
    "io_out": [
      36,
      28,
      20,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n(input,2),5),-4)),4)"
  },
  {
    "input": "input : list = [3, 2, 0]\noutput : list = [5, 7, 8]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(sub_n([3, 2, 0],-3),-3),15),-1))",
    "io_inp": [
      3,
      2,
      0
    ],
    "io_out": [
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(sub_n(input,-3),-3),15),-1))"
  },
  {
    "input": "input : list = [5, 4, -3, 1, 5]\noutput : list = [-3, 1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([5, 4, -3, 1, 5])))",
    "io_inp": [
      5,
      4,
      -3,
      1,
      5
    ],
    "io_out": [
      -3,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(mul_n([4, 0, -5],1)))),37)",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(mul_n(input,1)))),37)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(sort_asc([0, 1]),1))),1)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(sort_asc(input),1))),1)"
  },
  {
    "input": "input : list = [4, -3, 5, -5]\noutput : list = [4, 3, -4, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(sub_n([4, -3, 5, -5],2)),-1)))",
    "io_inp": [
      4,
      -3,
      5,
      -5
    ],
    "io_out": [
      4,
      3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(sub_n(input,2)),-1)))"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [75, 60, 60]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([5, 4, 4],-5)),-3)",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      75,
      60,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-5)),-3)"
  },
  {
    "input": "input : list = [1, 3, 1, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = drop([1, 3, 1, -3],2)",
    "io_inp": [
      1,
      3,
      1,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 5, 1, 5, -3, 2]\noutput : list = [1, -4, 4, 0, 4, 2]",
    "output": "generated_output : list = add_n(reverse(sub_n([3, 5, 1, 5, -3, 2],5)),4)",
    "io_inp": [
      3,
      5,
      1,
      5,
      -3,
      2
    ],
    "io_out": [
      1,
      -4,
      4,
      0,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,5)),4)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des([1, 4])",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sub_n([-2, 5],1)),2)))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sub_n(input,1)),2)))"
  },
  {
    "input": "input : list = [-1, 5, -1, -3, -2, 1]\noutput : list = [-2, -5, -6, -4, 2, -4]",
    "output": "generated_output : list = reverse(add_n(add_n(take(add_n([-1, 5, -1, -3, -2, 1],-4),22),2),-1))",
    "io_inp": [
      -1,
      5,
      -1,
      -3,
      -2,
      1
    ],
    "io_out": [
      -2,
      -5,
      -6,
      -4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(add_n(input,-4),22),2),-1))"
  },
  {
    "input": "input : list = [0, -5, 0, -2, 4]\noutput : list = [12, 0, -6]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(drop([0, -5, 0, -2, 4],2),3))),6)",
    "io_inp": [
      0,
      -5,
      0,
      -2,
      4
    ],
    "io_out": [
      12,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(drop(input,2),3))),6)"
  },
  {
    "input": "input : list = [1, 1, 2, 3, 4, -2]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(sort_des(take([1, 1, 2, 3, 4, -2],2)))",
    "io_inp": [
      1,
      1,
      2,
      3,
      4,
      -2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [-2, -3, 1]\noutput : list = [6, 3, 2]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(sort_asc([-2, -3, 1])),-5),12),1)",
    "io_inp": [
      -2,
      -3,
      1
    ],
    "io_out": [
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(sort_asc(input)),-5),12),1)"
  },
  {
    "input": "input : list = [2, -5, 0, -3]\noutput : list = [-1, -3, -6, -8]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des([2, -5, 0, -3])),-3))",
    "io_inp": [
      2,
      -5,
      0,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(input)),-3))"
  },
  {
    "input": "input : list = [-1, -4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_des(drop([-1, -4, -5],1)),10)),38)",
    "io_inp": [
      -1,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(drop(input,1)),10)),38)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n([5, 3],2))),-2)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(input,2))),-2)"
  },
  {
    "input": "input : list = [5, 4, -4, 5, 2]\noutput : list = [21, 17]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(take([5, 4, -4, 5, 2],2),2),1),2),-1)",
    "io_inp": [
      5,
      4,
      -4,
      5,
      2
    ],
    "io_out": [
      21,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(take(input,2),2),1),2),-1)"
  },
  {
    "input": "input : list = [1, -2, -5, 4, 1]\noutput : list = [-4, -10]",
    "output": "generated_output : list = sort_des(drop(sort_des(mul_n(drop([1, -2, -5, 4, 1],1),2)),2))",
    "io_inp": [
      1,
      -2,
      -5,
      4,
      1
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(mul_n(drop(input,1),2)),2))"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(drop([3, 4, 0],1),4))),4)",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(drop(input,1),4))),4)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, -55]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n([-5, 5],3),3))),-5)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      -55
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n(input,3),3))),-5)"
  },
  {
    "input": "input : list = [0, -3, -4, 3]\noutput : list = [44, -12, -4, 20]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(reverse([0, -3, -4, 3]),-2),-1),4),-4)",
    "io_inp": [
      0,
      -3,
      -4,
      3
    ],
    "io_out": [
      44,
      -12,
      -4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(reverse(input),-2),-1),4),-4)"
  },
  {
    "input": "input : list = [5, 0, 3, 4, -5, 1]\noutput : list = [5, 4, 3, 1, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(reverse([5, 0, 3, 4, -5, 1])))))",
    "io_inp": [
      5,
      0,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [5, 2, 3, -4]\noutput : list = [-4, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 2, 3, -4])",
    "io_inp": [
      5,
      2,
      3,
      -4
    ],
    "io_out": [
      -4,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 2, -1, 1, -2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take([2, 2, -1, 1, -2],1))",
    "io_inp": [
      2,
      2,
      -1,
      1,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, 5, -3, 0]\noutput : list = [-1, -1, -4, -9]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n([-3, 5, -3, 0],-1))),3),1)",
    "io_inp": [
      -3,
      5,
      -3,
      0
    ],
    "io_out": [
      -1,
      -1,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n(input,-1))),3),1)"
  },
  {
    "input": "input : list = [-3, 3, 0, 5]\noutput : list = [5, 3, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc([-3, 3, 0, 5]))))",
    "io_inp": [
      -3,
      3,
      0,
      5
    ],
    "io_out": [
      5,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [6, 1, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take(add_n([5, 0, -3],-4),16))),-5)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      6,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(add_n(input,-4),16))),-5)"
  },
  {
    "input": "input : list = [3, -3, 4, 2]\noutput : list = [-29, -23, -17, 13]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n([3, -3, 4, 2],3),1),-2)),-3)",
    "io_inp": [
      3,
      -3,
      4,
      2
    ],
    "io_out": [
      -29,
      -23,
      -17,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n(input,3),1),-2)),-3)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-5, 3]",
    "output": "generated_output : list = add_n(take(mul_n(add_n(add_n([0, -4],2),-1),-2),13),-3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(add_n(add_n(input,2),-1),-2),13),-3)"
  },
  {
    "input": "input : list = [3, 2, 3]\noutput : list = [12, 12, 8]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse([3, 2, 3]),4)))",
    "io_inp": [
      3,
      2,
      3
    ],
    "io_out": [
      12,
      12,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [-3, 5, -2, 1]\noutput : list = [-1, 0, 3, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-3, 5, -2, 1]),-2))",
    "io_inp": [
      -3,
      5,
      -2,
      1
    ],
    "io_out": [
      -1,
      0,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sub_n(sub_n([-4, 3],-3),1)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),1)"
  },
  {
    "input": "input : list = [-5, 5, -5, -1, -4]\noutput : list = [-10]",
    "output": "generated_output : list = take(mul_n(take(sort_des(take([-5, 5, -5, -1, -4],1)),2),2),42)",
    "io_inp": [
      -5,
      5,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(take(input,1)),2),2),42)"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(drop([-1, 4, 2],1),3),-2)),4)",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(drop(input,1),3),-2)),4)"
  },
  {
    "input": "input : list = [-3, 4, 3, -2, -1]\noutput : list = [-2, -3, 2]",
    "output": "generated_output : list = reverse(sub_n(drop([-3, 4, 3, -2, -1],2),1))",
    "io_inp": [
      -3,
      4,
      3,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,2),1))"
  },
  {
    "input": "input : list = [2, 3, -2, 1, -4]\noutput : list = [4, -1, 2, -3]",
    "output": "generated_output : list = add_n(drop([2, 3, -2, 1, -4],1),1)",
    "io_inp": [
      2,
      3,
      -2,
      1,
      -4
    ],
    "io_out": [
      4,
      -1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [6, 4]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n([0, 1],-3)),-2))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(input,-3)),-2))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-59, 61]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(reverse([-4, 4]),-1),-5),-3),-1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -59,
      61
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(reverse(input),-1),-5),-3),-1)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [4, -2, -3]",
    "output": "generated_output : list = take(take(sort_des(add_n([2, -5, -4],2)),11),29)",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(input,2)),11),29)"
  },
  {
    "input": "input : list = [-1, 1, -5, -1]\noutput : list = [4, 2, 2, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(reverse([-1, 1, -5, -1]))),-3))",
    "io_inp": [
      -1,
      1,
      -5,
      -1
    ],
    "io_out": [
      4,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(reverse(input))),-3))"
  },
  {
    "input": "input : list = [1, -5, 4, -2, 5]\noutput : list = [1, -5]",
    "output": "generated_output : list = take([1, -5, 4, -2, 5],2)",
    "io_inp": [
      1,
      -5,
      4,
      -2,
      5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-10, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(mul_n([1, -2],-5),10)),5))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -10,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(mul_n(input,-5),10)),5))"
  },
  {
    "input": "input : list = [-5, 2, -3, 3]\noutput : list = [11, 6, -19, -29]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n([-5, 2, -3, 3],5),-4)))",
    "io_inp": [
      -5,
      2,
      -3,
      3
    ],
    "io_out": [
      11,
      6,
      -19,
      -29
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(input,5),-4)))"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, -2, 2],1),-2)",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-1, -3, -4, -4]\noutput : list = [-5, -7, -8, -8]",
    "output": "generated_output : list = take(take(sub_n([-1, -3, -4, -4],4),6),16)",
    "io_inp": [
      -1,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,4),6),16)"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [-10, 10, -35]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(add_n([-4, 5, 1],-3)),-5),-5),5)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      -10,
      10,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(add_n(input,-3)),-5),-5),5)"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [-2, 3, -3]",
    "output": "generated_output : list = sub_n(sub_n([-3, 2, -4],-2),1)",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      -2,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(reverse(mul_n([-4, -2],1)),11)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,1)),11)"
  },
  {
    "input": "input : list = [2, 4, 2, -5, 5]\noutput : list = [6, 4, 4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(take([2, 4, 2, -5, 5],3)),-2)))",
    "io_inp": [
      2,
      4,
      2,
      -5,
      5
    ],
    "io_out": [
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(take(input,3)),-2)))"
  },
  {
    "input": "input : list = [3, 1, 1, 2, 4, -1]\noutput : list = [-5, -3, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(add_n([3, 1, 1, 2, 4, -1],3)),-4),-3))",
    "io_inp": [
      3,
      1,
      1,
      2,
      4,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(add_n(input,3)),-4),-3))"
  },
  {
    "input": "input : list = [5, 1, -4, -1, -1, -1]\noutput : list = [4, 0, -2, -2, -2, -5]",
    "output": "generated_output : list = take(take(sub_n(reverse(sort_asc([5, 1, -4, -1, -1, -1])),1),41),32)",
    "io_inp": [
      5,
      1,
      -4,
      -1,
      -1,
      -1
    ],
    "io_out": [
      4,
      0,
      -2,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(sort_asc(input)),1),41),32)"
  },
  {
    "input": "input : list = [4, 2, -1, -2]\noutput : list = [18, 16, 13, 12]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n(add_n([4, 2, -1, -2],3),-3),-5),-5),4)",
    "io_inp": [
      4,
      2,
      -1,
      -2
    ],
    "io_out": [
      18,
      16,
      13,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(add_n(input,3),-3),-5),-5),4)"
  },
  {
    "input": "input : list = [-2, 5, 4, 2, 4, -2]\noutput : list = [-2, -2, 2, 4, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des([-2, 5, 4, 2, 4, -2]),11)))",
    "io_inp": [
      -2,
      5,
      4,
      2,
      4,
      -2
    ],
    "io_out": [
      -2,
      -2,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(input),11)))"
  },
  {
    "input": "input : list = [-3, 0, -3, -3, 5]\noutput : list = [110, 10, -50, -50, -50]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sort_des([-3, 0, -3, -3, 5]),-4)),-2),-5)",
    "io_inp": [
      -3,
      0,
      -3,
      -3,
      5
    ],
    "io_out": [
      110,
      10,
      -50,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sort_des(input),-4)),-2),-5)"
  },
  {
    "input": "input : list = [5, -3, 3, 0, 0, -2]\noutput : list = [39, 31, 31, 19, 43, 11]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(add_n([5, -3, 3, 0, 0, -2],-4),-3),-4)),3)",
    "io_inp": [
      5,
      -3,
      3,
      0,
      0,
      -2
    ],
    "io_out": [
      39,
      31,
      31,
      19,
      43,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(add_n(input,-4),-3),-4)),3)"
  },
  {
    "input": "input : list = [1, 2, 4, -5]\noutput : list = [5, 10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(take([1, 2, 4, -5],2)))),5)",
    "io_inp": [
      1,
      2,
      4,
      -5
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(take(input,2)))),5)"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -3, -3],1)",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 1, 4, 0, -5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = drop([5, 1, 4, 0, -5, -3],4)",
    "io_inp": [
      5,
      1,
      4,
      0,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [-6, 0, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc([0, -3, 4])),2),3)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      -6,
      0,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(input)),2),3)"
  },
  {
    "input": "input : list = [-3, 2, 0, 4, 5]\noutput : list = [11, 10, 8, 6, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n(sort_des([-3, 2, 0, 4, 5]),-5)),3),-4)",
    "io_inp": [
      -3,
      2,
      0,
      4,
      5
    ],
    "io_out": [
      11,
      10,
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(sort_des(input),-5)),3),-4)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-6, 0]",
    "output": "generated_output : list = add_n([-3, 3],-3)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -1, -5, -3]\noutput : list = [0, -2, 2, 2]",
    "output": "generated_output : list = take(add_n(reverse([-1, -1, -5, -3]),3),29)",
    "io_inp": [
      -1,
      -1,
      -5,
      -3
    ],
    "io_out": [
      0,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),3),29)"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sub_n(take(take(take([-3, -2, 0],1),12),3),-2))",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(take(input,1),12),3),-2))"
  },
  {
    "input": "input : list = [-3, 4, 3, 2]\noutput : list = [-3, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, 4, 3, 2]))",
    "io_inp": [
      -3,
      4,
      3,
      2
    ],
    "io_out": [
      -3,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 1, -2, 4]\noutput : list = [-42, -48]",
    "output": "generated_output : list = mul_n(mul_n(drop(sort_asc(sub_n([5, 1, -2, 4],-3)),2),2),-3)",
    "io_inp": [
      5,
      1,
      -2,
      4
    ],
    "io_out": [
      -42,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(sort_asc(sub_n(input,-3)),2),2),-3)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [10, 8]",
    "output": "generated_output : list = reverse(add_n(take(take(add_n([3, 5, -1],2),9),2),3))",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(add_n(input,2),9),2),3))"
  },
  {
    "input": "input : list = [-5, 1, -2, 2, 4]\noutput : list = [-12, -6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop([-5, 1, -2, 2, 4],3)),-3)))",
    "io_inp": [
      -5,
      1,
      -2,
      2,
      4
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop(input,3)),-3)))"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-2, -3, -8]",
    "output": "generated_output : list = take(sort_des(add_n(take(add_n([-5, 0, 1],2),8),-5)),40)",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(add_n(input,2),8),-5)),40)"
  },
  {
    "input": "input : list = [-1, 4, 2, -4, -5]\noutput : list = [4, 2, -1, -4, -5]",
    "output": "generated_output : list = sort_des([-1, 4, 2, -4, -5])",
    "io_inp": [
      -1,
      4,
      2,
      -4,
      -5
    ],
    "io_out": [
      4,
      2,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des([-4, -5])",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [4, -3]",
    "output": "generated_output : list = add_n(sort_des([-2, 5]),-1)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [3, -3, -1, 2, 4]\noutput : list = [-3, -1, 2, 4]",
    "output": "generated_output : list = drop([3, -3, -1, 2, 4],1)",
    "io_inp": [
      3,
      -3,
      -1,
      2,
      4
    ],
    "io_out": [
      -3,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 1, -4]\noutput : list = [10, 2, -8]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(sort_asc([5, 1, -4]),2),15)))",
    "io_inp": [
      5,
      1,
      -4
    ],
    "io_out": [
      10,
      2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(sort_asc(input),2),15)))"
  },
  {
    "input": "input : list = [5, 1, 0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(drop([5, 1, 0, 2],2)))),19)",
    "io_inp": [
      5,
      1,
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(drop(input,2)))),19)"
  },
  {
    "input": "input : list = [-5, 0, 2, 0, 2, 3]\noutput : list = [-80, 0, 0, 32, 32, 48]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([-5, 0, 2, 0, 2, 3]),-4),-4)",
    "io_inp": [
      -5,
      0,
      2,
      0,
      2,
      3
    ],
    "io_out": [
      -80,
      0,
      0,
      32,
      32,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),-4),-4)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [11, -24]",
    "output": "generated_output : list = add_n(mul_n([2, -5],5),1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      11,
      -24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),1)"
  },
  {
    "input": "input : list = [-5, -1, -4, 5]\noutput : list = [10, 2, 8, -10]",
    "output": "generated_output : list = mul_n([-5, -1, -4, 5],-2)",
    "io_inp": [
      -5,
      -1,
      -4,
      5
    ],
    "io_out": [
      10,
      2,
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(mul_n([-2, 4],-1)),1),6),6)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(mul_n(input,-1)),1),6),6)"
  },
  {
    "input": "input : list = [-1, 5, 4, -5]\noutput : list = [-10, -2, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(reverse([-1, 5, 4, -5])),26),2))",
    "io_inp": [
      -1,
      5,
      4,
      -5
    ],
    "io_out": [
      -10,
      -2,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(reverse(input)),26),2))"
  },
  {
    "input": "input : list = [0, 1, 1, 2]\noutput : list = [2, 1, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n([0, 1, 1, 2],1))))",
    "io_inp": [
      0,
      1,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(input,1))))"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [4, -1, 2]",
    "output": "generated_output : list = add_n(add_n([4, -1, 2],-1),1)",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),1)"
  },
  {
    "input": "input : list = [-3, 5, -5, -4]\noutput : list = [5, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(sub_n([-3, 5, -5, -4],3),-3))))",
    "io_inp": [
      -3,
      5,
      -5,
      -4
    ],
    "io_out": [
      5,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(sub_n(input,3),-3))))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [8, 2]",
    "output": "generated_output : list = take(sort_des(sub_n(take(mul_n([-3, 3],1),4),-5)),15)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(mul_n(input,1),4),-5)),15)"
  },
  {
    "input": "input : list = [5, -4, -3]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(take([5, -4, -3],1),17)),-2))",
    "io_inp": [
      5,
      -4,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(take(input,1),17)),-2))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc([-2, 0])",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, 0, -5]\noutput : list = [5]",
    "output": "generated_output : list = take(take([5, 2, 0, -5],1),17)",
    "io_inp": [
      5,
      2,
      0,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(input,1),17)"
  },
  {
    "input": "input : list = [-2, 2, -5, 5, 4]\noutput : list = [5, 4, 2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc([-2, 2, -5, 5, 4]))))",
    "io_inp": [
      -2,
      2,
      -5,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(drop(mul_n([-5, 2, -5],3),2))",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(drop(mul_n(input,3),2))"
  },
  {
    "input": "input : list = [-5, 1, -2, 3, 2]\noutput : list = [32, 2, 17, -8, -3]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(mul_n([-5, 1, -2, 3, 2],-5),4),5),4),-2)",
    "io_inp": [
      -5,
      1,
      -2,
      3,
      2
    ],
    "io_out": [
      32,
      2,
      17,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(mul_n(input,-5),4),5),4),-2)"
  },
  {
    "input": "input : list = [1, 0, -2, 0, 0, 4]\noutput : list = [15, -30, -45, -45, -45, -75]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(sort_asc([1, 0, -2, 0, 0, 4])),3),3),5)",
    "io_inp": [
      1,
      0,
      -2,
      0,
      0,
      4
    ],
    "io_out": [
      15,
      -30,
      -45,
      -45,
      -45,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(sort_asc(input)),3),3),5)"
  },
  {
    "input": "input : list = [-2, 5, 3, 0, -2, -5]\noutput : list = [33, -2, 8, 23, 33, 48]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(add_n([-2, 5, 3, 0, -2, -5],1),-5),-1),-5),-2)",
    "io_inp": [
      -2,
      5,
      3,
      0,
      -2,
      -5
    ],
    "io_out": [
      33,
      -2,
      8,
      23,
      33,
      48
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(add_n(input,1),-5),-1),-5),-2)"
  },
  {
    "input": "input : list = [0, -1, -2, -2, 5]\noutput : list = [-5, -6, -7, -7, 0]",
    "output": "generated_output : list = add_n([0, -1, -2, -2, 5],-5)",
    "io_inp": [
      0,
      -1,
      -2,
      -2,
      5
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -7,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -1, 0, 2, 5]\noutput : list = [-25, -10]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(drop([-4, -1, 0, 2, 5],3))),-5))",
    "io_inp": [
      -4,
      -1,
      0,
      2,
      5
    ],
    "io_out": [
      -25,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(drop(input,3))),-5))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [19, 9]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(add_n([-2, 3],4)),2)),5)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      19,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(add_n(input,4)),2)),5)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [0, 0, 0]",
    "output": "generated_output : list = add_n(sort_des(sub_n([2, 2, 2],-2)),-4)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,-2)),-4)"
  },
  {
    "input": "input : list = [-5, 5, 0, -5]\noutput : list = [-16, 4, 24, -16]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(add_n([-5, 5, 0, -5],1),1),6),4))",
    "io_inp": [
      -5,
      5,
      0,
      -5
    ],
    "io_out": [
      -16,
      4,
      24,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(add_n(input,1),1),6),4))"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [7, 4]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(drop([3, 1, 4],1)),3),31))",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(drop(input,1)),3),31))"
  },
  {
    "input": "input : list = [-1, -4, 1, -2]\noutput : list = [-2, -4, -5, -7]",
    "output": "generated_output : list = take(take(sub_n(add_n(sort_des([-1, -4, 1, -2]),-5),-2),42),27)",
    "io_inp": [
      -1,
      -4,
      1,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(sort_des(input),-5),-2),42),27)"
  },
  {
    "input": "input : list = [-5, 5, -4, -2, 1]\noutput : list = [-1, 9, 0, 2, 5]",
    "output": "generated_output : list = add_n([-5, 5, -4, -2, 1],4)",
    "io_inp": [
      -5,
      5,
      -4,
      -2,
      1
    ],
    "io_out": [
      -1,
      9,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-5, -5, 5, -4]\noutput : list = [-5, -5, 5, -4]",
    "output": "generated_output : list = take(mul_n(reverse(reverse([-5, -5, 5, -4])),1),7)",
    "io_inp": [
      -5,
      -5,
      5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(input)),1),7)"
  },
  {
    "input": "input : list = [-1, 2, 4, 5, -2]\noutput : list = [4, -8, -16, -20, 8]",
    "output": "generated_output : list = mul_n([-1, 2, 4, 5, -2],-4)",
    "io_inp": [
      -1,
      2,
      4,
      5,
      -2
    ],
    "io_out": [
      4,
      -8,
      -16,
      -20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-12, 23]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(mul_n([5, -2],5),2)),22),4)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -12,
      23
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(mul_n(input,5),2)),22),4)"
  },
  {
    "input": "input : list = [4, -2, 2, 3, 5]\noutput : list = [-2, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([4, -2, 2, 3, 5])",
    "io_inp": [
      4,
      -2,
      2,
      3,
      5
    ],
    "io_out": [
      -2,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -1]\noutput : list = [3, 6, 4]",
    "output": "generated_output : list = reverse(reverse(add_n([-2, 1, -1],5)))",
    "io_inp": [
      -2,
      1,
      -1
    ],
    "io_out": [
      3,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(input,5)))"
  },
  {
    "input": "input : list = [4, 1, 5, -2, 1, 0]\noutput : list = [-4, -8, -10, -10, -16, -18]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(add_n([4, 1, 5, -2, 1, 0],2),-2),4),15))",
    "io_inp": [
      4,
      1,
      5,
      -2,
      1,
      0
    ],
    "io_out": [
      -4,
      -8,
      -10,
      -10,
      -16,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(add_n(input,2),-2),4),15))"
  },
  {
    "input": "input : list = [-2, -2, -2, -5, 2, -1]\noutput : list = [4, -8, -8, -8, -12, -24]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(add_n([-2, -2, -2, -5, 2, -1],3)),-1),-4))",
    "io_inp": [
      -2,
      -2,
      -2,
      -5,
      2,
      -1
    ],
    "io_out": [
      4,
      -8,
      -8,
      -8,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(add_n(input,3)),-1),-4))"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [-100, 50, 100]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(sort_des([-4, 2, 4]),13),-5),-5))",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      -100,
      50,
      100
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(sort_des(input),13),-5),-5))"
  },
  {
    "input": "input : list = [0, -3, -3, 1, -4, 4]\noutput : list = [242, 62, 2, -178, -178, -238]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_des(mul_n([0, -3, -3, 1, -4, 4],5)),-3),-4),2)",
    "io_inp": [
      0,
      -3,
      -3,
      1,
      -4,
      4
    ],
    "io_out": [
      242,
      62,
      2,
      -178,
      -178,
      -238
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_des(mul_n(input,5)),-3),-4),2)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-15, 25]",
    "output": "generated_output : list = mul_n(reverse([5, -3]),5)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-1, 2, 0]\noutput : list = [2, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(sort_asc([-1, 2, 0])),24)))",
    "io_inp": [
      -1,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(sort_asc(input)),24)))"
  },
  {
    "input": "input : list = [-2, 4, 5, 0]\noutput : list = [0, 6, 7, 2]",
    "output": "generated_output : list = add_n([-2, 4, 5, 0],2)",
    "io_inp": [
      -2,
      4,
      5,
      0
    ],
    "io_out": [
      0,
      6,
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-3, -4]",
    "output": "generated_output : list = add_n([1, 0],-4)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3, -1, 1]\noutput : list = [3, -3, 9, 9]",
    "output": "generated_output : list = mul_n(reverse([3, 3, -1, 1]),3)",
    "io_inp": [
      3,
      3,
      -1,
      1
    ],
    "io_out": [
      3,
      -3,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-1, 5, 0, -2, -3, 2]\noutput : list = [-15, 5, 9, 13]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(take([-1, 5, 0, -2, -3, 2],4)),-4),5))",
    "io_inp": [
      -1,
      5,
      0,
      -2,
      -3,
      2
    ],
    "io_out": [
      -15,
      5,
      9,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(take(input,4)),-4),5))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [10, 30]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sub_n([1, 5],2),-3),5)))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      10,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sub_n(input,2),-3),5)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-11, -3]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc([-4, 4]),5),5),-2)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -11,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(input),5),5),-2)"
  },
  {
    "input": "input : list = [2, 0, -5, 2, 4]\noutput : list = [4, 2, 2, 0, -5]",
    "output": "generated_output : list = sort_des([2, 0, -5, 2, 4])",
    "io_inp": [
      2,
      0,
      -5,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 4, 1, 3, 5, 0]\noutput : list = [2, 5, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(drop([-3, 4, 1, 3, 5, 0],3))),-3),1)",
    "io_inp": [
      -3,
      4,
      1,
      3,
      5,
      0
    ],
    "io_out": [
      2,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(drop(input,3))),-3),1)"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(add_n(take(reverse(sub_n([3, 1, 2],-1)),2),-1),17)",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(sub_n(input,-1)),2),-1),17)"
  },
  {
    "input": "input : list = [3, -2, 5, -3]\noutput : list = [5, 3, -2, -3]",
    "output": "generated_output : list = sort_des([3, -2, 5, -3])",
    "io_inp": [
      3,
      -2,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [45, 0, -75]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_asc([0, 3, -5]),-3))),-5)",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      45,
      0,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_asc(input),-3))),-5)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [7, -11]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(sort_des([-5, 4]),-2),-2),-1))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      7,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(sort_des(input),-2),-2),-1))"
  },
  {
    "input": "input : list = [0, 4, 3, -4, -2]\noutput : list = [99, 74, -101, -51]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(drop([0, 4, 3, -4, -2],1),5),8),5),1)",
    "io_inp": [
      0,
      4,
      3,
      -4,
      -2
    ],
    "io_out": [
      99,
      74,
      -101,
      -51
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(drop(input,1),5),8),5),1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = reverse([-2, 0])",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, 4, -3]\noutput : list = [-3, 2, 4, 4]",
    "output": "generated_output : list = sort_asc([2, 4, 4, -3])",
    "io_inp": [
      2,
      4,
      4,
      -3
    ],
    "io_out": [
      -3,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -5, 1, 2, 2, -2]\noutput : list = [-10, -10, -4, -3, -3, -7]",
    "output": "generated_output : list = add_n([-5, -5, 1, 2, 2, -2],-5)",
    "io_inp": [
      -5,
      -5,
      1,
      2,
      2,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [15, 15, 0]",
    "output": "generated_output : list = mul_n([-5, -5, 0],-3)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      15,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, 5, -3, 5, 2]\noutput : list = [0, 4, 5, 8, 8]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(sort_asc([1, 5, -3, 5, 2]),-3),25),24))",
    "io_inp": [
      1,
      5,
      -3,
      5,
      2
    ],
    "io_out": [
      0,
      4,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(sort_asc(input),-3),25),24))"
  },
  {
    "input": "input : list = [-3, 4, -2, -4]\noutput : list = [-21, -16, -11, 19]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(mul_n([-3, 4, -2, -4],5),1))))",
    "io_inp": [
      -3,
      4,
      -2,
      -4
    ],
    "io_out": [
      -21,
      -16,
      -11,
      19
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(mul_n(input,5),1))))"
  },
  {
    "input": "input : list = [-2, -2, 5, 3, -3, 1]\noutput : list = [14, 12, 10, 7, 7, 6]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(sort_des([-2, -2, 5, 3, -3, 1]),4)),-5))",
    "io_inp": [
      -2,
      -2,
      5,
      3,
      -3,
      1
    ],
    "io_out": [
      14,
      12,
      10,
      7,
      7,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(sort_des(input),4)),-5))"
  },
  {
    "input": "input : list = [-4, 1, 3, -2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(drop([-4, 1, 3, -2, -4],3))",
    "io_inp": [
      -4,
      1,
      3,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [2, 3, 3, -4]\noutput : list = [-4, 2, 3, 3]",
    "output": "generated_output : list = take(sort_asc(take(take(sort_asc([2, 3, 3, -4]),20),29)),27)",
    "io_inp": [
      2,
      3,
      3,
      -4
    ],
    "io_out": [
      -4,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(take(sort_asc(input),20),29)),27)"
  },
  {
    "input": "input : list = [4, 3, 1, 5]\noutput : list = [-1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([4, 3, 1, 5],-2)))",
    "io_inp": [
      4,
      3,
      1,
      5
    ],
    "io_out": [
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,-2)))"
  },
  {
    "input": "input : list = [-4, 3, -1, -5]\noutput : list = [-5, -4, -1, 3]",
    "output": "generated_output : list = sort_asc([-4, 3, -1, -5])",
    "io_inp": [
      -4,
      3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [3, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(reverse(sort_asc([-1, -1, 3])))))",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, -1, 1, 0, -5, 4]\noutput : list = [-9, -6, -6, -5, -4, 0]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_des([1, -1, 1, 0, -5, 4]),-1),7),5),43)",
    "io_inp": [
      1,
      -1,
      1,
      0,
      -5,
      4
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_des(input),-1),7),5),43)"
  },
  {
    "input": "input : list = [-4, -4, 0, 4]\noutput : list = [-4, -4, 0, 4]",
    "output": "generated_output : list = take(take(reverse(sort_des([-4, -4, 0, 4])),29),22)",
    "io_inp": [
      -4,
      -4,
      0,
      4
    ],
    "io_out": [
      -4,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(input)),29),22)"
  },
  {
    "input": "input : list = [5, 0, -2, 5]\noutput : list = [-17, 4]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(add_n([5, 0, -2, 5],2),-3)),2),4)",
    "io_inp": [
      5,
      0,
      -2,
      5
    ],
    "io_out": [
      -17,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(add_n(input,2),-3)),2),4)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-4, -4, -1]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(sort_asc([0, -3, -3])),-3),-4))",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(sort_asc(input)),-3),-4))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(reverse([-2, 2])),4)))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(reverse(input)),4)))"
  },
  {
    "input": "input : list = [3, -5, 4, -1, -2, -5]\noutput : list = [-3, -3, 0, 1, 5, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sub_n([3, -5, 4, -1, -2, -5],-2))),40))",
    "io_inp": [
      3,
      -5,
      4,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -3,
      0,
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sub_n(input,-2))),40))"
  },
  {
    "input": "input : list = [0, -3, 3, 3]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(take([0, -3, 3, 3],1)),-3),2))",
    "io_inp": [
      0,
      -3,
      3,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(take(input,1)),-3),2))"
  },
  {
    "input": "input : list = [0, -5, -1, -4, -2]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n(drop([0, -5, -1, -4, -2],2),3))),-1)",
    "io_inp": [
      0,
      -5,
      -1,
      -4,
      -2
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(drop(input,2),3))),-1)"
  },
  {
    "input": "input : list = [-1, -2, 1, -2, 3]\noutput : list = [16, 8, 0, -4, -4]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(reverse([-1, -2, 1, -2, 3]),1)),4),10)",
    "io_inp": [
      -1,
      -2,
      1,
      -2,
      3
    ],
    "io_out": [
      16,
      8,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(reverse(input),1)),4),10)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n([0, 3],1))),14))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n(input,1))),14))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc([4, 4])",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 1, 3, -1, 3]\noutput : list = [-7, -6, -5, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc([-3, -2, 1, 3, -1, 3]),-4)),23))",
    "io_inp": [
      -3,
      -2,
      1,
      3,
      -1,
      3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc(input),-4)),23))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des(sort_des([0, 3]))),25))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(sort_des(input))),25))"
  },
  {
    "input": "input : list = [-2, 5, 2, 4, 2, -2]\noutput : list = [6, -6, -12, -6]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n([-2, 5, 2, 4, 2, -2],-3),1)),4)",
    "io_inp": [
      -2,
      5,
      2,
      4,
      2,
      -2
    ],
    "io_out": [
      6,
      -6,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(input,-3),1)),4)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [6, 8, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_asc([3, 4, 1]),5),21)))",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_asc(input),5),21)))"
  },
  {
    "input": "input : list = [4, 2, -4, -3, -1]\noutput : list = [9, 7, 3, -3, -7]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(reverse([4, 2, -4, -3, -1])),-2),-1))",
    "io_inp": [
      4,
      2,
      -4,
      -3,
      -1
    ],
    "io_out": [
      9,
      7,
      3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(reverse(input)),-2),-1))"
  },
  {
    "input": "input : list = [-5, -2, -5, -4]\noutput : list = [-9, -9, -6]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(drop(reverse([-5, -2, -5, -4]),1),4)))",
    "io_inp": [
      -5,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(drop(reverse(input),1),4)))"
  },
  {
    "input": "input : list = [1, 2, 5, 5]\noutput : list = [3, 4, 7, 7]",
    "output": "generated_output : list = add_n(take(sort_asc([1, 2, 5, 5]),15),2)",
    "io_inp": [
      1,
      2,
      5,
      5
    ],
    "io_out": [
      3,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),15),2)"
  },
  {
    "input": "input : list = [-3, -3, -5, 3, 1, -2]\noutput : list = [-5, -3, -3, -2, 1, 3]",
    "output": "generated_output : list = sort_asc([-3, -3, -5, 3, 1, -2])",
    "io_inp": [
      -3,
      -3,
      -5,
      3,
      1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 3, -3, -3, 4]\noutput : list = [4, -3, -3, 3, -1]",
    "output": "generated_output : list = reverse([-1, 3, -3, -3, 4])",
    "io_inp": [
      -1,
      3,
      -3,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(sort_asc([-5, 3])))))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, -1, 0, 2, 2]\noutput : list = [0, 2, 2]",
    "output": "generated_output : list = drop([0, -1, 0, 2, 2],2)",
    "io_inp": [
      0,
      -1,
      0,
      2,
      2
    ],
    "io_out": [
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -4, -2, 5]\noutput : list = [21, 13, -11, -15]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des([4, -4, -2, 5]),-4),-5))",
    "io_inp": [
      4,
      -4,
      -2,
      5
    ],
    "io_out": [
      21,
      13,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(input),-4),-5))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-7, 1]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(sort_des([-4, 4]))),3),-3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(sort_des(input))),3),-3)"
  },
  {
    "input": "input : list = [-1, 3, -5, 0, 4]\noutput : list = [-15, 0, 9, 12]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(drop([-1, 3, -5, 0, 4],1)),28),3))",
    "io_inp": [
      -1,
      3,
      -5,
      0,
      4
    ],
    "io_out": [
      -15,
      0,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(drop(input,1)),28),3))"
  },
  {
    "input": "input : list = [0, -2, 0, -5, -3, 1]\noutput : list = [-125, -75, -50, 0, 0, 25]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(mul_n([0, -2, 0, -5, -3, 1],-5)),14),-5))",
    "io_inp": [
      0,
      -2,
      0,
      -5,
      -3,
      1
    ],
    "io_out": [
      -125,
      -75,
      -50,
      0,
      0,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(mul_n(input,-5)),14),-5))"
  },
  {
    "input": "input : list = [-4, 5, -2, 2, -5, 1]\noutput : list = [15]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(take([-4, 5, -2, 2, -5, 1],1),1)),-3))",
    "io_inp": [
      -4,
      5,
      -2,
      2,
      -5,
      1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(take(input,1),1)),-3))"
  },
  {
    "input": "input : list = [-3, 2, -4, -4, 1, -3]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(reverse(sub_n(drop(add_n([-3, 2, -4, -4, 1, -3],-2),5),1)))",
    "io_inp": [
      -3,
      2,
      -4,
      -4,
      1,
      -3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(drop(add_n(input,-2),5),1)))"
  },
  {
    "input": "input : list = [1, -2, -3]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n([1, -2, -3],2)))),-4)",
    "io_inp": [
      1,
      -2,
      -3
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n(input,2)))),-4)"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_asc(reverse(take([3, -3, -2],1))),12)",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(input,1))),12)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [20, 4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_asc([-1, 3]),3),-5)),4)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_asc(input),3),-5)),4)"
  },
  {
    "input": "input : list = [-4, -1, -1]\noutput : list = [-4, -4, -16]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sub_n([-4, -1, -1],1)),1)),4)",
    "io_inp": [
      -4,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sub_n(input,1)),1)),4)"
  },
  {
    "input": "input : list = [-1, -3, 3, -1, -2]\noutput : list = [1, -1, 5, 1, 0]",
    "output": "generated_output : list = sub_n([-1, -3, 3, -1, -2],-2)",
    "io_inp": [
      -1,
      -3,
      3,
      -1,
      -2
    ],
    "io_out": [
      1,
      -1,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, -1, 0, 5, 3, -1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take([5, -1, 0, 5, 3, -1],2)))",
    "io_inp": [
      5,
      -1,
      0,
      5,
      3,
      -1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [-4, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(sort_des([-2, 0, 0]),-1))),3)",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(sort_des(input),-1))),3)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = add_n(mul_n(sub_n([2, 0],2),-2),-4)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,2),-2),-4)"
  },
  {
    "input": "input : list = [-5, -3, -5]\noutput : list = [-3, -5, -5]",
    "output": "generated_output : list = add_n(add_n(reverse(take(sort_asc([-5, -3, -5]),14)),3),-3)",
    "io_inp": [
      -5,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(sort_asc(input),14)),3),-3)"
  },
  {
    "input": "input : list = [-1, 3, 3, 3, -4, 1]\noutput : list = [1, -4, 3, 3, 3, -1]",
    "output": "generated_output : list = reverse([-1, 3, 3, 3, -4, 1])",
    "io_inp": [
      -1,
      3,
      3,
      3,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      3,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-20, -12, 28]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(add_n([-5, 0, 1],-1),-2)),-5),4)",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -20,
      -12,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(add_n(input,-1),-2)),-5),4)"
  },
  {
    "input": "input : list = [-5, -1, 5, 3, -1, -5]\noutput : list = [-7, -7, -3, -3, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(add_n([-5, -1, 5, 3, -1, -5],3)),17),-5))",
    "io_inp": [
      -5,
      -1,
      5,
      3,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -3,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(add_n(input,3)),17),-5))"
  },
  {
    "input": "input : list = [-2, 0, -1, -3, 2, 4]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(drop([-2, 0, -1, -3, 2, 4],4),-4))))",
    "io_inp": [
      -2,
      0,
      -1,
      -3,
      2,
      4
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(drop(input,4),-4))))"
  },
  {
    "input": "input : list = [0, 3, 3, 4]\noutput : list = [4, -8]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(take([0, 3, 3, 4],2),-2),4),10))",
    "io_inp": [
      0,
      3,
      3,
      4
    ],
    "io_out": [
      4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(take(input,2),-2),4),10))"
  },
  {
    "input": "input : list = [-1, -5, 5, 0, -4]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(take(sub_n(take([-1, -5, 5, 0, -4],1),-3),15),6))",
    "io_inp": [
      -1,
      -5,
      5,
      0,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(take(input,1),-3),15),6))"
  },
  {
    "input": "input : list = [-2, -5, -3, -2, -5, 2]\noutput : list = [-3, -3, -1, 0, 0, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc([-2, -5, -3, -2, -5, 2]),3)),-1))",
    "io_inp": [
      -2,
      -5,
      -3,
      -2,
      -5,
      2
    ],
    "io_out": [
      -3,
      -3,
      -1,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc(input),3)),-1))"
  },
  {
    "input": "input : list = [-4, -4, -2, 5]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(take(add_n([-4, -4, -2, 5],2),3),4)))",
    "io_inp": [
      -4,
      -4,
      -2,
      5
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(add_n(input,2),3),4)))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-13, -16]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(add_n([5, 4],1),-3),1),1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -13,
      -16
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(add_n(input,1),-3),1),1))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = reverse([-5, -3])",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, -2, 4, 1]\noutput : list = [8, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(take([0, -4, -2, 4, 1],2)),-2)))",
    "io_inp": [
      0,
      -4,
      -2,
      4,
      1
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(take(input,2)),-2)))"
  },
  {
    "input": "input : list = [3, -3, -2, -1, -2]\noutput : list = [3, -3, -2]",
    "output": "generated_output : list = take([3, -3, -2, -1, -2],3)",
    "io_inp": [
      3,
      -3,
      -2,
      -1,
      -2
    ],
    "io_out": [
      3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -4, 5, 1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(drop([-5, -4, 5, 1, 0],3),-4)),1),4)",
    "io_inp": [
      -5,
      -4,
      5,
      1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(drop(input,3),-4)),1),4)"
  },
  {
    "input": "input : list = [-1, -4, -3, 5]\noutput : list = [-3, -12, -9, 15]",
    "output": "generated_output : list = take(mul_n([-1, -4, -3, 5],3),19)",
    "io_inp": [
      -1,
      -4,
      -3,
      5
    ],
    "io_out": [
      -3,
      -12,
      -9,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),19)"
  },
  {
    "input": "input : list = [3, 0, 5, -2]\noutput : list = [-1, 5, 20]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(drop([3, 0, 5, -2],1),3))),5)",
    "io_inp": [
      3,
      0,
      5,
      -2
    ],
    "io_out": [
      -1,
      5,
      20
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(drop(input,1),3))),5)"
  },
  {
    "input": "input : list = [2, -1, -2, 5, -2]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = take([2, -1, -2, 5, -2],3)",
    "io_inp": [
      2,
      -1,
      -2,
      5,
      -2
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [1, -1, 0, -2, 4, 2]\noutput : list = [8, 10, 9, 11]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(take([1, -1, 0, -2, 4, 2],4)),16),5),-5)",
    "io_inp": [
      1,
      -1,
      0,
      -2,
      4,
      2
    ],
    "io_out": [
      8,
      10,
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(take(input,4)),16),5),-5)"
  },
  {
    "input": "input : list = [-3, -1, -3, -5]\noutput : list = [8, 6]",
    "output": "generated_output : list = add_n(add_n(reverse(take([-3, -1, -3, -5],2)),4),5)",
    "io_inp": [
      -3,
      -1,
      -3,
      -5
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(input,2)),4),5)"
  },
  {
    "input": "input : list = [1, -3, 4, -1]\noutput : list = [-1, -6, -8]",
    "output": "generated_output : list = sort_des(sort_des(add_n(drop([1, -3, 4, -1],1),-5)))",
    "io_inp": [
      1,
      -3,
      4,
      -1
    ],
    "io_out": [
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(drop(input,1),-5)))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(sub_n([-4, -1],5),-1))),-2)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(sub_n(input,5),-1))),-2)"
  },
  {
    "input": "input : list = [1, 4, 0, 4, 1, 5]\noutput : list = [0, 1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(drop(reverse([1, 4, 0, 4, 1, 5]),1))",
    "io_inp": [
      1,
      4,
      0,
      4,
      1,
      5
    ],
    "io_out": [
      0,
      1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(input),1))"
  },
  {
    "input": "input : list = [5, 4, 3, 4, 2, 3]\noutput : list = [5, 4, 4, 3, 3, 2]",
    "output": "generated_output : list = sort_des([5, 4, 3, 4, 2, 3])",
    "io_inp": [
      5,
      4,
      3,
      4,
      2,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [1, -2, 8]",
    "output": "generated_output : list = sub_n([-2, -5, 5],-3)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      1,
      -2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, 1]\noutput : list = [3, 3, 7]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(sort_des([3, 3, 1]),2),5),-4),-1)",
    "io_inp": [
      3,
      3,
      1
    ],
    "io_out": [
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(sort_des(input),2),5),-4),-1)"
  },
  {
    "input": "input : list = [1, -4, 3, -3]\noutput : list = [-1, -6, 1, -5]",
    "output": "generated_output : list = add_n(add_n([1, -4, 3, -3],-4),2)",
    "io_inp": [
      1,
      -4,
      3,
      -3
    ],
    "io_out": [
      -1,
      -6,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),2)"
  },
  {
    "input": "input : list = [0, 4, 1, 5]\noutput : list = [-3, 0, 9, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(add_n([0, 4, 1, 5],-1)),3)))",
    "io_inp": [
      0,
      4,
      1,
      5
    ],
    "io_out": [
      -3,
      0,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(add_n(input,-1)),3)))"
  },
  {
    "input": "input : list = [-1, 2, 2, -2, -2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take([-1, 2, 2, -2, -2],2)",
    "io_inp": [
      -1,
      2,
      2,
      -2,
      -2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [4, -5]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(add_n([-4, 5],-1),6),5)),-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(add_n(input,-1),6),5)),-5)"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [-4, -1, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sort_asc([-4, 4, -1])))))",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, 1, -4, 1, -1]\noutput : list = [-20]",
    "output": "generated_output : list = take(drop(reverse(mul_n(sort_asc([2, 1, -4, 1, -1]),5)),4),15)",
    "io_inp": [
      2,
      1,
      -4,
      1,
      -1
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = take(drop(reverse(mul_n(sort_asc(input),5)),4),15)"
  },
  {
    "input": "input : list = [-5, 0, 0, 0, -2, 2]\noutput : list = [0, 3, 5, 5, 5, 7]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(add_n([-5, 0, 0, 0, -2, 2],5)))),37)",
    "io_inp": [
      -5,
      0,
      0,
      0,
      -2,
      2
    ],
    "io_out": [
      0,
      3,
      5,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(add_n(input,5)))),37)"
  },
  {
    "input": "input : list = [-2, 2, 5, 3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(take([-2, 2, 5, 3],1))",
    "io_inp": [
      -2,
      2,
      5,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [3, 0, -2, 0, -1, 0]\noutput : list = [-3, -6, -6, -6, -7, -8]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(sub_n([3, 0, -2, 0, -1, 0],1)))),5)",
    "io_inp": [
      3,
      0,
      -2,
      0,
      -1,
      0
    ],
    "io_out": [
      -3,
      -6,
      -6,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(sub_n(input,1)))),5)"
  },
  {
    "input": "input : list = [0, -1, 3, 3, -5]\noutput : list = [14, 6, 4, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(mul_n([0, -1, 3, 3, -5],-2),4))))",
    "io_inp": [
      0,
      -1,
      3,
      3,
      -5
    ],
    "io_out": [
      14,
      6,
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(mul_n(input,-2),4))))"
  },
  {
    "input": "input : list = [5, 2, 2, 1, -3, 5]\noutput : list = [60, 60, 24, 24, 12, -36]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_des([5, 2, 2, 1, -3, 5]),3),31)),4)",
    "io_inp": [
      5,
      2,
      2,
      1,
      -3,
      5
    ],
    "io_out": [
      60,
      60,
      24,
      24,
      12,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_des(input),3),31)),4)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [3, 9]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(reverse([2, -4]),-5),16)),-1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(reverse(input),-5),16)),-1)"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [-5, -5, 4]",
    "output": "generated_output : list = take(sort_asc([-5, -5, 4]),14)",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      -5,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [3, 5, -3, -3]\noutput : list = [-3, -3, 5, 3]",
    "output": "generated_output : list = reverse([3, 5, -3, -3])",
    "io_inp": [
      3,
      5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -3, -5, -1, 2]\noutput : list = [2, 1, -1, -3, -5]",
    "output": "generated_output : list = sort_des([1, -3, -5, -1, 2])",
    "io_inp": [
      1,
      -3,
      -5,
      -1,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 0, 3, -2]\noutput : list = [9, 4, 7, 2]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(sub_n([5, 0, 3, -2],2),8),4),3),1)",
    "io_inp": [
      5,
      0,
      3,
      -2
    ],
    "io_out": [
      9,
      4,
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(sub_n(input,2),8),4),3),1)"
  },
  {
    "input": "input : list = [-4, -1, 0, -3, 1, 5]\noutput : list = [-8, -5, -4, -7, -3, 1]",
    "output": "generated_output : list = add_n([-4, -1, 0, -3, 1, 5],-4)",
    "io_inp": [
      -4,
      -1,
      0,
      -3,
      1,
      5
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -7,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, 1, 0, 2, 4]\noutput : list = [20, 10, 10, 5, 0]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n([2, 1, 0, 2, 4],5),-4)),-4)",
    "io_inp": [
      2,
      1,
      0,
      2,
      4
    ],
    "io_out": [
      20,
      10,
      10,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(input,5),-4)),-4)"
  },
  {
    "input": "input : list = [3, 1, -1, 2, -2, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_des(take([3, 1, -1, 2, -2, -1],1))),5))",
    "io_inp": [
      3,
      1,
      -1,
      2,
      -2,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_des(take(input,1))),5))"
  },
  {
    "input": "input : list = [2, 5, -4, -2]\noutput : list = [-2, 0, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([2, 5, -4, -2],-2)))",
    "io_inp": [
      2,
      5,
      -4,
      -2
    ],
    "io_out": [
      -2,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [2, 1, -2, -5, -5]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = take([2, 1, -2, -5, -5],3)",
    "io_inp": [
      2,
      1,
      -2,
      -5,
      -5
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [15, 3]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(sort_des([-5, -1])),-3),29),13)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      15,
      3
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(sort_des(input)),-3),29),13)"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [-2, 10, -8]",
    "output": "generated_output : list = reverse(take(mul_n(take(mul_n([4, -5, 1],1),6),-2),9))",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      -2,
      10,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(mul_n(input,1),6),-2),9))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-6, 2]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(reverse([5, -3]),4),4),4),-3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(reverse(input),4),4),4),-3)"
  },
  {
    "input": "input : list = [0, -3, -5, -3]\noutput : list = [2, -1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(add_n([0, -3, -5, -3],3)),1)))",
    "io_inp": [
      0,
      -3,
      -5,
      -3
    ],
    "io_out": [
      2,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(add_n(input,3)),1)))"
  },
  {
    "input": "input : list = [4, -5, -4, -3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sub_n(drop([4, -5, -4, -3],2),-2)",
    "io_inp": [
      4,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [-2, -4, -3, 1]\noutput : list = [-4, -3, -2, 1]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n([-2, -4, -3, 1],-3),22)),3)",
    "io_inp": [
      -2,
      -4,
      -3,
      1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(input,-3),22)),3)"
  },
  {
    "input": "input : list = [4, -5, 5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = drop([4, -5, 5, 0],2)",
    "io_inp": [
      4,
      -5,
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 5, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(reverse(take(take(drop([-2, 5, -2, -2],2),21),28)),16)",
    "io_inp": [
      -2,
      5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(drop(input,2),21),28)),16)"
  },
  {
    "input": "input : list = [0, -1, -2, 5]\noutput : list = [4, -1, -2, -3]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(sub_n([0, -1, -2, 5],-3)),-2),2),33)",
    "io_inp": [
      0,
      -1,
      -2,
      5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(sub_n(input,-3)),-2),2),33)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-7, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(reverse(reverse([-3, 3]))),-4))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(reverse(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-4, 0, -4, -1]\noutput : list = [12, 24, 60, 60]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(mul_n([-4, 0, -4, -1],3),3),25),-4))",
    "io_inp": [
      -4,
      0,
      -4,
      -1
    ],
    "io_out": [
      12,
      24,
      60,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(mul_n(input,3),3),25),-4))"
  },
  {
    "input": "input : list = [4, -3, -1, -4]\noutput : list = [11, 8, 2]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(drop([4, -3, -1, -4],1),9),-3),-1))",
    "io_inp": [
      4,
      -3,
      -1,
      -4
    ],
    "io_out": [
      11,
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(drop(input,1),9),-3),-1))"
  },
  {
    "input": "input : list = [-2, -1, 4, 2]\noutput : list = [2, 1, -2, -4]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(sort_des([-2, -1, 4, 2])),4)),-1)",
    "io_inp": [
      -2,
      -1,
      4,
      2
    ],
    "io_out": [
      2,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(sort_des(input)),4)),-1)"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [-60, 40, 140]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sub_n([5, 0, -5],-2)),-5),-4))",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      -60,
      40,
      140
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sub_n(input,-2)),-5),-4))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = reverse([4, 2])",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [6, -6]",
    "output": "generated_output : list = mul_n(add_n([-4, 2],1),-2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-2)"
  },
  {
    "input": "input : list = [2, -1, 2, 2, -3, 3]\noutput : list = [3, -3, 2, 2, -1, 2]",
    "output": "generated_output : list = take(reverse([2, -1, 2, 2, -3, 3]),8)",
    "io_inp": [
      2,
      -1,
      2,
      2,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      2,
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),8)"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [-116, 4, 4]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n([-1, -1, 5],5)),4),-4)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      -116,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(input,5)),4),-4)"
  },
  {
    "input": "input : list = [4, -5, 3, -2, -3, 1]\noutput : list = [49, 31, 22, -5, -23, -32]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(mul_n([4, -5, 3, -2, -3, 1],3),-3),-4),30))",
    "io_inp": [
      4,
      -5,
      3,
      -2,
      -3,
      1
    ],
    "io_out": [
      49,
      31,
      22,
      -5,
      -23,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(mul_n(input,3),-3),-4),30))"
  },
  {
    "input": "input : list = [-2, -4, -3, -2, -5, -3]\noutput : list = [1, -1, 0, 1]",
    "output": "generated_output : list = sub_n(take([-2, -4, -3, -2, -5, -3],4),-3)",
    "io_inp": [
      -2,
      -4,
      -3,
      -2,
      -5,
      -3
    ],
    "io_out": [
      1,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,4),-3)"
  },
  {
    "input": "input : list = [3, 2, -1, 1, -4]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(drop([3, 2, -1, 1, -4],3),-2),17)),14)",
    "io_inp": [
      3,
      2,
      -1,
      1,
      -4
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(drop(input,3),-2),17)),14)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [8, 0]",
    "output": "generated_output : list = sub_n(take(add_n(take(add_n([4, -4],-2),6),4),30),-2)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(add_n(input,-2),6),4),30),-2)"
  },
  {
    "input": "input : list = [4, 5, 5, -4]\noutput : list = [-6, 10, 12, 12]",
    "output": "generated_output : list = add_n(mul_n(take(reverse(sort_des([4, 5, 5, -4])),25),2),2)",
    "io_inp": [
      4,
      5,
      5,
      -4
    ],
    "io_out": [
      -6,
      10,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(sort_des(input)),25),2),2)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = take(sort_asc(add_n([0, 2, 0],-2)),25)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-2)),25)"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [10, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n(add_n([1, 2, -5],3),-5))",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      10,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,3),-5))"
  },
  {
    "input": "input : list = [-3, 5, 3, 5]\noutput : list = [4, 4, 12, 36]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(add_n([-3, 5, 3, 5],-5),-4)),-4))",
    "io_inp": [
      -3,
      5,
      3,
      5
    ],
    "io_out": [
      4,
      4,
      12,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(add_n(input,-5),-4)),-4))"
  },
  {
    "input": "input : list = [-1, 4, -4, 5]\noutput : list = [-11, -6, -14, -5]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(sub_n([-1, 4, -4, 5],5),-2),10),-4),-3)",
    "io_inp": [
      -1,
      4,
      -4,
      5
    ],
    "io_out": [
      -11,
      -6,
      -14,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(sub_n(input,5),-2),10),-4),-3)"
  },
  {
    "input": "input : list = [1, 3, 1, 0]\noutput : list = [9, 3, 3, 0]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(sort_des([1, 3, 1, 0])),25),3),1)",
    "io_inp": [
      1,
      3,
      1,
      0
    ],
    "io_out": [
      9,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(sort_des(input)),25),3),1)"
  },
  {
    "input": "input : list = [4, 5, 4, -2]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(drop(add_n([4, 5, 4, -2],-2),3),-2)",
    "io_inp": [
      4,
      5,
      4,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(input,-2),3),-2)"
  },
  {
    "input": "input : list = [0, 3, 0, -2, 4]\noutput : list = [5, 4, 1, 1, -1]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(add_n([0, 3, 0, -2, 4],4)),-4),1),12)",
    "io_inp": [
      0,
      3,
      0,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(add_n(input,4)),-4),1),12)"
  },
  {
    "input": "input : list = [-2, 3, -4, 2, -4]\noutput : list = [3, 2, -2, -4, -4]",
    "output": "generated_output : list = sort_des([-2, 3, -4, 2, -4])",
    "io_inp": [
      -2,
      3,
      -4,
      2,
      -4
    ],
    "io_out": [
      3,
      2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, -5, 3, 5]\noutput : list = [12, 10, 2]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(drop([2, 0, -5, 3, 5],2),5),2)),38)",
    "io_inp": [
      2,
      0,
      -5,
      3,
      5
    ],
    "io_out": [
      12,
      10,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(drop(input,2),5),2)),38)"
  },
  {
    "input": "input : list = [1, -1, 3, -5]\noutput : list = [5, 3, 1, -3]",
    "output": "generated_output : list = sort_des(add_n([1, -1, 3, -5],2))",
    "io_inp": [
      1,
      -1,
      3,
      -5
    ],
    "io_out": [
      5,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [5, 4, -4]\noutput : list = [-8, 0, 1]",
    "output": "generated_output : list = add_n(reverse(sub_n([5, 4, -4],2)),-2)",
    "io_inp": [
      5,
      4,
      -4
    ],
    "io_out": [
      -8,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,2)),-2)"
  },
  {
    "input": "input : list = [4, 4, -3, 0, 3]\noutput : list = [11, 11, 10, 7, 4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(add_n([4, 4, -3, 0, 3],3),2)),-2))",
    "io_inp": [
      4,
      4,
      -3,
      0,
      3
    ],
    "io_out": [
      11,
      11,
      10,
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(add_n(input,3),2)),-2))"
  },
  {
    "input": "input : list = [0, 5, 5, 5, 3]\noutput : list = [5, 5, 5, 3, 0]",
    "output": "generated_output : list = sort_des(reverse([0, 5, 5, 5, 3]))",
    "io_inp": [
      0,
      5,
      5,
      5,
      3
    ],
    "io_out": [
      5,
      5,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -4, 0, 2]\noutput : list = [9, 7, 5, 1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc([4, -4, 0, 2])))),5)",
    "io_inp": [
      4,
      -4,
      0,
      2
    ],
    "io_out": [
      9,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [0, -4, -1, 1, 5, -2]\noutput : list = [-60, -12, 0, 12, 24, 48]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(mul_n([0, -4, -1, 1, 5, -2],-4),10),3)))",
    "io_inp": [
      0,
      -4,
      -1,
      1,
      5,
      -2
    ],
    "io_out": [
      -60,
      -12,
      0,
      12,
      24,
      48
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(mul_n(input,-4),10),3)))"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = mul_n(reverse(drop([-1, -4, -2],1)),1)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,1)),1)"
  },
  {
    "input": "input : list = [-4, -3, 0, 0, -5, -1]\noutput : list = [-16, -14, -8, -8, -18, -10]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(reverse([-4, -3, 0, 0, -5, -1])),-5),2),-2)",
    "io_inp": [
      -4,
      -3,
      0,
      0,
      -5,
      -1
    ],
    "io_out": [
      -16,
      -14,
      -8,
      -8,
      -18,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(reverse(input)),-5),2),-2)"
  },
  {
    "input": "input : list = [-3, -3, -1, -5, -2, 0]\noutput : list = [-5, -3, -3, -1]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(take([-3, -3, -1, -5, -2, 0],4)))),1)",
    "io_inp": [
      -3,
      -3,
      -1,
      -5,
      -2,
      0
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(take(input,4)))),1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(sort_asc([3, 0]),13)),2))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(sort_asc(input),13)),2))"
  },
  {
    "input": "input : list = [4, 2, 1, 5, -4, 1]\noutput : list = [12, 6, 3, 15, -12, 3]",
    "output": "generated_output : list = mul_n([4, 2, 1, 5, -4, 1],3)",
    "io_inp": [
      4,
      2,
      1,
      5,
      -4,
      1
    ],
    "io_out": [
      12,
      6,
      3,
      15,
      -12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, -5, 4, 2]\noutput : list = [-5, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([1, -5, 4, 2]))",
    "io_inp": [
      1,
      -5,
      4,
      2
    ],
    "io_out": [
      -5,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -2, 1]\noutput : list = [-12, 0, 16]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n([5, -2, 1],4)),4))",
    "io_inp": [
      5,
      -2,
      1
    ],
    "io_out": [
      -12,
      0,
      16
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(input,4)),4))"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [4, 6, 8]",
    "output": "generated_output : list = mul_n(take(take(sort_des(add_n([1, 0, -1],-3)),13),11),-2)",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(add_n(input,-3)),13),11),-2)"
  },
  {
    "input": "input : list = [2, 4, 2, -1, 4, -4]\noutput : list = [10, 20, 10, -5, 20, -20]",
    "output": "generated_output : list = mul_n([2, 4, 2, -1, 4, -4],5)",
    "io_inp": [
      2,
      4,
      2,
      -1,
      4,
      -4
    ],
    "io_out": [
      10,
      20,
      10,
      -5,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, 0, -2, 3, -5]\noutput : list = [-8, -7, -9, -4, -12]",
    "output": "generated_output : list = take(sub_n(add_n([-1, 0, -2, 3, -5],-5),2),7)",
    "io_inp": [
      -1,
      0,
      -2,
      3,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -9,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-5),2),7)"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_asc([-4, 0, -3]),1))))",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_des([0, 1]))),5))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_des(input))),5))"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [5, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 5])",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des([3, -4])",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-3, -8]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n(sort_asc([0, 5]),-1),-3),-2),4)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(sort_asc(input),-1),-3),-2),4)"
  },
  {
    "input": "input : list = [5, -3, 3, -5, -1]\noutput : list = [-24, -12, -28, -20]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(drop([5, -3, 3, -5, -1],1),3),-5),-1),2)",
    "io_inp": [
      5,
      -3,
      3,
      -5,
      -1
    ],
    "io_out": [
      -24,
      -12,
      -28,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(drop(input,1),3),-5),-1),2)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [9]",
    "output": "generated_output : list = add_n(sub_n(drop(take(sub_n([0, 4],-2),6),1),2),5)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(take(sub_n(input,-2),6),1),2),5)"
  },
  {
    "input": "input : list = [-4, -1, 3, 1, -2]\noutput : list = [8, 6, 4, 3, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_des([-4, -1, 3, 1, -2]),5))",
    "io_inp": [
      -4,
      -1,
      3,
      1,
      -2
    ],
    "io_out": [
      8,
      6,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [-4, 4, -4]\noutput : list = [4, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc([-4, 4, -4]))",
    "io_inp": [
      -4,
      4,
      -4
    ],
    "io_out": [
      4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [4, -4, -5, -1, -3, 5]\noutput : list = [5, 4, -1, -3, -4, -5]",
    "output": "generated_output : list = take(sort_des([4, -4, -5, -1, -3, 5]),29)",
    "io_inp": [
      4,
      -4,
      -5,
      -1,
      -3,
      5
    ],
    "io_out": [
      5,
      4,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),29)"
  },
  {
    "input": "input : list = [4, 3, 0, 5, -4, 1]\noutput : list = [5, 4, 3, 1, 0, -4]",
    "output": "generated_output : list = take(sort_des(sort_des([4, 3, 0, 5, -4, 1])),8)",
    "io_inp": [
      4,
      3,
      0,
      5,
      -4,
      1
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),8)"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc([0, -2, -2])),2)))",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(add_n([-2, 2],3),2),4)))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(add_n(input,3),2),4)))"
  },
  {
    "input": "input : list = [-5, -3, -1, -5, 3]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(take([-5, -3, -1, -5, 3],3)))),6)",
    "io_inp": [
      -5,
      -3,
      -1,
      -5,
      3
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(take(input,3)))),6)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-4, -12]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_des([3, -1]))),5),2)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_des(input))),5),2)"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [-12]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(take([-3, -3, 3],1))),5),-3)",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(take(input,1))),5),-3)"
  },
  {
    "input": "input : list = [1, 1, 0, 3, 1, -1]\noutput : list = [5, 1, 1, 1, -1, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n([1, 1, 0, 3, 1, -1],2)),2),1)",
    "io_inp": [
      1,
      1,
      0,
      3,
      1,
      -1
    ],
    "io_out": [
      5,
      1,
      1,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(input,2)),2),1)"
  },
  {
    "input": "input : list = [-2, 4, 4, 1]\noutput : list = [0, 0, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(take(mul_n([-2, 4, 4, 1],-1),3),3)),4)",
    "io_inp": [
      -2,
      4,
      4,
      1
    ],
    "io_out": [
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(mul_n(input,-1),3),3)),4)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [16, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(add_n([4, 0],4)))),2)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(add_n(input,4)))),2)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(add_n([-2, -1],5))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [3, -4, -2, -2]\noutput : list = [3, -4, -2, -2]",
    "output": "generated_output : list = mul_n([3, -4, -2, -2],1)",
    "io_inp": [
      3,
      -4,
      -2,
      -2
    ],
    "io_out": [
      3,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-36, -27]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(add_n([-4, -3],-4),-4),3),3),3)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -36,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(add_n(input,-4),-4),3),3),3)"
  },
  {
    "input": "input : list = [-1, -3, 1, 1]\noutput : list = [-15, -15, 15, 45]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_asc([-1, -3, 1, 1]),-5)),3),30)",
    "io_inp": [
      -1,
      -3,
      1,
      1
    ],
    "io_out": [
      -15,
      -15,
      15,
      45
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_asc(input),-5)),3),30)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(add_n([-1, -3, -5],2),2))))",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(add_n(input,2),2))))"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n([-1, 3, -2],-1)),-1))",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(input,-1)),-1))"
  },
  {
    "input": "input : list = [-5, -1, -4, 3]\noutput : list = [-2, -6, -9]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(drop([-5, -1, -4, 3],1),7),5)))",
    "io_inp": [
      -5,
      -1,
      -4,
      3
    ],
    "io_out": [
      -2,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(drop(input,1),7),5)))"
  },
  {
    "input": "input : list = [-5, -5, 5, 1]\noutput : list = [15, -5, -35, -35]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(sort_des([-5, -5, 5, 1]),-1),3),5),22)",
    "io_inp": [
      -5,
      -5,
      5,
      1
    ],
    "io_out": [
      15,
      -5,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(sort_des(input),-1),3),5),22)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-14, -12]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_des([-1, 1]),3),5)),5)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -14,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_des(input),3),5)),5)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(sub_n([3, -3],5),1),-3)))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(sub_n(input,5),1),-3)))"
  },
  {
    "input": "input : list = [3, 0, 2, 3]\noutput : list = [-1, 1, 2, 2]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(sort_asc([3, 0, 2, 3])),9),2),-1)",
    "io_inp": [
      3,
      0,
      2,
      3
    ],
    "io_out": [
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(sort_asc(input)),9),2),-1)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc([-3, -2]),7))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),7))"
  },
  {
    "input": "input : list = [-2, -5, -1]\noutput : list = [-8, -5, -4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(reverse([-2, -5, -1]))),-3))",
    "io_inp": [
      -2,
      -5,
      -1
    ],
    "io_out": [
      -8,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(reverse(input))),-3))"
  },
  {
    "input": "input : list = [0, 1, 0, 1, -5, 3]\noutput : list = [-1, -3, -3, -4, -4, -9]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(sort_des([0, 1, 0, 1, -5, 3])),11)),4)",
    "io_inp": [
      0,
      1,
      0,
      1,
      -5,
      3
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -4,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(sort_des(input)),11)),4)"
  },
  {
    "input": "input : list = [5, -4, -3, 1, 0, -4]\noutput : list = [4, -5, -4, 0, -1, -5]",
    "output": "generated_output : list = sub_n([5, -4, -3, 1, 0, -4],1)",
    "io_inp": [
      5,
      -4,
      -3,
      1,
      0,
      -4
    ],
    "io_out": [
      4,
      -5,
      -4,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, -4, -4, 5]\noutput : list = [-6, -6, 3]",
    "output": "generated_output : list = reverse(add_n(take(reverse([-2, -4, -4, 5]),3),-2))",
    "io_inp": [
      -2,
      -4,
      -4,
      5
    ],
    "io_out": [
      -6,
      -6,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(input),3),-2))"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [8, 8, 0]",
    "output": "generated_output : list = mul_n(sort_des([4, 0, 4]),2)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      8,
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-3, -1, -3]\noutput : list = [4, 2]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(drop([-3, -1, -3],1),-4),1)),1)",
    "io_inp": [
      -3,
      -1,
      -3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(drop(input,1),-4),1)),1)"
  },
  {
    "input": "input : list = [-4, 3, -3, -4]\noutput : list = [8, 20, 22, 22]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(add_n([-4, 3, -3, -4],-3),2),2),-2))",
    "io_inp": [
      -4,
      3,
      -3,
      -4
    ],
    "io_out": [
      8,
      20,
      22,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(add_n(input,-3),2),2),-2))"
  },
  {
    "input": "input : list = [3, 4, -1, 5, 5]\noutput : list = [-6, -6]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop([3, 4, -1, 5, 5],3),4)),-1),-3)",
    "io_inp": [
      3,
      4,
      -1,
      5,
      5
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop(input,3),4)),-1),-3)"
  },
  {
    "input": "input : list = [-5, -4, 5, 2, -5]\noutput : list = [1, -2, -8, -9, -9]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(sub_n([-5, -4, 5, 2, -5],1))),3))",
    "io_inp": [
      -5,
      -4,
      5,
      2,
      -5
    ],
    "io_out": [
      1,
      -2,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(sub_n(input,1))),3))"
  },
  {
    "input": "input : list = [0, 4, 5, -2]\noutput : list = [-5, 7, 10]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(sort_des([0, 4, 5, -2]),3)),3),-5)",
    "io_inp": [
      0,
      4,
      5,
      -2
    ],
    "io_out": [
      -5,
      7,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(sort_des(input),3)),3),-5)"
  },
  {
    "input": "input : list = [-5, 0, -5, 5, 2, 2]\noutput : list = [-9, -4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(take([-5, 0, -5, 5, 2, 2],2)),-4)))",
    "io_inp": [
      -5,
      0,
      -5,
      5,
      2,
      2
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(take(input,2)),-4)))"
  },
  {
    "input": "input : list = [0, -3, -4, 1]\noutput : list = [2, 5, 14, 17]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(reverse([0, -3, -4, 1]),-3)),-5)",
    "io_inp": [
      0,
      -3,
      -4,
      1
    ],
    "io_out": [
      2,
      5,
      14,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(reverse(input),-3)),-5)"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(reverse([1, -1, -4]))),-2),35)",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(reverse(input))),-2),35)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(reverse([-1, 0]))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [8, 4]",
    "output": "generated_output : list = sub_n(sub_n([3, -1],-4),-1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [56, 56]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(mul_n([-3, -3],-4))),2),4)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      56,
      56
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(mul_n(input,-4))),2),4)"
  },
  {
    "input": "input : list = [2, -5, 3, -2, 0, -5]\noutput : list = [2, 6, 14, 22, 34, 34]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sub_n([2, -5, 3, -2, 0, -5],1)),-4),5),5)",
    "io_inp": [
      2,
      -5,
      3,
      -2,
      0,
      -5
    ],
    "io_out": [
      2,
      6,
      14,
      22,
      34,
      34
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sub_n(input,1)),-4),5),5)"
  },
  {
    "input": "input : list = [5, 1, 0, 0]\noutput : list = [-3, -3, 0, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n([5, 1, 0, 0],3),-2),3))",
    "io_inp": [
      5,
      1,
      0,
      0
    ],
    "io_out": [
      -3,
      -3,
      0,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(input,3),-2),3))"
  },
  {
    "input": "input : list = [-5, -4, -5, -5, 3, -2]\noutput : list = [-2, -2, -2, -1, 1, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_des([-5, -4, -5, -5, 3, -2]),-1)),1),3)",
    "io_inp": [
      -5,
      -4,
      -5,
      -5,
      3,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_des(input),-1)),1),3)"
  },
  {
    "input": "input : list = [-1, 1, 1, -3]\noutput : list = [-3, -1, 1, 1]",
    "output": "generated_output : list = sort_asc([-1, 1, 1, -3])",
    "io_inp": [
      -1,
      1,
      1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, -1, 2, 0]\noutput : list = [12, 14, 11, 15, 8]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(reverse([-4, 3, -1, 2, 0]),-2),-5),44),-5)",
    "io_inp": [
      -4,
      3,
      -1,
      2,
      0
    ],
    "io_out": [
      12,
      14,
      11,
      15,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(reverse(input),-2),-5),44),-5)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(add_n(take([-3, 4, 0],1),-4))",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(input,1),-4))"
  },
  {
    "input": "input : list = [-5, 1, 2, 0]\noutput : list = [0, 2, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 2, 0])",
    "io_inp": [
      -5,
      1,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4, 4, 4]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(take([5, -4, 4, 4],1)),26)),1)",
    "io_inp": [
      5,
      -4,
      4,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(take(input,1)),26)),1)"
  },
  {
    "input": "input : list = [-5, -1, -5, -4]\noutput : list = [-5, -5, -4, -1]",
    "output": "generated_output : list = sort_asc([-5, -1, -5, -4])",
    "io_inp": [
      -5,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, 4, 0]\noutput : list = [-11, -9, -6, -5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(add_n([3, -2, 4, 0],-5),4))))",
    "io_inp": [
      3,
      -2,
      4,
      0
    ],
    "io_out": [
      -11,
      -9,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(add_n(input,-5),4))))"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [1, 5, 2]",
    "output": "generated_output : list = add_n([-3, 1, -2],4)",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      1,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [8, 14]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(drop([0, -1, -4],1)),5),-3),2)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      8,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(drop(input,1)),5),-3),2)"
  },
  {
    "input": "input : list = [0, 5, 4, -5, 3, 4]\noutput : list = [-16, -11, -8, -7, -7, -6]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(add_n([0, 5, 4, -5, 3, 4],-4),-2),5)),7)",
    "io_inp": [
      0,
      5,
      4,
      -5,
      3,
      4
    ],
    "io_out": [
      -16,
      -11,
      -8,
      -7,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(add_n(input,-4),-2),5)),7)"
  },
  {
    "input": "input : list = [2, 4, -3, 5, -5, -3]\noutput : list = [5, 4, 2, -3, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse([2, 4, -3, 5, -5, -3]))))",
    "io_inp": [
      2,
      4,
      -3,
      5,
      -5,
      -3
    ],
    "io_out": [
      5,
      4,
      2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [5, -1, -4, 5]\noutput : list = [1, -8, -5, 1]",
    "output": "generated_output : list = reverse(sub_n([5, -1, -4, 5],4))",
    "io_inp": [
      5,
      -1,
      -4,
      5
    ],
    "io_out": [
      1,
      -8,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [2, 3, 1, 2, -2]\noutput : list = [-2, 2, 1, 3, 2]",
    "output": "generated_output : list = reverse([2, 3, 1, 2, -2])",
    "io_inp": [
      2,
      3,
      1,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      1,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-4, -2]",
    "output": "generated_output : list = mul_n(take(sort_des([2, 1]),9),-2)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),9),-2)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [4, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des([4, -4, -1]))",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(add_n([-2, 0],4))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(add_n([-2, -2],-2)))),1)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(add_n(input,-2)))),1)"
  },
  {
    "input": "input : list = [0, 0, 3, 5, -1, -5]\noutput : list = [5, -1, -5]",
    "output": "generated_output : list = drop([0, 0, 3, 5, -1, -5],3)",
    "io_inp": [
      0,
      0,
      3,
      5,
      -1,
      -5
    ],
    "io_out": [
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, 1, -4, 2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 1, -4, 2],1)",
    "io_inp": [
      3,
      1,
      -4,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [-6, 2, 0]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(reverse([2, 4, -4])),2)),41)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      -6,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(reverse(input)),2)),41)"
  },
  {
    "input": "input : list = [0, 1, 2]\noutput : list = [-15, -90, -165]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n([0, 1, 2],5),3),-3),-5))",
    "io_inp": [
      0,
      1,
      2
    ],
    "io_out": [
      -15,
      -90,
      -165
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n(input,5),3),-3),-5))"
  },
  {
    "input": "input : list = [-5, -2, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(sort_asc([-5, -2, -1, 0])),4),1))",
    "io_inp": [
      -5,
      -2,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(sort_asc(input)),4),1))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [2, 2]",
    "output": "generated_output : list = mul_n(reverse([-2, -2]),-1)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [10, 1]",
    "output": "generated_output : list = sub_n(reverse([-4, 5]),-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      10,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [1, -3, -3, 1]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(take([1, -3, -3, 1],1),-1),19),-5),4)",
    "io_inp": [
      1,
      -3,
      -3,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(take(input,1),-1),19),-5),4)"
  },
  {
    "input": "input : list = [-5, 4, 2, -5, -1]\noutput : list = [-8, 1, -1, -8, -4]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n([-5, 4, 2, -5, -1],2),1),1),4)",
    "io_inp": [
      -5,
      4,
      2,
      -5,
      -1
    ],
    "io_out": [
      -8,
      1,
      -1,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(input,2),1),1),4)"
  },
  {
    "input": "input : list = [-5, -4, 2, -4, 5, 3]\noutput : list = [-5, -4, -4, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(add_n([-5, -4, 2, -4, 5, 3],-5),29)),-5))",
    "io_inp": [
      -5,
      -4,
      2,
      -4,
      5,
      3
    ],
    "io_out": [
      -5,
      -4,
      -4,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(add_n(input,-5),29)),-5))"
  },
  {
    "input": "input : list = [-2, 1, 0, -4]\noutput : list = [1, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_asc([-2, 1, 0, -4])))))",
    "io_inp": [
      -2,
      1,
      0,
      -4
    ],
    "io_out": [
      1,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([1, -1])))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-3, 5, 1, -5, -4, -2]\noutput : list = [-9, -8, -6]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(drop([-3, 5, 1, -5, -4, -2],3))),4))",
    "io_inp": [
      -3,
      5,
      1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(drop(input,3))),4))"
  },
  {
    "input": "input : list = [-2, 2, 5, -4, 4, -3]\noutput : list = [5, 4, 2, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-2, 2, 5, -4, 4, -3])",
    "io_inp": [
      -2,
      2,
      5,
      -4,
      4,
      -3
    ],
    "io_out": [
      5,
      4,
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2, 5, 2, -4]\noutput : list = [1, -2, -2, -7, -8]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc([-3, 2, 5, 2, -4])),1),-4)",
    "io_inp": [
      -3,
      2,
      5,
      2,
      -4
    ],
    "io_out": [
      1,
      -2,
      -2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(input)),1),-4)"
  },
  {
    "input": "input : list = [-1, -4, -1, -1]\noutput : list = [-6, -3, -3, -3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([-1, -4, -1, -1],-1)),1)",
    "io_inp": [
      -1,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,-1)),1)"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [77, 77, 27]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(add_n([-5, 0, -5],-3)),2),-5),3)",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      77,
      77,
      27
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(add_n(input,-3)),2),-5),3)"
  },
  {
    "input": "input : list = [-2, -2, -5, 2, -3, -3]\noutput : list = [-2, 0, 0, 1, 1, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(add_n([-2, -2, -5, 2, -3, -3],3)))))",
    "io_inp": [
      -2,
      -2,
      -5,
      2,
      -3,
      -3
    ],
    "io_out": [
      -2,
      0,
      0,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(add_n(input,3)))))"
  },
  {
    "input": "input : list = [1, -2, 1, 2, -5, -5]\noutput : list = [1, 1, 4, 7, 7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([1, -2, 1, 2, -5, -5],3)),-3)",
    "io_inp": [
      1,
      -2,
      1,
      2,
      -5,
      -5
    ],
    "io_out": [
      1,
      1,
      4,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,3)),-3)"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [1, 1, 3]",
    "output": "generated_output : list = take(sort_asc([1, 3, 1]),15)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [2, 8, -4]",
    "output": "generated_output : list = mul_n(sub_n([1, -2, 4],2),-2)",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      2,
      8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),-2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(sub_n([3, -5],2))),3))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(sub_n(input,2))),3))"
  },
  {
    "input": "input : list = [-4, 2, 0, 1, 5]\noutput : list = [-4, 0, 1, 2, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc([-4, 2, 0, 1, 5]))),18)",
    "io_inp": [
      -4,
      2,
      0,
      1,
      5
    ],
    "io_out": [
      -4,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(input))),18)"
  },
  {
    "input": "input : list = [3, 2, -4, -2]\noutput : list = [3]",
    "output": "generated_output : list = take(reverse(take([3, 2, -4, -2],1)),11)",
    "io_inp": [
      3,
      2,
      -4,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),11)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [15, -3, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_asc([5, -4, -1])),3)))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      15,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-3, 3, 0, -2]\noutput : list = [9, -9, 0, 6]",
    "output": "generated_output : list = mul_n([-3, 3, 0, -2],-3)",
    "io_inp": [
      -3,
      3,
      0,
      -2
    ],
    "io_out": [
      9,
      -9,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 2, -2, -5, 5, 2]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(drop(sort_des([-5, 2, -2, -5, 5, 2]),5))))",
    "io_inp": [
      -5,
      2,
      -2,
      -5,
      5,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(drop(sort_des(input),5))))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-24, -52]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(add_n([-4, 3],3),-4),3),-4))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -24,
      -52
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(add_n(input,3),-4),3),-4))"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [10, 10, 4]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(sort_asc([2, -4, 2])),7),4),-4)",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      10,
      10,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(sort_asc(input)),7),4),-4)"
  },
  {
    "input": "input : list = [-5, 4, 4, 3]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take([-5, 4, 4, 3],2)",
    "io_inp": [
      -5,
      4,
      4,
      3
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 1, -5]\noutput : list = [-21, -11, 9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc([-3, 1, -5]),5),-4),-5),5)",
    "io_inp": [
      -3,
      1,
      -5
    ],
    "io_out": [
      -21,
      -11,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc(input),5),-4),-5),5)"
  },
  {
    "input": "input : list = [0, 3, -3, 2, 2, -4]\noutput : list = [3, 2, 2, 0, -3, -4]",
    "output": "generated_output : list = sort_des([0, 3, -3, 2, 2, -4])",
    "io_inp": [
      0,
      3,
      -3,
      2,
      2,
      -4
    ],
    "io_out": [
      3,
      2,
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1, -2, 2, -3]\noutput : list = [12, 0, 0, -4, -8]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(sort_des([-1, -1, -2, 2, -3]),4),4)))",
    "io_inp": [
      -1,
      -1,
      -2,
      2,
      -3
    ],
    "io_out": [
      12,
      0,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(sort_des(input),4),4)))"
  },
  {
    "input": "input : list = [3, 2, -3, -3, -4]\noutput : list = [-36, -16]",
    "output": "generated_output : list = drop(sub_n(mul_n(mul_n(add_n([3, 2, -3, -3, -4],5),5),-4),-4),3)",
    "io_inp": [
      3,
      2,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -36,
      -16
    ],
    "output_masked": "generated_output : list = drop(sub_n(mul_n(mul_n(add_n(input,5),5),-4),-4),3)"
  },
  {
    "input": "input : list = [-3, -1, -5, 0, 0, -4]\noutput : list = [-2, -7, -3, -5]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(take([-3, -1, -5, 0, 0, -4],4),-2),-1),-3))",
    "io_inp": [
      -3,
      -1,
      -5,
      0,
      0,
      -4
    ],
    "io_out": [
      -2,
      -7,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(take(input,4),-2),-1),-3))"
  },
  {
    "input": "input : list = [-5, 1, 2, 5]\noutput : list = [-110, 40, 65, 140]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(mul_n([-5, 1, 2, 5],5),-3)),5))",
    "io_inp": [
      -5,
      1,
      2,
      5
    ],
    "io_out": [
      -110,
      40,
      65,
      140
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(mul_n(input,5),-3)),5))"
  },
  {
    "input": "input : list = [3, 4, -3, 0]\noutput : list = [-3, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des([3, 4, -3, 0]))",
    "io_inp": [
      3,
      4,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 3, 3, -2, -5, 3]\noutput : list = [-13, -10, -10, -5, -5, -5]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n([-2, 3, 3, -2, -5, 3],5)),22),3)",
    "io_inp": [
      -2,
      3,
      3,
      -2,
      -5,
      3
    ],
    "io_out": [
      -13,
      -10,
      -10,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(input,5)),22),3)"
  },
  {
    "input": "input : list = [-1, 4, 4, -5, -2, 0]\noutput : list = [1, 1, -3, -4, -5, -8]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(add_n([-1, 4, 4, -5, -2, 0],-3)),26)))",
    "io_inp": [
      -1,
      4,
      4,
      -5,
      -2,
      0
    ],
    "io_out": [
      1,
      1,
      -3,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(add_n(input,-3)),26)))"
  },
  {
    "input": "input : list = [3, 0, -1, -4, 1]\noutput : list = [4, 1, 0, -3, 2]",
    "output": "generated_output : list = add_n([3, 0, -1, -4, 1],1)",
    "io_inp": [
      3,
      0,
      -1,
      -4,
      1
    ],
    "io_out": [
      4,
      1,
      0,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [8, 0]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(reverse([5, -3]),-2),1),1))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(reverse(input),-2),1),1))"
  },
  {
    "input": "input : list = [1, -2, 3, 0, 0, 4]\noutput : list = [4, 0, 0, 3, -2, 1]",
    "output": "generated_output : list = reverse([1, -2, 3, 0, 0, 4])",
    "io_inp": [
      1,
      -2,
      3,
      0,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      0,
      3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, -3, 3, 0]\noutput : list = [5, -4, -4, -10, -13]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(add_n([0, 2, -3, 3, 0],1),-3),1),2))",
    "io_inp": [
      0,
      2,
      -3,
      3,
      0
    ],
    "io_out": [
      5,
      -4,
      -4,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(add_n(input,1),-3),1),2))"
  },
  {
    "input": "input : list = [2, 2, 2, -2]\noutput : list = [-1, -1, -1, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc([2, 2, 2, -2])),-3))",
    "io_inp": [
      2,
      2,
      2,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-9, -10]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n([-2, -3],2),-5),4),1)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(input,2),-5),4),1)"
  },
  {
    "input": "input : list = [4, 5, -5, 5, 1, 1]\noutput : list = [5, 5, 4, -5]",
    "output": "generated_output : list = take(sort_des(take(reverse(take([4, 5, -5, 5, 1, 1],4)),21)),17)",
    "io_inp": [
      4,
      5,
      -5,
      5,
      1,
      1
    ],
    "io_out": [
      5,
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(take(input,4)),21)),17)"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [-16, -8, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sort_des([0, 2, 4])),-4)))",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      -16,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-5, 1, 1, -4, -1, -4]\noutput : list = [-4, -1, -4]",
    "output": "generated_output : list = drop([-5, 1, 1, -4, -1, -4],3)",
    "io_inp": [
      -5,
      1,
      1,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, 1, 2, -5, 1]\noutput : list = [-5, -4, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(take(reverse([-4, 1, 2, -5, 1]),9))",
    "io_inp": [
      -4,
      1,
      2,
      -5,
      1
    ],
    "io_out": [
      -5,
      -4,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),9))"
  },
  {
    "input": "input : list = [0, -2, 1, -2, 1]\noutput : list = [-16, 16, -32, 16, -32]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([0, -2, 1, -2, 1],-1),4),-4)",
    "io_inp": [
      0,
      -2,
      1,
      -2,
      1
    ],
    "io_out": [
      -16,
      16,
      -32,
      16,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,-1),4),-4)"
  },
  {
    "input": "input : list = [0, 3, -1, 2, 4, 1]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(take([0, 3, -1, 2, 4, 1],1),1),4),4))",
    "io_inp": [
      0,
      3,
      -1,
      2,
      4,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(take(input,1),1),4),4))"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(drop([-2, -5, 0],1),2)),-1))",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(drop(input,1),2)),-1))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-20, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n([5, -1],-4)))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -20,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [3, 0, -4, 3]\noutput : list = [-40, -20, -5, -5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(add_n([3, 0, -4, 3],-4),5),1)))",
    "io_inp": [
      3,
      0,
      -4,
      3
    ],
    "io_out": [
      -40,
      -20,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(add_n(input,-4),5),1)))"
  },
  {
    "input": "input : list = [0, -1, -1, 0, -2]\noutput : list = [3, 1, 2, 2, 1]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse([0, -1, -1, 0, -2]),13),1),-1)",
    "io_inp": [
      0,
      -1,
      -1,
      0,
      -2
    ],
    "io_out": [
      3,
      1,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(input),13),1),-1)"
  },
  {
    "input": "input : list = [4, 4, -2, 2]\noutput : list = [3]",
    "output": "generated_output : list = drop(sort_des(sort_des(sort_des(add_n([4, 4, -2, 2],5)))),3)",
    "io_inp": [
      4,
      4,
      -2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(sort_des(add_n(input,5)))),3)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-9, -7, -7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(sort_asc([-3, -1, -1]))),-4),-2)",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -9,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(sort_asc(input))),-4),-2)"
  },
  {
    "input": "input : list = [5, -4, -2, -2, -1]\noutput : list = [-8, -6, -6, -5, 1]",
    "output": "generated_output : list = sort_asc(add_n([5, -4, -2, -2, -1],-4))",
    "io_inp": [
      5,
      -4,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [0, 2, -3, 5, 4]\noutput : list = [15, 12, 6, 0, -9]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc([0, 2, -3, 5, 4]),3)),19)",
    "io_inp": [
      0,
      2,
      -3,
      5,
      4
    ],
    "io_out": [
      15,
      12,
      6,
      0,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(input),3)),19)"
  },
  {
    "input": "input : list = [-4, -3, -5, 5, 0]\noutput : list = [8, 3, 0, -1, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(sub_n([-4, -3, -5, 5, 0],-3)))),38)",
    "io_inp": [
      -4,
      -3,
      -5,
      5,
      0
    ],
    "io_out": [
      8,
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(sub_n(input,-3)))),38)"
  },
  {
    "input": "input : list = [-2, -3, -1, 0, -5]\noutput : list = [-40, -15, -20, -30, -25]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(add_n([-2, -3, -1, 0, -5],3),-5),5)),-5)",
    "io_inp": [
      -2,
      -3,
      -1,
      0,
      -5
    ],
    "io_out": [
      -40,
      -15,
      -20,
      -30,
      -25
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(add_n(input,3),-5),5)),-5)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [1, 8, 1]",
    "output": "generated_output : list = sub_n([-3, 4, -3],-4)",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      1,
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [4, 5, 5, -4, -3]\noutput : list = [4, 5, 5]",
    "output": "generated_output : list = take([4, 5, 5, -4, -3],3)",
    "io_inp": [
      4,
      5,
      5,
      -4,
      -3
    ],
    "io_out": [
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 5, -2]\noutput : list = [-10, -9, -5, -6, 0, -7]",
    "output": "generated_output : list = take(reverse(add_n(take(reverse([-5, -4, 0, -1, 5, -2]),17),-5)),25)",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      5,
      -2
    ],
    "io_out": [
      -10,
      -9,
      -5,
      -6,
      0,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(reverse(input),17),-5)),25)"
  },
  {
    "input": "input : list = [-3, -3, -4]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(sort_asc([-3, -3, -4]),-2)),-4),22)",
    "io_inp": [
      -3,
      -3,
      -4
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(sort_asc(input),-2)),-4),22)"
  },
  {
    "input": "input : list = [-4, -1, -2, 5]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(take(reverse(take(take([-4, -1, -2, 5],2),12)),34))",
    "io_inp": [
      -4,
      -1,
      -2,
      5
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(take(input,2),12)),34))"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [-4, -4, 3]",
    "output": "generated_output : list = mul_n(sort_des(take(take(sort_asc([-3, 4, 4]),5),14)),-1)",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      -4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(sort_asc(input),5),14)),-1)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(add_n([0, -2],-5),4),-5)))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(add_n(input,-5),4),-5)))"
  },
  {
    "input": "input : list = [3, -2, -3, 1, -1]\noutput : list = [21, 18, 15, 9, 3]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(add_n([3, -2, -3, 1, -1],-4),1),-3)))",
    "io_inp": [
      3,
      -2,
      -3,
      1,
      -1
    ],
    "io_out": [
      21,
      18,
      15,
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(add_n(input,-4),1),-3)))"
  },
  {
    "input": "input : list = [-5, -5, -3, -1, -3, -4]\noutput : list = [5, 11, 11, 14, 17, 17]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(mul_n([-5, -5, -3, -1, -3, -4],-3),2))),32)",
    "io_inp": [
      -5,
      -5,
      -3,
      -1,
      -3,
      -4
    ],
    "io_out": [
      5,
      11,
      11,
      14,
      17,
      17
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(mul_n(input,-3),2))),32)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [11, 11, 6]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_asc([5, 0, 5])),2)),-4)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      11,
      11,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_asc(input)),2)),-4)"
  },
  {
    "input": "input : list = [5, -3, -3, 1, -3]\noutput : list = [-10, -2, 6, 6, 6]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(sort_des([5, -3, -3, 1, -3]),-2))),7)",
    "io_inp": [
      5,
      -3,
      -3,
      1,
      -3
    ],
    "io_out": [
      -10,
      -2,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(sort_des(input),-2))),7)"
  },
  {
    "input": "input : list = [4, 4, -5, -1, -3, -1]\noutput : list = [8, 8, -1, 3, 1, 3]",
    "output": "generated_output : list = take(add_n([4, 4, -5, -1, -3, -1],4),21)",
    "io_inp": [
      4,
      4,
      -5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      8,
      8,
      -1,
      3,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),21)"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [13, 8, 5]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(sub_n([-3, 5, 0],1),4),5),23))",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      13,
      8,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(sub_n(input,1),4),5),23))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, -3]))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 2, 1, -1]\noutput : list = [4, 4, 3, 1]",
    "output": "generated_output : list = add_n([2, 2, 1, -1],2)",
    "io_inp": [
      2,
      2,
      1,
      -1
    ],
    "io_out": [
      4,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, -1, 4, 1]\noutput : list = [-1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([2, -1, 4, 1])",
    "io_inp": [
      2,
      -1,
      4,
      1
    ],
    "io_out": [
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -1, -4, -3, 4, -4]\noutput : list = [23, 18, 8, 3, -17]",
    "output": "generated_output : list = sub_n(drop(sort_des(sort_asc(mul_n([0, -1, -4, -3, 4, -4],-5))),1),-3)",
    "io_inp": [
      0,
      -1,
      -4,
      -3,
      4,
      -4
    ],
    "io_out": [
      23,
      18,
      8,
      3,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(sort_asc(mul_n(input,-5))),1),-3)"
  },
  {
    "input": "input : list = [0, -2, 5]\noutput : list = [0, 2, 7]",
    "output": "generated_output : list = take(reverse(sort_des(take(add_n([0, -2, 5],2),3))),8)",
    "io_inp": [
      0,
      -2,
      5
    ],
    "io_out": [
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(add_n(input,2),3))),8)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, -8]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(reverse([-3, 2])),-2),1),3)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(reverse(input)),-2),1),3)"
  },
  {
    "input": "input : list = [-1, 5, -1, -4, 3, -5]\noutput : list = [-1, -19, -1, 8, -13, 11]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(mul_n([-1, 5, -1, -4, 3, -5],-3),2)),-2))",
    "io_inp": [
      -1,
      5,
      -1,
      -4,
      3,
      -5
    ],
    "io_out": [
      -1,
      -19,
      -1,
      8,
      -13,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(mul_n(input,-3),2)),-2))"
  },
  {
    "input": "input : list = [5, 2, 0, 5]\noutput : list = [1, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(take([5, 2, 0, 5],2),-1)),-2),1)",
    "io_inp": [
      5,
      2,
      0,
      5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(take(input,2),-1)),-2),1)"
  },
  {
    "input": "input : list = [4, 4, -4, -1]\noutput : list = [12, 12, -12, -3]",
    "output": "generated_output : list = mul_n([4, 4, -4, -1],3)",
    "io_inp": [
      4,
      4,
      -4,
      -1
    ],
    "io_out": [
      12,
      12,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = reverse(add_n(add_n([-5, -5],3),-3))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,3),-3))"
  },
  {
    "input": "input : list = [-2, 5, 0, 2]\noutput : list = [-10, 0, 10, 25]",
    "output": "generated_output : list = sort_asc(take(mul_n([-2, 5, 0, 2],5),4))",
    "io_inp": [
      -2,
      5,
      0,
      2
    ],
    "io_out": [
      -10,
      0,
      10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,5),4))"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [-12, -7, -6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(sort_des([2, 3, -3])),-5),4))",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      -12,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(sort_des(input)),-5),4))"
  },
  {
    "input": "input : list = [0, -3, 0, 3]\noutput : list = [15, 0, 0, -15]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(mul_n([0, -3, 0, 3],-5)))))",
    "io_inp": [
      0,
      -3,
      0,
      3
    ],
    "io_out": [
      15,
      0,
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [4, -5, 1, 1, 1, -3]\noutput : list = [11]",
    "output": "generated_output : list = drop(sub_n(add_n(take(sort_asc([4, -5, 1, 1, 1, -3]),14),2),-5),5)",
    "io_inp": [
      4,
      -5,
      1,
      1,
      1,
      -3
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = drop(sub_n(add_n(take(sort_asc(input),14),2),-5),5)"
  },
  {
    "input": "input : list = [1, 4, 3, -3, 0, -3]\noutput : list = [4, 3, 1, 0, -3, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc([1, 4, 3, -3, 0, -3]),9))",
    "io_inp": [
      1,
      4,
      3,
      -3,
      0,
      -3
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),9))"
  },
  {
    "input": "input : list = [4, 3, -4, -3, 1, -3]\noutput : list = [-60, -55, -55, -35, -25, -20]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(sort_asc([4, 3, -4, -3, 1, -3]),-3),-5),5))",
    "io_inp": [
      4,
      3,
      -4,
      -3,
      1,
      -3
    ],
    "io_out": [
      -60,
      -55,
      -55,
      -35,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(sort_asc(input),-3),-5),5))"
  },
  {
    "input": "input : list = [3, 0, 3, 4, -5]\noutput : list = [-5, 0, 3, 3, 4]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([3, 0, 3, 4, -5])),1)",
    "io_inp": [
      3,
      0,
      3,
      4,
      -5
    ],
    "io_out": [
      -5,
      0,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),1)"
  },
  {
    "input": "input : list = [-5, -5, 3, -1]\noutput : list = [8, 4, 0, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(sort_des([-5, -5, 3, -1]))),-5))",
    "io_inp": [
      -5,
      -5,
      3,
      -1
    ],
    "io_out": [
      8,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [1, 1, 4, -1, -1, -3]\noutput : list = [-3, -1, -1, 1, 1, 4]",
    "output": "generated_output : list = sort_asc([1, 1, 4, -1, -1, -3])",
    "io_inp": [
      1,
      1,
      4,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -1,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4, -5, 0, 1, 5]\noutput : list = [25, 20, 0, -5, -10, -25]",
    "output": "generated_output : list = sort_des(reverse(mul_n([2, -4, -5, 0, 1, 5],-5)))",
    "io_inp": [
      2,
      -4,
      -5,
      0,
      1,
      5
    ],
    "io_out": [
      25,
      20,
      0,
      -5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-7, -5]",
    "output": "generated_output : list = add_n(sort_asc(take(add_n([1, -1],-2),7)),-4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(add_n(input,-2),7)),-4)"
  },
  {
    "input": "input : list = [-4, 1, 2, 3, 1]\noutput : list = [-2, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(add_n([-4, 1, 2, 3, 1],2))),33))",
    "io_inp": [
      -4,
      1,
      2,
      3,
      1
    ],
    "io_out": [
      -2,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(add_n(input,2))),33))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [-7, -5, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n([3, 5, -2],2),-1))),1)",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      -7,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n(input,2),-1))),1)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-2, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc([1, 0, 0]),-1),1))",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(input),-1),1))"
  },
  {
    "input": "input : list = [4, -2, 3]\noutput : list = [-4]",
    "output": "generated_output : list = drop(mul_n(sort_des(mul_n(add_n([4, -2, 3],1),2)),2),2)",
    "io_inp": [
      4,
      -2,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_des(mul_n(add_n(input,1),2)),2),2)"
  },
  {
    "input": "input : list = [-2, 2, 2, -5, 5, 1]\noutput : list = [-10]",
    "output": "generated_output : list = take(mul_n(drop(take(add_n([-2, 2, 2, -5, 5, 1],-3),28),5),5),6)",
    "io_inp": [
      -2,
      2,
      2,
      -5,
      5,
      1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(take(add_n(input,-3),28),5),5),6)"
  },
  {
    "input": "input : list = [-5, -2, 0, 0]\noutput : list = [-5, -2, 0, 0]",
    "output": "generated_output : list = sort_asc([-5, -2, 0, 0])",
    "io_inp": [
      -5,
      -2,
      0,
      0
    ],
    "io_out": [
      -5,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, -2]\noutput : list = [-4, -1, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(reverse([2, -5, -2]),-3))),2)",
    "io_inp": [
      2,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(reverse(input),-3))),2)"
  },
  {
    "input": "input : list = [-2, -3, 1, 5, 0, 5]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take([-2, -3, 1, 5, 0, 5],2)",
    "io_inp": [
      -2,
      -3,
      1,
      5,
      0,
      5
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 0, -4, 2, 4, -3]\noutput : list = [12, 10, 8]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_des([3, 0, -4, 2, 4, -3]),2),3),-4),54)",
    "io_inp": [
      3,
      0,
      -4,
      2,
      4,
      -3
    ],
    "io_out": [
      12,
      10,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_des(input),2),3),-4),54)"
  },
  {
    "input": "input : list = [2, -3, 2, -4, 3]\noutput : list = [-4, -3, 2, 2, 3]",
    "output": "generated_output : list = sort_asc([2, -3, 2, -4, 3])",
    "io_inp": [
      2,
      -3,
      2,
      -4,
      3
    ],
    "io_out": [
      -4,
      -3,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, -3, -1, 2, -1]\noutput : list = [-3, -6, -6, -8]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(drop([-3, 3, -3, -1, 2, -1],2),2),5),2))",
    "io_inp": [
      -3,
      3,
      -3,
      -1,
      2,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(drop(input,2),2),5),2))"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [-12, 15, 9]",
    "output": "generated_output : list = mul_n([4, -5, -3],-3)",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      -12,
      15,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -1, 5, -1, -5, 0]\noutput : list = [-16, 4, 8, 8, 12, 24]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc([-2, -1, 5, -1, -5, 0]),-1))),-4)",
    "io_inp": [
      -2,
      -1,
      5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -16,
      4,
      8,
      8,
      12,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc(input),-1))),-4)"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [24, 8, 4]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(sort_asc([-3, -4, 1]),4),4),-4))",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      24,
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(sort_asc(input),4),4),-4))"
  },
  {
    "input": "input : list = [-3, 5, 1]\noutput : list = [11, 7, 3]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(add_n([-3, 5, 1],3),3),8)))",
    "io_inp": [
      -3,
      5,
      1
    ],
    "io_out": [
      11,
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(add_n(input,3),3),8)))"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [2, 6, 3]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(sub_n([-2, 1, -3],-5)),3),27),3)",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      2,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(sub_n(input,-5)),3),27),3)"
  },
  {
    "input": "input : list = [-4, 0, -3, 5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take([-4, 0, -3, 5],1)),-2))",
    "io_inp": [
      -4,
      0,
      -3,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(input,1)),-2))"
  },
  {
    "input": "input : list = [-2, 4, -4, 3, -1]\noutput : list = [4, -2, -4]",
    "output": "generated_output : list = take(sort_des(reverse(take([-2, 4, -4, 3, -1],3))),3)",
    "io_inp": [
      -2,
      4,
      -4,
      3,
      -1
    ],
    "io_out": [
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(input,3))),3)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [9, 9]",
    "output": "generated_output : list = reverse(add_n(sub_n(drop([1, 0, 0],1),-4),5))",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(drop(input,1),-4),5))"
  },
  {
    "input": "input : list = [2, -1, -1, -4, -4, 1]\noutput : list = [1, -4, -4, -1, -1, 2]",
    "output": "generated_output : list = mul_n(reverse([2, -1, -1, -4, -4, 1]),1)",
    "io_inp": [
      2,
      -1,
      -1,
      -4,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      -4,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, 1, -1, -4, 0]\noutput : list = [1, 6, 4, 1, 5]",
    "output": "generated_output : list = add_n([-4, 1, -1, -4, 0],5)",
    "io_inp": [
      -4,
      1,
      -1,
      -4,
      0
    ],
    "io_out": [
      1,
      6,
      4,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [1, -1, 3, -3, -3]\noutput : list = [-4, 4, -12, 12, 12]",
    "output": "generated_output : list = mul_n([1, -1, 3, -3, -3],-4)",
    "io_inp": [
      1,
      -1,
      3,
      -3,
      -3
    ],
    "io_out": [
      -4,
      4,
      -12,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [4, -1]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc([0, 5]),-1))),1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc(input),-1))),1)"
  },
  {
    "input": "input : list = [4, -5, 5, 3, 5]\noutput : list = [-3, 5, 6, 7, 7]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(add_n([4, -5, 5, 3, 5],-1)),-3)),1)",
    "io_inp": [
      4,
      -5,
      5,
      3,
      5
    ],
    "io_out": [
      -3,
      5,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(add_n(input,-1)),-3)),1)"
  },
  {
    "input": "input : list = [3, 0, -1, 2, -2, 2]\noutput : list = [-2, -1, 0, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, 0, -1, 2, -2, 2]))",
    "io_inp": [
      3,
      0,
      -1,
      2,
      -2,
      2
    ],
    "io_out": [
      -2,
      -1,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(add_n([-3, -4],5)),-3)),-2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(add_n(input,5)),-3)),-2)"
  },
  {
    "input": "input : list = [-1, -5, -2, 5, -4]\noutput : list = [-1, -5]",
    "output": "generated_output : list = take([-1, -5, -2, 5, -4],2)",
    "io_inp": [
      -1,
      -5,
      -2,
      5,
      -4
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [0, 2, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n([0, -2, 0],3))),-5)",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(input,3))),-5)"
  },
  {
    "input": "input : list = [-2, 3, -5, -1]\noutput : list = [-7, -4, -3, 1]",
    "output": "generated_output : list = sort_asc(add_n([-2, 3, -5, -1],-2))",
    "io_inp": [
      -2,
      3,
      -5,
      -1
    ],
    "io_out": [
      -7,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [4, 3, -2, -3]\noutput : list = [-15, -12, 3, 6]",
    "output": "generated_output : list = sub_n(mul_n([4, 3, -2, -3],-3),3)",
    "io_inp": [
      4,
      3,
      -2,
      -3
    ],
    "io_out": [
      -15,
      -12,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),3)"
  },
  {
    "input": "input : list = [1, 0, -4, -2, 4, 4]\noutput : list = [-4, 0, 4, 6, 12, 12]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(reverse([1, 0, -4, -2, 4, 4])),1),1),2)",
    "io_inp": [
      1,
      0,
      -4,
      -2,
      4,
      4
    ],
    "io_out": [
      -4,
      0,
      4,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(reverse(input)),1),1),2)"
  },
  {
    "input": "input : list = [-1, -5, 3, -3]\noutput : list = [-8, 0]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(take([-1, -5, 3, -3],2)),2),-2))",
    "io_inp": [
      -1,
      -5,
      3,
      -3
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(take(input,2)),2),-2))"
  },
  {
    "input": "input : list = [-2, 3, 5, -1]\noutput : list = [-10, 15, 25, -5]",
    "output": "generated_output : list = mul_n([-2, 3, 5, -1],5)",
    "io_inp": [
      -2,
      3,
      5,
      -1
    ],
    "io_out": [
      -10,
      15,
      25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-2, -1, -3, 1]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, -1, -3, 1],1),5)",
    "io_inp": [
      -2,
      -1,
      -3,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),5)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_asc(sub_n(take([2, 5, 1],1),5)),7)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(input,1),5)),7)"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [4]",
    "output": "generated_output : list = take(sub_n(sort_des(take(sort_des([-4, -1, -4]),1)),-5),4)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(sort_des(input),1)),-5),4)"
  },
  {
    "input": "input : list = [1, 1, -2, -2, 1, 4]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(take([1, 1, -2, -2, 1, 4],2),1)),38))",
    "io_inp": [
      1,
      1,
      -2,
      -2,
      1,
      4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(take(input,2),1)),38))"
  },
  {
    "input": "input : list = [1, 4, -4, -2, -1, 0]\noutput : list = [-4, -2, -1, 0]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(drop([1, 4, -4, -2, -1, 0],2)))),49)",
    "io_inp": [
      1,
      4,
      -4,
      -2,
      -1,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(drop(input,2)))),49)"
  },
  {
    "input": "input : list = [2, 2, 3, 1]\noutput : list = [1, 3, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, 3, 1])",
    "io_inp": [
      2,
      2,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -1, 3, 5, -3]\noutput : list = [-1, 3, 5, -3]",
    "output": "generated_output : list = drop([-5, -1, 3, 5, -3],1)",
    "io_inp": [
      -5,
      -1,
      3,
      5,
      -3
    ],
    "io_out": [
      -1,
      3,
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 1, 3, 0, -4]\noutput : list = [-12, -4, 2, -2, 0]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse([2, 1, 3, 0, -4]),-4),-2),2)",
    "io_inp": [
      2,
      1,
      3,
      0,
      -4
    ],
    "io_out": [
      -12,
      -4,
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(input),-4),-2),2)"
  },
  {
    "input": "input : list = [3, 4, 4, -4]\noutput : list = [12, 16, 16, -16]",
    "output": "generated_output : list = mul_n([3, 4, 4, -4],4)",
    "io_inp": [
      3,
      4,
      4,
      -4
    ],
    "io_out": [
      12,
      16,
      16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 4, -2]\noutput : list = [-8, -4, -2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sub_n([2, 4, -2],1))),-5))",
    "io_inp": [
      2,
      4,
      -2
    ],
    "io_out": [
      -8,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sub_n(input,1))),-5))"
  },
  {
    "input": "input : list = [-1, -4, 3, 4]\noutput : list = [-4, -1, 3, 4]",
    "output": "generated_output : list = take(sort_asc([-1, -4, 3, 4]),4)",
    "io_inp": [
      -1,
      -4,
      3,
      4
    ],
    "io_out": [
      -4,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(reverse([-4, 1])),19),-4),-1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(reverse(input)),19),-4),-1)"
  },
  {
    "input": "input : list = [4, -1, -3, -4, -3]\noutput : list = [4, 0, 0, -8]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(drop([4, -1, -3, -4, -3],1)),-3),-4))",
    "io_inp": [
      4,
      -1,
      -3,
      -4,
      -3
    ],
    "io_out": [
      4,
      0,
      0,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(drop(input,1)),-3),-4))"
  },
  {
    "input": "input : list = [3, 0, -2, 5, 2, 1]\noutput : list = [3, 1, 0, -1, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n([3, 0, -2, 5, 2, 1],-4))),-2)",
    "io_inp": [
      3,
      0,
      -2,
      5,
      2,
      1
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(input,-4))),-2)"
  },
  {
    "input": "input : list = [2, 5, 3, -2, 3, -5]\noutput : list = [4, 7, 5, 0, 5, -3]",
    "output": "generated_output : list = add_n([2, 5, 3, -2, 3, -5],2)",
    "io_inp": [
      2,
      5,
      3,
      -2,
      3,
      -5
    ],
    "io_out": [
      4,
      7,
      5,
      0,
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, -5, 3, -2]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = sort_des(drop(sub_n(sort_des(sub_n([-5, -5, 3, -2],-3)),-2),1))",
    "io_inp": [
      -5,
      -5,
      3,
      -2
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(sort_des(sub_n(input,-3)),-2),1))"
  },
  {
    "input": "input : list = [1, -4, 2, 3]\noutput : list = [-4, 2, 3]",
    "output": "generated_output : list = drop([1, -4, 2, 3],1)",
    "io_inp": [
      1,
      -4,
      2,
      3
    ],
    "io_out": [
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -4, 3]\noutput : list = [-5, -6, 1]",
    "output": "generated_output : list = sub_n([-3, -4, 3],2)",
    "io_inp": [
      -3,
      -4,
      3
    ],
    "io_out": [
      -5,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, 3, 2, -4, 0, 2]\noutput : list = [15]",
    "output": "generated_output : list = sort_des(mul_n(take([3, 3, 2, -4, 0, 2],1),5))",
    "io_inp": [
      3,
      3,
      2,
      -4,
      0,
      2
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),5))"
  },
  {
    "input": "input : list = [-1, 2, 4, 1, -4]\noutput : list = [1, -2, -4, -1, 4]",
    "output": "generated_output : list = take(mul_n([-1, 2, 4, 1, -4],-1),12)",
    "io_inp": [
      -1,
      2,
      4,
      1,
      -4
    ],
    "io_out": [
      1,
      -2,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),12)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(add_n([3, 4],-4),-3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),-3)"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(take([0, 5, 3],1),5))))",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(take(input,1),5))))"
  },
  {
    "input": "input : list = [4, -5, 4, 1]\noutput : list = [7, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take([4, -5, 4, 1],2)),3))",
    "io_inp": [
      4,
      -5,
      4,
      1
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(input,2)),3))"
  },
  {
    "input": "input : list = [4, 3, 5, -1, -2]\noutput : list = [1, 2, 8, 6, 7]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n([4, 3, 5, -1, -2],5),-4)),-2)",
    "io_inp": [
      4,
      3,
      5,
      -1,
      -2
    ],
    "io_out": [
      1,
      2,
      8,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(input,5),-4)),-2)"
  },
  {
    "input": "input : list = [0, -1, -3, 4, -1]\noutput : list = [1, 0, -2, 5, 0]",
    "output": "generated_output : list = sub_n([0, -1, -3, 4, -1],-1)",
    "io_inp": [
      0,
      -1,
      -3,
      4,
      -1
    ],
    "io_out": [
      1,
      0,
      -2,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [8, 12, 14]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sub_n([-5, -4, -2],3))),1),-2)",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      8,
      12,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sub_n(input,3))),1),-2)"
  },
  {
    "input": "input : list = [0, 1, -3, 4, 1]\noutput : list = [4, 1, -3]",
    "output": "generated_output : list = sort_des(drop([0, 1, -3, 4, 1],2))",
    "io_inp": [
      0,
      1,
      -3,
      4,
      1
    ],
    "io_out": [
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-8, 2]",
    "output": "generated_output : list = reverse(mul_n([1, -4],2))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [0, 4, 4, 1]\noutput : list = [1, 1, 4, 5]",
    "output": "generated_output : list = mul_n(take(sort_des(take(sub_n([0, 4, 4, 1],5),11)),30),-1)",
    "io_inp": [
      0,
      4,
      4,
      1
    ],
    "io_out": [
      1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(sub_n(input,5),11)),30),-1)"
  },
  {
    "input": "input : list = [3, 0, 3]\noutput : list = [2, 2, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([3, 0, 3]),2),-1)",
    "io_inp": [
      3,
      0,
      3
    ],
    "io_out": [
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),2),-1)"
  },
  {
    "input": "input : list = [0, -1, -2, -1]\noutput : list = [24, 9, 9, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n([0, -1, -2, -1],-5),-2),3))",
    "io_inp": [
      0,
      -1,
      -2,
      -1
    ],
    "io_out": [
      24,
      9,
      9,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(input,-5),-2),3))"
  },
  {
    "input": "input : list = [4, -2, 4, -4, 0, 5]\noutput : list = [6, 5, 5, 1, -1, -3]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sort_asc([4, -2, 4, -4, 0, 5]),-1)),1))",
    "io_inp": [
      4,
      -2,
      4,
      -4,
      0,
      5
    ],
    "io_out": [
      6,
      5,
      5,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sort_asc(input),-1)),1))"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-25]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(sort_asc([-5, -1, 1]),5),1),26))",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(sort_asc(input),5),1),26))"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [-25]",
    "output": "generated_output : list = sort_des(mul_n(take([5, 0, 1],1),-5))",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),-5))"
  },
  {
    "input": "input : list = [1, -4, -3, 2, 3]\noutput : list = [6, 4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(drop([1, -4, -3, 2, 3],3)),5),-2)",
    "io_inp": [
      1,
      -4,
      -3,
      2,
      3
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(drop(input,3)),5),-2)"
  },
  {
    "input": "input : list = [1, 3, 5, 1, 4, -2]\noutput : list = [-10, -8, -6, -2, -2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(mul_n([1, 3, 5, 1, 4, -2],-2)))))",
    "io_inp": [
      1,
      3,
      5,
      1,
      4,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(mul_n(input,-2)))))"
  },
  {
    "input": "input : list = [-1, -4, 0, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sort_des(drop(sort_des([-1, -4, 0, -1]),3)),-3)",
    "io_inp": [
      -1,
      -4,
      0,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(sort_des(input),3)),-3)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [20, 24]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(add_n([-1, 0],-1)),12),-4),-4)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      20,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(add_n(input,-1)),12),-4),-4)"
  },
  {
    "input": "input : list = [-1, -1, -3, 1]\noutput : list = [-3, -7, -5, -5]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(reverse([-1, -1, -3, 1])),3),-1))",
    "io_inp": [
      -1,
      -1,
      -3,
      1
    ],
    "io_out": [
      -3,
      -7,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(reverse(input)),3),-1))"
  },
  {
    "input": "input : list = [5, 1, 2, 4]\noutput : list = [-34, -29, -19, -14]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(reverse([5, 1, 2, 4]),-1),-5),4))",
    "io_inp": [
      5,
      1,
      2,
      4
    ],
    "io_out": [
      -34,
      -29,
      -19,
      -14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(reverse(input),-1),-5),4))"
  },
  {
    "input": "input : list = [4, 3, -3, 0, 5, -1]\noutput : list = [5, 4, 3, 0, -1, -3]",
    "output": "generated_output : list = sort_des([4, 3, -3, 0, 5, -1])",
    "io_inp": [
      4,
      3,
      -3,
      0,
      5,
      -1
    ],
    "io_out": [
      5,
      4,
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, 3, 5, 4, -5]\noutput : list = [-6, -4, -10, -12, -11, -2]",
    "output": "generated_output : list = mul_n(sub_n(add_n([-1, -3, 3, 5, 4, -5],3),-4),-1)",
    "io_inp": [
      -1,
      -3,
      3,
      5,
      4,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -10,
      -12,
      -11,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,3),-4),-1)"
  },
  {
    "input": "input : list = [-5, -2, 5, -2, 1]\noutput : list = [-8, -16, -22, -22, -28]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des([-5, -2, 5, -2, 1]),-4),-5),2)",
    "io_inp": [
      -5,
      -2,
      5,
      -2,
      1
    ],
    "io_out": [
      -8,
      -16,
      -22,
      -22,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(input),-4),-5),2)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-2, -6]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_des([-1, 3]),5)),4),16)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_des(input),5)),4),16)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [6, 5]",
    "output": "generated_output : list = sort_des(sub_n([0, 1],-5))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(reverse([-1, 0]))),4))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [-14, -10, 6]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(add_n([0, 1, 5],-5),2),3)),2)",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      -14,
      -10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(add_n(input,-5),2),3)),2)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [0, -8]",
    "output": "generated_output : list = take(sub_n([5, -3],5),7)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),7)"
  },
  {
    "input": "input : list = [-3, 3, 1]\noutput : list = [-11, -1, 19]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(sort_asc([-3, 3, 1]),-1),-5),-1))",
    "io_inp": [
      -3,
      3,
      1
    ],
    "io_out": [
      -11,
      -1,
      19
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(sort_asc(input),-1),-5),-1))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-4, -8]",
    "output": "generated_output : list = reverse(take(mul_n(reverse(sub_n([0, 2],-2)),-2),28))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(sub_n(input,-2)),-2),28))"
  },
  {
    "input": "input : list = [5, -3, -4, 4]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(take([5, -3, -4, 4],1),-1))))",
    "io_inp": [
      5,
      -3,
      -4,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(take(input,1),-1))))"
  },
  {
    "input": "input : list = [5, -1, -4, 5]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(take([5, -1, -4, 5],1),-1))),-1)",
    "io_inp": [
      5,
      -1,
      -4,
      5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(take(input,1),-1))),-1)"
  },
  {
    "input": "input : list = [1, -3, 0, 2]\noutput : list = [36, 48, 60, 96]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc([1, -3, 0, 2])),-5),-3),4)",
    "io_inp": [
      1,
      -3,
      0,
      2
    ],
    "io_out": [
      36,
      48,
      60,
      96
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc(input)),-5),-3),4)"
  },
  {
    "input": "input : list = [-5, 0, 3, -2, -5, 5]\noutput : list = [10, 8, 5, 3, 0, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(add_n([-5, 0, 3, -2, -5, 5],5)))))",
    "io_inp": [
      -5,
      0,
      3,
      -2,
      -5,
      5
    ],
    "io_out": [
      10,
      8,
      5,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(add_n(input,5)))))"
  },
  {
    "input": "input : list = [5, -4, -1, 2]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sort_asc(take([5, -4, -1, 2],1)),-2)",
    "io_inp": [
      5,
      -4,
      -1,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),-2)"
  },
  {
    "input": "input : list = [4, 2, -4, 2]\noutput : list = [35, 25, 25, -5]",
    "output": "generated_output : list = take(mul_n(take(sort_des(add_n([4, 2, -4, 2],3)),23),5),7)",
    "io_inp": [
      4,
      2,
      -4,
      2
    ],
    "io_out": [
      35,
      25,
      25,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(add_n(input,3)),23),5),7)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_des([5, -3])))),-2)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [4, 4, -4, 2, 3]\noutput : list = [16, -8, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(drop(mul_n([4, 4, -4, 2, 3],-2),2)),2))",
    "io_inp": [
      4,
      4,
      -4,
      2,
      3
    ],
    "io_out": [
      16,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(drop(mul_n(input,-2),2)),2))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = mul_n([-3, 3],-1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 0, 3, 3, -4]\noutput : list = [9, 9, 6, 3, 2]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des([-3, 0, 3, 3, -4]),2)),3),1)",
    "io_inp": [
      -3,
      0,
      3,
      3,
      -4
    ],
    "io_out": [
      9,
      9,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des(input),2)),3),1)"
  },
  {
    "input": "input : list = [5, -2, 4, -1, 1, -1]\noutput : list = [3, 2, -1, -3, -3, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(sort_des([5, -2, 4, -1, 1, -1]),1),1)),23)",
    "io_inp": [
      5,
      -2,
      4,
      -1,
      1,
      -1
    ],
    "io_out": [
      3,
      2,
      -1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(sort_des(input),1),1)),23)"
  },
  {
    "input": "input : list = [5, 4, -1, -4, 5, -4]\noutput : list = [20, -25]",
    "output": "generated_output : list = sort_des(drop(take(mul_n([5, 4, -1, -4, 5, -4],-5),14),4))",
    "io_inp": [
      5,
      4,
      -1,
      -4,
      5,
      -4
    ],
    "io_out": [
      20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(drop(take(mul_n(input,-5),14),4))"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [-3, -3, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(add_n([-1, -4, -1],4))),-1))",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(add_n(input,4))),-1))"
  },
  {
    "input": "input : list = [5, -5, -5, -3]\noutput : list = [-17, -17, -9, 23]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(sort_des([5, -5, -5, -3]),4)),12),-3)",
    "io_inp": [
      5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -17,
      -17,
      -9,
      23
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(sort_des(input),4)),12),-3)"
  },
  {
    "input": "input : list = [0, -2, 5, -1]\noutput : list = [-12, -11, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(drop([0, -2, 5, -1],1),5),-5)))",
    "io_inp": [
      0,
      -2,
      5,
      -1
    ],
    "io_out": [
      -12,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(drop(input,1),5),-5)))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [2, 5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(reverse([0, -3])))),-5)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [-3, 5, 3, 3, 4]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take([-3, 5, 3, 3, 4],2)",
    "io_inp": [
      -3,
      5,
      3,
      3,
      4
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, 1],1)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -4, -5, -3, -1, -1]\noutput : list = [1, -4, -4, -6, -7, -8]",
    "output": "generated_output : list = sort_des(add_n(add_n([4, -4, -5, -3, -1, -1],1),-4))",
    "io_inp": [
      4,
      -4,
      -5,
      -3,
      -1,
      -1
    ],
    "io_out": [
      1,
      -4,
      -4,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,1),-4))"
  },
  {
    "input": "input : list = [-2, 2, 0, -4, 4]\noutput : list = [-7, -5, -3, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(sub_n([-2, 2, 0, -4, 4],3)))))",
    "io_inp": [
      -2,
      2,
      0,
      -4,
      4
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [4, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-2, 4, -5])))",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, 0, -5, 3, 0]\noutput : list = [-7, -3, -8, 0, -3]",
    "output": "generated_output : list = add_n([-4, 0, -5, 3, 0],-3)",
    "io_inp": [
      -4,
      0,
      -5,
      3,
      0
    ],
    "io_out": [
      -7,
      -3,
      -8,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 1, 1, 4, -2]\noutput : list = [-2, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([-4, 1, 1, 4, -2],2)))",
    "io_inp": [
      -4,
      1,
      1,
      4,
      -2
    ],
    "io_out": [
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_des(sort_des(drop(sort_asc([5, 1]),1))),6)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(drop(sort_asc(input),1))),6)"
  },
  {
    "input": "input : list = [-4, 4, 0, 0, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 4, 0, 0, 1],1)",
    "io_inp": [
      -4,
      4,
      0,
      0,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sub_n(reverse([-3, -5]),-3)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-5, 1, 0, 3, -1]\noutput : list = [-5, 1, 0]",
    "output": "generated_output : list = take([-5, 1, 0, 3, -1],3)",
    "io_inp": [
      -5,
      1,
      0,
      3,
      -1
    ],
    "io_out": [
      -5,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, -3, -4, 0, 3]\noutput : list = [-8, -6, 0, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(mul_n([2, -3, -4, 0, 3],-2),-1),13)))",
    "io_inp": [
      2,
      -3,
      -4,
      0,
      3
    ],
    "io_out": [
      -8,
      -6,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(mul_n(input,-2),-1),13)))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-12, -8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(add_n([-1, 1],5))),-2))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(add_n(input,5))),-2))"
  },
  {
    "input": "input : list = [2, -4, 4, 5, -3, 4]\noutput : list = [-2, -1, 4, 6, 6, 7]",
    "output": "generated_output : list = take(add_n(reverse(sort_des([2, -4, 4, 5, -3, 4])),2),18)",
    "io_inp": [
      2,
      -4,
      4,
      5,
      -3,
      4
    ],
    "io_out": [
      -2,
      -1,
      4,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(input)),2),18)"
  },
  {
    "input": "input : list = [0, 5, 4, 5, 5]\noutput : list = [9, 9, 9, 8, 4]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(sort_des([0, 5, 4, 5, 5]),7)),4))",
    "io_inp": [
      0,
      5,
      4,
      5,
      5
    ],
    "io_out": [
      9,
      9,
      9,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(sort_des(input),7)),4))"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [-17]",
    "output": "generated_output : list = sub_n(mul_n(take(take([-3, 3, 0],1),10),5),2)",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(take(input,1),10),5),2)"
  },
  {
    "input": "input : list = [-5, 0, 3, 3]\noutput : list = [3, 3, 0, -5]",
    "output": "generated_output : list = reverse(take(reverse(take(reverse([-5, 0, 3, 3]),12)),32))",
    "io_inp": [
      -5,
      0,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(reverse(input),12)),32))"
  },
  {
    "input": "input : list = [2, 3, 2, 0]\noutput : list = [3, 5, 6, 5]",
    "output": "generated_output : list = reverse(add_n([2, 3, 2, 0],3))",
    "io_inp": [
      2,
      3,
      2,
      0
    ],
    "io_out": [
      3,
      5,
      6,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [4, 5, 2, 1]\noutput : list = [15]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(sub_n([4, 5, 2, 1],-3),1)),2),1)",
    "io_inp": [
      4,
      5,
      2,
      1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(sub_n(input,-3),1)),2),1)"
  },
  {
    "input": "input : list = [1, 4, 1, 2]\noutput : list = [3, 6, 3, 4]",
    "output": "generated_output : list = sub_n([1, 4, 1, 2],-2)",
    "io_inp": [
      1,
      4,
      1,
      2
    ],
    "io_out": [
      3,
      6,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, -2, -2, -3]\noutput : list = [9, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(drop([0, -2, -2, -3],2),1))),-3)",
    "io_inp": [
      0,
      -2,
      -2,
      -3
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(drop(input,2),1))),-3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(reverse([-4, 2]))),10))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(reverse(input))),10))"
  },
  {
    "input": "input : list = [2, -4, 1, 0, -5]\noutput : list = [2, -4, 1, 0, -5]",
    "output": "generated_output : list = mul_n([2, -4, 1, 0, -5],1)",
    "io_inp": [
      2,
      -4,
      1,
      0,
      -5
    ],
    "io_out": [
      2,
      -4,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-2, -2, 5, -1, 5]\noutput : list = [24, 24, 6, 3, 3]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sub_n([-2, -2, 5, -1, 5],-3)),3)))",
    "io_inp": [
      -2,
      -2,
      5,
      -1,
      5
    ],
    "io_out": [
      24,
      24,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sub_n(input,-3)),3)))"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(take([-5, 2, -2],1),-3),2),30))",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(take(input,1),-3),2),30))"
  },
  {
    "input": "input : list = [-5, 0, -5, 1, 3]\noutput : list = [-3, -3, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n([-5, 0, -5, 1, 3],-1),3)))",
    "io_inp": [
      -5,
      0,
      -5,
      1,
      3
    ],
    "io_out": [
      -3,
      -3,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(input,-1),3)))"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [5, 3, 2]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(mul_n([4, 1, 2],1)),1)),20)",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(mul_n(input,1)),1)),20)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(reverse([1, -3]),2),3)))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(reverse(input),2),3)))"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [7, 5]",
    "output": "generated_output : list = add_n(drop([1, 3, 1],1),4)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [2, 4, -2, 3, 2, 2]\noutput : list = [11, 10, 9, 9, 9, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_des([2, 4, -2, 3, 2, 2]),5),-2)",
    "io_inp": [
      2,
      4,
      -2,
      3,
      2,
      2
    ],
    "io_out": [
      11,
      10,
      9,
      9,
      9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),5),-2)"
  },
  {
    "input": "input : list = [5, 1, -3, -3]\noutput : list = [4, 0, 0]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(drop([5, 1, -3, -3],1),-3))),14)",
    "io_inp": [
      5,
      1,
      -3,
      -3
    ],
    "io_out": [
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(drop(input,1),-3))),14)"
  },
  {
    "input": "input : list = [5, 4, 0, 3]\noutput : list = [-3, 0, 1, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des([5, 4, 0, 3]),-3))",
    "io_inp": [
      5,
      4,
      0,
      3
    ],
    "io_out": [
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [4, -4, 0, 1, 1, 1]\noutput : list = [4, -4]",
    "output": "generated_output : list = take([4, -4, 0, 1, 1, 1],2)",
    "io_inp": [
      4,
      -4,
      0,
      1,
      1,
      1
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n([-2, -2],-5))))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(input,-5))))"
  },
  {
    "input": "input : list = [-3, -5, -4, -2, -3, 2]\noutput : list = [-5, -7, -6, -4, -5, 0]",
    "output": "generated_output : list = sub_n([-3, -5, -4, -2, -3, 2],2)",
    "io_inp": [
      -3,
      -5,
      -4,
      -2,
      -3,
      2
    ],
    "io_out": [
      -5,
      -7,
      -6,
      -4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take([-1, 4, 2],1))",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-2, 4, 1]\noutput : list = [8, 20, 32]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(reverse([-2, 4, 1]),4)),4),19)",
    "io_inp": [
      -2,
      4,
      1
    ],
    "io_out": [
      8,
      20,
      32
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(reverse(input),4)),4),19)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-19, -19]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_des([-4, -4]),-5)),-1),-1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -19,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_des(input),-5)),-1),-1)"
  },
  {
    "input": "input : list = [1, 0, -4, 5, -2, -5]\noutput : list = [-10, -7, 0, -9, -5, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n([1, 0, -4, 5, -2, -5],1),4),-3),-5))",
    "io_inp": [
      1,
      0,
      -4,
      5,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7,
      0,
      -9,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n(input,1),4),-3),-5))"
  },
  {
    "input": "input : list = [4, 3, -1, -3, 5, -5]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = add_n(reverse(sub_n(take([4, 3, -1, -3, 5, -5],3),3)),-1)",
    "io_inp": [
      4,
      3,
      -1,
      -3,
      5,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(input,3),3)),-1)"
  },
  {
    "input": "input : list = [-3, 1, -5, 5, 5, -1]\noutput : list = [5, 5, -1]",
    "output": "generated_output : list = drop([-3, 1, -5, 5, 5, -1],3)",
    "io_inp": [
      -3,
      1,
      -5,
      5,
      5,
      -1
    ],
    "io_out": [
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-7, -4]",
    "output": "generated_output : list = mul_n(sort_des(add_n([5, 2],2)),-1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,2)),-1)"
  },
  {
    "input": "input : list = [-1, -5, 5, 2, 5]\noutput : list = [10, 7, 10, 0, 4]",
    "output": "generated_output : list = sub_n(reverse(add_n([-1, -5, 5, 2, 5],2)),-3)",
    "io_inp": [
      -1,
      -5,
      5,
      2,
      5
    ],
    "io_out": [
      10,
      7,
      10,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,2)),-3)"
  },
  {
    "input": "input : list = [-4, -1, 0, 1, -5]\noutput : list = [-2, 10]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(drop([-4, -1, 0, 1, -5],3),3),-4),-2),2)",
    "io_inp": [
      -4,
      -1,
      0,
      1,
      -5
    ],
    "io_out": [
      -2,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(drop(input,3),3),-4),-2),2)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 4, 5],1)",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(sub_n([3, 5],-5),-1),20),5))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(sub_n(input,-5),-1),20),5))"
  },
  {
    "input": "input : list = [-3, -4, -3, -2]\noutput : list = [-1, -2, -1, 0]",
    "output": "generated_output : list = sub_n([-3, -4, -3, -2],-2)",
    "io_inp": [
      -3,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 2, 4, 0]\noutput : list = [-3, 1, -1, -8]",
    "output": "generated_output : list = add_n(reverse([-5, 2, 4, 0]),-3)",
    "io_inp": [
      -5,
      2,
      4,
      0
    ],
    "io_out": [
      -3,
      1,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-2, 5, 1, -3, 0]\noutput : list = [5, 1, 0, -2, -3]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(add_n([-2, 5, 1, -3, 0],-3),3))),45)",
    "io_inp": [
      -2,
      5,
      1,
      -3,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(add_n(input,-3),3))),45)"
  },
  {
    "input": "input : list = [5, -4, -2, 3, 1, 3]\noutput : list = [9, 7, 7, 5, 2, 0]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n(add_n([5, -4, -2, 3, 1, 3],1),-3))))",
    "io_inp": [
      5,
      -4,
      -2,
      3,
      1,
      3
    ],
    "io_out": [
      9,
      7,
      7,
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(add_n(input,1),-3))))"
  },
  {
    "input": "input : list = [-3, -3, -1, -4, -2]\noutput : list = [20, 15, 15, 10, 5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(mul_n([-3, -3, -1, -4, -2],-5)),12)))",
    "io_inp": [
      -3,
      -3,
      -1,
      -4,
      -2
    ],
    "io_out": [
      20,
      15,
      15,
      10,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(mul_n(input,-5)),12)))"
  },
  {
    "input": "input : list = [5, -5, 0, -2]\noutput : list = [-5, -2, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc([5, -5, 0, -2]))))",
    "io_inp": [
      5,
      -5,
      0,
      -2
    ],
    "io_out": [
      -5,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [-24, 6]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(drop([0, 5, -5],1))),-3),-3)",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      -24,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(drop(input,1))),-3),-3)"
  },
  {
    "input": "input : list = [4, -2, -2, 1]\noutput : list = [4, 1, -2, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc([4, -2, -2, 1]),5),5))",
    "io_inp": [
      4,
      -2,
      -2,
      1
    ],
    "io_out": [
      4,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(input),5),5))"
  },
  {
    "input": "input : list = [-3, 5, 4, -2]\noutput : list = [-36, -32, -8, -4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(sort_asc([-3, 5, 4, -2]),-3)),-1),-4)",
    "io_inp": [
      -3,
      5,
      4,
      -2
    ],
    "io_out": [
      -36,
      -32,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(sort_asc(input),-3)),-1),-4)"
  },
  {
    "input": "input : list = [-1, -1, -1, 2, 0, 5]\noutput : list = [-21, -6, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(drop([-1, -1, -1, 2, 0, 5],3),-5)),-5),1)",
    "io_inp": [
      -1,
      -1,
      -1,
      2,
      0,
      5
    ],
    "io_out": [
      -21,
      -6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(drop(input,3),-5)),-5),1)"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [4, -1, -1]",
    "output": "generated_output : list = sort_des([4, -1, -1])",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -5, -2]\noutput : list = [-3, -7, -10]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc([2, -5, -2])),1),-4))",
    "io_inp": [
      2,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [-2, 2, 3, -2, -1, -2]\noutput : list = [-2, 2, 3, -2, -1, -2]",
    "output": "generated_output : list = reverse(reverse([-2, 2, 3, -2, -1, -2]))",
    "io_inp": [
      -2,
      2,
      3,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      2,
      3,
      -2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [-10, -6, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([-4, 5, 3]),-2))",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      -10,
      -6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [-1, -2, 3, -1]\noutput : list = [-4, -3, -3, 1]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(sort_des([-1, -2, 3, -1]),2))),42)",
    "io_inp": [
      -1,
      -2,
      3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(sort_des(input),2))),42)"
  },
  {
    "input": "input : list = [2, -2, 5, 2, 0]\noutput : list = [15, 9, 3, 3, -6]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_asc([2, -2, 5, 2, 0]),3)),3),-1)",
    "io_inp": [
      2,
      -2,
      5,
      2,
      0
    ],
    "io_out": [
      15,
      9,
      3,
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_asc(input),3)),3),-1)"
  },
  {
    "input": "input : list = [2, 4, -5, -4, 2, 2]\noutput : list = [21, 18, 0, 0, 0, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n([2, 4, -5, -4, 2, 2],-2),-3))",
    "io_inp": [
      2,
      4,
      -5,
      -4,
      2,
      2
    ],
    "io_out": [
      21,
      18,
      0,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,-2),-3))"
  },
  {
    "input": "input : list = [-3, 5, 0, 2, -3]\noutput : list = [11, 8, 6, 3, 3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sub_n([-3, 5, 0, 2, -3],-5))),-1))",
    "io_inp": [
      -3,
      5,
      0,
      2,
      -3
    ],
    "io_out": [
      11,
      8,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sub_n(input,-5))),-1))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [14, -18]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(mul_n([-4, 4],-4),-5),4),-3),1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      14,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(mul_n(input,-4),-5),4),-3),1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [3, -4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(reverse([-2, 5]),13),2),-5),-5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(reverse(input),13),2),-5),-5)"
  },
  {
    "input": "input : list = [-5, 0, -4, 4, 1]\noutput : list = [-12, -11, -7, -6, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(add_n([-5, 0, -4, 4, 1],-5)))),2)",
    "io_inp": [
      -5,
      0,
      -4,
      4,
      1
    ],
    "io_out": [
      -12,
      -11,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(add_n(input,-5)))),2)"
  },
  {
    "input": "input : list = [-2, 1, 4]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(reverse(take([-2, 1, 4],1)))",
    "io_inp": [
      -2,
      1,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [4, -3, 0, 1, -3]\noutput : list = [-3, 1, 0, -3, 4]",
    "output": "generated_output : list = reverse([4, -3, 0, 1, -3])",
    "io_inp": [
      4,
      -3,
      0,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      0,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -3, 4, 5, 4, 3]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(take([0, -3, 4, 5, 4, 3],3)),5)))",
    "io_inp": [
      0,
      -3,
      4,
      5,
      4,
      3
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(take(input,3)),5)))"
  },
  {
    "input": "input : list = [3, 3, 0, -4, 5]\noutput : list = [5, 3, 3, 0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(sort_des([3, 3, 0, -4, 5])),8)))",
    "io_inp": [
      3,
      3,
      0,
      -4,
      5
    ],
    "io_out": [
      5,
      3,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(sort_des(input)),8)))"
  },
  {
    "input": "input : list = [4, 5, 5, -5]\noutput : list = [-1, -1, 9, 99]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sub_n([4, 5, 5, -5],5),-5)),2),1)",
    "io_inp": [
      4,
      5,
      5,
      -5
    ],
    "io_out": [
      -1,
      -1,
      9,
      99
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sub_n(input,5),-5)),2),1)"
  },
  {
    "input": "input : list = [5, 3, 2, 4, 5]\noutput : list = [1, -1, -2, 0, 1]",
    "output": "generated_output : list = take(take(sub_n([5, 3, 2, 4, 5],4),9),21)",
    "io_inp": [
      5,
      3,
      2,
      4,
      5
    ],
    "io_out": [
      1,
      -1,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,4),9),21)"
  },
  {
    "input": "input : list = [5, 1, -3, -1]\noutput : list = [-14, -8, -2, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(mul_n([5, 1, -3, -1],-3),-1),5)))",
    "io_inp": [
      5,
      1,
      -3,
      -1
    ],
    "io_out": [
      -14,
      -8,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(mul_n(input,-3),-1),5)))"
  },
  {
    "input": "input : list = [3, 1, -5, 4, 3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(mul_n(drop(sub_n(drop([3, 1, -5, 4, 3],2),4),2),-1))",
    "io_inp": [
      3,
      1,
      -5,
      4,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(sub_n(drop(input,2),4),2),-1))"
  },
  {
    "input": "input : list = [2, 5, 3]\noutput : list = [7, 5, 4]",
    "output": "generated_output : list = sub_n(sort_des([2, 5, 3]),-2)",
    "io_inp": [
      2,
      5,
      3
    ],
    "io_out": [
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [0, -1, -1, 1, -5, 2]\noutput : list = [5, 4, 4, 6, 0, 7]",
    "output": "generated_output : list = add_n([0, -1, -1, 1, -5, 2],5)",
    "io_inp": [
      0,
      -1,
      -1,
      1,
      -5,
      2
    ],
    "io_out": [
      5,
      4,
      4,
      6,
      0,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [12, 0, -9]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(mul_n([-2, 5, 2],-3)),5),5),1)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      12,
      0,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(mul_n(input,-3)),5),5),1)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [-15, 5, 10]",
    "output": "generated_output : list = mul_n([-3, 1, 2],5)",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      -15,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [-7, -5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(drop([-5, -1, -3],1),1)),-4)",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(drop(input,1),1)),-4)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n([5, 5],-2))),-4)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(input,-2))),-4)"
  },
  {
    "input": "input : list = [4, 1, -2, -3, 4, -4]\noutput : list = [4, 4, 1, -2, -3, -4]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(reverse([4, 1, -2, -3, 4, -4])))),7)",
    "io_inp": [
      4,
      1,
      -2,
      -3,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(reverse(input)))),7)"
  },
  {
    "input": "input : list = [-1, -3, 4]\noutput : list = [9, 4, 2]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(sub_n([-1, -3, 4],-2),3),12)))",
    "io_inp": [
      -1,
      -3,
      4
    ],
    "io_out": [
      9,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(sub_n(input,-2),3),12)))"
  },
  {
    "input": "input : list = [3, -1, 3]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(reverse([3, -1, 3])))),-1)",
    "io_inp": [
      3,
      -1,
      3
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [-5, 0, -5]",
    "output": "generated_output : list = mul_n([-5, 0, -5],1)",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, -3, 5, 5, -1, 4]\noutput : list = [1, 1, 0, 0, -5, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(add_n([4, -3, 5, 5, -1, 4],-5),2),3)))",
    "io_inp": [
      4,
      -3,
      5,
      5,
      -1,
      4
    ],
    "io_out": [
      1,
      1,
      0,
      0,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(add_n(input,-5),2),3)))"
  },
  {
    "input": "input : list = [4, 1, 2, -1]\noutput : list = [-15, -5, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_asc([4, 1, 2, -1]),-2)),5))",
    "io_inp": [
      4,
      1,
      2,
      -1
    ],
    "io_out": [
      -15,
      -5,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_asc(input),-2)),5))"
  },
  {
    "input": "input : list = [4, -1, -2, -1]\noutput : list = [1, 0, 1, 6]",
    "output": "generated_output : list = add_n(reverse([4, -1, -2, -1]),2)",
    "io_inp": [
      4,
      -1,
      -2,
      -1
    ],
    "io_out": [
      1,
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [5, 2, -4, -3, -3]\noutput : list = [1, 2, 2]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(drop([5, 2, -4, -3, -3],2),15)),2),3)",
    "io_inp": [
      5,
      2,
      -4,
      -3,
      -3
    ],
    "io_out": [
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(drop(input,2),15)),2),3)"
  },
  {
    "input": "input : list = [-2, 1, 4, -2, -3]\noutput : list = [-28, -22, 14, -4, -22]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(mul_n([-2, 1, 4, -2, -3],3),5)),18),2)",
    "io_inp": [
      -2,
      1,
      4,
      -2,
      -3
    ],
    "io_out": [
      -28,
      -22,
      14,
      -4,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(mul_n(input,3),5)),18),2)"
  },
  {
    "input": "input : list = [3, -1, 5, 5, 0]\noutput : list = [-5, -10, -25, -35, -35]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n([3, -1, 5, 5, 0],2)),-5),35)",
    "io_inp": [
      3,
      -1,
      5,
      5,
      0
    ],
    "io_out": [
      -5,
      -10,
      -25,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(input,2)),-5),35)"
  },
  {
    "input": "input : list = [-1, -2, -4, 5, 0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = drop([-1, -2, -4, 5, 0, -3],4)",
    "io_inp": [
      -1,
      -2,
      -4,
      5,
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, 3, -4]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 3, -4],1)",
    "io_inp": [
      4,
      3,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 4, 0, 2, 2]\noutput : list = [32, 32, 24, 40, 8]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(add_n([-4, 4, 0, 2, 2],5),-4),-3),4))",
    "io_inp": [
      -4,
      4,
      0,
      2,
      2
    ],
    "io_out": [
      32,
      32,
      24,
      40,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(add_n(input,5),-4),-3),4))"
  },
  {
    "input": "input : list = [-2, 4, 2, -3, -1, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = drop([-2, 4, 2, -3, -1, 2],4)",
    "io_inp": [
      -2,
      4,
      2,
      -3,
      -1,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(reverse(take([-3, 4, 0],1)),-2)",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,1)),-2)"
  },
  {
    "input": "input : list = [0, 3, -1, 5, 5, -5]\noutput : list = [19, 3, -1, -13, -21, -21]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(mul_n([0, 3, -1, 5, 5, -5],-4),3))),4)",
    "io_inp": [
      0,
      3,
      -1,
      5,
      5,
      -5
    ],
    "io_out": [
      19,
      3,
      -1,
      -13,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(mul_n(input,-4),3))),4)"
  },
  {
    "input": "input : list = [2, 2, -3, -1, 2, 1]\noutput : list = [8, 8, 8, 3, -7, -17]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n([2, 2, -3, -1, 2, 1],5),1)),1)",
    "io_inp": [
      2,
      2,
      -3,
      -1,
      2,
      1
    ],
    "io_out": [
      8,
      8,
      8,
      3,
      -7,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(input,5),1)),1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc([3, 0])",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -2]\noutput : list = [3, 4, 8]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(sort_des([2, 3, -2]),-1),-4)),2)",
    "io_inp": [
      2,
      3,
      -2
    ],
    "io_out": [
      3,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(sort_des(input),-1),-4)),2)"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [4, 9, 11]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(sub_n([4, 2, -3],-4)))),3)",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      4,
      9,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(sub_n(input,-4)))),3)"
  },
  {
    "input": "input : list = [-3, 5, 0, 1, 2, -2]\noutput : list = [-50]",
    "output": "generated_output : list = take(mul_n(mul_n(drop(add_n([-3, 5, 0, 1, 2, -2],-3),5),-5),-2),50)",
    "io_inp": [
      -3,
      5,
      0,
      1,
      2,
      -2
    ],
    "io_out": [
      -50
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(drop(add_n(input,-3),5),-5),-2),50)"
  },
  {
    "input": "input : list = [-1, 4, 2, 5]\noutput : list = [10, 9, 7, 4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(reverse([-1, 4, 2, 5]),6))),-5)",
    "io_inp": [
      -1,
      4,
      2,
      5
    ],
    "io_out": [
      10,
      9,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(reverse(input),6))),-5)"
  },
  {
    "input": "input : list = [-5, -3, -2, -1, 3]\noutput : list = [-4, -2, -1, 0, 4]",
    "output": "generated_output : list = sub_n([-5, -3, -2, -1, 3],-1)",
    "io_inp": [
      -5,
      -3,
      -2,
      -1,
      3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, 1, 3, -1, -4, -3]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = sort_asc(take(take(reverse(add_n([3, 1, 3, -1, -4, -3],1)),21),3))",
    "io_inp": [
      3,
      1,
      3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(add_n(input,1)),21),3))"
  },
  {
    "input": "input : list = [-3, 2, -5, 0]\noutput : list = [85, 135, 210, 260]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(add_n([-3, 2, -5, 0],-5),-5),2),5))",
    "io_inp": [
      -3,
      2,
      -5,
      0
    ],
    "io_out": [
      85,
      135,
      210,
      260
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(add_n(input,-5),-5),2),5))"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [-40, -20, -8]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(sub_n([0, -3, 5],-5),-4)),28))",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      -40,
      -20,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(sub_n(input,-5),-4)),28))"
  },
  {
    "input": "input : list = [4, -2, 5, -4, -1]\noutput : list = [-7, -5, -4, 1, 2]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([4, -2, 5, -4, -1]),-3),1)",
    "io_inp": [
      4,
      -2,
      5,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),-3),1)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-6, -13]",
    "output": "generated_output : list = sub_n(add_n([3, -4],-4),5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -6,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),5)"
  },
  {
    "input": "input : list = [4, 2, -5, -4]\noutput : list = [2, 0, -6, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(sub_n([4, 2, -5, -4],-3),5),-5)))",
    "io_inp": [
      4,
      2,
      -5,
      -4
    ],
    "io_out": [
      2,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(sub_n(input,-3),5),-5)))"
  },
  {
    "input": "input : list = [0, 2, 2, -4]\noutput : list = [6, 6, 0, -12]",
    "output": "generated_output : list = mul_n(sort_des([0, 2, 2, -4]),3)",
    "io_inp": [
      0,
      2,
      2,
      -4
    ],
    "io_out": [
      6,
      6,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [5, 1, -3, -5, 4]\noutput : list = [-28, -12, 4, 12, -24]",
    "output": "generated_output : list = mul_n(take(mul_n(take(add_n([5, 1, -3, -5, 4],2),12),1),5),-4)",
    "io_inp": [
      5,
      1,
      -3,
      -5,
      4
    ],
    "io_out": [
      -28,
      -12,
      4,
      12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(add_n(input,2),12),1),5),-4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-14, -6]",
    "output": "generated_output : list = mul_n(reverse(sub_n(take(sort_des([0, -4]),13),3)),2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -14,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(take(sort_des(input),13),3)),2)"
  },
  {
    "input": "input : list = [-1, 4, 0, -4, 2]\noutput : list = [7, 1]",
    "output": "generated_output : list = add_n(sort_des(take(drop([-1, 4, 0, -4, 2],3),19)),5)",
    "io_inp": [
      -1,
      4,
      0,
      -4,
      2
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(drop(input,3),19)),5)"
  },
  {
    "input": "input : list = [5, 2, 2, 5]\noutput : list = [-3, -3, 0, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(reverse([5, 2, 2, 5]))),5))",
    "io_inp": [
      5,
      2,
      2,
      5
    ],
    "io_out": [
      -3,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(reverse(input))),5))"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [-4, -8, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(add_n([-1, 3, -1],-2),-5))))",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(add_n(input,-2),-5))))"
  },
  {
    "input": "input : list = [0, -5, -1, -4]\noutput : list = [3, -1, -13, -17]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_asc([0, -5, -1, -4]),2),2)),-3)",
    "io_inp": [
      0,
      -5,
      -1,
      -4
    ],
    "io_out": [
      3,
      -1,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_asc(input),2),2)),-3)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [0, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(sub_n([4, -5],2)),-2)))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(sub_n(input,2)),-2)))"
  },
  {
    "input": "input : list = [-3, -4, 2, 2, 3, 1]\noutput : list = [-3, -2, 2, 3, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse([-3, -4, 2, 2, 3, 1]),-1)))",
    "io_inp": [
      -3,
      -4,
      2,
      2,
      3,
      1
    ],
    "io_out": [
      -3,
      -2,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(input),-1)))"
  },
  {
    "input": "input : list = [-2, -2, 3, 1]\noutput : list = [9, 9, 18, 24]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(add_n([-2, -2, 3, 1],5)),3)))",
    "io_inp": [
      -2,
      -2,
      3,
      1
    ],
    "io_out": [
      9,
      9,
      18,
      24
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(add_n(input,5)),3)))"
  },
  {
    "input": "input : list = [3, -3, 0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(take(sort_des(reverse(drop([3, -3, 0, 2],2))),26),36)",
    "io_inp": [
      3,
      -3,
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(drop(input,2))),26),36)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(sort_des([3, 1, 1])))),-1)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [-1, -4, 3, -5, -4, 0]\noutput : list = [-2, -1, -1, 2, 3, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(reverse([-1, -4, 3, -5, -4, 0])),-3),36))",
    "io_inp": [
      -1,
      -4,
      3,
      -5,
      -4,
      0
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(reverse(input)),-3),36))"
  },
  {
    "input": "input : list = [-4, 5, -1, 2, -4]\noutput : list = [6, 9, 12, 15]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(drop([-4, 5, -1, 2, -4],1)),-5),5))",
    "io_inp": [
      -4,
      5,
      -1,
      2,
      -4
    ],
    "io_out": [
      6,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(drop(input,1)),-5),5))"
  },
  {
    "input": "input : list = [4, -5, 5]\noutput : list = [-5, 22, -8]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(sub_n([4, -5, 5],2),1),-3),1),13)",
    "io_inp": [
      4,
      -5,
      5
    ],
    "io_out": [
      -5,
      22,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(sub_n(input,2),1),-3),1),13)"
  },
  {
    "input": "input : list = [5, 0, 4, 5, 2, -1]\noutput : list = [-1, 0, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(drop([5, 0, 4, 5, 2, -1],1))",
    "io_inp": [
      5,
      0,
      4,
      5,
      2,
      -1
    ],
    "io_out": [
      -1,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 0, -3, 1]\noutput : list = [-6, -4, -3, -2]",
    "output": "generated_output : list = take(take(sort_asc(sort_asc(sub_n([-1, 0, -3, 1],3))),35),31)",
    "io_inp": [
      -1,
      0,
      -3,
      1
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_asc(sub_n(input,3))),35),31)"
  },
  {
    "input": "input : list = [-5, -3, -4, 4]\noutput : list = [-8, -7, -6, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(add_n([-5, -3, -4, 4],-5)),2)))",
    "io_inp": [
      -5,
      -3,
      -4,
      4
    ],
    "io_out": [
      -8,
      -7,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(add_n(input,-5)),2)))"
  },
  {
    "input": "input : list = [1, -5, -3, 0, 3]\noutput : list = [8, 6, 5, 2, 0]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(reverse([1, -5, -3, 0, 3])),-5)),18)",
    "io_inp": [
      1,
      -5,
      -3,
      0,
      3
    ],
    "io_out": [
      8,
      6,
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(reverse(input)),-5)),18)"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(sort_des([-4, -1, -4]),1),5)))",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(sort_des(input),1),5)))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc([1, -4])",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [4, 29]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(sort_asc([5, 0]),5),4)))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      4,
      29
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(sort_asc(input),5),4)))"
  },
  {
    "input": "input : list = [1, 1, 5, -2]\noutput : list = [4, 4, 8, 1]",
    "output": "generated_output : list = sub_n([1, 1, 5, -2],-3)",
    "io_inp": [
      1,
      1,
      5,
      -2
    ],
    "io_out": [
      4,
      4,
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [-2, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_des([3, -3, 0])))),-1)",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [0, -3, 0, -1, -2]\noutput : list = [-9, -8, -7, -6, -6]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_des([0, -3, 0, -1, -2]),4)),2),31)",
    "io_inp": [
      0,
      -3,
      0,
      -1,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_des(input),4)),2),31)"
  },
  {
    "input": "input : list = [2, 3, -2, -5, 3]\noutput : list = [-4, -1, -9]",
    "output": "generated_output : list = add_n(take(mul_n(add_n(drop([2, 3, -2, -5, 3],2),4),-1),36),-2)",
    "io_inp": [
      2,
      3,
      -2,
      -5,
      3
    ],
    "io_out": [
      -4,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(add_n(drop(input,2),4),-1),36),-2)"
  },
  {
    "input": "input : list = [2, 4, 4, -3]\noutput : list = [19]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(sort_des([2, 4, 4, -3])),1),-5),4)",
    "io_inp": [
      2,
      4,
      4,
      -3
    ],
    "io_out": [
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(sort_des(input)),1),-5),4)"
  },
  {
    "input": "input : list = [-4, 1, -4, 4]\noutput : list = [-19, -19, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(mul_n([-4, 1, -4, 4],4),3),-2)),5)",
    "io_inp": [
      -4,
      1,
      -4,
      4
    ],
    "io_out": [
      -19,
      -19,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(mul_n(input,4),3),-2)),5)"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [12, 4]",
    "output": "generated_output : list = sub_n(take(drop(add_n(add_n([-4, 3, -5],-1),5),1),4),-5)",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(add_n(add_n(input,-1),5),1),4),-5)"
  },
  {
    "input": "input : list = [-3, -1, 4, -5]\noutput : list = [14, 9, 7, 5]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(reverse([-3, -1, 4, -5]),-5))),5)",
    "io_inp": [
      -3,
      -1,
      4,
      -5
    ],
    "io_out": [
      14,
      9,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(reverse(input),-5))),5)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [12, -6]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse([2, -4]),-3)))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      12,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(input),-3)))"
  },
  {
    "input": "input : list = [2, -5, 4, 0]\noutput : list = [0, 4, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 4, 0])",
    "io_inp": [
      2,
      -5,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 0, 1, 5]\noutput : list = [4, 3, 1]",
    "output": "generated_output : list = add_n(drop(sort_des(sub_n([-2, 0, 1, 5],-5)),1),-2)",
    "io_inp": [
      -2,
      0,
      1,
      5
    ],
    "io_out": [
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_des(sub_n(input,-5)),1),-2)"
  },
  {
    "input": "input : list = [-4, -4, 2, 4]\noutput : list = [-20, -20, 4, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(mul_n([-4, -4, 2, 4],4),1),-4)))",
    "io_inp": [
      -4,
      -4,
      2,
      4
    ],
    "io_out": [
      -20,
      -20,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(mul_n(input,4),1),-4)))"
  },
  {
    "input": "input : list = [0, 2, -3, -5]\noutput : list = [-5, -3, 0, 2]",
    "output": "generated_output : list = sort_asc([0, 2, -3, -5])",
    "io_inp": [
      0,
      2,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 4, 5, 5, -3]\noutput : list = [2, 8, 9, 9, 1]",
    "output": "generated_output : list = sub_n([-2, 4, 5, 5, -3],-4)",
    "io_inp": [
      -2,
      4,
      5,
      5,
      -3
    ],
    "io_out": [
      2,
      8,
      9,
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 2, -2, 1, -4, -4]\noutput : list = [8]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(take([-2, 2, -2, 1, -4, -4],1),-4),18)))",
    "io_inp": [
      -2,
      2,
      -2,
      1,
      -4,
      -4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(take(input,1),-4),18)))"
  },
  {
    "input": "input : list = [4, -4, 0, 4, 5, 0]\noutput : list = [3]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(take([4, -4, 0, 4, 5, 0],1),-3)),19),2)",
    "io_inp": [
      4,
      -4,
      0,
      4,
      5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(take(input,1),-3)),19),2)"
  },
  {
    "input": "input : list = [5, -5, -1, 4]\noutput : list = [7, -3, 1, 6]",
    "output": "generated_output : list = sub_n([5, -5, -1, 4],-2)",
    "io_inp": [
      5,
      -5,
      -1,
      4
    ],
    "io_out": [
      7,
      -3,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 1, -3, 1, -5, 0]\noutput : list = [-4, -2, 1, 1, 2, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_des([0, 1, -3, 1, -5, 0]))),-1),33)",
    "io_inp": [
      0,
      1,
      -3,
      1,
      -5,
      0
    ],
    "io_out": [
      -4,
      -2,
      1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_des(input))),-1),33)"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(drop([2, -1, -4],1),-5),-1),-4),23)",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(drop(input,1),-5),-1),-4),23)"
  },
  {
    "input": "input : list = [-3, 0, 5, -5, 5]\noutput : list = [17, 2, -23, 27, -23]",
    "output": "generated_output : list = sub_n(take(mul_n([-3, 0, 5, -5, 5],-5),25),-2)",
    "io_inp": [
      -3,
      0,
      5,
      -5,
      5
    ],
    "io_out": [
      17,
      2,
      -23,
      27,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,-5),25),-2)"
  },
  {
    "input": "input : list = [-4, 5, -1, 2]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(sort_des(take([-4, 5, -1, 2],1)),-5)",
    "io_inp": [
      -4,
      5,
      -1,
      2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-5)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [16, 12, -16]",
    "output": "generated_output : list = sort_des(add_n(reverse(mul_n(sort_des([-3, 5, 4]),4)),-4))",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      16,
      12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(mul_n(sort_des(input),4)),-4))"
  },
  {
    "input": "input : list = [1, 3, 2, 1]\noutput : list = [3, 2, 1, 1]",
    "output": "generated_output : list = reverse(sort_asc([1, 3, 2, 1]))",
    "io_inp": [
      1,
      3,
      2,
      1
    ],
    "io_out": [
      3,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [8, 3]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(sort_des([-1, 4]),-4))),27)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      8,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(sort_des(input),-4))),27)"
  },
  {
    "input": "input : list = [-5, -2, 2, -2]\noutput : list = [2, -2, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des([-5, -2, 2, -2]))))",
    "io_inp": [
      -5,
      -2,
      2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [3, -1, 3, 0, -1]\noutput : list = [15, 15, 6, 3, 3]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(reverse([3, -1, 3, 0, -1]),2),3)),26)",
    "io_inp": [
      3,
      -1,
      3,
      0,
      -1
    ],
    "io_out": [
      15,
      15,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(reverse(input),2),3)),26)"
  },
  {
    "input": "input : list = [-5, 5, 4, -1]\noutput : list = [-8, 0, 10, 12]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n([-5, 5, 4, -1],1),12)),2)",
    "io_inp": [
      -5,
      5,
      4,
      -1
    ],
    "io_out": [
      -8,
      0,
      10,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(input,1),12)),2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc([5, 4])",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [-5, -7, 1]",
    "output": "generated_output : list = add_n(sub_n([-1, -3, 5],2),-2)",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      -5,
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-2)"
  },
  {
    "input": "input : list = [2, 2, 2, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(add_n(take([2, 2, 2, 0],1),-2),-3)",
    "io_inp": [
      2,
      2,
      2,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,1),-2),-3)"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [0, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 0])",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([2, -4])))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [3, -5, 1, 5, -4, 3]\noutput : list = [50, 30, 30, 10, -40, -50]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(take(mul_n([3, -5, 1, 5, -4, 3],5),18)),2))",
    "io_inp": [
      3,
      -5,
      1,
      5,
      -4,
      3
    ],
    "io_out": [
      50,
      30,
      30,
      10,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(take(mul_n(input,5),18)),2))"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [-5, -10, -15]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des([-2, -3, -1]),5)))",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(input),5)))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [7, 9]",
    "output": "generated_output : list = sub_n(take(add_n(reverse([4, 2]),3),18),-2)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(input),3),18),-2)"
  },
  {
    "input": "input : list = [5, -5, 0, -5, -3, -2]\noutput : list = [20, 20, 12, 8, 0, -20]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(reverse([5, -5, 0, -5, -3, -2])))),-4)",
    "io_inp": [
      5,
      -5,
      0,
      -5,
      -3,
      -2
    ],
    "io_out": [
      20,
      20,
      12,
      8,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [-3, -3, -5, -2, -2, 1]\noutput : list = [3, 0, 0, -1, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(add_n([-3, -3, -5, -2, -2, 1],2),28),-3),-3))",
    "io_inp": [
      -3,
      -3,
      -5,
      -2,
      -2,
      1
    ],
    "io_out": [
      3,
      0,
      0,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(add_n(input,2),28),-3),-3))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(add_n([2, 0],-3),13),5),1))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(add_n(input,-3),13),5),1))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-5, -9]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(reverse([3, -1])),3),-5),13)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(reverse(input)),3),-5),13)"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [-3, 6, 12]",
    "output": "generated_output : list = reverse(take(mul_n(take(sort_des([2, -1, 4]),17),3),10))",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      -3,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(sort_des(input),17),3),10))"
  },
  {
    "input": "input : list = [-4, 5, -3, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take(drop(add_n(take(mul_n([-4, 5, -3, 0],5),11),-2),3),14)",
    "io_inp": [
      -4,
      5,
      -3,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(drop(add_n(take(mul_n(input,5),11),-2),3),14)"
  },
  {
    "input": "input : list = [1, -2, 2, -3, -3, 2]\noutput : list = [16, -32, 32, -48, -48, 32]",
    "output": "generated_output : list = mul_n(mul_n([1, -2, 2, -3, -3, 2],4),4)",
    "io_inp": [
      1,
      -2,
      2,
      -3,
      -3,
      2
    ],
    "io_out": [
      16,
      -32,
      32,
      -48,
      -48,
      32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),4)"
  },
  {
    "input": "input : list = [1, 3, -5, -5, 1, -2]\noutput : list = [3, 1, 1, -2, -5]",
    "output": "generated_output : list = sort_des(drop(take(sort_asc([1, 3, -5, -5, 1, -2]),7),1))",
    "io_inp": [
      1,
      3,
      -5,
      -5,
      1,
      -2
    ],
    "io_out": [
      3,
      1,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(take(sort_asc(input),7),1))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(sort_des([5, 5]),1)),21))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(sort_des(input),1)),21))"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [-6, -4, -3]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(sort_des([-1, -4, -2]),3),5)),46)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(sort_des(input),3),5)),46)"
  },
  {
    "input": "input : list = [0, 2, -4, -1, -1]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take([0, 2, -4, -1, -1],1)),-1))",
    "io_inp": [
      0,
      2,
      -4,
      -1,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(input,1)),-1))"
  },
  {
    "input": "input : list = [2, -1, 1, -1]\noutput : list = [-5, -5, -3, -2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(sort_asc([2, -1, 1, -1])),4),33))",
    "io_inp": [
      2,
      -1,
      1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(sort_asc(input)),4),33))"
  },
  {
    "input": "input : list = [-3, -4, -3, 1, -3]\noutput : list = [-4, -3, -3, -3, 1]",
    "output": "generated_output : list = sort_asc([-3, -4, -3, 1, -3])",
    "io_inp": [
      -3,
      -4,
      -3,
      1,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, 3, 2, -1]\noutput : list = [-2, -1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([-2, 3, 3, 2, -1])",
    "io_inp": [
      -2,
      3,
      3,
      2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, 3, 5, 1, 4]\noutput : list = [2, 1, 0, -2, -6, -8]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(sub_n([-5, -3, 3, 5, 1, 4],5),-1),3)))",
    "io_inp": [
      -5,
      -3,
      3,
      5,
      1,
      4
    ],
    "io_out": [
      2,
      1,
      0,
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(sub_n(input,5),-1),3)))"
  },
  {
    "input": "input : list = [-3, 1, 4, -2, 2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(sort_asc(drop(sort_asc(sort_des([-3, 1, 4, -2, 2])),3)),-3)",
    "io_inp": [
      -3,
      1,
      4,
      -2,
      2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(sort_asc(sort_des(input)),3)),-3)"
  },
  {
    "input": "input : list = [-2, -4, -4, 3, 0, 3]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take([-2, -4, -4, 3, 0, 3],1))),-3)",
    "io_inp": [
      -2,
      -4,
      -4,
      3,
      0,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(input,1))),-3)"
  },
  {
    "input": "input : list = [2, 2, -4, -3, -4, -2]\noutput : list = [-6, -6, -10, -11, -12, -12]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des([2, 2, -4, -3, -4, -2]),3)),-5)",
    "io_inp": [
      2,
      2,
      -4,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -10,
      -11,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(input),3)),-5)"
  },
  {
    "input": "input : list = [2, -4, 1, 2, 5, 5]\noutput : list = [-135, -135, -54, -27, 108, -54]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n(mul_n([2, -4, 1, 2, 5, 5],3),-3),3)),1)",
    "io_inp": [
      2,
      -4,
      1,
      2,
      5,
      5
    ],
    "io_out": [
      -135,
      -135,
      -54,
      -27,
      108,
      -54
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(mul_n(input,3),-3),3)),1)"
  },
  {
    "input": "input : list = [-3, -5, -5, 2, -1]\noutput : list = [-11, -11, -9, -7, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(sub_n([-3, -5, -5, 2, -1],4),24))),2)",
    "io_inp": [
      -3,
      -5,
      -5,
      2,
      -1
    ],
    "io_out": [
      -11,
      -11,
      -9,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(sub_n(input,4),24))),2)"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [8, 6]",
    "output": "generated_output : list = sort_des(take(take(reverse(add_n([-2, 1, 3],5)),2),23))",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(add_n(input,5)),2),23))"
  },
  {
    "input": "input : list = [2, 1, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = drop([2, 1, -1, -5],2)",
    "io_inp": [
      2,
      1,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -4, -1, 5, 4, -2]\noutput : list = [4]",
    "output": "generated_output : list = take(take([4, -4, -1, 5, 4, -2],1),1)",
    "io_inp": [
      4,
      -4,
      -1,
      5,
      4,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(input,1),1)"
  },
  {
    "input": "input : list = [-4, -3, -1, -1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = drop([-4, -3, -1, -1, -3],3)",
    "io_inp": [
      -4,
      -3,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, -2, -5, 1]\noutput : list = [4, -20]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(drop([4, -2, -5, 1],2)),4)),30)",
    "io_inp": [
      4,
      -2,
      -5,
      1
    ],
    "io_out": [
      4,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(drop(input,2)),4)),30)"
  },
  {
    "input": "input : list = [-5, 3, -4, 0]\noutput : list = [1, -2, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des([-5, 3, -4, 0]),2)",
    "io_inp": [
      -5,
      3,
      -4,
      0
    ],
    "io_out": [
      1,
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-5, -1, -1]",
    "output": "generated_output : list = sort_asc([-1, -5, -1])",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, -3, 4, -1]\noutput : list = [-2, -8, 6, -8, 2]",
    "output": "generated_output : list = mul_n([1, 4, -3, 4, -1],-2)",
    "io_inp": [
      1,
      4,
      -3,
      4,
      -1
    ],
    "io_out": [
      -2,
      -8,
      6,
      -8,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 0, -2, -4]\noutput : list = [63, 63, 31, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(mul_n([-4, 0, -2, -4],-4),4)),1))",
    "io_inp": [
      -4,
      0,
      -2,
      -4
    ],
    "io_out": [
      63,
      63,
      31,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(mul_n(input,-4),4)),1))"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [9, 1, 7]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(reverse([5, -3, 3]),-1),-5)),-2)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      9,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(reverse(input),-1),-5)),-2)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(reverse(reverse([-2, -5])))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [2, -7]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(add_n([4, -5],2))),-1),-1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(add_n(input,2))),-1),-1)"
  },
  {
    "input": "input : list = [2, 2, 1, -1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 2, 1, -1],1)",
    "io_inp": [
      2,
      2,
      1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -4, -2, 0, 1]\noutput : list = [9, 19, 29, 34]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(drop([5, -4, -2, 0, 1],1),-5),5),29),-4)",
    "io_inp": [
      5,
      -4,
      -2,
      0,
      1
    ],
    "io_out": [
      9,
      19,
      29,
      34
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(drop(input,1),-5),5),29),-4)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [1, 0]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(reverse([1, 2])),20),1))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(reverse(input)),20),1))"
  },
  {
    "input": "input : list = [-5, 4, 1, -2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(drop([-5, 4, 1, -2],2),1),3),24))",
    "io_inp": [
      -5,
      4,
      1,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(drop(input,2),1),3),24))"
  },
  {
    "input": "input : list = [-1, 0, 1, 1]\noutput : list = [0, 1, 1]",
    "output": "generated_output : list = drop([-1, 0, 1, 1],1)",
    "io_inp": [
      -1,
      0,
      1,
      1
    ],
    "io_out": [
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -5, -3, 4]\noutput : list = [13, 9, 6, 4]",
    "output": "generated_output : list = take(sub_n(sort_des(take(add_n([0, -5, -3, 4],4),5)),-5),39)",
    "io_inp": [
      0,
      -5,
      -3,
      4
    ],
    "io_out": [
      13,
      9,
      6,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(add_n(input,4),5)),-5),39)"
  },
  {
    "input": "input : list = [4, -3, -4, 3]\noutput : list = [-5, 2]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(take([4, -3, -4, 3],2),5),1),3))",
    "io_inp": [
      4,
      -3,
      -4,
      3
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(take(input,2),5),1),3))"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [-27]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(take([-5, 5, 5],1),1),-4),3))",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(take(input,1),1),-4),3))"
  },
  {
    "input": "input : list = [-4, 4, -2, 1, 3, -1]\noutput : list = [2, -6, -2, 4, -8, 8]",
    "output": "generated_output : list = reverse(reverse(reverse(take(mul_n([-4, 4, -2, 1, 3, -1],-2),18))))",
    "io_inp": [
      -4,
      4,
      -2,
      1,
      3,
      -1
    ],
    "io_out": [
      2,
      -6,
      -2,
      4,
      -8,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(mul_n(input,-2),18))))"
  },
  {
    "input": "input : list = [-5, 1, 5, -4, -4]\noutput : list = [-4, 2, 6, -3, -3]",
    "output": "generated_output : list = sub_n([-5, 1, 5, -4, -4],-1)",
    "io_inp": [
      -5,
      1,
      5,
      -4,
      -4
    ],
    "io_out": [
      -4,
      2,
      6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, -2, -4, -2]\noutput : list = [20, 10, 10]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(drop([3, -2, -4, -2],1))),-5)",
    "io_inp": [
      3,
      -2,
      -4,
      -2
    ],
    "io_out": [
      20,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(drop(input,1))),-5)"
  },
  {
    "input": "input : list = [1, -4, 1, -5, 4, 5]\noutput : list = [400, 320, -80, -80, -320, -400]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n([1, -4, 1, -5, 4, 5],-4),-5)),43),-4)",
    "io_inp": [
      1,
      -4,
      1,
      -5,
      4,
      5
    ],
    "io_out": [
      400,
      320,
      -80,
      -80,
      -320,
      -400
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n(input,-4),-5)),43),-4)"
  },
  {
    "input": "input : list = [4, 0, -3, -5]\noutput : list = [6, 2, -1, -3]",
    "output": "generated_output : list = sub_n([4, 0, -3, -5],-2)",
    "io_inp": [
      4,
      0,
      -3,
      -5
    ],
    "io_out": [
      6,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [-25]",
    "output": "generated_output : list = mul_n(take(sub_n([0, -2, -2],-5),1),-5)",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-5),1),-5)"
  },
  {
    "input": "input : list = [-1, -5, -3, 4]\noutput : list = [0, -5, -7, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-1, -5, -3, 4],-4)))",
    "io_inp": [
      -1,
      -5,
      -3,
      4
    ],
    "io_out": [
      0,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-2, 5, -3, -5]\noutput : list = [-2, -9, -10, -12]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(add_n([-2, 5, -3, -5],-5)),-2),13))",
    "io_inp": [
      -2,
      5,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -9,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(add_n(input,-5)),-2),13))"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [11, 7, 7]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(reverse([0, -4, -4]),3)),-4),-4)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      11,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(reverse(input),3)),-4),-4)"
  },
  {
    "input": "input : list = [-3, -1, -5, -3, -3, -3]\noutput : list = [36, 36, 36, 60, 12, 36]",
    "output": "generated_output : list = reverse(take(take(mul_n(mul_n([-3, -1, -5, -3, -3, -3],3),-4),19),46))",
    "io_inp": [
      -3,
      -1,
      -5,
      -3,
      -3,
      -3
    ],
    "io_out": [
      36,
      36,
      36,
      60,
      12,
      36
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(mul_n(input,3),-4),19),46))"
  },
  {
    "input": "input : list = [-5, -4, 4, -4, -2]\noutput : list = [-5, -4, 4]",
    "output": "generated_output : list = take([-5, -4, 4, -4, -2],3)",
    "io_inp": [
      -5,
      -4,
      4,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-35, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n([-3, 3],2),1),5))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -35,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(input,2),1),5))"
  },
  {
    "input": "input : list = [5, -4, -4]\noutput : list = [-12, -12, -3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(sort_des([5, -4, -4]),17),5)),3)",
    "io_inp": [
      5,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(sort_des(input),17),5)),3)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [8, 8]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(reverse([3, 3])),21)),-5)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(reverse(input)),21)),-5)"
  },
  {
    "input": "input : list = [-1, 5, 3, 3, -3]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 5, 3, 3, -3],1)",
    "io_inp": [
      -1,
      5,
      3,
      3,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [-3, -6, -8]",
    "output": "generated_output : list = sub_n(sort_des(add_n([1, -2, -4],-3)),1)",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-3)),1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des([-4, 1])",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-1, 2, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(reverse([-1, 2, 4])))),35)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(reverse(input)))),35)"
  },
  {
    "input": "input : list = [-1, -5, 3, 5, -4]\noutput : list = [1, -3, 5, 7, -2]",
    "output": "generated_output : list = take(add_n([-1, -5, 3, 5, -4],2),17)",
    "io_inp": [
      -1,
      -5,
      3,
      5,
      -4
    ],
    "io_out": [
      1,
      -3,
      5,
      7,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),17)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [-24, -6, 6]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(sort_asc([-5, 5, 1])),22),-3),3)",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      -24,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(sort_asc(input)),22),-3),3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-17, -8]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(reverse([-4, -1]),3),6),5))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -17,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(reverse(input),3),6),5))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [2, 4]",
    "output": "generated_output : list = add_n(reverse([3, 1]),1)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [1, -5, -6]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(add_n([-4, -3, 3],-1),4),-2)),3)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(add_n(input,-1),4),-2)),3)"
  },
  {
    "input": "input : list = [-4, 4, 1, -4, 1]\noutput : list = [-20, 20, 5, -20, 5]",
    "output": "generated_output : list = mul_n([-4, 4, 1, -4, 1],5)",
    "io_inp": [
      -4,
      4,
      1,
      -4,
      1
    ],
    "io_out": [
      -20,
      20,
      5,
      -20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, -4, 2, 5, -2]\noutput : list = [-9, -8, -2, 1, -6]",
    "output": "generated_output : list = add_n([-5, -4, 2, 5, -2],-4)",
    "io_inp": [
      -5,
      -4,
      2,
      5,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 4, 2, 5, -1]\noutput : list = [4, 2, 5, -1]",
    "output": "generated_output : list = take(drop([-4, 4, 2, 5, -1],1),20)",
    "io_inp": [
      -4,
      4,
      2,
      5,
      -1
    ],
    "io_out": [
      4,
      2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),20)"
  },
  {
    "input": "input : list = [3, 5, 1]\noutput : list = [1, 5, 3]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(sub_n([3, 5, 1],-3),5),2),7))",
    "io_inp": [
      3,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(sub_n(input,-3),5),2),7))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-4, -6]",
    "output": "generated_output : list = take(mul_n([-2, -3],2),4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),4)"
  },
  {
    "input": "input : list = [2, -2, -2, 3]\noutput : list = [18, 18, 6, 3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(reverse([2, -2, -2, 3])),4),-3))",
    "io_inp": [
      2,
      -2,
      -2,
      3
    ],
    "io_out": [
      18,
      18,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(reverse(input)),4),-3))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_des([-3, -2]))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(add_n([-2, 4, -2],-1))),-2))",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(add_n(input,-1))),-2))"
  },
  {
    "input": "input : list = [-3, -1, -2, 2]\noutput : list = [-3, -2, -1, 2]",
    "output": "generated_output : list = reverse(sort_des([-3, -1, -2, 2]))",
    "io_inp": [
      -3,
      -1,
      -2,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [1, 5, -5, 5]\noutput : list = [5, 5, 1, -5]",
    "output": "generated_output : list = sort_des([1, 5, -5, 5])",
    "io_inp": [
      1,
      5,
      -5,
      5
    ],
    "io_out": [
      5,
      5,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, -4, -5]\noutput : list = [23, 18, 3, -7]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(mul_n([1, -1, -4, -5],-5),-2)),7))",
    "io_inp": [
      1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      23,
      18,
      3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(mul_n(input,-5),-2)),7))"
  },
  {
    "input": "input : list = [0, -3, -4, -3, -2, 1]\noutput : list = [6, 5, 6, 7, 10]",
    "output": "generated_output : list = sub_n(sub_n(drop([0, -3, -4, -3, -2, 1],1),-4),-5)",
    "io_inp": [
      0,
      -3,
      -4,
      -3,
      -2,
      1
    ],
    "io_out": [
      6,
      5,
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),-4),-5)"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = sort_des([2, -1, 1])",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -5, -1, 3, 5, 0]\noutput : list = [14, 12, 11, 9, 8, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(sort_asc([2, -5, -1, 3, 5, 0]),-3)),-4),2)",
    "io_inp": [
      2,
      -5,
      -1,
      3,
      5,
      0
    ],
    "io_out": [
      14,
      12,
      11,
      9,
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(sort_asc(input),-3)),-4),2)"
  },
  {
    "input": "input : list = [5, 2, -4, -4, 1, 5]\noutput : list = [40, 40, -10, -20, -50, -50]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(sort_des([5, 2, -4, -4, 1, 5]),-5),2)),54)",
    "io_inp": [
      5,
      2,
      -4,
      -4,
      1,
      5
    ],
    "io_out": [
      40,
      40,
      -10,
      -20,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(sort_des(input),-5),2)),54)"
  },
  {
    "input": "input : list = [-5, 0, -5, 2]\noutput : list = [-5, -5, 0, 2]",
    "output": "generated_output : list = sort_asc([-5, 0, -5, 2])",
    "io_inp": [
      -5,
      0,
      -5,
      2
    ],
    "io_out": [
      -5,
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, -5, -1]\noutput : list = [-12]",
    "output": "generated_output : list = sort_asc(mul_n(take([-3, -2, -5, -1],1),4))",
    "io_inp": [
      -3,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),4))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-8, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(mul_n([0, 3],-4),-2))),2)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(mul_n(input,-4),-2))),2)"
  },
  {
    "input": "input : list = [-5, -2, -4, -4]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(reverse(drop([-5, -2, -4, -4],1)))))",
    "io_inp": [
      -5,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [1, 0, -2, 5, 4, -4]\noutput : list = [3, 2, -1, -2, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc([1, 0, -2, 5, 4, -4]))),2)",
    "io_inp": [
      1,
      0,
      -2,
      5,
      4,
      -4
    ],
    "io_out": [
      3,
      2,
      -1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(input))),2)"
  },
  {
    "input": "input : list = [2, 4, 4, 0, -3, 5]\noutput : list = [-1, 1, 1, -3, -6, 2]",
    "output": "generated_output : list = add_n(reverse(reverse([2, 4, 4, 0, -3, 5])),-3)",
    "io_inp": [
      2,
      4,
      4,
      0,
      -3,
      5
    ],
    "io_out": [
      -1,
      1,
      1,
      -3,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-1, -2, -3, 2]\noutput : list = [14, 11, 8, -1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse([-1, -2, -3, 2]),-3)),5))",
    "io_inp": [
      -1,
      -2,
      -3,
      2
    ],
    "io_out": [
      14,
      11,
      8,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse(input),-3)),5))"
  },
  {
    "input": "input : list = [1, 5, 0, 1, 5, 0]\noutput : list = [0, 0, 1, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([1, 5, 0, 1, 5, 0])",
    "io_inp": [
      1,
      5,
      0,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      0,
      1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, 2, -3]\noutput : list = [6, -4, -9, -19]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(mul_n([-1, 0, 2, -3],-1),-5),4)))",
    "io_inp": [
      -1,
      0,
      2,
      -3
    ],
    "io_out": [
      6,
      -4,
      -9,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(mul_n(input,-1),-5),4)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [14, 7]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n([-2, 5],-4),-5),8))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      14,
      7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(input,-4),-5),8))"
  },
  {
    "input": "input : list = [-3, -4, -1, -3, -3]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(take([-3, -4, -1, -3, -3],3)),2)))",
    "io_inp": [
      -3,
      -4,
      -1,
      -3,
      -3
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(take(input,3)),2)))"
  },
  {
    "input": "input : list = [-3, -1, -1, 0, 0, 4]\noutput : list = [0, -6, -6, -9, -9, -21]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n([-3, -1, -1, 0, 0, 4],-4),-3))),3)",
    "io_inp": [
      -3,
      -1,
      -1,
      0,
      0,
      4
    ],
    "io_out": [
      0,
      -6,
      -6,
      -9,
      -9,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n(input,-4),-3))),3)"
  },
  {
    "input": "input : list = [-5, -5, 2, 3, 1, 2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(drop([-5, -5, 2, 3, 1, 2],4)),3)))",
    "io_inp": [
      -5,
      -5,
      2,
      3,
      1,
      2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(drop(input,4)),3)))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [5, 8]",
    "output": "generated_output : list = take(mul_n(mul_n(take(add_n([0, -3],-5),10),1),-1),30)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(add_n(input,-5),10),1),-1),30)"
  },
  {
    "input": "input : list = [5, 3, 5, 0]\noutput : list = [-11, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(drop([5, 3, 5, 0],2),-2),-1)))",
    "io_inp": [
      5,
      3,
      5,
      0
    ],
    "io_out": [
      -11,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(drop(input,2),-2),-1)))"
  },
  {
    "input": "input : list = [-4, 5, -5, 2, 0, 1]\noutput : list = [-5, -4, 0, 1, 2, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse([-4, 5, -5, 2, 0, 1])))",
    "io_inp": [
      -4,
      5,
      -5,
      2,
      0,
      1
    ],
    "io_out": [
      -5,
      -4,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-8, -8]",
    "output": "generated_output : list = add_n(sort_des(sort_des(add_n(sort_asc([-5, -5]),-4))),1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(add_n(sort_asc(input),-4))),1)"
  },
  {
    "input": "input : list = [-4, 3, -5, 2, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop([-4, 3, -5, 2, 1, -1],4)",
    "io_inp": [
      -4,
      3,
      -5,
      2,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, -2, 4, 5, -5]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(take(sort_asc([4, -2, 4, 5, -5]),1),3)",
    "io_inp": [
      4,
      -2,
      4,
      5,
      -5
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),1),3)"
  },
  {
    "input": "input : list = [3, 5, 1]\noutput : list = [9, 15, 21]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n([3, 5, 1],3),-2),4))",
    "io_inp": [
      3,
      5,
      1
    ],
    "io_out": [
      9,
      15,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(input,3),-2),4))"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [-7, -15, -5]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n([0, -5, -1],2)),-4),-1)",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      -7,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(input,2)),-4),-1)"
  },
  {
    "input": "input : list = [4, 5, 3, -5]\noutput : list = [-40, -35, -30, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sub_n([4, 5, 3, -5],-3))),-5))",
    "io_inp": [
      4,
      5,
      3,
      -5
    ],
    "io_out": [
      -40,
      -35,
      -30,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sub_n(input,-3))),-5))"
  },
  {
    "input": "input : list = [1, -1, -5, 1]\noutput : list = [-18, -2, 6, 6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(reverse([1, -1, -5, 1])),4)),2)",
    "io_inp": [
      1,
      -1,
      -5,
      1
    ],
    "io_out": [
      -18,
      -2,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(reverse(input)),4)),2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [17, 13]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(reverse([3, 2]),4),-5)))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      17,
      13
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(reverse(input),4),-5)))"
  },
  {
    "input": "input : list = [-1, -5, 4, 2]\noutput : list = [-6]",
    "output": "generated_output : list = take(reverse(drop(sub_n(sort_des([-1, -5, 4, 2]),1),3)),18)",
    "io_inp": [
      -1,
      -5,
      4,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(drop(sub_n(sort_des(input),1),3)),18)"
  },
  {
    "input": "input : list = [3, 4, 1, -3, 4, -1]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(take([3, 4, 1, -3, 4, -1],1),1),-2),4),2)",
    "io_inp": [
      3,
      4,
      1,
      -3,
      4,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(take(input,1),1),-2),4),2)"
  },
  {
    "input": "input : list = [5, 4, -2, -2, 3, -5]\noutput : list = [5, 4, 3, -2, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(reverse([5, 4, -2, -2, 3, -5])))))",
    "io_inp": [
      5,
      4,
      -2,
      -2,
      3,
      -5
    ],
    "io_out": [
      5,
      4,
      3,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, -3, 4, 4, -1, -5]\noutput : list = [4, 4, -1, -3, -4, -5]",
    "output": "generated_output : list = mul_n(sort_des([-4, -3, 4, 4, -1, -5]),1)",
    "io_inp": [
      -4,
      -3,
      4,
      4,
      -1,
      -5
    ],
    "io_out": [
      4,
      4,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [1, -2, 5, -3, 5, 5]\noutput : list = [-7, -6, -3, 1, 1, 1]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des([1, -2, 5, -3, 5, 5]),14),4))",
    "io_inp": [
      1,
      -2,
      5,
      -3,
      5,
      5
    ],
    "io_out": [
      -7,
      -6,
      -3,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(input),14),4))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-33, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(add_n([-4, 3],-5),-4),-2)),3)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -33,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(add_n(input,-5),-4),-2)),3)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [0, -7]",
    "output": "generated_output : list = add_n(take(take(drop([4, 2, -5],1),16),24),-2)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(input,1),16),24),-2)"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [1]",
    "output": "generated_output : list = reverse(add_n(sub_n(take([-1, 0, -1],1),-4),-2))",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(input,1),-4),-2))"
  },
  {
    "input": "input : list = [-2, 3, -2, -5, -4, 0]\noutput : list = [3, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n(take([-2, 3, -2, -5, -4, 0],2),3))),2)",
    "io_inp": [
      -2,
      3,
      -2,
      -5,
      -4,
      0
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(take(input,2),3))),2)"
  },
  {
    "input": "input : list = [-1, 0, 5, -3, 3, -2]\noutput : list = [-5, 0, 25, -15, 15, -10]",
    "output": "generated_output : list = mul_n([-1, 0, 5, -3, 3, -2],5)",
    "io_inp": [
      -1,
      0,
      5,
      -3,
      3,
      -2
    ],
    "io_out": [
      -5,
      0,
      25,
      -15,
      15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 0, -5, 1, 2, -2]\noutput : list = [-8, -5, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([3, 0, -5, 1, 2, -2]),3))",
    "io_inp": [
      3,
      0,
      -5,
      1,
      2,
      -2
    ],
    "io_out": [
      -8,
      -5,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-3, -2, -3, -2]\noutput : list = [1, 1, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sub_n([-3, -2, -3, -2],-5),5))),-4)",
    "io_inp": [
      -3,
      -2,
      -3,
      -2
    ],
    "io_out": [
      1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sub_n(input,-5),5))),-4)"
  },
  {
    "input": "input : list = [4, -2, -5, -5, -4]\noutput : list = [-5, -5, -4, -2, 4]",
    "output": "generated_output : list = sort_asc([4, -2, -5, -5, -4])",
    "io_inp": [
      4,
      -2,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des([-4, -1])",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 2, -4]\noutput : list = [-4, 2, -4]",
    "output": "generated_output : list = reverse([-4, 2, -4])",
    "io_inp": [
      -4,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [-4, -7, -10]",
    "output": "generated_output : list = sub_n(sort_des([-5, -2, 1]),5)",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-7, -8]",
    "output": "generated_output : list = reverse(add_n(reverse(reverse(sub_n([-2, -1],2))),-4))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(reverse(sub_n(input,2))),-4))"
  },
  {
    "input": "input : list = [0, -5, 4, -1, -3, 0]\noutput : list = [-8, -6, -4, -3, 1]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(drop([0, -5, 4, -1, -3, 0],1),1),-4)),22)",
    "io_inp": [
      0,
      -5,
      4,
      -1,
      -3,
      0
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(drop(input,1),1),-4)),22)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = take(sort_des([-4, 2]),14)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(take([0, -5, 0],1),12))),4)",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(take(input,1),12))),4)"
  },
  {
    "input": "input : list = [2, -4, -2, -1, -5]\noutput : list = [1, -5, -3, -2, -6]",
    "output": "generated_output : list = sub_n([2, -4, -2, -1, -5],1)",
    "io_inp": [
      2,
      -4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      1,
      -5,
      -3,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(sort_des([5, 3, 2]),11)),1))",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(sort_des(input),11)),1))"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [5, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 5])",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2, 0, 2, 4, -4]\noutput : list = [2, 4, -4]",
    "output": "generated_output : list = drop([-4, -2, 0, 2, 4, -4],3)",
    "io_inp": [
      -4,
      -2,
      0,
      2,
      4,
      -4
    ],
    "io_out": [
      2,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 0, 5, 1, 1, -4]\noutput : list = [-5, -4, 0, 1, 1, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc([-5, 0, 5, 1, 1, -4]))))",
    "io_inp": [
      -5,
      0,
      5,
      1,
      1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      0,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [12, -18, 7]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(add_n([2, -3, 3],-1),5),3)),2)",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      12,
      -18,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(add_n(input,-1),5),3)),2)"
  },
  {
    "input": "input : list = [-2, 2, 4, 0]\noutput : list = [-1, 3, 5, 1]",
    "output": "generated_output : list = add_n(add_n([-2, 2, 4, 0],2),-1)",
    "io_inp": [
      -2,
      2,
      4,
      0
    ],
    "io_out": [
      -1,
      3,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-1)"
  },
  {
    "input": "input : list = [1, -4, -1, 1, -3]\noutput : list = [-4, -3, -1, 1, 1]",
    "output": "generated_output : list = sort_asc([1, -4, -1, 1, -3])",
    "io_inp": [
      1,
      -4,
      -1,
      1,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5, 3, 5, -4]\noutput : list = [5, 4, 3, -4, -5]",
    "output": "generated_output : list = sort_des([4, -5, 3, 5, -4])",
    "io_inp": [
      4,
      -5,
      3,
      5,
      -4
    ],
    "io_out": [
      5,
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, -4, -2, -1]\noutput : list = [-6, 0, -6, -2, 0]",
    "output": "generated_output : list = mul_n(add_n(add_n([-4, -1, -4, -2, -1],-2),3),2)",
    "io_inp": [
      -4,
      -1,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -6,
      0,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-2),3),2)"
  },
  {
    "input": "input : list = [2, -5, -3, -3, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take(mul_n([2, -5, -3, -3, -2],-1),2)",
    "io_inp": [
      2,
      -5,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),2)"
  },
  {
    "input": "input : list = [-2, 2, -5, -4, 5]\noutput : list = [-5, -4, -2, 2, 5]",
    "output": "generated_output : list = sort_asc([-2, 2, -5, -4, 5])",
    "io_inp": [
      -2,
      2,
      -5,
      -4,
      5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, 5, -1, 3, -2]\noutput : list = [-1, 0, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(take([0, 2, 5, -1, 3, -2],4)),18)))",
    "io_inp": [
      0,
      2,
      5,
      -1,
      3,
      -2
    ],
    "io_out": [
      -1,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(take(input,4)),18)))"
  },
  {
    "input": "input : list = [-3, 3, 0, 0, 1]\noutput : list = [16, 11, 11, 26, -4]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(add_n([-3, 3, 0, 0, 1],3),5),4),33))",
    "io_inp": [
      -3,
      3,
      0,
      0,
      1
    ],
    "io_out": [
      16,
      11,
      11,
      26,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(add_n(input,3),5),4),33))"
  },
  {
    "input": "input : list = [-3, 2, 3, 3, 3, -5]\noutput : list = [-3, 2, 3, 3, 3, -5]",
    "output": "generated_output : list = take(mul_n([-3, 2, 3, 3, 3, -5],1),15)",
    "io_inp": [
      -3,
      2,
      3,
      3,
      3,
      -5
    ],
    "io_out": [
      -3,
      2,
      3,
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(input,1),15)"
  },
  {
    "input": "input : list = [-3, 3, -4, 1, -2]\noutput : list = [-1, -2, -3, -6, -8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n([-3, 3, -4, 1, -2],3),2))),-1)",
    "io_inp": [
      -3,
      3,
      -4,
      1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n(input,3),2))),-1)"
  },
  {
    "input": "input : list = [5, 0, 2, 4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 0, 2, 4],1)",
    "io_inp": [
      5,
      0,
      2,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [-6, 14, 6]",
    "output": "generated_output : list = sub_n(mul_n([-5, 5, 1],2),-4)",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      -6,
      14,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-4)"
  },
  {
    "input": "input : list = [3, 4, -2, -4, 1]\noutput : list = [4, -2, -4, 1]",
    "output": "generated_output : list = drop([3, 4, -2, -4, 1],1)",
    "io_inp": [
      3,
      4,
      -2,
      -4,
      1
    ],
    "io_out": [
      4,
      -2,
      -4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [8, 8]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(sub_n([3, 3],-2)),-3)),41)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(sub_n(input,-2)),-3)),41)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des([-2, -2])",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -5, -3, -2, 4]\noutput : list = [-5, -3, -2, 2, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(reverse([2, -5, -3, -2, 4]),-5),5)),26)",
    "io_inp": [
      2,
      -5,
      -3,
      -2,
      4
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(reverse(input),-5),5)),26)"
  },
  {
    "input": "input : list = [0, -1, -4, -4]\noutput : list = [-7, -7, -1, 1]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc([0, -1, -4, -4]),-2),-1),-1)",
    "io_inp": [
      0,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(input),-2),-1),-1)"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-2, 0, 8]",
    "output": "generated_output : list = sub_n(sort_asc([5, -3, -5]),-3)",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -2,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(add_n(add_n(reverse(take([-5, 2, -5],1)),-1),3),-5)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(reverse(take(input,1)),-1),3),-5)"
  },
  {
    "input": "input : list = [2, -5, 3, 0, -3]\noutput : list = [6, -1, 7, 4, 1]",
    "output": "generated_output : list = take(add_n(take(reverse(reverse([2, -5, 3, 0, -3])),21),4),18)",
    "io_inp": [
      2,
      -5,
      3,
      0,
      -3
    ],
    "io_out": [
      6,
      -1,
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(reverse(input)),21),4),18)"
  },
  {
    "input": "input : list = [-2, 3, -4, -1]\noutput : list = [-4, -2, -1, 3]",
    "output": "generated_output : list = sort_asc([-2, 3, -4, -1])",
    "io_inp": [
      -2,
      3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, 4, -3, -2]\noutput : list = [-6, -9, -9, -24, -27]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(add_n([3, -2, 4, -3, -2],2),-3),23),-3))",
    "io_inp": [
      3,
      -2,
      4,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -9,
      -9,
      -24,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(add_n(input,2),-3),23),-3))"
  },
  {
    "input": "input : list = [5, -1, -4, -2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(drop([5, -1, -4, -2, 1],3),1)),8))",
    "io_inp": [
      5,
      -1,
      -4,
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(drop(input,3),1)),8))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [5, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(reverse([-4, 0]),9))),-5)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(reverse(input),9))),-5)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [19, 39]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(mul_n([4, 2],5),2))),-1)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      19,
      39
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(mul_n(input,5),2))),-1)"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [-19, -1, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(reverse([4, -5, 1]),3)),-2),2)",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      -19,
      -1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(reverse(input),3)),-2),2)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [3, 0]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des([-3, -2]),1),-3),3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(input),1),-3),3)"
  },
  {
    "input": "input : list = [-4, -5, 0, -3]\noutput : list = [-3, -2, -1, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(sort_asc([-4, -5, 0, -3]),13)),3),5)",
    "io_inp": [
      -4,
      -5,
      0,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(sort_asc(input),13)),3),5)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(take(take(mul_n(drop([5, 5, 2],1),1),10),17))",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(drop(input,1),1),10),17))"
  },
  {
    "input": "input : list = [-1, -1, -4, -5, -1, 4]\noutput : list = [-2, -2, -5, -6, -2, 3]",
    "output": "generated_output : list = sub_n([-1, -1, -4, -5, -1, 4],1)",
    "io_inp": [
      -1,
      -1,
      -4,
      -5,
      -1,
      4
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -6,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sort_des(reverse(mul_n([5, 5],-2)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [5, -5, -2, 0, -3, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(take([5, -5, -2, 0, -3, 5],2)))),29)",
    "io_inp": [
      5,
      -5,
      -2,
      0,
      -3,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(take(input,2)))),29)"
  },
  {
    "input": "input : list = [2, -5, -5, 5, -1, -1]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(sort_des(drop(sort_asc(sort_asc([2, -5, -5, 5, -1, -1])),5)),1)",
    "io_inp": [
      2,
      -5,
      -5,
      5,
      -1,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(sort_asc(sort_asc(input)),5)),1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-8, -2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(mul_n([-4, -1],2)))))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [-3, 1, -1, 2, -4]\noutput : list = [-10, 8, -1, 5, -7]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(mul_n([-3, 1, -1, 2, -4],3),22),1),-1))",
    "io_inp": [
      -3,
      1,
      -1,
      2,
      -4
    ],
    "io_out": [
      -10,
      8,
      -1,
      5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(mul_n(input,3),22),1),-1))"
  },
  {
    "input": "input : list = [-4, -3, -5, -1, 0]\noutput : list = [2, 1, -3, -1, -2]",
    "output": "generated_output : list = reverse(sub_n(add_n([-4, -3, -5, -1, 0],5),3))",
    "io_inp": [
      -4,
      -3,
      -5,
      -1,
      0
    ],
    "io_out": [
      2,
      1,
      -3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,5),3))"
  },
  {
    "input": "input : list = [3, -4, -5, 5, 3, 2]\noutput : list = [2, 3, 3, 5]",
    "output": "generated_output : list = drop(sort_asc([3, -4, -5, 5, 3, 2]),2)",
    "io_inp": [
      3,
      -4,
      -5,
      5,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, 0, -2, 3, 4]\noutput : list = [-18, 2, 32, 32, 42]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(mul_n([3, 0, -2, 3, 4],-5)),2),-2),-1)",
    "io_inp": [
      3,
      0,
      -2,
      3,
      4
    ],
    "io_out": [
      -18,
      2,
      32,
      32,
      42
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(mul_n(input,-5)),2),-2),-1)"
  },
  {
    "input": "input : list = [-4, 2, 2, 0, 1, 0]\noutput : list = [1, 5, 5, 6, 7, 7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(reverse([-4, 2, 2, 0, 1, 0])),5),-5),5)",
    "io_inp": [
      -4,
      2,
      2,
      0,
      1,
      0
    ],
    "io_out": [
      1,
      5,
      5,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(reverse(input)),5),-5),5)"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take([5, -2, 0],1),-5)))",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(input,1),-5)))"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [-15, -3, 6]",
    "output": "generated_output : list = sort_asc(mul_n([-5, -1, 2],3))",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      -15,
      -3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,3))"
  },
  {
    "input": "input : list = [0, 3, -2, -2]\noutput : list = [-2, -5, -7, -7]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(sub_n([0, 3, -2, -2],4)),22)),-1)",
    "io_inp": [
      0,
      3,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(sub_n(input,4)),22)),-1)"
  },
  {
    "input": "input : list = [-2, -3, -2, -3]\noutput : list = [25, 25, 30, 30]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n([-2, -3, -2, -3],3),5))),5)",
    "io_inp": [
      -2,
      -3,
      -2,
      -3
    ],
    "io_out": [
      25,
      25,
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n(input,3),5))),5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sort_asc([2, -2])))),22)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sort_asc(input)))),22)"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = sort_asc([-3, 2, -4])",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -2, -3, -3, 4]\noutput : list = [7, -17, -17, -21, -21]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(mul_n([-2, -2, -3, -3, 4],4),-1),-3),-5))",
    "io_inp": [
      -2,
      -2,
      -3,
      -3,
      4
    ],
    "io_out": [
      7,
      -17,
      -17,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(mul_n(input,4),-1),-3),-5))"
  },
  {
    "input": "input : list = [3, 4, 0, 4, -3, -2]\noutput : list = [0, 0, -1, -4, -6, -7]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sort_des([3, 4, 0, 4, -3, -2]),23),3),1),26)",
    "io_inp": [
      3,
      4,
      0,
      4,
      -3,
      -2
    ],
    "io_out": [
      0,
      0,
      -1,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sort_des(input),23),3),1),26)"
  },
  {
    "input": "input : list = [5, 0, -2, -1]\noutput : list = [4, -1, -2, -3]",
    "output": "generated_output : list = add_n(sort_des([5, 0, -2, -1]),-1)",
    "io_inp": [
      5,
      0,
      -2,
      -1
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-2, -5, 2, 4, 3]\noutput : list = [1, -2, 5, 7, 6]",
    "output": "generated_output : list = add_n(sub_n([-2, -5, 2, 4, 3],-4),-1)",
    "io_inp": [
      -2,
      -5,
      2,
      4,
      3
    ],
    "io_out": [
      1,
      -2,
      5,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-5, -5, 2, -2, -2, 5]\noutput : list = [10, 3, 3, 7, 0, 0]",
    "output": "generated_output : list = add_n(add_n(reverse([-5, -5, 2, -2, -2, 5]),1),4)",
    "io_inp": [
      -5,
      -5,
      2,
      -2,
      -2,
      5
    ],
    "io_out": [
      10,
      3,
      3,
      7,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),1),4)"
  },
  {
    "input": "input : list = [2, 4, -1, 3]\noutput : list = [-6, -12, 3, -9]",
    "output": "generated_output : list = take(take(mul_n([2, 4, -1, 3],-3),18),27)",
    "io_inp": [
      2,
      4,
      -1,
      3
    ],
    "io_out": [
      -6,
      -12,
      3,
      -9
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-3),18),27)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-9, -57]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(mul_n([5, 1],3),-4),3),1))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -9,
      -57
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(mul_n(input,3),-4),3),1))"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [6, -1]",
    "output": "generated_output : list = take(sub_n(drop([-5, 3, -4],1),-3),25)",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,1),-3),25)"
  },
  {
    "input": "input : list = [-1, -4, -1, 3]\noutput : list = [6, -2, -2, -8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse([-1, -4, -1, 3]))),2)",
    "io_inp": [
      -1,
      -4,
      -1,
      3
    ],
    "io_out": [
      6,
      -2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(input))),2)"
  },
  {
    "input": "input : list = [3, 5, -1, -1, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take(sort_asc(take([3, 5, -1, -1, 2],1)),18))",
    "io_inp": [
      3,
      5,
      -1,
      -1,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(input,1)),18))"
  },
  {
    "input": "input : list = [-2, 1, -3, -5]\noutput : list = [-1, -4, -5, -7]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(add_n([-2, 1, -3, -5],-3)),1),-1),-1)",
    "io_inp": [
      -2,
      1,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(add_n(input,-3)),1),-1),-1)"
  },
  {
    "input": "input : list = [-5, -2, -4, 4, -4]\noutput : list = [-2, -4, 4, -4]",
    "output": "generated_output : list = take(drop([-5, -2, -4, 4, -4],1),15)",
    "io_inp": [
      -5,
      -2,
      -4,
      4,
      -4
    ],
    "io_out": [
      -2,
      -4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(input,1),15)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [-5, 20, 30]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_asc([2, -5, -3])),-2),-1),-5)",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      20,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_asc(input)),-2),-1),-5)"
  },
  {
    "input": "input : list = [3, 5, -4, 5, -5, -1]\noutput : list = [12, 10, 4, -4, -8, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(mul_n([3, 5, -4, 5, -5, -1],-2)),-2),46))",
    "io_inp": [
      3,
      5,
      -4,
      5,
      -5,
      -1
    ],
    "io_out": [
      12,
      10,
      4,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(mul_n(input,-2)),-2),46))"
  },
  {
    "input": "input : list = [-1, 0, 1, 2]\noutput : list = [3, 0, -3, -6]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc([-1, 0, 1, 2])),-3))",
    "io_inp": [
      -1,
      0,
      1,
      2
    ],
    "io_out": [
      3,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(drop(add_n(sort_asc([2, -1, -2]),5),2),4)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(sort_asc(input),5),2),4)"
  },
  {
    "input": "input : list = [-5, 2, 4, 0, -4, -4]\noutput : list = [0, 7, 9, 5]",
    "output": "generated_output : list = sub_n(take([-5, 2, 4, 0, -4, -4],4),-5)",
    "io_inp": [
      -5,
      2,
      4,
      0,
      -4,
      -4
    ],
    "io_out": [
      0,
      7,
      9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,4),-5)"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(add_n([2, -3, 0],-2),1))))",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(add_n(input,-2),1))))"
  },
  {
    "input": "input : list = [0, 5, 2, 1]\noutput : list = [0, 1, 4, -1]",
    "output": "generated_output : list = reverse(sub_n([0, 5, 2, 1],1))",
    "io_inp": [
      0,
      5,
      2,
      1
    ],
    "io_out": [
      0,
      1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [-1, -3, 0, 3, -2]\noutput : list = [-1, 0, 1, 2, 5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse([-1, -3, 0, 3, -2])),-4),-2)",
    "io_inp": [
      -1,
      -3,
      0,
      3,
      -2
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(input)),-4),-2)"
  },
  {
    "input": "input : list = [0, -2, 5, -3]\noutput : list = [-10, 0, 4, 6]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(sort_asc([0, -2, 5, -3])),-2),34))",
    "io_inp": [
      0,
      -2,
      5,
      -3
    ],
    "io_out": [
      -10,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(sort_asc(input)),-2),34))"
  },
  {
    "input": "input : list = [1, 4, 4, -1, 0]\noutput : list = [4, 4, -8, -12, -16]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_des([1, 4, 4, -1, 0])),-3)),4)",
    "io_inp": [
      1,
      4,
      4,
      -1,
      0
    ],
    "io_out": [
      4,
      4,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_des(input)),-3)),4)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 20]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc([0, -5]),1))),-5)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc(input),1))),-5)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-24, -3]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(add_n([-3, 4],4),-3),16)))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -24,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(add_n(input,4),-3),16)))"
  },
  {
    "input": "input : list = [-5, -1, -5, 0]\noutput : list = [-2, 2, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(drop([-5, -1, -5, 0],1)),1),-2)",
    "io_inp": [
      -5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(drop(input,1)),1),-2)"
  },
  {
    "input": "input : list = [4, 2, 3, -4, 5, -1]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = reverse(take(sort_des(take(drop([4, 2, 3, -4, 5, -1],3),7)),18))",
    "io_inp": [
      4,
      2,
      3,
      -4,
      5,
      -1
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(drop(input,3),7)),18))"
  },
  {
    "input": "input : list = [-1, 3, -3, 2]\noutput : list = [0, 2, 5, 6]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-1, 3, -3, 2],-3)))",
    "io_inp": [
      -1,
      3,
      -3,
      2
    ],
    "io_out": [
      0,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [-4, 4, 2, 1]\noutput : list = [-10, -15, -25, 15]",
    "output": "generated_output : list = reverse(mul_n(add_n([-4, 4, 2, 1],1),-5))",
    "io_inp": [
      -4,
      4,
      2,
      1
    ],
    "io_out": [
      -10,
      -15,
      -25,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,1),-5))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-3, -3, -12]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-1, -1, -4],3)))",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,3)))"
  },
  {
    "input": "input : list = [2, -1, -3]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(add_n(drop([2, -1, -3],1),3))",
    "io_inp": [
      2,
      -1,
      -3
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,1),3))"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [-1, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(sort_des([-4, 4, 2])),16)),-3)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(sort_des(input)),16)),-3)"
  },
  {
    "input": "input : list = [4, -3, 1]\noutput : list = [-5, -1, 2]",
    "output": "generated_output : list = take(add_n(reverse(reverse(sort_asc([4, -3, 1]))),-2),19)",
    "io_inp": [
      4,
      -3,
      1
    ],
    "io_out": [
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(sort_asc(input))),-2),19)"
  },
  {
    "input": "input : list = [-2, 3, -1, -4]\noutput : list = [-9, -7, -6, -2]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(sort_asc([-2, 3, -1, -4]),-5),7)))",
    "io_inp": [
      -2,
      3,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(sort_asc(input),-5),7)))"
  },
  {
    "input": "input : list = [-1, -4, -1, 1, 0, -3]\noutput : list = [0, 3, 4, 2, -1, 2]",
    "output": "generated_output : list = add_n(take(take(add_n(reverse([-1, -4, -1, 1, 0, -3]),4),36),28),-1)",
    "io_inp": [
      -1,
      -4,
      -1,
      1,
      0,
      -3
    ],
    "io_out": [
      0,
      3,
      4,
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(reverse(input),4),36),28),-1)"
  },
  {
    "input": "input : list = [-3, -2, 1, 2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n(sort_des(drop(take(add_n([-3, -2, 1, 2],-1),21),2)),-2)",
    "io_inp": [
      -3,
      -2,
      1,
      2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(take(add_n(input,-1),21),2)),-2)"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [1, 3, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-1, 5, 1],-2)))",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      1,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-3, -3, 1, 1]\noutput : list = [4, 4, 0, 0]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(sort_asc([-3, -3, 1, 1])),3)))",
    "io_inp": [
      -3,
      -3,
      1,
      1
    ],
    "io_out": [
      4,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [4, -6, -4]",
    "output": "generated_output : list = reverse(reverse(sub_n([5, -5, -3],1)))",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      4,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-1, 1, 0, -3, 1, -5]\noutput : list = [-3, -1, -2, -5, -1, -7]",
    "output": "generated_output : list = sub_n([-1, 1, 0, -3, 1, -5],2)",
    "io_inp": [
      -1,
      1,
      0,
      -3,
      1,
      -5
    ],
    "io_out": [
      -3,
      -1,
      -2,
      -5,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-10, 2]",
    "output": "generated_output : list = mul_n(mul_n(add_n([1, -5],4),2),-1)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,4),2),-1)"
  },
  {
    "input": "input : list = [-2, 5, 2, 1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(take([-2, 5, 2, 1, -1],1)),25)),1)",
    "io_inp": [
      -2,
      5,
      2,
      1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(take(input,1)),25)),1)"
  },
  {
    "input": "input : list = [-5, 1, -5, -5, -5]\noutput : list = [11, -1, 11, 11, 11]",
    "output": "generated_output : list = add_n(sub_n(mul_n([-5, 1, -5, -5, -5],-2),-3),-2)",
    "io_inp": [
      -5,
      1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      11,
      -1,
      11,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-2),-3),-2)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [18, -2, -22]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(mul_n([2, 0, -2],5),-2)),2))",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      18,
      -2,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(mul_n(input,5),-2)),2))"
  },
  {
    "input": "input : list = [-5, -4, 5, 1, -1, 1]\noutput : list = [11, 2, 1]",
    "output": "generated_output : list = add_n(add_n(reverse(take([-5, -4, 5, 1, -1, 1],3)),3),3)",
    "io_inp": [
      -5,
      -4,
      5,
      1,
      -1,
      1
    ],
    "io_out": [
      11,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(input,3)),3),3)"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [3, 5, 4]",
    "output": "generated_output : list = reverse([4, 5, 3])",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -3, -5, -4, -5]\noutput : list = [-2, 6, 10, 8, 10]",
    "output": "generated_output : list = mul_n([1, -3, -5, -4, -5],-2)",
    "io_inp": [
      1,
      -3,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -2,
      6,
      10,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(sort_asc([2, 4, 0]),1))),5)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(sort_asc(input),1))),5)"
  },
  {
    "input": "input : list = [-2, -4, -3, 1, 5]\noutput : list = [-3, -5, -4, 0, 4]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(add_n([-2, -4, -3, 1, 5],4))),1),-5)",
    "io_inp": [
      -2,
      -4,
      -3,
      1,
      5
    ],
    "io_out": [
      -3,
      -5,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(add_n(input,4))),1),-5)"
  },
  {
    "input": "input : list = [1, -2, 3, -1]\noutput : list = [5, -10, 15, -5]",
    "output": "generated_output : list = mul_n([1, -2, 3, -1],5)",
    "io_inp": [
      1,
      -2,
      3,
      -1
    ],
    "io_out": [
      5,
      -10,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 1, 1, 5]\noutput : list = [10, 2, 2, 2]",
    "output": "generated_output : list = take(sort_des(mul_n([1, 1, 1, 5],2)),14)",
    "io_inp": [
      1,
      1,
      1,
      5
    ],
    "io_out": [
      10,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,2)),14)"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [4, 4, 2]",
    "output": "generated_output : list = sort_des([4, 2, 4])",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, 1, -2]\noutput : list = [-2, -2, -5, -5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(sort_des([-2, 1, 1, -2]),6),4)),-1)",
    "io_inp": [
      -2,
      1,
      1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(sort_des(input),6),4)),-1)"
  },
  {
    "input": "input : list = [-1, -5, 3, -2]\noutput : list = [0, -40, -50, -80]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(reverse([-1, -5, 3, -2]),3),2)),5)",
    "io_inp": [
      -1,
      -5,
      3,
      -2
    ],
    "io_out": [
      0,
      -40,
      -50,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(reverse(input),3),2)),5)"
  },
  {
    "input": "input : list = [1, -3, 1, 2, 5, 2]\noutput : list = [-3, -7, -3, -2, 1, -2]",
    "output": "generated_output : list = add_n([1, -3, 1, 2, 5, 2],-4)",
    "io_inp": [
      1,
      -3,
      1,
      2,
      5,
      2
    ],
    "io_out": [
      -3,
      -7,
      -3,
      -2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [8, -10, -4]",
    "output": "generated_output : list = mul_n(add_n([-5, 4, 1],1),-2)",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      8,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-2)"
  },
  {
    "input": "input : list = [-2, 5, -2, 4, 5]\noutput : list = [-2, -2, 5]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(take([-2, 5, -2, 4, 5],3))),26))",
    "io_inp": [
      -2,
      5,
      -2,
      4,
      5
    ],
    "io_out": [
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(take(input,3))),26))"
  },
  {
    "input": "input : list = [-1, 1, 1, -5]\noutput : list = [-8, -6, -6, -12]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(mul_n([-1, 1, 1, -5],1),3),-5),1),33)",
    "io_inp": [
      -1,
      1,
      1,
      -5
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(mul_n(input,1),3),-5),1),33)"
  },
  {
    "input": "input : list = [4, 5, -4, -3]\noutput : list = [5, 4, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([4, 5, -4, -3])))",
    "io_inp": [
      4,
      5,
      -4,
      -3
    ],
    "io_out": [
      5,
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-7]",
    "output": "generated_output : list = drop(sub_n(mul_n([-5, 2],-1),5),1)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = drop(sub_n(mul_n(input,-1),5),1)"
  },
  {
    "input": "input : list = [1, 4, -5, 4, 2]\noutput : list = [5, 5, 3, 2, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(add_n([1, 4, -5, 4, 2],-4))),-1),-4)",
    "io_inp": [
      1,
      4,
      -5,
      4,
      2
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(add_n(input,-4))),-1),-4)"
  },
  {
    "input": "input : list = [-3, -5, 1, -4]\noutput : list = [5, 1, 0, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(sort_des([-3, -5, 1, -4]),-5),5),-3),-3)",
    "io_inp": [
      -3,
      -5,
      1,
      -4
    ],
    "io_out": [
      5,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(sort_des(input),-5),5),-3),-3)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des([5, -4])",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5, 4, -5, -3]\noutput : list = [-2, 5, 4, -5, -3]",
    "output": "generated_output : list = reverse(reverse([-2, 5, 4, -5, -3]))",
    "io_inp": [
      -2,
      5,
      4,
      -5,
      -3
    ],
    "io_out": [
      -2,
      5,
      4,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -5, 3, 5, 0, 2]\noutput : list = [6, 4, 3, 1, -2, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc([-3, -5, 3, 5, 0, 2])),4),-3)",
    "io_inp": [
      -3,
      -5,
      3,
      5,
      0,
      2
    ],
    "io_out": [
      6,
      4,
      3,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(input)),4),-3)"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [-4, -2, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_des([-3, -5, 5]),-2),-1),1))",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      -4,
      -2,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_des(input),-2),-1),1))"
  },
  {
    "input": "input : list = [0, 1, 1, -1, -3]\noutput : list = [-3, -1, 0, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sub_n([0, 1, 1, -1, -3],-5)))),5)",
    "io_inp": [
      0,
      1,
      1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sub_n(input,-5)))),5)"
  },
  {
    "input": "input : list = [2, -2, 4, 5, -5, 2]\noutput : list = [-5, -2, 2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(sort_des([2, -2, 4, 5, -5, 2]),1)),1))",
    "io_inp": [
      2,
      -2,
      4,
      5,
      -5,
      2
    ],
    "io_out": [
      -5,
      -2,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(sort_des(input),1)),1))"
  },
  {
    "input": "input : list = [3, 5, 0, -4, 3, -5]\noutput : list = [17, 9, 9, -3, -19, -23]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(reverse([3, 5, 0, -4, 3, -5])),4),-3),39)",
    "io_inp": [
      3,
      5,
      0,
      -4,
      3,
      -5
    ],
    "io_out": [
      17,
      9,
      9,
      -3,
      -19,
      -23
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(reverse(input)),4),-3),39)"
  },
  {
    "input": "input : list = [2, 0, 2, 5, -2, -1]\noutput : list = [3, 0, 0, -2, -3, -4]",
    "output": "generated_output : list = take(sub_n(sort_des([2, 0, 2, 5, -2, -1]),2),24)",
    "io_inp": [
      2,
      0,
      2,
      5,
      -2,
      -1
    ],
    "io_out": [
      3,
      0,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),2),24)"
  },
  {
    "input": "input : list = [4, 1, -1, 4, -1]\noutput : list = [18, 18, 6, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(sort_asc([4, 1, -1, 4, -1])),4),-2))",
    "io_inp": [
      4,
      1,
      -1,
      4,
      -1
    ],
    "io_out": [
      18,
      18,
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(sort_asc(input)),4),-2))"
  },
  {
    "input": "input : list = [1, 0, 2, 0]\noutput : list = [0, 2, 0, 1]",
    "output": "generated_output : list = reverse([1, 0, 2, 0])",
    "io_inp": [
      1,
      0,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [-2, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(mul_n([2, 4, 3],-1)))))",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [25, 17]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(sort_des([5, 3]),4)),-5),34)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      25,
      17
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(sort_des(input),4)),-5),34)"
  },
  {
    "input": "input : list = [-1, -3, 4, -1, 1, -2]\noutput : list = [-1, -3, 4, -1, 1, -2]",
    "output": "generated_output : list = take(sub_n(add_n([-1, -3, 4, -1, 1, -2],-3),-3),34)",
    "io_inp": [
      -1,
      -3,
      4,
      -1,
      1,
      -2
    ],
    "io_out": [
      -1,
      -3,
      4,
      -1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-3),-3),34)"
  },
  {
    "input": "input : list = [-2, 0, -3, 5, -5, 5]\noutput : list = [10, 2, 14, -18, 22, -18]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(mul_n([-2, 0, -3, 5, -5, 5],-4),2),-2),-5),3)",
    "io_inp": [
      -2,
      0,
      -3,
      5,
      -5,
      5
    ],
    "io_out": [
      10,
      2,
      14,
      -18,
      22,
      -18
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(mul_n(input,-4),2),-2),-5),3)"
  },
  {
    "input": "input : list = [1, -2, -5, 2]\noutput : list = [0, -3, -6, 1]",
    "output": "generated_output : list = sub_n([1, -2, -5, 2],1)",
    "io_inp": [
      1,
      -2,
      -5,
      2
    ],
    "io_out": [
      0,
      -3,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [65, -7, -31]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(mul_n([-1, -3, 5],3),4),-5)))",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      65,
      -7,
      -31
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(mul_n(input,3),4),-5)))"
  },
  {
    "input": "input : list = [5, 4, -4, -5]\noutput : list = [-9, -8, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc([5, 4, -4, -5]),-4)",
    "io_inp": [
      5,
      4,
      -4,
      -5
    ],
    "io_out": [
      -9,
      -8,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [2, -3, 5, 5, 1]\noutput : list = [-9, -4]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take([2, -3, 5, 5, 1],2),2),4))",
    "io_inp": [
      2,
      -3,
      5,
      5,
      1
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(input,2),2),4))"
  },
  {
    "input": "input : list = [-1, -1, -1, 1]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(drop([-1, -1, -1, 1],1)),-1)",
    "io_inp": [
      -1,
      -1,
      -1,
      1
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [2, 4, -3, 2, -2]\noutput : list = [16, -4, 12]",
    "output": "generated_output : list = mul_n(mul_n(add_n(drop([2, 4, -3, 2, -2],2),-1),4),-1)",
    "io_inp": [
      2,
      4,
      -3,
      2,
      -2
    ],
    "io_out": [
      16,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(drop(input,2),-1),4),-1)"
  },
  {
    "input": "input : list = [-4, 2, -1, 4, -5, 5]\noutput : list = [15, -15, 0, -25, 20, -30]",
    "output": "generated_output : list = take(add_n(mul_n([-4, 2, -1, 4, -5, 5],-5),-5),38)",
    "io_inp": [
      -4,
      2,
      -1,
      4,
      -5,
      5
    ],
    "io_out": [
      15,
      -15,
      0,
      -25,
      20,
      -30
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,-5),-5),38)"
  },
  {
    "input": "input : list = [2, -5, 0]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([2, -5, 0])))",
    "io_inp": [
      2,
      -5,
      0
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [5, 3, 2, -3, 5, 3]\noutput : list = [-12, 8, 12, 20]",
    "output": "generated_output : list = drop(reverse(mul_n([5, 3, 2, -3, 5, 3],4)),2)",
    "io_inp": [
      5,
      3,
      2,
      -3,
      5,
      3
    ],
    "io_out": [
      -12,
      8,
      12,
      20
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(input,4)),2)"
  },
  {
    "input": "input : list = [-4, -2, 0, -5, 5, -2]\noutput : list = [-2, 5, -5, 0, -2, -4]",
    "output": "generated_output : list = reverse([-4, -2, 0, -5, 5, -2])",
    "io_inp": [
      -4,
      -2,
      0,
      -5,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      -5,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 1, -1, 2]\noutput : list = [4, 1, -1, 2]",
    "output": "generated_output : list = mul_n([4, 1, -1, 2],1)",
    "io_inp": [
      4,
      1,
      -1,
      2
    ],
    "io_out": [
      4,
      1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, -3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(sort_des(drop([0, -3, 1],1)))",
    "io_inp": [
      0,
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, 2, 0, 5, -5, 2]\noutput : list = [-100, -40, -40, 0, 80, 100]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-4, 2, 0, 5, -5, 2]),-4),5)",
    "io_inp": [
      -4,
      2,
      0,
      5,
      -5,
      2
    ],
    "io_out": [
      -100,
      -40,
      -40,
      0,
      80,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-4),5)"
  },
  {
    "input": "input : list = [1, 2, -4, 5]\noutput : list = [-7, -1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(drop([1, 2, -4, 5],1)),3)",
    "io_inp": [
      1,
      2,
      -4,
      5
    ],
    "io_out": [
      -7,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,1)),3)"
  },
  {
    "input": "input : list = [-1, -4, -3, 3, 5, 1]\noutput : list = [-5, -1, 3, 7, 11, 13]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(reverse([-1, -4, -3, 3, 5, 1]),-2),-5)))",
    "io_inp": [
      -1,
      -4,
      -3,
      3,
      5,
      1
    ],
    "io_out": [
      -5,
      -1,
      3,
      7,
      11,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(reverse(input),-2),-5)))"
  },
  {
    "input": "input : list = [5, 5, -2, 0, -2, 2]\noutput : list = [12, 12, 14, 16, 19, 19]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(add_n([5, 5, -2, 0, -2, 2],4),1),-4),5))",
    "io_inp": [
      5,
      5,
      -2,
      0,
      -2,
      2
    ],
    "io_out": [
      12,
      12,
      14,
      16,
      19,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(add_n(input,4),1),-4),5))"
  },
  {
    "input": "input : list = [-1, -5, -3, -1, -5, -3]\noutput : list = [-3, -3, -5, -5, -7, -7]",
    "output": "generated_output : list = add_n(sort_des([-1, -5, -3, -1, -5, -3]),-2)",
    "io_inp": [
      -1,
      -5,
      -3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-4, 5, 0, -4, 5, 0]\noutput : list = [0, -25, 20, 0, -25, 20]",
    "output": "generated_output : list = reverse(mul_n([-4, 5, 0, -4, 5, 0],-5))",
    "io_inp": [
      -4,
      5,
      0,
      -4,
      5,
      0
    ],
    "io_out": [
      0,
      -25,
      20,
      0,
      -25,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-6, 18]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sort_des([-2, 4]),-3),-4),-2),41)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -6,
      18
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sort_des(input),-3),-4),-2),41)"
  },
  {
    "input": "input : list = [5, 1, 3, -2]\noutput : list = [10, 2, 6, -4]",
    "output": "generated_output : list = mul_n([5, 1, 3, -2],2)",
    "io_inp": [
      5,
      1,
      3,
      -2
    ],
    "io_out": [
      10,
      2,
      6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, -1, 0, -5, -1, 4]\noutput : list = [5, -20, -40]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse(drop([1, -1, 0, -5, -1, 4],3)),3),3),5)",
    "io_inp": [
      1,
      -1,
      0,
      -5,
      -1,
      4
    ],
    "io_out": [
      5,
      -20,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(drop(input,3)),3),3),5)"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [9, 10, 11]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(add_n([-3, -1, -2],5),1)),3),3)",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      9,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(add_n(input,5),1)),3),3)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, -4])",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, 4, 4, -1, 4]\noutput : list = [2, 2, 2, -3, 2]",
    "output": "generated_output : list = add_n(sub_n(drop([4, 4, 4, 4, -1, 4],1),4),2)",
    "io_inp": [
      4,
      4,
      4,
      4,
      -1,
      4
    ],
    "io_out": [
      2,
      2,
      2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),4),2)"
  },
  {
    "input": "input : list = [2, -1, 4, -5, 4, 2]\noutput : list = [6, 6, 4, 4, 1, -3]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(add_n([2, -1, 4, -5, 4, 2],4))),2),1)",
    "io_inp": [
      2,
      -1,
      4,
      -5,
      4,
      2
    ],
    "io_out": [
      6,
      6,
      4,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(add_n(input,4))),2),1)"
  },
  {
    "input": "input : list = [0, 1, -2, -3]\noutput : list = [28, 24, 12, 16]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(add_n([0, 1, -2, -3],-3)),-4),-4),24)",
    "io_inp": [
      0,
      1,
      -2,
      -3
    ],
    "io_out": [
      28,
      24,
      12,
      16
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(add_n(input,-3)),-4),-4),24)"
  },
  {
    "input": "input : list = [-1, 2, 2, 0, -3, -4]\noutput : list = [-2, -2, 0, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sort_des([-1, 2, 2, 0, -3, -4])),-1)))",
    "io_inp": [
      -1,
      2,
      2,
      0,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -2,
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-3, -1, -3, -4, -5, -3]\noutput : list = [-5, -4, -3, -3, -3, -1]",
    "output": "generated_output : list = sort_asc([-3, -1, -3, -4, -5, -3])",
    "io_inp": [
      -3,
      -1,
      -3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, -1, 4, 3]\noutput : list = [-4, -1, 0, 3, 4]",
    "output": "generated_output : list = reverse(sort_des([0, -4, -1, 4, 3]))",
    "io_inp": [
      0,
      -4,
      -1,
      4,
      3
    ],
    "io_out": [
      -4,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -1, -1, 1]\noutput : list = [12, 12]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(take([-1, -1, -1, 1],2),4)),-3))",
    "io_inp": [
      -1,
      -1,
      -1,
      1
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(take(input,2),4)),-3))"
  },
  {
    "input": "input : list = [5, -1, 0, -5, -1]\noutput : list = [-1, -5, 0, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, 0, -5, -1])",
    "io_inp": [
      5,
      -1,
      0,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      0,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 2, 2, 0]\noutput : list = [-2, -2, -4, -9, -9]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(sub_n([-5, -5, 2, 2, 0],5))),1),-1)",
    "io_inp": [
      -5,
      -5,
      2,
      2,
      0
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(sub_n(input,5))),1),-1)"
  },
  {
    "input": "input : list = [5, 5, -3, -4, 0, 1]\noutput : list = [5, 5]",
    "output": "generated_output : list = drop(take(sort_asc([5, 5, -3, -4, 0, 1]),17),4)",
    "io_inp": [
      5,
      5,
      -3,
      -4,
      0,
      1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(input),17),4)"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [5, -2, 4]",
    "output": "generated_output : list = reverse([4, -2, 5])",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, 4]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(take([0, 1, 4],1),8))))",
    "io_inp": [
      0,
      1,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(take(input,1),8))))"
  },
  {
    "input": "input : list = [3, 2, 1]\noutput : list = [7, 6, 5]",
    "output": "generated_output : list = add_n([3, 2, 1],4)",
    "io_inp": [
      3,
      2,
      1
    ],
    "io_out": [
      7,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [1, 5, 5]\noutput : list = [3, 7, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([1, 5, 5]),-2),-4)",
    "io_inp": [
      1,
      5,
      5
    ],
    "io_out": [
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),-2),-4)"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [-3, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, -3])",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, 2, 4, -4]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(drop(sub_n(sort_asc(reverse([-4, -5, 2, 4, -4])),1),3),28)",
    "io_inp": [
      -4,
      -5,
      2,
      4,
      -4
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(sort_asc(reverse(input)),1),3),28)"
  },
  {
    "input": "input : list = [-4, -3, 0]\noutput : list = [-9, -14]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sub_n([-4, -3, 0],-2),5),2),4))",
    "io_inp": [
      -4,
      -3,
      0
    ],
    "io_out": [
      -9,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sub_n(input,-2),5),2),4))"
  },
  {
    "input": "input : list = [4, -1, 0, 3, -4, 5]\noutput : list = [5, 8, 1, 10]",
    "output": "generated_output : list = sub_n(drop([4, -1, 0, 3, -4, 5],2),-5)",
    "io_inp": [
      4,
      -1,
      0,
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      8,
      1,
      10
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [8, 2, 6]",
    "output": "generated_output : list = sub_n([3, -3, 1],-5)",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      8,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, 1, 4, -4]\noutput : list = [5, 20, 25, 45]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des(sort_asc([0, 1, 4, -4])),5),-5),47)",
    "io_inp": [
      0,
      1,
      4,
      -4
    ],
    "io_out": [
      5,
      20,
      25,
      45
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(sort_asc(input)),5),-5),47)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-8, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n([-1, 5],-1)),1),2))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n(input,-1)),1),2))"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [-11, 24]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(drop([1, -3, 4],1),5)),4),26)",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      -11,
      24
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(drop(input,1),5)),4),26)"
  },
  {
    "input": "input : list = [5, 3, 5, -2, -4]\noutput : list = [0, -2, 0, -7, -9]",
    "output": "generated_output : list = sub_n([5, 3, 5, -2, -4],5)",
    "io_inp": [
      5,
      3,
      5,
      -2,
      -4
    ],
    "io_out": [
      0,
      -2,
      0,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, 0, -1, -1, 0]\noutput : list = [5, 5, 10, 10, 15]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des([-2, 0, -1, -1, 0]),19)),1),-5)",
    "io_inp": [
      -2,
      0,
      -1,
      -1,
      0
    ],
    "io_out": [
      5,
      5,
      10,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des(input),19)),1),-5)"
  },
  {
    "input": "input : list = [-4, -3, -5, -1, -3, 0]\noutput : list = [-3, -4]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(take([-4, -3, -5, -1, -3, 0],2)))),43)",
    "io_inp": [
      -4,
      -3,
      -5,
      -1,
      -3,
      0
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(take(input,2)))),43)"
  },
  {
    "input": "input : list = [-4, -3, 2, 2]\noutput : list = [8, 16, 56, 56]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n([-4, -3, 2, 2],5),-2),23),-4)",
    "io_inp": [
      -4,
      -3,
      2,
      2
    ],
    "io_out": [
      8,
      16,
      56,
      56
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(input,5),-2),23),-4)"
  },
  {
    "input": "input : list = [0, 5, 1, 0, -3, -5]\noutput : list = [4, 0, -1, -1, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sort_des([0, 5, 1, 0, -3, -5]),13),6),1))",
    "io_inp": [
      0,
      5,
      1,
      0,
      -3,
      -5
    ],
    "io_out": [
      4,
      0,
      -1,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sort_des(input),13),6),1))"
  },
  {
    "input": "input : list = [3, 4, 0, 3]\noutput : list = [4, 3, 3, 0]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(reverse([3, 4, 0, 3])),-4)),4)",
    "io_inp": [
      3,
      4,
      0,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(reverse(input)),-4)),4)"
  },
  {
    "input": "input : list = [1, 0, -2, -5]\noutput : list = [-7, -1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(mul_n([1, 0, -2, -5],2)),-3)))",
    "io_inp": [
      1,
      0,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(mul_n(input,2)),-3)))"
  },
  {
    "input": "input : list = [2, 4, -4, 2]\noutput : list = [-4, 2, 2, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(reverse([2, 4, -4, 2])))),43)",
    "io_inp": [
      2,
      4,
      -4,
      2
    ],
    "io_out": [
      -4,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(reverse(input)))),43)"
  },
  {
    "input": "input : list = [-5, -1, -5, -2]\noutput : list = [54, 81, 45, 81]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(mul_n([-5, -1, -5, -2],-1),-4)),3),3)",
    "io_inp": [
      -5,
      -1,
      -5,
      -2
    ],
    "io_out": [
      54,
      81,
      45,
      81
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(mul_n(input,-1),-4)),3),3)"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [1, 9, 2]",
    "output": "generated_output : list = add_n(mul_n([3, -5, 2],-1),4)",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      1,
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),4)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [-3, 6, 6]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(sort_asc([5, 5, -4]),-4)),-5))",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(sort_asc(input),-4)),-5))"
  },
  {
    "input": "input : list = [0, 5, -3]\noutput : list = [-7, 1]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(drop([0, 5, -3],1),-4)),20),1)",
    "io_inp": [
      0,
      5,
      -3
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(drop(input,1),-4)),20),1)"
  },
  {
    "input": "input : list = [5, -5, 4, -2, -1, 3]\noutput : list = [-6, 3, 6, 21, 24]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(sub_n([5, -5, 4, -2, -1, 3],-3),5))),3)",
    "io_inp": [
      5,
      -5,
      4,
      -2,
      -1,
      3
    ],
    "io_out": [
      -6,
      3,
      6,
      21,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(sub_n(input,-3),5))),3)"
  },
  {
    "input": "input : list = [0, -2, -3, 4]\noutput : list = [-2, -3, 4]",
    "output": "generated_output : list = take(drop([0, -2, -3, 4],1),11)",
    "io_inp": [
      0,
      -2,
      -3,
      4
    ],
    "io_out": [
      -2,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(drop(input,1),11)"
  },
  {
    "input": "input : list = [1, -3, 5, 3, 0, 3]\noutput : list = [5, 3, 3, 1, 0, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(mul_n([1, -3, 5, 3, 0, 3],1)),15)))",
    "io_inp": [
      1,
      -3,
      5,
      3,
      0,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(mul_n(input,1)),15)))"
  },
  {
    "input": "input : list = [0, -4, -4, -3, -4]\noutput : list = [6, 3, 2, 2, 2]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(reverse([0, -4, -4, -3, -4]),22),4),2))",
    "io_inp": [
      0,
      -4,
      -4,
      -3,
      -4
    ],
    "io_out": [
      6,
      3,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(reverse(input),22),4),2))"
  },
  {
    "input": "input : list = [-5, 2, -3, 1, -4]\noutput : list = [-28, -8, -24, -4, -32]",
    "output": "generated_output : list = take(take(mul_n(add_n(reverse([-5, 2, -3, 1, -4]),-3),4),31),41)",
    "io_inp": [
      -5,
      2,
      -3,
      1,
      -4
    ],
    "io_out": [
      -28,
      -8,
      -24,
      -4,
      -32
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(reverse(input),-3),4),31),41)"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [1, 1, -23]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(add_n([3, -5, -5],5),-3))),1)",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      1,
      1,
      -23
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(add_n(input,5),-3))),1)"
  },
  {
    "input": "input : list = [-3, 4, 0, 1, -4]\noutput : list = [-4, -1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_asc([-3, 4, 0, 1, -4]),-1)),31))",
    "io_inp": [
      -3,
      4,
      0,
      1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_asc(input),-1)),31))"
  },
  {
    "input": "input : list = [-1, 0, -2, 2]\noutput : list = [-3, -1, 0, 1]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_asc([-1, 0, -2, 2]),4),5),-1))",
    "io_inp": [
      -1,
      0,
      -2,
      2
    ],
    "io_out": [
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_asc(input),4),5),-1))"
  },
  {
    "input": "input : list = [-2, -3, 2, -1, -4, -2]\noutput : list = [0, -3, -4, -4, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(add_n([-2, -3, 2, -1, -4, -2],-3),1))",
    "io_inp": [
      -2,
      -3,
      2,
      -1,
      -4,
      -2
    ],
    "io_out": [
      0,
      -3,
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-3),1))"
  },
  {
    "input": "input : list = [2, 0, -5, 4, 5]\noutput : list = [0]",
    "output": "generated_output : list = drop(reverse(sort_des(sub_n(drop([2, 0, -5, 4, 5],1),5))),3)",
    "io_inp": [
      2,
      0,
      -5,
      4,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_des(sub_n(drop(input,1),5))),3)"
  },
  {
    "input": "input : list = [1, -5, -5, 5]\noutput : list = [2, -4, -4]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des([1, -5, -5, 5])),1),3))",
    "io_inp": [
      1,
      -5,
      -5,
      5
    ],
    "io_out": [
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des(input)),1),3))"
  },
  {
    "input": "input : list = [-5, 1, 1, -3, 1, 4]\noutput : list = [-3, 0, 4, 0, 0, 6]",
    "output": "generated_output : list = add_n(take(reverse(take(mul_n([-5, 1, 1, -3, 1, 4],-1),14)),30),1)",
    "io_inp": [
      -5,
      1,
      1,
      -3,
      1,
      4
    ],
    "io_out": [
      -3,
      0,
      4,
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(mul_n(input,-1),14)),30),1)"
  },
  {
    "input": "input : list = [0, -1, -1, -1, -4, -2]\noutput : list = [0, -3, -3, -3, -6, -12]",
    "output": "generated_output : list = mul_n(sort_des([0, -1, -1, -1, -4, -2]),3)",
    "io_inp": [
      0,
      -1,
      -1,
      -1,
      -4,
      -2
    ],
    "io_out": [
      0,
      -3,
      -3,
      -3,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [5, 4, -5, -3]\noutput : list = [0, -1, -10, -8]",
    "output": "generated_output : list = add_n([5, 4, -5, -3],-5)",
    "io_inp": [
      5,
      4,
      -5,
      -3
    ],
    "io_out": [
      0,
      -1,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(sub_n([1, 1, 2],-1),15)),5))",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(sub_n(input,-1),15)),5))"
  },
  {
    "input": "input : list = [-5, -2, 4, -3]\noutput : list = [-1, 5, 6, 8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des([-5, -2, 4, -3]),-3)),-1)",
    "io_inp": [
      -5,
      -2,
      4,
      -3
    ],
    "io_out": [
      -1,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(input),-3)),-1)"
  },
  {
    "input": "input : list = [2, 1, 4, -4, 2]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(take(take(take(mul_n([2, 1, 4, -4, 2],4),12),1),11))",
    "io_inp": [
      2,
      1,
      4,
      -4,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(mul_n(input,4),12),1),11))"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(drop([-1, 0, 1],1))),10),-1)",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(drop(input,1))),10),-1)"
  },
  {
    "input": "input : list = [-5, 2, 1, -4, 2, 3]\noutput : list = [-13, -8, 22, -3, -8, 27]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(sub_n([-5, 2, 1, -4, 2, 3],-3),-3),-5)),2)",
    "io_inp": [
      -5,
      2,
      1,
      -4,
      2,
      3
    ],
    "io_out": [
      -13,
      -8,
      22,
      -3,
      -8,
      27
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(sub_n(input,-3),-3),-5)),2)"
  },
  {
    "input": "input : list = [2, -3, 1, -4, -5]\noutput : list = [-10, -9, -4, -8, -3]",
    "output": "generated_output : list = add_n(reverse([2, -3, 1, -4, -5]),-5)",
    "io_inp": [
      2,
      -3,
      1,
      -4,
      -5
    ],
    "io_out": [
      -10,
      -9,
      -4,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [10, 5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(reverse([0, 1]),5),5)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(reverse(input),5),5)))"
  },
  {
    "input": "input : list = [4, -4, 4, -4, 3, 4]\noutput : list = [-7, 1, -7, 1]",
    "output": "generated_output : list = add_n(reverse(take([4, -4, 4, -4, 3, 4],4)),-3)",
    "io_inp": [
      4,
      -4,
      4,
      -4,
      3,
      4
    ],
    "io_out": [
      -7,
      1,
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,4)),-3)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des([-4, 1])",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, -2, -1]\noutput : list = [-5, -3, -2, -1]",
    "output": "generated_output : list = take(sort_asc([-5, -3, -2, -1]),17)",
    "io_inp": [
      -5,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),17)"
  },
  {
    "input": "input : list = [-4, 2, -5, -4]\noutput : list = [-4, -5, 2, -4]",
    "output": "generated_output : list = reverse([-4, 2, -5, -4])",
    "io_inp": [
      -4,
      2,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4, 0, -5, -3, 5]\noutput : list = [0, 2, 4, 10, 18, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_des([-4, 4, 0, -5, -3, 5]),8),-5),2))",
    "io_inp": [
      -4,
      4,
      0,
      -5,
      -3,
      5
    ],
    "io_out": [
      0,
      2,
      4,
      10,
      18,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_des(input),8),-5),2))"
  },
  {
    "input": "input : list = [-3, -2, -5, -5, 1]\noutput : list = [-7, -6, -9, -9, -3]",
    "output": "generated_output : list = sub_n([-3, -2, -5, -5, 1],4)",
    "io_inp": [
      -3,
      -2,
      -5,
      -5,
      1
    ],
    "io_out": [
      -7,
      -6,
      -9,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-7, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-1, -5],2)))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,2)))"
  },
  {
    "input": "input : list = [3, -5, -1, -3, -1]\noutput : list = [-10, 6, -2, 2, -2]",
    "output": "generated_output : list = take(mul_n(sub_n([3, -5, -1, -3, -1],-2),-2),34)",
    "io_inp": [
      3,
      -5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -10,
      6,
      -2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,-2),-2),34)"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_asc([4, -1, -2]),-2),-4),-5))",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_asc(input),-2),-4),-5))"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [-60, -24, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_asc([0, 5, 2]),4),-3)))",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      -60,
      -24,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_asc(input),4),-3)))"
  },
  {
    "input": "input : list = [1, 0, 1, 0]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(reverse([1, 0, 1, 0]),18)),3),-5)",
    "io_inp": [
      1,
      0,
      1,
      0
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(reverse(input),18)),3),-5)"
  },
  {
    "input": "input : list = [1, -4, 3]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([1, -4, 3])),1)",
    "io_inp": [
      1,
      -4,
      3
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-5, 2, -2, 1, 4]\noutput : list = [-2, 1, 4, 5, 7]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(add_n([-5, 2, -2, 1, 4],3)),10)))",
    "io_inp": [
      -5,
      2,
      -2,
      1,
      4
    ],
    "io_out": [
      -2,
      1,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(add_n(input,3)),10)))"
  },
  {
    "input": "input : list = [-2, 5, 1]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(take([-2, 5, 1],1),-4),4),-4),3)",
    "io_inp": [
      -2,
      5,
      1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(take(input,1),-4),4),-4),3)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-2, 2]",
    "output": "generated_output : list = add_n(mul_n([4, 0],-1),2)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),2)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = take(sort_asc([1, -5]),7)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [3, 3, -5, 1, 3, -3]\noutput : list = [-4, -2, 2, 4, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n([3, 3, -5, 1, 3, -3],-1))",
    "io_inp": [
      3,
      3,
      -5,
      1,
      3,
      -3
    ],
    "io_out": [
      -4,
      -2,
      2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [4, -1, 3, 3, -1, -5]\noutput : list = [5]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(take([4, -1, 3, 3, -1, -5],1),1),-3),2),35)",
    "io_inp": [
      4,
      -1,
      3,
      3,
      -1,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(take(input,1),1),-3),2),35)"
  },
  {
    "input": "input : list = [-2, -1, -2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = drop([-2, -1, -2, 0],2)",
    "io_inp": [
      -2,
      -1,
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -2, 2, 5]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = drop([2, -2, 2, 5],1)",
    "io_inp": [
      2,
      -2,
      2,
      5
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -3, -4, -5, 0]\noutput : list = [-1, -4, -7, -8, -9]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(sort_asc([3, -3, -4, -5, 0]),15)),-2),2)",
    "io_inp": [
      3,
      -3,
      -4,
      -5,
      0
    ],
    "io_out": [
      -1,
      -4,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(sort_asc(input),15)),-2),2)"
  },
  {
    "input": "input : list = [-5, -2, -1, 0, 1, 0]\noutput : list = [0, 4, 0, -4, -8, -20]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n([-5, -2, -1, 0, 1, 0],1)),4),25)",
    "io_inp": [
      -5,
      -2,
      -1,
      0,
      1,
      0
    ],
    "io_out": [
      0,
      4,
      0,
      -4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(input,1)),4),25)"
  },
  {
    "input": "input : list = [1, -4, -3, 1, -2]\noutput : list = [-5, -10, -15, -30, -30]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sub_n([1, -4, -3, 1, -2],-5),22),-5)))",
    "io_inp": [
      1,
      -4,
      -3,
      1,
      -2
    ],
    "io_out": [
      -5,
      -10,
      -15,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sub_n(input,-5),22),-5)))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -15]",
    "output": "generated_output : list = sort_des(mul_n(add_n([3, -3],2),-3))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,2),-3))"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [1, -6, -7]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n([-5, -4, 3],2)),-4)),-4)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n(input,2)),-4)),-4)"
  },
  {
    "input": "input : list = [0, -3, 3, 0]\noutput : list = [-3, -6, 0, -3]",
    "output": "generated_output : list = add_n([0, -3, 3, 0],-3)",
    "io_inp": [
      0,
      -3,
      3,
      0
    ],
    "io_out": [
      -3,
      -6,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, -4, 5, 2]\noutput : list = [-4, 2, 2, 5]",
    "output": "generated_output : list = sort_asc([2, -4, 5, 2])",
    "io_inp": [
      2,
      -4,
      5,
      2
    ],
    "io_out": [
      -4,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(sort_asc([1, -5, 1])))),-1)",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [3, -3, -1, 1, -4, 5]\noutput : list = [-125, 100, -25, 25, 75, -75]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(mul_n([3, -3, -1, 1, -4, 5],-5)),28),-5),-1)",
    "io_inp": [
      3,
      -3,
      -1,
      1,
      -4,
      5
    ],
    "io_out": [
      -125,
      100,
      -25,
      25,
      75,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(mul_n(input,-5)),28),-5),-1)"
  },
  {
    "input": "input : list = [-5, -2, -4]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des([-5, -2, -4]),1))))",
    "io_inp": [
      -5,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-3, 0, 1, -1, -3]\noutput : list = [6, 0, -2, 2, 6]",
    "output": "generated_output : list = mul_n([-3, 0, 1, -1, -3],-2)",
    "io_inp": [
      -3,
      0,
      1,
      -1,
      -3
    ],
    "io_out": [
      6,
      0,
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([4, 4])),3)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),3)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [13, 13]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sub_n([2, 2],-5),-5)),-4),-5)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sub_n(input,-5),-5)),-4),-5)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [9, 9]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(reverse([3, 3]),3))))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [-1, -3, -5, 2, 0]\noutput : list = [15, 11, 7, 5, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_des([-1, -3, -5, 2, 0]),-2)),-5))",
    "io_inp": [
      -1,
      -3,
      -5,
      2,
      0
    ],
    "io_out": [
      15,
      11,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_des(input),-2)),-5))"
  },
  {
    "input": "input : list = [2, -2, -5, 1, -2, -1]\noutput : list = [0, -1, -4, -7]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(take([2, -2, -5, 1, -2, -1],4),2))))",
    "io_inp": [
      2,
      -2,
      -5,
      1,
      -2,
      -1
    ],
    "io_out": [
      0,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(take(input,4),2))))"
  },
  {
    "input": "input : list = [-3, 4, 2]\noutput : list = [-10, 0, -35]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n(add_n([-3, 4, 2],-1),-2),5)),5)",
    "io_inp": [
      -3,
      4,
      2
    ],
    "io_out": [
      -10,
      0,
      -35
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(add_n(input,-1),-2),5)),5)"
  },
  {
    "input": "input : list = [5, 3, 0, 5, -3]\noutput : list = [-15, -25]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(take([5, 3, 0, 5, -3],2),5),1),-1))",
    "io_inp": [
      5,
      3,
      0,
      5,
      -3
    ],
    "io_out": [
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(take(input,2),5),1),-1))"
  },
  {
    "input": "input : list = [3, -5, -1, 0, 4, -3]\noutput : list = [-3, -1, 1, 2, 5, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_asc([3, -5, -1, 0, 4, -3])),-2)))",
    "io_inp": [
      3,
      -5,
      -1,
      0,
      4,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [-5, -5, 4]",
    "output": "generated_output : list = sort_asc([-5, 4, -5])",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 4, 0, -3, -2, -3]\noutput : list = [0, 0, 8, 8, 24, 56]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n([-2, 4, 0, -3, -2, -3],-2),-5),-4)),4)",
    "io_inp": [
      -2,
      4,
      0,
      -3,
      -2,
      -3
    ],
    "io_out": [
      0,
      0,
      8,
      8,
      24,
      56
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n(input,-2),-5),-4)),4)"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -3, 0],1)",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -5, -3, -5, -1]\noutput : list = [2, -1, -3, -5, -5]",
    "output": "generated_output : list = sort_des([2, -5, -3, -5, -1])",
    "io_inp": [
      2,
      -5,
      -3,
      -5,
      -1
    ],
    "io_out": [
      2,
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [135, 155]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sub_n([3, 5],-5),-5),-2),-5),-5)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      135,
      155
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sub_n(input,-5),-5),-2),-5),-5)"
  },
  {
    "input": "input : list = [0, -1, 1, -3, 0]\noutput : list = [-1, -2, 0, -4, -1]",
    "output": "generated_output : list = add_n([0, -1, 1, -3, 0],-1)",
    "io_inp": [
      0,
      -1,
      1,
      -3,
      0
    ],
    "io_out": [
      -1,
      -2,
      0,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 0, -4, 2]\noutput : list = [-3, -5, -5, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(reverse([0, 0, -4, 2]),1)),5))",
    "io_inp": [
      0,
      0,
      -4,
      2
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(reverse(input),1)),5))"
  },
  {
    "input": "input : list = [-3, -3, 2, -1, 3]\noutput : list = [-8, -8, -3, -6, -2]",
    "output": "generated_output : list = sub_n([-3, -3, 2, -1, 3],5)",
    "io_inp": [
      -3,
      -3,
      2,
      -1,
      3
    ],
    "io_out": [
      -8,
      -8,
      -3,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, -4, 4, -1, -2, -4]\noutput : list = [-4, -4, -2, -1, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(sort_des([1, -4, 4, -1, -2, -4])),26)))",
    "io_inp": [
      1,
      -4,
      4,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(sort_des(input)),26)))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, 4]))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 4, -4, 3, 0, -4]\noutput : list = [5, 4, 1, -3, -3]",
    "output": "generated_output : list = take(take(add_n(sort_des(drop([-2, 4, -4, 3, 0, -4],1)),1),8),7)",
    "io_inp": [
      -2,
      4,
      -4,
      3,
      0,
      -4
    ],
    "io_out": [
      5,
      4,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(drop(input,1)),1),8),7)"
  },
  {
    "input": "input : list = [3, -3, 1, 5]\noutput : list = [111, 63, 15, -81]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n([3, -3, 1, 5],4),-2),-3),-3))",
    "io_inp": [
      3,
      -3,
      1,
      5
    ],
    "io_out": [
      111,
      63,
      15,
      -81
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n(input,4),-2),-3),-3))"
  },
  {
    "input": "input : list = [-3, -1, -5, -2, -2]\noutput : list = [1, 0, 0, -1, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-3, -1, -5, -2, -2])),-2)",
    "io_inp": [
      -3,
      -1,
      -5,
      -2,
      -2
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-5, 3, 1, 4, 5]\noutput : list = [-11, -3, -5, -2, -1]",
    "output": "generated_output : list = sub_n(take(add_n(take(add_n([-5, 3, 1, 4, 5],-4),22),1),20),3)",
    "io_inp": [
      -5,
      3,
      1,
      4,
      5
    ],
    "io_out": [
      -11,
      -3,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(add_n(input,-4),22),1),20),3)"
  },
  {
    "input": "input : list = [-4, 0, 4, -1]\noutput : list = [4, 0, -1, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(sort_des([-4, 0, 4, -1])))),43)",
    "io_inp": [
      -4,
      0,
      4,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(sort_des(input)))),43)"
  },
  {
    "input": "input : list = [-3, 2, 0]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_des(sub_n([-3, 2, 0],1))),2))",
    "io_inp": [
      -3,
      2,
      0
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_des(sub_n(input,1))),2))"
  },
  {
    "input": "input : list = [5, -5, 2, -1]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(drop([5, -5, 2, -1],2),7),2)))",
    "io_inp": [
      5,
      -5,
      2,
      -1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(drop(input,2),7),2)))"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [-8, -12, -24]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(add_n([1, 2, -2],-4),1))),4)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      -8,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(add_n(input,-4),1))),4)"
  },
  {
    "input": "input : list = [5, 4, 2, 4, 5, -2]\noutput : list = [2, 2, 1, 1, -1, -5]",
    "output": "generated_output : list = take(add_n(sort_des(take(sort_des([5, 4, 2, 4, 5, -2]),12)),-3),39)",
    "io_inp": [
      5,
      4,
      2,
      4,
      5,
      -2
    ],
    "io_out": [
      2,
      2,
      1,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(sort_des(input),12)),-3),39)"
  },
  {
    "input": "input : list = [5, 1, -4, -5]\noutput : list = [5, 1]",
    "output": "generated_output : list = take([5, 1, -4, -5],2)",
    "io_inp": [
      5,
      1,
      -4,
      -5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -4, 3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(reverse(add_n(reverse(drop([-2, -4, 3, 0],2)),-3)),45)",
    "io_inp": [
      -2,
      -4,
      3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(drop(input,2)),-3)),45)"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [16, 1, -14]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(mul_n([-3, 3, 0],-5),1)),18))",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      16,
      1,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(mul_n(input,-5),1)),18))"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [0, 4, 10]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(sort_asc([-5, 0, -2]),5),5)),-2)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(sort_asc(input),5),5)),-2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_asc([1, 2]))),-5),5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_asc(input))),-5),5)"
  },
  {
    "input": "input : list = [2, -5, -1, 2, -2, 5]\noutput : list = [-24, -9, 6, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(drop([2, -5, -1, 2, -2, 5],2),-5),-5),4))",
    "io_inp": [
      2,
      -5,
      -1,
      2,
      -2,
      5
    ],
    "io_out": [
      -24,
      -9,
      6,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(drop(input,2),-5),-5),4))"
  },
  {
    "input": "input : list = [5, -4, 3, 2]\noutput : list = [0, -6, -9, -27]",
    "output": "generated_output : list = take(take(mul_n(add_n(sort_des([5, -4, 3, 2]),-5),3),21),7)",
    "io_inp": [
      5,
      -4,
      3,
      2
    ],
    "io_out": [
      0,
      -6,
      -9,
      -27
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(sort_des(input),-5),3),21),7)"
  },
  {
    "input": "input : list = [3, 4, 2, -4]\noutput : list = [8, 9, 7, 1]",
    "output": "generated_output : list = sub_n([3, 4, 2, -4],-5)",
    "io_inp": [
      3,
      4,
      2,
      -4
    ],
    "io_out": [
      8,
      9,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, 4, 3, 4]\noutput : list = [5, 6]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(take([5, 4, 3, 4],2)),22),1))",
    "io_inp": [
      5,
      4,
      3,
      4
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(take(input,2)),22),1))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [9, 30]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(sort_des([3, -4]),5),-3)),3)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      9,
      30
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(sort_des(input),5),-3)),3)"
  },
  {
    "input": "input : list = [5, -3, -2, -5]\noutput : list = [0, 3, 2, 10]",
    "output": "generated_output : list = add_n(add_n(reverse([5, -3, -2, -5]),4),1)",
    "io_inp": [
      5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      0,
      3,
      2,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),4),1)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(take(reverse([-4, 2, 0]),16))),34)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(reverse(input),16))),34)"
  },
  {
    "input": "input : list = [4, 0, -2, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(drop([4, 0, -2, -3],2),4))),3)",
    "io_inp": [
      4,
      0,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(drop(input,2),4))),3)"
  },
  {
    "input": "input : list = [1, -1, 5, 1]\noutput : list = [3, -3, -3, -15]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(mul_n([1, -1, 5, 1],-3)))))",
    "io_inp": [
      1,
      -1,
      5,
      1
    ],
    "io_out": [
      3,
      -3,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [44, 74, -61]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(reverse([4, -5, -3]),5),-3),-1),1)",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      44,
      74,
      -61
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(reverse(input),5),-3),-1),1)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(reverse(add_n(mul_n(reverse([-1, 2]),2),-4)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(mul_n(reverse(input),2),-4)))"
  },
  {
    "input": "input : list = [3, -2, -1, 5, -1]\noutput : list = [5, 3, -1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([3, -2, -1, 5, -1])))",
    "io_inp": [
      3,
      -2,
      -1,
      5,
      -1
    ],
    "io_out": [
      5,
      3,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-12, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(mul_n([4, -1],-3)))),31)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(mul_n(input,-3)))),31)"
  },
  {
    "input": "input : list = [0, -4, 5, 1]\noutput : list = [5, 14, 10]",
    "output": "generated_output : list = sub_n(take(sub_n(drop([0, -4, 5, 1],1),-4),22),-5)",
    "io_inp": [
      0,
      -4,
      5,
      1
    ],
    "io_out": [
      5,
      14,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(drop(input,1),-4),22),-5)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-7]",
    "output": "generated_output : list = take(sort_des(take(add_n(add_n([-5, -5],-1),-1),24)),1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(add_n(input,-1),-1),24)),1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [4, -10]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n([5, -2],3)),-3)),-2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n(input,3)),-3)),-2)"
  },
  {
    "input": "input : list = [1, 3, -5, -2, 4, -3]\noutput : list = [4, 3, 1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([1, 3, -5, -2, 4, -3]))",
    "io_inp": [
      1,
      3,
      -5,
      -2,
      4,
      -3
    ],
    "io_out": [
      4,
      3,
      1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 3, -2, -4, -5]\noutput : list = [2, 4, -1, -3, -4]",
    "output": "generated_output : list = add_n([1, 3, -2, -4, -5],1)",
    "io_inp": [
      1,
      3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      2,
      4,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 2, -2, 1, -3, -2]\noutput : list = [5]",
    "output": "generated_output : list = take(sub_n(take([3, 2, -2, 1, -3, -2],1),-2),36)",
    "io_inp": [
      3,
      2,
      -2,
      1,
      -3,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),-2),36)"
  },
  {
    "input": "input : list = [-4, 2, 0, -5]\noutput : list = [-3, 2, 4, -2]",
    "output": "generated_output : list = take(add_n(reverse([-4, 2, 0, -5]),2),17)",
    "io_inp": [
      -4,
      2,
      0,
      -5
    ],
    "io_out": [
      -3,
      2,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),2),17)"
  },
  {
    "input": "input : list = [-4, 0, -3, -1]\noutput : list = [-8]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc([-4, 0, -3, -1]),1),-3),1)",
    "io_inp": [
      -4,
      0,
      -3,
      -1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(input),1),-3),1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des([3, 0])",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, 0]\noutput : list = [10, 0, -10]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_des([1, -1, 0]))),-2),-5)",
    "io_inp": [
      1,
      -1,
      0
    ],
    "io_out": [
      10,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_des(input))),-2),-5)"
  },
  {
    "input": "input : list = [-4, 5, -2, 4]\noutput : list = [-112, -96, 0, 32]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_des([-4, 5, -2, 4]),-4),4),4),4)",
    "io_inp": [
      -4,
      5,
      -2,
      4
    ],
    "io_out": [
      -112,
      -96,
      0,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_des(input),-4),4),4),4)"
  },
  {
    "input": "input : list = [0, 1, 2]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = take(add_n([0, 1, 2],-1),17)",
    "io_inp": [
      0,
      1,
      2
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),17)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [23, -12]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(mul_n([5, -2],5))),2))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      23,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(mul_n(input,5))),2))"
  },
  {
    "input": "input : list = [1, 2, -1, 2, -1]\noutput : list = [6, 6, 5, 3, 3]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(reverse([1, 2, -1, 2, -1])),5),1),1)",
    "io_inp": [
      1,
      2,
      -1,
      2,
      -1
    ],
    "io_out": [
      6,
      6,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(reverse(input)),5),1),1)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(drop([1, 0, 0],1),-3),-2)))",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(drop(input,1),-3),-2)))"
  },
  {
    "input": "input : list = [-5, -1, -3, -4, 4]\noutput : list = [-3, 3, 6, -18]",
    "output": "generated_output : list = mul_n(drop(add_n([-5, -1, -3, -4, 4],2),1),-3)",
    "io_inp": [
      -5,
      -1,
      -3,
      -4,
      4
    ],
    "io_out": [
      -3,
      3,
      6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(input,2),1),-3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sub_n([-1, -2],2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [-8, -5]",
    "output": "generated_output : list = take(add_n(drop([4, -4, -1],1),-4),24)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,1),-4),24)"
  },
  {
    "input": "input : list = [-4, 2, 4, 4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = drop([-4, 2, 4, 4, 2],3)",
    "io_inp": [
      -4,
      2,
      4,
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, -4, -3, 5, -5]\noutput : list = [12, -18, 6, 9, -15]",
    "output": "generated_output : list = mul_n(reverse(sub_n([4, -4, -3, 5, -5],-1)),-3)",
    "io_inp": [
      4,
      -4,
      -3,
      5,
      -5
    ],
    "io_out": [
      12,
      -18,
      6,
      9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-1)),-3)"
  },
  {
    "input": "input : list = [5, -1, 4, -2, -2, -4]\noutput : list = [-4, -2, -2]",
    "output": "generated_output : list = take(take(reverse(take(mul_n([5, -1, 4, -2, -2, -4],1),27)),33),3)",
    "io_inp": [
      5,
      -1,
      4,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(mul_n(input,1),27)),33),3)"
  },
  {
    "input": "input : list = [-2, 2, 4, -2, 5]\noutput : list = [-1, 3, 5, -1, 6]",
    "output": "generated_output : list = add_n(reverse(reverse([-2, 2, 4, -2, 5])),1)",
    "io_inp": [
      -2,
      2,
      4,
      -2,
      5
    ],
    "io_out": [
      -1,
      3,
      5,
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),1)"
  },
  {
    "input": "input : list = [0, 0, -5, 0, -4]\noutput : list = [-5, -4, 0, 0, 0]",
    "output": "generated_output : list = sort_asc([0, 0, -5, 0, -4])",
    "io_inp": [
      0,
      0,
      -5,
      0,
      -4
    ],
    "io_out": [
      -5,
      -4,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3, 4, -3, -1, -3]\noutput : list = [-1, 2, -5, 2, 0, 2]",
    "output": "generated_output : list = take(add_n(take(mul_n([0, -3, 4, -3, -1, -3],-1),13),-1),7)",
    "io_inp": [
      0,
      -3,
      4,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -1,
      2,
      -5,
      2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(input,-1),13),-1),7)"
  },
  {
    "input": "input : list = [-5, 3, 3, -5]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(take([-5, 3, 3, -5],1),7))),3)",
    "io_inp": [
      -5,
      3,
      3,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(take(input,1),7))),3)"
  },
  {
    "input": "input : list = [-3, -2, 2, 2, 4]\noutput : list = [-8, -12, -28, -28, -36]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n([-3, -2, 2, 2, 4],2),-4),-3),38),-4)",
    "io_inp": [
      -3,
      -2,
      2,
      2,
      4
    ],
    "io_out": [
      -8,
      -12,
      -28,
      -28,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n(input,2),-4),-3),38),-4)"
  },
  {
    "input": "input : list = [4, 3, 1, 1]\noutput : list = [-8, -8, -6, -5]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(sub_n([4, 3, 1, 1],2),3),4),20))",
    "io_inp": [
      4,
      3,
      1,
      1
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(sub_n(input,2),3),4),20))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take([-4, -3, 4],1))),-3)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(input,1))),-3)"
  },
  {
    "input": "input : list = [-5, -1, -3, 0, -4, -3]\noutput : list = [6, 2, -6, -6, -10, -14]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(mul_n([-5, -1, -3, 0, -4, -3],4)),1),4),-3)",
    "io_inp": [
      -5,
      -1,
      -3,
      0,
      -4,
      -3
    ],
    "io_out": [
      6,
      2,
      -6,
      -6,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(mul_n(input,4)),1),4),-3)"
  },
  {
    "input": "input : list = [-2, 5, -2, 0, 1]\noutput : list = [13, 17, 25, -3, 25]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(sub_n([-2, 5, -2, 0, 1],4),23)),-4),1)",
    "io_inp": [
      -2,
      5,
      -2,
      0,
      1
    ],
    "io_out": [
      13,
      17,
      25,
      -3,
      25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(sub_n(input,4),23)),-4),1)"
  },
  {
    "input": "input : list = [1, 2, 1, -3, -5, 1]\noutput : list = [-1, -3, -3, -3, -11, -15]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([1, 2, 1, -3, -5, 1],2)),5)",
    "io_inp": [
      1,
      2,
      1,
      -3,
      -5,
      1
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -3,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,2)),5)"
  },
  {
    "input": "input : list = [4, -1, -5, -1, -2]\noutput : list = [8, -2, -10, -2, -4]",
    "output": "generated_output : list = mul_n([4, -1, -5, -1, -2],2)",
    "io_inp": [
      4,
      -1,
      -5,
      -1,
      -2
    ],
    "io_out": [
      8,
      -2,
      -10,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(mul_n(drop(mul_n(add_n([0, -2, -1],1),-5),2),-4))",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(mul_n(add_n(input,1),-5),2),-4))"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [-6, 0, 4]",
    "output": "generated_output : list = sort_asc(mul_n([0, 2, -3],2))",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      -6,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-3, -12]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(sort_asc([5, -4]),-4),-4)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(sort_asc(input),-4),-4)))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(reverse([-1, 2])))))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 1, -2, 1]\noutput : list = [8, 7, 4, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n([-3, 1, -2, 1],-1)),-1),4)",
    "io_inp": [
      -3,
      1,
      -2,
      1
    ],
    "io_out": [
      8,
      7,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(input,-1)),-1),4)"
  },
  {
    "input": "input : list = [3, 1, -4, -4]\noutput : list = [5, 1, -9, -9]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des([3, 1, -4, -4]),-2)),2),-3)",
    "io_inp": [
      3,
      1,
      -4,
      -4
    ],
    "io_out": [
      5,
      1,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des(input),-2)),2),-3)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [5, 0]",
    "output": "generated_output : list = add_n([4, -1],1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(sort_asc([3, 0])))))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, 4, 4, -1, -4]\noutput : list = [-7, -9]",
    "output": "generated_output : list = take(add_n(take(mul_n(take([3, 4, 4, -1, -4],2),-2),25),-1),22)",
    "io_inp": [
      3,
      4,
      4,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(take(input,2),-2),25),-1),22)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [-3, 1, 3]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(add_n([3, 5, -1],-1),-4)),-5),10)",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(add_n(input,-1),-4)),-5),10)"
  },
  {
    "input": "input : list = [4, 4, -5, 5]\noutput : list = [4, -5, 5]",
    "output": "generated_output : list = drop([4, 4, -5, 5],1)",
    "io_inp": [
      4,
      4,
      -5,
      5
    ],
    "io_out": [
      4,
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 1, -1]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(add_n([-5, 1, -1],1)))),15)",
    "io_inp": [
      -5,
      1,
      -1
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(add_n(input,1)))),15)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-30, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n([-5, 3],3),3),-5))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -30,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(input,3),3),-5))"
  },
  {
    "input": "input : list = [1, -4, 3, -5]\noutput : list = [4, 2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(take(sub_n([1, -4, 3, -5],-1),12),15)))",
    "io_inp": [
      1,
      -4,
      3,
      -5
    ],
    "io_out": [
      4,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(sub_n(input,-1),12),15)))"
  },
  {
    "input": "input : list = [2, 5, -5, 2, -2, 4]\noutput : list = [-2, -8]",
    "output": "generated_output : list = drop(mul_n(reverse(reverse(add_n([2, 5, -5, 2, -2, 4],4))),-1),4)",
    "io_inp": [
      2,
      5,
      -5,
      2,
      -2,
      4
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(reverse(add_n(input,4))),-1),4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(reverse([1, 1]),13),-2),26))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(reverse(input),13),-2),26))"
  },
  {
    "input": "input : list = [5, 3, 0, 0, 5, 0]\noutput : list = [0, -2, -5, -5, 0, -5]",
    "output": "generated_output : list = sub_n([5, 3, 0, 0, 5, 0],5)",
    "io_inp": [
      5,
      3,
      0,
      0,
      5,
      0
    ],
    "io_out": [
      0,
      -2,
      -5,
      -5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-10, -3]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(sort_des([5, -2])),-4),-4))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -10,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(sort_des(input)),-4),-4))"
  },
  {
    "input": "input : list = [4, -5, -5, -4, 3]\noutput : list = [-5, -5, -4, 3, 4]",
    "output": "generated_output : list = take(take(take(take(sort_asc([4, -5, -5, -4, 3]),6),9),18),48)",
    "io_inp": [
      4,
      -5,
      -5,
      -4,
      3
    ],
    "io_out": [
      -5,
      -5,
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(take(take(take(sort_asc(input),6),9),18),48)"
  },
  {
    "input": "input : list = [-2, 4, 5, 0, -5]\noutput : list = [3, -9, -11, -1, 9]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-2, 4, 5, 0, -5],1),-2),3)",
    "io_inp": [
      -2,
      4,
      5,
      0,
      -5
    ],
    "io_out": [
      3,
      -9,
      -11,
      -1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,1),-2),3)"
  },
  {
    "input": "input : list = [3, -5, -3, 1, -1, 5]\noutput : list = [6, 0, 2, -2, -4, 4]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(reverse([3, -5, -3, 1, -1, 5]),2),1),12),3)",
    "io_inp": [
      3,
      -5,
      -3,
      1,
      -1,
      5
    ],
    "io_out": [
      6,
      0,
      2,
      -2,
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(reverse(input),2),1),12),3)"
  },
  {
    "input": "input : list = [5, 4, -1, -1]\noutput : list = [-1, -1, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 4, -1, -1])",
    "io_inp": [
      5,
      4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [7, 7]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(add_n([1, 1],-4)),-4),-1),38)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(add_n(input,-4)),-4),-1),38)"
  },
  {
    "input": "input : list = [2, -4, -1, -3]\noutput : list = [72, -144, -36, -108]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([2, -4, -1, -3],-3),4),-3)",
    "io_inp": [
      2,
      -4,
      -1,
      -3
    ],
    "io_out": [
      72,
      -144,
      -36,
      -108
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-3),4),-3)"
  },
  {
    "input": "input : list = [-1, 3, 0, -3, -5]\noutput : list = [-1, -3, -6, -9, -5]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n([-1, 3, 0, -3, -5],-1),2),-4))",
    "io_inp": [
      -1,
      3,
      0,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -3,
      -6,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(input,-1),2),-4))"
  },
  {
    "input": "input : list = [-3, 1, -1, 3, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 1, -1, 3, 5],1)",
    "io_inp": [
      -3,
      1,
      -1,
      3,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [3, 1, 7]",
    "output": "generated_output : list = add_n([-1, -3, 3],4)",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      3,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-7, -1]",
    "output": "generated_output : list = take(take(sort_asc(add_n(reverse([4, -2]),-5)),18),38)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(reverse(input),-5)),18),38)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n([2, -2],1),12)))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(input,1),12)))"
  },
  {
    "input": "input : list = [2, -3, -1, -5, 1]\noutput : list = [4, -1, 1, -3, 3]",
    "output": "generated_output : list = add_n([2, -3, -1, -5, 1],2)",
    "io_inp": [
      2,
      -3,
      -1,
      -5,
      1
    ],
    "io_out": [
      4,
      -1,
      1,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-3, 2, 2, -2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sub_n(add_n(drop(add_n([-3, 2, 2, -2],5),3),4),5))",
    "io_inp": [
      -3,
      2,
      2,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(drop(add_n(input,5),3),4),5))"
  },
  {
    "input": "input : list = [5, 4, -4, -4, 0]\noutput : list = [-7, -7, -3, 1]",
    "output": "generated_output : list = reverse(add_n(take(drop(sort_des([5, 4, -4, -4, 0]),1),29),-3))",
    "io_inp": [
      5,
      4,
      -4,
      -4,
      0
    ],
    "io_out": [
      -7,
      -7,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(drop(sort_des(input),1),29),-3))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(mul_n(add_n([-2, 1],1),-1)),-2))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(mul_n(add_n(input,1),-1)),-2))"
  },
  {
    "input": "input : list = [-1, 1, 3, 3]\noutput : list = [-4, -2, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse([-1, 1, 3, 3]),3)))",
    "io_inp": [
      -1,
      1,
      3,
      3
    ],
    "io_out": [
      -4,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(input),3)))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [10, 10]",
    "output": "generated_output : list = mul_n(reverse([5, 5]),2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = drop([3, 4, 4],1)",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = mul_n(reverse([-1, 1, 2]),2)",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [5, 4, 5, -5, -1]\noutput : list = [5, 5, 4, -1, -5]",
    "output": "generated_output : list = sort_des([5, 4, 5, -5, -1])",
    "io_inp": [
      5,
      4,
      5,
      -5,
      -1
    ],
    "io_out": [
      5,
      5,
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, -4, 3]\noutput : list = [-60, 80]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(drop([-5, 0, -4, 3],2),-5))),4)",
    "io_inp": [
      -5,
      0,
      -4,
      3
    ],
    "io_out": [
      -60,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(drop(input,2),-5))),4)"
  },
  {
    "input": "input : list = [-3, -4, -5, 2, 2]\noutput : list = [-1, 0, 1, 6, 6]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc([-3, -4, -5, 2, 2]),-4)))",
    "io_inp": [
      -3,
      -4,
      -5,
      2,
      2
    ],
    "io_out": [
      -1,
      0,
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(input),-4)))"
  },
  {
    "input": "input : list = [-4, -3, 1, -2]\noutput : list = [-96, -72, 24, -48]",
    "output": "generated_output : list = mul_n(mul_n(take(mul_n([-4, -3, 1, -2],2),19),4),3)",
    "io_inp": [
      -4,
      -3,
      1,
      -2
    ],
    "io_out": [
      -96,
      -72,
      24,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(mul_n(input,2),19),4),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc([-3, -4])),3)),1)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc(input)),3)),1)"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [-10, 6, 8]",
    "output": "generated_output : list = sort_asc(mul_n([4, -5, 3],2))",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      -10,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [0, 0, 2, 2, 1, 1]\noutput : list = [1, 1, 2, 2, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, 2, 2, 1, 1])",
    "io_inp": [
      0,
      0,
      2,
      2,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      2,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, 5, 0, 3, -5]\noutput : list = [-20, -20, -16, -10, -4, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(add_n([-3, 5, 5, 0, 3, -5],5)),-2)))",
    "io_inp": [
      -3,
      5,
      5,
      0,
      3,
      -5
    ],
    "io_out": [
      -20,
      -20,
      -16,
      -10,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(add_n(input,5)),-2)))"
  },
  {
    "input": "input : list = [-5, -4, 4, -4]\noutput : list = [26, 20, -28, 20]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(mul_n([-5, -4, 4, -4],-3),20),2),1),2)",
    "io_inp": [
      -5,
      -4,
      4,
      -4
    ],
    "io_out": [
      26,
      20,
      -28,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(mul_n(input,-3),20),2),1),2)"
  },
  {
    "input": "input : list = [-3, -2, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([-3, -2, 0, -5],2)",
    "io_inp": [
      -3,
      -2,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 7]",
    "output": "generated_output : list = add_n(sort_asc(add_n([3, 5],5)),-3)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,5)),-3)"
  },
  {
    "input": "input : list = [4, -1, 0, -3, 0]\noutput : list = [1, -4, -3, -6, -3]",
    "output": "generated_output : list = sub_n([4, -1, 0, -3, 0],3)",
    "io_inp": [
      4,
      -1,
      0,
      -3,
      0
    ],
    "io_out": [
      1,
      -4,
      -3,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, 5, 2, -1]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = reverse(drop([4, 5, 2, -1],1))",
    "io_inp": [
      4,
      5,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [3, 1, 1, 2, -1, -2]\noutput : list = [1, 0, -1, -1, -3, -4]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_asc([3, 1, 1, 2, -1, -2])),3)),5)",
    "io_inp": [
      3,
      1,
      1,
      2,
      -1,
      -2
    ],
    "io_out": [
      1,
      0,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_asc(input)),3)),5)"
  },
  {
    "input": "input : list = [1, -3, 5, 5, 5]\noutput : list = [-3, 1, 5, 5, 5]",
    "output": "generated_output : list = sort_asc([1, -3, 5, 5, 5])",
    "io_inp": [
      1,
      -3,
      5,
      5,
      5
    ],
    "io_out": [
      -3,
      1,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([-4, 4])",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5, -5, 5]\noutput : list = [-4, -5, -5, 5]",
    "output": "generated_output : list = mul_n([-4, -5, -5, 5],1)",
    "io_inp": [
      -4,
      -5,
      -5,
      5
    ],
    "io_out": [
      -4,
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-9, -15]",
    "output": "generated_output : list = mul_n([-3, -5],3)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, -2, -4, 3, 0]\noutput : list = [15, 0, 0, -10, -20]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(mul_n([0, -2, -4, 3, 0],5)),6)))",
    "io_inp": [
      0,
      -2,
      -4,
      3,
      0
    ],
    "io_out": [
      15,
      0,
      0,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(mul_n(input,5)),6)))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [3, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(sub_n([-4, 0],-2),4),-1)))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(sub_n(input,-2),4),-1)))"
  },
  {
    "input": "input : list = [0, 5, 5, 4, -1]\noutput : list = [2, 7, 7, 6, 1]",
    "output": "generated_output : list = take(sub_n([0, 5, 5, 4, -1],-2),15)",
    "io_inp": [
      0,
      5,
      5,
      4,
      -1
    ],
    "io_out": [
      2,
      7,
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-2),15)"
  },
  {
    "input": "input : list = [-1, -4, -3, 1]\noutput : list = [-5, -4, -2, 0]",
    "output": "generated_output : list = sort_asc(take(add_n([-1, -4, -3, 1],-1),8))",
    "io_inp": [
      -1,
      -4,
      -3,
      1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-1),8))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = reverse(reverse(take(reverse(sort_asc([-5, 1])),6)))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(sort_asc(input)),6)))"
  },
  {
    "input": "input : list = [-3, -4, 2, -4, 1, -2]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(reverse(sub_n(drop(drop([-3, -4, 2, -4, 1, -2],4),1),4)))",
    "io_inp": [
      -3,
      -4,
      2,
      -4,
      1,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(drop(drop(input,4),1),4)))"
  },
  {
    "input": "input : list = [5, -1, -5, -4]\noutput : list = [-30, -12, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(sub_n([5, -1, -5, -4],-5)),-3)))",
    "io_inp": [
      5,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -30,
      -12,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(sub_n(input,-5)),-3)))"
  },
  {
    "input": "input : list = [-5, 3, 0, 2]\noutput : list = [4, 3, 1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sub_n([-5, 3, 0, 2],-2),1))))",
    "io_inp": [
      -5,
      3,
      0,
      2
    ],
    "io_out": [
      4,
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sub_n(input,-2),1))))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse(add_n(reverse([-5, 2]),3))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),3))"
  },
  {
    "input": "input : list = [4, 4, 0]\noutput : list = [2, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(sort_asc([4, 4, 0]),4)),-2))",
    "io_inp": [
      4,
      4,
      0
    ],
    "io_out": [
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(sort_asc(input),4)),-2))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-40, 16]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(reverse([-4, 3]),-2),-2),4))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -40,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(reverse(input),-2),-2),4))"
  },
  {
    "input": "input : list = [4, -4, 0, -4]\noutput : list = [60, 12, -36, -36]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(add_n([4, -4, 0, -4],1)),-3)),-4)",
    "io_inp": [
      4,
      -4,
      0,
      -4
    ],
    "io_out": [
      60,
      12,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(add_n(input,1)),-3)),-4)"
  },
  {
    "input": "input : list = [4, -5, 3, 3, 3]\noutput : list = [-3, 5, 5, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc([4, -5, 3, 3, 3]),2)",
    "io_inp": [
      4,
      -5,
      3,
      3,
      3
    ],
    "io_out": [
      -3,
      5,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-1, -1, 2, 1, -5]\noutput : list = [2, -4]",
    "output": "generated_output : list = sub_n(drop(mul_n([-1, -1, 2, 1, -5],1),3),-1)",
    "io_inp": [
      -1,
      -1,
      2,
      1,
      -5
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(mul_n(input,1),3),-1)"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [9, 8, 6]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(sub_n([-1, 2, 1],-5)),8),-2))",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(sub_n(input,-5)),8),-2))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des([5, -1])",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-20, -28]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(reverse([-5, -3]),-3)),4),-4)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -20,
      -28
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(reverse(input),-3)),4),-4)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [5, -30, -40]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n([4, 2, -5],-1),5),-5))",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      5,
      -30,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(input,-1),5),-5))"
  },
  {
    "input": "input : list = [2, -4, -4, -5]\noutput : list = [-32, -32, -40]",
    "output": "generated_output : list = take(mul_n(take(mul_n(drop([2, -4, -4, -5],1),2),19),4),44)",
    "io_inp": [
      2,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -32,
      -32,
      -40
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(drop(input,1),2),19),4),44)"
  },
  {
    "input": "input : list = [4, -2, -2, 4]\noutput : list = [16, 16, 4, 4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sub_n([4, -2, -2, 4],-4)),2)))",
    "io_inp": [
      4,
      -2,
      -2,
      4
    ],
    "io_out": [
      16,
      16,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sub_n(input,-4)),2)))"
  },
  {
    "input": "input : list = [1, 1, 4, 1, -2, -4]\noutput : list = [6, 0, -6, -10]",
    "output": "generated_output : list = drop(add_n(reverse(mul_n(reverse([1, 1, 4, 1, -2, -4]),2)),-2),2)",
    "io_inp": [
      1,
      1,
      4,
      1,
      -2,
      -4
    ],
    "io_out": [
      6,
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = drop(add_n(reverse(mul_n(reverse(input),2)),-2),2)"
  },
  {
    "input": "input : list = [3, 2, -4, -2, 2, -5]\noutput : list = [-10, -3, -7, -9, -3, -2]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(add_n([3, 2, -4, -2, 2, -5],-4),-1),6)),-2)",
    "io_inp": [
      3,
      2,
      -4,
      -2,
      2,
      -5
    ],
    "io_out": [
      -10,
      -3,
      -7,
      -9,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(add_n(input,-4),-1),6)),-2)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [7, 12]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(mul_n([-3, 2],-1)),-5)),4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      7,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(mul_n(input,-1)),-5)),4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [10, 10]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sub_n([0, 0],-3),2),2)))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sub_n(input,-3),2),2)))"
  },
  {
    "input": "input : list = [-1, 1, 4, -5, 0]\noutput : list = [-5, -1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([-1, 1, 4, -5, 0])",
    "io_inp": [
      -1,
      1,
      4,
      -5,
      0
    ],
    "io_out": [
      -5,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, -1]\noutput : list = [54, -18, -18]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sort_des([3, -1, -1]),2),3),1),3)",
    "io_inp": [
      3,
      -1,
      -1
    ],
    "io_out": [
      54,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sort_des(input),2),3),1),3)"
  },
  {
    "input": "input : list = [3, 4, -1, -1, -4, -5]\noutput : list = [-15, -18, -3, -3, 6, 9]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n([3, 4, -1, -1, -4, -5],-1),-2),-4),3)",
    "io_inp": [
      3,
      4,
      -1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -15,
      -18,
      -3,
      -3,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(input,-1),-2),-4),3)"
  },
  {
    "input": "input : list = [4, -2, 4, 2, 5]\noutput : list = [4, 4, -2]",
    "output": "generated_output : list = sort_des(take([4, -2, 4, 2, 5],3))",
    "io_inp": [
      4,
      -2,
      4,
      2,
      5
    ],
    "io_out": [
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [6, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(reverse([3, -2])),5),3))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      6,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(reverse(input)),5),3))"
  },
  {
    "input": "input : list = [2, -1, -1, 0, -2, -2]\noutput : list = [-3, 5, 9, 9, 13, 13]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(reverse([2, -1, -1, 0, -2, -2]),-4))),-5)",
    "io_inp": [
      2,
      -1,
      -1,
      0,
      -2,
      -2
    ],
    "io_out": [
      -3,
      5,
      9,
      9,
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(reverse(input),-4))),-5)"
  },
  {
    "input": "input : list = [2, -5, 4, 2]\noutput : list = [-7, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sub_n([2, -5, 4, 2],1),1)),-2))",
    "io_inp": [
      2,
      -5,
      4,
      2
    ],
    "io_out": [
      -7,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sub_n(input,1),1)),-2))"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(drop([5, 5, -3],1))),1))",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(drop(input,1))),1))"
  },
  {
    "input": "input : list = [-5, 2, -1]\noutput : list = [-65, -17, 19]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc([-5, 2, -1]),-4),-3),-5)",
    "io_inp": [
      -5,
      2,
      -1
    ],
    "io_out": [
      -65,
      -17,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(input),-4),-3),-5)"
  },
  {
    "input": "input : list = [1, -3, 1, -2, -4]\noutput : list = [-3, -3, -6, -7, -8]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(reverse([1, -3, 1, -2, -4]))),4),34)",
    "io_inp": [
      1,
      -3,
      1,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(reverse(input))),4),34)"
  },
  {
    "input": "input : list = [5, 5, 4]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(add_n(drop([5, 5, 4],1),-2))",
    "io_inp": [
      5,
      5,
      4
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),-2))"
  },
  {
    "input": "input : list = [-5, -5, 1, -2, -2]\noutput : list = [-1, -1, 5, 2, 2]",
    "output": "generated_output : list = sub_n(add_n([-5, -5, 1, -2, -2],2),-2)",
    "io_inp": [
      -5,
      -5,
      1,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -1,
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),-2)"
  },
  {
    "input": "input : list = [-3, -2, -3, -1, -1, -2]\noutput : list = [3, 2, 3]",
    "output": "generated_output : list = mul_n(take([-3, -2, -3, -1, -1, -2],3),-1)",
    "io_inp": [
      -3,
      -2,
      -3,
      -1,
      -1,
      -2
    ],
    "io_out": [
      3,
      2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-1)"
  },
  {
    "input": "input : list = [0, -1, 0, -1, -2]\noutput : list = [-4, -5, -4, -5, -6]",
    "output": "generated_output : list = sub_n([0, -1, 0, -1, -2],4)",
    "io_inp": [
      0,
      -1,
      0,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -5,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 2, -3, -1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 2, -3, -1],1)",
    "io_inp": [
      -5,
      2,
      -3,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 0, -3, 4, 5]\noutput : list = [3, 0, 7, 8]",
    "output": "generated_output : list = sub_n(reverse(reverse(drop([1, 0, -3, 4, 5],1))),-3)",
    "io_inp": [
      1,
      0,
      -3,
      4,
      5
    ],
    "io_out": [
      3,
      0,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(drop(input,1))),-3)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc([1, -1])),7)))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc(input)),7)))"
  },
  {
    "input": "input : list = [3, -3, 3, 4, -3, -2]\noutput : list = [-6, 6, 8, -6, -4]",
    "output": "generated_output : list = mul_n(drop([3, -3, 3, 4, -3, -2],1),2)",
    "io_inp": [
      3,
      -3,
      3,
      4,
      -3,
      -2
    ],
    "io_out": [
      -6,
      6,
      8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-2, 5, 0, 0, 5, 0]\noutput : list = [2]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse([-2, 5, 0, 0, 5, 0])),-1),1)",
    "io_inp": [
      -2,
      5,
      0,
      0,
      5,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(input)),-1),1)"
  },
  {
    "input": "input : list = [-4, -4, -4, 5, 5]\noutput : list = [-12, -12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(drop([-4, -4, -4, 5, 5],3))),-1),-3)",
    "io_inp": [
      -4,
      -4,
      -4,
      5,
      5
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(drop(input,3))),-1),-3)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(sub_n([5, -2],3))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-5, -5, 0, 3, -5, -1]\noutput : list = [1, -2, -3, -7, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(reverse([-5, -5, 0, 3, -5, -1]),-2))",
    "io_inp": [
      -5,
      -5,
      0,
      3,
      -5,
      -1
    ],
    "io_out": [
      1,
      -2,
      -3,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-1, -5, -2]\noutput : list = [-7, -4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(drop([-1, -5, -2],1),1))),1)",
    "io_inp": [
      -1,
      -5,
      -2
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(drop(input,1),1))),1)"
  },
  {
    "input": "input : list = [-5, 4, 3, -4, -3, -2]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take([-5, 4, 3, -4, -3, -2],2)",
    "io_inp": [
      -5,
      4,
      3,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-20, 16]",
    "output": "generated_output : list = take(take(mul_n(reverse(sort_des([4, -5])),4),15),38)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -20,
      16
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(sort_des(input)),4),15),38)"
  },
  {
    "input": "input : list = [-4, -5, 2, -4]\noutput : list = [-80, -60, -60, 60]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(add_n([-4, -5, 2, -4],5),-4),5),4))",
    "io_inp": [
      -4,
      -5,
      2,
      -4
    ],
    "io_out": [
      -80,
      -60,
      -60,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(add_n(input,5),-4),5),4))"
  },
  {
    "input": "input : list = [2, 0, 1]\noutput : list = [8, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n([2, 0, 1],4))",
    "io_inp": [
      2,
      0,
      1
    ],
    "io_out": [
      8,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [2, -5, 3, 1, 5]\noutput : list = [-12, 4, -4, 28]",
    "output": "generated_output : list = mul_n(take(add_n(take(reverse([2, -5, 3, 1, 5]),18),-2),4),-4)",
    "io_inp": [
      2,
      -5,
      3,
      1,
      5
    ],
    "io_out": [
      -12,
      4,
      -4,
      28
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(reverse(input),18),-2),4),-4)"
  },
  {
    "input": "input : list = [5, 4, 0, -3, -2, -2]\noutput : list = [-6, -8, -8, -9]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(drop([5, 4, 0, -3, -2, -2],2)),-1),6),-5)",
    "io_inp": [
      5,
      4,
      0,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(drop(input,2)),-1),6),-5)"
  },
  {
    "input": "input : list = [2, -2, -3, 5]\noutput : list = [-3, -2, 2, 5]",
    "output": "generated_output : list = sort_asc([2, -2, -3, 5])",
    "io_inp": [
      2,
      -2,
      -3,
      5
    ],
    "io_out": [
      -3,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, -1, 3]\noutput : list = [-24, -12, -12, 36]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(mul_n([-1, -2, -1, 3],-3),17),-4)))",
    "io_inp": [
      -1,
      -2,
      -1,
      3
    ],
    "io_out": [
      -24,
      -12,
      -12,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(mul_n(input,-3),17),-4)))"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [-5, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 1, -5])",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(sort_des([-3, 1]),12)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),12)"
  },
  {
    "input": "input : list = [0, 3, -3, -5, -4, -2]\noutput : list = [-5, -4, -3, -2, 0, 3]",
    "output": "generated_output : list = sort_asc([0, 3, -3, -5, -4, -2])",
    "io_inp": [
      0,
      3,
      -3,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, -3, 0, 5, 2]\noutput : list = [-15, -5, 0, 5, 10, 25]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des([1, -1, -3, 0, 5, 2])),5),28)",
    "io_inp": [
      1,
      -1,
      -3,
      0,
      5,
      2
    ],
    "io_out": [
      -15,
      -5,
      0,
      5,
      10,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(input)),5),28)"
  },
  {
    "input": "input : list = [-3, 5, 1, -3]\noutput : list = [225, 45, -135, -135]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des([-3, 5, 1, -3]),3),-5),-3)",
    "io_inp": [
      -3,
      5,
      1,
      -3
    ],
    "io_out": [
      225,
      45,
      -135,
      -135
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(input),3),-5),-3)"
  },
  {
    "input": "input : list = [-1, -1, 3, -2]\noutput : list = [-6, -1, -5, -5]",
    "output": "generated_output : list = reverse(sub_n([-1, -1, 3, -2],4))",
    "io_inp": [
      -1,
      -1,
      3,
      -2
    ],
    "io_out": [
      -6,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [0, -1, 1, 3, 4, -1]\noutput : list = [4, 3, 1, 0, -1, -1]",
    "output": "generated_output : list = sort_des([0, -1, 1, 3, 4, -1])",
    "io_inp": [
      0,
      -1,
      1,
      3,
      4,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, -1, 1, 3]\noutput : list = [120, 105, 60, 30, 0]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n([-5, -4, -1, 1, 3],1),3),-5),3)",
    "io_inp": [
      -5,
      -4,
      -1,
      1,
      3
    ],
    "io_out": [
      120,
      105,
      60,
      30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(input,1),3),-5),3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(reverse([-3, 5])))))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [4, -2, -5, 3, -4]\noutput : list = [75, 60, 30, -45, -60]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(reverse([4, -2, -5, 3, -4])),-3)),5)",
    "io_inp": [
      4,
      -2,
      -5,
      3,
      -4
    ],
    "io_out": [
      75,
      60,
      30,
      -45,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(reverse(input)),-3)),5)"
  },
  {
    "input": "input : list = [-5, 0, 4, 3]\noutput : list = [6, 7, 3, -2]",
    "output": "generated_output : list = add_n(sub_n(reverse(reverse(reverse([-5, 0, 4, 3]))),-2),1)",
    "io_inp": [
      -5,
      0,
      4,
      3
    ],
    "io_out": [
      6,
      7,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(reverse(reverse(input))),-2),1)"
  },
  {
    "input": "input : list = [1, -1, 0, 0, -3, 3]\noutput : list = [-7, -4, -4, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(drop([1, -1, 0, 0, -3, 3],2)),1),-3)",
    "io_inp": [
      1,
      -1,
      0,
      0,
      -3,
      3
    ],
    "io_out": [
      -7,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(drop(input,2)),1),-3)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [15, 1]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(sort_asc([-3, 4]),-3),13),-2),-3)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      15,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(sort_asc(input),-3),13),-2),-3)"
  },
  {
    "input": "input : list = [1, -5, 5, 2]\noutput : list = [-16, 80, -80, -32]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n([1, -5, 5, 2],-4))),4)",
    "io_inp": [
      1,
      -5,
      5,
      2
    ],
    "io_out": [
      -16,
      80,
      -80,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(input,-4))),4)"
  },
  {
    "input": "input : list = [5, -4, -1, 5, -5, 0]\noutput : list = [4, -1, 9, 3, 0, 9]",
    "output": "generated_output : list = sub_n(reverse([5, -4, -1, 5, -5, 0]),-4)",
    "io_inp": [
      5,
      -4,
      -1,
      5,
      -5,
      0
    ],
    "io_out": [
      4,
      -1,
      9,
      3,
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [0, 1, -3, -3, -4, -2]\noutput : list = [-10, -9, -9, -8, -6, -5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(reverse([0, 1, -3, -3, -4, -2]),5))),-1)",
    "io_inp": [
      0,
      1,
      -3,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -9,
      -9,
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(reverse(input),5))),-1)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [5, -2]",
    "output": "generated_output : list = take(add_n([3, -4],2),7)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),7)"
  },
  {
    "input": "input : list = [-2, 0, 3, 5, -2, 4]\noutput : list = [-8, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(add_n(drop([-2, 0, 3, 5, -2, 4],2),-3),-3))",
    "io_inp": [
      -2,
      0,
      3,
      5,
      -2,
      4
    ],
    "io_out": [
      -8,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(drop(input,2),-3),-3))"
  },
  {
    "input": "input : list = [-3, -4, -3, -2]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(take([-3, -4, -3, -2],2)))),3)",
    "io_inp": [
      -3,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(take(input,2)))),3)"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [-40]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(take([4, -2, -5],1),5)),-2))",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(take(input,1),5)),-2))"
  },
  {
    "input": "input : list = [5, -1, 0]\noutput : list = [-1, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, -1, 0]))",
    "io_inp": [
      5,
      -1,
      0
    ],
    "io_out": [
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 5, 1, -2, 5, 5]\noutput : list = [-2, -2, 1, 5, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(sort_des([-2, 5, 1, -2, 5, 5])))))",
    "io_inp": [
      -2,
      5,
      1,
      -2,
      5,
      5
    ],
    "io_out": [
      -2,
      -2,
      1,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, -4, 3, -1]\noutput : list = [4, 0, 7, -1]",
    "output": "generated_output : list = reverse(add_n(mul_n([4, -4, 3, -1],-1),3))",
    "io_inp": [
      4,
      -4,
      3,
      -1
    ],
    "io_out": [
      4,
      0,
      7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-1),3))"
  },
  {
    "input": "input : list = [3, 2, 5, -3, -1]\noutput : list = [-32, 0, 48, 64, 96]",
    "output": "generated_output : list = reverse(sort_des(mul_n(add_n(mul_n([3, 2, 5, -3, -1],-4),-4),-4)))",
    "io_inp": [
      3,
      2,
      5,
      -3,
      -1
    ],
    "io_out": [
      -32,
      0,
      48,
      64,
      96
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(add_n(mul_n(input,-4),-4),-4)))"
  },
  {
    "input": "input : list = [-4, 5, 0, -4, -4, 3]\noutput : list = [7, 5, 2, -2, -2, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(reverse([-4, 5, 0, -4, -4, 3]))),5),3)",
    "io_inp": [
      -4,
      5,
      0,
      -4,
      -4,
      3
    ],
    "io_out": [
      7,
      5,
      2,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(reverse(input))),5),3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = add_n(add_n([-1, -3],1),-3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,1),-3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-8, -10]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(reverse([-3, -1])),-5)),2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(reverse(input)),-5)),2)"
  },
  {
    "input": "input : list = [2, -2, -2, 2, -4]\noutput : list = [-9, -7, -7, -3, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(reverse([2, -2, -2, 2, -4]))),3),2)",
    "io_inp": [
      2,
      -2,
      -2,
      2,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -7,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(reverse(input))),3),2)"
  },
  {
    "input": "input : list = [2, 3, -3, 4, 2, 1]\noutput : list = [-4, -3, -2, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n([2, 3, -3, 4, 2, 1],5)),5),-1))",
    "io_inp": [
      2,
      3,
      -3,
      4,
      2,
      1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n(input,5)),5),-1))"
  },
  {
    "input": "input : list = [-4, -3, -4, -5, -4, -4]\noutput : list = [-16, -16, -20]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(drop([-4, -3, -4, -5, -4, -4],3),1),5),4))",
    "io_inp": [
      -4,
      -3,
      -4,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(drop(input,3),1),5),4))"
  },
  {
    "input": "input : list = [-4, 4, 1, 0]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(take([-4, 4, 1, 0],1)),3)),1)",
    "io_inp": [
      -4,
      4,
      1,
      0
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(take(input,1)),3)),1)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-2, 7]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(mul_n([2, -1],3),-1),19)))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(mul_n(input,3),-1),19)))"
  },
  {
    "input": "input : list = [-4, -5, -2, 4, 3]\noutput : list = [-2, -3, 0, 6, 5]",
    "output": "generated_output : list = add_n([-4, -5, -2, 4, 3],2)",
    "io_inp": [
      -4,
      -5,
      -2,
      4,
      3
    ],
    "io_out": [
      -2,
      -3,
      0,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [5, 7, 0]",
    "output": "generated_output : list = add_n([1, 3, -4],4)",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      5,
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-3, -3, -5, -3]\noutput : list = [-3, -5, -3]",
    "output": "generated_output : list = drop([-3, -3, -5, -3],1)",
    "io_inp": [
      -3,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -3, -3, -1, 5]\noutput : list = [-12, -9, -9, -3, 15]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-4, -3, -3, -1, 5]),3))",
    "io_inp": [
      -4,
      -3,
      -3,
      -1,
      5
    ],
    "io_out": [
      -12,
      -9,
      -9,
      -3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),3))"
  },
  {
    "input": "input : list = [1, 0, 0, 4, -4]\noutput : list = [8, 10, 10, 2, 18]",
    "output": "generated_output : list = mul_n(add_n([1, 0, 0, 4, -4],-5),-2)",
    "io_inp": [
      1,
      0,
      0,
      4,
      -4
    ],
    "io_out": [
      8,
      10,
      10,
      2,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),-2)"
  },
  {
    "input": "input : list = [4, 2, 0, 2, 0]\noutput : list = [3, 1, 1, -1, -1]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(add_n([4, 2, 0, 2, 0],-1))),34))",
    "io_inp": [
      4,
      2,
      0,
      2,
      0
    ],
    "io_out": [
      3,
      1,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(add_n(input,-1))),34))"
  },
  {
    "input": "input : list = [-4, 4, 3, 4, -4]\noutput : list = [7, 7, 6, -1, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(sort_asc([-4, 4, 3, 4, -4]))),-3))",
    "io_inp": [
      -4,
      4,
      3,
      4,
      -4
    ],
    "io_out": [
      7,
      7,
      6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [6, 7]",
    "output": "generated_output : list = take(sub_n([1, 2],-5),10)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),10)"
  },
  {
    "input": "input : list = [2, -5, -3, 4, 3, -4]\noutput : list = [8, 36, 28, 0, 4, 32]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([2, -5, -3, 4, 3, -4],2),2),-4)",
    "io_inp": [
      2,
      -5,
      -3,
      4,
      3,
      -4
    ],
    "io_out": [
      8,
      36,
      28,
      0,
      4,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,2),2),-4)"
  },
  {
    "input": "input : list = [5, 0, 3, -4, 2]\noutput : list = [-4, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(drop([5, 0, 3, -4, 2],2))))",
    "io_inp": [
      5,
      0,
      3,
      -4,
      2
    ],
    "io_out": [
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(drop(input,2))))"
  },
  {
    "input": "input : list = [-3, 5, 4, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sub_n(take(take(take([-3, 5, 4, 2],1),17),13),3),-5)",
    "io_inp": [
      -3,
      5,
      4,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(take(input,1),17),13),3),-5)"
  },
  {
    "input": "input : list = [-3, -5, -2, -5, -5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(add_n(drop([-3, -5, -2, -5, -5],3),3),-2)",
    "io_inp": [
      -3,
      -5,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(input,3),3),-2)"
  },
  {
    "input": "input : list = [2, 1, -2, 5, 5]\noutput : list = [-4, -1, 0, 3, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(sub_n([2, 1, -2, 5, 5],2)))))",
    "io_inp": [
      2,
      1,
      -2,
      5,
      5
    ],
    "io_out": [
      -4,
      -1,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(mul_n([-3, 3, 3],-1),2),2)))",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(mul_n(input,-1),2),2)))"
  },
  {
    "input": "input : list = [2, 5, -2, 3, -2]\noutput : list = [8, 6, 5, 1, 1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(sub_n([2, 5, -2, 3, -2],-1),12),2)))",
    "io_inp": [
      2,
      5,
      -2,
      3,
      -2
    ],
    "io_out": [
      8,
      6,
      5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(sub_n(input,-1),12),2)))"
  },
  {
    "input": "input : list = [3, -1, -5, -4, -2]\noutput : list = [3, -1, -2, -4, -5]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(add_n([3, -1, -5, -4, -2],-1),-5)),21),4)",
    "io_inp": [
      3,
      -1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      3,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(add_n(input,-1),-5)),21),4)"
  },
  {
    "input": "input : list = [4, 5, -1, -5, 1, -5]\noutput : list = [-5, -5, -1, 1, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(reverse([4, 5, -1, -5, 1, -5])))))",
    "io_inp": [
      4,
      5,
      -1,
      -5,
      1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse([-1, -2])",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc([-1, 1, -4])",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -5, -5, -2]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(take([-5, -5, -5, -2],2),-1),21)),-5)",
    "io_inp": [
      -5,
      -5,
      -5,
      -2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(take(input,2),-1),21)),-5)"
  },
  {
    "input": "input : list = [0, -4, -3, -2, 1]\noutput : list = [6, 5, 4]",
    "output": "generated_output : list = sort_des(drop(sub_n(sort_des(add_n([0, -4, -3, -2, 1],4)),-4),2))",
    "io_inp": [
      0,
      -4,
      -3,
      -2,
      1
    ],
    "io_out": [
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(sort_des(add_n(input,4)),-4),2))"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = sub_n(take(take(sort_des(reverse([3, -1, 4])),22),33),4)",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(reverse(input)),22),33),4)"
  },
  {
    "input": "input : list = [0, 3, -2, -3]\noutput : list = [3, 4, 9, 6]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(add_n([0, 3, -2, -3],4)),1),37),-2)",
    "io_inp": [
      0,
      3,
      -2,
      -3
    ],
    "io_out": [
      3,
      4,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(add_n(input,4)),1),37),-2)"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-4, 4, 6]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n(add_n([5, -3, -5],3),-1),-4),14),1)",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -4,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(add_n(input,3),-1),-4),14),1)"
  },
  {
    "input": "input : list = [-5, -3, 4, 2, 2, 0]\noutput : list = [30, 20, -15, -5, -5, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(reverse([-5, -3, 4, 2, 2, 0]),-5)),3),-2)",
    "io_inp": [
      -5,
      -3,
      4,
      2,
      2,
      0
    ],
    "io_out": [
      30,
      20,
      -15,
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(reverse(input),-5)),3),-2)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [0, -4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc([1, 3]),13),-1)),-2)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc(input),13),-1)),-2)"
  },
  {
    "input": "input : list = [-5, -1, -4]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(reverse([-5, -1, -4])),-4),2))",
    "io_inp": [
      -5,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(reverse(input)),-4),2))"
  },
  {
    "input": "input : list = [-5, -1, 3, 5, 3, -5]\noutput : list = [-7, -7, -3, 1, 1, 3]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(add_n([-5, -1, 3, 5, 3, -5],-2),2)),2),1)",
    "io_inp": [
      -5,
      -1,
      3,
      5,
      3,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -3,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(add_n(input,-2),2)),2),1)"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [-2, 3, 3]",
    "output": "generated_output : list = reverse(sort_des([3, -2, 3]))",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, -5, 0, -4, 1]\noutput : list = [-10, 14]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(take([3, -5, 0, -4, 1],2))),3),5)",
    "io_inp": [
      3,
      -5,
      0,
      -4,
      1
    ],
    "io_out": [
      -10,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(take(input,2))),3),5)"
  },
  {
    "input": "input : list = [4, -2, -1, -4, 4]\noutput : list = [-1, -1, -6, -7, -9]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(sub_n([4, -2, -1, -4, 4],5)))))",
    "io_inp": [
      4,
      -2,
      -1,
      -4,
      4
    ],
    "io_out": [
      -1,
      -1,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(sub_n(input,5)))))"
  },
  {
    "input": "input : list = [-4, 0, 2, -3, 1, 1]\noutput : list = [-7, -6, -3, -2, -2, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-4, 0, 2, -3, 1, 1]),5),2)",
    "io_inp": [
      -4,
      0,
      2,
      -3,
      1,
      1
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),5),2)"
  },
  {
    "input": "input : list = [-4, -1, 2, -4, 3, -5]\noutput : list = [-1, 7, 0, 6, 3, 0]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(reverse([-4, -1, 2, -4, 3, -5])),-4)),14)",
    "io_inp": [
      -4,
      -1,
      2,
      -4,
      3,
      -5
    ],
    "io_out": [
      -1,
      7,
      0,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(reverse(input)),-4)),14)"
  },
  {
    "input": "input : list = [1, 3, -4, 0]\noutput : list = [1, -1, -2, -6]",
    "output": "generated_output : list = take(sort_des(take(take(sub_n([1, 3, -4, 0],2),11),13)),5)",
    "io_inp": [
      1,
      3,
      -4,
      0
    ],
    "io_out": [
      1,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(sub_n(input,2),11),13)),5)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [-6, -4, -2]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(add_n([-4, -2, 0],-5)),3)),9)",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(add_n(input,-5)),3)),9)"
  },
  {
    "input": "input : list = [3, 4, 1, -2, -1]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(take([3, 4, 1, -2, -1],1),-5)",
    "io_inp": [
      3,
      4,
      1,
      -2,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [-3, -1, 2, 4, -5]\noutput : list = [0, 2, 5, 7, -2]",
    "output": "generated_output : list = sub_n([-3, -1, 2, 4, -5],-3)",
    "io_inp": [
      -3,
      -1,
      2,
      4,
      -5
    ],
    "io_out": [
      0,
      2,
      5,
      7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -3, 1, 5]\noutput : list = [180, -60, -300]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(drop([4, -3, 1, 5],1),-5)),-4),-3)",
    "io_inp": [
      4,
      -3,
      1,
      5
    ],
    "io_out": [
      180,
      -60,
      -300
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(drop(input,1),-5)),-4),-3)"
  },
  {
    "input": "input : list = [1, 2, -5, 0, -4]\noutput : list = [6, 7, 0, 5, 1]",
    "output": "generated_output : list = take(add_n([1, 2, -5, 0, -4],5),19)",
    "io_inp": [
      1,
      2,
      -5,
      0,
      -4
    ],
    "io_out": [
      6,
      7,
      0,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),19)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = reverse([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, 5, 5]\noutput : list = [32, 20, 0, 0]",
    "output": "generated_output : list = take(take(mul_n(sub_n([-3, 0, 5, 5],5),-4),14),9)",
    "io_inp": [
      -3,
      0,
      5,
      5
    ],
    "io_out": [
      32,
      20,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(input,5),-4),14),9)"
  },
  {
    "input": "input : list = [-3, -5, 1, -2, 0]\noutput : list = [-1, -3, 0, -6, -4]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(reverse([-3, -5, 1, -2, 0])),-1)),-2)",
    "io_inp": [
      -3,
      -5,
      1,
      -2,
      0
    ],
    "io_out": [
      -1,
      -3,
      0,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(reverse(input)),-1)),-2)"
  },
  {
    "input": "input : list = [0, -3, 3, -4, -1]\noutput : list = [-3, -6]",
    "output": "generated_output : list = add_n(add_n(take(take(take([0, -3, 3, -4, -1],2),20),14),-4),1)",
    "io_inp": [
      0,
      -3,
      3,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(take(input,2),20),14),-4),1)"
  },
  {
    "input": "input : list = [2, 2, -4, 0, -4, 0]\noutput : list = [0, 12, 0, 12, -6, -6]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(reverse([2, 2, -4, 0, -4, 0]),-3)),9))",
    "io_inp": [
      2,
      2,
      -4,
      0,
      -4,
      0
    ],
    "io_out": [
      0,
      12,
      0,
      12,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(reverse(input),-3)),9))"
  },
  {
    "input": "input : list = [-2, 1, -4, -4]\noutput : list = [5, 20, -5, -5]",
    "output": "generated_output : list = mul_n(add_n([-2, 1, -4, -4],3),5)",
    "io_inp": [
      -2,
      1,
      -4,
      -4
    ],
    "io_out": [
      5,
      20,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),5)"
  },
  {
    "input": "input : list = [2, -1, 2, 0, -3, -2]\noutput : list = [-17]",
    "output": "generated_output : list = add_n(take(take(sort_asc(mul_n([2, -1, 2, 0, -3, -2],5)),19),1),-2)",
    "io_inp": [
      2,
      -1,
      2,
      0,
      -3,
      -2
    ],
    "io_out": [
      -17
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(mul_n(input,5)),19),1),-2)"
  },
  {
    "input": "input : list = [-4, -4, -3, 4, -1]\noutput : list = [-1, 4, -3, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, -3, 4, -1])",
    "io_inp": [
      -4,
      -4,
      -3,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, -5, -1]\noutput : list = [-9, -8, -15, -11]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(sub_n([1, 2, -5, -1],-3),3),5),5),41)",
    "io_inp": [
      1,
      2,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -8,
      -15,
      -11
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(sub_n(input,-3),3),5),5),41)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(sort_des([-3, 4]),5),-1)))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(sort_des(input),5),-1)))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(add_n([-1, 1],-3),14),-2),-4),-3)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(add_n(input,-3),14),-2),-4),-3)"
  },
  {
    "input": "input : list = [-2, -5, -5, 4, -1, 0]\noutput : list = [-5, -1, 0, 1, 4, 4]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(add_n([-2, -5, -5, 4, -1, 0],1),-1)),36),43)",
    "io_inp": [
      -2,
      -5,
      -5,
      4,
      -1,
      0
    ],
    "io_out": [
      -5,
      -1,
      0,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(add_n(input,1),-1)),36),43)"
  },
  {
    "input": "input : list = [-2, -4, 0, -5, 2, 5]\noutput : list = [-6, -3, -1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(add_n(mul_n([-2, -4, 0, -5, 2, 5],-1),-1))))",
    "io_inp": [
      -2,
      -4,
      0,
      -5,
      2,
      5
    ],
    "io_out": [
      -6,
      -3,
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(add_n(mul_n(input,-1),-1))))"
  },
  {
    "input": "input : list = [4, 4, 0]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(drop([4, 4, 0],1)))),-5)",
    "io_inp": [
      4,
      4,
      0
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(drop(input,1)))),-5)"
  },
  {
    "input": "input : list = [3, -4, -1, 5, -1]\noutput : list = [22, 4, 22, 31, 10]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n([3, -4, -1, 5, -1],-5),-3)),-4)",
    "io_inp": [
      3,
      -4,
      -1,
      5,
      -1
    ],
    "io_out": [
      22,
      4,
      22,
      31,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(input,-5),-3)),-4)"
  },
  {
    "input": "input : list = [3, 1, -2, 5, -3, 1]\noutput : list = [-27, -9, 18, -45, 27, -9]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n([3, 1, -2, 5, -3, 1],3),3),3),-3)",
    "io_inp": [
      3,
      1,
      -2,
      5,
      -3,
      1
    ],
    "io_out": [
      -27,
      -9,
      18,
      -45,
      27,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(input,3),3),3),-3)"
  },
  {
    "input": "input : list = [-1, -3, 2, -2, 3, -3]\noutput : list = [-1, 5, 0, 4, -1, 1]",
    "output": "generated_output : list = reverse(sub_n([-1, -3, 2, -2, 3, -3],-2))",
    "io_inp": [
      -1,
      -3,
      2,
      -2,
      3,
      -3
    ],
    "io_out": [
      -1,
      5,
      0,
      4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 4, -1, -1, 4]\noutput : list = [-8, -5, -5, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(sort_asc([-4, 4, -1, -1, 4]),5),-4)))",
    "io_inp": [
      -4,
      4,
      -1,
      -1,
      4
    ],
    "io_out": [
      -8,
      -5,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(sort_asc(input),5),-4)))"
  },
  {
    "input": "input : list = [0, -5, 3, -5]\noutput : list = [-3, 5, -3, 2]",
    "output": "generated_output : list = reverse(sub_n([0, -5, 3, -5],-2))",
    "io_inp": [
      0,
      -5,
      3,
      -5
    ],
    "io_out": [
      -3,
      5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [2, 1, 5, 2, 3, 3]\noutput : list = [-5, -6, -2, -5, -4, -4]",
    "output": "generated_output : list = sub_n(sub_n([2, 1, 5, 2, 3, 3],5),2)",
    "io_inp": [
      2,
      1,
      5,
      2,
      3,
      3
    ],
    "io_out": [
      -5,
      -6,
      -2,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),2)"
  },
  {
    "input": "input : list = [-2, 4, 4, -5]\noutput : list = [-14]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(take([-2, 4, 4, -5],1),-4),11),-5),-2)",
    "io_inp": [
      -2,
      4,
      4,
      -5
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(take(input,1),-4),11),-5),-2)"
  },
  {
    "input": "input : list = [-1, -1, -1, -2, 3, -5]\noutput : list = [10, 4, 2, 2, 2, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(reverse([-1, -1, -1, -2, 3, -5])),28),-2))",
    "io_inp": [
      -1,
      -1,
      -1,
      -2,
      3,
      -5
    ],
    "io_out": [
      10,
      4,
      2,
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(reverse(input)),28),-2))"
  },
  {
    "input": "input : list = [-4, 4, -3, 4, -4, 5]\noutput : list = [28, 108, 38, 108, 28, 118]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(add_n([-4, 4, -3, 4, -4, 5],5),2),-5),1),-2)",
    "io_inp": [
      -4,
      4,
      -3,
      4,
      -4,
      5
    ],
    "io_out": [
      28,
      108,
      38,
      108,
      28,
      118
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(add_n(input,5),2),-5),1),-2)"
  },
  {
    "input": "input : list = [2, -5, 2, -5]\noutput : list = [-5, -5, 2, 2]",
    "output": "generated_output : list = sort_asc(mul_n([2, -5, 2, -5],1))",
    "io_inp": [
      2,
      -5,
      2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [5, -1, 3, -3]\noutput : list = [6]",
    "output": "generated_output : list = take(add_n(mul_n(take([5, -1, 3, -3],1),2),-4),11)",
    "io_inp": [
      5,
      -1,
      3,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(input,1),2),-4),11)"
  },
  {
    "input": "input : list = [2, 4, 3, -4, 1]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(take([2, 4, 3, -4, 1],1)),-1),-4),-2)",
    "io_inp": [
      2,
      4,
      3,
      -4,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(take(input,1)),-1),-4),-2)"
  },
  {
    "input": "input : list = [1, 5, -3, -4, 3, -4]\noutput : list = [1, 5, -3, -4]",
    "output": "generated_output : list = take([1, 5, -3, -4, 3, -4],4)",
    "io_inp": [
      1,
      5,
      -3,
      -4,
      3,
      -4
    ],
    "io_out": [
      1,
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-2, -5, 5, 0, -2, -4]\noutput : list = [-2, -5, 5, 0, -2, -4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(reverse([-2, -5, 5, 0, -2, -4]),-4),3)),1)",
    "io_inp": [
      -2,
      -5,
      5,
      0,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -5,
      5,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(reverse(input),-4),3)),1)"
  },
  {
    "input": "input : list = [-1, -1, -2, 3, 0, 1]\noutput : list = [7, 5, 4, 3, 3, 2]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_des([-1, -1, -2, 3, 0, 1]),-4)),8))",
    "io_inp": [
      -1,
      -1,
      -2,
      3,
      0,
      1
    ],
    "io_out": [
      7,
      5,
      4,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_des(input),-4)),8))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-5, -7]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(sort_des([0, 2])),5),-1),-5)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(sort_des(input)),5),-1),-5)"
  },
  {
    "input": "input : list = [0, -2, -1, -2, -1]\noutput : list = [-40, -40, -36, -36, -32]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(reverse([0, -2, -1, -2, -1])),3),5),4)",
    "io_inp": [
      0,
      -2,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -40,
      -40,
      -36,
      -36,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(reverse(input)),3),5),4)"
  },
  {
    "input": "input : list = [-5, -4, -1, 4, 1]\noutput : list = [11, 8, 6, 3, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc([-5, -4, -1, 4, 1])),4)),-3)",
    "io_inp": [
      -5,
      -4,
      -1,
      4,
      1
    ],
    "io_out": [
      11,
      8,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc(input)),4)),-3)"
  },
  {
    "input": "input : list = [-4, -4, 4, -3]\noutput : list = [2, 18, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse(drop(sub_n([-4, -4, 4, -3],-5),1))),2)",
    "io_inp": [
      -4,
      -4,
      4,
      -3
    ],
    "io_out": [
      2,
      18,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(drop(sub_n(input,-5),1))),2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-1, -19]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(sub_n([5, -1],-2),-3),2)),4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -1,
      -19
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(sub_n(input,-2),-3),2)),4)"
  },
  {
    "input": "input : list = [-1, -1, 1]\noutput : list = [-25, -15]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(drop([-1, -1, 1],1)),4)),-5)",
    "io_inp": [
      -1,
      -1,
      1
    ],
    "io_out": [
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(drop(input,1)),4)),-5)"
  },
  {
    "input": "input : list = [-2, 1, -4, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = add_n(take([-2, 1, -4, 2],2),4)",
    "io_inp": [
      -2,
      1,
      -4,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),4)"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [-5, 13, 16]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n([4, -2, 5],3))),-1)",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      -5,
      13,
      16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(input,3))),-1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(add_n([0, 0],-4))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [-3, 0, 0, -3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take([-3, 0, 0, -3],1))",
    "io_inp": [
      -3,
      0,
      0,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [6, 10]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(reverse([1, 5]),2)),3),-2)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(reverse(input),2)),3),-2)"
  },
  {
    "input": "input : list = [1, -1, 4, 1, 3, 4]\noutput : list = [-26, -26, -20, -8, -8, 4]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n([1, -1, 4, 1, 3, 4],-2)),3),2))",
    "io_inp": [
      1,
      -1,
      4,
      1,
      3,
      4
    ],
    "io_out": [
      -26,
      -26,
      -20,
      -8,
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n(input,-2)),3),2))"
  },
  {
    "input": "input : list = [3, -4, -4, -2]\noutput : list = [-2, -4, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, -4, -2])",
    "io_inp": [
      3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc([-1, 3])))))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -4, 5, 5, 4]\noutput : list = [-5, -4, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([-5, -4, 5, 5, 4])",
    "io_inp": [
      -5,
      -4,
      5,
      5,
      4
    ],
    "io_out": [
      -5,
      -4,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [-3, -10, -8]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n([3, -4, -2],-1),-3),4),10)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(input,-1),-3),4),10)"
  },
  {
    "input": "input : list = [4, 3, 5, -2]\noutput : list = [-6, -1, 0, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sub_n([4, 3, 5, -2],4),1))),41)",
    "io_inp": [
      4,
      3,
      5,
      -2
    ],
    "io_out": [
      -6,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sub_n(input,4),1))),41)"
  },
  {
    "input": "input : list = [0, -2, 2, 2, 2, 4]\noutput : list = [-5, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n(take([0, -2, 2, 2, 2, 4],4),1)),-3))",
    "io_inp": [
      0,
      -2,
      2,
      2,
      2,
      4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(take(input,4),1)),-3))"
  },
  {
    "input": "input : list = [5, -4, 2, 1]\noutput : list = [16, 10, 8, -2]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(mul_n(sub_n([5, -4, 2, 1],-1),1),-2)),2)",
    "io_inp": [
      5,
      -4,
      2,
      1
    ],
    "io_out": [
      16,
      10,
      8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(mul_n(sub_n(input,-1),1),-2)),2)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [0, 6, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(add_n([0, 4, 2],5),13),5),3))",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      0,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(add_n(input,5),13),5),3))"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [5, 30, 40]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(mul_n([3, -4, -2],1),-4)),-5),32)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      5,
      30,
      40
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(mul_n(input,1),-4)),-5),32)"
  },
  {
    "input": "input : list = [4, 2, -3, -3]\noutput : list = [-3, -3, 2, 4]",
    "output": "generated_output : list = sort_asc([4, 2, -3, -3])",
    "io_inp": [
      4,
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -3, 1, 3, 0]\noutput : list = [-6, 0, 2, 4, 6]",
    "output": "generated_output : list = mul_n(sort_asc([2, -3, 1, 3, 0]),2)",
    "io_inp": [
      2,
      -3,
      1,
      3,
      0
    ],
    "io_out": [
      -6,
      0,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [3, -2]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(sort_des([-4, 1])),15)),-2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(sort_des(input)),15)),-2)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-23, -3]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([5, 0]),-4),3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -23,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-4),3)"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [4, 1, -2]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc([2, -4, -1])),2),2),-1)",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc(input)),2),2),-1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [9, 4]",
    "output": "generated_output : list = add_n(sub_n(reverse([0, 5]),-5),-1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),-5),-1)"
  },
  {
    "input": "input : list = [-5, -1, -5, 2]\noutput : list = [-6, -9, -13, -13]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(sub_n([-5, -1, -5, 2],3),-5),11)))",
    "io_inp": [
      -5,
      -1,
      -5,
      2
    ],
    "io_out": [
      -6,
      -9,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(sub_n(input,3),-5),11)))"
  },
  {
    "input": "input : list = [-1, 3, -2, 0, -5]\noutput : list = [-3, 1, -4, -2, -7]",
    "output": "generated_output : list = sub_n([-1, 3, -2, 0, -5],2)",
    "io_inp": [
      -1,
      3,
      -2,
      0,
      -5
    ],
    "io_out": [
      -3,
      1,
      -4,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 4, 5, -2, -1, -2]\noutput : list = [12, -15]",
    "output": "generated_output : list = reverse(take(take(mul_n(take([-5, 4, 5, -2, -1, -2],2),3),13),43))",
    "io_inp": [
      -5,
      4,
      5,
      -2,
      -1,
      -2
    ],
    "io_out": [
      12,
      -15
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(take(input,2),3),13),43))"
  },
  {
    "input": "input : list = [-3, -4, -4, -2]\noutput : list = [-7, -7, -6, -5]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(add_n([-3, -4, -4, -2],-5)),33),2))",
    "io_inp": [
      -3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(add_n(input,-5)),33),2))"
  },
  {
    "input": "input : list = [-3, -2, -5, 5]\noutput : list = [10, 0, 3, 2]",
    "output": "generated_output : list = mul_n(reverse(add_n([-3, -2, -5, 5],5)),1)",
    "io_inp": [
      -3,
      -2,
      -5,
      5
    ],
    "io_out": [
      10,
      0,
      3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,5)),1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-12, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(add_n([5, 0],-2))),-4))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -12,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(add_n(input,-2))),-4))"
  },
  {
    "input": "input : list = [2, 1, -1, -4]\noutput : list = [-2, -4, -7]",
    "output": "generated_output : list = drop(sub_n(sort_des([2, 1, -1, -4]),3),1)",
    "io_inp": [
      2,
      1,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = drop(sub_n(sort_des(input),3),1)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [10, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sub_n([2, 0],1),10)),1),-5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sub_n(input,1),10)),1),-5)"
  },
  {
    "input": "input : list = [-3, 3, -5, -2, -4, 4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sort_asc([-3, 3, -5, -2, -4, 4]),2))))",
    "io_inp": [
      -3,
      3,
      -5,
      -2,
      -4,
      4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [-2, -4, -1, -2, 5, -4]\noutput : list = [-1, -1, 1, 1, 2, 8]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(add_n([-2, -4, -1, -2, 5, -4],5),3),17),5))",
    "io_inp": [
      -2,
      -4,
      -1,
      -2,
      5,
      -4
    ],
    "io_out": [
      -1,
      -1,
      1,
      1,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(add_n(input,5),3),17),5))"
  },
  {
    "input": "input : list = [-3, 4, 5, -4, 5, 5]\noutput : list = [5, 5, -4, 5, 4]",
    "output": "generated_output : list = reverse(drop([-3, 4, 5, -4, 5, 5],1))",
    "io_inp": [
      -3,
      4,
      5,
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -4,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [1, -2, -4, -5, 3, -3]\noutput : list = [-5, -4, -3, -2, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -2, -4, -5, 3, -3])",
    "io_inp": [
      1,
      -2,
      -4,
      -5,
      3,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, -2, 3, 4, -1]\noutput : list = [-2, 3, 2, -3, -2, 2]",
    "output": "generated_output : list = reverse(add_n([3, -1, -2, 3, 4, -1],-1))",
    "io_inp": [
      3,
      -1,
      -2,
      3,
      4,
      -1
    ],
    "io_out": [
      -2,
      3,
      2,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_des([-2, -4]),-5))))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse([-3, -5, 0]))))",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [54, 54]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(mul_n([-4, -4],3),-4),1),5))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      54,
      54
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(mul_n(input,3),-4),1),5))"
  },
  {
    "input": "input : list = [-5, -3, -4, 1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(take([-5, -3, -4, 1, 1],2),-4),-1)),1)",
    "io_inp": [
      -5,
      -3,
      -4,
      1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(take(input,2),-4),-1)),1)"
  },
  {
    "input": "input : list = [1, 4, -4, -1, -2]\noutput : list = [-4, -2, -1, 1, 4]",
    "output": "generated_output : list = sort_asc([1, 4, -4, -1, -2])",
    "io_inp": [
      1,
      4,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, -1, 0]\noutput : list = [6, 8, 9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(drop([-4, -3, -1, 0],1),5)),-4)",
    "io_inp": [
      -4,
      -3,
      -1,
      0
    ],
    "io_out": [
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(drop(input,1),5)),-4)"
  },
  {
    "input": "input : list = [5, -3, -5, -1, -2, -3]\noutput : list = [14, 6, 4, 8, 7, 6]",
    "output": "generated_output : list = add_n(sub_n([5, -3, -5, -1, -2, -3],-5),4)",
    "io_inp": [
      5,
      -3,
      -5,
      -1,
      -2,
      -3
    ],
    "io_out": [
      14,
      6,
      4,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),4)"
  },
  {
    "input": "input : list = [3, 4, 4, -5, 1, 0]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(sub_n(add_n(drop([3, 4, 4, -5, 1, 0],4),3),2))",
    "io_inp": [
      3,
      4,
      4,
      -5,
      1,
      0
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(drop(input,4),3),2))"
  },
  {
    "input": "input : list = [2, 0, 0, 2]\noutput : list = [-6, 0, 0, -6]",
    "output": "generated_output : list = mul_n([2, 0, 0, 2],-3)",
    "io_inp": [
      2,
      0,
      0,
      2
    ],
    "io_out": [
      -6,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [0, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(mul_n([1, 3, 1],3),13),4)),-5)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(mul_n(input,3),13),4)),-5)"
  },
  {
    "input": "input : list = [2, -1, -3, 3, -1, 5]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = take([2, -1, -3, 3, -1, 5],3)",
    "io_inp": [
      2,
      -1,
      -3,
      3,
      -1,
      5
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, -5, 3, 0, 2, -4]\noutput : list = [3, 0, 2, -4]",
    "output": "generated_output : list = drop([4, -5, 3, 0, 2, -4],2)",
    "io_inp": [
      4,
      -5,
      3,
      0,
      2,
      -4
    ],
    "io_out": [
      3,
      0,
      2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = take(add_n(add_n(reverse(reverse([-2, 3])),-3),2),3)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(reverse(input)),-3),2),3)"
  },
  {
    "input": "input : list = [0, 5, 5, 4, -4, 5]\noutput : list = [5, 5, 5, 4, 0, -4]",
    "output": "generated_output : list = sort_des([0, 5, 5, 4, -4, 5])",
    "io_inp": [
      0,
      5,
      5,
      4,
      -4,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, -1, 5, 1, -5]\noutput : list = [0, -6, -8, -12, -12, -20]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(reverse([-2, 1, -1, 5, 1, -5])),-2),-5),5)",
    "io_inp": [
      -2,
      1,
      -1,
      5,
      1,
      -5
    ],
    "io_out": [
      0,
      -6,
      -8,
      -12,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(reverse(input)),-2),-5),5)"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = sort_asc([-2, 0, 0])",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2, -3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(drop([3, 2, -3],1)),10),-3),3)",
    "io_inp": [
      3,
      2,
      -3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(drop(input,1)),10),-3),3)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [11, 9, 6]",
    "output": "generated_output : list = sub_n(add_n([2, 0, -3],4),-5)",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      11,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),-5)"
  },
  {
    "input": "input : list = [3, 0, -2, 0, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(drop(mul_n(add_n(sub_n([3, 0, -2, 0, -1],1),-1),-1),4))",
    "io_inp": [
      3,
      0,
      -2,
      0,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(add_n(sub_n(input,1),-1),-1),4))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-14, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(mul_n([5, 1],-4))),-2),4)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -14,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(mul_n(input,-4))),-2),4)"
  },
  {
    "input": "input : list = [-1, -3, 3, 4, -3]\noutput : list = [6, 4, 10, 11, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(reverse([-1, -3, 3, 4, -3]),2),-4)),-5)",
    "io_inp": [
      -1,
      -3,
      3,
      4,
      -3
    ],
    "io_out": [
      6,
      4,
      10,
      11,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(reverse(input),2),-4)),-5)"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, -2, 3])",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse([-2, -3])",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = reverse(reverse([-2, 0]))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [-1, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3, -1])",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, 3, -4, -3]\noutput : list = [-2, -3, -4]",
    "output": "generated_output : list = mul_n(drop(reverse(sort_asc(reverse([4, -2, 3, -4, -3]))),2),1)",
    "io_inp": [
      4,
      -2,
      3,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(reverse(sort_asc(reverse(input))),2),1)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-30, -12]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(mul_n([1, 4],-2),-2)),-4),3)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -30,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(mul_n(input,-2),-2)),-4),3)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = sort_des([4, -5, 2])",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n([2, 0],2),5),19))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(input,2),5),19))"
  },
  {
    "input": "input : list = [0, -3, -3, -5]\noutput : list = [-5, -3, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(sort_des([0, -3, -3, -5])))))",
    "io_inp": [
      0,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [4, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n([1, -4, -5],4))",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      4,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(sort_asc([-4, -2]),1),4)))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(sort_asc(input),1),4)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [4, -20]",
    "output": "generated_output : list = sort_des(reverse(mul_n([-5, 1],4)))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [-1, 4, 3, -3, -1]\noutput : list = [0, -2, 4, 5, 0]",
    "output": "generated_output : list = sub_n(reverse([-1, 4, 3, -3, -1]),-1)",
    "io_inp": [
      -1,
      4,
      3,
      -3,
      -1
    ],
    "io_out": [
      0,
      -2,
      4,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-3, -2, 4, -4]\noutput : list = [-3, -2, -1, 5]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse([-3, -2, 4, -4])),1))",
    "io_inp": [
      -3,
      -2,
      4,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(input)),1))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2, -3, 3]\noutput : list = [-9, -3, -6, 12]",
    "output": "generated_output : list = mul_n(add_n(add_n([-4, -2, -3, 3],4),-3),3)",
    "io_inp": [
      -4,
      -2,
      -3,
      3
    ],
    "io_out": [
      -9,
      -3,
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,4),-3),3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [7, 8]",
    "output": "generated_output : list = sub_n(add_n(add_n([1, 2],-3),4),-5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-3),4),-5)"
  },
  {
    "input": "input : list = [3, -5, 4, 2, -1, 0]\noutput : list = [-10, -6, -5, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(reverse([3, -5, 4, 2, -1, 0])),25),-5))",
    "io_inp": [
      3,
      -5,
      4,
      2,
      -1,
      0
    ],
    "io_out": [
      -10,
      -6,
      -5,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(reverse(input)),25),-5))"
  },
  {
    "input": "input : list = [3, 5, 5, -5]\noutput : list = [5, 5, 3, -5]",
    "output": "generated_output : list = take(take(reverse(sort_asc(sort_asc([3, 5, 5, -5]))),24),8)",
    "io_inp": [
      3,
      5,
      5,
      -5
    ],
    "io_out": [
      5,
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(sort_asc(input))),24),8)"
  },
  {
    "input": "input : list = [-1, -5, -2]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(add_n([-1, -5, -2],5),5))),4)",
    "io_inp": [
      -1,
      -5,
      -2
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(add_n(input,5),5))),4)"
  },
  {
    "input": "input : list = [5, 0, -3, 2]\noutput : list = [-3, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([5, 0, -3, 2])",
    "io_inp": [
      5,
      0,
      -3,
      2
    ],
    "io_out": [
      -3,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 4, 4, 3]\noutput : list = [6, 7, 7, -1, 2]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(reverse([-1, -4, 4, 4, 3]),-4),2),5),1)",
    "io_inp": [
      -1,
      -4,
      4,
      4,
      3
    ],
    "io_out": [
      6,
      7,
      7,
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(reverse(input),-4),2),5),1)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [-20, 10, 30]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(reverse([-5, 1, 5])),5),-5))",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      -20,
      10,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(reverse(input)),5),-5))"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [14, 4, 4]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(reverse([2, 2, -3]),-3),-1),-2),1)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      14,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(reverse(input),-3),-1),-2),1)"
  },
  {
    "input": "input : list = [-2, 2, -2, 0, -3]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(take([-2, 2, -2, 0, -3],2)))))",
    "io_inp": [
      -2,
      2,
      -2,
      0,
      -3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [4, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc([3, 1]),1))),-1)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc(input),1))),-1)"
  },
  {
    "input": "input : list = [4, 3, -5, -2]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(take([4, 3, -5, -2],2),7))))",
    "io_inp": [
      4,
      3,
      -5,
      -2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(take(input,2),7))))"
  },
  {
    "input": "input : list = [2, 3, 3, -1, 2, -5]\noutput : list = [3, 3, 2, 2, -1, -5]",
    "output": "generated_output : list = sort_des([2, 3, 3, -1, 2, -5])",
    "io_inp": [
      2,
      3,
      3,
      -1,
      2,
      -5
    ],
    "io_out": [
      3,
      3,
      2,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, -1, -5]\noutput : list = [17]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(take([3, 1, -1, -5],1),5),23),-2),-4)",
    "io_inp": [
      3,
      1,
      -1,
      -5
    ],
    "io_out": [
      17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(take(input,1),5),23),-2),-4)"
  },
  {
    "input": "input : list = [-5, 2, 2, -3, 0]\noutput : list = [-18, -18, -6, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n(drop([-5, 2, 2, -3, 0],1),3)),3),-2)",
    "io_inp": [
      -5,
      2,
      2,
      -3,
      0
    ],
    "io_out": [
      -18,
      -18,
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(drop(input,1),3)),3),-2)"
  },
  {
    "input": "input : list = [0, 4, 3, 5, -2]\noutput : list = [-4, 0, -1, 1, -6]",
    "output": "generated_output : list = sub_n([0, 4, 3, 5, -2],4)",
    "io_inp": [
      0,
      4,
      3,
      5,
      -2
    ],
    "io_out": [
      -4,
      0,
      -1,
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, -1, -4, 3, -1]\noutput : list = [-2, -6, -6, -6, -9]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_des([-1, -1, -4, 3, -1]),1),3)),-1)",
    "io_inp": [
      -1,
      -1,
      -4,
      3,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_des(input),1),3)),-1)"
  },
  {
    "input": "input : list = [5, -5, -2, 5, -2, 3]\noutput : list = [-5, -2, -2, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([5, -5, -2, 5, -2, 3])))",
    "io_inp": [
      5,
      -5,
      -2,
      5,
      -2,
      3
    ],
    "io_out": [
      -5,
      -2,
      -2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(take(add_n([2, -4],1),2))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,1),2))"
  },
  {
    "input": "input : list = [4, -5, 2, 4, 0, 1]\noutput : list = [4, -5, 2, 4, 0, 1]",
    "output": "generated_output : list = reverse(reverse([4, -5, 2, 4, 0, 1]))",
    "io_inp": [
      4,
      -5,
      2,
      4,
      0,
      1
    ],
    "io_out": [
      4,
      -5,
      2,
      4,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 1, -2],1)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 5, 3, 5, 3]\noutput : list = [-22, 10, 10, 18, 18]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(mul_n([-5, 5, 3, 5, 3],4)),3),-1))",
    "io_inp": [
      -5,
      5,
      3,
      5,
      3
    ],
    "io_out": [
      -22,
      10,
      10,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(mul_n(input,4)),3),-1))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [15, -12]",
    "output": "generated_output : list = mul_n([-5, 4],-3)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 5, -1, 5]\noutput : list = [8, 10, 4, 10]",
    "output": "generated_output : list = add_n([3, 5, -1, 5],5)",
    "io_inp": [
      3,
      5,
      -1,
      5
    ],
    "io_out": [
      8,
      10,
      4,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, -1, 0]\noutput : list = [0, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, 0])",
    "io_inp": [
      5,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, -4, 5, -2]\noutput : list = [14, 9, 8, 7, 5]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(sub_n([0, -1, -4, 5, -2],-4)),-5),16))",
    "io_inp": [
      0,
      -1,
      -4,
      5,
      -2
    ],
    "io_out": [
      14,
      9,
      8,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(sub_n(input,-4)),-5),16))"
  },
  {
    "input": "input : list = [1, 2, -1, -1, 5, -2]\noutput : list = [9, 6, 3, 3, 2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(drop([1, 2, -1, -1, 5, -2],1)),4),35))",
    "io_inp": [
      1,
      2,
      -1,
      -1,
      5,
      -2
    ],
    "io_out": [
      9,
      6,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(drop(input,1)),4),35))"
  },
  {
    "input": "input : list = [-4, 2, 1, 2, -3]\noutput : list = [3, 4, 8, 9, 9]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([-4, 2, 1, 2, -3]),5),-2)",
    "io_inp": [
      -4,
      2,
      1,
      2,
      -3
    ],
    "io_out": [
      3,
      4,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),5),-2)"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [10, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(drop(sort_asc([-4, 4, 5]),1),-1)),-5)",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      10,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(drop(sort_asc(input),1),-1)),-5)"
  },
  {
    "input": "input : list = [-5, 1, -1]\noutput : list = [0, -2, -6]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(sort_asc([-5, 1, -1]),17),-3)),-2)",
    "io_inp": [
      -5,
      1,
      -1
    ],
    "io_out": [
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(sort_asc(input),17),-3)),-2)"
  },
  {
    "input": "input : list = [0, -5, 3, -5, 2]\noutput : list = [7, 6, 4, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(add_n([0, -5, 3, -5, 2],1),-2)),1))",
    "io_inp": [
      0,
      -5,
      3,
      -5,
      2
    ],
    "io_out": [
      7,
      6,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(add_n(input,1),-2)),1))"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [-6, -8, -1]",
    "output": "generated_output : list = add_n([-3, -5, 2],-3)",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      -6,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, -5, 4, -3, -3]\noutput : list = [3, 3]",
    "output": "generated_output : list = mul_n(drop([2, -5, 4, -3, -3],3),-1)",
    "io_inp": [
      2,
      -5,
      4,
      -3,
      -3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-1)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sort_asc([2, -4]),-3),-1),1),8)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sort_asc(input),-3),-1),1),8)"
  },
  {
    "input": "input : list = [-3, 4, -5, 4, 5, 3]\noutput : list = [3, 5, 4, -5]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(drop([-3, 4, -5, 4, 5, 3],2),1)),1),49)",
    "io_inp": [
      -3,
      4,
      -5,
      4,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(drop(input,2),1)),1),49)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(take([-2, 5, -4],1)),22)),-2)",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(take(input,1)),22)),-2)"
  },
  {
    "input": "input : list = [-4, -5, 2, 5, -2, -5]\noutput : list = [3]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(take([-4, -5, 2, 5, -2, -5],1),-2)),-5),37)",
    "io_inp": [
      -4,
      -5,
      2,
      5,
      -2,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(take(input,1),-2)),-5),37)"
  },
  {
    "input": "input : list = [4, -1, 5, -1, 3, -5]\noutput : list = [10, 9, 8, 4, 4, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(sort_des([4, -1, 5, -1, 3, -5]),1))),-5)",
    "io_inp": [
      4,
      -1,
      5,
      -1,
      3,
      -5
    ],
    "io_out": [
      10,
      9,
      8,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(sort_des(input),1))),-5)"
  },
  {
    "input": "input : list = [0, 4, -1, 0]\noutput : list = [-5, -10, 15, -5]",
    "output": "generated_output : list = add_n(mul_n(reverse([0, 4, -1, 0]),5),-5)",
    "io_inp": [
      0,
      4,
      -1,
      0
    ],
    "io_out": [
      -5,
      -10,
      15,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),5),-5)"
  },
  {
    "input": "input : list = [-3, -1, 3, 1, 5, 0]\noutput : list = [0, 5, 1, 3, -1, -3]",
    "output": "generated_output : list = reverse([-3, -1, 3, 1, 5, 0])",
    "io_inp": [
      -3,
      -1,
      3,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      1,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-20, 12]",
    "output": "generated_output : list = mul_n([5, -3],-4)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, -4, -3, 3, -5]\noutput : list = [-15, 20, 15, -15, 25]",
    "output": "generated_output : list = mul_n([3, -4, -3, 3, -5],-5)",
    "io_inp": [
      3,
      -4,
      -3,
      3,
      -5
    ],
    "io_out": [
      -15,
      20,
      15,
      -15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -5, -2, 1, -1, 1]\noutput : list = [-2, 5, 2, -1, 1, -1]",
    "output": "generated_output : list = reverse(mul_n(reverse([2, -5, -2, 1, -1, 1]),-1))",
    "io_inp": [
      2,
      -5,
      -2,
      1,
      -1,
      1
    ],
    "io_out": [
      -2,
      5,
      2,
      -1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [2, 2, -3, 2, -1]\noutput : list = [6, 6, 6, -3, -9]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(sort_asc([2, 2, -3, 2, -1]),3),22),1))",
    "io_inp": [
      2,
      2,
      -3,
      2,
      -1
    ],
    "io_out": [
      6,
      6,
      6,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(sort_asc(input),3),22),1))"
  },
  {
    "input": "input : list = [0, 1, -5, 5, -2, -5]\noutput : list = [25, 25, 10, 0, -5, -25]",
    "output": "generated_output : list = mul_n(take(sort_asc([0, 1, -5, 5, -2, -5]),29),-5)",
    "io_inp": [
      0,
      1,
      -5,
      5,
      -2,
      -5
    ],
    "io_out": [
      25,
      25,
      10,
      0,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),29),-5)"
  },
  {
    "input": "input : list = [-1, 1, 5, -4, 0, -2]\noutput : list = [15, 9, -3]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(take([-1, 1, 5, -4, 0, -2],3)),-4)),-3)",
    "io_inp": [
      -1,
      1,
      5,
      -4,
      0,
      -2
    ],
    "io_out": [
      15,
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(take(input,3)),-4)),-3)"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [4, -5, -5]",
    "output": "generated_output : list = take(sort_des([-5, 4, -5]),5)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),5)"
  },
  {
    "input": "input : list = [0, -1, -1]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sub_n(sort_des(drop([0, -1, -1],1)),5)",
    "io_inp": [
      0,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),5)"
  },
  {
    "input": "input : list = [4, 5, -3, 5]\noutput : list = [-5, -5, -4, 3]",
    "output": "generated_output : list = take(sort_asc(mul_n([4, 5, -3, 5],-1)),7)",
    "io_inp": [
      4,
      5,
      -3,
      5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-1)),7)"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [-15, -5, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(mul_n([-3, 0, -1],5),17))),1)",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      -15,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(mul_n(input,5),17))),1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-25, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(mul_n([0, 5],-5)))))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -25,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [2, 4, -1, -4]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sub_n(drop([2, 4, -1, -4],2),3)",
    "io_inp": [
      2,
      4,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [5, -5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = drop([5, -5, 4],1)",
    "io_inp": [
      5,
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -5, -4, -5, -3, 1]\noutput : list = [13, 13, 11, 9, 1, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n([2, -5, -4, -5, -3, 1],-2)),-2),1)",
    "io_inp": [
      2,
      -5,
      -4,
      -5,
      -3,
      1
    ],
    "io_out": [
      13,
      13,
      11,
      9,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(input,-2)),-2),1)"
  },
  {
    "input": "input : list = [5, -5, 3, 0, -2, 1]\noutput : list = [5, 1, -3, -5, -9, -15]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(sort_des([5, -5, 3, 0, -2, 1]))),2),-5)",
    "io_inp": [
      5,
      -5,
      3,
      0,
      -2,
      1
    ],
    "io_out": [
      5,
      1,
      -3,
      -5,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(sort_des(input))),2),-5)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [28, -2, -12]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(mul_n([4, -2, -4],-1),-2),-5),16),2)",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      28,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(mul_n(input,-1),-2),-5),16),2)"
  },
  {
    "input": "input : list = [-1, 1, 2, -5, 3]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(take([-1, 1, 2, -5, 3],3)),6)))",
    "io_inp": [
      -1,
      1,
      2,
      -5,
      3
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(take(input,3)),6)))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-36, 48]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n([-3, 4],-4),-3))))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -36,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n(input,-4),-3))))"
  },
  {
    "input": "input : list = [-2, 4, 5, 3]\noutput : list = [-20, -16, -12, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([-2, 4, 5, 3])),-4)",
    "io_inp": [
      -2,
      4,
      5,
      3
    ],
    "io_out": [
      -20,
      -16,
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [-2, 2, 1, -4]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(mul_n([-2, 2, 1, -4],-1),11)),3))",
    "io_inp": [
      -2,
      2,
      1,
      -4
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(mul_n(input,-1),11)),3))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [8, 16]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(reverse([3, -5]),-3),5),-5))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(reverse(input),-3),5),-5))"
  },
  {
    "input": "input : list = [-2, 3, 0, 3, 5, 4]\noutput : list = [0, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(drop([-2, 3, 0, 3, 5, 4],1)))",
    "io_inp": [
      -2,
      3,
      0,
      3,
      5,
      4
    ],
    "io_out": [
      0,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-1, -3, -5, -4]\noutput : list = [-12, -32, -52, -42]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(mul_n([-1, -3, -5, -4],-5),-2),5),-3),-4)",
    "io_inp": [
      -1,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -12,
      -32,
      -52,
      -42
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(mul_n(input,-5),-2),5),-3),-4)"
  },
  {
    "input": "input : list = [-5, 0, -3, 0]\noutput : list = [2, 2, -1]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(drop([-5, 0, -3, 0],1)),-2)),26)",
    "io_inp": [
      -5,
      0,
      -3,
      0
    ],
    "io_out": [
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(drop(input,1)),-2)),26)"
  },
  {
    "input": "input : list = [-2, -1, -5, 5, -3]\noutput : list = [10, 4, 3, 2, 0]",
    "output": "generated_output : list = take(sort_des(add_n([-2, -1, -5, 5, -3],5)),32)",
    "io_inp": [
      -2,
      -1,
      -5,
      5,
      -3
    ],
    "io_out": [
      10,
      4,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,5)),32)"
  },
  {
    "input": "input : list = [-1, -4, -5, 4, -4]\noutput : list = [9, -1, -7, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(sort_des([-1, -4, -5, 4, -4])),2),-1))",
    "io_inp": [
      -1,
      -4,
      -5,
      4,
      -4
    ],
    "io_out": [
      9,
      -1,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(sort_des(input)),2),-1))"
  },
  {
    "input": "input : list = [-2, -3, -4, 4, -1]\noutput : list = [-26, -16, -14, -12, -10]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(add_n([-2, -3, -4, 4, -1],1),-3),5),-2))",
    "io_inp": [
      -2,
      -3,
      -4,
      4,
      -1
    ],
    "io_out": [
      -26,
      -16,
      -14,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(add_n(input,1),-3),5),-2))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [12, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(sub_n([-3, 2],1)),-3)))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      12,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(sub_n(input,1)),-3)))"
  },
  {
    "input": "input : list = [-2, -1, 0, 0, -3, -1]\noutput : list = [0, 0, -1, -1, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc([-2, -1, 0, 0, -3, -1]))",
    "io_inp": [
      -2,
      -1,
      0,
      0,
      -3,
      -1
    ],
    "io_out": [
      0,
      0,
      -1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -4, -4, 3]\noutput : list = [-4, -4, -2, 3]",
    "output": "generated_output : list = sort_asc([-2, -4, -4, 3])",
    "io_inp": [
      -2,
      -4,
      -4,
      3
    ],
    "io_out": [
      -4,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, 5, -3]\noutput : list = [-8, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(drop(add_n(add_n([-1, 5, 5, -3],-2),-3),1)))",
    "io_inp": [
      -1,
      5,
      5,
      -3
    ],
    "io_out": [
      -8,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(add_n(add_n(input,-2),-3),1)))"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [7, 19, 19]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_asc([3, -3, 3]),5),2)),3)",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      7,
      19,
      19
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_asc(input),5),2)),3)"
  },
  {
    "input": "input : list = [-5, -1, -4, 0]\noutput : list = [0, -4, -1, -5]",
    "output": "generated_output : list = reverse([-5, -1, -4, 0])",
    "io_inp": [
      -5,
      -1,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, -1, 4]\noutput : list = [4, -1, -1]",
    "output": "generated_output : list = sort_des(drop([5, -1, -1, 4],1))",
    "io_inp": [
      5,
      -1,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [3, -1, 0, 3]\noutput : list = [1, -2, -3, 1]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(add_n([3, -1, 0, 3],-4),-3),-5)),21)",
    "io_inp": [
      3,
      -1,
      0,
      3
    ],
    "io_out": [
      1,
      -2,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(add_n(input,-4),-3),-5)),21)"
  },
  {
    "input": "input : list = [2, 0, -4, 3]\noutput : list = [2]",
    "output": "generated_output : list = take(take([2, 0, -4, 3],1),1)",
    "io_inp": [
      2,
      0,
      -4,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(input,1),1)"
  },
  {
    "input": "input : list = [-4, 2, 2, -1, 2]\noutput : list = [-10, 20, 20, 5, 20]",
    "output": "generated_output : list = mul_n(add_n([-4, 2, 2, -1, 2],2),5)",
    "io_inp": [
      -4,
      2,
      2,
      -1,
      2
    ],
    "io_out": [
      -10,
      20,
      20,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),5)"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [-2, -5, -5]",
    "output": "generated_output : list = sub_n(reverse([-4, -4, -1]),1)",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-5, 0, 4, -5]\noutput : list = [-300, 100, 420, -300]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(mul_n([-5, 0, 4, -5],-4),5),5),12),-4)",
    "io_inp": [
      -5,
      0,
      4,
      -5
    ],
    "io_out": [
      -300,
      100,
      420,
      -300
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(mul_n(input,-4),5),5),12),-4)"
  },
  {
    "input": "input : list = [-3, 5, 3, -5]\noutput : list = [8]",
    "output": "generated_output : list = take(take(add_n(sub_n(drop([-3, 5, 3, -5],2),-1),4),37),1)",
    "io_inp": [
      -3,
      5,
      3,
      -5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(drop(input,2),-1),4),37),1)"
  },
  {
    "input": "input : list = [2, 2, -4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = drop([2, 2, -4, 2],2)",
    "io_inp": [
      2,
      2,
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -1, -3, -1, -2, 2]\noutput : list = [-12, -11, -10, -10, -8, -7]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(sort_des([1, -1, -3, -1, -2, 2]),-4),-5)))",
    "io_inp": [
      1,
      -1,
      -3,
      -1,
      -2,
      2
    ],
    "io_out": [
      -12,
      -11,
      -10,
      -10,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(sort_des(input),-4),-5)))"
  },
  {
    "input": "input : list = [-1, 5, -3, -1, -3, -1]\noutput : list = [1, 1, 3, 3, 3, 9]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(sort_des([-1, 5, -3, -1, -3, -1]),22),5),-1))",
    "io_inp": [
      -1,
      5,
      -3,
      -1,
      -3,
      -1
    ],
    "io_out": [
      1,
      1,
      3,
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(sort_des(input),22),5),-1))"
  },
  {
    "input": "input : list = [0, 3, 2, -5]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 3, 2, -5],1)",
    "io_inp": [
      0,
      3,
      2,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -5, 5, -1, 5, 5]\noutput : list = [60, 48, 12, -60, -60, -60]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(mul_n([-4, -5, 5, -1, 5, 5],3)),2),13),-2)",
    "io_inp": [
      -4,
      -5,
      5,
      -1,
      5,
      5
    ],
    "io_out": [
      60,
      48,
      12,
      -60,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(mul_n(input,3)),2),13),-2)"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [7, 1, 2]",
    "output": "generated_output : list = sub_n([3, -3, -2],-4)",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      7,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(take([-3, -5, -4],1),-1),1)),11)",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(take(input,1),-1),1)),11)"
  },
  {
    "input": "input : list = [-1, -4, -1, 5]\noutput : list = [6, 0, 0, -3]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sub_n([-1, -4, -1, 5],1))),-2),49)",
    "io_inp": [
      -1,
      -4,
      -1,
      5
    ],
    "io_out": [
      6,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sub_n(input,1))),-2),49)"
  },
  {
    "input": "input : list = [2, 0, 3, -4]\noutput : list = [-9, -2, -5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(drop([2, 0, 3, -4],1),-1)),-5),1)",
    "io_inp": [
      2,
      0,
      3,
      -4
    ],
    "io_out": [
      -9,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(drop(input,1),-1)),-5),1)"
  },
  {
    "input": "input : list = [-1, 0, 1, -5, 4, 4]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(reverse(reverse(reverse(take([-1, 0, 1, -5, 4, 4],2)))),18)",
    "io_inp": [
      -1,
      0,
      1,
      -5,
      4,
      4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(take(input,2)))),18)"
  },
  {
    "input": "input : list = [4, 0, -4, 0, 0, -3]\noutput : list = [-4, -3, 0, 0, 0, 4]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sort_asc([4, 0, -4, 0, 0, -3]))),37),16)",
    "io_inp": [
      4,
      0,
      -4,
      0,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      0,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sort_asc(input))),37),16)"
  },
  {
    "input": "input : list = [-1, -5, 0, 4]\noutput : list = [-1, 3, 4, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sub_n([-1, -5, 0, 4],-3),-4),-4),-1))",
    "io_inp": [
      -1,
      -5,
      0,
      4
    ],
    "io_out": [
      -1,
      3,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sub_n(input,-3),-4),-4),-1))"
  },
  {
    "input": "input : list = [5, -3, 1, -5, -2, 0]\noutput : list = [-6, -4, -3, -1, 0, 4]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(reverse([5, -3, 1, -5, -2, 0])),-1)),42)",
    "io_inp": [
      5,
      -3,
      1,
      -5,
      -2,
      0
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(reverse(input)),-1)),42)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [6, 0]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(sub_n([3, -3],-2)),-2),1))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(sub_n(input,-2)),-2),1))"
  },
  {
    "input": "input : list = [2, 2, -3, -2]\noutput : list = [-2, -2, -7, -6]",
    "output": "generated_output : list = sub_n([2, 2, -3, -2],4)",
    "io_inp": [
      2,
      2,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, -5, 0, 5]\noutput : list = [30, 5, -15, -20]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(sort_asc([4, -5, 0, 5]),10),-5),2),-3)",
    "io_inp": [
      4,
      -5,
      0,
      5
    ],
    "io_out": [
      30,
      5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(sort_asc(input),10),-5),2),-3)"
  },
  {
    "input": "input : list = [-4, 3, 5, -1, 4, -3]\noutput : list = [-80, -60, -20, 60, 80, 100]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([-4, 3, 5, -1, 4, -3],-5),-4))",
    "io_inp": [
      -4,
      3,
      5,
      -1,
      4,
      -3
    ],
    "io_out": [
      -80,
      -60,
      -20,
      60,
      80,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,-5),-4))"
  },
  {
    "input": "input : list = [4, 2, -3, -1, 4]\noutput : list = [-9, -5, 1, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(mul_n([4, 2, -3, -1, 4],2),7),5)),2)",
    "io_inp": [
      4,
      2,
      -3,
      -1,
      4
    ],
    "io_out": [
      -9,
      -5,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(mul_n(input,2),7),5)),2)"
  },
  {
    "input": "input : list = [5, 1, -4]\noutput : list = [1, 6, 10]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(sort_asc([5, 1, -4])),5)))",
    "io_inp": [
      5,
      1,
      -4
    ],
    "io_out": [
      1,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [-5, 2, 3]\noutput : list = [-5, -6, -13]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(sort_asc([-5, 2, 3]),1),4),-5))",
    "io_inp": [
      -5,
      2,
      3
    ],
    "io_out": [
      -5,
      -6,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(sort_asc(input),1),4),-5))"
  },
  {
    "input": "input : list = [-5, 2, 3, 4, 1, 3]\noutput : list = [-12, -9, -9, -6, -3, 15]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sort_des([-5, 2, 3, 4, 1, 3])))),-3)",
    "io_inp": [
      -5,
      2,
      3,
      4,
      1,
      3
    ],
    "io_out": [
      -12,
      -9,
      -9,
      -6,
      -3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [5, -3, -4, 3, -2]\noutput : list = [3, -5, -6, 1, -4]",
    "output": "generated_output : list = add_n([5, -3, -4, 3, -2],-2)",
    "io_inp": [
      5,
      -3,
      -4,
      3,
      -2
    ],
    "io_out": [
      3,
      -5,
      -6,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, -2, -3, 5]\noutput : list = [3, -2, -3, 5]",
    "output": "generated_output : list = add_n(sub_n([3, -2, -3, 5],2),2)",
    "io_inp": [
      3,
      -2,
      -3,
      5
    ],
    "io_out": [
      3,
      -2,
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),2)"
  },
  {
    "input": "input : list = [-3, 4, 2, -3, 0, 1]\noutput : list = [-20, -20, 16, 28, 40, 64]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(sort_asc([-3, 4, 2, -3, 0, 1]),-3),5),-4),-4)",
    "io_inp": [
      -3,
      4,
      2,
      -3,
      0,
      1
    ],
    "io_out": [
      -20,
      -20,
      16,
      28,
      40,
      64
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(sort_asc(input),-3),5),-4),-4)"
  },
  {
    "input": "input : list = [0, 1, -4, 0, -4, 3]\noutput : list = [3, -4, 0, -4, 1, 0]",
    "output": "generated_output : list = reverse([0, 1, -4, 0, -4, 3])",
    "io_inp": [
      0,
      1,
      -4,
      0,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      0,
      -4,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 0, -3, 2, 4, -1]\noutput : list = [4, 4, 2, 0, -1, -3]",
    "output": "generated_output : list = sort_des([4, 0, -3, 2, 4, -1])",
    "io_inp": [
      4,
      0,
      -3,
      2,
      4,
      -1
    ],
    "io_out": [
      4,
      4,
      2,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-8, -8, -13]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_asc([-2, -1, -1])),5)),-3)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_asc(input)),5)),-3)"
  },
  {
    "input": "input : list = [-4, -5, -3, -3]\noutput : list = [-1, -1, -2, -3]",
    "output": "generated_output : list = take(take(sort_des(sub_n([-4, -5, -3, -3],-2)),7),33)",
    "io_inp": [
      -4,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(input,-2)),7),33)"
  },
  {
    "input": "input : list = [-2, -5, 4, 2]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(take([-2, -5, 4, 2],1),-3)),1))",
    "io_inp": [
      -2,
      -5,
      4,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(take(input,1),-3)),1))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [7, 4]",
    "output": "generated_output : list = sort_des(take(take(sub_n(sort_des([0, 3]),-4),13),31))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(sort_des(input),-4),13),31))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [10, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des([5, 5])),-3),2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(input)),-3),2)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [-24, -54, -54]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(mul_n([5, 5, 2],5),4),2)),-2)",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      -24,
      -54,
      -54
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(mul_n(input,5),4),2)),-2)"
  },
  {
    "input": "input : list = [-5, 4, 4, -4]\noutput : list = [4, 4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 4, 4, -4])",
    "io_inp": [
      -5,
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [1, 4, 8]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(add_n([0, -3, 4],5)),1)))",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      1,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(add_n(input,5)),1)))"
  },
  {
    "input": "input : list = [5, 2, -4, 4, -4]\noutput : list = [3, 0, -6, 2]",
    "output": "generated_output : list = reverse(add_n(take(drop(reverse([5, 2, -4, 4, -4]),1),31),-2))",
    "io_inp": [
      5,
      2,
      -4,
      4,
      -4
    ],
    "io_out": [
      3,
      0,
      -6,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(drop(reverse(input),1),31),-2))"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [16, 0]",
    "output": "generated_output : list = mul_n(add_n(drop(add_n([-4, -3, 5],-1),1),-4),-2)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(add_n(input,-1),1),-4),-2)"
  },
  {
    "input": "input : list = [-5, 4, 0, 5]\noutput : list = [-8, -3, 1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(sort_des([-5, 4, 0, 5])),-3),38))",
    "io_inp": [
      -5,
      4,
      0,
      5
    ],
    "io_out": [
      -8,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(sort_des(input)),-3),38))"
  },
  {
    "input": "input : list = [3, -3, -4, -3]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = sort_des(drop([3, -3, -4, -3],1))",
    "io_inp": [
      3,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-89, -8]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(add_n([-4, 5],5),3)),-3),1)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -89,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(add_n(input,5),3)),-3),1)"
  },
  {
    "input": "input : list = [2, -2, -2]\noutput : list = [2, -2, -2]",
    "output": "generated_output : list = sort_des([2, -2, -2])",
    "io_inp": [
      2,
      -2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 0, 1, -1, 0, 5]\noutput : list = [-4, -5, -4, -6, -5, 0]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(reverse([1, 0, 1, -1, 0, 5]),9),3),2))",
    "io_inp": [
      1,
      0,
      1,
      -1,
      0,
      5
    ],
    "io_out": [
      -4,
      -5,
      -4,
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(reverse(input),9),3),2))"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [-6, 2, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n([3, 5, -5],-2))),-3)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      -6,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(input,-2))),-3)"
  },
  {
    "input": "input : list = [-3, -2, -4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(sort_asc(drop([-3, -2, -4],1)),-1)",
    "io_inp": [
      -3,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [-1, -5, 2]\noutput : list = [-5, -1, 2]",
    "output": "generated_output : list = sort_asc([-1, -5, 2])",
    "io_inp": [
      -1,
      -5,
      2
    ],
    "io_out": [
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, 5, 5, -1]\noutput : list = [-11, -7, -7, 17, 17]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(reverse([-1, -2, 5, 5, -1]),19)),4),3)",
    "io_inp": [
      -1,
      -2,
      5,
      5,
      -1
    ],
    "io_out": [
      -11,
      -7,
      -7,
      17,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(reverse(input),19)),4),3)"
  },
  {
    "input": "input : list = [-2, 4, -5, -4, 0]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = add_n(drop([-2, 4, -5, -4, 0],2),1)",
    "io_inp": [
      -2,
      4,
      -5,
      -4,
      0
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),1)"
  },
  {
    "input": "input : list = [5, 4, -2, -1]\noutput : list = [-160, -128, 32, 64]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n([5, 4, -2, -1],4),2)),-4)",
    "io_inp": [
      5,
      4,
      -2,
      -1
    ],
    "io_out": [
      -160,
      -128,
      32,
      64
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(input,4),2)),-4)"
  },
  {
    "input": "input : list = [5, -5, 4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -5, 4],1)",
    "io_inp": [
      5,
      -5,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 2, -3, -1, 1, 5]\noutput : list = [-15, -5, 5, 10, 25, 25]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sort_des([5, 2, -3, -1, 1, 5])))),5)",
    "io_inp": [
      5,
      2,
      -3,
      -1,
      1,
      5
    ],
    "io_out": [
      -15,
      -5,
      5,
      10,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-1, -4, 0, 3, -5, 4]\noutput : list = [9, 8, 5, 4, 1, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(add_n([-1, -4, 0, 3, -5, 4],5)),2),2))",
    "io_inp": [
      -1,
      -4,
      0,
      3,
      -5,
      4
    ],
    "io_out": [
      9,
      8,
      5,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(add_n(input,5)),2),2))"
  },
  {
    "input": "input : list = [4, 0, 3, 1, -5]\noutput : list = [-17, -13, -5, -1, 19]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([4, 0, 3, 1, -5]),-4),1)",
    "io_inp": [
      4,
      0,
      3,
      1,
      -5
    ],
    "io_out": [
      -17,
      -13,
      -5,
      -1,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-4),1)"
  },
  {
    "input": "input : list = [4, 3, -3, -5, 2]\noutput : list = [0, -1, -7, -9, -2]",
    "output": "generated_output : list = add_n([4, 3, -3, -5, 2],-4)",
    "io_inp": [
      4,
      3,
      -3,
      -5,
      2
    ],
    "io_out": [
      0,
      -1,
      -7,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-28, -28]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-4, -4],3)),4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -28,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,3)),4)"
  },
  {
    "input": "input : list = [-2, 3, -5, 4, 1]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(take(reverse(add_n(take([-2, 3, -5, 4, 1],2),-1)),9),20)",
    "io_inp": [
      -2,
      3,
      -5,
      4,
      1
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(take(input,2),-1)),9),20)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [5, 0]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(sort_des([-3, 2]),7),-2)),5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(sort_des(input),7),-2)),5)"
  },
  {
    "input": "input : list = [2, -3, 4, 4, -2, -3]\noutput : list = [3, 1, -4]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(take([2, -3, 4, 4, -2, -3],3)),-1)),28)",
    "io_inp": [
      2,
      -3,
      4,
      4,
      -2,
      -3
    ],
    "io_out": [
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(take(input,3)),-1)),28)"
  },
  {
    "input": "input : list = [2, -3, -5, 4]\noutput : list = [4, -6, -10, 8]",
    "output": "generated_output : list = mul_n([2, -3, -5, 4],2)",
    "io_inp": [
      2,
      -3,
      -5,
      4
    ],
    "io_out": [
      4,
      -6,
      -10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, 0, 0, -1, 4]\noutput : list = [1, -2, -3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(sort_des([1, 0, 0, -1, 4]),3))))",
    "io_inp": [
      1,
      0,
      0,
      -1,
      4
    ],
    "io_out": [
      1,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [4, 4, -5]\noutput : list = [-5, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, -5])",
    "io_inp": [
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [-2, 0, 14]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sub_n([5, -3, -2],-2),2))),26)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      -2,
      0,
      14
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sub_n(input,-2),2))),26)"
  },
  {
    "input": "input : list = [2, 2, 1, -2, -1]\noutput : list = [6, 5, 3]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(drop([2, 2, 1, -2, -1],1)),-4),3))",
    "io_inp": [
      2,
      2,
      1,
      -2,
      -1
    ],
    "io_out": [
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(drop(input,1)),-4),3))"
  },
  {
    "input": "input : list = [0, -5, -2, 2]\noutput : list = [2, 0, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc([0, -5, -2, 2]))",
    "io_inp": [
      0,
      -5,
      -2,
      2
    ],
    "io_out": [
      2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-9, -3]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(reverse([-4, 2]),-5))),3)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(reverse(input),-5))),3)"
  },
  {
    "input": "input : list = [-2, -3, 4, -1, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -3, 4, -1, 0],1)",
    "io_inp": [
      -2,
      -3,
      4,
      -1,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 3, -4, 5, -4, 5]\noutput : list = [2, 2, 1, 0, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc([4, 3, -4, 5, -4, 5]),4),1))",
    "io_inp": [
      4,
      3,
      -4,
      5,
      -4,
      5
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(input),4),1))"
  },
  {
    "input": "input : list = [-4, 5, -3, 2]\noutput : list = [5, -3, 2]",
    "output": "generated_output : list = drop([-4, 5, -3, 2],1)",
    "io_inp": [
      -4,
      5,
      -3,
      2
    ],
    "io_out": [
      5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -5, 0, 2]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n(reverse(drop([-5, -5, 0, 2],2)),-5)",
    "io_inp": [
      -5,
      -5,
      0,
      2
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,2)),-5)"
  },
  {
    "input": "input : list = [1, 2, -4, -4, 4, -4]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(take([1, 2, -4, -4, 4, -4],2),-1)),-2))",
    "io_inp": [
      1,
      2,
      -4,
      -4,
      4,
      -4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(take(input,2),-1)),-2))"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [-4, -6, -10]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(reverse([1, -5, -1]),-4)),18),-1)",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(reverse(input),-4)),18),-1)"
  },
  {
    "input": "input : list = [4, -2, -3, -5, 0]\noutput : list = [20, 12, 8, 0, -16]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des([4, -2, -3, -5, 0]),10),-4)))",
    "io_inp": [
      4,
      -2,
      -3,
      -5,
      0
    ],
    "io_out": [
      20,
      12,
      8,
      0,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des(input),10),-4)))"
  },
  {
    "input": "input : list = [4, 4, 2, -2, 5]\noutput : list = [3, 3, 1, -3, 4]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(reverse([4, 4, 2, -2, 5]),1)),2),40)",
    "io_inp": [
      4,
      4,
      2,
      -2,
      5
    ],
    "io_out": [
      3,
      3,
      1,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(reverse(input),1)),2),40)"
  },
  {
    "input": "input : list = [3, -5, 1, 2, -1, 2]\noutput : list = [-14, -11, -14, -13, -7, -15]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(sub_n([3, -5, 1, 2, -1, 2],-2),-1),5),5))",
    "io_inp": [
      3,
      -5,
      1,
      2,
      -1,
      2
    ],
    "io_out": [
      -14,
      -11,
      -14,
      -13,
      -7,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(sub_n(input,-2),-1),5),5))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-5, -8]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(add_n([-3, 0],-5)))),41)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(add_n(input,-5)))),41)"
  },
  {
    "input": "input : list = [-5, 2, 0, -3]\noutput : list = [5, 3, 0, -2]",
    "output": "generated_output : list = sub_n(take(sort_des([-5, 2, 0, -3]),19),-3)",
    "io_inp": [
      -5,
      2,
      0,
      -3
    ],
    "io_out": [
      5,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),19),-3)"
  },
  {
    "input": "input : list = [-1, 1, -2, -3, -1, -1]\noutput : list = [5, 5, 15]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(drop([-1, 1, -2, -3, -1, -1],3),-5)),11))",
    "io_inp": [
      -1,
      1,
      -2,
      -3,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(drop(input,3),-5)),11))"
  },
  {
    "input": "input : list = [3, 4, 1, -4]\noutput : list = [10, 8, 4, -6]",
    "output": "generated_output : list = add_n(sort_des(take(take(mul_n([3, 4, 1, -4],2),20),10)),2)",
    "io_inp": [
      3,
      4,
      1,
      -4
    ],
    "io_out": [
      10,
      8,
      4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(mul_n(input,2),20),10)),2)"
  },
  {
    "input": "input : list = [-1, 1, 2, -4, -4, -2]\noutput : list = [-1, 2, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take([-1, 1, 2, -4, -4, -2],4))),-3)",
    "io_inp": [
      -1,
      1,
      2,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(input,4))),-3)"
  },
  {
    "input": "input : list = [0, -1, 2, -4, -2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(drop([0, -1, 2, -4, -2, 0],4),3)),3)",
    "io_inp": [
      0,
      -1,
      2,
      -4,
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(drop(input,4),3)),3)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sort_des([2, 0, 3])",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, -4, 3]\noutput : list = [9, 2, 7, 10]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n([4, 1, -4, 3],-3),16)),-3)",
    "io_inp": [
      4,
      1,
      -4,
      3
    ],
    "io_out": [
      9,
      2,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(input,-3),16)),-3)"
  },
  {
    "input": "input : list = [-1, 4, 3]\noutput : list = [4, 3, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse([-1, 4, 3]))))",
    "io_inp": [
      -1,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(input))))"
  },
  {
    "input": "input : list = [-2, -4, 3, -1, -3]\noutput : list = [-2, -4, 3]",
    "output": "generated_output : list = take([-2, -4, 3, -1, -3],3)",
    "io_inp": [
      -2,
      -4,
      3,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, 2, -1, 1, -5]\noutput : list = [-5, -4, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 2, -1, 1, -5]))",
    "io_inp": [
      -4,
      2,
      -1,
      1,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(add_n([-1, -4, 2],1))),-1),-3)",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(add_n(input,1))),-1),-3)"
  },
  {
    "input": "input : list = [-3, 4, -3, -3, -5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(take([-3, 4, -3, -3, -5],2),-5)),-4))",
    "io_inp": [
      -3,
      4,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(take(input,2),-5)),-4))"
  },
  {
    "input": "input : list = [3, -1, -1, 4, -5, -1]\noutput : list = [5, 4, 0, 0, 0, -4]",
    "output": "generated_output : list = sub_n(sort_des([3, -1, -1, 4, -5, -1]),-1)",
    "io_inp": [
      3,
      -1,
      -1,
      4,
      -5,
      -1
    ],
    "io_out": [
      5,
      4,
      0,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [1, 0, 1, -1]\noutput : list = [-4, -4, -5, -6]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc([1, 0, 1, -1])),5),-5)",
    "io_inp": [
      1,
      0,
      1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(input)),5),-5)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-12, -16]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(sort_des([-3, -4]),4))))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-4, -5, -1]\noutput : list = [64, 72, 40]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n([-4, -5, -1],-4),4),4),-2)",
    "io_inp": [
      -4,
      -5,
      -1
    ],
    "io_out": [
      64,
      72,
      40
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(input,-4),4),4),-2)"
  },
  {
    "input": "input : list = [5, 1, -4, 5]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(take([5, 1, -4, 5],1)))))",
    "io_inp": [
      5,
      1,
      -4,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, 1, -1, 5]\noutput : list = [-4, -1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 1, -1, 5]))",
    "io_inp": [
      -4,
      1,
      -1,
      5
    ],
    "io_out": [
      -4,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -1, -5, -4, -4, -3]\noutput : list = [-3, -9, -9, -12, -12, -15]",
    "output": "generated_output : list = sort_des(mul_n([-3, -1, -5, -4, -4, -3],3))",
    "io_inp": [
      -3,
      -1,
      -5,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -9,
      -9,
      -12,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [-1, -5, 3, -5, -1]\noutput : list = [-8, -12, -4, -12, -8]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(sub_n([-1, -5, 3, -5, -1],3),-1),-3),1),-1)",
    "io_inp": [
      -1,
      -5,
      3,
      -5,
      -1
    ],
    "io_out": [
      -8,
      -12,
      -4,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(sub_n(input,3),-1),-3),1),-1)"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [-12, 0, 3]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des(mul_n([0, -4, 1],3))),8))",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      -12,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(mul_n(input,3))),8))"
  },
  {
    "input": "input : list = [4, 1, -3, -5, 4]\noutput : list = [-12, -12, -3, 9, 15]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(reverse([4, 1, -3, -5, 4])),-3),19))",
    "io_inp": [
      4,
      1,
      -3,
      -5,
      4
    ],
    "io_out": [
      -12,
      -12,
      -3,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(reverse(input)),-3),19))"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [-7, -4, 1]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(add_n([5, 0, -3],2),-5)),-1),17)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      -7,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(add_n(input,2),-5)),-1),17)"
  },
  {
    "input": "input : list = [-2, -3, 1, -2, 3]\noutput : list = [2, -6, -4]",
    "output": "generated_output : list = take(mul_n(reverse(take(take([-2, -3, 1, -2, 3],3),24)),2),42)",
    "io_inp": [
      -2,
      -3,
      1,
      -2,
      3
    ],
    "io_out": [
      2,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(take(input,3),24)),2),42)"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [-10, -4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des(drop([4, 4, 1],1))),1),-2)",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(drop(input,1))),1),-2)"
  },
  {
    "input": "input : list = [0, -4, 0, 3, -4]\noutput : list = [3, 0, 0, -4, -4]",
    "output": "generated_output : list = sort_des([0, -4, 0, 3, -4])",
    "io_inp": [
      0,
      -4,
      0,
      3,
      -4
    ],
    "io_out": [
      3,
      0,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, 2, 2, 1]\noutput : list = [-5, 1, 2, 2, 3]",
    "output": "generated_output : list = sort_asc([3, -5, 2, 2, 1])",
    "io_inp": [
      3,
      -5,
      2,
      2,
      1
    ],
    "io_out": [
      -5,
      1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([1, -1, 1]),2))",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [2, 5, -3, 5, -5, 3]\noutput : list = [-5, -3, 2, 3, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([2, 5, -3, 5, -5, 3]))",
    "io_inp": [
      2,
      5,
      -3,
      5,
      -5,
      3
    ],
    "io_out": [
      -5,
      -3,
      2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 5, 3, -1, 1]\noutput : list = [28, 20, 12]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n(drop([-1, 5, 3, -1, 1],2),4)),22),4)",
    "io_inp": [
      -1,
      5,
      3,
      -1,
      1
    ],
    "io_out": [
      28,
      20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(drop(input,2),4)),22),4)"
  },
  {
    "input": "input : list = [5, -3, -1, 4, 5]\noutput : list = [-21]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(sort_des([5, -3, -1, 4, 5]),1),2)),-3)",
    "io_inp": [
      5,
      -3,
      -1,
      4,
      5
    ],
    "io_out": [
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(sort_des(input),1),2)),-3)"
  },
  {
    "input": "input : list = [0, -5, -5, -1, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take(sub_n(take([0, -5, -5, -1, -4],1),2),13)",
    "io_inp": [
      0,
      -5,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),2),13)"
  },
  {
    "input": "input : list = [1, -3, -1, 3]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(take([1, -3, -1, 3],1),3)),-3),-1)",
    "io_inp": [
      1,
      -3,
      -1,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(take(input,1),3)),-3),-1)"
  },
  {
    "input": "input : list = [0, -2, 4, 2]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(sort_des(take(take(take([0, -2, 4, 2],1),13),19)),4)",
    "io_inp": [
      0,
      -2,
      4,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(take(input,1),13),19)),4)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = reverse(take(sort_des(take(sort_des([4, 2]),10)),21))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(sort_des(input),10)),21))"
  },
  {
    "input": "input : list = [5, 2, 0, 0, -4]\noutput : list = [-12, -8, -8, -6, -3]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc([5, 2, 0, 0, -4]))),-3),-5)",
    "io_inp": [
      5,
      2,
      0,
      0,
      -4
    ],
    "io_out": [
      -12,
      -8,
      -8,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc(input))),-3),-5)"
  },
  {
    "input": "input : list = [-2, 2, -4, -2, 2]\noutput : list = [-4, -2, -2, 2, 2]",
    "output": "generated_output : list = take(add_n(take(sub_n(sort_asc([-2, 2, -4, -2, 2]),-2),26),-2),19)",
    "io_inp": [
      -2,
      2,
      -4,
      -2,
      2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(sort_asc(input),-2),26),-2),19)"
  },
  {
    "input": "input : list = [0, -2, 3, 5]\noutput : list = [4, 6]",
    "output": "generated_output : list = drop(add_n(sort_asc([0, -2, 3, 5]),1),2)",
    "io_inp": [
      0,
      -2,
      3,
      5
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(input),1),2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-12, -12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(add_n([-3, -3],-1),4),1),3),3)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(add_n(input,-1),4),1),3),3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [1, 8]",
    "output": "generated_output : list = reverse(sort_des(sub_n([3, -4],-5)))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-5)))"
  },
  {
    "input": "input : list = [-1, -2, -1, -1]\noutput : list = [-1, -1, -1, -2]",
    "output": "generated_output : list = take(sort_des([-1, -2, -1, -1]),21)",
    "io_inp": [
      -1,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),21)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-40, -20]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([1, -3]),-5),5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -40,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),-5),5)"
  },
  {
    "input": "input : list = [1, 5, 0, 2, 5]\noutput : list = [1, 5, 0]",
    "output": "generated_output : list = take([1, 5, 0, 2, 5],3)",
    "io_inp": [
      1,
      5,
      0,
      2,
      5
    ],
    "io_out": [
      1,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, 2, -3, -1]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(drop([-3, 2, -3, -1],1)),-1),-1),-3)",
    "io_inp": [
      -3,
      2,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(drop(input,1)),-1),-1),-3)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-6, -12]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(add_n([1, -2],-4),2))),26)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(add_n(input,-4),2))),26)"
  },
  {
    "input": "input : list = [-1, 0, -4, 2, -4, -4]\noutput : list = [0, -6, -6]",
    "output": "generated_output : list = add_n(take(take(drop([-1, 0, -4, 2, -4, -4],3),24),24),-2)",
    "io_inp": [
      -1,
      0,
      -4,
      2,
      -4,
      -4
    ],
    "io_out": [
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(input,3),24),24),-2)"
  },
  {
    "input": "input : list = [1, 1, 4, -4, -2]\noutput : list = [6, 8, 11, 11, 14]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des(add_n([1, 1, 4, -4, -2],5)))),5)",
    "io_inp": [
      1,
      1,
      4,
      -4,
      -2
    ],
    "io_out": [
      6,
      8,
      11,
      11,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(add_n(input,5)))),5)"
  },
  {
    "input": "input : list = [4, -5, -3, -2, -1]\noutput : list = [6, 1, 0, -1, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(add_n([4, -5, -3, -2, -1],3),7)),5),-4)",
    "io_inp": [
      4,
      -5,
      -3,
      -2,
      -1
    ],
    "io_out": [
      6,
      1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(add_n(input,3),7)),5),-4)"
  },
  {
    "input": "input : list = [1, -3, -3, -4]\noutput : list = [1, -3, -3, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(sub_n(sub_n([1, -3, -3, -4],5),-3)),-2),4)",
    "io_inp": [
      1,
      -3,
      -3,
      -4
    ],
    "io_out": [
      1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sub_n(sub_n(input,5),-3)),-2),4)"
  },
  {
    "input": "input : list = [0, -1, 3, 5, -3]\noutput : list = [-1, 7, 5, 1, 2]",
    "output": "generated_output : list = reverse(add_n([0, -1, 3, 5, -3],2))",
    "io_inp": [
      0,
      -1,
      3,
      5,
      -3
    ],
    "io_out": [
      -1,
      7,
      5,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [4, -14, -14]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n([-5, -5, 4],2)),-4))",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      4,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(input,2)),-4))"
  },
  {
    "input": "input : list = [-1, 1, -2, 0, 2]\noutput : list = [1, -2, 0, 2]",
    "output": "generated_output : list = drop([-1, 1, -2, 0, 2],1)",
    "io_inp": [
      -1,
      1,
      -2,
      0,
      2
    ],
    "io_out": [
      1,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 5, 2, 1, 2]\noutput : list = [10, 10, 4, 4, 2]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(sort_des([5, 5, 2, 1, 2]),9),2)))",
    "io_inp": [
      5,
      5,
      2,
      1,
      2
    ],
    "io_out": [
      10,
      10,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(sort_des(input),9),2)))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sub_n([1, -2],1))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(sort_asc([-2, -3]))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 3, -3, -2]\noutput : list = [-3, -2, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_des([0, 3, -3, -2])))))",
    "io_inp": [
      0,
      3,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [5, -1]",
    "output": "generated_output : list = sub_n(sort_des([-2, 4]),-1)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-5, -2, 4, 1, 1]\noutput : list = [10, 4, -8, -2, -2]",
    "output": "generated_output : list = mul_n([-5, -2, 4, 1, 1],-2)",
    "io_inp": [
      -5,
      -2,
      4,
      1,
      1
    ],
    "io_out": [
      10,
      4,
      -8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 4, 0, 4]\noutput : list = [-16, -16, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-1, 4, 0, 4],-4)))",
    "io_inp": [
      -1,
      4,
      0,
      4
    ],
    "io_out": [
      -16,
      -16,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [2, 3, 2, 2, -5]\noutput : list = [-5, 2, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([2, 3, 2, 2, -5]))",
    "io_inp": [
      2,
      3,
      2,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [10, -20]",
    "output": "generated_output : list = mul_n(sort_asc([-2, 4]),-5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [3, -2, -4, 1, -3]\noutput : list = [0, 10, 25, 30, 35]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([3, -2, -4, 1, -3],3)),-5)",
    "io_inp": [
      3,
      -2,
      -4,
      1,
      -3
    ],
    "io_out": [
      0,
      10,
      25,
      30,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,3)),-5)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [7, 7, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_des([5, 5, 3]))),-3),1)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_des(input))),-3),1)"
  },
  {
    "input": "input : list = [0, 5, -4, 1, -3, 2]\noutput : list = [3, 0, -1, -2, -5, -6]",
    "output": "generated_output : list = take(add_n(add_n(reverse(sort_asc([0, 5, -4, 1, -3, 2])),-1),-1),23)",
    "io_inp": [
      0,
      5,
      -4,
      1,
      -3,
      2
    ],
    "io_out": [
      3,
      0,
      -1,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(sort_asc(input)),-1),-1),23)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [5, 9]",
    "output": "generated_output : list = reverse(add_n([4, 0],5))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [5, 1, 2]\noutput : list = [-10, -5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(drop([5, 1, 2],1))),-5))",
    "io_inp": [
      5,
      1,
      2
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(drop(input,1))),-5))"
  },
  {
    "input": "input : list = [-3, 2, 1, -1, -1, 4]\noutput : list = [7, 2, 2, 4, 5, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(sub_n([-3, 2, 1, -1, -1, 4],-2))),-1))",
    "io_inp": [
      -3,
      2,
      1,
      -1,
      -1,
      4
    ],
    "io_out": [
      7,
      2,
      2,
      4,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(sub_n(input,-2))),-1))"
  },
  {
    "input": "input : list = [-4, -1, 2, 3, -1]\noutput : list = [37]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(take([-4, -1, 2, 3, -1],1),-5),-4)),-1)",
    "io_inp": [
      -4,
      -1,
      2,
      3,
      -1
    ],
    "io_out": [
      37
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(take(input,1),-5),-4)),-1)"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [5, 2, -2]",
    "output": "generated_output : list = take(take(sort_des([-2, 5, 2]),18),8)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),18),8)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [25, 15]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(mul_n([5, 3],-1),-5),4),4),1)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      25,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(mul_n(input,-1),-5),4),4),1)"
  },
  {
    "input": "input : list = [-4, 5, -5, 1]\noutput : list = [7, 3, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(sub_n([-4, 5, -5, 1],3)),11)),5)",
    "io_inp": [
      -4,
      5,
      -5,
      1
    ],
    "io_out": [
      7,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(sub_n(input,3)),11)),5)"
  },
  {
    "input": "input : list = [4, -5, -4]\noutput : list = [-5, -4, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, -5, -4]))",
    "io_inp": [
      4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, 3, 5, 0, -5]\noutput : list = [-5, 0, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des([1, 3, 5, 0, -5]))",
    "io_inp": [
      1,
      3,
      5,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 0, -4, 2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(drop([-2, 0, -4, 2, 1],3),-2)),-2),7)",
    "io_inp": [
      -2,
      0,
      -4,
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(drop(input,3),-2)),-2),7)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_des([-1, 0]),-1),-3),-4))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_des(input),-1),-3),-4))"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [3, -17, -22]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n([0, 5, 4],-5),9),3))",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      3,
      -17,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(input,-5),9),3))"
  },
  {
    "input": "input : list = [-4, -4, 0, -1, 0, 3]\noutput : list = [0, -3, -4, -3, -7, -7]",
    "output": "generated_output : list = add_n(reverse([-4, -4, 0, -1, 0, 3]),-3)",
    "io_inp": [
      -4,
      -4,
      0,
      -1,
      0,
      3
    ],
    "io_out": [
      0,
      -3,
      -4,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-4, 5, 2, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(take([-4, 5, 2, -3],1)),-3),-4))",
    "io_inp": [
      -4,
      5,
      2,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(take(input,1)),-3),-4))"
  },
  {
    "input": "input : list = [4, -4, 2, 5, -3]\noutput : list = [-25, -20, -10, 15, 20]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(sub_n([4, -4, 2, 5, -3],-2),-2),-5)))",
    "io_inp": [
      4,
      -4,
      2,
      5,
      -3
    ],
    "io_out": [
      -25,
      -20,
      -10,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(sub_n(input,-2),-2),-5)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_des([-3, -2]),-1)),1),3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_des(input),-1)),1),3)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-6, -5]",
    "output": "generated_output : list = add_n([-2, -1],-4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, 3, -3, 3, -2, 2]\noutput : list = [-4, 0, 1, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(drop(add_n(sort_asc([4, 3, -3, 3, -2, 2]),-2),1)))",
    "io_inp": [
      4,
      3,
      -3,
      3,
      -2,
      2
    ],
    "io_out": [
      -4,
      0,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(add_n(sort_asc(input),-2),1)))"
  },
  {
    "input": "input : list = [1, 0, -3, 5, -5]\noutput : list = [4, 3, 0, 8, -2]",
    "output": "generated_output : list = add_n([1, 0, -3, 5, -5],3)",
    "io_inp": [
      1,
      0,
      -3,
      5,
      -5
    ],
    "io_out": [
      4,
      3,
      0,
      8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -9]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(mul_n([-3, 0],3)),4)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(mul_n(input,3)),4)))"
  },
  {
    "input": "input : list = [4, 3, -5, 2, -2]\noutput : list = [-9, -5, -12, -4, -3]",
    "output": "generated_output : list = take(add_n(take(add_n(reverse([4, 3, -5, 2, -2]),-4),5),-3),45)",
    "io_inp": [
      4,
      3,
      -5,
      2,
      -2
    ],
    "io_out": [
      -9,
      -5,
      -12,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(reverse(input),-4),5),-3),45)"
  },
  {
    "input": "input : list = [-1, 1, 1, -3, 5]\noutput : list = [15, -9, 3, 3, -3]",
    "output": "generated_output : list = reverse(mul_n([-1, 1, 1, -3, 5],3))",
    "io_inp": [
      -1,
      1,
      1,
      -3,
      5
    ],
    "io_out": [
      15,
      -9,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [3, 2, -3, -3]\noutput : list = [8, 7, 2, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([3, 2, -3, -3])),-5)",
    "io_inp": [
      3,
      2,
      -3,
      -3
    ],
    "io_out": [
      8,
      7,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(reverse([3, 4, -2]),5)),-1))",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(reverse(input),5)),-1))"
  },
  {
    "input": "input : list = [2, 3, -4, 0]\noutput : list = [-8, 0]",
    "output": "generated_output : list = take(take(sort_asc(drop(mul_n([2, 3, -4, 0],2),2)),9),22)",
    "io_inp": [
      2,
      3,
      -4,
      0
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(drop(mul_n(input,2),2)),9),22)"
  },
  {
    "input": "input : list = [3, 4, 3]\noutput : list = [8, 8, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n(add_n([3, 4, 3],2),1)),24),-2)",
    "io_inp": [
      3,
      4,
      3
    ],
    "io_out": [
      8,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(add_n(input,2),1)),24),-2)"
  },
  {
    "input": "input : list = [1, -2, -4, -3, -1, -3]\noutput : list = [-17, -14, -14, -11, -8, -2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(sort_des([1, -2, -4, -3, -1, -3]),18)),3),5)",
    "io_inp": [
      1,
      -2,
      -4,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -17,
      -14,
      -14,
      -11,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(sort_des(input),18)),3),5)"
  },
  {
    "input": "input : list = [-3, 2, 3, -4]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(drop(sort_asc(sub_n(reverse([-3, 2, 3, -4]),-2)),2),3)",
    "io_inp": [
      -3,
      2,
      3,
      -4
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(sub_n(reverse(input),-2)),2),3)"
  },
  {
    "input": "input : list = [4, -1, -3, -5, 4, -4]\noutput : list = [-21, -21, -1, 7, 11, 15]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n([4, -1, -3, -5, 4, -4],-4),-5)))",
    "io_inp": [
      4,
      -1,
      -3,
      -5,
      4,
      -4
    ],
    "io_out": [
      -21,
      -21,
      -1,
      7,
      11,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(input,-4),-5)))"
  },
  {
    "input": "input : list = [1, -2, 2, -1]\noutput : list = [16, -32, 32, -16]",
    "output": "generated_output : list = mul_n(mul_n([1, -2, 2, -1],4),4)",
    "io_inp": [
      1,
      -2,
      2,
      -1
    ],
    "io_out": [
      16,
      -32,
      32,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),4)"
  },
  {
    "input": "input : list = [2, 0, 3, 5, 5, -1]\noutput : list = [-1, 0, 2, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([2, 0, 3, 5, 5, -1])",
    "io_inp": [
      2,
      0,
      3,
      5,
      5,
      -1
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [9, 9]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(reverse([5, 5])),-4)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-3, 2],-1)))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [4, -1, -5]\noutput : list = [-3, 2, 6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(reverse([4, -1, -5]),1),-1)))",
    "io_inp": [
      4,
      -1,
      -5
    ],
    "io_out": [
      -3,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(reverse(input),1),-1)))"
  },
  {
    "input": "input : list = [5, -1, 3, 3]\noutput : list = [-7, -5, -5, -1]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(reverse([5, -1, 3, 3])),2),-1))",
    "io_inp": [
      5,
      -1,
      3,
      3
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(reverse(input)),2),-1))"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [9, 9, 8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([3, 4, 4])),-5)",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      9,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [2, -5, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(reverse([2, -3, 4]),-3),5),3),1)",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      2,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(reverse(input),-3),5),3),1)"
  },
  {
    "input": "input : list = [5, -3, -1, 0, -5]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sub_n(drop([5, -3, -1, 0, -5],3),2)",
    "io_inp": [
      5,
      -3,
      -1,
      0,
      -5
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [15, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(sort_asc([3, 5]),3)),5))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      15,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(sort_asc(input),3)),5))"
  },
  {
    "input": "input : list = [-4, -2, 4, 3, -5]\noutput : list = [0, -1, -6, -8, -9]",
    "output": "generated_output : list = add_n(sort_des([-4, -2, 4, 3, -5]),-4)",
    "io_inp": [
      -4,
      -2,
      4,
      3,
      -5
    ],
    "io_out": [
      0,
      -1,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, 5, 5, 1, -2, -4]\noutput : list = [-4, -2, 1, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([1, 5, 5, 1, -2, -4])",
    "io_inp": [
      1,
      5,
      5,
      1,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2, 5, -3, 1, 4]\noutput : list = [-15, -10, 5, 20, 25, 25]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(mul_n([5, -2, 5, -3, 1, 4],-1)),-5)))",
    "io_inp": [
      5,
      -2,
      5,
      -3,
      1,
      4
    ],
    "io_out": [
      -15,
      -10,
      5,
      20,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(mul_n(input,-1)),-5)))"
  },
  {
    "input": "input : list = [3, -4, -4, -4]\noutput : list = [-16, -16, -16, -2]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(sub_n([3, -4, -4, -4],4),17)),2),22)",
    "io_inp": [
      3,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -16,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(sub_n(input,4),17)),2),22)"
  },
  {
    "input": "input : list = [3, 4, 5, -3, 5, 0]\noutput : list = [-3, 0, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([3, 4, 5, -3, 5, 0])))",
    "io_inp": [
      3,
      4,
      5,
      -3,
      5,
      0
    ],
    "io_out": [
      -3,
      0,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [2, 4, 1, -1, -5, -4]\noutput : list = [1, 0, -3, -5, -6, -8]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(mul_n([2, 4, 1, -1, -5, -4],-1))),-4))",
    "io_inp": [
      2,
      4,
      1,
      -1,
      -5,
      -4
    ],
    "io_out": [
      1,
      0,
      -3,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(mul_n(input,-1))),-4))"
  },
  {
    "input": "input : list = [-5, 2, 3, 0, 2, 0]\noutput : list = [-5, 0, 0, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, 2, 3, 0, 2, 0]))",
    "io_inp": [
      -5,
      2,
      3,
      0,
      2,
      0
    ],
    "io_out": [
      -5,
      0,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [-1, 7]",
    "output": "generated_output : list = add_n(sort_asc(drop([-1, -5, 3],1)),4)",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,1)),4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(sort_des([-3, -4]))),-5))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [8, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(mul_n([2, -3],1))),4))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(mul_n(input,1))),4))"
  },
  {
    "input": "input : list = [3, 1, 2, 0, -2, -2]\noutput : list = [1, 2, 0, -2, -2]",
    "output": "generated_output : list = drop([3, 1, 2, 0, -2, -2],1)",
    "io_inp": [
      3,
      1,
      2,
      0,
      -2,
      -2
    ],
    "io_out": [
      1,
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 5, -2]\noutput : list = [-2, 5, 2]",
    "output": "generated_output : list = reverse([2, 5, -2])",
    "io_inp": [
      2,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = sort_des([1, -1, 5])",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 2, 3]\noutput : list = [-25]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(take([-5, 2, 3],1),1),-3),4),5)",
    "io_inp": [
      -5,
      2,
      3
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(take(input,1),1),-3),4),5)"
  },
  {
    "input": "input : list = [1, -1, -3, -1, 5]\noutput : list = [-3, -1, -1, 1, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(sort_asc([1, -1, -3, -1, 5])))))",
    "io_inp": [
      1,
      -1,
      -3,
      -1,
      5
    ],
    "io_out": [
      -3,
      -1,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, -3, -1, 1]\noutput : list = [2, 2, -4, -10]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(mul_n([1, -3, -1, 1],3)),-1)))",
    "io_inp": [
      1,
      -3,
      -1,
      1
    ],
    "io_out": [
      2,
      2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(mul_n(input,3)),-1)))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [13, -11]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_asc([-2, 4])),-4)),-5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      13,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_asc(input)),-4)),-5)"
  },
  {
    "input": "input : list = [-1, 0, -3, -4, 1]\noutput : list = [1, 2, 6]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(drop([-1, 0, -3, -4, 1],2))),5))",
    "io_inp": [
      -1,
      0,
      -3,
      -4,
      1
    ],
    "io_out": [
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(drop(input,2))),5))"
  },
  {
    "input": "input : list = [5, 5, 2, 1]\noutput : list = [-27]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(take([5, 5, 2, 1],1))),4),-3)",
    "io_inp": [
      5,
      5,
      2,
      1
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(take(input,1))),4),-3)"
  },
  {
    "input": "input : list = [0, 4, -3, -5]\noutput : list = [2, -10, -28, -52]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(add_n([0, 4, -3, -5],4)),2),-3),4)",
    "io_inp": [
      0,
      4,
      -3,
      -5
    ],
    "io_out": [
      2,
      -10,
      -28,
      -52
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(add_n(input,4)),2),-3),4)"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [10, 5, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(mul_n([1, -2, -1],-5)))),32)",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      10,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(mul_n(input,-5)))),32)"
  },
  {
    "input": "input : list = [4, 3, 4, -4, 5, -1]\noutput : list = [-27, -22, -22, -17, 3, 18]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(mul_n([4, 3, 4, -4, 5, -1],5),-1)),6),2)",
    "io_inp": [
      4,
      3,
      4,
      -4,
      5,
      -1
    ],
    "io_out": [
      -27,
      -22,
      -22,
      -17,
      3,
      18
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(mul_n(input,5),-1)),6),2)"
  },
  {
    "input": "input : list = [-3, -4, 4, -3, -1, -3]\noutput : list = [-2, -1, -1, -1, 1, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des([-3, -4, 4, -3, -1, -3])),2),49)",
    "io_inp": [
      -3,
      -4,
      4,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -1,
      -1,
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(input)),2),49)"
  },
  {
    "input": "input : list = [-5, 2, 5, -5, -5, -5]\noutput : list = [-3, -3, -3, -3, 4, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(add_n([-5, 2, 5, -5, -5, -5],2),-4)),4))",
    "io_inp": [
      -5,
      2,
      5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(add_n(input,2),-4)),4))"
  },
  {
    "input": "input : list = [-1, -3, 3, -3, -2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(take([-1, -3, 3, -3, -2],1),4),1)))",
    "io_inp": [
      -1,
      -3,
      3,
      -3,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(take(input,1),4),1)))"
  },
  {
    "input": "input : list = [-2, -5, 0, 4, -1]\noutput : list = [6, 15, 0, -12, 3]",
    "output": "generated_output : list = mul_n([-2, -5, 0, 4, -1],-3)",
    "io_inp": [
      -2,
      -5,
      0,
      4,
      -1
    ],
    "io_out": [
      6,
      15,
      0,
      -12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [4, -16]",
    "output": "generated_output : list = mul_n(take(mul_n([1, -4],-4),15),-1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-4),15),-1)"
  },
  {
    "input": "input : list = [0, 3, -2, -3]\noutput : list = [10, 13, 8, 7]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(sub_n([0, 3, -2, -3],-1)),5),4))",
    "io_inp": [
      0,
      3,
      -2,
      -3
    ],
    "io_out": [
      10,
      13,
      8,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(sub_n(input,-1)),5),4))"
  },
  {
    "input": "input : list = [5, -1, 1, 3, 2, -4]\noutput : list = [1, -1, -2, -3, -5, -8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(sort_asc([5, -1, 1, 3, 2, -4]),4)),3),3)",
    "io_inp": [
      5,
      -1,
      1,
      3,
      2,
      -4
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(sort_asc(input),4)),3),3)"
  },
  {
    "input": "input : list = [5, -4, 3, -4, 2, 4]\noutput : list = [0, -1, -2, -3, -9, -9]",
    "output": "generated_output : list = add_n(take(take(sort_des([5, -4, 3, -4, 2, 4]),15),26),-5)",
    "io_inp": [
      5,
      -4,
      3,
      -4,
      2,
      4
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(input),15),26),-5)"
  },
  {
    "input": "input : list = [-2, -4, -3, -4, 0]\noutput : list = [-6, -6, -5, -4, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(sort_asc([-2, -4, -3, -4, 0]),-2))),4)",
    "io_inp": [
      -2,
      -4,
      -3,
      -4,
      0
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(sort_asc(input),-2))),4)"
  },
  {
    "input": "input : list = [-2, -3, -5, 1, 1]\noutput : list = [0, 0, -3, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(sort_asc([-2, -3, -5, 1, 1]),-1))),-2)",
    "io_inp": [
      -2,
      -3,
      -5,
      1,
      1
    ],
    "io_out": [
      0,
      0,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(sort_asc(input),-1))),-2)"
  },
  {
    "input": "input : list = [4, 1, 0, 3, 1, -2]\noutput : list = [8, 7, 5, 5, 4, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(add_n([4, 1, 0, 3, 1, -2],3),-4))),-3)",
    "io_inp": [
      4,
      1,
      0,
      3,
      1,
      -2
    ],
    "io_out": [
      8,
      7,
      5,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(add_n(input,3),-4))),-3)"
  },
  {
    "input": "input : list = [-5, 5, -1, 4, 2, -5]\noutput : list = [-4, -4, 0, 3, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sort_des([-5, 5, -1, 4, 2, -5])))),1)",
    "io_inp": [
      -5,
      5,
      -1,
      4,
      2,
      -5
    ],
    "io_out": [
      -4,
      -4,
      0,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [-20, -16]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(drop([1, 4, 5],1),-4))))",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      -20,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(drop(input,1),-4))))"
  },
  {
    "input": "input : list = [0, 5, -4, -2, 2]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(drop([0, 5, -4, -2, 2],3),8)),2))",
    "io_inp": [
      0,
      5,
      -4,
      -2,
      2
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(drop(input,3),8)),2))"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [15, 25]",
    "output": "generated_output : list = mul_n(sub_n(take(drop([3, 1, 3],1),7),-2),5)",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(drop(input,1),7),-2),5)"
  },
  {
    "input": "input : list = [2, -1, 5, 5, 5]\noutput : list = [14, 14, 14, 11, 8]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n(sort_des([2, -1, 5, 5, 5]),-5),14),-1),3)",
    "io_inp": [
      2,
      -1,
      5,
      5,
      5
    ],
    "io_out": [
      14,
      14,
      14,
      11,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(sort_des(input),-5),14),-1),3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-5, 10]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(sub_n([1, 4],3),-5))))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -5,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(sub_n(input,3),-5))))"
  },
  {
    "input": "input : list = [-3, 4, -4, -5, 4]\noutput : list = [8, -20, 12, 16, -20]",
    "output": "generated_output : list = mul_n(sub_n([-3, 4, -4, -5, 4],-1),-4)",
    "io_inp": [
      -3,
      4,
      -4,
      -5,
      4
    ],
    "io_out": [
      8,
      -20,
      12,
      16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-4)"
  },
  {
    "input": "input : list = [4, 4, 4, -5, 0]\noutput : list = [-7, -2, 2, 2, 2]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(reverse([4, 4, 4, -5, 0])),2),1))",
    "io_inp": [
      4,
      4,
      4,
      -5,
      0
    ],
    "io_out": [
      -7,
      -2,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(reverse(input)),2),1))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [-8, 4, 10]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(sort_des([5, -4, 2]),2))))",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      -8,
      4,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([3, -3])",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, 5, -3, 4]\noutput : list = [10, 8, 4, 4, -6]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(mul_n([2, 2, 5, -3, 4],-1),11)),32),-2)",
    "io_inp": [
      2,
      2,
      5,
      -3,
      4
    ],
    "io_out": [
      10,
      8,
      4,
      4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(mul_n(input,-1),11)),32),-2)"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(sort_asc([5, 4, 4]),-1),4),1))",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(sort_asc(input),-1),4),1))"
  },
  {
    "input": "input : list = [-1, 4, 3, 3, 5, 5]\noutput : list = [-4, 12, 12, 16, 20, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-1, 4, 3, 3, 5, 5],4)))",
    "io_inp": [
      -1,
      4,
      3,
      3,
      5,
      5
    ],
    "io_out": [
      -4,
      12,
      12,
      16,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,4)))"
  },
  {
    "input": "input : list = [0, -1, 0, 4]\noutput : list = [6, 5, 5, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(mul_n([0, -1, 0, 4],-1)))),-5)",
    "io_inp": [
      0,
      -1,
      0,
      4
    ],
    "io_out": [
      6,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(mul_n(input,-1)))),-5)"
  },
  {
    "input": "input : list = [-5, 0, 0, -5, 1]\noutput : list = [2, 2, 3]",
    "output": "generated_output : list = add_n(sub_n(take(drop(sort_asc([-5, 0, 0, -5, 1]),2),14),-3),-1)",
    "io_inp": [
      -5,
      0,
      0,
      -5,
      1
    ],
    "io_out": [
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(drop(sort_asc(input),2),14),-3),-1)"
  },
  {
    "input": "input : list = [-5, -5, 4, 3, 3]\noutput : list = [-5, -5, 3, 3, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(reverse([-5, -5, 4, 3, 3])))),32)",
    "io_inp": [
      -5,
      -5,
      4,
      3,
      3
    ],
    "io_out": [
      -5,
      -5,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(reverse(input)))),32)"
  },
  {
    "input": "input : list = [-5, 0, 3, 2, 2, 1]\noutput : list = [-1, 4, 7, 6, 6, 5]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(add_n([-5, 0, 3, 2, 2, 1],3)),-3),4))",
    "io_inp": [
      -5,
      0,
      3,
      2,
      2,
      1
    ],
    "io_out": [
      -1,
      4,
      7,
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(add_n(input,3)),-3),4))"
  },
  {
    "input": "input : list = [-1, 0, 2, 3]\noutput : list = [-6, -5, -3, -2]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(sort_des([-1, 0, 2, 3]),-1),-1),-3))",
    "io_inp": [
      -1,
      0,
      2,
      3
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(sort_des(input),-1),-1),-3))"
  },
  {
    "input": "input : list = [-1, 5, -2, 2, -3, -3]\noutput : list = [5, 2, -1, -2, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(sort_des([-1, 5, -2, 2, -3, -3])),3),3))",
    "io_inp": [
      -1,
      5,
      -2,
      2,
      -3,
      -3
    ],
    "io_out": [
      5,
      2,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(sort_des(input)),3),3))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [5, -27]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([3, -5],4),4),3)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      5,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,4),4),3)"
  },
  {
    "input": "input : list = [2, 1, 3, 5, 2, -5]\noutput : list = [6, 3, 9, 15]",
    "output": "generated_output : list = mul_n(take([2, 1, 3, 5, 2, -5],4),3)",
    "io_inp": [
      2,
      1,
      3,
      5,
      2,
      -5
    ],
    "io_out": [
      6,
      3,
      9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),3)"
  },
  {
    "input": "input : list = [-5, -4, -4, -2, 3, -3]\noutput : list = [-3, -2, -2, -1, 0, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n([-5, -4, -4, -2, 3, -3],-2)),7))",
    "io_inp": [
      -5,
      -4,
      -4,
      -2,
      3,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(input,-2)),7))"
  },
  {
    "input": "input : list = [-1, -2, -2, 1, 3]\noutput : list = [6, 5, 5, 8, 10]",
    "output": "generated_output : list = take(sub_n(sub_n(take(add_n([-1, -2, -2, 1, 3],2),22),-4),-1),39)",
    "io_inp": [
      -1,
      -2,
      -2,
      1,
      3
    ],
    "io_out": [
      6,
      5,
      5,
      8,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(add_n(input,2),22),-4),-1),39)"
  },
  {
    "input": "input : list = [1, -4, -1, 2, -5, 2]\noutput : list = [35, 27, 3, -13, -21, -21]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(mul_n([1, -4, -1, 2, -5, 2],-2),4),-5)),51)",
    "io_inp": [
      1,
      -4,
      -1,
      2,
      -5,
      2
    ],
    "io_out": [
      35,
      27,
      3,
      -13,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(mul_n(input,-2),4),-5)),51)"
  },
  {
    "input": "input : list = [-3, -1, -3]\noutput : list = [6, 6, 8]",
    "output": "generated_output : list = take(sort_asc(add_n(take(sub_n([-3, -1, -3],-4),16),5)),8)",
    "io_inp": [
      -3,
      -1,
      -3
    ],
    "io_out": [
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(sub_n(input,-4),16),5)),8)"
  },
  {
    "input": "input : list = [-1, 3, -3, 1]\noutput : list = [-7, -5, -3, -1]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_asc([-1, 3, -3, 1])))),-4)",
    "io_inp": [
      -1,
      3,
      -3,
      1
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [2, -1, 1, 3]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(drop([2, -1, 1, 3],1)))))",
    "io_inp": [
      2,
      -1,
      1,
      3
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -3, -4, 2, -3, -3]\noutput : list = [-3, -4, 2]",
    "output": "generated_output : list = take(reverse(reverse(drop([2, -3, -4, 2, -3, -3],1))),3)",
    "io_inp": [
      2,
      -3,
      -4,
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(drop(input,1))),3)"
  },
  {
    "input": "input : list = [-1, 1, 0, -1]\noutput : list = [-4, -4, 0, 4]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc([-1, 1, 0, -1]))),4)",
    "io_inp": [
      -1,
      1,
      0,
      -1
    ],
    "io_out": [
      -4,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(input))),4)"
  },
  {
    "input": "input : list = [-3, 5, 2, -5, 0, 0]\noutput : list = [-2, -5, -7, -7, -10, -12]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc([-3, 5, 2, -5, 0, 0]),-3)),4)",
    "io_inp": [
      -3,
      5,
      2,
      -5,
      0,
      0
    ],
    "io_out": [
      -2,
      -5,
      -7,
      -7,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(input),-3)),4)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(add_n([3, 2],-5),3),17)))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(add_n(input,-5),3),17)))"
  },
  {
    "input": "input : list = [5, 4, -2, -3]\noutput : list = [-3, -2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([5, 4, -2, -3]))",
    "io_inp": [
      5,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, -5, 4, 1]\noutput : list = [0, -9, -4]",
    "output": "generated_output : list = reverse(take(take(add_n(sub_n([0, -5, 4, 1],-1),-5),3),10))",
    "io_inp": [
      0,
      -5,
      4,
      1
    ],
    "io_out": [
      0,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(sub_n(input,-1),-5),3),10))"
  },
  {
    "input": "input : list = [-1, -2, -4, 3, 2]\noutput : list = [-9, -6, 3, 6, 12]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(reverse([-1, -2, -4, 3, 2]),-3))))",
    "io_inp": [
      -1,
      -2,
      -4,
      3,
      2
    ],
    "io_out": [
      -9,
      -6,
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [2, 0, 1]\noutput : list = [1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(reverse([2, 0, 1]),4),5)))",
    "io_inp": [
      2,
      0,
      1
    ],
    "io_out": [
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(reverse(input),4),5)))"
  },
  {
    "input": "input : list = [-4, 2, 2, 2]\noutput : list = [-1, -1, -1, -7]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sub_n([-4, 2, 2, 2],3)))))",
    "io_inp": [
      -4,
      2,
      2,
      2
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [-5, 5, 3, 3]\noutput : list = [-2, 6, 6, 8]",
    "output": "generated_output : list = take(sort_asc(sort_asc(add_n(sort_asc([-5, 5, 3, 3]),3))),29)",
    "io_inp": [
      -5,
      5,
      3,
      3
    ],
    "io_out": [
      -2,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(add_n(sort_asc(input),3))),29)"
  },
  {
    "input": "input : list = [2, 2, -3, 0, -3, -1]\noutput : list = [35]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(take([2, 2, -3, 0, -3, -1],1),-5),17),5))",
    "io_inp": [
      2,
      2,
      -3,
      0,
      -3,
      -1
    ],
    "io_out": [
      35
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(take(input,1),-5),17),5))"
  },
  {
    "input": "input : list = [-1, 0, 0, -2, 3, -1]\noutput : list = [9, 9, 12, 15]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(add_n([-1, 0, 0, -2, 3, -1],-4),4),-3)),3)",
    "io_inp": [
      -1,
      0,
      0,
      -2,
      3,
      -1
    ],
    "io_out": [
      9,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(add_n(input,-4),4),-3)),3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -8]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(reverse([-2, -5]),-3))))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [3, -5, -3, 3, -3, -1]\noutput : list = [-6, 18, 12, -6, 12, 6]",
    "output": "generated_output : list = mul_n(sub_n([3, -5, -3, 3, -3, -1],1),-3)",
    "io_inp": [
      3,
      -5,
      -3,
      3,
      -3,
      -1
    ],
    "io_out": [
      -6,
      18,
      12,
      -6,
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-3)"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [-10, -9, -7]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(sort_asc([0, -2, -3])),-2),-5))",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      -10,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(sort_asc(input)),-2),-5))"
  },
  {
    "input": "input : list = [0, -4, -2, -4, -3]\noutput : list = [0, 24, 36, 48, 48]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(mul_n([0, -4, -2, -4, -3],2),-2),3)))",
    "io_inp": [
      0,
      -4,
      -2,
      -4,
      -3
    ],
    "io_out": [
      0,
      24,
      36,
      48,
      48
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(mul_n(input,2),-2),3)))"
  },
  {
    "input": "input : list = [4, -5, 2, -2, -3]\noutput : list = [-20, -12, -8, 8]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(drop([4, -5, 2, -2, -3],1)),8)),4)",
    "io_inp": [
      4,
      -5,
      2,
      -2,
      -3
    ],
    "io_out": [
      -20,
      -12,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(drop(input,1)),8)),4)"
  },
  {
    "input": "input : list = [1, 0, -3, -4]\noutput : list = [-2, 0, 6, 8]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(add_n([1, 0, -3, -4],1),-2),1),33),-2)",
    "io_inp": [
      1,
      0,
      -3,
      -4
    ],
    "io_out": [
      -2,
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(add_n(input,1),-2),1),33),-2)"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [-27, -22, -12]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(mul_n([-5, -4, -2],5))),3),-2)",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      -27,
      -22,
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(mul_n(input,5))),3),-2)"
  },
  {
    "input": "input : list = [2, 2, 1, -5, 3]\noutput : list = [15, -3, -6, -6, -9]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_des([2, 2, 1, -5, 3]),1)),-3))",
    "io_inp": [
      2,
      2,
      1,
      -5,
      3
    ],
    "io_out": [
      15,
      -3,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_des(input),1)),-3))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-6, 2]",
    "output": "generated_output : list = take(reverse(reverse(take(sub_n([-4, 4],2),7))),13)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(sub_n(input,2),7))),13)"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(reverse([1, -3, -2])),6)),-2)",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(reverse(input)),6)),-2)"
  },
  {
    "input": "input : list = [-1, -1, 5, -3, 5]\noutput : list = [-3, -1, 5, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(drop([-1, -1, 5, -3, 5],1))),35))",
    "io_inp": [
      -1,
      -1,
      5,
      -3,
      5
    ],
    "io_out": [
      -3,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(drop(input,1))),35))"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 1, -1],1)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [4, 4]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(reverse([0, 0]),2))),4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(reverse(input),2))),4)"
  },
  {
    "input": "input : list = [4, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(drop([4, 1, -2],1),13))))",
    "io_inp": [
      4,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(drop(input,1),13))))"
  },
  {
    "input": "input : list = [5, 2, 3, 2, -3]\noutput : list = [3, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc(take([5, 2, 3, 2, -3],3)),-1)",
    "io_inp": [
      5,
      2,
      3,
      2,
      -3
    ],
    "io_out": [
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(input,3)),-1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(add_n([3, 1],-2),14)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),14)"
  },
  {
    "input": "input : list = [1, -1, 2, 4]\noutput : list = [14, 10, 4, 8]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(add_n([1, -1, 2, 4],2),17)),2),-2)",
    "io_inp": [
      1,
      -1,
      2,
      4
    ],
    "io_out": [
      14,
      10,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(add_n(input,2),17)),2),-2)"
  },
  {
    "input": "input : list = [5, 2, -1, -3]\noutput : list = [-14, -12, -9, -6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(add_n([5, 2, -1, -3],-5)),-4)),2)",
    "io_inp": [
      5,
      2,
      -1,
      -3
    ],
    "io_out": [
      -14,
      -12,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(add_n(input,-5)),-4)),2)"
  },
  {
    "input": "input : list = [5, -2, 3, -2, 3]\noutput : list = [5, 3, 3, -2, -2]",
    "output": "generated_output : list = sort_des([5, -2, 3, -2, 3])",
    "io_inp": [
      5,
      -2,
      3,
      -2,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, 0, -4, -4]\noutput : list = [16, 7, 11, 15, 15]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(mul_n([-5, 4, 0, -4, -4],-1),-2),5),-4),26)",
    "io_inp": [
      -5,
      4,
      0,
      -4,
      -4
    ],
    "io_out": [
      16,
      7,
      11,
      15,
      15
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(mul_n(input,-1),-2),5),-4),26)"
  },
  {
    "input": "input : list = [-5, 2, 3, 0, 5, -2]\noutput : list = [-3, 0, 2, 4, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc([-5, 2, 3, 0, 5, -2]),-2)",
    "io_inp": [
      -5,
      2,
      3,
      0,
      5,
      -2
    ],
    "io_out": [
      -3,
      0,
      2,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-4, 3, 0, -1, 4]\noutput : list = [-3, 1, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(take([-4, 3, 0, -1, 4],3))),-1))",
    "io_inp": [
      -4,
      3,
      0,
      -1,
      4
    ],
    "io_out": [
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(take(input,3))),-1))"
  },
  {
    "input": "input : list = [2, -2, 2, 1, -1, 0]\noutput : list = [2, 2, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc([2, -2, 2, 1, -1, 0]))",
    "io_inp": [
      2,
      -2,
      2,
      1,
      -1,
      0
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-9, -18]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(sort_asc([4, 1]),-4),2),-3),43)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -9,
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(sort_asc(input),-4),2),-3),43)"
  },
  {
    "input": "input : list = [-1, 3, -3, -2]\noutput : list = [16, 11, 6, -14]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(sort_asc([-1, 3, -3, -2]),-5),1)))",
    "io_inp": [
      -1,
      3,
      -3,
      -2
    ],
    "io_out": [
      16,
      11,
      6,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(sort_asc(input),-5),1)))"
  },
  {
    "input": "input : list = [5, 2, 1, -4, 0]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(take([5, 2, 1, -4, 0],2),-4),4)))",
    "io_inp": [
      5,
      2,
      1,
      -4,
      0
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(take(input,2),-4),4)))"
  },
  {
    "input": "input : list = [-2, 2, -3, -2, 2, -2]\noutput : list = [12, -12]",
    "output": "generated_output : list = mul_n(take(mul_n(take(drop([-2, 2, -3, -2, 2, -2],4),22),-2),47),-3)",
    "io_inp": [
      -2,
      2,
      -3,
      -2,
      2,
      -2
    ],
    "io_out": [
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(drop(input,4),22),-2),47),-3)"
  },
  {
    "input": "input : list = [-5, -2, 1, 4, -1]\noutput : list = [-2, 1, 4, -1]",
    "output": "generated_output : list = drop([-5, -2, 1, 4, -1],1)",
    "io_inp": [
      -5,
      -2,
      1,
      4,
      -1
    ],
    "io_out": [
      -2,
      1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n([1, 0],-2)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -2, 1, -3, 4]\noutput : list = [3, 0, -3, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(sort_asc([-5, -2, 1, -3, 4])),24)),-1)",
    "io_inp": [
      -5,
      -2,
      1,
      -3,
      4
    ],
    "io_out": [
      3,
      0,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(sort_asc(input)),24)),-1)"
  },
  {
    "input": "input : list = [5, 0, -1, 0, -5]\noutput : list = [4, -1, -2, -1, -6]",
    "output": "generated_output : list = add_n([5, 0, -1, 0, -5],-1)",
    "io_inp": [
      5,
      0,
      -1,
      0,
      -5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, -3, 0, 5, 3]\noutput : list = [-25, -15, -10, 0, 15]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([2, -3, 0, 5, 3])),-5)",
    "io_inp": [
      2,
      -3,
      0,
      5,
      3
    ],
    "io_out": [
      -25,
      -15,
      -10,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [0, -5, -2, -4, 4]\noutput : list = [9, -3, -9, -15, -18]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(mul_n([0, -5, -2, -4, 4],3))),1),-2)",
    "io_inp": [
      0,
      -5,
      -2,
      -4,
      4
    ],
    "io_out": [
      9,
      -3,
      -9,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(mul_n(input,3))),1),-2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-76, -44]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(mul_n([3, 5],4),-4),14)),4)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -76,
      -44
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(mul_n(input,4),-4),14)),4)"
  },
  {
    "input": "input : list = [4, -3, -4, 5, -4, -2]\noutput : list = [-1, 8, -1, 0, 7]",
    "output": "generated_output : list = add_n(drop(add_n(sub_n(reverse([4, -3, -4, 5, -4, -2]),3),5),1),1)",
    "io_inp": [
      4,
      -3,
      -4,
      5,
      -4,
      -2
    ],
    "io_out": [
      -1,
      8,
      -1,
      0,
      7
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(sub_n(reverse(input),3),5),1),1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-25, -35]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sub_n([-5, -3],-2),4))),5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -25,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sub_n(input,-2),4))),5)"
  },
  {
    "input": "input : list = [-3, -1, 5, -2]\noutput : list = [0, 1, 2, 8]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse([-3, -1, 5, -2]),2)),1)",
    "io_inp": [
      -3,
      -1,
      5,
      -2
    ],
    "io_out": [
      0,
      1,
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(input),2)),1)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [9, 5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(add_n([4, 0],-4),9),-5)),-4)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(add_n(input,-4),9),-5)),-4)"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [-20, 4, 12]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(mul_n([3, -5, 1],4)))))",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      -20,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [4, -5, -3, -4]\noutput : list = [-12, 15, 9, 12]",
    "output": "generated_output : list = mul_n([4, -5, -3, -4],-3)",
    "io_inp": [
      4,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -12,
      15,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [0, 2, 2, 5]\noutput : list = [9, 6, 6, 4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([0, 2, 2, 5]),-4))",
    "io_inp": [
      0,
      2,
      2,
      5
    ],
    "io_out": [
      9,
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [1, -1, 2, -4, 5]\noutput : list = [3, -3, 6, -12, 15]",
    "output": "generated_output : list = mul_n([1, -1, 2, -4, 5],3)",
    "io_inp": [
      1,
      -1,
      2,
      -4,
      5
    ],
    "io_out": [
      3,
      -3,
      6,
      -12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, 0, 3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(drop([3, 0, 3, -1],2)))))",
    "io_inp": [
      3,
      0,
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [24, 18, 12]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(sort_asc([-4, -2, 0]),-4),-3)))",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      24,
      18,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(sort_asc(input),-4),-3)))"
  },
  {
    "input": "input : list = [2, -1, -5, -2]\noutput : list = [5, 4, 1]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(drop([2, -1, -5, -2],1)),3),3),25)",
    "io_inp": [
      2,
      -1,
      -5,
      -2
    ],
    "io_out": [
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(drop(input,1)),3),3),25)"
  },
  {
    "input": "input : list = [-4, -5, -1, 4, -4]\noutput : list = [-5, -6, -2, 3, -5]",
    "output": "generated_output : list = sub_n(sub_n([-4, -5, -1, 4, -4],4),-3)",
    "io_inp": [
      -4,
      -5,
      -1,
      4,
      -4
    ],
    "io_out": [
      -5,
      -6,
      -2,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),-3)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [3, 6, -2]",
    "output": "generated_output : list = sub_n([0, 3, -5],-3)",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      3,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [1, -7, -7]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_des([-3, -3, 5])),4)))",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      1,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [5, 5, 5, 1, -3]\noutput : list = [-48, 16, 80, 80, 80]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(mul_n([5, 5, 5, 1, -3],4)))),4)",
    "io_inp": [
      5,
      5,
      5,
      1,
      -3
    ],
    "io_out": [
      -48,
      16,
      80,
      80,
      80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(mul_n(input,4)))),4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(mul_n([0, 0],-3),4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),4)"
  },
  {
    "input": "input : list = [-2, 5, -2, 2]\noutput : list = [-2, 12]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(take([-2, 5, -2, 2],2)),4)),-2)",
    "io_inp": [
      -2,
      5,
      -2,
      2
    ],
    "io_out": [
      -2,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(take(input,2)),4)),-2)"
  },
  {
    "input": "input : list = [0, 5, -4, 3, 5, 2]\noutput : list = [-9, -3, -2, 0, 0]",
    "output": "generated_output : list = take(add_n(sort_asc(take(drop([0, 5, -4, 3, 5, 2],1),14)),-5),53)",
    "io_inp": [
      0,
      5,
      -4,
      3,
      5,
      2
    ],
    "io_out": [
      -9,
      -3,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(drop(input,1),14)),-5),53)"
  },
  {
    "input": "input : list = [-5, 0, -1, 4]\noutput : list = [-1, 4, 3, 8]",
    "output": "generated_output : list = add_n([-5, 0, -1, 4],4)",
    "io_inp": [
      -5,
      0,
      -1,
      4
    ],
    "io_out": [
      -1,
      4,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, -5, -2, 1]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(drop(sort_des([-2, -5, -2, 1]),3))),2)",
    "io_inp": [
      -2,
      -5,
      -2,
      1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(drop(sort_des(input),3))),2)"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [12, -6, 15]",
    "output": "generated_output : list = take(mul_n([4, -2, 5],3),5)",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      12,
      -6,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),5)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse([-1, -1])",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [7, -7]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(mul_n([-4, 3],2)),-5),-4),35)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      7,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(mul_n(input,2)),-5),-4),35)"
  },
  {
    "input": "input : list = [3, -4, -5, -2, 1]\noutput : list = [1, -1, -4, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(add_n([3, -4, -5, -2, 1],-2),-3),-3)))",
    "io_inp": [
      3,
      -4,
      -5,
      -2,
      1
    ],
    "io_out": [
      1,
      -1,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(add_n(input,-2),-3),-3)))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(sort_asc([0, -5]),4))),1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(sort_asc(input),4))),1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des([-3, 2])",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, 1, 0, -5, 0]\noutput : list = [7, 6, 6, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(drop([-2, -5, 1, 0, -5, 0],2),1)),-5),-1)",
    "io_inp": [
      -2,
      -5,
      1,
      0,
      -5,
      0
    ],
    "io_out": [
      7,
      6,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(drop(input,2),1)),-5),-1)"
  },
  {
    "input": "input : list = [2, 4, 1, -3, 4]\noutput : list = [8, 16, 4, -12, 16]",
    "output": "generated_output : list = mul_n([2, 4, 1, -3, 4],4)",
    "io_inp": [
      2,
      4,
      1,
      -3,
      4
    ],
    "io_out": [
      8,
      16,
      4,
      -12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [4, -6, -8]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sort_asc([4, 3, -2]),14),-2)))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sort_asc(input),14),-2)))"
  },
  {
    "input": "input : list = [-3, -2, -1, 0]\noutput : list = [8, 7]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(drop([-3, -2, -1, 0],2),5)),4),-1)",
    "io_inp": [
      -3,
      -2,
      -1,
      0
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(drop(input,2),5)),4),-1)"
  },
  {
    "input": "input : list = [-3, 5, -2, 4]\noutput : list = [5, 1, -23, -27]",
    "output": "generated_output : list = sub_n(mul_n(take(sub_n(sort_des([-3, 5, -2, 4]),5),27),4),-5)",
    "io_inp": [
      -3,
      5,
      -2,
      4
    ],
    "io_out": [
      5,
      1,
      -23,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sub_n(sort_des(input),5),27),4),-5)"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [-40, -16, -64]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(sub_n([-1, -4, 2],-5),4),-5),-2),4)",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      -40,
      -16,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(sub_n(input,-5),4),-5),-2),4)"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [3, -105, -177]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(mul_n([0, 3, 5],-4),-3),-1)),-3)",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      3,
      -105,
      -177
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(mul_n(input,-4),-3),-1)),-3)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [29, -21]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc([-5, 5]),5)),4))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      29,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc(input),5)),4))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sub_n([1, -4],3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = drop([-1, 5, 1],1)",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 1, -5, 4, -4, -3]\noutput : list = [-6, -9, -10, -13, -14, -15]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(reverse([0, 1, -5, 4, -4, -3]),5)),5),1)",
    "io_inp": [
      0,
      1,
      -5,
      4,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -9,
      -10,
      -13,
      -14,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(reverse(input),5)),5),1)"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [0, -4, -10]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc([1, -5, 5]))),-5)",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      0,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [2, 2, 2, 2]\noutput : list = [-3, -3, -3, -3]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(sort_des([2, 2, 2, 2]))),9),5)",
    "io_inp": [
      2,
      2,
      2,
      2
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(sort_des(input))),9),5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [8, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(mul_n([-3, 5],-1))),-5),1)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(mul_n(input,-1))),-5),1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [10, 6]",
    "output": "generated_output : list = reverse(sub_n([1, 5],-5))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-9, -5]",
    "output": "generated_output : list = reverse(sub_n([-1, -5],4))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [3, 3]",
    "output": "generated_output : list = take(add_n([-1, -1],4),9)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),9)"
  },
  {
    "input": "input : list = [1, -1, -5, 1, 4, 4]\noutput : list = [15, 3, -3, -3, -12, -12]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n([1, -1, -5, 1, 4, 4],5)),-5),-3)",
    "io_inp": [
      1,
      -1,
      -5,
      1,
      4,
      4
    ],
    "io_out": [
      15,
      3,
      -3,
      -3,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(input,5)),-5),-3)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des([0, -3])",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [84, 36, 20]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(mul_n([2, 1, 5],4),-1)),2),2)",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      84,
      36,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(mul_n(input,4),-1)),2),2)"
  },
  {
    "input": "input : list = [-3, -2, 0, 1]\noutput : list = [-9, -8, -6, -5]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_des([-3, -2, 0, 1]),-3),3)))",
    "io_inp": [
      -3,
      -2,
      0,
      1
    ],
    "io_out": [
      -9,
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_des(input),-3),3)))"
  },
  {
    "input": "input : list = [0, 4, 1, -1]\noutput : list = [0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(reverse([0, 4, 1, -1]),1))))",
    "io_inp": [
      0,
      4,
      1,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [40, 40]",
    "output": "generated_output : list = mul_n(sub_n([4, 4],-4),5)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),5)"
  },
  {
    "input": "input : list = [2, 2, 0, 0, -4, -5]\noutput : list = [-5, -4, 0, 0, 2, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des([2, 2, 0, 0, -4, -5])))",
    "io_inp": [
      2,
      2,
      0,
      0,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      0,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [-36, -18, -6]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(add_n([1, -2, -4],5),1),-2)),3)",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      -36,
      -18,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(add_n(input,5),1),-2)),3)"
  },
  {
    "input": "input : list = [0, 2, 3, 2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 2, 3, 2],1)",
    "io_inp": [
      0,
      2,
      3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 5, 1, 3, 2, 3]\noutput : list = [-9, 0, -4, -2, -3, -2]",
    "output": "generated_output : list = add_n([-4, 5, 1, 3, 2, 3],-5)",
    "io_inp": [
      -4,
      5,
      1,
      3,
      2,
      3
    ],
    "io_out": [
      -9,
      0,
      -4,
      -2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-24, -16]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(mul_n([1, -1],1),5)),4))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -24,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(mul_n(input,1),5)),4))"
  },
  {
    "input": "input : list = [-5, -4, 4, 1, -1, 3]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(take([-5, -4, 4, 1, -1, 3],2)),14),1))",
    "io_inp": [
      -5,
      -4,
      4,
      1,
      -1,
      3
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(take(input,2)),14),1))"
  },
  {
    "input": "input : list = [-4, -1, 5, -5, 4]\noutput : list = [-1, 5, -5, 4]",
    "output": "generated_output : list = drop([-4, -1, 5, -5, 4],1)",
    "io_inp": [
      -4,
      -1,
      5,
      -5,
      4
    ],
    "io_out": [
      -1,
      5,
      -5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -1, -5, -5, 4, 2]\noutput : list = [15, 25]",
    "output": "generated_output : list = mul_n(add_n(add_n(drop(reverse([-3, -1, -5, -5, 4, 2]),4),1),-3),-5)",
    "io_inp": [
      -3,
      -1,
      -5,
      -5,
      4,
      2
    ],
    "io_out": [
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(drop(reverse(input),4),1),-3),-5)"
  },
  {
    "input": "input : list = [0, -5, -5, -4, 2]\noutput : list = [25, 20, -10]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(reverse([0, -5, -5, -4, 2]),-5),3)))",
    "io_inp": [
      0,
      -5,
      -5,
      -4,
      2
    ],
    "io_out": [
      25,
      20,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(reverse(input),-5),3)))"
  },
  {
    "input": "input : list = [3, -4, 1, 2]\noutput : list = [-9, -6, -3, 12]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([3, -4, 1, 2])),-3)",
    "io_inp": [
      3,
      -4,
      1,
      2
    ],
    "io_out": [
      -9,
      -6,
      -3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [-5, -3, -1, -3, 3, 5]\noutput : list = [25, 15, 5, 15, -15, -25]",
    "output": "generated_output : list = take(mul_n([-5, -3, -1, -3, 3, 5],-5),10)",
    "io_inp": [
      -5,
      -3,
      -1,
      -3,
      3,
      5
    ],
    "io_out": [
      25,
      15,
      5,
      15,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),10)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = take(mul_n(sort_des([2, 0, -2]),-1),28)",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),-1),28)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [8, 3, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n([4, -1, -4],-4),1)))",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      8,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(input,-4),1)))"
  },
  {
    "input": "input : list = [1, -5, 5, 0, -2]\noutput : list = [-1, -7, 3, -2, -4]",
    "output": "generated_output : list = mul_n(add_n([1, -5, 5, 0, -2],-2),1)",
    "io_inp": [
      1,
      -5,
      5,
      0,
      -2
    ],
    "io_out": [
      -1,
      -7,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),1)"
  },
  {
    "input": "input : list = [0, -2, -3, -4, -3, 3]\noutput : list = [-4, -3, -3, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(reverse([0, -2, -3, -4, -3, 3]),5))))",
    "io_inp": [
      0,
      -2,
      -3,
      -4,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(reverse(input),5))))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = add_n([-3, 1],-1)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 1, 3, 5, 2]\noutput : list = [-6, -2, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take([0, 1, 3, 5, 2],3))),-2))",
    "io_inp": [
      0,
      1,
      3,
      5,
      2
    ],
    "io_out": [
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take(input,3))),-2))"
  },
  {
    "input": "input : list = [4, 2, 3, 1]\noutput : list = [-16, -8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take([4, 2, 3, 1],2),-4))))",
    "io_inp": [
      4,
      2,
      3,
      1
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take(input,2),-4))))"
  },
  {
    "input": "input : list = [1, -1, 3, 1, 1, -5]\noutput : list = [-5, -1, 1, 1, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -1, 3, 1, 1, -5])",
    "io_inp": [
      1,
      -1,
      3,
      1,
      1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, -4, -3, 1, -3]\noutput : list = [0, 1, 1, 4, 5, 6]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(sub_n([2, 0, -4, -3, 1, -3],-5)))),1)",
    "io_inp": [
      2,
      0,
      -4,
      -3,
      1,
      -3
    ],
    "io_out": [
      0,
      1,
      1,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(sub_n(input,-5)))),1)"
  },
  {
    "input": "input : list = [1, -3, -4, -3, -4]\noutput : list = [-6, 2, 4, 2, 4]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(sub_n([1, -3, -4, -3, -4],-3)),1),-2))",
    "io_inp": [
      1,
      -3,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -6,
      2,
      4,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(sub_n(input,-3)),1),-2))"
  },
  {
    "input": "input : list = [-4, 2, -3, 4, 4]\noutput : list = [4, 4, 2, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 2, -3, 4, 4])",
    "io_inp": [
      -4,
      2,
      -3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 0, 4, -4]\noutput : list = [2, -30, -14, -18]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sub_n(sub_n([1, 0, 4, -4],-5),2),-4)),2)",
    "io_inp": [
      1,
      0,
      4,
      -4
    ],
    "io_out": [
      2,
      -30,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sub_n(sub_n(input,-5),2),-4)),2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-7, -9]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse([5, 4]),-2),-3),-2)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(input),-2),-3),-2)"
  },
  {
    "input": "input : list = [1, -3, -5, -3, 0]\noutput : list = [0, -3, -5, -3, 1]",
    "output": "generated_output : list = reverse([1, -3, -5, -3, 0])",
    "io_inp": [
      1,
      -3,
      -5,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1, -2, -4]\noutput : list = [-57, -17, 43, 63]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(mul_n([2, 1, -2, -4],4)),-4),5),-3)",
    "io_inp": [
      2,
      1,
      -2,
      -4
    ],
    "io_out": [
      -57,
      -17,
      43,
      63
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(mul_n(input,4)),-4),5),-3)"
  },
  {
    "input": "input : list = [-1, 1, 3, -3]\noutput : list = [2, 4, 6, 8]",
    "output": "generated_output : list = sub_n(reverse(sort_des([-1, 1, 3, -3])),-5)",
    "io_inp": [
      -1,
      1,
      3,
      -3
    ],
    "io_out": [
      2,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [2, -3, 0, 1]\noutput : list = [2, -4, -6, -8]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse(sub_n([2, -3, 0, 1],-2)),-2),17))",
    "io_inp": [
      2,
      -3,
      0,
      1
    ],
    "io_out": [
      2,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(sub_n(input,-2)),-2),17))"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [9]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(take([2, 1, 5],1),1)),3))",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(take(input,1),1)),3))"
  },
  {
    "input": "input : list = [5, -2, -1, 2, 3]\noutput : list = [4, -3, -2, 1, 2]",
    "output": "generated_output : list = reverse(add_n(reverse([5, -2, -1, 2, 3]),-1))",
    "io_inp": [
      5,
      -2,
      -1,
      2,
      3
    ],
    "io_out": [
      4,
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [11, 7]",
    "output": "generated_output : list = sub_n(sort_des(take(take(add_n([3, -1, -4],5),2),15)),-3)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      11,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(add_n(input,5),2),15)),-3)"
  },
  {
    "input": "input : list = [-4, -5, 1, -3, 2, -3]\noutput : list = [8, 10, -2, 6, -4, 6]",
    "output": "generated_output : list = mul_n([-4, -5, 1, -3, 2, -3],-2)",
    "io_inp": [
      -4,
      -5,
      1,
      -3,
      2,
      -3
    ],
    "io_out": [
      8,
      10,
      -2,
      6,
      -4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [-250, -150, 200]",
    "output": "generated_output : list = mul_n(take(mul_n(take(mul_n([5, 3, -4],5),7),5),17),-2)",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      -250,
      -150,
      200
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(mul_n(input,5),7),5),17),-2)"
  },
  {
    "input": "input : list = [-5, 5, 0, -3, -5]\noutput : list = [-1, -6, -9, -11, -11]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(reverse([-5, 5, 0, -3, -5]),5)),-1))",
    "io_inp": [
      -5,
      5,
      0,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -6,
      -9,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(reverse(input),5)),-1))"
  },
  {
    "input": "input : list = [-4, 0, -5, 4]\noutput : list = [-2, -56, -26, -50]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(sub_n([-4, 0, -5, 4],5),-2)),-3),-4)",
    "io_inp": [
      -4,
      0,
      -5,
      4
    ],
    "io_out": [
      -2,
      -56,
      -26,
      -50
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(sub_n(input,5),-2)),-3),-4)"
  },
  {
    "input": "input : list = [5, -2, -2, 5, 2]\noutput : list = [5, 2, 9, 9, 2]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n([5, -2, -2, 5, 2],5),-1),2))",
    "io_inp": [
      5,
      -2,
      -2,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      9,
      9,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(input,5),-1),2))"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -1, 2],1)",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -2, 3, -1]\noutput : list = [3, 7]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(drop([0, -2, 3, -1],2))),17),4)",
    "io_inp": [
      0,
      -2,
      3,
      -1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(drop(input,2))),17),4)"
  },
  {
    "input": "input : list = [-5, 5, 0, -1, 3]\noutput : list = [-3, 1, 2, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(sort_asc([-5, 5, 0, -1, 3])),33)),-2)",
    "io_inp": [
      -5,
      5,
      0,
      -1,
      3
    ],
    "io_out": [
      -3,
      1,
      2,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(sort_asc(input)),33)),-2)"
  },
  {
    "input": "input : list = [1, 0, -4]\noutput : list = [-6, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(add_n([1, 0, -4],-5)),-3)))",
    "io_inp": [
      1,
      0,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(add_n(input,-5)),-3)))"
  },
  {
    "input": "input : list = [-4, 1, 2, 4, -3, 2]\noutput : list = [2, -3, 4, 2, 1, -4]",
    "output": "generated_output : list = take(reverse([-4, 1, 2, 4, -3, 2]),9)",
    "io_inp": [
      -4,
      1,
      2,
      4,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      4,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [5, 3, 4, -2]\noutput : list = [24, 20, 16, -4]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(reverse([5, 3, 4, -2]),4),2)),-2)",
    "io_inp": [
      5,
      3,
      4,
      -2
    ],
    "io_out": [
      24,
      20,
      16,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(reverse(input),4),2)),-2)"
  },
  {
    "input": "input : list = [-3, 4, -5, 2]\noutput : list = [-6, -4, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(reverse([-3, 4, -5, 2])),1)))",
    "io_inp": [
      -3,
      4,
      -5,
      2
    ],
    "io_out": [
      -6,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(reverse(input)),1)))"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [2, -1, 2]",
    "output": "generated_output : list = sub_n([5, 2, 5],3)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, -4, 1, 2, -2]\noutput : list = [-2, 2, 1, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, 1, 2, -2])",
    "io_inp": [
      -3,
      -4,
      1,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      1,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3, 5, -2, -3, 4]\noutput : list = [-3, -2, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_asc([5, 3, 5, -2, -3, 4])))))",
    "io_inp": [
      5,
      3,
      5,
      -2,
      -3,
      4
    ],
    "io_out": [
      -3,
      -2,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-3, 12]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(sub_n([0, -5],-1),-3),18),7))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(sub_n(input,-1),-3),18),7))"
  },
  {
    "input": "input : list = [0, 5, 3, 5, 5]\noutput : list = [0, 3, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([0, 5, 3, 5, 5])))",
    "io_inp": [
      0,
      5,
      3,
      5,
      5
    ],
    "io_out": [
      0,
      3,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(add_n(take([-1, 1, 2],1),5),5)",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,1),5),5)"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([3, 0, -5],1)",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [5, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des([-4, 4]),3))),-1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des(input),3))),-1)"
  },
  {
    "input": "input : list = [-1, 2, -4, 4]\noutput : list = [-5, -2, -8, 0]",
    "output": "generated_output : list = sub_n(add_n([-1, 2, -4, 4],-5),-1)",
    "io_inp": [
      -1,
      2,
      -4,
      4
    ],
    "io_out": [
      -5,
      -2,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),-1)"
  },
  {
    "input": "input : list = [5, 4, -4]\noutput : list = [-40, 40, 50]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(mul_n([5, 4, -4],-2))),-5))",
    "io_inp": [
      5,
      4,
      -4
    ],
    "io_out": [
      -40,
      40,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(mul_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [-1, -3, -3, -4, 3]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take([-1, -3, -3, -4, 3],1),4)),2)",
    "io_inp": [
      -1,
      -3,
      -3,
      -4,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(input,1),4)),2)"
  },
  {
    "input": "input : list = [1, -5, 1, -3]\noutput : list = [-5, -1, -7]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(drop([1, -5, 1, -3],1)),3),1),4)",
    "io_inp": [
      1,
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(drop(input,1)),3),1),4)"
  },
  {
    "input": "input : list = [3, -1, -2, 2, 4]\noutput : list = [4, 3, 2, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc([3, -1, -2, 2, 4]))))",
    "io_inp": [
      3,
      -1,
      -2,
      2,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [-1, 5, 3, -3, 0, -1]\noutput : list = [-6, -4, -10, 2, 6, -6]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-1, 5, 3, -3, 0, -1]),2),4)",
    "io_inp": [
      -1,
      5,
      3,
      -3,
      0,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -10,
      2,
      6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),2),4)"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [-1, 3, -2]",
    "output": "generated_output : list = sub_n([-3, 1, -4],-2)",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 2, -5, 5]\noutput : list = [-4, 3, 6]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(drop([-1, 2, -5, 5],1),1)),7))",
    "io_inp": [
      -1,
      2,
      -5,
      5
    ],
    "io_out": [
      -4,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(drop(input,1),1)),7))"
  },
  {
    "input": "input : list = [-5, -1, -2, 5, 5, 5]\noutput : list = [0, 0, 0, -6, -7, -10]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(sort_des([-5, -1, -2, 5, 5, 5])))),5)",
    "io_inp": [
      -5,
      -1,
      -2,
      5,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      0,
      -6,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [3, -3, -5, -4]\noutput : list = [3, -3, -4, -5]",
    "output": "generated_output : list = sort_des([3, -3, -5, -4])",
    "io_inp": [
      3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = reverse(take(sort_asc([-4, -5, 3]),5))",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-2, -3, -2, -1, 3]\noutput : list = [-6, -7, -6, -5, -1]",
    "output": "generated_output : list = add_n([-2, -3, -2, -1, 3],-4)",
    "io_inp": [
      -2,
      -3,
      -2,
      -1,
      3
    ],
    "io_out": [
      -6,
      -7,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, 2, -1, -5, 1, 3]\noutput : list = [-5, -1, 1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 2, -1, -5, 1, 3])",
    "io_inp": [
      4,
      2,
      -1,
      -5,
      1,
      3
    ],
    "io_out": [
      -5,
      -1,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, 0, 2, -3, 5]\noutput : list = [-3, 2, 0, -2, 3, -5]",
    "output": "generated_output : list = mul_n([3, -2, 0, 2, -3, 5],-1)",
    "io_inp": [
      3,
      -2,
      0,
      2,
      -3,
      5
    ],
    "io_out": [
      -3,
      2,
      0,
      -2,
      3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, 2, 5, 3, -1, -2]\noutput : list = [3, 3, 0]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(take([5, 2, 5, 3, -1, -2],3)),-5),-2),1)",
    "io_inp": [
      5,
      2,
      5,
      3,
      -1,
      -2
    ],
    "io_out": [
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(take(input,3)),-5),-2),1)"
  },
  {
    "input": "input : list = [4, 2, 2, -5]\noutput : list = [0, -2, -2, -9]",
    "output": "generated_output : list = add_n(add_n(add_n(take(sub_n([4, 2, 2, -5],-1),7),-2),1),-4)",
    "io_inp": [
      4,
      2,
      2,
      -5
    ],
    "io_out": [
      0,
      -2,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(sub_n(input,-1),7),-2),1),-4)"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [0, -2, 0]",
    "output": "generated_output : list = add_n(sub_n(take(take(add_n([0, -2, 0],-4),11),12),-1),3)",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(add_n(input,-4),11),12),-1),3)"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(take([0, -3, 2],1),-3),-1)),9)",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(take(input,1),-3),-1)),9)"
  },
  {
    "input": "input : list = [4, 4, -4, 3]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(drop([4, 4, -4, 3],1))),1))",
    "io_inp": [
      4,
      4,
      -4,
      3
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(drop(input,1))),1))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-8, 2]",
    "output": "generated_output : list = mul_n(reverse([-1, 4]),-2)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [3, -2, -3, 3, 5]\noutput : list = [10, 8, 8, 3, 2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n([3, -2, -3, 3, 5],-1),-4)))",
    "io_inp": [
      3,
      -2,
      -3,
      3,
      5
    ],
    "io_out": [
      10,
      8,
      8,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(input,-1),-4)))"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [0, 0, -2]",
    "output": "generated_output : list = mul_n([0, 0, 1],-2)",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -3, -3]\noutput : list = [-2, -2, -2]",
    "output": "generated_output : list = add_n(add_n(reverse([-3, -3, -3]),4),-3)",
    "io_inp": [
      -3,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),4),-3)"
  },
  {
    "input": "input : list = [-5, -1, -5]\noutput : list = [7, 7, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(reverse([-5, -1, -5]),-1))),-2)",
    "io_inp": [
      -5,
      -1,
      -5
    ],
    "io_out": [
      7,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(reverse(input),-1))),-2)"
  },
  {
    "input": "input : list = [-3, 0, 3, 0, -2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take(take(reverse(sort_des([-3, 0, 3, 0, -2])),1),1))",
    "io_inp": [
      -3,
      0,
      3,
      0,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(sort_des(input)),1),1))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [3, 4]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_asc([1, 2]))),-2),33)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_asc(input))),-2),33)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [2, -1]",
    "output": "generated_output : list = add_n([3, 0],-1)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-6, 4]",
    "output": "generated_output : list = add_n(mul_n(add_n([-5, 0],1),2),2)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,1),2),2)"
  },
  {
    "input": "input : list = [-2, 3, -2, 1, 2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 3, -2, 1, 2],1)",
    "io_inp": [
      -2,
      3,
      -2,
      1,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [-21, -9, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sub_n([3, 5, 0],4),4))),5)",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      -21,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sub_n(input,4),4))),5)"
  },
  {
    "input": "input : list = [2, 2, 4, -2]\noutput : list = [5, 9, 9, 11]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(sort_des([2, 2, 4, -2]),9),3)),-4)",
    "io_inp": [
      2,
      2,
      4,
      -2
    ],
    "io_out": [
      5,
      9,
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(sort_des(input),9),3)),-4)"
  },
  {
    "input": "input : list = [-2, -2, 0, 0]\noutput : list = [-9, -9, -15, -15]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(sub_n([-2, -2, 0, 0],-5))),9),-3)",
    "io_inp": [
      -2,
      -2,
      0,
      0
    ],
    "io_out": [
      -9,
      -9,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(sub_n(input,-5))),9),-3)"
  },
  {
    "input": "input : list = [1, 4, 3, -2, 3]\noutput : list = [5, 4, 4, 2, -1]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(sort_des([1, 4, 3, -2, 3]),-4),2),2),-1)",
    "io_inp": [
      1,
      4,
      3,
      -2,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(sort_des(input),-4),2),2),-1)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(take([5, 5, 2],1))),-1),1)",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(take(input,1))),-1),1)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [-3, -5]",
    "output": "generated_output : list = add_n(drop([0, 2, 0],1),-5)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-2, 5, -1, 1, -5, 1]\noutput : list = [-4, 10, -2, 2, -10, 2]",
    "output": "generated_output : list = take(take(mul_n([-2, 5, -1, 1, -5, 1],2),27),34)",
    "io_inp": [
      -2,
      5,
      -1,
      1,
      -5,
      1
    ],
    "io_out": [
      -4,
      10,
      -2,
      2,
      -10,
      2
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,2),27),34)"
  },
  {
    "input": "input : list = [4, -3, -4, -4, 3, -4]\noutput : list = [27, -36]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(drop([4, -3, -4, -4, 3, -4],4),-3))),-3)",
    "io_inp": [
      4,
      -3,
      -4,
      -4,
      3,
      -4
    ],
    "io_out": [
      27,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(drop(input,4),-3))),-3)"
  },
  {
    "input": "input : list = [2, 5, -2, 4, -1]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sub_n(take(reverse(drop([2, 5, -2, 4, -1],3)),9),2)",
    "io_inp": [
      2,
      5,
      -2,
      4,
      -1
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(drop(input,3)),9),2)"
  },
  {
    "input": "input : list = [3, -5, -3, -3, 4, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sort_des([3, -5, -3, -3, 4, -3]))),2),54)",
    "io_inp": [
      3,
      -5,
      -3,
      -3,
      4,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sort_des(input))),2),54)"
  },
  {
    "input": "input : list = [-5, 5, -2, 4, -5]\noutput : list = [-21, -21, -12, 6, 9]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(reverse([-5, 5, -2, 4, -5])),-2),3))",
    "io_inp": [
      -5,
      5,
      -2,
      4,
      -5
    ],
    "io_out": [
      -21,
      -21,
      -12,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(reverse(input)),-2),3))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([-4, 4])",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = drop([0, 0, 3, 5],2)",
    "io_inp": [
      0,
      0,
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 3, 1, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(drop([3, 3, 1, -3],2),4)",
    "io_inp": [
      3,
      3,
      1,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),4)"
  },
  {
    "input": "input : list = [5, 3, 2, 0]\noutput : list = [10, 6]",
    "output": "generated_output : list = take(mul_n([5, 3, 2, 0],2),2)",
    "io_inp": [
      5,
      3,
      2,
      0
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),2)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [-2, -4, -9]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(sub_n([-2, 5, 0],-4)),-1)))",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      -2,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(sub_n(input,-4)),-1)))"
  },
  {
    "input": "input : list = [-4, -1, -2, -1, -2, -4]\noutput : list = [-3, -12, -9, -12, -9, -3]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(add_n([-4, -1, -2, -1, -2, -4],5),3)),-1))",
    "io_inp": [
      -4,
      -1,
      -2,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -12,
      -9,
      -12,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(add_n(input,5),3)),-1))"
  },
  {
    "input": "input : list = [2, -1, 4, 1]\noutput : list = [-4, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(take([2, -1, 4, 1],2),-1))),-4)",
    "io_inp": [
      2,
      -1,
      4,
      1
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(take(input,2),-1))),-4)"
  },
  {
    "input": "input : list = [-1, -3, -2, -4]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(drop([-1, -3, -2, -4],1),19),-4)),-1)",
    "io_inp": [
      -1,
      -3,
      -2,
      -4
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(drop(input,1),19),-4)),-1)"
  },
  {
    "input": "input : list = [-2, 4, 3, 4, 5]\noutput : list = [-2, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([-2, 4, 3, 4, 5])",
    "io_inp": [
      -2,
      4,
      3,
      4,
      5
    ],
    "io_out": [
      -2,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [3, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(sub_n([0, 2],-3))),1),1)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(sub_n(input,-3))),1),1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-14, -16]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(reverse([3, 2]),1),5)),-2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -14,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(reverse(input),1),5)),-2)"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(add_n([2, 3, 3],-3))),3),-1)",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(add_n(input,-3))),3),-1)"
  },
  {
    "input": "input : list = [-2, 1, -3, -4, -2, -4]\noutput : list = [1, -2, -2, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-2, 1, -3, -4, -2, -4])",
    "io_inp": [
      -2,
      1,
      -3,
      -4,
      -2,
      -4
    ],
    "io_out": [
      1,
      -2,
      -2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -1, 0]\noutput : list = [18]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(take([-3, -1, 0],1)),3)),-3)",
    "io_inp": [
      -3,
      -1,
      0
    ],
    "io_out": [
      18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(take(input,1)),3)),-3)"
  },
  {
    "input": "input : list = [3, 4, -5, -4]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(take([3, 4, -5, -4],1)),27),-2))",
    "io_inp": [
      3,
      4,
      -5,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(take(input,1)),27),-2))"
  },
  {
    "input": "input : list = [1, 4, -3, -5, 5]\noutput : list = [7, 4, 0]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(take([1, 4, -3, -5, 5],3)),6),-3))",
    "io_inp": [
      1,
      4,
      -3,
      -5,
      5
    ],
    "io_out": [
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(take(input,3)),6),-3))"
  },
  {
    "input": "input : list = [4, 2, 5, -4, 4]\noutput : list = [22, 18, 18, 10, -14]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_des([4, 2, 5, -4, 4])),4),2))",
    "io_inp": [
      4,
      2,
      5,
      -4,
      4
    ],
    "io_out": [
      22,
      18,
      18,
      10,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_des(input)),4),2))"
  },
  {
    "input": "input : list = [2, 4, -1]\noutput : list = [-6, -14, -26]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(add_n([2, 4, -1],-5),4)),-4),-2)",
    "io_inp": [
      2,
      4,
      -1
    ],
    "io_out": [
      -6,
      -14,
      -26
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(add_n(input,-5),4)),-4),-2)"
  },
  {
    "input": "input : list = [-3, -3, -1, 2, 5, -5]\noutput : list = [-5, -3, -3, -1, 2, 5]",
    "output": "generated_output : list = reverse(sort_des([-3, -3, -1, 2, 5, -5]))",
    "io_inp": [
      -3,
      -3,
      -1,
      2,
      5,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, 1, 2, 2]\noutput : list = [1, 1, 0, 2]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(sub_n([3, 1, 2, 2],-2),-1),-4),14))",
    "io_inp": [
      3,
      1,
      2,
      2
    ],
    "io_out": [
      1,
      1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(sub_n(input,-2),-1),-4),14))"
  },
  {
    "input": "input : list = [-1, -2, -1, 5]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(take(take(reverse(reverse([-1, -2, -1, 5])),29),2))",
    "io_inp": [
      -1,
      -2,
      -1,
      5
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(reverse(input)),29),2))"
  },
  {
    "input": "input : list = [-2, 4, 0, 4, -2]\noutput : list = [-15, -45, -105, -105]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop([-2, 4, 0, 4, -2],1),-3)),-3),5)",
    "io_inp": [
      -2,
      4,
      0,
      4,
      -2
    ],
    "io_out": [
      -15,
      -45,
      -105,
      -105
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop(input,1),-3)),-3),5)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des([-4, 2]))))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [6]",
    "output": "generated_output : list = take(sub_n(sort_asc(take([1, -3, -5],1)),-5),6)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(input,1)),-5),6)"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [15, -12, -6]",
    "output": "generated_output : list = mul_n([5, -4, -2],3)",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      15,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, 0, -4, 1, -4]\noutput : list = [-1, -1, 3, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(add_n([3, 0, -4, 1, -4],3)),1)),1)",
    "io_inp": [
      3,
      0,
      -4,
      1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(add_n(input,3)),1)),1)"
  },
  {
    "input": "input : list = [5, 5, 3, -3, 3, 3]\noutput : list = [8, 8, 6, 6, 6, 0]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_des([5, 5, 3, -3, 3, 3])),32),-3))",
    "io_inp": [
      5,
      5,
      3,
      -3,
      3,
      3
    ],
    "io_out": [
      8,
      8,
      6,
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_des(input)),32),-3))"
  },
  {
    "input": "input : list = [-4, -2, 0, 0, 2, -3]\noutput : list = [-8, -6, -4, -4, -2, -7]",
    "output": "generated_output : list = sub_n([-4, -2, 0, 0, 2, -3],4)",
    "io_inp": [
      -4,
      -2,
      0,
      0,
      2,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -4,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, -2, -4, 5]\noutput : list = [15, -6, -9, -12]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(sort_des([-3, -2, -4, 5]),3))),26)",
    "io_inp": [
      -3,
      -2,
      -4,
      5
    ],
    "io_out": [
      15,
      -6,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(sort_des(input),3))),26)"
  },
  {
    "input": "input : list = [4, -2, -2, 0, -2, -5]\noutput : list = [16, -2, -2, 4, -2, -11]",
    "output": "generated_output : list = add_n(take(mul_n(add_n(add_n([4, -2, -2, 0, -2, -5],3),-3),3),43),4)",
    "io_inp": [
      4,
      -2,
      -2,
      0,
      -2,
      -5
    ],
    "io_out": [
      16,
      -2,
      -2,
      4,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(add_n(add_n(input,3),-3),3),43),4)"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [2, 2, 5]",
    "output": "generated_output : list = sort_asc([2, 2, 5])",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, 1, 4]\noutput : list = [9, 6, 3, 1]",
    "output": "generated_output : list = take(sub_n(sort_des([-4, -2, 1, 4]),-5),13)",
    "io_inp": [
      -4,
      -2,
      1,
      4
    ],
    "io_out": [
      9,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),-5),13)"
  },
  {
    "input": "input : list = [5, -4, 3, -5, -1, -4]\noutput : list = [-16, -13, -13, -4, 8, 14]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sort_asc([5, -4, 3, -5, -1, -4]))),3),-1)",
    "io_inp": [
      5,
      -4,
      3,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -16,
      -13,
      -13,
      -4,
      8,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sort_asc(input))),3),-1)"
  },
  {
    "input": "input : list = [5, -4, 5]\noutput : list = [9, 0]",
    "output": "generated_output : list = add_n(add_n(reverse(drop([5, -4, 5],1)),-1),5)",
    "io_inp": [
      5,
      -4,
      5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(drop(input,1)),-1),5)"
  },
  {
    "input": "input : list = [1, 0, -1, 0, -2]\noutput : list = [-20, -16, -16, -12, -8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(sort_des([1, 0, -1, 0, -2]),20),4),-4))",
    "io_inp": [
      1,
      0,
      -1,
      0,
      -2
    ],
    "io_out": [
      -20,
      -16,
      -16,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(sort_des(input),20),4),-4))"
  },
  {
    "input": "input : list = [-2, -5, -5, -1, -2]\noutput : list = [-22, -22, -16, -16, -14]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(add_n([-2, -5, -5, -1, -2],-4),2))),2)",
    "io_inp": [
      -2,
      -5,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -22,
      -22,
      -16,
      -16,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(add_n(input,-4),2))),2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-35, -40]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse([4, 5]),-3),-5))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -35,
      -40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(input),-3),-5))"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [-1, 5, 7]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(add_n([3, 5, -3],2)))))",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(add_n(input,2)))))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(reverse([-4, -3])),1)))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(reverse(input)),1)))"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = drop([2, 3, -1],1)",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 1, 5, 0, 2, -4]\noutput : list = [-30, -24, -22, -22, -20, -12]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_asc([1, 1, 5, 0, 2, -4]),-5),5),-2))",
    "io_inp": [
      1,
      1,
      5,
      0,
      2,
      -4
    ],
    "io_out": [
      -30,
      -24,
      -22,
      -22,
      -20,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_asc(input),-5),5),-2))"
  },
  {
    "input": "input : list = [2, 5, -1, -3]\noutput : list = [-2, 1, -5, -7]",
    "output": "generated_output : list = sub_n([2, 5, -1, -3],4)",
    "io_inp": [
      2,
      5,
      -1,
      -3
    ],
    "io_out": [
      -2,
      1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [0, -5, 2, 1, 3]\noutput : list = [3, -2, 5, 4, 6]",
    "output": "generated_output : list = add_n([0, -5, 2, 1, 3],3)",
    "io_inp": [
      0,
      -5,
      2,
      1,
      3
    ],
    "io_out": [
      3,
      -2,
      5,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, 2, -2, 4, 2, -2]\noutput : list = [36, 20, 12, 36, 20, 20]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(add_n([2, 2, -2, 4, 2, -2],-3)),-4),25),-4)",
    "io_inp": [
      2,
      2,
      -2,
      4,
      2,
      -2
    ],
    "io_out": [
      36,
      20,
      12,
      36,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(add_n(input,-3)),-4),25),-4)"
  },
  {
    "input": "input : list = [0, 4, 5, 5]\noutput : list = [0, 0, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([0, 4, 5, 5],5)))",
    "io_inp": [
      0,
      4,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,5)))"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([1, -2, 2])),1)",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [5, 1, -5, -4, 2]\noutput : list = [7, 4, 3, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(sort_asc([5, 1, -5, -4, 2])))),2)",
    "io_inp": [
      5,
      1,
      -5,
      -4,
      2
    ],
    "io_out": [
      7,
      4,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [4, 8]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(drop([-3, 0, -2],1),2),-1),-2),-2)",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(drop(input,1),2),-1),-2),-2)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(mul_n([-4, -4],-1),5)),33))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(mul_n(input,-1),5)),33))"
  },
  {
    "input": "input : list = [5, -1, 3, 2]\noutput : list = [0, -2, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des([5, -1, 3, 2]),5)",
    "io_inp": [
      5,
      -1,
      3,
      2
    ],
    "io_out": [
      0,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, 0, 5]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_des([-2, 0, 5])))),-1)",
    "io_inp": [
      -2,
      0,
      5
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [1, -2, 0, -1]\noutput : list = [-5]",
    "output": "generated_output : list = take(reverse(sub_n(drop(add_n([1, -2, 0, -1],-3),3),1)),43)",
    "io_inp": [
      1,
      -2,
      0,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(drop(add_n(input,-3),3),1)),43)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(reverse([-1, 0])),1)))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(reverse(input)),1)))"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [-23, 7, 17]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(mul_n([-4, 4, -2],5),12),-1)),3)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      -23,
      7,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(mul_n(input,5),12),-1)),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-35, -40]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-3, -4]),4),5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -35,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),4),5)"
  },
  {
    "input": "input : list = [-4, 5, 4, 5]\noutput : list = [-4, 4, 5, 5]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sort_des([-4, 5, 4, 5])))),35)",
    "io_inp": [
      -4,
      5,
      4,
      5
    ],
    "io_out": [
      -4,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sort_des(input)))),35)"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [-4, -2, -4]",
    "output": "generated_output : list = mul_n(reverse(take(reverse([4, 2, 4]),16)),-1)",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      -4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(input),16)),-1)"
  },
  {
    "input": "input : list = [-1, 2, 2, -5]\noutput : list = [2, 5, 5, -2]",
    "output": "generated_output : list = add_n([-1, 2, 2, -5],3)",
    "io_inp": [
      -1,
      2,
      2,
      -5
    ],
    "io_out": [
      2,
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = drop([4, -5, -5],1)",
    "io_inp": [
      4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -1, -4, 1]\noutput : list = [-24, -6, 6, 30]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n(sort_des([5, -1, -4, 1]),-3)),40),-2)",
    "io_inp": [
      5,
      -1,
      -4,
      1
    ],
    "io_out": [
      -24,
      -6,
      6,
      30
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(sort_des(input),-3)),40),-2)"
  },
  {
    "input": "input : list = [4, 3, 4, 1, -5, 2]\noutput : list = [0, -1, 0, -3, -9, -2]",
    "output": "generated_output : list = sub_n([4, 3, 4, 1, -5, 2],4)",
    "io_inp": [
      4,
      3,
      4,
      1,
      -5,
      2
    ],
    "io_out": [
      0,
      -1,
      0,
      -3,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, 0, -2, 3, 5, -3]\noutput : list = [-16, -14, -14, -11, -9, -8]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(add_n([3, 0, -2, 3, 5, -3],3),-5)),-1),-3)",
    "io_inp": [
      3,
      0,
      -2,
      3,
      5,
      -3
    ],
    "io_out": [
      -16,
      -14,
      -14,
      -11,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(add_n(input,3),-5)),-1),-3)"
  },
  {
    "input": "input : list = [-2, 3, 1]\noutput : list = [-12, -4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(add_n([-2, 3, 1],5),5)),-4))",
    "io_inp": [
      -2,
      3,
      1
    ],
    "io_out": [
      -12,
      -4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(add_n(input,5),5)),-4))"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(add_n([-3, -4, -2],-2)),-3)),49)",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(add_n(input,-2)),-3)),49)"
  },
  {
    "input": "input : list = [0, -1, -4, 5, 3, 0]\noutput : list = [5, 3, 0]",
    "output": "generated_output : list = sort_des(drop([0, -1, -4, 5, 3, 0],3))",
    "io_inp": [
      0,
      -1,
      -4,
      5,
      3,
      0
    ],
    "io_out": [
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [-3, -4, -1, 5, 5]\noutput : list = [2, 2, -4, -6, -7]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-3, -4, -1, 5, 5]),2),-1)",
    "io_inp": [
      -3,
      -4,
      -1,
      5,
      5
    ],
    "io_out": [
      2,
      2,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),2),-1)"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [-7, -12, -12]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(sort_asc([2, -3, -3]),16)),-5),-4)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(sort_asc(input),16)),-5),-4)"
  },
  {
    "input": "input : list = [-2, 4, -1, 0]\noutput : list = [-2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, -1, 0])",
    "io_inp": [
      -2,
      4,
      -1,
      0
    ],
    "io_out": [
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = take(take(take(reverse(sort_des([4, -3])),17),7),21)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(sort_des(input)),17),7),21)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(sort_des([5, 3]),12),-1)))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(sort_des(input),12),-1)))"
  },
  {
    "input": "input : list = [-1, 2, 1, 3, 2, -3]\noutput : list = [-21, -18, -18, -15, -9, -3]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(sub_n([-1, 2, 1, 3, 2, -3],-3),-3)),-3))",
    "io_inp": [
      -1,
      2,
      1,
      3,
      2,
      -3
    ],
    "io_out": [
      -21,
      -18,
      -18,
      -15,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(sub_n(input,-3),-3)),-3))"
  },
  {
    "input": "input : list = [4, 4, 2, 0, 2, -5]\noutput : list = [-7, -7, -5, -5, -3, 2]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([4, 4, 2, 0, 2, -5],-1)),-3)",
    "io_inp": [
      4,
      4,
      2,
      0,
      2,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,-1)),-3)"
  },
  {
    "input": "input : list = [-2, 5, 2, -4, 1, 2]\noutput : list = [2, -4, 1, 2]",
    "output": "generated_output : list = drop([-2, 5, 2, -4, 1, 2],2)",
    "io_inp": [
      -2,
      5,
      2,
      -4,
      1,
      2
    ],
    "io_out": [
      2,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 4, 1, -3]\noutput : list = [8, 6, -2, -8]",
    "output": "generated_output : list = take(take(mul_n(take(sort_asc([-4, 4, 1, -3]),15),-2),38),19)",
    "io_inp": [
      -4,
      4,
      1,
      -3
    ],
    "io_out": [
      8,
      6,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(sort_asc(input),15),-2),38),19)"
  },
  {
    "input": "input : list = [1, -3, -3, -2, 2]\noutput : list = [1, -3, -3]",
    "output": "generated_output : list = take([1, -3, -3, -2, 2],3)",
    "io_inp": [
      1,
      -3,
      -3,
      -2,
      2
    ],
    "io_out": [
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [-4, -6, -10]",
    "output": "generated_output : list = sub_n(sort_des([1, -5, -1]),5)",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, 4, 3, 5, 1, 1]\noutput : list = [0, -3, -6, -12, -12, -21]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-2, 4, 3, 5, 1, 1]),5),3)",
    "io_inp": [
      -2,
      4,
      3,
      5,
      1,
      1
    ],
    "io_out": [
      0,
      -3,
      -6,
      -12,
      -12,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),5),3)"
  },
  {
    "input": "input : list = [1, -5, 2, 2, -2, 0]\noutput : list = [34, 34, 18, 2, -30, -78]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(mul_n([1, -5, 2, 2, -2, 0],-4)),-4),-1),3)",
    "io_inp": [
      1,
      -5,
      2,
      2,
      -2,
      0
    ],
    "io_out": [
      34,
      34,
      18,
      2,
      -30,
      -78
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(mul_n(input,-4)),-4),-1),3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [6, -15]",
    "output": "generated_output : list = sub_n(mul_n([3, -4],3),3)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      6,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),3)"
  },
  {
    "input": "input : list = [5, -5, 4, 0, -3]\noutput : list = [-65]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take([5, -5, 4, 0, -3],1),-3),5),-5)",
    "io_inp": [
      5,
      -5,
      4,
      0,
      -3
    ],
    "io_out": [
      -65
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(input,1),-3),5),-5)"
  },
  {
    "input": "input : list = [3, -5, -3, 4, 2, 4]\noutput : list = [-25, -1, -7, -28, -22, -28]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(sub_n([3, -5, -3, 4, 2, 4],-4),-2),-3),2),4)",
    "io_inp": [
      3,
      -5,
      -3,
      4,
      2,
      4
    ],
    "io_out": [
      -25,
      -1,
      -7,
      -28,
      -22,
      -28
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(sub_n(input,-4),-2),-3),2),4)"
  },
  {
    "input": "input : list = [2, -2, 1, -2, 4]\noutput : list = [-2, -2, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([2, -2, 1, -2, 4])",
    "io_inp": [
      2,
      -2,
      1,
      -2,
      4
    ],
    "io_out": [
      -2,
      -2,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2, 4, -1, -4]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sub_n(drop([-3, 2, 4, -1, -4],3),1)",
    "io_inp": [
      -3,
      2,
      4,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),1)"
  },
  {
    "input": "input : list = [-5, 4, 0]\noutput : list = [9, 13]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(drop([-5, 4, 0],1)),-4),-5),1)",
    "io_inp": [
      -5,
      4,
      0
    ],
    "io_out": [
      9,
      13
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(drop(input,1)),-4),-5),1)"
  },
  {
    "input": "input : list = [4, -1, 4, 5, 3]\noutput : list = [0, -20, -25, -25, -30]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n([4, -1, 4, 5, 3],-5)),5)))",
    "io_inp": [
      4,
      -1,
      4,
      5,
      3
    ],
    "io_out": [
      0,
      -20,
      -25,
      -25,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n(input,-5)),5)))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sub_n([2, 5],3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, 2, -2, 5, -4, 2]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take([-4, 2, -2, 5, -4, 2],2)),-1))",
    "io_inp": [
      -4,
      2,
      -2,
      5,
      -4,
      2
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(input,2)),-1))"
  },
  {
    "input": "input : list = [-5, 1, -4, -5, 4, -2]\noutput : list = [-10, -4, -9, -10, -1, -7]",
    "output": "generated_output : list = add_n([-5, 1, -4, -5, 4, -2],-5)",
    "io_inp": [
      -5,
      1,
      -4,
      -5,
      4,
      -2
    ],
    "io_out": [
      -10,
      -4,
      -9,
      -10,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -1, -1, 0]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(take([-4, -1, -1, 0],2),3))))",
    "io_inp": [
      -4,
      -1,
      -1,
      0
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(take(input,2),3))))"
  },
  {
    "input": "input : list = [-1, 1, 1, 3, 4, -4]\noutput : list = [5, 4, 2, 2, 0, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(reverse([-1, 1, 1, 3, 4, -4])))),-1)",
    "io_inp": [
      -1,
      1,
      1,
      3,
      4,
      -4
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [2, -1, 4, -2]\noutput : list = [2, 0, -3, -4]",
    "output": "generated_output : list = take(sort_des(take(sort_des(sub_n([2, -1, 4, -2],2)),26)),32)",
    "io_inp": [
      2,
      -1,
      4,
      -2
    ],
    "io_out": [
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(sub_n(input,2)),26)),32)"
  },
  {
    "input": "input : list = [3, -2, -5, -1, -1, -2]\noutput : list = [118, -42, -42, -82, -82, -202]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n([3, -2, -5, -1, -1, -2],-5),-4),2),2))",
    "io_inp": [
      3,
      -2,
      -5,
      -1,
      -1,
      -2
    ],
    "io_out": [
      118,
      -42,
      -42,
      -82,
      -82,
      -202
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n(input,-5),-4),2),2))"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [8, 4, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n([-5, -1, 3],-3),4))),2)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      8,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n(input,-3),4))),2)"
  },
  {
    "input": "input : list = [3, 0, 5, 5, -2]\noutput : list = [2, -1, 4, 4, -3]",
    "output": "generated_output : list = add_n([3, 0, 5, 5, -2],-1)",
    "io_inp": [
      3,
      0,
      5,
      5,
      -2
    ],
    "io_out": [
      2,
      -1,
      4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 1, 5, 5, 3]\noutput : list = [-4, -2, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc([-1, 1, 5, 5, 3]),-1)),-2))",
    "io_inp": [
      -1,
      1,
      5,
      5,
      3
    ],
    "io_out": [
      -4,
      -2,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc(input),-1)),-2))"
  },
  {
    "input": "input : list = [1, -3, 0, 2, -5, -2]\noutput : list = [0, 3]",
    "output": "generated_output : list = sub_n(sub_n(take(drop(add_n([1, -3, 0, 2, -5, -2],4),4),34),-5),4)",
    "io_inp": [
      1,
      -3,
      0,
      2,
      -5,
      -2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(drop(add_n(input,4),4),34),-5),4)"
  },
  {
    "input": "input : list = [-3, 4, -5, 5]\noutput : list = [-11, -2, -1]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(drop([-3, 4, -5, 5],1)),4),2),14)",
    "io_inp": [
      -3,
      4,
      -5,
      5
    ],
    "io_out": [
      -11,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(drop(input,1)),4),2),14)"
  },
  {
    "input": "input : list = [-5, -2, -3]\noutput : list = [5, 10, 20]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(reverse([-5, -2, -3])),1),-5))",
    "io_inp": [
      -5,
      -2,
      -3
    ],
    "io_out": [
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(reverse(input)),1),-5))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([-3, -1])))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-3, 6]",
    "output": "generated_output : list = add_n(sort_asc([4, -5]),2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [0, 0, 1, 5, -3]\noutput : list = [1, 0, 0, -3]",
    "output": "generated_output : list = sort_des(take(drop(sort_des(sort_asc([0, 0, 1, 5, -3])),1),32))",
    "io_inp": [
      0,
      0,
      1,
      5,
      -3
    ],
    "io_out": [
      1,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(sort_des(sort_asc(input)),1),32))"
  },
  {
    "input": "input : list = [-4, -2, 1, -4, 5]\noutput : list = [-4, -4, -2, 1, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(reverse([-4, -2, 1, -4, 5]),20))))",
    "io_inp": [
      -4,
      -2,
      1,
      -4,
      5
    ],
    "io_out": [
      -4,
      -4,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(reverse(input),20))))"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = sort_des([1, -5, -2])",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, -5]\noutput : list = [176, 176, 176]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(reverse([-5, -5, -5]),4),-3),3),-4)",
    "io_inp": [
      -5,
      -5,
      -5
    ],
    "io_out": [
      176,
      176,
      176
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(reverse(input),4),-3),3),-4)"
  },
  {
    "input": "input : list = [-5, 2, 5, -2]\noutput : list = [-5, -2, 2, 5]",
    "output": "generated_output : list = sort_asc([-5, 2, 5, -2])",
    "io_inp": [
      -5,
      2,
      5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2, -2, 4, -5, -2]\noutput : list = [12, 8, 4, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n(take([3, 2, -2, 4, -5, -2],4),-1),4)))",
    "io_inp": [
      3,
      2,
      -2,
      4,
      -5,
      -2
    ],
    "io_out": [
      12,
      8,
      4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(take(input,4),-1),4)))"
  },
  {
    "input": "input : list = [3, 5, 2, 5, 1]\noutput : list = [20, 20, 12, 8, 4]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_des([3, 5, 2, 5, 1]))),1),4)",
    "io_inp": [
      3,
      5,
      2,
      5,
      1
    ],
    "io_out": [
      20,
      20,
      12,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_des(input))),1),4)"
  },
  {
    "input": "input : list = [0, 4, 3, -2, 2, 2]\noutput : list = [-15, -13, -11, -11, -7, -3]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_des([0, 4, 3, -2, 2, 2]),-5),-2),3)",
    "io_inp": [
      0,
      4,
      3,
      -2,
      2,
      2
    ],
    "io_out": [
      -15,
      -13,
      -11,
      -11,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_des(input),-5),-2),3)"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [9, 8, 6]",
    "output": "generated_output : list = take(take(sub_n([5, 4, 2],-4),4),23)",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,-4),4),23)"
  },
  {
    "input": "input : list = [1, -1, 1, -5, -2]\noutput : list = [0, 3, 4, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([1, -1, 1, -5, -2],5)))",
    "io_inp": [
      1,
      -1,
      1,
      -5,
      -2
    ],
    "io_out": [
      0,
      3,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,5)))"
  },
  {
    "input": "input : list = [-4, -4, 0, -5, -3]\noutput : list = [-20, -20, 0, -25, -15]",
    "output": "generated_output : list = mul_n([-4, -4, 0, -5, -3],5)",
    "io_inp": [
      -4,
      -4,
      0,
      -5,
      -3
    ],
    "io_out": [
      -20,
      -20,
      0,
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, -2, -2, -1, 5]\noutput : list = [-2, -2, -1, 1, 5]",
    "output": "generated_output : list = reverse(sort_des([1, -2, -2, -1, 5]))",
    "io_inp": [
      1,
      -2,
      -2,
      -1,
      5
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [9, 3]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(sort_asc([-2, 0]),-1))),-3)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(sort_asc(input),-1))),-3)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc([0, -3]),5)),25)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(input),5)),25)"
  },
  {
    "input": "input : list = [4, 3, 5, 3]\noutput : list = [7, 7, 8, 9]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(sort_asc([4, 3, 5, 3])),29),-1),5)",
    "io_inp": [
      4,
      3,
      5,
      3
    ],
    "io_out": [
      7,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(sort_asc(input)),29),-1),5)"
  },
  {
    "input": "input : list = [2, 0, -1, 2, 2, -5]\noutput : list = [2, 2, 2, 0, -1, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(sort_des([2, 0, -1, 2, 2, -5]),-1),1)))",
    "io_inp": [
      2,
      0,
      -1,
      2,
      2,
      -5
    ],
    "io_out": [
      2,
      2,
      2,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(sort_des(input),-1),1)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [2, 17]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sub_n([-5, 0],1)),14),-3),1)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      2,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sub_n(input,1)),14),-3),1)"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [1, 1, 0]",
    "output": "generated_output : list = sort_des([0, 1, 1])",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, -3, -2, 1]\noutput : list = [-9, -6, 3]",
    "output": "generated_output : list = drop(mul_n([-5, -3, -3, -2, 1],3),2)",
    "io_inp": [
      -5,
      -3,
      -3,
      -2,
      1
    ],
    "io_out": [
      -9,
      -6,
      3
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,3),2)"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n([1, 0, 1],4))",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n(reverse([-4, -1]),-1)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-2, 0, 2, 0, -2, 0]\noutput : list = [-20, 0, 0, 0, 20, 20]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(mul_n([-2, 0, 2, 0, -2, 0],-2)),12)),5)",
    "io_inp": [
      -2,
      0,
      2,
      0,
      -2,
      0
    ],
    "io_out": [
      -20,
      0,
      0,
      0,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(mul_n(input,-2)),12)),5)"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -2, 5],1)",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 4, 1, -2, -4]\noutput : list = [-2, -1, 0, 3, 6]",
    "output": "generated_output : list = take(take(add_n(sort_asc(sub_n([-3, 4, 1, -2, -4],-5)),-3),39),51)",
    "io_inp": [
      -3,
      4,
      1,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -1,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(sub_n(input,-5)),-3),39),51)"
  },
  {
    "input": "input : list = [-1, -3, -5, -3, -3]\noutput : list = [-6, -2, -2, -2, 2]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sort_asc([-1, -3, -5, -3, -3]),23),4),2),4)",
    "io_inp": [
      -1,
      -3,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -2,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sort_asc(input),23),4),2),4)"
  },
  {
    "input": "input : list = [0, 3, 3, -2, 2]\noutput : list = [1, 5]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc(drop([0, 3, 3, -2, 2],3)),1),2),23)",
    "io_inp": [
      0,
      3,
      3,
      -2,
      2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(drop(input,3)),1),2),23)"
  },
  {
    "input": "input : list = [-1, -4, -3, 1, -1, -4]\noutput : list = [-4, 4, 4, 12, 16, 16]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(mul_n([-1, -4, -3, 1, -1, -4],1)),21),-4))",
    "io_inp": [
      -1,
      -4,
      -3,
      1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      4,
      4,
      12,
      16,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(mul_n(input,1)),21),-4))"
  },
  {
    "input": "input : list = [-3, 1, 4, -3, 5]\noutput : list = [-6, 6]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(take([-3, 1, 4, -3, 5],2)),3)),3)",
    "io_inp": [
      -3,
      1,
      4,
      -3,
      5
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(take(input,2)),3)),3)"
  },
  {
    "input": "input : list = [5, 1, 1, 4]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n(drop([5, 1, 1, 4],2),5)",
    "io_inp": [
      5,
      1,
      1,
      4
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [4, 5, 2, 3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(drop([4, 5, 2, 3],2),3),-1),2))",
    "io_inp": [
      4,
      5,
      2,
      3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(drop(input,2),3),-1),2))"
  },
  {
    "input": "input : list = [-1, 1, 2, 4]\noutput : list = [12, -12, -24, -48]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(mul_n([-1, 1, 2, 4],-4))),3))",
    "io_inp": [
      -1,
      1,
      2,
      4
    ],
    "io_out": [
      12,
      -12,
      -24,
      -48
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(mul_n(input,-4))),3))"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = sort_asc([0, -2, 4])",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [-6, -4, -10]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n([3, 5, -1],2),11),-4),3)",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(input,2),11),-4),3)"
  },
  {
    "input": "input : list = [4, -2, -2, 4, 5]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = take(reverse(take(sort_asc(take([4, -2, -2, 4, 5],3)),28)),22)",
    "io_inp": [
      4,
      -2,
      -2,
      4,
      5
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(take(input,3)),28)),22)"
  },
  {
    "input": "input : list = [4, 4, -5]\noutput : list = [-5, 4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(reverse([4, 4, -5]))),28))",
    "io_inp": [
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(reverse(input))),28))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-8, -2]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(mul_n([-1, -3],-1),-3),4)),-1)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(mul_n(input,-1),-3),4)),-1)"
  },
  {
    "input": "input : list = [0, -5, 3, -5]\noutput : list = [-5, -10, -2, -10]",
    "output": "generated_output : list = sub_n(take(sub_n([0, -5, 3, -5],3),19),2)",
    "io_inp": [
      0,
      -5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -10,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,3),19),2)"
  },
  {
    "input": "input : list = [-3, 3, -5, -4, -3]\noutput : list = [-6, -5, -4, -4, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(take(sort_des([-3, 3, -5, -4, -3]),24)),29),-1)",
    "io_inp": [
      -3,
      3,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(sort_des(input),24)),29),-1)"
  },
  {
    "input": "input : list = [-5, 5, -2]\noutput : list = [5, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-5, 5, -2])))",
    "io_inp": [
      -5,
      5,
      -2
    ],
    "io_out": [
      5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [0, 4, -1, -3]\noutput : list = [-32, -24]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(drop([0, 4, -1, -3],2),5)),23),4)",
    "io_inp": [
      0,
      4,
      -1,
      -3
    ],
    "io_out": [
      -32,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(drop(input,2),5)),23),4)"
  },
  {
    "input": "input : list = [0, -5, 5, -4, -5]\noutput : list = [-6, -11, -1, -10, -11]",
    "output": "generated_output : list = add_n(sub_n([0, -5, 5, -4, -5],5),-1)",
    "io_inp": [
      0,
      -5,
      5,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -11,
      -1,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-1)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [32, 80, 64]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([2, 5, 4],-4),-4),1)",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      32,
      80,
      64
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-4),-4),1)"
  },
  {
    "input": "input : list = [-1, -2, 0, 1, -5, 5]\noutput : list = [-5, 1, 5]",
    "output": "generated_output : list = sort_asc(reverse(drop([-1, -2, 0, 1, -5, 5],3)))",
    "io_inp": [
      -1,
      -2,
      0,
      1,
      -5,
      5
    ],
    "io_out": [
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,3)))"
  },
  {
    "input": "input : list = [0, 1, 5, -2]\noutput : list = [1, 7, 10, 22]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n(sort_des([0, 1, 5, -2]),2),3),-1))",
    "io_inp": [
      0,
      1,
      5,
      -2
    ],
    "io_out": [
      1,
      7,
      10,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(sort_des(input),2),3),-1))"
  },
  {
    "input": "input : list = [0, -5, -5, -4, -5, -4]\noutput : list = [-7, -8, -7, -8, -8, -3]",
    "output": "generated_output : list = reverse(sub_n([0, -5, -5, -4, -5, -4],3))",
    "io_inp": [
      0,
      -5,
      -5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -7,
      -8,
      -7,
      -8,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des([4, 4]),-1),1))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(input),-1),1))"
  },
  {
    "input": "input : list = [-2, 3, 4, -2]\noutput : list = [-2, -2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, 3, 4, -2]))",
    "io_inp": [
      -2,
      3,
      4,
      -2
    ],
    "io_out": [
      -2,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -4, -4, -4]\noutput : list = [-36, -40, -40, -40]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n([-3, -4, -4, -4],2),4),4))",
    "io_inp": [
      -3,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -36,
      -40,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(input,2),4),4))"
  },
  {
    "input": "input : list = [0, -5, 5, -1, -5, -1]\noutput : list = [6, 6, 2, 2, 1, -4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(sort_des([0, -5, 5, -1, -5, -1]),18),1),-1))",
    "io_inp": [
      0,
      -5,
      5,
      -1,
      -5,
      -1
    ],
    "io_out": [
      6,
      6,
      2,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(sort_des(input),18),1),-1))"
  },
  {
    "input": "input : list = [-2, 1, -1, 4, 3, 1]\noutput : list = [-27, -12, -22, 3, -2, -12]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(add_n([-2, 1, -1, 4, 3, 1],-4),1),-2),5),-2)",
    "io_inp": [
      -2,
      1,
      -1,
      4,
      3,
      1
    ],
    "io_out": [
      -27,
      -12,
      -22,
      3,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(add_n(input,-4),1),-2),5),-2)"
  },
  {
    "input": "input : list = [2, 5, 1, 4, 5]\noutput : list = [8, 9]",
    "output": "generated_output : list = reverse(reverse(drop(add_n([2, 5, 1, 4, 5],4),3)))",
    "io_inp": [
      2,
      5,
      1,
      4,
      5
    ],
    "io_out": [
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(add_n(input,4),3)))"
  },
  {
    "input": "input : list = [1, 4, 0, -2]\noutput : list = [2, 6, 3]",
    "output": "generated_output : list = sub_n(reverse(take(take(sub_n([1, 4, 0, -2],-1),3),5)),-1)",
    "io_inp": [
      1,
      4,
      0,
      -2
    ],
    "io_out": [
      2,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(sub_n(input,-1),3),5)),-1)"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(take(take(reverse(drop([-2, -1, -2],1)),8),17),32)",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(drop(input,1)),8),17),32)"
  },
  {
    "input": "input : list = [-4, 5, 5, -5, 2]\noutput : list = [-75, -75, -30, 60, 75]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(sort_des([-4, 5, 5, -5, 2]),-5),29)),3)",
    "io_inp": [
      -4,
      5,
      5,
      -5,
      2
    ],
    "io_out": [
      -75,
      -75,
      -30,
      60,
      75
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(sort_des(input),-5),29)),3)"
  },
  {
    "input": "input : list = [1, -3, 2, -2, 1]\noutput : list = [0, -20, 5, -15, 0]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n([1, -3, 2, -2, 1],-1),25),1),5)",
    "io_inp": [
      1,
      -3,
      2,
      -2,
      1
    ],
    "io_out": [
      0,
      -20,
      5,
      -15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(input,-1),25),1),5)"
  },
  {
    "input": "input : list = [3, 3, 3, -3, -2]\noutput : list = [9, 6]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(drop([3, 3, 3, -3, -2],3)),-3))",
    "io_inp": [
      3,
      3,
      3,
      -3,
      -2
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(drop(input,3)),-3))"
  },
  {
    "input": "input : list = [1, 1, 1, 1, -3, 0]\noutput : list = [-3, -3, -3, -3]",
    "output": "generated_output : list = reverse(mul_n(take([1, 1, 1, 1, -3, 0],4),-3))",
    "io_inp": [
      1,
      1,
      1,
      1,
      -3,
      0
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,4),-3))"
  },
  {
    "input": "input : list = [-5, 3, 1, 5, 3, 5]\noutput : list = [-18, 6, 0, 12, 6, 12]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n(mul_n([-5, 3, 1, 5, 3, 5],-1),-5),-3),-3),-3)",
    "io_inp": [
      -5,
      3,
      1,
      5,
      3,
      5
    ],
    "io_out": [
      -18,
      6,
      0,
      12,
      6,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(mul_n(input,-1),-5),-3),-3),-3)"
  },
  {
    "input": "input : list = [0, 4, 0]\noutput : list = [-36, -20, -20]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([0, 4, 0],-5)),-4)",
    "io_inp": [
      0,
      4,
      0
    ],
    "io_out": [
      -36,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-5)),-4)"
  },
  {
    "input": "input : list = [-5, -2, 1, 0, -4, -1]\noutput : list = [5, 4, 2, 1, 0, -1]",
    "output": "generated_output : list = mul_n(sort_asc([-5, -2, 1, 0, -4, -1]),-1)",
    "io_inp": [
      -5,
      -2,
      1,
      0,
      -4,
      -1
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = mul_n([1, 0],-4)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 3, 1, -5, -4]\noutput : list = [-5, -4, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(take(mul_n([-1, 3, 1, -5, -4],1),11),7)))",
    "io_inp": [
      -1,
      3,
      1,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(mul_n(input,1),11),7)))"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [0, 9, 12]",
    "output": "generated_output : list = sort_asc(mul_n([0, -3, -4],-3))",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      0,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [4, -1, 2, 5, 1]\noutput : list = [24, 22, 18, 16, 12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_asc([4, -1, 2, 5, 1]),4),-3),2))",
    "io_inp": [
      4,
      -1,
      2,
      5,
      1
    ],
    "io_out": [
      24,
      22,
      18,
      16,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_asc(input),4),-3),2))"
  },
  {
    "input": "input : list = [-3, 4, 2, -5]\noutput : list = [180, 90, -135, -225]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(mul_n([-3, 4, 2, -5],5))),-3),-3)",
    "io_inp": [
      -3,
      4,
      2,
      -5
    ],
    "io_out": [
      180,
      90,
      -135,
      -225
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(mul_n(input,5))),-3),-3)"
  },
  {
    "input": "input : list = [5, -2, 1]\noutput : list = [10]",
    "output": "generated_output : list = take(mul_n(add_n([5, -2, 1],5),1),1)",
    "io_inp": [
      5,
      -2,
      1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,5),1),1)"
  },
  {
    "input": "input : list = [0, 4, -1, -1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take(add_n(take(sub_n(drop([0, 4, -1, -1],2),1),12),-2),31)",
    "io_inp": [
      0,
      4,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(drop(input,2),1),12),-2),31)"
  },
  {
    "input": "input : list = [0, -3, -3, -2, -5]\noutput : list = [4, 6, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(drop([0, -3, -3, -2, -5],2),6),11),-2))",
    "io_inp": [
      0,
      -3,
      -3,
      -2,
      -5
    ],
    "io_out": [
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(drop(input,2),6),11),-2))"
  },
  {
    "input": "input : list = [-4, 3, -2, -5]\noutput : list = [-4, -1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(drop([-4, 3, -2, -5],1),4))),3)",
    "io_inp": [
      -4,
      3,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(drop(input,1),4))),3)"
  },
  {
    "input": "input : list = [-2, 3, 2, -2, 5, -4]\noutput : list = [2, 7, 6, 2, 9, 0]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(sub_n([-2, 3, 2, -2, 5, -4],-3),-4),3),5),-1)",
    "io_inp": [
      -2,
      3,
      2,
      -2,
      5,
      -4
    ],
    "io_out": [
      2,
      7,
      6,
      2,
      9,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(sub_n(input,-3),-4),3),5),-1)"
  },
  {
    "input": "input : list = [-5, 1, -2, 4, 5, -5]\noutput : list = [52, 52, 28, 4, -20, -28]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n([-5, 1, -2, 4, 5, -5],-2)),3),4))",
    "io_inp": [
      -5,
      1,
      -2,
      4,
      5,
      -5
    ],
    "io_out": [
      52,
      52,
      28,
      4,
      -20,
      -28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n(input,-2)),3),4))"
  },
  {
    "input": "input : list = [2, -3, -2, -4]\noutput : list = [4, 14, 12, 16]",
    "output": "generated_output : list = mul_n(add_n([2, -3, -2, -4],-4),-2)",
    "io_inp": [
      2,
      -3,
      -2,
      -4
    ],
    "io_out": [
      4,
      14,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),-2)"
  },
  {
    "input": "input : list = [1, 5, -2, -1, -5, -4]\noutput : list = [-19, 1, 11, 16, 26, 31]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sub_n([1, 5, -2, -1, -5, -4],3),-5),-4)),5)",
    "io_inp": [
      1,
      5,
      -2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -19,
      1,
      11,
      16,
      26,
      31
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sub_n(input,3),-5),-4)),5)"
  },
  {
    "input": "input : list = [-1, 1, -1, 0, -3, 2]\noutput : list = [-12, -4, -4, 0, 4, 8]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(sort_des([-1, 1, -1, 0, -3, 2])),14)),4)",
    "io_inp": [
      -1,
      1,
      -1,
      0,
      -3,
      2
    ],
    "io_out": [
      -12,
      -4,
      -4,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(sort_des(input)),14)),4)"
  },
  {
    "input": "input : list = [2, -1, -4, -4, 5, 1]\noutput : list = [72, -36, 12]",
    "output": "generated_output : list = mul_n(mul_n(drop(sub_n([2, -1, -4, -4, 5, 1],2),3),3),-4)",
    "io_inp": [
      2,
      -1,
      -4,
      -4,
      5,
      1
    ],
    "io_out": [
      72,
      -36,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(sub_n(input,2),3),3),-4)"
  },
  {
    "input": "input : list = [3, 1, 3, 1]\noutput : list = [7, 5, 7, 5]",
    "output": "generated_output : list = add_n([3, 1, 3, 1],4)",
    "io_inp": [
      3,
      1,
      3,
      1
    ],
    "io_out": [
      7,
      5,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [-4, -4, -8]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(sort_asc([0, 0, -1]),1)),4),6)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(sort_asc(input),1)),4),6)"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = drop([0, -2, 1],1)",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(reverse([3, 4]))),4),16)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(reverse(input))),4),16)"
  },
  {
    "input": "input : list = [2, 1, 1, 3]\noutput : list = [1, 1, 3]",
    "output": "generated_output : list = drop([2, 1, 1, 3],1)",
    "io_inp": [
      2,
      1,
      1,
      3
    ],
    "io_out": [
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 1, -5, -4]\noutput : list = [4, 0, -6, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_des([-1, -4, 1, -5, -4]),3),2),2))",
    "io_inp": [
      -1,
      -4,
      1,
      -5,
      -4
    ],
    "io_out": [
      4,
      0,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_des(input),3),2),2))"
  },
  {
    "input": "input : list = [-3, -4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = drop([-3, -4, 3],1)",
    "io_inp": [
      -3,
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 2, -4, 4]\noutput : list = [0, -1, -2, -8]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sort_des([3, 2, -4, 4])),4),27),35)",
    "io_inp": [
      3,
      2,
      -4,
      4
    ],
    "io_out": [
      0,
      -1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sort_des(input)),4),27),35)"
  },
  {
    "input": "input : list = [-2, -2, -2, -3, 5, 1]\noutput : list = [4, 8, 0, 1, 1, 1]",
    "output": "generated_output : list = sub_n(reverse([-2, -2, -2, -3, 5, 1]),-3)",
    "io_inp": [
      -2,
      -2,
      -2,
      -3,
      5,
      1
    ],
    "io_out": [
      4,
      8,
      0,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [1, -1, -3, 5]\noutput : list = [1, 9]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(drop([1, -1, -3, 5],2)),15),4))",
    "io_inp": [
      1,
      -1,
      -3,
      5
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(drop(input,2)),15),4))"
  },
  {
    "input": "input : list = [0, 4, 4, 2]\noutput : list = [4, 4, 2, 0]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(reverse([0, 4, 4, 2])))),39)",
    "io_inp": [
      0,
      4,
      4,
      2
    ],
    "io_out": [
      4,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(reverse(input)))),39)"
  },
  {
    "input": "input : list = [-2, 5, 1]\noutput : list = [0, -4]",
    "output": "generated_output : list = sub_n(drop([-2, 5, 1],1),5)",
    "io_inp": [
      -2,
      5,
      1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc([3, -4])),5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [5, 5, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, 5, 5]))",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -2, 5, 3, 1, -5]\noutput : list = [-21, -12, -3, 3, 6, 9]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(add_n([4, -2, 5, 3, 1, -5],-3),1)),3))",
    "io_inp": [
      4,
      -2,
      5,
      3,
      1,
      -5
    ],
    "io_out": [
      -21,
      -12,
      -3,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(add_n(input,-3),1)),3))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-1, 5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(add_n([4, -2],-5),9),-1)),-2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(add_n(input,-5),9),-1)),-2)"
  },
  {
    "input": "input : list = [3, -3, 1, -3, -2]\noutput : list = [3, 1, -2, -3, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_asc([3, -3, 1, -3, -2]),-3)),-3))",
    "io_inp": [
      3,
      -3,
      1,
      -3,
      -2
    ],
    "io_out": [
      3,
      1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_asc(input),-3)),-3))"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [-7, 0, -5]",
    "output": "generated_output : list = reverse(sub_n([-1, 4, -3],4))",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      -7,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [4, -1, -4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(drop([4, -1, -4, -3],2),1))))",
    "io_inp": [
      4,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(drop(input,2),1))))"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(take([-1, -5, -5],1),4))),-3)",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(take(input,1),4))),-3)"
  },
  {
    "input": "input : list = [0, -4, 0, -1, -2]\noutput : list = [0, 0, -1, -2, -4]",
    "output": "generated_output : list = sort_des([0, -4, 0, -1, -2])",
    "io_inp": [
      0,
      -4,
      0,
      -1,
      -2
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5, -4, -3, 0, -1]\noutput : list = [-5, -4, -3, -1, -1, 0]",
    "output": "generated_output : list = sort_asc([-1, -5, -4, -3, 0, -1])",
    "io_inp": [
      -1,
      -5,
      -4,
      -3,
      0,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [0, 4, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(sub_n([5, -1, 1],2),3),2),7))",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      0,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(sub_n(input,2),3),2),7))"
  },
  {
    "input": "input : list = [-2, -2, -3, 0, -2, -3]\noutput : list = [-3, -3, -4, -4, -4, -6]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(sub_n([-2, -2, -3, 0, -2, -3],-2))),4),-1)",
    "io_inp": [
      -2,
      -2,
      -3,
      0,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(sub_n(input,-2))),4),-1)"
  },
  {
    "input": "input : list = [-2, -5, 3, 0, -5]\noutput : list = [9, 6, 4, 1, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc([-2, -5, 3, 0, -5]),-1),-5))",
    "io_inp": [
      -2,
      -5,
      3,
      0,
      -5
    ],
    "io_out": [
      9,
      6,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(input),-1),-5))"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-40, -13, -4]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(sort_des([-2, -1, -5]),-3)),-3),5)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -40,
      -13,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(sort_des(input),-3)),-3),5)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse([-3, 5, -2])),-1))",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(input)),-1))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [10, 3]",
    "output": "generated_output : list = add_n(sort_des([-2, 5]),5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      10,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [3, -2, -4, 4, 5, -3]\noutput : list = [2, 1, -6, -7]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(drop([3, -2, -4, 4, 5, -3],2)),12)),3)",
    "io_inp": [
      3,
      -2,
      -4,
      4,
      5,
      -3
    ],
    "io_out": [
      2,
      1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(drop(input,2)),12)),3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [6, 12]",
    "output": "generated_output : list = take(sub_n(sub_n([-1, 5],-3),-4),12)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,-3),-4),12)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [20, -8]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(mul_n([5, -2],4),4))))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      20,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(mul_n(input,4),4))))"
  },
  {
    "input": "input : list = [2, 3, -2, -3]\noutput : list = [6, 7, 2, 1]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(add_n([2, 3, -2, -3],4),2),2)))",
    "io_inp": [
      2,
      3,
      -2,
      -3
    ],
    "io_out": [
      6,
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(add_n(input,4),2),2)))"
  },
  {
    "input": "input : list = [-2, 0, -3, 5]\noutput : list = [5, -3, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, -3, 5])",
    "io_inp": [
      -2,
      0,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-1, -5, -7]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(sort_des([-5, 1, -3])),2),11))",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(sort_des(input)),2),11))"
  },
  {
    "input": "input : list = [5, -2, 1, 5, 3]\noutput : list = [-26, -6, 9, -26]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(mul_n([5, -2, 1, 5, 3],-5),4),2),1))",
    "io_inp": [
      5,
      -2,
      1,
      5,
      3
    ],
    "io_out": [
      -26,
      -6,
      9,
      -26
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(mul_n(input,-5),4),2),1))"
  },
  {
    "input": "input : list = [5, -2, 5, -4, -4, 2]\noutput : list = [7, 7, 4, 0, -2, -2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc(sub_n([5, -2, 5, -4, -4, 2],2))),4))",
    "io_inp": [
      5,
      -2,
      5,
      -4,
      -4,
      2
    ],
    "io_out": [
      7,
      7,
      4,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(sub_n(input,2))),4))"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [9, -12, -15]",
    "output": "generated_output : list = mul_n(sort_asc([-3, 4, 5]),-3)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      9,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-3, 5, 2, -1, 5]\noutput : list = [9, 9, 6, 3, 1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(add_n([-3, 5, 2, -1, 5],4),17))))",
    "io_inp": [
      -3,
      5,
      2,
      -1,
      5
    ],
    "io_out": [
      9,
      9,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(add_n(input,4),17))))"
  },
  {
    "input": "input : list = [0, -5, 3, 0]\noutput : list = [3, 0, 0, -5]",
    "output": "generated_output : list = sort_des([0, -5, 3, 0])",
    "io_inp": [
      0,
      -5,
      3,
      0
    ],
    "io_out": [
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5, 2, -2]\noutput : list = [2, -2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(sort_asc([-4, -5, 2, -2])))))",
    "io_inp": [
      -4,
      -5,
      2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 1, -1, 2]\noutput : list = [48, 12, -12, -24]",
    "output": "generated_output : list = sort_des(take(mul_n(take(mul_n([-4, 1, -1, 2],4),10),-3),6))",
    "io_inp": [
      -4,
      1,
      -1,
      2
    ],
    "io_out": [
      48,
      12,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(mul_n(input,4),10),-3),6))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-8, -8]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(sub_n([-4, -4],-1),3),-5)),3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(sub_n(input,-1),3),-5)),3)"
  },
  {
    "input": "input : list = [5, -1, 2, 2]\noutput : list = [25, 10, 10, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(mul_n([5, -1, 2, 2],-1)))),-5)",
    "io_inp": [
      5,
      -1,
      2,
      2
    ],
    "io_out": [
      25,
      10,
      10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(mul_n(input,-1)))),-5)"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -1, 4],1)",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 1, -2, 2]\noutput : list = [8, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(drop(add_n([-1, 1, -2, 2],3),2),-3),2))",
    "io_inp": [
      -1,
      1,
      -2,
      2
    ],
    "io_out": [
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(drop(add_n(input,3),2),-3),2))"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [16, 13, 7]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(sort_des([1, 3, 4]),3),7),3),-5)",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      16,
      13,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(sort_des(input),3),7),3),-5)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(sort_des([0, -5]))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 1, 4, 4, -2, -5]\noutput : list = [9, 9, 3, 0]",
    "output": "generated_output : list = take(drop(take(sub_n([-2, 1, 4, 4, -2, -5],-5),9),2),12)",
    "io_inp": [
      -2,
      1,
      4,
      4,
      -2,
      -5
    ],
    "io_out": [
      9,
      9,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(drop(take(sub_n(input,-5),9),2),12)"
  },
  {
    "input": "input : list = [-2, 4, 1, -4, 5]\noutput : list = [-11, -7, -1, 5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(reverse([-2, 4, 1, -4, 5]),2),14),3))",
    "io_inp": [
      -2,
      4,
      1,
      -4,
      5
    ],
    "io_out": [
      -11,
      -7,
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(reverse(input),2),14),3))"
  },
  {
    "input": "input : list = [-1, -1, -5, -5, -4, 1]\noutput : list = [-3, -3, -2, 1, 1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sub_n([-1, -1, -5, -5, -4, 1],1)),-1),-4))",
    "io_inp": [
      -1,
      -1,
      -5,
      -5,
      -4,
      1
    ],
    "io_out": [
      -3,
      -3,
      -2,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sub_n(input,1)),-1),-4))"
  },
  {
    "input": "input : list = [5, -1, 1, -2, -5]\noutput : list = [5, 1, -1, -2, -5]",
    "output": "generated_output : list = sort_des([5, -1, 1, -2, -5])",
    "io_inp": [
      5,
      -1,
      1,
      -2,
      -5
    ],
    "io_out": [
      5,
      1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 4, 2, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(drop([3, 4, 2, -1],2)),3),30))",
    "io_inp": [
      3,
      4,
      2,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(drop(input,2)),3),30))"
  },
  {
    "input": "input : list = [2, -3, 0, 2, 1]\noutput : list = [-4, -1, 0, 1, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(sub_n([2, -3, 0, 2, 1],1),3))),-3)",
    "io_inp": [
      2,
      -3,
      0,
      2,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(sub_n(input,1),3))),-3)"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [50, 20, 20]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-1, 5, -1]),-5),5)",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      50,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),-5),5)"
  },
  {
    "input": "input : list = [2, -1, -3, 3, 2]\noutput : list = [2, 3, -3, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, -3, 3, 2])",
    "io_inp": [
      2,
      -1,
      -3,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, -1, 3, 4, -1]\noutput : list = [4, 3, -1, -1, -2, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des([-2, -4, -1, 3, 4, -1])))",
    "io_inp": [
      -2,
      -4,
      -1,
      3,
      4,
      -1
    ],
    "io_out": [
      4,
      3,
      -1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [5, 1, 0, -2, 4]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(take([5, 1, 0, -2, 4],1))),22))",
    "io_inp": [
      5,
      1,
      0,
      -2,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(take(input,1))),22))"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [6, 6, -12]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des([4, -2, -2])),-3))",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      6,
      6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(input)),-3))"
  },
  {
    "input": "input : list = [-3, 2, 4, 3, -2, 1]\noutput : list = [-12, -7, 8, 13, 18, 23]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(mul_n([-3, 2, 4, 3, -2, 1],5)),-3),22))",
    "io_inp": [
      -3,
      2,
      4,
      3,
      -2,
      1
    ],
    "io_out": [
      -12,
      -7,
      8,
      13,
      18,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(mul_n(input,5)),-3),22))"
  },
  {
    "input": "input : list = [-1, 3, 3, 1, -4]\noutput : list = [1, 4, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse([-1, 3, 3, 1, -4]),21),5)))",
    "io_inp": [
      -1,
      3,
      3,
      1,
      -4
    ],
    "io_out": [
      1,
      4,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse(input),21),5)))"
  },
  {
    "input": "input : list = [5, 3, -2, 0, -3]\noutput : list = [0, 1, 3, 6, 8]",
    "output": "generated_output : list = add_n(reverse(add_n(take(sort_des([5, 3, -2, 0, -3]),15),5)),-2)",
    "io_inp": [
      5,
      3,
      -2,
      0,
      -3
    ],
    "io_out": [
      0,
      1,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(sort_des(input),15),5)),-2)"
  },
  {
    "input": "input : list = [-4, 1, -3, 2, 2]\noutput : list = [-45]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take([-4, 1, -3, 2, 2],1),-1),-3),-5)",
    "io_inp": [
      -4,
      1,
      -3,
      2,
      2
    ],
    "io_out": [
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(input,1),-1),-3),-5)"
  },
  {
    "input": "input : list = [4, 0, 3]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = sort_des([4, 0, 3])",
    "io_inp": [
      4,
      0,
      3
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [7, 6]",
    "output": "generated_output : list = sort_des(add_n([2, 3],4))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,4))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [0, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(add_n([-3, -5],5),5)),5),5)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(add_n(input,5),5)),5),5)"
  },
  {
    "input": "input : list = [4, 5, -4, -5, 5, -2]\noutput : list = [-4, -3, -1, 5, 6, 6]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(sub_n([4, 5, -4, -5, 5, -2],-3),2)),6))",
    "io_inp": [
      4,
      5,
      -4,
      -5,
      5,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -1,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(sub_n(input,-3),2)),6))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [5, 9]",
    "output": "generated_output : list = take(sort_asc(add_n([0, 4],5)),17)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,5)),17)"
  },
  {
    "input": "input : list = [-1, 4, 5, -2, 1]\noutput : list = [3, 4, 6, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sub_n([-1, 4, 5, -2, 1],-5)))))",
    "io_inp": [
      -1,
      4,
      5,
      -2,
      1
    ],
    "io_out": [
      3,
      4,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [3, 4, -5, -4, 2, -1]\noutput : list = [-5, -4, -1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([3, 4, -5, -4, 2, -1]))",
    "io_inp": [
      3,
      4,
      -5,
      -4,
      2,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [12, 10]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sub_n([4, 2],-5)),-3),3))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      12,
      10
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sub_n(input,-5)),-3),3))"
  },
  {
    "input": "input : list = [2, -5, -1]\noutput : list = [5, 1, 8]",
    "output": "generated_output : list = reverse(add_n(add_n([2, -5, -1],4),2))",
    "io_inp": [
      2,
      -5,
      -1
    ],
    "io_out": [
      5,
      1,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,4),2))"
  },
  {
    "input": "input : list = [1, -1, 3, 2, -1, 1]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(drop([1, -1, 3, 2, -1, 1],4))),1),-4)",
    "io_inp": [
      1,
      -1,
      3,
      2,
      -1,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(drop(input,4))),1),-4)"
  },
  {
    "input": "input : list = [-5, -5, -5, 5]\noutput : list = [19, -21, -21, -21]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(mul_n([-5, -5, -5, 5],4))),36),-1)",
    "io_inp": [
      -5,
      -5,
      -5,
      5
    ],
    "io_out": [
      19,
      -21,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(mul_n(input,4))),36),-1)"
  },
  {
    "input": "input : list = [-4, 4, -4, -5, 1, 4]\noutput : list = [-11, 13, -11, -14, 4, 13]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(mul_n([-4, 4, -4, -5, 1, 4],3),28)),-1))",
    "io_inp": [
      -4,
      4,
      -4,
      -5,
      1,
      4
    ],
    "io_out": [
      -11,
      13,
      -11,
      -14,
      4,
      13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(mul_n(input,3),28)),-1))"
  },
  {
    "input": "input : list = [-1, -5, 0, -3, -2]\noutput : list = [-2, -3, 0, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, 0, -3, -2])",
    "io_inp": [
      -1,
      -5,
      0,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      0,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, 3]\noutput : list = [9, 12, -9]",
    "output": "generated_output : list = mul_n([-3, -4, 3],-3)",
    "io_inp": [
      -3,
      -4,
      3
    ],
    "io_out": [
      9,
      12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -2, 3]\noutput : list = [-75, 25, 85]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse([-5, -2, 3]),5),4),-4),1)",
    "io_inp": [
      -5,
      -2,
      3
    ],
    "io_out": [
      -75,
      25,
      85
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse(input),5),4),-4),1)"
  },
  {
    "input": "input : list = [-2, -5, 5, -4, 0]\noutput : list = [-18, -21, -11, -20, -16]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n([-2, -5, 5, -4, 0],5),3),5),-3)",
    "io_inp": [
      -2,
      -5,
      5,
      -4,
      0
    ],
    "io_out": [
      -18,
      -21,
      -11,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(input,5),3),5),-3)"
  },
  {
    "input": "input : list = [3, 2, 4, -4, 5, 2]\noutput : list = [30, 25, 35, -5, 40, 25]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(sub_n([3, 2, 4, -4, 5, 2],-3))),24),5)",
    "io_inp": [
      3,
      2,
      4,
      -4,
      5,
      2
    ],
    "io_out": [
      30,
      25,
      35,
      -5,
      40,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(sub_n(input,-3))),24),5)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [7, 1]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(sort_des([2, -4]),1),3),-2),31)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(sort_des(input),1),3),-2),31)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [2, 2, 2]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc([-1, -1, -1]),-1),23)),2)",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc(input),-1),23)),2)"
  },
  {
    "input": "input : list = [4, 1, -4, -4]\noutput : list = [0, -3, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([4, 1, -4, -4])),4)",
    "io_inp": [
      4,
      1,
      -4,
      -4
    ],
    "io_out": [
      0,
      -3,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(take([0, -4, -3],1),3),13)),-1)",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(take(input,1),3),13)),-1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse([3, 4]),11)),-1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(input),11)),-1)"
  },
  {
    "input": "input : list = [3, -1, -1, 4]\noutput : list = [47, 42, 22, 22]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(add_n([3, -1, -1, 4],5)),5),-2))",
    "io_inp": [
      3,
      -1,
      -1,
      4
    ],
    "io_out": [
      47,
      42,
      22,
      22
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(add_n(input,5)),5),-2))"
  },
  {
    "input": "input : list = [4, 1, 1, 2, -5]\noutput : list = [9, 6, 6, 7, 0]",
    "output": "generated_output : list = take(sub_n([4, 1, 1, 2, -5],-5),6)",
    "io_inp": [
      4,
      1,
      1,
      2,
      -5
    ],
    "io_out": [
      9,
      6,
      6,
      7,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),6)"
  },
  {
    "input": "input : list = [4, -4, -4, -2, 0, 1]\noutput : list = [8, 5, 4, 2, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n([4, -4, -4, -2, 0, 1],-4))",
    "io_inp": [
      4,
      -4,
      -4,
      -2,
      0,
      1
    ],
    "io_out": [
      8,
      5,
      4,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [-3, -2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse([-2, 4, -3]))))",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [1, 1, 0]\noutput : list = [8, 6, 6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(sub_n([1, 1, 0],4)),-2)))",
    "io_inp": [
      1,
      1,
      0
    ],
    "io_out": [
      8,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(sub_n(input,4)),-2)))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(mul_n([0, 2],-2)))),6)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(mul_n(input,-2)))),6)"
  },
  {
    "input": "input : list = [-2, -2, -3, 0, -4]\noutput : list = [0, -2, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-2, -2, -3, 0, -4])",
    "io_inp": [
      -2,
      -2,
      -3,
      0,
      -4
    ],
    "io_out": [
      0,
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, -5, -3, 1]\noutput : list = [-30, -18, 6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(drop([4, 1, -5, -3, 1],1),3))),2)",
    "io_inp": [
      4,
      1,
      -5,
      -3,
      1
    ],
    "io_out": [
      -30,
      -18,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(drop(input,1),3))),2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [5, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([-4, 1])),5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [5, 5, 1, -4, 3, 0]\noutput : list = [8, 10, 10]",
    "output": "generated_output : list = drop(reverse(sub_n(sort_des(add_n([5, 5, 1, -4, 3, 0],3)),-2)),3)",
    "io_inp": [
      5,
      5,
      1,
      -4,
      3,
      0
    ],
    "io_out": [
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = drop(reverse(sub_n(sort_des(add_n(input,3)),-2)),3)"
  },
  {
    "input": "input : list = [-1, 0, 2, -5]\noutput : list = [-6, -2, -1, 1]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc([-1, 0, 2, -5]),4)),-5))",
    "io_inp": [
      -1,
      0,
      2,
      -5
    ],
    "io_out": [
      -6,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc(input),4)),-5))"
  },
  {
    "input": "input : list = [1, 5, -5, 5]\noutput : list = [6, 6, 2, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(sub_n([1, 5, -5, 5],-1)))))",
    "io_inp": [
      1,
      5,
      -5,
      5
    ],
    "io_out": [
      6,
      6,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [4, -2, 5, 3, -5, 4]\noutput : list = [3, 2, 1, -4, -7]",
    "output": "generated_output : list = sort_des(take(sub_n([4, -2, 5, 3, -5, 4],2),5))",
    "io_inp": [
      4,
      -2,
      5,
      3,
      -5,
      4
    ],
    "io_out": [
      3,
      2,
      1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,2),5))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-12, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(sort_des([3, -3]),5))),-4)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(sort_des(input),5))),-4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse([-5, 3])",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, -4, 3, 4, 3]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_asc(drop(sort_asc(drop([0, -1, -4, 3, 4, 3],1)),4)),18)",
    "io_inp": [
      0,
      -1,
      -4,
      3,
      4,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(sort_asc(drop(input,1)),4)),18)"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(reverse([0, -1, 0]),3),1)))",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(reverse(input),3),1)))"
  },
  {
    "input": "input : list = [-2, 1, -2, -1, -1, 4]\noutput : list = [-2, 1, -2]",
    "output": "generated_output : list = take([-2, 1, -2, -1, -1, 4],3)",
    "io_inp": [
      -2,
      1,
      -2,
      -1,
      -1,
      4
    ],
    "io_out": [
      -2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, 5, -4, -1]\noutput : list = [-11, -8, -5, -2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(add_n(sort_des([2, 5, -4, -1]),-5))),-2)",
    "io_inp": [
      2,
      5,
      -4,
      -1
    ],
    "io_out": [
      -11,
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(add_n(sort_des(input),-5))),-2)"
  },
  {
    "input": "input : list = [5, -4, -3, 2]\noutput : list = [-10, -15, -16, -7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(add_n([5, -4, -3, 2],-5),4),-2),5))",
    "io_inp": [
      5,
      -4,
      -3,
      2
    ],
    "io_out": [
      -10,
      -15,
      -16,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(add_n(input,-5),4),-2),5))"
  },
  {
    "input": "input : list = [-5, -3, 4, -4, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take([-5, -3, 4, -4, -3],2))))",
    "io_inp": [
      -5,
      -3,
      4,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(input,2))))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [8, 16]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(reverse([-1, 1]),-3))),-4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(reverse(input),-3))),-4)"
  },
  {
    "input": "input : list = [-2, -3, -3, -3, -1, -2]\noutput : list = [-10, -15, -15, -15, -5, -10]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n([-2, -3, -3, -3, -1, -2],5)),1))",
    "io_inp": [
      -2,
      -3,
      -3,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -10,
      -15,
      -15,
      -15,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(input,5)),1))"
  },
  {
    "input": "input : list = [2, -2, -4, -5, 0, -3]\noutput : list = [6, 4, 2, 1, 0, -1]",
    "output": "generated_output : list = add_n(sub_n(reverse(reverse(sort_des([2, -2, -4, -5, 0, -3]))),-2),2)",
    "io_inp": [
      2,
      -2,
      -4,
      -5,
      0,
      -3
    ],
    "io_out": [
      6,
      4,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(reverse(sort_des(input))),-2),2)"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [4, -4, -2]",
    "output": "generated_output : list = take(take(reverse([-2, -4, 4]),7),20)",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),7),20)"
  },
  {
    "input": "input : list = [1, -5, -1, 5, -2]\noutput : list = [-5, -2, -1, 1, 5]",
    "output": "generated_output : list = sort_asc([1, -5, -1, 5, -2])",
    "io_inp": [
      1,
      -5,
      -1,
      5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 4, -3]\noutput : list = [-11, -10]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(sub_n([-4, 4, -3],5)),-2),2),4)",
    "io_inp": [
      -4,
      4,
      -3
    ],
    "io_out": [
      -11,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(sub_n(input,5)),-2),2),4)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des([-1, 0]),5)))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(input),5)))"
  },
  {
    "input": "input : list = [-1, 4, -3, 5, 0]\noutput : list = [-9, -3, 0, 12, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-1, 4, -3, 5, 0],3)))",
    "io_inp": [
      -1,
      4,
      -3,
      5,
      0
    ],
    "io_out": [
      -9,
      -3,
      0,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,3)))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, 3]))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 3, -3]\noutput : list = [1, 7, 7]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(reverse([3, 3, -3]))),1),3)",
    "io_inp": [
      3,
      3,
      -3
    ],
    "io_out": [
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(reverse(input))),1),3)"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -2, 2],1)",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 0, 2, 0]\noutput : list = [0, 0, 2, 2]",
    "output": "generated_output : list = sort_asc([2, 0, 2, 0])",
    "io_inp": [
      2,
      0,
      2,
      0
    ],
    "io_out": [
      0,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-24, -18]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse(add_n([-5, -3],-4))),-1),3)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -24,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(add_n(input,-4))),-1),3)"
  },
  {
    "input": "input : list = [5, 2, 1, -1, -5]\noutput : list = [5, 2, 1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse(sort_asc([5, 2, 1, -1, -5])))))",
    "io_inp": [
      5,
      2,
      1,
      -1,
      -5
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [15, 30, -45]",
    "output": "generated_output : list = reverse(mul_n(mul_n([3, -2, -1],-5),3))",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      15,
      30,
      -45
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,-5),3))"
  },
  {
    "input": "input : list = [5, 2, -1, 4]\noutput : list = [-12, -9, -3, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des([5, 2, -1, 4]),-3),-3)))",
    "io_inp": [
      5,
      2,
      -1,
      4
    ],
    "io_out": [
      -12,
      -9,
      -3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des(input),-3),-3)))"
  },
  {
    "input": "input : list = [4, 5, 2, -4, -3]\noutput : list = [-2, -1, 4, 6, 7]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(add_n([4, 5, 2, -4, -3],2)),27)))",
    "io_inp": [
      4,
      5,
      2,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -1,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(add_n(input,2)),27)))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-10, 25]",
    "output": "generated_output : list = mul_n([2, -5],-5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, -4, -2, -4, 4, -4]\noutput : list = [-4, 4, -4]",
    "output": "generated_output : list = drop([1, -4, -2, -4, 4, -4],3)",
    "io_inp": [
      1,
      -4,
      -2,
      -4,
      4,
      -4
    ],
    "io_out": [
      -4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, -4, -1, -4, 5]\noutput : list = [7, 1, 4, 1, 10]",
    "output": "generated_output : list = add_n([2, -4, -1, -4, 5],5)",
    "io_inp": [
      2,
      -4,
      -1,
      -4,
      5
    ],
    "io_out": [
      7,
      1,
      4,
      1,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, 4, -2, 3, 3, 2]\noutput : list = [-4, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(drop([-3, 4, -2, 3, 3, 2],2),3)),-5))",
    "io_inp": [
      -3,
      4,
      -2,
      3,
      3,
      2
    ],
    "io_out": [
      -4,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(drop(input,2),3)),-5))"
  },
  {
    "input": "input : list = [0, 2, -4, 0]\noutput : list = [-4, 0, 0, 2]",
    "output": "generated_output : list = sort_asc([0, 2, -4, 0])",
    "io_inp": [
      0,
      2,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [2, 2, 7]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([0, 0, 5],1)),-2)",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,1)),-2)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [4, 2]",
    "output": "generated_output : list = sub_n(sort_des([-1, -3]),-5)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [1, 3, 10]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(mul_n([3, -4, 5],-1),4)),5),-5)",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      1,
      3,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(mul_n(input,-1),4)),5),-5)"
  },
  {
    "input": "input : list = [1, -5, -2, -1]\noutput : list = [-4, -8]",
    "output": "generated_output : list = mul_n(sort_des(drop([1, -5, -2, -1],2)),4)",
    "io_inp": [
      1,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,2)),4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(mul_n([3, 0],-1)),2),1),-3)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(mul_n(input,-1)),2),1),-3)"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = take(take(take(take(drop([-3, -5, 0],1),8),25),10),39)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(take(drop(input,1),8),25),10),39)"
  },
  {
    "input": "input : list = [-5, 5, 5, 4, 2, 5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(take([-5, 5, 5, 4, 2, 5],1)))))",
    "io_inp": [
      -5,
      5,
      5,
      4,
      2,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, 4, 1, -4, -1]\noutput : list = [3, 3, 0, -2, -5]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(sub_n([-4, 4, 1, -4, -1],-1)),-1)),42)",
    "io_inp": [
      -4,
      4,
      1,
      -4,
      -1
    ],
    "io_out": [
      3,
      3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(sub_n(input,-1)),-1)),42)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(reverse([-4, -2]),5),1)),-4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(reverse(input),5),1)),-4)"
  },
  {
    "input": "input : list = [3, 2, 2, 0, 1, -3]\noutput : list = [-35, -30, -30, -25, -20, -5]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sub_n([3, 2, 2, 0, 1, -3],-4),1)),-5))",
    "io_inp": [
      3,
      2,
      2,
      0,
      1,
      -3
    ],
    "io_out": [
      -35,
      -30,
      -30,
      -25,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sub_n(input,-4),1)),-5))"
  },
  {
    "input": "input : list = [-2, 1, 0, 0, 4, 5]\noutput : list = [6, 5, 2, 1, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(reverse([-2, 1, 0, 0, 4, 5]))),5),-1)",
    "io_inp": [
      -2,
      1,
      0,
      0,
      4,
      5
    ],
    "io_out": [
      6,
      5,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(reverse(input))),5),-1)"
  },
  {
    "input": "input : list = [5, 5, 1, -3]\noutput : list = [8, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(take([5, 5, 1, -3],2)),1),2))",
    "io_inp": [
      5,
      5,
      1,
      -3
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(take(input,2)),1),2))"
  },
  {
    "input": "input : list = [-1, -4, -5]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sort_des(add_n(drop([-1, -4, -5],1),-3))",
    "io_inp": [
      -1,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),-3))"
  },
  {
    "input": "input : list = [-4, 5, 0, 5, 4]\noutput : list = [-4, 0, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, 0, 5, 4])",
    "io_inp": [
      -4,
      5,
      0,
      5,
      4
    ],
    "io_out": [
      -4,
      0,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1, 4, 2, 0]\noutput : list = [3, 4, 5, 7, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des([4, 1, 4, 2, 0]))),3)",
    "io_inp": [
      4,
      1,
      4,
      2,
      0
    ],
    "io_out": [
      3,
      4,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(input))),3)"
  },
  {
    "input": "input : list = [-2, 4, 3, 3, 2]\noutput : list = [-6, -2, -1, -1, 0]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc([-2, 4, 3, 3, 2]),-1),28),-5)",
    "io_inp": [
      -2,
      4,
      3,
      3,
      2
    ],
    "io_out": [
      -6,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(input),-1),28),-5)"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [4, -4, 2]",
    "output": "generated_output : list = mul_n([-4, 4, -2],-1)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -2, -5, -2, 1]\noutput : list = [-9, -9, -6, -6, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([-5, -2, -5, -2, 1])),4)",
    "io_inp": [
      -5,
      -2,
      -5,
      -2,
      1
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),4)"
  },
  {
    "input": "input : list = [4, 0, -2, -4, -2, 4]\noutput : list = [4, 4, 0, -2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse([4, 0, -2, -4, -2, 4])))",
    "io_inp": [
      4,
      0,
      -2,
      -4,
      -2,
      4
    ],
    "io_out": [
      4,
      4,
      0,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [2, -4, 2, -2, -5]\noutput : list = [-10, 20, -10, 10, 25]",
    "output": "generated_output : list = sub_n(add_n(mul_n([2, -4, 2, -2, -5],-5),4),4)",
    "io_inp": [
      2,
      -4,
      2,
      -2,
      -5
    ],
    "io_out": [
      -10,
      20,
      -10,
      10,
      25
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-5),4),4)"
  },
  {
    "input": "input : list = [1, -1, -2, -4, 1, 3]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = take([1, -1, -2, -4, 1, 3],3)",
    "io_inp": [
      1,
      -1,
      -2,
      -4,
      1,
      3
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -4, -1, 0, -4]\noutput : list = [1, 0, -3, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n([-5, -4, -1, 0, -4],-1))))",
    "io_inp": [
      -5,
      -4,
      -1,
      0,
      -4
    ],
    "io_out": [
      1,
      0,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(input,-1))))"
  },
  {
    "input": "input : list = [-5, 5, -3, -5]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(take([-5, 5, -3, -5],1),2)),1))",
    "io_inp": [
      -5,
      5,
      -3,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(take(input,1),2)),1))"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [5, 3, -4]",
    "output": "generated_output : list = sort_des(add_n(sub_n([3, -4, 5],-5),-5))",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,-5),-5))"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n(take(sub_n(drop([3, 2, 4],1),5),19),-2)",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(drop(input,1),5),19),-2)"
  },
  {
    "input": "input : list = [-2, 1, 2, 1, -2, -3]\noutput : list = [-56, -38, 16, 34, 16, -38]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(reverse([-2, 1, 2, 1, -2, -3]),2),3),3),2)",
    "io_inp": [
      -2,
      1,
      2,
      1,
      -2,
      -3
    ],
    "io_out": [
      -56,
      -38,
      16,
      34,
      16,
      -38
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(reverse(input),2),3),3),2)"
  },
  {
    "input": "input : list = [0, -2, 4, 1, -4]\noutput : list = [4, 1, 0, -2, -4]",
    "output": "generated_output : list = sort_des([0, -2, 4, 1, -4])",
    "io_inp": [
      0,
      -2,
      4,
      1,
      -4
    ],
    "io_out": [
      4,
      1,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1, 0, 2]\noutput : list = [-45, -30, 0, 15]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc([3, -1, 0, 2])),5)),-3)",
    "io_inp": [
      3,
      -1,
      0,
      2
    ],
    "io_out": [
      -45,
      -30,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc(input)),5)),-3)"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc([1, 5, 1])),1)))",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [-5, 3, 1, 5, -2]\noutput : list = [10, 8, 6, 3, 0]",
    "output": "generated_output : list = take(add_n(sort_des([-5, 3, 1, 5, -2]),5),33)",
    "io_inp": [
      -5,
      3,
      1,
      5,
      -2
    ],
    "io_out": [
      10,
      8,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),5),33)"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = sub_n([-3, -2, 3],1)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -1, -4, -1, -4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take([-3, -1, -4, -1, -4],2)",
    "io_inp": [
      -3,
      -1,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 2, 0, 2, -4]\noutput : list = [-1, -3, -7]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(drop([2, 2, 0, 2, -4],2)),12)),-3)",
    "io_inp": [
      2,
      2,
      0,
      2,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(drop(input,2)),12)),-3)"
  },
  {
    "input": "input : list = [3, -1, 3]\noutput : list = [3, 3, -1]",
    "output": "generated_output : list = sort_des([3, -1, 3])",
    "io_inp": [
      3,
      -1,
      3
    ],
    "io_out": [
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [-2, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-2, -5, -5]))",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -2, -5, -1]\noutput : list = [2, 1, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(sub_n([-3, -2, -5, -1],-4),-4),4)),1)",
    "io_inp": [
      -3,
      -2,
      -5,
      -1
    ],
    "io_out": [
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(sub_n(input,-4),-4),4)),1)"
  },
  {
    "input": "input : list = [-1, 2, -4, 4, 2, -5]\noutput : list = [0, 6, 6, 15, 24, 27]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sort_des([-1, 2, -4, 4, 2, -5])),-4),-3))",
    "io_inp": [
      -1,
      2,
      -4,
      4,
      2,
      -5
    ],
    "io_out": [
      0,
      6,
      6,
      15,
      24,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sort_des(input)),-4),-3))"
  },
  {
    "input": "input : list = [-1, 2, 2, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(drop([-1, 2, 2, 0, 3],3)))))",
    "io_inp": [
      -1,
      2,
      2,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(drop(input,3)))))"
  },
  {
    "input": "input : list = [0, -4, 4, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(drop([0, -4, 4, -2],1),1),1),-5))",
    "io_inp": [
      0,
      -4,
      4,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(drop(input,1),1),1),-5))"
  },
  {
    "input": "input : list = [-3, -1, 2, 3, 2, -2]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = take(sort_des(sub_n([-3, -1, 2, 3, 2, -2],5)),3)",
    "io_inp": [
      -3,
      -1,
      2,
      3,
      2,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,5)),3)"
  },
  {
    "input": "input : list = [2, -5, -5, -5, -3, -3]\noutput : list = [-8, -8, -8, -6, -6, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc([2, -5, -5, -5, -3, -3])),-3))",
    "io_inp": [
      2,
      -5,
      -5,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -6,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [0, 0, 4, -3]\noutput : list = [-92, 48, -32, -32]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(add_n([0, 0, 4, -3],-2),5),2)),4)",
    "io_inp": [
      0,
      0,
      4,
      -3
    ],
    "io_out": [
      -92,
      48,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(add_n(input,-2),5),2)),4)"
  },
  {
    "input": "input : list = [-2, -1, 0, 4, -4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(take([-2, -1, 0, 4, -4],2),2),-3)))",
    "io_inp": [
      -2,
      -1,
      0,
      4,
      -4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(take(input,2),2),-3)))"
  },
  {
    "input": "input : list = [0, -4, 0, -4, -5, 2]\noutput : list = [2, -5, -4, 0, -4, 0]",
    "output": "generated_output : list = reverse([0, -4, 0, -4, -5, 2])",
    "io_inp": [
      0,
      -4,
      0,
      -4,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -4,
      0,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 3, 1, -2, 0]\noutput : list = [14, 15, 13, 10, 12]",
    "output": "generated_output : list = add_n(take(add_n(add_n(sub_n([2, 3, 1, -2, 0],1),5),4),7),4)",
    "io_inp": [
      2,
      3,
      1,
      -2,
      0
    ],
    "io_out": [
      14,
      15,
      13,
      10,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(sub_n(input,1),5),4),7),4)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sub_n([2, -2],3)))))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [-1, 3, 0, 5]\noutput : list = [-40, -15]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(drop([-1, 3, 0, 5],2)),-3),-5),9)",
    "io_inp": [
      -1,
      3,
      0,
      5
    ],
    "io_out": [
      -40,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(drop(input,2)),-3),-5),9)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([4, -4])",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4, 4, -3, -4]\noutput : list = [-12, -16, 16, -12, -16]",
    "output": "generated_output : list = mul_n([-3, -4, 4, -3, -4],4)",
    "io_inp": [
      -3,
      -4,
      4,
      -3,
      -4
    ],
    "io_out": [
      -12,
      -16,
      16,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 4, 2, -4, 1, 2]\noutput : list = [5, 4, -1, 5, 7]",
    "output": "generated_output : list = sub_n(take(reverse([2, 4, 2, -4, 1, 2]),5),-3)",
    "io_inp": [
      2,
      4,
      2,
      -4,
      1,
      2
    ],
    "io_out": [
      5,
      4,
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),5),-3)"
  },
  {
    "input": "input : list = [2, 1, 2, 4]\noutput : list = [-8, 8, 40]",
    "output": "generated_output : list = mul_n(drop(add_n(sub_n(mul_n([2, 1, 2, 4],-4),-2),4),1),-4)",
    "io_inp": [
      2,
      1,
      2,
      4
    ],
    "io_out": [
      -8,
      8,
      40
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(sub_n(mul_n(input,-4),-2),4),1),-4)"
  },
  {
    "input": "input : list = [2, 5, -5, 4]\noutput : list = [-20, -16, -8, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([2, 5, -5, 4],-4)))",
    "io_inp": [
      2,
      5,
      -5,
      4
    ],
    "io_out": [
      -20,
      -16,
      -8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [5, 1, -4, -3, 1]\noutput : list = [5, 1, 1, -3]",
    "output": "generated_output : list = reverse(take(drop(take(sort_asc([5, 1, -4, -3, 1]),14),1),34))",
    "io_inp": [
      5,
      1,
      -4,
      -3,
      1
    ],
    "io_out": [
      5,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(drop(take(sort_asc(input),14),1),34))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-9, -5]",
    "output": "generated_output : list = take(add_n([-5, -1],-4),6)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),6)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-10, -10]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(add_n([-5, -5],-1),9),3),5),5)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(add_n(input,-1),9),3),5),5)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([-2, -3],-5)),-1)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-5)),-1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [14, 8]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sub_n([4, -2],2),-3),5),4))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      14,
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sub_n(input,2),-3),5),4))"
  },
  {
    "input": "input : list = [-4, -4, -1, -5]\noutput : list = [4, 4, 10, 2]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(sub_n([-4, -4, -1, -5],-2),5),1),2),-2)",
    "io_inp": [
      -4,
      -4,
      -1,
      -5
    ],
    "io_out": [
      4,
      4,
      10,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(sub_n(input,-2),5),1),2),-2)"
  },
  {
    "input": "input : list = [4, -5, -3, 5, 1]\noutput : list = [0, -9, -7]",
    "output": "generated_output : list = add_n(take([4, -5, -3, 5, 1],3),-4)",
    "io_inp": [
      4,
      -5,
      -3,
      5,
      1
    ],
    "io_out": [
      0,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-4)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sub_n(take(add_n(add_n([5, 2],-1),-3),22),5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(input,-1),-3),22),5)"
  },
  {
    "input": "input : list = [-3, -5, 5, 2, 4]\noutput : list = [0, -1, -3, -8, -10]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc([-3, -5, 5, 2, 4])),5),7)",
    "io_inp": [
      -3,
      -5,
      5,
      2,
      4
    ],
    "io_out": [
      0,
      -1,
      -3,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(input)),5),7)"
  },
  {
    "input": "input : list = [3, 2, 5, 2, -4]\noutput : list = [1, 0, 3, 0, -6]",
    "output": "generated_output : list = sub_n([3, 2, 5, 2, -4],2)",
    "io_inp": [
      3,
      2,
      5,
      2,
      -4
    ],
    "io_out": [
      1,
      0,
      3,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, 4, 0, 4, 5]\noutput : list = [15, 12, 12, 6, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(reverse([2, 4, 0, 4, 5])))),3)",
    "io_inp": [
      2,
      4,
      0,
      4,
      5
    ],
    "io_out": [
      15,
      12,
      12,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(reverse(input)))),3)"
  },
  {
    "input": "input : list = [5, -5, -1, 4, 2]\noutput : list = [5, 4, 2, -1, -5]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(sort_des([5, -5, -1, 4, 2])))))",
    "io_inp": [
      5,
      -5,
      -1,
      4,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, 5, -4, 4, -4]\noutput : list = [0, 0, 3, 8, 9]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(sub_n([-1, 5, -4, 4, -4],-2))),31),-2)",
    "io_inp": [
      -1,
      5,
      -4,
      4,
      -4
    ],
    "io_out": [
      0,
      0,
      3,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(sub_n(input,-2))),31),-2)"
  },
  {
    "input": "input : list = [-5, 2, 3, -2, -5]\noutput : list = [-7, -6, -2, 1, 1]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n([-5, 2, 3, -2, -5],4),-1)))",
    "io_inp": [
      -5,
      2,
      3,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(input,4),-1)))"
  },
  {
    "input": "input : list = [5, 4, -3, 3]\noutput : list = [-6, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(add_n([5, 4, -3, 3],-3)),16),10))",
    "io_inp": [
      5,
      4,
      -3,
      3
    ],
    "io_out": [
      -6,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(add_n(input,-3)),16),10))"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [25, 5, -25]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse(sort_des([-5, -1, 5])),-5),33))",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      25,
      5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(sort_des(input)),-5),33))"
  },
  {
    "input": "input : list = [-1, 5, -2, -4, 1, -3]\noutput : list = [-60, -44, -36, -32, -28, -24]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(sub_n([-1, 5, -2, -4, 1, -3],-5)),5),-2),2)",
    "io_inp": [
      -1,
      5,
      -2,
      -4,
      1,
      -3
    ],
    "io_out": [
      -60,
      -44,
      -36,
      -32,
      -28,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(sub_n(input,-5)),5),-2),2)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [8, 24]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des([2, 4]),5),4),-2)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      8,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(input),5),4),-2)"
  },
  {
    "input": "input : list = [-2, -2, -5, 0, -2]\noutput : list = [10, 8, 8, 8, 5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_asc([-2, -2, -5, 0, -2]),-5),-4)),1)",
    "io_inp": [
      -2,
      -2,
      -5,
      0,
      -2
    ],
    "io_out": [
      10,
      8,
      8,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_asc(input),-5),-4)),1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [36, 60]",
    "output": "generated_output : list = mul_n(mul_n([3, 5],-4),-3)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      36,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),-3)"
  },
  {
    "input": "input : list = [-3, -3, -2, 5, 3, 2]\noutput : list = [-2, -2, -1, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(sub_n([-3, -3, -2, 5, 3, 2],-1))),16))",
    "io_inp": [
      -3,
      -3,
      -2,
      5,
      3,
      2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(sub_n(input,-1))),16))"
  },
  {
    "input": "input : list = [1, 1, 1]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 1, 1],1)",
    "io_inp": [
      1,
      1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(add_n(drop(sort_des(drop([2, 3, -3],1)),1),-1))",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(sort_des(drop(input,1)),1),-1))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(add_n(reverse([-2, 1]),-2))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-3, 3, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 3, -3],1)",
    "io_inp": [
      -3,
      3,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -5, -3, -1]\noutput : list = [5, -7, -3, 1]",
    "output": "generated_output : list = sub_n(take(take(mul_n([1, -5, -3, -1],2),15),22),-3)",
    "io_inp": [
      1,
      -5,
      -3,
      -1
    ],
    "io_out": [
      5,
      -7,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(input,2),15),22),-3)"
  },
  {
    "input": "input : list = [4, 0, -5, 2, -2]\noutput : list = [28, 20, 12, 4, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(sort_asc([4, 0, -5, 2, -2]),17)),3),4)",
    "io_inp": [
      4,
      0,
      -5,
      2,
      -2
    ],
    "io_out": [
      28,
      20,
      12,
      4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(sort_asc(input),17)),3),4)"
  },
  {
    "input": "input : list = [-3, -5, -1, 5]\noutput : list = [4, 6, 2, -4]",
    "output": "generated_output : list = add_n(mul_n([-3, -5, -1, 5],-1),1)",
    "io_inp": [
      -3,
      -5,
      -1,
      5
    ],
    "io_out": [
      4,
      6,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),1)"
  },
  {
    "input": "input : list = [-1, 5, 5, 3, 2]\noutput : list = [3, -3, -3, -1, 0]",
    "output": "generated_output : list = take(take(take(add_n(mul_n([-1, 5, 5, 3, 2],-1),2),11),33),27)",
    "io_inp": [
      -1,
      5,
      5,
      3,
      2
    ],
    "io_out": [
      3,
      -3,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(mul_n(input,-1),2),11),33),27)"
  },
  {
    "input": "input : list = [-2, -4, 2, -2, -4, -5]\noutput : list = [-8, -18, 12, -8]",
    "output": "generated_output : list = take(sub_n(mul_n([-2, -4, 2, -2, -4, -5],5),-2),4)",
    "io_inp": [
      -2,
      -4,
      2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -18,
      12,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,5),-2),4)"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [5, -5, -5]",
    "output": "generated_output : list = sort_des([5, -5, -5])",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -3, -1, 1, -3, -2]\noutput : list = [1, 1, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(sort_asc([-2, -3, -1, 1, -3, -2]),-1),4),-2))",
    "io_inp": [
      -2,
      -3,
      -1,
      1,
      -3,
      -2
    ],
    "io_out": [
      1,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(sort_asc(input),-1),4),-2))"
  },
  {
    "input": "input : list = [1, 2, -5, -5, 0]\noutput : list = [0, 20, 20, -8, -4]",
    "output": "generated_output : list = reverse(mul_n([1, 2, -5, -5, 0],-4))",
    "io_inp": [
      1,
      2,
      -5,
      -5,
      0
    ],
    "io_out": [
      0,
      20,
      20,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-1, -1, -4, -1, -4]\noutput : list = [-57, -21, -21]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(take([-1, -1, -4, -1, -4],3),4),-3),3))",
    "io_inp": [
      -1,
      -1,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -57,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(take(input,3),4),-3),3))"
  },
  {
    "input": "input : list = [-5, 1, 5, 5]\noutput : list = [5, 5, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 5, 5])",
    "io_inp": [
      -5,
      1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, -5, 1, 2]\noutput : list = [6, 5, 4, 1, -2]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(sub_n([-2, 3, -5, 1, 2],-2))),10),1)",
    "io_inp": [
      -2,
      3,
      -5,
      1,
      2
    ],
    "io_out": [
      6,
      5,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(sub_n(input,-2))),10),1)"
  },
  {
    "input": "input : list = [-2, 4, 1, 3]\noutput : list = [3, 1, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, 1, 3])",
    "io_inp": [
      -2,
      4,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 5, -5, 0, 2]\noutput : list = [15, 3, 0]",
    "output": "generated_output : list = take(sort_des(mul_n([-1, 5, -5, 0, 2],-3)),3)",
    "io_inp": [
      -1,
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      15,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,-3)),3)"
  },
  {
    "input": "input : list = [-5, 4, -5, -4]\noutput : list = [0, 9, 0, 1]",
    "output": "generated_output : list = take(add_n(sub_n([-5, 4, -5, -4],-1),4),21)",
    "io_inp": [
      -5,
      4,
      -5,
      -4
    ],
    "io_out": [
      0,
      9,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,-1),4),21)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [6, 10]",
    "output": "generated_output : list = take(reverse(add_n(sub_n(sort_des([-1, 3]),-3),4)),12)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sub_n(sort_des(input),-3),4)),12)"
  },
  {
    "input": "input : list = [-4, -5, 1, -1, 5, 5]\noutput : list = [3, 3, -1, -3, -6, -7]",
    "output": "generated_output : list = sort_des(add_n([-4, -5, 1, -1, 5, 5],-2))",
    "io_inp": [
      -4,
      -5,
      1,
      -1,
      5,
      5
    ],
    "io_out": [
      3,
      3,
      -1,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [50, 25, 15]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_asc([4, -3, 2]),-4),-1),-3),5)",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      50,
      25,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_asc(input),-4),-1),-3),5)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [6, 3]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n([4, 1],2),1)),1)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(input,2),1)),1)"
  },
  {
    "input": "input : list = [-2, -5, 3, -5]\noutput : list = [6, 1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(reverse([-2, -5, 3, -5]),2),-1)))",
    "io_inp": [
      -2,
      -5,
      3,
      -5
    ],
    "io_out": [
      6,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(reverse(input),2),-1)))"
  },
  {
    "input": "input : list = [-3, 3, -2, -2, -1]\noutput : list = [-5, -1, 0, 0, 1]",
    "output": "generated_output : list = take(mul_n(sort_des(take(sub_n([-3, 3, -2, -2, -1],-2),17)),-1),31)",
    "io_inp": [
      -3,
      3,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(sub_n(input,-2),17)),-1),31)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(take([-5, -3, 2],1),1),3)),-2)",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(take(input,1),1),3)),-2)"
  },
  {
    "input": "input : list = [5, -1, 1, 4, -1]\noutput : list = [-3, -3, -5, -8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(drop([5, -1, 1, 4, -1],1),-4),1)),-1)",
    "io_inp": [
      5,
      -1,
      1,
      4,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(drop(input,1),-4),1)),-1)"
  },
  {
    "input": "input : list = [-3, -4, -3, -1, 5]\noutput : list = [17, 14, 14, 8, -10]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(mul_n([-3, -4, -3, -1, 5],-3),-5))))",
    "io_inp": [
      -3,
      -4,
      -3,
      -1,
      5
    ],
    "io_out": [
      17,
      14,
      14,
      8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(mul_n(input,-3),-5))))"
  },
  {
    "input": "input : list = [3, 5, 0, 0, 2]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(sort_asc(take([3, 5, 0, 0, 2],2)),26)",
    "io_inp": [
      3,
      5,
      0,
      0,
      2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,2)),26)"
  },
  {
    "input": "input : list = [3, -5, 0]\noutput : list = [0, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 0])",
    "io_inp": [
      3,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, -3, -5, 5, 4]\noutput : list = [7, 7, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(drop(reverse(sub_n([5, 5, -3, -5, 5, 4],-3)),2),1))",
    "io_inp": [
      5,
      5,
      -3,
      -5,
      5,
      4
    ],
    "io_out": [
      7,
      7,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(reverse(sub_n(input,-3)),2),1))"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [-20, -20, 20]",
    "output": "generated_output : list = mul_n(reverse([4, -4, -4]),5)",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      -20,
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-2, -1, 5]\noutput : list = [3, -3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(drop([-2, -1, 5],1)),-3),5))",
    "io_inp": [
      -2,
      -1,
      5
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(drop(input,1)),-3),5))"
  },
  {
    "input": "input : list = [-1, -4, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_des(take(reverse(take(drop([-1, -4, 3, 3],2),13)),24))",
    "io_inp": [
      -1,
      -4,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(drop(input,2),13)),24))"
  },
  {
    "input": "input : list = [-1, 2, -1, -3, 3]\noutput : list = [24, 0, 8, 20, 8]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(add_n([-1, 2, -1, -3, 3],4),-1),-2)),-2)",
    "io_inp": [
      -1,
      2,
      -1,
      -3,
      3
    ],
    "io_out": [
      24,
      0,
      8,
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(add_n(input,4),-1),-2)),-2)"
  },
  {
    "input": "input : list = [3, -5, 5, 1, -3]\noutput : list = [4, -4, 6, 2, -2]",
    "output": "generated_output : list = add_n(add_n([3, -5, 5, 1, -3],2),-1)",
    "io_inp": [
      3,
      -5,
      5,
      1,
      -3
    ],
    "io_out": [
      4,
      -4,
      6,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-1)"
  },
  {
    "input": "input : list = [3, 3, 1]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(take([3, 3, 1],1),-4),14)),4)",
    "io_inp": [
      3,
      3,
      1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(take(input,1),-4),14)),4)"
  },
  {
    "input": "input : list = [2, 1, -4, -5]\noutput : list = [2, 1, -4, -5]",
    "output": "generated_output : list = sub_n(add_n([2, 1, -4, -5],5),5)",
    "io_inp": [
      2,
      1,
      -4,
      -5
    ],
    "io_out": [
      2,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),5)"
  },
  {
    "input": "input : list = [-1, 4, 1, 2, -5]\noutput : list = [1, -1, -2, -4, -8]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse([-1, 4, 1, 2, -5]),3)))",
    "io_inp": [
      -1,
      4,
      1,
      2,
      -5
    ],
    "io_out": [
      1,
      -1,
      -2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(input),3)))"
  },
  {
    "input": "input : list = [0, -3, -4, 5, 1]\noutput : list = [9, -3, -6, -15, -18]",
    "output": "generated_output : list = mul_n(take(add_n(take(sort_des([0, -3, -4, 5, 1]),15),-2),21),3)",
    "io_inp": [
      0,
      -3,
      -4,
      5,
      1
    ],
    "io_out": [
      9,
      -3,
      -6,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(sort_des(input),15),-2),21),3)"
  },
  {
    "input": "input : list = [-3, 4, -2]\noutput : list = [-6, 1, -5]",
    "output": "generated_output : list = add_n(reverse(reverse([-3, 4, -2])),-3)",
    "io_inp": [
      -3,
      4,
      -2
    ],
    "io_out": [
      -6,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(drop([-4, -5, 1],1))",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [0, -5, -3, -1, 5, 4]\noutput : list = [7, 6, 2, 1, -1, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(sort_des([0, -5, -3, -1, 5, 4]),10)),-2))",
    "io_inp": [
      0,
      -5,
      -3,
      -1,
      5,
      4
    ],
    "io_out": [
      7,
      6,
      2,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(sort_des(input),10)),-2))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [6, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse([5, 0]),-1)))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(input),-1)))"
  },
  {
    "input": "input : list = [-2, 5, 1, -4]\noutput : list = [-4, -2, 1, 5]",
    "output": "generated_output : list = sort_asc([-2, 5, 1, -4])",
    "io_inp": [
      -2,
      5,
      1,
      -4
    ],
    "io_out": [
      -4,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, 3, 2, -5]\noutput : list = [3, 2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, -3, 3, 2, -5]))",
    "io_inp": [
      -5,
      -3,
      3,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(sort_des([-2, -4])),23),1),4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(sort_des(input)),23),1),4)"
  },
  {
    "input": "input : list = [5, -4, -5, -4]\noutput : list = [-5, -4, -4, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(sort_asc([5, -4, -5, -4])),29)))",
    "io_inp": [
      5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(sort_asc(input)),29)))"
  },
  {
    "input": "input : list = [5, -4, -3, -5, -4]\noutput : list = [7, -2, -1, -3, -2]",
    "output": "generated_output : list = add_n(add_n([5, -4, -3, -5, -4],5),-3)",
    "io_inp": [
      5,
      -4,
      -3,
      -5,
      -4
    ],
    "io_out": [
      7,
      -2,
      -1,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [11, 6, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n([-4, 0, 5],-1)),5)",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      11,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,-1)),5)"
  },
  {
    "input": "input : list = [-4, 1, 1, 0, 2, -2]\noutput : list = [-20, 5, 5, 0, 10, -10]",
    "output": "generated_output : list = mul_n([-4, 1, 1, 0, 2, -2],5)",
    "io_inp": [
      -4,
      1,
      1,
      0,
      2,
      -2
    ],
    "io_out": [
      -20,
      5,
      5,
      0,
      10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, 2, 0, -4, 4]\noutput : list = [0, -1, -3, -5, -9]",
    "output": "generated_output : list = sort_des(add_n([5, 2, 0, -4, 4],-5))",
    "io_inp": [
      5,
      2,
      0,
      -4,
      4
    ],
    "io_out": [
      0,
      -1,
      -3,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-10, -26]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(reverse([0, -4]),-4),2),-5),-2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -10,
      -26
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(reverse(input),-4),2),-5),-2)"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [4, -3, 2]",
    "output": "generated_output : list = take(reverse(add_n(take(sub_n([0, -5, 2],-3),4),-1)),21)",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sub_n(input,-3),4),-1)),21)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = take(reverse(take(reverse(reverse([-5, -5])),14)),36)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(reverse(input)),14)),36)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 18]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sort_des([3, 0])),3),2))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sort_des(input)),3),2))"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-13, -15, -3]",
    "output": "generated_output : list = reverse(take(take(add_n(mul_n([-1, 5, 4],-2),-5),14),24))",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -13,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(mul_n(input,-2),-5),14),24))"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [12]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(take([5, 2, 5],1),2))),-2)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(take(input,1),2))),-2)"
  },
  {
    "input": "input : list = [5, -5, -4, -3]\noutput : list = [3, 4, 5, 13]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_asc([5, -5, -4, -3]),-4))),4)",
    "io_inp": [
      5,
      -5,
      -4,
      -3
    ],
    "io_out": [
      3,
      4,
      5,
      13
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_asc(input),-4))),4)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(sort_asc([0, 2]))),22))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(sort_asc(input))),22))"
  },
  {
    "input": "input : list = [3, 4, 0, -2, 3]\noutput : list = [-2, 0, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sort_des([3, 4, 0, -2, 3]))),25))",
    "io_inp": [
      3,
      4,
      0,
      -2,
      3
    ],
    "io_out": [
      -2,
      0,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sort_des(input))),25))"
  },
  {
    "input": "input : list = [2, 0, 5, 2, 1, 3]\noutput : list = [9, 7, 6, 6, 5, 4]",
    "output": "generated_output : list = sub_n(sort_des([2, 0, 5, 2, 1, 3]),-4)",
    "io_inp": [
      2,
      0,
      5,
      2,
      1,
      3
    ],
    "io_out": [
      9,
      7,
      6,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(reverse([1, -4, -4])),1),1))",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(reverse(input)),1),1))"
  },
  {
    "input": "input : list = [-2, -1, -2, 2, -3]\noutput : list = [1, 2, 2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(take([-2, -1, -2, 2, -3],3))),-1))",
    "io_inp": [
      -2,
      -1,
      -2,
      2,
      -3
    ],
    "io_out": [
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(take(input,3))),-1))"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [-5, -2, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 4, -2]))",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      -5,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -3, 2, 4, -4]\noutput : list = [-48, -36, -24, 36, 48]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n([3, -3, 2, 4, -4],3),-4)))",
    "io_inp": [
      3,
      -3,
      2,
      4,
      -4
    ],
    "io_out": [
      -48,
      -36,
      -24,
      36,
      48
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(input,3),-4)))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = take(sort_asc([-5, 3]),12)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),12)"
  },
  {
    "input": "input : list = [-1, 0, 1, -4, 4, -3]\noutput : list = [-2, 5, -3, 2, 1, 0]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(reverse([-1, 0, 1, -4, 4, -3])),2)),-1)",
    "io_inp": [
      -1,
      0,
      1,
      -4,
      4,
      -3
    ],
    "io_out": [
      -2,
      5,
      -3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(reverse(input)),2)),-1)"
  },
  {
    "input": "input : list = [3, 5, -5, 5, 2, 2]\noutput : list = [14, 14, 20, 0, 20, 16]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(add_n([3, 5, -5, 5, 2, 2],4),1),2),42))",
    "io_inp": [
      3,
      5,
      -5,
      5,
      2,
      2
    ],
    "io_out": [
      14,
      14,
      20,
      0,
      20,
      16
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(add_n(input,4),1),2),42))"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = reverse(drop([-1, 0, -3],1))",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, -3, 1, 5, 1, 3]\noutput : list = [-10, -6, 2, 2, 6, 10]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(mul_n([-5, -3, 1, 5, 1, 3],-1),-2)),33))",
    "io_inp": [
      -5,
      -3,
      1,
      5,
      1,
      3
    ],
    "io_out": [
      -10,
      -6,
      2,
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(mul_n(input,-1),-2)),33))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-6, 3]",
    "output": "generated_output : list = take(take(reverse(add_n(reverse([-5, 4]),-1)),5),22)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(reverse(input),-1)),5),22)"
  },
  {
    "input": "input : list = [4, 3, -5, 1, 0]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(take([4, 3, -5, 1, 0],1),2),3),4))",
    "io_inp": [
      4,
      3,
      -5,
      1,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(take(input,1),2),3),4))"
  },
  {
    "input": "input : list = [-4, 5, -5, 5, -5]\noutput : list = [16, 16, -11, -14, -14]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(sort_des([-4, 5, -5, 5, -5]),3),1)))",
    "io_inp": [
      -4,
      5,
      -5,
      5,
      -5
    ],
    "io_out": [
      16,
      16,
      -11,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(sort_des(input),3),1)))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sort_des([1, 5]),14),1),4))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sort_des(input),14),1),4))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sub_n([-4, 4],1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n([-1, -5],4)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n([-1, 5],-3),-3),-2),-4)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(input,-3),-3),-2),-4)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [16, 24]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n([-2, -4],2))),-4),-4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      16,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n(input,2))),-4),-4)"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [16, -4, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([-4, 3, 1],-4)))",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      16,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [21]",
    "output": "generated_output : list = sub_n(drop(sort_asc(mul_n(mul_n([-5, -5],-5),1)),1),4)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      21
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(mul_n(mul_n(input,-5),1)),1),4)"
  },
  {
    "input": "input : list = [1, -3, 1, -5, -4]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(take([1, -3, 1, -5, -4],2),-1))),-5)",
    "io_inp": [
      1,
      -3,
      1,
      -5,
      -4
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(take(input,2),-1))),-5)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_asc([2, 3, 2]),17))),5)",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_asc(input),17))),5)"
  },
  {
    "input": "input : list = [0, 1, -4, 1, -2]\noutput : list = [-7, -5, -3, -2, -2]",
    "output": "generated_output : list = sort_asc(add_n(reverse([0, 1, -4, 1, -2]),-3))",
    "io_inp": [
      0,
      1,
      -4,
      1,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [0, 5, -1, -4, -3, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = take([0, 5, -1, -4, -3, 0],2)",
    "io_inp": [
      0,
      5,
      -1,
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 0, 2, 3]\noutput : list = [-45, -25]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(take([4, 0, 2, 3],2),15),-5)),-5)",
    "io_inp": [
      4,
      0,
      2,
      3
    ],
    "io_out": [
      -45,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(take(input,2),15),-5)),-5)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [8, -4]",
    "output": "generated_output : list = take(mul_n(take(reverse(sort_asc([4, -2])),8),2),20)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(sort_asc(input)),8),2),20)"
  },
  {
    "input": "input : list = [-4, 3, -5, 2]\noutput : list = [-1, -2, -8, -9]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des([-4, 3, -5, 2]),15))),4)",
    "io_inp": [
      -4,
      3,
      -5,
      2
    ],
    "io_out": [
      -1,
      -2,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des(input),15))),4)"
  },
  {
    "input": "input : list = [1, 1, 5, -2]\noutput : list = [8]",
    "output": "generated_output : list = reverse(drop(add_n(sort_asc(sub_n([1, 1, 5, -2],-1)),2),3))",
    "io_inp": [
      1,
      1,
      5,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(sort_asc(sub_n(input,-1)),2),3))"
  },
  {
    "input": "input : list = [-4, 4, 3, 5, 3, -4]\noutput : list = [4, 3, 2, 2, -5, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(add_n([-4, 4, 3, 5, 3, -4],1),1))),-3)",
    "io_inp": [
      -4,
      4,
      3,
      5,
      3,
      -4
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(add_n(input,1),1))),-3)"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-12]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(take([4, -3, -3],1),-2),14)),4)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(take(input,1),-2),14)),4)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [30, 30]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(mul_n([-5, -5],-5)),-5)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      30,
      30
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(mul_n(input,-5)),-5)))"
  },
  {
    "input": "input : list = [-5, 2, 0, 1, 1]\noutput : list = [15, -6, 0, -3, -3]",
    "output": "generated_output : list = mul_n([-5, 2, 0, 1, 1],-3)",
    "io_inp": [
      -5,
      2,
      0,
      1,
      1
    ],
    "io_out": [
      15,
      -6,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -4, 3, -2, -2]\noutput : list = [-1, -6, -6, -8, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(add_n([-4, -4, 3, -2, -2],-1)),3)),36)",
    "io_inp": [
      -4,
      -4,
      3,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -6,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(add_n(input,-1)),3)),36)"
  },
  {
    "input": "input : list = [1, 5, 5, 0, -2]\noutput : list = [-44, -4, 96, 96, 16]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(mul_n([1, 5, 5, 0, -2],4),5),6)),-4)",
    "io_inp": [
      1,
      5,
      5,
      0,
      -2
    ],
    "io_out": [
      -44,
      -4,
      96,
      96,
      16
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(mul_n(input,4),5),6)),-4)"
  },
  {
    "input": "input : list = [-2, 2, -5, -3]\noutput : list = [15, 5, 0, -20]",
    "output": "generated_output : list = take(sort_des(take(mul_n(add_n([-2, 2, -5, -3],2),-5),28)),11)",
    "io_inp": [
      -2,
      2,
      -5,
      -3
    ],
    "io_out": [
      15,
      5,
      0,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(add_n(input,2),-5),28)),11)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([-3, -2, 2]),-5),4)",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-5),4)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [-25, -15, -15]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(sort_des([3, 1, 1]),2))),-5)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      -25,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(sort_des(input),2))),-5)"
  },
  {
    "input": "input : list = [-1, -2, -2, 1, 0]\noutput : list = [1, 0, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-1, -2, -2, 1, 0]))",
    "io_inp": [
      -1,
      -2,
      -2,
      1,
      0
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 5, 4, 1]\noutput : list = [66, 54, 18, -18]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(mul_n([-2, 5, 4, 1],-4),-2)),-3))",
    "io_inp": [
      -2,
      5,
      4,
      1
    ],
    "io_out": [
      66,
      54,
      18,
      -18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(mul_n(input,-4),-2)),-3))"
  },
  {
    "input": "input : list = [-3, -1, 0, -4, -3]\noutput : list = [-13, -12, -12, -10, -9]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(add_n([-3, -1, 0, -4, -3],-2)),-4)),-3)",
    "io_inp": [
      -3,
      -1,
      0,
      -4,
      -3
    ],
    "io_out": [
      -13,
      -12,
      -12,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(add_n(input,-2)),-4)),-3)"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(take([5, 3, -3],1),8),4)))",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(take(input,1),8),4)))"
  },
  {
    "input": "input : list = [-2, 2, -5, 1, 5, -3]\noutput : list = [-28, -13, -8, 7, 12, 22]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(mul_n([-2, 2, -5, 1, 5, -3],-5),3))),32)",
    "io_inp": [
      -2,
      2,
      -5,
      1,
      5,
      -3
    ],
    "io_out": [
      -28,
      -13,
      -8,
      7,
      12,
      22
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(mul_n(input,-5),3))),32)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc([4, -1])",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, -2]\noutput : list = [-4, -2, -5]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(add_n([-1, 1, -2],-2),1)),-2))",
    "io_inp": [
      -1,
      1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(add_n(input,-2),1)),-2))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-7]",
    "output": "generated_output : list = drop(add_n([5, -4],-3),1)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-3),1)"
  },
  {
    "input": "input : list = [-2, -4, 0, 1, -3]\noutput : list = [-4, -5, -7, -8, -9]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(add_n([-2, -4, 0, 1, -3],-3),2),23)))",
    "io_inp": [
      -2,
      -4,
      0,
      1,
      -3
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(add_n(input,-3),2),23)))"
  },
  {
    "input": "input : list = [-4, -2, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(take(take([-4, -2, -1],1),14),1)",
    "io_inp": [
      -4,
      -2,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),14),1)"
  },
  {
    "input": "input : list = [-2, 4, 3, -3, 5, 1]\noutput : list = [-1, 3, 7]",
    "output": "generated_output : list = reverse(sort_des(add_n(reverse(drop([-2, 4, 3, -3, 5, 1],3)),2)))",
    "io_inp": [
      -2,
      4,
      3,
      -3,
      5,
      1
    ],
    "io_out": [
      -1,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(reverse(drop(input,3)),2)))"
  },
  {
    "input": "input : list = [4, 2, 1, 5, 4, 1]\noutput : list = [-1, 2, 8, 11]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(take([4, 2, 1, 5, 4, 1],4),3)),4))",
    "io_inp": [
      4,
      2,
      1,
      5,
      4,
      1
    ],
    "io_out": [
      -1,
      2,
      8,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(take(input,4),3)),4))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [0, -4]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n(sort_asc([4, 2]),2),-2),-3),-3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(sort_asc(input),2),-2),-3),-3)"
  },
  {
    "input": "input : list = [-5, -3, -5, 5]\noutput : list = [-15, -15, -9, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(reverse([-5, -3, -5, 5])),3)))",
    "io_inp": [
      -5,
      -3,
      -5,
      5
    ],
    "io_out": [
      -15,
      -15,
      -9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(reverse(input)),3)))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [4, 19]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(mul_n([3, 0],5))),-4))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      4,
      19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(mul_n(input,5))),-4))"
  },
  {
    "input": "input : list = [0, -3, -2, -3]\noutput : list = [-3, -6, -5, -6]",
    "output": "generated_output : list = add_n(add_n([0, -3, -2, -3],-1),-2)",
    "io_inp": [
      0,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -6,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),-2)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [12, 12]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sub_n([0, 0],2),-5),4)))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sub_n(input,2),-5),4)))"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-7, -6, -4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_des([-2, -3, 0]),-4)),17))",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_des(input),-4)),17))"
  },
  {
    "input": "input : list = [4, 4, 3]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([4, 4, 3],4),3),-2)",
    "io_inp": [
      4,
      4,
      3
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,4),3),-2)"
  },
  {
    "input": "input : list = [-2, 5, 2, 0, 2]\noutput : list = [10, 7, 7, 5, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des([-2, 5, 2, 0, 2]),7))),-5)",
    "io_inp": [
      -2,
      5,
      2,
      0,
      2
    ],
    "io_out": [
      10,
      7,
      7,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des(input),7))),-5)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [12, 9]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(reverse([4, 3]),10))),3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(reverse(input),10))),3)"
  },
  {
    "input": "input : list = [2, 3, -3, 0, 3]\noutput : list = [-7, -4, -2, -1, -1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse([2, 3, -3, 0, 3]),2),-2))",
    "io_inp": [
      2,
      3,
      -3,
      0,
      3
    ],
    "io_out": [
      -7,
      -4,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(input),2),-2))"
  },
  {
    "input": "input : list = [1, -4, 5]\noutput : list = [10, 6, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des([1, -4, 5])),5))",
    "io_inp": [
      1,
      -4,
      5
    ],
    "io_out": [
      10,
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(input)),5))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = take(take(sort_des(reverse(drop([-1, 3, 3],1))),9),21)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(drop(input,1))),9),21)"
  },
  {
    "input": "input : list = [4, -5, -3, 4]\noutput : list = [-9, -7, 0, 0]",
    "output": "generated_output : list = reverse(take(add_n(sort_des([4, -5, -3, 4]),-4),25))",
    "io_inp": [
      4,
      -5,
      -3,
      4
    ],
    "io_out": [
      -9,
      -7,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(input),-4),25))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [2, -2]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(reverse([-4, 0]),-3),8),5),1)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(reverse(input),-3),8),5),1)"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [3, -5, 2]",
    "output": "generated_output : list = reverse(sub_n([4, -3, 5],2))",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      3,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [4, -5, 3, -5, -3, 3]\noutput : list = [-10, 20, 30, -10, 30, -15]",
    "output": "generated_output : list = mul_n(add_n(reverse([4, -5, 3, -5, -3, 3]),-1),-5)",
    "io_inp": [
      4,
      -5,
      3,
      -5,
      -3,
      3
    ],
    "io_out": [
      -10,
      20,
      30,
      -10,
      30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-1),-5)"
  },
  {
    "input": "input : list = [5, 4, -1, 0]\noutput : list = [4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(take([5, 4, -1, 0],2),-5))),-5)",
    "io_inp": [
      5,
      4,
      -1,
      0
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(take(input,2),-5))),-5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [4, -3]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n([-2, 5],-3),-4)),1)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(input,-3),-4)),1)"
  },
  {
    "input": "input : list = [5, -1, 2, -1, -5, -4]\noutput : list = [-30, -24, -6, -6]",
    "output": "generated_output : list = take(take(mul_n(sort_des(mul_n([5, -1, 2, -1, -5, -4],-2)),-3),32),4)",
    "io_inp": [
      5,
      -1,
      2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -30,
      -24,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(mul_n(input,-2)),-3),32),4)"
  },
  {
    "input": "input : list = [5, 4, -3, 4]\noutput : list = [-28, 28, 28, 36]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n(sort_asc([5, 4, -3, 4]),2),-1),4),14)",
    "io_inp": [
      5,
      4,
      -3,
      4
    ],
    "io_out": [
      -28,
      28,
      28,
      36
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(sort_asc(input),2),-1),4),14)"
  },
  {
    "input": "input : list = [-3, 5, -5, 3]\noutput : list = [15, -25]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(drop([-3, 5, -5, 3],2),14)),-2),-5)",
    "io_inp": [
      -3,
      5,
      -5,
      3
    ],
    "io_out": [
      15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(drop(input,2),14)),-2),-5)"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [1, -5, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sort_asc([-5, 2, -4]))),1),48)",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sort_asc(input))),1),48)"
  },
  {
    "input": "input : list = [-4, 3, -3, 3, -3, -3]\noutput : list = [-14, -14, -2, -2, -2, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(sub_n([-4, 3, -3, 3, -3, -3],-4),1)),-2))",
    "io_inp": [
      -4,
      3,
      -3,
      3,
      -3,
      -3
    ],
    "io_out": [
      -14,
      -14,
      -2,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(sub_n(input,-4),1)),-2))"
  },
  {
    "input": "input : list = [3, -1, 4, 1]\noutput : list = [8]",
    "output": "generated_output : list = drop(sort_asc(sub_n(add_n(mul_n([3, -1, 4, 1],-2),1),-5)),3)",
    "io_inp": [
      3,
      -1,
      4,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sub_n(add_n(mul_n(input,-2),1),-5)),3)"
  },
  {
    "input": "input : list = [-4, -5, 0, 0, 4, -1]\noutput : list = [2, 0, 0, -8]",
    "output": "generated_output : list = drop(reverse(mul_n(take(sort_des([-4, -5, 0, 0, 4, -1]),13),-2)),2)",
    "io_inp": [
      -4,
      -5,
      0,
      0,
      4,
      -1
    ],
    "io_out": [
      2,
      0,
      0,
      -8
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(take(sort_des(input),13),-2)),2)"
  },
  {
    "input": "input : list = [-1, 0, 5, 5]\noutput : list = [-1, 0, 5, 5]",
    "output": "generated_output : list = sort_asc([-1, 0, 5, 5])",
    "io_inp": [
      -1,
      0,
      5,
      5
    ],
    "io_out": [
      -1,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 4, 3, -2, 4, -4]\noutput : list = [-100, -100, -50, 75, 100, 100]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sort_des([-4, 4, 3, -2, 4, -4]),5),5),1))",
    "io_inp": [
      -4,
      4,
      3,
      -2,
      4,
      -4
    ],
    "io_out": [
      -100,
      -100,
      -50,
      75,
      100,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sort_des(input),5),5),1))"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(take([-1, 2, -4],1),2),-5)))",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(take(input,1),2),-5)))"
  },
  {
    "input": "input : list = [1, 5, -3]\noutput : list = [21, -3]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(drop([1, 5, -3],1),9),-4),-3))",
    "io_inp": [
      1,
      5,
      -3
    ],
    "io_out": [
      21,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(drop(input,1),9),-4),-3))"
  },
  {
    "input": "input : list = [-5, 5, 4, 4, -5]\noutput : list = [-12, -8, -8, 28, 28]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des([-5, 5, 4, 4, -5]),15),2),-4)",
    "io_inp": [
      -5,
      5,
      4,
      4,
      -5
    ],
    "io_out": [
      -12,
      -8,
      -8,
      28,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(input),15),2),-4)"
  },
  {
    "input": "input : list = [2, -1, 4, -2, 3, 5]\noutput : list = [8, -4, 16, -8, 12, 20]",
    "output": "generated_output : list = take(take(reverse(reverse(mul_n([2, -1, 4, -2, 3, 5],4))),19),30)",
    "io_inp": [
      2,
      -1,
      4,
      -2,
      3,
      5
    ],
    "io_out": [
      8,
      -4,
      16,
      -8,
      12,
      20
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(mul_n(input,4))),19),30)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [11, 11]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(reverse([-4, -4])),-2)),-3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(reverse(input)),-2)),-3)"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [-2, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 5, -2])",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, -1, -2, 3, 2]\noutput : list = [38, 14, 14, 6, -18, -26]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(mul_n([-5, -2, -1, -2, 3, 2],-4),9),1),2))",
    "io_inp": [
      -5,
      -2,
      -1,
      -2,
      3,
      2
    ],
    "io_out": [
      38,
      14,
      14,
      6,
      -18,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(mul_n(input,-4),9),1),2))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-10, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n([3, -1],-4)),2))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -10,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(input,-4)),2))"
  },
  {
    "input": "input : list = [5, 2, 3]\noutput : list = [-18, -27, -45]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(mul_n([5, 2, 3],3))),-3))",
    "io_inp": [
      5,
      2,
      3
    ],
    "io_out": [
      -18,
      -27,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(mul_n(input,3))),-3))"
  },
  {
    "input": "input : list = [-3, -1, 4, 0, 4, 4]\noutput : list = [30, 18, 12, -12, -12, -12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(sub_n([-3, -1, 4, 0, 4, 4],2))),-2),3)",
    "io_inp": [
      -3,
      -1,
      4,
      0,
      4,
      4
    ],
    "io_out": [
      30,
      18,
      12,
      -12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(sub_n(input,2))),-2),3)"
  },
  {
    "input": "input : list = [0, 5, -2, -3, 4]\noutput : list = [5, 4, 0, -2, -3]",
    "output": "generated_output : list = sort_des([0, 5, -2, -3, 4])",
    "io_inp": [
      0,
      5,
      -2,
      -3,
      4
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 1, -3]\noutput : list = [-5, -7, -6, -10]",
    "output": "generated_output : list = sub_n(add_n([2, 0, 1, -3],-3),4)",
    "io_inp": [
      2,
      0,
      1,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),4)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n([3, 1],-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 2, -2, 2, 1, 2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 2, -2, 2, 1, 2],1)",
    "io_inp": [
      -1,
      2,
      -2,
      2,
      1,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [6, 12]",
    "output": "generated_output : list = take(add_n(take(mul_n(sort_des([-1, -3]),-3),24),3),29)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sort_des(input),-3),24),3),29)"
  },
  {
    "input": "input : list = [5, -1, -5, -2]\noutput : list = [3, -3, -7, -4]",
    "output": "generated_output : list = add_n([5, -1, -5, -2],-2)",
    "io_inp": [
      5,
      -1,
      -5,
      -2
    ],
    "io_out": [
      3,
      -3,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [6, 0]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sub_n([3, 5],3)),3)))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sub_n(input,3)),3)))"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [-4, -4, -16]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(mul_n([1, 1, 4],-4)))),46)",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      -4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(mul_n(input,-4)))),46)"
  },
  {
    "input": "input : list = [1, 3, 3, 3, 0, 3]\noutput : list = [3, 5, 5, 5, 2, 5]",
    "output": "generated_output : list = sub_n([1, 3, 3, 3, 0, 3],-2)",
    "io_inp": [
      1,
      3,
      3,
      3,
      0,
      3
    ],
    "io_out": [
      3,
      5,
      5,
      5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, 3, 1]\noutput : list = [12, 12, 4]",
    "output": "generated_output : list = sort_des(reverse(reverse(mul_n(reverse([3, 3, 1]),4))))",
    "io_inp": [
      3,
      3,
      1
    ],
    "io_out": [
      12,
      12,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(mul_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(take(add_n(take(drop([-2, -2, 2],1),7),2),15))",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(drop(input,1),7),2),15))"
  },
  {
    "input": "input : list = [0, 3, -2, 4, 1]\noutput : list = [4, 3, 1, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des([0, 3, -2, 4, 1]))",
    "io_inp": [
      0,
      3,
      -2,
      4,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -4, 1]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([2, -4, 1])))",
    "io_inp": [
      2,
      -4,
      1
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, -2, 3, -3, 5, 0]\noutput : list = [0, 5, -3, 3, -2, -1]",
    "output": "generated_output : list = reverse([-1, -2, 3, -3, 5, 0])",
    "io_inp": [
      -1,
      -2,
      3,
      -3,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      -3,
      3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, -4, 1, 1, -2]\noutput : list = [-5, -3, 0, 0, 0, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(add_n([1, 1, -4, 1, 1, -2],-3),8)),-2),20)",
    "io_inp": [
      1,
      1,
      -4,
      1,
      1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      0,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(add_n(input,-3),8)),-2),20)"
  },
  {
    "input": "input : list = [-5, 0, -1, 2, 0]\noutput : list = [5, 9, 10, 10, 12]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(sub_n([-5, 0, -1, 2, 0],-5),2))),-3)",
    "io_inp": [
      -5,
      0,
      -1,
      2,
      0
    ],
    "io_out": [
      5,
      9,
      10,
      10,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(sub_n(input,-5),2))),-3)"
  },
  {
    "input": "input : list = [0, 4, -3, 1, 3, 4]\noutput : list = [-1, -1, 0, 2, 3, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(mul_n([0, 4, -3, 1, 3, 4],-1),3)),41))",
    "io_inp": [
      0,
      4,
      -3,
      1,
      3,
      4
    ],
    "io_out": [
      -1,
      -1,
      0,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(mul_n(input,-1),3)),41))"
  },
  {
    "input": "input : list = [0, -3, -1, -4, 1, 1]\noutput : list = [-4, -7]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(take([0, -3, -1, -4, 1, 1],2),4))),55)",
    "io_inp": [
      0,
      -3,
      -1,
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(take(input,2),4))),55)"
  },
  {
    "input": "input : list = [4, -1, 1, 2, -5, -2]\noutput : list = [16, 10, 7, 1, -2, -11]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(sort_des([4, -1, 1, 2, -5, -2]),3))),-4)",
    "io_inp": [
      4,
      -1,
      1,
      2,
      -5,
      -2
    ],
    "io_out": [
      16,
      10,
      7,
      1,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(sort_des(input),3))),-4)"
  },
  {
    "input": "input : list = [2, 1, -5, -4, -4, -1]\noutput : list = [60, 35, -115, -90, -90, -15]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(mul_n([2, 1, -5, -4, -4, -1],-5),-1),-5),-5),60)",
    "io_inp": [
      2,
      1,
      -5,
      -4,
      -4,
      -1
    ],
    "io_out": [
      60,
      35,
      -115,
      -90,
      -90,
      -15
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(mul_n(input,-5),-1),-5),-5),60)"
  },
  {
    "input": "input : list = [-4, -2, -1, 2, 0]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(mul_n([-4, -2, -1, 2, 0],2),1))),1)",
    "io_inp": [
      -4,
      -2,
      -1,
      2,
      0
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(mul_n(input,2),1))),1)"
  },
  {
    "input": "input : list = [-4, -2, 1, 2, -2, 2]\noutput : list = [-8, -8, -4, 8, 8, 16]",
    "output": "generated_output : list = sort_asc(mul_n([-4, -2, 1, 2, -2, 2],-4))",
    "io_inp": [
      -4,
      -2,
      1,
      2,
      -2,
      2
    ],
    "io_out": [
      -8,
      -8,
      -4,
      8,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-4, 5, 1, 0]\noutput : list = [-16, 29, 9, 4]",
    "output": "generated_output : list = take(sub_n(mul_n([-4, 5, 1, 0],5),-4),27)",
    "io_inp": [
      -4,
      5,
      1,
      0
    ],
    "io_out": [
      -16,
      29,
      9,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,5),-4),27)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(sub_n([-1, 0],5),13)),-1))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(sub_n(input,5),13)),-1))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [9, -15]",
    "output": "generated_output : list = sort_des(take(mul_n(take(sort_des([3, -5]),7),3),22))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(sort_des(input),7),3),22))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(take(sort_des([-5, 1]),5))),31)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(sort_des(input),5))),31)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [11, 16]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(sort_des([-4, -5]),-5),-5),4))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      11,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(sort_des(input),-5),-5),4))"
  },
  {
    "input": "input : list = [4, -3, 3, 5, 1]\noutput : list = [4, -3, 3]",
    "output": "generated_output : list = take(take([4, -3, 3, 5, 1],3),16)",
    "io_inp": [
      4,
      -3,
      3,
      5,
      1
    ],
    "io_out": [
      4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(take(input,3),16)"
  },
  {
    "input": "input : list = [2, 3, -4, 4, -3, 5]\noutput : list = [-4, -3, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([2, 3, -4, 4, -3, 5])",
    "io_inp": [
      2,
      3,
      -4,
      4,
      -3,
      5
    ],
    "io_out": [
      -4,
      -3,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, 2]\noutput : list = [6, 1, -9]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(reverse([-1, 0, 2]),7)),-5),1)",
    "io_inp": [
      -1,
      0,
      2
    ],
    "io_out": [
      6,
      1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(reverse(input),7)),-5),1)"
  },
  {
    "input": "input : list = [-1, 5, 5, 2, 2, -1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(drop([-1, 5, 5, 2, 2, -1],4),-1),2),5))",
    "io_inp": [
      -1,
      5,
      5,
      2,
      2,
      -1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(drop(input,4),-1),2),5))"
  },
  {
    "input": "input : list = [-4, -5, 0, 0, -3, 1]\noutput : list = [3]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(take([-4, -5, 0, 0, -3, 1],1),11),-5),2),1)",
    "io_inp": [
      -4,
      -5,
      0,
      0,
      -3,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(take(input,1),11),-5),2),1)"
  },
  {
    "input": "input : list = [-1, 4, -5, -4, -1]\noutput : list = [-5, 20, -25, -20, -5]",
    "output": "generated_output : list = mul_n([-1, 4, -5, -4, -1],5)",
    "io_inp": [
      -1,
      4,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -5,
      20,
      -25,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 2, 2, 2, -2]\noutput : list = [3, -1, -1, -1, -2]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(reverse([3, 2, 2, 2, -2]),19),1),1),-1)",
    "io_inp": [
      3,
      2,
      2,
      2,
      -2
    ],
    "io_out": [
      3,
      -1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(reverse(input),19),1),1),-1)"
  },
  {
    "input": "input : list = [-4, 2, 0, -3]\noutput : list = [17, -7]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(take([-4, 2, 0, -3],2),-4)),-1))",
    "io_inp": [
      -4,
      2,
      0,
      -3
    ],
    "io_out": [
      17,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(take(input,2),-4)),-1))"
  },
  {
    "input": "input : list = [1, 2, 2, 3, 4]\noutput : list = [12, 10, 8, 8, 6]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des([1, 2, 2, 3, 4]),-2),1),2))",
    "io_inp": [
      1,
      2,
      2,
      3,
      4
    ],
    "io_out": [
      12,
      10,
      8,
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des(input),-2),1),2))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-18, -3]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sort_des([3, -2])),-3),-3))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -18,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sort_des(input)),-3),-3))"
  },
  {
    "input": "input : list = [5, 2, -3, -2, -5, 0]\noutput : list = [6, 3, 1, -1, -2, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([5, 2, -3, -2, -5, 0]),-1))",
    "io_inp": [
      5,
      2,
      -3,
      -2,
      -5,
      0
    ],
    "io_out": [
      6,
      3,
      1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [-5, 5, 5, -5]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sort_asc(take([-5, 5, 5, -5],1)),-2)",
    "io_inp": [
      -5,
      5,
      5,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,1)),-2)"
  },
  {
    "input": "input : list = [-4, 5, -3, -2, 1]\noutput : list = [-3, -2, -1, 2, 6]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc([-4, 5, -3, -2, 1]),6),-2),-1)",
    "io_inp": [
      -4,
      5,
      -3,
      -2,
      1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(input),6),-2),-1)"
  },
  {
    "input": "input : list = [-3, 1, -3, -4]\noutput : list = [6, 2, 2, 1]",
    "output": "generated_output : list = take(sort_des(sub_n([-3, 1, -3, -4],-5)),29)",
    "io_inp": [
      -3,
      1,
      -3,
      -4
    ],
    "io_out": [
      6,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,-5)),29)"
  },
  {
    "input": "input : list = [-4, 4, -1, -1]\noutput : list = [0, -5, -5, -8]",
    "output": "generated_output : list = take(sort_des(take(sub_n(add_n([-4, 4, -1, -1],-2),2),15)),44)",
    "io_inp": [
      -4,
      4,
      -1,
      -1
    ],
    "io_out": [
      0,
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(add_n(input,-2),2),15)),44)"
  },
  {
    "input": "input : list = [5, 0, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(drop([5, 0, 1, 1],2))",
    "io_inp": [
      5,
      0,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [0, -5, 2, -3]\noutput : list = [-6, -4, -1, 1]",
    "output": "generated_output : list = take(take(sort_asc(add_n(sort_des([0, -5, 2, -3]),-1)),29),47)",
    "io_inp": [
      0,
      -5,
      2,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(sort_des(input),-1)),29),47)"
  },
  {
    "input": "input : list = [-4, -5, 1, -5]\noutput : list = [-7, -12, -13, -13]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sub_n([-4, -5, 1, -5],5)),-1)),2)",
    "io_inp": [
      -4,
      -5,
      1,
      -5
    ],
    "io_out": [
      -7,
      -12,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sub_n(input,5)),-1)),2)"
  },
  {
    "input": "input : list = [0, 4, -5, -4, 2]\noutput : list = [-5, -4, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc([0, 4, -5, -4, 2])),10),23))",
    "io_inp": [
      0,
      4,
      -5,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc(input)),10),23))"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [20, 0, -12]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sort_des([-3, 5, 0]),5)),4))",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      20,
      0,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sort_des(input),5)),4))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [14, -7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(reverse([5, -2]),3),1)))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      14,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(reverse(input),3),1)))"
  },
  {
    "input": "input : list = [1, 2, 5, -2]\noutput : list = [1]",
    "output": "generated_output : list = take(take([1, 2, 5, -2],1),15)",
    "io_inp": [
      1,
      2,
      5,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(input,1),15)"
  },
  {
    "input": "input : list = [2, 5, 3, 1]\noutput : list = [9, 10, 11, 13]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(add_n([2, 5, 3, 1],1),-2)),-5))",
    "io_inp": [
      2,
      5,
      3,
      1
    ],
    "io_out": [
      9,
      10,
      11,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(add_n(input,1),-2)),-5))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-15, -10]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(sub_n([4, 3],5),3)),1),-5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(sub_n(input,5),3)),1),-5)"
  },
  {
    "input": "input : list = [4, 2, -3, 2, 1, 3]\noutput : list = [4, 3, 2, 2, 1, -3]",
    "output": "generated_output : list = sort_des([4, 2, -3, 2, 1, 3])",
    "io_inp": [
      4,
      2,
      -3,
      2,
      1,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -5, 1, 5, -5]\noutput : list = [6, 6, 0, -2, -6, -14]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_asc([-2, -1, -5, 1, 5, -5]),-2),-2)))",
    "io_inp": [
      -2,
      -1,
      -5,
      1,
      5,
      -5
    ],
    "io_out": [
      6,
      6,
      0,
      -2,
      -6,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_asc(input),-2),-2)))"
  },
  {
    "input": "input : list = [3, 4, -3, 3, -5, 5]\noutput : list = [-20, -18, -16, -16, -4, 0]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(sort_asc([3, 4, -3, 3, -5, 5])),-5),-1),2)",
    "io_inp": [
      3,
      4,
      -3,
      3,
      -5,
      5
    ],
    "io_out": [
      -20,
      -18,
      -16,
      -16,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(sort_asc(input)),-5),-1),2)"
  },
  {
    "input": "input : list = [0, 4, -3, 0, -1]\noutput : list = [-6, -13, -10, -11]",
    "output": "generated_output : list = take(take(sub_n(add_n(drop([0, 4, -3, 0, -1],1),-5),5),23),48)",
    "io_inp": [
      0,
      4,
      -3,
      0,
      -1
    ],
    "io_out": [
      -6,
      -13,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(drop(input,1),-5),5),23),48)"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [9, 5, -3]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n([-4, 0, 2],3)),2),-1))",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      9,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n(input,3)),2),-1))"
  },
  {
    "input": "input : list = [5, -3, -4, 5]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sort_asc([5, -3, -4, 5]),20),2),-3))",
    "io_inp": [
      5,
      -3,
      -4,
      5
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sort_asc(input),20),2),-3))"
  },
  {
    "input": "input : list = [2, -5, 0, 0, 0, -1]\noutput : list = [2, -5]",
    "output": "generated_output : list = take(take([2, -5, 0, 0, 0, -1],2),8)",
    "io_inp": [
      2,
      -5,
      0,
      0,
      0,
      -1
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,2),8)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-11, -16, -18]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(add_n([-5, -3, 2],-5),3),3)),-5)",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -11,
      -16,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(add_n(input,-5),3),3)),-5)"
  },
  {
    "input": "input : list = [0, 4, -3, -2, 4]\noutput : list = [-17, -14, -8, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(add_n([0, 4, -3, -2, 4],-3)),3)),-1)",
    "io_inp": [
      0,
      4,
      -3,
      -2,
      4
    ],
    "io_out": [
      -17,
      -14,
      -8,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(add_n(input,-3)),3)),-1)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, -16]",
    "output": "generated_output : list = reverse(take(mul_n([4, 0],-4),6))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,-4),6))"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [-1, -4, 5]",
    "output": "generated_output : list = reverse(reverse([-1, -4, 5]))",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      -1,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, 5, 2, 2, -4]\noutput : list = [-4, -16, -7, -7, 11]",
    "output": "generated_output : list = sub_n(mul_n([1, 5, 2, 2, -4],-3),1)",
    "io_inp": [
      1,
      5,
      2,
      2,
      -4
    ],
    "io_out": [
      -4,
      -16,
      -7,
      -7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),1)"
  },
  {
    "input": "input : list = [1, -1, -5, -4, 1, 5]\noutput : list = [-5, -4, -1, 1, 5]",
    "output": "generated_output : list = sort_asc(drop([1, -1, -5, -4, 1, 5],1))",
    "io_inp": [
      1,
      -1,
      -5,
      -4,
      1,
      5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-3, -2, 3, 0, 2, 0]\noutput : list = [6, 5, 3, 3, 1, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(sub_n([-3, -2, 3, 0, 2, 0],-5)),-2),3),1)",
    "io_inp": [
      -3,
      -2,
      3,
      0,
      2,
      0
    ],
    "io_out": [
      6,
      5,
      3,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(sub_n(input,-5)),-2),3),1)"
  },
  {
    "input": "input : list = [4, -5, -2, -5]\noutput : list = [-6, 6, 12, 12]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(mul_n([4, -5, -2, -5],-2)),2)))",
    "io_inp": [
      4,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -6,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(mul_n(input,-2)),2)))"
  },
  {
    "input": "input : list = [5, -1, -5, 2, 3, -5]\noutput : list = [-6, -6, -2, 1, 2, 4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(add_n([5, -1, -5, 2, 3, -5],-5)))),-4)",
    "io_inp": [
      5,
      -1,
      -5,
      2,
      3,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -2,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(add_n(input,-5)))),-4)"
  },
  {
    "input": "input : list = [3, -5, 4, 2]\noutput : list = [8, 0, 9, 7]",
    "output": "generated_output : list = add_n([3, -5, 4, 2],5)",
    "io_inp": [
      3,
      -5,
      4,
      2
    ],
    "io_out": [
      8,
      0,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, 5, -5, 3, -1, 5]\noutput : list = [19, 29, -21, 19, -1, 29]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(reverse([3, 5, -5, 3, -1, 5])),17),5),-4)",
    "io_inp": [
      3,
      5,
      -5,
      3,
      -1,
      5
    ],
    "io_out": [
      19,
      29,
      -21,
      19,
      -1,
      29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(reverse(input)),17),5),-4)"
  },
  {
    "input": "input : list = [5, 2, -1, -1, -5]\noutput : list = [12, 9, 6, 6, 2]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(add_n([5, 2, -1, -1, -5],2),-5))),26)",
    "io_inp": [
      5,
      2,
      -1,
      -1,
      -5
    ],
    "io_out": [
      12,
      9,
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(add_n(input,2),-5))),26)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-5, -4, 3]",
    "output": "generated_output : list = sort_asc([-5, -4, 3])",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse(sub_n(sub_n([-1, -3],5),-3))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,5),-3))"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([2, -3, -3],1)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -3, 2, -5, -5, -1]\noutput : list = [6, 3, -3, -9, -15, -15]",
    "output": "generated_output : list = mul_n(sort_des([1, -3, 2, -5, -5, -1]),3)",
    "io_inp": [
      1,
      -3,
      2,
      -5,
      -5,
      -1
    ],
    "io_out": [
      6,
      3,
      -3,
      -9,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [0, -5, 0, -1]\noutput : list = [2, 3, -2]",
    "output": "generated_output : list = take(add_n(reverse(take(drop([0, -5, 0, -1],1),4)),3),30)",
    "io_inp": [
      0,
      -5,
      0,
      -1
    ],
    "io_out": [
      2,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(drop(input,1),4)),3),30)"
  },
  {
    "input": "input : list = [-5, -4, -4, -3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(drop([-5, -4, -4, -3, 5],3),22)",
    "io_inp": [
      -5,
      -4,
      -4,
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,3),22)"
  },
  {
    "input": "input : list = [5, -5, -2, -2]\noutput : list = [5, -2, -2, -5]",
    "output": "generated_output : list = sort_des(mul_n([5, -5, -2, -2],1))",
    "io_inp": [
      5,
      -5,
      -2,
      -2
    ],
    "io_out": [
      5,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, -3, 4, 0, 3]\noutput : list = [10, 15, -20, 0, -15]",
    "output": "generated_output : list = mul_n([-2, -3, 4, 0, 3],-5)",
    "io_inp": [
      -2,
      -3,
      4,
      0,
      3
    ],
    "io_out": [
      10,
      15,
      -20,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 2, 0, -5, 5, -5]\noutput : list = [0, -3, -5, -10, -10, -10]",
    "output": "generated_output : list = add_n(sort_des([-5, 2, 0, -5, 5, -5]),-5)",
    "io_inp": [
      -5,
      2,
      0,
      -5,
      5,
      -5
    ],
    "io_out": [
      0,
      -3,
      -5,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-2, 0, 3, -5, 2]\noutput : list = [-5, -2, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([-2, 0, 3, -5, 2])))",
    "io_inp": [
      -2,
      0,
      3,
      -5,
      2
    ],
    "io_out": [
      -5,
      -2,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n(sort_des([1, -2]),-3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-5, 4, 1, -3]\noutput : list = [3, 0, -4, -6]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(sort_des([-5, 4, 1, -3]),-1)),32))",
    "io_inp": [
      -5,
      4,
      1,
      -3
    ],
    "io_out": [
      3,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(sort_des(input),-1)),32))"
  },
  {
    "input": "input : list = [0, 5, -1, -4]\noutput : list = [-75, 0, 15, 60]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([0, 5, -1, -4]),3),-5)",
    "io_inp": [
      0,
      5,
      -1,
      -4
    ],
    "io_out": [
      -75,
      0,
      15,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),3),-5)"
  },
  {
    "input": "input : list = [-4, -1, 3]\noutput : list = [27]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n([-4, -1, 3],-5),-3),1)))",
    "io_inp": [
      -4,
      -1,
      3
    ],
    "io_out": [
      27
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n(input,-5),-3),1)))"
  },
  {
    "input": "input : list = [3, 4, 2, -5]\noutput : list = [4, 3, 2, -5]",
    "output": "generated_output : list = sort_des([3, 4, 2, -5])",
    "io_inp": [
      3,
      4,
      2,
      -5
    ],
    "io_out": [
      4,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, -5, -2, 0]\noutput : list = [-14, -8, -6, -4, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(mul_n([1, -1, -5, -2, 0],2),1))),4)",
    "io_inp": [
      1,
      -1,
      -5,
      -2,
      0
    ],
    "io_out": [
      -14,
      -8,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(mul_n(input,2),1))),4)"
  },
  {
    "input": "input : list = [-5, -2, -3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(sort_asc(drop([-5, -2, -3],1)),1)",
    "io_inp": [
      -5,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,1)),1)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n([2, 0],-5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [8, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(mul_n([2, 5],4)),1)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(mul_n(input,4)),1)))"
  },
  {
    "input": "input : list = [-4, 4, -3, -2, 5, 0]\noutput : list = [-7, -6, -5, -3, 1, 2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(sort_des([-4, 4, -3, -2, 5, 0]),25),2),-1))",
    "io_inp": [
      -4,
      4,
      -3,
      -2,
      5,
      0
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(sort_des(input),25),2),-1))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [0, 7]",
    "output": "generated_output : list = sub_n(sort_asc([2, -5]),-5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [4, 2, 2, 3]\noutput : list = [1, 0, -1, -1]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([4, 2, 2, 3]),3),1)",
    "io_inp": [
      4,
      2,
      2,
      3
    ],
    "io_out": [
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),3),1)"
  },
  {
    "input": "input : list = [3, 3, 5, -2]\noutput : list = [14, 14, 22, -6]",
    "output": "generated_output : list = take(sub_n(mul_n([3, 3, 5, -2],4),-2),24)",
    "io_inp": [
      3,
      3,
      5,
      -2
    ],
    "io_out": [
      14,
      14,
      22,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,4),-2),24)"
  },
  {
    "input": "input : list = [1, 0, -2, 1]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(drop([1, 0, -2, 1],1),16))),-1)",
    "io_inp": [
      1,
      0,
      -2,
      1
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(drop(input,1),16))),-1)"
  },
  {
    "input": "input : list = [-5, -2, 0, 4, -4, -1]\noutput : list = [4, 0, -1, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -2, 0, 4, -4, -1])",
    "io_inp": [
      -5,
      -2,
      0,
      4,
      -4,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -3, 0, -1]\noutput : list = [-1, -2, 1, 0]",
    "output": "generated_output : list = add_n([-2, -3, 0, -1],1)",
    "io_inp": [
      -2,
      -3,
      0,
      -1
    ],
    "io_out": [
      -1,
      -2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -5, 3, -2, 0]\noutput : list = [15, 6, 6, 0, -9]",
    "output": "generated_output : list = sort_des(mul_n([-2, -5, 3, -2, 0],-3))",
    "io_inp": [
      -2,
      -5,
      3,
      -2,
      0
    ],
    "io_out": [
      15,
      6,
      6,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-1, 0, 3, 2, 3, 2]\noutput : list = [5, 5, 4, 4, 2, 1]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n([-1, 0, 3, 2, 3, 2],-4),-2),35))",
    "io_inp": [
      -1,
      0,
      3,
      2,
      3,
      2
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(input,-4),-2),35))"
  },
  {
    "input": "input : list = [-3, -4, -1, 5]\noutput : list = [1, -5, -7, -8]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des([-3, -4, -1, 5])),2),-2))",
    "io_inp": [
      -3,
      -4,
      -1,
      5
    ],
    "io_out": [
      1,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des(input)),2),-2))"
  },
  {
    "input": "input : list = [4, 2, 1, 1, 1, -3]\noutput : list = [-6, -2, -2, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(drop([4, 2, 1, 1, 1, -3],1),-3))",
    "io_inp": [
      4,
      2,
      1,
      1,
      1,
      -3
    ],
    "io_out": [
      -6,
      -2,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,1),-3))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sub_n([-3, 3],1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [1, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des([0, 5, 2]),4)",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-12, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(mul_n([4, 1],-1)))),3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(mul_n(input,-1)))),3)"
  },
  {
    "input": "input : list = [-3, 0, -2, 4, 5, -4]\noutput : list = [-8, -5, -7, -1, 0, -9]",
    "output": "generated_output : list = add_n([-3, 0, -2, 4, 5, -4],-5)",
    "io_inp": [
      -3,
      0,
      -2,
      4,
      5,
      -4
    ],
    "io_out": [
      -8,
      -5,
      -7,
      -1,
      0,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = mul_n([1, -1],1)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [2, -4, -1, 0]\noutput : list = [-31, -7, 1, 17]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(reverse([2, -4, -1, 0]),-4),-2)),-1)",
    "io_inp": [
      2,
      -4,
      -1,
      0
    ],
    "io_out": [
      -31,
      -7,
      1,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(reverse(input),-4),-2)),-1)"
  },
  {
    "input": "input : list = [1, 3, 1, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(take([1, 3, 1, 0],1),-4),2),4))",
    "io_inp": [
      1,
      3,
      1,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(take(input,1),-4),2),4))"
  },
  {
    "input": "input : list = [-3, 5, 4, -2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take([-3, 5, 4, -2, -3],1))",
    "io_inp": [
      -3,
      5,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(add_n([3, 2],1),-1),3),2))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(add_n(input,1),-1),3),2))"
  },
  {
    "input": "input : list = [5, -1, 3]\noutput : list = [8, 2, 6]",
    "output": "generated_output : list = add_n([5, -1, 3],3)",
    "io_inp": [
      5,
      -1,
      3
    ],
    "io_out": [
      8,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, 4, 0, 1, 1, -1]\noutput : list = [9, 9, 6, 6, 5, 4]",
    "output": "generated_output : list = sort_des(reverse(add_n([4, 4, 0, 1, 1, -1],5)))",
    "io_inp": [
      4,
      4,
      0,
      1,
      1,
      -1
    ],
    "io_out": [
      9,
      9,
      6,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,5)))"
  },
  {
    "input": "input : list = [4, 1, 3, -4, -5]\noutput : list = [-9, -8, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n([4, 1, 3, -4, -5],-4))",
    "io_inp": [
      4,
      1,
      3,
      -4,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [2, 2, -3, 2, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(take([2, 2, -3, 2, 5],2),-4)",
    "io_inp": [
      2,
      2,
      -3,
      2,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [-3, 5, 2]\noutput : list = [4, 1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n([-3, 5, 2],1)))),-2)",
    "io_inp": [
      -3,
      5,
      2
    ],
    "io_out": [
      4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n(input,1)))),-2)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [39, 15, 9]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(add_n([-1, 0, -5],-2),-2),-1),3))",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      39,
      15,
      9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(add_n(input,-2),-2),-1),3))"
  },
  {
    "input": "input : list = [-3, 0, 1, 2, -3]\noutput : list = [7, 6, 5, 2, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n([-3, 0, 1, 2, -3],-2),-2)),-5)",
    "io_inp": [
      -3,
      0,
      1,
      2,
      -3
    ],
    "io_out": [
      7,
      6,
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(input,-2),-2)),-5)"
  },
  {
    "input": "input : list = [4, 2, -1, 0, 4]\noutput : list = [32, 32, 24, 16, 12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_asc([4, 2, -1, 0, 4]),-4),4)))",
    "io_inp": [
      4,
      2,
      -1,
      0,
      4
    ],
    "io_out": [
      32,
      32,
      24,
      16,
      12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_asc(input),-4),4)))"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [-6, 1, -7]",
    "output": "generated_output : list = sub_n([-4, 3, -5],2)",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      -6,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, -4, -3, -2, -2, 0]\noutput : list = [-4, -3, -2, -2, 0, 5]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sort_des([5, -4, -3, -2, -2, 0])))),22)",
    "io_inp": [
      5,
      -4,
      -3,
      -2,
      -2,
      0
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sort_des(input)))),22)"
  },
  {
    "input": "input : list = [0, 0, 1, -3, -4]\noutput : list = [-7, -8, -8, -11, -12]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sub_n([0, 0, 1, -3, -4],4)))),-4)",
    "io_inp": [
      0,
      0,
      1,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -8,
      -8,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sub_n(input,4)))),-4)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-7, -7, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_asc([-4, -4, -2]))),3),5)",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_asc(input))),3),5)"
  },
  {
    "input": "input : list = [4, 0, -2, 2, -1, -2]\noutput : list = [-3, -3, -2, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(add_n([4, 0, -2, 2, -1, -2],-1))),39))",
    "io_inp": [
      4,
      0,
      -2,
      2,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(add_n(input,-1))),39))"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [0, -4, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n([-1, 3, 4],-1),1),3))",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(input,-1),1),3))"
  },
  {
    "input": "input : list = [-3, 3, 4]\noutput : list = [-7, -1, 0]",
    "output": "generated_output : list = sub_n([-3, 3, 4],4)",
    "io_inp": [
      -3,
      3,
      4
    ],
    "io_out": [
      -7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, 2, 4, 1, -5]\noutput : list = [-2, 2, 4]",
    "output": "generated_output : list = take([-2, 2, 4, 1, -5],3)",
    "io_inp": [
      -2,
      2,
      4,
      1,
      -5
    ],
    "io_out": [
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, 2, 4, 2]\noutput : list = [0, 2, 0, 2]",
    "output": "generated_output : list = sub_n(reverse([4, 2, 4, 2]),2)",
    "io_inp": [
      4,
      2,
      4,
      2
    ],
    "io_out": [
      0,
      2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [2, 1, 5, -5]\noutput : list = [-6, 0, 4]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(drop([2, 1, 5, -5],1))),-1))",
    "io_inp": [
      2,
      1,
      5,
      -5
    ],
    "io_out": [
      -6,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(drop(input,1))),-1))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(sub_n([4, 4],5))),2))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(sub_n(input,5))),2))"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [-3, -7, -12]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n([5, -4, 1],-1),-2)),5)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      -3,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(input,-1),-2)),5)"
  },
  {
    "input": "input : list = [0, 1, 3]\noutput : list = [-1, 0, 2]",
    "output": "generated_output : list = sub_n([0, 1, 3],1)",
    "io_inp": [
      0,
      1,
      3
    ],
    "io_out": [
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [-13, -7, -3]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_des([-1, 4, 1]),5),-1),2),-5)",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      -13,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_des(input),5),-1),2),-5)"
  },
  {
    "input": "input : list = [5, 5, -2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = drop([5, 5, -2, 2],2)",
    "io_inp": [
      5,
      5,
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 1, -5, -4]\noutput : list = [0, -1, -2, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sort_des([-3, 1, -5, -4])),-5)),-1)",
    "io_inp": [
      -3,
      1,
      -5,
      -4
    ],
    "io_out": [
      0,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sort_des(input)),-5)),-1)"
  },
  {
    "input": "input : list = [-4, 3, -4, 3, -1]\noutput : list = [-5, -5, -9, -12, -12]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(add_n([-4, 3, -4, 3, -1],-5),1),4)))",
    "io_inp": [
      -4,
      3,
      -4,
      3,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(add_n(input,-5),1),4)))"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [1, 1, -3]",
    "output": "generated_output : list = reverse(add_n(take(take(sort_asc([-4, 0, 0]),16),12),1))",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(sort_asc(input),16),12),1))"
  },
  {
    "input": "input : list = [-5, 4, 0, 3, 2]\noutput : list = [0, 9, 5, 8, 7]",
    "output": "generated_output : list = add_n([-5, 4, 0, 3, 2],5)",
    "io_inp": [
      -5,
      4,
      0,
      3,
      2
    ],
    "io_out": [
      0,
      9,
      5,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-1, 4, 4, 5]\noutput : list = [25, 0, 0, -5]",
    "output": "generated_output : list = mul_n(sub_n([-1, 4, 4, 5],4),-5)",
    "io_inp": [
      -1,
      4,
      4,
      5
    ],
    "io_out": [
      25,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,4),-5)"
  },
  {
    "input": "input : list = [1, 2, 4, -1]\noutput : list = [2, 0, -1, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des([1, 2, 4, -1]),3),1)",
    "io_inp": [
      1,
      2,
      4,
      -1
    ],
    "io_out": [
      2,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),3),1)"
  },
  {
    "input": "input : list = [2, -3, 0, 5]\noutput : list = [15, 6, 0, -9]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([2, -3, 0, 5],-1)),-3)",
    "io_inp": [
      2,
      -3,
      0,
      5
    ],
    "io_out": [
      15,
      6,
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-1)),-3)"
  },
  {
    "input": "input : list = [-4, -2, 5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = take(drop([-4, -2, 5, -4],2),14)",
    "io_inp": [
      -4,
      -2,
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(input,2),14)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-2, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(reverse([3, -4]),-5))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [9, 5, 4]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sub_n([-2, -1, 3],-3),10),1),4))",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      9,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sub_n(input,-3),10),1),4))"
  },
  {
    "input": "input : list = [2, 5, 4, 3, -2, 1]\noutput : list = [-4, -1, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(sub_n([2, 5, 4, 3, -2, 1],3),13),1)))",
    "io_inp": [
      2,
      5,
      4,
      3,
      -2,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(sub_n(input,3),13),1)))"
  },
  {
    "input": "input : list = [1, -1, 5, 2, -4]\noutput : list = [2, -1, -2, -4, -7]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(sub_n([1, -1, 5, 2, -4],3))),7))",
    "io_inp": [
      1,
      -1,
      5,
      2,
      -4
    ],
    "io_out": [
      2,
      -1,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(sub_n(input,3))),7))"
  },
  {
    "input": "input : list = [-2, 0, -4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = drop([-2, 0, -4, 4],2)",
    "io_inp": [
      -2,
      0,
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 0, 1, 2]\noutput : list = [3, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop([0, 0, 1, 2],2),2)),3),-1)",
    "io_inp": [
      0,
      0,
      1,
      2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop(input,2),2)),3),-1)"
  },
  {
    "input": "input : list = [5, 5, 0, -4]\noutput : list = [-15, -3, 12, 12]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n([5, 5, 0, -4],3)),-5),-2)",
    "io_inp": [
      5,
      5,
      0,
      -4
    ],
    "io_out": [
      -15,
      -3,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(input,3)),-5),-2)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(sort_asc([-5, 0])),-1)))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = take(take(sort_des(take(sort_des([-4, 5]),5)),4),17)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(sort_des(input),5)),4),17)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [24, 24, 4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(mul_n(sub_n([-3, -3, 1],2),-5),5),-4))",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      24,
      24,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(mul_n(sub_n(input,2),-5),5),-4))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [16, 0]",
    "output": "generated_output : list = mul_n(sort_asc([-4, 0]),-4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [7, 6]",
    "output": "generated_output : list = take(add_n([2, 1],5),12)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),12)"
  },
  {
    "input": "input : list = [-1, -1, 1, -3, -4, 5]\noutput : list = [5, 1, -1, -1, -3, -4]",
    "output": "generated_output : list = sort_des([-1, -1, 1, -3, -4, 5])",
    "io_inp": [
      -1,
      -1,
      1,
      -3,
      -4,
      5
    ],
    "io_out": [
      5,
      1,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [0, -20, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n([0, 5, 5],1)),-4)))",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n(input,1)),-4)))"
  },
  {
    "input": "input : list = [2, 4, 2, -1, -4, 2]\noutput : list = [5, 3, 3, 0]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(take([2, 4, 2, -1, -4, 2],4)),-1)),24)",
    "io_inp": [
      2,
      4,
      2,
      -1,
      -4,
      2
    ],
    "io_out": [
      5,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(take(input,4)),-1)),24)"
  },
  {
    "input": "input : list = [5, 3, -2, -4, 1]\noutput : list = [9, 7, 5, 2, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(sub_n([5, 3, -2, -4, 1],-3),1))))",
    "io_inp": [
      5,
      3,
      -2,
      -4,
      1
    ],
    "io_out": [
      9,
      7,
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(sub_n(input,-3),1))))"
  },
  {
    "input": "input : list = [3, 2, 1]\noutput : list = [3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(take([3, 2, 1],1)))))",
    "io_inp": [
      3,
      2,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n(sort_des([2, 4]),-3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-1, -5, 3, 0]\noutput : list = [225, 45, 0, -135]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(mul_n([-1, -5, 3, 0],3)),3),-5))",
    "io_inp": [
      -1,
      -5,
      3,
      0
    ],
    "io_out": [
      225,
      45,
      0,
      -135
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(mul_n(input,3)),3),-5))"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [8, 5, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n([-5, 3, 0],5)))",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      8,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,5)))"
  },
  {
    "input": "input : list = [-5, 4, -1, -2, -4]\noutput : list = [-11, -9, -8, -3, -12]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n([-5, 4, -1, -2, -4],3)),-2),2)",
    "io_inp": [
      -5,
      4,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -11,
      -9,
      -8,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(input,3)),-2),2)"
  },
  {
    "input": "input : list = [-3, -2, 3, -5, 5, 0]\noutput : list = [30, 18, 12, 0, -18, -30]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(reverse([-3, -2, 3, -5, 5, 0]),3),-2)),43)",
    "io_inp": [
      -3,
      -2,
      3,
      -5,
      5,
      0
    ],
    "io_out": [
      30,
      18,
      12,
      0,
      -18,
      -30
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(reverse(input),3),-2)),43)"
  },
  {
    "input": "input : list = [-4, -4, 0, -4, -5, 3]\noutput : list = [-23, -19, -19, -19, -3, 9]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(mul_n([-4, -4, 0, -4, -5, 3],4),10)),3))",
    "io_inp": [
      -4,
      -4,
      0,
      -4,
      -5,
      3
    ],
    "io_out": [
      -23,
      -19,
      -19,
      -19,
      -3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(mul_n(input,4),10)),3))"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des([3, -4, -4]),4)))",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(input),4)))"
  },
  {
    "input": "input : list = [0, -3, 1, 3, -2]\noutput : list = [-6, -1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(drop([0, -3, 1, 3, -2],3),4))),49)",
    "io_inp": [
      0,
      -3,
      1,
      3,
      -2
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(drop(input,3),4))),49)"
  },
  {
    "input": "input : list = [3, 1, -1, 0, 4]\noutput : list = [-10, -15, -25, -30, -35]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(sub_n([3, 1, -1, 0, 4],3)),-2),-5),5)",
    "io_inp": [
      3,
      1,
      -1,
      0,
      4
    ],
    "io_out": [
      -10,
      -15,
      -25,
      -30,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(sub_n(input,3)),-2),-5),5)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-8, 8, 40]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(mul_n([-5, -1, 1],-2)),18),4))",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -8,
      8,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(mul_n(input,-2)),18),4))"
  },
  {
    "input": "input : list = [5, -1, -1, 0, 4]\noutput : list = [7, 6, 2, 1, 1]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(sort_des([5, -1, -1, 0, 4])),-2),5))",
    "io_inp": [
      5,
      -1,
      -1,
      0,
      4
    ],
    "io_out": [
      7,
      6,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(sort_des(input)),-2),5))"
  },
  {
    "input": "input : list = [-5, 5, 4, 3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = drop([-5, 5, 4, 3, -3],3)",
    "io_inp": [
      -5,
      5,
      4,
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [56, 40]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(add_n([-4, 0],-4),-3),-3)),-4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      56,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(add_n(input,-4),-3),-3)),-4)"
  },
  {
    "input": "input : list = [3, 3, 4, -4, -1, -1]\noutput : list = [20, -5, -5, -20]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(drop([3, 3, 4, -4, -1, -1],2)),5)),16)",
    "io_inp": [
      3,
      3,
      4,
      -4,
      -1,
      -1
    ],
    "io_out": [
      20,
      -5,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(drop(input,2)),5)),16)"
  },
  {
    "input": "input : list = [1, -2, -3, -1]\noutput : list = [0, 9]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(take([1, -2, -3, -1],2)),9),2),3)",
    "io_inp": [
      1,
      -2,
      -3,
      -1
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(take(input,2)),9),2),3)"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sort_asc([2, 5, 5])),2),-1),-4)",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sort_asc(input)),2),-1),-4)"
  },
  {
    "input": "input : list = [3, 2, 3]\noutput : list = [8, 8, 7]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(sub_n([3, 2, 3],2)),13),-4),-3)",
    "io_inp": [
      3,
      2,
      3
    ],
    "io_out": [
      8,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(sub_n(input,2)),13),-4),-3)"
  },
  {
    "input": "input : list = [5, -4, 0]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, 0],1)",
    "io_inp": [
      5,
      -4,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 5, 5, -2, 3]\noutput : list = [-3, -2, 2, 4, 4]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(sort_des([-1, 5, 5, -2, 3]),5),28)),4)",
    "io_inp": [
      -1,
      5,
      5,
      -2,
      3
    ],
    "io_out": [
      -3,
      -2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(sort_des(input),5),28)),4)"
  },
  {
    "input": "input : list = [-2, -5, 2, -2]\noutput : list = [-240, -600, 240, -240]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(mul_n([-2, -5, 2, -2],5),11),4),2),3)",
    "io_inp": [
      -2,
      -5,
      2,
      -2
    ],
    "io_out": [
      -240,
      -600,
      240,
      -240
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(mul_n(input,5),11),4),2),3)"
  },
  {
    "input": "input : list = [-1, 4, -4, 2, 1, 0]\noutput : list = [-4, -1, 0, 1, 2, 4]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(sort_asc([-1, 4, -4, 2, 1, 0])),18)))",
    "io_inp": [
      -1,
      4,
      -4,
      2,
      1,
      0
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(sort_asc(input)),18)))"
  },
  {
    "input": "input : list = [2, -5, 3, 4, -5, 3]\noutput : list = [-5, 3, 4, -5, 3]",
    "output": "generated_output : list = drop([2, -5, 3, 4, -5, 3],1)",
    "io_inp": [
      2,
      -5,
      3,
      4,
      -5,
      3
    ],
    "io_out": [
      -5,
      3,
      4,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 4, -2, -3]\noutput : list = [0, -5, -25, -35]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(add_n([2, 4, -2, -3],5),-2)),-5),30)",
    "io_inp": [
      2,
      4,
      -2,
      -3
    ],
    "io_out": [
      0,
      -5,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(add_n(input,5),-2)),-5),30)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = sort_des([1, 4, 1])",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [0, 7]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n([5, -2],2)),2))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(input,2)),2))"
  },
  {
    "input": "input : list = [-3, 5, 0, -1]\noutput : list = [-8, 0, -5, -6]",
    "output": "generated_output : list = sub_n(reverse(reverse([-3, 5, 0, -1])),5)",
    "io_inp": [
      -3,
      5,
      0,
      -1
    ],
    "io_out": [
      -8,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),5)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(take([-1, 5, -3],1)),1),4),4)",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(take(input,1)),1),4),4)"
  },
  {
    "input": "input : list = [-2, 2, 4, -1]\noutput : list = [13, 7, -2, -5]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(mul_n([-2, 2, 4, -1],3),3)),4))",
    "io_inp": [
      -2,
      2,
      4,
      -1
    ],
    "io_out": [
      13,
      7,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(mul_n(input,3),3)),4))"
  },
  {
    "input": "input : list = [5, -2, -1, 3]\noutput : list = [-2, -1, 3, 5]",
    "output": "generated_output : list = sort_asc([5, -2, -1, 3])",
    "io_inp": [
      5,
      -2,
      -1,
      3
    ],
    "io_out": [
      -2,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, -2, -3, 1, -1]\noutput : list = [2, 1, 1, 0, 4, 2]",
    "output": "generated_output : list = sub_n([-1, -2, -2, -3, 1, -1],-3)",
    "io_inp": [
      -1,
      -2,
      -2,
      -3,
      1,
      -1
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n([1, -5],-1),-2))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,-1),-2))"
  },
  {
    "input": "input : list = [3, -5, 4, 0, 2]\noutput : list = [-3, 2, 4, 5, 6]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sort_des([3, -5, 4, 0, 2]),-2)),-2),-2)",
    "io_inp": [
      3,
      -5,
      4,
      0,
      2
    ],
    "io_out": [
      -3,
      2,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sort_des(input),-2)),-2),-2)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [20, -5]",
    "output": "generated_output : list = mul_n(mul_n([4, -1],-5),-1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-1)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(add_n([-2, -3],-4),-4)),1),8)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(add_n(input,-4),-4)),1),8)"
  },
  {
    "input": "input : list = [2, -5, 0, 5, 3, -2]\noutput : list = [6, 4, 3, 1, -1, -4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(reverse([2, -5, 0, 5, 3, -2])))),1)",
    "io_inp": [
      2,
      -5,
      0,
      5,
      3,
      -2
    ],
    "io_out": [
      6,
      4,
      3,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(reverse(input)))),1)"
  },
  {
    "input": "input : list = [1, 5, -4, 2]\noutput : list = [-11, -2, 1, 16]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc([1, 5, -4, 2]),-3)),4)",
    "io_inp": [
      1,
      5,
      -4,
      2
    ],
    "io_out": [
      -11,
      -2,
      1,
      16
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(input),-3)),4)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -1]))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2, -5]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_des(take(take(sub_n([-4, 2, -5],-2),14),1)))",
    "io_inp": [
      -4,
      2,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(sub_n(input,-2),14),1)))"
  },
  {
    "input": "input : list = [-1, -2, 4, 4, -4]\noutput : list = [-3, -6, 12, 12, -12]",
    "output": "generated_output : list = mul_n([-1, -2, 4, 4, -4],3)",
    "io_inp": [
      -1,
      -2,
      4,
      4,
      -4
    ],
    "io_out": [
      -3,
      -6,
      12,
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, -1, -1, -2, -4, -3]\noutput : list = [4, 3, 2, 1, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(mul_n([0, -1, -1, -2, -4, -3],-1)))))",
    "io_inp": [
      0,
      -1,
      -1,
      -2,
      -4,
      -3
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [-3, -1, -3, 3, 1]\noutput : list = [1, 3, -3, -1, -3]",
    "output": "generated_output : list = reverse([-3, -1, -3, 3, 1])",
    "io_inp": [
      -3,
      -1,
      -3,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, 0, 3, 1]\noutput : list = [1, 0, 0, -3, -1]",
    "output": "generated_output : list = mul_n([-1, 0, 0, 3, 1],-1)",
    "io_inp": [
      -1,
      0,
      0,
      3,
      1
    ],
    "io_out": [
      1,
      0,
      0,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, 4, 0, 0, 5, -3]\noutput : list = [0, 0, 5, -3]",
    "output": "generated_output : list = drop([5, 4, 0, 0, 5, -3],2)",
    "io_inp": [
      5,
      4,
      0,
      0,
      5,
      -3
    ],
    "io_out": [
      0,
      0,
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(sub_n([3, 4],5),3))))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(sub_n(input,5),3))))"
  },
  {
    "input": "input : list = [3, -5, -2, 0]\noutput : list = [8, 5, 3, 0]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(sort_asc([3, -5, -2, 0])),4)),-1)",
    "io_inp": [
      3,
      -5,
      -2,
      0
    ],
    "io_out": [
      8,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(sort_asc(input)),4)),-1)"
  },
  {
    "input": "input : list = [-1, -4, -5, 5, 0, 2]\noutput : list = [-2, 1, 3, 4, 7, 8]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_des([-1, -4, -5, 5, 0, 2]),3),-1)))",
    "io_inp": [
      -1,
      -4,
      -5,
      5,
      0,
      2
    ],
    "io_out": [
      -2,
      1,
      3,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_des(input),3),-1)))"
  },
  {
    "input": "input : list = [1, -5, -4, -5, -2, 5]\noutput : list = [-5, -5, -4, -2, 1, 5]",
    "output": "generated_output : list = take(take(take(reverse(sort_des([1, -5, -4, -5, -2, 5])),35),26),42)",
    "io_inp": [
      1,
      -5,
      -4,
      -5,
      -2,
      5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(sort_des(input)),35),26),42)"
  },
  {
    "input": "input : list = [-2, -5, -2, -5, -5, 1]\noutput : list = [-9, -9, -9, -6, -6, -3]",
    "output": "generated_output : list = take(reverse(take(sort_des(sub_n([-2, -5, -2, -5, -5, 1],4)),27)),24)",
    "io_inp": [
      -2,
      -5,
      -2,
      -5,
      -5,
      1
    ],
    "io_out": [
      -9,
      -9,
      -9,
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_des(sub_n(input,4)),27)),24)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(take([-4, 1, 3],1),-1),24)),3)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(take(input,1),-1),24)),3)"
  },
  {
    "input": "input : list = [5, 3, 3]\noutput : list = [6, 4, 4]",
    "output": "generated_output : list = add_n([5, 3, 3],1)",
    "io_inp": [
      5,
      3,
      3
    ],
    "io_out": [
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [5]",
    "output": "generated_output : list = take(sub_n(take([3, -4, -1],1),-2),25)",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),-2),25)"
  },
  {
    "input": "input : list = [4, -5, -3, 2, 5]\noutput : list = [2, 1, -1, -6, -8]",
    "output": "generated_output : list = add_n(sort_des([4, -5, -3, 2, 5]),-3)",
    "io_inp": [
      4,
      -5,
      -3,
      2,
      5
    ],
    "io_out": [
      2,
      1,
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [5, 2, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(reverse([-1, 2, -1]))),-4),1)",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(reverse(input))),-4),1)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [-27, -27, -3]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n(mul_n([5, 5, -3],1),-4)),15),-3)",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      -27,
      -27,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(mul_n(input,1),-4)),15),-3)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [-16, -16, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sort_des([-2, 0, -2]))),4),2)",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      -16,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sort_des(input))),4),2)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [2, 6]",
    "output": "generated_output : list = reverse(sub_n([4, 0],-2))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -3, -4, -2, 2]\noutput : list = [2, -2, -4, -3, -2]",
    "output": "generated_output : list = reverse([-2, -3, -4, -2, 2])",
    "io_inp": [
      -2,
      -3,
      -4,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, 3]\noutput : list = [-100, -60, -40]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(add_n([0, 1, 3],2))),4),-5)",
    "io_inp": [
      0,
      1,
      3
    ],
    "io_out": [
      -100,
      -60,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(add_n(input,2))),4),-5)"
  },
  {
    "input": "input : list = [-3, 3, 4, -5, -5, 0]\noutput : list = [-1, 5, 6, -3, -3, 2]",
    "output": "generated_output : list = add_n([-3, 3, 4, -5, -5, 0],2)",
    "io_inp": [
      -3,
      3,
      4,
      -5,
      -5,
      0
    ],
    "io_out": [
      -1,
      5,
      6,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-3]",
    "output": "generated_output : list = drop(sub_n([2, -4],-1),1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-1),1)"
  },
  {
    "input": "input : list = [-4, -2, 4, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take(take([-4, -2, 4, 1],1),1)",
    "io_inp": [
      -4,
      -2,
      4,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,1),1)"
  },
  {
    "input": "input : list = [-5, 5, -5, 2]\noutput : list = [-12]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(take([-5, 5, -5, 2],1)),-2),5))",
    "io_inp": [
      -5,
      5,
      -5,
      2
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(take(input,1)),-2),5))"
  },
  {
    "input": "input : list = [5, -3, -5, 3]\noutput : list = [5, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(take([5, -3, -5, 3],2)))))",
    "io_inp": [
      5,
      -3,
      -5,
      3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [5, 1, 5, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(sub_n(add_n(reverse(take([5, 1, 5, 2],2)),-5),-2))",
    "io_inp": [
      5,
      1,
      5,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(reverse(take(input,2)),-5),-2))"
  },
  {
    "input": "input : list = [4, 3, 1, 2, -3, -2]\noutput : list = [-7, -6, -3, -2, -1, 0]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(sort_asc([4, 3, 1, 2, -3, -2]),4))),8)",
    "io_inp": [
      4,
      3,
      1,
      2,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(sort_asc(input),4))),8)"
  },
  {
    "input": "input : list = [-3, 2, 3]\noutput : list = [25, 16]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(drop([-3, 2, 3],1),-3),-3),2))",
    "io_inp": [
      -3,
      2,
      3
    ],
    "io_out": [
      25,
      16
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(drop(input,1),-3),-3),2))"
  },
  {
    "input": "input : list = [3, 0, 5, 4]\noutput : list = [7, 4, 9, 8]",
    "output": "generated_output : list = sub_n([3, 0, 5, 4],-4)",
    "io_inp": [
      3,
      0,
      5,
      4
    ],
    "io_out": [
      7,
      4,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 0, 2, 4, 5]\noutput : list = [-1, 4, 6, 8, 9]",
    "output": "generated_output : list = sort_asc(sub_n([-5, 0, 2, 4, 5],-4))",
    "io_inp": [
      -5,
      0,
      2,
      4,
      5
    ],
    "io_out": [
      -1,
      4,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [1, 1, 2, 1]\noutput : list = [-1, -1, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_asc([1, 1, 2, 1])),-2)))",
    "io_inp": [
      1,
      1,
      2,
      1
    ],
    "io_out": [
      -1,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-1, 3, 3, 0, 0]\noutput : list = [-1, 0, 0, 3, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc([-1, 3, 3, 0, 0]),14))",
    "io_inp": [
      -1,
      3,
      3,
      0,
      0
    ],
    "io_out": [
      -1,
      0,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),14))"
  },
  {
    "input": "input : list = [-2, 0, -4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(drop([-2, 0, -4, -3],2))))",
    "io_inp": [
      -2,
      0,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(drop(input,2))))"
  },
  {
    "input": "input : list = [-2, 3, -5, 0]\noutput : list = [20, 120]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(drop([-2, 3, -5, 0],2)),-1),-4),5)",
    "io_inp": [
      -2,
      3,
      -5,
      0
    ],
    "io_out": [
      20,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(drop(input,2)),-1),-4),5)"
  },
  {
    "input": "input : list = [-2, 2, 5, -1]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(add_n([-2, 2, 5, -1],4)),1)),-5)",
    "io_inp": [
      -2,
      2,
      5,
      -1
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(add_n(input,4)),1)),-5)"
  },
  {
    "input": "input : list = [5, 2, 1, 4, 0, 1]\noutput : list = [-30, -27, -27, -24, -18, -15]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n([5, 2, 1, 4, 0, 1],-1)),-4),-5),3)",
    "io_inp": [
      5,
      2,
      1,
      4,
      0,
      1
    ],
    "io_out": [
      -30,
      -27,
      -27,
      -24,
      -18,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n(input,-1)),-4),-5),3)"
  },
  {
    "input": "input : list = [0, 1, 2, 0, 3, -1]\noutput : list = [5, 6, 7, 5, 8, 4]",
    "output": "generated_output : list = sub_n([0, 1, 2, 0, 3, -1],-5)",
    "io_inp": [
      0,
      1,
      2,
      0,
      3,
      -1
    ],
    "io_out": [
      5,
      6,
      7,
      5,
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, -1, 3]\noutput : list = [7, 5, 1]",
    "output": "generated_output : list = sub_n(sort_des([5, -1, 3]),-2)",
    "io_inp": [
      5,
      -1,
      3
    ],
    "io_out": [
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [2, 5, -2, 4, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(drop([2, 5, -2, 4, -2, -2],4))",
    "io_inp": [
      2,
      5,
      -2,
      4,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,4))"
  },
  {
    "input": "input : list = [-2, -1, 0, 3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(take([-2, -1, 0, 3],2),1)),1))",
    "io_inp": [
      -2,
      -1,
      0,
      3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(take(input,2),1)),1))"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-7, -4, -3]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(reverse([-2, -1, -5])),-4)),2)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(reverse(input)),-4)),2)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sort_asc([2, 3]),-3),1)))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sort_asc(input),-3),1)))"
  },
  {
    "input": "input : list = [-1, -1, 2, 1]\noutput : list = [2, 1, -1, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(add_n([-1, -1, 2, 1],-4)),-4)))",
    "io_inp": [
      -1,
      -1,
      2,
      1
    ],
    "io_out": [
      2,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(add_n(input,-4)),-4)))"
  },
  {
    "input": "input : list = [3, 1, 4, 1, 5, -3]\noutput : list = [6, -2, -2, -6, -8, -10]",
    "output": "generated_output : list = sort_des(mul_n(reverse([3, 1, 4, 1, 5, -3]),-2))",
    "io_inp": [
      3,
      1,
      4,
      1,
      5,
      -3
    ],
    "io_out": [
      6,
      -2,
      -2,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-5, 2, 1, 3]\noutput : list = [-10]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(take([-5, 2, 1, 3],1),-5)),21))",
    "io_inp": [
      -5,
      2,
      1,
      3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(take(input,1),-5)),21))"
  },
  {
    "input": "input : list = [1, 3, -2, 5]\noutput : list = [-5, -15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(take([1, 3, -2, 5],2),-1))),5)",
    "io_inp": [
      1,
      3,
      -2,
      5
    ],
    "io_out": [
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(take(input,2),-1))),5)"
  },
  {
    "input": "input : list = [-5, -2, -1, 2, 3]\noutput : list = [-5, -2, -1, 2, 3]",
    "output": "generated_output : list = take(sort_asc([-5, -2, -1, 2, 3]),24)",
    "io_inp": [
      -5,
      -2,
      -1,
      2,
      3
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),24)"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(sort_asc([2, 4, 2])))))",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, -5, 5, -3, 3]\noutput : list = [3, -3, 5, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, 5, -3, 3])",
    "io_inp": [
      4,
      -5,
      5,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      5,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, 0, -5, -1]\noutput : list = [1]",
    "output": "generated_output : list = take(drop(add_n(take(sub_n([2, 4, 0, -5, -1],-5),16),-3),4),49)",
    "io_inp": [
      2,
      4,
      0,
      -5,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(drop(add_n(take(sub_n(input,-5),16),-3),4),49)"
  },
  {
    "input": "input : list = [5, -5, -5, 4, -5]\noutput : list = [-3, -3, -3, 6, 7]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse([5, -5, -5, 4, -5]),4)),-2)",
    "io_inp": [
      5,
      -5,
      -5,
      4,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -3,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(input),4)),-2)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [-3, 2, 3]",
    "output": "generated_output : list = sort_asc([2, -3, 3])",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, -3, 5]\noutput : list = [-5, -4, -3, 5]",
    "output": "generated_output : list = sort_asc([-5, -4, -3, 5])",
    "io_inp": [
      -5,
      -4,
      -3,
      5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, -4, -2, -4, 3]\noutput : list = [3]",
    "output": "generated_output : list = drop(reverse(sort_des(take(drop([-1, 0, -4, -2, -4, 3],3),24))),2)",
    "io_inp": [
      -1,
      0,
      -4,
      -2,
      -4,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_des(take(drop(input,3),24))),2)"
  },
  {
    "input": "input : list = [-3, 2, 0]\noutput : list = [8]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(take([-3, 2, 0],1),-3),-2)),-4)",
    "io_inp": [
      -3,
      2,
      0
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(take(input,1),-3),-2)),-4)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-13, -3]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(mul_n([-4, 1],2))),-2),-3)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -13,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(mul_n(input,2))),-2),-3)"
  },
  {
    "input": "input : list = [1, -5, -4]\noutput : list = [-1, -6, -7]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n([1, -5, -4],-2))),23)",
    "io_inp": [
      1,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(input,-2))),23)"
  },
  {
    "input": "input : list = [2, 0, 3, 3, 4]\noutput : list = [6, 9]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(drop([2, 0, 3, 3, 4],3)),-1),3))",
    "io_inp": [
      2,
      0,
      3,
      3,
      4
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(drop(input,3)),-1),3))"
  },
  {
    "input": "input : list = [-1, -3, 5, 3, 3, 4]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(take([-1, -3, 5, 3, 3, 4],2))),7),3)",
    "io_inp": [
      -1,
      -3,
      5,
      3,
      3,
      4
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(take(input,2))),7),3)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(reverse([1, -4])),20)))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(reverse(input)),20)))"
  },
  {
    "input": "input : list = [4, 3, 2, -2, 1]\noutput : list = [2, 1, -3, 0]",
    "output": "generated_output : list = add_n(drop(add_n(add_n([4, 3, 2, -2, 1],4),-3),1),-2)",
    "io_inp": [
      4,
      3,
      2,
      -2,
      1
    ],
    "io_out": [
      2,
      1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(add_n(input,4),-3),1),-2)"
  },
  {
    "input": "input : list = [1, -5, -3, -2, 2, -3]\noutput : list = [-4, 20, 12, 8, -8, 12]",
    "output": "generated_output : list = mul_n([1, -5, -3, -2, 2, -3],-4)",
    "io_inp": [
      1,
      -5,
      -3,
      -2,
      2,
      -3
    ],
    "io_out": [
      -4,
      20,
      12,
      8,
      -8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 0, 5, 1]\noutput : list = [7, -13, -18, -38]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc([-4, 0, 5, 1]),3),5),-3))",
    "io_inp": [
      -4,
      0,
      5,
      1
    ],
    "io_out": [
      7,
      -13,
      -18,
      -38
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc(input),3),5),-3))"
  },
  {
    "input": "input : list = [-1, -4, -3, 0, 5]\noutput : list = [3, 2, 0, -1, -6]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(mul_n([-1, -4, -3, 0, 5],-1))),45),-1)",
    "io_inp": [
      -1,
      -4,
      -3,
      0,
      5
    ],
    "io_out": [
      3,
      2,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(mul_n(input,-1))),45),-1)"
  },
  {
    "input": "input : list = [-3, 2, -2, 0, -5, 1]\noutput : list = [2, 1, 0, -2, -3, -5]",
    "output": "generated_output : list = sort_des(reverse([-3, 2, -2, 0, -5, 1]))",
    "io_inp": [
      -3,
      2,
      -2,
      0,
      -5,
      1
    ],
    "io_out": [
      2,
      1,
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, 4, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = drop([5, 4, -5, 0],2)",
    "io_inp": [
      5,
      4,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 0, 3]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = sort_asc([-1, 0, 3])",
    "io_inp": [
      -1,
      0,
      3
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -2, 2, 1]\noutput : list = [7, 4, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(mul_n([-2, -2, 2, 1],3),4)),3))",
    "io_inp": [
      -2,
      -2,
      2,
      1
    ],
    "io_out": [
      7,
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(mul_n(input,3),4)),3))"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop([1, -2, 4],1)",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(take(sort_des(take(drop([-5, -5, 0],1),7)),30),6)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(drop(input,1),7)),30),6)"
  },
  {
    "input": "input : list = [2, -3, -3, 1, -3]\noutput : list = [9, 9, 9, -3, -6]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(reverse([2, -3, -3, 1, -3]))),29),-3)",
    "io_inp": [
      2,
      -3,
      -3,
      1,
      -3
    ],
    "io_out": [
      9,
      9,
      9,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(reverse(input))),29),-3)"
  },
  {
    "input": "input : list = [0, -1, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(drop([0, -1, -2],1))),2))",
    "io_inp": [
      0,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(drop(input,1))),2))"
  },
  {
    "input": "input : list = [-5, -2, -3, 5]\noutput : list = [-6, 1, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(add_n([-5, -2, -3, 5],1),-1))))",
    "io_inp": [
      -5,
      -2,
      -3,
      5
    ],
    "io_out": [
      -6,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(add_n(input,1),-1))))"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(reverse(take([3, -3, 2],1)))",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-4, 4, -4, 3]\noutput : list = [3, 3, 10, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n([-4, 4, -4, 3],5)),4),-2))",
    "io_inp": [
      -4,
      4,
      -4,
      3
    ],
    "io_out": [
      3,
      3,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n(input,5)),4),-2))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [27, 22]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(mul_n([-4, -3],-5),-5))),-2)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      27,
      22
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(mul_n(input,-5),-5))),-2)"
  },
  {
    "input": "input : list = [2, 0, -3, 5, 0]\noutput : list = [0, 9, -15, 0]",
    "output": "generated_output : list = mul_n(drop([2, 0, -3, 5, 0],1),-3)",
    "io_inp": [
      2,
      0,
      -3,
      5,
      0
    ],
    "io_out": [
      0,
      9,
      -15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-1, 9, 11]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(mul_n([-3, 3, -2],-2)),5),1))",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -1,
      9,
      11
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(mul_n(input,-2)),5),1))"
  },
  {
    "input": "input : list = [2, 0, 2, -4, 0, 4]\noutput : list = [-2, -4, -2, -8, -4, 0]",
    "output": "generated_output : list = add_n([2, 0, 2, -4, 0, 4],-4)",
    "io_inp": [
      2,
      0,
      2,
      -4,
      0,
      4
    ],
    "io_out": [
      -2,
      -4,
      -2,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -4, 1, 1, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = drop([-3, -4, 1, 1, -1, -5],4)",
    "io_inp": [
      -3,
      -4,
      1,
      1,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [1, 3, 0, -1, 1]\noutput : list = [-7, -5, -5, -4, -3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(mul_n([1, 3, 0, -1, 1],-1),-2)),-2))",
    "io_inp": [
      1,
      3,
      0,
      -1,
      1
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(mul_n(input,-1),-2)),-2))"
  },
  {
    "input": "input : list = [3, 2, -5, 0, -2]\noutput : list = [-27, -18, 45, 0, 18]",
    "output": "generated_output : list = mul_n(mul_n([3, 2, -5, 0, -2],-3),3)",
    "io_inp": [
      3,
      2,
      -5,
      0,
      -2
    ],
    "io_out": [
      -27,
      -18,
      45,
      0,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),3)"
  },
  {
    "input": "input : list = [4, 4, -2, -4]\noutput : list = [24, 24, -12, -24]",
    "output": "generated_output : list = mul_n(mul_n([4, 4, -2, -4],2),3)",
    "io_inp": [
      4,
      4,
      -2,
      -4
    ],
    "io_out": [
      24,
      24,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [-1, -5, 1, 5, 4]\noutput : list = [4, 1, -1, -5]",
    "output": "generated_output : list = drop(sort_des(take(reverse(sort_asc([-1, -5, 1, 5, 4])),19)),1)",
    "io_inp": [
      -1,
      -5,
      1,
      5,
      4
    ],
    "io_out": [
      4,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(take(reverse(sort_asc(input)),19)),1)"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [-21, -11, 29]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n([5, 3, -5],-5))),-4)",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      -21,
      -11,
      29
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(input,-5))),-4)"
  },
  {
    "input": "input : list = [-4, 2, 2]\noutput : list = [-2, -2, 4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(sort_asc([-4, 2, 2]),14))),-1)",
    "io_inp": [
      -4,
      2,
      2
    ],
    "io_out": [
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(sort_asc(input),14))),-1)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [-20, -8, 4]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([5, -1, 2]),4),-1)",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      -20,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),4),-1)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(add_n([3, 3],-5),8)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),8)"
  },
  {
    "input": "input : list = [3, -2, 5, 5]\noutput : list = [0, 0, -2, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([3, -2, 5, 5])),5)",
    "io_inp": [
      3,
      -2,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [0, 4, -5, 5]\noutput : list = [0, -1, -5, -10]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(reverse([0, 4, -5, 5]),-2),-3)),31)",
    "io_inp": [
      0,
      4,
      -5,
      5
    ],
    "io_out": [
      0,
      -1,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(reverse(input),-2),-3)),31)"
  },
  {
    "input": "input : list = [-4, 0, 2, 2, 4]\noutput : list = [-9, -5, -5, -1, 7]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des([-4, 0, 2, 2, 4])),-2),1),-2)",
    "io_inp": [
      -4,
      0,
      2,
      2,
      4
    ],
    "io_out": [
      -9,
      -5,
      -5,
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des(input)),-2),1),-2)"
  },
  {
    "input": "input : list = [-4, 0, 3, -5, -1]\noutput : list = [-1, -5, 3, 0, -4]",
    "output": "generated_output : list = take(reverse([-4, 0, 3, -5, -1]),14)",
    "io_inp": [
      -4,
      0,
      3,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),14)"
  },
  {
    "input": "input : list = [1, 4, 5, -3, -5, 3]\noutput : list = [5, 4]",
    "output": "generated_output : list = take(sort_des([1, 4, 5, -3, -5, 3]),2)",
    "io_inp": [
      1,
      4,
      5,
      -3,
      -5,
      3
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(sort_asc([2, 0]))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 2, 1, 5, -4, 0]\noutput : list = [1, -2, -3, -4, -7, -8]",
    "output": "generated_output : list = take(reverse(take(sub_n(sort_asc([-3, 2, 1, 5, -4, 0]),4),24)),45)",
    "io_inp": [
      -3,
      2,
      1,
      5,
      -4,
      0
    ],
    "io_out": [
      1,
      -2,
      -3,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(sort_asc(input),4),24)),45)"
  },
  {
    "input": "input : list = [2, 1, 5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = drop([2, 1, 5, -4],2)",
    "io_inp": [
      2,
      1,
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 1, 1, 5, 3, -1]\noutput : list = [-9, -3, -3, 1, -1, -5]",
    "output": "generated_output : list = sub_n([-5, 1, 1, 5, 3, -1],4)",
    "io_inp": [
      -5,
      1,
      1,
      5,
      3,
      -1
    ],
    "io_out": [
      -9,
      -3,
      -3,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 5, 4, 3]\noutput : list = [1, 2, 3, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(sub_n([2, 5, 4, 3],4),-3))))",
    "io_inp": [
      2,
      5,
      4,
      3
    ],
    "io_out": [
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(sub_n(input,4),-3))))"
  },
  {
    "input": "input : list = [5, 4, 5, -2, -1]\noutput : list = [1, 1, 0, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n([5, 4, 5, -2, -1],4))",
    "io_inp": [
      5,
      4,
      5,
      -2,
      -1
    ],
    "io_out": [
      1,
      1,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-2, -3, 0]",
    "output": "generated_output : list = sub_n(take(add_n([-2, -3, 0],-4),14),-4)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,-4),14),-4)"
  },
  {
    "input": "input : list = [3, -3, 0, 4]\noutput : list = [-1, -7, -4, 0]",
    "output": "generated_output : list = add_n([3, -3, 0, 4],-4)",
    "io_inp": [
      3,
      -3,
      0,
      4
    ],
    "io_out": [
      -1,
      -7,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, -5, -3, -4, 1, 0]\noutput : list = [-2, -9, -7, -8, -3, -4]",
    "output": "generated_output : list = add_n(add_n([2, -5, -3, -4, 1, 0],-5),1)",
    "io_inp": [
      2,
      -5,
      -3,
      -4,
      1,
      0
    ],
    "io_out": [
      -2,
      -9,
      -7,
      -8,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),1)"
  },
  {
    "input": "input : list = [-2, -3, 4, 1, -1]\noutput : list = [10, 12, 15, 8, 9]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(sub_n([-2, -3, 4, 1, -1],-2),-5),31),4))",
    "io_inp": [
      -2,
      -3,
      4,
      1,
      -1
    ],
    "io_out": [
      10,
      12,
      15,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(sub_n(input,-2),-5),31),4))"
  },
  {
    "input": "input : list = [-1, -4, -2, -4, 2]\noutput : list = [-13, -13, -7, -4, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(mul_n([-1, -4, -2, -4, 2],3),1)),39))",
    "io_inp": [
      -1,
      -4,
      -2,
      -4,
      2
    ],
    "io_out": [
      -13,
      -13,
      -7,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(mul_n(input,3),1)),39))"
  },
  {
    "input": "input : list = [4, -1, 3, 1, 2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(reverse(drop([4, -1, 3, 1, 2, 5],4)))",
    "io_inp": [
      4,
      -1,
      3,
      1,
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,4)))"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [9, 7]",
    "output": "generated_output : list = take(add_n(reverse(drop([-4, 2, 4],1)),5),18)",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(drop(input,1)),5),18)"
  },
  {
    "input": "input : list = [-4, -5, -4, -2, -4, -1]\noutput : list = [-2, -3, -2, 0, -2, 1]",
    "output": "generated_output : list = add_n([-4, -5, -4, -2, -4, -1],2)",
    "io_inp": [
      -4,
      -5,
      -4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -2,
      0,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [5, 3, -5, -2, -3, -3]\noutput : list = [15, 9, 9, 6, -9, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([5, 3, -5, -2, -3, -3]),-3))",
    "io_inp": [
      5,
      3,
      -5,
      -2,
      -3,
      -3
    ],
    "io_out": [
      15,
      9,
      9,
      6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [-4, -1, -2, -4, -3, 5]\noutput : list = [7, -1, -2, 0, 1, -2]",
    "output": "generated_output : list = reverse(sub_n([-4, -1, -2, -4, -3, 5],-2))",
    "io_inp": [
      -4,
      -1,
      -2,
      -4,
      -3,
      5
    ],
    "io_out": [
      7,
      -1,
      -2,
      0,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = sort_des([-4, 2, 1])",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -4, -2, 0, 1]\noutput : list = [-6, -7, -8, -9, -11]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(sort_des([-1, -4, -2, 0, 1]),-4),-3),1),44)",
    "io_inp": [
      -1,
      -4,
      -2,
      0,
      1
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(sort_des(input),-4),-3),1),44)"
  },
  {
    "input": "input : list = [4, -4, -2, 5, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(drop([4, -4, -2, 5, 5, 5],4)))),24)",
    "io_inp": [
      4,
      -4,
      -2,
      5,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(drop(input,4)))),24)"
  },
  {
    "input": "input : list = [-2, 2, 5, -3, -4, -2]\noutput : list = [5, 9, 12, 4, 3, 5]",
    "output": "generated_output : list = add_n(take(add_n([-2, 2, 5, -3, -4, -2],5),19),2)",
    "io_inp": [
      -2,
      2,
      5,
      -3,
      -4,
      -2
    ],
    "io_out": [
      5,
      9,
      12,
      4,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,5),19),2)"
  },
  {
    "input": "input : list = [2, 5, -5, -4]\noutput : list = [-4, -5, 5, 2]",
    "output": "generated_output : list = reverse([2, 5, -5, -4])",
    "io_inp": [
      2,
      5,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2, -3, 3, -5, -4]\noutput : list = [75, 45, 30, -45, -60, -75]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des([5, 2, -3, 3, -5, -4]),-5),22),-3)",
    "io_inp": [
      5,
      2,
      -3,
      3,
      -5,
      -4
    ],
    "io_out": [
      75,
      45,
      30,
      -45,
      -60,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(input),-5),22),-3)"
  },
  {
    "input": "input : list = [-4, 0, 1]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sub_n([-4, 0, 1],-5),-3),-3)))",
    "io_inp": [
      -4,
      0,
      1
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sub_n(input,-5),-3),-3)))"
  },
  {
    "input": "input : list = [3, -2, 1, 3, -4]\noutput : list = [-2, 5, 3, 0, 5]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(sub_n([3, -2, 1, 3, -4],4)),-3),38),-3)",
    "io_inp": [
      3,
      -2,
      1,
      3,
      -4
    ],
    "io_out": [
      -2,
      5,
      3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(sub_n(input,4)),-3),38),-3)"
  },
  {
    "input": "input : list = [-5, -5, -4, 2]\noutput : list = [-20, -20, -16, 8]",
    "output": "generated_output : list = mul_n([-5, -5, -4, 2],4)",
    "io_inp": [
      -5,
      -5,
      -4,
      2
    ],
    "io_out": [
      -20,
      -20,
      -16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, 2, 2, -2, -5, 0]\noutput : list = [4, 1, 1, -3, -6, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse([5, 2, 2, -2, -5, 0]),1))",
    "io_inp": [
      5,
      2,
      2,
      -2,
      -5,
      0
    ],
    "io_out": [
      4,
      1,
      1,
      -3,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),1))"
  },
  {
    "input": "input : list = [-1, 0, 2, 3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(add_n(drop(take(add_n([-1, 0, 2, 3, -3],-2),12),3),2))",
    "io_inp": [
      -1,
      0,
      2,
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(take(add_n(input,-2),12),3),2))"
  },
  {
    "input": "input : list = [-1, 0, 4]\noutput : list = [20, 0, -5]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(mul_n([-1, 0, 4],-1)),1),1),-5)",
    "io_inp": [
      -1,
      0,
      4
    ],
    "io_out": [
      20,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(mul_n(input,-1)),1),1),-5)"
  },
  {
    "input": "input : list = [-1, 1, -3, -5, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(take([-1, 1, -3, -5, 2],2))),39),-1)",
    "io_inp": [
      -1,
      1,
      -3,
      -5,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(take(input,2))),39),-1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_des([-3, 2])))))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, 5, -5, -4, -1, -3]\noutput : list = [-11, -8, -5, 1, 13, 19]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(reverse([3, 5, -5, -4, -1, -3]),3))),4)",
    "io_inp": [
      3,
      5,
      -5,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -11,
      -8,
      -5,
      1,
      13,
      19
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(reverse(input),3))),4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(mul_n([2, 1],-1)),7),24))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(mul_n(input,-1)),7),24))"
  },
  {
    "input": "input : list = [0, 2, 4, 0, -4, -5]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(take([0, 2, 4, 0, -4, -5],2),-4),22)))",
    "io_inp": [
      0,
      2,
      4,
      0,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(take(input,2),-4),22)))"
  },
  {
    "input": "input : list = [-5, -1, 4]\noutput : list = [-5, -1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(reverse([-5, -1, 4]),1))),1)",
    "io_inp": [
      -5,
      -1,
      4
    ],
    "io_out": [
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(reverse(input),1))),1)"
  },
  {
    "input": "input : list = [-3, -2, -4, -4]\noutput : list = [-5, -4, -6, -6]",
    "output": "generated_output : list = sub_n([-3, -2, -4, -4],2)",
    "io_inp": [
      -3,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [12, -16]",
    "output": "generated_output : list = mul_n(take(reverse([4, -3]),6),-4)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),6),-4)"
  },
  {
    "input": "input : list = [-2, -2, 1, -5, 1]\noutput : list = [-1, 2, 2, 5, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n([-2, -2, 1, -5, 1],-4))))",
    "io_inp": [
      -2,
      -2,
      1,
      -5,
      1
    ],
    "io_out": [
      -1,
      2,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(input,-4))))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [7, 2]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(mul_n([0, -5],-1))),4),-2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(mul_n(input,-1))),4),-2)"
  },
  {
    "input": "input : list = [0, -5, -1, -3, 5]\noutput : list = [5, 0, -1, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([0, -5, -1, -3, 5])))",
    "io_inp": [
      0,
      -5,
      -1,
      -3,
      5
    ],
    "io_out": [
      5,
      0,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-2, 2]",
    "output": "generated_output : list = reverse(sort_des(mul_n([-1, 1],2)))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,2)))"
  },
  {
    "input": "input : list = [-5, -5, -5, -3]\noutput : list = [-30, -30, -30, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(reverse([-5, -5, -5, -3]),15),1)),5)",
    "io_inp": [
      -5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -30,
      -30,
      -30,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(reverse(input),15),1)),5)"
  },
  {
    "input": "input : list = [3, 1, -2, 1]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(take(mul_n([3, 1, -2, 1],-3),1),-1)",
    "io_inp": [
      3,
      1,
      -2,
      1
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-3),1),-1)"
  },
  {
    "input": "input : list = [2, 0, -3, -2, -3, 1]\noutput : list = [-15, -9]",
    "output": "generated_output : list = mul_n(reverse(add_n(take([2, 0, -3, -2, -3, 1],2),-5)),3)",
    "io_inp": [
      2,
      0,
      -3,
      -2,
      -3,
      1
    ],
    "io_out": [
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(input,2),-5)),3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-24, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n(sub_n([-5, 3],5),1)),-1),2)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -24,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(sub_n(input,5),1)),-1),2)"
  },
  {
    "input": "input : list = [-2, -3, 0, -1, 0]\noutput : list = [-12, -15, -6, -9, -6]",
    "output": "generated_output : list = mul_n(add_n([-2, -3, 0, -1, 0],-2),3)",
    "io_inp": [
      -2,
      -3,
      0,
      -1,
      0
    ],
    "io_out": [
      -12,
      -15,
      -6,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-6, -6, 8]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(mul_n([-5, 2, -5],2),2)),2),10)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -6,
      -6,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(mul_n(input,2),2)),2),10)"
  },
  {
    "input": "input : list = [-2, -2, 4, 2, 4]\noutput : list = [0, 0, 6, 4, 6]",
    "output": "generated_output : list = sub_n([-2, -2, 4, 2, 4],-2)",
    "io_inp": [
      -2,
      -2,
      4,
      2,
      4
    ],
    "io_out": [
      0,
      0,
      6,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 2, -3, -5, 5]\noutput : list = [-20, -5, 20, 20, 30]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(sort_asc([-3, 2, -3, -5, 5]))),1),-5)",
    "io_inp": [
      -3,
      2,
      -3,
      -5,
      5
    ],
    "io_out": [
      -20,
      -5,
      20,
      20,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(sort_asc(input))),1),-5)"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse(drop([-5, 1, 1],1)),1),4))",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(drop(input,1)),1),4))"
  },
  {
    "input": "input : list = [-1, 2, -4, -2, 3, 3]\noutput : list = [4, 6, 10, 11, 11]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(drop([-1, 2, -4, -2, 3, 3],1))),3),5)",
    "io_inp": [
      -1,
      2,
      -4,
      -2,
      3,
      3
    ],
    "io_out": [
      4,
      6,
      10,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(drop(input,1))),3),5)"
  },
  {
    "input": "input : list = [-5, 5, -3, 1, -1]\noutput : list = [5, 1, -1, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([-5, 5, -3, 1, -1])))",
    "io_inp": [
      -5,
      5,
      -3,
      1,
      -1
    ],
    "io_out": [
      5,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, -5, 2, -5, 0, 1]\noutput : list = [-1, -2, -3, -7, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([-4, -5, 2, -5, 0, 1])),3)",
    "io_inp": [
      -4,
      -5,
      2,
      -5,
      0,
      1
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-48, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(reverse([-1, 4]),3),-4)))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -48,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(reverse(input),3),-4)))"
  },
  {
    "input": "input : list = [-5, 2, 0, -2]\noutput : list = [-4, 0, 4, 10]",
    "output": "generated_output : list = mul_n(sort_des([-5, 2, 0, -2]),-2)",
    "io_inp": [
      -5,
      2,
      0,
      -2
    ],
    "io_out": [
      -4,
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [1, -1, -1, 2, -3]\noutput : list = [8, 6, 2, 2, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(mul_n([1, -1, -1, 2, -3],2))),-4))",
    "io_inp": [
      1,
      -1,
      -1,
      2,
      -3
    ],
    "io_out": [
      8,
      6,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(mul_n(input,2))),-4))"
  },
  {
    "input": "input : list = [3, 2, -1]\noutput : list = [7, 6, 3]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_asc([3, 2, -1]),15)),10),-4)",
    "io_inp": [
      3,
      2,
      -1
    ],
    "io_out": [
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_asc(input),15)),10),-4)"
  },
  {
    "input": "input : list = [-3, -3, -3, 1, 3, -5]\noutput : list = [-4, 4, 2, -2, -2, -2]",
    "output": "generated_output : list = sub_n(take(reverse([-3, -3, -3, 1, 3, -5]),19),-1)",
    "io_inp": [
      -3,
      -3,
      -3,
      1,
      3,
      -5
    ],
    "io_out": [
      -4,
      4,
      2,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),19),-1)"
  },
  {
    "input": "input : list = [0, -5, 1, -2]\noutput : list = [-3, 0, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([0, -5, 1, -2])),-2)",
    "io_inp": [
      0,
      -5,
      1,
      -2
    ],
    "io_out": [
      -3,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(mul_n(add_n([5, 4],-4),-5))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,-4),-5))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [1]",
    "output": "generated_output : list = take(take(drop(take(reverse([1, 5]),6),1),22),30)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(drop(take(reverse(input),6),1),22),30)"
  },
  {
    "input": "input : list = [-1, -5, -3, 2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(take([-1, -5, -3, 2],2))),23))",
    "io_inp": [
      -1,
      -5,
      -3,
      2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(take(input,2))),23))"
  },
  {
    "input": "input : list = [-2, -4, -1, -5, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(drop([-2, -4, -1, -5, 3, 3],4)),5)),5)",
    "io_inp": [
      -2,
      -4,
      -1,
      -5,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(drop(input,4)),5)),5)"
  },
  {
    "input": "input : list = [4, 0, 2, -1, 4, -1]\noutput : list = [-1, 4, -1, 2, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, 2, -1, 4, -1])",
    "io_inp": [
      4,
      0,
      2,
      -1,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -1,
      2,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, -1, -1]\noutput : list = [-1, 1, 2, 2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(sub_n([-2, -4, -1, -1],-4))),1),1)",
    "io_inp": [
      -2,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(sub_n(input,-4))),1),1)"
  },
  {
    "input": "input : list = [2, 4, 1, -4, -2, 0]\noutput : list = [25, 15, 10, 5, -5, -15]",
    "output": "generated_output : list = sort_des(mul_n(take(take(add_n([2, 4, 1, -4, -2, 0],1),15),35),5))",
    "io_inp": [
      2,
      4,
      1,
      -4,
      -2,
      0
    ],
    "io_out": [
      25,
      15,
      10,
      5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(add_n(input,1),15),35),5))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(add_n([0, 1],-1))),4),41)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(add_n(input,-1))),4),41)"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, -3, 2],1))",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [3, 0, 1, -2, -1, 5]\noutput : list = [11, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(drop([3, 0, 1, -2, -1, 5],4)),3),4)",
    "io_inp": [
      3,
      0,
      1,
      -2,
      -1,
      5
    ],
    "io_out": [
      11,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(drop(input,4)),3),4)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(take(sort_asc([-1, 1]),5),2)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),5),2)"
  },
  {
    "input": "input : list = [0, -4, 3, 5, 1, 5]\noutput : list = [5, 5, 3, 1, 0, -4]",
    "output": "generated_output : list = sort_des([0, -4, 3, 5, 1, 5])",
    "io_inp": [
      0,
      -4,
      3,
      5,
      1,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-3, 0]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(add_n([1, 4],2)),4),-1),-1)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(add_n(input,2)),4),-1),-1)"
  },
  {
    "input": "input : list = [0, 5, 1]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(sub_n([0, 5, 1],5),1)),4),35)",
    "io_inp": [
      0,
      5,
      1
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(sub_n(input,5),1)),4),35)"
  },
  {
    "input": "input : list = [-5, -3, 5, 5, 2, -1]\noutput : list = [-8, -6, 2, 2, -1, -4]",
    "output": "generated_output : list = add_n([-5, -3, 5, 5, 2, -1],-3)",
    "io_inp": [
      -5,
      -3,
      5,
      5,
      2,
      -1
    ],
    "io_out": [
      -8,
      -6,
      2,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -2, 4, -1, 1]\noutput : list = [-2, -2, 0, 4, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(mul_n([-2, -2, 4, -1, 1],2),-2),14)))",
    "io_inp": [
      -2,
      -2,
      4,
      -1,
      1
    ],
    "io_out": [
      -2,
      -2,
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(mul_n(input,2),-2),14)))"
  },
  {
    "input": "input : list = [-1, -2, -5, -1, 4, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -2, -5, -1, 4, 0],1)",
    "io_inp": [
      -1,
      -2,
      -5,
      -1,
      4,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -3, -1, 3]\noutput : list = [-22, -14, -6, 26, 26]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(sort_asc([-2, 3, -3, -1, 3]),-4)),-2),-2)",
    "io_inp": [
      -2,
      3,
      -3,
      -1,
      3
    ],
    "io_out": [
      -22,
      -14,
      -6,
      26,
      26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(sort_asc(input),-4)),-2),-2)"
  },
  {
    "input": "input : list = [-1, -1, -3, 5, 1]\noutput : list = [-1, 3, -5, -3, -3]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(reverse([-1, -1, -3, 5, 1]),1),5),4),2)",
    "io_inp": [
      -1,
      -1,
      -3,
      5,
      1
    ],
    "io_out": [
      -1,
      3,
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(reverse(input),1),5),4),2)"
  },
  {
    "input": "input : list = [2, 4, 5, -2, -3]\noutput : list = [-12, -8, 20]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(drop([2, 4, 5, -2, -3],2),9),-2)),-2)",
    "io_inp": [
      2,
      4,
      5,
      -2,
      -3
    ],
    "io_out": [
      -12,
      -8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(drop(input,2),9),-2)),-2)"
  },
  {
    "input": "input : list = [4, -1, -5, -3, 2]\noutput : list = [25, 15, -10]",
    "output": "generated_output : list = mul_n(drop([4, -1, -5, -3, 2],2),-5)",
    "io_inp": [
      4,
      -1,
      -5,
      -3,
      2
    ],
    "io_out": [
      25,
      15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [-4, 2, 2, -1, 1]\noutput : list = [-8, -8, -9, -11, -14]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sort_asc([-4, 2, 2, -1, 1]),5)),5))",
    "io_inp": [
      -4,
      2,
      2,
      -1,
      1
    ],
    "io_out": [
      -8,
      -8,
      -9,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sort_asc(input),5)),5))"
  },
  {
    "input": "input : list = [-3, 4, -4, 4, 4]\noutput : list = [-4, 3, -5, 3, 3]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n([-3, 4, -4, 4, 4],1),-5),-2),-3)",
    "io_inp": [
      -3,
      4,
      -4,
      4,
      4
    ],
    "io_out": [
      -4,
      3,
      -5,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(input,1),-5),-2),-3)"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sub_n(reverse(take(drop([0, -1, 3],1),4)),5)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(drop(input,1),4)),5)"
  },
  {
    "input": "input : list = [-1, 1, -2, -1]\noutput : list = [-20, 20, 20, 40]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(mul_n([-1, 1, -2, -1],-5)),4)))",
    "io_inp": [
      -1,
      1,
      -2,
      -1
    ],
    "io_out": [
      -20,
      20,
      20,
      40
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(mul_n(input,-5)),4)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5, -3, -5, -4, 2]\noutput : list = [2, 0, -3, -4, -5, -5]",
    "output": "generated_output : list = sort_des(reverse([0, -5, -3, -5, -4, 2]))",
    "io_inp": [
      0,
      -5,
      -3,
      -5,
      -4,
      2
    ],
    "io_out": [
      2,
      0,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, 2, 3]\noutput : list = [17, 12, 17]",
    "output": "generated_output : list = add_n(mul_n(take(reverse(sub_n([3, 2, 3],-1)),25),5),-3)",
    "io_inp": [
      3,
      2,
      3
    ],
    "io_out": [
      17,
      12,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(sub_n(input,-1)),25),5),-3)"
  },
  {
    "input": "input : list = [4, 2, 3, -4, -1, 2]\noutput : list = [20, -4, -28, 28]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(drop([4, 2, 3, -4, -1, 2],2),-4),-2)),-4)",
    "io_inp": [
      4,
      2,
      3,
      -4,
      -1,
      2
    ],
    "io_out": [
      20,
      -4,
      -28,
      28
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(drop(input,2),-4),-2)),-4)"
  },
  {
    "input": "input : list = [3, -1, -3, -5, -4, -3]\noutput : list = [-9, 3, 9, 9, 12, 15]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse([3, -1, -3, -5, -4, -3]),-3),24))",
    "io_inp": [
      3,
      -1,
      -3,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -9,
      3,
      9,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(input),-3),24))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-30, -75]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(mul_n([-5, -2],5),-1)),-3))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -30,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(mul_n(input,5),-1)),-3))"
  },
  {
    "input": "input : list = [2, -3, 4, 3, 3]\noutput : list = [18, 8, 22, 20, 20]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n([2, -3, 4, 3, 3],4),2),5),2)",
    "io_inp": [
      2,
      -3,
      4,
      3,
      3
    ],
    "io_out": [
      18,
      8,
      22,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(input,4),2),5),2)"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [23, -17]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(drop([3, 5, -5],1)),4)),-3)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      23,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(drop(input,1)),4)),-3)"
  },
  {
    "input": "input : list = [2, -4, 3, -1]\noutput : list = [3, 2, -1, -4]",
    "output": "generated_output : list = take(reverse(take(reverse(sort_des([2, -4, 3, -1])),14)),12)",
    "io_inp": [
      2,
      -4,
      3,
      -1
    ],
    "io_out": [
      3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(sort_des(input)),14)),12)"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [-8, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([0, 4, -1],-2)))",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      -8,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = take(reverse(reverse(take(sort_asc([0, 2, 3]),8))),4)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(sort_asc(input),8))),4)"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [21, -7, -15]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([5, -2, -4],4),1),-1)",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      21,
      -7,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,4),1),-1)"
  },
  {
    "input": "input : list = [-2, -3, 5]\noutput : list = [-10, -7, 14]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n([-2, -3, 5],-2),3),-5))",
    "io_inp": [
      -2,
      -3,
      5
    ],
    "io_out": [
      -10,
      -7,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(input,-2),3),-5))"
  },
  {
    "input": "input : list = [0, -3, 1, -4]\noutput : list = [-4, -3, 0, 1]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(sort_des([0, -3, 1, -4]))),29))",
    "io_inp": [
      0,
      -3,
      1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(sort_des(input))),29))"
  },
  {
    "input": "input : list = [-4, -3, 4, 5]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take(reverse(take(take([-4, -3, 4, 5],2),5)),1))",
    "io_inp": [
      -4,
      -3,
      4,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(take(input,2),5)),1))"
  },
  {
    "input": "input : list = [5, -5, 0, -2]\noutput : list = [-2, 0, -5, 5]",
    "output": "generated_output : list = reverse([5, -5, 0, -2])",
    "io_inp": [
      5,
      -5,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -1, 2, 2]\noutput : list = [8, 8, 4, -4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(sort_asc([1, -1, 2, 2]),4),-1)),1)",
    "io_inp": [
      1,
      -1,
      2,
      2
    ],
    "io_out": [
      8,
      8,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(sort_asc(input),4),-1)),1)"
  },
  {
    "input": "input : list = [-5, 4, 3]\noutput : list = [-12, -10, 6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sub_n(sort_asc([-5, 4, 3]),-2),-2)))",
    "io_inp": [
      -5,
      4,
      3
    ],
    "io_out": [
      -12,
      -10,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sub_n(sort_asc(input),-2),-2)))"
  },
  {
    "input": "input : list = [4, 4, 5, -2, 1, 5]\noutput : list = [6, 6, 5, 5, 2, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(sort_asc([4, 4, 5, -2, 1, 5]),26)),-1))",
    "io_inp": [
      4,
      4,
      5,
      -2,
      1,
      5
    ],
    "io_out": [
      6,
      6,
      5,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(sort_asc(input),26)),-1))"
  },
  {
    "input": "input : list = [2, 0, 0, 4, 0]\noutput : list = [0, 0, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(take(reverse([2, 0, 0, 4, 0]),8))",
    "io_inp": [
      2,
      0,
      0,
      4,
      0
    ],
    "io_out": [
      0,
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),8))"
  },
  {
    "input": "input : list = [4, 0, 3, -4]\noutput : list = [-4, 3, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, 3, -4])",
    "io_inp": [
      4,
      0,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, 1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take([2, 0, 1],1),1)",
    "io_inp": [
      2,
      0,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),1)"
  },
  {
    "input": "input : list = [-5, 0, -2, -3, -3]\noutput : list = [-4, -6, -7, -7, -9]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(add_n([-5, 0, -2, -3, -3],-4)))),47)",
    "io_inp": [
      -5,
      0,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -6,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(add_n(input,-4)))),47)"
  },
  {
    "input": "input : list = [0, -1, 0, -5, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(take([0, -1, 0, -5, 4],2)),-4)))",
    "io_inp": [
      0,
      -1,
      0,
      -5,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(take(input,2)),-4)))"
  },
  {
    "input": "input : list = [4, 5, 5, 4]\noutput : list = [9, 10, 10, 9]",
    "output": "generated_output : list = add_n(reverse([4, 5, 5, 4]),5)",
    "io_inp": [
      4,
      5,
      5,
      4
    ],
    "io_out": [
      9,
      10,
      10,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [8, 12]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_asc([-4, -5])),-3),-5),-4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_asc(input)),-3),-5),-4)"
  },
  {
    "input": "input : list = [5, 1, 4, -5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(drop([5, 1, 4, -5],2),-2)),-2),1)",
    "io_inp": [
      5,
      1,
      4,
      -5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(drop(input,2),-2)),-2),1)"
  },
  {
    "input": "input : list = [-3, 3, 1, 5]\noutput : list = [5, 1]",
    "output": "generated_output : list = take(sort_des(sort_des(take(drop([-3, 3, 1, 5],2),4))),19)",
    "io_inp": [
      -3,
      3,
      1,
      5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(drop(input,2),4))),19)"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [0, -20, -20]",
    "output": "generated_output : list = sort_des(reverse(mul_n([0, -5, -5],4)))",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [-5, -1, 1, 1, -5, -5]\noutput : list = [-20, -20, 20, 100, 100]",
    "output": "generated_output : list = take(sort_asc(drop(mul_n(mul_n([-5, -1, 1, 1, -5, -5],5),-4),1)),27)",
    "io_inp": [
      -5,
      -1,
      1,
      1,
      -5,
      -5
    ],
    "io_out": [
      -20,
      -20,
      20,
      100,
      100
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(mul_n(mul_n(input,5),-4),1)),27)"
  },
  {
    "input": "input : list = [-4, -1, -2]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(sort_des([-4, -1, -2])),1),15))",
    "io_inp": [
      -4,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(sort_des(input)),1),15))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = add_n(sort_des([4, -5]),2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [2, 3, -1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(take([2, 3, -1, -2],1)))),-3)",
    "io_inp": [
      2,
      3,
      -1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(take(input,1)))),-3)"
  },
  {
    "input": "input : list = [0, -4, -5, -3, 4, -1]\noutput : list = [-6, -5, -4, -2, -1, 3]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(reverse([0, -4, -5, -3, 4, -1])),4),14),-5)",
    "io_inp": [
      0,
      -4,
      -5,
      -3,
      4,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(reverse(input)),4),14),-5)"
  },
  {
    "input": "input : list = [-4, 3, 3, 3, -3, 5]\noutput : list = [0, -10, -10, -10, -40, -45]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_asc([-4, 3, 3, 3, -3, 5]),-5)),-5),-1)",
    "io_inp": [
      -4,
      3,
      3,
      3,
      -3,
      5
    ],
    "io_out": [
      0,
      -10,
      -10,
      -10,
      -40,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_asc(input),-5)),-5),-1)"
  },
  {
    "input": "input : list = [-2, 2, -2, 1, 0]\noutput : list = [2, 1, 0, -2, -2]",
    "output": "generated_output : list = sort_des([-2, 2, -2, 1, 0])",
    "io_inp": [
      -2,
      2,
      -2,
      1,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1, -2]\noutput : list = [-10, -7, -6]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(add_n([-5, -1, -2],-3)),-2)),13)",
    "io_inp": [
      -5,
      -1,
      -2
    ],
    "io_out": [
      -10,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(add_n(input,-3)),-2)),13)"
  },
  {
    "input": "input : list = [-4, -5, -1, 5, -1]\noutput : list = [-3, -4, 0, 6, 0]",
    "output": "generated_output : list = sub_n([-4, -5, -1, 5, -1],-1)",
    "io_inp": [
      -4,
      -5,
      -1,
      5,
      -1
    ],
    "io_out": [
      -3,
      -4,
      0,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -1, -1, -5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(take([-3, -1, -1, -5],2),-1),3),-5),50)",
    "io_inp": [
      -3,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(take(input,2),-1),3),-5),50)"
  },
  {
    "input": "input : list = [4, 1, -2, -1]\noutput : list = [3, 0, -2, -3]",
    "output": "generated_output : list = add_n(add_n(take(reverse(sort_asc([4, 1, -2, -1])),9),-2),1)",
    "io_inp": [
      4,
      1,
      -2,
      -1
    ],
    "io_out": [
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(sort_asc(input)),9),-2),1)"
  },
  {
    "input": "input : list = [1, 5, 2, -5, -4, 2]\noutput : list = [6, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(drop(sub_n([1, 5, 2, -5, -4, 2],-1),3)),2))",
    "io_inp": [
      1,
      5,
      2,
      -5,
      -4,
      2
    ],
    "io_out": [
      6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(drop(sub_n(input,-1),3)),2))"
  },
  {
    "input": "input : list = [4, -2, -3, -2, 1]\noutput : list = [4, -2]",
    "output": "generated_output : list = take(take(sort_des(sort_des(take([4, -2, -3, -2, 1],2))),25),49)",
    "io_inp": [
      4,
      -2,
      -3,
      -2,
      1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_des(take(input,2))),25),49)"
  },
  {
    "input": "input : list = [1, 0, -3]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = add_n(reverse([1, 0, -3]),2)",
    "io_inp": [
      1,
      0,
      -3
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-2, -5, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = drop([-2, -5, -4, -2],2)",
    "io_inp": [
      -2,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, 4, 0, 4, -5, 1]\noutput : list = [9, 6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take([1, 4, 0, 4, -5, 1],2),-5)))",
    "io_inp": [
      1,
      4,
      0,
      4,
      -5,
      1
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(input,2),-5)))"
  },
  {
    "input": "input : list = [-4, 1, 1, 5]\noutput : list = [5, 1, 1, -4]",
    "output": "generated_output : list = reverse([-4, 1, 1, 5])",
    "io_inp": [
      -4,
      1,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, 0, 2, -5]\noutput : list = [-2, 5, 3, -2, -1]",
    "output": "generated_output : list = reverse(sub_n([-4, -5, 0, 2, -5],-3))",
    "io_inp": [
      -4,
      -5,
      0,
      2,
      -5
    ],
    "io_out": [
      -2,
      5,
      3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-4, -1, -3, -2, 4, -5]\noutput : list = [-32, -48, -16, -64]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(take([-4, -1, -3, -2, 4, -5],4),4),38)),4)",
    "io_inp": [
      -4,
      -1,
      -3,
      -2,
      4,
      -5
    ],
    "io_out": [
      -32,
      -48,
      -16,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(take(input,4),4),38)),4)"
  },
  {
    "input": "input : list = [-4, -2, 0, -4, 0, 5]\noutput : list = [-12, -12]",
    "output": "generated_output : list = drop(sort_des(mul_n(mul_n(sub_n([-4, -2, 0, -4, 0, 5],-1),-1),-4)),4)",
    "io_inp": [
      -4,
      -2,
      0,
      -4,
      0,
      5
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = drop(sort_des(mul_n(mul_n(sub_n(input,-1),-1),-4)),4)"
  },
  {
    "input": "input : list = [-1, 5, 1, 3, -5, 5]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(take(add_n(take(sort_asc([-1, 5, 1, 3, -5, 5]),1),3),40),-4)",
    "io_inp": [
      -1,
      5,
      1,
      3,
      -5,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sort_asc(input),1),3),40),-4)"
  },
  {
    "input": "input : list = [-5, 4, 1, -3, -1]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(take([-5, 4, 1, -3, -1],2))",
    "io_inp": [
      -5,
      4,
      1,
      -3,
      -1
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-4, 5, -1, -5, 0, -3]\noutput : list = [-2, 7]",
    "output": "generated_output : list = take(add_n([-4, 5, -1, -5, 0, -3],2),2)",
    "io_inp": [
      -4,
      5,
      -1,
      -5,
      0,
      -3
    ],
    "io_out": [
      -2,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),2)"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [-8, -20, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(add_n([0, -3, 2],-3),4),3),-2),-5)",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      -8,
      -20,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(add_n(input,-3),4),3),-2),-5)"
  },
  {
    "input": "input : list = [0, 1, -2, 0, 0, 1]\noutput : list = [10, 5, 5, -5]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(drop([0, 1, -2, 0, 0, 1],2),5),9)),-5)",
    "io_inp": [
      0,
      1,
      -2,
      0,
      0,
      1
    ],
    "io_out": [
      10,
      5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(drop(input,2),5),9)),-5)"
  },
  {
    "input": "input : list = [-2, 0, -3, 3, 3]\noutput : list = [48, 48, 0, -32, -48]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(sort_des([-2, 0, -3, 3, 3]),4),4)))",
    "io_inp": [
      -2,
      0,
      -3,
      3,
      3
    ],
    "io_out": [
      48,
      48,
      0,
      -32,
      -48
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(sort_des(input),4),4)))"
  },
  {
    "input": "input : list = [4, -4, 1, -1]\noutput : list = [4, 1, -1, -4]",
    "output": "generated_output : list = sort_des([4, -4, 1, -1])",
    "io_inp": [
      4,
      -4,
      1,
      -1
    ],
    "io_out": [
      4,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc([1, 2])",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, 3, -2]\noutput : list = [-8, -7, -6, -2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sub_n([-3, -1, 3, -2],-2),-3),5),-5))",
    "io_inp": [
      -3,
      -1,
      3,
      -2
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sub_n(input,-2),-3),5),-5))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = reverse(add_n(sort_asc([-3, -3]),-3))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(input),-3))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [5, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(sort_des([2, 1]),11)),1),4)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(sort_des(input),11)),1),4)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(sort_asc([5, 5]),4),2)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(sort_asc(input),4),2)))"
  },
  {
    "input": "input : list = [-2, -5, -1]\noutput : list = [5]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(take([-2, -5, -1],1),1)),-5))",
    "io_inp": [
      -2,
      -5,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(take(input,1),1)),-5))"
  },
  {
    "input": "input : list = [-4, -1, -2, -2, 3, -5]\noutput : list = [-7, -4, -5, -5, 0, -8]",
    "output": "generated_output : list = sub_n(sub_n([-4, -1, -2, -2, 3, -5],2),1)",
    "io_inp": [
      -4,
      -1,
      -2,
      -2,
      3,
      -5
    ],
    "io_out": [
      -7,
      -4,
      -5,
      -5,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),1)"
  },
  {
    "input": "input : list = [3, 0, 3, -1, -3, 4]\noutput : list = [-6, -4, 0, 1]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(drop([3, 0, 3, -1, -3, 4],2),-2))),-1)",
    "io_inp": [
      3,
      0,
      3,
      -1,
      -3,
      4
    ],
    "io_out": [
      -6,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(drop(input,2),-2))),-1)"
  },
  {
    "input": "input : list = [-3, -1, 0, 1]\noutput : list = [8, 0, -8, -24]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(mul_n([-3, -1, 0, 1],-4))),-2))",
    "io_inp": [
      -3,
      -1,
      0,
      1
    ],
    "io_out": [
      8,
      0,
      -8,
      -24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(mul_n(input,-4))),-2))"
  },
  {
    "input": "input : list = [0, 0, -1, -1, -2, -4]\noutput : list = [61, 31, 16, 16, 1, 1]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_asc([0, 0, -1, -1, -2, -4]),-5),3),-3),2)",
    "io_inp": [
      0,
      0,
      -1,
      -1,
      -2,
      -4
    ],
    "io_out": [
      61,
      31,
      16,
      16,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_asc(input),-5),3),-3),2)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = add_n([-3, -1],1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, 2, 2, 5, -5]\noutput : list = [0, -3, -3, -5, -10]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sort_asc([0, 2, 2, 5, -5])),5)))",
    "io_inp": [
      0,
      2,
      2,
      5,
      -5
    ],
    "io_out": [
      0,
      -3,
      -3,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [1, 0, -5, -4, 2, 2]\noutput : list = [3, 3, -3, -4, 1, 2]",
    "output": "generated_output : list = add_n(reverse([1, 0, -5, -4, 2, 2]),1)",
    "io_inp": [
      1,
      0,
      -5,
      -4,
      2,
      2
    ],
    "io_out": [
      3,
      3,
      -3,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [1, -3, 4, -4]\noutput : list = [1, 0, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(sort_asc([1, -3, 4, -4])),-1),-3))",
    "io_inp": [
      1,
      -3,
      4,
      -4
    ],
    "io_out": [
      1,
      0,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(sort_asc(input)),-1),-3))"
  },
  {
    "input": "input : list = [0, -2, 4, 4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(drop([0, -2, 4, 4, -5],3)))))",
    "io_inp": [
      0,
      -2,
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(drop(input,3)))))"
  },
  {
    "input": "input : list = [-4, -5, 0, 2, -4, 1]\noutput : list = [0, -1, 4, 6, 0, 5]",
    "output": "generated_output : list = add_n(reverse(reverse([-4, -5, 0, 2, -4, 1])),4)",
    "io_inp": [
      -4,
      -5,
      0,
      2,
      -4,
      1
    ],
    "io_out": [
      0,
      -1,
      4,
      6,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),4)"
  },
  {
    "input": "input : list = [-4, 4, -5, -3, -5]\noutput : list = [-1, -8, -9, -10, -10]",
    "output": "generated_output : list = sort_des(take(add_n([-4, 4, -5, -3, -5],-5),8))",
    "io_inp": [
      -4,
      4,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -8,
      -9,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,-5),8))"
  },
  {
    "input": "input : list = [2, -5, 0]\noutput : list = [15, 5, 1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n([2, -5, 0],-1)),-2),3))",
    "io_inp": [
      2,
      -5,
      0
    ],
    "io_out": [
      15,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n(input,-1)),-2),3))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-45, -40]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(sort_asc([-4, -5]),-4),-5),31),-1)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -45,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(sort_asc(input),-4),-5),31),-1)"
  },
  {
    "input": "input : list = [-1, -5, -3, -2, 3, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take(take([-1, -5, -3, -2, 3, 4],1),22)",
    "io_inp": [
      -1,
      -5,
      -3,
      -2,
      3,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(input,1),22)"
  },
  {
    "input": "input : list = [-1, -2, 4, -2, -1]\noutput : list = [-2, -2, -1, -1, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse([-1, -2, 4, -2, -1])),22))",
    "io_inp": [
      -1,
      -2,
      4,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(input)),22))"
  },
  {
    "input": "input : list = [-1, -1, 5, 4, 1]\noutput : list = [-16]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(mul_n([-1, -1, 5, 4, 1],-4))),1),-4)",
    "io_inp": [
      -1,
      -1,
      5,
      4,
      1
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(mul_n(input,-4))),1),-4)"
  },
  {
    "input": "input : list = [-5, 5, -1, 2, 0]\noutput : list = [-10, -25]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des([-5, 5, -1, 2, 0]),2),-5)))",
    "io_inp": [
      -5,
      5,
      -1,
      2,
      0
    ],
    "io_out": [
      -10,
      -25
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des(input),2),-5)))"
  },
  {
    "input": "input : list = [-2, 1, -3, 0, 1]\noutput : list = [8, -4, 12, 0, -4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sub_n([-2, 1, -3, 0, 1],-1)),-4),-4))",
    "io_inp": [
      -2,
      1,
      -3,
      0,
      1
    ],
    "io_out": [
      8,
      -4,
      12,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sub_n(input,-1)),-4),-4))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -3],1))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [5, -3, 3, 4, 0, -1]\noutput : list = [4, 5, 9]",
    "output": "generated_output : list = take(sort_asc(add_n(drop([5, -3, 3, 4, 0, -1],3),5)),44)",
    "io_inp": [
      5,
      -3,
      3,
      4,
      0,
      -1
    ],
    "io_out": [
      4,
      5,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(drop(input,3),5)),44)"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take([5, 3, -4],1),-4),-3),-2)",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(input,1),-4),-3),-2)"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = take(sort_des([5, 0, -3]),11)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),11)"
  },
  {
    "input": "input : list = [-1, -3, 2, 5, 0]\noutput : list = [14, 4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(drop([-1, -3, 2, 5, 0],3),2)),2),2)",
    "io_inp": [
      -1,
      -3,
      2,
      5,
      0
    ],
    "io_out": [
      14,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(drop(input,3),2)),2),2)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [4, 3, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(sort_des([3, -4, 4]),-5),-5),6))",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(sort_des(input),-5),-5),6))"
  },
  {
    "input": "input : list = [-5, -3, 3, 0, 2]\noutput : list = [-5, -3, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(reverse([-5, -3, 3, 0, 2])))))",
    "io_inp": [
      -5,
      -3,
      3,
      0,
      2
    ],
    "io_out": [
      -5,
      -3,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [4, -3, -5, -5]\noutput : list = [6, -1, -3, -3]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_des([4, -3, -5, -5]),-1),-1)))",
    "io_inp": [
      4,
      -3,
      -5,
      -5
    ],
    "io_out": [
      6,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_des(input),-1),-1)))"
  },
  {
    "input": "input : list = [0, -3, 4, -1, -4]\noutput : list = [-8, -7, -5, -4, 0]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_des([0, -3, 4, -1, -4])),-4)))",
    "io_inp": [
      0,
      -3,
      4,
      -1,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [0, -1, 2, 2, 3, -3]\noutput : list = [-8, -2, -3, -3, -6, -5]",
    "output": "generated_output : list = reverse(add_n([0, -1, 2, 2, 3, -3],-5))",
    "io_inp": [
      0,
      -1,
      2,
      2,
      3,
      -3
    ],
    "io_out": [
      -8,
      -2,
      -3,
      -3,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 4, -4, 2, 1]\noutput : list = [-7, 0, -8, -2, -3]",
    "output": "generated_output : list = add_n(add_n(add_n([-3, 4, -4, 2, 1],-3),-5),4)",
    "io_inp": [
      -3,
      4,
      -4,
      2,
      1
    ],
    "io_out": [
      -7,
      0,
      -8,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-3),-5),4)"
  },
  {
    "input": "input : list = [-2, 2, 0, 5]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take([-2, 2, 0, 5],2)",
    "io_inp": [
      -2,
      2,
      0,
      5
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -3, -5, -5]\noutput : list = [8, -17, -27, -27]",
    "output": "generated_output : list = sub_n(mul_n([2, -3, -5, -5],5),2)",
    "io_inp": [
      2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      8,
      -17,
      -27,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),2)"
  },
  {
    "input": "input : list = [2, -4, -1, 5, -1]\noutput : list = [-7, 23, 8, -22, 8]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(mul_n([2, -4, -1, 5, -1],-1)),5)),-3)",
    "io_inp": [
      2,
      -4,
      -1,
      5,
      -1
    ],
    "io_out": [
      -7,
      23,
      8,
      -22,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(mul_n(input,-1)),5)),-3)"
  },
  {
    "input": "input : list = [2, -2, 0, 4, 1, 1]\noutput : list = [-30, 0, 15, 15, 30, 60]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(mul_n([2, -2, 0, 4, 1, 1],-3),-5))))",
    "io_inp": [
      2,
      -2,
      0,
      4,
      1,
      1
    ],
    "io_out": [
      -30,
      0,
      15,
      15,
      30,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(mul_n(input,-3),-5))))"
  },
  {
    "input": "input : list = [-5, 2, -4, -3, 0, 0]\noutput : list = [2, 0, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 2, -4, -3, 0, 0])",
    "io_inp": [
      -5,
      2,
      -4,
      -3,
      0,
      0
    ],
    "io_out": [
      2,
      0,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, 1, 3, 1]\noutput : list = [3, 6, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(add_n([-2, 3, 1, 3, 1],4),-1)),37))",
    "io_inp": [
      -2,
      3,
      1,
      3,
      1
    ],
    "io_out": [
      3,
      6,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(add_n(input,4),-1)),37))"
  },
  {
    "input": "input : list = [0, -3, 3, -1]\noutput : list = [14, 8, 5, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(reverse([0, -3, 3, -1]),-3),-5),5))",
    "io_inp": [
      0,
      -3,
      3,
      -1
    ],
    "io_out": [
      14,
      8,
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(reverse(input),-3),-5),5))"
  },
  {
    "input": "input : list = [4, -3, -2, -2]\noutput : list = [-3, -2, -2, 4]",
    "output": "generated_output : list = sort_asc([4, -3, -2, -2])",
    "io_inp": [
      4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2, -5, 1, -5, -1]\noutput : list = [8, 8, -2, -7, -22, -22]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(mul_n([1, -2, -5, 1, -5, -1],-1),-5)),26),3)",
    "io_inp": [
      1,
      -2,
      -5,
      1,
      -5,
      -1
    ],
    "io_out": [
      8,
      8,
      -2,
      -7,
      -22,
      -22
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(mul_n(input,-1),-5)),26),3)"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = take(reverse(mul_n([-1, 1, 2],2)),24)",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,2)),24)"
  },
  {
    "input": "input : list = [5, 5, -3, -2, 0]\noutput : list = [-20, -20, 12, 8, 0]",
    "output": "generated_output : list = mul_n([5, 5, -3, -2, 0],-4)",
    "io_inp": [
      5,
      5,
      -3,
      -2,
      0
    ],
    "io_out": [
      -20,
      -20,
      12,
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 2, -3, 5, 3, 0]\noutput : list = [1, 1, 4, 6, 7, 9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(reverse([-3, 2, -3, 5, 3, 0]),12),5)),1)",
    "io_inp": [
      -3,
      2,
      -3,
      5,
      3,
      0
    ],
    "io_out": [
      1,
      1,
      4,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(reverse(input),12),5)),1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [4, -2]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(sub_n([1, -5],1),-2))),2)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(sub_n(input,1),-2))),2)"
  },
  {
    "input": "input : list = [4, -5, -4, 1]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(add_n(take(drop(sub_n([4, -5, -4, 1],-3),3),22),5))",
    "io_inp": [
      4,
      -5,
      -4,
      1
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(drop(sub_n(input,-3),3),22),5))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(mul_n([1, 1],-1),2))),-2)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(mul_n(input,-1),2))),-2)"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [9, 9, 5]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-1, 3, 3]),-5),1)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      9,
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),-5),1)"
  },
  {
    "input": "input : list = [3, 4, 3, 3]\noutput : list = [4, 3, 3, 3]",
    "output": "generated_output : list = sort_des([3, 4, 3, 3])",
    "io_inp": [
      3,
      4,
      3,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, -5, 3]\noutput : list = [-9, -6, -3, -1]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(sub_n([-2, 1, -5, 3],1),-3))))",
    "io_inp": [
      -2,
      1,
      -5,
      3
    ],
    "io_out": [
      -9,
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(sub_n(input,1),-3))))"
  },
  {
    "input": "input : list = [-3, -2, 3, -2]\noutput : list = [9, -6, -6, -9]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sort_des([-3, -2, 3, -2]),4),3)))",
    "io_inp": [
      -3,
      -2,
      3,
      -2
    ],
    "io_out": [
      9,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sort_des(input),4),3)))"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [0, 3, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sub_n([0, -4, -3],-4)),3)))",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      0,
      3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sub_n(input,-4)),3)))"
  },
  {
    "input": "input : list = [4, -4, -3, -1]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(reverse([4, -4, -3, -1])),1)),1)",
    "io_inp": [
      4,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(reverse(input)),1)),1)"
  },
  {
    "input": "input : list = [5, -3, 2, -3, -4]\noutput : list = [16, -16, 4, -16, -20]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(add_n([5, -3, 2, -3, -4],-1),1),-1),40),-4)",
    "io_inp": [
      5,
      -3,
      2,
      -3,
      -4
    ],
    "io_out": [
      16,
      -16,
      4,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(add_n(input,-1),1),-1),40),-4)"
  },
  {
    "input": "input : list = [2, 3, -4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = drop([2, 3, -4, 4],2)",
    "io_inp": [
      2,
      3,
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [-2, -5, -6]",
    "output": "generated_output : list = sub_n([3, 0, -1],5)",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, 2, -2, -2]\noutput : list = [19, 10, 10, -2]",
    "output": "generated_output : list = take(sort_des(reverse(add_n(mul_n([-5, 2, -2, -2],-3),4))),6)",
    "io_inp": [
      -5,
      2,
      -2,
      -2
    ],
    "io_out": [
      19,
      10,
      10,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(add_n(mul_n(input,-3),4))),6)"
  },
  {
    "input": "input : list = [-2, -2, 5, -2]\noutput : list = [8, 8, 1, 8]",
    "output": "generated_output : list = take(add_n(add_n(mul_n([-2, -2, 5, -2],-1),2),4),12)",
    "io_inp": [
      -2,
      -2,
      5,
      -2
    ],
    "io_out": [
      8,
      8,
      1,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(input,-1),2),4),12)"
  },
  {
    "input": "input : list = [2, 3, 3, 4, 0]\noutput : list = [20, 8, 8, 4]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(drop([2, 3, 3, 4, 0],1),7),5)),-4)",
    "io_inp": [
      2,
      3,
      3,
      4,
      0
    ],
    "io_out": [
      20,
      8,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(drop(input,1),7),5)),-4)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(take(take(sort_des(sub_n([-4, -4],-4)),7),14))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(sub_n(input,-4)),7),14))"
  },
  {
    "input": "input : list = [3, 1, -3, -3, 0, 1]\noutput : list = [6, 4, 4, 3, 0, 0]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(sort_des([3, 1, -3, -3, 0, 1]),-2))),5)",
    "io_inp": [
      3,
      1,
      -3,
      -3,
      0,
      1
    ],
    "io_out": [
      6,
      4,
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(sort_des(input),-2))),5)"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [0, -2, -6]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_asc([-4, 0, 2]),2)),15))",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_asc(input),2)),15))"
  },
  {
    "input": "input : list = [4, 0, -5, -2, -2]\noutput : list = [-5, -2, -2, 0, 4]",
    "output": "generated_output : list = take(sort_asc([4, 0, -5, -2, -2]),15)",
    "io_inp": [
      4,
      0,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [14, 6, 14]",
    "output": "generated_output : list = sub_n(sub_n([5, -3, 5],-5),-4)",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      14,
      6,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),-4)"
  },
  {
    "input": "input : list = [5, -4, -2, -2, 4, 2]\noutput : list = [5]",
    "output": "generated_output : list = take(take(sort_des(take([5, -4, -2, -2, 4, 2],1)),10),38)",
    "io_inp": [
      5,
      -4,
      -2,
      -2,
      4,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(input,1)),10),38)"
  },
  {
    "input": "input : list = [-1, -3, -1, 2]\noutput : list = [60, -15, -15, -65]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_asc([-1, -3, -1, 2]),5),-2)),5)",
    "io_inp": [
      -1,
      -3,
      -1,
      2
    ],
    "io_out": [
      60,
      -15,
      -15,
      -65
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_asc(input),5),-2)),5)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [4, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(sort_des([-4, -3, 4]),18))))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(sort_des(input),18))))"
  },
  {
    "input": "input : list = [1, 5, -2, 2, 2, 4]\noutput : list = [-6, -3, -2, -2, 0, 1]",
    "output": "generated_output : list = take(sub_n(take(reverse(sort_des([1, 5, -2, 2, 2, 4])),11),4),11)",
    "io_inp": [
      1,
      5,
      -2,
      2,
      2,
      4
    ],
    "io_out": [
      -6,
      -3,
      -2,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(sort_des(input)),11),4),11)"
  },
  {
    "input": "input : list = [0, 5, 4, -4, 0, 0]\noutput : list = [0, 0, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(drop([0, 5, 4, -4, 0, 0],3)),-5))",
    "io_inp": [
      0,
      5,
      4,
      -4,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(drop(input,3)),-5))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [125, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([0, 5]),5),5)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      125,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),5),5)"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [-2, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 3, -2])",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-1, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(sub_n([1, 2],-2),3),4),-2),5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(sub_n(input,-2),3),4),-2),5)"
  },
  {
    "input": "input : list = [-4, 4, -1, -5]\noutput : list = [0, -5, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(add_n([-4, 4, -1, -5],-1),-3))",
    "io_inp": [
      -4,
      4,
      -1,
      -5
    ],
    "io_out": [
      0,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-1),-3))"
  },
  {
    "input": "input : list = [-2, 4, -2, 3, -2, 0]\noutput : list = [-4, -4, -4, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(add_n([-2, 4, -2, 3, -2, 0],-2))",
    "io_inp": [
      -2,
      4,
      -2,
      3,
      -2,
      0
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, -2, -3, -1, -4]\noutput : list = [35, 45]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(take([-4, -2, -3, -1, -4],2),-5)),-1),5)",
    "io_inp": [
      -4,
      -2,
      -3,
      -1,
      -4
    ],
    "io_out": [
      35,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(take(input,2),-5)),-1),5)"
  },
  {
    "input": "input : list = [4, -3, -5]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(take([4, -3, -5],1),5)",
    "io_inp": [
      4,
      -3,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),5)"
  },
  {
    "input": "input : list = [1, 0, -5, 3, -4]\noutput : list = [0, -2, -3, -7, -8]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(reverse([1, 0, -5, 3, -4]),4)),1),22)",
    "io_inp": [
      1,
      0,
      -5,
      3,
      -4
    ],
    "io_out": [
      0,
      -2,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(reverse(input),4)),1),22)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [4, 8]",
    "output": "generated_output : list = sub_n([-1, 3],-5)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, 1, -1, -1]\noutput : list = [7, 7, 9, 12]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(sub_n([4, 1, -1, -1],4),5),2)),-5)",
    "io_inp": [
      4,
      1,
      -1,
      -1
    ],
    "io_out": [
      7,
      7,
      9,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(sub_n(input,4),5),2)),-5)"
  },
  {
    "input": "input : list = [0, 0, 1, -3]\noutput : list = [-8, -5, -5, -4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(add_n([0, 0, 1, -3],-2)))),-3)",
    "io_inp": [
      0,
      0,
      1,
      -3
    ],
    "io_out": [
      -8,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(add_n(input,-2)))),-3)"
  },
  {
    "input": "input : list = [-2, 2, -2, -2]\noutput : list = [-9, -9, 15, -9]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n(mul_n([-2, 2, -2, -2],3),-2)),2),-1)",
    "io_inp": [
      -2,
      2,
      -2,
      -2
    ],
    "io_out": [
      -9,
      -9,
      15,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(mul_n(input,3),-2)),2),-1)"
  },
  {
    "input": "input : list = [0, 3, -2, -2, 3]\noutput : list = [-15, -15, 0, 10, 10]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(mul_n([0, 3, -2, -2, 3],-1))),5))",
    "io_inp": [
      0,
      3,
      -2,
      -2,
      3
    ],
    "io_out": [
      -15,
      -15,
      0,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(mul_n(input,-1))),5))"
  },
  {
    "input": "input : list = [-2, 5, 1, 4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sub_n(sub_n(take([-2, 5, 1, 4],2),-3),5)",
    "io_inp": [
      -2,
      5,
      1,
      4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,2),-3),5)"
  },
  {
    "input": "input : list = [4, -5, -5, 2, 5]\noutput : list = [5, 2, -5, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, -5, 2, 5])",
    "io_inp": [
      4,
      -5,
      -5,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -5,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(reverse([-1, 0]),8)),-4))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(reverse(input),8)),-4))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sub_n([3, -3],-1))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [0, -5, 0, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(reverse(sort_des(take([0, -5, 0, 2],2))),1),27)",
    "io_inp": [
      0,
      -5,
      0,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(take(input,2))),1),27)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([1, 1])))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [2, -4, -4]\noutput : list = [-4, -4, -28]",
    "output": "generated_output : list = reverse(mul_n(add_n([2, -4, -4],5),-4))",
    "io_inp": [
      2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,5),-4))"
  },
  {
    "input": "input : list = [1, 5, -1, -4, -1, -2]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(drop([1, 5, -1, -4, -1, -2],3)))),3)",
    "io_inp": [
      1,
      5,
      -1,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(drop(input,3)))),3)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [19, 12]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_asc([-2, 5])),-5),-4),5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      19,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_asc(input)),-5),-4),5)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([-4, 4])",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 4, 1, -2]\noutput : list = [4, 3, 1, -2]",
    "output": "generated_output : list = sort_des([3, 4, 1, -2])",
    "io_inp": [
      3,
      4,
      1,
      -2
    ],
    "io_out": [
      4,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(sort_asc([-5, -1])),-1)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-4, -2, 5, 2, 5, -5]\noutput : list = [5, 2, -2, -4, -5]",
    "output": "generated_output : list = reverse(take(sort_asc([-4, -2, 5, 2, 5, -5]),5))",
    "io_inp": [
      -4,
      -2,
      5,
      2,
      5,
      -5
    ],
    "io_out": [
      5,
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),5))"
  },
  {
    "input": "input : list = [4, -4, 1, -2]\noutput : list = [-16, -8, 4, 16]",
    "output": "generated_output : list = mul_n(sort_asc([4, -4, 1, -2]),4)",
    "io_inp": [
      4,
      -4,
      1,
      -2
    ],
    "io_out": [
      -16,
      -8,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-1, 0, -4, -5]\noutput : list = [-28, -32, -16, -12]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n(sub_n([-1, 0, -4, -5],-2),2),-4),-1),4)",
    "io_inp": [
      -1,
      0,
      -4,
      -5
    ],
    "io_out": [
      -28,
      -32,
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(sub_n(input,-2),2),-4),-1),4)"
  },
  {
    "input": "input : list = [-3, 0, -5, 0]\noutput : list = [4, 6, 9, 9]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sort_des([-3, 0, -5, 0]),-4)),-5))",
    "io_inp": [
      -3,
      0,
      -5,
      0
    ],
    "io_out": [
      4,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sort_des(input),-4)),-5))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-20, -20]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(add_n([1, 1],1)),2),-5))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(add_n(input,1)),2),-5))"
  },
  {
    "input": "input : list = [-5, -5, -1, 3]\noutput : list = [-6, -10, -14]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(drop([-5, -5, -1, 3],1)),-5),4),1)",
    "io_inp": [
      -5,
      -5,
      -1,
      3
    ],
    "io_out": [
      -6,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(drop(input,1)),-5),4),1)"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [32, 32, 80]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(sub_n([-5, 1, 1],4),1)),-4),2)",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      32,
      32,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(sub_n(input,4),1)),-4),2)"
  },
  {
    "input": "input : list = [0, -2, 0, -4, -5]\noutput : list = [-5, -7, -9, -10]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(drop([0, -2, 0, -4, -5],1),12),5)))",
    "io_inp": [
      0,
      -2,
      0,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(drop(input,1),12),5)))"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(add_n(add_n(take(drop([0, -5, -5],1),1),-3),-4),5)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(drop(input,1),1),-3),-4),5)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [3, 5, 6]",
    "output": "generated_output : list = take(take(sub_n([-2, 0, 1],-5),16),23)",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,-5),16),23)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [3, 24]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(sub_n([4, -3],5)),-3),26))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      3,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(sub_n(input,5)),-3),26))"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [6, 1, -4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse([5, 0, -5]))),1)",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      6,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(input))),1)"
  },
  {
    "input": "input : list = [2, 4, 0, -3, -2, 1]\noutput : list = [3, 0, -1, 2, 6, 4]",
    "output": "generated_output : list = add_n(add_n(take(reverse([2, 4, 0, -3, -2, 1]),13),4),-2)",
    "io_inp": [
      2,
      4,
      0,
      -3,
      -2,
      1
    ],
    "io_out": [
      3,
      0,
      -1,
      2,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(input),13),4),-2)"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [4, 2, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des([2, 0, -5]))),2)",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(input))),2)"
  },
  {
    "input": "input : list = [4, 2, -4]\noutput : list = [4, -14, -20]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(mul_n([4, 2, -4],-3),-3),5),17))",
    "io_inp": [
      4,
      2,
      -4
    ],
    "io_out": [
      4,
      -14,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(mul_n(input,-3),-3),5),17))"
  },
  {
    "input": "input : list = [-3, -2, 4, 1]\noutput : list = [-12, -11, -5]",
    "output": "generated_output : list = add_n(take(sub_n(take(add_n([-3, -2, 4, 1],-2),3),5),38),-2)",
    "io_inp": [
      -3,
      -2,
      4,
      1
    ],
    "io_out": [
      -12,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(add_n(input,-2),3),5),38),-2)"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [3, -3, -6]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n([-2, -4, -1],-4),1),-3))",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(input,-4),1),-3))"
  },
  {
    "input": "input : list = [-1, 0, 0, -4, 4, -3]\noutput : list = [3, 4, 6, 7, 7, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_des([-1, 0, 0, -4, 4, -3]),-2),-5),4))",
    "io_inp": [
      -1,
      0,
      0,
      -4,
      4,
      -3
    ],
    "io_out": [
      3,
      4,
      6,
      7,
      7,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_des(input),-2),-5),4))"
  },
  {
    "input": "input : list = [5, 0, -5, 5, 5]\noutput : list = [0, -5, -10, 0, 0]",
    "output": "generated_output : list = sub_n(add_n([5, 0, -5, 5, 5],-2),3)",
    "io_inp": [
      5,
      0,
      -5,
      5,
      5
    ],
    "io_out": [
      0,
      -5,
      -10,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-1, -3, 4, 0, 4]\noutput : list = [-5, -3, -10, -6, -10]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(add_n([-1, -3, 4, 0, 4],2),-1),-5),4),-5)",
    "io_inp": [
      -1,
      -3,
      4,
      0,
      4
    ],
    "io_out": [
      -5,
      -3,
      -10,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(add_n(input,2),-1),-5),4),-5)"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [9, 8, 4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(add_n([4, -1, 3],5)))))",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      9,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(add_n(input,5)))))"
  },
  {
    "input": "input : list = [-1, -2, 3, -4]\noutput : list = [-4, -2, -1, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(sort_asc([-1, -2, 3, -4])))),51)",
    "io_inp": [
      -1,
      -2,
      3,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(sort_asc(input)))),51)"
  },
  {
    "input": "input : list = [2, 0, 4, -1, 0]\noutput : list = [4, -1, 0]",
    "output": "generated_output : list = drop([2, 0, 4, -1, 0],2)",
    "io_inp": [
      2,
      0,
      4,
      -1,
      0
    ],
    "io_out": [
      4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 2, 4, -5, 0]\noutput : list = [4, 2, 0, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 2, 4, -5, 0])",
    "io_inp": [
      -5,
      2,
      4,
      -5,
      0
    ],
    "io_out": [
      4,
      2,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 5, -5]\noutput : list = [6]",
    "output": "generated_output : list = add_n(mul_n(take(drop(take([-1, 1, 5, -5],2),1),6),2),4)",
    "io_inp": [
      -1,
      1,
      5,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(drop(take(input,2),1),6),2),4)"
  },
  {
    "input": "input : list = [5, -1, -3, -1, -4, -1]\noutput : list = [5, -1, -1, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(reverse([5, -1, -3, -1, -4, -1])))))",
    "io_inp": [
      5,
      -1,
      -3,
      -1,
      -4,
      -1
    ],
    "io_out": [
      5,
      -1,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 1, 4])",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, 4, 3]\noutput : list = [-5, -4, -3, 1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(mul_n([-1, 5, 4, 3],-1))),-3),3)",
    "io_inp": [
      -1,
      5,
      4,
      3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(mul_n(input,-1))),-3),3)"
  },
  {
    "input": "input : list = [5, 2, 2, -4]\noutput : list = [-4, 2, 2, 5]",
    "output": "generated_output : list = take(sort_asc([5, 2, 2, -4]),8)",
    "io_inp": [
      5,
      2,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),8)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(add_n(reverse([-1, -2]),-2))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [0, 0, -5, 2]\noutput : list = [3, -4, 1, 1]",
    "output": "generated_output : list = sub_n(take(reverse([0, 0, -5, 2]),5),-1)",
    "io_inp": [
      0,
      0,
      -5,
      2
    ],
    "io_out": [
      3,
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),5),-1)"
  },
  {
    "input": "input : list = [4, 4, 3, -3]\noutput : list = [-7, -1, 0, 0]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(sort_asc([4, 4, 3, -3])),5),29),-1)",
    "io_inp": [
      4,
      4,
      3,
      -3
    ],
    "io_out": [
      -7,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(sort_asc(input)),5),29),-1)"
  },
  {
    "input": "input : list = [-1, -2, -3, 1, -4]\noutput : list = [-4, -3, -2, -1, 1]",
    "output": "generated_output : list = sort_asc([-1, -2, -3, 1, -4])",
    "io_inp": [
      -1,
      -2,
      -3,
      1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, -5, -2, -2]\noutput : list = [-2, -2, -2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -2, -5, -2, -2])",
    "io_inp": [
      -5,
      -2,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [-3, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([-5, -2, 1],-1)),2)",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,-1)),2)"
  },
  {
    "input": "input : list = [-3, -1, -4, -4, -4, -5]\noutput : list = [-30, -25, -25, -25, -10, -20]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(add_n([-3, -1, -4, -4, -4, -5],4),-1)),4),5)",
    "io_inp": [
      -3,
      -1,
      -4,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -30,
      -25,
      -25,
      -25,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(add_n(input,4),-1)),4),5)"
  },
  {
    "input": "input : list = [-2, 2, 2, 5, 5, -5]\noutput : list = [25, 10, -10, -10, -25, -25]",
    "output": "generated_output : list = sort_des(mul_n([-2, 2, 2, 5, 5, -5],-5))",
    "io_inp": [
      -2,
      2,
      2,
      5,
      5,
      -5
    ],
    "io_out": [
      25,
      10,
      -10,
      -10,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-4, 5, -2]\noutput : list = [-5, 1, 22]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(add_n([-4, 5, -2],3)),3),-2),12)",
    "io_inp": [
      -4,
      5,
      -2
    ],
    "io_out": [
      -5,
      1,
      22
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(add_n(input,3)),3),-2),12)"
  },
  {
    "input": "input : list = [-4, -2, -5, -2]\noutput : list = [-5, -8, -5]",
    "output": "generated_output : list = sub_n(drop([-4, -2, -5, -2],1),3)",
    "io_inp": [
      -4,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [-3, -11, -4]",
    "output": "generated_output : list = take(sub_n(reverse(take(add_n([2, -5, 3],-1),7)),5),44)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      -3,
      -11,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(add_n(input,-1),7)),5),44)"
  },
  {
    "input": "input : list = [4, 2, -5, 0, -3, 0]\noutput : list = [0, -3, 0]",
    "output": "generated_output : list = drop([4, 2, -5, 0, -3, 0],3)",
    "io_inp": [
      4,
      2,
      -5,
      0,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, 4, 0, -5, -4, 5]\noutput : list = [1, 4, 0]",
    "output": "generated_output : list = take(take([1, 4, 0, -5, -4, 5],3),20)",
    "io_inp": [
      1,
      4,
      0,
      -5,
      -4,
      5
    ],
    "io_out": [
      1,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(take(input,3),20)"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [0, 12, -12]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse([-1, -5, 3])),-1),-3)",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      0,
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(input)),-1),-3)"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [-6, -8, -2]",
    "output": "generated_output : list = take(sub_n([-3, -5, 1],3),12)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      -6,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),12)"
  },
  {
    "input": "input : list = [-4, 1, 5, -5, -1, 1]\noutput : list = [16, -4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(take([-4, 1, 5, -5, -1, 1],2),20))),-4)",
    "io_inp": [
      -4,
      1,
      5,
      -5,
      -1,
      1
    ],
    "io_out": [
      16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(take(input,2),20))),-4)"
  },
  {
    "input": "input : list = [3, 3, -3, 0, 0]\noutput : list = [3, -3, 0, 0]",
    "output": "generated_output : list = drop([3, 3, -3, 0, 0],1)",
    "io_inp": [
      3,
      3,
      -3,
      0,
      0
    ],
    "io_out": [
      3,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -3, -2]\noutput : list = [-9, -7, -6]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(add_n([0, -3, -2],4),5),23)),-1)",
    "io_inp": [
      0,
      -3,
      -2
    ],
    "io_out": [
      -9,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(add_n(input,4),5),23)),-1)"
  },
  {
    "input": "input : list = [1, 4, 4]\noutput : list = [-16, -16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(drop([1, 4, 4],1)))),-4)",
    "io_inp": [
      1,
      4,
      4
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(drop(input,1)))),-4)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [8, 12]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(sub_n([-1, 0],-2),4)),-1),5)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      8,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(sub_n(input,-2),4)),-1),5)"
  },
  {
    "input": "input : list = [-1, -3, -1, 4, 3, -1]\noutput : list = [-24, -4, -4, -4, 36, 46]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc(mul_n([-1, -3, -1, 4, 3, -1],5)),3),2),30)",
    "io_inp": [
      -1,
      -3,
      -1,
      4,
      3,
      -1
    ],
    "io_out": [
      -24,
      -4,
      -4,
      -4,
      36,
      46
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(mul_n(input,5)),3),2),30)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [-4, 0, 5]",
    "output": "generated_output : list = sort_asc([0, -4, 5])",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      -4,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 4, -3, -4, -1, 0]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(take([2, 4, -3, -4, -1, 0],2),18)),-5))",
    "io_inp": [
      2,
      4,
      -3,
      -4,
      -1,
      0
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(take(input,2),18)),-5))"
  },
  {
    "input": "input : list = [2, 3, 0, 5]\noutput : list = [23, 15, 11, 3]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(mul_n([2, 3, 0, 5],4)),11),-1),4)",
    "io_inp": [
      2,
      3,
      0,
      5
    ],
    "io_out": [
      23,
      15,
      11,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(mul_n(input,4)),11),-1),4)"
  },
  {
    "input": "input : list = [2, -4, -2, 3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = drop([2, -4, -2, 3, -4],3)",
    "io_inp": [
      2,
      -4,
      -2,
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, 4, -5, 4, 0, -2]\noutput : list = [-2, 0, 4, -5, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, -5, 4, 0, -2])",
    "io_inp": [
      -1,
      4,
      -5,
      4,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      4,
      -5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, 2, -4]\noutput : list = [-5, -4, 2, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc([2, -5, 2, -4])))",
    "io_inp": [
      2,
      -5,
      2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-2, 4, -4, 1]\noutput : list = [21, 13, 1, -11]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(sort_des([-2, 4, -4, 1]),1),-4)),1)",
    "io_inp": [
      -2,
      4,
      -4,
      1
    ],
    "io_out": [
      21,
      13,
      1,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(sort_des(input),1),-4)),1)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [-8, 8, 8]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(mul_n([-1, -1, 3],-4))),-3),1)",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      -8,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(mul_n(input,-4))),-3),1)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = reverse([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take(drop(sub_n(reverse(reverse([3, -4, -3])),-1),1),40)",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(reverse(reverse(input)),-1),1),40)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [2, 6, 8]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(sort_asc([-4, 2, 0])),5),-1),42)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(sort_asc(input)),5),-1),42)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = add_n(sort_asc([-2, 4]),-1)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-3, 5, -3]\noutput : list = [19]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take([-3, 5, -3],1),-5),-4))",
    "io_inp": [
      -3,
      5,
      -3
    ],
    "io_out": [
      19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(input,1),-5),-4))"
  },
  {
    "input": "input : list = [5, 3, 3, -2, 4]\noutput : list = [-2, 8, 8, 10, 12]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(mul_n([5, 3, 3, -2, 4],2),21),-1),-1))",
    "io_inp": [
      5,
      3,
      3,
      -2,
      4
    ],
    "io_out": [
      -2,
      8,
      8,
      10,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(mul_n(input,2),21),-1),-1))"
  },
  {
    "input": "input : list = [4, 3, 2, -3, -2]\noutput : list = [-9, -10, -5, -4, -3]",
    "output": "generated_output : list = sub_n(take(reverse(take(add_n([4, 3, 2, -3, -2],-5),17)),18),2)",
    "io_inp": [
      4,
      3,
      2,
      -3,
      -2
    ],
    "io_out": [
      -9,
      -10,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(add_n(input,-5),17)),18),2)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [6, 6, 7]",
    "output": "generated_output : list = reverse(sort_des(add_n([3, 2, 2],4)))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,4)))"
  },
  {
    "input": "input : list = [-5, -4, 5, 0]\noutput : list = [-5, -4, 0, 5]",
    "output": "generated_output : list = sort_asc([-5, -4, 5, 0])",
    "io_inp": [
      -5,
      -4,
      5,
      0
    ],
    "io_out": [
      -5,
      -4,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, -2, 3]\noutput : list = [1, -1, -6, -6]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(sort_asc([-2, 5, -2, 3])),24)),4)",
    "io_inp": [
      -2,
      5,
      -2,
      3
    ],
    "io_out": [
      1,
      -1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(sort_asc(input)),24)),4)"
  },
  {
    "input": "input : list = [-1, 4, -2, -1, 0]\noutput : list = [-5, -9, -10, -10, -11]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(sort_asc([-1, 4, -2, -1, 0])),24),-4),5)",
    "io_inp": [
      -1,
      4,
      -2,
      -1,
      0
    ],
    "io_out": [
      -5,
      -9,
      -10,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(sort_asc(input)),24),-4),5)"
  },
  {
    "input": "input : list = [5, 5, -5, -5, -3, 2]\noutput : list = [-15, -15, 15, 15, 9, -6]",
    "output": "generated_output : list = mul_n([5, 5, -5, -5, -3, 2],-3)",
    "io_inp": [
      5,
      5,
      -5,
      -5,
      -3,
      2
    ],
    "io_out": [
      -15,
      -15,
      15,
      15,
      9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 0, 4]\noutput : list = [3, -1, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(reverse([-5, 0, 4])),1)),37)",
    "io_inp": [
      -5,
      0,
      4
    ],
    "io_out": [
      3,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(reverse(input)),1)),37)"
  },
  {
    "input": "input : list = [-5, -5, 3, 4, 3]\noutput : list = [-5, -5, 3]",
    "output": "generated_output : list = take([-5, -5, 3, 4, 3],3)",
    "io_inp": [
      -5,
      -5,
      3,
      4,
      3
    ],
    "io_out": [
      -5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 5, -5, -5, 3, 4]\noutput : list = [5, -5, -5, 3, 4]",
    "output": "generated_output : list = drop([-5, 5, -5, -5, 3, 4],1)",
    "io_inp": [
      -5,
      5,
      -5,
      -5,
      3,
      4
    ],
    "io_out": [
      5,
      -5,
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -2, 1, 5, -1, 5]\noutput : list = [-100, -100, -20, 20, 40, 100]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n([-5, -2, 1, 5, -1, 5],5),-4))))",
    "io_inp": [
      -5,
      -2,
      1,
      5,
      -1,
      5
    ],
    "io_out": [
      -100,
      -100,
      -20,
      20,
      40,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n(input,5),-4))))"
  },
  {
    "input": "input : list = [-2, 1, 5, -3, 0, -3]\noutput : list = [6, 4, -2, -10]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(take([-2, 1, 5, -3, 0, -3],4),-2),14)))",
    "io_inp": [
      -2,
      1,
      5,
      -3,
      0,
      -3
    ],
    "io_out": [
      6,
      4,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(take(input,4),-2),14)))"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [6, 1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(drop([-3, -4, 1],1)),-4),1))",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(drop(input,1)),-4),1))"
  },
  {
    "input": "input : list = [-3, 3, 5, 4, -4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(drop([-3, 3, 5, 4, -4, -5],4))",
    "io_inp": [
      -3,
      3,
      5,
      4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,4))"
  },
  {
    "input": "input : list = [1, 1, 0, 0, 3, -4]\noutput : list = [-1, -1, 0, 0]",
    "output": "generated_output : list = take(mul_n(take([1, 1, 0, 0, 3, -4],4),-1),12)",
    "io_inp": [
      1,
      1,
      0,
      0,
      3,
      -4
    ],
    "io_out": [
      -1,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,4),-1),12)"
  },
  {
    "input": "input : list = [1, -3, -4, -3, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(take([1, -3, -4, -3, -1],1)),4),5))",
    "io_inp": [
      1,
      -3,
      -4,
      -3,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(take(input,1)),4),5))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-3, 6]",
    "output": "generated_output : list = take(reverse(reverse(sub_n([-4, 5],-1))),3)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(input,-1))),3)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = sort_des([2, -5])",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5, -5, 3, -4]\noutput : list = [-2, 1, -9, -1, -8]",
    "output": "generated_output : list = sub_n(take(take(take(sub_n([2, 5, -5, 3, -4],2),11),24),10),2)",
    "io_inp": [
      2,
      5,
      -5,
      3,
      -4
    ],
    "io_out": [
      -2,
      1,
      -9,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(sub_n(input,2),11),24),10),2)"
  },
  {
    "input": "input : list = [-2, 1, 5, 3, -5, 0]\noutput : list = [36, 20, 4, -4, -20, -44]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(mul_n([-2, 1, 5, 3, -5, 0],2),-1))),4)",
    "io_inp": [
      -2,
      1,
      5,
      3,
      -5,
      0
    ],
    "io_out": [
      36,
      20,
      4,
      -4,
      -20,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(mul_n(input,2),-1))),4)"
  },
  {
    "input": "input : list = [2, 5, 1, 2, -4, 3]\noutput : list = [-8, -3, -2, -2, -1, 1]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(sort_asc([2, 5, 1, 2, -4, 3]),8),4)))",
    "io_inp": [
      2,
      5,
      1,
      2,
      -4,
      3
    ],
    "io_out": [
      -8,
      -3,
      -2,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(sort_asc(input),8),4)))"
  },
  {
    "input": "input : list = [0, -5, 3, -5, 4, 1]\noutput : list = [-6, -11, -3, -11, -2, -5]",
    "output": "generated_output : list = add_n(reverse(take(reverse(sub_n([0, -5, 3, -5, 4, 1],4)),6)),-2)",
    "io_inp": [
      0,
      -5,
      3,
      -5,
      4,
      1
    ],
    "io_out": [
      -6,
      -11,
      -3,
      -11,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(sub_n(input,4)),6)),-2)"
  },
  {
    "input": "input : list = [-3, 3, -3, 3, 2, 4]\noutput : list = [6, 12, 6, 12, 11, 13]",
    "output": "generated_output : list = sub_n(add_n([-3, 3, -3, 3, 2, 4],4),-5)",
    "io_inp": [
      -3,
      3,
      -3,
      3,
      2,
      4
    ],
    "io_out": [
      6,
      12,
      6,
      12,
      11,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),-5)"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(drop([2, 3, -4],1)),2),-4))",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(drop(input,1)),2),-4))"
  },
  {
    "input": "input : list = [3, -5, -4, 3, 4, -3]\noutput : list = [-2, -1, 0, 6, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([3, -5, -4, 3, 4, -3]),-3))",
    "io_inp": [
      3,
      -5,
      -4,
      3,
      4,
      -3
    ],
    "io_out": [
      -2,
      -1,
      0,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [-4, 2, 4, -1, -4]\noutput : list = [-7, -1]",
    "output": "generated_output : list = add_n(drop(mul_n(sub_n(sort_asc([-4, 2, 4, -1, -4]),3),3),3),-4)",
    "io_inp": [
      -4,
      2,
      4,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sub_n(sort_asc(input),3),3),3),-4)"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(drop([5, 0, -5],1),16))),3)",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(drop(input,1),16))),3)"
  },
  {
    "input": "input : list = [5, 1, 3, 2]\noutput : list = [5, 6, 7, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(reverse([5, 1, 3, 2]))),4),-4)",
    "io_inp": [
      5,
      1,
      3,
      2
    ],
    "io_out": [
      5,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(reverse(input))),4),-4)"
  },
  {
    "input": "input : list = [1, 5, -1, 2]\noutput : list = [5, 2, 1, -1]",
    "output": "generated_output : list = sort_des([1, 5, -1, 2])",
    "io_inp": [
      1,
      5,
      -1,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, 5, -4]\noutput : list = [20, 8, -12, -16]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_des([2, -3, 5, -4])))),4)",
    "io_inp": [
      2,
      -3,
      5,
      -4
    ],
    "io_out": [
      20,
      8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_des(input)))),4)"
  },
  {
    "input": "input : list = [-2, 2, 1, 5, 3]\noutput : list = [-4, -7, -10, -16]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(drop([-2, 2, 1, 5, 3],1)),-3)),-1)",
    "io_inp": [
      -2,
      2,
      1,
      5,
      3
    ],
    "io_out": [
      -4,
      -7,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(drop(input,1)),-3)),-1)"
  },
  {
    "input": "input : list = [0, 0, 1, -2, -4]\noutput : list = [-5, -6, -6, -8, -10]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(reverse([0, 0, 1, -2, -4])),-5),26),1)",
    "io_inp": [
      0,
      0,
      1,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -6,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(reverse(input)),-5),26),1)"
  },
  {
    "input": "input : list = [5, -2, -3, -2]\noutput : list = [-15, 6, 6, 9]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n([5, -2, -3, -2],-3))))",
    "io_inp": [
      5,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -15,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(input,-3))))"
  },
  {
    "input": "input : list = [2, 5, -3, -3, 3, 1]\noutput : list = [35, -10, 110, 110, 20, 50]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(sub_n([2, 5, -3, -3, 3, 1],4),19),5),-3),5)",
    "io_inp": [
      2,
      5,
      -3,
      -3,
      3,
      1
    ],
    "io_out": [
      35,
      -10,
      110,
      110,
      20,
      50
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(sub_n(input,4),19),5),-3),5)"
  },
  {
    "input": "input : list = [-5, 2, 0, 2]\noutput : list = [-4, -4, -6, -11]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sort_des([-5, 2, 0, 2]),4))),2)",
    "io_inp": [
      -5,
      2,
      0,
      2
    ],
    "io_out": [
      -4,
      -4,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sort_des(input),4))),2)"
  },
  {
    "input": "input : list = [-5, -2, 2, 3, 1, 5]\noutput : list = [9, 7, 6, 5, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_asc([-5, -2, 2, 3, 1, 5])))),-4)",
    "io_inp": [
      -5,
      -2,
      2,
      3,
      1,
      5
    ],
    "io_out": [
      9,
      7,
      6,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(sub_n([-3, -3],-1))),30))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(sub_n(input,-1))),30))"
  },
  {
    "input": "input : list = [-1, 2, 5, 1]\noutput : list = [5, -10, -25, -5]",
    "output": "generated_output : list = mul_n([-1, 2, 5, 1],-5)",
    "io_inp": [
      -1,
      2,
      5,
      1
    ],
    "io_out": [
      5,
      -10,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -1, -3, -1, 5]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = reverse(take(sub_n(drop(sort_asc([-2, -1, -3, -1, 5]),2),1),21))",
    "io_inp": [
      -2,
      -1,
      -3,
      -1,
      5
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(drop(sort_asc(input),2),1),21))"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [0, 4, 7]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(sub_n([1, 4, -3],-4),5),-4),9))",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(sub_n(input,-4),5),-4),9))"
  },
  {
    "input": "input : list = [-5, -1, -2, -2]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc(drop([-5, -1, -2, -2],2)),5),2),6)",
    "io_inp": [
      -5,
      -1,
      -2,
      -2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(drop(input,2)),5),2),6)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [1, 2, -4]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(reverse([-3, 3, 2]),-4),24),-2),3)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(reverse(input),-4),24),-2),3)"
  },
  {
    "input": "input : list = [3, 4, 0, -2, -1, -5]\noutput : list = [3, 4]",
    "output": "generated_output : list = take([3, 4, 0, -2, -1, -5],2)",
    "io_inp": [
      3,
      4,
      0,
      -2,
      -1,
      -5
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [18, -10]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(mul_n([-3, 4],4)),-2)))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      18,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(mul_n(input,4)),-2)))"
  },
  {
    "input": "input : list = [-3, 3, 0, 5, 5, 4]\noutput : list = [-2, 1, 4, 5, 6, 6]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(sort_des([-3, 3, 0, 5, 5, 4])))),-1)",
    "io_inp": [
      -3,
      3,
      0,
      5,
      5,
      4
    ],
    "io_out": [
      -2,
      1,
      4,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [-5, -3, -3, -2, -5]\noutput : list = [-9, -9, -7, -7, -6]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(reverse([-5, -3, -3, -2, -5])),21)),4)",
    "io_inp": [
      -5,
      -3,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(reverse(input)),21)),4)"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [-5, 1, 1]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n([-2, 0, 0],3))),1)",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(input,3))),1)"
  },
  {
    "input": "input : list = [5, -4, -1, -2, 2, -3]\noutput : list = [6, 3, 0, -3, -12, -21]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc([5, -4, -1, -2, 2, -3]),16),2),-3)",
    "io_inp": [
      5,
      -4,
      -1,
      -2,
      2,
      -3
    ],
    "io_out": [
      6,
      3,
      0,
      -3,
      -12,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(input),16),2),-3)"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [-8, -2, 1]",
    "output": "generated_output : list = take(add_n(take(reverse(sort_des([4, 1, -5])),12),-3),40)",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      -8,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(sort_des(input)),12),-3),40)"
  },
  {
    "input": "input : list = [-5, 1, 5, -1]\noutput : list = [27, 15, 9, -3]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(sort_des([-5, 1, 5, -1]),4))),3)",
    "io_inp": [
      -5,
      1,
      5,
      -1
    ],
    "io_out": [
      27,
      15,
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(sort_des(input),4))),3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-7]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(mul_n([-5, -3],-2),1)),-3),-1)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(mul_n(input,-2),1)),-3),-1)"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [0, -2, -2]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(sort_des([2, 4, 2]),5)),1))",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(sort_des(input),5)),1))"
  },
  {
    "input": "input : list = [1, -4, 3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(take([1, -4, 3],1)),17),2))",
    "io_inp": [
      1,
      -4,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(take(input,1)),17),2))"
  },
  {
    "input": "input : list = [1, -4, -2]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_des([1, -4, -2]),2),1)",
    "io_inp": [
      1,
      -4,
      -2
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),2),1)"
  },
  {
    "input": "input : list = [2, -5, 5, 5]\noutput : list = [-1, 6, 9, 9]",
    "output": "generated_output : list = sub_n(sort_asc([2, -5, 5, 5]),-4)",
    "io_inp": [
      2,
      -5,
      5,
      5
    ],
    "io_out": [
      -1,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [5, -3, 2, 2]\noutput : list = [15, -25]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(take([5, -3, 2, 2],2)),1),2),-5)",
    "io_inp": [
      5,
      -3,
      2,
      2
    ],
    "io_out": [
      15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(take(input,2)),1),2),-5)"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [32, 12, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(add_n([-3, 2, 5],4),4),5),-4))",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      32,
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(add_n(input,4),4),5),-4))"
  },
  {
    "input": "input : list = [5, -5, 1]\noutput : list = [-105, -5, 145]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(reverse([5, -5, 1])),-5),-4),5)",
    "io_inp": [
      5,
      -5,
      1
    ],
    "io_out": [
      -105,
      -5,
      145
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(reverse(input)),-5),-4),5)"
  },
  {
    "input": "input : list = [-5, 1, 4, 0, 0]\noutput : list = [25, 0, 0, -5, -20]",
    "output": "generated_output : list = sort_des(mul_n([-5, 1, 4, 0, 0],-5))",
    "io_inp": [
      -5,
      1,
      4,
      0,
      0
    ],
    "io_out": [
      25,
      0,
      0,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-30, -50]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(sort_asc([1, 5]),9),-5),1),-5)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -30,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(sort_asc(input),9),-5),1),-5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [1, 5]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des([-1, -5])),4),2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(input)),4),2)"
  },
  {
    "input": "input : list = [0, -5, 3, -2]\noutput : list = [8, 5, 3, 0]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc([0, -5, 3, -2]),21)),5)",
    "io_inp": [
      0,
      -5,
      3,
      -2
    ],
    "io_out": [
      8,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(input),21)),5)"
  },
  {
    "input": "input : list = [-3, 1, 2, -5, 1]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = take([-3, 1, 2, -5, 1],3)",
    "io_inp": [
      -3,
      1,
      2,
      -5,
      1
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, -1, 4, -5]\noutput : list = [-6, 2, -8, 10]",
    "output": "generated_output : list = mul_n([3, -1, 4, -5],-2)",
    "io_inp": [
      3,
      -1,
      4,
      -5
    ],
    "io_out": [
      -6,
      2,
      -8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [0, -75, -75]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(sort_asc([-5, 0, 0]),3),-5),-3),5)",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      0,
      -75,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(sort_asc(input),3),-5),-3),5)"
  },
  {
    "input": "input : list = [-3, 1, 1, 4, -5]\noutput : list = [-2, 2, 2, 5, -4]",
    "output": "generated_output : list = sub_n([-3, 1, 1, 4, -5],-1)",
    "io_inp": [
      -3,
      1,
      1,
      4,
      -5
    ],
    "io_out": [
      -2,
      2,
      2,
      5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 3, 4, -3]\noutput : list = [-3, -2, 3, 4]",
    "output": "generated_output : list = add_n(take(take(sub_n(sort_asc([-2, 3, 4, -3]),5),8),7),5)",
    "io_inp": [
      -2,
      3,
      4,
      -3
    ],
    "io_out": [
      -3,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(sort_asc(input),5),8),7),5)"
  },
  {
    "input": "input : list = [-3, -5, -4, -3]\noutput : list = [-10, -8]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(take([-3, -5, -4, -3],2),5)),11),50)",
    "io_inp": [
      -3,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(take(input,2),5)),11),50)"
  },
  {
    "input": "input : list = [0, -5, 5, 5, 2, 3]\noutput : list = [5, 5, 3, 2, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([0, -5, 5, 5, 2, 3])))",
    "io_inp": [
      0,
      -5,
      5,
      5,
      2,
      3
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [5, 4, 0, -1]\noutput : list = [-15, 0, 60, 75]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([5, 4, 0, -1]),-5),-3)",
    "io_inp": [
      5,
      4,
      0,
      -1
    ],
    "io_out": [
      -15,
      0,
      60,
      75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),-5),-3)"
  },
  {
    "input": "input : list = [-5, -3, 0, 1, 5]\noutput : list = [8, 4, 3, 0]",
    "output": "generated_output : list = add_n(add_n(take(sort_des([-5, -3, 0, 1, 5]),4),-2),5)",
    "io_inp": [
      -5,
      -3,
      0,
      1,
      5
    ],
    "io_out": [
      8,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(input),4),-2),5)"
  },
  {
    "input": "input : list = [5, 3, -1, 3, 5, 1]\noutput : list = [0]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(sub_n([5, 3, -1, 3, 5, 1],5))),-4),1)",
    "io_inp": [
      5,
      3,
      -1,
      3,
      5,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(sub_n(input,5))),-4),1)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [5, 3, 1]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(sort_des([5, 1, 3])))))",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, -3, 1, -2, 5, 0]\noutput : list = [1, -3]",
    "output": "generated_output : list = take([1, -3, 1, -2, 5, 0],2)",
    "io_inp": [
      1,
      -3,
      1,
      -2,
      5,
      0
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -4, 1, -3, -2]\noutput : list = [4, 6, -2, 8, 6]",
    "output": "generated_output : list = take(reverse(mul_n([-3, -4, 1, -3, -2],-2)),22)",
    "io_inp": [
      -3,
      -4,
      1,
      -3,
      -2
    ],
    "io_out": [
      4,
      6,
      -2,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,-2)),22)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sub_n([-4, 5],1)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, -3, 2, -2, -5]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sub_n(sort_asc(take([-1, -3, 2, -2, -5],2)),4)",
    "io_inp": [
      -1,
      -3,
      2,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(input,2)),4)"
  },
  {
    "input": "input : list = [1, 3, -5, -5, -3]\noutput : list = [-8, -16, 16, 16, 8]",
    "output": "generated_output : list = mul_n(add_n([1, 3, -5, -5, -3],1),-4)",
    "io_inp": [
      1,
      3,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -16,
      16,
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-4)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = reverse(sort_asc([-3, 5]))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 4, 5, -3, -2]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(add_n(drop(take([4, 4, 5, -3, -2],3),2),-2),3)",
    "io_inp": [
      4,
      4,
      5,
      -3,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(take(input,3),2),-2),3)"
  },
  {
    "input": "input : list = [-1, 0, 0, -4]\noutput : list = [0, 0, -1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_asc([-1, 0, 0, -4]),-2))),-2)",
    "io_inp": [
      -1,
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_asc(input),-2))),-2)"
  },
  {
    "input": "input : list = [1, 5, -1, -2, -1, 5]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 5, -1, -2, -1, 5],1)",
    "io_inp": [
      1,
      5,
      -1,
      -2,
      -1,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -5, -1, -2, 5]\noutput : list = [5, 5, -1, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([5, -5, -1, -2, 5])))",
    "io_inp": [
      5,
      -5,
      -1,
      -2,
      5
    ],
    "io_out": [
      5,
      5,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, 2, -1, 4]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(drop([-4, 2, -1, 4],1)),22),3),1)",
    "io_inp": [
      -4,
      2,
      -1,
      4
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(drop(input,1)),22),3),1)"
  },
  {
    "input": "input : list = [5, -1, -5, 1]\noutput : list = [-10, -2, 2, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([5, -1, -5, 1],2)))",
    "io_inp": [
      5,
      -1,
      -5,
      1
    ],
    "io_out": [
      -10,
      -2,
      2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,2)))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [0, 6]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(sort_asc([4, -2])),2)),38)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(sort_asc(input)),2)),38)"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [3, 3, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-1, 4, 4])),1)",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-2, 2, -5, 3, 3]\noutput : list = [-5, -2, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 2, -5, 3, 3]))",
    "io_inp": [
      -2,
      2,
      -5,
      3,
      3
    ],
    "io_out": [
      -5,
      -2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, -1, 1, 4, 0, 0]\noutput : list = [-3, -3, 1, -2, -4, 2]",
    "output": "generated_output : list = reverse(sub_n([5, -1, 1, 4, 0, 0],3))",
    "io_inp": [
      5,
      -1,
      1,
      4,
      0,
      0
    ],
    "io_out": [
      -3,
      -3,
      1,
      -2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [2, -3, -3, 1]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(drop(add_n(mul_n(drop([2, -3, -3, 1],2),1),-5),1),4)",
    "io_inp": [
      2,
      -3,
      -3,
      1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(mul_n(drop(input,2),1),-5),1),4)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [5, 9, 11]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-1, -5, 1],5),-5))",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      5,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,5),-5))"
  },
  {
    "input": "input : list = [4, 3, 5, -5, 5, -5]\noutput : list = [-20, -15, -25, 25, -25, 25]",
    "output": "generated_output : list = mul_n([4, 3, 5, -5, 5, -5],-5)",
    "io_inp": [
      4,
      3,
      5,
      -5,
      5,
      -5
    ],
    "io_out": [
      -20,
      -15,
      -25,
      25,
      -25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 3, 0, 5]\noutput : list = [0, 8, 5, 10]",
    "output": "generated_output : list = reverse(sub_n(reverse([-5, 3, 0, 5]),-5))",
    "io_inp": [
      -5,
      3,
      0,
      5
    ],
    "io_out": [
      0,
      8,
      5,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [-5, -1, 4, -4, 5]\noutput : list = [3, 2, -3, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(add_n([-5, -1, 4, -4, 5],-2)))))",
    "io_inp": [
      -5,
      -1,
      4,
      -4,
      5
    ],
    "io_out": [
      3,
      2,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [4, 2, -3]",
    "output": "generated_output : list = sort_des([-3, 2, 4])",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 4, -3]\noutput : list = [9, 0, -12]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n([0, 4, -3],-1)),3),17)",
    "io_inp": [
      0,
      4,
      -3
    ],
    "io_out": [
      9,
      0,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(input,-1)),3),17)"
  },
  {
    "input": "input : list = [0, -5, 4, 3, -1]\noutput : list = [-15, 0, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take([0, -5, 4, 3, -1],3),3))))",
    "io_inp": [
      0,
      -5,
      4,
      3,
      -1
    ],
    "io_out": [
      -15,
      0,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take(input,3),3))))"
  },
  {
    "input": "input : list = [0, 1, -5]\noutput : list = [-8, -2, -3]",
    "output": "generated_output : list = add_n(reverse([0, 1, -5]),-3)",
    "io_inp": [
      0,
      1,
      -5
    ],
    "io_out": [
      -8,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-4, 2, -4]\noutput : list = [10, 4, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des([-4, 2, -4])),-3),-5)",
    "io_inp": [
      -4,
      2,
      -4
    ],
    "io_out": [
      10,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(input)),-3),-5)"
  },
  {
    "input": "input : list = [-5, 2, -2, -2, 2, 4]\noutput : list = [4, 2, 2, -2, -2, -5]",
    "output": "generated_output : list = take(take(sort_des([-5, 2, -2, -2, 2, 4]),15),28)",
    "io_inp": [
      -5,
      2,
      -2,
      -2,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      2,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),15),28)"
  },
  {
    "input": "input : list = [-4, -4, 1, 2, 4, -3]\noutput : list = [-4, -4, 1, 2, 4, -3]",
    "output": "generated_output : list = reverse(reverse([-4, -4, 1, 2, 4, -3]))",
    "io_inp": [
      -4,
      -4,
      1,
      2,
      4,
      -3
    ],
    "io_out": [
      -4,
      -4,
      1,
      2,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 5, 4, 0]\noutput : list = [5, 4, 0]",
    "output": "generated_output : list = drop([-3, 5, 4, 0],1)",
    "io_inp": [
      -3,
      5,
      4,
      0
    ],
    "io_out": [
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse([2, 2])),2))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(input)),2))"
  },
  {
    "input": "input : list = [5, 2, 2, -4, -1]\noutput : list = [24, 15, 6, 6, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n([5, 2, 2, -4, -1],4)),-3)",
    "io_inp": [
      5,
      2,
      2,
      -4,
      -1
    ],
    "io_out": [
      24,
      15,
      6,
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(input,4)),-3)"
  },
  {
    "input": "input : list = [1, -5, -3, -3]\noutput : list = [10, -20, -10, -10]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n([1, -5, -3, -3],1),-3),4),5)",
    "io_inp": [
      1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      10,
      -20,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(input,1),-3),4),5)"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [-11]",
    "output": "generated_output : list = sort_des(add_n(drop(mul_n(sort_des([-2, 3, -4]),3),2),1))",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(mul_n(sort_des(input),3),2),1))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, -1, 1]\noutput : list = [0, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n([-1, -1, -1, 1],-1),2)))",
    "io_inp": [
      -1,
      -1,
      -1,
      1
    ],
    "io_out": [
      0,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(input,-1),2)))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [3, -5]",
    "output": "generated_output : list = take(take(sort_des(add_n(sort_des([4, -4]),-1)),13),42)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(sort_des(input),-1)),13),42)"
  },
  {
    "input": "input : list = [-1, 5, -2, 5, 4, 4]\noutput : list = [9, -45, 18, -45, -36, -36]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-1, 5, -2, 5, 4, 4],-1),3),3)",
    "io_inp": [
      -1,
      5,
      -2,
      5,
      4,
      4
    ],
    "io_out": [
      9,
      -45,
      18,
      -45,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-1),3),3)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, -32]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(add_n([-4, 3],5),4),-1),32))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(add_n(input,5),4),-1),32))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(reverse([-2, 2]),1)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 2, 1],1)",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -4, 3, 5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(take([4, -4, 3, 5],1),3),4)))",
    "io_inp": [
      4,
      -4,
      3,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(take(input,1),3),4)))"
  },
  {
    "input": "input : list = [1, 4, 1, 1]\noutput : list = [7, 4, 4, 4]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(reverse([1, 4, 1, 1])),26),-3))",
    "io_inp": [
      1,
      4,
      1,
      1
    ],
    "io_out": [
      7,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(reverse(input)),26),-3))"
  },
  {
    "input": "input : list = [0, 4, 4, 1, 0]\noutput : list = [-4, 0, 0, -3, -4]",
    "output": "generated_output : list = add_n([0, 4, 4, 1, 0],-4)",
    "io_inp": [
      0,
      4,
      4,
      1,
      0
    ],
    "io_out": [
      -4,
      0,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des([-2, 2])))))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, 2, 4, -5, 4, 1]\noutput : list = [30, 30, 35, 40, 45, 75]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(add_n([3, 2, 4, -5, 4, 1],-5),-5),-5)))",
    "io_inp": [
      3,
      2,
      4,
      -5,
      4,
      1
    ],
    "io_out": [
      30,
      30,
      35,
      40,
      45,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(add_n(input,-5),-5),-5)))"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [-3, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(add_n([1, -2, -2],-2)),-1)))",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(add_n(input,-2)),-1)))"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-6, -1, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(sub_n([-5, 0, 1],-1)))),-2)",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(sub_n(input,-1)))),-2)"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [24, 6, -3]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(reverse([2, -4, 5]),4)),-3))",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      24,
      6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(reverse(input),4)),-3))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [8, 5]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(sort_des([-3, 0]),-1)),34),5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(sort_des(input),-1)),34),5)"
  },
  {
    "input": "input : list = [-5, -2, 5, 3, -3]\noutput : list = [0, -10, -35, -40, -50]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n([-5, -2, 5, 3, -3],5),-5))),-1)",
    "io_inp": [
      -5,
      -2,
      5,
      3,
      -3
    ],
    "io_out": [
      0,
      -10,
      -35,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n(input,5),-5))),-1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [22, 22]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sub_n([-5, -5],1),-2),1),2))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      22,
      22
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sub_n(input,1),-2),1),2))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [27, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n(sort_des([-2, 5]),5))),2)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      27,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(sort_des(input),5))),2)"
  },
  {
    "input": "input : list = [3, 2, -5, -3, 0]\noutput : list = [5, 4, -3, -1, 2]",
    "output": "generated_output : list = sub_n([3, 2, -5, -3, 0],-2)",
    "io_inp": [
      3,
      2,
      -5,
      -3,
      0
    ],
    "io_out": [
      5,
      4,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [1, 8]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(sub_n([5, -2],3),-3)),24),3)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(sub_n(input,3),-3)),24),3)"
  },
  {
    "input": "input : list = [3, 1, 5, -2]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_des(add_n(take([3, 1, 5, -2],1),1)))",
    "io_inp": [
      3,
      1,
      5,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(input,1),1)))"
  },
  {
    "input": "input : list = [2, 1, -5, -2]\noutput : list = [1, -5, -2]",
    "output": "generated_output : list = drop([2, 1, -5, -2],1)",
    "io_inp": [
      2,
      1,
      -5,
      -2
    ],
    "io_out": [
      1,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = add_n(mul_n([-1, -1, 0],4),5)",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),5)"
  },
  {
    "input": "input : list = [3, 0, 5]\noutput : list = [-15, 0, -9]",
    "output": "generated_output : list = mul_n(reverse([3, 0, 5]),-3)",
    "io_inp": [
      3,
      0,
      5
    ],
    "io_out": [
      -15,
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [5, -3, 3, 5]\noutput : list = [-25, -25, -15, 15]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(mul_n([5, -3, 3, 5],-5),1))))",
    "io_inp": [
      5,
      -3,
      3,
      5
    ],
    "io_out": [
      -25,
      -25,
      -15,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(mul_n(input,-5),1))))"
  },
  {
    "input": "input : list = [-1, 5, -2, 1, 0, 2]\noutput : list = [-3, -2, -1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sub_n([-1, 5, -2, 1, 0, 2],1)))))",
    "io_inp": [
      -1,
      5,
      -2,
      1,
      0,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(sort_asc([-3, 1]),4)),-2))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(sort_asc(input),4)),-2))"
  },
  {
    "input": "input : list = [4, -1, 5, 1]\noutput : list = [54, 6, -18]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(drop([4, -1, 5, 1],1)),-4),2),-3)",
    "io_inp": [
      4,
      -1,
      5,
      1
    ],
    "io_out": [
      54,
      6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(drop(input,1)),-4),2),-3)"
  },
  {
    "input": "input : list = [-4, 2, -3, -2, 2]\noutput : list = [-15, 5, 10, -15, 15]",
    "output": "generated_output : list = take(add_n(take(reverse(mul_n([-4, 2, -3, -2, 2],-5)),8),-5),24)",
    "io_inp": [
      -4,
      2,
      -3,
      -2,
      2
    ],
    "io_out": [
      -15,
      5,
      10,
      -15,
      15
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(mul_n(input,-5)),8),-5),24)"
  },
  {
    "input": "input : list = [-3, -3, 3, 4, -3]\noutput : list = [0, 0, 6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(take([-3, -3, 3, 4, -3],3))),-3))",
    "io_inp": [
      -3,
      -3,
      3,
      4,
      -3
    ],
    "io_out": [
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(take(input,3))),-3))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-12, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n([4, -1],-3))))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(input,-3))))"
  },
  {
    "input": "input : list = [-3, 4, 0, 0, -1, -2]\noutput : list = [-3, -2, -2, 2, -5]",
    "output": "generated_output : list = drop(take(sub_n(reverse([-3, 4, 0, 0, -1, -2]),2),20),1)",
    "io_inp": [
      -3,
      4,
      0,
      0,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(reverse(input),2),20),1)"
  },
  {
    "input": "input : list = [1, -3, 4, 2]\noutput : list = [6, 4, 3, -1]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(add_n([1, -3, 4, 2],1)),5),-1))",
    "io_inp": [
      1,
      -3,
      4,
      2
    ],
    "io_out": [
      6,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(add_n(input,1)),5),-1))"
  },
  {
    "input": "input : list = [4, 5, 3, 3, -5, -2]\noutput : list = [10, 4, -6, -6, -8, -10]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(mul_n([4, 5, 3, 3, -5, -2],2),-1),1),-1))",
    "io_inp": [
      4,
      5,
      3,
      3,
      -5,
      -2
    ],
    "io_out": [
      10,
      4,
      -6,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(mul_n(input,2),-1),1),-1))"
  },
  {
    "input": "input : list = [-2, 1, 0, 0, 3, 2]\noutput : list = [8, -4, 0, 0, -12, -8]",
    "output": "generated_output : list = mul_n([-2, 1, 0, 0, 3, 2],-4)",
    "io_inp": [
      -2,
      1,
      0,
      0,
      3,
      2
    ],
    "io_out": [
      8,
      -4,
      0,
      0,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, 3, 1, -1, 5]\noutput : list = [-25, -15, 5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(drop([2, 3, 1, -1, 5],2),-4))),5)",
    "io_inp": [
      2,
      3,
      1,
      -1,
      5
    ],
    "io_out": [
      -25,
      -15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(drop(input,2),-4))),5)"
  },
  {
    "input": "input : list = [3, 3, 2, -5]\noutput : list = [-13, -13, -9, 19]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_des([3, 3, 2, -5]),-2),1),2),3)",
    "io_inp": [
      3,
      3,
      2,
      -5
    ],
    "io_out": [
      -13,
      -13,
      -9,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_des(input),-2),1),2),3)"
  },
  {
    "input": "input : list = [-2, -2, -4, -1, 0]\noutput : list = [10, 2, 2, -2, -6]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(sort_asc([-2, -2, -4, -1, 0])),-4),-1),-5)",
    "io_inp": [
      -2,
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      10,
      2,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(sort_asc(input)),-4),-1),-5)"
  },
  {
    "input": "input : list = [2, 2, -3, -1, 5, 2]\noutput : list = [-1, -4, -4, -4, -7, -9]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(sort_des([2, 2, -3, -1, 5, 2])),-5),11),-1)",
    "io_inp": [
      2,
      2,
      -3,
      -1,
      5,
      2
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(sort_des(input)),-5),11),-1)"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 4, 5],1)",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 4, 3]\noutput : list = [-35, -40, -40]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(add_n([4, 4, 3],4)),-5),1))",
    "io_inp": [
      4,
      4,
      3
    ],
    "io_out": [
      -35,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(add_n(input,4)),-5),1))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc([-1, 5])",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, 5, 5]\noutput : list = [25, 25, -10, -20]",
    "output": "generated_output : list = take(mul_n(sort_des([-4, -2, 5, 5]),5),27)",
    "io_inp": [
      -4,
      -2,
      5,
      5
    ],
    "io_out": [
      25,
      25,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),5),27)"
  },
  {
    "input": "input : list = [-2, -4, -5, -3]\noutput : list = [-3, -5, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, -5, -3])",
    "io_inp": [
      -2,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse([-4, 5]),1)))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(input),1)))"
  },
  {
    "input": "input : list = [-5, -2, -3, -4, -5]\noutput : list = [-2, 1, 0, -1, -2]",
    "output": "generated_output : list = add_n([-5, -2, -3, -4, -5],3)",
    "io_inp": [
      -5,
      -2,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -2,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, 5, 5, 0, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = drop(drop([0, 5, 5, 0, -1, 0],2),3)",
    "io_inp": [
      0,
      5,
      5,
      0,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(drop(input,2),3)"
  },
  {
    "input": "input : list = [-2, -1, 5, -2, 0, -5]\noutput : list = [4, -1, -2, -3, -3, -6]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_des([-2, -1, 5, -2, 0, -5]),-1))))",
    "io_inp": [
      -2,
      -1,
      5,
      -2,
      0,
      -5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [-2, -5, 3]\noutput : list = [-5, -2, 3]",
    "output": "generated_output : list = reverse(sort_des([-2, -5, 3]))",
    "io_inp": [
      -2,
      -5,
      3
    ],
    "io_out": [
      -5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -2, 0, 3, 5, 4]\noutput : list = [7, 6, 5, 2, 0, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n([-5, -2, 0, 3, 5, 4],4))),-2))",
    "io_inp": [
      -5,
      -2,
      0,
      3,
      5,
      4
    ],
    "io_out": [
      7,
      6,
      5,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n(input,4))),-2))"
  },
  {
    "input": "input : list = [5, 4, -2, 2]\noutput : list = [-10, 10, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_asc([5, 4, -2, 2]))),5))",
    "io_inp": [
      5,
      4,
      -2,
      2
    ],
    "io_out": [
      -10,
      10,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [-6, -6, -3]",
    "output": "generated_output : list = take(mul_n([2, 2, 1],-3),17)",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),17)"
  },
  {
    "input": "input : list = [0, -1, -5]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = take(mul_n([0, -1, -5],1),10)",
    "io_inp": [
      0,
      -1,
      -5
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(input,1),10)"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [-1, -3, -9]",
    "output": "generated_output : list = add_n(sort_des([3, 1, -5]),-4)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      -1,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-3, 2, -3, 5, 4, -2]\noutput : list = [-3, -3, -2, 2, 4, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(sort_asc([-3, 2, -3, 5, 4, -2])))),7)",
    "io_inp": [
      -3,
      2,
      -3,
      5,
      4,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(sort_asc(input)))),7)"
  },
  {
    "input": "input : list = [3, 2, 4, 4, -1, -4]\noutput : list = [4, 4, 3, 2, -1, -4]",
    "output": "generated_output : list = sort_des(sort_asc([3, 2, 4, 4, -1, -4]))",
    "io_inp": [
      3,
      2,
      4,
      4,
      -1,
      -4
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 0, 5]\noutput : list = [15, -5]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(drop([-1, 0, 5],1)),4),5))",
    "io_inp": [
      -1,
      0,
      5
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(drop(input,1)),4),5))"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [-6, 12, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([-2, 4, 4])),3)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      -6,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),3)"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [-4, -4, 3]",
    "output": "generated_output : list = reverse(sort_des([-4, -4, 3]))",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      -4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, -4, -4, 5]\noutput : list = [6, 3, -3, -3]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(add_n([2, -4, -4, 5],3)),-2)),5)",
    "io_inp": [
      2,
      -4,
      -4,
      5
    ],
    "io_out": [
      6,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(add_n(input,3)),-2)),5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [1, 9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(sort_asc([-5, 3])),5)),-1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(sort_asc(input)),5)),-1)"
  },
  {
    "input": "input : list = [0, -3, -2, 1]\noutput : list = [1, -2, -3, 0]",
    "output": "generated_output : list = reverse([0, -3, -2, 1])",
    "io_inp": [
      0,
      -3,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2, 5, 5, 0, -3]\noutput : list = [1, -3, 4, 4, -1, -4]",
    "output": "generated_output : list = take(sub_n(add_n([2, -2, 5, 5, 0, -3],1),2),15)",
    "io_inp": [
      2,
      -2,
      5,
      5,
      0,
      -3
    ],
    "io_out": [
      1,
      -3,
      4,
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,1),2),15)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-7, 1]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(sort_asc([5, -3])),11),-4))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(sort_asc(input)),11),-4))"
  },
  {
    "input": "input : list = [3, 3, -2, 0]\noutput : list = [-50, 0, 75, 75]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(mul_n([3, 3, -2, 0],5))),6),5)",
    "io_inp": [
      3,
      3,
      -2,
      0
    ],
    "io_out": [
      -50,
      0,
      75,
      75
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(mul_n(input,5))),6),5)"
  },
  {
    "input": "input : list = [-2, -1, -3, -2, 1]\noutput : list = [-8, -5]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(drop([-2, -1, -3, -2, 1],3)),5),1))",
    "io_inp": [
      -2,
      -1,
      -3,
      -2,
      1
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(drop(input,3)),5),1))"
  },
  {
    "input": "input : list = [-2, -4, -3, 2, 1]\noutput : list = [2, 1, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-2, -4, -3, 2, 1])",
    "io_inp": [
      -2,
      -4,
      -3,
      2,
      1
    ],
    "io_out": [
      2,
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0, 0, -5]\noutput : list = [-6, -3, -1, -1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(sort_asc([-2, 0, 0, -5]),21),1)))",
    "io_inp": [
      -2,
      0,
      0,
      -5
    ],
    "io_out": [
      -6,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(sort_asc(input),21),1)))"
  },
  {
    "input": "input : list = [0, -4, 4, 4, -2, 1]\noutput : list = [16]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(sort_asc([0, -4, 4, 4, -2, 1]),1),-4)))",
    "io_inp": [
      0,
      -4,
      4,
      4,
      -2,
      1
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(sort_asc(input),1),-4)))"
  },
  {
    "input": "input : list = [-5, -3, 3, 0, 1, 3]\noutput : list = [-9, -7, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(take([-5, -3, 3, 0, 1, 3],3))),4))",
    "io_inp": [
      -5,
      -3,
      3,
      0,
      1,
      3
    ],
    "io_out": [
      -9,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(take(input,3))),4))"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-3, -5, -3])))",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-2, 3, 1, 4, 1]\noutput : list = [25, 100, 25, 75, -50]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-2, 3, 1, 4, 1]),5),5)",
    "io_inp": [
      -2,
      3,
      1,
      4,
      1
    ],
    "io_out": [
      25,
      100,
      25,
      75,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),5),5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(add_n([5, 2],1)),-4),5),1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(add_n(input,1)),-4),5),1)"
  },
  {
    "input": "input : list = [-2, -2, -5]\noutput : list = [-10, -16]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(drop([-2, -2, -5],1),-3))),2)",
    "io_inp": [
      -2,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(drop(input,1),-3))),2)"
  },
  {
    "input": "input : list = [-5, -4, -3, 0]\noutput : list = [-9, -8, -7, -4]",
    "output": "generated_output : list = sort_asc(sub_n([-5, -4, -3, 0],4))",
    "io_inp": [
      -5,
      -4,
      -3,
      0
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [5, -5, 5, 2, 5, -4]\noutput : list = [11, 1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(take([5, -5, 5, 2, 5, -4],2)),-2),-4))",
    "io_inp": [
      5,
      -5,
      5,
      2,
      5,
      -4
    ],
    "io_out": [
      11,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(take(input,2)),-2),-4))"
  },
  {
    "input": "input : list = [2, -2, 0, -5, 5]\noutput : list = [-9, 1]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(drop([2, -2, 0, -5, 5],3),-2),-1),2),-5)",
    "io_inp": [
      2,
      -2,
      0,
      -5,
      5
    ],
    "io_out": [
      -9,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(drop(input,3),-2),-1),2),-5)"
  },
  {
    "input": "input : list = [-1, -2, -1, 2, 5]\noutput : list = [3, 6, 3, -6, -15]",
    "output": "generated_output : list = mul_n([-1, -2, -1, 2, 5],-3)",
    "io_inp": [
      -1,
      -2,
      -1,
      2,
      5
    ],
    "io_out": [
      3,
      6,
      3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, 5, 0, 3, -4, 0]\noutput : list = [-3, -7, 0, -3, 2, 1]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sub_n([4, 5, 0, 3, -4, 0],4),4)),-2),-1)",
    "io_inp": [
      4,
      5,
      0,
      3,
      -4,
      0
    ],
    "io_out": [
      -3,
      -7,
      0,
      -3,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sub_n(input,4),4)),-2),-1)"
  },
  {
    "input": "input : list = [3, -5, -4, -3, 5, 3]\noutput : list = [2, 0, 0, -6, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(reverse([3, -5, -4, -3, 5, 3])),2),5))",
    "io_inp": [
      3,
      -5,
      -4,
      -3,
      5,
      3
    ],
    "io_out": [
      2,
      0,
      0,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(reverse(input)),2),5))"
  },
  {
    "input": "input : list = [3, 1, 2, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(drop([3, 1, 2, 1],2))),3))",
    "io_inp": [
      3,
      1,
      2,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(drop(input,2))),3))"
  },
  {
    "input": "input : list = [0, -4, 0, 1, 3]\noutput : list = [2, 6, 6, 7, 9]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(add_n([0, -4, 0, 1, 3],3))),3))",
    "io_inp": [
      0,
      -4,
      0,
      1,
      3
    ],
    "io_out": [
      2,
      6,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(add_n(input,3))),3))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(add_n([0, -2],2))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [4, -5, 3, -1, 3]\noutput : list = [7, 7, 3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(drop([4, -5, 3, -1, 3],2),5),1)))",
    "io_inp": [
      4,
      -5,
      3,
      -1,
      3
    ],
    "io_out": [
      7,
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(drop(input,2),5),1)))"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sub_n(drop(mul_n(sub_n([-4, -5, 5],5),5),2),-3))",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(mul_n(sub_n(input,5),5),2),-3))"
  },
  {
    "input": "input : list = [0, 5, 0, -3, 2, -1]\noutput : list = [2, 4, 5, 5, 7, 10]",
    "output": "generated_output : list = sort_asc(sub_n([0, 5, 0, -3, 2, -1],-5))",
    "io_inp": [
      0,
      5,
      0,
      -3,
      2,
      -1
    ],
    "io_out": [
      2,
      4,
      5,
      5,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-5, -4, 5]\noutput : list = [14]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(take([-5, -4, 5],1)),-3),4),-3)",
    "io_inp": [
      -5,
      -4,
      5
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(take(input,1)),-3),4),-3)"
  },
  {
    "input": "input : list = [-3, 2, 5, 2, 4]\noutput : list = [1, 6, 9, 6, 8]",
    "output": "generated_output : list = take(sub_n([-3, 2, 5, 2, 4],-4),8)",
    "io_inp": [
      -3,
      2,
      5,
      2,
      4
    ],
    "io_out": [
      1,
      6,
      9,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),8)"
  },
  {
    "input": "input : list = [4, -2, 1, 5, -4, 0]\noutput : list = [8, 7, 4, 3, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(take(mul_n([4, -2, 1, 5, -4, 0],1),8),18)),-3)",
    "io_inp": [
      4,
      -2,
      1,
      5,
      -4,
      0
    ],
    "io_out": [
      8,
      7,
      4,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(mul_n(input,1),8),18)),-3)"
  },
  {
    "input": "input : list = [1, 1, -5, 0, 1, -3]\noutput : list = [-4, -4, -10, -5, -4, -8]",
    "output": "generated_output : list = sub_n([1, 1, -5, 0, 1, -3],5)",
    "io_inp": [
      1,
      1,
      -5,
      0,
      1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -10,
      -5,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, 0, 4, -2, -4, -3]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = take(add_n(take(sort_des(drop([2, 0, 4, -2, -4, -3],3)),7),1),53)",
    "io_inp": [
      2,
      0,
      4,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(drop(input,3)),7),1),53)"
  },
  {
    "input": "input : list = [2, -4, 2, -1, 5, 2]\noutput : list = [-150, -105, -105, -105, -60, -15]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(reverse([2, -4, 2, -1, 5, 2]),5),-3),5))",
    "io_inp": [
      2,
      -4,
      2,
      -1,
      5,
      2
    ],
    "io_out": [
      -150,
      -105,
      -105,
      -105,
      -60,
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(reverse(input),5),-3),5))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = reverse([2, -4])",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, 3, 4, 1, -5]\noutput : list = [-21, -1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(mul_n(take([0, 5, 3, 4, 1, -5],2),-4))),1)",
    "io_inp": [
      0,
      5,
      3,
      4,
      1,
      -5
    ],
    "io_out": [
      -21,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(mul_n(take(input,2),-4))),1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-2, 6]",
    "output": "generated_output : list = reverse(mul_n([-3, 1],-2))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 3, 5]\noutput : list = [-2, 3, 5]",
    "output": "generated_output : list = take(sub_n(add_n([-2, 3, 5],-2),-2),6)",
    "io_inp": [
      -2,
      3,
      5
    ],
    "io_out": [
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-2),-2),6)"
  },
  {
    "input": "input : list = [2, 4, 0, 4, -5, 3]\noutput : list = [-9, -4, -2, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(reverse([2, 4, 0, 4, -5, 3]),1),-4)))",
    "io_inp": [
      2,
      4,
      0,
      4,
      -5,
      3
    ],
    "io_out": [
      -9,
      -4,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(reverse(input),1),-4)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = reverse([2, -4])",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, 0, 1, -2]\noutput : list = [0, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(reverse([-5, 3, 0, 1, -2])),3)))",
    "io_inp": [
      -5,
      3,
      0,
      1,
      -2
    ],
    "io_out": [
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(reverse(input)),3)))"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(drop([5, -3, 0],1))),3))",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(drop(input,1))),3))"
  },
  {
    "input": "input : list = [1, -5, 5, -4, -5]\noutput : list = [5, -1, 9, 0, -1]",
    "output": "generated_output : list = add_n([1, -5, 5, -4, -5],4)",
    "io_inp": [
      1,
      -5,
      5,
      -4,
      -5
    ],
    "io_out": [
      5,
      -1,
      9,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-3, 0, 0, -3, 0]\noutput : list = [-10, -10, 5, 5, 5]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(reverse([-3, 0, 0, -3, 0]),1)),5))",
    "io_inp": [
      -3,
      0,
      0,
      -3,
      0
    ],
    "io_out": [
      -10,
      -10,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(reverse(input),1)),5))"
  },
  {
    "input": "input : list = [-3, -5, 1, 1]\noutput : list = [1, 1, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(sort_des([-3, -5, 1, 1]),11))))",
    "io_inp": [
      -3,
      -5,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(sort_des(input),11))))"
  },
  {
    "input": "input : list = [0, 4, 5]\noutput : list = [5, 4, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(add_n([0, 4, 5],-1),9),-3)),-4)",
    "io_inp": [
      0,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(add_n(input,-1),9),-3)),-4)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [63, 69]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_des([-4, -3]),-5),2),-5),-3)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      63,
      69
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_des(input),-5),2),-5),-3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [6, -10]",
    "output": "generated_output : list = mul_n(sort_asc([-3, 5]),-2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-1, -2, 2, -3]\noutput : list = [-6, -1, -5, -4]",
    "output": "generated_output : list = take(sub_n(reverse([-1, -2, 2, -3]),3),23)",
    "io_inp": [
      -1,
      -2,
      2,
      -3
    ],
    "io_out": [
      -6,
      -1,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),3),23)"
  },
  {
    "input": "input : list = [2, 4, -3, 4]\noutput : list = [-5, 2]",
    "output": "generated_output : list = take(sub_n(add_n(drop([2, 4, -3, 4],2),2),4),35)",
    "io_inp": [
      2,
      4,
      -3,
      4
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(drop(input,2),2),4),35)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0]",
    "output": "generated_output : list = take(reverse(take(reverse(sort_des([0, 1])),1)),18)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(sort_des(input)),1)),18)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [-100, 0, 75]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_des([0, -4, 3]),5))),5)",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      -100,
      0,
      75
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_des(input),5))),5)"
  },
  {
    "input": "input : list = [-5, 4, -1, 4]\noutput : list = [-5, 4, -1, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-5, 4, -1, 4],-1),2),3)",
    "io_inp": [
      -5,
      4,
      -1,
      4
    ],
    "io_out": [
      -5,
      4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-1),2),3)"
  },
  {
    "input": "input : list = [-2, 0, 5, 3, 5]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc(take([-2, 0, 5, 3, 5],1)),29),-5),3)",
    "io_inp": [
      -2,
      0,
      5,
      3,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(take(input,1)),29),-5),3)"
  },
  {
    "input": "input : list = [-2, 3, -3, 5, 3]\noutput : list = [-3, -2, 3, 3, 5]",
    "output": "generated_output : list = take(reverse(sort_des(reverse([-2, 3, -3, 5, 3]))),31)",
    "io_inp": [
      -2,
      3,
      -3,
      5,
      3
    ],
    "io_out": [
      -3,
      -2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(input))),31)"
  },
  {
    "input": "input : list = [0, -4, 2, 5, -4]\noutput : list = [3, 0, -2, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(reverse([0, -4, 2, 5, -4])))),-2)",
    "io_inp": [
      0,
      -4,
      2,
      5,
      -4
    ],
    "io_out": [
      3,
      0,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [-4, 5, 1, 4]\noutput : list = [-10, -1, -5, -2]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-4, 5, 1, 4],4),4),2)",
    "io_inp": [
      -4,
      5,
      1,
      4
    ],
    "io_out": [
      -10,
      -1,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,4),4),2)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-18, -12]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(reverse([5, 3]),1),-3),18))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -18,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(reverse(input),1),-3),18))"
  },
  {
    "input": "input : list = [-1, 5, 3, -1]\noutput : list = [2, 6, 8, 2]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(sub_n([-1, 5, 3, -1],-5),4),4),-2))",
    "io_inp": [
      -1,
      5,
      3,
      -1
    ],
    "io_out": [
      2,
      6,
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(sub_n(input,-5),4),4),-2))"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [-13, -7, -4]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(mul_n([0, -2, -3],-1),5),3),2),7)",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      -13,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(mul_n(input,-1),5),3),2),7)"
  },
  {
    "input": "input : list = [-5, -3, 3, 3, 1]\noutput : list = [5, 5, 3, -1, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_des([-5, -3, 3, 3, 1]),12))),-2)",
    "io_inp": [
      -5,
      -3,
      3,
      3,
      1
    ],
    "io_out": [
      5,
      5,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_des(input),12))),-2)"
  },
  {
    "input": "input : list = [3, 4, -4, 5, 3, 1]\noutput : list = [-1, 1, 3, -6, 2, 1]",
    "output": "generated_output : list = take(reverse(take(take(add_n([3, 4, -4, 5, 3, 1],-2),18),19)),33)",
    "io_inp": [
      3,
      4,
      -4,
      5,
      3,
      1
    ],
    "io_out": [
      -1,
      1,
      3,
      -6,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(add_n(input,-2),18),19)),33)"
  },
  {
    "input": "input : list = [-4, -5, 2, 1, -1]\noutput : list = [-21, -26, 9, 4, -6]",
    "output": "generated_output : list = take(add_n(mul_n(take(mul_n([-4, -5, 2, 1, -1],5),25),1),-1),10)",
    "io_inp": [
      -4,
      -5,
      2,
      1,
      -1
    ],
    "io_out": [
      -21,
      -26,
      9,
      4,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(mul_n(input,5),25),1),-1),10)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [25, 20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(reverse([1, 2]),-4),-5),-2),5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(reverse(input),-4),-5),-2),5)"
  },
  {
    "input": "input : list = [-1, -1, -1, -1, 1]\noutput : list = [3, 5]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(drop([-1, -1, -1, -1, 1],3),-4),17)),-1)",
    "io_inp": [
      -1,
      -1,
      -1,
      -1,
      1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(drop(input,3),-4),17)),-1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n([4, -4],-2),2),3))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(input,-2),2),3))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_asc([5, 2]),3)),2))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_asc(input),3)),2))"
  },
  {
    "input": "input : list = [-5, 2, 4, 0, 5]\noutput : list = [70, 20, 60, 40, -30]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(sub_n([-5, 2, 4, 0, 5],-2),10),5)),2)",
    "io_inp": [
      -5,
      2,
      4,
      0,
      5
    ],
    "io_out": [
      70,
      20,
      60,
      40,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(sub_n(input,-2),10),5)),2)"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(mul_n(take([-1, -1, 5],1),2))",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),2))"
  },
  {
    "input": "input : list = [2, 5, 1, -2]\noutput : list = [-5, -8]",
    "output": "generated_output : list = drop(sub_n(sub_n(sub_n([2, 5, 1, -2],2),-1),5),2)",
    "io_inp": [
      2,
      5,
      1,
      -2
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = drop(sub_n(sub_n(sub_n(input,2),-1),5),2)"
  },
  {
    "input": "input : list = [0, 3, 4, 5]\noutput : list = [5, 2, 1, 0]",
    "output": "generated_output : list = add_n(mul_n([0, 3, 4, 5],-1),5)",
    "io_inp": [
      0,
      3,
      4,
      5
    ],
    "io_out": [
      5,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [4, -1, 0, -2]\noutput : list = [2, 10, 12, 14]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(sort_asc([4, -1, 0, -2]),5),-2),10))",
    "io_inp": [
      4,
      -1,
      0,
      -2
    ],
    "io_out": [
      2,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(sort_asc(input),5),-2),10))"
  },
  {
    "input": "input : list = [5, 0, 2, -5, -4, 5]\noutput : list = [-9, -8, -4, -2, 1, 1]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(sub_n([5, 0, 2, -5, -4, 5],4)),37),33))",
    "io_inp": [
      5,
      0,
      2,
      -5,
      -4,
      5
    ],
    "io_out": [
      -9,
      -8,
      -4,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(sub_n(input,4)),37),33))"
  },
  {
    "input": "input : list = [-3, -4, 5, -2, -5, 3]\noutput : list = [9, 12, -15, 6, 15, -9]",
    "output": "generated_output : list = mul_n([-3, -4, 5, -2, -5, 3],-3)",
    "io_inp": [
      -3,
      -4,
      5,
      -2,
      -5,
      3
    ],
    "io_out": [
      9,
      12,
      -15,
      6,
      15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5, 4, 2]\noutput : list = [-7, -1, 0, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(sort_asc([1, -5, 4, 2])))),-2)",
    "io_inp": [
      1,
      -5,
      4,
      2
    ],
    "io_out": [
      -7,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [16, -8, -8]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(add_n([-2, 4, 4],2),5)),-1),-4)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      16,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(add_n(input,2),5)),-1),-4)"
  },
  {
    "input": "input : list = [4, 2, -5, -4, 5]\noutput : list = [26, 23, 17, -1, -4]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(sort_des([4, 2, -5, -4, 5]),-2),3),30),-5)",
    "io_inp": [
      4,
      2,
      -5,
      -4,
      5
    ],
    "io_out": [
      26,
      23,
      17,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(sort_des(input),-2),3),30),-5)"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(take([-1, -2, 3],1),2))))",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(take(input,1),2))))"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [5, -2, 0]",
    "output": "generated_output : list = add_n(sub_n(add_n([2, -5, -3],-5),-5),3)",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,-5),-5),3)"
  },
  {
    "input": "input : list = [2, -1, 3, 2]\noutput : list = [8, 20, 4, 8]",
    "output": "generated_output : list = take(mul_n(sub_n([2, -1, 3, 2],4),-4),17)",
    "io_inp": [
      2,
      -1,
      3,
      2
    ],
    "io_out": [
      8,
      20,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,4),-4),17)"
  },
  {
    "input": "input : list = [-2, 2, 4, -5, 2, -4]\noutput : list = [-10, -6, -4, -13, -6, -12]",
    "output": "generated_output : list = add_n(sub_n([-2, 2, 4, -5, 2, -4],5),-3)",
    "io_inp": [
      -2,
      2,
      4,
      -5,
      2,
      -4
    ],
    "io_out": [
      -10,
      -6,
      -4,
      -13,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-3)"
  },
  {
    "input": "input : list = [-3, 2, 1]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(take(add_n([-3, 2, 1],1),12)),10))",
    "io_inp": [
      -3,
      2,
      1
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(add_n(input,1),12)),10))"
  },
  {
    "input": "input : list = [-1, -2, -1, 0]\noutput : list = [-10, -12, -12, -14]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(sort_asc([-1, -2, -1, 0]),-5))),2)",
    "io_inp": [
      -1,
      -2,
      -1,
      0
    ],
    "io_out": [
      -10,
      -12,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(sort_asc(input),-5))),2)"
  },
  {
    "input": "input : list = [-4, 5, -1, -2]\noutput : list = [25, -5, -10, -20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sort_asc([-4, 5, -1, -2])),5)))",
    "io_inp": [
      -4,
      5,
      -1,
      -2
    ],
    "io_out": [
      25,
      -5,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [5, 4, 3]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take([5, 4, 3],1)),-5),2)",
    "io_inp": [
      5,
      4,
      3
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(input,1)),-5),2)"
  },
  {
    "input": "input : list = [-2, 1, 2, 1, -1]\noutput : list = [0, -2, -2, -6, -8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(reverse([-2, 1, 2, 1, -1]),-2))),2)",
    "io_inp": [
      -2,
      1,
      2,
      1,
      -1
    ],
    "io_out": [
      0,
      -2,
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(reverse(input),-2))),2)"
  },
  {
    "input": "input : list = [5, 3, -4, 0]\noutput : list = [3, 1, -6, -2]",
    "output": "generated_output : list = sub_n([5, 3, -4, 0],2)",
    "io_inp": [
      5,
      3,
      -4,
      0
    ],
    "io_out": [
      3,
      1,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 3, -5, 2, 1]\noutput : list = [-20, 12, -20, 8, 4]",
    "output": "generated_output : list = mul_n([-5, 3, -5, 2, 1],4)",
    "io_inp": [
      -5,
      3,
      -5,
      2,
      1
    ],
    "io_out": [
      -20,
      12,
      -20,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 5, -1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(drop([2, 5, -1, -3],2))",
    "io_inp": [
      2,
      5,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-3, -1, -3, 5, -1, 3]\noutput : list = [-92, -60, 4, 4, 36, 36]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(mul_n([-3, -1, -3, 5, -1, 3],4),-3),-4)))",
    "io_inp": [
      -3,
      -1,
      -3,
      5,
      -1,
      3
    ],
    "io_out": [
      -92,
      -60,
      4,
      4,
      36,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(mul_n(input,4),-3),-4)))"
  },
  {
    "input": "input : list = [-4, 2, 2, -1, 2, -4]\noutput : list = [-5, -5, -5, -8, -11, -11]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(reverse([-4, 2, 2, -1, 2, -4])),-2)),5)",
    "io_inp": [
      -4,
      2,
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -8,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(reverse(input)),-2)),5)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(reverse([-1, -2]),-3),1),-1))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(reverse(input),-3),1),-1))"
  },
  {
    "input": "input : list = [-4, 1, 1, 4]\noutput : list = [-115, -40, -40, 5]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(add_n([-4, 1, 1, 4],-4),5),3),17),-5)",
    "io_inp": [
      -4,
      1,
      1,
      4
    ],
    "io_out": [
      -115,
      -40,
      -40,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(add_n(input,-4),5),3),17),-5)"
  },
  {
    "input": "input : list = [-5, 3, 2, -2, -1, 0]\noutput : list = [-25, 15, 10, -10, -5, 0]",
    "output": "generated_output : list = mul_n([-5, 3, 2, -2, -1, 0],5)",
    "io_inp": [
      -5,
      3,
      2,
      -2,
      -1,
      0
    ],
    "io_out": [
      -25,
      15,
      10,
      -10,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = mul_n([2, 2],2)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, 5, -3, 4, -2, -2]\noutput : list = [-6, -5, -5, -1, 1, 2]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(sort_des([2, 5, -3, 4, -2, -2])),-3)),42)",
    "io_inp": [
      2,
      5,
      -3,
      4,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(sort_des(input)),-3)),42)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc([-4, -2])",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, 2]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_asc([3, 5, 2]),1))))",
    "io_inp": [
      3,
      5,
      2
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [5, 4, -2, 4, 3]\noutput : list = [-2, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 4, -2, 4, 3])",
    "io_inp": [
      5,
      4,
      -2,
      4,
      3
    ],
    "io_out": [
      -2,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 2, 0, 0, -3, 3]\noutput : list = [9, 8, 8, 6, 6, 3]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(add_n([2, 2, 0, 0, -3, 3],4)),-2),32))",
    "io_inp": [
      2,
      2,
      0,
      0,
      -3,
      3
    ],
    "io_out": [
      9,
      8,
      8,
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(add_n(input,4)),-2),32))"
  },
  {
    "input": "input : list = [3, -4, -4, -2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(mul_n(take([3, -4, -4, -2],1),1))",
    "io_inp": [
      3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),1))"
  },
  {
    "input": "input : list = [3, 3, 2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 3, 2],1)",
    "io_inp": [
      3,
      3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 0, 4, -1]\noutput : list = [4, -1, 3, -2]",
    "output": "generated_output : list = add_n([5, 0, 4, -1],-1)",
    "io_inp": [
      5,
      0,
      4,
      -1
    ],
    "io_out": [
      4,
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [-5, -2, 7]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sub_n([1, -2, 2],-1)),-3)),4)",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      -5,
      -2,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sub_n(input,-1)),-3)),4)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [5, -13]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(sub_n([4, -5],-2),-2)),-3),2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      5,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(sub_n(input,-2),-2)),-3),2)"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = add_n(take(take(sort_des([1, -1, 4]),3),3),1)",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(input),3),3),1)"
  },
  {
    "input": "input : list = [2, 4, -3, 5, 2, 1]\noutput : list = [-14, 10, 1, -2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(drop([2, 4, -3, 5, 2, 1],2),-2),3),-4),3)",
    "io_inp": [
      2,
      4,
      -3,
      5,
      2,
      1
    ],
    "io_out": [
      -14,
      10,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(drop(input,2),-2),3),-4),3)"
  },
  {
    "input": "input : list = [2, 2, 3, 1, -3, 3]\noutput : list = [-12, -12, -9, -9, -6]",
    "output": "generated_output : list = take(take(mul_n(add_n(sort_des([2, 2, 3, 1, -3, 3]),1),-3),5),41)",
    "io_inp": [
      2,
      2,
      3,
      1,
      -3,
      3
    ],
    "io_out": [
      -12,
      -12,
      -9,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(sort_des(input),1),-3),5),41)"
  },
  {
    "input": "input : list = [-1, 1, -5, -3]\noutput : list = [-2, 0, -6, -4]",
    "output": "generated_output : list = sub_n([-1, 1, -5, -3],1)",
    "io_inp": [
      -1,
      1,
      -5,
      -3
    ],
    "io_out": [
      -2,
      0,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, -2, -2, -2, 0]\noutput : list = [-4, -4, -4, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des([1, -2, -2, -2, 0]),1),-2)))",
    "io_inp": [
      1,
      -2,
      -2,
      -2,
      0
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des(input),1),-2)))"
  },
  {
    "input": "input : list = [3, -3, 1, 5, -4, -3]\noutput : list = [-29, -25, -25, -9, -1, 7]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(add_n([3, -3, 1, 5, -4, -3],-4)),4),3))",
    "io_inp": [
      3,
      -3,
      1,
      5,
      -4,
      -3
    ],
    "io_out": [
      -29,
      -25,
      -25,
      -9,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(add_n(input,-4)),4),3))"
  },
  {
    "input": "input : list = [-5, 5, -5, -4, 2]\noutput : list = [-5, -5, 5]",
    "output": "generated_output : list = sort_asc(take([-5, 5, -5, -4, 2],3))",
    "io_inp": [
      -5,
      5,
      -5,
      -4,
      2
    ],
    "io_out": [
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [5, -11, -15]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(sort_des([0, 5, 4]),-4)),3),-2)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      5,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(sort_des(input),-4)),3),-2)"
  },
  {
    "input": "input : list = [5, 4, 4, 5, -1, 5]\noutput : list = [4, 4, 5, 5, 5]",
    "output": "generated_output : list = drop(sort_asc([5, 4, 4, 5, -1, 5]),1)",
    "io_inp": [
      5,
      4,
      4,
      5,
      -1,
      5
    ],
    "io_out": [
      4,
      4,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-5, 1, -5]\noutput : list = [-8, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(drop([-5, 1, -5],1),-3)),-2))",
    "io_inp": [
      -5,
      1,
      -5
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(drop(input,1),-3)),-2))"
  },
  {
    "input": "input : list = [1, 1, -4, 1, -2]\noutput : list = [0, 4, 10, 10, 10]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sub_n([1, 1, -4, 1, -2],-4),2)),3),3)",
    "io_inp": [
      1,
      1,
      -4,
      1,
      -2
    ],
    "io_out": [
      0,
      4,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sub_n(input,-4),2)),3),3)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [7, 10]",
    "output": "generated_output : list = add_n(sub_n([-1, 2],-4),4)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),4)"
  },
  {
    "input": "input : list = [0, 1, 3, 4, -2]\noutput : list = [2, 1, -1, -2, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(sort_asc([0, 1, 3, 4, -2]),-3),3)),-2)",
    "io_inp": [
      0,
      1,
      3,
      4,
      -2
    ],
    "io_out": [
      2,
      1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(sort_asc(input),-3),3)),-2)"
  },
  {
    "input": "input : list = [0, 0, 3, -1]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(take(drop(sort_asc(sort_asc([0, 0, 3, -1])),2),26))",
    "io_inp": [
      0,
      0,
      3,
      -1
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(sort_asc(sort_asc(input)),2),26))"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [4, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(add_n([-2, -3, 0],-1),3))),-5)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(add_n(input,-1),3))),-5)"
  },
  {
    "input": "input : list = [3, 1, 0, -1]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(take([3, 1, 0, -1],2),-4),-5)))",
    "io_inp": [
      3,
      1,
      0,
      -1
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(take(input,2),-4),-5)))"
  },
  {
    "input": "input : list = [-3, -4, 1, 5, 0, 0]\noutput : list = [0, 0, 5, 1, -4, -3]",
    "output": "generated_output : list = mul_n(reverse([-3, -4, 1, 5, 0, 0]),1)",
    "io_inp": [
      -3,
      -4,
      1,
      5,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      5,
      1,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [10, 14, 10]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(reverse([2, 4, 2]),1)),-3),2)",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      10,
      14,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(reverse(input),1)),-3),2)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [7, 10, 14]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(reverse([-3, 4, 0]),-5)),37),5)",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      7,
      10,
      14
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(reverse(input),-5)),37),5)"
  },
  {
    "input": "input : list = [-1, -2, 3, -4]\noutput : list = [-8, -6, -5, -1]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(sort_des([-1, -2, 3, -4])))),-4)",
    "io_inp": [
      -1,
      -2,
      3,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [4, -5, -4, 4, 5, -5]\noutput : list = [37, 29, 29, -35, -43, -43]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des([4, -5, -4, 4, 5, -5]),4),1),2),1)",
    "io_inp": [
      4,
      -5,
      -4,
      4,
      5,
      -5
    ],
    "io_out": [
      37,
      29,
      29,
      -35,
      -43,
      -43
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des(input),4),1),2),1)"
  },
  {
    "input": "input : list = [2, -3, 4, -1, 2]\noutput : list = [-7, 18, -17, 8, -7]",
    "output": "generated_output : list = add_n(mul_n([2, -3, 4, -1, 2],-5),3)",
    "io_inp": [
      2,
      -3,
      4,
      -1,
      2
    ],
    "io_out": [
      -7,
      18,
      -17,
      8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),3)"
  },
  {
    "input": "input : list = [3, 1, 4, -1]\noutput : list = [6, -6, -18, -24]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(mul_n([3, 1, 4, -1],2)),-3)))",
    "io_inp": [
      3,
      1,
      4,
      -1
    ],
    "io_out": [
      6,
      -6,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(mul_n(input,2)),-3)))"
  },
  {
    "input": "input : list = [0, 5, -5, 4, 5]\noutput : list = [10, 20, 0]",
    "output": "generated_output : list = mul_n(sub_n(take([0, 5, -5, 4, 5],3),-5),2)",
    "io_inp": [
      0,
      5,
      -5,
      4,
      5
    ],
    "io_out": [
      10,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,3),-5),2)"
  },
  {
    "input": "input : list = [0, 2, -3, 0, 0]\noutput : list = [-10, 0, -25, -10, -10]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(add_n([0, 2, -3, 0, 0],-2),1),-1),5),-5)",
    "io_inp": [
      0,
      2,
      -3,
      0,
      0
    ],
    "io_out": [
      -10,
      0,
      -25,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(add_n(input,-2),1),-1),5),-5)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(reverse([-2, -4]))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-19, -35]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(mul_n([-4, -2],-2),4)),-1),3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -19,
      -35
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(mul_n(input,-2),4)),-1),3)"
  },
  {
    "input": "input : list = [-4, 1, -2, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(take([-4, 1, -2, 3],1),-1),26)))",
    "io_inp": [
      -4,
      1,
      -2,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(take(input,1),-1),26)))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc([-5, 2])",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, -5, -5]\noutput : list = [-5, -5, -1, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(reverse([-1, 1, -5, -5])),28)))",
    "io_inp": [
      -1,
      1,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(reverse(input)),28)))"
  },
  {
    "input": "input : list = [-5, -3, -4, 1]\noutput : list = [-5, -4, -3, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(add_n([-5, -3, -4, 1],1),1),14)))",
    "io_inp": [
      -5,
      -3,
      -4,
      1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(add_n(input,1),1),14)))"
  },
  {
    "input": "input : list = [0, -2, 2, 3, -2, 0]\noutput : list = [1, 1, 3, 3, 5, 6]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(sort_des([0, -2, 2, 3, -2, 0]))),34),3)",
    "io_inp": [
      0,
      -2,
      2,
      3,
      -2,
      0
    ],
    "io_out": [
      1,
      1,
      3,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(sort_des(input))),34),3)"
  },
  {
    "input": "input : list = [-5, -4, -4, 1, -4]\noutput : list = [2, 5, 5, 20, 5]",
    "output": "generated_output : list = sub_n(mul_n(add_n([-5, -4, -4, 1, -4],5),3),-2)",
    "io_inp": [
      -5,
      -4,
      -4,
      1,
      -4
    ],
    "io_out": [
      2,
      5,
      5,
      20,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,5),3),-2)"
  },
  {
    "input": "input : list = [5, 2, -3, -3, 0, -1]\noutput : list = [-15, 10, 25]",
    "output": "generated_output : list = reverse(sort_des(drop(reverse(mul_n([5, 2, -3, -3, 0, -1],5)),3)))",
    "io_inp": [
      5,
      2,
      -3,
      -3,
      0,
      -1
    ],
    "io_out": [
      -15,
      10,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(reverse(mul_n(input,5)),3)))"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [10, 10, 2]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(sub_n([4, 4, -4],-2)),2),2),41)",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      10,
      10,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(sub_n(input,-2)),2),2),41)"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(take([4, 5, -2],1),-2)),4),-2)",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(take(input,1),-2)),4),-2)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-2, -7]",
    "output": "generated_output : list = add_n([2, -3],-4)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, -2, 5, 2, -4]\noutput : list = [-32, 8, -20, 8, -4, -28]",
    "output": "generated_output : list = mul_n(add_n([-5, 5, -2, 5, 2, -4],-3),4)",
    "io_inp": [
      -5,
      5,
      -2,
      5,
      2,
      -4
    ],
    "io_out": [
      -32,
      8,
      -20,
      8,
      -4,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-3),4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [12, 2]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n([3, -2],4),-1),2))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      12,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(input,4),-1),2))"
  },
  {
    "input": "input : list = [3, 1, 5, -1, -5]\noutput : list = [3, 9, -3, 15, 27]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(sub_n([3, 1, 5, -1, -5],2),3),-5),38),-3)",
    "io_inp": [
      3,
      1,
      5,
      -1,
      -5
    ],
    "io_out": [
      3,
      9,
      -3,
      15,
      27
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(sub_n(input,2),3),-5),38),-3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-135, -10]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(add_n([-3, 2],3),5),2)),-5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -135,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(add_n(input,3),5),2)),-5)"
  },
  {
    "input": "input : list = [-2, 1, -3, -1]\noutput : list = [-1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n([-2, 1, -3, -1],-2))))",
    "io_inp": [
      -2,
      1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(input,-2))))"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-20, -40, -40]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n([-3, -3, 1],5)),5),1)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -20,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(input,5)),5),1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc([3, -1]),-1),-3)),18)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc(input),-1),-3)),18)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse([-2, 5]),2),2))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(input),2),2))"
  },
  {
    "input": "input : list = [4, 5, 0, 0]\noutput : list = [8, 8, 23, 20]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n([4, 5, 0, 0],-2)),3),-2)",
    "io_inp": [
      4,
      5,
      0,
      0
    ],
    "io_out": [
      8,
      8,
      23,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(input,-2)),3),-2)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [0, 8]",
    "output": "generated_output : list = sub_n([-4, 4],-4)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [7, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(drop([0, -3, 5],1),2))),10)",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(drop(input,1),2))),10)"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [-5, -10, -7]",
    "output": "generated_output : list = take(add_n([0, -5, -2],-5),12)",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),12)"
  },
  {
    "input": "input : list = [4, 0, 3, -4, -4, -2]\noutput : list = [-2, -4, -4, 3, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, 3, -4, -4, -2])",
    "io_inp": [
      4,
      0,
      3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4,
      3,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, 2, -5, -2, 1]\noutput : list = [-60, -48, -42, -24, -12, -6]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n([4, -4, 2, -5, -2, 1],-3),-3)),-2),3)",
    "io_inp": [
      4,
      -4,
      2,
      -5,
      -2,
      1
    ],
    "io_out": [
      -60,
      -48,
      -42,
      -24,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n(input,-3),-3)),-2),3)"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [-26, -6, -14]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(sub_n([3, -2, 0],-3),-4),-2)))",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      -26,
      -6,
      -14
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(sub_n(input,-3),-4),-2)))"
  },
  {
    "input": "input : list = [5, -5, -5, 0, -2]\noutput : list = [12, 2, 2, 7, 5]",
    "output": "generated_output : list = sub_n(sub_n(add_n([5, -5, -5, 0, -2],-1),-5),-3)",
    "io_inp": [
      5,
      -5,
      -5,
      0,
      -2
    ],
    "io_out": [
      12,
      2,
      2,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,-1),-5),-3)"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = take(sort_asc(drop([-2, -4, 5],1)),17)",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,1)),17)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse(take(take(sub_n(sub_n([4, 2],4),1),20),4))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(sub_n(input,4),1),20),4))"
  },
  {
    "input": "input : list = [-4, -1, -3, -5]\noutput : list = [6, 8, 9, 10]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(add_n([-4, -1, -3, -5],-4),-1)),6),-1)",
    "io_inp": [
      -4,
      -1,
      -3,
      -5
    ],
    "io_out": [
      6,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(add_n(input,-4),-1)),6),-1)"
  },
  {
    "input": "input : list = [1, -3, -4, -4, -5]\noutput : list = [15, 12, 12, 9, -3]",
    "output": "generated_output : list = take(mul_n(take(mul_n(sort_asc([1, -3, -4, -4, -5]),1),19),-3),19)",
    "io_inp": [
      1,
      -3,
      -4,
      -4,
      -5
    ],
    "io_out": [
      15,
      12,
      12,
      9,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(sort_asc(input),1),19),-3),19)"
  },
  {
    "input": "input : list = [3, -2, 5]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(add_n([3, -2, 5],-5))),4),2)",
    "io_inp": [
      3,
      -2,
      5
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(add_n(input,-5))),4),2)"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [-12]",
    "output": "generated_output : list = take(add_n(take(sort_asc(add_n([0, 5, -5],-2)),1),-5),27)",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(add_n(input,-2)),1),-5),27)"
  },
  {
    "input": "input : list = [3, -1, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(drop([3, -1, -1],1),-2),1)),2)",
    "io_inp": [
      3,
      -1,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(drop(input,1),-2),1)),2)"
  },
  {
    "input": "input : list = [-3, 4, 2, 1, 4, 4]\noutput : list = [-4, -8, -16, 12]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(take([-3, 4, 2, 1, 4, 4],4),1),-4)),35)",
    "io_inp": [
      -3,
      4,
      2,
      1,
      4,
      4
    ],
    "io_out": [
      -4,
      -8,
      -16,
      12
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(take(input,4),1),-4)),35)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [8, 1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n([-3, 4],2),-1),3))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(input,2),-1),3))"
  },
  {
    "input": "input : list = [-4, -1, -3]\noutput : list = [-3, -1, -4]",
    "output": "generated_output : list = reverse([-4, -1, -3])",
    "io_inp": [
      -4,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, -3, 3, -1]\noutput : list = [-3, -2, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n([0, -4, -3, 3, -1],1))))",
    "io_inp": [
      0,
      -4,
      -3,
      3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(input,1))))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sort_des([3, 5]))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -5, 3, 5, -5]\noutput : list = [4, 4, -28, -32, -36]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_asc([4, -5, 3, 5, -5])),-4),-4))",
    "io_inp": [
      4,
      -5,
      3,
      5,
      -5
    ],
    "io_out": [
      4,
      4,
      -28,
      -32,
      -36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_asc(input)),-4),-4))"
  },
  {
    "input": "input : list = [0, -3, 3, 3, 5]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(take([0, -3, 3, 3, 5],1),-4),-5),-5),-2)",
    "io_inp": [
      0,
      -3,
      3,
      3,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(take(input,1),-4),-5),-5),-2)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sub_n([-5, 3],-4)))))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [5, 2, -1, -2, 4]\noutput : list = [4, -2, -1]",
    "output": "generated_output : list = take(take(reverse([5, 2, -1, -2, 4]),23),3)",
    "io_inp": [
      5,
      2,
      -1,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),23),3)"
  },
  {
    "input": "input : list = [2, 2, -4, -1, -5, -3]\noutput : list = [-5, -4, -3, -1, 2, 2]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(reverse([2, 2, -4, -1, -5, -3]))),18))",
    "io_inp": [
      2,
      2,
      -4,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(reverse(input))),18))"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [3, 5]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(drop([-4, 4, 2],1)),4)),-3)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(drop(input,1)),4)),-3)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = drop([-4, -5, 3],1)",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -3, -5, 5, 4]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(take([2, -3, -5, 5, 4],1)))),46)",
    "io_inp": [
      2,
      -3,
      -5,
      5,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(take(input,1)))),46)"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [0, 8, 4]",
    "output": "generated_output : list = mul_n(mul_n([0, 2, 1],-4),-1)",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      0,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(add_n([-1, 1],-1)),15),1))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(add_n(input,-1)),15),1))"
  },
  {
    "input": "input : list = [5, -2, 1]\noutput : list = [5, 1, -2]",
    "output": "generated_output : list = sort_des([5, -2, 1])",
    "io_inp": [
      5,
      -2,
      1
    ],
    "io_out": [
      5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(take([-4, -1, -5],1)))),1)",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(take(input,1)))),1)"
  },
  {
    "input": "input : list = [-4, -5, -2, -2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(drop([-4, -5, -2, -2, -3],3),15)",
    "io_inp": [
      -4,
      -5,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,3),15)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [45, -55]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(drop([2, 2, -3],1),-5),-4),4),-1)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      45,
      -55
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(drop(input,1),-5),-4),4),-1)"
  },
  {
    "input": "input : list = [-1, 5, -3, -3]\noutput : list = [5, -3, -3]",
    "output": "generated_output : list = drop([-1, 5, -3, -3],1)",
    "io_inp": [
      -1,
      5,
      -3,
      -3
    ],
    "io_out": [
      5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, 4]))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 2, 4, -4, 5, 0]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n(add_n(drop(drop([1, 2, 4, -4, 5, 0],2),3),4),-3),44)",
    "io_inp": [
      1,
      2,
      4,
      -4,
      5,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(drop(drop(input,2),3),4),-3),44)"
  },
  {
    "input": "input : list = [-5, 4, 4, -4, 3]\noutput : list = [-5, 4, 4, -4, 3]",
    "output": "generated_output : list = mul_n([-5, 4, 4, -4, 3],1)",
    "io_inp": [
      -5,
      4,
      4,
      -4,
      3
    ],
    "io_out": [
      -5,
      4,
      4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, 5, 0, 5, -1]\noutput : list = [8, 8, 3, 2, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n(add_n([-1, 5, 0, 5, -1],-1),-5)),1),1)",
    "io_inp": [
      -1,
      5,
      0,
      5,
      -1
    ],
    "io_out": [
      8,
      8,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(add_n(input,-1),-5)),1),1)"
  },
  {
    "input": "input : list = [-5, -2, -3, -1, -2]\noutput : list = [-3, -1, 0, 0, 1]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(sort_des([-5, -2, -3, -1, -2]),-2))),38)",
    "io_inp": [
      -5,
      -2,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(sort_des(input),-2))),38)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-18, -18]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(reverse([-3, -3]),8),-3),-2))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(reverse(input),8),-3),-2))"
  },
  {
    "input": "input : list = [-3, -3, 0, 2, 2]\noutput : list = [1, -2, -2]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(take([-3, -3, 0, 2, 2],3),-3),2)),1)",
    "io_inp": [
      -3,
      -3,
      0,
      2,
      2
    ],
    "io_out": [
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(take(input,3),-3),2)),1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [1, 9]",
    "output": "generated_output : list = sort_asc(take(take(add_n(sort_des([4, -4]),5),2),5))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(sort_des(input),5),2),5))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-32, -16]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sub_n([-2, 0],-5),-1),-4),2))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -32,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sub_n(input,-5),-1),-4),2))"
  },
  {
    "input": "input : list = [-4, -4, 2, -4]\noutput : list = [-4, -4, -4, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -4, 2, -4]))",
    "io_inp": [
      -4,
      -4,
      2,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, -12]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(sub_n([0, 4],4),3))),14)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(sub_n(input,4),3))),14)"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [15, 25, 20]",
    "output": "generated_output : list = mul_n([-3, -5, -4],-5)",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      15,
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, -4, 5, -1, 1, 2]\noutput : list = [-3, 1, 5, 17]",
    "output": "generated_output : list = drop(add_n(mul_n(sort_des(mul_n([0, -4, 5, -1, 1, 2],-2)),-2),-3),2)",
    "io_inp": [
      0,
      -4,
      5,
      -1,
      1,
      2
    ],
    "io_out": [
      -3,
      1,
      5,
      17
    ],
    "output_masked": "generated_output : list = drop(add_n(mul_n(sort_des(mul_n(input,-2)),-2),-3),2)"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sub_n(drop([3, -3, -1],1),-1)",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-5, -5, -1, -2, -1]\noutput : list = [2, 1, 2, -2, -2]",
    "output": "generated_output : list = reverse(add_n([-5, -5, -1, -2, -1],3))",
    "io_inp": [
      -5,
      -5,
      -1,
      -2,
      -1
    ],
    "io_out": [
      2,
      1,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [2, 5, -3, 1, -5, 0]\noutput : list = [0, -5, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse(drop(add_n([2, 5, -3, 1, -5, 0],-5),3)),2),-3)",
    "io_inp": [
      2,
      5,
      -3,
      1,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(drop(add_n(input,-5),3)),2),-3)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n([3, 1],3)),1)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(input,3)),1)"
  },
  {
    "input": "input : list = [3, -1, 0, 0, -5]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take(reverse(take(sort_des([3, -1, 0, 0, -5]),1)),9))",
    "io_inp": [
      3,
      -1,
      0,
      0,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(sort_des(input),1)),9))"
  },
  {
    "input": "input : list = [3, -2, -5, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(mul_n(take([3, -2, -5, 5],1),1))",
    "io_inp": [
      3,
      -2,
      -5,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),1))"
  },
  {
    "input": "input : list = [5, 2, 4, 4, -5]\noutput : list = [-10, -3, -1, -1, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(sort_des([5, 2, 4, 4, -5])),-1),-2),-4)",
    "io_inp": [
      5,
      2,
      4,
      4,
      -5
    ],
    "io_out": [
      -10,
      -3,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(sort_des(input)),-1),-2),-4)"
  },
  {
    "input": "input : list = [3, 1, -1, -2]\noutput : list = [0, -2, -4, -5]",
    "output": "generated_output : list = sub_n(add_n([3, 1, -1, -2],-2),1)",
    "io_inp": [
      3,
      1,
      -1,
      -2
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),1)"
  },
  {
    "input": "input : list = [4, 0, 4, -5, 5]\noutput : list = [6, 2, 6, -3, 7]",
    "output": "generated_output : list = take(sub_n(add_n(take(add_n([4, 0, 4, -5, 5],3),17),-4),-3),35)",
    "io_inp": [
      4,
      0,
      4,
      -5,
      5
    ],
    "io_out": [
      6,
      2,
      6,
      -3,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(add_n(input,3),17),-4),-3),35)"
  },
  {
    "input": "input : list = [1, -4, 5, 0, 3, -1]\noutput : list = [4, 14, -4, 6, 0, 8]",
    "output": "generated_output : list = mul_n(add_n(add_n([1, -4, 5, 0, 3, -1],-4),1),-2)",
    "io_inp": [
      1,
      -4,
      5,
      0,
      3,
      -1
    ],
    "io_out": [
      4,
      14,
      -4,
      6,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-4),1),-2)"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [-1, -1, 1]",
    "output": "generated_output : list = reverse([1, -1, -1])",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4, -5, 1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 4, -5, 1],1)",
    "io_inp": [
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 4, 0, 0]\noutput : list = [-3, 1, -3, -3]",
    "output": "generated_output : list = sub_n([0, 4, 0, 0],3)",
    "io_inp": [
      0,
      4,
      0,
      0
    ],
    "io_out": [
      -3,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, 5, 5, 1, -5, -4]\noutput : list = [-10, -9, -7, -4, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sub_n([-2, 5, 5, 1, -5, -4],5)),1)))",
    "io_inp": [
      -2,
      5,
      5,
      1,
      -5,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -7,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sub_n(input,5)),1)))"
  },
  {
    "input": "input : list = [-3, 4, -1, 5, 3]\noutput : list = [15, 5, -15, -20, -25]",
    "output": "generated_output : list = mul_n(sort_asc([-3, 4, -1, 5, 3]),-5)",
    "io_inp": [
      -3,
      4,
      -1,
      5,
      3
    ],
    "io_out": [
      15,
      5,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [-6, -2, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(reverse([2, -4, 0]),13)),-2))",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(reverse(input),13)),-2))"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-2, -1, 4]",
    "output": "generated_output : list = sub_n(sub_n([-3, -2, 3],-5),4)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),4)"
  },
  {
    "input": "input : list = [4, -1, 1, 0, -3]\noutput : list = [-3, -1, 0, 1, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse([4, -1, 1, 0, -3])))",
    "io_inp": [
      4,
      -1,
      1,
      0,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-3, -3, 0, -2, 4, 4]\noutput : list = [1, 1, -3, -5, -6, -6]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(sort_asc([-3, -3, 0, -2, 4, 4])),-3)))",
    "io_inp": [
      -3,
      -3,
      0,
      -2,
      4,
      4
    ],
    "io_out": [
      1,
      1,
      -3,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -16]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(reverse([-4, 0]),9))),4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(reverse(input),9))),4)"
  },
  {
    "input": "input : list = [-5, -4, 2, -2]\noutput : list = [-2, 2, -4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(drop([-5, -4, 2, -2],1),-5)),5)",
    "io_inp": [
      -5,
      -4,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(drop(input,1),-5)),5)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [98, 48, -77]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(mul_n([-4, -2, 3],5),-5))),2)",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      98,
      48,
      -77
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(mul_n(input,5),-5))),2)"
  },
  {
    "input": "input : list = [0, -3, 4, 0, 5]\noutput : list = [5, 4, 0, 0, -3]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(sort_asc([0, -3, 4, 0, 5]))),42))",
    "io_inp": [
      0,
      -3,
      4,
      0,
      5
    ],
    "io_out": [
      5,
      4,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(sort_asc(input))),42))"
  },
  {
    "input": "input : list = [-4, 3, 4, -2, 3, 5]\noutput : list = [-32, 24, 32, -16, 24, 40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(reverse([-4, 3, 4, -2, 3, 5]),15)),2),4)",
    "io_inp": [
      -4,
      3,
      4,
      -2,
      3,
      5
    ],
    "io_out": [
      -32,
      24,
      32,
      -16,
      24,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(reverse(input),15)),2),4)"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [0, 5]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(drop([-5, 0, 1],1),16)),5),6)",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(drop(input,1),16)),5),6)"
  },
  {
    "input": "input : list = [-2, 2, 3, 4, 1, -1]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = add_n(add_n(drop(add_n(sort_asc([-2, 2, 3, 4, 1, -1]),-3),3),-4),2)",
    "io_inp": [
      -2,
      2,
      3,
      4,
      1,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(add_n(sort_asc(input),-3),3),-4),2)"
  },
  {
    "input": "input : list = [1, 2, 1, 4, -1]\noutput : list = [-3, -1, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(reverse([1, 2, 1, 4, -1]),-2)),38))",
    "io_inp": [
      1,
      2,
      1,
      4,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(reverse(input),-2)),38))"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [-6, 0, -7]",
    "output": "generated_output : list = add_n([-2, 4, -3],-4)",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      -6,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, 2, 2, -4, -1]\noutput : list = [4, 4, 4, -2, 1]",
    "output": "generated_output : list = add_n(sub_n([2, 2, 2, -4, -1],-5),-3)",
    "io_inp": [
      2,
      2,
      2,
      -4,
      -1
    ],
    "io_out": [
      4,
      4,
      4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-7, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des([-4, 2]),-3))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [1, 2, -4, 3]\noutput : list = [2, -4, 3]",
    "output": "generated_output : list = drop([1, 2, -4, 3],1)",
    "io_inp": [
      1,
      2,
      -4,
      3
    ],
    "io_out": [
      2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des([2, -2]),-1))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),-1))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-12, -2]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des([-4, 1]),3),-2),4),1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -12,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des(input),3),-2),4),1)"
  },
  {
    "input": "input : list = [3, -2, -2]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = reverse(reverse([3, -2, -2]))",
    "io_inp": [
      3,
      -2,
      -2
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -3, 0, -3]\noutput : list = [0, 0, 0, 9]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(sub_n([-3, -3, 0, -3],-3)),3)))",
    "io_inp": [
      -3,
      -3,
      0,
      -3
    ],
    "io_out": [
      0,
      0,
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(sub_n(input,-3)),3)))"
  },
  {
    "input": "input : list = [-4, 0, 0, 2]\noutput : list = [-13, -9, -9, -7]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(reverse([-4, 0, 0, 2])),-4)),-5)",
    "io_inp": [
      -4,
      0,
      0,
      2
    ],
    "io_out": [
      -13,
      -9,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(reverse(input)),-4)),-5)"
  },
  {
    "input": "input : list = [-5, -4, 1, -4, 3]\noutput : list = [3, -4, 1, -4, -5]",
    "output": "generated_output : list = reverse([-5, -4, 1, -4, 3])",
    "io_inp": [
      -5,
      -4,
      1,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([4, -4])",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, 1, -1]\noutput : list = [1, 1, -1, -2]",
    "output": "generated_output : list = sort_des([-2, 1, 1, -1])",
    "io_inp": [
      -2,
      1,
      1,
      -1
    ],
    "io_out": [
      1,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n([-5, -4],1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 5, 2, 1, 5, 5]\noutput : list = [5, 5, 5, 2, 1, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, 5, 2, 1, 5, 5]))",
    "io_inp": [
      -4,
      5,
      2,
      1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 2, 0, -4, 5]\noutput : list = [-10, -4, 0, 2, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(mul_n([-1, 2, 0, -4, 5],-2)))))",
    "io_inp": [
      -1,
      2,
      0,
      -4,
      5
    ],
    "io_out": [
      -10,
      -4,
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(mul_n(input,-2)))))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(sub_n([2, -4],-1))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [1, 1, 0, 0, 5, 2]\noutput : list = [-2, -2, -1, -1, 0, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(sub_n([1, 1, 0, 0, 5, 2],1))),1))",
    "io_inp": [
      1,
      1,
      0,
      0,
      5,
      2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(sub_n(input,1))),1))"
  },
  {
    "input": "input : list = [3, -1, -3, -4, -2]\noutput : list = [-12, -11, -10, -9, -5]",
    "output": "generated_output : list = take(take(sort_asc(add_n(sub_n([3, -1, -3, -4, -2],4),-4)),12),6)",
    "io_inp": [
      3,
      -1,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -12,
      -11,
      -10,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(sub_n(input,4),-4)),12),6)"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [5, 1, 1]",
    "output": "generated_output : list = sort_des([1, 5, 1])",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -3, 0, 5, 1, 5]\noutput : list = [-21, -21, -5, -5, -1, 11]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(sort_asc([1, -3, 0, 5, 1, 5]),24),-4)),1)",
    "io_inp": [
      1,
      -3,
      0,
      5,
      1,
      5
    ],
    "io_out": [
      -21,
      -21,
      -5,
      -5,
      -1,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(sort_asc(input),24),-4)),1)"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take([0, -2, 3],1),1)",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),1)"
  },
  {
    "input": "input : list = [4, 4, 4, 2]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(add_n(drop([4, 4, 4, 2],1),-4)))",
    "io_inp": [
      4,
      4,
      4,
      2
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(drop(input,1),-4)))"
  },
  {
    "input": "input : list = [-3, 5, 3, 2, 2, -5]\noutput : list = [22, -6, -6, -10, -18, 14]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(mul_n([-3, 5, 3, 2, 2, -5],4),1)),-1),-3)",
    "io_inp": [
      -3,
      5,
      3,
      2,
      2,
      -5
    ],
    "io_out": [
      22,
      -6,
      -6,
      -10,
      -18,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(mul_n(input,4),1)),-1),-3)"
  },
  {
    "input": "input : list = [-1, -4, 3, -1]\noutput : list = [-4, 3, -1]",
    "output": "generated_output : list = reverse(reverse(drop([-1, -4, 3, -1],1)))",
    "io_inp": [
      -1,
      -4,
      3,
      -1
    ],
    "io_out": [
      -4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-5, 2, -4, 0]\noutput : list = [6, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(take([-5, 2, -4, 0],2),-4))))",
    "io_inp": [
      -5,
      2,
      -4,
      0
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(take(input,2),-4))))"
  },
  {
    "input": "input : list = [2, 3, -5, -1, -5, -3]\noutput : list = [10, 7]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(take([2, 3, -5, -1, -5, -3],2),3)),44),1)",
    "io_inp": [
      2,
      3,
      -5,
      -1,
      -5,
      -3
    ],
    "io_out": [
      10,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(take(input,2),3)),44),1)"
  },
  {
    "input": "input : list = [5, 4, -4, -5, -3]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take([5, 4, -4, -5, -3],1))",
    "io_inp": [
      5,
      4,
      -4,
      -5,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [3, 2, 5, 1, -2, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(take([3, 2, 5, 1, -2, -1],2),6))),-3)",
    "io_inp": [
      3,
      2,
      5,
      1,
      -2,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(take(input,2),6))),-3)"
  },
  {
    "input": "input : list = [3, 1, -3, -3, 0, -2]\noutput : list = [12, 8, 0, 0, 6]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n([3, 1, -3, -3, 0, -2],2),-1),-5),5)",
    "io_inp": [
      3,
      1,
      -3,
      -3,
      0,
      -2
    ],
    "io_out": [
      12,
      8,
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(input,2),-1),-5),5)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [12, 12]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n([0, 0],5)),3),-4),3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(add_n(input,5)),3),-4),3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [8, -16]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(sort_asc([4, -2]),-4))),9)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(sort_asc(input),-4))),9)"
  },
  {
    "input": "input : list = [4, 5, -1, -5, -3]\noutput : list = [-7, -9, -5]",
    "output": "generated_output : list = take(reverse(add_n(drop([4, 5, -1, -5, -3],2),-4)),24)",
    "io_inp": [
      4,
      5,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(drop(input,2),-4)),24)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-2, -12, -12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(sub_n([1, -4, -4],-2)),4),2))",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(sub_n(input,-2)),4),2))"
  },
  {
    "input": "input : list = [0, -5, -1, 5, -2]\noutput : list = [5, 0, -1, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(sub_n([0, -5, -1, 5, -2],5),4),5)))",
    "io_inp": [
      0,
      -5,
      -1,
      5,
      -2
    ],
    "io_out": [
      5,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(sub_n(input,5),4),5)))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(take(take(take(sort_des([-3, 0]),12),2),24),27)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(take(take(take(sort_des(input),12),2),24),27)"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [-2, -2, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des([1, 1, -4]),2)),1))",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des(input),2)),1))"
  },
  {
    "input": "input : list = [5, -5, 4, 0, -1, 1]\noutput : list = [-15, -11, -10, -9, -6, -5]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_des([5, -5, 4, 0, -1, 1])),-3),-5),-2)",
    "io_inp": [
      5,
      -5,
      4,
      0,
      -1,
      1
    ],
    "io_out": [
      -15,
      -11,
      -10,
      -9,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_des(input)),-3),-5),-2)"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [20, 8, -16]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(sort_des([-4, 2, 5]))),4))",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      20,
      8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(sort_des(input))),4))"
  },
  {
    "input": "input : list = [-5, 3, -3, -3]\noutput : list = [3, -3, -3]",
    "output": "generated_output : list = drop([-5, 3, -3, -3],1)",
    "io_inp": [
      -5,
      3,
      -3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -2, 4, -5]\noutput : list = [6, 3, 0, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n(reverse([1, -2, 4, -5]),-1)),2),-3)",
    "io_inp": [
      1,
      -2,
      4,
      -5
    ],
    "io_out": [
      6,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(reverse(input),-1)),2),-3)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(add_n([2, 2],5)),3)))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(add_n(input,5)),3)))"
  },
  {
    "input": "input : list = [3, 3, 5, 0]\noutput : list = [2, 7]",
    "output": "generated_output : list = take(add_n(take(reverse([3, 3, 5, 0]),2),2),18)",
    "io_inp": [
      3,
      3,
      5,
      0
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(input),2),2),18)"
  },
  {
    "input": "input : list = [-2, 4, 4, 5]\noutput : list = [150, 0, 0, -25]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sub_n([-2, 4, 4, 5],5)),-5),5),5)",
    "io_inp": [
      -2,
      4,
      4,
      5
    ],
    "io_out": [
      150,
      0,
      0,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sub_n(input,5)),-5),5),5)"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [-26, -6, -14]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([4, -1, 1],-3),-4),-2)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      -26,
      -6,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,-3),-4),-2)"
  },
  {
    "input": "input : list = [-3, -1, -3, 2]\noutput : list = [-8, -8, -6, -3]",
    "output": "generated_output : list = sort_asc(take(add_n([-3, -1, -3, 2],-5),18))",
    "io_inp": [
      -3,
      -1,
      -3,
      2
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-5),18))"
  },
  {
    "input": "input : list = [-2, 2, 0, -3, 3, -2]\noutput : list = [4, 3, 1, -1, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(sort_asc([-2, 2, 0, -3, 3, -2])),-1)))",
    "io_inp": [
      -2,
      2,
      0,
      -3,
      3,
      -2
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [4, 4, 3]\noutput : list = [-4, -4, -3]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sub_n([4, 4, 3],-4)),-1)),-4)",
    "io_inp": [
      4,
      4,
      3
    ],
    "io_out": [
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sub_n(input,-4)),-1)),-4)"
  },
  {
    "input": "input : list = [4, -1, 3, -4]\noutput : list = [-4, 3, -1, 4]",
    "output": "generated_output : list = reverse([4, -1, 3, -4])",
    "io_inp": [
      4,
      -1,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, -2, 0, -3]\noutput : list = [3, 6, 4, 1, 2]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(sub_n([-4, -5, -2, 0, -3],-1),-3),2),14))",
    "io_inp": [
      -4,
      -5,
      -2,
      0,
      -3
    ],
    "io_out": [
      3,
      6,
      4,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(sub_n(input,-1),-3),2),14))"
  },
  {
    "input": "input : list = [1, 1, 5, 1, -5, 2]\noutput : list = [12, 0, -4, -28]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(drop([1, 1, 5, 1, -5, 2],2),2))),4)",
    "io_inp": [
      1,
      1,
      5,
      1,
      -5,
      2
    ],
    "io_out": [
      12,
      0,
      -4,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(drop(input,2),2))),4)"
  },
  {
    "input": "input : list = [3, 3, -5, 2, 0]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(take([3, 3, -5, 2, 0],1)),5)),1)",
    "io_inp": [
      3,
      3,
      -5,
      2,
      0
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(take(input,1)),5)),1)"
  },
  {
    "input": "input : list = [-3, 1, -3, 3, 3, 2]\noutput : list = [24, 24, 8]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(take([-3, 1, -3, 3, 3, 2],3),-3),-4)))",
    "io_inp": [
      -3,
      1,
      -3,
      3,
      3,
      2
    ],
    "io_out": [
      24,
      24,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(take(input,3),-3),-4)))"
  },
  {
    "input": "input : list = [2, 2, -1, 2, -4]\noutput : list = [2, 2, 2, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(take(reverse([2, 2, -1, 2, -4]),11)))",
    "io_inp": [
      2,
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      2,
      2,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(input),11)))"
  },
  {
    "input": "input : list = [-4, -2, -1, 2, -4, 4]\noutput : list = [-240, -240, -120, -60, 120, 240]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sort_des([-4, -2, -1, 2, -4, 4]),4)),5),3)",
    "io_inp": [
      -4,
      -2,
      -1,
      2,
      -4,
      4
    ],
    "io_out": [
      -240,
      -240,
      -120,
      -60,
      120,
      240
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sort_des(input),4)),5),3)"
  },
  {
    "input": "input : list = [4, -4, -3, 2]\noutput : list = [-5, 0, 25, 35]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sub_n([4, -4, -3, 2],-3),5),31)),43)",
    "io_inp": [
      4,
      -4,
      -3,
      2
    ],
    "io_out": [
      -5,
      0,
      25,
      35
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sub_n(input,-3),5),31)),43)"
  },
  {
    "input": "input : list = [2, 5, -3, 3, -3]\noutput : list = [44, 36, 32, 12, 12]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_des([2, 5, -3, 3, -3]),-2)),-4),4)",
    "io_inp": [
      2,
      5,
      -3,
      3,
      -3
    ],
    "io_out": [
      44,
      36,
      32,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sort_des(input),-2)),-4),4)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(add_n([-2, -1],1)))))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(add_n(input,1)))))"
  },
  {
    "input": "input : list = [3, 4, 3, 4, 0]\noutput : list = [4, 16, 16, 20, 20]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des(sort_asc([3, 4, 3, 4, 0])),1)),4)",
    "io_inp": [
      3,
      4,
      3,
      4,
      0
    ],
    "io_out": [
      4,
      16,
      16,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(sort_asc(input)),1)),4)"
  },
  {
    "input": "input : list = [4, 3, -3, -4]\noutput : list = [18, 14, -10, -14]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(mul_n([4, 3, -3, -4],2),10)),-2),-2)",
    "io_inp": [
      4,
      3,
      -3,
      -4
    ],
    "io_out": [
      18,
      14,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(mul_n(input,2),10)),-2),-2)"
  },
  {
    "input": "input : list = [-1, -1, 2, 1, -5, 5]\noutput : list = [2, 1, -5, 5]",
    "output": "generated_output : list = drop([-1, -1, 2, 1, -5, 5],2)",
    "io_inp": [
      -1,
      -1,
      2,
      1,
      -5,
      5
    ],
    "io_out": [
      2,
      1,
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 0, -1, 5, 2, 1]\noutput : list = [-1, -1, 0, 1, 2, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(sort_des([-1, 0, -1, 5, 2, 1]),2))),-2)",
    "io_inp": [
      -1,
      0,
      -1,
      5,
      2,
      1
    ],
    "io_out": [
      -1,
      -1,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(sort_des(input),2))),-2)"
  },
  {
    "input": "input : list = [1, 4, 3, 3, 5, 3]\noutput : list = [8, 11, 10, 10, 12, 10]",
    "output": "generated_output : list = sub_n(sub_n([1, 4, 3, 3, 5, 3],-4),-3)",
    "io_inp": [
      1,
      4,
      3,
      3,
      5,
      3
    ],
    "io_out": [
      8,
      11,
      10,
      10,
      12,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [9, 6]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(add_n([2, -1],2))),26),-5)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(add_n(input,2))),26),-5)"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [-1, -1, -16]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(add_n([1, 1, 4],-1),-5),-4),24),-5)",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      -1,
      -1,
      -16
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(add_n(input,-1),-5),-4),24),-5)"
  },
  {
    "input": "input : list = [-2, 5, 4, -4]\noutput : list = [5, 4, -4]",
    "output": "generated_output : list = drop([-2, 5, 4, -4],1)",
    "io_inp": [
      -2,
      5,
      4,
      -4
    ],
    "io_out": [
      5,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -5, 3, -4, 2, 4]\noutput : list = [2, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(drop(sort_asc(drop([-3, -5, 3, -4, 2, 4],1)),2),2))",
    "io_inp": [
      -3,
      -5,
      3,
      -4,
      2,
      4
    ],
    "io_out": [
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(sort_asc(drop(input,1)),2),2))"
  },
  {
    "input": "input : list = [2, -1, 3, 2, -1]\noutput : list = [-2, -3, -3, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des([2, -1, 3, 2, -1]))),-5)",
    "io_inp": [
      2,
      -1,
      3,
      2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(input))),-5)"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(add_n(take([-3, 3, 0],1),4),-1)),-1)",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(add_n(take(input,1),4),-1)),-1)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = drop([5, 5, 2],1)",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -2, -4, 2, -5, -2]\noutput : list = [-18, -15, -9, 3]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(drop([-4, -2, -4, 2, -5, -2],2),5),3),-3))",
    "io_inp": [
      -4,
      -2,
      -4,
      2,
      -5,
      -2
    ],
    "io_out": [
      -18,
      -15,
      -9,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(drop(input,2),5),3),-3))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-5, -13]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(mul_n([2, 0],-4),4)),1))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -5,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(mul_n(input,-4),4)),1))"
  },
  {
    "input": "input : list = [0, 1, -3]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse(sort_des([0, 1, -3])),4),2))",
    "io_inp": [
      0,
      1,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(sort_des(input)),4),2))"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(take([-2, -3, 2],1))),-4))",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(take(input,1))),-4))"
  },
  {
    "input": "input : list = [-3, -2, 3, 2, 4, 1]\noutput : list = [4, 3, 2, 1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sub_n([-3, -2, 3, 2, 4, 1],1),-1))))",
    "io_inp": [
      -3,
      -2,
      3,
      2,
      4,
      1
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sub_n(input,1),-1))))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc([4, 3]),6))))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc(input),6))))"
  },
  {
    "input": "input : list = [1, 1, 1, 0, -5, -5]\noutput : list = [5, 5, 5, 0, -25, -25]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(mul_n([1, 1, 1, 0, -5, -5],5)),1)),17)",
    "io_inp": [
      1,
      1,
      1,
      0,
      -5,
      -5
    ],
    "io_out": [
      5,
      5,
      5,
      0,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(mul_n(input,5)),1)),17)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [9, 10, 8]",
    "output": "generated_output : list = take(reverse(sub_n([3, 5, 4],-5)),24)",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      9,
      10,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,-5)),24)"
  },
  {
    "input": "input : list = [-1, 3, 4, -4]\noutput : list = [-8, 0, -1, -5]",
    "output": "generated_output : list = reverse(add_n([-1, 3, 4, -4],-4))",
    "io_inp": [
      -1,
      3,
      4,
      -4
    ],
    "io_out": [
      -8,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [5, -3, 1, 4, -2, -2]\noutput : list = [87, 78, 51, 24, 24, 15]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(add_n([5, -3, 1, 4, -2, -2],3)),-3),5),-3)",
    "io_inp": [
      5,
      -3,
      1,
      4,
      -2,
      -2
    ],
    "io_out": [
      87,
      78,
      51,
      24,
      24,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(add_n(input,3)),-3),5),-3)"
  },
  {
    "input": "input : list = [-3, -2, -5, -1, 5]\noutput : list = [5, -1, -5, -2, -3]",
    "output": "generated_output : list = reverse([-3, -2, -5, -1, 5])",
    "io_inp": [
      -3,
      -2,
      -5,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [-3, -3, 1]",
    "output": "generated_output : list = take(sort_asc(add_n(sub_n(sort_asc([-1, -5, -5]),-4),-2)),34)",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sub_n(sort_asc(input),-4),-2)),34)"
  },
  {
    "input": "input : list = [-4, -3, 3, -1]\noutput : list = [-9, -12]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(take([-4, -3, 3, -1],2))),3))",
    "io_inp": [
      -4,
      -3,
      3,
      -1
    ],
    "io_out": [
      -9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(take(input,2))),3))"
  },
  {
    "input": "input : list = [4, -2, 1]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take([4, -2, 1],1),1))),-1)",
    "io_inp": [
      4,
      -2,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take(input,1),1))),-1)"
  },
  {
    "input": "input : list = [3, -3, -3, 4]\noutput : list = [1, 1, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(reverse([3, -3, -3, 4])),-4)))",
    "io_inp": [
      3,
      -3,
      -3,
      4
    ],
    "io_out": [
      1,
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 2, 4]))",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 3, -2, -4, 1]\noutput : list = [0, 1, 3, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(add_n([-5, 3, -2, -4, 1],5),10))))",
    "io_inp": [
      -5,
      3,
      -2,
      -4,
      1
    ],
    "io_out": [
      0,
      1,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(add_n(input,5),10))))"
  },
  {
    "input": "input : list = [4, -4, -5, 3, -1, 2]\noutput : list = [1, -7, -8, 0, -4, -1]",
    "output": "generated_output : list = sub_n([4, -4, -5, 3, -1, 2],3)",
    "io_inp": [
      4,
      -4,
      -5,
      3,
      -1,
      2
    ],
    "io_out": [
      1,
      -7,
      -8,
      0,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, 4, -5, 2, 2]\noutput : list = [2, 2, -19, 8, -7]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(sub_n([-1, 4, -5, 2, 2],3),16)),3),-5)",
    "io_inp": [
      -1,
      4,
      -5,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -19,
      8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(sub_n(input,3),16)),3),-5)"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [10, 1, 8]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(sub_n([5, -4, 3],-4),4),-3)))",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      10,
      1,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(sub_n(input,-4),4),-3)))"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(take([5, -3, -2],1),4))),5)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(take(input,1),4))),5)"
  },
  {
    "input": "input : list = [-4, -4, 4, 3]\noutput : list = [-12, -12, 20, 16]",
    "output": "generated_output : list = mul_n(add_n([-4, -4, 4, 3],1),4)",
    "io_inp": [
      -4,
      -4,
      4,
      3
    ],
    "io_out": [
      -12,
      -12,
      20,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),4)"
  },
  {
    "input": "input : list = [-5, 0, -4, 5, -5]\noutput : list = [5, 0, -4, -5, -5]",
    "output": "generated_output : list = take(reverse(reverse(sort_des([-5, 0, -4, 5, -5]))),16)",
    "io_inp": [
      -5,
      0,
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      0,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(input))),16)"
  },
  {
    "input": "input : list = [5, 3, -1, -1]\noutput : list = [15]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(take([5, 3, -1, -1],1)),3)),47)",
    "io_inp": [
      5,
      3,
      -1,
      -1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(take(input,1)),3)),47)"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [-60]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(take([-5, -3, -3],1),3)),4))",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(take(input,1),3)),4))"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(reverse([5, 3, -1]))),1))",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [4, 2, 5, -3, 0, -3]\noutput : list = [-15, -15, 0, 10, 20, 25]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(mul_n([4, 2, 5, -3, 0, -3],5)))))",
    "io_inp": [
      4,
      2,
      5,
      -3,
      0,
      -3
    ],
    "io_out": [
      -15,
      -15,
      0,
      10,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [0, 2, -4, 4]\noutput : list = [4, -2, 6]",
    "output": "generated_output : list = sub_n(sub_n(drop([0, 2, -4, 4],1),-4),2)",
    "io_inp": [
      0,
      2,
      -4,
      4
    ],
    "io_out": [
      4,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),-4),2)"
  },
  {
    "input": "input : list = [0, 2, 5, 1, 1]\noutput : list = [5, 2, 1, 1, 0]",
    "output": "generated_output : list = sort_des([0, 2, 5, 1, 1])",
    "io_inp": [
      0,
      2,
      5,
      1,
      1
    ],
    "io_out": [
      5,
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -3, 3, -5]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -3, 3, -5],1)",
    "io_inp": [
      1,
      -3,
      3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [2, 18]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(sort_asc([-3, 5]),14),1),-4),2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      2,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(sort_asc(input),14),1),-4),2)"
  },
  {
    "input": "input : list = [4, -3, 3, 0, -4, 4]\noutput : list = [19, 15, 3, -9, -13, -13]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n([4, -3, 3, 0, -4, 4],2),-2)),3)",
    "io_inp": [
      4,
      -3,
      3,
      0,
      -4,
      4
    ],
    "io_out": [
      19,
      15,
      3,
      -9,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(input,2),-2)),3)"
  },
  {
    "input": "input : list = [3, 4, 5, 0]\noutput : list = [0, 15, 20, 25]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(sort_des([3, 4, 5, 0])),5)))",
    "io_inp": [
      3,
      4,
      5,
      0
    ],
    "io_out": [
      0,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-3, 0, 2, 4, -5, 3]\noutput : list = [-8, 0, 12, 20, 24, 28]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(add_n([-3, 0, 2, 4, -5, 3],1))),2),4)",
    "io_inp": [
      -3,
      0,
      2,
      4,
      -5,
      3
    ],
    "io_out": [
      -8,
      0,
      12,
      20,
      24,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(add_n(input,1))),2),4)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [7, 6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc([3, 4]))),-3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(input))),-3)"
  },
  {
    "input": "input : list = [-1, 0, 1, 5, 3, 4]\noutput : list = [-6, -5, -4, -2, -1, 0]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(reverse([-1, 0, 1, 5, 3, 4]),-2)),-3),6)",
    "io_inp": [
      -1,
      0,
      1,
      5,
      3,
      4
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(reverse(input),-2)),-3),6)"
  },
  {
    "input": "input : list = [4, 1, 0]\noutput : list = [7, 4, 3]",
    "output": "generated_output : list = add_n(take(sub_n([4, 1, 0],-2),4),1)",
    "io_inp": [
      4,
      1,
      0
    ],
    "io_out": [
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-2),4),1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = mul_n(take(add_n([1, 0],-1),9),-5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,-1),9),-5)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-25, -5]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse([0, -5]),-2),4),3)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -25,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(input),-2),4),3)"
  },
  {
    "input": "input : list = [-2, 1, 4, -4]\noutput : list = [-18, 6, -3, -12]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(sub_n([-2, 1, 4, -4],3),3),12)),3)",
    "io_inp": [
      -2,
      1,
      4,
      -4
    ],
    "io_out": [
      -18,
      6,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(sub_n(input,3),3),12)),3)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des([-1, 1])",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, -1, -3, 4]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(add_n([-1, 2, -1, -3, 4],4),-1)),1))",
    "io_inp": [
      -1,
      2,
      -1,
      -3,
      4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(add_n(input,4),-1)),1))"
  },
  {
    "input": "input : list = [2, -2, 3, 1]\noutput : list = [-9, -6, -3, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(mul_n([2, -2, 3, 1],3))),-1))",
    "io_inp": [
      2,
      -2,
      3,
      1
    ],
    "io_out": [
      -9,
      -6,
      -3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(mul_n(input,3))),-1))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-12, -9]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(sort_asc([-3, -2]),1),25),3))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(sort_asc(input),1),25),3))"
  },
  {
    "input": "input : list = [-3, 2, 2, -2, 4]\noutput : list = [2, -2, 4]",
    "output": "generated_output : list = drop([-3, 2, 2, -2, 4],2)",
    "io_inp": [
      -3,
      2,
      2,
      -2,
      4
    ],
    "io_out": [
      2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n(add_n([-1, -4],4),-2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),-2)"
  },
  {
    "input": "input : list = [3, -3, 5, 2, -3, -1]\noutput : list = [12, 16, 6, 0, 16, 4]",
    "output": "generated_output : list = reverse(mul_n(add_n([3, -3, 5, 2, -3, -1],-5),-2))",
    "io_inp": [
      3,
      -3,
      5,
      2,
      -3,
      -1
    ],
    "io_out": [
      12,
      16,
      6,
      0,
      16,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-5),-2))"
  },
  {
    "input": "input : list = [4, -3, 5, 1, 1]\noutput : list = [-3, 1, 1, 4, 5]",
    "output": "generated_output : list = sort_asc([4, -3, 5, 1, 1])",
    "io_inp": [
      4,
      -3,
      5,
      1,
      1
    ],
    "io_out": [
      -3,
      1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4, 3, -4, 1]\noutput : list = [2, 1, 0, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(add_n([2, -4, 3, -4, 1],-2),10)),-1))",
    "io_inp": [
      2,
      -4,
      3,
      -4,
      1
    ],
    "io_out": [
      2,
      1,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(add_n(input,-2),10)),-1))"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [0, -6, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(sub_n([-4, 4, -2],3))),1),18)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      0,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(sub_n(input,3))),1),18)"
  },
  {
    "input": "input : list = [3, -5, 2, -4, 2, -2]\noutput : list = [2, 2, -2, -4, -5]",
    "output": "generated_output : list = sort_des(drop([3, -5, 2, -4, 2, -2],1))",
    "io_inp": [
      3,
      -5,
      2,
      -4,
      2,
      -2
    ],
    "io_out": [
      2,
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [3, -4, 2, 2, -4, -5]\noutput : list = [-5, -4, -4, 2, 2, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(sub_n([3, -4, 2, 2, -4, -5],3))),12),-3)",
    "io_inp": [
      3,
      -4,
      2,
      2,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(sub_n(input,3))),12),-3)"
  },
  {
    "input": "input : list = [4, -4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = drop([4, -4, 4],1)",
    "io_inp": [
      4,
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = mul_n(drop([4, -2, 2],1),1)",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [-5, -5, 1, 5, -2]\noutput : list = [-5, -5, -2, 1, 5]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des([-5, -5, 1, 5, -2]),15),1))",
    "io_inp": [
      -5,
      -5,
      1,
      5,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(input),15),1))"
  },
  {
    "input": "input : list = [-3, 1, 2, 0, -2]\noutput : list = [1, 9, 11, 7, 3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-3, 1, 2, 0, -2],-3),2),-1)",
    "io_inp": [
      -3,
      1,
      2,
      0,
      -2
    ],
    "io_out": [
      1,
      9,
      11,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,-3),2),-1)"
  },
  {
    "input": "input : list = [-5, -4, 1, -2]\noutput : list = [20, 8, 28, 32]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(add_n([-5, -4, 1, -2],-4),-2),-4),-4))",
    "io_inp": [
      -5,
      -4,
      1,
      -2
    ],
    "io_out": [
      20,
      8,
      28,
      32
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(add_n(input,-4),-2),-4),-4))"
  },
  {
    "input": "input : list = [-3, -5, -2, -4, -5, 0]\noutput : list = [-5, -4, -2, 0]",
    "output": "generated_output : list = sort_asc(drop([-3, -5, -2, -4, -5, 0],2))",
    "io_inp": [
      -3,
      -5,
      -2,
      -4,
      -5,
      0
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [1, 3, -2, -4, -2, 4]\noutput : list = [-12, -6, 9, 3]",
    "output": "generated_output : list = mul_n(reverse(take([1, 3, -2, -4, -2, 4],4)),3)",
    "io_inp": [
      1,
      3,
      -2,
      -4,
      -2,
      4
    ],
    "io_out": [
      -12,
      -6,
      9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,4)),3)"
  },
  {
    "input": "input : list = [-4, -3, -5, 5]\noutput : list = [25, 21, 17, -15]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(sort_asc([-4, -3, -5, 5]),-4),-5),7))",
    "io_inp": [
      -4,
      -3,
      -5,
      5
    ],
    "io_out": [
      25,
      21,
      17,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(sort_asc(input),-4),-5),7))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [3, 13]",
    "output": "generated_output : list = add_n(sort_asc(take(add_n(add_n([5, -5],-2),5),10)),5)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      3,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(add_n(add_n(input,-2),5),10)),5)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(mul_n([0, -2],2),1)),9),-4)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(mul_n(input,2),1)),9),-4)"
  },
  {
    "input": "input : list = [-2, 2, -5, -4]\noutput : list = [7, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(drop([-2, 2, -5, -4],1),-1))),4)",
    "io_inp": [
      -2,
      2,
      -5,
      -4
    ],
    "io_out": [
      7,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(drop(input,1),-1))),4)"
  },
  {
    "input": "input : list = [2, -1, 0, -2, -2]\noutput : list = [2, 2, 3, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sort_asc([2, -1, 0, -2, -2])))),4)",
    "io_inp": [
      2,
      -1,
      0,
      -2,
      -2
    ],
    "io_out": [
      2,
      2,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [4, -3, -4]\noutput : list = [-10, -8, 6]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(sub_n([4, -3, -4],1)),24)),2)",
    "io_inp": [
      4,
      -3,
      -4
    ],
    "io_out": [
      -10,
      -8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(sub_n(input,1)),24)),2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [8, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(sort_des([1, -2]))),-4))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [-1, -2, 0, 2, 0, -3]\noutput : list = [3, 6, 8, 6, 4, 5]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n([-1, -2, 0, 2, 0, -3],-3),27)),-3)",
    "io_inp": [
      -1,
      -2,
      0,
      2,
      0,
      -3
    ],
    "io_out": [
      3,
      6,
      8,
      6,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(input,-3),27)),-3)"
  },
  {
    "input": "input : list = [-2, -5, 5, 3, -5, -2]\noutput : list = [-5, -5, -2, -2, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(sort_des([-2, -5, 5, 3, -5, -2])))))",
    "io_inp": [
      -2,
      -5,
      5,
      3,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, -1, 3, 2, 4, -4]\noutput : list = [-5, -2, 1, 1, 2, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des([2, -1, 3, 2, 4, -4]),1))",
    "io_inp": [
      2,
      -1,
      3,
      2,
      4,
      -4
    ],
    "io_out": [
      -5,
      -2,
      1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [0, -3, 0, 2, 0, 0]\noutput : list = [1, 4, 4, 4, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sub_n([0, -3, 0, 2, 0, 0],-4)))))",
    "io_inp": [
      0,
      -3,
      0,
      2,
      0,
      0
    ],
    "io_out": [
      1,
      4,
      4,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 4, 0])",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [-3, -1, 1]",
    "output": "generated_output : list = sub_n(reverse([5, 3, 1]),4)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-1, -5, -2, -2]\noutput : list = [4, 5, 5, 8]",
    "output": "generated_output : list = take(sort_asc(add_n(take(mul_n([-1, -5, -2, -2],-1),11),3)),38)",
    "io_inp": [
      -1,
      -5,
      -2,
      -2
    ],
    "io_out": [
      4,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(mul_n(input,-1),11),3)),38)"
  },
  {
    "input": "input : list = [3, 2, 0, -3, 3, -3]\noutput : list = [-15, 15]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(drop(mul_n([3, 2, 0, -3, 3, -3],5),4))))",
    "io_inp": [
      3,
      2,
      0,
      -3,
      3,
      -3
    ],
    "io_out": [
      -15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(drop(mul_n(input,5),4))))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(sort_des([-1, 2]),1),6)),4)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(sort_des(input),1),6)),4)"
  },
  {
    "input": "input : list = [-2, 5, 5, -4, 2, 3]\noutput : list = [6, -15, -15, 12, -6, -9]",
    "output": "generated_output : list = mul_n([-2, 5, 5, -4, 2, 3],-3)",
    "io_inp": [
      -2,
      5,
      5,
      -4,
      2,
      3
    ],
    "io_out": [
      6,
      -15,
      -15,
      12,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, -2, 4]\noutput : list = [-19, -16, -1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_asc([3, -2, 4]),-3),-3)),4)",
    "io_inp": [
      3,
      -2,
      4
    ],
    "io_out": [
      -19,
      -16,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_asc(input),-3),-3)),4)"
  },
  {
    "input": "input : list = [5, 4, -3, -2, -2, 2]\noutput : list = [0, -1, -3, -7, -7, -8]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([5, 4, -3, -2, -2, 2],5)))",
    "io_inp": [
      5,
      4,
      -3,
      -2,
      -2,
      2
    ],
    "io_out": [
      0,
      -1,
      -3,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,5)))"
  },
  {
    "input": "input : list = [-4, 0, 5, 0, 2]\noutput : list = [20, 0, -25, 0, -10]",
    "output": "generated_output : list = mul_n([-4, 0, 5, 0, 2],-5)",
    "io_inp": [
      -4,
      0,
      5,
      0,
      2
    ],
    "io_out": [
      20,
      0,
      -25,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [5, 4, -3, -1, 4]\noutput : list = [20, 16, -12, -4, 16]",
    "output": "generated_output : list = mul_n([5, 4, -3, -1, 4],4)",
    "io_inp": [
      5,
      4,
      -3,
      -1,
      4
    ],
    "io_out": [
      20,
      16,
      -12,
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, -4, -1, -3, -4, 5]\noutput : list = [-16, -16, -12, -4, 16, 20]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n([4, -4, -1, -3, -4, 5],4)),1))",
    "io_inp": [
      4,
      -4,
      -1,
      -3,
      -4,
      5
    ],
    "io_out": [
      -16,
      -16,
      -12,
      -4,
      16,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(input,4)),1))"
  },
  {
    "input": "input : list = [3, 3, 4, -5, 0, -4]\noutput : list = [5, 4, 0, -3, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc([3, 3, 4, -5, 0, -4])),-1)))",
    "io_inp": [
      3,
      3,
      4,
      -5,
      0,
      -4
    ],
    "io_out": [
      5,
      4,
      0,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-3, 4, 0, 5, -4]\noutput : list = [-20, -18, -12, -4, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sub_n([-3, 4, 0, 5, -4],3),-2),5)),2)",
    "io_inp": [
      -3,
      4,
      0,
      5,
      -4
    ],
    "io_out": [
      -20,
      -18,
      -12,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sub_n(input,3),-2),5)),2)"
  },
  {
    "input": "input : list = [-5, -5, -2, 5]\noutput : list = [-5, -2, 5]",
    "output": "generated_output : list = drop([-5, -5, -2, 5],1)",
    "io_inp": [
      -5,
      -5,
      -2,
      5
    ],
    "io_out": [
      -5,
      -2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -2, -5, -3]\noutput : list = [5, 3, 2]",
    "output": "generated_output : list = reverse(drop(mul_n(sort_des(sort_asc([3, -2, -5, -3])),-1),1))",
    "io_inp": [
      3,
      -2,
      -5,
      -3
    ],
    "io_out": [
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(mul_n(sort_des(sort_asc(input)),-1),1))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, -2]))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 1, 4, -4, 2, -1]\noutput : list = [4, 7, 1, 9, 6, 2]",
    "output": "generated_output : list = reverse(add_n([-3, 1, 4, -4, 2, -1],5))",
    "io_inp": [
      -3,
      1,
      4,
      -4,
      2,
      -1
    ],
    "io_out": [
      4,
      7,
      1,
      9,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [4, 1, -3, 5, -1, 2]\noutput : list = [-4, -2, 0, 1, 3, 4]",
    "output": "generated_output : list = add_n(take(sort_asc([4, 1, -3, 5, -1, 2]),25),-1)",
    "io_inp": [
      4,
      1,
      -3,
      5,
      -1,
      2
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),25),-1)"
  },
  {
    "input": "input : list = [5, -1, -3, -3]\noutput : list = [6, 4]",
    "output": "generated_output : list = take(take(add_n(add_n(drop([5, -1, -3, -3],1),2),5),2),6)",
    "io_inp": [
      5,
      -1,
      -3,
      -3
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(drop(input,1),2),5),2),6)"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(take([1, -3, 4],1))),33))",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(take(input,1))),33))"
  },
  {
    "input": "input : list = [3, -5, -2, 5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(take([3, -5, -2, 5],2)))))",
    "io_inp": [
      3,
      -5,
      -2,
      5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(take(input,2)))))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-5, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n([-2, 4],-1),5))))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n(input,-1),5))))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sub_n([4, 2],5),-2),-1)),17)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sub_n(input,5),-2),-1)),17)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [6, 2]",
    "output": "generated_output : list = sub_n([3, -1],-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [4, -17, -20]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(mul_n([4, -3, 5],-3))),-5))",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      4,
      -17,
      -20
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(mul_n(input,-3))),-5))"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-3, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(add_n([1, 0, 0],1),14),5),1))",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(add_n(input,1),14),5),1))"
  },
  {
    "input": "input : list = [-1, 1, -4, 3, -5]\noutput : list = [-15, 9, -12, 3, -3]",
    "output": "generated_output : list = reverse(mul_n([-1, 1, -4, 3, -5],3))",
    "io_inp": [
      -1,
      1,
      -4,
      3,
      -5
    ],
    "io_out": [
      -15,
      9,
      -12,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [0, -2, 3, 1]\noutput : list = [5, 3, 2, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(reverse([0, -2, 3, 1]),4))),-2)",
    "io_inp": [
      0,
      -2,
      3,
      1
    ],
    "io_out": [
      5,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(reverse(input),4))),-2)"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [-17]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(take([3, -4, 5],1),-3),3),1),-5)",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      -17
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(take(input,1),-3),3),1),-5)"
  },
  {
    "input": "input : list = [-4, -3, -2, -1]\noutput : list = [-5, -8, -11, -14]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(reverse([-4, -3, -2, -1]),3),-3),1))",
    "io_inp": [
      -4,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -8,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(reverse(input),3),-3),1))"
  },
  {
    "input": "input : list = [5, -3, -3]\noutput : list = [6, -2, -2]",
    "output": "generated_output : list = take(sub_n([5, -3, -3],-1),13)",
    "io_inp": [
      5,
      -3,
      -3
    ],
    "io_out": [
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),13)"
  },
  {
    "input": "input : list = [-1, 3, 4, 3]\noutput : list = [2, 1, 1, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(sort_des([-1, 3, 4, 3]))),25),2)",
    "io_inp": [
      -1,
      3,
      4,
      3
    ],
    "io_out": [
      2,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(sort_des(input))),25),2)"
  },
  {
    "input": "input : list = [3, -1, 4, 1, 1]\noutput : list = [3, 3, 5, 6]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(sort_des([3, -1, 4, 1, 1]),4),-3)),1)",
    "io_inp": [
      3,
      -1,
      4,
      1,
      1
    ],
    "io_out": [
      3,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(sort_des(input),4),-3)),1)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [10, 8, 6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sort_des([5, 3, 1])))),-5)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      10,
      8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [-1, -2, -2, 0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(reverse(drop(mul_n(mul_n([-1, -2, -2, 0, 0],2),-5),3)))",
    "io_inp": [
      -1,
      -2,
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(mul_n(mul_n(input,2),-5),3)))"
  },
  {
    "input": "input : list = [1, 4, 3, 0]\noutput : list = [8, 6, 2, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(reverse([1, 4, 3, 0]),9)),2))",
    "io_inp": [
      1,
      4,
      3,
      0
    ],
    "io_out": [
      8,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(reverse(input),9)),2))"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [4, 0, -6]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(sub_n([-5, 5, 1],-3)),-5),-1))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      4,
      0,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(sub_n(input,-3)),-5),-1))"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [-4, -4, 4]",
    "output": "generated_output : list = mul_n([4, 4, -4],-1)",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [12, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des([2, 4]),-1)),5),3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      12,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des(input),-1)),5),3)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, -1, 1],1))",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, -3, -2, -2]\noutput : list = [-9, -9, -12, -18]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(sort_des([-5, -3, -2, -2])),5),-4),3)",
    "io_inp": [
      -5,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -12,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(sort_des(input)),5),-4),3)"
  },
  {
    "input": "input : list = [4, -2, 3, 1]\noutput : list = [2, 1, -1, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(reverse([4, -2, 3, 1]),8)),2))",
    "io_inp": [
      4,
      -2,
      3,
      1
    ],
    "io_out": [
      2,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(reverse(input),8)),2))"
  },
  {
    "input": "input : list = [-2, 4, -2, -1, 3, -1]\noutput : list = [-4, 8, -4, -2, 6, -2]",
    "output": "generated_output : list = mul_n([-2, 4, -2, -1, 3, -1],2)",
    "io_inp": [
      -2,
      4,
      -2,
      -1,
      3,
      -1
    ],
    "io_out": [
      -4,
      8,
      -4,
      -2,
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(take(add_n([-1, -3],2),8)),3))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(add_n(input,2),8)),3))"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(mul_n([3, 5, -2],-1),7))))",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(mul_n(input,-1),7))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [20, -20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse([-4, 4])),5)))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse(input)),5)))"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [5, 2, 2]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n([-3, 0, -3],-5)),14))",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(input,-5)),14))"
  },
  {
    "input": "input : list = [4, -4, 5, 1]\noutput : list = [10, -14]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(take([4, -4, 5, 1],2)),3),25),2)",
    "io_inp": [
      4,
      -4,
      5,
      1
    ],
    "io_out": [
      10,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(take(input,2)),3),25),2)"
  },
  {
    "input": "input : list = [1, 4, 4, 5, 2]\noutput : list = [0, 1, 3, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(sub_n([1, 4, 4, 5, 2],-1)))),-2)",
    "io_inp": [
      1,
      4,
      4,
      5,
      2
    ],
    "io_out": [
      0,
      1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(sub_n(input,-1)))),-2)"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [4, -1, -1]",
    "output": "generated_output : list = add_n([2, -3, -3],2)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, -1, -3, 0, 4]\noutput : list = [-7, -3, -2, 0, 2]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(reverse([-5, -1, -3, 0, 4])),3),-1),47)",
    "io_inp": [
      -5,
      -1,
      -3,
      0,
      4
    ],
    "io_out": [
      -7,
      -3,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(reverse(input)),3),-1),47)"
  },
  {
    "input": "input : list = [0, -4, 4, -4, 2]\noutput : list = [10, 6, 2]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(take([0, -4, 4, -4, 2],3),2),4),-4))",
    "io_inp": [
      0,
      -4,
      4,
      -4,
      2
    ],
    "io_out": [
      10,
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(take(input,3),2),4),-4))"
  },
  {
    "input": "input : list = [1, -3, -5, 3, 2, -4]\noutput : list = [-125, -100, -75, 25, 50, 75]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n([1, -3, -5, 3, 2, -4],-5)),-5))",
    "io_inp": [
      1,
      -3,
      -5,
      3,
      2,
      -4
    ],
    "io_out": [
      -125,
      -100,
      -75,
      25,
      50,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(input,-5)),-5))"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [-5, -4, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des([5, 3, 2]),2),5))",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(input),2),5))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [3, -12]",
    "output": "generated_output : list = sort_des(mul_n([-4, 1],3))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [5, 0, 0, -2, 0, -3]\noutput : list = [5, 0, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(take([5, 0, 0, -2, 0, -3],4)))))",
    "io_inp": [
      5,
      0,
      0,
      -2,
      0,
      -3
    ],
    "io_out": [
      5,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(take(input,4)))))"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [6, -6, -9]",
    "output": "generated_output : list = sort_des(mul_n([2, -2, 3],-3))",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(take([-1, 1, 3],1)),-5),2))",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(take(input,1)),-5),2))"
  },
  {
    "input": "input : list = [1, 2, 1, 5, 3]\noutput : list = [1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(drop([1, 2, 1, 5, 3],1))",
    "io_inp": [
      1,
      2,
      1,
      5,
      3
    ],
    "io_out": [
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-7, -9]",
    "output": "generated_output : list = reverse(sub_n(add_n([-3, -1],-4),2))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-4),2))"
  },
  {
    "input": "input : list = [-2, 3, 3]\noutput : list = [9, 9, 4]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(reverse([-2, 3, 3]),-5),-2),-1),41)",
    "io_inp": [
      -2,
      3,
      3
    ],
    "io_out": [
      9,
      9,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(reverse(input),-5),-2),-1),41)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-24, -4]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(drop([-5, -5, 0],1),1),16)),4)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -24,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(drop(input,1),1),16)),4)"
  },
  {
    "input": "input : list = [2, 5, -2]\noutput : list = [-7, -16, 5]",
    "output": "generated_output : list = sub_n(mul_n([2, 5, -2],-3),1)",
    "io_inp": [
      2,
      5,
      -2
    ],
    "io_out": [
      -7,
      -16,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-8, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([-4, 5])),4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),4)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sub_n([2, 3],5),2))))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sub_n(input,5),2))))"
  },
  {
    "input": "input : list = [4, 0, 0, 1, -5]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = reverse(take([4, 0, 0, 1, -5],3))",
    "io_inp": [
      4,
      0,
      0,
      1,
      -5
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [-9, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(mul_n([-1, 4, 4],3),16),-2)),4)",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      -9,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(mul_n(input,3),16),-2)),4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(add_n([-3, -2],3)),-2)),12)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(add_n(input,3)),-2)),12)"
  },
  {
    "input": "input : list = [0, -5, -4, -3, 5]\noutput : list = [-4, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take([0, -5, -4, -3, 5],3)),-4))",
    "io_inp": [
      0,
      -5,
      -4,
      -3,
      5
    ],
    "io_out": [
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(input,3)),-4))"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [-5, 3, 2]",
    "output": "generated_output : list = reverse([2, 3, -5])",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, -4, 4, -3, 4]\noutput : list = [0, 28, -4, 28, 0, 28]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(reverse([-3, 4, -4, 4, -3, 4])),1),-4),4)",
    "io_inp": [
      -3,
      4,
      -4,
      4,
      -3,
      4
    ],
    "io_out": [
      0,
      28,
      -4,
      28,
      0,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(reverse(input)),1),-4),4)"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [-5, 3, 19]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(mul_n([1, 3, 0],4),2),5)))",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      -5,
      3,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(mul_n(input,4),2),5)))"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [-8, -2, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n([5, -3, 3],-5))))",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(input,-5))))"
  },
  {
    "input": "input : list = [-2, 1, -1, 4, 4]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(take([-2, 1, -1, 4, 4],1),-1)",
    "io_inp": [
      -2,
      1,
      -1,
      4,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [-50, -20]",
    "output": "generated_output : list = mul_n(mul_n(reverse(drop(sub_n([-5, -3, 0],-5),1)),-5),2)",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      -50,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(drop(sub_n(input,-5),1)),-5),2)"
  },
  {
    "input": "input : list = [4, -4, 3, 1, -2, 4]\noutput : list = [-2, 1, 3, 4, 4]",
    "output": "generated_output : list = add_n(add_n(reverse(take(sort_des([4, -4, 3, 1, -2, 4]),5)),-3),3)",
    "io_inp": [
      4,
      -4,
      3,
      1,
      -2,
      4
    ],
    "io_out": [
      -2,
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(sort_des(input),5)),-3),3)"
  },
  {
    "input": "input : list = [-4, 0, 3, 2, -1]\noutput : list = [1, 4, 5, 7, 8]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(sort_asc([-4, 0, 3, 2, -1]),-5)),38))",
    "io_inp": [
      -4,
      0,
      3,
      2,
      -1
    ],
    "io_out": [
      1,
      4,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(sort_asc(input),-5)),38))"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(take([1, -3, -3],1),-5),3)))",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(take(input,1),-5),3)))"
  },
  {
    "input": "input : list = [-1, -3, -2, 4, 2]\noutput : list = [-8, -4, 2, 4, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(add_n([-1, -3, -2, 4, 2],-4))),4),-2)",
    "io_inp": [
      -1,
      -3,
      -2,
      4,
      2
    ],
    "io_out": [
      -8,
      -4,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(add_n(input,-4))),4),-2)"
  },
  {
    "input": "input : list = [5, -1, 2, -5]\noutput : list = [4, -2, -8, -16]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(add_n([5, -1, 2, -5],-2),2),-2)))",
    "io_inp": [
      5,
      -1,
      2,
      -5
    ],
    "io_out": [
      4,
      -2,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(add_n(input,-2),2),-2)))"
  },
  {
    "input": "input : list = [-4, 2, 3, -1, 0]\noutput : list = [-6, 2, 0]",
    "output": "generated_output : list = mul_n(drop([-4, 2, 3, -1, 0],2),-2)",
    "io_inp": [
      -4,
      2,
      3,
      -1,
      0
    ],
    "io_out": [
      -6,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [5, 5, 1, 4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(take(drop([5, 5, 1, 4, 0],3),13),1),30))",
    "io_inp": [
      5,
      5,
      1,
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(drop(input,3),13),1),30))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(add_n([0, 0],-5),-5)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),-5)"
  },
  {
    "input": "input : list = [4, 2, 3, -5]\noutput : list = [-40, -5, 0, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(sub_n([4, 2, 3, -5],3),5)),37))",
    "io_inp": [
      4,
      2,
      3,
      -5
    ],
    "io_out": [
      -40,
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(sub_n(input,3),5)),37))"
  },
  {
    "input": "input : list = [-4, 2, -4]\noutput : list = [0, 0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sub_n([-4, 2, -4],-4))),1))",
    "io_inp": [
      -4,
      2,
      -4
    ],
    "io_out": [
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sub_n(input,-4))),1))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse(take(take(reverse(sort_asc([5, -2])),23),4))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(sort_asc(input)),23),4))"
  },
  {
    "input": "input : list = [-3, -3, 3, -2, 1]\noutput : list = [7, 13, 8, 11]",
    "output": "generated_output : list = sub_n(drop(take(add_n(add_n([-3, -3, 3, -2, 1],4),4),8),1),-2)",
    "io_inp": [
      -3,
      -3,
      3,
      -2,
      1
    ],
    "io_out": [
      7,
      13,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(drop(take(add_n(add_n(input,4),4),8),1),-2)"
  },
  {
    "input": "input : list = [-4, -3, 1, -3, 1]\noutput : list = [16, 12, 12, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(reverse([-4, -3, 1, -3, 1]),-4),6)))",
    "io_inp": [
      -4,
      -3,
      1,
      -3,
      1
    ],
    "io_out": [
      16,
      12,
      12,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(reverse(input),-4),6)))"
  },
  {
    "input": "input : list = [0, 5, -1, -5, -1, -4]\noutput : list = [-5, -4, -1, -1, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse([0, 5, -1, -5, -1, -4]))",
    "io_inp": [
      0,
      5,
      -1,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, -3, -1, 4, 0]\noutput : list = [-20, -4, 0, 8, 8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(sub_n([-3, -3, -1, 4, 0],1),-3),5)),-4)",
    "io_inp": [
      -3,
      -3,
      -1,
      4,
      0
    ],
    "io_out": [
      -20,
      -4,
      0,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(sub_n(input,1),-3),5)),-4)"
  },
  {
    "input": "input : list = [0, 4, 0, -3]\noutput : list = [11, 5, 5, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(mul_n([0, 4, 0, -3],-2),10))),-5)",
    "io_inp": [
      0,
      4,
      0,
      -3
    ],
    "io_out": [
      11,
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(mul_n(input,-2),10))),-5)"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [3, 3, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc([3, -3, 3]),3))",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),3))"
  },
  {
    "input": "input : list = [-5, 4, 2, -3, -5]\noutput : list = [-9, 0, -2, -7, -9]",
    "output": "generated_output : list = add_n([-5, 4, 2, -3, -5],-4)",
    "io_inp": [
      -5,
      4,
      2,
      -3,
      -5
    ],
    "io_out": [
      -9,
      0,
      -2,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 1, 1, -1]\noutput : list = [-3, -1, 1, 1]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(reverse([-3, 1, 1, -1])),21)))",
    "io_inp": [
      -3,
      1,
      1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(reverse(input)),21)))"
  },
  {
    "input": "input : list = [3, 1, -5, -3, 0]\noutput : list = [-12, -10, -7, -6, -4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(mul_n([3, 1, -5, -3, 0],1),-4),-3)))",
    "io_inp": [
      3,
      1,
      -5,
      -3,
      0
    ],
    "io_out": [
      -12,
      -10,
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(mul_n(input,1),-4),-3)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-17, 13]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(mul_n([2, -4],-5),-5))),-2)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -17,
      13
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(mul_n(input,-5),-5))),-2)"
  },
  {
    "input": "input : list = [-3, -3, 4, -1]\noutput : list = [4, -1, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(sort_des([-3, -3, 4, -1]),1),24)))",
    "io_inp": [
      -3,
      -3,
      4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(sort_des(input),1),24)))"
  },
  {
    "input": "input : list = [-3, -3, 2, -1, 5]\noutput : list = [10, 10, 0, 6, -6]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(add_n([-3, -3, 2, -1, 5],-2),-2))),43)",
    "io_inp": [
      -3,
      -3,
      2,
      -1,
      5
    ],
    "io_out": [
      10,
      10,
      0,
      6,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(add_n(input,-2),-2))),43)"
  },
  {
    "input": "input : list = [5, -4, -3, 3, -2]\noutput : list = [5, -4]",
    "output": "generated_output : list = take([5, -4, -3, 3, -2],2)",
    "io_inp": [
      5,
      -4,
      -3,
      3,
      -2
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [2, 1, -5]",
    "output": "generated_output : list = sort_des([2, -5, 1])",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n([2, -1],-4)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 5, 4, -3, -2, 5]\noutput : list = [-1, 8, 7, 0, 1, 8]",
    "output": "generated_output : list = add_n([-4, 5, 4, -3, -2, 5],3)",
    "io_inp": [
      -4,
      5,
      4,
      -3,
      -2,
      5
    ],
    "io_out": [
      -1,
      8,
      7,
      0,
      1,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 2, -1, -3]\noutput : list = [-5, -3, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([-5, 2, -1, -3])))",
    "io_inp": [
      -5,
      2,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, 0, 0, -2, 1]\noutput : list = [0, 0, 0, -4, 2]",
    "output": "generated_output : list = take(mul_n([0, 0, 0, -2, 1],2),13)",
    "io_inp": [
      0,
      0,
      0,
      -2,
      1
    ],
    "io_out": [
      0,
      0,
      0,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),13)"
  },
  {
    "input": "input : list = [-1, 1, -5, 4, -4, 4]\noutput : list = [-3, 3, 1]",
    "output": "generated_output : list = reverse(take(add_n(add_n(sub_n([-1, 1, -5, 4, -4, 4],4),2),4),3))",
    "io_inp": [
      -1,
      1,
      -5,
      4,
      -4,
      4
    ],
    "io_out": [
      -3,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(sub_n(input,4),2),4),3))"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(take([3, -2, -4],1)),27),1),-4)",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(take(input,1)),27),1),-4)"
  },
  {
    "input": "input : list = [-2, 1, 4, 0, 4]\noutput : list = [-5, -5, 1, 3, 7]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_des([-2, 1, 4, 0, 4]),-3),-2)),-3)",
    "io_inp": [
      -2,
      1,
      4,
      0,
      4
    ],
    "io_out": [
      -5,
      -5,
      1,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_des(input),-3),-2)),-3)"
  },
  {
    "input": "input : list = [-5, -5, -2, -4, -5]\noutput : list = [-8, -7, -5, -8, -8]",
    "output": "generated_output : list = reverse(add_n([-5, -5, -2, -4, -5],-3))",
    "io_inp": [
      -5,
      -5,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [10, 1, 8]",
    "output": "generated_output : list = sub_n(reverse([3, -4, 5]),-5)",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      10,
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 1])",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, 0, -4, 2, 2]\noutput : list = [18, 10, 6, 6, 2, 2]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_des([4, 4, 0, -4, 2, 2])),-5),-2))",
    "io_inp": [
      4,
      4,
      0,
      -4,
      2,
      2
    ],
    "io_out": [
      18,
      10,
      6,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_des(input)),-5),-2))"
  },
  {
    "input": "input : list = [-1, -2, -2, -1, 0]\noutput : list = [-9, -6, -6, -3, -3]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse([-1, -2, -2, -1, 0])),-3),-3))",
    "io_inp": [
      -1,
      -2,
      -2,
      -1,
      0
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse(input)),-3),-3))"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [3, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, 3])",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 4, 0, 3, -1]\noutput : list = [50, 10, 0, -30, -40, -50]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(sort_des([-5, 5, 4, 0, 3, -1]))),5),-2)",
    "io_inp": [
      -5,
      5,
      4,
      0,
      3,
      -1
    ],
    "io_out": [
      50,
      10,
      0,
      -30,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(sort_des(input))),5),-2)"
  },
  {
    "input": "input : list = [4, 2, -3, -1, 4, 1]\noutput : list = [-16, -8, -4, 4, 12]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(drop([4, 2, -3, -1, 4, 1],1)),18),-4))",
    "io_inp": [
      4,
      2,
      -3,
      -1,
      4,
      1
    ],
    "io_out": [
      -16,
      -8,
      -4,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(drop(input,1)),18),-4))"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [-12, -2, -2]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sort_asc([0, 0, 5])),18),-2),2)",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      -12,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sort_asc(input)),18),-2),2)"
  },
  {
    "input": "input : list = [-4, 5, -5, -5, 5, -3]\noutput : list = [-7, -7, -6, -5, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n([-4, 5, -5, -5, 5, -3],-2)))",
    "io_inp": [
      -4,
      5,
      -5,
      -5,
      5,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -5,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-2)))"
  },
  {
    "input": "input : list = [-5, 1, -1, 2, 0, 3]\noutput : list = [8, 5, 7, 4, 6, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n([-5, 1, -1, 2, 0, 3],-2),3))",
    "io_inp": [
      -5,
      1,
      -1,
      2,
      0,
      3
    ],
    "io_out": [
      8,
      5,
      7,
      4,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-2),3))"
  },
  {
    "input": "input : list = [-4, -1, -4, -4]\noutput : list = [-5, -8, -8, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(reverse([-4, -1, -4, -4]),19)),4))",
    "io_inp": [
      -4,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(reverse(input),19)),4))"
  },
  {
    "input": "input : list = [2, -3, -2]\noutput : list = [-2, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, -2])",
    "io_inp": [
      2,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3, 4, 2, 5]\noutput : list = [-20, -24, -32]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(drop([-1, 3, 4, 2, 5],2),-5),5),4))",
    "io_inp": [
      -1,
      3,
      4,
      2,
      5
    ],
    "io_out": [
      -20,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(drop(input,2),-5),5),4))"
  },
  {
    "input": "input : list = [-2, 2, -5, 2, -4]\noutput : list = [-5, -4, -2, 2, 2]",
    "output": "generated_output : list = sort_asc([-2, 2, -5, 2, -4])",
    "io_inp": [
      -2,
      2,
      -5,
      2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 3, 1, 1]\noutput : list = [25, 15, 15]",
    "output": "generated_output : list = mul_n(sub_n(drop([0, 3, 1, 1],1),-2),5)",
    "io_inp": [
      0,
      3,
      1,
      1
    ],
    "io_out": [
      25,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,1),-2),5)"
  },
  {
    "input": "input : list = [-3, 3, -3]\noutput : list = [-20, 10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sub_n([-3, 3, -3],-1))),-5))",
    "io_inp": [
      -3,
      3,
      -3
    ],
    "io_out": [
      -20,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sub_n(input,-1))),-5))"
  },
  {
    "input": "input : list = [2, 4, -5, 2, 2, 1]\noutput : list = [-5, 1, 2, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 4, -5, 2, 2, 1])",
    "io_inp": [
      2,
      4,
      -5,
      2,
      2,
      1
    ],
    "io_out": [
      -5,
      1,
      2,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -5, 2, 1, 1, 0]\noutput : list = [4, 2, 2, 0, 0, -10]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(add_n([0, -5, 2, 1, 1, 0],-1)),2),-2))",
    "io_inp": [
      0,
      -5,
      2,
      1,
      1,
      0
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(add_n(input,-1)),2),-2))"
  },
  {
    "input": "input : list = [-5, 5, 3, 5, 1]\noutput : list = [5, 5, 3, 1, -5]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(sort_des([-5, 5, 3, 5, 1])),1),-1),44)",
    "io_inp": [
      -5,
      5,
      3,
      5,
      1
    ],
    "io_out": [
      5,
      5,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(sort_des(input)),1),-1),44)"
  },
  {
    "input": "input : list = [1, -5, 2, -2]\noutput : list = [4, 8]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(drop([1, -5, 2, -2],2),-1)),5),47)",
    "io_inp": [
      1,
      -5,
      2,
      -2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(drop(input,2),-1)),5),47)"
  },
  {
    "input": "input : list = [-2, 4, 0, -3, -4]\noutput : list = [-4, -3, 0, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, 0, -3, -4])",
    "io_inp": [
      -2,
      4,
      0,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [8, -20]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(reverse([-5, 2]),1),-4),-4))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      8,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(reverse(input),1),-4),-4))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(reverse([5, 5]))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, 4, -4, -5, 3, 5]\noutput : list = [4, 8, -8, -10, 6, 10]",
    "output": "generated_output : list = mul_n(mul_n([2, 4, -4, -5, 3, 5],2),1)",
    "io_inp": [
      2,
      4,
      -4,
      -5,
      3,
      5
    ],
    "io_out": [
      4,
      8,
      -8,
      -10,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),1)"
  },
  {
    "input": "input : list = [4, 3, -3, 2, -1, -2]\noutput : list = [6, 5, 4, 1, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(mul_n([4, 3, -3, 2, -1, -2],1),1),1)))",
    "io_inp": [
      4,
      3,
      -3,
      2,
      -1,
      -2
    ],
    "io_out": [
      6,
      5,
      4,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(mul_n(input,1),1),1)))"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [-2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-5, -4, -2]))",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -2, 3, 5, -4]\noutput : list = [5, 5, 3, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc([5, -2, 3, 5, -4]))",
    "io_inp": [
      5,
      -2,
      3,
      5,
      -4
    ],
    "io_out": [
      5,
      5,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 2, -3, -2]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = sort_asc(drop([-2, 2, -3, -2],1))",
    "io_inp": [
      -2,
      2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [1, 3, -4, -2]\noutput : list = [-4, -12, 16, 8]",
    "output": "generated_output : list = mul_n([1, 3, -4, -2],-4)",
    "io_inp": [
      1,
      3,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -12,
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, -1, 1, 0]\noutput : list = [78, 18, 3, -12]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(sort_des([5, -1, 1, 0]),18),-5),-3),-3)",
    "io_inp": [
      5,
      -1,
      1,
      0
    ],
    "io_out": [
      78,
      18,
      3,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(sort_des(input),18),-5),-3),-3)"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [2, 4, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n([-2, 0, 4],4)),-5),5))",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n(input,4)),-5),5))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [6, 3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_asc([2, 5]),-1))))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(sort_des([1, 3])))))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(take([1, 0, -5],1),-2),4)))",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(take(input,1),-2),4)))"
  },
  {
    "input": "input : list = [0, -4, 0, 4, 4, -4]\noutput : list = [1, 1, -3, -3, -7, -7]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(sub_n([0, -4, 0, 4, 4, -4],3)),1),-5),-5)",
    "io_inp": [
      0,
      -4,
      0,
      4,
      4,
      -4
    ],
    "io_out": [
      1,
      1,
      -3,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(sub_n(input,3)),1),-5),-5)"
  },
  {
    "input": "input : list = [3, 4, -3, 2, 0, 3]\noutput : list = [14, 8, 4, 2, 2, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_des([3, 4, -3, 2, 0, 3]))),4),-2)",
    "io_inp": [
      3,
      4,
      -3,
      2,
      0,
      3
    ],
    "io_out": [
      14,
      8,
      4,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_des(input))),4),-2)"
  },
  {
    "input": "input : list = [-5, -5, 0, -2, 3, -4]\noutput : list = [-1, -4, -6, -8, -9, -9]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(reverse([-5, -5, 0, -2, 3, -4])),-4)))",
    "io_inp": [
      -5,
      -5,
      0,
      -2,
      3,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [5, -3, 1, -3, 0, 1]\noutput : list = [5, 1, 1, 0, -3, -3]",
    "output": "generated_output : list = sort_des(take(reverse([5, -3, 1, -3, 0, 1]),20))",
    "io_inp": [
      5,
      -3,
      1,
      -3,
      0,
      1
    ],
    "io_out": [
      5,
      1,
      1,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),20))"
  },
  {
    "input": "input : list = [3, -3, 3, 4, 4, -2]\noutput : list = [5, 5, 4, 4, -1, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc([3, -3, 3, 4, 4, -2]),4))),5)",
    "io_inp": [
      3,
      -3,
      3,
      4,
      4,
      -2
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc(input),4))),5)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [16, -4, 4]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-1, 1, -4],-4)),1)",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      16,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-4)),1)"
  },
  {
    "input": "input : list = [4, -1, -1, -4, 4, 4]\noutput : list = [0, 0, 0, -5, -5, -8]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([4, -1, -1, -4, 4, 4],-4)))",
    "io_inp": [
      4,
      -1,
      -1,
      -4,
      4,
      4
    ],
    "io_out": [
      0,
      0,
      0,
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [3, -2, -1, -5, 5, -2]\noutput : list = [12, -9, -18]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(drop([3, -2, -1, -5, 5, -2],3),5),3),-3))",
    "io_inp": [
      3,
      -2,
      -1,
      -5,
      5,
      -2
    ],
    "io_out": [
      12,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(drop(input,3),5),3),-3))"
  },
  {
    "input": "input : list = [1, 5, 5, 2, -2, 5]\noutput : list = [4, 1, -3]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_asc(drop([1, 5, 5, 2, -2, 5],3)),21)),1)",
    "io_inp": [
      1,
      5,
      5,
      2,
      -2,
      5
    ],
    "io_out": [
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_asc(drop(input,3)),21)),1)"
  },
  {
    "input": "input : list = [1, -3, 1, 3, -1]\noutput : list = [-15, -9, -9, -3, 3]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([1, -3, 1, 3, -1],2),-3))",
    "io_inp": [
      1,
      -3,
      1,
      3,
      -1
    ],
    "io_out": [
      -15,
      -9,
      -9,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,2),-3))"
  },
  {
    "input": "input : list = [5, 0, 5, 4, -3]\noutput : list = [4, 9, 9]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(take([5, 0, 5, 4, -3],3)),4)))",
    "io_inp": [
      5,
      0,
      5,
      4,
      -3
    ],
    "io_out": [
      4,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(take(input,3)),4)))"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [20, -16, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(sort_asc([-4, -5, 5])))),4)",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      20,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = drop([0, 1, 0],1)",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 2, -5, 4]\noutput : list = [-5, -3, 2, 4]",
    "output": "generated_output : list = sort_asc([-3, 2, -5, 4])",
    "io_inp": [
      -3,
      2,
      -5,
      4
    ],
    "io_out": [
      -5,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, 5, 2, -5, -4]\noutput : list = [20, 20, 20, 8, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(reverse([5, 5, 5, 2, -5, -4]))),4))",
    "io_inp": [
      5,
      5,
      5,
      2,
      -5,
      -4
    ],
    "io_out": [
      20,
      20,
      20,
      8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, 3, 1, 1, -1]\noutput : list = [5, 3, 1, 1, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n([5, 0, 3, 1, 1, -1],5),5)))",
    "io_inp": [
      5,
      0,
      3,
      1,
      1,
      -1
    ],
    "io_out": [
      5,
      3,
      1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(input,5),5)))"
  },
  {
    "input": "input : list = [-2, -4, -2, 5, -4, 0]\noutput : list = [-4, -4, -2, -2, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, -4, -2, 5, -4, 0]))",
    "io_inp": [
      -2,
      -4,
      -2,
      5,
      -4,
      0
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [-7, -6]",
    "output": "generated_output : list = add_n(add_n(add_n(drop([3, 3, 4],1),-4),-5),-1)",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(drop(input,1),-4),-5),-1)"
  },
  {
    "input": "input : list = [-1, -3, 4, -4, -4, 3]\noutput : list = [4, 3, -1, -3, -4, -4]",
    "output": "generated_output : list = sort_des(reverse([-1, -3, 4, -4, -4, 3]))",
    "io_inp": [
      -1,
      -3,
      4,
      -4,
      -4,
      3
    ],
    "io_out": [
      4,
      3,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, -5, 4, 4, 0, 0]\noutput : list = [18, 8, -27]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(take([2, -5, 4, 4, 0, 0],3),5),-2)))",
    "io_inp": [
      2,
      -5,
      4,
      4,
      0,
      0
    ],
    "io_out": [
      18,
      8,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(take(input,3),5),-2)))"
  },
  {
    "input": "input : list = [0, -1, -5, 3]\noutput : list = [9, 0, -3, -15]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse([0, -1, -5, 3])),3)))",
    "io_inp": [
      0,
      -1,
      -5,
      3
    ],
    "io_out": [
      9,
      0,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse(input)),3)))"
  },
  {
    "input": "input : list = [1, 2, 2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(drop([1, 2, 2],1))),-1),-5)",
    "io_inp": [
      1,
      2,
      2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(drop(input,1))),-1),-5)"
  },
  {
    "input": "input : list = [1, 4, 0, -3, 2, -4]\noutput : list = [2, 0, -1, -2, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc([1, 4, 0, -3, 2, -4]),13),2))",
    "io_inp": [
      1,
      4,
      0,
      -3,
      2,
      -4
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(input),13),2))"
  },
  {
    "input": "input : list = [-3, 2, 2, -2]\noutput : list = [-8, -7]",
    "output": "generated_output : list = reverse(drop(sort_des(add_n(reverse([-3, 2, 2, -2]),-5)),2))",
    "io_inp": [
      -3,
      2,
      2,
      -2
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(add_n(reverse(input),-5)),2))"
  },
  {
    "input": "input : list = [1, 5, 1, 3, -3, -3]\noutput : list = [-2, -2, 2, 2, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc([1, 5, 1, 3, -3, -3]),1)",
    "io_inp": [
      1,
      5,
      1,
      3,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-7, 20]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(sort_asc([-4, 5]),3),-3),-2),25)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -7,
      20
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(sort_asc(input),3),-3),-2),25)"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [-8]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(take([-2, 3, -2],1)),-2),-4),39)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(take(input,1)),-2),-4),39)"
  },
  {
    "input": "input : list = [-3, -2, -2, 1]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -2, -2, 1],1)",
    "io_inp": [
      -3,
      -2,
      -2,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 3, -1, 3, -1]\noutput : list = [0, 4, 0]",
    "output": "generated_output : list = reverse(take(reverse(take(sub_n([-5, 3, -1, 3, -1],-1),14)),3))",
    "io_inp": [
      -5,
      3,
      -1,
      3,
      -1
    ],
    "io_out": [
      0,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(sub_n(input,-1),14)),3))"
  },
  {
    "input": "input : list = [4, -3, 2, -5, -1]\noutput : list = [4, 2, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([4, -3, 2, -5, -1])))",
    "io_inp": [
      4,
      -3,
      2,
      -5,
      -1
    ],
    "io_out": [
      4,
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [0, 0, -3, -5, 2, 5]\noutput : list = [-74, -44, 1, 1, 31, 76]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_des([0, 0, -3, -5, 2, 5]),-3),-5)),-1)",
    "io_inp": [
      0,
      0,
      -3,
      -5,
      2,
      5
    ],
    "io_out": [
      -74,
      -44,
      1,
      1,
      31,
      76
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_des(input),-3),-5)),-1)"
  },
  {
    "input": "input : list = [1, -2, 0, 2, 0]\noutput : list = [-2, -12, -2, 8, -7]",
    "output": "generated_output : list = sub_n(reverse(mul_n([1, -2, 0, 2, 0],-5)),2)",
    "io_inp": [
      1,
      -2,
      0,
      2,
      0
    ],
    "io_out": [
      -2,
      -12,
      -2,
      8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,-5)),2)"
  },
  {
    "input": "input : list = [0, 0, 5, -2, 5, -5]\noutput : list = [-8, 2, -5]",
    "output": "generated_output : list = sub_n(take(reverse(drop([0, 0, 5, -2, 5, -5],3)),30),3)",
    "io_inp": [
      0,
      0,
      5,
      -2,
      5,
      -5
    ],
    "io_out": [
      -8,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(drop(input,3)),30),3)"
  },
  {
    "input": "input : list = [5, 5, 3, -3]\noutput : list = [3, 21, 27, 27]",
    "output": "generated_output : list = reverse(mul_n(add_n([5, 5, 3, -3],4),3))",
    "io_inp": [
      5,
      5,
      3,
      -3
    ],
    "io_out": [
      3,
      21,
      27,
      27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,4),3))"
  },
  {
    "input": "input : list = [3, 4, -2, -3]\noutput : list = [21, 24, 6, 3]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(sub_n([3, 4, -2, -3],-5),3)),-3))",
    "io_inp": [
      3,
      4,
      -2,
      -3
    ],
    "io_out": [
      21,
      24,
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(sub_n(input,-5),3)),-3))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [20, 24]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n(add_n([4, 3],-4),-5)),-4))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      20,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(add_n(input,-4),-5)),-4))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [5, 0, -5]",
    "output": "generated_output : list = sort_des([5, -5, 0])",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(reverse([5, -4])))),-1)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [5, -4, -5, 2, 0, 1]\noutput : list = [5, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take([5, -4, -5, 2, 0, 1],3))))",
    "io_inp": [
      5,
      -4,
      -5,
      2,
      0,
      1
    ],
    "io_out": [
      5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(input,3))))"
  },
  {
    "input": "input : list = [-3, -3, -4, 2]\noutput : list = [20, 15, 15, -10]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_asc([-3, -3, -4, 2])),-5)))",
    "io_inp": [
      -3,
      -3,
      -4,
      2
    ],
    "io_out": [
      20,
      15,
      15,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-5, 0, 0]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(reverse([-4, 1, 1]),-4),26),-3))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(reverse(input),-4),26),-3))"
  },
  {
    "input": "input : list = [1, 0, 2, 4]\noutput : list = [9, 7, 5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(drop([1, 0, 2, 4],1))),-5))",
    "io_inp": [
      1,
      0,
      2,
      4
    ],
    "io_out": [
      9,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(drop(input,1))),-5))"
  },
  {
    "input": "input : list = [3, -4, 0, -2, 5, -4]\noutput : list = [-4, 0, -2, 5, -4]",
    "output": "generated_output : list = drop([3, -4, 0, -2, 5, -4],1)",
    "io_inp": [
      3,
      -4,
      0,
      -2,
      5,
      -4
    ],
    "io_out": [
      -4,
      0,
      -2,
      5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3, 3, 0]\noutput : list = [-3, -3, -6, -6]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(mul_n([0, 3, 3, 0],-1)),26),4),-1)",
    "io_inp": [
      0,
      3,
      3,
      0
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(mul_n(input,-1)),26),4),-1)"
  },
  {
    "input": "input : list = [4, 3, 3, -2, -2, 1]\noutput : list = [-25, -20, -20, 5, 5, -10]",
    "output": "generated_output : list = mul_n(take(add_n([4, 3, 3, -2, -2, 1],1),8),-5)",
    "io_inp": [
      4,
      3,
      3,
      -2,
      -2,
      1
    ],
    "io_out": [
      -25,
      -20,
      -20,
      5,
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,1),8),-5)"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [58, 46, 34]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(reverse([4, 5, 3]),-4),-3)),-2)",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      58,
      46,
      34
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(reverse(input),-4),-3)),-2)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [0, 8]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(reverse([-3, 5])),3)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(reverse(input)),3)))"
  },
  {
    "input": "input : list = [1, -5, -4]\noutput : list = [-1, -19, -16]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(mul_n([1, -5, -4],3),12),-4),4),-4)",
    "io_inp": [
      1,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -19,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(mul_n(input,3),12),-4),4),-4)"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [0, 4, 6]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse([-4, 0, 2])),-4),1)",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(input)),-4),1)"
  },
  {
    "input": "input : list = [3, -5, -1, 5, 2]\noutput : list = [-1, 2, -4, -8, 0]",
    "output": "generated_output : list = sub_n(reverse([3, -5, -1, 5, 2]),3)",
    "io_inp": [
      3,
      -5,
      -1,
      5,
      2
    ],
    "io_out": [
      -1,
      2,
      -4,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-3, -5, 0, 1, 4]\noutput : list = [-5, -3, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([-3, -5, 0, 1, 4])",
    "io_inp": [
      -3,
      -5,
      0,
      1,
      4
    ],
    "io_out": [
      -5,
      -3,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -4, -1, 0]\noutput : list = [-5, -2, -1, 0]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(add_n([1, -4, -1, 0],-2)),1),1),1)",
    "io_inp": [
      1,
      -4,
      -1,
      0
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(add_n(input,-2)),1),1),1)"
  },
  {
    "input": "input : list = [3, 3, -5, 4]\noutput : list = [-10, -2, -2, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n([3, 3, -5, 4],-3)),2)),36)",
    "io_inp": [
      3,
      3,
      -5,
      4
    ],
    "io_out": [
      -10,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n(input,-3)),2)),36)"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(sort_des([-2, -1, -4]),8))))",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(sort_des(input),8))))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [6, 10]",
    "output": "generated_output : list = add_n([1, 5],5)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, -5, 0, 3, 5, -2]\noutput : list = [51, 69, 24, -3, -21, 42]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(mul_n([-3, -5, 0, 3, 5, -2],-1),1),3),5),3)",
    "io_inp": [
      -3,
      -5,
      0,
      3,
      5,
      -2
    ],
    "io_out": [
      51,
      69,
      24,
      -3,
      -21,
      42
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(mul_n(input,-1),1),3),5),3)"
  },
  {
    "input": "input : list = [0, -1, 5, 3]\noutput : list = [-20, -28, 20, 4]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(add_n([0, -1, 5, 3],2),5),-2),1),-4)",
    "io_inp": [
      0,
      -1,
      5,
      3
    ],
    "io_out": [
      -20,
      -28,
      20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(add_n(input,2),5),-2),1),-4)"
  },
  {
    "input": "input : list = [2, -4, -1, -1, -1]\noutput : list = [-4, -1, -1, -1, 2]",
    "output": "generated_output : list = sort_asc([2, -4, -1, -1, -1])",
    "io_inp": [
      2,
      -4,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -1,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(sub_n([0, -5],3)),-3),17))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(sub_n(input,3)),-3),17))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [5, 30]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des([-5, 0]),4),5),-4),-5)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      5,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des(input),4),5),-4),-5)"
  },
  {
    "input": "input : list = [-4, 0, -5, 3, -3, -1]\noutput : list = [-1, -3, 3, -5, 0, -4]",
    "output": "generated_output : list = reverse(mul_n([-4, 0, -5, 3, -3, -1],1))",
    "io_inp": [
      -4,
      0,
      -5,
      3,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      3,
      -5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [0, 2, 0, 2]\noutput : list = [-2, -2, -4, -4]",
    "output": "generated_output : list = add_n(reverse(sort_asc([0, 2, 0, 2])),-4)",
    "io_inp": [
      0,
      2,
      0,
      2
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [-5, -4, -5, 1]\noutput : list = [0, -3]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(take([-5, -4, -5, 1],2)),4)),3)",
    "io_inp": [
      -5,
      -4,
      -5,
      1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(take(input,2)),4)),3)"
  },
  {
    "input": "input : list = [1, 3, 2, -1]\noutput : list = [1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(sub_n([1, 3, 2, -1],4)),9),-1))",
    "io_inp": [
      1,
      3,
      2,
      -1
    ],
    "io_out": [
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(sub_n(input,4)),9),-1))"
  },
  {
    "input": "input : list = [0, 0, 0, -1, -3, 3]\noutput : list = [3, -3, -1, 0, 0, 0]",
    "output": "generated_output : list = take(reverse([0, 0, 0, -1, -3, 3]),16)",
    "io_inp": [
      0,
      0,
      0,
      -1,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -1,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),16)"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(take([2, -2, 3],1))),-5),3)",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(take(input,1))),-5),3)"
  },
  {
    "input": "input : list = [0, -2, 0, 3, -5, 5]\noutput : list = [15, 6, 0, 0, -9, -15]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(mul_n([0, -2, 0, 3, -5, 5],1),1)),-3),43)",
    "io_inp": [
      0,
      -2,
      0,
      3,
      -5,
      5
    ],
    "io_out": [
      15,
      6,
      0,
      0,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(mul_n(input,1),1)),-3),43)"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [2, -5, -5]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(add_n([3, -4, -4],-2),-1),14)))",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(add_n(input,-2),-1),14)))"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(sort_des(drop([2, 0, -5],1)))",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_des([-2, -5])),1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [-4, 0, 4, 1, -5]\noutput : list = [0, -3, -4, -8, -9]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(sub_n([-4, 0, 4, 1, -5],4)))))",
    "io_inp": [
      -4,
      0,
      4,
      1,
      -5
    ],
    "io_out": [
      0,
      -3,
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [0, 1, 5, -1]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(take([0, 1, 5, -1],2),1),-1),2),20)",
    "io_inp": [
      0,
      1,
      5,
      -1
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(take(input,2),1),-1),2),20)"
  },
  {
    "input": "input : list = [-4, -3, 5, -1, 1, -5]\noutput : list = [8, 6, -10, 2, -2, 10]",
    "output": "generated_output : list = mul_n([-4, -3, 5, -1, 1, -5],-2)",
    "io_inp": [
      -4,
      -3,
      5,
      -1,
      1,
      -5
    ],
    "io_out": [
      8,
      6,
      -10,
      2,
      -2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, 4, -4, -4, 3, -3]\noutput : list = [5, 6, -2, -2, 5, -1]",
    "output": "generated_output : list = add_n([3, 4, -4, -4, 3, -3],2)",
    "io_inp": [
      3,
      4,
      -4,
      -4,
      3,
      -3
    ],
    "io_out": [
      5,
      6,
      -2,
      -2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 5, -3, -4, 5]\noutput : list = [-5, -10, 30, 35, -10]",
    "output": "generated_output : list = mul_n(add_n([4, 5, -3, -4, 5],-3),-5)",
    "io_inp": [
      4,
      5,
      -3,
      -4,
      5
    ],
    "io_out": [
      -5,
      -10,
      30,
      35,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-3),-5)"
  },
  {
    "input": "input : list = [4, 0, 2, 5, -5, -1]\noutput : list = [2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc([4, 0, 2, 5, -5, -1])),3)))",
    "io_inp": [
      4,
      0,
      2,
      5,
      -5,
      -1
    ],
    "io_out": [
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [5, 3, -3, 0, 3, 2]\noutput : list = [8, 8, 7, 5, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(drop([5, 3, -3, 0, 3, 2],1),-3))),2)",
    "io_inp": [
      5,
      3,
      -3,
      0,
      3,
      2
    ],
    "io_out": [
      8,
      8,
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(drop(input,1),-3))),2)"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [-15, 20, 25]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(reverse([3, -5, -4])))),-5)",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      -15,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [5, -1, -16]",
    "output": "generated_output : list = add_n(sort_des(take(take(mul_n([1, 3, -4],3),4),25)),-4)",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      5,
      -1,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(mul_n(input,3),4),25)),-4)"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, 5, 3],1))",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-4, -1, 3]\noutput : list = [72, 24, -12]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n([-4, -1, 3],-2),-1)),3),4)",
    "io_inp": [
      -4,
      -1,
      3
    ],
    "io_out": [
      72,
      24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n(input,-2),-1)),3),4)"
  },
  {
    "input": "input : list = [5, 5, 2, 3, -5]\noutput : list = [9, 9, 18, 15, 39]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n([5, 5, 2, 3, -5],5),-3),4),5)",
    "io_inp": [
      5,
      5,
      2,
      3,
      -5
    ],
    "io_out": [
      9,
      9,
      18,
      15,
      39
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(input,5),-3),4),5)"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [9, 7, 2]",
    "output": "generated_output : list = add_n([4, 2, -3],5)",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      9,
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, 4, 0]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = sort_des([-5, 4, 0])",
    "io_inp": [
      -5,
      4,
      0
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, 1, 4, 1, 1]\noutput : list = [-1, 5, 3, 6, 3, 3]",
    "output": "generated_output : list = add_n([-3, 3, 1, 4, 1, 1],2)",
    "io_inp": [
      -3,
      3,
      1,
      4,
      1,
      1
    ],
    "io_out": [
      -1,
      5,
      3,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, 3, 3, 0, 0]\noutput : list = [-6, -6, -3, -3, -8]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(reverse([-2, 3, 3, 0, 0]),13),4),4),-2)",
    "io_inp": [
      -2,
      3,
      3,
      0,
      0
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(reverse(input),13),4),4),-2)"
  },
  {
    "input": "input : list = [0, -1, -1, -1]\noutput : list = [0, -3, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(sort_asc([0, -1, -1, -1]),19),3)))",
    "io_inp": [
      0,
      -1,
      -1,
      -1
    ],
    "io_out": [
      0,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(sort_asc(input),19),3)))"
  },
  {
    "input": "input : list = [3, -4, 1, -3, 4, -4]\noutput : list = [2, -5, 0, -4, 3, -5]",
    "output": "generated_output : list = add_n([3, -4, 1, -3, 4, -4],-1)",
    "io_inp": [
      3,
      -4,
      1,
      -3,
      4,
      -4
    ],
    "io_out": [
      2,
      -5,
      0,
      -4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 0, -3, 0]\noutput : list = [0, 0, 0, -3]",
    "output": "generated_output : list = take(sort_des([0, 0, -3, 0]),8)",
    "io_inp": [
      0,
      0,
      -3,
      0
    ],
    "io_out": [
      0,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),8)"
  },
  {
    "input": "input : list = [-3, 3, 5, 2, 5]\noutput : list = [5, 5, 3, 2, -3]",
    "output": "generated_output : list = sort_des([-3, 3, 5, 2, 5])",
    "io_inp": [
      -3,
      3,
      5,
      2,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, -3, 5, 3]\noutput : list = [-4, 0, -3, 5, 3]",
    "output": "generated_output : list = reverse(reverse([-4, 0, -3, 5, 3]))",
    "io_inp": [
      -4,
      0,
      -3,
      5,
      3
    ],
    "io_out": [
      -4,
      0,
      -3,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, 2, -5, 0, -1]\noutput : list = [20, 8, 5, -1]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(drop([5, 2, -5, 0, -1],1),1),-3)),2)",
    "io_inp": [
      5,
      2,
      -5,
      0,
      -1
    ],
    "io_out": [
      20,
      8,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(drop(input,1),1),-3)),2)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [3, 0, 8]",
    "output": "generated_output : list = add_n(reverse(reverse(take(add_n([0, -3, 5],-1),17))),4)",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      3,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(add_n(input,-1),17))),4)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [9, 21]",
    "output": "generated_output : list = sub_n(take(mul_n(take(sort_des([-4, -1]),11),-4),19),-5)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      9,
      21
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(sort_des(input),11),-4),19),-5)"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [-15, -13, -7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n([-4, 4, -2],4)),-4),-3)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      -15,
      -13,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(input,4)),-4),-3)"
  },
  {
    "input": "input : list = [-1, 3, 4, 4, -5, 0]\noutput : list = [-9, -5, -4, -1, 0, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(mul_n([-1, 3, 4, 4, -5, 0],1),-4))),43)",
    "io_inp": [
      -1,
      3,
      4,
      4,
      -5,
      0
    ],
    "io_out": [
      -9,
      -5,
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(mul_n(input,1),-4))),43)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc([2, -1]),13))))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc(input),13))))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-60, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n([5, -1],-4),3))))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -60,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n(input,-4),3))))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [12, 4]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des([4, 2]),1),4),19))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des(input),1),4),19))"
  },
  {
    "input": "input : list = [-5, 2, 0, 0]\noutput : list = [0, 0, 2, -5]",
    "output": "generated_output : list = take(reverse([-5, 2, 0, 0]),13)",
    "io_inp": [
      -5,
      2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(input),13)"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [-3, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_asc([2, -1, 4])),-2)))",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [4, -5, 5, 5, 0, 1]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(drop([4, -5, 5, 5, 0, 1],4))),-5))",
    "io_inp": [
      4,
      -5,
      5,
      5,
      0,
      1
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(drop(input,4))),-5))"
  },
  {
    "input": "input : list = [4, 2, 5, -1, 4, -5]\noutput : list = [6, 5, 5, 3, 0, -4]",
    "output": "generated_output : list = add_n(reverse(take(take(sort_asc([4, 2, 5, -1, 4, -5]),14),29)),1)",
    "io_inp": [
      4,
      2,
      5,
      -1,
      4,
      -5
    ],
    "io_out": [
      6,
      5,
      5,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(sort_asc(input),14),29)),1)"
  },
  {
    "input": "input : list = [-1, 1, 1, 5, -1, -2]\noutput : list = [-7, 1, 1, 5, 5, 7]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(sort_des([-1, 1, 1, 5, -1, -2]),-2)),47),-3)",
    "io_inp": [
      -1,
      1,
      1,
      5,
      -1,
      -2
    ],
    "io_out": [
      -7,
      1,
      1,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(sort_des(input),-2)),47),-3)"
  },
  {
    "input": "input : list = [2, 0, -4]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(drop(add_n(sub_n(reverse([2, 0, -4]),5),-5),2),5)",
    "io_inp": [
      2,
      0,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(sub_n(reverse(input),5),-5),2),5)"
  },
  {
    "input": "input : list = [2, -2, 2, 0, 3]\noutput : list = [-3, -7, -3, -5, -2]",
    "output": "generated_output : list = sub_n([2, -2, 2, 0, 3],5)",
    "io_inp": [
      2,
      -2,
      2,
      0,
      3
    ],
    "io_out": [
      -3,
      -7,
      -3,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = drop([-1, -4, -4],1)",
    "io_inp": [
      -1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -5, -4, 4, 0]\noutput : list = [-5, -4, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([1, -5, -4, 4, 0])",
    "io_inp": [
      1,
      -5,
      -4,
      4,
      0
    ],
    "io_out": [
      -5,
      -4,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2, -5, 4]\noutput : list = [2, 5, 8, 11]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des([1, -2, -5, 4]),-2),-5)),51)",
    "io_inp": [
      1,
      -2,
      -5,
      4
    ],
    "io_out": [
      2,
      5,
      8,
      11
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des(input),-2),-5)),51)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n([-2, -1, 3],-2),-4),4)))",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n(input,-2),-4),4)))"
  },
  {
    "input": "input : list = [3, -1, 5, -5]\noutput : list = [2, 0, -4, -8]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(sort_des([3, -1, 5, -5]),3)),23))",
    "io_inp": [
      3,
      -1,
      5,
      -5
    ],
    "io_out": [
      2,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(sort_des(input),3)),23))"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [5, 20, 40]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n(sort_asc([1, 4, -3]),4)),-5),5)",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      5,
      20,
      40
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(sort_asc(input),4)),-5),5)"
  },
  {
    "input": "input : list = [5, 5, 0, 3, -1]\noutput : list = [8, 8, 6, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des([5, 5, 0, 3, -1])),3)",
    "io_inp": [
      5,
      5,
      0,
      3,
      -1
    ],
    "io_out": [
      8,
      8,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),3)"
  },
  {
    "input": "input : list = [-1, 3, 5, -5, -5]\noutput : list = [10, 6, -2, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des(take(take(mul_n([-1, 3, 5, -5, -5],1),16),11)),2)",
    "io_inp": [
      -1,
      3,
      5,
      -5,
      -5
    ],
    "io_out": [
      10,
      6,
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(mul_n(input,1),16),11)),2)"
  },
  {
    "input": "input : list = [4, -5, -2, 3]\noutput : list = [48, -27, -72, 63]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(mul_n([4, -5, -2, 3],5),-1),3)),26)",
    "io_inp": [
      4,
      -5,
      -2,
      3
    ],
    "io_out": [
      48,
      -27,
      -72,
      63
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(mul_n(input,5),-1),3)),26)"
  },
  {
    "input": "input : list = [4, -4, -1, 4, -4, 4]\noutput : list = [-4, -4, -1, 4, 4, 4]",
    "output": "generated_output : list = sort_asc([4, -4, -1, 4, -4, 4])",
    "io_inp": [
      4,
      -4,
      -1,
      4,
      -4,
      4
    ],
    "io_out": [
      -4,
      -4,
      -1,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = drop([5, -5, -2],1)",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 3, 3, 0, 3]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take([5, 3, 3, 0, 3],1))),1)",
    "io_inp": [
      5,
      3,
      3,
      0,
      3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(input,1))),1)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take(sub_n(mul_n([0, -1],-2),5),8)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,-2),5),8)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-21, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(add_n([-3, 4],3))),3),-1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -21,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(add_n(input,3))),3),-1)"
  },
  {
    "input": "input : list = [0, 2, 0, -5, 0]\noutput : list = [-1, -3, -3, -3, -8]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([0, 2, 0, -5, 0],3)))",
    "io_inp": [
      0,
      2,
      0,
      -5,
      0
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,3)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-12, -3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc([5, -4]),-3)),5)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -12,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(input),-3)),5)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [9, 17]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(mul_n([-3, -1],-4)),5)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      9,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(mul_n(input,-4)),5)))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(add_n([4, 1],-5)),4),5))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(add_n(input,-5)),4),5))"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [-14, -8, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc([5, 3, 2]),-3))),-1)",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      -14,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc(input),-3))),-1)"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [7, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(sub_n([-3, 2, -4],-2))),-3))",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(sub_n(input,-2))),-3))"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [10, 2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([-5, -1, 3],-2)))",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      10,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [20, -30]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(sort_asc([-2, 3])),-5),29),2)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      20,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(sort_asc(input)),-5),29),2)"
  },
  {
    "input": "input : list = [5, -3, 4]\noutput : list = [-15, 6]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(reverse([5, -3, 4]),-2),2)),3)",
    "io_inp": [
      5,
      -3,
      4
    ],
    "io_out": [
      -15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(reverse(input),-2),2)),3)"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(reverse(add_n(take(drop([-1, -4, -1],1),2),-1)))",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(drop(input,1),2),-1)))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [11, 7]",
    "output": "generated_output : list = sub_n(add_n([3, -1],5),-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      11,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [4, -4, 5, 0, 3]\noutput : list = [1, 0, -1, -4, -8]",
    "output": "generated_output : list = add_n(sort_des([4, -4, 5, 0, 3]),-4)",
    "io_inp": [
      4,
      -4,
      5,
      0,
      3
    ],
    "io_out": [
      1,
      0,
      -1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(add_n([0, 0],-3),4)),32))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(add_n(input,-3),4)),32))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [1, -8]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sub_n([-1, -4],-2),3),7)),2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sub_n(input,-2),3),7)),2)"
  },
  {
    "input": "input : list = [-2, 0, 1, 0, -5]\noutput : list = [6, -2, -6, -2, 18]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(reverse([-2, 0, 1, 0, -5])),-4),-3),-5)",
    "io_inp": [
      -2,
      0,
      1,
      0,
      -5
    ],
    "io_out": [
      6,
      -2,
      -6,
      -2,
      18
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(reverse(input)),-4),-3),-5)"
  },
  {
    "input": "input : list = [-3, -5, 0, 3, -5]\noutput : list = [20, 24]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(take([-3, -5, 0, 3, -5],2),-3),5),-5),-2)",
    "io_inp": [
      -3,
      -5,
      0,
      3,
      -5
    ],
    "io_out": [
      20,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(take(input,2),-3),5),-5),-2)"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [-7, -5, 2]",
    "output": "generated_output : list = add_n([-4, -2, 5],-3)",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      -7,
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [3, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, 3])",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, 3, -1, -3]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(sub_n([2, 4, 3, -1, -3],2),1),-1)",
    "io_inp": [
      2,
      4,
      3,
      -1,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,2),1),-1)"
  },
  {
    "input": "input : list = [4, 0, 4, -5]\noutput : list = [8, 4, 8, -1]",
    "output": "generated_output : list = add_n(add_n([4, 0, 4, -5],-1),5)",
    "io_inp": [
      4,
      0,
      4,
      -5
    ],
    "io_out": [
      8,
      4,
      8,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(take([-1, 2, 3],1),3)",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [8, 11, 11]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n([-1, -4, -1],-5))),-4),3)",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      8,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n(input,-5))),-4),3)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(reverse(take([4, -4, 5],1)),18)))",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(reverse(take(input,1)),18)))"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [-6, -1, 0]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(reverse([0, -5, 1])),-4)),-5)",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(reverse(input)),-4)),-5)"
  },
  {
    "input": "input : list = [2, -3, 3, -2]\noutput : list = [-3, 3, -2]",
    "output": "generated_output : list = drop([2, -3, 3, -2],1)",
    "io_inp": [
      2,
      -3,
      3,
      -2
    ],
    "io_out": [
      -3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(mul_n([4, -3],1)),2)))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(mul_n(input,1)),2)))"
  },
  {
    "input": "input : list = [-4, 0, 3, -1, -1]\noutput : list = [-6, 0, 2, 2, 8]",
    "output": "generated_output : list = mul_n(sort_des([-4, 0, 3, -1, -1]),-2)",
    "io_inp": [
      -4,
      0,
      3,
      -1,
      -1
    ],
    "io_out": [
      -6,
      0,
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [-1, -4, -4]",
    "output": "generated_output : list = sort_des([-4, -4, -1])",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2, 3, 0, -3, -2]\noutput : list = [-4, -2, -2, 2, 2, 8]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(add_n([0, -2, 3, 0, -3, -2],4),2)),2),-4)",
    "io_inp": [
      0,
      -2,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(add_n(input,4),2)),2),-4)"
  },
  {
    "input": "input : list = [-3, 1, -2, 5]\noutput : list = [2, -2, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(add_n([-3, 1, -2, 5],-2),-5)),4))",
    "io_inp": [
      -3,
      1,
      -2,
      5
    ],
    "io_out": [
      2,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(add_n(input,-2),-5)),4))"
  },
  {
    "input": "input : list = [4, -1, -4, -3, 3]\noutput : list = [-4, -3, -1, 3, 4]",
    "output": "generated_output : list = sort_asc([4, -1, -4, -3, 3])",
    "io_inp": [
      4,
      -1,
      -4,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0, 3, 0, -3, 2]\noutput : list = [-14, -11, -11, -10, -9, -8]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(sub_n([1, 0, 3, 0, -3, 2],2),-3)),-1),-5)",
    "io_inp": [
      1,
      0,
      3,
      0,
      -3,
      2
    ],
    "io_out": [
      -14,
      -11,
      -11,
      -10,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(sub_n(input,2),-3)),-1),-5)"
  },
  {
    "input": "input : list = [0, -1, -5, -2, -3, 1]\noutput : list = [0, 2, 3, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(drop([0, -1, -5, -2, -3, 1],1),13),19)),-5)",
    "io_inp": [
      0,
      -1,
      -5,
      -2,
      -3,
      1
    ],
    "io_out": [
      0,
      2,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(drop(input,1),13),19)),-5)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-1, 9]",
    "output": "generated_output : list = take(add_n(sub_n([-5, 5],-2),2),21)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -1,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,-2),2),21)"
  },
  {
    "input": "input : list = [-3, 0, 0, -2]\noutput : list = [-12, 0]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(take([-3, 0, 0, -2],2)),18),4))",
    "io_inp": [
      -3,
      0,
      0,
      -2
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(take(input,2)),18),4))"
  },
  {
    "input": "input : list = [-3, -2, 2, -2]\noutput : list = [30]",
    "output": "generated_output : list = mul_n(drop(add_n(take(sort_des([-3, -2, 2, -2]),17),-3),3),-5)",
    "io_inp": [
      -3,
      -2,
      2,
      -2
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(take(sort_des(input),17),-3),3),-5)"
  },
  {
    "input": "input : list = [-2, 3, -4, 5]\noutput : list = [-4, -2, 3, 5]",
    "output": "generated_output : list = reverse(sort_des([-2, 3, -4, 5]))",
    "io_inp": [
      -2,
      3,
      -4,
      5
    ],
    "io_out": [
      -4,
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -1, -4]\noutput : list = [-4, -1, -5]",
    "output": "generated_output : list = reverse(reverse(reverse([-5, -1, -4])))",
    "io_inp": [
      -5,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-5, 0, -2, 1, 0]\noutput : list = [-9, -6, -4]",
    "output": "generated_output : list = sort_asc(add_n(take([-5, 0, -2, 1, 0],3),-4))",
    "io_inp": [
      -5,
      0,
      -2,
      1,
      0
    ],
    "io_out": [
      -9,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,3),-4))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [36, -18]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([-5, 1],-3),3),3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      36,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,-3),3),3)"
  },
  {
    "input": "input : list = [-1, 5, 0]\noutput : list = [-10, -40, -15]",
    "output": "generated_output : list = take(mul_n(add_n([-1, 5, 0],3),-5),23)",
    "io_inp": [
      -1,
      5,
      0
    ],
    "io_out": [
      -10,
      -40,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,3),-5),23)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [27, 24]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(add_n([4, 5],4)),3)))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      27,
      24
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(add_n(input,4)),3)))"
  },
  {
    "input": "input : list = [3, 4, -2, -3]\noutput : list = [-3, -2, 4, 3]",
    "output": "generated_output : list = reverse([3, 4, -2, -3])",
    "io_inp": [
      3,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, 5, 1, 3]\noutput : list = [5, 3, 3, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-2, 3, 5, 1, 3]))",
    "io_inp": [
      -2,
      3,
      5,
      1,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 3, 4, 4, 1]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(reverse(take([5, 3, 4, 4, 1],2)),22)",
    "io_inp": [
      5,
      3,
      4,
      4,
      1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,2)),22)"
  },
  {
    "input": "input : list = [5, -2, -2, 3, -2, -1]\noutput : list = [6, 4, 0, -1, -1, -1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(sort_asc([5, -2, -2, 3, -2, -1]))),1))",
    "io_inp": [
      5,
      -2,
      -2,
      3,
      -2,
      -1
    ],
    "io_out": [
      6,
      4,
      0,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [5, 4, 3, 3]\noutput : list = [-4, -4, -3]",
    "output": "generated_output : list = reverse(take(sub_n(add_n(drop([5, 4, 3, 3],1),-4),3),29))",
    "io_inp": [
      5,
      4,
      3,
      3
    ],
    "io_out": [
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(add_n(drop(input,1),-4),3),29))"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [11, 9, 5]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(reverse([3, 1, -3])),3),36),-5)",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      11,
      9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(reverse(input)),3),36),-5)"
  },
  {
    "input": "input : list = [-2, 1, -4, 1, 1, 1]\noutput : list = [0, 0, 0, 0, -6, -10]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(sort_des([-2, 1, -4, 1, 1, 1]),-1),38),-1),-2)",
    "io_inp": [
      -2,
      1,
      -4,
      1,
      1,
      1
    ],
    "io_out": [
      0,
      0,
      0,
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(sort_des(input),-1),38),-1),-2)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(reverse(drop([-4, -2, 0],1)))))",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [1, -4, 2, 2]\noutput : list = [-3, 12, -6, -6]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(reverse([1, -4, 2, 2]),-3),-4),4))",
    "io_inp": [
      1,
      -4,
      2,
      2
    ],
    "io_out": [
      -3,
      12,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(reverse(input),-3),-4),4))"
  },
  {
    "input": "input : list = [2, -1, -2, 5]\noutput : list = [2, 9]",
    "output": "generated_output : list = sub_n(drop([2, -1, -2, 5],2),-4)",
    "io_inp": [
      2,
      -1,
      -2,
      5
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [2, -2, -3, 3, 0, -2]\noutput : list = [-15, -10, -10, 0, 10, 15]",
    "output": "generated_output : list = mul_n(sort_asc([2, -2, -3, 3, 0, -2]),5)",
    "io_inp": [
      2,
      -2,
      -3,
      3,
      0,
      -2
    ],
    "io_out": [
      -15,
      -10,
      -10,
      0,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(sort_asc([1, 0]),4)),-5))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(sort_asc(input),4)),-5))"
  },
  {
    "input": "input : list = [0, -1, 5, 3, -2, 5]\noutput : list = [6, 7, 8, 11, 13, 13]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(add_n([0, -1, 5, 3, -2, 5],1),-4),-3)),9)",
    "io_inp": [
      0,
      -1,
      5,
      3,
      -2,
      5
    ],
    "io_out": [
      6,
      7,
      8,
      11,
      13,
      13
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(add_n(input,1),-4),-3)),9)"
  },
  {
    "input": "input : list = [-3, 2, -1, -2]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = add_n(drop([-3, 2, -1, -2],1),3)",
    "io_inp": [
      -3,
      2,
      -1,
      -2
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [-2, -1, 4, -3, 0]\noutput : list = [-11, -6, 19]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(take([-2, -1, 4, -3, 0],3),1),5),32),1)",
    "io_inp": [
      -2,
      -1,
      4,
      -3,
      0
    ],
    "io_out": [
      -11,
      -6,
      19
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(take(input,3),1),5),32),1)"
  },
  {
    "input": "input : list = [-5, -3, 5, 1, 4, -2]\noutput : list = [-5, -3, 5, 1]",
    "output": "generated_output : list = reverse(reverse(take([-5, -3, 5, 1, 4, -2],4)))",
    "io_inp": [
      -5,
      -3,
      5,
      1,
      4,
      -2
    ],
    "io_out": [
      -5,
      -3,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,4)))"
  },
  {
    "input": "input : list = [4, -3, 2, 5]\noutput : list = [-15, 20]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(take([4, -3, 2, 5],2),5),8)),1)",
    "io_inp": [
      4,
      -3,
      2,
      5
    ],
    "io_out": [
      -15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(take(input,2),5),8)),1)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [2, 8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_des([3, 0, -2]),14),4),-2))",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      2,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_des(input),14),4),-2))"
  },
  {
    "input": "input : list = [2, 1, -2, -3, -4, 2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take([2, 1, -2, -3, -4, 2],1))",
    "io_inp": [
      2,
      1,
      -2,
      -3,
      -4,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, 0, 2, 3]\noutput : list = [1, 4, 6, 7]",
    "output": "generated_output : list = sub_n([-3, 0, 2, 3],-4)",
    "io_inp": [
      -3,
      0,
      2,
      3
    ],
    "io_out": [
      1,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -5, 2, 2, -5]\noutput : list = [-20, -12]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(take([-3, -5, 2, 2, -5],2),4)),25))",
    "io_inp": [
      -3,
      -5,
      2,
      2,
      -5
    ],
    "io_out": [
      -20,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(take(input,2),4)),25))"
  },
  {
    "input": "input : list = [-5, 5, 5, 2, -2]\noutput : list = [-13, -3, -3, -6, -10]",
    "output": "generated_output : list = take(reverse(add_n(reverse(add_n([-5, 5, 5, 2, -2],-5)),-3)),33)",
    "io_inp": [
      -5,
      5,
      5,
      2,
      -2
    ],
    "io_out": [
      -13,
      -3,
      -3,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(add_n(input,-5)),-3)),33)"
  },
  {
    "input": "input : list = [-4, 3, 1, 2, -1]\noutput : list = [0, 3, 2, 4, -3]",
    "output": "generated_output : list = reverse(reverse(add_n(take(reverse([-4, 3, 1, 2, -1]),17),1)))",
    "io_inp": [
      -4,
      3,
      1,
      2,
      -1
    ],
    "io_out": [
      0,
      3,
      2,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(reverse(input),17),1)))"
  },
  {
    "input": "input : list = [2, 4, 4, 2, -3, 1]\noutput : list = [7, 7, 5, 5, 4, 0]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_asc(add_n([2, 4, 4, 2, -3, 1],3)))),29)",
    "io_inp": [
      2,
      4,
      4,
      2,
      -3,
      1
    ],
    "io_out": [
      7,
      7,
      5,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_asc(add_n(input,3)))),29)"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(take([1, 5, 2],1),5),-2)),9)",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(take(input,1),5),-2)),9)"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(take([-2, -1, 0],1))),-3),1)",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(take(input,1))),-3),1)"
  },
  {
    "input": "input : list = [-2, 3, -3, -4]\noutput : list = [3, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-2, 3, -3, -4])",
    "io_inp": [
      -2,
      3,
      -3,
      -4
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -1, 1, -2, -2, 1]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(take([2, -1, 1, -2, -2, 1],1),-5),3),1))",
    "io_inp": [
      2,
      -1,
      1,
      -2,
      -2,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(take(input,1),-5),3),1))"
  },
  {
    "input": "input : list = [5, 1, 0, 1, -5]\noutput : list = [5, 1, 1, 0, -5]",
    "output": "generated_output : list = sort_des([5, 1, 0, 1, -5])",
    "io_inp": [
      5,
      1,
      0,
      1,
      -5
    ],
    "io_out": [
      5,
      1,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, 1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -3, 1],1)",
    "io_inp": [
      4,
      -3,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -1, -3, 2, -1, 4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -1, -3, 2, -1, 4],1)",
    "io_inp": [
      2,
      -1,
      -3,
      2,
      -1,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 1, -2, 2, 4, -2]\noutput : list = [5, 4, 3, 2, -1, -1]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(sub_n([3, 1, -2, 2, 4, -2],-4)),-5)),-2)",
    "io_inp": [
      3,
      1,
      -2,
      2,
      4,
      -2
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(sub_n(input,-4)),-5)),-2)"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(sort_asc([4, -3, -2]),1))),2)",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(sort_asc(input),1))),2)"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [30, 0, -5]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(mul_n([4, -2, -3],1),14),2),4),5)",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      30,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(mul_n(input,1),14),2),4),5)"
  },
  {
    "input": "input : list = [5, 2, 5, -1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sub_n(take([5, 2, 5, -1],2),4)",
    "io_inp": [
      5,
      2,
      5,
      -1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),4)"
  },
  {
    "input": "input : list = [-2, 0, 2, 4]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take([-2, 0, 2, 4],2)",
    "io_inp": [
      -2,
      0,
      2,
      4
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des([1, 1, -2])))",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n(sort_des(drop([-4, 4, 4],1)),-1)",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [3, 9, 12]",
    "output": "generated_output : list = mul_n(sort_asc([3, 1, 4]),3)",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [5, 4, -5, 4, -2]\noutput : list = [-5, -2, 4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc([5, 4, -5, 4, -2]),3),26))",
    "io_inp": [
      5,
      4,
      -5,
      4,
      -2
    ],
    "io_out": [
      -5,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(input),3),26))"
  },
  {
    "input": "input : list = [0, -2, 4, 5]\noutput : list = [5, 4, -2, 0]",
    "output": "generated_output : list = reverse([0, -2, 4, 5])",
    "io_inp": [
      0,
      -2,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, -5, 1, 1, 2]\noutput : list = [-1, 3, -6, 0, 0, 1]",
    "output": "generated_output : list = sub_n([0, 4, -5, 1, 1, 2],1)",
    "io_inp": [
      0,
      4,
      -5,
      1,
      1,
      2
    ],
    "io_out": [
      -1,
      3,
      -6,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 4, -2, 0, -5]\noutput : list = [-2, 3, 1, 7, 7]",
    "output": "generated_output : list = reverse(take(add_n([4, 4, -2, 0, -5],3),23))",
    "io_inp": [
      4,
      4,
      -2,
      0,
      -5
    ],
    "io_out": [
      -2,
      3,
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,3),23))"
  },
  {
    "input": "input : list = [-4, 1, -3, 1]\noutput : list = [-3, 5, -3, 7]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(mul_n([-4, 1, -3, 1],-2)))),-1)",
    "io_inp": [
      -4,
      1,
      -3,
      1
    ],
    "io_out": [
      -3,
      5,
      -3,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(mul_n(input,-2)))),-1)"
  },
  {
    "input": "input : list = [-5, 0, 2, 0]\noutput : list = [-11, -6, -4, -6]",
    "output": "generated_output : list = sub_n(add_n([-5, 0, 2, 0],-1),5)",
    "io_inp": [
      -5,
      0,
      2,
      0
    ],
    "io_out": [
      -11,
      -6,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [5, 0, 20]",
    "output": "generated_output : list = reverse(mul_n([4, 0, 1],5))",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      5,
      0,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [-3, 1, 1, 1, -4, -1]\noutput : list = [0, 9, -6, -6, -6, 6]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(add_n([-3, 1, 1, 1, -4, -1],5),-4)),-3),24)",
    "io_inp": [
      -3,
      1,
      1,
      1,
      -4,
      -1
    ],
    "io_out": [
      0,
      9,
      -6,
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(add_n(input,5),-4)),-3),24)"
  },
  {
    "input": "input : list = [-2, 1, -2, 1]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(drop([-2, 1, -2, 1],2)),4)))",
    "io_inp": [
      -2,
      1,
      -2,
      1
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(drop(input,2)),4)))"
  },
  {
    "input": "input : list = [-2, 4, -5, 1]\noutput : list = [8, 5, 2, -1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(add_n([-2, 4, -5, 1],-4)),3),-5))",
    "io_inp": [
      -2,
      4,
      -5,
      1
    ],
    "io_out": [
      8,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(add_n(input,-4)),3),-5))"
  },
  {
    "input": "input : list = [5, -1, -1, -1, -4]\noutput : list = [1, -5, -5]",
    "output": "generated_output : list = take(add_n([5, -1, -1, -1, -4],-4),3)",
    "io_inp": [
      5,
      -1,
      -1,
      -1,
      -4
    ],
    "io_out": [
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),3)"
  },
  {
    "input": "input : list = [4, 1, 4, -3]\noutput : list = [120, 120, 48, -48]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n(mul_n([4, 1, 4, -3],-2),-2),3),-4))",
    "io_inp": [
      4,
      1,
      4,
      -3
    ],
    "io_out": [
      120,
      120,
      48,
      -48
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(mul_n(input,-2),-2),3),-4))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [10, -4]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc([2, -5]),-2)))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      10,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(input),-2)))"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [144, 48, -48]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(mul_n([-3, -1, 1],-4)),27),-3),-4)",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      144,
      48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(mul_n(input,-4)),27),-3),-4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [9, 11]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(sub_n([5, 3],-1),5)),1),15)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      9,
      11
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(sub_n(input,-1),5)),1),15)"
  },
  {
    "input": "input : list = [2, -3, -3, 3, 2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(take(take(sub_n([2, -3, -3, 3, 2],4),1),29),32))",
    "io_inp": [
      2,
      -3,
      -3,
      3,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(sub_n(input,4),1),29),32))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n([-1, 1],-4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, -1, 1, 5, -2, 1]\noutput : list = [3, -1, 1, 5]",
    "output": "generated_output : list = take([3, -1, 1, 5, -2, 1],4)",
    "io_inp": [
      3,
      -1,
      1,
      5,
      -2,
      1
    ],
    "io_out": [
      3,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-5, 0, 5, 4, 3, -4]\noutput : list = [-25, -20, -15, 0, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n([-5, 0, 5, 4, 3, -4],-5))",
    "io_inp": [
      -5,
      0,
      5,
      4,
      3,
      -4
    ],
    "io_out": [
      -25,
      -20,
      -15,
      0,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-1, -3, 3, 4, 5]\noutput : list = [-6, -8, -2, -1, 0]",
    "output": "generated_output : list = take(add_n([-1, -3, 3, 4, 5],-5),24)",
    "io_inp": [
      -1,
      -3,
      3,
      4,
      5
    ],
    "io_out": [
      -6,
      -8,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),24)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-7, 2]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(sort_asc([4, -5])),2),2),40)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(sort_asc(input)),2),2),40)"
  },
  {
    "input": "input : list = [1, -1, -4, 2, -5, -3]\noutput : list = [-3, -5, -8]",
    "output": "generated_output : list = sub_n(take([1, -1, -4, 2, -5, -3],3),4)",
    "io_inp": [
      1,
      -1,
      -4,
      2,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),4)"
  },
  {
    "input": "input : list = [3, -2, 2]\noutput : list = [15, 0, 12]",
    "output": "generated_output : list = mul_n(take(add_n(take(sub_n([3, -2, 2],3),14),5),29),3)",
    "io_inp": [
      3,
      -2,
      2
    ],
    "io_out": [
      15,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(sub_n(input,3),14),5),29),3)"
  },
  {
    "input": "input : list = [-2, -5, 5, 5]\noutput : list = [-5, -2, 5, 5]",
    "output": "generated_output : list = mul_n(sort_asc([-2, -5, 5, 5]),1)",
    "io_inp": [
      -2,
      -5,
      5,
      5
    ],
    "io_out": [
      -5,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-1, 4, 5, -5, -5, -4]\noutput : list = [25, 20, -5, -20, -25, -25]",
    "output": "generated_output : list = sort_des(take(mul_n([-1, 4, 5, -5, -5, -4],5),11))",
    "io_inp": [
      -1,
      4,
      5,
      -5,
      -5,
      -4
    ],
    "io_out": [
      25,
      20,
      -5,
      -20,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,5),11))"
  },
  {
    "input": "input : list = [-3, -2, -5, 4, 3, -5]\noutput : list = [2, 1, -4, -5, -7, -7]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(sub_n([-3, -2, -5, 4, 3, -5],-3),14),-5),1))",
    "io_inp": [
      -3,
      -2,
      -5,
      4,
      3,
      -5
    ],
    "io_out": [
      2,
      1,
      -4,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(sub_n(input,-3),14),-5),1))"
  },
  {
    "input": "input : list = [3, -5, -4, 1]\noutput : list = [6, -2, -1, 4]",
    "output": "generated_output : list = add_n([3, -5, -4, 1],3)",
    "io_inp": [
      3,
      -5,
      -4,
      1
    ],
    "io_out": [
      6,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, 2, 0]\noutput : list = [-5, -3, 0]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sort_des([5, 2, 0]),3),2)),35)",
    "io_inp": [
      5,
      2,
      0
    ],
    "io_out": [
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sort_des(input),3),2)),35)"
  },
  {
    "input": "input : list = [-3, 3, 4, -1, -4, 4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take([-3, 3, 4, -1, -4, 4],2)",
    "io_inp": [
      -3,
      3,
      4,
      -1,
      -4,
      4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -5, -1, 3]\noutput : list = [-9, -9, -5, -1]",
    "output": "generated_output : list = add_n([-5, -5, -1, 3],-4)",
    "io_inp": [
      -5,
      -5,
      -1,
      3
    ],
    "io_out": [
      -9,
      -9,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [-10, -17]",
    "output": "generated_output : list = add_n(sub_n(sub_n(drop([-2, 3, -4],1),5),5),-3)",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      -10,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(drop(input,1),5),5),-3)"
  },
  {
    "input": "input : list = [-4, -2, 4, -4]\noutput : list = [13, 13, 7, -11]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(mul_n([-4, -2, 4, -4],-3),2)),-1))",
    "io_inp": [
      -4,
      -2,
      4,
      -4
    ],
    "io_out": [
      13,
      13,
      7,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(mul_n(input,-3),2)),-1))"
  },
  {
    "input": "input : list = [-5, -4, 0, -4, -2]\noutput : list = [-7, -6, -2, -6, -4]",
    "output": "generated_output : list = add_n(sub_n([-5, -4, 0, -4, -2],1),-1)",
    "io_inp": [
      -5,
      -4,
      0,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -2,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),-1)"
  },
  {
    "input": "input : list = [-5, 0, 4, -4]\noutput : list = [-4, 0, 4, 5]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse(sort_des([-5, 0, 4, -4])))),-1)",
    "io_inp": [
      -5,
      0,
      4,
      -4
    ],
    "io_out": [
      -4,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [0, 5, 5, -3]\noutput : list = [-10, -10, 0, 6]",
    "output": "generated_output : list = take(mul_n(sort_des(take(sort_asc([0, 5, 5, -3]),8)),-2),11)",
    "io_inp": [
      0,
      5,
      5,
      -3
    ],
    "io_out": [
      -10,
      -10,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(sort_asc(input),8)),-2),11)"
  },
  {
    "input": "input : list = [2, 3, 4]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = reverse([2, 3, 4])",
    "io_inp": [
      2,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, -3, 5]\noutput : list = [1, 1, 0, 8]",
    "output": "generated_output : list = sub_n(add_n([-2, -2, -3, 5],4),1)",
    "io_inp": [
      -2,
      -2,
      -3,
      5
    ],
    "io_out": [
      1,
      1,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),1)"
  },
  {
    "input": "input : list = [-4, 4, -1, 2]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(drop([-4, 4, -1, 2],2))",
    "io_inp": [
      -4,
      4,
      -1,
      2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 4, 2, 3]\noutput : list = [20, 15, 10, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(mul_n([-2, 4, 2, 3],1),16)),5))",
    "io_inp": [
      -2,
      4,
      2,
      3
    ],
    "io_out": [
      20,
      15,
      10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(mul_n(input,1),16)),5))"
  },
  {
    "input": "input : list = [-2, -3, -4, 2]\noutput : list = [24, -24, -36, -48]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(reverse([-2, -3, -4, 2]))),-3),-4)",
    "io_inp": [
      -2,
      -3,
      -4,
      2
    ],
    "io_out": [
      24,
      -24,
      -36,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(reverse(input))),-3),-4)"
  },
  {
    "input": "input : list = [1, -3, -4]\noutput : list = [-2, 14, 18]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n(sort_des([1, -3, -4]),-4)),2))",
    "io_inp": [
      1,
      -3,
      -4
    ],
    "io_out": [
      -2,
      14,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(sort_des(input),-4)),2))"
  },
  {
    "input": "input : list = [4, -3, 3, 2, 2]\noutput : list = [-16, -12, -8, -8, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(sort_des([4, -3, 3, 2, 2]),6),-4),37))",
    "io_inp": [
      4,
      -3,
      3,
      2,
      2
    ],
    "io_out": [
      -16,
      -12,
      -8,
      -8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(sort_des(input),6),-4),37))"
  },
  {
    "input": "input : list = [0, 4, -2, 2]\noutput : list = [-4, 4, -8, 0]",
    "output": "generated_output : list = reverse(mul_n([0, 4, -2, 2],-2))",
    "io_inp": [
      0,
      4,
      -2,
      2
    ],
    "io_out": [
      -4,
      4,
      -8,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [3, -2, 2, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(drop([3, -2, 2, 1, 2],3))))",
    "io_inp": [
      3,
      -2,
      2,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(drop(input,3))))"
  },
  {
    "input": "input : list = [-5, 4, 3, -2, 0]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(drop([-5, 4, 3, -2, 0],2),2)),-1),38)",
    "io_inp": [
      -5,
      4,
      3,
      -2,
      0
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(drop(input,2),2)),-1),38)"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [32, 28, -4]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(add_n([-3, -4, 5],-5),-1),-1),4))",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      32,
      28,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(add_n(input,-5),-1),-1),4))"
  },
  {
    "input": "input : list = [1, 2, 3, -5, 0, 1]\noutput : list = [6]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(take([1, 2, 3, -5, 0, 1],1),4)),-2),36)",
    "io_inp": [
      1,
      2,
      3,
      -5,
      0,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(take(input,1),4)),-2),36)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [1, -3, -3]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n([-5, -1, -1],4),8)),-1)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(input,4),8)),-1)"
  },
  {
    "input": "input : list = [-2, -2, 0, 0]\noutput : list = [-2, -2, 0, 0]",
    "output": "generated_output : list = sort_asc([-2, -2, 0, 0])",
    "io_inp": [
      -2,
      -2,
      0,
      0
    ],
    "io_out": [
      -2,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, 5, 0, 3, 4]\noutput : list = [4, 4, 3, 2, 2, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse([5, 3, 5, 0, 3, 4])),-5),-4)",
    "io_inp": [
      5,
      3,
      5,
      0,
      3,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(input)),-5),-4)"
  },
  {
    "input": "input : list = [0, -3, -3, 4, -2]\noutput : list = [-2, 4, -3, -3, 0]",
    "output": "generated_output : list = reverse([0, -3, -3, 4, -2])",
    "io_inp": [
      0,
      -3,
      -3,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = sort_des([2, -3, -1])",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, -5, -1, 0]\noutput : list = [-7, -3, -2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(drop([4, -2, -5, -1, 0],2),2))))",
    "io_inp": [
      4,
      -2,
      -5,
      -1,
      0
    ],
    "io_out": [
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(drop(input,2),2))))"
  },
  {
    "input": "input : list = [4, -3, -2, -2, -1]\noutput : list = [4, -1, -2, -2, -3]",
    "output": "generated_output : list = sort_des([4, -3, -2, -2, -1])",
    "io_inp": [
      4,
      -3,
      -2,
      -2,
      -1
    ],
    "io_out": [
      4,
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, -2, -1]\noutput : list = [-20, 5, 10, 20]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des([-4, 4, -2, -1]),-5))))",
    "io_inp": [
      -4,
      4,
      -2,
      -1
    ],
    "io_out": [
      -20,
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [-4, 0, -3, -4, 5]\noutput : list = [-7, -3, -6, -7, 2]",
    "output": "generated_output : list = add_n([-4, 0, -3, -4, 5],-3)",
    "io_inp": [
      -4,
      0,
      -3,
      -4,
      5
    ],
    "io_out": [
      -7,
      -3,
      -6,
      -7,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -4, -1, 3]\noutput : list = [-16, -16, -4, 12]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([-4, -4, -1, 3],-2)),-2)",
    "io_inp": [
      -4,
      -4,
      -1,
      3
    ],
    "io_out": [
      -16,
      -16,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,-2)),-2)"
  },
  {
    "input": "input : list = [3, 5, 1, -1, -5, 5]\noutput : list = [-20, 0, 10, 20, 30, 30]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(sort_des([3, 5, 1, -1, -5, 5]),12),5)),-5)",
    "io_inp": [
      3,
      5,
      1,
      -1,
      -5,
      5
    ],
    "io_out": [
      -20,
      0,
      10,
      20,
      30,
      30
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(sort_des(input),12),5)),-5)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(reverse([-1, -1]),-5))),-1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(reverse(input),-5))),-1)"
  },
  {
    "input": "input : list = [1, 4, 2, 0]\noutput : list = [-36, -24, -32, -40]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(add_n([1, 4, 2, 0],-4),5),1),1),4)",
    "io_inp": [
      1,
      4,
      2,
      0
    ],
    "io_out": [
      -36,
      -24,
      -32,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(add_n(input,-4),5),1),1),4)"
  },
  {
    "input": "input : list = [-4, 3, 1, -2, -1, -2]\noutput : list = [12, -23, -13, 2, -3, 2]",
    "output": "generated_output : list = add_n(mul_n(sub_n([-4, 3, 1, -2, -1, -2],-2),-5),2)",
    "io_inp": [
      -4,
      3,
      1,
      -2,
      -1,
      -2
    ],
    "io_out": [
      12,
      -23,
      -13,
      2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-2),-5),2)"
  },
  {
    "input": "input : list = [0, 1, 1, 2]\noutput : list = [2, 1, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc([0, 1, 1, 2]))))",
    "io_inp": [
      0,
      1,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [8, 0, -8]",
    "output": "generated_output : list = mul_n([2, 0, -2],4)",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      8,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, -1, 1, 2]\noutput : list = [-7, -5, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-3, -1, 1, 2],4)))",
    "io_inp": [
      -3,
      -1,
      1,
      2
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,4)))"
  },
  {
    "input": "input : list = [-1, -2, 4, 3, 4, -5]\noutput : list = [-2, -2, -3, -7, -8, -11]",
    "output": "generated_output : list = add_n(add_n(sort_des([-1, -2, 4, 3, 4, -5]),-5),-1)",
    "io_inp": [
      -1,
      -2,
      4,
      3,
      4,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -7,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-5),-1)"
  },
  {
    "input": "input : list = [-5, 0, 5, 3, 3]\noutput : list = [70, 45, 30, 30, 20]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(sort_asc([-5, 0, 5, 3, 3]),-4),-5),20),-5)",
    "io_inp": [
      -5,
      0,
      5,
      3,
      3
    ],
    "io_out": [
      70,
      45,
      30,
      30,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(sort_asc(input),-4),-5),20),-5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [3, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(add_n([-2, 5],2),13)),1),-3)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(add_n(input,2),13)),1),-3)"
  },
  {
    "input": "input : list = [-1, -2, -3, 5]\noutput : list = [-6, -7, -8, 0]",
    "output": "generated_output : list = add_n([-1, -2, -3, 5],-5)",
    "io_inp": [
      -1,
      -2,
      -3,
      5
    ],
    "io_out": [
      -6,
      -7,
      -8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-1, 4, 2]",
    "output": "generated_output : list = sub_n(sub_n([-5, 0, -2],1),-5)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -1,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [3, 3, 3, 5, 1]\noutput : list = [14, 12, 12, 12, 10]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(add_n([3, 3, 3, 5, 1],5),13))),4)",
    "io_inp": [
      3,
      3,
      3,
      5,
      1
    ],
    "io_out": [
      14,
      12,
      12,
      12,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(add_n(input,5),13))),4)"
  },
  {
    "input": "input : list = [4, -4, 2, 5, 0, 3]\noutput : list = [3, 0, 5, 2, -4, 4]",
    "output": "generated_output : list = reverse([4, -4, 2, 5, 0, 3])",
    "io_inp": [
      4,
      -4,
      2,
      5,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      5,
      2,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -5, 5, 0, -2, -4]\noutput : list = [3, 4, 6, 8, 8, 13]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(sort_asc([0, -5, 5, 0, -2, -4]),-3),5),46))",
    "io_inp": [
      0,
      -5,
      5,
      0,
      -2,
      -4
    ],
    "io_out": [
      3,
      4,
      6,
      8,
      8,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(sort_asc(input),-3),5),46))"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [-1, -1, 7]",
    "output": "generated_output : list = sub_n([-3, -3, 5],-2)",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      -1,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc([2, -4])",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, -5, -4, -3, -3]\noutput : list = [9, 8, -1, 0, 1, 1]",
    "output": "generated_output : list = sub_n([5, 4, -5, -4, -3, -3],-4)",
    "io_inp": [
      5,
      4,
      -5,
      -4,
      -3,
      -3
    ],
    "io_out": [
      9,
      8,
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, -5, -5, 2, -1]\noutput : list = [2, -8, -8, -1, -4]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(reverse([5, -5, -5, 2, -1]),3))))",
    "io_inp": [
      5,
      -5,
      -5,
      2,
      -1
    ],
    "io_out": [
      2,
      -8,
      -8,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-24, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(mul_n([0, -4],-3),-2))))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -24,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(mul_n(input,-3),-2))))"
  },
  {
    "input": "input : list = [2, 1, -3, -3, 1]\noutput : list = [-2, 2, 2, -2, -3]",
    "output": "generated_output : list = add_n(mul_n(reverse([2, 1, -3, -3, 1]),-1),-1)",
    "io_inp": [
      2,
      1,
      -3,
      -3,
      1
    ],
    "io_out": [
      -2,
      2,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),-1),-1)"
  },
  {
    "input": "input : list = [2, -2, -1]\noutput : list = [-2, -3, -6]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(sub_n([2, -2, -1],-5)),-1),-1))",
    "io_inp": [
      2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(sub_n(input,-5)),-1),-1))"
  },
  {
    "input": "input : list = [-5, 3, 0, -4]\noutput : list = [8, 20, 36, 40]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(add_n([-5, 3, 0, -4],-5),16),-4)))",
    "io_inp": [
      -5,
      3,
      0,
      -4
    ],
    "io_out": [
      8,
      20,
      36,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(add_n(input,-5),16),-4)))"
  },
  {
    "input": "input : list = [-1, -4, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = drop([-1, -4, 5, 5],2)",
    "io_inp": [
      -1,
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [-35, -30, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_des([4, -3, 3]),3),-5)",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      -35,
      -30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),3),-5)"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [-3, -8, -3]",
    "output": "generated_output : list = sub_n([2, -3, 2],5)",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, -1, -5]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(add_n([1, -1, -5],1),1),-1),11))",
    "io_inp": [
      1,
      -1,
      -5
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(add_n(input,1),1),-1),11))"
  },
  {
    "input": "input : list = [-3, 3, 0, 0, 4, -3]\noutput : list = [0, 7]",
    "output": "generated_output : list = reverse(sub_n(drop([-3, 3, 0, 0, 4, -3],4),-3))",
    "io_inp": [
      -3,
      3,
      0,
      0,
      4,
      -3
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,4),-3))"
  },
  {
    "input": "input : list = [2, -4, 4, -4, 5, 0]\noutput : list = [-3, 2, -7, 1, -7, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(add_n([2, -4, 4, -4, 5, 0],4),2)),-3),2)",
    "io_inp": [
      2,
      -4,
      4,
      -4,
      5,
      0
    ],
    "io_out": [
      -3,
      2,
      -7,
      1,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(add_n(input,4),2)),-3),2)"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [19, -21, -101]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_des([5, 1, -1])),-4),5),-1)",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      19,
      -21,
      -101
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_des(input)),-4),5),-1)"
  },
  {
    "input": "input : list = [0, 3, -3, 5, -5]\noutput : list = [-10, -8, -5, -2]",
    "output": "generated_output : list = reverse(take(drop(add_n(sort_des([0, 3, -3, 5, -5]),-5),1),41))",
    "io_inp": [
      0,
      3,
      -3,
      5,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(drop(add_n(sort_des(input),-5),1),41))"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [-7, -2, -8]",
    "output": "generated_output : list = reverse(sub_n(sub_n([-4, 2, -3],1),3))",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      -7,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,1),3))"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [10, 6, 4]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(sort_des([-3, -2, -5])),-2)),34)",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      10,
      6,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(sort_des(input)),-2)),34)"
  },
  {
    "input": "input : list = [-2, 2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = drop(sort_des([-2, 2, 0]),1)",
    "io_inp": [
      -2,
      2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),1)"
  },
  {
    "input": "input : list = [2, 5, 0, -1, -4, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(reverse([2, 5, 0, -1, -4, -2]),-2),1),4))",
    "io_inp": [
      2,
      5,
      0,
      -1,
      -4,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(reverse(input),-2),1),4))"
  },
  {
    "input": "input : list = [5, -2, 4, 2, -3, 3]\noutput : list = [4, -2, 5]",
    "output": "generated_output : list = reverse(take([5, -2, 4, 2, -3, 3],3))",
    "io_inp": [
      5,
      -2,
      4,
      2,
      -3,
      3
    ],
    "io_out": [
      4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(sub_n([-4, -2],1),4))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(sub_n(input,1),4))))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-19, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sort_des([-4, 1]),4),2),1))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -19,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sort_des(input),4),2),1))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-6, 1]",
    "output": "generated_output : list = add_n([-2, 5],-4)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-10, 10]",
    "output": "generated_output : list = mul_n([-2, 2],5)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-4, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, -4])",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [30]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(add_n([-2, -3],-3)),1),-5))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(add_n(input,-3)),1),-5))"
  },
  {
    "input": "input : list = [-2, -3, 0, 1, -5, -2]\noutput : list = [0, 1, -5, -2]",
    "output": "generated_output : list = drop([-2, -3, 0, 1, -5, -2],2)",
    "io_inp": [
      -2,
      -3,
      0,
      1,
      -5,
      -2
    ],
    "io_out": [
      0,
      1,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -2, 2, 0]\noutput : list = [15]",
    "output": "generated_output : list = take(take(take(mul_n(sort_des([5, -2, 2, 0]),3),28),11),1)",
    "io_inp": [
      5,
      -2,
      2,
      0
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(sort_des(input),3),28),11),1)"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [-2, -6, 4]",
    "output": "generated_output : list = sub_n(reverse([5, -5, -1]),1)",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      -2,
      -6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, 3, -5, 1, -1, 3]\noutput : list = [-18, 2]",
    "output": "generated_output : list = sort_asc(sub_n(take(drop(mul_n([-4, 3, -5, 1, -1, 3],-5),4),24),3))",
    "io_inp": [
      -4,
      3,
      -5,
      1,
      -1,
      3
    ],
    "io_out": [
      -18,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(drop(mul_n(input,-5),4),24),3))"
  },
  {
    "input": "input : list = [-5, -2, 4, 0, 1, -3]\noutput : list = [12, -36]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(drop([-5, -2, 4, 0, 1, -3],4),-3))),-4)",
    "io_inp": [
      -5,
      -2,
      4,
      0,
      1,
      -3
    ],
    "io_out": [
      12,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(drop(input,4),-3))),-4)"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [-2, -11, -4]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(add_n([2, -5, 4],3),1)),-4),-5)",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      -2,
      -11,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(add_n(input,3),1)),-4),-5)"
  },
  {
    "input": "input : list = [-1, 3, -3, -3]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(sort_asc([-1, 3, -3, -3]),-1)),1),4)",
    "io_inp": [
      -1,
      3,
      -3,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(sort_asc(input),-1)),1),4)"
  },
  {
    "input": "input : list = [0, -5, -3, 0]\noutput : list = [-14, 1, -5, -14]",
    "output": "generated_output : list = add_n(mul_n(take(take(sub_n([0, -5, -3, 0],-4),14),28),-3),-2)",
    "io_inp": [
      0,
      -5,
      -3,
      0
    ],
    "io_out": [
      -14,
      1,
      -5,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(sub_n(input,-4),14),28),-3),-2)"
  },
  {
    "input": "input : list = [3, -4, 4, -1]\noutput : list = [1, 2, 6, 9]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(reverse([3, -4, 4, -1]),5))),-1)",
    "io_inp": [
      3,
      -4,
      4,
      -1
    ],
    "io_out": [
      1,
      2,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(reverse(input),5))),-1)"
  },
  {
    "input": "input : list = [-3, -2, 2, 2, -1]\noutput : list = [-5, -6]",
    "output": "generated_output : list = take(reverse(sub_n(take([-3, -2, 2, 2, -1],2),3)),19)",
    "io_inp": [
      -3,
      -2,
      2,
      2,
      -1
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(input,2),3)),19)"
  },
  {
    "input": "input : list = [4, -2, 5, -5, 3]\noutput : list = [-300, -150, 100, 150, 200]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(sort_asc([4, -2, 5, -5, 3]),1),5),5),2)",
    "io_inp": [
      4,
      -2,
      5,
      -5,
      3
    ],
    "io_out": [
      -300,
      -150,
      100,
      150,
      200
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(sort_asc(input),1),5),5),2)"
  },
  {
    "input": "input : list = [2, -5, 3, -4, 1, 3]\noutput : list = [5, 4, -1, -2, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([2, -5, 3, -4, 1, 3],-1)))",
    "io_inp": [
      2,
      -5,
      3,
      -4,
      1,
      3
    ],
    "io_out": [
      5,
      4,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-24, -24]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(add_n([-2, -2],-4),1),4)))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(add_n(input,-4),1),4)))"
  },
  {
    "input": "input : list = [-1, -4, -3]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(add_n([-1, -4, -3],1),15))))",
    "io_inp": [
      -1,
      -4,
      -3
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(add_n(input,1),15))))"
  },
  {
    "input": "input : list = [-1, 0, -5, 1, -4, -3]\noutput : list = [6, 1, -4, -14, -19, -24]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(mul_n([-1, 0, -5, 1, -4, -3],5))),1))",
    "io_inp": [
      -1,
      0,
      -5,
      1,
      -4,
      -3
    ],
    "io_out": [
      6,
      1,
      -4,
      -14,
      -19,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(mul_n(input,5))),1))"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [2, -2, -1]",
    "output": "generated_output : list = take(add_n(sub_n([1, -3, -2],4),5),22)",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,4),5),22)"
  },
  {
    "input": "input : list = [-1, 3, 1, 3, -3, -4]\noutput : list = [-4, -3, 1, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(drop([-1, 3, 1, 3, -3, -4],2)))),23)",
    "io_inp": [
      -1,
      3,
      1,
      3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(drop(input,2)))),23)"
  },
  {
    "input": "input : list = [-1, 3, 0, 2]\noutput : list = [3, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(take([-1, 3, 0, 2],2))),4)",
    "io_inp": [
      -1,
      3,
      0,
      2
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(input,2))),4)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-42, -26, -2]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sort_asc([-3, 0, -5]),-4),-1),-2))",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -42,
      -26,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sort_asc(input),-4),-1),-2))"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [-1, -4, -6]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(add_n([0, 3, -2],-5))),6),-1)",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(add_n(input,-5))),6),-1)"
  },
  {
    "input": "input : list = [3, -2, 4, -1]\noutput : list = [-2, -1, 3, 4]",
    "output": "generated_output : list = sort_asc([3, -2, 4, -1])",
    "io_inp": [
      3,
      -2,
      4,
      -1
    ],
    "io_out": [
      -2,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, -2, 1, 4, 1]\noutput : list = [-4, -1, -1, 2, 5, 2]",
    "output": "generated_output : list = sub_n([-5, -2, -2, 1, 4, 1],-1)",
    "io_inp": [
      -5,
      -2,
      -2,
      1,
      4,
      1
    ],
    "io_out": [
      -4,
      -1,
      -1,
      2,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, 0, 1, 2, 5]\noutput : list = [-7, -7, -4, -1, 8]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(add_n([0, 0, 1, 2, 5],-3),3)),2))",
    "io_inp": [
      0,
      0,
      1,
      2,
      5
    ],
    "io_out": [
      -7,
      -7,
      -4,
      -1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(add_n(input,-3),3)),2))"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [0, -5, -20]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(sort_des([1, -2, 2])),-2),5),20)",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      0,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(sort_des(input)),-2),5),20)"
  },
  {
    "input": "input : list = [1, 5, 3, 4]\noutput : list = [0]",
    "output": "generated_output : list = add_n(mul_n(take([1, 5, 3, 4],1),3),-3)",
    "io_inp": [
      1,
      5,
      3,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,1),3),-3)"
  },
  {
    "input": "input : list = [5, 4, 2, 3]\noutput : list = [3, 2, 0, 1]",
    "output": "generated_output : list = add_n([5, 4, 2, 3],-2)",
    "io_inp": [
      5,
      4,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 0, -3, -1, 0]\noutput : list = [-6, -5, -8, -6, -5]",
    "output": "generated_output : list = add_n([-1, 0, -3, -1, 0],-5)",
    "io_inp": [
      -1,
      0,
      -3,
      -1,
      0
    ],
    "io_out": [
      -6,
      -5,
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -4, -4, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(take([-1, -4, -4, 3],1),-4),3),4),-4)",
    "io_inp": [
      -1,
      -4,
      -4,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(take(input,1),-4),3),4),-4)"
  },
  {
    "input": "input : list = [0, 4, -1, -4, -3, -4]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(drop([0, 4, -1, -4, -3, -4],3),-2),-2)),-4)",
    "io_inp": [
      0,
      4,
      -1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(drop(input,3),-2),-2)),-4)"
  },
  {
    "input": "input : list = [-2, 3, 5]\noutput : list = [0, 2, 7]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(reverse([-2, 3, 5]))),-1),-5)",
    "io_inp": [
      -2,
      3,
      5
    ],
    "io_out": [
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(reverse(input))),-1),-5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(reverse([4, -3]),1)),23))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(reverse(input),1)),23))"
  },
  {
    "input": "input : list = [3, -5, 2, -5, -4, 1]\noutput : list = [-5, -5, -4, 1, 2, 3]",
    "output": "generated_output : list = sort_asc([3, -5, 2, -5, -4, 1])",
    "io_inp": [
      3,
      -5,
      2,
      -5,
      -4,
      1
    ],
    "io_out": [
      -5,
      -5,
      -4,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -2, -1, 2, 4]\noutput : list = [5, 3, 0, -1]",
    "output": "generated_output : list = sub_n(add_n(take(reverse([-2, -2, -1, 2, 4]),4),5),4)",
    "io_inp": [
      -2,
      -2,
      -1,
      2,
      4
    ],
    "io_out": [
      5,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(input),4),5),4)"
  },
  {
    "input": "input : list = [-5, -4, -2, -1, -2, -2]\noutput : list = [-16, -36, -36, -36, -76, -96]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(sort_des([-5, -4, -2, -1, -2, -2]),-5),-1)),-4)",
    "io_inp": [
      -5,
      -4,
      -2,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -16,
      -36,
      -36,
      -36,
      -76,
      -96
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(sort_des(input),-5),-1)),-4)"
  },
  {
    "input": "input : list = [-1, -3, 5, 0]\noutput : list = [13, -2, -5, -11]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n([-1, -3, 5, 0],3),-2)))",
    "io_inp": [
      -1,
      -3,
      5,
      0
    ],
    "io_out": [
      13,
      -2,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(input,3),-2)))"
  },
  {
    "input": "input : list = [-3, -4, -2, 5]\noutput : list = [3, -4, -6, -5]",
    "output": "generated_output : list = take(add_n(add_n(reverse(add_n([-3, -4, -2, 5],-1)),1),-2),29)",
    "io_inp": [
      -3,
      -4,
      -2,
      5
    ],
    "io_out": [
      3,
      -4,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(add_n(input,-1)),1),-2),29)"
  },
  {
    "input": "input : list = [5, 3, -1, -2, 4]\noutput : list = [5, 4, 3, -1, -2]",
    "output": "generated_output : list = sort_des([5, 3, -1, -2, 4])",
    "io_inp": [
      5,
      3,
      -1,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [8]",
    "output": "generated_output : list = take(mul_n(reverse([3, -5, 2]),4),1)",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),4),1)"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [-3, 7]",
    "output": "generated_output : list = add_n(drop([-3, -5, 5],1),2)",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      -3,
      7
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [0, 1, 0, 5, 5]\noutput : list = [16, 16, 12, 11, 11]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_des([0, 1, 0, 5, 5]),3),5),-4),5)",
    "io_inp": [
      0,
      1,
      0,
      5,
      5
    ],
    "io_out": [
      16,
      16,
      12,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_des(input),3),5),-4),5)"
  },
  {
    "input": "input : list = [-2, 3, 0, -1, 1, 2]\noutput : list = [3, 6, 12]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(reverse([-2, 3, 0, -1, 1, 2]),3),3),-3))",
    "io_inp": [
      -2,
      3,
      0,
      -1,
      1,
      2
    ],
    "io_out": [
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(reverse(input),3),3),-3))"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [-3, 9, 9]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(add_n([0, -4, -4],-2),-3),-1),-3),-1)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      -3,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(add_n(input,-2),-3),-1),-3),-1)"
  },
  {
    "input": "input : list = [-4, -4, 2, 0, 5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take([-4, -4, 2, 0, 5],2)",
    "io_inp": [
      -4,
      -4,
      2,
      0,
      5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 4, 0, 5, -1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(reverse(sort_des(drop(sub_n([-2, 4, 0, 5, -1],-1),4))),-1)",
    "io_inp": [
      -2,
      4,
      0,
      5,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(drop(sub_n(input,-1),4))),-1)"
  },
  {
    "input": "input : list = [-2, -1, -3, 3]\noutput : list = [36, -12, -36]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(drop([-2, -1, -3, 3],1),4),30),3))",
    "io_inp": [
      -2,
      -1,
      -3,
      3
    ],
    "io_out": [
      36,
      -12,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(drop(input,1),4),30),3))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [10, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc([5, -5]),5)))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(mul_n([0, 0],5))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [5, -3, 1, 1, 4]\noutput : list = [40, 32, 8, 8, -24]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_des([5, -3, 1, 1, 4]))),4),2)",
    "io_inp": [
      5,
      -3,
      1,
      1,
      4
    ],
    "io_out": [
      40,
      32,
      8,
      8,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_des(input))),4),2)"
  },
  {
    "input": "input : list = [4, 5, -4, 1]\noutput : list = [0, -5, 4, 3]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(add_n([4, 5, -4, 1],-1),-4)),4),41)",
    "io_inp": [
      4,
      5,
      -4,
      1
    ],
    "io_out": [
      0,
      -5,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(add_n(input,-1),-4)),4),41)"
  },
  {
    "input": "input : list = [-5, 1, -5, -5, 2, 4]\noutput : list = [0, -2, -9, -9, -3, -9]",
    "output": "generated_output : list = reverse(add_n([-5, 1, -5, -5, 2, 4],-4))",
    "io_inp": [
      -5,
      1,
      -5,
      -5,
      2,
      4
    ],
    "io_out": [
      0,
      -2,
      -9,
      -9,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [-5, 1, 0, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(take([-5, 1, 0, 1],1)))))",
    "io_inp": [
      -5,
      1,
      0,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, 2, -4, 2, -2, -1]\noutput : list = [-6, -6, 6, 10, 18, 18]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(sort_asc([-4, 2, -4, 2, -2, -1]),-4),-2),8))",
    "io_inp": [
      -4,
      2,
      -4,
      2,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -6,
      6,
      10,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(sort_asc(input),-4),-2),8))"
  },
  {
    "input": "input : list = [-5, 2, 3, -3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take(drop([-5, 2, 3, -3, -5],3),22)",
    "io_inp": [
      -5,
      2,
      3,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(drop(input,3),22)"
  },
  {
    "input": "input : list = [-4, -1, -1, 5, 4, 5]\noutput : list = [-2, 1, 1, 6, 7, 7]",
    "output": "generated_output : list = add_n(sort_asc([-4, -1, -1, 5, 4, 5]),2)",
    "io_inp": [
      -4,
      -1,
      -1,
      5,
      4,
      5
    ],
    "io_out": [
      -2,
      1,
      1,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-3, -1, 1, 1, -4]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(take([-3, -1, 1, 1, -4],1)))),2)",
    "io_inp": [
      -3,
      -1,
      1,
      1,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(take(input,1)))),2)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-1, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(add_n([-3, 4],3),2)),1),12)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(add_n(input,3),2)),1),12)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-9, -7, -5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(reverse([2, 0, -2]),17),-2),-5))",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(reverse(input),17),-2),-5))"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(drop([0, 2, 4],1),1),17),-1))",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(drop(input,1),1),17),-1))"
  },
  {
    "input": "input : list = [-5, 0, 2, -1]\noutput : list = [-1, 3, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(reverse([-5, 0, 2, -1])),18)),4)",
    "io_inp": [
      -5,
      0,
      2,
      -1
    ],
    "io_out": [
      -1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(reverse(input)),18)),4)"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(sub_n([-2, -5, -5],-2),4),2)),-3)",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(sub_n(input,-2),4),2)),-3)"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(take([0, 2, -5],1)),-2),7),-3)",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(take(input,1)),-2),7),-3)"
  },
  {
    "input": "input : list = [1, 1, 3]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(take(sort_asc([1, 1, 3]),4),2),-4),1)",
    "io_inp": [
      1,
      1,
      3
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(sort_asc(input),4),2),-4),1)"
  },
  {
    "input": "input : list = [-1, -3, -1, -3, 5]\noutput : list = [2, 0, 2, 0, 8]",
    "output": "generated_output : list = add_n([-1, -3, -1, -3, 5],3)",
    "io_inp": [
      -1,
      -3,
      -1,
      -3,
      5
    ],
    "io_out": [
      2,
      0,
      2,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 2, 5]\noutput : list = [-3, -6, -13]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(sub_n([-5, 2, 5],5)),-2),1))",
    "io_inp": [
      -5,
      2,
      5
    ],
    "io_out": [
      -3,
      -6,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(sub_n(input,5)),-2),1))"
  },
  {
    "input": "input : list = [-2, 4, 0, 3, -3]\noutput : list = [-6, 12, 0]",
    "output": "generated_output : list = mul_n(take(take([-2, 4, 0, 3, -3],3),3),3)",
    "io_inp": [
      -2,
      4,
      0,
      3,
      -3
    ],
    "io_out": [
      -6,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,3),3),3)"
  },
  {
    "input": "input : list = [5, -5, 3, 4]\noutput : list = [-5, 3, 4]",
    "output": "generated_output : list = drop([5, -5, 3, 4],1)",
    "io_inp": [
      5,
      -5,
      3,
      4
    ],
    "io_out": [
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [8, 1, 0]",
    "output": "generated_output : list = add_n(sort_des([-2, 5, -3]),3)",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      8,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-5, -3, 4, 5, -2]\noutput : list = [-10, -8, -1, 0, -7]",
    "output": "generated_output : list = sub_n([-5, -3, 4, 5, -2],5)",
    "io_inp": [
      -5,
      -3,
      4,
      5,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -1,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, 1, 5, -4, -2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(take([-1, 1, 5, -4, -2],2)))))",
    "io_inp": [
      -1,
      1,
      5,
      -4,
      -2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(take(input,2)))))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-6, 8]",
    "output": "generated_output : list = reverse(take(add_n(take(mul_n([-3, 4],-2),13),2),6))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -6,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(mul_n(input,-2),13),2),6))"
  },
  {
    "input": "input : list = [1, -3, -4, 5, -1, 0]\noutput : list = [-2, -1, 1, 2, 3, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc([1, -3, -4, 5, -1, 0]),-2)))",
    "io_inp": [
      1,
      -3,
      -4,
      5,
      -1,
      0
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(input),-2)))"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [-9]",
    "output": "generated_output : list = drop(sort_des(sub_n(sort_des(sort_asc([5, 3, -4])),5)),2)",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(sort_des(sort_asc(input)),5)),2)"
  },
  {
    "input": "input : list = [3, 3, 2, 3, -4, 1]\noutput : list = [-16, 4, 8, 12, 12, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n([3, 3, 2, 3, -4, 1],-1)),-4))",
    "io_inp": [
      3,
      3,
      2,
      3,
      -4,
      1
    ],
    "io_out": [
      -16,
      4,
      8,
      12,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(input,-1)),-4))"
  },
  {
    "input": "input : list = [0, 4, -3, -5]\noutput : list = [-1, -5, 2, 4]",
    "output": "generated_output : list = take(mul_n(sub_n([0, 4, -3, -5],-1),-1),10)",
    "io_inp": [
      0,
      4,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,-1),-1),10)"
  },
  {
    "input": "input : list = [5, 4, 1]\noutput : list = [9, 7, 1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_asc([5, 4, 1]),2))),-1)",
    "io_inp": [
      5,
      4,
      1
    ],
    "io_out": [
      9,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_asc(input),2))),-1)"
  },
  {
    "input": "input : list = [3, 1, 5, -5, -2, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take([3, 1, 5, -5, -2, 2],1))",
    "io_inp": [
      3,
      1,
      5,
      -5,
      -2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-15, 10, 35]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(mul_n([-5, 0, 5],-1)),-2)),-5)",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -15,
      10,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(mul_n(input,-1)),-2)),-5)"
  },
  {
    "input": "input : list = [2, 3, 2, 2, -3]\noutput : list = [-14, 6, 6, 6, 10]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(mul_n([2, 3, 2, 2, -3],4),3),5)),33)",
    "io_inp": [
      2,
      3,
      2,
      2,
      -3
    ],
    "io_out": [
      -14,
      6,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(mul_n(input,4),3),5)),33)"
  },
  {
    "input": "input : list = [-4, -5, -4, 3]\noutput : list = [-62, 78]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(sort_des([-4, -5, -4, 3]),2),4),-5),-2)",
    "io_inp": [
      -4,
      -5,
      -4,
      3
    ],
    "io_out": [
      -62,
      78
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(sort_des(input),2),4),-5),-2)"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [-11, -5, -4]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des([4, 3, -3]),-5)),-3)",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      -11,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(input),-5)),-3)"
  },
  {
    "input": "input : list = [-3, -1, 2, -2, 1, 3]\noutput : list = [-2, -6]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(drop([-3, -1, 2, -2, 1, 3],4),-1))),2)",
    "io_inp": [
      -3,
      -1,
      2,
      -2,
      1,
      3
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(drop(input,4),-1))),2)"
  },
  {
    "input": "input : list = [4, 4, 2, -2, -4, -2]\noutput : list = [8, 8]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(take([4, 4, 2, -2, -4, -2],2))),3),-4)",
    "io_inp": [
      4,
      4,
      2,
      -2,
      -4,
      -2
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(take(input,2))),3),-4)"
  },
  {
    "input": "input : list = [2, 2, -3, -3]\noutput : list = [11, 11]",
    "output": "generated_output : list = add_n(mul_n(sort_des(drop([2, 2, -3, -3],2)),-3),2)",
    "io_inp": [
      2,
      2,
      -3,
      -3
    ],
    "io_out": [
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(drop(input,2)),-3),2)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take([1, 0, -1],1))",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [-11, -11]",
    "output": "generated_output : list = mul_n(drop(add_n(sub_n([-3, 3, 3],-4),4),1),-1)",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      -11,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(sub_n(input,-4),4),1),-1)"
  },
  {
    "input": "input : list = [5, -4, -4, 0, -5]\noutput : list = [2, -3, -7, -7, -8]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(reverse([5, -4, -4, 0, -5]))),2),1)",
    "io_inp": [
      5,
      -4,
      -4,
      0,
      -5
    ],
    "io_out": [
      2,
      -3,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(reverse(input))),2),1)"
  },
  {
    "input": "input : list = [1, -5, -2, -3, 1, -2]\noutput : list = [3, 3, -6, -6, -9, -15]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(sort_asc([1, -5, -2, -3, 1, -2])))),3)",
    "io_inp": [
      1,
      -5,
      -2,
      -3,
      1,
      -2
    ],
    "io_out": [
      3,
      3,
      -6,
      -6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [4, 0, -5, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = take([4, 0, -5, 0],2)",
    "io_inp": [
      4,
      0,
      -5,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 5, -4, 1, 4]\noutput : list = [37, 33, 13, 1, -3]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sort_asc([-5, 5, -4, 1, 4]),9),-3),-4),-5)",
    "io_inp": [
      -5,
      5,
      -4,
      1,
      4
    ],
    "io_out": [
      37,
      33,
      13,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sort_asc(input),9),-3),-4),-5)"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc([-2, 2, -1]),5))",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-5, -5, 5, -1, -5]\noutput : list = [-9, -3, 1]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(sort_asc([-5, -5, 5, -1, -5])),4),3),-1)",
    "io_inp": [
      -5,
      -5,
      5,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(sort_asc(input)),4),3),-1)"
  },
  {
    "input": "input : list = [2, 3, 4, 2]\noutput : list = [3, 4, 2]",
    "output": "generated_output : list = drop([2, 3, 4, 2],1)",
    "io_inp": [
      2,
      3,
      4,
      2
    ],
    "io_out": [
      3,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 2, 4, -5, 5, 2]\noutput : list = [20, 6, 6, 2, 2, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(add_n([4, 2, 4, -5, 5, 2],-5))),-2))",
    "io_inp": [
      4,
      2,
      4,
      -5,
      5,
      2
    ],
    "io_out": [
      20,
      6,
      6,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(add_n(input,-5))),-2))"
  },
  {
    "input": "input : list = [-3, -3, 1, 1, 0]\noutput : list = [6, 6, 10, 10, 9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([-3, -3, 1, 1, 0],-5),-3),-1)",
    "io_inp": [
      -3,
      -3,
      1,
      1,
      0
    ],
    "io_out": [
      6,
      6,
      10,
      10,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,-5),-3),-1)"
  },
  {
    "input": "input : list = [0, 3, -1, -1]\noutput : list = [11, 11]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(drop([0, 3, -1, -1],2)),-5),-4),3)",
    "io_inp": [
      0,
      3,
      -1,
      -1
    ],
    "io_out": [
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(drop(input,2)),-5),-4),3)"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = reverse(sort_asc([5, 3, -1]))",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 1, 5, 0, 1]\noutput : list = [-16, 0, 0, 4, 24]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(add_n([-5, 1, 5, 0, 1],-2)),-4),36),4)",
    "io_inp": [
      -5,
      1,
      5,
      0,
      1
    ],
    "io_out": [
      -16,
      0,
      0,
      4,
      24
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(add_n(input,-2)),-4),36),4)"
  },
  {
    "input": "input : list = [4, -2, -3, -5]\noutput : list = [-36, 18, 27, 45]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_des([4, -2, -3, -5])),-3)),3)",
    "io_inp": [
      4,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -36,
      18,
      27,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_des(input)),-3)),3)"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take(take(sub_n(take([3, 4, -5],1),2),23),2))",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(take(input,1),2),23),2))"
  },
  {
    "input": "input : list = [-1, 2, 2, 1, -1, 4]\noutput : list = [-10, -4, -4, -1, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(mul_n([-1, 2, 2, 1, -1, 4],-3),-2),21)))",
    "io_inp": [
      -1,
      2,
      2,
      1,
      -1,
      4
    ],
    "io_out": [
      -10,
      -4,
      -4,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(mul_n(input,-3),-2),21)))"
  },
  {
    "input": "input : list = [0, 0, 5, -5]\noutput : list = [-5, 5, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, 5, -5])",
    "io_inp": [
      0,
      0,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -2, 4, -5, -2]\noutput : list = [-5, -8, 1, -5, -4]",
    "output": "generated_output : list = take(add_n(reverse(sub_n([-1, -2, 4, -5, -2],1)),-2),19)",
    "io_inp": [
      -1,
      -2,
      4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -8,
      1,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(input,1)),-2),19)"
  },
  {
    "input": "input : list = [-2, 2, -5]\noutput : list = [26, 11, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(sort_asc([-2, 2, -5]),-5),-1)))",
    "io_inp": [
      -2,
      2,
      -5
    ],
    "io_out": [
      26,
      11,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(sort_asc(input),-5),-1)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [7, -2]",
    "output": "generated_output : list = add_n([5, -4],2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [3, -4, -7]",
    "output": "generated_output : list = sub_n(sort_des([-2, -5, 5]),2)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(sub_n([5, 5],1))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [2, -5, 2, -4, -4]\noutput : list = [-10, 20, 20, 25]",
    "output": "generated_output : list = mul_n(drop(sort_des(sort_asc([2, -5, 2, -4, -4])),1),-5)",
    "io_inp": [
      2,
      -5,
      2,
      -4,
      -4
    ],
    "io_out": [
      -10,
      20,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_des(sort_asc(input)),1),-5)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [20, 0]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_asc([0, 4]))),5),4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_asc(input))),5),4)"
  },
  {
    "input": "input : list = [1, -2, 2, 4, -4, -5]\noutput : list = [-5, -4, -2, 1, 2, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc([1, -2, 2, 4, -4, -5]))),24)",
    "io_inp": [
      1,
      -2,
      2,
      4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(input))),24)"
  },
  {
    "input": "input : list = [-3, -1, 4, 5]\noutput : list = [-6, -2, 8, 10]",
    "output": "generated_output : list = reverse(reverse(mul_n([-3, -1, 4, 5],2)))",
    "io_inp": [
      -3,
      -1,
      4,
      5
    ],
    "io_out": [
      -6,
      -2,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,2)))"
  },
  {
    "input": "input : list = [-3, 3, -4, -1]\noutput : list = [2, -1, 6, 0]",
    "output": "generated_output : list = reverse(add_n([-3, 3, -4, -1],3))",
    "io_inp": [
      -3,
      3,
      -4,
      -1
    ],
    "io_out": [
      2,
      -1,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc([-3, -1, -2])),-4),27)",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(input)),-4),27)"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [12, 9, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sort_asc([2, 3, -1]),-1))),3)",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      12,
      9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sort_asc(input),-1))),3)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sub_n([2, -3],-5))),5),14)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sub_n(input,-5))),5),14)"
  },
  {
    "input": "input : list = [1, -5, 4, 5, -5]\noutput : list = [12, -6, 21, 24, -6]",
    "output": "generated_output : list = mul_n(add_n([1, -5, 4, 5, -5],3),3)",
    "io_inp": [
      1,
      -5,
      4,
      5,
      -5
    ],
    "io_out": [
      12,
      -6,
      21,
      24,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),3)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, -16]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(reverse([0, -4])),4)))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [5, 3, 3, -4, -2]\noutput : list = [-74, 101, 51]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(drop([5, 3, 3, -4, -2],2),5),-5),-1),1)",
    "io_inp": [
      5,
      3,
      3,
      -4,
      -2
    ],
    "io_out": [
      -74,
      101,
      51
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(drop(input,2),5),-5),-1),1)"
  },
  {
    "input": "input : list = [5, 0, -1, 4, -3]\noutput : list = [-10, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(drop([5, 0, -1, 4, -3],3)),2)),5)",
    "io_inp": [
      5,
      0,
      -1,
      4,
      -3
    ],
    "io_out": [
      -10,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(drop(input,3)),2)),5)"
  },
  {
    "input": "input : list = [3, 0, 0, 1, -3, -4]\noutput : list = [-28, 2, 2, -8, 32, 42]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(mul_n([3, 0, 0, 1, -3, -4],5),-1),3),1),-2)",
    "io_inp": [
      3,
      0,
      0,
      1,
      -3,
      -4
    ],
    "io_out": [
      -28,
      2,
      2,
      -8,
      32,
      42
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(mul_n(input,5),-1),3),1),-2)"
  },
  {
    "input": "input : list = [5, -4, -4, -4, -5]\noutput : list = [-5, -4, -4, -4, 5]",
    "output": "generated_output : list = reverse(sort_des([5, -4, -4, -4, -5]))",
    "io_inp": [
      5,
      -4,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -3, 1, 1, 0]\noutput : list = [-5, -5]",
    "output": "generated_output : list = mul_n(take(mul_n(take(drop([-4, -3, 1, 1, 0],2),2),-1),20),5)",
    "io_inp": [
      -4,
      -3,
      1,
      1,
      0
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(drop(input,2),2),-1),20),5)"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = take(take(sort_asc(sort_asc(reverse([2, -1, -2]))),13),35)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_asc(reverse(input))),13),35)"
  },
  {
    "input": "input : list = [5, 3, 0, 2, -2]\noutput : list = [15, 9, 6, 0, -6]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des([5, 3, 0, 2, -2]),3)),1)",
    "io_inp": [
      5,
      3,
      0,
      2,
      -2
    ],
    "io_out": [
      15,
      9,
      6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(input),3)),1)"
  },
  {
    "input": "input : list = [2, 5, 3, -4]\noutput : list = [-1, 6, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(drop([2, 5, 3, -4],1),3)),1),33)",
    "io_inp": [
      2,
      5,
      3,
      -4
    ],
    "io_out": [
      -1,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(drop(input,1),3)),1),33)"
  },
  {
    "input": "input : list = [0, -2, 1, 1, 4]\noutput : list = [0, 2, -1, -1, -4]",
    "output": "generated_output : list = mul_n([0, -2, 1, 1, 4],-1)",
    "io_inp": [
      0,
      -2,
      1,
      1,
      4
    ],
    "io_out": [
      0,
      2,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n([2, 2],-2)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 5, 5, 3]\noutput : list = [-36, 6, 18, 18]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(reverse([-4, 5, 5, 3]),-2)),3),2)",
    "io_inp": [
      -4,
      5,
      5,
      3
    ],
    "io_out": [
      -36,
      6,
      18,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(reverse(input),-2)),3),2)"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [-9, -9, -2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(add_n([3, -4, -4],-5)))))",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [3, 4, 3, 0, 3, -3]\noutput : list = [-3, 3, 0, 3, 4, 3]",
    "output": "generated_output : list = reverse(reverse(reverse([3, 4, 3, 0, 3, -3])))",
    "io_inp": [
      3,
      4,
      3,
      0,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      0,
      3,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [-7, -5, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sub_n([-3, 5, -5],-2)),2)),2)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      -7,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sub_n(input,-2)),2)),2)"
  },
  {
    "input": "input : list = [0, -4, 4, -4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(drop([0, -4, 4, -4, 2],3)))))",
    "io_inp": [
      0,
      -4,
      4,
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(drop(input,3)))))"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [0, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 0, -2])",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3, 1, 2, 5, 4]\noutput : list = [-20, -24, -12, -8, -16, 12]",
    "output": "generated_output : list = add_n(reverse(sub_n(mul_n([-4, 3, 1, 2, 5, 4],-4),3)),-1)",
    "io_inp": [
      -4,
      3,
      1,
      2,
      5,
      4
    ],
    "io_out": [
      -20,
      -24,
      -12,
      -8,
      -16,
      12
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(mul_n(input,-4),3)),-1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [0, -180]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(add_n([5, -4],-5),13),4),1),5)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      0,
      -180
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(add_n(input,-5),13),4),1),5)"
  },
  {
    "input": "input : list = [-2, 4, 0, -5]\noutput : list = [-10, -7, -5, -1]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_des(sort_asc([-2, 4, 0, -5])),3),-2))",
    "io_inp": [
      -2,
      4,
      0,
      -5
    ],
    "io_out": [
      -10,
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_des(sort_asc(input)),3),-2))"
  },
  {
    "input": "input : list = [-3, 0, 5, 1]\noutput : list = [4, 20, 0]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(drop([-3, 0, 5, 1],1),-4)),3),-1)",
    "io_inp": [
      -3,
      0,
      5,
      1
    ],
    "io_out": [
      4,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(drop(input,1),-4)),3),-1)"
  },
  {
    "input": "input : list = [-5, 4, -4, -4, -5, -1]\noutput : list = [-16, 20, -12, -12, -16, 0]",
    "output": "generated_output : list = mul_n(add_n([-5, 4, -4, -4, -5, -1],1),4)",
    "io_inp": [
      -5,
      4,
      -4,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -16,
      20,
      -12,
      -12,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),4)"
  },
  {
    "input": "input : list = [-2, 2, -2, 2, 5]\noutput : list = [1, 1, 5, 5, 8]",
    "output": "generated_output : list = sort_asc(take(add_n([-2, 2, -2, 2, 5],3),5))",
    "io_inp": [
      -2,
      2,
      -2,
      2,
      5
    ],
    "io_out": [
      1,
      1,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,3),5))"
  },
  {
    "input": "input : list = [-1, -5, 0]\noutput : list = [0, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, 0])",
    "io_inp": [
      -1,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-10, -20]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(sort_des([-5, -3])),5)),-5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(sort_des(input)),5)),-5)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-32, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(add_n([-5, 0],-3),11))),4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -32,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(add_n(input,-3),11))),4)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [0, -5]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_asc([4, -1])),2),1),-5)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_asc(input)),2),1),-5)"
  },
  {
    "input": "input : list = [-3, 4, -2, 0]\noutput : list = [-4, 12, 20, 24]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sort_asc([-3, 4, -2, 0]),4)),3),-4)",
    "io_inp": [
      -3,
      4,
      -2,
      0
    ],
    "io_out": [
      -4,
      12,
      20,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sort_asc(input),4)),3),-4)"
  },
  {
    "input": "input : list = [-3, -2, -5, -5]\noutput : list = [-3, -4, -6, -6]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(sort_des([-3, -2, -5, -5]),5),-4),-2))",
    "io_inp": [
      -3,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(sort_des(input),5),-4),-2))"
  },
  {
    "input": "input : list = [0, -2, 4, 4, 5, -5]\noutput : list = [22, 17, 17, -3, -13, -28]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n([0, -2, 4, 4, 5, -5],5),-3)))",
    "io_inp": [
      0,
      -2,
      4,
      4,
      5,
      -5
    ],
    "io_out": [
      22,
      17,
      17,
      -3,
      -13,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(input,5),-3)))"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-9, 0, -9]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(add_n([-4, 5, -4],-4),2),1),4))",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -9,
      0,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(add_n(input,-4),2),1),4))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sub_n(sub_n([0, 1],1),-4)),5))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sub_n(sub_n(input,1),-4)),5))"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse([-1, 4, 5]),3)))",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(input),3)))"
  },
  {
    "input": "input : list = [3, 3, 0, 2, 3]\noutput : list = [9, 9, 0, 6, 9]",
    "output": "generated_output : list = mul_n([3, 3, 0, 2, 3],3)",
    "io_inp": [
      3,
      3,
      0,
      2,
      3
    ],
    "io_out": [
      9,
      9,
      0,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-5, -9]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(reverse(mul_n([0, 2],-2)),-5)))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(reverse(mul_n(input,-2)),-5)))"
  },
  {
    "input": "input : list = [-1, 1, -1, -1, 3]\noutput : list = [-3, -3, -3, -1, 1]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(mul_n([-1, 1, -1, -1, 3],-1)),2),-1))",
    "io_inp": [
      -1,
      1,
      -1,
      -1,
      3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(mul_n(input,-1)),2),-1))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(add_n([4, 0],-2),12),-2)))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(add_n(input,-2),12),-2)))"
  },
  {
    "input": "input : list = [5, -4, -1, -2, -5, -5]\noutput : list = [-20, -20, -14, -12, -18, 0]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(sub_n([5, -4, -1, -2, -5, -5],5)),2)))",
    "io_inp": [
      5,
      -4,
      -1,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -20,
      -20,
      -14,
      -12,
      -18,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(sub_n(input,5)),2)))"
  },
  {
    "input": "input : list = [4, 2, -4]\noutput : list = [-5, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n([4, 2, -4],1))))",
    "io_inp": [
      4,
      2,
      -4
    ],
    "io_out": [
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(input,1))))"
  },
  {
    "input": "input : list = [-2, -1, -5, 3]\noutput : list = [-5, -2, -1, 3]",
    "output": "generated_output : list = sort_asc([-2, -1, -5, 3])",
    "io_inp": [
      -2,
      -1,
      -5,
      3
    ],
    "io_out": [
      -5,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [3, -4, -6]",
    "output": "generated_output : list = add_n(sort_des([5, -2, -4]),-2)",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [4, 2, 1, -2]\noutput : list = [0, 12, 18, 36]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(add_n([4, 2, 1, -2],1),5),3)),-2)",
    "io_inp": [
      4,
      2,
      1,
      -2
    ],
    "io_out": [
      0,
      12,
      18,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(add_n(input,1),5),3)),-2)"
  },
  {
    "input": "input : list = [1, -4, -5, 5]\noutput : list = [56, 16]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(drop([1, -4, -5, 5],2),-5),1),4),-4)",
    "io_inp": [
      1,
      -4,
      -5,
      5
    ],
    "io_out": [
      56,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(drop(input,2),-5),1),4),-4)"
  },
  {
    "input": "input : list = [-5, 4, -5, -2, 3, -3]\noutput : list = [9, 36, 9]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(take([-5, 4, -5, -2, 3, -3],3),-4),4)),3)",
    "io_inp": [
      -5,
      4,
      -5,
      -2,
      3,
      -3
    ],
    "io_out": [
      9,
      36,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(take(input,3),-4),4)),3)"
  },
  {
    "input": "input : list = [5, -1, -4, -1, 4, -4]\noutput : list = [42, -12, -39, -12, 33, -39]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n([5, -1, -4, -1, 4, -4],-3),-1),27),-3)",
    "io_inp": [
      5,
      -1,
      -4,
      -1,
      4,
      -4
    ],
    "io_out": [
      42,
      -12,
      -39,
      -12,
      33,
      -39
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(input,-3),-1),27),-3)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc([-5, -5])",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n([-1, -3],-2)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -4, 1, 1, -1]\noutput : list = [2, 1, 1, -1, -4]",
    "output": "generated_output : list = take(take(sort_des([2, -4, 1, 1, -1]),21),9)",
    "io_inp": [
      2,
      -4,
      1,
      1,
      -1
    ],
    "io_out": [
      2,
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),21),9)"
  },
  {
    "input": "input : list = [2, 2, -2]\noutput : list = [1, 1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n([2, 2, -2],-1))))",
    "io_inp": [
      2,
      2,
      -2
    ],
    "io_out": [
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(input,-1))))"
  },
  {
    "input": "input : list = [5, -4, 0]\noutput : list = [-2, 2, 7]",
    "output": "generated_output : list = sub_n(sort_asc([5, -4, 0]),-2)",
    "io_inp": [
      5,
      -4,
      0
    ],
    "io_out": [
      -2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [4, -1, -1, 0]\noutput : list = [4, 0, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc([4, -1, -1, 0]))",
    "io_inp": [
      4,
      -1,
      -1,
      0
    ],
    "io_out": [
      4,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 0, -4, 2, 1]\noutput : list = [9, 5, 4, 3, 0]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(sort_asc([5, 0, -4, 2, 1]),5),-1)),51)",
    "io_inp": [
      5,
      0,
      -4,
      2,
      1
    ],
    "io_out": [
      9,
      5,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(sort_asc(input),5),-1)),51)"
  },
  {
    "input": "input : list = [2, 5, -2, 5, 5, -3]\noutput : list = [5, 5, 5, 2, -2, -3]",
    "output": "generated_output : list = sort_des([2, 5, -2, 5, 5, -3])",
    "io_inp": [
      2,
      5,
      -2,
      5,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      5,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(add_n([4, 5, 3],-2),6))))",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(add_n(input,-2),6))))"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_asc([-3, -4, 1]))),6))",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_asc(input))),6))"
  },
  {
    "input": "input : list = [-4, -5, 0]\noutput : list = [-10, -11, -6]",
    "output": "generated_output : list = take(sub_n(sub_n([-4, -5, 0],2),4),16)",
    "io_inp": [
      -4,
      -5,
      0
    ],
    "io_out": [
      -10,
      -11,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,2),4),16)"
  },
  {
    "input": "input : list = [0, -4, 1, 1]\noutput : list = [1, 9, -1, -1]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse([0, -4, 1, 1])),-2),1)",
    "io_inp": [
      0,
      -4,
      1,
      1
    ],
    "io_out": [
      1,
      9,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(input)),-2),1)"
  },
  {
    "input": "input : list = [4, 0, -3, -5, -4, -5]\noutput : list = [-6]",
    "output": "generated_output : list = drop(sub_n([4, 0, -3, -5, -4, -5],1),5)",
    "io_inp": [
      4,
      0,
      -3,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,1),5)"
  },
  {
    "input": "input : list = [-4, -3, 4, 2, 2, -3]\noutput : list = [-4, -3, -3, 2, 2, 4]",
    "output": "generated_output : list = reverse(take(sort_des(reverse([-4, -3, 4, 2, 2, -3])),38))",
    "io_inp": [
      -4,
      -3,
      4,
      2,
      2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(input)),38))"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [15, 15, 35]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n([-1, -1, -5],-2)))),-5)",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      15,
      15,
      35
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n(input,-2)))),-5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = take(sort_des([3, -4]),5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, 0, 5, -4, 1]\noutput : list = [9, 27, 72, -9, 36]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n([-2, 0, 5, -4, 1],3),21),3),3)",
    "io_inp": [
      -2,
      0,
      5,
      -4,
      1
    ],
    "io_out": [
      9,
      27,
      72,
      -9,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(input,3),21),3),3)"
  },
  {
    "input": "input : list = [4, -3, 1, 1, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(sort_des(drop(sub_n([4, -3, 1, 1, 0],5),3)),-3)",
    "io_inp": [
      4,
      -3,
      1,
      1,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(sub_n(input,5),3)),-3)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-10, -8, -7]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(sort_asc([-3, -5, -2]),-2),-3)))",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(sort_asc(input),-2),-3)))"
  },
  {
    "input": "input : list = [0, -1, 5, -1]\noutput : list = [0, 3, -15, 3]",
    "output": "generated_output : list = mul_n([0, -1, 5, -1],-3)",
    "io_inp": [
      0,
      -1,
      5,
      -1
    ],
    "io_out": [
      0,
      3,
      -15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 1, 2, 0, -4]\noutput : list = [-3, -4, -5, -9, -9]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(reverse([-4, 1, 2, 0, -4]),-5),24)))",
    "io_inp": [
      -4,
      1,
      2,
      0,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(reverse(input),-5),24)))"
  },
  {
    "input": "input : list = [2, 1, -3, 3, -5, 1]\noutput : list = [3, 2, -2, 4, -4, 2]",
    "output": "generated_output : list = add_n([2, 1, -3, 3, -5, 1],1)",
    "io_inp": [
      2,
      1,
      -3,
      3,
      -5,
      1
    ],
    "io_out": [
      3,
      2,
      -2,
      4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(take(take(drop(drop([-3, -5, 5],1),1),23),32),-3)",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(take(drop(drop(input,1),1),23),32),-3)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(reverse(take(reverse(reverse([-5, -1])),7)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(reverse(input)),7)))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des([0, 5])",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3, -4, 0, 4, 0]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(take([-3, -3, -4, 0, 4, 0],2))),-4))",
    "io_inp": [
      -3,
      -3,
      -4,
      0,
      4,
      0
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(take(input,2))),-4))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc([0, -2])",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [8, 11, -10]",
    "output": "generated_output : list = add_n(mul_n([-2, -3, 4],-3),2)",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      8,
      11,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),2)"
  },
  {
    "input": "input : list = [2, -2, 5, 1, 0, 0]\noutput : list = [15, 27, 6, 18, 21, 21]",
    "output": "generated_output : list = mul_n(reverse(add_n(reverse(sub_n([2, -2, 5, 1, 0, 0],4)),-3)),-3)",
    "io_inp": [
      2,
      -2,
      5,
      1,
      0,
      0
    ],
    "io_out": [
      15,
      27,
      6,
      18,
      21,
      21
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(reverse(sub_n(input,4)),-3)),-3)"
  },
  {
    "input": "input : list = [-2, 0, 3, 5, 0]\noutput : list = [-36, -18, -18, 9, 27]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(reverse([-2, 0, 3, 5, 0]),-2),3)),3)",
    "io_inp": [
      -2,
      0,
      3,
      5,
      0
    ],
    "io_out": [
      -36,
      -18,
      -18,
      9,
      27
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(reverse(input),-2),3)),3)"
  },
  {
    "input": "input : list = [2, 0, -5, 2]\noutput : list = [-6, 0, 15, -6]",
    "output": "generated_output : list = mul_n([2, 0, -5, 2],-3)",
    "io_inp": [
      2,
      0,
      -5,
      2
    ],
    "io_out": [
      -6,
      0,
      15,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 5, -2, 3]\noutput : list = [26, -54, 16, -34]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(mul_n([-3, 5, -2, 3],2),-5),-5),1),1)",
    "io_inp": [
      -3,
      5,
      -2,
      3
    ],
    "io_out": [
      26,
      -54,
      16,
      -34
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(mul_n(input,2),-5),-5),1),1)"
  },
  {
    "input": "input : list = [-5, 5, 2, 4, 0, -3]\noutput : list = [7, 5, 3, 0]",
    "output": "generated_output : list = sort_des(add_n(sub_n(drop(add_n([-5, 5, 2, 4, 0, -3],4),2),-1),-2))",
    "io_inp": [
      -5,
      5,
      2,
      4,
      0,
      -3
    ],
    "io_out": [
      7,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(drop(add_n(input,4),2),-1),-2))"
  },
  {
    "input": "input : list = [-3, -2, -3, -4, 3, 2]\noutput : list = [8, 4, -12, -16, -16, -20]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(mul_n([-3, -2, -3, -4, 3, 2],4)),-4)))",
    "io_inp": [
      -3,
      -2,
      -3,
      -4,
      3,
      2
    ],
    "io_out": [
      8,
      4,
      -12,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(mul_n(input,4)),-4)))"
  },
  {
    "input": "input : list = [-4, -2, 4, -3, 0]\noutput : list = [-8, -6, 0, -7, -4]",
    "output": "generated_output : list = add_n(add_n([-4, -2, 4, -3, 0],-1),-3)",
    "io_inp": [
      -4,
      -2,
      4,
      -3,
      0
    ],
    "io_out": [
      -8,
      -6,
      0,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),-3)"
  },
  {
    "input": "input : list = [-2, -2, -5, -1, -4]\noutput : list = [1, 1, -2, 2, -1]",
    "output": "generated_output : list = add_n([-2, -2, -5, -1, -4],3)",
    "io_inp": [
      -2,
      -2,
      -5,
      -1,
      -4
    ],
    "io_out": [
      1,
      1,
      -2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, -5, -1, -5]\noutput : list = [60, 72, 24, 72]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sub_n([-4, -5, -1, -5],1),-3),1),4),51)",
    "io_inp": [
      -4,
      -5,
      -1,
      -5
    ],
    "io_out": [
      60,
      72,
      24,
      72
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sub_n(input,1),-3),1),4),51)"
  },
  {
    "input": "input : list = [1, 3, -5, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(take([1, 3, -5, 4],1),-2))),1)",
    "io_inp": [
      1,
      3,
      -5,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(take(input,1),-2))),1)"
  },
  {
    "input": "input : list = [2, -5, -1, -1, -1]\noutput : list = [-7, -3, -3, -3]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(drop([2, -5, -1, -1, -1],1))),19),-2)",
    "io_inp": [
      2,
      -5,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -7,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(drop(input,1))),19),-2)"
  },
  {
    "input": "input : list = [0, 4, 2, -5]\noutput : list = [-8, -4]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(reverse([0, 4, 2, -5]),-2))),2)",
    "io_inp": [
      0,
      4,
      2,
      -5
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(reverse(input),-2))),2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [9, 7]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(reverse([4, 2])),10),5))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(reverse(input)),10),5))"
  },
  {
    "input": "input : list = [-5, -4, 0]\noutput : list = [-5, -4, 0]",
    "output": "generated_output : list = sort_asc([-5, -4, 0])",
    "io_inp": [
      -5,
      -4,
      0
    ],
    "io_out": [
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -2, 2, 1]\noutput : list = [20, -10, -20, -20, -30]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n([2, 3, -2, 2, 1],-2))),5)",
    "io_inp": [
      2,
      3,
      -2,
      2,
      1
    ],
    "io_out": [
      20,
      -10,
      -20,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(input,-2))),5)"
  },
  {
    "input": "input : list = [1, 0, -1, 2, -4]\noutput : list = [-7, 11, 2, 5, 8]",
    "output": "generated_output : list = sub_n(take(take(mul_n(reverse([1, 0, -1, 2, -4]),3),27),39),-5)",
    "io_inp": [
      1,
      0,
      -1,
      2,
      -4
    ],
    "io_out": [
      -7,
      11,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(reverse(input),3),27),39),-5)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-13, -13]",
    "output": "generated_output : list = sub_n(add_n(take(reverse([-5, -5]),2),-5),3)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(input),2),-5),3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n(sort_asc(add_n([-2, 1],-4)),1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,-4)),1)"
  },
  {
    "input": "input : list = [-4, 3, 0, -2, 3]\noutput : list = [3, 3, 0, -2, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(reverse(sort_asc([-4, 3, 0, -2, 3])))),19)",
    "io_inp": [
      -4,
      3,
      0,
      -2,
      3
    ],
    "io_out": [
      3,
      3,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(reverse(sort_asc(input)))),19)"
  },
  {
    "input": "input : list = [-1, 0, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 0, -2],1)",
    "io_inp": [
      -1,
      0,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 1, -4]\noutput : list = [-4, 1, 0]",
    "output": "generated_output : list = reverse([0, 1, -4])",
    "io_inp": [
      0,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2, -4, 0, -2]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n(take(take(add_n(drop([-4, 2, -4, 0, -2],3),-3),28),40),4)",
    "io_inp": [
      -4,
      2,
      -4,
      0,
      -2
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(drop(input,3),-3),28),40),4)"
  },
  {
    "input": "input : list = [1, -5, -3, -2, -4]\noutput : list = [6, 3, 2, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sub_n([1, -5, -3, -2, -4],-2),1),1),-5))",
    "io_inp": [
      1,
      -5,
      -3,
      -2,
      -4
    ],
    "io_out": [
      6,
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sub_n(input,-2),1),1),-5))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take(sort_asc([-4, 4]),13)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),13)"
  },
  {
    "input": "input : list = [0, -4, -2, 0]\noutput : list = [4, 0, 2, 4]",
    "output": "generated_output : list = add_n([0, -4, -2, 0],4)",
    "io_inp": [
      0,
      -4,
      -2,
      0
    ],
    "io_out": [
      4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [1, 5]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(sort_asc([-2, 2]),3))),37)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(sort_asc(input),3))),37)"
  },
  {
    "input": "input : list = [2, -1, 5, 0, 3]\noutput : list = [-1, 0, 2, 3, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(reverse([2, -1, 5, 0, 3])))),49)",
    "io_inp": [
      2,
      -1,
      5,
      0,
      3
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(reverse(input)))),49)"
  },
  {
    "input": "input : list = [-3, -3, 3, 4]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = sub_n(drop(reverse([-3, -3, 3, 4]),1),-1)",
    "io_inp": [
      -3,
      -3,
      3,
      4
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(input),1),-1)"
  },
  {
    "input": "input : list = [-2, 0, 5, 3]\noutput : list = [-2, 0, 3, 5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n([-2, 0, 5, 3],-2),5),3))",
    "io_inp": [
      -2,
      0,
      5,
      3
    ],
    "io_out": [
      -2,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(input,-2),5),3))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [2, 2]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(reverse([-3, -3])),2)),-2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(reverse(input)),2)),-2)"
  },
  {
    "input": "input : list = [-1, 2, 0, -3, -1]\noutput : list = [11, 5, 9, 15, 11]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n([-1, 2, 0, -3, -1],-5),-2),-3),-2)",
    "io_inp": [
      -1,
      2,
      0,
      -3,
      -1
    ],
    "io_out": [
      11,
      5,
      9,
      15,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(input,-5),-2),-3),-2)"
  },
  {
    "input": "input : list = [1, 1, 4, -4]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(take([1, 1, 4, -4],2),-4))))",
    "io_inp": [
      1,
      1,
      4,
      -4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(take(input,2),-4))))"
  },
  {
    "input": "input : list = [-5, 2, -4, -2, -3, 5]\noutput : list = [80, 64, 48, 32, -32, -80]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(reverse([-5, 2, -4, -2, -3, 5]),4),-4)))",
    "io_inp": [
      -5,
      2,
      -4,
      -2,
      -3,
      5
    ],
    "io_out": [
      80,
      64,
      48,
      32,
      -32,
      -80
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(reverse(input),4),-4)))"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(take([-2, -4, 5],1))",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [-3, 0, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(sort_des([0, -3, 5])))))",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 5, 2, 2]\noutput : list = [-26, -11, -11, 24]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(sort_des([-5, 5, 2, 2])),-5)),-1)",
    "io_inp": [
      -5,
      5,
      2,
      2
    ],
    "io_out": [
      -26,
      -11,
      -11,
      24
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(sort_des(input)),-5)),-1)"
  },
  {
    "input": "input : list = [-4, -5, 0, 3]\noutput : list = [-3, -4, 1, 4]",
    "output": "generated_output : list = add_n([-4, -5, 0, 3],1)",
    "io_inp": [
      -4,
      -5,
      0,
      3
    ],
    "io_out": [
      -3,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, 5, 5, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take([-1, 5, 5, -2],1)))))",
    "io_inp": [
      -1,
      5,
      5,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(sub_n([4, -5, -2],1),1))))",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(sub_n(input,1),1))))"
  },
  {
    "input": "input : list = [0, 0, -1, 5, 3]\noutput : list = [8, 6, 3, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(drop([0, 0, -1, 5, 3],1),5)),1),1)",
    "io_inp": [
      0,
      0,
      -1,
      5,
      3
    ],
    "io_out": [
      8,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(drop(input,1),5)),1),1)"
  },
  {
    "input": "input : list = [-3, -5, 4, 1, 5, 0]\noutput : list = [5, 3, 0, -1, -4, -5]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(sort_des([-3, -5, 4, 1, 5, 0])),22),-1))",
    "io_inp": [
      -3,
      -5,
      4,
      1,
      5,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(sort_des(input)),22),-1))"
  },
  {
    "input": "input : list = [5, -2, 0, 2, -5, 4]\noutput : list = [-4, -2, -9, 0]",
    "output": "generated_output : list = take(take(sub_n(drop([5, -2, 0, 2, -5, 4],2),4),25),15)",
    "io_inp": [
      5,
      -2,
      0,
      2,
      -5,
      4
    ],
    "io_out": [
      -4,
      -2,
      -9,
      0
    ],
    "output_masked": "generated_output : list = take(take(sub_n(drop(input,2),4),25),15)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(reverse([-4, -1])),12)))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(reverse(input)),12)))"
  },
  {
    "input": "input : list = [0, -5, -3]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = sort_des([0, -5, -3])",
    "io_inp": [
      0,
      -5,
      -3
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [2, 0, -3]",
    "output": "generated_output : list = sort_des(sort_asc([0, -3, 2]))",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -2, -1, -1, -4, 5]\noutput : list = [-24, -28, -24, -24, -36, 0]",
    "output": "generated_output : list = mul_n(reverse(sub_n(reverse(mul_n([-1, -2, -1, -1, -4, 5],-1)),-5)),-4)",
    "io_inp": [
      -1,
      -2,
      -1,
      -1,
      -4,
      5
    ],
    "io_out": [
      -24,
      -28,
      -24,
      -24,
      -36,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(reverse(mul_n(input,-1)),-5)),-4)"
  },
  {
    "input": "input : list = [0, -2, -3, 1, 5]\noutput : list = [4, -4, -12]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(drop([0, -2, -3, 1, 5],2),22),3),2))",
    "io_inp": [
      0,
      -2,
      -3,
      1,
      5
    ],
    "io_out": [
      4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(drop(input,2),22),3),2))"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [0, -4, -4]",
    "output": "generated_output : list = sub_n([4, 0, 0],4)",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [3, 0]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(add_n([2, 5],-2)))),23)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(add_n(input,-2)))),23)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [50, 30]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(sub_n([3, 1],-1),6),-1),-2),-5)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      50,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(sub_n(input,-1),6),-1),-2),-5)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-2, -2],2),5))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,2),5))"
  },
  {
    "input": "input : list = [2, 4, 1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(drop([2, 4, 1, 0],2),4))))",
    "io_inp": [
      2,
      4,
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(drop(input,2),4))))"
  },
  {
    "input": "input : list = [2, 1, 5, -2]\noutput : list = [-2, 5, 1]",
    "output": "generated_output : list = reverse(take(drop([2, 1, 5, -2],1),11))",
    "io_inp": [
      2,
      1,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),11))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [12, 9]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_asc([4, 3])))),3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [-4, -2, 3, 4, -5, 1]\noutput : list = [0, -6, 3, 2, -3, -5]",
    "output": "generated_output : list = reverse(add_n([-4, -2, 3, 4, -5, 1],-1))",
    "io_inp": [
      -4,
      -2,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      -6,
      3,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [19, 14]",
    "output": "generated_output : list = add_n(mul_n([-4, -3],-5),-1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      19,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [7, 11]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(sort_des([-1, -2]),4),-4),-3))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      7,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(sort_des(input),4),-4),-3))"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [15, 0, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse([1, 1, -2]),1),-5)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      15,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),1),-5)"
  },
  {
    "input": "input : list = [-5, 0, 1, 3]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 0, 1, 3],1)",
    "io_inp": [
      -5,
      0,
      1,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -2, -4, -1]\noutput : list = [5, 3, 1, 4]",
    "output": "generated_output : list = sub_n([0, -2, -4, -1],-5)",
    "io_inp": [
      0,
      -2,
      -4,
      -1
    ],
    "io_out": [
      5,
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, 0, 3, -4]\noutput : list = [-20, -8, -8, 1]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc([0, 0, 3, -4]),3),4),4)",
    "io_inp": [
      0,
      0,
      3,
      -4
    ],
    "io_out": [
      -20,
      -8,
      -8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(input),3),4),4)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(reverse([-3, 2]))),26))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(reverse(input))),26))"
  },
  {
    "input": "input : list = [5, -5, 4, -5, -4, -5]\noutput : list = [79, 79, 79, 64, -56, -71]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n([5, -5, 4, -5, -4, -5],-3),5)),-4),33)",
    "io_inp": [
      5,
      -5,
      4,
      -5,
      -4,
      -5
    ],
    "io_out": [
      79,
      79,
      79,
      64,
      -56,
      -71
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n(input,-3),5)),-4),33)"
  },
  {
    "input": "input : list = [-4, 2, 1, 4, 5]\noutput : list = [7, 6, 3, 4, -2]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(sub_n([-4, 2, 1, 4, 5],1),1),30),-2))",
    "io_inp": [
      -4,
      2,
      1,
      4,
      5
    ],
    "io_out": [
      7,
      6,
      3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(sub_n(input,1),1),30),-2))"
  },
  {
    "input": "input : list = [2, 3, 2, 1, 3, -5]\noutput : list = [-5, 1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(drop([2, 3, 2, 1, 3, -5],1))",
    "io_inp": [
      2,
      3,
      2,
      1,
      3,
      -5
    ],
    "io_out": [
      -5,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 2, -1, 3, -4, -1]\noutput : list = [3, -4, -1]",
    "output": "generated_output : list = take(take(drop([-1, 2, -1, 3, -4, -1],3),20),25)",
    "io_inp": [
      -1,
      2,
      -1,
      3,
      -4,
      -1
    ],
    "io_out": [
      3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(drop(input,3),20),25)"
  },
  {
    "input": "input : list = [1, 1, -1, -1]\noutput : list = [2, 2, 8, 8]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(mul_n([1, 1, -1, -1],-3),3),4),8),4)",
    "io_inp": [
      1,
      1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(mul_n(input,-3),3),4),8),4)"
  },
  {
    "input": "input : list = [0, 4, 4, 4, -3]\noutput : list = [6, 6, 6, 2, -1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(sort_des([0, 4, 4, 4, -3]))),3),-5)",
    "io_inp": [
      0,
      4,
      4,
      4,
      -3
    ],
    "io_out": [
      6,
      6,
      6,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(sort_des(input))),3),-5)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [8, -1]",
    "output": "generated_output : list = sub_n([5, -4],-3)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 1, 2, 0, -5, -4]\noutput : list = [-8, -2, -1]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(take([-5, 1, 2, 0, -5, -4],3),-3)),27))",
    "io_inp": [
      -5,
      1,
      2,
      0,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(take(input,3),-3)),27))"
  },
  {
    "input": "input : list = [4, 0, 0, 4, -1, -3]\noutput : list = [0, -8, -8, 0, -10, -14]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([4, 0, 0, 4, -1, -3],2),2),4)",
    "io_inp": [
      4,
      0,
      0,
      4,
      -1,
      -3
    ],
    "io_out": [
      0,
      -8,
      -8,
      0,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,2),2),4)"
  },
  {
    "input": "input : list = [-5, -3, 2, 1, 2]\noutput : list = [-13, -11, -7, -6, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([-5, -3, 2, 1, 2]),4),4)",
    "io_inp": [
      -5,
      -3,
      2,
      1,
      2
    ],
    "io_out": [
      -13,
      -11,
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),4),4)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = reverse([-2, 3])",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, 1]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_des([1, 5])),17)),23)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_des(input)),17)),23)"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [21, 15, -3]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(sort_des([5, 3, -3]),16),-2)),3)",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      21,
      15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(sort_des(input),16),-2)),3)"
  },
  {
    "input": "input : list = [1, -5, 1, 3, -5]\noutput : list = [-15, 3, 3]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(take([1, -5, 1, 3, -5],3),3)),5),48)",
    "io_inp": [
      1,
      -5,
      1,
      3,
      -5
    ],
    "io_out": [
      -15,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(take(input,3),3)),5),48)"
  },
  {
    "input": "input : list = [-5, 2, -4, -4, -5, -2]\noutput : list = [-3, 4, -2, -2, -3, 0]",
    "output": "generated_output : list = add_n(sub_n(reverse(reverse(add_n([-5, 2, -4, -4, -5, -2],1))),1),2)",
    "io_inp": [
      -5,
      2,
      -4,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -3,
      4,
      -2,
      -2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(reverse(add_n(input,1))),1),2)"
  },
  {
    "input": "input : list = [-3, 1, -3, 5, 3]\noutput : list = [14, 10, 6, -2, -2]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(sort_asc([-3, 1, -3, 5, 3]),2)),1),3)",
    "io_inp": [
      -3,
      1,
      -3,
      5,
      3
    ],
    "io_out": [
      14,
      10,
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(sort_asc(input),2)),1),3)"
  },
  {
    "input": "input : list = [-2, 4, 4, 1]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(take([-2, 4, 4, 1],1),16))",
    "io_inp": [
      -2,
      4,
      4,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,1),16))"
  },
  {
    "input": "input : list = [0, 4, 1, 1]\noutput : list = [10]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(sub_n([0, 4, 1, 1],-4),1),1),2))",
    "io_inp": [
      0,
      4,
      1,
      1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(sub_n(input,-4),1),1),2))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, 7]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(sort_asc([-2, 1])),-3),2),3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(sort_asc(input)),-3),2),3)"
  },
  {
    "input": "input : list = [4, -3, 1, -4, 0]\noutput : list = [205, 30, 130, 5, 105]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sub_n([4, -3, 1, -4, 0],-4),5),5),-2),-3)",
    "io_inp": [
      4,
      -3,
      1,
      -4,
      0
    ],
    "io_out": [
      205,
      30,
      130,
      5,
      105
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sub_n(input,-4),5),5),-2),-3)"
  },
  {
    "input": "input : list = [2, 1, -1, -4]\noutput : list = [-2, -1, 1, 4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(sort_asc([2, 1, -1, -4]),1)),1),-1)",
    "io_inp": [
      2,
      1,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(sort_asc(input),1)),1),-1)"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [-5, -5, 3]",
    "output": "generated_output : list = sort_asc([-5, 3, -5])",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, 3, -4, 2, 4]\noutput : list = [-1, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(take([-1, -3, 3, -4, 2, 4],3)),21),4))",
    "io_inp": [
      -1,
      -3,
      3,
      -4,
      2,
      4
    ],
    "io_out": [
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(take(input,3)),21),4))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-4, -7]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(reverse([4, 3]),-3))),5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(reverse(input),-3))),5)"
  },
  {
    "input": "input : list = [2, -4, 1, 5, -3, -1]\noutput : list = [0, 6, 8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(drop([2, -4, 1, 5, -3, -1],3),-5),-1))",
    "io_inp": [
      2,
      -4,
      1,
      5,
      -3,
      -1
    ],
    "io_out": [
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(drop(input,3),-5),-1))"
  },
  {
    "input": "input : list = [3, -4, 4, 4, -2, -5]\noutput : list = [25, 25, -5, -15, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop([3, -4, 4, 4, -2, -5],1),-3)),2),5)",
    "io_inp": [
      3,
      -4,
      4,
      4,
      -2,
      -5
    ],
    "io_out": [
      25,
      25,
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop(input,1),-3)),2),5)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-15, -25]",
    "output": "generated_output : list = mul_n(reverse([5, 3]),-5)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-12, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(sort_des([-3, -2])))),4)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(sort_des(input)))),4)"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = sort_asc([-3, -4, -5])",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 8]",
    "output": "generated_output : list = add_n(take(take(reverse(sort_des([1, 4])),8),5),4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(sort_des(input)),8),5),4)"
  },
  {
    "input": "input : list = [-3, 1, 0, 4]\noutput : list = [-14, -2, 2, 14]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse([-3, 1, 0, 4]),4),2),5))",
    "io_inp": [
      -3,
      1,
      0,
      4
    ],
    "io_out": [
      -14,
      -2,
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse(input),4),2),5))"
  },
  {
    "input": "input : list = [-2, -4, -4, -2, 1]\noutput : list = [3]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(take([-2, -4, -4, -2, 1],1)),-4),39),1)",
    "io_inp": [
      -2,
      -4,
      -4,
      -2,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(take(input,1)),-4),39),1)"
  },
  {
    "input": "input : list = [-4, 5, 5, -2, -3]\noutput : list = [17, 12, 7, -28, -28]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(mul_n([-4, 5, 5, -2, -3],1),-1),5)),3)",
    "io_inp": [
      -4,
      5,
      5,
      -2,
      -3
    ],
    "io_out": [
      17,
      12,
      7,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(mul_n(input,1),-1),5)),3)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [6, 5]",
    "output": "generated_output : list = add_n(add_n(sort_des([4, 5]),-3),4)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-3),4)"
  },
  {
    "input": "input : list = [-4, -2, -2, 2, 5, -3]\noutput : list = [12, 9, 5, 5, 4, 3]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(reverse([-4, -2, -2, 2, 5, -3]),2)),5))",
    "io_inp": [
      -4,
      -2,
      -2,
      2,
      5,
      -3
    ],
    "io_out": [
      12,
      9,
      5,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(reverse(input),2)),5))"
  },
  {
    "input": "input : list = [-3, -1, -1, 0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = drop([-3, -1, -1, 0, -2],3)",
    "io_inp": [
      -3,
      -1,
      -1,
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, -4, 2, 0]\noutput : list = [2, 1, 0, -4]",
    "output": "generated_output : list = sort_des([1, -4, 2, 0])",
    "io_inp": [
      1,
      -4,
      2,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, 2, 2, 0, 3]\noutput : list = [3, 0, 2, 2, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, 2, 2, 0, 3])",
    "io_inp": [
      -2,
      -4,
      2,
      2,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      2,
      2,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-1, 0, 8]",
    "output": "generated_output : list = sub_n([-4, -3, 5],-3)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -1,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [-12]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(take([-3, 2, 5],1)),18),4))",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(take(input,1)),18),4))"
  },
  {
    "input": "input : list = [5, 2, 3, 2, -5, 2]\noutput : list = [4, 3, 3, 3, -4]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(drop([5, 2, 3, 2, -5, 2],1),1),27)),1)",
    "io_inp": [
      5,
      2,
      3,
      2,
      -5,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(drop(input,1),1),27)),1)"
  },
  {
    "input": "input : list = [4, -4, -1, -5, 2]\noutput : list = [-60, -30, 15, 60, 75]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(mul_n([4, -4, -1, -5, 2],-5)),1)),3)",
    "io_inp": [
      4,
      -4,
      -1,
      -5,
      2
    ],
    "io_out": [
      -60,
      -30,
      15,
      60,
      75
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(mul_n(input,-5)),1)),3)"
  },
  {
    "input": "input : list = [-4, -4, -1, 0]\noutput : list = [20, 20, 8, 4]",
    "output": "generated_output : list = take(take(sub_n(mul_n(sort_asc([-4, -4, -1, 0]),-4),-4),19),10)",
    "io_inp": [
      -4,
      -4,
      -1,
      0
    ],
    "io_out": [
      20,
      20,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(sort_asc(input),-4),-4),19),10)"
  },
  {
    "input": "input : list = [4, 1, -5, -1, 3, -1]\noutput : list = [-10, -6, -6, -4, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n([4, 1, -5, -1, 3, -1],-3)),2)))",
    "io_inp": [
      4,
      1,
      -5,
      -1,
      3,
      -1
    ],
    "io_out": [
      -10,
      -6,
      -6,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n(input,-3)),2)))"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(take(drop([1, -1, -1],1),15))",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),15))"
  },
  {
    "input": "input : list = [1, 0, -3]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = sort_des(add_n([1, 0, -3],2))",
    "io_inp": [
      1,
      0,
      -3
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [1, 1, 4, -2]\noutput : list = [-5, -5, -20, 10]",
    "output": "generated_output : list = mul_n([1, 1, 4, -2],-5)",
    "io_inp": [
      1,
      1,
      4,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-20]",
    "output": "generated_output : list = take(mul_n(take(drop([-1, 5, 4],1),1),-4),13)",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(take(drop(input,1),1),-4),13)"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 5, 3],1)",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 5, -2, 5, 4, 0]\noutput : list = [0, 12, 15, -6, 15, 15]",
    "output": "generated_output : list = reverse(mul_n([5, 5, -2, 5, 4, 0],3))",
    "io_inp": [
      5,
      5,
      -2,
      5,
      4,
      0
    ],
    "io_out": [
      0,
      12,
      15,
      -6,
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = add_n([-1, 1, 2],-1)",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 5, 2, 1, 2]\noutput : list = [22, 16, 16, 14, 10]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(add_n([-1, 5, 2, 1, 2],5))),2),-2)",
    "io_inp": [
      -1,
      5,
      2,
      1,
      2
    ],
    "io_out": [
      22,
      16,
      16,
      14,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(add_n(input,5))),2),-2)"
  },
  {
    "input": "input : list = [-3, 4, 5, 2]\noutput : list = [-3, 2, 4, 5]",
    "output": "generated_output : list = reverse(add_n(take(add_n(sort_des([-3, 4, 5, 2]),-2),7),2))",
    "io_inp": [
      -3,
      4,
      5,
      2
    ],
    "io_out": [
      -3,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(sort_des(input),-2),7),2))"
  },
  {
    "input": "input : list = [2, -3, -4, 5]\noutput : list = [-15, -6, 9, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([2, -3, -4, 5]),-3))",
    "io_inp": [
      2,
      -3,
      -4,
      5
    ],
    "io_out": [
      -15,
      -6,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [-3, 5, -3, -5, 3]\noutput : list = [4, 20, 4, 0, 16]",
    "output": "generated_output : list = mul_n(sub_n([-3, 5, -3, -5, 3],-5),2)",
    "io_inp": [
      -3,
      5,
      -3,
      -5,
      3
    ],
    "io_out": [
      4,
      20,
      4,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [0, -1, -2, 5, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -1, -2, 5, -2],1)",
    "io_inp": [
      0,
      -1,
      -2,
      5,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -4, 0, 4]\noutput : list = [6, -1, 3, 7]",
    "output": "generated_output : list = sub_n([3, -4, 0, 4],-3)",
    "io_inp": [
      3,
      -4,
      0,
      4
    ],
    "io_out": [
      6,
      -1,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -1, -3]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = sort_des([-2, -1, -3])",
    "io_inp": [
      -2,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, 5, -4]\noutput : list = [7, 7, 6, -2]",
    "output": "generated_output : list = take(add_n(reverse(reverse(sort_des([4, 5, 5, -4]))),2),24)",
    "io_inp": [
      4,
      5,
      5,
      -4
    ],
    "io_out": [
      7,
      7,
      6,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(sort_des(input))),2),24)"
  },
  {
    "input": "input : list = [4, -5, -4, -1, 3]\noutput : list = [6, 5, 1, -2, -3]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(reverse([4, -5, -4, -1, 3])),2),40))",
    "io_inp": [
      4,
      -5,
      -4,
      -1,
      3
    ],
    "io_out": [
      6,
      5,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(reverse(input)),2),40))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(drop(reverse([-1, -3]),1),-2)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(input),1),-2)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [0, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 0, 5])",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, -2, -1, -2, -5]\noutput : list = [5, -1, -2, -2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([5, -4, -2, -1, -2, -5]))",
    "io_inp": [
      5,
      -4,
      -2,
      -1,
      -2,
      -5
    ],
    "io_out": [
      5,
      -1,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, -4, 2, 2, 4, 2]\noutput : list = [6, 6, 0, 3]",
    "output": "generated_output : list = reverse(reverse(add_n(drop(reverse([-1, -4, 2, 2, 4, 2]),2),4)))",
    "io_inp": [
      -1,
      -4,
      2,
      2,
      4,
      2
    ],
    "io_out": [
      6,
      6,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(drop(reverse(input),2),4)))"
  },
  {
    "input": "input : list = [-5, -4, 4, 3, 1, -3]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(take(drop([-5, -4, 4, 3, 1, -3],4),5)),-2),4)",
    "io_inp": [
      -5,
      -4,
      4,
      3,
      1,
      -3
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(take(drop(input,4),5)),-2),4)"
  },
  {
    "input": "input : list = [-4, -4, 3, 1, 0, 2]\noutput : list = [-7, -7]",
    "output": "generated_output : list = take(take(sort_des(add_n(take([-4, -4, 3, 1, 0, 2],2),-3)),9),8)",
    "io_inp": [
      -4,
      -4,
      3,
      1,
      0,
      2
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(take(input,2),-3)),9),8)"
  },
  {
    "input": "input : list = [2, 5, 2]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(add_n(take([2, 5, 2],1),-4),-2)",
    "io_inp": [
      2,
      5,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),-4),-2)"
  },
  {
    "input": "input : list = [-4, -4, 2, -4, 0]\noutput : list = [-16, -16, -16, 0, 8]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(sort_asc([-4, -4, 2, -4, 0]),4),31),18))",
    "io_inp": [
      -4,
      -4,
      2,
      -4,
      0
    ],
    "io_out": [
      -16,
      -16,
      -16,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(sort_asc(input),4),31),18))"
  },
  {
    "input": "input : list = [0, -4, -5, -5, 0, 2]\noutput : list = [9, -1, -26, -26]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(drop([0, -4, -5, -5, 0, 2],2),5),24)),-1)",
    "io_inp": [
      0,
      -4,
      -5,
      -5,
      0,
      2
    ],
    "io_out": [
      9,
      -1,
      -26,
      -26
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(drop(input,2),5),24)),-1)"
  },
  {
    "input": "input : list = [-1, -2, 5, 4, -5, -4]\noutput : list = [-5, -4, -2, -1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_des([-1, -2, 5, 4, -5, -4])))))",
    "io_inp": [
      -1,
      -2,
      5,
      4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, 3, 0, -2]\noutput : list = [-3, 0, -3, -5]",
    "output": "generated_output : list = add_n([0, 3, 0, -2],-3)",
    "io_inp": [
      0,
      3,
      0,
      -2
    ],
    "io_out": [
      -3,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -4, 5, 5, -1, -3]\noutput : list = [-2, -1, -1, 1, 7, 7]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_des([-3, -4, 5, 5, -1, -3])),12),-2))",
    "io_inp": [
      -3,
      -4,
      5,
      5,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_des(input)),12),-2))"
  },
  {
    "input": "input : list = [-3, 2, -5, 4]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = sort_des(take(take(sort_des(drop([-3, 2, -5, 4],1)),5),31))",
    "io_inp": [
      -3,
      2,
      -5,
      4
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(drop(input,1)),5),31))"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [6, 4, 1]",
    "output": "generated_output : list = reverse(take(add_n([0, 3, 5],1),12))",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,1),12))"
  },
  {
    "input": "input : list = [-4, 1, 4, 4]\noutput : list = [12, -8, -20, -20]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sub_n([-4, 1, 4, 4],-1)))),-4)",
    "io_inp": [
      -4,
      1,
      4,
      4
    ],
    "io_out": [
      12,
      -8,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sub_n(input,-1)))),-4)"
  },
  {
    "input": "input : list = [2, 5, -1, 4]\noutput : list = [60, 48, 24, -12]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(mul_n([2, 5, -1, 4],3),4))),13)",
    "io_inp": [
      2,
      5,
      -1,
      4
    ],
    "io_out": [
      60,
      48,
      24,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(mul_n(input,3),4))),13)"
  },
  {
    "input": "input : list = [-3, 4, 3, 2, 5, -4]\noutput : list = [2, 1, 0, -1, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(reverse([-3, 4, 3, 2, 5, -4])),-2),5))",
    "io_inp": [
      -3,
      4,
      3,
      2,
      5,
      -4
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(reverse(input)),-2),5))"
  },
  {
    "input": "input : list = [4, -1, 5]\noutput : list = [4, 9, 10]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(sort_asc([4, -1, 5]))),5))",
    "io_inp": [
      4,
      -1,
      5
    ],
    "io_out": [
      4,
      9,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-3, 0, -2, -1]\noutput : list = [1, 2, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_asc([-3, 0, -2, -1]),-4))))",
    "io_inp": [
      -3,
      0,
      -2,
      -1
    ],
    "io_out": [
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [1, -1, -5, -5, -3]\noutput : list = [-5, -5, -3, -1, 1]",
    "output": "generated_output : list = take(sort_asc([1, -1, -5, -5, -3]),21)",
    "io_inp": [
      1,
      -1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),21)"
  },
  {
    "input": "input : list = [-3, -2, -3]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = take(add_n(sort_asc(take(sort_des([-3, -2, -3]),14)),3),38)",
    "io_inp": [
      -3,
      -2,
      -3
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(sort_des(input),14)),3),38)"
  },
  {
    "input": "input : list = [4, -4, -5, 3, 3, 5]\noutput : list = [-4, 4, 4, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(drop([4, -4, -5, 3, 3, 5],2)),-1))",
    "io_inp": [
      4,
      -4,
      -5,
      3,
      3,
      5
    ],
    "io_out": [
      -4,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(drop(input,2)),-1))"
  },
  {
    "input": "input : list = [1, -1, 3, -3, 3, -4]\noutput : list = [-12, -5, -11, -5, -9, -7]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(add_n([1, -1, 3, -3, 3, -4],-3)),5)))",
    "io_inp": [
      1,
      -1,
      3,
      -3,
      3,
      -4
    ],
    "io_out": [
      -12,
      -5,
      -11,
      -5,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(add_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [0, 4, 2, -4]\noutput : list = [-7, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(drop([0, 4, 2, -4],2))),3))",
    "io_inp": [
      0,
      4,
      2,
      -4
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(drop(input,2))),3))"
  },
  {
    "input": "input : list = [-5, 3, -5, -2]\noutput : list = [5, 5, 2, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des([-5, 3, -5, -2]))),-1)",
    "io_inp": [
      -5,
      3,
      -5,
      -2
    ],
    "io_out": [
      5,
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(input))),-1)"
  },
  {
    "input": "input : list = [-4, 0, 5, 5, -4, -4]\noutput : list = [-4, -4, -13, -13, -8, -4]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(add_n([-4, 0, 5, 5, -4, -4],4),17)),-1),-4)",
    "io_inp": [
      -4,
      0,
      5,
      5,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -13,
      -13,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(add_n(input,4),17)),-1),-4)"
  },
  {
    "input": "input : list = [3, 0, -1, -1, 5, 1]\noutput : list = [-16, -16, 0, 16, 48, 80]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(sort_des([3, 0, -1, -1, 5, 1]),-4),-4)))",
    "io_inp": [
      3,
      0,
      -1,
      -1,
      5,
      1
    ],
    "io_out": [
      -16,
      -16,
      0,
      16,
      48,
      80
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(sort_des(input),-4),-4)))"
  },
  {
    "input": "input : list = [-3, 4, -2, -3, -3]\noutput : list = [-2, -2, -1, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(drop([-3, 4, -2, -3, -3],1),1)),4),2)",
    "io_inp": [
      -3,
      4,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(drop(input,1),1)),4),2)"
  },
  {
    "input": "input : list = [-1, 3, 0, -1]\noutput : list = [-1]",
    "output": "generated_output : list = drop(sort_des([-1, 3, 0, -1]),3)",
    "io_inp": [
      -1,
      3,
      0,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),3)"
  },
  {
    "input": "input : list = [2, 3, 4, 1, -2]\noutput : list = [-60, -45, -30, -15, 30]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(sort_asc([2, 3, 4, 1, -2])),13),-5),3)",
    "io_inp": [
      2,
      3,
      4,
      1,
      -2
    ],
    "io_out": [
      -60,
      -45,
      -30,
      -15,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(sort_asc(input)),13),-5),3)"
  },
  {
    "input": "input : list = [3, 5, 1]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(add_n([3, 5, 1],-1))),-2))",
    "io_inp": [
      3,
      5,
      1
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(add_n(input,-1))),-2))"
  },
  {
    "input": "input : list = [2, -5, -5, 5, 1, -3]\noutput : list = [-25, -10, -5, 15, 25, 25]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_des([2, -5, -5, 5, 1, -3]),-5))),1)",
    "io_inp": [
      2,
      -5,
      -5,
      5,
      1,
      -3
    ],
    "io_out": [
      -25,
      -10,
      -5,
      15,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_des(input),-5))),1)"
  },
  {
    "input": "input : list = [1, -2, -5, 1, 0, -2]\noutput : list = [0, 0, -1, -3, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(add_n([1, -2, -5, 1, 0, -2],-4),5),3),1))",
    "io_inp": [
      1,
      -2,
      -5,
      1,
      0,
      -2
    ],
    "io_out": [
      0,
      0,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(add_n(input,-4),5),3),1))"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(drop([-4, -1, -4],1)))),-1)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(drop(input,1)))),-1)"
  },
  {
    "input": "input : list = [1, 5, 5]\noutput : list = [5, 5, 1]",
    "output": "generated_output : list = sort_des([1, 5, 5])",
    "io_inp": [
      1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -1, -4, -3, -2, 2]\noutput : list = [12, 9, 6, 3, -6, -15]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des([5, -1, -4, -3, -2, 2]),29)),-3)",
    "io_inp": [
      5,
      -1,
      -4,
      -3,
      -2,
      2
    ],
    "io_out": [
      12,
      9,
      6,
      3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(input),29)),-3)"
  },
  {
    "input": "input : list = [-5, -1, -4, -2, 0, -2]\noutput : list = [0, -4, -8, -8, -16, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des([-5, -1, -4, -2, 0, -2]),29),4)))",
    "io_inp": [
      -5,
      -1,
      -4,
      -2,
      0,
      -2
    ],
    "io_out": [
      0,
      -4,
      -8,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des(input),29),4)))"
  },
  {
    "input": "input : list = [3, -1, -4, -5, 4, 2]\noutput : list = [-9, 0, -2]",
    "output": "generated_output : list = add_n(add_n(drop([3, -1, -4, -5, 4, 2],3),-1),-3)",
    "io_inp": [
      3,
      -1,
      -4,
      -5,
      4,
      2
    ],
    "io_out": [
      -9,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(input,3),-1),-3)"
  },
  {
    "input": "input : list = [-1, 1, -2, 5]\noutput : list = [4, 0, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(add_n([-1, 1, -2, 5],3),-5),-5)),-4)",
    "io_inp": [
      -1,
      1,
      -2,
      5
    ],
    "io_out": [
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(add_n(input,3),-5),-5)),-4)"
  },
  {
    "input": "input : list = [5, 1, 4, 5, 3, -5]\noutput : list = [8, 4, 7, 8, 6, -2]",
    "output": "generated_output : list = add_n([5, 1, 4, 5, 3, -5],3)",
    "io_inp": [
      5,
      1,
      4,
      5,
      3,
      -5
    ],
    "io_out": [
      8,
      4,
      7,
      8,
      6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, -5, 2, 5]\noutput : list = [22, 17, -13, -28]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n([-4, -5, 2, 5],-5),3)))",
    "io_inp": [
      -4,
      -5,
      2,
      5
    ],
    "io_out": [
      22,
      17,
      -13,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(input,-5),3)))"
  },
  {
    "input": "input : list = [-5, 4, 3, 5, -2, 2]\noutput : list = [3, 5, -2, 2]",
    "output": "generated_output : list = reverse(reverse(drop([-5, 4, 3, 5, -2, 2],2)))",
    "io_inp": [
      -5,
      4,
      3,
      5,
      -2,
      2
    ],
    "io_out": [
      3,
      5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-2, -2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = drop([-2, -2, 1],1)",
    "io_inp": [
      -2,
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -4, 5, 1, -4, -2]\noutput : list = [28, 12, 0, 0, -8, -8]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(sub_n([-2, -4, 5, 1, -4, -2],-2)),23)),4)",
    "io_inp": [
      -2,
      -4,
      5,
      1,
      -4,
      -2
    ],
    "io_out": [
      28,
      12,
      0,
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(sub_n(input,-2)),23)),4)"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [12, -9]",
    "output": "generated_output : list = mul_n(drop(reverse([-3, 4, 4]),1),3)",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(drop(reverse(input),1),3)"
  },
  {
    "input": "input : list = [-2, -5, 2, 3, -5, 5]\noutput : list = [-8, -8, -5, -1, 0, 2]",
    "output": "generated_output : list = add_n(take(reverse(reverse(sort_asc([-2, -5, 2, 3, -5, 5]))),27),-3)",
    "io_inp": [
      -2,
      -5,
      2,
      3,
      -5,
      5
    ],
    "io_out": [
      -8,
      -8,
      -5,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(sort_asc(input))),27),-3)"
  },
  {
    "input": "input : list = [-3, -5, 2, 2, 4]\noutput : list = [-5, -3, 2, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse([-3, -5, 2, 2, 4])))",
    "io_inp": [
      -3,
      -5,
      2,
      2,
      4
    ],
    "io_out": [
      -5,
      -3,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-5, 4, -2, -2]\noutput : list = [35, 5, 5, -10]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(sort_des([-5, 4, -2, -2]),-5),15),-2),5)",
    "io_inp": [
      -5,
      4,
      -2,
      -2
    ],
    "io_out": [
      35,
      5,
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(sort_des(input),-5),15),-2),5)"
  },
  {
    "input": "input : list = [3, 2, 3, 0]\noutput : list = [3, 2]",
    "output": "generated_output : list = take([3, 2, 3, 0],2)",
    "io_inp": [
      3,
      2,
      3,
      0
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 5, 1, 5]\noutput : list = [-3, -12, -15, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([4, 5, 1, 5]),-3))",
    "io_inp": [
      4,
      5,
      1,
      5
    ],
    "io_out": [
      -3,
      -12,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-3))"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [-6, 9, 9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sort_asc([1, -4, 1]),-2))),3)",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      -6,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sort_asc(input),-2))),3)"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take(take([-3, -4, 5],1),10)",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(input,1),10)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [7, 10]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n([0, 3],4))),-3)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(input,4))),-3)"
  },
  {
    "input": "input : list = [-4, -5, -2, -5]\noutput : list = [-6, -7]",
    "output": "generated_output : list = add_n(take([-4, -5, -2, -5],2),-2)",
    "io_inp": [
      -4,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-2)"
  },
  {
    "input": "input : list = [5, 0, 2, -4]\noutput : list = [-4, 0, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 0, 2, -4]))",
    "io_inp": [
      5,
      0,
      2,
      -4
    ],
    "io_out": [
      -4,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -5, -2, -4, -4, -4]\noutput : list = [-15, 25, 10, 20, 20, 20]",
    "output": "generated_output : list = mul_n([3, -5, -2, -4, -4, -4],-5)",
    "io_inp": [
      3,
      -5,
      -2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -15,
      25,
      10,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 3, 0, 2]\noutput : list = [-52, 4, -20, -4]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(reverse([-4, 3, 0, 2]),2),-5),4))",
    "io_inp": [
      -4,
      3,
      0,
      2
    ],
    "io_out": [
      -52,
      4,
      -20,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(reverse(input),2),-5),4))"
  },
  {
    "input": "input : list = [4, 2, -4, -5]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(take([4, 2, -4, -5],2)),2),2))",
    "io_inp": [
      4,
      2,
      -4,
      -5
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(take(input,2)),2),2))"
  },
  {
    "input": "input : list = [-4, -3, -5, -1]\noutput : list = [-12, -9, -15, -3]",
    "output": "generated_output : list = take(mul_n([-4, -3, -5, -1],3),12)",
    "io_inp": [
      -4,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -12,
      -9,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),12)"
  },
  {
    "input": "input : list = [-2, 3, -4, 0, -4, -1]\noutput : list = [6, 15, 3, 15, -6, 9]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(sub_n([-2, 3, -4, 0, -4, -1],-2)),1),-2),-3)",
    "io_inp": [
      -2,
      3,
      -4,
      0,
      -4,
      -1
    ],
    "io_out": [
      6,
      15,
      3,
      15,
      -6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(sub_n(input,-2)),1),-2),-3)"
  },
  {
    "input": "input : list = [0, 3, 4, 2]\noutput : list = [2, 1, 0, -2]",
    "output": "generated_output : list = take(sort_des(sub_n([0, 3, 4, 2],2)),24)",
    "io_inp": [
      0,
      3,
      4,
      2
    ],
    "io_out": [
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,2)),24)"
  },
  {
    "input": "input : list = [-5, -4, -2, 5, -3, -2]\noutput : list = [15, 10, -25]",
    "output": "generated_output : list = sort_des(mul_n(drop(take(drop([-5, -4, -2, 5, -3, -2],2),22),1),-5))",
    "io_inp": [
      -5,
      -4,
      -2,
      5,
      -3,
      -2
    ],
    "io_out": [
      15,
      10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(take(drop(input,2),22),1),-5))"
  },
  {
    "input": "input : list = [-3, 2, 2]\noutput : list = [-8, -8, 7]",
    "output": "generated_output : list = sub_n(take(mul_n(take(reverse([-3, 2, 2]),8),-3),32),2)",
    "io_inp": [
      -3,
      2,
      2
    ],
    "io_out": [
      -8,
      -8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(reverse(input),8),-3),32),2)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [6, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(reverse([3, -4])),-3)))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [-1, 5, -5, 3]\noutput : list = [1, 7, -3, 5]",
    "output": "generated_output : list = add_n([-1, 5, -5, 3],2)",
    "io_inp": [
      -1,
      5,
      -5,
      3
    ],
    "io_out": [
      1,
      7,
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, 5, -2, -4]\noutput : list = [-4, -7, -11, -13]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(sub_n([2, 5, -2, -4],4)),1),4))",
    "io_inp": [
      2,
      5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -7,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(sub_n(input,4)),1),4))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse([3, 4])",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -1, -4, -3]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(add_n(take(take(add_n([-4, -1, -4, -3],2),2),24),5))",
    "io_inp": [
      -4,
      -1,
      -4,
      -3
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(add_n(input,2),2),24),5))"
  },
  {
    "input": "input : list = [2, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = drop([2, -1, -5],1)",
    "io_inp": [
      2,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -4, 1]\noutput : list = [24, 6, -6, -24]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(mul_n([-1, 4, -4, 1],2)),4),-4),-3)",
    "io_inp": [
      -1,
      4,
      -4,
      1
    ],
    "io_out": [
      24,
      6,
      -6,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(mul_n(input,2)),4),-4),-3)"
  },
  {
    "input": "input : list = [-1, 3, 3, 4, -5, 1]\noutput : list = [9, 8, 8, 4]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(take([-1, 3, 3, 4, -5, 1],4),5))),44)",
    "io_inp": [
      -1,
      3,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      9,
      8,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(take(input,4),5))),44)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [12, -4]",
    "output": "generated_output : list = reverse(take(mul_n([-1, 3],4),12))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,4),12))"
  },
  {
    "input": "input : list = [-5, -2, 5, 1, 5, 1]\noutput : list = [-5, -2, 1, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, -2, 5, 1, 5, 1]))",
    "io_inp": [
      -5,
      -2,
      5,
      1,
      5,
      1
    ],
    "io_out": [
      -5,
      -2,
      1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 1, -1, 3]\noutput : list = [-100, 25, -25, 75]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(mul_n([-4, 1, -1, 3],-5)),14),-5))",
    "io_inp": [
      -4,
      1,
      -1,
      3
    ],
    "io_out": [
      -100,
      25,
      -25,
      75
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(mul_n(input,-5)),14),-5))"
  },
  {
    "input": "input : list = [-4, 2, -3, 3, 2, 1]\noutput : list = [-2, -1, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(sub_n([-4, 2, -3, 3, 2, 1],-4),-4),-3),-3))",
    "io_inp": [
      -4,
      2,
      -3,
      3,
      2,
      1
    ],
    "io_out": [
      -2,
      -1,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(sub_n(input,-4),-4),-3),-3))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-12, 0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des([3, 0]),-4)))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(input),-4)))"
  },
  {
    "input": "input : list = [1, 3, 1, 1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n(drop([1, 3, 1, 1],2),-4)",
    "io_inp": [
      1,
      3,
      1,
      1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [5, -3, -3, 2, 2, -1]\noutput : list = [8, 0, 0, 5, 5, 2]",
    "output": "generated_output : list = add_n([5, -3, -3, 2, 2, -1],3)",
    "io_inp": [
      5,
      -3,
      -3,
      2,
      2,
      -1
    ],
    "io_out": [
      8,
      0,
      0,
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, -5, -2, -4]\noutput : list = [5, 7, 4]",
    "output": "generated_output : list = reverse(add_n(add_n(take(drop([2, -5, -2, -4],1),4),4),5))",
    "io_inp": [
      2,
      -5,
      -2,
      -4
    ],
    "io_out": [
      5,
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(drop(input,1),4),4),5))"
  },
  {
    "input": "input : list = [-3, 4, 3, -4, 3, -5]\noutput : list = [-5, 3, -4, 3, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, 3, -4, 3, -5])",
    "io_inp": [
      -3,
      4,
      3,
      -4,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      -4,
      3,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [4, 3, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(reverse([4, 5, -5]))),1),32)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      4,
      3,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(reverse(input))),1),32)"
  },
  {
    "input": "input : list = [-5, 3, -3, -1, -1]\noutput : list = [-8, -6, -6]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(drop([-5, 3, -3, -1, -1],2)),-5),5))",
    "io_inp": [
      -5,
      3,
      -3,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(drop(input,2)),-5),5))"
  },
  {
    "input": "input : list = [0, 3, 5, 1, -2]\noutput : list = [36, 4, -12, -44, -76]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n([0, 3, 5, 1, -2],-4),1),4))",
    "io_inp": [
      0,
      3,
      5,
      1,
      -2
    ],
    "io_out": [
      36,
      4,
      -12,
      -44,
      -76
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(input,-4),1),4))"
  },
  {
    "input": "input : list = [4, 1, 5, 2, 5, 5]\noutput : list = [6, 11, 21, 26, 26, 26]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(mul_n([4, 1, 5, 2, 5, 5],5)),1)),2)",
    "io_inp": [
      4,
      1,
      5,
      2,
      5,
      5
    ],
    "io_out": [
      6,
      11,
      21,
      26,
      26,
      26
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(mul_n(input,5)),1)),2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(reverse(sort_des([-1, -1])))))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-7, -10]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(reverse([-2, -5])),-5)),1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -7,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(reverse(input)),-5)),1)"
  },
  {
    "input": "input : list = [-1, 0, 1, 2]\noutput : list = [2, 1, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc([-1, 0, 1, 2]))",
    "io_inp": [
      -1,
      0,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2, -2, -2, 1, 2]\noutput : list = [-6, -6, -3, 6, 6, 12]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(mul_n([-4, 2, -2, -2, 1, 2],-3),19))))",
    "io_inp": [
      -4,
      2,
      -2,
      -2,
      1,
      2
    ],
    "io_out": [
      -6,
      -6,
      -3,
      6,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(mul_n(input,-3),19))))"
  },
  {
    "input": "input : list = [-2, 3, 1, 4, -3]\noutput : list = [0, -1, -3, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n([-2, 3, 1, 4, -3],4))",
    "io_inp": [
      -2,
      3,
      1,
      4,
      -3
    ],
    "io_out": [
      0,
      -1,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [3, 2, -2, -2, 4]\noutput : list = [11, 10, 9, 5, 5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(add_n([3, 2, -2, -2, 4],5),-2),31)))",
    "io_inp": [
      3,
      2,
      -2,
      -2,
      4
    ],
    "io_out": [
      11,
      10,
      9,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(add_n(input,5),-2),31)))"
  },
  {
    "input": "input : list = [-5, 4, 1, 0]\noutput : list = [8, 5, 4, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(add_n([-5, 4, 1, 0],-3),2),-5)))",
    "io_inp": [
      -5,
      4,
      1,
      0
    ],
    "io_out": [
      8,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(add_n(input,-3),2),-5)))"
  },
  {
    "input": "input : list = [-4, 3, -5, 3, 2, 0]\noutput : list = [-5, -4, 0, 2, 3, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_des(reverse([-4, 3, -5, 3, 2, 0])))))",
    "io_inp": [
      -4,
      3,
      -5,
      3,
      2,
      0
    ],
    "io_out": [
      -5,
      -4,
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [4, -1, 4, -5]\noutput : list = [6, 1, -3]",
    "output": "generated_output : list = sort_des(add_n(take(drop([4, -1, 4, -5],1),3),2))",
    "io_inp": [
      4,
      -1,
      4,
      -5
    ],
    "io_out": [
      6,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(drop(input,1),3),2))"
  },
  {
    "input": "input : list = [-4, 4, -5, -4]\noutput : list = [-38, -48, 42, -38]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(mul_n([-4, 4, -5, -4],5),1)),2),42)",
    "io_inp": [
      -4,
      4,
      -5,
      -4
    ],
    "io_out": [
      -38,
      -48,
      42,
      -38
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(mul_n(input,5),1)),2),42)"
  },
  {
    "input": "input : list = [-5, -2, -5, -5, 4]\noutput : list = [25, 25, 25, 10, -20]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n(sort_asc([-5, -2, -5, -5, 4]),-5)),8))",
    "io_inp": [
      -5,
      -2,
      -5,
      -5,
      4
    ],
    "io_out": [
      25,
      25,
      25,
      10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(sort_asc(input),-5)),8))"
  },
  {
    "input": "input : list = [-1, 2, 0, -2]\noutput : list = [0, 1, 2, 4]",
    "output": "generated_output : list = sub_n(sort_asc([-1, 2, 0, -2]),-2)",
    "io_inp": [
      -1,
      2,
      0,
      -2
    ],
    "io_out": [
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-1, 2, 1, 0]\noutput : list = [1]",
    "output": "generated_output : list = reverse(reverse(sub_n(take([-1, 2, 1, 0],1),-2)))",
    "io_inp": [
      -1,
      2,
      1,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(input,1),-2)))"
  },
  {
    "input": "input : list = [-4, 1, 0, -3, 5, 1]\noutput : list = [-12, 3, 0, -9, 15, 3]",
    "output": "generated_output : list = mul_n([-4, 1, 0, -3, 5, 1],3)",
    "io_inp": [
      -4,
      1,
      0,
      -3,
      5,
      1
    ],
    "io_out": [
      -12,
      3,
      0,
      -9,
      15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, -5, -1, 4, 0, 3]\noutput : list = [-9, 15, 3, -12, 0, -9]",
    "output": "generated_output : list = mul_n([3, -5, -1, 4, 0, 3],-3)",
    "io_inp": [
      3,
      -5,
      -1,
      4,
      0,
      3
    ],
    "io_out": [
      -9,
      15,
      3,
      -12,
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, 4, 4, 5, -1]\noutput : list = [4, -16, -16, -20, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([5, 4, 4, 5, -1])),-4)",
    "io_inp": [
      5,
      4,
      4,
      5,
      -1
    ],
    "io_out": [
      4,
      -16,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [5, 7]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(reverse([1, 3]),4))),30)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(reverse(input),4))),30)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-11, 1]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n([2, -4],2),3)),16)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -11,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(input,2),3)),16)"
  },
  {
    "input": "input : list = [5, 2, -1, -4, 1]\noutput : list = [-4, -1, 1, 2]",
    "output": "generated_output : list = take(reverse(sort_des(drop([5, 2, -1, -4, 1],1))),33)",
    "io_inp": [
      5,
      2,
      -1,
      -4,
      1
    ],
    "io_out": [
      -4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(drop(input,1))),33)"
  },
  {
    "input": "input : list = [-2, 5, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(drop([-2, 5, 2, -3],2))))",
    "io_inp": [
      -2,
      5,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(drop(input,2))))"
  },
  {
    "input": "input : list = [1, 2, 0, 4]\noutput : list = [0, 1, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc([1, 2, 0, 4]),6)))",
    "io_inp": [
      1,
      2,
      0,
      4
    ],
    "io_out": [
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(input),6)))"
  },
  {
    "input": "input : list = [1, 5, 2, 0, -4, 2]\noutput : list = [-32, -16, -12, -8, -8, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n([1, 5, 2, 0, -4, 2],-4),4)),18)",
    "io_inp": [
      1,
      5,
      2,
      0,
      -4,
      2
    ],
    "io_out": [
      -32,
      -16,
      -12,
      -8,
      -8,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(input,-4),4)),18)"
  },
  {
    "input": "input : list = [-1, -4, -2, 4, 1]\noutput : list = [1, -2, 0, 6, 3]",
    "output": "generated_output : list = add_n([-1, -4, -2, 4, 1],2)",
    "io_inp": [
      -1,
      -4,
      -2,
      4,
      1
    ],
    "io_out": [
      1,
      -2,
      0,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_des(reverse(take([-2, -1, -5],1))),24)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(input,1))),24)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 5, 4],1)",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -5, 3, 3, 4]\noutput : list = [-2, -2, -5]",
    "output": "generated_output : list = take(mul_n(drop(sub_n(sort_des([0, -5, 3, 3, 4]),5),1),1),3)",
    "io_inp": [
      0,
      -5,
      3,
      3,
      4
    ],
    "io_out": [
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(sub_n(sort_des(input),5),1),1),3)"
  },
  {
    "input": "input : list = [-3, 1, -5, 3, 3]\noutput : list = [12, 12, 4, -12, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(reverse([-3, 1, -5, 3, 3])))),4)",
    "io_inp": [
      -3,
      1,
      -5,
      3,
      3
    ],
    "io_out": [
      12,
      12,
      4,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(reverse(input)))),4)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(take(sort_asc([-5, -4]),9),2)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),9),2)"
  },
  {
    "input": "input : list = [5, 2, -5, -2, -3, -4]\noutput : list = [5, 2, -5, -2]",
    "output": "generated_output : list = take([5, 2, -5, -2, -3, -4],4)",
    "io_inp": [
      5,
      2,
      -5,
      -2,
      -3,
      -4
    ],
    "io_out": [
      5,
      2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-1, 1, 1, -2, 2]\noutput : list = [-5, -4, -2, -2, -1]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(sort_asc([-1, 1, 1, -2, 2]),-1),1),37),-5)",
    "io_inp": [
      -1,
      1,
      1,
      -2,
      2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(sort_asc(input),-1),1),37),-5)"
  },
  {
    "input": "input : list = [-1, 4, 4, -5, 2, 2]\noutput : list = [4, 4, -5, 2, 2]",
    "output": "generated_output : list = drop([-1, 4, 4, -5, 2, 2],1)",
    "io_inp": [
      -1,
      4,
      4,
      -5,
      2,
      2
    ],
    "io_out": [
      4,
      4,
      -5,
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -5, 3, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(take([-3, -5, 3, -3],1),4),1)))",
    "io_inp": [
      -3,
      -5,
      3,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(take(input,1),4),1)))"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [3, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(take(take(reverse([1, -2, -4]),7),10),-2))",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(reverse(input),7),10),-2))"
  },
  {
    "input": "input : list = [-3, 4, 2]\noutput : list = [48, 24, -36]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-3, 4, 2]),3),4)",
    "io_inp": [
      -3,
      4,
      2
    ],
    "io_out": [
      48,
      24,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),3),4)"
  },
  {
    "input": "input : list = [-5, 0, -3, -4]\noutput : list = [-1, 11, 15, 19]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse([-5, 0, -3, -4]))),-4),-1)",
    "io_inp": [
      -5,
      0,
      -3,
      -4
    ],
    "io_out": [
      -1,
      11,
      15,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse(input))),-4),-1)"
  },
  {
    "input": "input : list = [3, 5, -5, 2, -3, -5]\noutput : list = [-21, 14, 19, 29]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(take([3, 5, -5, 2, -3, -5],4),5)),-4))",
    "io_inp": [
      3,
      5,
      -5,
      2,
      -3,
      -5
    ],
    "io_out": [
      -21,
      14,
      19,
      29
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(take(input,4),5)),-4))"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [-25, -40]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(drop([1, 5, 2],1),3),21),-5))",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      -25,
      -40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(drop(input,1),3),21),-5))"
  },
  {
    "input": "input : list = [-1, -3, 4, 0, -2]\noutput : list = [2, 0, -2, -4, -12]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(add_n([-1, -3, 4, 0, -2],2)),-2),17))",
    "io_inp": [
      -1,
      -3,
      4,
      0,
      -2
    ],
    "io_out": [
      2,
      0,
      -2,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(add_n(input,2)),-2),17))"
  },
  {
    "input": "input : list = [2, 3, -4, -3, -5, 4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_des(drop(sort_asc([2, 3, -4, -3, -5, 4]),5)))",
    "io_inp": [
      2,
      3,
      -4,
      -3,
      -5,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [-3, -5, 3, 2]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(take([-3, -5, 3, 2],1),19),2),6))",
    "io_inp": [
      -3,
      -5,
      3,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(take(input,1),19),2),6))"
  },
  {
    "input": "input : list = [1, 2, -1, 2, -1, 3]\noutput : list = [-4, -3, -6, -3, -6, -2]",
    "output": "generated_output : list = take(add_n(take(reverse(reverse([1, 2, -1, 2, -1, 3])),16),-5),35)",
    "io_inp": [
      1,
      2,
      -1,
      2,
      -1,
      3
    ],
    "io_out": [
      -4,
      -3,
      -6,
      -3,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(reverse(input)),16),-5),35)"
  },
  {
    "input": "input : list = [0, 1, -5, -4, 1]\noutput : list = [-5, -4, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse([0, 1, -5, -4, 1]))))",
    "io_inp": [
      0,
      1,
      -5,
      -4,
      1
    ],
    "io_out": [
      -5,
      -4,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0, 30]",
    "output": "generated_output : list = reverse(mul_n(add_n([5, -1],1),5))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0,
      30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,1),5))"
  },
  {
    "input": "input : list = [1, 3, 2, -4, -3, 3]\noutput : list = [3, 3, 2, 1, -3, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_des([1, 3, 2, -4, -3, 3]))),-1),1)",
    "io_inp": [
      1,
      3,
      2,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_des(input))),-1),1)"
  },
  {
    "input": "input : list = [5, 1, 1, -4, 1, 1]\noutput : list = [-4, 1, 1, 1, 1, 5]",
    "output": "generated_output : list = sort_asc(mul_n([5, 1, 1, -4, 1, 1],1))",
    "io_inp": [
      5,
      1,
      1,
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      1,
      1,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-4, 2, -3, -1]\noutput : list = [0, -3, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des([-4, 2, -3, -1]),2)",
    "io_inp": [
      -4,
      2,
      -3,
      -1
    ],
    "io_out": [
      0,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-1, -5, -3, 1]\noutput : list = [-5, -3, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(sort_asc([-1, -5, -3, 1])))))",
    "io_inp": [
      -1,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, 5, 2, 2]\noutput : list = [-25, -25]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(drop([-1, 5, 2, 2],2),3),-5)))",
    "io_inp": [
      -1,
      5,
      2,
      2
    ],
    "io_out": [
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(drop(input,2),3),-5)))"
  },
  {
    "input": "input : list = [-3, 2, 1, 4]\noutput : list = [4, 1, 2]",
    "output": "generated_output : list = reverse(take(drop([-3, 2, 1, 4],1),8))",
    "io_inp": [
      -3,
      2,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),8))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [8, 9]",
    "output": "generated_output : list = add_n(mul_n([3, 4],1),5)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),5)"
  },
  {
    "input": "input : list = [0, 3, 2]\noutput : list = [2, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(mul_n([0, 3, 2],1)))),2)",
    "io_inp": [
      0,
      3,
      2
    ],
    "io_out": [
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(mul_n(input,1)))),2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-4, 14]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(sort_des([4, -5])),-2)),4)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -4,
      14
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(sort_des(input)),-2)),4)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(sub_n([-5, 5],-3),1),-1),-5),-2)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(sub_n(input,-3),1),-1),-5),-2)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-26, -10]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(sort_asc([5, -3])),3),5),-2)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -26,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(sort_asc(input)),3),5),-2)"
  },
  {
    "input": "input : list = [-1, -1, 4, -1, -2]\noutput : list = [-6, -11, -11, -11, -12]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sub_n([-1, -1, 4, -1, -2],1),3),3)),3)",
    "io_inp": [
      -1,
      -1,
      4,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -11,
      -11,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sub_n(input,1),3),3)),3)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [20, -4, 12]",
    "output": "generated_output : list = mul_n([-5, 1, -3],-4)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      20,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 5, -2, -1]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sub_n(take([-1, 5, -2, -1],2),3)",
    "io_inp": [
      -1,
      5,
      -2,
      -1
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),3)"
  },
  {
    "input": "input : list = [1, 4, 0, -1, -2]\noutput : list = [1, 2, 3, 4, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(reverse([1, 4, 0, -1, -2]),-2),-1)),-4)",
    "io_inp": [
      1,
      4,
      0,
      -1,
      -2
    ],
    "io_out": [
      1,
      2,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(reverse(input),-2),-1)),-4)"
  },
  {
    "input": "input : list = [5, -5, -5, -5, -3, -5]\noutput : list = [-16, 0, 4, 4, 4, 4]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sort_des([5, -5, -5, -5, -3, -5]),-3),17),41),-2)",
    "io_inp": [
      5,
      -5,
      -5,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -16,
      0,
      4,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sort_des(input),-3),17),41),-2)"
  },
  {
    "input": "input : list = [-1, 5, 5, 3, 3]\noutput : list = [-1, 3, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, 5, 3, 3])",
    "io_inp": [
      -1,
      5,
      5,
      3,
      3
    ],
    "io_out": [
      -1,
      3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, -5, -2, 4, 2]\noutput : list = [9, 6, 2, 1, 0, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc([5, 3, -5, -2, 4, 2]),-1))),-4)",
    "io_inp": [
      5,
      3,
      -5,
      -2,
      4,
      2
    ],
    "io_out": [
      9,
      6,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc(input),-1))),-4)"
  },
  {
    "input": "input : list = [0, 1, 3]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n([0, 1, 3],5))),-4))",
    "io_inp": [
      0,
      1,
      3
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n(input,5))),-4))"
  },
  {
    "input": "input : list = [3, 1, 1, 0]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(add_n([3, 1, 1, 0],-5),3),5),-1),-4)",
    "io_inp": [
      3,
      1,
      1,
      0
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(add_n(input,-5),3),5),-1),-4)"
  },
  {
    "input": "input : list = [-1, 4, -4, -3, 3, -3]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse([-1, 4, -4, -3, 3, -3]),4),-3),2))",
    "io_inp": [
      -1,
      4,
      -4,
      -3,
      3,
      -3
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse(input),4),-3),2))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc([0, 5]),3),-2)),-1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc(input),3),-2)),-1)"
  },
  {
    "input": "input : list = [-2, 2, -3, 4]\noutput : list = [-8, -6, 2, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(reverse([-2, 2, -3, 4]),2))),2)",
    "io_inp": [
      -2,
      2,
      -3,
      4
    ],
    "io_out": [
      -8,
      -6,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(reverse(input),2))),2)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [20, 12, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-3, 2, -5]),-4))",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      20,
      12,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [4, 4, 5, -1, -1, -5]\noutput : list = [0, -4, -4, -9, -9, -10]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc([4, 4, 5, -1, -1, -5]),-1),-1)),-4)",
    "io_inp": [
      4,
      4,
      5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      0,
      -4,
      -4,
      -9,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc(input),-1),-1)),-4)"
  },
  {
    "input": "input : list = [-2, -5, -4, 2]\noutput : list = [0, -3, -2, 4]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(reverse([-2, -5, -4, 2])),2)))",
    "io_inp": [
      -2,
      -5,
      -4,
      2
    ],
    "io_out": [
      0,
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(reverse(input)),2)))"
  },
  {
    "input": "input : list = [-2, 0, 0, -3, -4, 2]\noutput : list = [-15, -10, -5]",
    "output": "generated_output : list = mul_n(reverse(drop(sort_des(sub_n([-2, 0, 0, -3, -4, 2],-1)),3)),5)",
    "io_inp": [
      -2,
      0,
      0,
      -3,
      -4,
      2
    ],
    "io_out": [
      -15,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(sort_des(sub_n(input,-1)),3)),5)"
  },
  {
    "input": "input : list = [-3, 2, -2, -1, 5, 1]\noutput : list = [-8, -7, -6, -4, -3, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(sort_des([-3, 2, -2, -1, 5, 1])))),-5)",
    "io_inp": [
      -3,
      2,
      -2,
      -1,
      5,
      1
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [4, 1, 0, 3]\noutput : list = [3, 9]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(drop([4, 1, 0, 3],2),-2),-2)),5)",
    "io_inp": [
      4,
      1,
      0,
      3
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(drop(input,2),-2),-2)),5)"
  },
  {
    "input": "input : list = [4, 3, 5, -1, -2, 4]\noutput : list = [4, 5, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(take([4, 3, 5, -1, -2, 4],3))),4),5)",
    "io_inp": [
      4,
      3,
      5,
      -1,
      -2,
      4
    ],
    "io_out": [
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(take(input,3))),4),5)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-5, -3, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse([-5, 1, -3]),13)))",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(input),13)))"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [-3, -6, -6]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_asc([2, -1, -1])),-5)))",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sub_n([-3, 1],-5))),-1),5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(sub_n(input,-5))),-1),5)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(add_n([-3, 1],1)),23),-5))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(add_n(input,1)),23),-5))"
  },
  {
    "input": "input : list = [4, -4, -2, 4, 1, -4]\noutput : list = [20, 20, 5, -10, -20, -20]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(mul_n([4, -4, -2, 4, 1, -4],5)))))",
    "io_inp": [
      4,
      -4,
      -2,
      4,
      1,
      -4
    ],
    "io_out": [
      20,
      20,
      5,
      -10,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-4, -2, -2, -5, 3, 2]\noutput : list = [-17]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(take([-4, -2, -2, -5, 3, 2],1),4),5),3),-1)",
    "io_inp": [
      -4,
      -2,
      -2,
      -5,
      3,
      2
    ],
    "io_out": [
      -17
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(take(input,1),4),5),3),-1)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des([0, 2]))))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [2, 3, 0, -3]\noutput : list = [4, 3, 1, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des(mul_n([2, 3, 0, -3],1))),-4),-3)",
    "io_inp": [
      2,
      3,
      0,
      -3
    ],
    "io_out": [
      4,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(mul_n(input,1))),-4),-3)"
  },
  {
    "input": "input : list = [2, -1, -5]\noutput : list = [7, 4, 0]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des([2, -1, -5]),5)),37)",
    "io_inp": [
      2,
      -1,
      -5
    ],
    "io_out": [
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(input),5)),37)"
  },
  {
    "input": "input : list = [0, 5, 4, 1]\noutput : list = [0, 1, 4, 5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([0, 5, 4, 1]),-2),-2)",
    "io_inp": [
      0,
      5,
      4,
      1
    ],
    "io_out": [
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-2),-2)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [6, -6, -18]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(reverse([3, -5, -1]),3))),-3)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      6,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(reverse(input),3))),-3)"
  },
  {
    "input": "input : list = [0, 4, 1, -2]\noutput : list = [-4, 0]",
    "output": "generated_output : list = mul_n(reverse(take([0, 4, 1, -2],2)),-1)",
    "io_inp": [
      0,
      4,
      1,
      -2
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,2)),-1)"
  },
  {
    "input": "input : list = [5, 3, -5, 4, -4]\noutput : list = [-5, -4, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse([5, 3, -5, 4, -4]),5),-5))",
    "io_inp": [
      5,
      3,
      -5,
      4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(input),5),-5))"
  },
  {
    "input": "input : list = [0, 3, -2, 2, -5]\noutput : list = [2, 1, -1, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des([0, 3, -2, 2, -5]),1)",
    "io_inp": [
      0,
      3,
      -2,
      2,
      -5
    ],
    "io_out": [
      2,
      1,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [5, -2, 2, 0, -2]\noutput : list = [-2, -2, 0, 2, 5]",
    "output": "generated_output : list = take(sort_asc(reverse([5, -2, 2, 0, -2])),9)",
    "io_inp": [
      5,
      -2,
      2,
      0,
      -2
    ],
    "io_out": [
      -2,
      -2,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(input)),9)"
  },
  {
    "input": "input : list = [-4, 2, -1]\noutput : list = [3, 6, 0]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n([-4, 2, -1],-3),-3)),-5),3)",
    "io_inp": [
      -4,
      2,
      -1
    ],
    "io_out": [
      3,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n(input,-3),-3)),-5),3)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [20, 4]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(add_n([-5, -1],1))),-5),4)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(add_n(input,1))),-5),4)"
  },
  {
    "input": "input : list = [2, 2, 3]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([2, 2, 3]),3))",
    "io_inp": [
      2,
      2,
      3
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-1, -1, 5, 0]\noutput : list = [10, 10, 5, -20]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sub_n([-1, -1, 5, 0],1)))),-5)",
    "io_inp": [
      -1,
      -1,
      5,
      0
    ],
    "io_out": [
      10,
      10,
      5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sub_n(input,1)))),-5)"
  },
  {
    "input": "input : list = [-5, -1, -5, 2, 1]\noutput : list = [10, 5, -5, -25, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-5, -1, -5, 2, 1]),5))",
    "io_inp": [
      -5,
      -1,
      -5,
      2,
      1
    ],
    "io_out": [
      10,
      5,
      -5,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [-4, -6, 0]",
    "output": "generated_output : list = take(add_n(take(sub_n([0, -2, 4],-1),12),-5),14)",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      -4,
      -6,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(input,-1),12),-5),14)"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [1, 2, -2]",
    "output": "generated_output : list = take(take(add_n([3, 4, 0],-2),14),3)",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      1,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-2),14),3)"
  },
  {
    "input": "input : list = [-3, -3, -1, 3, 1, -1]\noutput : list = [-2, -2, -6, -6, -10, -14]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_asc([-3, -3, -1, 3, 1, -1]),-2),-2),4))",
    "io_inp": [
      -3,
      -3,
      -1,
      3,
      1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -6,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_asc(input),-2),-2),4))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-36, 45]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(mul_n([-5, 4],-3))),3))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -36,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(mul_n(input,-3))),3))"
  },
  {
    "input": "input : list = [2, 3, -3, -4, 0]\noutput : list = [15, 13, 9, 3, 1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n([2, 3, -3, -4, 0],2),-4))),5)",
    "io_inp": [
      2,
      3,
      -3,
      -4,
      0
    ],
    "io_out": [
      15,
      13,
      9,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n(input,2),-4))),5)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(sort_des([2, -4]),-2),-5)))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(sort_des(input),-2),-5)))"
  },
  {
    "input": "input : list = [-1, 5, 5, -5]\noutput : list = [-16, -16, 2, 14]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(mul_n([-1, 5, 5, -5],-3)),2),13),-1)",
    "io_inp": [
      -1,
      5,
      5,
      -5
    ],
    "io_out": [
      -16,
      -16,
      2,
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(mul_n(input,-3)),2),13),-1)"
  },
  {
    "input": "input : list = [0, -1, 4]\noutput : list = [8, 6, 16]",
    "output": "generated_output : list = mul_n(sub_n([0, -1, 4],-4),2)",
    "io_inp": [
      0,
      -1,
      4
    ],
    "io_out": [
      8,
      6,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),2)"
  },
  {
    "input": "input : list = [1, 0, -5, 4, -2, 3]\noutput : list = [5, 3, -7, 11, -1, 9]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(mul_n([1, 0, -5, 4, -2, 3],2),24),-3)))",
    "io_inp": [
      1,
      0,
      -5,
      4,
      -2,
      3
    ],
    "io_out": [
      5,
      3,
      -7,
      11,
      -1,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(mul_n(input,2),24),-3)))"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [0, 0, -3]",
    "output": "generated_output : list = reverse([-3, 0, 0])",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [11, 7, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n([3, -5, -1],1),5))),-2)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      11,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n(input,1),5))),-2)"
  },
  {
    "input": "input : list = [-4, -1, -1, -4, 4, 1]\noutput : list = [6, 3, 1, -2]",
    "output": "generated_output : list = sub_n(sort_des(take(take(drop([-4, -1, -1, -4, 4, 1],2),18),32)),-2)",
    "io_inp": [
      -4,
      -1,
      -1,
      -4,
      4,
      1
    ],
    "io_out": [
      6,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(drop(input,2),18),32)),-2)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [3, 0, -4]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(reverse([0, -4, 3])))))",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [5, -1, -4, -1, 4]\noutput : list = [5, -1, -4]",
    "output": "generated_output : list = take([5, -1, -4, -1, 4],3)",
    "io_inp": [
      5,
      -1,
      -4,
      -1,
      4
    ],
    "io_out": [
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, -2, -1, -3, 2, 1]\noutput : list = [4, 3, 2, 1, 0, -1]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_asc([0, -2, -1, -3, 2, 1]),16)),31),-2)",
    "io_inp": [
      0,
      -2,
      -1,
      -3,
      2,
      1
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_asc(input),16)),31),-2)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [80, -16]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(mul_n([-5, 1],-4)),16),4))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      80,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(mul_n(input,-4)),16),4))"
  },
  {
    "input": "input : list = [4, 3, 5, 0]\noutput : list = [7, 6, 5, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(reverse([4, 3, 5, 0])))),-2)",
    "io_inp": [
      4,
      3,
      5,
      0
    ],
    "io_out": [
      7,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [-5, 3, -4, 3, 1, 1]\noutput : list = [2, 2, 0, 0, -5, -6]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sort_des([-5, 3, -4, 3, 1, 1]),1))))",
    "io_inp": [
      -5,
      3,
      -4,
      3,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      0,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-3, 2, -2]\noutput : list = [1, 2, 6]",
    "output": "generated_output : list = sort_asc(add_n([-3, 2, -2],4))",
    "io_inp": [
      -3,
      2,
      -2
    ],
    "io_out": [
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [4, 3, 5, 2]\noutput : list = [21]",
    "output": "generated_output : list = mul_n(sort_asc(drop(sub_n(mul_n([4, 3, 5, 2],5),3),3)),3)",
    "io_inp": [
      4,
      3,
      5,
      2
    ],
    "io_out": [
      21
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(sub_n(mul_n(input,5),3),3)),3)"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [25, 20, -20]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des([-4, 4, 5]),17),5))",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      25,
      20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(input),17),5))"
  },
  {
    "input": "input : list = [3, 5, 1, 3, -5]\noutput : list = [-25, 5, 15, 15, 25]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([3, 5, 1, 3, -5],5)))",
    "io_inp": [
      3,
      5,
      1,
      3,
      -5
    ],
    "io_out": [
      -25,
      5,
      15,
      15,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,5)))"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [0, -15, -20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(reverse([4, 3, 0])),-5)))",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      0,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [5, 5, 3, 5, -5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(drop(sort_asc([5, 5, 3, 5, -5]),3))",
    "io_inp": [
      5,
      5,
      3,
      5,
      -5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(input),3))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-19, -1]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(reverse([-5, 1])),4),3),4)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -19,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(reverse(input)),4),3),4)"
  },
  {
    "input": "input : list = [-4, 3, -5, -5, -2]\noutput : list = [-6, -5, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(take([-4, 3, -5, -5, -2],3)),-2)),-3)",
    "io_inp": [
      -4,
      3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(take(input,3)),-2)),-3)"
  },
  {
    "input": "input : list = [5, 3, 0, 0]\noutput : list = [0, -2, -5, -5]",
    "output": "generated_output : list = sub_n([5, 3, 0, 0],5)",
    "io_inp": [
      5,
      3,
      0,
      0
    ],
    "io_out": [
      0,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, 2, -3, 1]\noutput : list = [4, 4, -1, 3]",
    "output": "generated_output : list = add_n(mul_n(sub_n([2, 2, -3, 1],2),1),4)",
    "io_inp": [
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      4,
      4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,2),1),4)"
  },
  {
    "input": "input : list = [-2, 1, 4, -5, 3]\noutput : list = [-3, 13, -5, 1, 7]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n([-2, 1, 4, -5, 3],3)),-2),-3)",
    "io_inp": [
      -2,
      1,
      4,
      -5,
      3
    ],
    "io_out": [
      -3,
      13,
      -5,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(input,3)),-2),-3)"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [4, -14, -14]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(sub_n([2, -4, 2],-2),-3),-2)))",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      4,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(sub_n(input,-2),-3),-2)))"
  },
  {
    "input": "input : list = [-2, -5, 0, -2]\noutput : list = [-5, -7, -7, -10]",
    "output": "generated_output : list = reverse(add_n(sort_asc([-2, -5, 0, -2]),-5))",
    "io_inp": [
      -2,
      -5,
      0,
      -2
    ],
    "io_out": [
      -5,
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-8, 16]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(add_n([-1, -4],5),-3),-2)),4)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(add_n(input,5),-3),-2)),4)"
  },
  {
    "input": "input : list = [-5, 0, -3]\noutput : list = [-11]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(take([-5, 0, -3],1)),2),4))",
    "io_inp": [
      -5,
      0,
      -3
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(take(input,1)),2),4))"
  },
  {
    "input": "input : list = [5, 1, -3, 5, -3]\noutput : list = [2, -2, -6, 2, -6]",
    "output": "generated_output : list = add_n([5, 1, -3, 5, -3],-3)",
    "io_inp": [
      5,
      1,
      -3,
      5,
      -3
    ],
    "io_out": [
      2,
      -2,
      -6,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [5, 3, -5, -5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(drop([5, 3, -5, -5, -2],3))",
    "io_inp": [
      5,
      3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des([-3, 0])",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, -1, -5]\noutput : list = [-9, -5, -1, 1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sub_n([3, 5, -1, -5],4))),21))",
    "io_inp": [
      3,
      5,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sub_n(input,4))),21))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([-5, 1],-1)))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [-3, -3, 2, 2]\noutput : list = [5, 5, 0, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n([-3, -3, 2, 2],-1),-4))",
    "io_inp": [
      -3,
      -3,
      2,
      2
    ],
    "io_out": [
      5,
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-1),-4))"
  },
  {
    "input": "input : list = [-4, -2, 5, -3, -1]\noutput : list = [12, 15, 18, 21, 39]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(sub_n([-4, -2, 5, -3, -1],-4),-4)),3))",
    "io_inp": [
      -4,
      -2,
      5,
      -3,
      -1
    ],
    "io_out": [
      12,
      15,
      18,
      21,
      39
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(sub_n(input,-4),-4)),3))"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [2, -1, 1]",
    "output": "generated_output : list = reverse([1, -1, 2])",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, -1, 2]\noutput : list = [-9, -3, 6, 15]",
    "output": "generated_output : list = sort_asc(mul_n([5, -3, -1, 2],3))",
    "io_inp": [
      5,
      -3,
      -1,
      2
    ],
    "io_out": [
      -9,
      -3,
      6,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,3))"
  },
  {
    "input": "input : list = [1, -5, -3, -5]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(take([1, -5, -3, -5],1),5),3)))",
    "io_inp": [
      1,
      -5,
      -3,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(take(input,1),5),3)))"
  },
  {
    "input": "input : list = [0, 2, -1]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 2, -1],1)",
    "io_inp": [
      0,
      2,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 4, 5, 5]\noutput : list = [-6, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(add_n([-5, 4, 5, 5],1),-3),30),1))",
    "io_inp": [
      -5,
      4,
      5,
      5
    ],
    "io_out": [
      -6,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(add_n(input,1),-3),30),1))"
  },
  {
    "input": "input : list = [-3, -2, 3, -5, -2, -3]\noutput : list = [2, 3, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(take([-3, -2, 3, -5, -2, -3],3)),5)))",
    "io_inp": [
      -3,
      -2,
      3,
      -5,
      -2,
      -3
    ],
    "io_out": [
      2,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(take(input,3)),5)))"
  },
  {
    "input": "input : list = [2, -2, -1, 3, 1, -2]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = drop([2, -2, -1, 3, 1, -2],3)",
    "io_inp": [
      2,
      -2,
      -1,
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, 5, 0, -1, 4]\noutput : list = [2, 8, 3, 2, 7]",
    "output": "generated_output : list = add_n([-1, 5, 0, -1, 4],3)",
    "io_inp": [
      -1,
      5,
      0,
      -1,
      4
    ],
    "io_out": [
      2,
      8,
      3,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [3, 5, 2, 0, -2, 0]\noutput : list = [-3, -1, -1, 1, 2, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_des([3, 5, 2, 0, -2, 0]))),4),-5)",
    "io_inp": [
      3,
      5,
      2,
      0,
      -2,
      0
    ],
    "io_out": [
      -3,
      -1,
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_des(input))),4),-5)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_des([5, -1, 1])))))",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, -3, -5, -2, -4]\noutput : list = [4, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(take(sort_des([4, -3, -5, -2, -4]),15))",
    "io_inp": [
      4,
      -3,
      -5,
      -2,
      -4
    ],
    "io_out": [
      4,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),15))"
  },
  {
    "input": "input : list = [-5, 0, -3, 2, 2, -5]\noutput : list = [-3, 2, -1, 4, 4, -3]",
    "output": "generated_output : list = sub_n([-5, 0, -3, 2, 2, -5],-2)",
    "io_inp": [
      -5,
      0,
      -3,
      2,
      2,
      -5
    ],
    "io_out": [
      -3,
      2,
      -1,
      4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [11]",
    "output": "generated_output : list = drop(sub_n(take(sub_n(mul_n([2, -4, 4],4),4),19),1),2)",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = drop(sub_n(take(sub_n(mul_n(input,4),4),19),1),2)"
  },
  {
    "input": "input : list = [0, 5, -1, 1, -5]\noutput : list = [-9, -5, -4, -3, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n([0, 5, -1, 1, -5],1))),3)",
    "io_inp": [
      0,
      5,
      -1,
      1,
      -5
    ],
    "io_out": [
      -9,
      -5,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(input,1))),3)"
  },
  {
    "input": "input : list = [0, 2, 2, -5, 3]\noutput : list = [-8, -3, -1, -1, 0]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(reverse([0, 2, 2, -5, 3])),20)),-3)",
    "io_inp": [
      0,
      2,
      2,
      -5,
      3
    ],
    "io_out": [
      -8,
      -3,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(reverse(input)),20)),-3)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [20, 28]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(sort_asc([5, 3]))),-2),4)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      20,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(sort_asc(input))),-2),4)"
  },
  {
    "input": "input : list = [-2, -1, 3, 2, -4]\noutput : list = [-9, -6, 3, 6, 12]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(mul_n([-2, -1, 3, 2, -4],-3),5))))",
    "io_inp": [
      -2,
      -1,
      3,
      2,
      -4
    ],
    "io_out": [
      -9,
      -6,
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(mul_n(input,-3),5))))"
  },
  {
    "input": "input : list = [-4, 1, -3, 3]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(take([-4, 1, -3, 3],1)),-1)),-4)",
    "io_inp": [
      -4,
      1,
      -3,
      3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(take(input,1)),-1)),-4)"
  },
  {
    "input": "input : list = [-3, -2, 1, 1, 2, 4]\noutput : list = [-14, -8, -5, -5, 4, 7]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_asc([-3, -2, 1, 1, 2, 4]),1)),-3),-1)",
    "io_inp": [
      -3,
      -2,
      1,
      1,
      2,
      4
    ],
    "io_out": [
      -14,
      -8,
      -5,
      -5,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_asc(input),1)),-3),-1)"
  },
  {
    "input": "input : list = [-5, 4, 0, 1, -1, 5]\noutput : list = [3, 2, -1, -2, -3, -7]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(sub_n([-5, 4, 0, 1, -1, 5],-1),-5),-2),19))",
    "io_inp": [
      -5,
      4,
      0,
      1,
      -1,
      5
    ],
    "io_out": [
      3,
      2,
      -1,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(sub_n(input,-1),-5),-2),19))"
  },
  {
    "input": "input : list = [4, -2, 5, 3, -2]\noutput : list = [-9, -9, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n([4, -2, 5, 3, -2],-1),2),4)))",
    "io_inp": [
      4,
      -2,
      5,
      3,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n(input,-1),2),4)))"
  },
  {
    "input": "input : list = [-5, 5, 2, 4]\noutput : list = [6, 5, 3, -4]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(sort_asc([-5, 5, 2, 4])),1)),18)",
    "io_inp": [
      -5,
      5,
      2,
      4
    ],
    "io_out": [
      6,
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(sort_asc(input)),1)),18)"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [-6, -1, -1]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n([0, 0, 5],-1),2),-3)),1)",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      -6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n(input,-1),2),-3)),1)"
  },
  {
    "input": "input : list = [-5, -3, -4]\noutput : list = [-3, -4, -5]",
    "output": "generated_output : list = reverse(reverse(take(take(sort_des([-5, -3, -4]),19),18)))",
    "io_inp": [
      -5,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(sort_des(input),19),18)))"
  },
  {
    "input": "input : list = [-5, 0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(drop([-5, 0, -4],1))",
    "io_inp": [
      -5,
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 4, -2, -2, 4]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n([-5, 4, -2, -2, 4],-1),1)),3)",
    "io_inp": [
      -5,
      4,
      -2,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(input,-1),1)),3)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [6, 14]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n(sort_des([1, -3]),-3)),3),2)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      6,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(sort_des(input),-3)),3),2)"
  },
  {
    "input": "input : list = [2, -3, -3, -5]\noutput : list = [6, 1, 1, -1]",
    "output": "generated_output : list = add_n(reverse(take(take(sort_asc([2, -3, -3, -5]),13),21)),4)",
    "io_inp": [
      2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      6,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(sort_asc(input),13),21)),4)"
  },
  {
    "input": "input : list = [2, 5, 0]\noutput : list = [15, 6, 0]",
    "output": "generated_output : list = mul_n(sort_des([2, 5, 0]),3)",
    "io_inp": [
      2,
      5,
      0
    ],
    "io_out": [
      15,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [-14, -9, -4]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n([5, -5, 0],5)),25),4)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      -14,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(input,5)),25),4)"
  },
  {
    "input": "input : list = [2, 2, 5, -1, 1]\noutput : list = [-6, -8, -2, -5, -5]",
    "output": "generated_output : list = take(reverse(sub_n(take(sub_n([2, 2, 5, -1, 1],3),21),4)),35)",
    "io_inp": [
      2,
      2,
      5,
      -1,
      1
    ],
    "io_out": [
      -6,
      -8,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(sub_n(input,3),21),4)),35)"
  },
  {
    "input": "input : list = [-4, -4, -4, -3, 4]\noutput : list = [-4, -4, -4, -3, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(reverse([-4, -4, -4, -3, 4]),13))))",
    "io_inp": [
      -4,
      -4,
      -4,
      -3,
      4
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(reverse(input),13))))"
  },
  {
    "input": "input : list = [-2, -1, 3, 0]\noutput : list = [-2, -1, 0, 3]",
    "output": "generated_output : list = sort_asc([-2, -1, 3, 0])",
    "io_inp": [
      -2,
      -1,
      3,
      0
    ],
    "io_out": [
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [12, 20]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(add_n([1, -3],-4),3)),-2),42)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      12,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(add_n(input,-4),3)),-2),42)"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [6, 13, 13]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([5, 5, -2]),-3),5)",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      6,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-3),5)"
  },
  {
    "input": "input : list = [0, 0, -1, 2, 1, 4]\noutput : list = [11, 5, 7, 1, 3, 3]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(add_n([0, 0, -1, 2, 1, 4],-1),-2),-1)),-5)",
    "io_inp": [
      0,
      0,
      -1,
      2,
      1,
      4
    ],
    "io_out": [
      11,
      5,
      7,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(add_n(input,-1),-2),-1)),-5)"
  },
  {
    "input": "input : list = [5, 0, 2]\noutput : list = [-5, -9, -15]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(mul_n([5, 0, 2],-2))),-5))",
    "io_inp": [
      5,
      0,
      2
    ],
    "io_out": [
      -5,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(mul_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n([-2, -2],-5)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 2, -4, -1, -3, 0]\noutput : list = [2, 0, -1, -3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-4, 2, -4, -1, -3, 0]))",
    "io_inp": [
      -4,
      2,
      -4,
      -1,
      -3,
      0
    ],
    "io_out": [
      2,
      0,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [3, 7]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_des([3, -1])),-4)),8)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_des(input)),-4)),8)"
  },
  {
    "input": "input : list = [-3, 0, -2, -5, 4, 2]\noutput : list = [-3, 0, -2, -5]",
    "output": "generated_output : list = reverse(take(take(reverse(take([-3, 0, -2, -5, 4, 2],4)),29),41))",
    "io_inp": [
      -3,
      0,
      -2,
      -5,
      4,
      2
    ],
    "io_out": [
      -3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(take(input,4)),29),41))"
  },
  {
    "input": "input : list = [1, 4, -4, -3, -5, -4]\noutput : list = [-20, -5, 15, 20, 20, 25]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(mul_n([1, 4, -4, -3, -5, -4],-1))),5),50)",
    "io_inp": [
      1,
      4,
      -4,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -20,
      -5,
      15,
      20,
      20,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(mul_n(input,-1))),5),50)"
  },
  {
    "input": "input : list = [5, -1, 5, -4, 5]\noutput : list = [-9, 3, -9, 9, -9]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(mul_n([5, -1, 5, -4, 5],-2),4),1),19),4)",
    "io_inp": [
      5,
      -1,
      5,
      -4,
      5
    ],
    "io_out": [
      -9,
      3,
      -9,
      9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(mul_n(input,-2),4),1),19),4)"
  },
  {
    "input": "input : list = [2, 1, 4, -3, 2]\noutput : list = [-3, 1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des([2, 1, 4, -3, 2]))",
    "io_inp": [
      2,
      1,
      4,
      -3,
      2
    ],
    "io_out": [
      -3,
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, -2, 3, 5, 1]\noutput : list = [12, 24, 18, 3, 9]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse([0, -2, 3, 5, 1]),3),-5),-4)",
    "io_inp": [
      0,
      -2,
      3,
      5,
      1
    ],
    "io_out": [
      12,
      24,
      18,
      3,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(input),3),-5),-4)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([-3, 3])",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [4]",
    "output": "generated_output : list = reverse(take(take(add_n(add_n([0, 1, 0],-1),5),1),28))",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(add_n(input,-1),5),1),28))"
  },
  {
    "input": "input : list = [3, 5, -5, 1, -2]\noutput : list = [11, 9, 7, 4, 1]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(sub_n([3, 5, -5, 1, -2],-2))),4),37)",
    "io_inp": [
      3,
      5,
      -5,
      1,
      -2
    ],
    "io_out": [
      11,
      9,
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(sub_n(input,-2))),4),37)"
  },
  {
    "input": "input : list = [5, 3, 5, 3, -5]\noutput : list = [-6, 10, 10, 14, 14]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sub_n([5, 3, 5, 3, -5],3),5),2)))",
    "io_inp": [
      5,
      3,
      5,
      3,
      -5
    ],
    "io_out": [
      -6,
      10,
      10,
      14,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sub_n(input,3),5),2)))"
  },
  {
    "input": "input : list = [-2, -1, 0, -3, -4]\noutput : list = [-4, -3, 0, -1, -2]",
    "output": "generated_output : list = reverse([-2, -1, 0, -3, -4])",
    "io_inp": [
      -2,
      -1,
      0,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0, 2, 0, -3, -1]\noutput : list = [-2, -5, -3, -5, -8, -6]",
    "output": "generated_output : list = sub_n([3, 0, 2, 0, -3, -1],5)",
    "io_inp": [
      3,
      0,
      2,
      0,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -5,
      -3,
      -5,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, -5, 3, 3, 5, -2]\noutput : list = [-7, -5, -4, 1, 1, 3]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des(add_n([-3, -5, 3, 3, 5, -2],-2)))),45)",
    "io_inp": [
      -3,
      -5,
      3,
      3,
      5,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -4,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(add_n(input,-2)))),45)"
  },
  {
    "input": "input : list = [-2, 1, -2, -4]\noutput : list = [1, -2, -2, -4]",
    "output": "generated_output : list = sort_des(take(reverse([-2, 1, -2, -4]),6))",
    "io_inp": [
      -2,
      1,
      -2,
      -4
    ],
    "io_out": [
      1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),6))"
  },
  {
    "input": "input : list = [-1, 3, 2, -4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 3, 2, -4],1)",
    "io_inp": [
      -1,
      3,
      2,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -5, 4, 4]\noutput : list = [-30, -27, -3, -3]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_des([-4, -5, 4, 4]),4),-1),3))",
    "io_inp": [
      -4,
      -5,
      4,
      4
    ],
    "io_out": [
      -30,
      -27,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_des(input),4),-1),3))"
  },
  {
    "input": "input : list = [1, -2, 2, 2, -5]\noutput : list = [25, 10, -5, -10, -10]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(sort_des([1, -2, 2, 2, -5])))),-5)",
    "io_inp": [
      1,
      -2,
      2,
      2,
      -5
    ],
    "io_out": [
      25,
      10,
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_des(take([5, 2, -3],1)),-5)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-5)"
  },
  {
    "input": "input : list = [-2, 4, -5, 0]\noutput : list = [5, -7, 11, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n([-2, 4, -5, 0],-1),-2),-1)",
    "io_inp": [
      -2,
      4,
      -5,
      0
    ],
    "io_out": [
      5,
      -7,
      11,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-1),-2),-1)"
  },
  {
    "input": "input : list = [1, 2, -3, 0]\noutput : list = [-3, 0, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc([1, 2, -3, 0])))))",
    "io_inp": [
      1,
      2,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 5, -3, 2, -4, -1]\noutput : list = [15, 15, 12, 6, -3, -12]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sub_n([-4, 5, -3, 2, -4, -1],3)),1),-2),-3)",
    "io_inp": [
      -4,
      5,
      -3,
      2,
      -4,
      -1
    ],
    "io_out": [
      15,
      15,
      12,
      6,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sub_n(input,3)),1),-2),-3)"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = drop([3, 5, -5],1)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -4, -1, 4, 1]\noutput : list = [1]",
    "output": "generated_output : list = add_n(mul_n(take(drop(drop([-1, -4, -1, 4, 1],3),1),19),-1),2)",
    "io_inp": [
      -1,
      -4,
      -1,
      4,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(drop(drop(input,3),1),19),-1),2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = add_n(reverse([5, 4]),-1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-4, 0, 1, 2]\noutput : list = [-25, -20, -15, 5]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([-4, 0, 1, 2],3),-5))",
    "io_inp": [
      -4,
      0,
      1,
      2
    ],
    "io_out": [
      -25,
      -20,
      -15,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,3),-5))"
  },
  {
    "input": "input : list = [3, -5, 3, 0, -5]\noutput : list = [-5, -5, -8, -13, -13]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(sort_asc([3, -5, 3, 0, -5])),-4)),-4)",
    "io_inp": [
      3,
      -5,
      3,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -8,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(sort_asc(input)),-4)),-4)"
  },
  {
    "input": "input : list = [1, 0, -2, 0]\noutput : list = [1, 0, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc([1, 0, -2, 0]))",
    "io_inp": [
      1,
      0,
      -2,
      0
    ],
    "io_out": [
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 5, 5, -4, -3, -3]\noutput : list = [-17, -13, -13, -13, 19, 19]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([-3, 5, 5, -4, -3, -3],4),-1))",
    "io_inp": [
      -3,
      5,
      5,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -17,
      -13,
      -13,
      -13,
      19,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,4),-1))"
  },
  {
    "input": "input : list = [3, -2, -5, -2]\noutput : list = [-5, 0]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(take([3, -2, -5, -2],2),1),3)),-1)",
    "io_inp": [
      3,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(take(input,2),1),3)),-1)"
  },
  {
    "input": "input : list = [3, 2, -2, -1, 3, 4]\noutput : list = [2, 3, 6, 7, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sub_n([3, 2, -2, -1, 3, 4],-4)),35)))",
    "io_inp": [
      3,
      2,
      -2,
      -1,
      3,
      4
    ],
    "io_out": [
      2,
      3,
      6,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sub_n(input,-4)),35)))"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(sub_n([-4, 2, 4],1),2))))",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(sub_n(input,1),2))))"
  },
  {
    "input": "input : list = [-2, -2, -1, -5, -2, 4]\noutput : list = [-14, -11, -11, -11, -10, -5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n([-2, -2, -1, -5, -2, 4],-4),-5)))",
    "io_inp": [
      -2,
      -2,
      -1,
      -5,
      -2,
      4
    ],
    "io_out": [
      -14,
      -11,
      -11,
      -11,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(input,-4),-5)))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(reverse(sub_n([3, 1],-3)),-3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-3)),-3)"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [0, 240, -120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n([0, -2, 1],5),4),2),-3)",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      0,
      240,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(input,5),4),2),-3)"
  },
  {
    "input": "input : list = [2, 5, 4, -3, -5]\noutput : list = [3, 6, 5, -2, -4]",
    "output": "generated_output : list = sub_n(mul_n([2, 5, 4, -3, -5],1),-1)",
    "io_inp": [
      2,
      5,
      4,
      -3,
      -5
    ],
    "io_out": [
      3,
      6,
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-1)"
  },
  {
    "input": "input : list = [-5, -5, -5, 4, 3, 1]\noutput : list = [2, 1, -1, -7, -7, -7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(sort_asc([-5, -5, -5, 4, 3, 1]),29),3)),-1)",
    "io_inp": [
      -5,
      -5,
      -5,
      4,
      3,
      1
    ],
    "io_out": [
      2,
      1,
      -1,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(sort_asc(input),29),3)),-1)"
  },
  {
    "input": "input : list = [4, -2, -1, -5, 2]\noutput : list = [50, 20, 10, -20, -40]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(sort_des([4, -2, -1, -5, 2]),5),10),-2))",
    "io_inp": [
      4,
      -2,
      -1,
      -5,
      2
    ],
    "io_out": [
      50,
      20,
      10,
      -20,
      -40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(sort_des(input),5),10),-2))"
  },
  {
    "input": "input : list = [-2, 1, -2, 5, -2, 0]\noutput : list = [11, 3, 1, -3, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(mul_n([-2, 1, -2, 5, -2, 0],2)),1)))",
    "io_inp": [
      -2,
      1,
      -2,
      5,
      -2,
      0
    ],
    "io_out": [
      11,
      3,
      1,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(mul_n(input,2)),1)))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(sub_n([2, 4],3))),5),34)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(sub_n(input,3))),5),34)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc([3, -5])",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 4, -3, 1, 5, -2]\noutput : list = [17, -39, -7, 25]",
    "output": "generated_output : list = sub_n(mul_n(reverse(drop(mul_n([-3, 4, -3, 1, 5, -2],-4),2)),2),-1)",
    "io_inp": [
      -3,
      4,
      -3,
      1,
      5,
      -2
    ],
    "io_out": [
      17,
      -39,
      -7,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(drop(mul_n(input,-4),2)),2),-1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [8, -8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([5, -3]),1),2)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),1),2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-4, 52]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n([2, -5],-2),-2),-5),4)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -4,
      52
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(input,-2),-2),-5),4)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-7, -4, 1]",
    "output": "generated_output : list = reverse(take(add_n(add_n(sub_n([4, -1, -4],-4),-4),-3),17))",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(sub_n(input,-4),-4),-3),17))"
  },
  {
    "input": "input : list = [1, 4, -2, 1, 3]\noutput : list = [-9, -6, -6, -4, -3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(sub_n([1, 4, -2, 1, 3],3),4))))",
    "io_inp": [
      1,
      4,
      -2,
      1,
      3
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(sub_n(input,3),4))))"
  },
  {
    "input": "input : list = [-3, -3, 1, 0, 0, 2]\noutput : list = [-18, -15, -12, -12, -3, -3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n(sub_n([-3, -3, 1, 0, 0, 2],-4),-3))))",
    "io_inp": [
      -3,
      -3,
      1,
      0,
      0,
      2
    ],
    "io_out": [
      -18,
      -15,
      -12,
      -12,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(sub_n(input,-4),-3))))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(reverse(add_n(take(sort_asc([2, 2]),4),4)),38)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sort_asc(input),4),4)),38)"
  },
  {
    "input": "input : list = [-2, 3, -5, 3, 1, 4]\noutput : list = [1, 0, 0, -2, -5, -8]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(add_n([-2, 3, -5, 3, 1, 4],1)),-4)))",
    "io_inp": [
      -2,
      3,
      -5,
      3,
      1,
      4
    ],
    "io_out": [
      1,
      0,
      0,
      -2,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(add_n(input,1)),-4)))"
  },
  {
    "input": "input : list = [-3, 1, 1, -5, 1]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 1, 1, -5, 1],1)",
    "io_inp": [
      -3,
      1,
      1,
      -5,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(sub_n([3, -2],-1)),4)))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(sub_n(input,-1)),4)))"
  },
  {
    "input": "input : list = [-5, 4, 4]\noutput : list = [75]",
    "output": "generated_output : list = mul_n(mul_n(take([-5, 4, 4],1),-3),5)",
    "io_inp": [
      -5,
      4,
      4
    ],
    "io_out": [
      75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),-3),5)"
  },
  {
    "input": "input : list = [-2, -4, 5, -3]\noutput : list = [-9, -6, -3, 18]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(reverse([-2, -4, 5, -3]),-1),3)))",
    "io_inp": [
      -2,
      -4,
      5,
      -3
    ],
    "io_out": [
      -9,
      -6,
      -3,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(reverse(input),-1),3)))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des([4, 2])",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = drop([1, 3, -1],1)",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 5, 2, 4]\noutput : list = [7, 6, 4, -1]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(sort_asc([-3, 5, 2, 4])),2),8))",
    "io_inp": [
      -3,
      5,
      2,
      4
    ],
    "io_out": [
      7,
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(sort_asc(input)),2),8))"
  },
  {
    "input": "input : list = [-5, 4, 3, -4, 1, -4]\noutput : list = [-4, 5, 4, -3, 2, -3]",
    "output": "generated_output : list = add_n([-5, 4, 3, -4, 1, -4],1)",
    "io_inp": [
      -5,
      4,
      3,
      -4,
      1,
      -4
    ],
    "io_out": [
      -4,
      5,
      4,
      -3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [15, 10, -25]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(mul_n([-2, 5, -3],-5)),9)))",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      15,
      10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(mul_n(input,-5)),9)))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [6, 9]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(mul_n([1, 2],3),3))))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(mul_n(input,3),3))))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 2, -2, 0, -5]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = add_n(sort_des(take(take(reverse([-2, 2, -2, 0, -5]),16),3)),1)",
    "io_inp": [
      -2,
      2,
      -2,
      0,
      -5
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(reverse(input),16),3)),1)"
  },
  {
    "input": "input : list = [-3, 4, 4, 3]\noutput : list = [-16, -16, -13, 5]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(mul_n([-3, 4, 4, 3],3))),-1),4)",
    "io_inp": [
      -3,
      4,
      4,
      3
    ],
    "io_out": [
      -16,
      -16,
      -13,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(mul_n(input,3))),-1),4)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(mul_n([2, 2],1),2))),1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(mul_n(input,1),2))),1)"
  },
  {
    "input": "input : list = [2, 3, 3, 1, 1]\noutput : list = [1]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(take([2, 3, 3, 1, 1],1))),-1))",
    "io_inp": [
      2,
      3,
      3,
      1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(take(input,1))),-1))"
  },
  {
    "input": "input : list = [-3, -5, 2, 3, -5]\noutput : list = [10, -6, -4, 10, 6]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n([-3, -5, 2, 3, -5],-2)),5),1)",
    "io_inp": [
      -3,
      -5,
      2,
      3,
      -5
    ],
    "io_out": [
      10,
      -6,
      -4,
      10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(input,-2)),5),1)"
  },
  {
    "input": "input : list = [1, 5, -5, -5, -5]\noutput : list = [5, 1, -5, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([1, 5, -5, -5, -5]))",
    "io_inp": [
      1,
      5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      5,
      1,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sub_n([1, -1, -1],5)),-2),2))",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sub_n(input,5)),-2),2))"
  },
  {
    "input": "input : list = [1, 1, -4, -3, -5]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(take(drop([1, 1, -4, -3, -5],2),4)))",
    "io_inp": [
      1,
      1,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(drop(input,2),4)))"
  },
  {
    "input": "input : list = [-5, 1, -2, 2]\noutput : list = [64, 28, -8, -20]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(mul_n([-5, 1, -2, 2],-3)),4)),-4)",
    "io_inp": [
      -5,
      1,
      -2,
      2
    ],
    "io_out": [
      64,
      28,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(mul_n(input,-3)),4)),-4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse([5, 0])",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [3, 18]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(reverse([2, -3]))),3),-3)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      3,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(reverse(input))),3),-3)"
  },
  {
    "input": "input : list = [-1, -1, -2, 0, 0, -2]\noutput : list = [-8, -2]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(drop([-1, -1, -2, 0, 0, -2],4),3)),2),1)",
    "io_inp": [
      -1,
      -1,
      -2,
      0,
      0,
      -2
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(drop(input,4),3)),2),1)"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [2, 0, -10]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(add_n([2, 1, -4],-1)),2)),28)",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      2,
      0,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(add_n(input,-1)),2)),28)"
  },
  {
    "input": "input : list = [4, -3, 4]\noutput : list = [21, 21, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(mul_n([4, -3, 4],4),3))),-2)",
    "io_inp": [
      4,
      -3,
      4
    ],
    "io_out": [
      21,
      21,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(mul_n(input,4),3))),-2)"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [-20, -10, 10]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(reverse([2, -2, -4]),5),21)))",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      -20,
      -10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(reverse(input),5),21)))"
  },
  {
    "input": "input : list = [0, -4, -4, 4, -1, 5]\noutput : list = [9, 8, 4, 3, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des([0, -4, -4, 4, -1, 5]),-4)",
    "io_inp": [
      0,
      -4,
      -4,
      4,
      -1,
      5
    ],
    "io_out": [
      9,
      8,
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-20, 20]",
    "output": "generated_output : list = reverse(sort_des(mul_n([-4, 4],5)))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -20,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,5)))"
  },
  {
    "input": "input : list = [4, -5, -4, 3, 4, -1]\noutput : list = [12, 10, 4, -4, -6, -6]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_asc([4, -5, -4, 3, 4, -1])),1),-2),6)",
    "io_inp": [
      4,
      -5,
      -4,
      3,
      4,
      -1
    ],
    "io_out": [
      12,
      10,
      4,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_asc(input)),1),-2),6)"
  },
  {
    "input": "input : list = [4, -3, 0, -4, 0]\noutput : list = [-11, -19]",
    "output": "generated_output : list = sub_n(drop(mul_n(sub_n(sort_asc([4, -3, 0, -4, 0]),-3),-2),3),5)",
    "io_inp": [
      4,
      -3,
      0,
      -4,
      0
    ],
    "io_out": [
      -11,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(drop(mul_n(sub_n(sort_asc(input),-3),-2),3),5)"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [2, 5, 1]",
    "output": "generated_output : list = add_n([-2, 1, -3],4)",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      2,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [6, 1]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(sort_asc([3, -2]),3)),33))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(sort_asc(input),3)),33))"
  },
  {
    "input": "input : list = [3, 3, -1, -5, -2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = drop([3, 3, -1, -5, -2, -5],4)",
    "io_inp": [
      3,
      3,
      -1,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(add_n([4, 0, -4],-1),3),2),1))",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(add_n(input,-1),3),2),1))"
  },
  {
    "input": "input : list = [-4, 2, -3, 0]\noutput : list = [2, 0, -3, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(mul_n([-4, 2, -3, 0],1))),25))",
    "io_inp": [
      -4,
      2,
      -3,
      0
    ],
    "io_out": [
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(mul_n(input,1))),25))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-14, 6]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(sort_asc([-1, 1]),-5),2)),-2)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -14,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(sort_asc(input),-5),2)),-2)"
  },
  {
    "input": "input : list = [-1, 1, 3, -2, 5]\noutput : list = [6, 3, -3, -9, -15]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_asc([-1, 1, 3, -2, 5]),1))),-3)",
    "io_inp": [
      -1,
      1,
      3,
      -2,
      5
    ],
    "io_out": [
      6,
      3,
      -3,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_asc(input),1))),-3)"
  },
  {
    "input": "input : list = [1, -1, -4, 0]\noutput : list = [1]",
    "output": "generated_output : list = take(take([1, -1, -4, 0],1),8)",
    "io_inp": [
      1,
      -1,
      -4,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(input,1),8)"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [0, -7, -7]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n([-4, -4, 3],1),2),13))",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(input,1),2),13))"
  },
  {
    "input": "input : list = [3, 3, -1, 5]\noutput : list = [-2, 6, 10]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc(drop([3, 3, -1, 5],1))),36),2)",
    "io_inp": [
      3,
      3,
      -1,
      5
    ],
    "io_out": [
      -2,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(drop(input,1))),36),2)"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [6, 7, 13]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(sub_n([-2, 4, -3],-1))),5),-3)",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      6,
      7,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(sub_n(input,-1))),5),-3)"
  },
  {
    "input": "input : list = [-5, -4, 3, -3, 0, 4]\noutput : list = [4, 3, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, -4, 3, -3, 0, 4]))",
    "io_inp": [
      -5,
      -4,
      3,
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      3,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [1, 4]",
    "output": "generated_output : list = add_n(mul_n([3, 0],-1),4)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),4)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-9, -1]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n([3, -5],-4),-1)),-4),-5)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n(input,-4),-1)),-4),-5)"
  },
  {
    "input": "input : list = [3, 5, -4, 1, 4]\noutput : list = [10, 7, 2, 11, 9]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(sub_n([3, 5, -4, 1, 4],-4),2)),14),-4)",
    "io_inp": [
      3,
      5,
      -4,
      1,
      4
    ],
    "io_out": [
      10,
      7,
      2,
      11,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(sub_n(input,-4),2)),14),-4)"
  },
  {
    "input": "input : list = [-4, -3, 1, 4, -3, 0]\noutput : list = [-8, -7, -3, 0, -7, -4]",
    "output": "generated_output : list = sub_n([-4, -3, 1, 4, -3, 0],4)",
    "io_inp": [
      -4,
      -3,
      1,
      4,
      -3,
      0
    ],
    "io_out": [
      -8,
      -7,
      -3,
      0,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [1, -2, -2, 0, -1, -5]\noutput : list = [-3, 0, 3, 6, 6, 15]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(sort_des([1, -2, -2, 0, -1, -5]),-3))),30)",
    "io_inp": [
      1,
      -2,
      -2,
      0,
      -1,
      -5
    ],
    "io_out": [
      -3,
      0,
      3,
      6,
      6,
      15
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(sort_des(input),-3))),30)"
  },
  {
    "input": "input : list = [0, -1, -2, -2, -3]\noutput : list = [-1, -2, -3, -3, -4]",
    "output": "generated_output : list = add_n([0, -1, -2, -2, -3],-1)",
    "io_inp": [
      0,
      -1,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 1, -4, 2, -1]\noutput : list = [2, 5]",
    "output": "generated_output : list = sub_n(take([-2, 1, -4, 2, -1],2),-4)",
    "io_inp": [
      -2,
      1,
      -4,
      2,
      -1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [0, -5, 4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(drop([0, -5, 4, -2],2)),1)))",
    "io_inp": [
      0,
      -5,
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(drop(input,2)),1)))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(reverse(reverse([0, -5])))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [7, -2]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(reverse([5, -4])),2)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(reverse(input)),2)))"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(take([-2, -1, -4],1)))),3)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(take(input,1)))),3)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sub_n(add_n([-4, 3],-3),-4)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),-4)"
  },
  {
    "input": "input : list = [5, -1, 0, -4, -3]\noutput : list = [5, 0, -1, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([5, -1, 0, -4, -3])))",
    "io_inp": [
      5,
      -1,
      0,
      -4,
      -3
    ],
    "io_out": [
      5,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, -2, 0, -4, 4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(take([-5, -2, 0, -4, 4],1),20))",
    "io_inp": [
      -5,
      -2,
      0,
      -4,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,1),20))"
  },
  {
    "input": "input : list = [-5, 2, 3]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc([-5, 2, 3])))))",
    "io_inp": [
      -5,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -5, -5, 0, 3, 4]\noutput : list = [20, 26, 26, 16, 10, 8]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n([-2, -5, -5, 0, 3, 4],-4),3),-2),3),5)",
    "io_inp": [
      -2,
      -5,
      -5,
      0,
      3,
      4
    ],
    "io_out": [
      20,
      26,
      26,
      16,
      10,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n(input,-4),3),-2),3),5)"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [7, -18, -28]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n([-5, 2, 0],-4),-5))),2)",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      7,
      -18,
      -28
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n(input,-4),-5))),2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, 8]",
    "output": "generated_output : list = mul_n(take(sort_des(take(reverse([0, -4]),13)),29),-2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(reverse(input),13)),29),-2)"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-3, -8, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([-4, 1, -5],4)))",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,4)))"
  },
  {
    "input": "input : list = [3, 0, -1, 5]\noutput : list = [-6, -3, 6, 12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des([3, 0, -1, 5]),1),3))",
    "io_inp": [
      3,
      0,
      -1,
      5
    ],
    "io_out": [
      -6,
      -3,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(input),1),3))"
  },
  {
    "input": "input : list = [4, 2, -3, -4]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(take(add_n(take(mul_n([4, 2, -3, -4],1),9),-5),2))",
    "io_inp": [
      4,
      2,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(mul_n(input,1),9),-5),2))"
  },
  {
    "input": "input : list = [-3, 4, -1, -5, -1]\noutput : list = [3, -2, -2, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(add_n([-3, 4, -1, -5, -1],3),1),-4)),1)",
    "io_inp": [
      -3,
      4,
      -1,
      -5,
      -1
    ],
    "io_out": [
      3,
      -2,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(add_n(input,3),1),-4)),1)"
  },
  {
    "input": "input : list = [2, 4, 0, 5]\noutput : list = [5, 7, 3, 8]",
    "output": "generated_output : list = sub_n([2, 4, 0, 5],-3)",
    "io_inp": [
      2,
      4,
      0,
      5
    ],
    "io_out": [
      5,
      7,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, 4, 0, -1, 0]\noutput : list = [22, 12, 2, 2, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(mul_n([2, 4, 0, -1, 0],5))),-1),-1)",
    "io_inp": [
      2,
      4,
      0,
      -1,
      0
    ],
    "io_out": [
      22,
      12,
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(mul_n(input,5))),-1),-1)"
  },
  {
    "input": "input : list = [-5, -5, 1]\noutput : list = [-2, 10, 10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(sort_des([-5, -5, 1])))),-2)",
    "io_inp": [
      -5,
      -5,
      1
    ],
    "io_out": [
      -2,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [3, -1, -4, -1]\noutput : list = [-25]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(take([3, -1, -4, -1],1),2),25),-4),-5)",
    "io_inp": [
      3,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(take(input,1),2),25),-4),-5)"
  },
  {
    "input": "input : list = [1, 5, 1, -4, -4, -1]\noutput : list = [30, 10, 10, 0, -15, -15]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(sort_des([1, 5, 1, -4, -4, -1]),7),3),2),5)",
    "io_inp": [
      1,
      5,
      1,
      -4,
      -4,
      -1
    ],
    "io_out": [
      30,
      10,
      10,
      0,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(sort_des(input),7),3),2),5)"
  },
  {
    "input": "input : list = [0, 1, -5, 5, -4]\noutput : list = [5, 1, 0, -4, -5]",
    "output": "generated_output : list = sort_des([0, 1, -5, 5, -4])",
    "io_inp": [
      0,
      1,
      -5,
      5,
      -4
    ],
    "io_out": [
      5,
      1,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 4, 1, -3, -3]\noutput : list = [11, 9, 5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(take([3, 4, 1, -3, -3],3),2),1)),-4)",
    "io_inp": [
      3,
      4,
      1,
      -3,
      -3
    ],
    "io_out": [
      11,
      9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(take(input,3),2),1)),-4)"
  },
  {
    "input": "input : list = [-3, 1, -5, 1, -3]\noutput : list = [-9, -11]",
    "output": "generated_output : list = drop(sub_n(add_n(sort_des(sort_asc([-3, 1, -5, 1, -3])),-3),3),3)",
    "io_inp": [
      -3,
      1,
      -5,
      1,
      -3
    ],
    "io_out": [
      -9,
      -11
    ],
    "output_masked": "generated_output : list = drop(sub_n(add_n(sort_des(sort_asc(input)),-3),3),3)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [12]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(take([5, -2, -1],1),-2)),-5))",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(take(input,1),-2)),-5))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(sort_des([-3, -1]),-5),3),5),-5)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(sort_des(input),-5),3),5),-5)"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [0, 7, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(reverse([5, 5, -2]))),-2))",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      0,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(reverse(input))),-2))"
  },
  {
    "input": "input : list = [-2, -5, -1, -2, 5, 0]\noutput : list = [5, 0, -1, -2, -2, -5]",
    "output": "generated_output : list = sort_des([-2, -5, -1, -2, 5, 0])",
    "io_inp": [
      -2,
      -5,
      -1,
      -2,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      -1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, -1, 0, 3]\noutput : list = [-144, 240]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(take([5, -3, -1, 0, 3],2),-4)),4),-3)",
    "io_inp": [
      5,
      -3,
      -1,
      0,
      3
    ],
    "io_out": [
      -144,
      240
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(take(input,2),-4)),4),-3)"
  },
  {
    "input": "input : list = [3, -4, 3, 1]\noutput : list = [85, -15, -55, -55]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(mul_n([3, -4, 3, 1],5),-4),26),5))",
    "io_inp": [
      3,
      -4,
      3,
      1
    ],
    "io_out": [
      85,
      -15,
      -55,
      -55
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(mul_n(input,5),-4),26),5))"
  },
  {
    "input": "input : list = [0, 2, -3, 4, -2, -4]\noutput : list = [4, 2, 0, -2, -3, -4]",
    "output": "generated_output : list = take(sort_des([0, 2, -3, 4, -2, -4]),27)",
    "io_inp": [
      0,
      2,
      -3,
      4,
      -2,
      -4
    ],
    "io_out": [
      4,
      2,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),27)"
  },
  {
    "input": "input : list = [-5, 4, -1, 4, 4]\noutput : list = [4, 4, -1]",
    "output": "generated_output : list = sort_des(take(drop([-5, 4, -1, 4, 4],2),18))",
    "io_inp": [
      -5,
      4,
      -1,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,2),18))"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [4, 4, 8]",
    "output": "generated_output : list = sub_n([0, 0, 4],-4)",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 2, 5, 1]\noutput : list = [1, 5, 2, 3]",
    "output": "generated_output : list = reverse([3, 2, 5, 1])",
    "io_inp": [
      3,
      2,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4, 2, -5, 4, 5]\noutput : list = [-6, -5, 1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(take([5, -4, 2, -5, 4, 5],4))),1))",
    "io_inp": [
      5,
      -4,
      2,
      -5,
      4,
      5
    ],
    "io_out": [
      -6,
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(take(input,4))),1))"
  },
  {
    "input": "input : list = [0, 4, 0, -4]\noutput : list = [-3, 1, -3, -7]",
    "output": "generated_output : list = sub_n([0, 4, 0, -4],3)",
    "io_inp": [
      0,
      4,
      0,
      -4
    ],
    "io_out": [
      -3,
      1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, -2, 4, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(sort_des(drop([4, -2, 4, 3, 2],3)),11)",
    "io_inp": [
      4,
      -2,
      4,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,3)),11)"
  },
  {
    "input": "input : list = [-4, -3, -5, 3, 1]\noutput : list = [-5, -4, -3, 1, 3]",
    "output": "generated_output : list = sort_asc([-4, -3, -5, 3, 1])",
    "io_inp": [
      -4,
      -3,
      -5,
      3,
      1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, -5, 3, -3, 4]\noutput : list = [-5, -4, -3, 3, 3, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-4, 3, -5, 3, -3, 4])),27)",
    "io_inp": [
      -4,
      3,
      -5,
      3,
      -3,
      4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),27)"
  },
  {
    "input": "input : list = [-5, 2, -5, -1, -2]\noutput : list = [4, 4, 1, 0, -3]",
    "output": "generated_output : list = add_n(mul_n(sub_n(reverse(sort_des([-5, 2, -5, -1, -2])),2),-1),-3)",
    "io_inp": [
      -5,
      2,
      -5,
      -1,
      -2
    ],
    "io_out": [
      4,
      4,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(reverse(sort_des(input)),2),-1),-3)"
  },
  {
    "input": "input : list = [-3, 0, -5, 1, 5, 4]\noutput : list = [-5, -3, 0, 1]",
    "output": "generated_output : list = sort_asc(take([-3, 0, -5, 1, 5, 4],4))",
    "io_inp": [
      -3,
      0,
      -5,
      1,
      5,
      4
    ],
    "io_out": [
      -5,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,4))"
  },
  {
    "input": "input : list = [-2, -4, 2, 5, -4, 4]\noutput : list = [4, -4, 5, 2, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, 2, 5, -4, 4])",
    "io_inp": [
      -2,
      -4,
      2,
      5,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      5,
      2,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, -5, -4, 5]\noutput : list = [-1, 0, 0, 4, 9]",
    "output": "generated_output : list = take(take(sort_asc(sub_n([0, -4, -5, -4, 5],-4)),20),41)",
    "io_inp": [
      0,
      -4,
      -5,
      -4,
      5
    ],
    "io_out": [
      -1,
      0,
      0,
      4,
      9
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(input,-4)),20),41)"
  },
  {
    "input": "input : list = [-5, 1, 3, 1, 5]\noutput : list = [-8, -2, -2, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(reverse([-5, 1, 3, 1, 5])),1)),-3)",
    "io_inp": [
      -5,
      1,
      3,
      1,
      5
    ],
    "io_out": [
      -8,
      -2,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(reverse(input)),1)),-3)"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([2, -2, 3])),-1)",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [0, 5, -3, -4]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(take([0, 5, -3, -4],1),4)),1),-5)",
    "io_inp": [
      0,
      5,
      -3,
      -4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(take(input,1),4)),1),-5)"
  },
  {
    "input": "input : list = [-1, 2, 0, -5, 2, 0]\noutput : list = [2, 2, 0, 0, -1, -5]",
    "output": "generated_output : list = reverse(sort_asc([-1, 2, 0, -5, 2, 0]))",
    "io_inp": [
      -1,
      2,
      0,
      -5,
      2,
      0
    ],
    "io_out": [
      2,
      2,
      0,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 4, 2, 0, 5]\noutput : list = [1, 3, 5, 0]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(drop([0, 4, 2, 0, 5],1),-1),-1),21),-4)",
    "io_inp": [
      0,
      4,
      2,
      0,
      5
    ],
    "io_out": [
      1,
      3,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(drop(input,1),-1),-1),21),-4)"
  },
  {
    "input": "input : list = [1, -1, -2, 2, 2]\noutput : list = [-2, -1, 1, 2, 2]",
    "output": "generated_output : list = take(sort_asc([1, -1, -2, 2, 2]),21)",
    "io_inp": [
      1,
      -1,
      -2,
      2,
      2
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),21)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([3, 2]),2),4)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),2),4)"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [-9, -7, 3]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des([5, -1, 4]),-2),-1),-1),1)",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      -9,
      -7,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des(input),-2),-1),-1),1)"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [6, 7, 10]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n([1, 2, 5],1),-1),-3)))",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n(input,1),-1),-3)))"
  },
  {
    "input": "input : list = [3, -4, 3, -4, 0]\noutput : list = [-32, 24, -32, 24, -8]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n(mul_n([3, -4, 3, -4, 0],2),-1),-2),4),16)",
    "io_inp": [
      3,
      -4,
      3,
      -4,
      0
    ],
    "io_out": [
      -32,
      24,
      -32,
      24,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(mul_n(input,2),-1),-2),4),16)"
  },
  {
    "input": "input : list = [4, -4, -4, 2]\noutput : list = [7, -1, -1, 5]",
    "output": "generated_output : list = add_n([4, -4, -4, 2],3)",
    "io_inp": [
      4,
      -4,
      -4,
      2
    ],
    "io_out": [
      7,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, -4, -5, 0]\noutput : list = [-4, -5, -8, -9]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sub_n([-1, -4, -5, 0],4)))))",
    "io_inp": [
      -1,
      -4,
      -5,
      0
    ],
    "io_out": [
      -4,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [-1, -5, 4, 0, -3]\noutput : list = [4, 0, -1, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse([-1, -5, 4, 0, -3])))",
    "io_inp": [
      -1,
      -5,
      4,
      0,
      -3
    ],
    "io_out": [
      4,
      0,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 0, 3, -1, -2, 0]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(drop(add_n([-1, 0, 3, -1, -2, 0],3),4))",
    "io_inp": [
      -1,
      0,
      3,
      -1,
      -2,
      0
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(input,3),4))"
  },
  {
    "input": "input : list = [-1, 1, 4]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = take(sort_des(take(take(sub_n([-1, 1, 4],2),14),3)),7)",
    "io_inp": [
      -1,
      1,
      4
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(sub_n(input,2),14),3)),7)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sort_des([5, 3]))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [0, -30]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([4, -2]),-2),-5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      0,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),-2),-5)"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(sort_des([-3, 1, -2]),-4),1),1))",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(sort_des(input),-4),1),1))"
  },
  {
    "input": "input : list = [3, -4, 1, 2]\noutput : list = [3, 2, 1, -4]",
    "output": "generated_output : list = sort_des([3, -4, 1, 2])",
    "io_inp": [
      3,
      -4,
      1,
      2
    ],
    "io_out": [
      3,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, -2, -5, 4]\noutput : list = [12, 4]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(take([4, -4, -2, -5, 4],2)),25),-3),5)",
    "io_inp": [
      4,
      -4,
      -2,
      -5,
      4
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(take(input,2)),25),-3),5)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [7, 6, 2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(reverse([-3, 1, 2]),-3),-1),-3),-4)",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      7,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(reverse(input),-3),-1),-3),-4)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [0, 5]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse([4, -1]),4),-1)),34)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse(input),4),-1)),34)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-5, 2, 5]",
    "output": "generated_output : list = sort_asc([5, -5, 2])",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2, -2, -4, 2]\noutput : list = [6, -6, 6, 12, -6]",
    "output": "generated_output : list = mul_n([-2, 2, -2, -4, 2],-3)",
    "io_inp": [
      -2,
      2,
      -2,
      -4,
      2
    ],
    "io_out": [
      6,
      -6,
      6,
      12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -2, 5, 5, -5]\noutput : list = [-6, -3, -3, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(add_n([-2, -2, 5, 5, -5],-1)))))",
    "io_inp": [
      -2,
      -2,
      5,
      5,
      -5
    ],
    "io_out": [
      -6,
      -3,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [0, 2, -1, 4, -5, -4]\noutput : list = [0, 2, -1, 4]",
    "output": "generated_output : list = take([0, 2, -1, 4, -5, -4],4)",
    "io_inp": [
      0,
      2,
      -1,
      4,
      -5,
      -4
    ],
    "io_out": [
      0,
      2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-3, -3, 4, 3]\noutput : list = [8, 8, -16, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(sub_n([-3, -3, 4, 3],-1),-1))),4)",
    "io_inp": [
      -3,
      -3,
      4,
      3
    ],
    "io_out": [
      8,
      8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(sub_n(input,-1),-1))),4)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [15, -3]",
    "output": "generated_output : list = sort_des(mul_n([-5, 1],-3))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      15,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-2, 1, 3, 5, -4]\noutput : list = [-5, -3, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n([-2, 1, 3, 5, -4],1))",
    "io_inp": [
      -2,
      1,
      3,
      5,
      -4
    ],
    "io_out": [
      -5,
      -3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-5, -3, -2, -3, 0, 5]\noutput : list = [3, -2, -4, -5, -5, -7]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n([-5, -3, -2, -3, 0, 5],1),-2)))",
    "io_inp": [
      -5,
      -3,
      -2,
      -3,
      0,
      5
    ],
    "io_out": [
      3,
      -2,
      -4,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(input,1),-2)))"
  },
  {
    "input": "input : list = [-5, 2, 5, -4, 1, -5]\noutput : list = [-1, 5, 0, 9, 6, -1]",
    "output": "generated_output : list = reverse(add_n([-5, 2, 5, -4, 1, -5],4))",
    "io_inp": [
      -5,
      2,
      5,
      -4,
      1,
      -5
    ],
    "io_out": [
      -1,
      5,
      0,
      9,
      6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [3, -3, -2, 3, -2, 3]\noutput : list = [2, 3, 8, 8]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(take([3, -3, -2, 3, -2, 3],4),-3)),-3),-1)",
    "io_inp": [
      3,
      -3,
      -2,
      3,
      -2,
      3
    ],
    "io_out": [
      2,
      3,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(take(input,4),-3)),-3),-1)"
  },
  {
    "input": "input : list = [0, 4, 4, -4]\noutput : list = [24, 4, -16, -16]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc([0, 4, 4, -4]),-5),-1)),5)",
    "io_inp": [
      0,
      4,
      4,
      -4
    ],
    "io_out": [
      24,
      4,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc(input),-5),-1)),5)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [1, 7]",
    "output": "generated_output : list = sub_n(reverse([3, -3]),-4)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des([2, 3])),15))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(input)),15))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des([-1, -4]))))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [2, -1, 4, 4, 2]\noutput : list = [2, 4, 4, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, 4, 4, 2])",
    "io_inp": [
      2,
      -1,
      4,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-2, -12, -12]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-5, -5, 0],1),2))",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -2,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,1),2))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc(add_n(add_n([-3, -3],-5),5))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,-5),5))"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [-13, -4, 2]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(sub_n([4, -1, 1],3),4)),-3),2)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      -13,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(sub_n(input,3),4)),-3),2)"
  },
  {
    "input": "input : list = [0, -4, 5, 1]\noutput : list = [-3, 1, 2, 6]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(sub_n([0, -4, 5, 1],1)),-1),1))",
    "io_inp": [
      0,
      -4,
      5,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(sub_n(input,1)),-1),1))"
  },
  {
    "input": "input : list = [-4, 2, 1, 3]\noutput : list = [-3, 2, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(sort_asc([-4, 2, 1, 3]),3),2)),4)",
    "io_inp": [
      -4,
      2,
      1,
      3
    ],
    "io_out": [
      -3,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(sort_asc(input),3),2)),4)"
  },
  {
    "input": "input : list = [-2, 5, 5, -5, -1]\noutput : list = [10, 18, -2, -2, 12]",
    "output": "generated_output : list = mul_n(add_n(reverse([-2, 5, 5, -5, -1]),-4),-2)",
    "io_inp": [
      -2,
      5,
      5,
      -5,
      -1
    ],
    "io_out": [
      10,
      18,
      -2,
      -2,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-4),-2)"
  },
  {
    "input": "input : list = [-3, -3, 5, 4]\noutput : list = [-3, -3, 5, 4]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(sub_n([-3, -3, 5, 4],2),-5),-1),11),2)",
    "io_inp": [
      -3,
      -3,
      5,
      4
    ],
    "io_out": [
      -3,
      -3,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(sub_n(input,2),-5),-1),11),2)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des([-1, 1, -4]))",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 2, -1, 2]\noutput : list = [-2, -2, 7, 13]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(mul_n([-3, 2, -1, 2],-3),16)),4))",
    "io_inp": [
      -3,
      2,
      -1,
      2
    ],
    "io_out": [
      -2,
      -2,
      7,
      13
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(mul_n(input,-3),16)),4))"
  },
  {
    "input": "input : list = [-2, -3, -4, 1, -4, -4]\noutput : list = [-5, -6, -7, -2, -7, -7]",
    "output": "generated_output : list = sub_n([-2, -3, -4, 1, -4, -4],3)",
    "io_inp": [
      -2,
      -3,
      -4,
      1,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -2,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(take([-5, -2, 1],1)),-5),20))",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(take(input,1)),-5),20))"
  },
  {
    "input": "input : list = [3, 5, -3, -5, -4]\noutput : list = [-15, -25, -20]",
    "output": "generated_output : list = mul_n(drop([3, 5, -3, -5, -4],2),5)",
    "io_inp": [
      3,
      5,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -15,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [4, -1, 1, 5]\noutput : list = [4, 2, -4, -8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse(sub_n([4, -1, 1, 5],-1)),-4)),2)",
    "io_inp": [
      4,
      -1,
      1,
      5
    ],
    "io_out": [
      4,
      2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(sub_n(input,-1)),-4)),2)"
  },
  {
    "input": "input : list = [3, 4, -2, 3, 1]\noutput : list = [7, 8, 2, 7, 5]",
    "output": "generated_output : list = sub_n([3, 4, -2, 3, 1],-4)",
    "io_inp": [
      3,
      4,
      -2,
      3,
      1
    ],
    "io_out": [
      7,
      8,
      2,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, 0, 3, 5]\noutput : list = [0, 3, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des([5, 0, 3, 5])))",
    "io_inp": [
      5,
      0,
      3,
      5
    ],
    "io_out": [
      0,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(drop([1, -1, 1],1)),-2)))",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(drop(input,1)),-2)))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_asc([4, 0]))),-2))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [5, -3, -5, -1, 3, -5]\noutput : list = [-13, -9, -1, 3, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(sort_asc([5, -3, -5, -1, 3, -5]),26),-2)),3)",
    "io_inp": [
      5,
      -3,
      -5,
      -1,
      3,
      -5
    ],
    "io_out": [
      -13,
      -9,
      -1,
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(sort_asc(input),26),-2)),3)"
  },
  {
    "input": "input : list = [0, -1, 3, -5]\noutput : list = [-5, 3, -1, 0]",
    "output": "generated_output : list = reverse([0, -1, 3, -5])",
    "io_inp": [
      0,
      -1,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [45, 33]",
    "output": "generated_output : list = add_n(take(mul_n(add_n(sub_n([-3, 0],2),-5),-4),6),5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      45,
      33
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(add_n(sub_n(input,2),-5),-4),6),5)"
  },
  {
    "input": "input : list = [4, -2, -5, 4, 2]\noutput : list = [-2, -4, 5, 2, -4]",
    "output": "generated_output : list = mul_n(reverse([4, -2, -5, 4, 2]),-1)",
    "io_inp": [
      4,
      -2,
      -5,
      4,
      2
    ],
    "io_out": [
      -2,
      -4,
      5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [2, -3, 0, -1, 4, -1]\noutput : list = [-1, 4, -1]",
    "output": "generated_output : list = take(reverse([2, -3, 0, -1, 4, -1]),3)",
    "io_inp": [
      2,
      -3,
      0,
      -1,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),3)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [7, 7, -1]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(sort_asc([5, 5, -3]),15),2)),1)",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      7,
      7,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(sort_asc(input),15),2)),1)"
  },
  {
    "input": "input : list = [2, 4, 2, -4, 1, 0]\noutput : list = [2, 3, 3, 5]",
    "output": "generated_output : list = drop(sub_n(take(reverse(sort_des([2, 4, 2, -4, 1, 0])),28),-1),2)",
    "io_inp": [
      2,
      4,
      2,
      -4,
      1,
      0
    ],
    "io_out": [
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(sub_n(take(reverse(sort_des(input)),28),-1),2)"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des(sort_asc([5, 4, -5]))",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -4, -3, 1, 0]\noutput : list = [1, 2, 5, 6, 6]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(add_n([-4, -4, -3, 1, 0],1),-1),3)),20)",
    "io_inp": [
      -4,
      -4,
      -3,
      1,
      0
    ],
    "io_out": [
      1,
      2,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(add_n(input,1),-1),3)),20)"
  },
  {
    "input": "input : list = [5, -3, -1, -1, -4, -3]\noutput : list = [2, 3, 3, 5, 5, 11]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(sub_n([5, -3, -1, -1, -4, -3],-3),-5),19),2))",
    "io_inp": [
      5,
      -3,
      -1,
      -1,
      -4,
      -3
    ],
    "io_out": [
      2,
      3,
      3,
      5,
      5,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(sub_n(input,-3),-5),19),2))"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [120, 60, 120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([4, 2, 4],2),3),5)",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      120,
      60,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,2),3),5)"
  },
  {
    "input": "input : list = [-1, -2, -4, -5, -3]\noutput : list = [2, 4, 6, 8, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n([-1, -2, -4, -5, -3],-2))))",
    "io_inp": [
      -1,
      -2,
      -4,
      -5,
      -3
    ],
    "io_out": [
      2,
      4,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(input,-2))))"
  },
  {
    "input": "input : list = [-2, 5, -3, 0, -1, 5]\noutput : list = [8, 2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(drop([-2, 5, -3, 0, -1, 5],4),-1),-2)))",
    "io_inp": [
      -2,
      5,
      -3,
      0,
      -1,
      5
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(drop(input,4),-1),-2)))"
  },
  {
    "input": "input : list = [1, 5, 4, 1, 1, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(take([1, 5, 4, 1, 1, -1],2),5),-4),-2))",
    "io_inp": [
      1,
      5,
      4,
      1,
      1,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(take(input,2),5),-4),-2))"
  },
  {
    "input": "input : list = [-4, 3, 1, 1, -5]\noutput : list = [3, 1, 1, -4, -5]",
    "output": "generated_output : list = sort_des([-4, 3, 1, 1, -5])",
    "io_inp": [
      -4,
      3,
      1,
      1,
      -5
    ],
    "io_out": [
      3,
      1,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, -4, -5, 5, -2]\noutput : list = [-4, -3, 3, 3]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sort_des([-1, 5, -4, -5, 5, -2]),4),38)),-2)",
    "io_inp": [
      -1,
      5,
      -4,
      -5,
      5,
      -2
    ],
    "io_out": [
      -4,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sort_des(input),4),38)),-2)"
  },
  {
    "input": "input : list = [0, -1, 4, 0, 4, -3]\noutput : list = [24, 18, 15, 15, 3, 3]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([0, -1, 4, 0, 4, -3]),-5),-3)",
    "io_inp": [
      0,
      -1,
      4,
      0,
      4,
      -3
    ],
    "io_out": [
      24,
      18,
      15,
      15,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),-5),-3)"
  },
  {
    "input": "input : list = [-1, 5, -1, 5]\noutput : list = [-1, -1, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([-1, 5, -1, 5]))",
    "io_inp": [
      -1,
      5,
      -1,
      5
    ],
    "io_out": [
      -1,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 3, -2, 0, -4]\noutput : list = [-3, 0, 1, 2, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_asc([-1, 3, -2, 0, -4]),-1))),44)",
    "io_inp": [
      -1,
      3,
      -2,
      0,
      -4
    ],
    "io_out": [
      -3,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_asc(input),-1))),44)"
  },
  {
    "input": "input : list = [5, -1, 1, 3, -3, 5]\noutput : list = [-5, -3, -1, 1, 3, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(sort_asc([5, -1, 1, 3, -3, 5])))),2)",
    "io_inp": [
      5,
      -1,
      1,
      3,
      -3,
      5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [-2, -6, -5]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(sub_n([-3, -4, 0],-5),15)),2),-5)",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      -2,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(sub_n(input,-5),15)),2),-5)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [72, 36]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n(mul_n([-2, -4],-2),3)),21),3)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      72,
      36
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(mul_n(input,-2),3)),21),3)"
  },
  {
    "input": "input : list = [4, 0, -3, 3, -1]\noutput : list = [5, 1, -2, 4, 0]",
    "output": "generated_output : list = sub_n([4, 0, -3, 3, -1],-1)",
    "io_inp": [
      4,
      0,
      -3,
      3,
      -1
    ],
    "io_out": [
      5,
      1,
      -2,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, 3, 2, -1]\noutput : list = [-1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([5, 3, 2, -1]),1))",
    "io_inp": [
      5,
      3,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [4, -5, 3, -5]\noutput : list = [-5, -5, 3, 4]",
    "output": "generated_output : list = sort_asc([4, -5, 3, -5])",
    "io_inp": [
      4,
      -5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, -1, -5]\noutput : list = [-2, 1, 2, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-2, 3, -1, -5]),1),-3)",
    "io_inp": [
      -2,
      3,
      -1,
      -5
    ],
    "io_out": [
      -2,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),1),-3)"
  },
  {
    "input": "input : list = [2, 1, 5, -2, 1]\noutput : list = [-148, -88, -328, 92, -88]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(mul_n([2, 1, 5, -2, 1],-5),2),-3),-4),4)",
    "io_inp": [
      2,
      1,
      5,
      -2,
      1
    ],
    "io_out": [
      -148,
      -88,
      -328,
      92,
      -88
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(mul_n(input,-5),2),-3),-4),4)"
  },
  {
    "input": "input : list = [2, -3, 3, -5, 2]\noutput : list = [-5, -3, 2, 2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des([2, -3, 3, -5, 2])),8)",
    "io_inp": [
      2,
      -3,
      3,
      -5,
      2
    ],
    "io_out": [
      -5,
      -3,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),8)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [0, 1]",
    "output": "generated_output : list = drop(reverse([1, 0, -5]),1)",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(reverse(input),1)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-20, -12]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(add_n([2, 4],-5),4)),-3),5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -20,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(add_n(input,-5),4)),-3),5)"
  },
  {
    "input": "input : list = [-3, -5, 5, 2, 0]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = reverse(drop([-3, -5, 5, 2, 0],2))",
    "io_inp": [
      -3,
      -5,
      5,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [4, 5, -4, -5, 5]\noutput : list = [60, 60, 48, -48, -60]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(sort_asc([4, 5, -4, -5, 5]),3),4)),20)",
    "io_inp": [
      4,
      5,
      -4,
      -5,
      5
    ],
    "io_out": [
      60,
      60,
      48,
      -48,
      -60
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(sort_asc(input),3),4)),20)"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [8, 4, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(sub_n([4, 0, -5],-4)))))",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      8,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [5, -3, -4, -4]\noutput : list = [19, 19, 14, -26]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des([5, -3, -4, -4])),-5),-1)",
    "io_inp": [
      5,
      -3,
      -4,
      -4
    ],
    "io_out": [
      19,
      19,
      14,
      -26
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(input)),-5),-1)"
  },
  {
    "input": "input : list = [-3, -4, -5, -1, 4, 1]\noutput : list = [-5, -6, -7, -3, 2, -1]",
    "output": "generated_output : list = sub_n([-3, -4, -5, -1, 4, 1],2)",
    "io_inp": [
      -3,
      -4,
      -5,
      -1,
      4,
      1
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [20, 16, 16]",
    "output": "generated_output : list = take(mul_n(sort_des(take(mul_n([-4, -4, -5],-1),20)),4),41)",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      20,
      16,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(mul_n(input,-1),20)),4),41)"
  },
  {
    "input": "input : list = [-5, -1, 5, -5]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(take([-5, -1, 5, -5],1),3)),4),3)",
    "io_inp": [
      -5,
      -1,
      5,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(take(input,1),3)),4),3)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [7, 6]",
    "output": "generated_output : list = add_n(take(sort_des(take(sub_n([4, 5],3),6)),26),5)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(sub_n(input,3),6)),26),5)"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [25, 20]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(sort_des([-4, -1, -5])),-5),2),3)",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      25,
      20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(sort_des(input)),-5),2),3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(sub_n([1, 0],-3),4))),34)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(sub_n(input,-3),4))),34)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [7, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([3, -3]),-4))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [-1, 0, -3, -3, 3, 3]\noutput : list = [-6, -6, -3, 0, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(drop([-1, 0, -3, -3, 3, 3],1))),3))",
    "io_inp": [
      -1,
      0,
      -3,
      -3,
      3,
      3
    ],
    "io_out": [
      -6,
      -6,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(drop(input,1))),3))"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [1, 2, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc([2, 3, 3]))),-1)",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(input))),-1)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [9, 1]",
    "output": "generated_output : list = sub_n(reverse([-4, 4]),-5)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [60, -80]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_asc([4, -3])),4),-5))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      60,
      -80
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_asc(input)),4),-5))"
  },
  {
    "input": "input : list = [-3, -1, 1, 1]\noutput : list = [-2, -2, 2, 6]",
    "output": "generated_output : list = mul_n(reverse([-3, -1, 1, 1]),-2)",
    "io_inp": [
      -3,
      -1,
      1,
      1
    ],
    "io_out": [
      -2,
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [36, 18, 0]",
    "output": "generated_output : list = mul_n(add_n(take(take(mul_n([5, 3, 1],3),7),21),-3),3)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      36,
      18,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(mul_n(input,3),7),21),-3),3)"
  },
  {
    "input": "input : list = [1, 4, -4, -5, 2]\noutput : list = [3, 9, 12, 27, 30]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_des([1, 4, -4, -5, 2])),5)),-3)",
    "io_inp": [
      1,
      4,
      -4,
      -5,
      2
    ],
    "io_out": [
      3,
      9,
      12,
      27,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_des(input)),5)),-3)"
  },
  {
    "input": "input : list = [-5, 5, 0]\noutput : list = [23, -2, -27]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse([-5, 5, 0]),-5)),-2)",
    "io_inp": [
      -5,
      5,
      0
    ],
    "io_out": [
      23,
      -2,
      -27
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(input),-5)),-2)"
  },
  {
    "input": "input : list = [4, 0, 1, 0, -2]\noutput : list = [0, -2, -2, -3, -6]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_des([4, 0, 1, 0, -2]),-1)),-2))",
    "io_inp": [
      4,
      0,
      1,
      0,
      -2
    ],
    "io_out": [
      0,
      -2,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_des(input),-1)),-2))"
  },
  {
    "input": "input : list = [1, 1, -3, 2, 1, 5]\noutput : list = [-1, -1, -5, 0, -1, 3]",
    "output": "generated_output : list = add_n([1, 1, -3, 2, 1, 5],-2)",
    "io_inp": [
      1,
      1,
      -3,
      2,
      1,
      5
    ],
    "io_out": [
      -1,
      -1,
      -5,
      0,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [0, -1, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse(reverse(drop(sort_asc([0, -1, -1]),1)))",
    "io_inp": [
      0,
      -1,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(sort_asc(input),1)))"
  },
  {
    "input": "input : list = [-4, -4, 1, -2]\noutput : list = [48, 48]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(mul_n([-4, -4, 1, -2],-3),2),-1),1),4)",
    "io_inp": [
      -4,
      -4,
      1,
      -2
    ],
    "io_out": [
      48,
      48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(mul_n(input,-3),2),-1),1),4)"
  },
  {
    "input": "input : list = [5, 5, -5, 5, -3]\noutput : list = [5, 5, 5, -3, -5]",
    "output": "generated_output : list = sort_des([5, 5, -5, 5, -3])",
    "io_inp": [
      5,
      5,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [9, 5]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sub_n([1, -3],-5),10),22),-3))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sub_n(input,-5),10),22),-3))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [20, -15]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(sub_n([5, -2],2),-5),21)))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      20,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(sub_n(input,2),-5),21)))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc([1, -3])",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, -4, -1, -4]\noutput : list = [11, 11, 10, 8, 4]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(sort_asc([3, -3, -4, -1, -4]),-1),17),-2),5)",
    "io_inp": [
      3,
      -3,
      -4,
      -1,
      -4
    ],
    "io_out": [
      11,
      11,
      10,
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(sort_asc(input),-1),17),-2),5)"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [18, 63, 18]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(mul_n([-1, -4, -1],-3),1),23),5),2)",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      18,
      63,
      18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(mul_n(input,-3),1),23),5),2)"
  },
  {
    "input": "input : list = [3, 4, -1, -3, -3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = reverse(sub_n(drop([3, 4, -1, -3, -3, -3],4),3))",
    "io_inp": [
      3,
      4,
      -1,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,4),3))"
  },
  {
    "input": "input : list = [-5, 3, 3]\noutput : list = [3, 3, -5]",
    "output": "generated_output : list = reverse([-5, 3, 3])",
    "io_inp": [
      -5,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [0, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sub_n(sort_asc([5, 5, 2]),3),-2)))",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sub_n(sort_asc(input),3),-2)))"
  },
  {
    "input": "input : list = [-3, -2, 3, 0, 2]\noutput : list = [15, 10, -15, 0, -10]",
    "output": "generated_output : list = mul_n([-3, -2, 3, 0, 2],-5)",
    "io_inp": [
      -3,
      -2,
      3,
      0,
      2
    ],
    "io_out": [
      15,
      10,
      -15,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, 1, 0, 5, 5]\noutput : list = [6, 6, 1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(drop([3, 1, 0, 5, 5],2)),-4)),3)",
    "io_inp": [
      3,
      1,
      0,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(drop(input,2)),-4)),3)"
  },
  {
    "input": "input : list = [-2, 2, 5]\noutput : list = [-6, 0, 8]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(add_n([-2, 2, 5],-2)),1)),-2)",
    "io_inp": [
      -2,
      2,
      5
    ],
    "io_out": [
      -6,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(add_n(input,-2)),1)),-2)"
  },
  {
    "input": "input : list = [0, -5, 4, 1, -2, 5]\noutput : list = [-5, -2, 0, 1, 4, 5]",
    "output": "generated_output : list = sort_asc([0, -5, 4, 1, -2, 5])",
    "io_inp": [
      0,
      -5,
      4,
      1,
      -2,
      5
    ],
    "io_out": [
      -5,
      -2,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(sub_n([5, 2],-2)))),-2)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(sub_n(input,-2)))),-2)"
  },
  {
    "input": "input : list = [2, -5, -5, -5, 1]\noutput : list = [-2, -9, -9, -9, -3]",
    "output": "generated_output : list = add_n([2, -5, -5, -5, 1],-4)",
    "io_inp": [
      2,
      -5,
      -5,
      -5,
      1
    ],
    "io_out": [
      -2,
      -9,
      -9,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, -2, -5, 1, -1, 4]\noutput : list = [-1, -4, -5, -6, -7, -10]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(reverse([0, -2, -5, 1, -1, 4]),15)),2),3)",
    "io_inp": [
      0,
      -2,
      -5,
      1,
      -1,
      4
    ],
    "io_out": [
      -1,
      -4,
      -5,
      -6,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(reverse(input),15)),2),3)"
  },
  {
    "input": "input : list = [2, -4, -4, -5, -5, 5]\noutput : list = [-5, -5, -4, -4, 2, 5]",
    "output": "generated_output : list = sort_asc([2, -4, -4, -5, -5, 5])",
    "io_inp": [
      2,
      -4,
      -4,
      -5,
      -5,
      5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -3, 1, 2]\noutput : list = [15, -5, -10, -10]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des([2, -3, 1, 2])),-5))",
    "io_inp": [
      2,
      -3,
      1,
      2
    ],
    "io_out": [
      15,
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(input)),-5))"
  },
  {
    "input": "input : list = [-4, -3, 3, -2]\noutput : list = [-5, 10]",
    "output": "generated_output : list = add_n(mul_n(mul_n(drop([-4, -3, 3, -2],2),3),-1),4)",
    "io_inp": [
      -4,
      -3,
      3,
      -2
    ],
    "io_out": [
      -5,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(drop(input,2),3),-1),4)"
  },
  {
    "input": "input : list = [-2, 5, 4, 2, -2]\noutput : list = [30, 30, 10, 0, -5]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n(add_n([-2, 5, 4, 2, -2],-4),-5)),19))",
    "io_inp": [
      -2,
      5,
      4,
      2,
      -2
    ],
    "io_out": [
      30,
      30,
      10,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(add_n(input,-4),-5)),19))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-5, -25]",
    "output": "generated_output : list = reverse(mul_n([5, 1],-5))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -5,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-4, -5, 4, -1, -1, 1]\noutput : list = [1, 0, 9, 4, 4, 6]",
    "output": "generated_output : list = sub_n([-4, -5, 4, -1, -1, 1],-5)",
    "io_inp": [
      -4,
      -5,
      4,
      -1,
      -1,
      1
    ],
    "io_out": [
      1,
      0,
      9,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, -3, -3, -1]\noutput : list = [-5, -6, -8, -8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(sort_asc([0, -3, -3, -1]))),-3),2)",
    "io_inp": [
      0,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(sort_asc(input))),-3),2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse([2, 2])",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2, 3, 5]\noutput : list = [5, 3, 2]",
    "output": "generated_output : list = sort_des(drop(reverse([5, 2, 3, 5]),1))",
    "io_inp": [
      5,
      2,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(drop(reverse(input),1))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take(sort_asc([-4, -2]),16)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),16)"
  },
  {
    "input": "input : list = [2, -1, 0]\noutput : list = [2, -2]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(drop([2, -1, 0],1))),4),2)",
    "io_inp": [
      2,
      -1,
      0
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(drop(input,1))),4),2)"
  },
  {
    "input": "input : list = [-4, 4, -1, -3]\noutput : list = [12, 7, 5, 4]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(sort_asc([-4, 4, -1, -3]),4)),23),4)",
    "io_inp": [
      -4,
      4,
      -1,
      -3
    ],
    "io_out": [
      12,
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(sort_asc(input),4)),23),4)"
  },
  {
    "input": "input : list = [2, 1, -2, 0, 1, -5]\noutput : list = [5, 4, 1, 3, 4, -2]",
    "output": "generated_output : list = add_n([2, 1, -2, 0, 1, -5],3)",
    "io_inp": [
      2,
      1,
      -2,
      0,
      1,
      -5
    ],
    "io_out": [
      5,
      4,
      1,
      3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-9, -3]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([-3, -1])),3)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [-2, 4, -1, 0]\noutput : list = [4, 10, 5, 6]",
    "output": "generated_output : list = add_n(sub_n([-2, 4, -1, 0],-2),4)",
    "io_inp": [
      -2,
      4,
      -1,
      0
    ],
    "io_out": [
      4,
      10,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),4)"
  },
  {
    "input": "input : list = [0, -3, 3, 5, 4]\noutput : list = [-3, 0]",
    "output": "generated_output : list = reverse(take([0, -3, 3, 5, 4],2))",
    "io_inp": [
      0,
      -3,
      3,
      5,
      4
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-2, 5, 2, 0, 0]\noutput : list = [-25, -10, 0, 0, 10]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(sort_des([-2, 5, 2, 0, 0]))),-5))",
    "io_inp": [
      -2,
      5,
      2,
      0,
      0
    ],
    "io_out": [
      -25,
      -10,
      0,
      0,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-4, 3, 5, 2]\noutput : list = [-5, 1, 2, 4]",
    "output": "generated_output : list = take(sub_n(sort_asc(add_n([-4, 3, 5, 2],3)),4),21)",
    "io_inp": [
      -4,
      3,
      5,
      2
    ],
    "io_out": [
      -5,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(add_n(input,3)),4),21)"
  },
  {
    "input": "input : list = [-5, 2, -1, -3]\noutput : list = [-5, 2, -1, -3]",
    "output": "generated_output : list = reverse(reverse([-5, 2, -1, -3]))",
    "io_inp": [
      -5,
      2,
      -1,
      -3
    ],
    "io_out": [
      -5,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [-1, -4, -10]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des([1, 4, -5])),13),-5)",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      -1,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(input)),13),-5)"
  },
  {
    "input": "input : list = [5, -5, 4, 4, 4]\noutput : list = [-3, 6, 6, 6, 7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(reverse([5, -5, 4, 4, 4])),1),-3),1)",
    "io_inp": [
      5,
      -5,
      4,
      4,
      4
    ],
    "io_out": [
      -3,
      6,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(reverse(input)),1),-3),1)"
  },
  {
    "input": "input : list = [2, 1, 2, 1, 5, 5]\noutput : list = [5, 5, 2, 2, 1, 1]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([2, 1, 2, 1, 5, 5])),1)",
    "io_inp": [
      2,
      1,
      2,
      1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [1, -4, 4, -4]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(take([1, -4, 4, -4],2),4),20)))",
    "io_inp": [
      1,
      -4,
      4,
      -4
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(take(input,2),4),20)))"
  },
  {
    "input": "input : list = [-3, 0, -3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(take(sort_asc(take([-3, 0, -3, 0],2)),18),27)",
    "io_inp": [
      -3,
      0,
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(input,2)),18),27)"
  },
  {
    "input": "input : list = [1, -2, 1, 2, 2]\noutput : list = [1, 4, 4, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([1, -2, 1, 2, 2])),-3)",
    "io_inp": [
      1,
      -2,
      1,
      2,
      2
    ],
    "io_out": [
      1,
      4,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-5, 1, -2, -5]\noutput : list = [6, 3, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_asc([-5, 1, -2, -5])),33),-5))",
    "io_inp": [
      -5,
      1,
      -2,
      -5
    ],
    "io_out": [
      6,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_asc(input)),33),-5))"
  },
  {
    "input": "input : list = [-4, 2, 1, -3]\noutput : list = [-9, -3, -4, -8]",
    "output": "generated_output : list = add_n([-4, 2, 1, -3],-5)",
    "io_inp": [
      -4,
      2,
      1,
      -3
    ],
    "io_out": [
      -9,
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -3, 2, -3, 1, -1]\noutput : list = [7, 6, 4, 4, 2, 2]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(add_n([-1, -3, 2, -3, 1, -1],4))),2),3)",
    "io_inp": [
      -1,
      -3,
      2,
      -3,
      1,
      -1
    ],
    "io_out": [
      7,
      6,
      4,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(add_n(input,4))),2),3)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [12, 18, 20]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_asc([-3, -4, 0])),-4),-2),-4)",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      12,
      18,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_asc(input)),-4),-2),-4)"
  },
  {
    "input": "input : list = [3, 2, 4, -1, -2, -2]\noutput : list = [-8, -8, -4, 8, 12, 16]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(sort_asc([3, 2, 4, -1, -2, -2])),4)))",
    "io_inp": [
      3,
      2,
      4,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -4,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(sort_des([0, -2, 0])),9)),-1)",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(sort_des(input)),9)),-1)"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [10, -6, -8]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(sort_des([-3, -4, 5]),2)),1))",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      10,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(sort_des(input),2)),1))"
  },
  {
    "input": "input : list = [-4, 1, 3, 2, -4, 4]\noutput : list = [-5, 3]",
    "output": "generated_output : list = add_n(drop([-4, 1, 3, 2, -4, 4],4),-1)",
    "io_inp": [
      -4,
      1,
      3,
      2,
      -4,
      4
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,4),-1)"
  },
  {
    "input": "input : list = [1, 0, 4, 5]\noutput : list = [2, 1, 5, 6]",
    "output": "generated_output : list = sub_n([1, 0, 4, 5],-1)",
    "io_inp": [
      1,
      0,
      4,
      5
    ],
    "io_out": [
      2,
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [22]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(take([-5, 2, -3],1),-4),2),4))",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      22
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(take(input,1),-4),2),4))"
  },
  {
    "input": "input : list = [-2, 4, -5, -1, -2]\noutput : list = [-6, -12, -3, -7, -6]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(mul_n([-2, 4, -5, -1, -2],-1),1),-5),6),3)",
    "io_inp": [
      -2,
      4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -12,
      -3,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(mul_n(input,-1),1),-5),6),3)"
  },
  {
    "input": "input : list = [3, 5, -4, 2, -1]\noutput : list = [-4, -1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 5, -4, 2, -1])",
    "io_inp": [
      3,
      5,
      -4,
      2,
      -1
    ],
    "io_out": [
      -4,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, -3, -4, 2]\noutput : list = [2, 2, 0, -3, -4]",
    "output": "generated_output : list = sort_des([0, 2, -3, -4, 2])",
    "io_inp": [
      0,
      2,
      -3,
      -4,
      2
    ],
    "io_out": [
      2,
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, 2, -5]\noutput : list = [8, 2, -4, 10]",
    "output": "generated_output : list = mul_n([-4, -1, 2, -5],-2)",
    "io_inp": [
      -4,
      -1,
      2,
      -5
    ],
    "io_out": [
      8,
      2,
      -4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 2, -5]\noutput : list = [-13, 7, 22]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(reverse([-2, 2, -5]),7),-5),-3))",
    "io_inp": [
      -2,
      2,
      -5
    ],
    "io_out": [
      -13,
      7,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(reverse(input),7),-5),-3))"
  },
  {
    "input": "input : list = [3, -2, 5, -1]\noutput : list = [6, 8, 16, 20]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(sub_n([3, -2, 5, -1],-5))),2),50)",
    "io_inp": [
      3,
      -2,
      5,
      -1
    ],
    "io_out": [
      6,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(sub_n(input,-5))),2),50)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(sub_n([5, 5],-1),12),3)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(sub_n(input,-1),12),3)))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-15, -5]",
    "output": "generated_output : list = mul_n(add_n(reverse([0, -2]),-1),5)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-1),5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, 15]",
    "output": "generated_output : list = mul_n(sort_des([-3, 0]),-5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [3, -2, 5, 0, -4]\noutput : list = [6, 8, 10, 13, 15]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_des([3, -2, 5, 0, -4]),-5),5))",
    "io_inp": [
      3,
      -2,
      5,
      0,
      -4
    ],
    "io_out": [
      6,
      8,
      10,
      13,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_des(input),-5),5))"
  },
  {
    "input": "input : list = [-4, 3, 4, -3]\noutput : list = [7, 6, 0, -1]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(add_n([-4, 3, 4, -3],-3),1)),4),2)",
    "io_inp": [
      -4,
      3,
      4,
      -3
    ],
    "io_out": [
      7,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(add_n(input,-3),1)),4),2)"
  },
  {
    "input": "input : list = [1, 4, 5, -4]\noutput : list = [-20]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(take([1, 4, 5, -4],1)),-5),4))",
    "io_inp": [
      1,
      4,
      5,
      -4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(take(input,1)),-5),4))"
  },
  {
    "input": "input : list = [1, 1, 5, 1]\noutput : list = [6, 6, 10]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(drop([1, 1, 5, 1],1)),5)))",
    "io_inp": [
      1,
      1,
      5,
      1
    ],
    "io_out": [
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(drop(input,1)),5)))"
  },
  {
    "input": "input : list = [1, 3, -4, -3, -4]\noutput : list = [-20, -20, -15, 5, 15]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(reverse([1, 3, -4, -3, -4])),-1),-5))",
    "io_inp": [
      1,
      3,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -20,
      -20,
      -15,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(reverse(input)),-1),-5))"
  },
  {
    "input": "input : list = [2, 4, 0, 0, -4]\noutput : list = [8, 6, 4, 4, 0]",
    "output": "generated_output : list = sort_des(add_n([2, 4, 0, 0, -4],4))",
    "io_inp": [
      2,
      4,
      0,
      0,
      -4
    ],
    "io_out": [
      8,
      6,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,4))"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [32, 20, -8]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sub_n([-2, 5, -5],3),-4))),34)",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      32,
      20,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sub_n(input,3),-4))),34)"
  },
  {
    "input": "input : list = [4, -1, 4, -1, -2, 2]\noutput : list = [-16, 4, -16, 4, 8, -8]",
    "output": "generated_output : list = mul_n([4, -1, 4, -1, -2, 2],-4)",
    "io_inp": [
      4,
      -1,
      4,
      -1,
      -2,
      2
    ],
    "io_out": [
      -16,
      4,
      -16,
      4,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, 4, 1, -2, 5, 2]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(take([5, 4, 1, -2, 5, 2],2),1),-2)))",
    "io_inp": [
      5,
      4,
      1,
      -2,
      5,
      2
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(take(input,2),1),-2)))"
  },
  {
    "input": "input : list = [-2, 4, 2, 5]\noutput : list = [-1, 3, 5]",
    "output": "generated_output : list = take(sort_asc(sub_n([-2, 4, 2, 5],-1)),3)",
    "io_inp": [
      -2,
      4,
      2,
      5
    ],
    "io_out": [
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,-1)),3)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 5, -4],1)",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 1, -5, 5, -1, 5]\noutput : list = [1, 1, 5, 7, 11, 11]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(sub_n([-5, 1, -5, 5, -1, 5],-3),13),-3)),9)",
    "io_inp": [
      -5,
      1,
      -5,
      5,
      -1,
      5
    ],
    "io_out": [
      1,
      1,
      5,
      7,
      11,
      11
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(sub_n(input,-3),13),-3)),9)"
  },
  {
    "input": "input : list = [-3, 1, -1, 2, -5]\noutput : list = [5, 4, 2, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-3, 1, -1, 2, -5],3)))",
    "io_inp": [
      -3,
      1,
      -1,
      2,
      -5
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,3)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1, 8]",
    "output": "generated_output : list = sub_n(reverse(reverse([-2, 5])),-3)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [10, 6]",
    "output": "generated_output : list = mul_n([-5, -3],-2)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, -3]\noutput : list = [-2, -12, -32]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(sort_des([-5, -4, 0, -1, -3]),-5),-2),3),-2)",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -12,
      -32
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(sort_des(input),-5),-2),3),-2)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [9, 3, 0]",
    "output": "generated_output : list = take(take(mul_n(add_n(sort_asc([2, 4, 5]),-5),-3),27),12)",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      9,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(sort_asc(input),-5),-3),27),12)"
  },
  {
    "input": "input : list = [-1, 4, 0, 0, -3]\noutput : list = [7, 9, 10, 10, 14]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(reverse([-1, 4, 0, 0, -3])),-5),5))",
    "io_inp": [
      -1,
      4,
      0,
      0,
      -3
    ],
    "io_out": [
      7,
      9,
      10,
      10,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(reverse(input)),-5),5))"
  },
  {
    "input": "input : list = [1, 4, -2, -3, -1]\noutput : list = [-12, -11, -10, -8, -5]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(add_n([1, 4, -2, -3, -1],-4))),8),5)",
    "io_inp": [
      1,
      4,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -11,
      -10,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(add_n(input,-4))),8),5)"
  },
  {
    "input": "input : list = [-3, -4, -4, -4, 2, 1]\noutput : list = [-6, -7, -7, -7, -1, -2]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n([-3, -4, -4, -4, 2, 1],-5))),2)",
    "io_inp": [
      -3,
      -4,
      -4,
      -4,
      2,
      1
    ],
    "io_out": [
      -6,
      -7,
      -7,
      -7,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(input,-5))),2)"
  },
  {
    "input": "input : list = [-4, 1, 3, -3, -3]\noutput : list = [9, 7, 3, 3, 2]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(add_n([-4, 1, 3, -3, -3],1))),5))",
    "io_inp": [
      -4,
      1,
      3,
      -3,
      -3
    ],
    "io_out": [
      9,
      7,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(add_n(input,1))),5))"
  },
  {
    "input": "input : list = [-3, -5, -1, 0, 3]\noutput : list = [-5, -3, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([-3, -5, -1, 0, 3])))",
    "io_inp": [
      -3,
      -5,
      -1,
      0,
      3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, 0, 5, -5]\noutput : list = [-14, -4, -4, 6]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(add_n([0, 0, 5, -5],-2)),2),31))",
    "io_inp": [
      0,
      0,
      5,
      -5
    ],
    "io_out": [
      -14,
      -4,
      -4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(add_n(input,-2)),2),31))"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [0, 0, -8]",
    "output": "generated_output : list = mul_n([0, 0, -4],2)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [3, 2, -4, -3]\noutput : list = [1, 0, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(reverse([3, 2, -4, -3]))),2))",
    "io_inp": [
      3,
      2,
      -4,
      -3
    ],
    "io_out": [
      1,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(reverse(input))),2))"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [3, 12]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n(drop([1, 2, 5],1),-1),24),3))",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(drop(input,1),-1),24),3))"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [4, 4, 1]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(add_n([0, 0, 3],5),-4),15),-1),5)",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(add_n(input,5),-4),15),-1),5)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(drop([-4, 2, 0],1),10)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(drop(input,1),10)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-14, 16]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(sort_asc([3, -3]),5),1),1))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -14,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(sort_asc(input),5),1),1))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(sort_des(reverse(take(add_n([3, -1],-2),4))),40)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(add_n(input,-2),4))),40)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [9, 3]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(reverse([5, -1])),1),-2),-2)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(reverse(input)),1),-2),-2)"
  },
  {
    "input": "input : list = [-2, 4, -3, -4, 1, 0]\noutput : list = [5, 2, 1, -1, -2, -3]",
    "output": "generated_output : list = take(take(take(add_n(sort_des([-2, 4, -3, -4, 1, 0]),1),32),17),29)",
    "io_inp": [
      -2,
      4,
      -3,
      -4,
      1,
      0
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(sort_des(input),1),32),17),29)"
  },
  {
    "input": "input : list = [-2, -4, -4, 1, -1, -4]\noutput : list = [6, 6, 6, 8, 9, 11]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(sort_des([-2, -4, -4, 1, -1, -4]),30),-5)),5)",
    "io_inp": [
      -2,
      -4,
      -4,
      1,
      -1,
      -4
    ],
    "io_out": [
      6,
      6,
      6,
      8,
      9,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(sort_des(input),30),-5)),5)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [5, -1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sort_des([5, -4, -1])))))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, -3, -2, -2]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(take([-3, -3, -2, -2],2),-2),5)))",
    "io_inp": [
      -3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(take(input,2),-2),5)))"
  },
  {
    "input": "input : list = [-5, 5, -3, -5, -3, -5]\noutput : list = [10, 10, 10, 6, 6, -10]",
    "output": "generated_output : list = sort_des(mul_n(reverse([-5, 5, -3, -5, -3, -5]),-2))",
    "io_inp": [
      -5,
      5,
      -3,
      -5,
      -3,
      -5
    ],
    "io_out": [
      10,
      10,
      10,
      6,
      6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-3, 2, 0, 2, -5]\noutput : list = [9, 9, 7, 4, 2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(add_n([-3, 2, 0, 2, -5],5),-2),-4)))",
    "io_inp": [
      -3,
      2,
      0,
      2,
      -5
    ],
    "io_out": [
      9,
      9,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(add_n(input,5),-2),-4)))"
  },
  {
    "input": "input : list = [2, 3, 1, 3]\noutput : list = [45, 90, 135, 135]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_asc([2, 3, 1, 3])),3),3),5)",
    "io_inp": [
      2,
      3,
      1,
      3
    ],
    "io_out": [
      45,
      90,
      135,
      135
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_asc(input)),3),3),5)"
  },
  {
    "input": "input : list = [-4, 4, 5, -5, 3]\noutput : list = [5, 4, 3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-4, 4, 5, -5, 3])))",
    "io_inp": [
      -4,
      4,
      5,
      -5,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [3, -4, 1, 1]\noutput : list = [5, 40, 15, 15]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(mul_n([3, -4, 1, 1],-1),-5),5),-1),5)",
    "io_inp": [
      3,
      -4,
      1,
      1
    ],
    "io_out": [
      5,
      40,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(mul_n(input,-1),-5),5),-1),5)"
  },
  {
    "input": "input : list = [-5, 0, -1, -2, 0]\noutput : list = [2, 2, 1, 0, -3]",
    "output": "generated_output : list = sort_des(take(reverse(take(add_n([-5, 0, -1, -2, 0],2),10)),39))",
    "io_inp": [
      -5,
      0,
      -1,
      -2,
      0
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(add_n(input,2),10)),39))"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -5, 1],1)",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 0, -2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = drop([5, 0, -2, -3],2)",
    "io_inp": [
      5,
      0,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [-5, 0, -7]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(add_n([-1, 4, -3],-5),1))),1)",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      -5,
      0,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(add_n(input,-5),1))),1)"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(reverse(take(drop([1, -2, -4],1),2)))",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(drop(input,1),2)))"
  },
  {
    "input": "input : list = [-1, -2, 0, 5, -5, -1]\noutput : list = [0, -30, 30, 6]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(drop([-1, -2, 0, 5, -5, -1],2)),-2)),3)",
    "io_inp": [
      -1,
      -2,
      0,
      5,
      -5,
      -1
    ],
    "io_out": [
      0,
      -30,
      30,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(drop(input,2)),-2)),3)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([1, -3],-1)))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [-1, -3, -4, -3, -2]\noutput : list = [-2, -3, -4, -3, -1]",
    "output": "generated_output : list = reverse([-1, -3, -4, -3, -2])",
    "io_inp": [
      -1,
      -3,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(take([2, 2, 1],1),2))))",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(take(input,1),2))))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-12, -9]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(mul_n([-3, -4],3),13),-4)),-4)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(mul_n(input,3),13),-4)),-4)"
  },
  {
    "input": "input : list = [-4, -4, -3, -1]\noutput : list = [180, 180, 130, 30]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(mul_n([-4, -4, -3, -1],5),2),2),-2),-5)",
    "io_inp": [
      -4,
      -4,
      -3,
      -1
    ],
    "io_out": [
      180,
      180,
      130,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(mul_n(input,5),2),2),-2),-5)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [3, 0, -4]",
    "output": "generated_output : list = sort_des(reverse([0, -4, 3]))",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(drop([-1, 5, -2],1)),2),5),3)",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(drop(input,1)),2),5),3)"
  },
  {
    "input": "input : list = [3, 1, 0, 2, 5, 5]\noutput : list = [0, 1, 2, 3, 5, 5]",
    "output": "generated_output : list = take(sort_asc([3, 1, 0, 2, 5, 5]),14)",
    "io_inp": [
      3,
      1,
      0,
      2,
      5,
      5
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [5, -2, 1]\noutput : list = [21, 1, -14]",
    "output": "generated_output : list = sort_des(add_n(mul_n([5, -2, 1],5),-4))",
    "io_inp": [
      5,
      -2,
      1
    ],
    "io_out": [
      21,
      1,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,5),-4))"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [45, 35, 0]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(sub_n([5, -2, -4],4),-1)),5),-5)",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      45,
      35,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(sub_n(input,4),-1)),5),-5)"
  },
  {
    "input": "input : list = [5, -1, 2, -5, 1, 3]\noutput : list = [8, 6, 5, 4, 2, -2]",
    "output": "generated_output : list = sub_n(take(take(add_n(sort_des([5, -1, 2, -5, 1, 3]),-1),12),34),-4)",
    "io_inp": [
      5,
      -1,
      2,
      -5,
      1,
      3
    ],
    "io_out": [
      8,
      6,
      5,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(sort_des(input),-1),12),34),-4)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = mul_n([3, 3],1)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-2, -2, 5, -1, -5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(take(take(reverse(take([-2, -2, 5, -1, -5],1)),9),25))",
    "io_inp": [
      -2,
      -2,
      5,
      -1,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(take(input,1)),9),25))"
  },
  {
    "input": "input : list = [3, 2, 5, 3, -3, -4]\noutput : list = [-6, -5, 0, 1, 1, 3]",
    "output": "generated_output : list = take(sort_asc(take(reverse(sub_n([3, 2, 5, 3, -3, -4],2)),9)),34)",
    "io_inp": [
      3,
      2,
      5,
      3,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      0,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(sub_n(input,2)),9)),34)"
  },
  {
    "input": "input : list = [1, -5, 2, -1, -3]\noutput : list = [6, 0, 7, 4, 2]",
    "output": "generated_output : list = reverse(sub_n(take(take(reverse([1, -5, 2, -1, -3]),20),26),-5))",
    "io_inp": [
      1,
      -5,
      2,
      -1,
      -3
    ],
    "io_out": [
      6,
      0,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(reverse(input),20),26),-5))"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [-9, -8, -4]",
    "output": "generated_output : list = sort_asc(sub_n([-4, 0, -5],4))",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [-4, -3, -1, -5, 4]\noutput : list = [0, 27, 15, 21, 24]",
    "output": "generated_output : list = reverse(take(take(mul_n(add_n([-4, -3, -1, -5, 4],-4),-3),22),43))",
    "io_inp": [
      -4,
      -3,
      -1,
      -5,
      4
    ],
    "io_out": [
      0,
      27,
      15,
      21,
      24
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(add_n(input,-4),-3),22),43))"
  },
  {
    "input": "input : list = [4, -2, -3, 0, -4]\noutput : list = [13, -3, 9, 5, -19]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(sub_n([4, -2, -3, 0, -4],-2),-4)),38),5)",
    "io_inp": [
      4,
      -2,
      -3,
      0,
      -4
    ],
    "io_out": [
      13,
      -3,
      9,
      5,
      -19
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(sub_n(input,-2),-4)),38),5)"
  },
  {
    "input": "input : list = [-4, -1, 2, 4, -1, -5]\noutput : list = [-20, -10, 5, 5, 20, 25]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(sort_des([-4, -1, 2, 4, -1, -5]),-5),11),45))",
    "io_inp": [
      -4,
      -1,
      2,
      4,
      -1,
      -5
    ],
    "io_out": [
      -20,
      -10,
      5,
      5,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(sort_des(input),-5),11),45))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sub_n(sub_n([0, 2],4),1)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),1)"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [4, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(drop([-3, 2, -4],1),1))),-1)",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(drop(input,1),1))),-1)"
  },
  {
    "input": "input : list = [1, 4, -5, -2, 4]\noutput : list = [-300, -120, 240, 240]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(drop([1, 4, -5, -2, 4],1),3),5),4))",
    "io_inp": [
      1,
      4,
      -5,
      -2,
      4
    ],
    "io_out": [
      -300,
      -120,
      240,
      240
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(drop(input,1),3),5),4))"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse(drop([0, -1, 1],1))",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [1, 3, 2, 4, -2, 2]\noutput : list = [-2, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(drop([1, 3, 2, 4, -2, 2],3),20))))",
    "io_inp": [
      1,
      3,
      2,
      4,
      -2,
      2
    ],
    "io_out": [
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(drop(input,3),20))))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-45, 0]",
    "output": "generated_output : list = take(mul_n(take(sort_des(mul_n([5, 0],3)),22),-3),22)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -45,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(mul_n(input,3)),22),-3),22)"
  },
  {
    "input": "input : list = [-1, -3, 2, -1, -1, 2]\noutput : list = [-6, -6, -3, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(drop([-1, -3, 2, -1, -1, 2],2)))),5)",
    "io_inp": [
      -1,
      -3,
      2,
      -1,
      -1,
      2
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(drop(input,2)))),5)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [-1, 5, 7]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(sort_asc([-4, 4, 2]),-2),2),-3),18)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(sort_asc(input),-2),2),-3),18)"
  },
  {
    "input": "input : list = [1, -5, 0]\noutput : list = [0, -6, -1]",
    "output": "generated_output : list = sub_n([1, -5, 0],1)",
    "io_inp": [
      1,
      -5,
      0
    ],
    "io_out": [
      0,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, 2, -2, 4]\noutput : list = [0, 3, 4, 6]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take(sub_n([1, 2, -2, 4],-2),6))))",
    "io_inp": [
      1,
      2,
      -2,
      4
    ],
    "io_out": [
      0,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(sub_n(input,-2),6))))"
  },
  {
    "input": "input : list = [-5, -3, 3, -1, 1]\noutput : list = [15, 5, -5, -15, -25]",
    "output": "generated_output : list = mul_n(sort_des(reverse([-5, -3, 3, -1, 1])),5)",
    "io_inp": [
      -5,
      -3,
      3,
      -1,
      1
    ],
    "io_out": [
      15,
      5,
      -5,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),5)"
  },
  {
    "input": "input : list = [-1, 1, -2, 3]\noutput : list = [3, -2, 1, -1]",
    "output": "generated_output : list = reverse([-1, 1, -2, 3])",
    "io_inp": [
      -1,
      1,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -4, -2, -4, 1, -1]\noutput : list = [12, 12, 6, 3, -3, -3]",
    "output": "generated_output : list = sort_des(take(mul_n([1, -4, -2, -4, 1, -1],-3),19))",
    "io_inp": [
      1,
      -4,
      -2,
      -4,
      1,
      -1
    ],
    "io_out": [
      12,
      12,
      6,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,-3),19))"
  },
  {
    "input": "input : list = [3, -3, -4]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(reverse(take([3, -3, -4],1)),-1)",
    "io_inp": [
      3,
      -3,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,1)),-1)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [-1, -7, -1]",
    "output": "generated_output : list = add_n([4, -2, 4],-5)",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      -1,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, 2, 2, -5]\noutput : list = [45, 30, 30, -5]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des([5, 2, 2, -5]),4),5)))",
    "io_inp": [
      5,
      2,
      2,
      -5
    ],
    "io_out": [
      45,
      30,
      30,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des(input),4),5)))"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [-18]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(take([-4, -2, 4],1),3),1),3),38)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(take(input,1),3),1),3),38)"
  },
  {
    "input": "input : list = [-4, -4, 3, 2]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sub_n(take(take(add_n([-4, -4, 3, 2],-2),1),26),5),-3)",
    "io_inp": [
      -4,
      -4,
      3,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(add_n(input,-2),1),26),5),-3)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [9, 9]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([3, 3],-1)),5)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-1)),5)"
  },
  {
    "input": "input : list = [-5, 3, 0, -4, 0, 3]\noutput : list = [4, 4, 1, 1, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(sub_n([-5, 3, 0, -4, 0, 3],2)),13),-3))",
    "io_inp": [
      -5,
      3,
      0,
      -4,
      0,
      3
    ],
    "io_out": [
      4,
      4,
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(sub_n(input,2)),13),-3))"
  },
  {
    "input": "input : list = [0, 5, -1]\noutput : list = [5, 6, 11]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_des([0, 5, -1]),1),4),-1))",
    "io_inp": [
      0,
      5,
      -1
    ],
    "io_out": [
      5,
      6,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_des(input),1),4),-1))"
  },
  {
    "input": "input : list = [-2, 4, 0, -3]\noutput : list = [-3, 0, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, 0, -3])",
    "io_inp": [
      -2,
      4,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-36, 60]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(mul_n([1, -5],-4))),-5),4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -36,
      60
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(mul_n(input,-4))),-5),4)"
  },
  {
    "input": "input : list = [0, 2, -4, -1, -3]\noutput : list = [5, 7, 1, 4, 2]",
    "output": "generated_output : list = sub_n(add_n([0, 2, -4, -1, -3],3),-2)",
    "io_inp": [
      0,
      2,
      -4,
      -1,
      -3
    ],
    "io_out": [
      5,
      7,
      1,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [-2, -1, -5, -4, -5, 0]\noutput : list = [-1, 0, 1, 3, 4, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n([-2, -1, -5, -4, -5, 0],1)),-1))",
    "io_inp": [
      -2,
      -1,
      -5,
      -4,
      -5,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(input,1)),-1))"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [-17, 3, -9]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(add_n([-2, -5, 0],3),-4)),19),5)",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      -17,
      3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(add_n(input,3),-4)),19),5)"
  },
  {
    "input": "input : list = [0, 3, 2, 4, -2, 0]\noutput : list = [3, -33, -21, -45, 27, 3]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(mul_n([0, 3, 2, 4, -2, 0],4),11),-3),-2),5)",
    "io_inp": [
      0,
      3,
      2,
      4,
      -2,
      0
    ],
    "io_out": [
      3,
      -33,
      -21,
      -45,
      27,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(mul_n(input,4),11),-3),-2),5)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [-2, 1, -7]",
    "output": "generated_output : list = reverse(reverse(sub_n([2, 5, -3],4)))",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      -2,
      1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,4)))"
  },
  {
    "input": "input : list = [-4, -2, -1, 1, 4, -4]\noutput : list = [-12, -6, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(take([-4, -2, -1, 1, 4, -4],3)))),3)",
    "io_inp": [
      -4,
      -2,
      -1,
      1,
      4,
      -4
    ],
    "io_out": [
      -12,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(take(input,3)))),3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sub_n(reverse([5, -1]),2)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, 2, 0, -5, -4]\noutput : list = [-8, -2, -4, -9, -8]",
    "output": "generated_output : list = add_n([-4, 2, 0, -5, -4],-4)",
    "io_inp": [
      -4,
      2,
      0,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -2,
      -4,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 4, 1]\noutput : list = [5, 2, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sort_des([-4, 4, 1]),8),17),-1))",
    "io_inp": [
      -4,
      4,
      1
    ],
    "io_out": [
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sort_des(input),8),17),-1))"
  },
  {
    "input": "input : list = [0, -4, -3, -1, -1, -1]\noutput : list = [2, 1, 1, 1, -1, -2]",
    "output": "generated_output : list = sort_des(add_n(add_n([0, -4, -3, -1, -1, -1],3),-1))",
    "io_inp": [
      0,
      -4,
      -3,
      -1,
      -1,
      -1
    ],
    "io_out": [
      2,
      1,
      1,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,3),-1))"
  },
  {
    "input": "input : list = [0, 0, 2, 3]\noutput : list = [-1, -1, 1, 2]",
    "output": "generated_output : list = sub_n(sub_n(add_n([0, 0, 2, 3],-1),1),-1)",
    "io_inp": [
      0,
      0,
      2,
      3
    ],
    "io_out": [
      -1,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,-1),1),-1)"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [-6, -6, -2]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(sort_des([-5, -5, -1]),5),10),4))",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(sort_des(input),5),10),4))"
  },
  {
    "input": "input : list = [-5, -4, 3, 3, 4]\noutput : list = [25, 30]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(take([-5, -4, 3, 3, 4],2),1),2),-5))",
    "io_inp": [
      -5,
      -4,
      3,
      3,
      4
    ],
    "io_out": [
      25,
      30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(take(input,2),1),2),-5))"
  },
  {
    "input": "input : list = [0, -3, 2, 5, -5, 5]\noutput : list = [0, 0, -3, -5, -8, -10]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(add_n([0, -3, 2, 5, -5, 5],-5)))))",
    "io_inp": [
      0,
      -3,
      2,
      5,
      -5,
      5
    ],
    "io_out": [
      0,
      0,
      -3,
      -5,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [4, -3, -1, 0]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(sort_des([4, -3, -1, 0]),1)),1))",
    "io_inp": [
      4,
      -3,
      -1,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(sort_des(input),1)),1))"
  },
  {
    "input": "input : list = [-4, 1, 2]\noutput : list = [6, 5, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(reverse([-4, 1, 2]),12)),4))",
    "io_inp": [
      -4,
      1,
      2
    ],
    "io_out": [
      6,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(reverse(input),12)),4))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [7, -2]",
    "output": "generated_output : list = add_n(add_n(reverse([-5, 4]),4),-1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),4),-1)"
  },
  {
    "input": "input : list = [-5, -1, 0, 0, -3]\noutput : list = [75, 45]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc([-5, -1, 0, 0, -3]),2),3),-5)",
    "io_inp": [
      -5,
      -1,
      0,
      0,
      -3
    ],
    "io_out": [
      75,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(input),2),3),-5)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [-4, -8, 12]",
    "output": "generated_output : list = reverse(take(take(reverse(mul_n([1, 2, -3],-4)),9),4))",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      -4,
      -8,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(mul_n(input,-4)),9),4))"
  },
  {
    "input": "input : list = [-3, -4, 5, -1, -3, 0]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(take([-3, -4, 5, -1, -3, 0],3),19)),-1))",
    "io_inp": [
      -3,
      -4,
      5,
      -1,
      -3,
      0
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(take(input,3),19)),-1))"
  },
  {
    "input": "input : list = [-5, -4, 2, 5, 2]\noutput : list = [-3, -2, 4, 7, 4]",
    "output": "generated_output : list = take(add_n(add_n([-5, -4, 2, 5, 2],3),-1),9)",
    "io_inp": [
      -5,
      -4,
      2,
      5,
      2
    ],
    "io_out": [
      -3,
      -2,
      4,
      7,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,3),-1),9)"
  },
  {
    "input": "input : list = [1, -3, -1, -3]\noutput : list = [-60, 100, 20, 100]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(mul_n([1, -3, -1, -3],-4),-1),2),2),-5)",
    "io_inp": [
      1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -60,
      100,
      20,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(mul_n(input,-4),-1),2),2),-5)"
  },
  {
    "input": "input : list = [-5, -5, 2, 0, 2]\noutput : list = [-75, -75, 50, 100, 100]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n([-5, -5, 2, 0, 2],-2),-5),-5))",
    "io_inp": [
      -5,
      -5,
      2,
      0,
      2
    ],
    "io_out": [
      -75,
      -75,
      50,
      100,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(input,-2),-5),-5))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [37, -27]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(add_n([4, -4],-1),4),-2)),-3)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      37,
      -27
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(add_n(input,-1),4),-2)),-3)"
  },
  {
    "input": "input : list = [0, 4, 3, -4, -5]\noutput : list = [1, -4, -19, -39, -44]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(sub_n([0, 4, 3, -4, -5],3),5))),4)",
    "io_inp": [
      0,
      4,
      3,
      -4,
      -5
    ],
    "io_out": [
      1,
      -4,
      -19,
      -39,
      -44
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(sub_n(input,3),5))),4)"
  },
  {
    "input": "input : list = [4, -2, -3, 4, -1, -2]\noutput : list = [9, 9, -1, -3, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([4, -2, -3, 4, -1, -2],2)),-1)",
    "io_inp": [
      4,
      -2,
      -3,
      4,
      -1,
      -2
    ],
    "io_out": [
      9,
      9,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,2)),-1)"
  },
  {
    "input": "input : list = [0, 4, -1, -3, -3]\noutput : list = [-8, -8, -16, -20, -36]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(reverse([0, 4, -1, -3, -3]),5),-4)))",
    "io_inp": [
      0,
      4,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -16,
      -20,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(reverse(input),5),-4)))"
  },
  {
    "input": "input : list = [1, 4, -4, 4, 1]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(drop(sort_asc([1, 4, -4, 4, 1]),3),2)))",
    "io_inp": [
      1,
      4,
      -4,
      4,
      1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(drop(sort_asc(input),3),2)))"
  },
  {
    "input": "input : list = [5, 3, 2, -3]\noutput : list = [5, 3]",
    "output": "generated_output : list = reverse(mul_n(reverse(take([5, 3, 2, -3],2)),1))",
    "io_inp": [
      5,
      3,
      2,
      -3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(input,2)),1))"
  },
  {
    "input": "input : list = [1, 4, -3, 1]\noutput : list = [-1, -4, -4, -8]",
    "output": "generated_output : list = sort_des(sub_n([1, 4, -3, 1],5))",
    "io_inp": [
      1,
      4,
      -3,
      1
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [-2, 4, 0, -4, 0]\noutput : list = [-4, -2, 0, 0, 4]",
    "output": "generated_output : list = reverse(sort_des([-2, 4, 0, -4, 0]))",
    "io_inp": [
      -2,
      4,
      0,
      -4,
      0
    ],
    "io_out": [
      -4,
      -2,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(sub_n([-1, 3],2),13))))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(sub_n(input,2),13))))"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [-144]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(take([4, 3, -1],1),4)),3),-3)",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      -144
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(take(input,1),4)),3),-3)"
  },
  {
    "input": "input : list = [-1, 2, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(take([-1, 2, -3],1))),1))",
    "io_inp": [
      -1,
      2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(take(input,1))),1))"
  },
  {
    "input": "input : list = [-5, -3, 5, 1, -4, 3]\noutput : list = [5, 1, -4, 3]",
    "output": "generated_output : list = take(mul_n(drop([-5, -3, 5, 1, -4, 3],2),1),31)",
    "io_inp": [
      -5,
      -3,
      5,
      1,
      -4,
      3
    ],
    "io_out": [
      5,
      1,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,2),1),31)"
  },
  {
    "input": "input : list = [0, 3, 0, 5, 2]\noutput : list = [5, 3, 2, 0, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(sort_asc([0, 3, 0, 5, 2]),1)),1))",
    "io_inp": [
      0,
      3,
      0,
      5,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(sort_asc(input),1)),1))"
  },
  {
    "input": "input : list = [-1, 4, 0, 5, -2]\noutput : list = [3, 8, 4, 9, 2]",
    "output": "generated_output : list = sub_n([-1, 4, 0, 5, -2],-4)",
    "io_inp": [
      -1,
      4,
      0,
      5,
      -2
    ],
    "io_out": [
      3,
      8,
      4,
      9,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [4, 3, 0, 2]\noutput : list = [-4, -2, -1, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des([4, 3, 0, 2])),-4)",
    "io_inp": [
      4,
      3,
      0,
      2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [4, 2, 4, 0, 2, 3]\noutput : list = [-4, -2, -2, -1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc([4, 2, 4, 0, 2, 3]),4)",
    "io_inp": [
      4,
      2,
      4,
      0,
      2,
      3
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-5, 4, -4, 1, 2, -4]\noutput : list = [1, -4, -4]",
    "output": "generated_output : list = drop(take(sort_des(sort_des(drop([-5, 4, -4, 1, 2, -4],1))),11),2)",
    "io_inp": [
      -5,
      4,
      -4,
      1,
      2,
      -4
    ],
    "io_out": [
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(take(sort_des(sort_des(drop(input,1))),11),2)"
  },
  {
    "input": "input : list = [4, -5, 5, 1]\noutput : list = [-12, 4, -36, 0]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n([4, -5, 5, 1],4),6),4))",
    "io_inp": [
      4,
      -5,
      5,
      1
    ],
    "io_out": [
      -12,
      4,
      -36,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(input,4),6),4))"
  },
  {
    "input": "input : list = [-2, -2, -3, 5, -4, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(drop(add_n(mul_n(sort_asc([-2, -2, -3, 5, -4, 5]),-2),1),5),-5)",
    "io_inp": [
      -2,
      -2,
      -3,
      5,
      -4,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(mul_n(sort_asc(input),-2),1),5),-5)"
  },
  {
    "input": "input : list = [5, 4, -4, 4, 5, -4]\noutput : list = [2, 2, -6, -6, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(mul_n(sub_n([5, 4, -4, 4, 5, -4],-1),-1),-3),4))",
    "io_inp": [
      5,
      4,
      -4,
      4,
      5,
      -4
    ],
    "io_out": [
      2,
      2,
      -6,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(mul_n(sub_n(input,-1),-1),-3),4))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc([-2, 5])),-3)))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [1, 3, 3, 1, 5]\noutput : list = [-20, -12, -12, -4, -4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([1, 3, 3, 1, 5],-4)))",
    "io_inp": [
      1,
      3,
      3,
      1,
      5
    ],
    "io_out": [
      -20,
      -12,
      -12,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, 1, 1]\noutput : list = [15]",
    "output": "generated_output : list = sort_des(take(mul_n(take([-3, 1, 1],1),-5),15))",
    "io_inp": [
      -3,
      1,
      1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(input,1),-5),15))"
  },
  {
    "input": "input : list = [2, 0, 4, 1, -5, 3]\noutput : list = [4, 1, -5, 3]",
    "output": "generated_output : list = drop([2, 0, 4, 1, -5, 3],2)",
    "io_inp": [
      2,
      0,
      4,
      1,
      -5,
      3
    ],
    "io_out": [
      4,
      1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc([2, 2])",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -5, 0, 3, 3]\noutput : list = [-3, -3, 0]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(drop([-2, -5, 0, 3, 3],2)),-1),16))",
    "io_inp": [
      -2,
      -5,
      0,
      3,
      3
    ],
    "io_out": [
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(drop(input,2)),-1),16))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(add_n([4, 4],-3)),3),-2),-1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(add_n(input,-3)),3),-2),-1)"
  },
  {
    "input": "input : list = [2, 0, 0, -5]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(drop([2, 0, 0, -5],1)))))",
    "io_inp": [
      2,
      0,
      0,
      -5
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [1, -2, -5, 1, -5]\noutput : list = [-8, -8, -11, -14, -14]",
    "output": "generated_output : list = add_n(add_n(sort_des([1, -2, -5, 1, -5]),-4),-5)",
    "io_inp": [
      1,
      -2,
      -5,
      1,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -11,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-4),-5)"
  },
  {
    "input": "input : list = [0, -4, 1, -3]\noutput : list = [-4, -12]",
    "output": "generated_output : list = sort_des(reverse(drop(mul_n(sub_n([0, -4, 1, -3],3),2),2)))",
    "io_inp": [
      0,
      -4,
      1,
      -3
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(mul_n(sub_n(input,3),2),2)))"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [-4, -4, 3]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(reverse([-4, 3, -4]),1),3)))",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(reverse(input),1),3)))"
  },
  {
    "input": "input : list = [3, 4, 2, -5]\noutput : list = [-10, 4, 6, 8]",
    "output": "generated_output : list = sort_asc(mul_n([3, 4, 2, -5],2))",
    "io_inp": [
      3,
      4,
      2,
      -5
    ],
    "io_out": [
      -10,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [4, -5, -1, -2, -3]\noutput : list = [11]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(take([4, -5, -1, -2, -3],1),2))),-3)",
    "io_inp": [
      4,
      -5,
      -1,
      -2,
      -3
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(take(input,1),2))),-3)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [-4, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([2, 4, -4])))",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [5, -3]",
    "output": "generated_output : list = take(sub_n(sort_des([-4, 4]),-1),9)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),-1),9)"
  },
  {
    "input": "input : list = [5, -1, -5, -4]\noutput : list = [-8, -7]",
    "output": "generated_output : list = sub_n(drop([5, -1, -5, -4],2),3)",
    "io_inp": [
      5,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [2, -1, -5, -3, 5, 5]\noutput : list = [-4, 2, 10, 6, -10, -10]",
    "output": "generated_output : list = take(mul_n([2, -1, -5, -3, 5, 5],-2),6)",
    "io_inp": [
      2,
      -1,
      -5,
      -3,
      5,
      5
    ],
    "io_out": [
      -4,
      2,
      10,
      6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-2),6)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(reverse([-3, 1]))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, 3, 0, 5, 2]\noutput : list = [-10, 15, 0, 25, 10]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(sub_n([-2, 3, 0, 5, 2],-5),5),-1),12),-5)",
    "io_inp": [
      -2,
      3,
      0,
      5,
      2
    ],
    "io_out": [
      -10,
      15,
      0,
      25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(sub_n(input,-5),5),-1),12),-5)"
  },
  {
    "input": "input : list = [-2, 3, -1, 0, 0]\noutput : list = [-9, 0, 0, 3, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(mul_n([-2, 3, -1, 0, 0],-3),5))),5)",
    "io_inp": [
      -2,
      3,
      -1,
      0,
      0
    ],
    "io_out": [
      -9,
      0,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(mul_n(input,-3),5))),5)"
  },
  {
    "input": "input : list = [4, -1, -3, -2, -1]\noutput : list = [4, -1, -1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_asc([4, -1, -3, -2, -1])))))",
    "io_inp": [
      4,
      -1,
      -3,
      -2,
      -1
    ],
    "io_out": [
      4,
      -1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [-120, -100, -40]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sort_asc([0, 4, 3]),-2)),4),-5)",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      -120,
      -100,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sort_asc(input),-2)),4),-5)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(mul_n([-2, 0],-1),11)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),11)"
  },
  {
    "input": "input : list = [1, -4, -3, -2]\noutput : list = [-4, -9, -8, -7]",
    "output": "generated_output : list = add_n([1, -4, -3, -2],-5)",
    "io_inp": [
      1,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -9,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [0, -5, -2, -1, -1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = take(take(reverse(take(take([0, -5, -2, -1, -1],2),17)),19),24)",
    "io_inp": [
      0,
      -5,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(take(input,2),17)),19),24)"
  },
  {
    "input": "input : list = [-5, -5, -4, -5, -5]\noutput : list = [19]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(take([-5, -5, -4, -5, -5],1)),-4),-1))",
    "io_inp": [
      -5,
      -5,
      -4,
      -5,
      -5
    ],
    "io_out": [
      19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(take(input,1)),-4),-1))"
  },
  {
    "input": "input : list = [-1, 5, 5, 4, -1]\noutput : list = [-10, -10, 15, 20, 20]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_asc([-1, 5, 5, 4, -1]))),1),5)",
    "io_inp": [
      -1,
      5,
      5,
      4,
      -1
    ],
    "io_out": [
      -10,
      -10,
      15,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_asc(input))),1),5)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-8, -6]",
    "output": "generated_output : list = take(add_n(sort_asc([-3, -5]),-3),17)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),-3),17)"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(drop([-1, -1, 0],1))",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [5, -4, 5, -2, 4]\noutput : list = [-300, -300, -240, 120, 240]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(sort_des([5, -4, 5, -2, 4])),5),-4),3)",
    "io_inp": [
      5,
      -4,
      5,
      -2,
      4
    ],
    "io_out": [
      -300,
      -300,
      -240,
      120,
      240
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(sort_des(input)),5),-4),3)"
  },
  {
    "input": "input : list = [3, 4, 3, 4, -2]\noutput : list = [-6, 14, 14, 18, 18]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(mul_n([3, 4, 3, 4, -2],2)),-1),2))",
    "io_inp": [
      3,
      4,
      3,
      4,
      -2
    ],
    "io_out": [
      -6,
      14,
      14,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(mul_n(input,2)),-1),2))"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [4, 5, 7]",
    "output": "generated_output : list = sub_n(take(sort_asc([1, 4, 2]),13),-3)",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),13),-3)"
  },
  {
    "input": "input : list = [3, 5, 4, -4, -4]\noutput : list = [7, 9, 8, 0, 0]",
    "output": "generated_output : list = sub_n([3, 5, 4, -4, -4],-4)",
    "io_inp": [
      3,
      5,
      4,
      -4,
      -4
    ],
    "io_out": [
      7,
      9,
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 5, 5, -4, -1, 4]\noutput : list = [5, 5, 4, -1, -3, -4]",
    "output": "generated_output : list = sort_des(mul_n([-3, 5, 5, -4, -1, 4],1))",
    "io_inp": [
      -3,
      5,
      5,
      -4,
      -1,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, 0, -3, -5, 2, 1]\noutput : list = [-5, -3, -2, 0, 1, 2]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(sort_asc([-2, 0, -3, -5, 2, 1])))),51)",
    "io_inp": [
      -2,
      0,
      -3,
      -5,
      2,
      1
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(sort_asc(input)))),51)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sort_des([-3, 4]),1),-2)))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sort_des(input),1),-2)))"
  },
  {
    "input": "input : list = [4, 0, 4, -2, 0]\noutput : list = [-11, 5, -11, 13, 5]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(reverse([4, 0, 4, -2, 0]),-1),4),5))",
    "io_inp": [
      4,
      0,
      4,
      -2,
      0
    ],
    "io_out": [
      -11,
      5,
      -11,
      13,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(reverse(input),-1),4),5))"
  },
  {
    "input": "input : list = [0, -4, 1, -2, -3, 3]\noutput : list = [-20, -25, -30, -40, -45, -55]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(sub_n([0, -4, 1, -2, -3, 3],-3),5))),-5)",
    "io_inp": [
      0,
      -4,
      1,
      -2,
      -3,
      3
    ],
    "io_out": [
      -20,
      -25,
      -30,
      -40,
      -45,
      -55
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(sub_n(input,-3),5))),-5)"
  },
  {
    "input": "input : list = [5, 5, 3, 1, -1]\noutput : list = [4, 4, 2, 0, -2]",
    "output": "generated_output : list = add_n([5, 5, 3, 1, -1],-1)",
    "io_inp": [
      5,
      5,
      3,
      1,
      -1
    ],
    "io_out": [
      4,
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 5, 3, 1, -5]\noutput : list = [5, 3, 1, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc([1, 5, 3, 1, -5]))",
    "io_inp": [
      1,
      5,
      3,
      1,
      -5
    ],
    "io_out": [
      5,
      3,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [5, -1, -4]",
    "output": "generated_output : list = sort_des([-4, -1, 5])",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [8, -2]",
    "output": "generated_output : list = add_n(take(mul_n(take(drop([4, 1, -1],1),6),5),25),3)",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(take(drop(input,1),6),5),25),3)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [15, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([3, -3]),-5))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [-1, 3, 0, -2, -5, 1]\noutput : list = [-16, -8, -4, 0, 4, 16]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sort_des([-1, 3, 0, -2, -5, 1]),2),-3)),-4)",
    "io_inp": [
      -1,
      3,
      0,
      -2,
      -5,
      1
    ],
    "io_out": [
      -16,
      -8,
      -4,
      0,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sort_des(input),2),-3)),-4)"
  },
  {
    "input": "input : list = [0, -3, 1, 2, 2]\noutput : list = [-18, -18, -15, -12, -3]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sort_des([0, -3, 1, 2, 2]),-1),-3),27),-3)",
    "io_inp": [
      0,
      -3,
      1,
      2,
      2
    ],
    "io_out": [
      -18,
      -18,
      -15,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sort_des(input),-1),-3),27),-3)"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [-5, -7, 0]",
    "output": "generated_output : list = sub_n([-3, -5, 2],2)",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      -5,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, 4, 3, -3, 2, 4]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(take([-1, 4, 3, -3, 2, 4],1)),2)))",
    "io_inp": [
      -1,
      4,
      3,
      -3,
      2,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(take(input,1)),2)))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(reverse([2, 2]))),12))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(reverse(input))),12))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [10, 10]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(reverse([-2, -2]),-3),5),2))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(reverse(input),-3),5),2))"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [-5]",
    "output": "generated_output : list = take(take([-5, 3, 4],1),15)",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,1),15)"
  },
  {
    "input": "input : list = [1, 2, 5, 4, -5]\noutput : list = [-2, -1, 2, 1, -8]",
    "output": "generated_output : list = reverse(reverse(add_n([1, 2, 5, 4, -5],-3)))",
    "io_inp": [
      1,
      2,
      5,
      4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      2,
      1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(input,-3)))"
  },
  {
    "input": "input : list = [-1, -2, 1, 1, 1]\noutput : list = [1, 1, 1, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_des([-1, -2, 1, 1, 1]),14))",
    "io_inp": [
      -1,
      -2,
      1,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),14))"
  },
  {
    "input": "input : list = [3, 2, 5, 1, 5]\noutput : list = [8, 7, 10, 6, 10]",
    "output": "generated_output : list = add_n([3, 2, 5, 1, 5],5)",
    "io_inp": [
      3,
      2,
      5,
      1,
      5
    ],
    "io_out": [
      8,
      7,
      10,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, -2, -5, 2, -4]\noutput : list = [10, 26, 50, -6, 42]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(add_n([0, -2, -5, 2, -4],-1),4),1),-2),21)",
    "io_inp": [
      0,
      -2,
      -5,
      2,
      -4
    ],
    "io_out": [
      10,
      26,
      50,
      -6,
      42
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(add_n(input,-1),4),1),-2),21)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [-25, -15, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(sort_asc([5, 1, 3]),5))),-5)",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      -25,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(sort_asc(input),5))),-5)"
  },
  {
    "input": "input : list = [4, 5, 5, -5, 2]\noutput : list = [1, -6, 4, 4, 3]",
    "output": "generated_output : list = reverse(add_n([4, 5, 5, -5, 2],-1))",
    "io_inp": [
      4,
      5,
      5,
      -5,
      2
    ],
    "io_out": [
      1,
      -6,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-5, 3, 4, -1]\noutput : list = [-12, -8, -4, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(sub_n([-5, 3, 4, -1],-1),4)),4))",
    "io_inp": [
      -5,
      3,
      4,
      -1
    ],
    "io_out": [
      -12,
      -8,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(sub_n(input,-1),4)),4))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(sort_asc([2, 2])))),29)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(sort_asc(input)))),29)"
  },
  {
    "input": "input : list = [1, 4, -4, -5]\noutput : list = [-20, -8, 12, 16]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(sort_asc([1, 4, -4, -5]),1)),-4),49)",
    "io_inp": [
      1,
      4,
      -4,
      -5
    ],
    "io_out": [
      -20,
      -8,
      12,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(sort_asc(input),1)),-4),49)"
  },
  {
    "input": "input : list = [2, -2, -3, -4, -3]\noutput : list = [0, -3, -3, -6, -18]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(add_n([2, -2, -3, -4, -3],4))),-3))",
    "io_inp": [
      2,
      -2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      0,
      -3,
      -3,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(add_n(input,4))),-3))"
  },
  {
    "input": "input : list = [2, 1, 4, 1]\noutput : list = [-3]",
    "output": "generated_output : list = take(add_n(take(reverse(take([2, 1, 4, 1],1)),24),-5),34)",
    "io_inp": [
      2,
      1,
      4,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(take(input,1)),24),-5),34)"
  },
  {
    "input": "input : list = [4, 5, 5, -3]\noutput : list = [0, 0, -1, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(add_n([4, 5, 5, -3],-5)))))",
    "io_inp": [
      4,
      5,
      5,
      -3
    ],
    "io_out": [
      0,
      0,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [3, 4, 0, -3, -5]\noutput : list = [-2, -3, -6, -9, -11]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(sub_n([3, 4, 0, -3, -5],2))),1),5)",
    "io_inp": [
      3,
      4,
      0,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(sub_n(input,2))),1),5)"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(drop([3, -5, -5],1)))))",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [-1, -2, -2, 3]\noutput : list = [-1, -3, -3, 7]",
    "output": "generated_output : list = add_n(mul_n([-1, -2, -2, 3],2),1)",
    "io_inp": [
      -1,
      -2,
      -2,
      3
    ],
    "io_out": [
      -1,
      -3,
      -3,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),1)"
  },
  {
    "input": "input : list = [5, 2, 0]\noutput : list = [1, -2, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(sub_n([5, 2, 0],-1),2),14),3))",
    "io_inp": [
      5,
      2,
      0
    ],
    "io_out": [
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(sub_n(input,-1),2),14),3))"
  },
  {
    "input": "input : list = [4, 3, 3, 5]\noutput : list = [1, 1, 2, 3]",
    "output": "generated_output : list = take(sub_n(sort_asc([4, 3, 3, 5]),2),4)",
    "io_inp": [
      4,
      3,
      3,
      5
    ],
    "io_out": [
      1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),2),4)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(take(take(add_n(sort_asc([-1, -1]),1),5),5),37)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(sort_asc(input),1),5),5),37)"
  },
  {
    "input": "input : list = [-2, -5, -1, -3, 5]\noutput : list = [4, -2, -3, -4, -6]",
    "output": "generated_output : list = sub_n(reverse(take(add_n(sort_asc([-2, -5, -1, -3, 5]),4),31)),5)",
    "io_inp": [
      -2,
      -5,
      -1,
      -3,
      5
    ],
    "io_out": [
      4,
      -2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(sort_asc(input),4),31)),5)"
  },
  {
    "input": "input : list = [2, 5, 2, -5]\noutput : list = [9, -5, -5, -11]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(mul_n([2, 5, 2, -5],-2),-5),1)),3)",
    "io_inp": [
      2,
      5,
      2,
      -5
    ],
    "io_out": [
      9,
      -5,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(mul_n(input,-2),-5),1)),3)"
  },
  {
    "input": "input : list = [4, -1, 2, 0, -1]\noutput : list = [16, 14, 12, 11, 11]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(add_n([4, -1, 2, 0, -1],5)),3),4))",
    "io_inp": [
      4,
      -1,
      2,
      0,
      -1
    ],
    "io_out": [
      16,
      14,
      12,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(add_n(input,5)),3),4))"
  },
  {
    "input": "input : list = [5, -1, -4, 2]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(take([5, -1, -4, 2],1))),3))",
    "io_inp": [
      5,
      -1,
      -4,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(take(input,1))),3))"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_asc([0, -2, 4]),2)),11),32)",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_asc(input),2)),11),32)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [9, 1]",
    "output": "generated_output : list = sort_des(reverse(add_n(mul_n(drop([3, -5, -1],1),-2),-1)))",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(mul_n(drop(input,1),-2),-1)))"
  },
  {
    "input": "input : list = [-5, 1, -5, -5]\noutput : list = [25, 25, 25, -5]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(reverse([-5, 1, -5, -5]))),4),-5)",
    "io_inp": [
      -5,
      1,
      -5,
      -5
    ],
    "io_out": [
      25,
      25,
      25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(reverse(input))),4),-5)"
  },
  {
    "input": "input : list = [1, 3, 4, 3]\noutput : list = [-12, -16]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([1, 3, 4, 3],2),18),-4)))",
    "io_inp": [
      1,
      3,
      4,
      3
    ],
    "io_out": [
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,2),18),-4)))"
  },
  {
    "input": "input : list = [5, 1, 3, -3, 1, -4]\noutput : list = [6, 10, 12, 14]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(take([5, 1, 3, -3, 1, -4],4),-4)),5))",
    "io_inp": [
      5,
      1,
      3,
      -3,
      1,
      -4
    ],
    "io_out": [
      6,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(take(input,4),-4)),5))"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [17, -4]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(drop([-1, -4, 3],1)),-3),-5))",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      17,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(drop(input,1)),-3),-5))"
  },
  {
    "input": "input : list = [2, 4, 2, 5, -4]\noutput : list = [5, 4, 2, 2, -4]",
    "output": "generated_output : list = sort_des(reverse([2, 4, 2, 5, -4]))",
    "io_inp": [
      2,
      4,
      2,
      5,
      -4
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-1, -7]",
    "output": "generated_output : list = add_n(sort_des([4, -2]),-5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [4, 4, -3, 3, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = take([4, 4, -3, 3, 4],2)",
    "io_inp": [
      4,
      4,
      -3,
      3,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 5, 0, -3, -2, 1]\noutput : list = [6, 2, 1, -1, -2, -2]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(sort_asc([-3, 5, 0, -3, -2, 1]),-5),-3)),3)",
    "io_inp": [
      -3,
      5,
      0,
      -3,
      -2,
      1
    ],
    "io_out": [
      6,
      2,
      1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(sort_asc(input),-5),-3)),3)"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [-16, -4, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n([-4, -1, 5],2)),2))",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      -16,
      -4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(input,2)),2))"
  },
  {
    "input": "input : list = [4, -3, 0, 5]\noutput : list = [10, 3, 6, 11]",
    "output": "generated_output : list = add_n(sub_n(take(add_n(sub_n([4, -3, 0, 5],-4),-4),4),-1),5)",
    "io_inp": [
      4,
      -3,
      0,
      5
    ],
    "io_out": [
      10,
      3,
      6,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(sub_n(input,-4),-4),4),-1),5)"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [2, 1, -5]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc([2, -5, 1]),7),-1),-1))",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc(input),7),-1),-1))"
  },
  {
    "input": "input : list = [-1, -3, -2, 2]\noutput : list = [5, 3, 4, 8]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(reverse([-1, -3, -2, 2])),5),4),-3)",
    "io_inp": [
      -1,
      -3,
      -2,
      2
    ],
    "io_out": [
      5,
      3,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(reverse(input)),5),4),-3)"
  },
  {
    "input": "input : list = [-5, 0, -5, -5]\noutput : list = [-4, 1, -4, -4]",
    "output": "generated_output : list = sub_n([-5, 0, -5, -5],-1)",
    "io_inp": [
      -5,
      0,
      -5,
      -5
    ],
    "io_out": [
      -4,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, -1, 0]\noutput : list = [-12, 8, 4]",
    "output": "generated_output : list = sub_n(mul_n([4, -1, 0],-4),-4)",
    "io_inp": [
      4,
      -1,
      0
    ],
    "io_out": [
      -12,
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),-4)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [10, 10, -10]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n([-2, 2, -2],-5),6)))",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      10,
      10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(input,-5),6)))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse(sort_asc([1, 3]))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [7, 7, 6]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(sort_des([2, 2, 1]),5),9)))",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      7,
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(sort_des(input),5),9)))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-10, -11]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(sub_n([-2, -1],3),-4),2)))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(sub_n(input,3),-4),2)))"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [-5, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(add_n([-2, 4, 4],-3)))))",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [-4, 1, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(drop([-4, 1, 4, 5],2))",
    "io_inp": [
      -4,
      1,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [3, 3, 4, -5, 0, 4]\noutput : list = [116, 116, 96, 96, 36, -64]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_des([3, 3, 4, -5, 0, 4]),-2),-5),-1),-4)",
    "io_inp": [
      3,
      3,
      4,
      -5,
      0,
      4
    ],
    "io_out": [
      116,
      116,
      96,
      96,
      36,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_des(input),-2),-5),-1),-4)"
  },
  {
    "input": "input : list = [2, 0, 3, -3, 5, 1]\noutput : list = [2, 0, -1, -2, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(sub_n([2, 0, 3, -3, 5, 1],1)))),2)",
    "io_inp": [
      2,
      0,
      3,
      -3,
      5,
      1
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(sub_n(input,1)))),2)"
  },
  {
    "input": "input : list = [-4, 3, 2, -2, -2]\noutput : list = [3, 2, -2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(reverse([-4, 3, 2, -2, -2]),21))))",
    "io_inp": [
      -4,
      3,
      2,
      -2,
      -2
    ],
    "io_out": [
      3,
      2,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(reverse(input),21))))"
  },
  {
    "input": "input : list = [-3, 1, 5, 5, -1]\noutput : list = [-12, -10, -8, -4, -4]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(sub_n([-3, 1, 5, 5, -1],2)),-4),-5),2)",
    "io_inp": [
      -3,
      1,
      5,
      5,
      -1
    ],
    "io_out": [
      -12,
      -10,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(sub_n(input,2)),-4),-5),2)"
  },
  {
    "input": "input : list = [-2, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(drop([-2, 0, 3],1),15))))",
    "io_inp": [
      -2,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(drop(input,1),15))))"
  },
  {
    "input": "input : list = [4, 5, -1, 1, -2]\noutput : list = [8, 7, 4, 2, 1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(take(sub_n([4, 5, -1, 1, -2],-3),16),-2)),-2)",
    "io_inp": [
      4,
      5,
      -1,
      1,
      -2
    ],
    "io_out": [
      8,
      7,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(take(sub_n(input,-3),16),-2)),-2)"
  },
  {
    "input": "input : list = [-5, -5, -5, 0, -5]\noutput : list = [-4, -9, -9, -9]",
    "output": "generated_output : list = add_n(drop(reverse([-5, -5, -5, 0, -5]),1),-4)",
    "io_inp": [
      -5,
      -5,
      -5,
      0,
      -5
    ],
    "io_out": [
      -4,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(input),1),-4)"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [-7, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(reverse([2, 2, -5]),-2))))",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      -7,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [2, -2, 2, -3]\noutput : list = [-5]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(take([2, -2, 2, -3],1),5),1),-3),28)",
    "io_inp": [
      2,
      -2,
      2,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(take(input,1),5),1),-3),28)"
  },
  {
    "input": "input : list = [5, -5, 5, 1, 2]\noutput : list = [10, 5, 25, -25, 25]",
    "output": "generated_output : list = reverse(take(mul_n([5, -5, 5, 1, 2],5),19))",
    "io_inp": [
      5,
      -5,
      5,
      1,
      2
    ],
    "io_out": [
      10,
      5,
      25,
      -25,
      25
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,5),19))"
  },
  {
    "input": "input : list = [4, 4, 3, 3, -2, 0]\noutput : list = [9, 9, 8, 8, 5, 3]",
    "output": "generated_output : list = sub_n(sort_des([4, 4, 3, 3, -2, 0]),-5)",
    "io_inp": [
      4,
      4,
      3,
      3,
      -2,
      0
    ],
    "io_out": [
      9,
      9,
      8,
      8,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [0, 0, 1, -2, -2, -4]\noutput : list = [-4, -2, -2, 0, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse([0, 0, 1, -2, -2, -4]))",
    "io_inp": [
      0,
      0,
      1,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [7]",
    "output": "generated_output : list = take(reverse(take(add_n(drop([5, 5, 1],1),2),1)),39)",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(reverse(take(add_n(drop(input,1),2),1)),39)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [30, 30, 22]",
    "output": "generated_output : list = add_n(mul_n(add_n([-4, -4, -2],-3),-4),2)",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      30,
      30,
      22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-3),-4),2)"
  },
  {
    "input": "input : list = [3, -1, -3, -1, 3]\noutput : list = [-4, 0, 8]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(take([3, -1, -3, -1, 3],3),1),2),14))",
    "io_inp": [
      3,
      -1,
      -3,
      -1,
      3
    ],
    "io_out": [
      -4,
      0,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(take(input,3),1),2),14))"
  },
  {
    "input": "input : list = [-5, 1, -5, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 1, -5, 2],1)",
    "io_inp": [
      -5,
      1,
      -5,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 0, 1]\noutput : list = [-15, -18, -30]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sort_asc([-4, 0, 1]),1),5)),3)",
    "io_inp": [
      -4,
      0,
      1
    ],
    "io_out": [
      -15,
      -18,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sort_asc(input),1),5)),3)"
  },
  {
    "input": "input : list = [5, 2, -2, -4, 3]\noutput : list = [40, 0, -20, -100, -140]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(reverse([5, 2, -2, -4, 3]),3),5),4))",
    "io_inp": [
      5,
      2,
      -2,
      -4,
      3
    ],
    "io_out": [
      40,
      0,
      -20,
      -100,
      -140
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(reverse(input),3),5),4))"
  },
  {
    "input": "input : list = [-3, 0, -2, 2, -2]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = reverse(drop(sort_asc(take(drop([-3, 0, -2, 2, -2],1),11)),1))",
    "io_inp": [
      -3,
      0,
      -2,
      2,
      -2
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(take(drop(input,1),11)),1))"
  },
  {
    "input": "input : list = [2, 5, 4, 2, 4]\noutput : list = [5, 4, 4, 2, 2]",
    "output": "generated_output : list = sort_des([2, 5, 4, 2, 4])",
    "io_inp": [
      2,
      5,
      4,
      2,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-5, -9]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-5, -1],1)),3)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,1)),3)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [0, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([4, -3],-2),-1))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-2),-1))"
  },
  {
    "input": "input : list = [-1, 4, 2, -4, 3, 2]\noutput : list = [13, 12, 6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(drop([-1, 4, 2, -4, 3, 2],3)),4),-3),-3)",
    "io_inp": [
      -1,
      4,
      2,
      -4,
      3,
      2
    ],
    "io_out": [
      13,
      12,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(drop(input,3)),4),-3),-3)"
  },
  {
    "input": "input : list = [5, 4, -1, 1]\noutput : list = [17, 13, 1, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([5, 4, -1, 1]),4),3)",
    "io_inp": [
      5,
      4,
      -1,
      1
    ],
    "io_out": [
      17,
      13,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),4),3)"
  },
  {
    "input": "input : list = [0, -2, 5, 1, 0]\noutput : list = [9, 11, 11, 12, 16]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sub_n([0, -2, 5, 1, 0],-3),-5)),-3))",
    "io_inp": [
      0,
      -2,
      5,
      1,
      0
    ],
    "io_out": [
      9,
      11,
      11,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sub_n(input,-3),-5)),-3))"
  },
  {
    "input": "input : list = [-3, 5, 3, -2, -1]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(take([-3, 5, 3, -2, -1],1),2),-5),-3))",
    "io_inp": [
      -3,
      5,
      3,
      -2,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(take(input,1),2),-5),-3))"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(take([5, -5, -1],1)),-3),5))",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(take(input,1)),-3),5))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc([-4, 1])",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -3, -4]\noutput : list = [-10, -12, -24, -22]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(add_n([2, 3, -3, -4],-1),-5),5)),-2)",
    "io_inp": [
      2,
      3,
      -3,
      -4
    ],
    "io_out": [
      -10,
      -12,
      -24,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(add_n(input,-1),-5),5)),-2)"
  },
  {
    "input": "input : list = [-5, -5, 3, 0, -1, -5]\noutput : list = [-5, -5, -5, -1, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(reverse([-5, -5, 3, 0, -1, -5]),-2))),-2)",
    "io_inp": [
      -5,
      -5,
      3,
      0,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(reverse(input),-2))),-2)"
  },
  {
    "input": "input : list = [-2, 1, 4, 4, 4]\noutput : list = [-2, 4, 10, 10, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(mul_n([-2, 1, 4, 4, 4],2),2)),-2),-2)",
    "io_inp": [
      -2,
      1,
      4,
      4,
      4
    ],
    "io_out": [
      -2,
      4,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(mul_n(input,2),2)),-2),-2)"
  },
  {
    "input": "input : list = [-2, 4, -3, -3]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(drop([-2, 4, -3, -3],2),21),-2),-5),5)",
    "io_inp": [
      -2,
      4,
      -3,
      -3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(drop(input,2),21),-2),-5),5)"
  },
  {
    "input": "input : list = [1, 2, -4, 0]\noutput : list = [-1, -2, -3, -7]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(add_n([1, 2, -4, 0],-3)))))",
    "io_inp": [
      1,
      2,
      -4,
      0
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [2, 0, -4, -5, 4, 2]\noutput : list = [-9, -3, 9, 12, -15, -9]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n([2, 0, -4, -5, 4, 2],4),1),4),-3)",
    "io_inp": [
      2,
      0,
      -4,
      -5,
      4,
      2
    ],
    "io_out": [
      -9,
      -3,
      9,
      12,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(input,4),1),4),-3)"
  },
  {
    "input": "input : list = [-2, -2, -3, -4]\noutput : list = [-17, -12, -7, -7]",
    "output": "generated_output : list = reverse(add_n(mul_n([-2, -2, -3, -4],5),3))",
    "io_inp": [
      -2,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -17,
      -12,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,5),3))"
  },
  {
    "input": "input : list = [4, -2, -2, -5]\noutput : list = [45, 15, 15, 0]",
    "output": "generated_output : list = mul_n(take(take(take(sub_n([4, -2, -2, -5],-5),13),18),11),5)",
    "io_inp": [
      4,
      -2,
      -2,
      -5
    ],
    "io_out": [
      45,
      15,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(sub_n(input,-5),13),18),11),5)"
  },
  {
    "input": "input : list = [-4, 2, -3, 1, -3]\noutput : list = [16, 8, -24, -24, -32]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(mul_n([-4, 2, -3, 1, -3],2),23))),4)",
    "io_inp": [
      -4,
      2,
      -3,
      1,
      -3
    ],
    "io_out": [
      16,
      8,
      -24,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(mul_n(input,2),23))),4)"
  },
  {
    "input": "input : list = [-1, 4, 2, 1]\noutput : list = [-2, 0, 1, 3]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(add_n([-1, 4, 2, 1],1))),17),2)",
    "io_inp": [
      -1,
      4,
      2,
      1
    ],
    "io_out": [
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(add_n(input,1))),17),2)"
  },
  {
    "input": "input : list = [1, 3, -3, 5]\noutput : list = [-3, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([1, 3, -3, 5])",
    "io_inp": [
      1,
      3,
      -3,
      5
    ],
    "io_out": [
      -3,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0, -3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = drop([1, 0, -3, 0],2)",
    "io_inp": [
      1,
      0,
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -2, -1, 3, 4, -2]\noutput : list = [4, 3, 3, -1, -2, -2]",
    "output": "generated_output : list = sort_des([3, -2, -1, 3, 4, -2])",
    "io_inp": [
      3,
      -2,
      -1,
      3,
      4,
      -2
    ],
    "io_out": [
      4,
      3,
      3,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, -5, -1, 3]\noutput : list = [9, 7, 5, 4, 1]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n([-3, 0, -5, -1, 3],-4))),-1)",
    "io_inp": [
      -3,
      0,
      -5,
      -1,
      3
    ],
    "io_out": [
      9,
      7,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(input,-4))),-1)"
  },
  {
    "input": "input : list = [-3, -3, -3, -5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = drop([-3, -3, -3, -5, 2],3)",
    "io_inp": [
      -3,
      -3,
      -3,
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des([5, 5]))),-2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [3, 2, 3, -3]\noutput : list = [-15, 10, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(drop([3, 2, 3, -3],1),5),1)))",
    "io_inp": [
      3,
      2,
      3,
      -3
    ],
    "io_out": [
      -15,
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(drop(input,1),5),1)))"
  },
  {
    "input": "input : list = [0, 3, -3, -4]\noutput : list = [-7, -1, -4]",
    "output": "generated_output : list = add_n(take(drop(reverse([0, 3, -3, -4]),1),27),-4)",
    "io_inp": [
      0,
      3,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(drop(reverse(input),1),27),-4)"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [-5, -5, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(sort_asc([-1, 0, -1]))),1),4)",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(sort_asc(input))),1),4)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [-75, -35, 105]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(mul_n([4, -5, 2],-4),1))),5)",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      -75,
      -35,
      105
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(mul_n(input,-4),1))),5)"
  },
  {
    "input": "input : list = [1, 2, -1]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(take([1, 2, -1],1),4)",
    "io_inp": [
      1,
      2,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),4)"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [4, -2, -5]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([-4, 2, 5]),-1))",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [4, 3, 2]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sub_n(take([4, 3, 2],1),1),2)",
    "io_inp": [
      4,
      3,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,1),1),2)"
  },
  {
    "input": "input : list = [-4, 4, 5, -3]\noutput : list = [-18, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(drop([-4, 4, 5, -3],2),-3)),3))",
    "io_inp": [
      -4,
      4,
      5,
      -3
    ],
    "io_out": [
      -18,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(drop(input,2),-3)),3))"
  },
  {
    "input": "input : list = [-4, -3, 0, 4]\noutput : list = [4, 0, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 0, 4])",
    "io_inp": [
      -4,
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = mul_n([-2, -1],4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, -1, 3, 1, 5]\noutput : list = [5, 1, 3, -1, -2]",
    "output": "generated_output : list = reverse([-2, -1, 3, 1, 5])",
    "io_inp": [
      -2,
      -1,
      3,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -4, 4, 4]\noutput : list = [0, -5, 3, 3]",
    "output": "generated_output : list = add_n([1, -4, 4, 4],-1)",
    "io_inp": [
      1,
      -4,
      4,
      4
    ],
    "io_out": [
      0,
      -5,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -1, -3, -1, -3]\noutput : list = [-8, -5, -7, -5, -7]",
    "output": "generated_output : list = add_n([-4, -1, -3, -1, -3],-4)",
    "io_inp": [
      -4,
      -1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -8,
      -5,
      -7,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -3, 3, 3]\noutput : list = [-3, -1, 3, 3]",
    "output": "generated_output : list = sort_asc([-1, -3, 3, 3])",
    "io_inp": [
      -1,
      -3,
      3,
      3
    ],
    "io_out": [
      -3,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0, 5, -1]\noutput : list = [5, 10, 30, 35]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(add_n([4, 0, 5, -1],1),-1),5),39))",
    "io_inp": [
      4,
      0,
      5,
      -1
    ],
    "io_out": [
      5,
      10,
      30,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(add_n(input,1),-1),5),39))"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(take([3, 5, 0],1),1))),-3)",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(take(input,1),1))),-3)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-8, -16]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(reverse([3, 5]),-4),4)))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(reverse(input),-4),4)))"
  },
  {
    "input": "input : list = [1, -5, 3, -1, 5]\noutput : list = [-2, -8, 0, -4, 2]",
    "output": "generated_output : list = sub_n(sub_n([1, -5, 3, -1, 5],4),-1)",
    "io_inp": [
      1,
      -5,
      3,
      -1,
      5
    ],
    "io_out": [
      -2,
      -8,
      0,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),-1)"
  },
  {
    "input": "input : list = [2, -4, 0, -4, -4]\noutput : list = [-6, 4, 24, 24, 24]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(mul_n([2, -4, 0, -4, -4],-5),2),15),2))",
    "io_inp": [
      2,
      -4,
      0,
      -4,
      -4
    ],
    "io_out": [
      -6,
      4,
      24,
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(mul_n(input,-5),2),15),2))"
  },
  {
    "input": "input : list = [-2, -3, 0, -4, -5]\noutput : list = [-8, -9]",
    "output": "generated_output : list = drop(sort_des(reverse(sub_n(sort_asc([-2, -3, 0, -4, -5]),4))),3)",
    "io_inp": [
      -2,
      -3,
      0,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(sub_n(sort_asc(input),4))),3)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [7, 10]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_des([4, 1])),-2),-4),33)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_des(input)),-2),-4),33)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-12, -10]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(sub_n([4, 2],5),-5)),4),1)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -12,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(sub_n(input,5),-5)),4),1)"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(mul_n([0, 0, 1],-1),2))))",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(mul_n(input,-1),2))))"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [16, 0, -16]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sort_asc([4, 0, -4]),-4))),30)",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      16,
      0,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sort_asc(input),-4))),30)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(add_n([-3, -1],1)))))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(add_n(input,1)))))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(sub_n([0, 4],2),-2),1),-4),-3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(sub_n(input,2),-2),1),-4),-3)"
  },
  {
    "input": "input : list = [1, -2, -5, -1, 3, -3]\noutput : list = [2, 8, 4, 0, 3, 6]",
    "output": "generated_output : list = reverse(reverse(take(reverse(sub_n([1, -2, -5, -1, 3, -3],-5)),11)))",
    "io_inp": [
      1,
      -2,
      -5,
      -1,
      3,
      -3
    ],
    "io_out": [
      2,
      8,
      4,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(sub_n(input,-5)),11)))"
  },
  {
    "input": "input : list = [3, 5, 3, 1]\noutput : list = [1, 3, 1, -1]",
    "output": "generated_output : list = take(mul_n(sub_n(take(mul_n([3, 5, 3, 1],-1),11),-2),-1),16)",
    "io_inp": [
      3,
      5,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(mul_n(input,-1),11),-2),-1),16)"
  },
  {
    "input": "input : list = [-2, 2, 0, 1]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(drop([-2, 2, 0, 1],1)))),-2)",
    "io_inp": [
      -2,
      2,
      0,
      1
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(drop(input,1)))),-2)"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sub_n(take(drop(take(reverse([-5, -3, 0]),16),1),31),-1)",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(take(reverse(input),16),1),31),-1)"
  },
  {
    "input": "input : list = [-4, -1, -2, -4]\noutput : list = [-3, -6, -12, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sort_des([-4, -1, -2, -4]),18),3)))",
    "io_inp": [
      -4,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sort_des(input),18),3)))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(add_n([2, 2],-1)))))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [5, -2, 5, 4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(take(take([5, -2, 5, 4],1),17))",
    "io_inp": [
      5,
      -2,
      5,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,1),17))"
  },
  {
    "input": "input : list = [2, 2, 4, -3, 2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(sort_asc([2, 2, 4, -3, 2])),2)),3)",
    "io_inp": [
      2,
      2,
      4,
      -3,
      2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(sort_asc(input)),2)),3)"
  },
  {
    "input": "input : list = [-2, 4, -3, -2]\noutput : list = [10, 4, 4, 3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(sub_n([-2, 4, -3, -2],-3)),-3)))",
    "io_inp": [
      -2,
      4,
      -3,
      -2
    ],
    "io_out": [
      10,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(sub_n(input,-3)),-3)))"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [-1, -2, 0]",
    "output": "generated_output : list = reverse([0, -2, -1])",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, -5, -5, -5, 5]\noutput : list = [7, -2, -3, -3, -3, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-4, -5, -5, -5, -5, 5])),-2)",
    "io_inp": [
      -4,
      -5,
      -5,
      -5,
      -5,
      5
    ],
    "io_out": [
      7,
      -2,
      -3,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),-2)"
  },
  {
    "input": "input : list = [-4, -3, -2, -4, -2]\noutput : list = [-11, -11, -10, -9, -9]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(sort_asc([-4, -3, -2, -4, -2]),2),14)),5)",
    "io_inp": [
      -4,
      -3,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -11,
      -11,
      -10,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(sort_asc(input),2),14)),5)"
  },
  {
    "input": "input : list = [0, 1, -5, 0, 2]\noutput : list = [-5, 1, 0]",
    "output": "generated_output : list = reverse(take([0, 1, -5, 0, 2],3))",
    "io_inp": [
      0,
      1,
      -5,
      0,
      2
    ],
    "io_out": [
      -5,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [2, -8]",
    "output": "generated_output : list = reverse(take(sub_n([-5, 5],3),2))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,3),2))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [6, -6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(reverse([1, -1]),2)),3))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(reverse(input),2)),3))"
  },
  {
    "input": "input : list = [-1, 4, 5, -3]\noutput : list = [-18, -20]",
    "output": "generated_output : list = add_n(drop(mul_n(sub_n(sort_asc([-1, 4, 5, -3]),-3),-2),2),-4)",
    "io_inp": [
      -1,
      4,
      5,
      -3
    ],
    "io_out": [
      -18,
      -20
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sub_n(sort_asc(input),-3),-2),2),-4)"
  },
  {
    "input": "input : list = [4, -5, -1, -4]\noutput : list = [-10, -37]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(drop([4, -5, -1, -4],2),20),3),3),1)",
    "io_inp": [
      4,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -10,
      -37
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(drop(input,2),20),3),3),1)"
  },
  {
    "input": "input : list = [5, -3, -4, 5]\noutput : list = [10, 10, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(mul_n([5, -3, -4, 5],1),-2)),-1))",
    "io_inp": [
      5,
      -3,
      -4,
      5
    ],
    "io_out": [
      10,
      10,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(mul_n(input,1),-2)),-1))"
  },
  {
    "input": "input : list = [2, 5, 1, 5, 2]\noutput : list = [2, 5, 1]",
    "output": "generated_output : list = take([2, 5, 1, 5, 2],3)",
    "io_inp": [
      2,
      5,
      1,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, 5, -3, 5, -5, 2]\noutput : list = [-8, 20, -20, 12, -20, 16]",
    "output": "generated_output : list = take(reverse(take(mul_n(mul_n([-4, 5, -3, 5, -5, 2],-2),2),23)),53)",
    "io_inp": [
      -4,
      5,
      -3,
      5,
      -5,
      2
    ],
    "io_out": [
      -8,
      20,
      -20,
      12,
      -20,
      16
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(mul_n(input,-2),2),23)),53)"
  },
  {
    "input": "input : list = [5, 0, -2, -3, -5, -3]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(drop([5, 0, -2, -3, -5, -3],3)))))",
    "io_inp": [
      5,
      0,
      -2,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(drop(input,3)))))"
  },
  {
    "input": "input : list = [-4, -2, -3, -1, -5]\noutput : list = [4, 8, 12, 16, 20]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc([-4, -2, -3, -1, -5]),-4))),34)",
    "io_inp": [
      -4,
      -2,
      -3,
      -1,
      -5
    ],
    "io_out": [
      4,
      8,
      12,
      16,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc(input),-4))),34)"
  },
  {
    "input": "input : list = [4, -3, 1, 4, -3, 5]\noutput : list = [15, 14, 11, 7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(drop([4, -3, 1, 4, -3, 5],2),1),-5),5))",
    "io_inp": [
      4,
      -3,
      1,
      4,
      -3,
      5
    ],
    "io_out": [
      15,
      14,
      11,
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(drop(input,2),1),-5),5))"
  },
  {
    "input": "input : list = [1, -4, 3, -5, 4]\noutput : list = [0, -9, -1, -8, -3]",
    "output": "generated_output : list = reverse(sub_n(add_n([1, -4, 3, -5, 4],-3),1))",
    "io_inp": [
      1,
      -4,
      3,
      -5,
      4
    ],
    "io_out": [
      0,
      -9,
      -1,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-3),1))"
  },
  {
    "input": "input : list = [1, -2, 2, 0, 4, 5]\noutput : list = [4, 6, 7, 8, 10, 11]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n([1, -2, 2, 0, 4, 5],-1),-1))),4)",
    "io_inp": [
      1,
      -2,
      2,
      0,
      4,
      5
    ],
    "io_out": [
      4,
      6,
      7,
      8,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n(input,-1),-1))),4)"
  },
  {
    "input": "input : list = [1, 5, -4, -5, 4, 0]\noutput : list = [-3, -4, -7, -8, -12, -13]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_des([1, 5, -4, -5, 4, 0])),-5),3))",
    "io_inp": [
      1,
      5,
      -4,
      -5,
      4,
      0
    ],
    "io_out": [
      -3,
      -4,
      -7,
      -8,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_des(input)),-5),3))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-5, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(sub_n([3, 2],3)))),-5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(sub_n(input,3)))),-5)"
  },
  {
    "input": "input : list = [-2, 3, 3]\noutput : list = [7, 12, 12]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(add_n([-2, 3, 3],4),10)),-5),20)",
    "io_inp": [
      -2,
      3,
      3
    ],
    "io_out": [
      7,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(add_n(input,4),10)),-5),20)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-9, -4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n([4, -1],4),4)))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(input,4),4)))"
  },
  {
    "input": "input : list = [-5, 2, -2, 2, -5, 3]\noutput : list = [6, -10, 4, -4, 4, -10]",
    "output": "generated_output : list = reverse(mul_n([-5, 2, -2, 2, -5, 3],2))",
    "io_inp": [
      -5,
      2,
      -2,
      2,
      -5,
      3
    ],
    "io_out": [
      6,
      -10,
      4,
      -4,
      4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [-10, 10]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(drop([-4, -5, 5],1),-2))))",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(drop(input,1),-2))))"
  },
  {
    "input": "input : list = [-4, -4, -5, -5, 2, -5]\noutput : list = [20, 20, 25, 25, -10, 25]",
    "output": "generated_output : list = mul_n(mul_n([-4, -4, -5, -5, 2, -5],-1),5)",
    "io_inp": [
      -4,
      -4,
      -5,
      -5,
      2,
      -5
    ],
    "io_out": [
      20,
      20,
      25,
      25,
      -10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [64, 4, 4]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n(sort_des([2, -3, -3]),-2),3),4),4)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      64,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(sort_des(input),-2),3),4),4)"
  },
  {
    "input": "input : list = [-3, 1, -2, 4, 0, 1]\noutput : list = [3, 2, 6, 0, 3, -1]",
    "output": "generated_output : list = reverse(add_n(sub_n([-3, 1, -2, 4, 0, 1],-5),-3))",
    "io_inp": [
      -3,
      1,
      -2,
      4,
      0,
      1
    ],
    "io_out": [
      3,
      2,
      6,
      0,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-5),-3))"
  },
  {
    "input": "input : list = [3, -5, -4, -3, -1, 1]\noutput : list = [-4, -12, -11, -10]",
    "output": "generated_output : list = add_n(sub_n(take([3, -5, -4, -3, -1, 1],4),4),-3)",
    "io_inp": [
      3,
      -5,
      -4,
      -3,
      -1,
      1
    ],
    "io_out": [
      -4,
      -12,
      -11,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,4),4),-3)"
  },
  {
    "input": "input : list = [3, 5, -2, 5, -2, -1]\noutput : list = [15, 15, 9, -3, -6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des([3, 5, -2, 5, -2, -1]),3)))",
    "io_inp": [
      3,
      5,
      -2,
      5,
      -2,
      -1
    ],
    "io_out": [
      15,
      15,
      9,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(input),3)))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(drop(add_n(sort_asc([5, -5, 0]),-2),2)))",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(add_n(sort_asc(input),-2),2)))"
  },
  {
    "input": "input : list = [-5, 0, 4]\noutput : list = [-9]",
    "output": "generated_output : list = reverse(add_n(add_n(take([-5, 0, 4],1),-1),-3))",
    "io_inp": [
      -5,
      0,
      4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(input,1),-1),-3))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-60, -60]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n([4, 4],-5))),3)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -60,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(input,-5))),3)"
  },
  {
    "input": "input : list = [-2, -4, -3, 0, 0]\noutput : list = [-4, -3, -2, 0, 0]",
    "output": "generated_output : list = sort_asc([-2, -4, -3, 0, 0])",
    "io_inp": [
      -2,
      -4,
      -3,
      0,
      0
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(reverse([5, -3])))))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-8, -2]",
    "output": "generated_output : list = sub_n([-4, 2],4)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, 5, 2, 2, 4, 2]\noutput : list = [10, 9, 9, 7, 7, 7]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([4, 5, 2, 2, 4, 2],-5),1))",
    "io_inp": [
      4,
      5,
      2,
      2,
      4,
      2
    ],
    "io_out": [
      10,
      9,
      9,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,-5),1))"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(add_n([3, 1, 1],4)),4)),-5)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(add_n(input,4)),4)),-5)"
  },
  {
    "input": "input : list = [-5, 0, -1, -4, 3, -4]\noutput : list = [1, -2, -3, -6, -6, -7]",
    "output": "generated_output : list = add_n(sort_des([-5, 0, -1, -4, 3, -4]),-2)",
    "io_inp": [
      -5,
      0,
      -1,
      -4,
      3,
      -4
    ],
    "io_out": [
      1,
      -2,
      -3,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [6, 5]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(reverse([-2, -3, -4]),-1),-2),2))",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(reverse(input),-1),-2),2))"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [-11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(take([-3, 5, 5],1),8),4),4))",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(take(input,1),8),4),4))"
  },
  {
    "input": "input : list = [-2, 4, -1, 5, -2]\noutput : list = [-8, 20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n(drop([-2, 4, -1, 5, -2],3),-3),2),4),-4)",
    "io_inp": [
      -2,
      4,
      -1,
      5,
      -2
    ],
    "io_out": [
      -8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(drop(input,3),-3),2),4),-4)"
  },
  {
    "input": "input : list = [5, -4, -1, 0, -2]\noutput : list = [-7, -3, -5, -11, 7]",
    "output": "generated_output : list = add_n(reverse(mul_n([5, -4, -1, 0, -2],2)),-3)",
    "io_inp": [
      5,
      -4,
      -1,
      0,
      -2
    ],
    "io_out": [
      -7,
      -3,
      -5,
      -11,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,2)),-3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = add_n([-1, 4],-3)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [20, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([-5, 1]),-4))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      20,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [-1, -3, 2, 2, 1, 4]\noutput : list = [-1, -3, -3, -4, -8]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(drop([-1, -3, 2, 2, 1, 4],1),2))),3)",
    "io_inp": [
      -1,
      -3,
      2,
      2,
      1,
      4
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(drop(input,1),2))),3)"
  },
  {
    "input": "input : list = [-2, -2, -5]\noutput : list = [-3, -3, -6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(sub_n([-2, -2, -5],1)))))",
    "io_inp": [
      -2,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [3, -4, 2, -5, 0, 5]\noutput : list = [6, 4, -4, -8, -10, -14]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(reverse([3, -4, 2, -5, 0, 5])),-2),4))",
    "io_inp": [
      3,
      -4,
      2,
      -5,
      0,
      5
    ],
    "io_out": [
      6,
      4,
      -4,
      -8,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(reverse(input)),-2),4))"
  },
  {
    "input": "input : list = [-5, 5, -4, -3]\noutput : list = [5, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 5, -4, -3])",
    "io_inp": [
      -5,
      5,
      -4,
      -3
    ],
    "io_out": [
      5,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [10]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take([-2, 5, 4],1),-4),3),-5)",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(input,1),-4),3),-5)"
  },
  {
    "input": "input : list = [0, -1, 5, -3, 1, -3]\noutput : list = [-6, -2, -1, 0, 2, 2]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(add_n([0, -1, 5, -3, 1, -3],4)),3)),-1)",
    "io_inp": [
      0,
      -1,
      5,
      -3,
      1,
      -3
    ],
    "io_out": [
      -6,
      -2,
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(add_n(input,4)),3)),-1)"
  },
  {
    "input": "input : list = [-1, 5, -4, 2, 2, 0]\noutput : list = [54, 36, 30, 18, 18, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n(sub_n([-1, 5, -4, 2, 2, 0],4),-1),-3),2))",
    "io_inp": [
      -1,
      5,
      -4,
      2,
      2,
      0
    ],
    "io_out": [
      54,
      36,
      30,
      18,
      18,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(sub_n(input,4),-1),-3),2))"
  },
  {
    "input": "input : list = [-4, -2, 0, 4, -3]\noutput : list = [-4, -3, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -2, 0, 4, -3]))",
    "io_inp": [
      -4,
      -2,
      0,
      4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 3, 1, -1]\noutput : list = [10, -20, -10]",
    "output": "generated_output : list = take(mul_n(take(take(sub_n([-3, 3, 1, -1],-1),3),8),-5),29)",
    "io_inp": [
      -3,
      3,
      1,
      -1
    ],
    "io_out": [
      10,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(sub_n(input,-1),3),8),-5),29)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([-3, 0])),2)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),2)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(mul_n([5, 0],-2))),1),1)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(mul_n(input,-2))),1),1)"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(drop([-3, 2, -3],1),1))))",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [100, -20]",
    "output": "generated_output : list = sort_des(take(mul_n(take(mul_n([5, -1],-4),9),-5),15))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      100,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(mul_n(input,-4),9),-5),15))"
  },
  {
    "input": "input : list = [-4, 4, -2, 2]\noutput : list = [7, 3]",
    "output": "generated_output : list = add_n(reverse(take(add_n(drop([-4, 4, -2, 2],2),3),5)),2)",
    "io_inp": [
      -4,
      4,
      -2,
      2
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(drop(input,2),3),5)),2)"
  },
  {
    "input": "input : list = [0, 3, -1, -4, -4]\noutput : list = [-10, -10, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc(drop([0, 3, -1, -4, -4],2)),2),-5),1)",
    "io_inp": [
      0,
      3,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -10,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(drop(input,2)),2),-5),1)"
  },
  {
    "input": "input : list = [-4, -4, 3, -3, 3]\noutput : list = [-3, -3, -9, -10]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(drop([-4, -4, 3, -3, 3],1)),2),-3),5)",
    "io_inp": [
      -4,
      -4,
      3,
      -3,
      3
    ],
    "io_out": [
      -3,
      -3,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(drop(input,1)),2),-3),5)"
  },
  {
    "input": "input : list = [-5, -2, 2, 5, -3, -4]\noutput : list = [-7, -6, -5, -4, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n([-5, -2, 2, 5, -3, -4],-2))",
    "io_inp": [
      -5,
      -2,
      2,
      5,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [5, -5, 1, -4, -3]\noutput : list = [-120, -160, 40, -200, 200]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(mul_n([5, -5, 1, -4, -3],2)),33),-4),-5)",
    "io_inp": [
      5,
      -5,
      1,
      -4,
      -3
    ],
    "io_out": [
      -120,
      -160,
      40,
      -200,
      200
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(mul_n(input,2)),33),-4),-5)"
  },
  {
    "input": "input : list = [-3, -2, 5, 5, 2, -4]\noutput : list = [-10, -10, -4, 4, 6, 8]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n([-3, -2, 5, 5, 2, -4],-2)),3),-1),-2)",
    "io_inp": [
      -3,
      -2,
      5,
      5,
      2,
      -4
    ],
    "io_out": [
      -10,
      -10,
      -4,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n(input,-2)),3),-1),-2)"
  },
  {
    "input": "input : list = [-1, 1, 3, 4]\noutput : list = [3, 2, 0, -2]",
    "output": "generated_output : list = sort_des(add_n([-1, 1, 3, 4],-1))",
    "io_inp": [
      -1,
      1,
      3,
      4
    ],
    "io_out": [
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [-1, 0, -4, 4, 2]\noutput : list = [2, 0, 8, -8, -4]",
    "output": "generated_output : list = mul_n([-1, 0, -4, 4, 2],-2)",
    "io_inp": [
      -1,
      0,
      -4,
      4,
      2
    ],
    "io_out": [
      2,
      0,
      8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -3, 3, 5]\noutput : list = [9, 7, 1, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sort_asc([-5, -3, 3, 5]),-4))))",
    "io_inp": [
      -5,
      -3,
      3,
      5
    ],
    "io_out": [
      9,
      7,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [6, 13]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n(sub_n([-3, 4],-1),4)),31),-4)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      6,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(sub_n(input,-1),4)),31),-4)"
  },
  {
    "input": "input : list = [-5, 0, 1, -1, 0, -4]\noutput : list = [-4, 0, -1, 1, 0, -5]",
    "output": "generated_output : list = take(take(reverse([-5, 0, 1, -1, 0, -4]),10),28)",
    "io_inp": [
      -5,
      0,
      1,
      -1,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      -1,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),10),28)"
  },
  {
    "input": "input : list = [-1, 3, 2, 5]\noutput : list = [-1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([-1, 3, 2, 5])",
    "io_inp": [
      -1,
      3,
      2,
      5
    ],
    "io_out": [
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [-37, -37]",
    "output": "generated_output : list = sub_n(take(mul_n(drop(sub_n([-1, -5, -5],3),1),5),29),-3)",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      -37,
      -37
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(drop(sub_n(input,3),1),5),29),-3)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc([-4, -4])),26)))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc(input)),26)))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-5]",
    "output": "generated_output : list = drop(sort_des(sub_n(sort_des(reverse([-1, -4])),1)),1)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(sort_des(reverse(input)),1)),1)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [-15, -12, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse([1, 0, 5])),5),3))",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      -15,
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse(input)),5),3))"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [125, 25, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_asc([5, 0, 1]),-5))),-5)",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      125,
      25,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_asc(input),-5))),-5)"
  },
  {
    "input": "input : list = [2, -1, -2, 5, 4, 2]\noutput : list = [-2, -1, 2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([2, -1, -2, 5, 4, 2]))",
    "io_inp": [
      2,
      -1,
      -2,
      5,
      4,
      2
    ],
    "io_out": [
      -2,
      -1,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(reverse([-2, 3])))))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [4, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 4])",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [-2, -12, -18]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(sort_asc([5, 2, -3]),4))),-2)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      -2,
      -12,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(sort_asc(input),4))),-2)"
  },
  {
    "input": "input : list = [4, 2, 5, -5]\noutput : list = [20, 6, 2, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(sub_n([4, 2, 5, -5],5))),-2))",
    "io_inp": [
      4,
      2,
      5,
      -5
    ],
    "io_out": [
      20,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(sub_n(input,5))),-2))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-24, -12]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc([-1, 2]),4)),-4)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(input),4)),-4)"
  },
  {
    "input": "input : list = [-4, 1, 1, 1, -5, 1]\noutput : list = [-5, 0, 0, 0, -6, 0]",
    "output": "generated_output : list = sub_n([-4, 1, 1, 1, -5, 1],1)",
    "io_inp": [
      -4,
      1,
      1,
      1,
      -5,
      1
    ],
    "io_out": [
      -5,
      0,
      0,
      0,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -5, 3, 3, 0]\noutput : list = [-40, -40, 80, 120]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(mul_n([-3, -5, 3, 3, 0],5),4)),5),-4)",
    "io_inp": [
      -3,
      -5,
      3,
      3,
      0
    ],
    "io_out": [
      -40,
      -40,
      80,
      120
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(mul_n(input,5),4)),5),-4)"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [3, 3, -5]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des([3, -5, 3])),1)))",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(add_n([1, 0, -2],-3)),-5)),-1)",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(add_n(input,-3)),-5)),-1)"
  },
  {
    "input": "input : list = [-4, -2, 0, 5, -3, -4]\noutput : list = [-5, -4, 4]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(drop([-4, -2, 0, 5, -3, -4],3),-2),-1)),-2)",
    "io_inp": [
      -4,
      -2,
      0,
      5,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(drop(input,3),-2),-1)),-2)"
  },
  {
    "input": "input : list = [1, 2, -3, 5]\noutput : list = [35, -5, 20, 15]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(reverse([1, 2, -3, 5]),-1),5),14),-5)",
    "io_inp": [
      1,
      2,
      -3,
      5
    ],
    "io_out": [
      35,
      -5,
      20,
      15
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(reverse(input),-1),5),14),-5)"
  },
  {
    "input": "input : list = [-2, -3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(drop([-2, -3, -2],1),6)))",
    "io_inp": [
      -2,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(drop(input,1),6)))"
  },
  {
    "input": "input : list = [2, 1, 5, -1]\noutput : list = [13, 12, 16, 10]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(add_n([2, 1, 5, -1],5)),-4)),-2)",
    "io_inp": [
      2,
      1,
      5,
      -1
    ],
    "io_out": [
      13,
      12,
      16,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(add_n(input,5)),-4)),-2)"
  },
  {
    "input": "input : list = [3, -4, 3]\noutput : list = [1, -6, 1]",
    "output": "generated_output : list = add_n([3, -4, 3],-2)",
    "io_inp": [
      3,
      -4,
      3
    ],
    "io_out": [
      1,
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -4, 5, 3, 3, 4]\noutput : list = [-3, 0, 4, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(add_n([-1, -4, 5, 3, 3, 4],1)))))",
    "io_inp": [
      -1,
      -4,
      5,
      3,
      3,
      4
    ],
    "io_out": [
      -3,
      0,
      4,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(add_n(input,1)))))"
  },
  {
    "input": "input : list = [-3, 0, -2, 5]\noutput : list = [5, 0, -2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(take(sort_asc([-3, 0, -2, 5]),18)),17))",
    "io_inp": [
      -3,
      0,
      -2,
      5
    ],
    "io_out": [
      5,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(sort_asc(input),18)),17))"
  },
  {
    "input": "input : list = [-3, -2, -2, -1, 2, -4]\noutput : list = [0, -3, -4, -4, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des([-3, -2, -2, -1, 2, -4]),2)",
    "io_inp": [
      -3,
      -2,
      -2,
      -1,
      2,
      -4
    ],
    "io_out": [
      0,
      -3,
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sort_des(reverse([3, 0, 1]))",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, 4, 3, 3, -5, -5]\noutput : list = [4, 4, 3, 3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse([4, 4, 3, 3, -5, -5]))))",
    "io_inp": [
      4,
      4,
      3,
      3,
      -5,
      -5
    ],
    "io_out": [
      4,
      4,
      3,
      3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [4, 3, -4, 5, 1, 3]\noutput : list = [9, 8, 7, 7, 5, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(sort_des([4, 3, -4, 5, 1, 3]))),4))",
    "io_inp": [
      4,
      3,
      -4,
      5,
      1,
      3
    ],
    "io_out": [
      9,
      8,
      7,
      7,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(sort_des(input))),4))"
  },
  {
    "input": "input : list = [-3, 0, 2, 5, -3]\noutput : list = [1, -2, -4, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([-3, 0, 2, 5, -3])),4)",
    "io_inp": [
      -3,
      0,
      2,
      5,
      -3
    ],
    "io_out": [
      1,
      -2,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [-1, -3, 0, 4]\noutput : list = [-2, 0, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sub_n([-1, -3, 0, 4],1)),-5)),3)",
    "io_inp": [
      -1,
      -3,
      0,
      4
    ],
    "io_out": [
      -2,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sub_n(input,1)),-5)),3)"
  },
  {
    "input": "input : list = [0, 0, -5, 1, 2]\noutput : list = [-5, 0, 0, 1, 2]",
    "output": "generated_output : list = sort_asc([0, 0, -5, 1, 2])",
    "io_inp": [
      0,
      0,
      -5,
      1,
      2
    ],
    "io_out": [
      -5,
      0,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -3, -3, 3]\noutput : list = [-13, -38, -38, -8]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n([2, -3, -3, 3],4),5),3),29)",
    "io_inp": [
      2,
      -3,
      -3,
      3
    ],
    "io_out": [
      -13,
      -38,
      -38,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(input,4),5),3),29)"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [-12, -20, -16]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([2, 4, 3],-2),1),-4)",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      -12,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,-2),1),-4)"
  },
  {
    "input": "input : list = [-5, 3, 0, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = drop([-5, 3, 0, 2, 0],3)",
    "io_inp": [
      -5,
      3,
      0,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, 3, 4, -4, -5, 2]\noutput : list = [4, 3, 3, 2, -4, -5]",
    "output": "generated_output : list = take(sort_des([3, 3, 4, -4, -5, 2]),12)",
    "io_inp": [
      3,
      3,
      4,
      -4,
      -5,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),12)"
  },
  {
    "input": "input : list = [-4, 1, -2, -5, -3]\noutput : list = [11, 8, 7, 6, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_asc([-4, 1, -2, -5, -3]))),5),-5)",
    "io_inp": [
      -4,
      1,
      -2,
      -5,
      -3
    ],
    "io_out": [
      11,
      8,
      7,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_asc(input))),5),-5)"
  },
  {
    "input": "input : list = [2, 0, 1, -4, 5, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take([2, 0, 1, -4, 5, -2],1),2)))",
    "io_inp": [
      2,
      0,
      1,
      -4,
      5,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(input,1),2)))"
  },
  {
    "input": "input : list = [5, 2, 4, -5, -4]\noutput : list = [5, 4, 2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([5, 2, 4, -5, -4]))",
    "io_inp": [
      5,
      2,
      4,
      -5,
      -4
    ],
    "io_out": [
      5,
      4,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-4, -1, 4, 0, 5, 4]\noutput : list = [5, 8, 13, 9, 14, 13]",
    "output": "generated_output : list = add_n(sub_n([-4, -1, 4, 0, 5, 4],-5),4)",
    "io_inp": [
      -4,
      -1,
      4,
      0,
      5,
      4
    ],
    "io_out": [
      5,
      8,
      13,
      9,
      14,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),4)"
  },
  {
    "input": "input : list = [3, 5, 5, -2, -5]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(drop([3, 5, 5, -2, -5],3),7),5),1))",
    "io_inp": [
      3,
      5,
      5,
      -2,
      -5
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(drop(input,3),7),5),1))"
  },
  {
    "input": "input : list = [2, 2, -1, -2, 2]\noutput : list = [-1, -1, -4, -5, -1]",
    "output": "generated_output : list = add_n([2, 2, -1, -2, 2],-3)",
    "io_inp": [
      2,
      2,
      -1,
      -2,
      2
    ],
    "io_out": [
      -1,
      -1,
      -4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [0, 7, 7]",
    "output": "generated_output : list = sub_n([-3, 4, 4],-3)",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      0,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [12, 16]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(drop([3, 0, 1],1)),4)),-4)",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(drop(input,1)),4)),-4)"
  },
  {
    "input": "input : list = [4, 5, 3, 0, -4, 1]\noutput : list = [-160, -128, -96, -32, 0, 128]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(reverse([4, 5, 3, 0, -4, 1])),-4),-4),-2)",
    "io_inp": [
      4,
      5,
      3,
      0,
      -4,
      1
    ],
    "io_out": [
      -160,
      -128,
      -96,
      -32,
      0,
      128
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(reverse(input)),-4),-4),-2)"
  },
  {
    "input": "input : list = [-5, 4, -5, 1]\noutput : list = [0, -3, -9]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(drop([-5, 4, -5, 1],1),-5),2)),3)",
    "io_inp": [
      -5,
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(drop(input,1),-5),2)),3)"
  },
  {
    "input": "input : list = [-5, -4, 3, 4, 4, -5]\noutput : list = [-5, -5, -4, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(add_n([-5, -4, 3, 4, 4, -5],4))),-4))",
    "io_inp": [
      -5,
      -4,
      3,
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(add_n(input,4))),-4))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [20, 25]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(add_n([0, -1],-4),3),-5)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(add_n(input,-4),3),-5)))"
  },
  {
    "input": "input : list = [5, 5, 4, -4, -3, -3]\noutput : list = [1, 0, -7, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(drop([5, 5, 4, -4, -3, -3],1),4))))",
    "io_inp": [
      5,
      5,
      4,
      -4,
      -3,
      -3
    ],
    "io_out": [
      1,
      0,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(drop(input,1),4))))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [6, -1]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(reverse([4, -3]),2),-4)),25)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(reverse(input),2),-4)),25)"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [-1, 2]",
    "output": "generated_output : list = reverse(take(take(add_n(drop([-1, 3, 0],1),-1),8),18))",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(drop(input,1),-1),8),18))"
  },
  {
    "input": "input : list = [2, 1, 3, 1, -2]\noutput : list = [26, 23, 20, 20, 11]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(add_n([2, 1, 3, 1, -2],4),3),-5)),49)",
    "io_inp": [
      2,
      1,
      3,
      1,
      -2
    ],
    "io_out": [
      26,
      23,
      20,
      20,
      11
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(add_n(input,4),3),-5)),49)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [8]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(sub_n([3, 4],-1),1),-4)),14)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(sub_n(input,-1),1),-4)),14)"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [0, -5, -10]",
    "output": "generated_output : list = sort_des(sub_n([0, 5, -5],5))",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      0,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [1, 2, 0]\noutput : list = [10, 9, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(sort_des([1, 2, 0]),-4)),5),1)",
    "io_inp": [
      1,
      2,
      0
    ],
    "io_out": [
      10,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(sort_des(input),-4)),5),1)"
  },
  {
    "input": "input : list = [-2, 4, 4, 2, 0, 2]\noutput : list = [0, 6, 6, 4, 2, 4]",
    "output": "generated_output : list = sub_n([-2, 4, 4, 2, 0, 2],-2)",
    "io_inp": [
      -2,
      4,
      4,
      2,
      0,
      2
    ],
    "io_out": [
      0,
      6,
      6,
      4,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, 4, -1, -4, 2]\noutput : list = [2, 1, -1, -4, -7]",
    "output": "generated_output : list = sort_des(take(add_n([5, 4, -1, -4, 2],-3),9))",
    "io_inp": [
      5,
      4,
      -1,
      -4,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,-3),9))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [7, 1]",
    "output": "generated_output : list = sub_n([2, -4],-5)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -5, -3, -1, -2]\noutput : list = [4, 4, 3, 2, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([-1, -5, -3, -1, -2],-5)))",
    "io_inp": [
      -1,
      -5,
      -3,
      -1,
      -2
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-5)))"
  },
  {
    "input": "input : list = [-4, -1, 2, 4]\noutput : list = [12, 6, -3, -12]",
    "output": "generated_output : list = mul_n(take(mul_n(take(reverse([-4, -1, 2, 4]),14),-1),27),-3)",
    "io_inp": [
      -4,
      -1,
      2,
      4
    ],
    "io_out": [
      12,
      6,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(reverse(input),14),-1),27),-3)"
  },
  {
    "input": "input : list = [-2, -5, -4]\noutput : list = [-6, -16, -21]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(mul_n([-2, -5, -4],5)),9)),4)",
    "io_inp": [
      -2,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -16,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(mul_n(input,5)),9)),4)"
  },
  {
    "input": "input : list = [-3, -4, 0, 0, 1, 2]\noutput : list = [1, 0, -1, -1, -4, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(add_n([-3, -4, 0, 0, 1, 2],-3),24))),-2)",
    "io_inp": [
      -3,
      -4,
      0,
      0,
      1,
      2
    ],
    "io_out": [
      1,
      0,
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(add_n(input,-3),24))),-2)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [4, -11]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(mul_n([-2, 3],-3),-5)),-3))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      4,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(mul_n(input,-3),-5)),-3))"
  },
  {
    "input": "input : list = [-5, 5, 0, -1, -3, -3]\noutput : list = [-30, 0, 6, 18, 18, 30]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n([-5, 5, 0, -1, -3, -3],1),2)),-3))",
    "io_inp": [
      -5,
      5,
      0,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -30,
      0,
      6,
      18,
      18,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n(input,1),2)),-3))"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = sort_des(add_n([1, -1, -1],1))",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [9, 4]",
    "output": "generated_output : list = sub_n(sub_n([0, -5],-4),-5)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-5)"
  },
  {
    "input": "input : list = [-3, -2, -5, -1]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(drop([-3, -2, -5, -1],1))),-3),39)",
    "io_inp": [
      -3,
      -2,
      -5,
      -1
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(drop(input,1))),-3),39)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-48, -24]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n([2, 4],-2),3)),2))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -48,
      -24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n(input,-2),3)),2))"
  },
  {
    "input": "input : list = [-4, 4, 2, 1]\noutput : list = [6, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(drop([-4, 4, 2, 1],2)))),5)",
    "io_inp": [
      -4,
      4,
      2,
      1
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(drop(input,2)))),5)"
  },
  {
    "input": "input : list = [5, 1, 3, -5]\noutput : list = [5, -3]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(reverse([5, 1, 3, -5]),2),5)),-1)",
    "io_inp": [
      5,
      1,
      3,
      -5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(reverse(input),2),5)),-1)"
  },
  {
    "input": "input : list = [5, -3, 0, 4, -4, 5]\noutput : list = [-7, -6, -3, 1, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n([5, -3, 0, 4, -4, 5],3))))",
    "io_inp": [
      5,
      -3,
      0,
      4,
      -4,
      5
    ],
    "io_out": [
      -7,
      -6,
      -3,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(input,3))))"
  },
  {
    "input": "input : list = [0, 2, -2, 4, 0, 5]\noutput : list = [0, 2]",
    "output": "generated_output : list = take([0, 2, -2, 4, 0, 5],2)",
    "io_inp": [
      0,
      2,
      -2,
      4,
      0,
      5
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n([3, 0],-2)),15))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(input,-2)),15))"
  },
  {
    "input": "input : list = [4, -2, 1, -1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(drop([4, -2, 1, -1],1),2))))",
    "io_inp": [
      4,
      -2,
      1,
      -1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(drop(input,1),2))))"
  },
  {
    "input": "input : list = [-4, -3, -2, 1, 0, -4]\noutput : list = [-55, -40, -25, 20, 5, -55]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(mul_n([-4, -3, -2, 1, 0, -4],-3),-1),39),-2),-5)",
    "io_inp": [
      -4,
      -3,
      -2,
      1,
      0,
      -4
    ],
    "io_out": [
      -55,
      -40,
      -25,
      20,
      5,
      -55
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(mul_n(input,-3),-1),39),-2),-5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [20, 4]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(reverse([3, -1]),2),3),-5),-4)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(reverse(input),2),3),-5),-4)"
  },
  {
    "input": "input : list = [-2, -3, -2, -3, 5, -1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(take([-2, -3, -2, -3, 5, -1],1)),2)))",
    "io_inp": [
      -2,
      -3,
      -2,
      -3,
      5,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(take(input,1)),2)))"
  },
  {
    "input": "input : list = [2, 0, 3, 2, -1, -4]\noutput : list = [10, 9, 9, 7, 6, 3]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(reverse([2, 0, 3, 2, -1, -4])),-1),-5),-3)",
    "io_inp": [
      2,
      0,
      3,
      2,
      -1,
      -4
    ],
    "io_out": [
      10,
      9,
      9,
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(reverse(input)),-1),-5),-3)"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = drop([4, 2, 0],1)",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 3, 1, -3, -5, -3]\noutput : list = [-8, -12, -14, -12]",
    "output": "generated_output : list = add_n(drop(take(sub_n([4, 3, 1, -3, -5, -3],5),23),2),-4)",
    "io_inp": [
      4,
      3,
      1,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -12,
      -14,
      -12
    ],
    "output_masked": "generated_output : list = add_n(drop(take(sub_n(input,5),23),2),-4)"
  },
  {
    "input": "input : list = [0, -5, 2, 4, -3, 2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -5, 2, 4, -3, 2],1)",
    "io_inp": [
      0,
      -5,
      2,
      4,
      -3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -5, 1, 4, 0]\noutput : list = [-10, 38, 50, 62, 98]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sub_n([-1, -5, 1, 4, 0],-4)),-3),-4),2)",
    "io_inp": [
      -1,
      -5,
      1,
      4,
      0
    ],
    "io_out": [
      -10,
      38,
      50,
      62,
      98
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sub_n(input,-4)),-3),-4),2)"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [13, 13, -22]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(sort_des([4, -3, -3]),16)),-5),2)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      13,
      13,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(sort_des(input),16)),-5),2)"
  },
  {
    "input": "input : list = [2, -2, 1, -5, -5]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take([2, -2, 1, -5, -5],2))))",
    "io_inp": [
      2,
      -2,
      1,
      -5,
      -5
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(input,2))))"
  },
  {
    "input": "input : list = [2, 0, 3, 0]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(drop([2, 0, 3, 0],1)))))",
    "io_inp": [
      2,
      0,
      3,
      0
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -1, -4, -2, 3]\noutput : list = [-1, 14]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(take([2, -1, -4, -2, 3],2))),5),4)",
    "io_inp": [
      2,
      -1,
      -4,
      -2,
      3
    ],
    "io_out": [
      -1,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(take(input,2))),5),4)"
  },
  {
    "input": "input : list = [4, -1, -3, -4]\noutput : list = [-3, -8, -10, -11]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(reverse([4, -1, -3, -4]))),3),-4)",
    "io_inp": [
      4,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -8,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(reverse(input))),3),-4)"
  },
  {
    "input": "input : list = [-4, -4, 2, 3, -1, -2]\noutput : list = [5, 4, 1, 0, -2, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([-4, -4, 2, 3, -1, -2]),2))",
    "io_inp": [
      -4,
      -4,
      2,
      3,
      -1,
      -2
    ],
    "io_out": [
      5,
      4,
      1,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [-2, -4, 3, -5, 1]\noutput : list = [6, -6]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(drop([-2, -4, 3, -5, 1],3),1),-3)),2)",
    "io_inp": [
      -2,
      -4,
      3,
      -5,
      1
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(drop(input,3),1),-3)),2)"
  },
  {
    "input": "input : list = [-5, -5, 4, 5]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(drop([-5, -5, 4, 5],2)),12)))",
    "io_inp": [
      -5,
      -5,
      4,
      5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(drop(input,2)),12)))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = sort_des([2, -5])",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, -2, 0, 0, -2]\noutput : list = [-8, -4, -6, -4, -4, -6]",
    "output": "generated_output : list = sub_n(add_n([-4, 0, -2, 0, 0, -2],-1),3)",
    "io_inp": [
      -4,
      0,
      -2,
      0,
      0,
      -2
    ],
    "io_out": [
      -8,
      -4,
      -6,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),3)"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = drop([-2, -3, 3],1)",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [-15, 20, -25]",
    "output": "generated_output : list = reverse(mul_n(reverse([-3, 4, -5]),5))",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      -15,
      20,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [1, 2, -2, 4, -2]\noutput : list = [4, 2, 1, -2, -2]",
    "output": "generated_output : list = take(take(reverse(sort_asc(sort_des([1, 2, -2, 4, -2]))),44),53)",
    "io_inp": [
      1,
      2,
      -2,
      4,
      -2
    ],
    "io_out": [
      4,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(sort_des(input))),44),53)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take(drop([-4, -3, 3],1),8)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),8)"
  },
  {
    "input": "input : list = [3, 2, 3, 2]\noutput : list = [4, 3, 4, 3]",
    "output": "generated_output : list = sub_n(add_n([3, 2, 3, 2],4),3)",
    "io_inp": [
      3,
      2,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),3)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [8, 6]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(sort_asc([-3, -5]),1),5),5))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(sort_asc(input),1),5),5))"
  },
  {
    "input": "input : list = [-4, -2, 5, 0]\noutput : list = [-14, -6, 22, 2]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(mul_n([-4, -2, 5, 0],4),1),-5),7),3)",
    "io_inp": [
      -4,
      -2,
      5,
      0
    ],
    "io_out": [
      -14,
      -6,
      22,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(mul_n(input,4),1),-5),7),3)"
  },
  {
    "input": "input : list = [3, -1, 0, 4]\noutput : list = [-1, 7, 9, 1]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(mul_n([3, -1, 0, 4],-2),-1),3),5))",
    "io_inp": [
      3,
      -1,
      0,
      4
    ],
    "io_out": [
      -1,
      7,
      9,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(mul_n(input,-2),-1),3),5))"
  },
  {
    "input": "input : list = [-2, 4, -4, -2, 2, -5]\noutput : list = [-2, 4, -4, -2]",
    "output": "generated_output : list = take([-2, 4, -4, -2, 2, -5],4)",
    "io_inp": [
      -2,
      4,
      -4,
      -2,
      2,
      -5
    ],
    "io_out": [
      -2,
      4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [4, 1, 0, 0, 5]\noutput : list = [6, 1, 1, 2, 5]",
    "output": "generated_output : list = mul_n(add_n(reverse([4, 1, 0, 0, 5]),1),1)",
    "io_inp": [
      4,
      1,
      0,
      0,
      5
    ],
    "io_out": [
      6,
      1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),1),1)"
  },
  {
    "input": "input : list = [5, -4, -2, 2, -4]\noutput : list = [8, -8, 16]",
    "output": "generated_output : list = mul_n(drop([5, -4, -2, 2, -4],2),-4)",
    "io_inp": [
      5,
      -4,
      -2,
      2,
      -4
    ],
    "io_out": [
      8,
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [2, -2, -4, -3, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(mul_n(add_n(take(drop([2, -2, -4, -3, -3],3),4),3),1),31)",
    "io_inp": [
      2,
      -2,
      -4,
      -3,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(drop(input,3),4),3),1),31)"
  },
  {
    "input": "input : list = [4, 0, 1, -3, 2]\noutput : list = [9, 7, 6, 5, 2]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(add_n([4, 0, 1, -3, 2],5)),28)))",
    "io_inp": [
      4,
      0,
      1,
      -3,
      2
    ],
    "io_out": [
      9,
      7,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(add_n(input,5)),28)))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-16, 19]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(mul_n([-4, 3],5)),2),3),-3)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -16,
      19
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(mul_n(input,5)),2),3),-3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [7, 0]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(add_n([3, -4],4)),3)))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(add_n(input,4)),3)))"
  },
  {
    "input": "input : list = [-3, 1, 1, 3]\noutput : list = [-8, -24, -24, -32]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sub_n([-3, 1, 1, 3],-4),1),-4)))",
    "io_inp": [
      -3,
      1,
      1,
      3
    ],
    "io_out": [
      -8,
      -24,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sub_n(input,-4),1),-4)))"
  },
  {
    "input": "input : list = [3, 3, -3, -2, -1, 5]\noutput : list = [-7, -7, 17, 13, 9, -15]",
    "output": "generated_output : list = sub_n(take(mul_n([3, 3, -3, -2, -1, 5],-4),22),-5)",
    "io_inp": [
      3,
      3,
      -3,
      -2,
      -1,
      5
    ],
    "io_out": [
      -7,
      -7,
      17,
      13,
      9,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,-4),22),-5)"
  },
  {
    "input": "input : list = [3, 3, 3, -3, -1, -2]\noutput : list = [-3, -2, -1, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(drop([3, 3, 3, -3, -1, -2],2),9))))",
    "io_inp": [
      3,
      3,
      3,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(drop(input,2),9))))"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [10, 9, 7]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(sub_n([0, 2, 3],-2))),33),5)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      10,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(sub_n(input,-2))),33),5)"
  },
  {
    "input": "input : list = [0, 1, 3, -4]\noutput : list = [-1, 3, 4, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n([0, 1, 3, -4],-2))),-2),-1)",
    "io_inp": [
      0,
      1,
      3,
      -4
    ],
    "io_out": [
      -1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n(input,-2))),-2),-1)"
  },
  {
    "input": "input : list = [5, -2, -3, 4, 3, 2]\noutput : list = [22, -13, -18, 17, 12, 7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(mul_n([5, -2, -3, 4, 3, 2],5),-3),3),5),-2)",
    "io_inp": [
      5,
      -2,
      -3,
      4,
      3,
      2
    ],
    "io_out": [
      22,
      -13,
      -18,
      17,
      12,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(mul_n(input,5),-3),3),5),-2)"
  },
  {
    "input": "input : list = [2, 1, -4, 4, 2]\noutput : list = [-13, -8, -7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(take([2, 1, -4, 4, 2],3)),4),3),-2)",
    "io_inp": [
      2,
      1,
      -4,
      4,
      2
    ],
    "io_out": [
      -13,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(take(input,3)),4),3),-2)"
  },
  {
    "input": "input : list = [1, 5, -5, 1]\noutput : list = [40, -8, -8, -40]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_asc([1, 5, -5, 1])),-4),2))",
    "io_inp": [
      1,
      5,
      -5,
      1
    ],
    "io_out": [
      40,
      -8,
      -8,
      -40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_asc(input)),-4),2))"
  },
  {
    "input": "input : list = [-1, 4, -4, -1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 4, -4, -1, -1],1)",
    "io_inp": [
      -1,
      4,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [1, 7, 16]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sort_des([-2, -5, 0])),-3)),1)",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      1,
      7,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sort_des(input)),-3)),1)"
  },
  {
    "input": "input : list = [-2, -5, 3, -4]\noutput : list = [-7, -6, -4, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des([-2, -5, 3, -4]),-2),4))",
    "io_inp": [
      -2,
      -5,
      3,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(input),-2),4))"
  },
  {
    "input": "input : list = [5, 4, 1, 5, -5, -5]\noutput : list = [5, 5, 4, 1, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(reverse([5, 4, 1, 5, -5, -5])),5)))",
    "io_inp": [
      5,
      4,
      1,
      5,
      -5,
      -5
    ],
    "io_out": [
      5,
      5,
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(reverse(input)),5)))"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-9, -10, -10]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([-5, -5, -4]),5))",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -9,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = sort_des([-1, -2, 0])",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des([0, 4])",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [1, -13]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(mul_n([2, -5],2),-3),2)))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      1,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(mul_n(input,2),-3),2)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n([-5, -4],5)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, -4, 2, 4]\noutput : list = [-16, -8, 8, 16]",
    "output": "generated_output : list = mul_n(sort_des([-2, -4, 2, 4]),-4)",
    "io_inp": [
      -2,
      -4,
      2,
      4
    ],
    "io_out": [
      -16,
      -8,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [5, 3, 2, -4, 3]\noutput : list = [9, 7, 7, 6, 0]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(sort_des([5, 3, 2, -4, 3]),-4)),33))",
    "io_inp": [
      5,
      3,
      2,
      -4,
      3
    ],
    "io_out": [
      9,
      7,
      7,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(sort_des(input),-4)),33))"
  },
  {
    "input": "input : list = [-3, 1, -2, -4, -1, -5]\noutput : list = [-6, -5, -4, -3, -2, 0]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([-3, 1, -2, -4, -1, -5]),1),-1)",
    "io_inp": [
      -3,
      1,
      -2,
      -4,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),1),-1)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [60, 0]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(mul_n([2, 0],-2)),4),-3),-5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      60,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(mul_n(input,-2)),4),-3),-5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [22, -2]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n([2, -2],4),-3),3),4),-2)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      22,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n(input,4),-3),3),4),-2)"
  },
  {
    "input": "input : list = [4, -5, -5, -2, 4]\noutput : list = [-6, -6, -3, 3, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([4, -5, -5, -2, 4])),-1)",
    "io_inp": [
      4,
      -5,
      -5,
      -2,
      4
    ],
    "io_out": [
      -6,
      -6,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [-4, 6, 8]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([2, 1, -4],2),-4))",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      -4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,2),-4))"
  },
  {
    "input": "input : list = [-1, -1, 0, 2, 2]\noutput : list = [-1, 0, 2, 2]",
    "output": "generated_output : list = drop([-1, -1, 0, 2, 2],1)",
    "io_inp": [
      -1,
      -1,
      0,
      2,
      2
    ],
    "io_out": [
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2, 0, 4]\noutput : list = [4, 0, 2, 2]",
    "output": "generated_output : list = take(reverse([2, 2, 0, 4]),9)",
    "io_inp": [
      2,
      2,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [0, -2, 1, -1, 3]\noutput : list = [0, -8, 4, -4, 12]",
    "output": "generated_output : list = mul_n([0, -2, 1, -1, 3],4)",
    "io_inp": [
      0,
      -2,
      1,
      -1,
      3
    ],
    "io_out": [
      0,
      -8,
      4,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, 4, -5, 1, -2]\noutput : list = [17, 8, -1, -4, -10]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(reverse([-3, 4, -5, 1, -2]),3))),-5)",
    "io_inp": [
      -3,
      4,
      -5,
      1,
      -2
    ],
    "io_out": [
      17,
      8,
      -1,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(reverse(input),3))),-5)"
  },
  {
    "input": "input : list = [-2, 5, -5, 3]\noutput : list = [-10, -7]",
    "output": "generated_output : list = add_n(reverse(drop(reverse(sort_asc([-2, 5, -5, 3])),2)),-5)",
    "io_inp": [
      -2,
      5,
      -5,
      3
    ],
    "io_out": [
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(reverse(sort_asc(input)),2)),-5)"
  },
  {
    "input": "input : list = [4, -1, 0]\noutput : list = [40, -10, 0]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(reverse([4, -1, 0]),5)),2),38)",
    "io_inp": [
      4,
      -1,
      0
    ],
    "io_out": [
      40,
      -10,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(reverse(input),5)),2),38)"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [-6, 4, 10]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(sub_n([5, 2, -3],-5)),-5),10),2)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      -6,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(sub_n(input,-5)),-5),10),2)"
  },
  {
    "input": "input : list = [4, -3, 1, 3, 2, 5]\noutput : list = [-24, 8, 24, 16, 40]",
    "output": "generated_output : list = drop(reverse(mul_n(reverse(mul_n([4, -3, 1, 3, 2, 5],2)),4)),1)",
    "io_inp": [
      4,
      -3,
      1,
      3,
      2,
      5
    ],
    "io_out": [
      -24,
      8,
      24,
      16,
      40
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(reverse(mul_n(input,2)),4)),1)"
  },
  {
    "input": "input : list = [-2, -2, 0]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des([-2, -2, 0]),-1),9),-1)",
    "io_inp": [
      -2,
      -2,
      0
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(input),-1),9),-1)"
  },
  {
    "input": "input : list = [1, -4, -4, 2, -2]\noutput : list = [-4, -9, -9, -3, -7]",
    "output": "generated_output : list = add_n([1, -4, -4, 2, -2],-5)",
    "io_inp": [
      1,
      -4,
      -4,
      2,
      -2
    ],
    "io_out": [
      -4,
      -9,
      -9,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 0, -1, 0]\noutput : list = [0, 0, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([-3, 0, -1, 0])))",
    "io_inp": [
      -3,
      0,
      -1,
      0
    ],
    "io_out": [
      0,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, -3, -1, -4, -1, -1]\noutput : list = [-6, -5, -3, -3, -3]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(add_n([3, -3, -1, -4, -1, -1],-3)),-1),5),41)",
    "io_inp": [
      3,
      -3,
      -1,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(add_n(input,-3)),-1),5),41)"
  },
  {
    "input": "input : list = [4, -4, 3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = drop([4, -4, 3, 5],2)",
    "io_inp": [
      4,
      -4,
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -4, 0, 0, 0]\noutput : list = [0, 0, 0, -4, 4]",
    "output": "generated_output : list = reverse([4, -4, 0, 0, 0])",
    "io_inp": [
      4,
      -4,
      0,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      0,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0, -3]\noutput : list = [-6, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n([1, 0, -3],3))",
    "io_inp": [
      1,
      0,
      -3
    ],
    "io_out": [
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take([5, -4, -1],1))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [5, -5, 1, -2, -3, -2]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(add_n(reverse(add_n(drop([5, -5, 1, -2, -3, -2],4),-1)),3),29)",
    "io_inp": [
      5,
      -5,
      1,
      -2,
      -3,
      -2
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(drop(input,4),-1)),3),29)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 75]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(mul_n([0, -5],-4),1),4)),1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      75
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(mul_n(input,-4),1),4)),1)"
  },
  {
    "input": "input : list = [5, 3, -5, -2, -2, -4]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = sort_des(take(take(sort_des(sort_asc([5, 3, -5, -2, -2, -4])),3),48))",
    "io_inp": [
      5,
      3,
      -5,
      -2,
      -2,
      -4
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(sort_asc(input)),3),48))"
  },
  {
    "input": "input : list = [-1, 0, -5, 2, -3, 1]\noutput : list = [-2, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(take([-1, 0, -5, 2, -3, 1],2)))),-2)",
    "io_inp": [
      -1,
      0,
      -5,
      2,
      -3,
      1
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(take(input,2)))),-2)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-1, -3, -1]",
    "output": "generated_output : list = reverse(reverse([-1, -3, -1]))",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-2, -5, 3, -1]\noutput : list = [-1, -5, -9]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(drop([-2, -5, 3, -1],1)),4)),47)",
    "io_inp": [
      -2,
      -5,
      3,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(drop(input,1)),4)),47)"
  },
  {
    "input": "input : list = [3, -1, 2, 0, 1]\noutput : list = [4, 3, 2, 1, 0]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n([3, -1, 2, 0, 1],-4)),2),2),3)",
    "io_inp": [
      3,
      -1,
      2,
      0,
      1
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n(input,-4)),2),2),3)"
  },
  {
    "input": "input : list = [3, -5, 3, 2, 3]\noutput : list = [15, 15, 15, 14, 7]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(sub_n([3, -5, 3, 2, 3],-5)),2)),5)",
    "io_inp": [
      3,
      -5,
      3,
      2,
      3
    ],
    "io_out": [
      15,
      15,
      15,
      14,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(sub_n(input,-5)),2)),5)"
  },
  {
    "input": "input : list = [-5, -4, 0, 1, 1]\noutput : list = [-7, -6, -2, -1, -1]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(add_n([-5, -4, 0, 1, 1],-2)))))",
    "io_inp": [
      -5,
      -4,
      0,
      1,
      1
    ],
    "io_out": [
      -7,
      -6,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [-2, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, -2])",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, 1, 5]\noutput : list = [4, 4, 8, 8]",
    "output": "generated_output : list = sort_asc(add_n([5, 1, 1, 5],3))",
    "io_inp": [
      5,
      1,
      1,
      5
    ],
    "io_out": [
      4,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, 2, -5, -4, 2, -4]\noutput : list = [-5, -5, -35, -35, -40, -40]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des([-5, 2, -5, -4, 2, -4]),3),5),33))",
    "io_inp": [
      -5,
      2,
      -5,
      -4,
      2,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -35,
      -35,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des(input),3),5),33))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [9, 11]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sort_des([2, 3])),11),2),-5)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sort_des(input)),11),2),-5)"
  },
  {
    "input": "input : list = [1, -3, -5, -3]\noutput : list = [4, 0, 0, -2]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(reverse([1, -3, -5, -3]),3))),29)",
    "io_inp": [
      1,
      -3,
      -5,
      -3
    ],
    "io_out": [
      4,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(reverse(input),3))),29)"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take(mul_n(take([-1, -1, 5],1),4),26),-5)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(input,1),4),26),-5)"
  },
  {
    "input": "input : list = [-5, 2, -4, 0, -4, 1]\noutput : list = [-8, -4, 0, 16, 16, 20]",
    "output": "generated_output : list = sort_asc(mul_n([-5, 2, -4, 0, -4, 1],-4))",
    "io_inp": [
      -5,
      2,
      -4,
      0,
      -4,
      1
    ],
    "io_out": [
      -8,
      -4,
      0,
      16,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des([-2, 5])),4))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(input)),4))"
  },
  {
    "input": "input : list = [-5, 2, 1, 3, -2, 2]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(take(take([-5, 2, 1, 3, -2, 2],3),1),5)",
    "io_inp": [
      -5,
      2,
      1,
      3,
      -2,
      2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,3),1),5)"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take([-1, 4, 2],1),-2),-1))",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(input,1),-2),-1))"
  },
  {
    "input": "input : list = [-1, -2, -4, -5, -4, 0]\noutput : list = [-20, -10, 0, 0, 5]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(drop([-1, -2, -4, -5, -4, 0],1)),-4)),-5)",
    "io_inp": [
      -1,
      -2,
      -4,
      -5,
      -4,
      0
    ],
    "io_out": [
      -20,
      -10,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(drop(input,1)),-4)),-5)"
  },
  {
    "input": "input : list = [1, -5, 4, 0, 0, -1]\noutput : list = [-2, 1, 2, 2, 3, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sort_asc([1, -5, 4, 0, 0, -1]),-1)),-3),-5)",
    "io_inp": [
      1,
      -5,
      4,
      0,
      0,
      -1
    ],
    "io_out": [
      -2,
      1,
      2,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sort_asc(input),-1)),-3),-5)"
  },
  {
    "input": "input : list = [-1, 2, 1, 2, 2]\noutput : list = [32, 32, 32, 16, -16]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(mul_n([-1, 2, 1, 2, 2],-4))),-2),2)",
    "io_inp": [
      -1,
      2,
      1,
      2,
      2
    ],
    "io_out": [
      32,
      32,
      32,
      16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(mul_n(input,-4))),-2),2)"
  },
  {
    "input": "input : list = [4, -2, 2, -5]\noutput : list = [10, 4, 8, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse([4, -2, 2, -5]),4)),-2)",
    "io_inp": [
      4,
      -2,
      2,
      -5
    ],
    "io_out": [
      10,
      4,
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(input),4)),-2)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-48, 120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(reverse([3, -4]),-2),-3),-4),2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -48,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(reverse(input),-2),-3),-4),2)"
  },
  {
    "input": "input : list = [-4, 3, 2, -3, 2]\noutput : list = [2, -3, 2]",
    "output": "generated_output : list = drop([-4, 3, 2, -3, 2],2)",
    "io_inp": [
      -4,
      3,
      2,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -4, 0, -3, 5]\noutput : list = [10, 9, 5, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_des([4, -4, 0, -3, 5]))),-5))",
    "io_inp": [
      4,
      -4,
      0,
      -3,
      5
    ],
    "io_out": [
      10,
      9,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [1, 2, -4, -5, 3, 2]\noutput : list = [-5, -4, -4, -3, 2, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n([1, 2, -4, -5, 3, 2],2)),-1))",
    "io_inp": [
      1,
      2,
      -4,
      -5,
      3,
      2
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(input,2)),-1))"
  },
  {
    "input": "input : list = [-4, 3, -3, 0, -5, -5]\noutput : list = [-5, -5, 0, -3, 3, -4]",
    "output": "generated_output : list = take(reverse(take(reverse(reverse([-4, 3, -3, 0, -5, -5])),15)),37)",
    "io_inp": [
      -4,
      3,
      -3,
      0,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      0,
      -3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(reverse(input)),15)),37)"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [0, 40, 24]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([-1, 4, 2],2),-2),4)",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      0,
      40,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,2),-2),4)"
  },
  {
    "input": "input : list = [0, -2, -5, -3, 0, -5]\noutput : list = [-1, -1, 1, 2, 4, 4]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse([0, -2, -5, -3, 0, -5])),-4),7)",
    "io_inp": [
      0,
      -2,
      -5,
      -3,
      0,
      -5
    ],
    "io_out": [
      -1,
      -1,
      1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(input)),-4),7)"
  },
  {
    "input": "input : list = [1, -5, -4, -2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = drop([1, -5, -4, -2, 5],3)",
    "io_inp": [
      1,
      -5,
      -4,
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 5, 4]\noutput : list = [3, 2, -7]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(sort_asc([-5, 5, 4]))),2))",
    "io_inp": [
      -5,
      5,
      4
    ],
    "io_out": [
      3,
      2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [-8, -20, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n([-2, -5, -5],-4))),-1))",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n(input,-4))),-1))"
  },
  {
    "input": "input : list = [-5, -1, -2]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = mul_n(sort_des([-5, -1, -2]),1)",
    "io_inp": [
      -5,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = sort_des(sort_asc([4, 0, 4]))",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -2, -1, 2, 0, -3]\noutput : list = [1, -1, -1, -2, -3, -4]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_asc([0, -2, -1, 2, 0, -3]),1),3),-1))",
    "io_inp": [
      0,
      -2,
      -1,
      2,
      0,
      -3
    ],
    "io_out": [
      1,
      -1,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_asc(input),1),3),-1))"
  },
  {
    "input": "input : list = [-2, 5, 5, -1]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(take([-2, 5, 5, -1],1))",
    "io_inp": [
      -2,
      5,
      5,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-3, 5, 4, -2]\noutput : list = [-4, 4, 3, -3]",
    "output": "generated_output : list = sub_n(sub_n([-3, 5, 4, -2],5),-4)",
    "io_inp": [
      -3,
      5,
      4,
      -2
    ],
    "io_out": [
      -4,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),-4)"
  },
  {
    "input": "input : list = [1, 4, 4, -5, 3]\noutput : list = [-2, -2, -1, 1, 7]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_asc([1, 4, 4, -5, 3])),-2)),-1)",
    "io_inp": [
      1,
      4,
      4,
      -5,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_asc(input)),-2)),-1)"
  },
  {
    "input": "input : list = [1, -5, 0, -4, -3, 3]\noutput : list = [-4, -10, -5, -9, -8, -2]",
    "output": "generated_output : list = sub_n([1, -5, 0, -4, -3, 3],5)",
    "io_inp": [
      1,
      -5,
      0,
      -4,
      -3,
      3
    ],
    "io_out": [
      -4,
      -10,
      -5,
      -9,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [6, 6, -15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(reverse([2, -5, 2])))),3)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      6,
      6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [38, 43]",
    "output": "generated_output : list = sub_n(take(take(mul_n(sub_n([-2, -3],5),-5),25),2),-3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      38,
      43
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(sub_n(input,5),-5),25),2),-3)"
  },
  {
    "input": "input : list = [-4, 3, 1, 2, -3, -4]\noutput : list = [-4, -4, -3, 1, 2, 3]",
    "output": "generated_output : list = take(reverse(sort_des([-4, 3, 1, 2, -3, -4])),17)",
    "io_inp": [
      -4,
      3,
      1,
      2,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),17)"
  },
  {
    "input": "input : list = [-4, 1, 2, 4]\noutput : list = [-4, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-4, 1, 2, 4]),1))",
    "io_inp": [
      -4,
      1,
      2,
      4
    ],
    "io_out": [
      -4,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),1))"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -3, 2],1)",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 4, 0, 5, 0]\noutput : list = [-4, -1, -1, 3, 4]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n([-3, 4, 0, 5, 0],-1)),2),8)",
    "io_inp": [
      -3,
      4,
      0,
      5,
      0
    ],
    "io_out": [
      -4,
      -1,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(input,-1)),2),8)"
  },
  {
    "input": "input : list = [2, 3, 0, 2]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc(drop([2, 3, 0, 2],1)))",
    "io_inp": [
      2,
      3,
      0,
      2
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [1, -5, -2, -3, 0]\noutput : list = [-27, -17, -12, -2, 3]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(sort_des([1, -5, -2, -3, 0])),5)),2)",
    "io_inp": [
      1,
      -5,
      -2,
      -3,
      0
    ],
    "io_out": [
      -27,
      -17,
      -12,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(sort_des(input)),5)),2)"
  },
  {
    "input": "input : list = [3, 2, 2, -2]\noutput : list = [4, -4, -4, -6]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des([3, 2, 2, -2]),-2),24)))",
    "io_inp": [
      3,
      2,
      2,
      -2
    ],
    "io_out": [
      4,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des(input),-2),24)))"
  },
  {
    "input": "input : list = [4, -1, 4, 2]\noutput : list = [-16, -16, -8, 4]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(sub_n([4, -1, 4, 2],4),9),4)),-4)",
    "io_inp": [
      4,
      -1,
      4,
      2
    ],
    "io_out": [
      -16,
      -16,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(sub_n(input,4),9),4)),-4)"
  },
  {
    "input": "input : list = [4, -2, -3, -3, 2, -5]\noutput : list = [0, 2, 2, 3, 7, 9]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(sort_asc([4, -2, -3, -3, 2, -5])),37)),5)",
    "io_inp": [
      4,
      -2,
      -3,
      -3,
      2,
      -5
    ],
    "io_out": [
      0,
      2,
      2,
      3,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(sort_asc(input)),37)),5)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [16, -12, -20]",
    "output": "generated_output : list = mul_n(sort_des([-3, 4, -5]),4)",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      16,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-3, 0, -4, 3, 5, -3]\noutput : list = [-45, 0, 45, 60]",
    "output": "generated_output : list = sort_asc(drop(mul_n(mul_n(reverse([-3, 0, -4, 3, 5, -3]),5),-3),2))",
    "io_inp": [
      -3,
      0,
      -4,
      3,
      5,
      -3
    ],
    "io_out": [
      -45,
      0,
      45,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(mul_n(reverse(input),5),-3),2))"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(mul_n([-2, -2, -3],-2),-2)),2))",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(mul_n(input,-2),-2)),2))"
  },
  {
    "input": "input : list = [0, -4, -3, 2]\noutput : list = [-120, -100, -40, 0]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_des([0, -4, -3, 2]),2),-5),-4))",
    "io_inp": [
      0,
      -4,
      -3,
      2
    ],
    "io_out": [
      -120,
      -100,
      -40,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_des(input),2),-5),-4))"
  },
  {
    "input": "input : list = [-4, -5, 3, -3]\noutput : list = [3, 4, 5, 11]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(sort_des([-4, -5, 3, -3]),-3),1)),4)",
    "io_inp": [
      -4,
      -5,
      3,
      -3
    ],
    "io_out": [
      3,
      4,
      5,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(sort_des(input),-3),1)),4)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse([-4, 0])",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [1, -2, 0]",
    "output": "generated_output : list = take(reverse(take(mul_n([0, -2, 1],1),14)),11)",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(input,1),14)),11)"
  },
  {
    "input": "input : list = [2, 3, 5, 5, 0]\noutput : list = [35]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(take([2, 3, 5, 5, 0],1),-5)),22),5)",
    "io_inp": [
      2,
      3,
      5,
      5,
      0
    ],
    "io_out": [
      35
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(take(input,1),-5)),22),5)"
  },
  {
    "input": "input : list = [4, 4, -4, 4]\noutput : list = [-8, -8, 8, -8]",
    "output": "generated_output : list = mul_n([4, 4, -4, 4],-2)",
    "io_inp": [
      4,
      4,
      -4,
      4
    ],
    "io_out": [
      -8,
      -8,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -3, -3, -5, 3, 5]\noutput : list = [4, 2, -4, -4, -5, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_des([-4, -3, -3, -5, 3, 5]))),5),-4)",
    "io_inp": [
      -4,
      -3,
      -3,
      -5,
      3,
      5
    ],
    "io_out": [
      4,
      2,
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_des(input))),5),-4)"
  },
  {
    "input": "input : list = [3, 5, -5, -5, -1]\noutput : list = [-7, -7, -3, 1, 3]",
    "output": "generated_output : list = take(reverse(sort_des(add_n([3, 5, -5, -5, -1],-2))),20)",
    "io_inp": [
      3,
      5,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -7,
      -7,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(input,-2))),20)"
  },
  {
    "input": "input : list = [-4, 1, 3, -1, 3, 2]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 1, 3, -1, 3, 2],1)",
    "io_inp": [
      -4,
      1,
      3,
      -1,
      3,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -2, -3, -5, -1, 5]\noutput : list = [-5, -6, -8]",
    "output": "generated_output : list = drop(reverse(sort_asc(sub_n(add_n([-1, -2, -3, -5, -1, 5],1),4))),3)",
    "io_inp": [
      -1,
      -2,
      -3,
      -5,
      -1,
      5
    ],
    "io_out": [
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_asc(sub_n(add_n(input,1),4))),3)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(reverse([-5, -5]),-2),5),-3),-3)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(reverse(input),-2),5),-3),-3)"
  },
  {
    "input": "input : list = [-5, 0, 4]\noutput : list = [0, -20, -36]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(add_n([-5, 0, 4],5)))),-4)",
    "io_inp": [
      -5,
      0,
      4
    ],
    "io_out": [
      0,
      -20,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(add_n(input,5)))),-4)"
  },
  {
    "input": "input : list = [2, 4, 5, -2, 2]\noutput : list = [6, 2, 9, 8, 6]",
    "output": "generated_output : list = reverse(add_n([2, 4, 5, -2, 2],4))",
    "io_inp": [
      2,
      4,
      5,
      -2,
      2
    ],
    "io_out": [
      6,
      2,
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [1, -5, -5, 0]\noutput : list = [-2, -2, 3, 4]",
    "output": "generated_output : list = take(add_n(reverse(take(sort_des([1, -5, -5, 0]),8)),3),38)",
    "io_inp": [
      1,
      -5,
      -5,
      0
    ],
    "io_out": [
      -2,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(sort_des(input),8)),3),38)"
  },
  {
    "input": "input : list = [1, -1, -5, -5, -4]\noutput : list = [-8, -9, -9, -5]",
    "output": "generated_output : list = sub_n(take(reverse([1, -1, -5, -5, -4]),4),4)",
    "io_inp": [
      1,
      -1,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -9,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),4),4)"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [4, 4, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des(sort_des([3, 3, -5])),-3)),2)",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(sort_des(input)),-3)),2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(sub_n([5, 2],-1)))))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [-3, 4, 1, 2, 2]\noutput : list = [4, 2, 2, 1, -3]",
    "output": "generated_output : list = sort_des(sort_asc([-3, 4, 1, 2, 2]))",
    "io_inp": [
      -3,
      4,
      1,
      2,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 2, 3, -2, 2, -2]\noutput : list = [-2, 2, -2]",
    "output": "generated_output : list = drop([-2, 2, 3, -2, 2, -2],3)",
    "io_inp": [
      -2,
      2,
      3,
      -2,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, -4, -3, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = add_n(drop([-5, -4, -3, -4],2),-1)",
    "io_inp": [
      -5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [-5, 3, 4, -3]\noutput : list = [8, 1, 2, 10]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(reverse([-5, 3, 4, -3]),5),-1),2),3)",
    "io_inp": [
      -5,
      3,
      4,
      -3
    ],
    "io_out": [
      8,
      1,
      2,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(reverse(input),5),-1),2),3)"
  },
  {
    "input": "input : list = [5, 3, -3, 5, -2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(take([5, 3, -3, 5, -2],2),-2),12),2),4)",
    "io_inp": [
      5,
      3,
      -3,
      5,
      -2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(take(input,2),-2),12),2),4)"
  },
  {
    "input": "input : list = [-4, 3, 1, 1]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(mul_n(drop(take(add_n([-4, 3, 1, 1],3),8),3),-2))",
    "io_inp": [
      -4,
      3,
      1,
      1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(take(add_n(input,3),8),3),-2))"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [-20]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(take([4, 1, -5],1),-5),1),1))",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(take(input,1),-5),1),1))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [20, -4]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_asc(sort_asc([-1, 5])),14)),4)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      20,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_asc(sort_asc(input)),14)),4)"
  },
  {
    "input": "input : list = [-2, -3, -4, -5]\noutput : list = [-8, -9, -10]",
    "output": "generated_output : list = sub_n(drop([-2, -3, -4, -5],1),5)",
    "io_inp": [
      -2,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [-1, -2, -2, 1, 4, 2]\noutput : list = [4, 2, 1, -1, -2, -2]",
    "output": "generated_output : list = sort_des([-1, -2, -2, 1, 4, 2])",
    "io_inp": [
      -1,
      -2,
      -2,
      1,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 3, 0]\noutput : list = [-19, -19, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(reverse([3, 3, 0]))),-5),4)",
    "io_inp": [
      3,
      3,
      0
    ],
    "io_out": [
      -19,
      -19,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(reverse(input))),-5),4)"
  },
  {
    "input": "input : list = [0, -5, -4, 5]\noutput : list = [-12, -10, -2, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_asc([0, -5, -4, 5]))),1),2)",
    "io_inp": [
      0,
      -5,
      -4,
      5
    ],
    "io_out": [
      -12,
      -10,
      -2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_asc(input))),1),2)"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [3, 3, -3]",
    "output": "generated_output : list = sort_des([3, -3, 3])",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = drop([-3, 5, 0],1)",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(sort_des([1, -1, 3])))))",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, -3, -4]\noutput : list = [2]",
    "output": "generated_output : list = take(add_n(take(reverse(take([5, -3, -4],1)),15),-3),10)",
    "io_inp": [
      5,
      -3,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(take(input,1)),15),-3),10)"
  },
  {
    "input": "input : list = [-2, -2, 5, 4]\noutput : list = [2, 0, -12, -12]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(reverse([-2, -2, 5, 4]),-4))),2)",
    "io_inp": [
      -2,
      -2,
      5,
      4
    ],
    "io_out": [
      2,
      0,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(reverse(input),-4))),2)"
  },
  {
    "input": "input : list = [-5, -1, 5, 0, -3]\noutput : list = [-9, -6, -1, -7, -11]",
    "output": "generated_output : list = sub_n(add_n(reverse([-5, -1, 5, 0, -3]),-2),4)",
    "io_inp": [
      -5,
      -1,
      5,
      0,
      -3
    ],
    "io_out": [
      -9,
      -6,
      -1,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-2),4)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [6, 4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc(sort_des([-3, -1])),5),2))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(sort_des(input)),5),2))"
  },
  {
    "input": "input : list = [4, -5, -5, -2]\noutput : list = [5, -1, -4, -4]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([4, -5, -5, -2]),-1),1)",
    "io_inp": [
      4,
      -5,
      -5,
      -2
    ],
    "io_out": [
      5,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),-1),1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(take(sort_asc([-2, 5]),4))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),4))"
  },
  {
    "input": "input : list = [1, -4, -5, 2, 3]\noutput : list = [-1, 0, 5, 6, 7]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(reverse([1, -4, -5, 2, 3]),17),-4)),51)",
    "io_inp": [
      1,
      -4,
      -5,
      2,
      3
    ],
    "io_out": [
      -1,
      0,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(reverse(input),17),-4)),51)"
  },
  {
    "input": "input : list = [0, 2, -5, 1, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = take([0, 2, -5, 1, 2],2)",
    "io_inp": [
      0,
      2,
      -5,
      1,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(mul_n([-1, -2],-1)),7),-1))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(mul_n(input,-1)),7),-1))"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [-5, -5, -9]",
    "output": "generated_output : list = take(reverse(reverse(add_n(sort_des([-1, -1, -5]),-4))),6)",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(sort_des(input),-4))),6)"
  },
  {
    "input": "input : list = [-5, 1, -3, -2, 1, 2]\noutput : list = [1, 0, 0, -3, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(reverse([-5, 1, -3, -2, 1, 2])),38)),1)",
    "io_inp": [
      -5,
      1,
      -3,
      -2,
      1,
      2
    ],
    "io_out": [
      1,
      0,
      0,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(reverse(input)),38)),1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sub_n([3, 2],2)))))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [0, 3, 5, 4]\noutput : list = [0, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 3, 5, 4])",
    "io_inp": [
      0,
      3,
      5,
      4
    ],
    "io_out": [
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 4, -3, 3, 2]\noutput : list = [-4, -3, -2, 1, 3]",
    "output": "generated_output : list = mul_n(sort_des([-1, 4, -3, 3, 2]),-1)",
    "io_inp": [
      -1,
      4,
      -3,
      3,
      2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [5, 0, 5, -1, -2]\noutput : list = [-2, -1, 0, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([5, 0, 5, -1, -2]))",
    "io_inp": [
      5,
      0,
      5,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [4, 6]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc([-3, -2]),2),5),-5)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(input),2),5),-5)"
  },
  {
    "input": "input : list = [0, 3, -3, 3]\noutput : list = [-7, -7, -10, -13]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n([0, 3, -3, 3],5))),5)",
    "io_inp": [
      0,
      3,
      -3,
      3
    ],
    "io_out": [
      -7,
      -7,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(input,5))),5)"
  },
  {
    "input": "input : list = [-4, -3, -3, -3]\noutput : list = [4, 3, 3, 3]",
    "output": "generated_output : list = mul_n([-4, -3, -3, -3],-1)",
    "io_inp": [
      -4,
      -3,
      -3,
      -3
    ],
    "io_out": [
      4,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -2, -1, -3, -1, -4]\noutput : list = [20, 5, 0, 10, 0, 15]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n([-5, -2, -1, -3, -1, -4],-5),-5)))",
    "io_inp": [
      -5,
      -2,
      -1,
      -3,
      -1,
      -4
    ],
    "io_out": [
      20,
      5,
      0,
      10,
      0,
      15
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(input,-5),-5)))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(sort_des([1, 2])),-3)))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [1, 2, -4, -5, 1, -4]\noutput : list = [25, 20, 20, -5, -5, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des([1, 2, -4, -5, 1, -4])),-5))",
    "io_inp": [
      1,
      2,
      -4,
      -5,
      1,
      -4
    ],
    "io_out": [
      25,
      20,
      20,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(input)),-5))"
  },
  {
    "input": "input : list = [-4, -5, 4]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des([-4, -5, 4]),-1)",
    "io_inp": [
      -4,
      -5,
      4
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(drop(sort_des([3, 0]),1)),24)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(sort_des(input),1)),24)"
  },
  {
    "input": "input : list = [-3, 2, -4, 0, -2]\noutput : list = [-3, -5, -1, -7, -2]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-3, 2, -4, 0, -2]),-5),-1)",
    "io_inp": [
      -3,
      2,
      -4,
      0,
      -2
    ],
    "io_out": [
      -3,
      -5,
      -1,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-5),-1)"
  },
  {
    "input": "input : list = [-4, 2, 4, 5, 5]\noutput : list = [4, 5, 5]",
    "output": "generated_output : list = drop([-4, 2, 4, 5, 5],2)",
    "io_inp": [
      -4,
      2,
      4,
      5,
      5
    ],
    "io_out": [
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 0, -3, 1, -5, 1]\noutput : list = [-2, -5, -8, -4, -10, -4]",
    "output": "generated_output : list = sub_n([3, 0, -3, 1, -5, 1],5)",
    "io_inp": [
      3,
      0,
      -3,
      1,
      -5,
      1
    ],
    "io_out": [
      -2,
      -5,
      -8,
      -4,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 3, 1, -4, -5, 1]\noutput : list = [-15, -12, 3, 3, 9]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(drop([5, 3, 1, -4, -5, 1],1)),27),3))",
    "io_inp": [
      5,
      3,
      1,
      -4,
      -5,
      1
    ],
    "io_out": [
      -15,
      -12,
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(drop(input,1)),27),3))"
  },
  {
    "input": "input : list = [-3, -2, 3, -1, 0, -2]\noutput : list = [-15, -12, 3, -9, -6, -12]",
    "output": "generated_output : list = mul_n(sub_n([-3, -2, 3, -1, 0, -2],2),3)",
    "io_inp": [
      -3,
      -2,
      3,
      -1,
      0,
      -2
    ],
    "io_out": [
      -15,
      -12,
      3,
      -9,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),3)"
  },
  {
    "input": "input : list = [-2, 4, -5, -3, 5, -2]\noutput : list = [-5, -3, -2, -2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 4, -5, -3, 5, -2]))",
    "io_inp": [
      -2,
      4,
      -5,
      -3,
      5,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [2, -2, 5, 0, 5]\noutput : list = [1, 3, 8, 8]",
    "output": "generated_output : list = sort_asc(drop(add_n([2, -2, 5, 0, 5],3),1))",
    "io_inp": [
      2,
      -2,
      5,
      0,
      5
    ],
    "io_out": [
      1,
      3,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(input,3),1))"
  },
  {
    "input": "input : list = [-1, 1, 1, -4, 5]\noutput : list = [-12, -9, -7, -7, -3]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(add_n([-1, 1, 1, -4, 5],-3),5),24)),53)",
    "io_inp": [
      -1,
      1,
      1,
      -4,
      5
    ],
    "io_out": [
      -12,
      -9,
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(add_n(input,-3),5),24)),53)"
  },
  {
    "input": "input : list = [4, 0, -1, -4]\noutput : list = [-4, -1, 0, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(reverse([4, 0, -1, -4])))))",
    "io_inp": [
      4,
      0,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(reverse([5, -3]),2))))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(reverse(input),2))))"
  },
  {
    "input": "input : list = [3, 1, -2, -5, -3, -4]\noutput : list = [19, 9, -6, -11, -16, -21]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(mul_n([3, 1, -2, -5, -3, -4],-5)),-1),-4))",
    "io_inp": [
      3,
      1,
      -2,
      -5,
      -3,
      -4
    ],
    "io_out": [
      19,
      9,
      -6,
      -11,
      -16,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(mul_n(input,-5)),-1),-4))"
  },
  {
    "input": "input : list = [-5, -1, 3, -4]\noutput : list = [9, -7, -19, -23]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(sort_des([-5, -1, 3, -4]),5),4)),-3)",
    "io_inp": [
      -5,
      -1,
      3,
      -4
    ],
    "io_out": [
      9,
      -7,
      -19,
      -23
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(sort_des(input),5),4)),-3)"
  },
  {
    "input": "input : list = [-2, -5, 5, -2, 3]\noutput : list = [5, 3, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(drop([-2, -5, 5, -2, 3],1)))",
    "io_inp": [
      -2,
      -5,
      5,
      -2,
      3
    ],
    "io_out": [
      5,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(drop(add_n(sort_des(reverse([-1, 4, 4])),-3),1))",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(sort_des(reverse(input)),-3),1))"
  },
  {
    "input": "input : list = [0, 2, -1, 4, 2]\noutput : list = [2, 0, 0, -2, -3]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(sort_des([0, 2, -1, 4, 2]))),18),2)",
    "io_inp": [
      0,
      2,
      -1,
      4,
      2
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(sort_des(input))),18),2)"
  },
  {
    "input": "input : list = [1, 0, -2, -3]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(drop([1, 0, -2, -3],1))),3))",
    "io_inp": [
      1,
      0,
      -2,
      -3
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(drop(input,1))),3))"
  },
  {
    "input": "input : list = [5, 3, -1, 3]\noutput : list = [-1, 3, 3, 5]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(add_n([5, 3, -1, 3],-5)),1),-1),-4)",
    "io_inp": [
      5,
      3,
      -1,
      3
    ],
    "io_out": [
      -1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(add_n(input,-5)),1),-1),-4)"
  },
  {
    "input": "input : list = [5, -3, 3, 1, -3]\noutput : list = [4, -4, 2, 0, -4]",
    "output": "generated_output : list = sub_n([5, -3, 3, 1, -3],1)",
    "io_inp": [
      5,
      -3,
      3,
      1,
      -3
    ],
    "io_out": [
      4,
      -4,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [7, 9, 14]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sub_n([-1, 4, -3],-3))),-2),-5)",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      7,
      9,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sub_n(input,-3))),-2),-5)"
  },
  {
    "input": "input : list = [-3, -4, -3, -5]\noutput : list = [-7, -7, -8, -9]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(sub_n([-3, -4, -3, -5],4)),4),4))",
    "io_inp": [
      -3,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(sub_n(input,4)),4),4))"
  },
  {
    "input": "input : list = [-3, -5, 3, -2]\noutput : list = [-20, -12, -17]",
    "output": "generated_output : list = add_n(sub_n(sub_n(drop([-3, -5, 3, -2],1),5),5),-5)",
    "io_inp": [
      -3,
      -5,
      3,
      -2
    ],
    "io_out": [
      -20,
      -12,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(drop(input,1),5),5),-5)"
  },
  {
    "input": "input : list = [3, -2, 5, -3]\noutput : list = [42, 12]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(take([3, -2, 5, -3],2),-4),-2),8),-3)",
    "io_inp": [
      3,
      -2,
      5,
      -3
    ],
    "io_out": [
      42,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(take(input,2),-4),-2),8),-3)"
  },
  {
    "input": "input : list = [5, -2, -1, 5]\noutput : list = [5, -1, -2, 5]",
    "output": "generated_output : list = take(reverse(mul_n([5, -2, -1, 5],1)),22)",
    "io_inp": [
      5,
      -2,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,1)),22)"
  },
  {
    "input": "input : list = [-3, -2, 4, 3, -3]\noutput : list = [-7, -3, 21]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(mul_n(take([-3, -2, 4, 3, -3],3),4),5)))",
    "io_inp": [
      -3,
      -2,
      4,
      3,
      -3
    ],
    "io_out": [
      -7,
      -3,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(mul_n(take(input,3),4),5)))"
  },
  {
    "input": "input : list = [-5, -2, -3, 3, 2, -2]\noutput : list = [6, 5, 1, 1, 0, -2]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(sort_des([-5, -2, -3, 3, 2, -2]))),3),31)",
    "io_inp": [
      -5,
      -2,
      -3,
      3,
      2,
      -2
    ],
    "io_out": [
      6,
      5,
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(sort_des(input))),3),31)"
  },
  {
    "input": "input : list = [4, 3, 5, 1]\noutput : list = [5, 9, 7, 8]",
    "output": "generated_output : list = take(reverse(sub_n([4, 3, 5, 1],-4)),16)",
    "io_inp": [
      4,
      3,
      5,
      1
    ],
    "io_out": [
      5,
      9,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,-4)),16)"
  },
  {
    "input": "input : list = [0, -1, -2, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse(take(sub_n(drop([0, -1, -2, 1],2),-3),28))",
    "io_inp": [
      0,
      -1,
      -2,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(drop(input,2),-3),28))"
  },
  {
    "input": "input : list = [0, -2, 3, -2]\noutput : list = [-3, -6, -8, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n([0, -2, 3, -2],-4))),2),43)",
    "io_inp": [
      0,
      -2,
      3,
      -2
    ],
    "io_out": [
      -3,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n(input,-4))),2),43)"
  },
  {
    "input": "input : list = [-5, -5, -5, -3, -4, 3]\noutput : list = [-34, -28, -22, 14]",
    "output": "generated_output : list = mul_n(add_n(drop(mul_n(sort_asc([-5, -5, -5, -3, -4, 3]),3),2),-2),2)",
    "io_inp": [
      -5,
      -5,
      -5,
      -3,
      -4,
      3
    ],
    "io_out": [
      -34,
      -28,
      -22,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(mul_n(sort_asc(input),3),2),-2),2)"
  },
  {
    "input": "input : list = [-5, -3, -1, 1, -5, -5]\noutput : list = [-17, -17, -17, -15, -13, -11]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(sort_des([-5, -3, -1, 1, -5, -5]),-5),2),-5))",
    "io_inp": [
      -5,
      -3,
      -1,
      1,
      -5,
      -5
    ],
    "io_out": [
      -17,
      -17,
      -17,
      -15,
      -13,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(sort_des(input),-5),2),-5))"
  },
  {
    "input": "input : list = [2, -1, 4, 1, -5, 3]\noutput : list = [-10, -2, 2, 4, 6, 8]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_des([2, -1, 4, 1, -5, 3])),6)),2)",
    "io_inp": [
      2,
      -1,
      4,
      1,
      -5,
      3
    ],
    "io_out": [
      -10,
      -2,
      2,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_des(input)),6)),2)"
  },
  {
    "input": "input : list = [5, -1, 0, -4]\noutput : list = [8, 5, 4, -1]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(sort_asc([5, -1, 0, -4]),-4),-1)))",
    "io_inp": [
      5,
      -1,
      0,
      -4
    ],
    "io_out": [
      8,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(sort_asc(input),-4),-1)))"
  },
  {
    "input": "input : list = [-1, -1, 3, -2, 0]\noutput : list = [10, 10, -10, 15, 5]",
    "output": "generated_output : list = mul_n(add_n([-1, -1, 3, -2, 0],-1),-5)",
    "io_inp": [
      -1,
      -1,
      3,
      -2,
      0
    ],
    "io_out": [
      10,
      10,
      -10,
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-5)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = sort_asc([-1, -1, -1])",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, 2, 0, 5]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(take([-2, 3, 2, 0, 5],1)),1),3))",
    "io_inp": [
      -2,
      3,
      2,
      0,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(take(input,1)),1),3))"
  },
  {
    "input": "input : list = [-3, -4, 3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(sub_n([-3, -4, 3],-1),1)),21))",
    "io_inp": [
      -3,
      -4,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(sub_n(input,-1),1)),21))"
  },
  {
    "input": "input : list = [4, 3, -2, -3, -5]\noutput : list = [-16, -14, -4]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(take([4, 3, -2, -3, -5],3),-4)),-2),50)",
    "io_inp": [
      4,
      3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -16,
      -14,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(take(input,3),-4)),-2),50)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-16]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take([-4, 1, 1],1))),4)",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(input,1))),4)"
  },
  {
    "input": "input : list = [0, 1, 5, -2, 2, -3]\noutput : list = [-1, 0, 2, 3, 4, 7]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n([0, 1, 5, -2, 2, -3],-3)),5))",
    "io_inp": [
      0,
      1,
      5,
      -2,
      2,
      -3
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(input,-3)),5))"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(drop([-5, -5, 2],1),12),1)))",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(drop(input,1),12),1)))"
  },
  {
    "input": "input : list = [-5, -1, -3, -1]\noutput : list = [16, 12, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(drop([-5, -1, -3, -1],1)),-5),-2)",
    "io_inp": [
      -5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      16,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(drop(input,1)),-5),-2)"
  },
  {
    "input": "input : list = [3, 1, 1, -2]\noutput : list = [14, 10, 10, 4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(reverse([3, 1, 1, -2]),7),-4)),2)",
    "io_inp": [
      3,
      1,
      1,
      -2
    ],
    "io_out": [
      14,
      10,
      10,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(reverse(input),7),-4)),2)"
  },
  {
    "input": "input : list = [5, 3, -5, 2]\noutput : list = [5, 3, 2, -5]",
    "output": "generated_output : list = sort_des([5, 3, -5, 2])",
    "io_inp": [
      5,
      3,
      -5,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 5, 0, -2, 5]\noutput : list = [5, -2, 0, 5, 5, 1]",
    "output": "generated_output : list = reverse([1, 5, 5, 0, -2, 5])",
    "io_inp": [
      1,
      5,
      5,
      0,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      0,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -1, 1, 2, 3, 2]\noutput : list = [-1, -3, 1]",
    "output": "generated_output : list = take(take(reverse(add_n(take([3, -1, 1, 2, 3, 2],3),-2)),6),22)",
    "io_inp": [
      3,
      -1,
      1,
      2,
      3,
      2
    ],
    "io_out": [
      -1,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(take(input,3),-2)),6),22)"
  },
  {
    "input": "input : list = [-5, -1, 4, 3]\noutput : list = [-5, -1, 3, 4]",
    "output": "generated_output : list = sort_asc([-5, -1, 4, 3])",
    "io_inp": [
      -5,
      -1,
      4,
      3
    ],
    "io_out": [
      -5,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 0, 4, 5, -3]\noutput : list = [5, 4, 0, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc([-2, 0, 4, 5, -3]))",
    "io_inp": [
      -2,
      0,
      4,
      5,
      -3
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 0, 3, -3, -3]\noutput : list = [64, 40, 16, 16, 16]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(add_n([-3, 0, 3, -3, -3],5)),2),4))",
    "io_inp": [
      -3,
      0,
      3,
      -3,
      -3
    ],
    "io_out": [
      64,
      40,
      16,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(add_n(input,5)),2),4))"
  },
  {
    "input": "input : list = [2, -1, -5, 4, -5, 0]\noutput : list = [4, -2, -10, 8, -10, 0]",
    "output": "generated_output : list = mul_n([2, -1, -5, 4, -5, 0],2)",
    "io_inp": [
      2,
      -1,
      -5,
      4,
      -5,
      0
    ],
    "io_out": [
      4,
      -2,
      -10,
      8,
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_des([-1, -1, -5]))),5),1)",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_des(input))),5),1)"
  },
  {
    "input": "input : list = [0, -2, 1, 1, -1]\noutput : list = [2, 3, 4, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(add_n([0, -2, 1, 1, -1],4)),18)))",
    "io_inp": [
      0,
      -2,
      1,
      1,
      -1
    ],
    "io_out": [
      2,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(add_n(input,4)),18)))"
  },
  {
    "input": "input : list = [-5, 0, 5, -2, -3]\noutput : list = [25, 17, 13, 5, -15]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(sort_des([-5, 0, 5, -2, -3]),2),-2),5))",
    "io_inp": [
      -5,
      0,
      5,
      -2,
      -3
    ],
    "io_out": [
      25,
      17,
      13,
      5,
      -15
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(sort_des(input),2),-2),5))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des(drop([-1, 3, 3],1)),26)),3)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(drop(input,1)),26)),3)"
  },
  {
    "input": "input : list = [-1, -5, 5, -1]\noutput : list = [5, -1, -1, -5]",
    "output": "generated_output : list = take(reverse(sort_asc([-1, -5, 5, -1])),25)",
    "io_inp": [
      -1,
      -5,
      5,
      -1
    ],
    "io_out": [
      5,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),25)"
  },
  {
    "input": "input : list = [3, -4, -5, 0]\noutput : list = [-4, -5, 0]",
    "output": "generated_output : list = drop([3, -4, -5, 0],1)",
    "io_inp": [
      3,
      -4,
      -5,
      0
    ],
    "io_out": [
      -4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -5, 4, 0]\noutput : list = [-12, -15, 12, 0]",
    "output": "generated_output : list = mul_n([-4, -5, 4, 0],3)",
    "io_inp": [
      -4,
      -5,
      4,
      0
    ],
    "io_out": [
      -12,
      -15,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [7, 0, 8]",
    "output": "generated_output : list = add_n(sub_n([2, -5, 3],-4),1)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      7,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),1)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-1, 17]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(mul_n([-2, 1],2),-3),5)))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -1,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(mul_n(input,2),-3),5)))"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [3, 4, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(reverse([0, 1, 5]),12))),-3)",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      3,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(reverse(input),12))),-3)"
  },
  {
    "input": "input : list = [0, -5, -3, 5, 1, 1]\noutput : list = [-48, 32, 0, -128, -64, -64]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(sub_n([0, -5, -3, 5, 1, 1],-3),4),-4)))",
    "io_inp": [
      0,
      -5,
      -3,
      5,
      1,
      1
    ],
    "io_out": [
      -48,
      32,
      0,
      -128,
      -64,
      -64
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(sub_n(input,-3),4),-4)))"
  },
  {
    "input": "input : list = [-3, -5, -4, -5, -1]\noutput : list = [-9, -9, -8, -7, -5]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(sort_des([-3, -5, -4, -5, -1]),16))),-4)",
    "io_inp": [
      -3,
      -5,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(sort_des(input),16))),-4)"
  },
  {
    "input": "input : list = [-5, 4, 5]\noutput : list = [33, 28, -17]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(sub_n([-5, 4, 5],-2)),5)),-2)",
    "io_inp": [
      -5,
      4,
      5
    ],
    "io_out": [
      33,
      28,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(sub_n(input,-2)),5)),-2)"
  },
  {
    "input": "input : list = [4, -2, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(take([4, -2, 3],1),1),-4)),19)",
    "io_inp": [
      4,
      -2,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(take(input,1),1),-4)),19)"
  },
  {
    "input": "input : list = [-3, -5, 2, 1]\noutput : list = [32, 16, -48, -80]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-3, -5, 2, 1]),-4),-4)",
    "io_inp": [
      -3,
      -5,
      2,
      1
    ],
    "io_out": [
      32,
      16,
      -48,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-4),-4)"
  },
  {
    "input": "input : list = [-2, 1, -2, 3, -4]\noutput : list = [4, 2, -1, -1, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des([-2, 1, -2, 3, -4]),4),-3))",
    "io_inp": [
      -2,
      1,
      -2,
      3,
      -4
    ],
    "io_out": [
      4,
      2,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(input),4),-3))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(sub_n([-3, -5],-4),5),-4),1))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(sub_n(input,-4),5),-4),1))"
  },
  {
    "input": "input : list = [-5, 1, 5, 1, 1, -3]\noutput : list = [5, 1, 1, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(take([-5, 1, 5, 1, 1, -3],4),19))))",
    "io_inp": [
      -5,
      1,
      5,
      1,
      1,
      -3
    ],
    "io_out": [
      5,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(take(input,4),19))))"
  },
  {
    "input": "input : list = [0, 4, 3, 5, 5, -4]\noutput : list = [18, -6, -24, -30, -36, -36]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sort_asc([0, 4, 3, 5, 5, -4])),-2),2),3)",
    "io_inp": [
      0,
      4,
      3,
      5,
      5,
      -4
    ],
    "io_out": [
      18,
      -6,
      -24,
      -30,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sort_asc(input)),-2),2),3)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = drop([-5, 5, 1],1)",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 0, -1]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n(take([2, 0, -1],1),-1),9)",
    "io_inp": [
      2,
      0,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,1),-1),9)"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [-2, 1, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(sort_asc([-4, 4, -1])),-5),3))",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      -2,
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(sort_asc(input)),-5),3))"
  },
  {
    "input": "input : list = [5, 1, -3, -3, -5, -4]\noutput : list = [6, 2, -2, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(reverse([5, 1, -3, -3, -5, -4]),-1))))",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      6,
      2,
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [1, -2, -3]\noutput : list = [12, -24, -36]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(reverse([1, -2, -3]),15)),-4),-3)",
    "io_inp": [
      1,
      -2,
      -3
    ],
    "io_out": [
      12,
      -24,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(reverse(input),15)),-4),-3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [16, -4]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n([-1, 4],-1),3),-2),-2)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(input,-1),3),-2),-2)"
  },
  {
    "input": "input : list = [5, 5, -3, 4, 1]\noutput : list = [4, 4, 3, 0, -4]",
    "output": "generated_output : list = add_n(reverse(take(reverse(sort_des([5, 5, -3, 4, 1])),24)),-1)",
    "io_inp": [
      5,
      5,
      -3,
      4,
      1
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(sort_des(input)),24)),-1)"
  },
  {
    "input": "input : list = [-4, -2, -5, -4]\noutput : list = [-6, -5, -5, -3]",
    "output": "generated_output : list = add_n(sort_asc([-4, -2, -5, -4]),-1)",
    "io_inp": [
      -4,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-5, 3, -4, 0, 0, -5]\noutput : list = [-25, 15, -20, 0, 0, -25]",
    "output": "generated_output : list = mul_n(mul_n([-5, 3, -4, 0, 0, -5],-1),-5)",
    "io_inp": [
      -5,
      3,
      -4,
      0,
      0,
      -5
    ],
    "io_out": [
      -25,
      15,
      -20,
      0,
      0,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),-5)"
  },
  {
    "input": "input : list = [-1, -2, -4, 5]\noutput : list = [-7, -5, -4, 2]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(add_n([-1, -2, -4, 5],-4),23),-4),5))",
    "io_inp": [
      -1,
      -2,
      -4,
      5
    ],
    "io_out": [
      -7,
      -5,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(add_n(input,-4),23),-4),5))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(add_n([-1, 0],-3),4),12)))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(add_n(input,-3),4),12)))"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(mul_n(reverse(drop(sort_des([2, -1, 3]),2)),4),1)",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(drop(sort_des(input),2)),4),1)"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [5, 3, -5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(reverse([-5, 5, 3]),-3)),-3))",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(reverse(input),-3)),-3))"
  },
  {
    "input": "input : list = [-4, -5, 0, 1]\noutput : list = [4, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(take([-4, -5, 0, 1],2),5)),-3),-2)",
    "io_inp": [
      -4,
      -5,
      0,
      1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(take(input,2),5)),-3),-2)"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sort_des(drop([1, 2, 3],1)))",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [1, -7]",
    "output": "generated_output : list = reverse(sub_n([-4, 4],3))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [-1, -3, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(reverse([2, 4, 2]),4)),-1))",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(reverse(input),4)),-1))"
  },
  {
    "input": "input : list = [3, -5, -4, 5]\noutput : list = [12, 10, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc([3, -5, -4, 5])),3)),4)",
    "io_inp": [
      3,
      -5,
      -4,
      5
    ],
    "io_out": [
      12,
      10,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc(input)),3)),4)"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-20, -8, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(reverse([-5, 2, -2]),4))))",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -20,
      -8,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-1, -4, 0, 1]\noutput : list = [12, 8, -8, 4]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-1, -4, 0, 1]),-2),4)",
    "io_inp": [
      -1,
      -4,
      0,
      1
    ],
    "io_out": [
      12,
      8,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-2),4)"
  },
  {
    "input": "input : list = [-4, 1, -3]\noutput : list = [-1]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(take([-4, 1, -3],1),-2)),5),1)",
    "io_inp": [
      -4,
      1,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(take(input,1),-2)),5),1)"
  },
  {
    "input": "input : list = [5, 0, 2, -3, -4]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(drop([5, 0, 2, -3, -4],3),2),3),-3))",
    "io_inp": [
      5,
      0,
      2,
      -3,
      -4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(drop(input,3),2),3),-3))"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [3, -3, -15]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_des([2, -2, -4]),3),-3))",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      3,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_des(input),3),-3))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [32, 48]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(add_n([1, -1],-5),8),2),-4))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      32,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(add_n(input,-5),8),2),-4))"
  },
  {
    "input": "input : list = [-4, -4, -5, 1, -4, 4]\noutput : list = [3, -5, 0, -6, -5]",
    "output": "generated_output : list = reverse(add_n(sub_n(drop([-4, -4, -5, 1, -4, 4],1),-2),-3))",
    "io_inp": [
      -4,
      -4,
      -5,
      1,
      -4,
      4
    ],
    "io_out": [
      3,
      -5,
      0,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(drop(input,1),-2),-3))"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [3, 6, 9]",
    "output": "generated_output : list = sort_asc(add_n([5, 2, -1],4))",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [0, -1, -2, -5, -5]\noutput : list = [42, 42, 18, 10, 2]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(mul_n([0, -1, -2, -5, -5],4),18)),1),-2)",
    "io_inp": [
      0,
      -1,
      -2,
      -5,
      -5
    ],
    "io_out": [
      42,
      42,
      18,
      10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(mul_n(input,4),18)),1),-2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [4, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(take(reverse([-5, 2]),14)),30),-2)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(reverse(input),14)),30),-2)"
  },
  {
    "input": "input : list = [4, -4, -5, 0, 2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(take([4, -4, -5, 0, 2, 4],1))),4),-4)",
    "io_inp": [
      4,
      -4,
      -5,
      0,
      2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(take(input,1))),4),-4)"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [-4, -4, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(reverse([-3, -3, 3]),-2),-1)))",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(reverse(input),-2),-1)))"
  },
  {
    "input": "input : list = [4, 1, -3, 2, 3, -1]\noutput : list = [4, 16]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take([4, 1, -3, 2, 3, -1],2),4)))",
    "io_inp": [
      4,
      1,
      -3,
      2,
      3,
      -1
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(input,2),4)))"
  },
  {
    "input": "input : list = [-3, -5, 5, -4]\noutput : list = [-8, -7, -6, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(reverse([-3, -5, 5, -4]))),-3))",
    "io_inp": [
      -3,
      -5,
      5,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(reverse(input))),-3))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_asc([0, 0]),-3),5),-4),2)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_asc(input),-3),5),-4),2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(sub_n([-2, -3],1))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,1))"
  },
  {
    "input": "input : list = [4, 2, -2, -5]\noutput : list = [-5, -2, 2, 4]",
    "output": "generated_output : list = take(sort_asc([4, 2, -2, -5]),18)",
    "io_inp": [
      4,
      2,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),18)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-3, -2])))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-3, 2, 3, 2, -4]\noutput : list = [-9]",
    "output": "generated_output : list = drop(sub_n([-3, 2, 3, 2, -4],5),4)",
    "io_inp": [
      -3,
      2,
      3,
      2,
      -4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,5),4)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [15, -13]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(reverse([2, -5]),4),5),2))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      15,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(reverse(input),4),5),2))"
  },
  {
    "input": "input : list = [4, 4, -5, -2, 3]\noutput : list = [8, 8, -1, 2, 7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(add_n([4, 4, -5, -2, 3],5),-2),1),4),-4)",
    "io_inp": [
      4,
      4,
      -5,
      -2,
      3
    ],
    "io_out": [
      8,
      8,
      -1,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(add_n(input,5),-2),1),4),-4)"
  },
  {
    "input": "input : list = [-1, -1, 4, -5, 3, 2]\noutput : list = [-75, -15, -15, 30, 45, 60]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(sort_asc([-1, -1, 4, -5, 3, 2])),-5)),-3)",
    "io_inp": [
      -1,
      -1,
      4,
      -5,
      3,
      2
    ],
    "io_out": [
      -75,
      -15,
      -15,
      30,
      45,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(sort_asc(input)),-5)),-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc([4, 2])",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 3, -5, 1]\noutput : list = [-3, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(add_n([3, 3, -5, 1],3),7),1)))",
    "io_inp": [
      3,
      3,
      -5,
      1
    ],
    "io_out": [
      -3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(add_n(input,3),7),1)))"
  },
  {
    "input": "input : list = [5, 2, 1, -1]\noutput : list = [18, 9, 6, 0]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([5, 2, 1, -1],3),-1),-2)",
    "io_inp": [
      5,
      2,
      1,
      -1
    ],
    "io_out": [
      18,
      9,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,3),-1),-2)"
  },
  {
    "input": "input : list = [3, -5, -1, -2]\noutput : list = [-5, 7, 10, 19]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n([3, -5, -1, -2],-3),-4)))",
    "io_inp": [
      3,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      7,
      10,
      19
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(input,-3),-4)))"
  },
  {
    "input": "input : list = [5, 3, -4, -4]\noutput : list = [2, 0, -7, -7]",
    "output": "generated_output : list = take(sort_des(take(sub_n(sort_asc([5, 3, -4, -4]),3),6)),10)",
    "io_inp": [
      5,
      3,
      -4,
      -4
    ],
    "io_out": [
      2,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(sort_asc(input),3),6)),10)"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, 1, 5],1),14)",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),14)"
  },
  {
    "input": "input : list = [-1, 5, 3, -2]\noutput : list = [2, 3, 7, 9]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n([-1, 5, 3, -2],-3),5),-1))",
    "io_inp": [
      -1,
      5,
      3,
      -2
    ],
    "io_out": [
      2,
      3,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(input,-3),5),-1))"
  },
  {
    "input": "input : list = [5, -5, -2, 5, -3, -4]\noutput : list = [6, -4, -1, 6, -2, -3]",
    "output": "generated_output : list = sub_n([5, -5, -2, 5, -3, -4],-1)",
    "io_inp": [
      5,
      -5,
      -2,
      5,
      -3,
      -4
    ],
    "io_out": [
      6,
      -4,
      -1,
      6,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [-19, -7, -13]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(mul_n([5, 1, 3],-3))),4),16)",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      -19,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(mul_n(input,-3))),4),16)"
  },
  {
    "input": "input : list = [3, 0, 3, -2, 3, -4]\noutput : list = [-41, 19, -41, 43]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(drop([3, 0, 3, -2, 3, -4],2),3),6),-4),5)",
    "io_inp": [
      3,
      0,
      3,
      -2,
      3,
      -4
    ],
    "io_out": [
      -41,
      19,
      -41,
      43
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(drop(input,2),3),6),-4),5)"
  },
  {
    "input": "input : list = [4, -4, 0, -2, 0]\noutput : list = [-4, -2, 0, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(reverse([4, -4, 0, -2, 0])))))",
    "io_inp": [
      4,
      -4,
      0,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = drop([2, -2, 1],1)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -1, -3, 0]\noutput : list = [16, 28, 20, 8]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(sub_n([2, -1, -3, 0],4)))),-4)",
    "io_inp": [
      2,
      -1,
      -3,
      0
    ],
    "io_out": [
      16,
      28,
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(sub_n(input,4)))),-4)"
  },
  {
    "input": "input : list = [-5, -4, 2, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take([-5, -4, 2, -4],2)",
    "io_inp": [
      -5,
      -4,
      2,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, -3, -5, 4]\noutput : list = [-8, -6, -4, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(reverse([-1, -3, -5, 4]),1),-3)))",
    "io_inp": [
      -1,
      -3,
      -5,
      4
    ],
    "io_out": [
      -8,
      -6,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(reverse(input),1),-3)))"
  },
  {
    "input": "input : list = [-4, -4, 0]\noutput : list = [0, -4, -4]",
    "output": "generated_output : list = take(reverse([-4, -4, 0]),8)",
    "io_inp": [
      -4,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),8)"
  },
  {
    "input": "input : list = [-5, 0, -4]\noutput : list = [2, 10, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(add_n([-5, 0, -4],-1),-2))),1)",
    "io_inp": [
      -5,
      0,
      -4
    ],
    "io_out": [
      2,
      10,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(add_n(input,-1),-2))),1)"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [-7, 5, 7]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(add_n([-5, 1, 2],2),-1),2),-1),12)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      -7,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(add_n(input,2),-1),2),-1),12)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [7, 6, 4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sort_des([3, 4, 1])),1)),-4)",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sort_des(input)),1)),-4)"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [4, 3, 5]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(add_n([3, 1, 2],3),-1)),-2),15)",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      4,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(add_n(input,3),-1)),-2),15)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(reverse([1, -1])))),14)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(reverse(input)))),14)"
  },
  {
    "input": "input : list = [3, 5, 1, 0, -3, -4]\noutput : list = [20, 16, 4, 0, -8, -16]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(mul_n([3, 5, 1, 0, -3, -4],-4)),4)))",
    "io_inp": [
      3,
      5,
      1,
      0,
      -3,
      -4
    ],
    "io_out": [
      20,
      16,
      4,
      0,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(mul_n(input,-4)),4)))"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n(drop([3, -3, -5],1),-1)",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [3, 2, -2, 3]\noutput : list = [18, 15, 3, 18]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(mul_n([3, 2, -2, 3],3),1),-5),1),-4)",
    "io_inp": [
      3,
      2,
      -2,
      3
    ],
    "io_out": [
      18,
      15,
      3,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(mul_n(input,3),1),-5),1),-4)"
  },
  {
    "input": "input : list = [2, -5, 1, -5, -3]\noutput : list = [4, 4, 0, -8, -10]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc([2, -5, 1, -5, -3]),-2),2),4)",
    "io_inp": [
      2,
      -5,
      1,
      -5,
      -3
    ],
    "io_out": [
      4,
      4,
      0,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(input),-2),2),4)"
  },
  {
    "input": "input : list = [-3, 3, -5, 5, -1]\noutput : list = [-14, -6, 2, 18, 26]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(mul_n([-3, 3, -5, 5, -1],4),-5),1)))",
    "io_inp": [
      -3,
      3,
      -5,
      5,
      -1
    ],
    "io_out": [
      -14,
      -6,
      2,
      18,
      26
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(mul_n(input,4),-5),1)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = take(reverse([-2, 5]),12)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),12)"
  },
  {
    "input": "input : list = [-4, -2, 0, -3]\noutput : list = [-2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(add_n([-4, -2, 0, -3],-1),1),-2),-4))",
    "io_inp": [
      -4,
      -2,
      0,
      -3
    ],
    "io_out": [
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(add_n(input,-1),1),-2),-4))"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [5, -16, -13]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n([4, 5, -2],-3)),3),5),-3)",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      5,
      -16,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n(input,-3)),3),5),-3)"
  },
  {
    "input": "input : list = [1, 2, -1]\noutput : list = [-2, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n([1, 2, -1],2)))",
    "io_inp": [
      1,
      2,
      -1
    ],
    "io_out": [
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,2)))"
  },
  {
    "input": "input : list = [5, 4, -4, 1]\noutput : list = [125, 100, 25, -100]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(mul_n([5, 4, -4, 1],5)))),5)",
    "io_inp": [
      5,
      4,
      -4,
      1
    ],
    "io_out": [
      125,
      100,
      25,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(mul_n(input,5)))),5)"
  },
  {
    "input": "input : list = [3, -2, -4, 3]\noutput : list = [10, -15]",
    "output": "generated_output : list = take(take(sort_des(take(mul_n([3, -2, -4, 3],-5),2)),4),12)",
    "io_inp": [
      3,
      -2,
      -4,
      3
    ],
    "io_out": [
      10,
      -15
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(mul_n(input,-5),2)),4),12)"
  },
  {
    "input": "input : list = [-5, 2, -4, 2]\noutput : list = [12, -18, 12, -23]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(mul_n([-5, 2, -4, 2],5),3),-2)),-3)",
    "io_inp": [
      -5,
      2,
      -4,
      2
    ],
    "io_out": [
      12,
      -18,
      12,
      -23
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(mul_n(input,5),3),-2)),-3)"
  },
  {
    "input": "input : list = [5, 0, 2]\noutput : list = [7]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n(take([5, 0, 2],1),-2),16)))",
    "io_inp": [
      5,
      0,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(take(input,1),-2),16)))"
  },
  {
    "input": "input : list = [0, 1, 4, -3]\noutput : list = [-3, -4, -7]",
    "output": "generated_output : list = drop(sort_des(add_n(reverse([0, 1, 4, -3]),-4)),1)",
    "io_inp": [
      0,
      1,
      4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(reverse(input),-4)),1)"
  },
  {
    "input": "input : list = [-2, 3, 1, 4, 4]\noutput : list = [0, 0, 2, 6, 12]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc([-2, 3, 1, 4, 4]),-4))),-2)",
    "io_inp": [
      -2,
      3,
      1,
      4,
      4
    ],
    "io_out": [
      0,
      0,
      2,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc(input),-4))),-2)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-14, -5]",
    "output": "generated_output : list = sub_n(take(mul_n([-3, 0],3),7),5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -14,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,3),7),5)"
  },
  {
    "input": "input : list = [-1, -2, 5, -2, 5, -1]\noutput : list = [24, 0, 28, 0]",
    "output": "generated_output : list = take(take(mul_n(sub_n(reverse([-1, -2, 5, -2, 5, -1]),5),-4),17),4)",
    "io_inp": [
      -1,
      -2,
      5,
      -2,
      5,
      -1
    ],
    "io_out": [
      24,
      0,
      28,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(reverse(input),5),-4),17),4)"
  },
  {
    "input": "input : list = [4, 5, -1, -2]\noutput : list = [3, 4, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n([4, 5, -1, -2],-4),-2),-1))",
    "io_inp": [
      4,
      5,
      -1,
      -2
    ],
    "io_out": [
      3,
      4,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(input,-4),-2),-1))"
  },
  {
    "input": "input : list = [-5, 4, -1, -4]\noutput : list = [-28, -22, -4, 26]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n([-5, 4, -1, -4],-3)),-2),-2))",
    "io_inp": [
      -5,
      4,
      -1,
      -4
    ],
    "io_out": [
      -28,
      -22,
      -4,
      26
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n(input,-3)),-2),-2))"
  },
  {
    "input": "input : list = [-5, -2, 4, 2]\noutput : list = [4, 2, -2, -5]",
    "output": "generated_output : list = sort_des([-5, -2, 4, 2])",
    "io_inp": [
      -5,
      -2,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5, -2, -4, -4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = take(reverse(sort_des(take(drop([2, 5, -2, -4, -4, 5],4),2))),35)",
    "io_inp": [
      2,
      5,
      -2,
      -4,
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(drop(input,4),2))),35)"
  },
  {
    "input": "input : list = [-4, 1, 1, 4, 2]\noutput : list = [-1, -3, -4, -4, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([-4, 1, 1, 4, 2]),5))",
    "io_inp": [
      -4,
      1,
      1,
      4,
      2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [1, -5, 1, 0, 0]\noutput : list = [1, 1, 0, 0, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse([1, -5, 1, 0, 0]))))",
    "io_inp": [
      1,
      -5,
      1,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [0, 4, -2]\noutput : list = [-12, 0, 24]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n(sort_des([0, 4, -2]),-2)),22),-3)",
    "io_inp": [
      0,
      4,
      -2
    ],
    "io_out": [
      -12,
      0,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(sort_des(input),-2)),22),-3)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(reverse([-3, -2]))),3),-4)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(reverse(input))),3),-4)"
  },
  {
    "input": "input : list = [1, -2, 1, 2]\noutput : list = [-2, -14, -14, -18]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(sort_des([1, -2, 1, 2]),2)),5),-2)",
    "io_inp": [
      1,
      -2,
      1,
      2
    ],
    "io_out": [
      -2,
      -14,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(sort_des(input),2)),5),-2)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [24]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(take([1, 3, 4],1),5),1),-5),1)",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(take(input,1),5),1),-5),1)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = reverse(take(sort_des([1, -2]),14))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(input),14))"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [0, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(reverse([4, -2, 2]),14))),2)",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(reverse(input),14))),2)"
  },
  {
    "input": "input : list = [2, -2, 5, -3]\noutput : list = [-4, 4, -3, 1]",
    "output": "generated_output : list = add_n(add_n(reverse(take(add_n([2, -2, 5, -3],3),8)),1),-5)",
    "io_inp": [
      2,
      -2,
      5,
      -3
    ],
    "io_out": [
      -4,
      4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(add_n(input,3),8)),1),-5)"
  },
  {
    "input": "input : list = [2, -5, 1, 1, 4, -4]\noutput : list = [-10, -8, 2, 2, 4, 8]",
    "output": "generated_output : list = mul_n(sort_asc([2, -5, 1, 1, 4, -4]),2)",
    "io_inp": [
      2,
      -5,
      1,
      1,
      4,
      -4
    ],
    "io_out": [
      -10,
      -8,
      2,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-4, -4, 4, 2, 2]\noutput : list = [-4, -4, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(take(reverse([-4, -4, 4, 2, 2]),22)),6))",
    "io_inp": [
      -4,
      -4,
      4,
      2,
      2
    ],
    "io_out": [
      -4,
      -4,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(reverse(input),22)),6))"
  },
  {
    "input": "input : list = [4, 2, 3, 5, 2, 1]\noutput : list = [1, 2, 2, 3, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([4, 2, 3, 5, 2, 1]))",
    "io_inp": [
      4,
      2,
      3,
      5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 3, -4, -5, -5]\noutput : list = [0, 0, 1, 4, 8]",
    "output": "generated_output : list = sub_n(sort_asc([-1, 3, -4, -5, -5]),-5)",
    "io_inp": [
      -1,
      3,
      -4,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      1,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-4, 1, 4, 2, -1]\noutput : list = [3, 5, 6, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(drop([-4, 1, 4, 2, -1],1)))),-4)",
    "io_inp": [
      -4,
      1,
      4,
      2,
      -1
    ],
    "io_out": [
      3,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(drop(input,1)))),-4)"
  },
  {
    "input": "input : list = [-2, 2, -2, 0, -3, 3]\noutput : list = [-6, 6, -6, 0, -9, 9]",
    "output": "generated_output : list = mul_n(take(mul_n([-2, 2, -2, 0, -3, 3],1),8),3)",
    "io_inp": [
      -2,
      2,
      -2,
      0,
      -3,
      3
    ],
    "io_out": [
      -6,
      6,
      -6,
      0,
      -9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,1),8),3)"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [11, 5, 5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(mul_n([0, 0, -3],-2)),-5)))",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      11,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(mul_n(input,-2)),-5)))"
  },
  {
    "input": "input : list = [-5, 5, -3, 4, 2]\noutput : list = [10, -10]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(take([-5, 5, -3, 4, 2],2),-2))))",
    "io_inp": [
      -5,
      5,
      -3,
      4,
      2
    ],
    "io_out": [
      10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(take(input,2),-2))))"
  },
  {
    "input": "input : list = [-5, -1, 2, 4, -1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = drop([-5, -1, 2, 4, -1, 5],4)",
    "io_inp": [
      -5,
      -1,
      2,
      4,
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [3, -2, -3, -2]\noutput : list = [2, 3, 3, 8]",
    "output": "generated_output : list = sort_asc(add_n(reverse([3, -2, -3, -2]),5))",
    "io_inp": [
      3,
      -2,
      -3,
      -2
    ],
    "io_out": [
      2,
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),5))"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [-5, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, -5])",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, 0]\noutput : list = [-2, -9, -4]",
    "output": "generated_output : list = add_n([2, -5, 0],-4)",
    "io_inp": [
      2,
      -5,
      0
    ],
    "io_out": [
      -2,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 0, 4, -1]\noutput : list = [-4, -1, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(reverse([-4, 0, 4, -1])))))",
    "io_inp": [
      -4,
      0,
      4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(reverse([0, 0]))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, -4, 0, 0, -2]\noutput : list = [0, 2, 2, 4, 4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([-2, -4, 0, 0, -2],-1)),3)",
    "io_inp": [
      -2,
      -4,
      0,
      0,
      -2
    ],
    "io_out": [
      0,
      2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-1)),3)"
  },
  {
    "input": "input : list = [4, -5, -5, 2]\noutput : list = [-4, -13, -13, -6]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(reverse([4, -5, -5, 2]),5),16)),3)",
    "io_inp": [
      4,
      -5,
      -5,
      2
    ],
    "io_out": [
      -4,
      -13,
      -13,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(reverse(input),5),16)),3)"
  },
  {
    "input": "input : list = [1, -2, -2, -3, 3]\noutput : list = [3, -3, -2, -2]",
    "output": "generated_output : list = mul_n(reverse(drop([1, -2, -2, -3, 3],1)),1)",
    "io_inp": [
      1,
      -2,
      -2,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,1)),1)"
  },
  {
    "input": "input : list = [-2, 5, -5, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 5, -5, -3],1)",
    "io_inp": [
      -2,
      5,
      -5,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -4, -4, 1, 4, -4]\noutput : list = [5, 5, 5, 8, 10, 13]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(add_n([-1, -4, -4, 1, 4, -4],5))),4))",
    "io_inp": [
      -1,
      -4,
      -4,
      1,
      4,
      -4
    ],
    "io_out": [
      5,
      5,
      5,
      8,
      10,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(add_n(input,5))),4))"
  },
  {
    "input": "input : list = [-4, 3, 0, 2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(drop([-4, 3, 0, 2],1),-1))",
    "io_inp": [
      -4,
      3,
      0,
      2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),-1))"
  },
  {
    "input": "input : list = [-1, 0, -3, 0]\noutput : list = [0, -3, 0, -1]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(reverse([-1, 0, -3, 0])),17)),1)",
    "io_inp": [
      -1,
      0,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(reverse(input)),17)),1)"
  },
  {
    "input": "input : list = [4, 5, 3, -3, 0]\noutput : list = [16, -32, -8]",
    "output": "generated_output : list = mul_n(take(sub_n(drop(mul_n([4, 5, 3, -3, 0],4),2),4),25),2)",
    "io_inp": [
      4,
      5,
      3,
      -3,
      0
    ],
    "io_out": [
      16,
      -32,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(drop(mul_n(input,4),2),4),25),2)"
  },
  {
    "input": "input : list = [-4, 5, 4, 1, 4]\noutput : list = [9, 6, 9, 10]",
    "output": "generated_output : list = take(take(reverse(sub_n([-4, 5, 4, 1, 4],-5)),7),4)",
    "io_inp": [
      -4,
      5,
      4,
      1,
      4
    ],
    "io_out": [
      9,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(input,-5)),7),4)"
  },
  {
    "input": "input : list = [4, 1, 0, 2]\noutput : list = [-25, -15, -10, -5]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n([4, 1, 0, 2],-5)),-5)))",
    "io_inp": [
      4,
      1,
      0,
      2
    ],
    "io_out": [
      -25,
      -15,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n(input,-5)),-5)))"
  },
  {
    "input": "input : list = [3, -5, -3]\noutput : list = [6, -2, 0]",
    "output": "generated_output : list = sub_n([3, -5, -3],-3)",
    "io_inp": [
      3,
      -5,
      -3
    ],
    "io_out": [
      6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [2, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(drop([0, -5, -2],1),-4)),1),1)",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(drop(input,1),-4)),1),1)"
  },
  {
    "input": "input : list = [-4, 2, 5, -3, 2, 4]\noutput : list = [10, 9, 7, 7, 2, 1]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des([-4, 2, 5, -3, 2, 4]),-4),-1),-3),1)",
    "io_inp": [
      -4,
      2,
      5,
      -3,
      2,
      4
    ],
    "io_out": [
      10,
      9,
      7,
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des(input),-4),-1),-3),1)"
  },
  {
    "input": "input : list = [-4, -3, 0, 1, -5]\noutput : list = [-8, -2, -3, -6, -7]",
    "output": "generated_output : list = reverse(sub_n([-4, -3, 0, 1, -5],3))",
    "io_inp": [
      -4,
      -3,
      0,
      1,
      -5
    ],
    "io_out": [
      -8,
      -2,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [1, 5, -3, -3, 4, -1]\noutput : list = [69, -11]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(drop([1, 5, -3, -3, 4, -1],4),-4),-4),-1),4)",
    "io_inp": [
      1,
      5,
      -3,
      -3,
      4,
      -1
    ],
    "io_out": [
      69,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(drop(input,4),-4),-4),-1),4)"
  },
  {
    "input": "input : list = [2, 2, -5, -2, -5]\noutput : list = [-5, -5, -2, 2, 2]",
    "output": "generated_output : list = sort_asc([2, 2, -5, -2, -5])",
    "io_inp": [
      2,
      2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5, -2, -5]\noutput : list = [2, 10, 14, 14]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(sort_des([-4, -5, -2, -5]),1),18),-4),2)",
    "io_inp": [
      -4,
      -5,
      -2,
      -5
    ],
    "io_out": [
      2,
      10,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(sort_des(input),1),18),-4),2)"
  },
  {
    "input": "input : list = [5, -1, 5, -5]\noutput : list = [-8, 2, -4, 2]",
    "output": "generated_output : list = sub_n(reverse([5, -1, 5, -5]),3)",
    "io_inp": [
      5,
      -1,
      5,
      -5
    ],
    "io_out": [
      -8,
      2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [2, -4, -2, -1, 2, -4]\noutput : list = [8, 8, -4, -8, -16, -16]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n([2, -4, -2, -1, 2, -4],4))))",
    "io_inp": [
      2,
      -4,
      -2,
      -1,
      2,
      -4
    ],
    "io_out": [
      8,
      8,
      -4,
      -8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(input,4))))"
  },
  {
    "input": "input : list = [-5, -4, 0, -5]\noutput : list = [-10, -2, 0, 0]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(sub_n([-5, -4, 0, -5],-5)),2),-2),-2)",
    "io_inp": [
      -5,
      -4,
      0,
      -5
    ],
    "io_out": [
      -10,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(sub_n(input,-5)),2),-2),-2)"
  },
  {
    "input": "input : list = [3, 5, -1, -1, -4, 3]\noutput : list = [10, 4, 4, -8, -8, -17]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(mul_n([3, 5, -1, -1, -4, 3],-3)),-5)),-1)",
    "io_inp": [
      3,
      5,
      -1,
      -1,
      -4,
      3
    ],
    "io_out": [
      10,
      4,
      4,
      -8,
      -8,
      -17
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(mul_n(input,-3)),-5)),-1)"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(drop([3, -4, -1],1),-5))),28)",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(drop(input,1),-5))),28)"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse(sort_des(drop([3, -4, -3],1)))",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-3, 3, -5]\noutput : list = [-5, -3, 3]",
    "output": "generated_output : list = sort_asc([-3, 3, -5])",
    "io_inp": [
      -3,
      3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, -1, -2]\noutput : list = [0, 5]",
    "output": "generated_output : list = take([0, 5, -1, -2],2)",
    "io_inp": [
      0,
      5,
      -1,
      -2
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = drop([0, -4, 3],1)",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [12, 5]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(reverse([-3, 4]),-5),-3)))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      12,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(reverse(input),-5),-3)))"
  },
  {
    "input": "input : list = [0, -1, 0, 3, -1]\noutput : list = [-1, -1, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([0, -1, 0, 3, -1])))",
    "io_inp": [
      0,
      -1,
      0,
      3,
      -1
    ],
    "io_out": [
      -1,
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [20, 20]",
    "output": "generated_output : list = mul_n([5, 5],4)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(sub_n(take([2, 0, 2],1),1),4))",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(input,1),1),4))"
  },
  {
    "input": "input : list = [2, -5, -1, -4, 0, -1]\noutput : list = [-18, -8, -3, -3, 12, 17]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n([2, -5, -1, -4, 0, -1],-5)),-5),3))",
    "io_inp": [
      2,
      -5,
      -1,
      -4,
      0,
      -1
    ],
    "io_out": [
      -18,
      -8,
      -3,
      -3,
      12,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n(input,-5)),-5),3))"
  },
  {
    "input": "input : list = [-1, -2, -1, 4, -4]\noutput : list = [-7, -11, -7, 13, -19]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(reverse([-1, -2, -1, 4, -4]),4),-3)),13)",
    "io_inp": [
      -1,
      -2,
      -1,
      4,
      -4
    ],
    "io_out": [
      -7,
      -11,
      -7,
      13,
      -19
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(reverse(input),4),-3)),13)"
  },
  {
    "input": "input : list = [-4, 2, -5, -4]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(sub_n([-4, 2, -5, -4],1)),2),36))",
    "io_inp": [
      -4,
      2,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(sub_n(input,1)),2),36))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse([2, 2]))))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(input))))"
  },
  {
    "input": "input : list = [-4, 0, 3, 0]\noutput : list = [45, 0, 0, -60]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(sort_des([-4, 0, 3, 0]),-3)),16),-5)",
    "io_inp": [
      -4,
      0,
      3,
      0
    ],
    "io_out": [
      45,
      0,
      0,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(sort_des(input),-3)),16),-5)"
  },
  {
    "input": "input : list = [2, 1, 4, -5, -2]\noutput : list = [7, 1, -2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(drop([2, 1, 4, -5, -2],2))),-3)",
    "io_inp": [
      2,
      1,
      4,
      -5,
      -2
    ],
    "io_out": [
      7,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(drop(input,2))),-3)"
  },
  {
    "input": "input : list = [1, 4, -1, 4, -1]\noutput : list = [-4, -9, -4, -9]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(drop([1, 4, -1, 4, -1],1)),-5),-3))",
    "io_inp": [
      1,
      4,
      -1,
      4,
      -1
    ],
    "io_out": [
      -4,
      -9,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(drop(input,1)),-5),-3))"
  },
  {
    "input": "input : list = [4, 2, -1, -5, -4]\noutput : list = [0, -2, -5, -9, -8]",
    "output": "generated_output : list = add_n(sub_n([4, 2, -1, -5, -4],1),-3)",
    "io_inp": [
      4,
      2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      0,
      -2,
      -5,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),-3)"
  },
  {
    "input": "input : list = [2, 5, 3, -3, 5, 4]\noutput : list = [10, 8, 7, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(take([2, 5, 3, -3, 5, 4],4),5))))",
    "io_inp": [
      2,
      5,
      3,
      -3,
      5,
      4
    ],
    "io_out": [
      10,
      8,
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(take(input,4),5))))"
  },
  {
    "input": "input : list = [2, 0, 1, 0]\noutput : list = [6, 6, 11, 16]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(mul_n([2, 0, 1, 0],5))),-3),3)",
    "io_inp": [
      2,
      0,
      1,
      0
    ],
    "io_out": [
      6,
      6,
      11,
      16
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(mul_n(input,5))),-3),3)"
  },
  {
    "input": "input : list = [4, 4, 2, -1]\noutput : list = [5, 20, 30]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(add_n([4, 4, 2, -1],2))),5),3)",
    "io_inp": [
      4,
      4,
      2,
      -1
    ],
    "io_out": [
      5,
      20,
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(add_n(input,2))),5),3)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sort_des([5, 4]),-1)),-5),-2)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sort_des(input),-1)),-5),-2)"
  },
  {
    "input": "input : list = [-4, -5, 1, 5]\noutput : list = [25, 5, -25, -20]",
    "output": "generated_output : list = mul_n(take(reverse([-4, -5, 1, 5]),7),5)",
    "io_inp": [
      -4,
      -5,
      1,
      5
    ],
    "io_out": [
      25,
      5,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),7),5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(sort_asc([2, 2])),-4)))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-1, 1, 5, 4, -4, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(drop(mul_n([-1, 1, 5, 4, -4, -1],-3),5))))",
    "io_inp": [
      -1,
      1,
      5,
      4,
      -4,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(drop(mul_n(input,-3),5))))"
  },
  {
    "input": "input : list = [-1, 3, -2, 0, -3, 1]\noutput : list = [-3, -2, -1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3, -2, 0, -3, 1])",
    "io_inp": [
      -1,
      3,
      -2,
      0,
      -3,
      1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, 1, 5, 1, 0]\noutput : list = [15, 6, -3]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(take([-5, -2, 1, 5, 1, 0],3),5),3),-3))",
    "io_inp": [
      -5,
      -2,
      1,
      5,
      1,
      0
    ],
    "io_out": [
      15,
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(take(input,3),5),3),-3))"
  },
  {
    "input": "input : list = [0, 3, -5, 5, 5]\noutput : list = [8, 11, 3, 13, 13]",
    "output": "generated_output : list = add_n(sub_n([0, 3, -5, 5, 5],-4),4)",
    "io_inp": [
      0,
      3,
      -5,
      5,
      5
    ],
    "io_out": [
      8,
      11,
      3,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),4)"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [-16]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(take([-4, 3, 5],1),4))))",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(take(input,1),4))))"
  },
  {
    "input": "input : list = [-1, 4, -1, 0, -2, 0]\noutput : list = [-2, 8, -2, 0, -4, 0]",
    "output": "generated_output : list = add_n(add_n(mul_n([-1, 4, -1, 0, -2, 0],2),-1),1)",
    "io_inp": [
      -1,
      4,
      -1,
      0,
      -2,
      0
    ],
    "io_out": [
      -2,
      8,
      -2,
      0,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,2),-1),1)"
  },
  {
    "input": "input : list = [3, -2, 4, -1, 0]\noutput : list = [3, 4, 5, 8, 9]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(reverse([3, -2, 4, -1, 0]),5),-5)))",
    "io_inp": [
      3,
      -2,
      4,
      -1,
      0
    ],
    "io_out": [
      3,
      4,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(reverse(input),5),-5)))"
  },
  {
    "input": "input : list = [0, -4, 5, 2, 5, 2]\noutput : list = [-6, -3, -6]",
    "output": "generated_output : list = reverse(reverse(add_n(drop(add_n([0, -4, 5, 2, 5, 2],-3),3),-5)))",
    "io_inp": [
      0,
      -4,
      5,
      2,
      5,
      2
    ],
    "io_out": [
      -6,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(drop(add_n(input,-3),3),-5)))"
  },
  {
    "input": "input : list = [5, 4, 2, 2, 4]\noutput : list = [2, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 4, 2, 2, 4])",
    "io_inp": [
      5,
      4,
      2,
      2,
      4
    ],
    "io_out": [
      2,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, 5, 2]\noutput : list = [6, 8, 9, 9]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc([5, 4, 5, 2]),4)))",
    "io_inp": [
      5,
      4,
      5,
      2
    ],
    "io_out": [
      6,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [-2, 4, 1, -5]\noutput : list = [-3, -9]",
    "output": "generated_output : list = sort_des(take(sub_n(drop(drop([-2, 4, 1, -5],1),1),4),22))",
    "io_inp": [
      -2,
      4,
      1,
      -5
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(drop(drop(input,1),1),4),22))"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [-9, -9, -9]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(sort_asc([-2, -2, -2]),-5),1)),-1)",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(sort_asc(input),-5),1)),-1)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [1, 5, 8]",
    "output": "generated_output : list = add_n(sub_n([-5, -1, 2],-4),2)",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      1,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),2)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [4, -2]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(add_n(reverse([-3, 0]),-1)),-2),-4)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(add_n(reverse(input),-1)),-2),-4)"
  },
  {
    "input": "input : list = [1, 4, 3, 5]\noutput : list = [-5, -4, -3, -1]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([1, 4, 3, 5]),-1))",
    "io_inp": [
      1,
      4,
      3,
      5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [-4, -3, 0, 4, 5, -5]\noutput : list = [-5, -4, -3, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des([-4, -3, 0, 4, 5, -5]),27))",
    "io_inp": [
      -4,
      -3,
      0,
      4,
      5,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),27))"
  },
  {
    "input": "input : list = [1, 2, 2, -1, -1, 3]\noutput : list = [2, 2, 4, 5, 5, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des([1, 2, 2, -1, -1, 3])),3),1)",
    "io_inp": [
      1,
      2,
      2,
      -1,
      -1,
      3
    ],
    "io_out": [
      2,
      2,
      4,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(input)),3),1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc([-2, 2]))),-2)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(input))),-2)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([2, 0, 3]),5))",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(sort_des([-5, -5])),-1),3))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(sort_des(input)),-1),3))"
  },
  {
    "input": "input : list = [4, -4, 0, 4, -1]\noutput : list = [0, 0, -16, -20, -32]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sub_n([4, -4, 0, 4, -1],4))),4))",
    "io_inp": [
      4,
      -4,
      0,
      4,
      -1
    ],
    "io_out": [
      0,
      0,
      -16,
      -20,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sub_n(input,4))),4))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des([-3, 2])",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 1, -2],1)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 2, -1, -1, 5]\noutput : list = [25, 10, -5, -5, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(sort_des([-1, 2, -1, -1, 5]),1))),5)",
    "io_inp": [
      -1,
      2,
      -1,
      -1,
      5
    ],
    "io_out": [
      25,
      10,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(sort_des(input),1))),5)"
  },
  {
    "input": "input : list = [4, -4, -5]\noutput : list = [-2, -1, 7]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(sort_des([4, -4, -5]),12),-3)))",
    "io_inp": [
      4,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(sort_des(input),12),-3)))"
  },
  {
    "input": "input : list = [5, 3, 5, -1, -3]\noutput : list = [7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(take([5, 3, 5, -1, -3],1),12)),-3),-1)",
    "io_inp": [
      5,
      3,
      5,
      -1,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(take(input,1),12)),-3),-1)"
  },
  {
    "input": "input : list = [2, -5, 1, -4, 0]\noutput : list = [-6, -5, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(add_n([2, -5, 1, -4, 0],2)),29),-3))",
    "io_inp": [
      2,
      -5,
      1,
      -4,
      0
    ],
    "io_out": [
      -6,
      -5,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(add_n(input,2)),29),-3))"
  },
  {
    "input": "input : list = [-5, 3, -1, -5, -3]\noutput : list = [1, -11, 13]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(take([-5, 3, -1, -5, -3],3),15),-3)),2)",
    "io_inp": [
      -5,
      3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      1,
      -11,
      13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(take(input,3),15),-3)),2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, -21]",
    "output": "generated_output : list = mul_n(add_n(take(take(reverse([-5, 2]),9),20),-2),3)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(reverse(input),9),20),-2),3)"
  },
  {
    "input": "input : list = [0, -3, 5, -4]\noutput : list = [16, 12, 0, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc([0, -3, 5, -4])),-4))",
    "io_inp": [
      0,
      -3,
      5,
      -4
    ],
    "io_out": [
      16,
      12,
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(input)),-4))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-12, -19]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(reverse([-4, 3]),-5),-5)),-5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -12,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(reverse(input),-5),-5)),-5)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-12, 3]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(reverse([1, -4])),3),31))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(reverse(input)),3),31))"
  },
  {
    "input": "input : list = [0, 2, -4]\noutput : list = [11, 9, 5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(sub_n([0, 2, -4],-3),-4),-2)))",
    "io_inp": [
      0,
      2,
      -4
    ],
    "io_out": [
      11,
      9,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(sub_n(input,-3),-4),-2)))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 2],2))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [-6, -24, -22]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(reverse([-3, -4, 5]),-3),5),33),2)",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      -6,
      -24,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(reverse(input),-3),5),33),2)"
  },
  {
    "input": "input : list = [-3, 0, -2, 2, -1, 2]\noutput : list = [-1, -1, -3, -4, -5, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n([-3, 0, -2, 2, -1, 2],-3),1))",
    "io_inp": [
      -3,
      0,
      -2,
      2,
      -1,
      2
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,-3),1))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-24, 12]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(mul_n([2, -2],-3),-2),7)),-3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -24,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(mul_n(input,-3),-2),7)),-3)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [9, 10]",
    "output": "generated_output : list = sub_n(add_n([-1, 0],5),-5)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),-5)"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [30, 20, 5]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sub_n([0, 2, -3],-1)),-3),5))",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      30,
      20,
      5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sub_n(input,-1)),-3),5))"
  },
  {
    "input": "input : list = [4, 0, -3, -3, -1]\noutput : list = [16, 0, -4, -12, -12]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(mul_n([4, 0, -3, -3, -1],4))),2),-2)",
    "io_inp": [
      4,
      0,
      -3,
      -3,
      -1
    ],
    "io_out": [
      16,
      0,
      -4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(mul_n(input,4))),2),-2)"
  },
  {
    "input": "input : list = [-4, 1, 0, 4, 4]\noutput : list = [24, 20, 4]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(take([-4, 1, 0, 4, 4],3),-5),18),4))",
    "io_inp": [
      -4,
      1,
      0,
      4,
      4
    ],
    "io_out": [
      24,
      20,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(take(input,3),-5),18),4))"
  },
  {
    "input": "input : list = [-1, -1, -2, -2, 1]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = take([-1, -1, -2, -2, 1],3)",
    "io_inp": [
      -1,
      -1,
      -2,
      -2,
      1
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, -3, 0, -4]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(drop(sort_des([3, -3, 0, -4]),1))),23)",
    "io_inp": [
      3,
      -3,
      0,
      -4
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(drop(sort_des(input),1))),23)"
  },
  {
    "input": "input : list = [-1, 3, -5, -2]\noutput : list = [-5, -2, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3, -5, -2])",
    "io_inp": [
      -1,
      3,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, -5, -5]\noutput : list = [-5, -5, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([4, 5, -5, -5]))",
    "io_inp": [
      4,
      5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [0, 0, 0]\noutput : list = [5, 5, 5]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse([0, 0, 0]),4)),-1)",
    "io_inp": [
      0,
      0,
      0
    ],
    "io_out": [
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(input),4)),-1)"
  },
  {
    "input": "input : list = [-4, 0, -3, -1, 2, 4]\noutput : list = [-24, -12, -21, -15, -6, 0]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(sub_n([-4, 0, -3, -1, 2, 4],4),3))),44)",
    "io_inp": [
      -4,
      0,
      -3,
      -1,
      2,
      4
    ],
    "io_out": [
      -24,
      -12,
      -21,
      -15,
      -6,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(sub_n(input,4),3))),44)"
  },
  {
    "input": "input : list = [5, -1, 0, -3, -4, -4]\noutput : list = [-5, -5, -4, -2, -1, 4]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(add_n([5, -1, 0, -3, -4, -4],3))),4),24)",
    "io_inp": [
      5,
      -1,
      0,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(add_n(input,3))),4),24)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [3, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des([-1, -1, 3]))",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(sort_des([0, 3, -2])),-1),-1),2)",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(sort_des(input)),-1),-1),2)"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = mul_n(drop(add_n(reverse(sort_asc([-4, -1, 5])),2),1),-1)",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(reverse(sort_asc(input)),2),1),-1)"
  },
  {
    "input": "input : list = [2, 3, -3, -3, 1]\noutput : list = [10, 2, 2, 14, 12]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(sub_n([2, 3, -3, -3, 1],-4),1),29)),2)",
    "io_inp": [
      2,
      3,
      -3,
      -3,
      1
    ],
    "io_out": [
      10,
      2,
      2,
      14,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(sub_n(input,-4),1),29)),2)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse(take(take(sort_asc(sort_asc([1, 3])),22),20))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(sort_asc(input)),22),20))"
  },
  {
    "input": "input : list = [2, 1, 5, -3]\noutput : list = [-30, 42, 6, 15]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(mul_n([2, 1, 5, -3],-3),-3),-1),4))",
    "io_inp": [
      2,
      1,
      5,
      -3
    ],
    "io_out": [
      -30,
      42,
      6,
      15
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(mul_n(input,-3),-3),-1),4))"
  },
  {
    "input": "input : list = [-1, -4, 5, -3]\noutput : list = [-14, -2, 2, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(mul_n([-1, -4, 5, -3],2),-1),-4)),26)",
    "io_inp": [
      -1,
      -4,
      5,
      -3
    ],
    "io_out": [
      -14,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(mul_n(input,2),-1),-4)),26)"
  },
  {
    "input": "input : list = [2, -4, -2, 2, -4, -2]\noutput : list = [1, 1, -3, -3, -5, -5]",
    "output": "generated_output : list = sub_n(take(mul_n(take(sort_des([2, -4, -2, 2, -4, -2]),23),1),32),1)",
    "io_inp": [
      2,
      -4,
      -2,
      2,
      -4,
      -2
    ],
    "io_out": [
      1,
      1,
      -3,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(sort_des(input),23),1),32),1)"
  },
  {
    "input": "input : list = [4, -5, 0, -3, -3]\noutput : list = [-8, -3, -6, -6]",
    "output": "generated_output : list = add_n(drop([4, -5, 0, -3, -3],1),-3)",
    "io_inp": [
      4,
      -5,
      0,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [5, 4, 0, 4, 1, 2]\noutput : list = [0, 1, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 4, 0, 4, 1, 2])",
    "io_inp": [
      5,
      4,
      0,
      4,
      1,
      2
    ],
    "io_out": [
      0,
      1,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, 0, -5]\noutput : list = [-5, 0, 0, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take(sort_des([0, 5, 0, -5]),4))))",
    "io_inp": [
      0,
      5,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-1, 3, -4, 5, -2, 3]\noutput : list = [-3, 5, -9, 9, -5, 5]",
    "output": "generated_output : list = add_n(sub_n(take(add_n(mul_n([-1, 3, -4, 5, -2, 3],2),1),17),4),2)",
    "io_inp": [
      -1,
      3,
      -4,
      5,
      -2,
      3
    ],
    "io_out": [
      -3,
      5,
      -9,
      9,
      -5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(mul_n(input,2),1),17),4),2)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [6, 10]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(add_n([0, -2],5)),2)),2)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(add_n(input,5)),2)),2)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-3, -8]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(sub_n([2, 3],-2),-3),-5),-1),1)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(sub_n(input,-2),-3),-5),-1),1)"
  },
  {
    "input": "input : list = [3, 0, -1, 3, -4, -5]\noutput : list = [-7, -6, -3, -2, 1, 1]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(sort_asc([3, 0, -1, 3, -4, -5]))),-2))",
    "io_inp": [
      3,
      0,
      -1,
      3,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [0, 0, 2]\noutput : list = [-3, -3, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc([0, 0, 2]),-3)),-3))",
    "io_inp": [
      0,
      0,
      2
    ],
    "io_out": [
      -3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc(input),-3)),-3))"
  },
  {
    "input": "input : list = [0, 5, 4, -1, -2, -4]\noutput : list = [5, 4, 0, -1, -2, -4]",
    "output": "generated_output : list = sort_des([0, 5, 4, -1, -2, -4])",
    "io_inp": [
      0,
      5,
      4,
      -1,
      -2,
      -4
    ],
    "io_out": [
      5,
      4,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, -4]\noutput : list = [-8]",
    "output": "generated_output : list = take(take(add_n(take([-4, -3, -4],1),-4),2),35)",
    "io_inp": [
      -4,
      -3,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(input,1),-4),2),35)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(sort_des([-3, 4]),3),-2),4))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(sort_des(input),3),-2),4))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [6, 3]",
    "output": "generated_output : list = take(sort_des(mul_n([1, 2],3)),6)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,3)),6)"
  },
  {
    "input": "input : list = [3, 0, -1, -5, -4]\noutput : list = [-12, 0, 4, 16, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([3, 0, -1, -5, -4]),-4))",
    "io_inp": [
      3,
      0,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -12,
      0,
      4,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(take([-5, -1, 3],1),4))))",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(take(input,1),4))))"
  },
  {
    "input": "input : list = [2, 3, -4, 2]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sub_n(take(drop([2, 3, -4, 2],2),2),1)",
    "io_inp": [
      2,
      3,
      -4,
      2
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,2),2),1)"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(drop([3, -4, -1],1),1),3)))",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(drop(input,1),1),3)))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [0, 15]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n([-2, 1],-1),5)),-5)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(input,-1),5)),-5)"
  },
  {
    "input": "input : list = [1, -2, 4, -5]\noutput : list = [-12, -48]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(drop([1, -2, 4, -5],2),7),-4),-3),4)",
    "io_inp": [
      1,
      -2,
      4,
      -5
    ],
    "io_out": [
      -12,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(drop(input,2),7),-4),-3),4)"
  },
  {
    "input": "input : list = [3, 0, 0]\noutput : list = [-11, -8, -8]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(mul_n([3, 0, 0],-1),7),3)),-5)",
    "io_inp": [
      3,
      0,
      0
    ],
    "io_out": [
      -11,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(mul_n(input,-1),7),3)),-5)"
  },
  {
    "input": "input : list = [-1, -3, 4, -5, -1, 3]\noutput : list = [3, -1, -5, 4, -3, -1]",
    "output": "generated_output : list = reverse([-1, -3, 4, -5, -1, 3])",
    "io_inp": [
      -1,
      -3,
      4,
      -5,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -5,
      4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [9, 16, 7]",
    "output": "generated_output : list = add_n(add_n(add_n([-3, 4, -5],4),5),3)",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      9,
      16,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,4),5),3)"
  },
  {
    "input": "input : list = [3, -1, 4, -1, 3]\noutput : list = [-10, -10, -2, -2, 0]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(mul_n([3, -1, 4, -1, 3],2),5),-3)))",
    "io_inp": [
      3,
      -1,
      4,
      -1,
      3
    ],
    "io_out": [
      -10,
      -10,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(mul_n(input,2),5),-3)))"
  },
  {
    "input": "input : list = [4, 1, 3, 1, 4]\noutput : list = [12, 6, 10, 6, 12]",
    "output": "generated_output : list = add_n(mul_n([4, 1, 3, 1, 4],2),4)",
    "io_inp": [
      4,
      1,
      3,
      1,
      4
    ],
    "io_out": [
      12,
      6,
      10,
      6,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),4)"
  },
  {
    "input": "input : list = [-1, 0, 1, 4, 1]\noutput : list = [5, 2, 2, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(mul_n([-1, 0, 1, 4, 1],1),1))),1)",
    "io_inp": [
      -1,
      0,
      1,
      4,
      1
    ],
    "io_out": [
      5,
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(mul_n(input,1),1))),1)"
  },
  {
    "input": "input : list = [-2, 2, 4]\noutput : list = [-12]",
    "output": "generated_output : list = take(take(sort_asc(mul_n([-2, 2, 4],-3)),1),27)",
    "io_inp": [
      -2,
      2,
      4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(input,-3)),1),27)"
  },
  {
    "input": "input : list = [-1, -1, 0, -4, 4]\noutput : list = [-1, -1, 0, -4, 4]",
    "output": "generated_output : list = add_n(take(add_n([-1, -1, 0, -4, 4],-3),21),3)",
    "io_inp": [
      -1,
      -1,
      0,
      -4,
      4
    ],
    "io_out": [
      -1,
      -1,
      0,
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-3),21),3)"
  },
  {
    "input": "input : list = [-5, -3, -4]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(add_n([-5, -3, -4],2)),17),1))",
    "io_inp": [
      -5,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(add_n(input,2)),17),1))"
  },
  {
    "input": "input : list = [-5, 1, -2, 0]\noutput : list = [12, 6, 2, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(reverse([-5, 1, -2, 0]),-2),2)))",
    "io_inp": [
      -5,
      1,
      -2,
      0
    ],
    "io_out": [
      12,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(reverse(input),-2),2)))"
  },
  {
    "input": "input : list = [0, -1, -1, 0]\noutput : list = [5, 5, 4, 4]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n([0, -1, -1, 0],3),-2)),39)",
    "io_inp": [
      0,
      -1,
      -1,
      0
    ],
    "io_out": [
      5,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(input,3),-2)),39)"
  },
  {
    "input": "input : list = [3, -3, -5, 0]\noutput : list = [-3, -1, 2, 5]",
    "output": "generated_output : list = take(sort_asc(take(add_n(sort_des([3, -3, -5, 0]),2),13)),34)",
    "io_inp": [
      3,
      -3,
      -5,
      0
    ],
    "io_out": [
      -3,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(sort_des(input),2),13)),34)"
  },
  {
    "input": "input : list = [5, -1, 2, -4]\noutput : list = [1, 4, 7, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n([5, -1, 2, -4],4),4)),-5)",
    "io_inp": [
      5,
      -1,
      2,
      -4
    ],
    "io_out": [
      1,
      4,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(input,4),4)),-5)"
  },
  {
    "input": "input : list = [-3, -3, 2, -5]\noutput : list = [-9, -9, 6, -15]",
    "output": "generated_output : list = mul_n([-3, -3, 2, -5],3)",
    "io_inp": [
      -3,
      -3,
      2,
      -5
    ],
    "io_out": [
      -9,
      -9,
      6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, 3, -1, -2, 2]\noutput : list = [-9, 3, 0, -12, -3]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse([0, 3, -1, -2, 2]),14),-3),3)",
    "io_inp": [
      0,
      3,
      -1,
      -2,
      2
    ],
    "io_out": [
      -9,
      3,
      0,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(input),14),-3),3)"
  },
  {
    "input": "input : list = [4, -3, -1, -3, -3, 3]\noutput : list = [-13, -13, -13, -3, 17, 22]",
    "output": "generated_output : list = sort_asc(add_n(take(mul_n(reverse([4, -3, -1, -3, -3, 3]),5),10),2))",
    "io_inp": [
      4,
      -3,
      -1,
      -3,
      -3,
      3
    ],
    "io_out": [
      -13,
      -13,
      -13,
      -3,
      17,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(mul_n(reverse(input),5),10),2))"
  },
  {
    "input": "input : list = [-3, -1, -4, 2, -4, 3]\noutput : list = [0, 2, -1, 5, -1, 6]",
    "output": "generated_output : list = sub_n([-3, -1, -4, 2, -4, 3],-3)",
    "io_inp": [
      -3,
      -1,
      -4,
      2,
      -4,
      3
    ],
    "io_out": [
      0,
      2,
      -1,
      5,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [0, 4, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(take([0, 4, -2],1),-1))))",
    "io_inp": [
      0,
      4,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(take(input,1),-1))))"
  },
  {
    "input": "input : list = [0, -4, -2, 5, -4]\noutput : list = [-16, -16, -6, 4, 29]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(sort_asc([0, -4, -2, 5, -4]),18)),5),4)",
    "io_inp": [
      0,
      -4,
      -2,
      5,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -6,
      4,
      29
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(sort_asc(input),18)),5),4)"
  },
  {
    "input": "input : list = [1, 0, 2, 2]\noutput : list = [1, 0, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(add_n([1, 0, 2, 2],4),-1),-5)))",
    "io_inp": [
      1,
      0,
      2,
      2
    ],
    "io_out": [
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(add_n(input,4),-1),-5)))"
  },
  {
    "input": "input : list = [3, 4, -1, -1, -1, -2]\noutput : list = [10, 7, -5, -5, -5, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(sub_n([3, 4, -1, -1, -1, -2],-1),3),5),48))",
    "io_inp": [
      3,
      4,
      -1,
      -1,
      -1,
      -2
    ],
    "io_out": [
      10,
      7,
      -5,
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(sub_n(input,-1),3),5),48))"
  },
  {
    "input": "input : list = [-2, 2, 4, -2, -1]\noutput : list = [4, 2, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des([-2, 2, 4, -2, -1]))",
    "io_inp": [
      -2,
      2,
      4,
      -2,
      -1
    ],
    "io_out": [
      4,
      2,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -1, 3, -1, 4, 3]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(take([-3, -1, 3, -1, 4, 3],2),-1),-1),4))",
    "io_inp": [
      -3,
      -1,
      3,
      -1,
      4,
      3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(take(input,2),-1),-1),4))"
  },
  {
    "input": "input : list = [-4, -3, 1, 1, 4, -1]\noutput : list = [7, 4, 4, 2, 0]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(drop([-4, -3, 1, 1, 4, -1],1)),4),1),-2)",
    "io_inp": [
      -4,
      -3,
      1,
      1,
      4,
      -1
    ],
    "io_out": [
      7,
      4,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(drop(input,1)),4),1),-2)"
  },
  {
    "input": "input : list = [4, -1, 0, 0, 4]\noutput : list = [8, 8, 0, 0, -2]",
    "output": "generated_output : list = mul_n(sort_des([4, -1, 0, 0, 4]),2)",
    "io_inp": [
      4,
      -1,
      0,
      0,
      4
    ],
    "io_out": [
      8,
      8,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-1, 3, 0, -5]\noutput : list = [-5, -1, 0, 3]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse([-1, 3, 0, -5])))),12)",
    "io_inp": [
      -1,
      3,
      0,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse(input)))),12)"
  },
  {
    "input": "input : list = [-3, 3, -5, -3, -1, -3]\noutput : list = [-8, -2, -10, -8, -6, -8]",
    "output": "generated_output : list = sub_n([-3, 3, -5, -3, -1, -3],5)",
    "io_inp": [
      -3,
      3,
      -5,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -8,
      -2,
      -10,
      -8,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, -3, 2, 1, 5]\noutput : list = [5, 2, 1, -1, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 2, 1, 5])",
    "io_inp": [
      -1,
      -3,
      2,
      1,
      5
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [-25]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(take([-2, 5, 5],1),10),3),5))",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(take(input,1),10),3),5))"
  },
  {
    "input": "input : list = [-1, 3, -3, -4, 0, -5]\noutput : list = [4, -12, 12]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(take([-1, 3, -3, -4, 0, -5],3),-4))),1)",
    "io_inp": [
      -1,
      3,
      -3,
      -4,
      0,
      -5
    ],
    "io_out": [
      4,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(take(input,3),-4))),1)"
  },
  {
    "input": "input : list = [1, -1, -3, -2, 2]\noutput : list = [-6, 6, 9, 3, -3]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(add_n([1, -1, -3, -2, 2],5),1),5)),-3)",
    "io_inp": [
      1,
      -1,
      -3,
      -2,
      2
    ],
    "io_out": [
      -6,
      6,
      9,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(add_n(input,5),1),5)),-3)"
  },
  {
    "input": "input : list = [2, 5, -2, -3, 5]\noutput : list = [-2, -3, 5]",
    "output": "generated_output : list = drop([2, 5, -2, -3, 5],2)",
    "io_inp": [
      2,
      5,
      -2,
      -3,
      5
    ],
    "io_out": [
      -2,
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -2, -5, -5, 3, -2]\noutput : list = [2, 12, -4, -4, 2, 10]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(reverse([2, -2, -5, -5, 3, -2]),3)),2))",
    "io_inp": [
      2,
      -2,
      -5,
      -5,
      3,
      -2
    ],
    "io_out": [
      2,
      12,
      -4,
      -4,
      2,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(reverse(input),3)),2))"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [-3, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_des([-5, -2, -5]))),1))",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-3, -3, -5, 1, 1]\noutput : list = [-12, -12, -8, -8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(sort_des([-3, -3, -5, 1, 1]),4),4)),5)",
    "io_inp": [
      -3,
      -3,
      -5,
      1,
      1
    ],
    "io_out": [
      -12,
      -12,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(sort_des(input),4),4)),5)"
  },
  {
    "input": "input : list = [5, 1, 1, -2, 1, 5]\noutput : list = [-1, -5, -5, -8, -5, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(add_n([5, 1, 1, -2, 1, 5],-1),9)),5))",
    "io_inp": [
      5,
      1,
      1,
      -2,
      1,
      5
    ],
    "io_out": [
      -1,
      -5,
      -5,
      -8,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(add_n(input,-1),9)),5))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-12, -10]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(reverse([-1, -3]),-5),1),-4),32)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -12,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(reverse(input),-5),1),-4),32)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [3, -15]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-1, 5])),-3)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n([-2, -1],2))))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(input,2))))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [7, 17]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(sub_n([-4, 1],-5)),2)),-5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      7,
      17
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(sub_n(input,-5)),2)),-5)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(sort_asc([-2, 0]))),34),2)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(sort_asc(input))),34),2)"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [20, 36, 12]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(sub_n([1, -5, -1],-2),1)),-5),-4)",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      20,
      36,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(sub_n(input,-2),1)),-5),-4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-10, -1]",
    "output": "generated_output : list = take(sort_asc(add_n([-5, 4],-5)),9)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -10,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-5)),9)"
  },
  {
    "input": "input : list = [-1, -4, -1, -4, 4, 2]\noutput : list = [60, 60, 30, 30, 0, -20]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_des(add_n([-1, -4, -1, -4, 4, 2],-2)),-5),2))",
    "io_inp": [
      -1,
      -4,
      -1,
      -4,
      4,
      2
    ],
    "io_out": [
      60,
      60,
      30,
      30,
      0,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_des(add_n(input,-2)),-5),2))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [12, 4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(sort_asc([5, 1]),2),2),2))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(sort_asc(input),2),2),2))"
  },
  {
    "input": "input : list = [5, 3, -2, 1, 1]\noutput : list = [12, 12, -24]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(drop([5, 3, -2, 1, 1],2),-3),2)),-2)",
    "io_inp": [
      5,
      3,
      -2,
      1,
      1
    ],
    "io_out": [
      12,
      12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(drop(input,2),-3),2)),-2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(take(reverse([-2, -3]),13))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),13))"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [-20, 0, 0]",
    "output": "generated_output : list = mul_n([4, 0, 0],-5)",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      -20,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [-12, -2, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(mul_n([2, -2, 0],5),-1)),3))",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      -12,
      -2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(mul_n(input,5),-1)),3))"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(sub_n([0, 0, 1],3),11)),-1))",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(sub_n(input,3),11)),-1))"
  },
  {
    "input": "input : list = [1, 4, 3]\noutput : list = [4, 6]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(drop([1, 4, 3],1),2),10),2))",
    "io_inp": [
      1,
      4,
      3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(drop(input,1),2),10),2))"
  },
  {
    "input": "input : list = [0, -2, -4, 4, -4, 4]\noutput : list = [-9, -9, -7, -5, -1, -1]",
    "output": "generated_output : list = add_n(sort_asc([0, -2, -4, 4, -4, 4]),-5)",
    "io_inp": [
      0,
      -2,
      -4,
      4,
      -4,
      4
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-1, -2, 0, 2, -3]\noutput : list = [-3, -5, -6, -7, -8]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sort_asc([-1, -2, 0, 2, -3]),5))))",
    "io_inp": [
      -1,
      -2,
      0,
      2,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [10, 8]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(mul_n([5, 4],-2),-1))),27)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(mul_n(input,-2),-1))),27)"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 0, -5],1)",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-13, -37, -61]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(mul_n([-1, -3, -5],-3),-4),1)))",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -13,
      -37,
      -61
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(mul_n(input,-3),-4),1)))"
  },
  {
    "input": "input : list = [5, 0, 5, -4]\noutput : list = [5, 5, 0, -4]",
    "output": "generated_output : list = sort_des([5, 0, 5, -4])",
    "io_inp": [
      5,
      0,
      5,
      -4
    ],
    "io_out": [
      5,
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5, -5, -4, -5, 1]\noutput : list = [-3, 17, 17, 13, 17, -7]",
    "output": "generated_output : list = add_n(mul_n([0, -5, -5, -4, -5, 1],-4),-3)",
    "io_inp": [
      0,
      -5,
      -5,
      -4,
      -5,
      1
    ],
    "io_out": [
      -3,
      17,
      17,
      13,
      17,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),-3)"
  },
  {
    "input": "input : list = [3, -1, -5, 5, 0]\noutput : list = [-14, -6, -4, 2, 6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(sort_asc([3, -1, -5, 5, 0]),-2))),2)",
    "io_inp": [
      3,
      -1,
      -5,
      5,
      0
    ],
    "io_out": [
      -14,
      -6,
      -4,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(sort_asc(input),-2))),2)"
  },
  {
    "input": "input : list = [1, 4, -2, -1, -4]\noutput : list = [12, 7, 6, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(drop([1, 4, -2, -1, -4],1)),-5),-3)",
    "io_inp": [
      1,
      4,
      -2,
      -1,
      -4
    ],
    "io_out": [
      12,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(drop(input,1)),-5),-3)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-3, 6]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(mul_n([4, -5],1),-2),16)),9)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(mul_n(input,1),-2),16)),9)"
  },
  {
    "input": "input : list = [-5, 3, 3, 4, -2]\noutput : list = [-40, 20]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(drop([-5, 3, 3, 4, -2],3),-5)),2))",
    "io_inp": [
      -5,
      3,
      3,
      4,
      -2
    ],
    "io_out": [
      -40,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(drop(input,3),-5)),2))"
  },
  {
    "input": "input : list = [4, -1, -1, -4]\noutput : list = [3, -2, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(sort_asc([4, -1, -1, -4]),-1))))",
    "io_inp": [
      4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      3,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [16, 24]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_des([3, 2]),-2),-4)))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      16,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_des(input),-2),-4)))"
  },
  {
    "input": "input : list = [-2, -4, 5, 4, 4, 1]\noutput : list = [-34, -28, -28, -10, 8, 20]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n([-2, -4, 5, 4, 4, 1],3)),-2),4)",
    "io_inp": [
      -2,
      -4,
      5,
      4,
      4,
      1
    ],
    "io_out": [
      -34,
      -28,
      -28,
      -10,
      8,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(input,3)),-2),4)"
  },
  {
    "input": "input : list = [-3, 1, -4, 2]\noutput : list = [-40, -30, 10, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(sort_asc([-3, 1, -4, 2]),-2)),-5))",
    "io_inp": [
      -3,
      1,
      -4,
      2
    ],
    "io_out": [
      -40,
      -30,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(sort_asc(input),-2)),-5))"
  },
  {
    "input": "input : list = [5, -1, 0, -3, 5]\noutput : list = [-2, -2, -7, -8, -10]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n([5, -1, 0, -3, 5],2),1),-4))",
    "io_inp": [
      5,
      -1,
      0,
      -3,
      5
    ],
    "io_out": [
      -2,
      -2,
      -7,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(input,2),1),-4))"
  },
  {
    "input": "input : list = [5, -2, -4, -2, 1, -5]\noutput : list = [1, 3, 10]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(take([5, -2, -4, -2, 1, -5],3)))),5)",
    "io_inp": [
      5,
      -2,
      -4,
      -2,
      1,
      -5
    ],
    "io_out": [
      1,
      3,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(take(input,3)))),5)"
  },
  {
    "input": "input : list = [4, 3, 4, 1, 4, -2]\noutput : list = [-1, -1, -1, -2, -4, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(add_n([4, 3, 4, 1, 4, -2],-5)))))",
    "io_inp": [
      4,
      3,
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sort_asc([-2, 5])))),41)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sort_asc(input)))),41)"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [8, 8, 2]",
    "output": "generated_output : list = add_n([4, 4, -2],4)",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      8,
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, 4, 1]\noutput : list = [0, -6, -24]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n([5, 4, 1],5),-2),-3))",
    "io_inp": [
      5,
      4,
      1
    ],
    "io_out": [
      0,
      -6,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(input,5),-2),-3))"
  },
  {
    "input": "input : list = [4, -2, -2, -2]\noutput : list = [-19]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(take([4, -2, -2, -2],1)),-4)),3)",
    "io_inp": [
      4,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -19
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(take(input,1)),-4)),3)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [5, 1]",
    "output": "generated_output : list = add_n([2, -2],3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, -2, -1, -5]\noutput : list = [6, -1, 0, -4]",
    "output": "generated_output : list = sub_n([5, -2, -1, -5],-1)",
    "io_inp": [
      5,
      -2,
      -1,
      -5
    ],
    "io_out": [
      6,
      -1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 4, -1, 2, 0, 0]\noutput : list = [-6, 1, -4, -1, -3, -3]",
    "output": "generated_output : list = sub_n([-3, 4, -1, 2, 0, 0],3)",
    "io_inp": [
      -3,
      4,
      -1,
      2,
      0,
      0
    ],
    "io_out": [
      -6,
      1,
      -4,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, 4, 0]\noutput : list = [1, 5, 0]",
    "output": "generated_output : list = reverse(sub_n([-1, 4, 0],-1))",
    "io_inp": [
      -1,
      4,
      0
    ],
    "io_out": [
      1,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [0, -1, 0, -5]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sub_n(take(take(take([0, -1, 0, -5],1),8),13),4))",
    "io_inp": [
      0,
      -1,
      0,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(take(input,1),8),13),4))"
  },
  {
    "input": "input : list = [-2, -3, -5]\noutput : list = [5, 7, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(reverse([-2, -3, -5]),-2),-3)),2)",
    "io_inp": [
      -2,
      -3,
      -5
    ],
    "io_out": [
      5,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(reverse(input),-2),-3)),2)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [2, 12]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(sort_des([-5, 5])),-2),5),35)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      2,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(sort_des(input)),-2),5),35)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [12, -6, 12]",
    "output": "generated_output : list = take(mul_n(take(take(reverse([4, -2, 4]),3),16),3),30)",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      12,
      -6,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(reverse(input),3),16),3),30)"
  },
  {
    "input": "input : list = [2, 0, -2, 4]\noutput : list = [16, 8, 0, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse(mul_n([2, 0, -2, 4],4)))))",
    "io_inp": [
      2,
      0,
      -2,
      4
    ],
    "io_out": [
      16,
      8,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-1, -4, 0]\noutput : list = [-11, -8, -7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-1, -4, 0]),3),-4)",
    "io_inp": [
      -1,
      -4,
      0
    ],
    "io_out": [
      -11,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),3),-4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sort_des([-3, -4])))))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, -1, 5, 2]\noutput : list = [-10, -5, 25, 10]",
    "output": "generated_output : list = take(take(mul_n([-2, -1, 5, 2],5),13),13)",
    "io_inp": [
      -2,
      -1,
      5,
      2
    ],
    "io_out": [
      -10,
      -5,
      25,
      10
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,5),13),13)"
  },
  {
    "input": "input : list = [4, -5, -4, 2]\noutput : list = [3, -6, -5, 1]",
    "output": "generated_output : list = add_n(take(sub_n(add_n([4, -5, -4, 2],-3),3),30),5)",
    "io_inp": [
      4,
      -5,
      -4,
      2
    ],
    "io_out": [
      3,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(input,-3),3),30),5)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-15, -25]",
    "output": "generated_output : list = mul_n([3, 5],-5)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 4, -4, 1, -3]\noutput : list = [-4, 1, -3]",
    "output": "generated_output : list = sub_n(sub_n(take(drop([-3, 4, -4, 1, -3],2),21),-5),5)",
    "io_inp": [
      -3,
      4,
      -4,
      1,
      -3
    ],
    "io_out": [
      -4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(drop(input,2),21),-5),5)"
  },
  {
    "input": "input : list = [2, 4, 4, 0]\noutput : list = [0, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([2, 4, 4, 0]))",
    "io_inp": [
      2,
      4,
      4,
      0
    ],
    "io_out": [
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 3, 5, 3]\noutput : list = [2, 8, 10, 8]",
    "output": "generated_output : list = sub_n([-3, 3, 5, 3],-5)",
    "io_inp": [
      -3,
      3,
      5,
      3
    ],
    "io_out": [
      2,
      8,
      10,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, -2, -3]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = sub_n([1, -2, -3],-4)",
    "io_inp": [
      1,
      -2,
      -3
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -3, -1, 4, -2]\noutput : list = [-12, 3, 6, 9, 15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(reverse([-5, -3, -1, 4, -2])))),-3)",
    "io_inp": [
      -5,
      -3,
      -1,
      4,
      -2
    ],
    "io_out": [
      -12,
      3,
      6,
      9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [-2, 4, -4]\noutput : list = [-7, -5, 1]",
    "output": "generated_output : list = add_n(add_n(reverse(take(sort_des([-2, 4, -4]),8)),-4),1)",
    "io_inp": [
      -2,
      4,
      -4
    ],
    "io_out": [
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(sort_des(input),8)),-4),1)"
  },
  {
    "input": "input : list = [5, -3, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = drop([5, -3, 3, 3],2)",
    "io_inp": [
      5,
      -3,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 1, 3, 4, 3]\noutput : list = [-24, -28]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(drop([5, 1, 3, 4, 3],3)),21),3),-4)",
    "io_inp": [
      5,
      1,
      3,
      4,
      3
    ],
    "io_out": [
      -24,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(drop(input,3)),21),3),-4)"
  },
  {
    "input": "input : list = [-3, -5, 1, 1, 3, 4]\noutput : list = [1, 1, 3, 4]",
    "output": "generated_output : list = take(sort_asc(take(drop([-3, -5, 1, 1, 3, 4],2),4)),4)",
    "io_inp": [
      -3,
      -5,
      1,
      1,
      3,
      4
    ],
    "io_out": [
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(drop(input,2),4)),4)"
  },
  {
    "input": "input : list = [3, -4, -2, 0, 1]\noutput : list = [2, 23, 17]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(take([3, -4, -2, 0, 1],3),-3),5),-5),-1)",
    "io_inp": [
      3,
      -4,
      -2,
      0,
      1
    ],
    "io_out": [
      2,
      23,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(take(input,3),-3),5),-5),-1)"
  },
  {
    "input": "input : list = [-1, -1, -1, -4, -2]\noutput : list = [-2, -4, -1, -1, -1]",
    "output": "generated_output : list = reverse([-1, -1, -1, -4, -2])",
    "io_inp": [
      -1,
      -1,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 2, 4, -3, -1, -5]\noutput : list = [4, 2, -1, -3, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(sort_asc([-3, 2, 4, -3, -1, -5]),-5)),5))",
    "io_inp": [
      -3,
      2,
      4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      4,
      2,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(sort_asc(input),-5)),5))"
  },
  {
    "input": "input : list = [-3, -1, 3, 5]\noutput : list = [10, 8]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(drop([-3, -1, 3, 5],2),20)),5))",
    "io_inp": [
      -3,
      -1,
      3,
      5
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(drop(input,2),20)),5))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-6, -7]",
    "output": "generated_output : list = sort_des(sub_n([-3, -4],3))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [-1, 0, 2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(drop([-1, 0, 2, -4],2)),7)))",
    "io_inp": [
      -1,
      0,
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(drop(input,2)),7)))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([-2, -5])),1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),1)"
  },
  {
    "input": "input : list = [-5, -3, 0, 2, 5]\noutput : list = [-6, -4, -1]",
    "output": "generated_output : list = sub_n(sort_asc(take([-5, -3, 0, 2, 5],3)),1)",
    "io_inp": [
      -5,
      -3,
      0,
      2,
      5
    ],
    "io_out": [
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(input,3)),1)"
  },
  {
    "input": "input : list = [4, -5, -5, 5, -3]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(take([4, -5, -5, 5, -3],2)),13)))",
    "io_inp": [
      4,
      -5,
      -5,
      5,
      -3
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(take(input,2)),13)))"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-13]",
    "output": "generated_output : list = add_n(add_n(take([-4, 5, -4],1),-5),-4)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),-5),-4)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [12, -28]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(mul_n([4, -4],-5)),-4),4))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      12,
      -28
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(mul_n(input,-5)),-4),4))"
  },
  {
    "input": "input : list = [4, 4, 1, 1, -2]\noutput : list = [-3, 0, 0, 3, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse([4, 4, 1, 1, -2]))),1)",
    "io_inp": [
      4,
      4,
      1,
      1,
      -2
    ],
    "io_out": [
      -3,
      0,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(input))),1)"
  },
  {
    "input": "input : list = [4, 2, 2, -3, 5, -2]\noutput : list = [5, 4, 2, 2, -2, -3]",
    "output": "generated_output : list = take(sort_des([4, 2, 2, -3, 5, -2]),22)",
    "io_inp": [
      4,
      2,
      2,
      -3,
      5,
      -2
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),22)"
  },
  {
    "input": "input : list = [-5, -1, -2, 1, -1]\noutput : list = [-6, -2, -3, 0, -2]",
    "output": "generated_output : list = add_n([-5, -1, -2, 1, -1],-1)",
    "io_inp": [
      -5,
      -1,
      -2,
      1,
      -1
    ],
    "io_out": [
      -6,
      -2,
      -3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 2, 5, -1, 1]\noutput : list = [9, 6, 5, 3, 0]",
    "output": "generated_output : list = reverse(take(add_n(reverse(sort_des([-4, 2, 5, -1, 1])),4),18))",
    "io_inp": [
      -4,
      2,
      5,
      -1,
      1
    ],
    "io_out": [
      9,
      6,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(sort_des(input)),4),18))"
  },
  {
    "input": "input : list = [-4, -4, -1, -4, -4, 0]\noutput : list = [0, -1, -4, -4, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(sort_asc([-4, -4, -1, -4, -4, 0]),16))))",
    "io_inp": [
      -4,
      -4,
      -1,
      -4,
      -4,
      0
    ],
    "io_out": [
      0,
      -1,
      -4,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(sort_asc(input),16))))"
  },
  {
    "input": "input : list = [5, -2, -2, -3, 1]\noutput : list = [1, -3, -6, -6, -7]",
    "output": "generated_output : list = add_n(take(take(sort_des(mul_n([5, -2, -2, -3, 1],1)),27),21),-4)",
    "io_inp": [
      5,
      -2,
      -2,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(mul_n(input,1)),27),21),-4)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [18, 22]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des([-5, -3]),-2),-4),-2)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      18,
      22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(input),-2),-4),-2)"
  },
  {
    "input": "input : list = [-3, 2, 1, 2]\noutput : list = [2, 1, 2, -3]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(add_n([-3, 2, 1, 2],-2)),1),36),-1)",
    "io_inp": [
      -3,
      2,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(add_n(input,-2)),1),36),-1)"
  },
  {
    "input": "input : list = [5, -5, -1, 5, -2, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(reverse(take(reverse(take([5, -5, -1, 5, -2, 5],2)),35)))",
    "io_inp": [
      5,
      -5,
      -1,
      5,
      -2,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(take(input,2)),35)))"
  },
  {
    "input": "input : list = [0, -5, 2, 4, 1]\noutput : list = [-4, 16]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des(take([0, -5, 2, 4, 1],2)),-4),4),18)",
    "io_inp": [
      0,
      -5,
      2,
      4,
      1
    ],
    "io_out": [
      -4,
      16
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(take(input,2)),-4),4),18)"
  },
  {
    "input": "input : list = [-1, -1, -2, 5, 1, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(take(take(take(add_n([-1, -1, -2, 5, 1, 5],-3),22),7),1))",
    "io_inp": [
      -1,
      -1,
      -2,
      5,
      1,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(add_n(input,-3),22),7),1))"
  },
  {
    "input": "input : list = [-4, 4, 0, -2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(reverse(take([-4, 4, 0, -2],1)))",
    "io_inp": [
      -4,
      4,
      0,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [15, 5, 0]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n([4, 1, 2],5)),-5),36)",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      15,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(input,5)),-5),36)"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 2, 4],1)",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 4, -4, -3, -3, -5]\noutput : list = [-9, -8, -7, -7, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(add_n([2, 4, -4, -3, -3, -5],-4),1),1)))",
    "io_inp": [
      2,
      4,
      -4,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(add_n(input,-4),1),1)))"
  },
  {
    "input": "input : list = [-1, -3, 1, -3, -3]\noutput : list = [0, -2, 2, -2, -2]",
    "output": "generated_output : list = take(add_n([-1, -3, 1, -3, -3],1),14)",
    "io_inp": [
      -1,
      -3,
      1,
      -3,
      -3
    ],
    "io_out": [
      0,
      -2,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),14)"
  },
  {
    "input": "input : list = [2, -3, -5, 5]\noutput : list = [0, 10]",
    "output": "generated_output : list = sub_n(drop([2, -3, -5, 5],2),-5)",
    "io_inp": [
      2,
      -3,
      -5,
      5
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [0, 5, -1, -1, 1, 4]\noutput : list = [1, -5, -5, -3, 0]",
    "output": "generated_output : list = add_n(take(drop([0, 5, -1, -1, 1, 4],1),22),-4)",
    "io_inp": [
      0,
      5,
      -1,
      -1,
      1,
      4
    ],
    "io_out": [
      1,
      -5,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,1),22),-4)"
  },
  {
    "input": "input : list = [5, -4, 3, -5, -5, 1]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(drop([5, -4, 3, -5, -5, 1],2),2),-3)),1)",
    "io_inp": [
      5,
      -4,
      3,
      -5,
      -5,
      1
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(drop(input,2),2),-3)),1)"
  },
  {
    "input": "input : list = [2, -5, 1, -4, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = add_n(reverse(take(add_n(take([2, -5, 1, -4, -4],2),-2),33)),3)",
    "io_inp": [
      2,
      -5,
      1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(take(input,2),-2),33)),3)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-6, -8]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n([1, -1],-2)),10),5)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(input,-2)),10),5)"
  },
  {
    "input": "input : list = [-1, -1, -3, 4, -3, 0]\noutput : list = [3, 3, 7, -7, 7, 1]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(mul_n([-1, -1, -3, 4, -3, 0],-2),-2))),-1)",
    "io_inp": [
      -1,
      -1,
      -3,
      4,
      -3,
      0
    ],
    "io_out": [
      3,
      3,
      7,
      -7,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(mul_n(input,-2),-2))),-1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sub_n([0, 4],1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-1, -7]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc(mul_n([-3, 3],1))),-4))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(mul_n(input,1))),-4))"
  },
  {
    "input": "input : list = [-2, 4, -4, 0, -4]\noutput : list = [-4, 0, -4, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, -4, 0, -4])",
    "io_inp": [
      -2,
      4,
      -4,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      -4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, -2, -2, -2, 4]\noutput : list = [2, -4, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(drop([-4, -3, -2, -2, -2, 4],3),-2)),3),-3)",
    "io_inp": [
      -4,
      -3,
      -2,
      -2,
      -2,
      4
    ],
    "io_out": [
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(drop(input,3),-2)),3),-3)"
  },
  {
    "input": "input : list = [4, 2, -3, 3, 4, 2]\noutput : list = [5, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(take([4, 2, -3, 3, 4, 2],2),21),3),3),-4)",
    "io_inp": [
      4,
      2,
      -3,
      3,
      4,
      2
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(take(input,2),21),3),3),-4)"
  },
  {
    "input": "input : list = [-2, -5, 2, -4, -1, 4]\noutput : list = [-1, -3, -6, -7, -9, -10]",
    "output": "generated_output : list = take(sub_n(sort_des([-2, -5, 2, -4, -1, 4]),5),33)",
    "io_inp": [
      -2,
      -5,
      2,
      -4,
      -1,
      4
    ],
    "io_out": [
      -1,
      -3,
      -6,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),5),33)"
  },
  {
    "input": "input : list = [3, 3, 0, -2, 2, 5]\noutput : list = [2, 3, 3, 5]",
    "output": "generated_output : list = drop(take(sort_asc(sort_asc(reverse([3, 3, 0, -2, 2, 5]))),41),2)",
    "io_inp": [
      3,
      3,
      0,
      -2,
      2,
      5
    ],
    "io_out": [
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(sort_asc(reverse(input))),41),2)"
  },
  {
    "input": "input : list = [5, 4, -5, 1, 2]\noutput : list = [5, 4, 2, 1, -5]",
    "output": "generated_output : list = sort_des([5, 4, -5, 1, 2])",
    "io_inp": [
      5,
      4,
      -5,
      1,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(sort_asc([-2, -2]),4))),41)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(sort_asc(input),4))),41)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [10, 20]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(mul_n([3, 1],-1),-5)),33),-5)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      10,
      20
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(mul_n(input,-1),-5)),33),-5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n([-3, -3],2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = mul_n([4, 2],-1)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 3, 0, 0, 1]\noutput : list = [-4, -2, -2, -1, 1]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sub_n([-2, 3, 0, 0, 1],-3),14),-5),9))",
    "io_inp": [
      -2,
      3,
      0,
      0,
      1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sub_n(input,-3),14),-5),9))"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [-3, -7, -8]",
    "output": "generated_output : list = sort_des(add_n([1, -4, -3],-4))",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [-1, -1, -6]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n([0, 5, 5],5),1),20))",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(input,5),1),20))"
  },
  {
    "input": "input : list = [4, 1, 1, -4, -2]\noutput : list = [-4, -2, 1, 1, 4]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(reverse(add_n([4, 1, 1, -4, -2],-4))),1),4)",
    "io_inp": [
      4,
      1,
      1,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(reverse(add_n(input,-4))),1),4)"
  },
  {
    "input": "input : list = [-2, -4, 3, -3, -5]\noutput : list = [-2, 2]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(drop([-2, -4, 3, -3, -5],3),4),21)),-2)",
    "io_inp": [
      -2,
      -4,
      3,
      -3,
      -5
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(drop(input,3),4),21)),-2)"
  },
  {
    "input": "input : list = [1, 0, 4, -3]\noutput : list = [-2, 0, -8, 6]",
    "output": "generated_output : list = mul_n([1, 0, 4, -3],-2)",
    "io_inp": [
      1,
      0,
      4,
      -3
    ],
    "io_out": [
      -2,
      0,
      -8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 2, 3, 3, -2, 4]\noutput : list = [14, 8, 13, 13, 12, 9]",
    "output": "generated_output : list = add_n(take(add_n(add_n(reverse([-1, 2, 3, 3, -2, 4]),5),4),27),1)",
    "io_inp": [
      -1,
      2,
      3,
      3,
      -2,
      4
    ],
    "io_out": [
      14,
      8,
      13,
      13,
      12,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(reverse(input),5),4),27),1)"
  },
  {
    "input": "input : list = [4, 1, -3, -5, -3]\noutput : list = [4, 2, 4, 8, 11]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(reverse([4, 1, -3, -5, -3]),-3),4),5),-1)",
    "io_inp": [
      4,
      1,
      -3,
      -5,
      -3
    ],
    "io_out": [
      4,
      2,
      4,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(reverse(input),-3),4),5),-1)"
  },
  {
    "input": "input : list = [0, -1, 2]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(reverse([0, -1, 2]),3)),-2))",
    "io_inp": [
      0,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(reverse(input),3)),-2))"
  },
  {
    "input": "input : list = [4, 0, 4, 5]\noutput : list = [-20, -40, -40, -45]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(reverse([4, 0, 4, 5]),-4)),-5))",
    "io_inp": [
      4,
      0,
      4,
      5
    ],
    "io_out": [
      -20,
      -40,
      -40,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(reverse(input),-4)),-5))"
  },
  {
    "input": "input : list = [-4, -3, 2, -4, -3]\noutput : list = [4, -1, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(sort_des([-4, -3, 2, -4, -3]),9)),-2))",
    "io_inp": [
      -4,
      -3,
      2,
      -4,
      -3
    ],
    "io_out": [
      4,
      -1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(sort_des(input),9)),-2))"
  },
  {
    "input": "input : list = [-4, 3, 5, -1, -3, -4]\noutput : list = [-1, -1, 0, 2, 6, 8]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(sub_n([-4, 3, 5, -1, -3, -4],2))),5),49)",
    "io_inp": [
      -4,
      3,
      5,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -1,
      0,
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(sub_n(input,2))),5),49)"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [1, 11, 13]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n([-5, -4, 1],1),4),-2)),-5)",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      1,
      11,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n(input,1),4),-2)),-5)"
  },
  {
    "input": "input : list = [2, -2, 5, 1, -4]\noutput : list = [0, -3, -4, -7, -9]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n([2, -2, 5, 1, -4],5),-5),-5))",
    "io_inp": [
      2,
      -2,
      5,
      1,
      -4
    ],
    "io_out": [
      0,
      -3,
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(input,5),-5),-5))"
  },
  {
    "input": "input : list = [3, 3, 4, -5, -3, -4]\noutput : list = [9, 8, 8, 2, 1]",
    "output": "generated_output : list = add_n(sort_des(take(sub_n(sort_des([3, 3, 4, -5, -3, -4]),-2),5)),3)",
    "io_inp": [
      3,
      3,
      4,
      -5,
      -3,
      -4
    ],
    "io_out": [
      9,
      8,
      8,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sub_n(sort_des(input),-2),5)),3)"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-3, -1, -5]),3),1)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),3),1)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(take(add_n(take(sub_n([0, -4],1),8),-2),21))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(sub_n(input,1),8),-2),21))"
  },
  {
    "input": "input : list = [1, 3, 4, 4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(drop([1, 3, 4, 4],2),-5),-4)),-4)",
    "io_inp": [
      1,
      3,
      4,
      4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(drop(input,2),-5),-4)),-4)"
  },
  {
    "input": "input : list = [3, 2, 3, 4, 3]\noutput : list = [8, 9, 9, 10]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(drop([3, 2, 3, 4, 3],1),-5),1),16))",
    "io_inp": [
      3,
      2,
      3,
      4,
      3
    ],
    "io_out": [
      8,
      9,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(drop(input,1),-5),1),16))"
  },
  {
    "input": "input : list = [-1, -1, 3, 4, -5, 2]\noutput : list = [-1, -2, -3, -6, -6, -10]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(reverse([-1, -1, 3, 4, -5, 2]),5))))",
    "io_inp": [
      -1,
      -1,
      3,
      4,
      -5,
      2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-6, -9]",
    "output": "generated_output : list = mul_n(add_n([0, -1],-2),3)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-3, -1, -3]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(add_n([-3, -1, -3],3))),3))",
    "io_inp": [
      -3,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(add_n(input,3))),3))"
  },
  {
    "input": "input : list = [2, 2, -3, -2, 4]\noutput : list = [-9, -8, -4, -4, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(add_n([2, 2, -3, -2, 4],-4),1),3)))",
    "io_inp": [
      2,
      2,
      -3,
      -2,
      4
    ],
    "io_out": [
      -9,
      -8,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(add_n(input,-4),1),3)))"
  },
  {
    "input": "input : list = [-4, 1, -5, 1]\noutput : list = [-1, 0, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(sort_des([-4, 1, -5, 1])),11)),4)",
    "io_inp": [
      -4,
      1,
      -5,
      1
    ],
    "io_out": [
      -1,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(sort_des(input)),11)),4)"
  },
  {
    "input": "input : list = [-5, 1, -3, -5, -4, -1]\noutput : list = [-12, 0, 6]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n(take([-5, 1, -3, -5, -4, -1],3),3)),33),-3)",
    "io_inp": [
      -5,
      1,
      -3,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -12,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(take(input,3),3)),33),-3)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des([-3, 0])",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -3, 5, 3, -3]\noutput : list = [-5, -3, 1, 2, 3, 3]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(add_n([-2, -1, -3, 5, 3, -3],-3),3))),-1)",
    "io_inp": [
      -2,
      -1,
      -3,
      5,
      3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(add_n(input,-3),3))),-1)"
  },
  {
    "input": "input : list = [1, 5, 4, -4, 1]\noutput : list = [-25, -20, -5, -5, 20]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(mul_n([1, 5, 4, -4, 1],-5)))))",
    "io_inp": [
      1,
      5,
      4,
      -4,
      1
    ],
    "io_out": [
      -25,
      -20,
      -5,
      -5,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [2, 3, 5, -3, -3]\noutput : list = [7, 8, 10, 2, 2]",
    "output": "generated_output : list = take(add_n([2, 3, 5, -3, -3],5),10)",
    "io_inp": [
      2,
      3,
      5,
      -3,
      -3
    ],
    "io_out": [
      7,
      8,
      10,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),10)"
  },
  {
    "input": "input : list = [0, -1, 4, -5, -4]\noutput : list = [16, 20, -16, 4, 0]",
    "output": "generated_output : list = mul_n(reverse([0, -1, 4, -5, -4]),-4)",
    "io_inp": [
      0,
      -1,
      4,
      -5,
      -4
    ],
    "io_out": [
      16,
      20,
      -16,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [4, -5, -4]\noutput : list = [-4, -5, 4]",
    "output": "generated_output : list = take(reverse(add_n(add_n(add_n([4, -5, -4],1),1),-2)),24)",
    "io_inp": [
      4,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(add_n(input,1),1),-2)),24)"
  },
  {
    "input": "input : list = [5, -1, 1, -2]\noutput : list = [2, -2, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des([5, -1, 1, -2]))),3)",
    "io_inp": [
      5,
      -1,
      1,
      -2
    ],
    "io_out": [
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(input))),3)"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [-14, -8, 4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(mul_n([2, -2, -4],3),1))),-3)",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      -14,
      -8,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(mul_n(input,3),1))),-3)"
  },
  {
    "input": "input : list = [4, -4, 2, -5, -3, 2]\noutput : list = [-16, 16, -8, 20, 12, -8]",
    "output": "generated_output : list = mul_n(mul_n([4, -4, 2, -5, -3, 2],-2),2)",
    "io_inp": [
      4,
      -4,
      2,
      -5,
      -3,
      2
    ],
    "io_out": [
      -16,
      16,
      -8,
      20,
      12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),2)"
  },
  {
    "input": "input : list = [-5, -5, -1, -3, -5]\noutput : list = [-10, -30, -50, -50, -50]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(sort_asc([-5, -5, -1, -3, -5]),6),-2)),-5)",
    "io_inp": [
      -5,
      -5,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -30,
      -50,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(sort_asc(input),6),-2)),-5)"
  },
  {
    "input": "input : list = [2, -5, -3, -1]\noutput : list = [-5, -3, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([2, -5, -3, -1]))",
    "io_inp": [
      2,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -3, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = drop([-1, -3, -3, 3],2)",
    "io_inp": [
      -1,
      -3,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [9, -36]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(sub_n([5, -4],-2),3),-5),1))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      9,
      -36
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(sub_n(input,-2),3),-5),1))"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = sort_asc([2, -2, -3])",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, 4, -1, 1]\noutput : list = [-4, 4, 16, 20, 20]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(sort_asc([5, 5, 4, -1, 1]),9),2)),2)",
    "io_inp": [
      5,
      5,
      4,
      -1,
      1
    ],
    "io_out": [
      -4,
      4,
      16,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(sort_asc(input),9),2)),2)"
  },
  {
    "input": "input : list = [1, 1, -2, 4, -3, 0]\noutput : list = [120, 30, 30, 0, -60, -90]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_des([1, 1, -2, 4, -3, 0]),-2),3)),-5)",
    "io_inp": [
      1,
      1,
      -2,
      4,
      -3,
      0
    ],
    "io_out": [
      120,
      30,
      30,
      0,
      -60,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_des(input),-2),3)),-5)"
  },
  {
    "input": "input : list = [3, -4, -4, -4, -1, -4]\noutput : list = [1, -3, -6, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(sort_asc([3, -4, -4, -4, -1, -4]))),2),4)",
    "io_inp": [
      3,
      -4,
      -4,
      -4,
      -1,
      -4
    ],
    "io_out": [
      1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(sort_asc(input))),2),4)"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [-20, 16, -16]",
    "output": "generated_output : list = add_n(sub_n(take(take(mul_n([5, -4, 4],-4),5),16),-4),-4)",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      -20,
      16,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(mul_n(input,-4),5),16),-4),-4)"
  },
  {
    "input": "input : list = [2, -5, -1, -5, 0]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(drop([2, -5, -1, -5, 0],2),-1)),5))",
    "io_inp": [
      2,
      -5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(drop(input,2),-1)),5))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-250, -125]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(sub_n([4, -1],4)),5),5),5)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -250,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(sub_n(input,4)),5),5),5)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(reverse([1, -2])))),-1)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-1, 2, 5]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 2, 5],1)",
    "io_inp": [
      -1,
      2,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 0, 0, 3, -3, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(drop([-4, 0, 0, 3, -3, -3],4)),3)))",
    "io_inp": [
      -4,
      0,
      0,
      3,
      -3,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(drop(input,4)),3)))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = take(add_n(add_n(add_n(sort_asc([-2, 4]),3),-2),-3),3)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(sort_asc(input),3),-2),-3),3)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(sort_des([-5, 2])))),3)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [4, -5, -3, 1]\noutput : list = [-10, -6, 2, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(sort_asc([4, -5, -3, 1]),2)),1))",
    "io_inp": [
      4,
      -5,
      -3,
      1
    ],
    "io_out": [
      -10,
      -6,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(sort_asc(input),2)),1))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, 20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([4, -4],3),3),-2)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,3),3),-2)"
  },
  {
    "input": "input : list = [-2, -4, 5, -1, 2]\noutput : list = [-14, -8, -20]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(drop([-2, -4, 5, -1, 2],2),-1),-5),2))",
    "io_inp": [
      -2,
      -4,
      5,
      -1,
      2
    ],
    "io_out": [
      -14,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(drop(input,2),-1),-5),2))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse([1, 3])",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, -1, -4, 5]\noutput : list = [0, -3, -6, 3]",
    "output": "generated_output : list = add_n(take(take(drop([0, 2, -1, -4, 5],1),6),11),-2)",
    "io_inp": [
      0,
      2,
      -1,
      -4,
      5
    ],
    "io_out": [
      0,
      -3,
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(input,1),6),11),-2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(reverse(add_n(reverse(mul_n([1, 0],-4)),3)),13)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(mul_n(input,-4)),3)),13)"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [0, -2, -6]",
    "output": "generated_output : list = reverse(add_n([-4, 0, 2],-2))",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [1, 5, -4, -1, -4]\noutput : list = [13, 9, 7, 4, 4]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(add_n([1, 5, -4, -1, -4],3),-5))),46)",
    "io_inp": [
      1,
      5,
      -4,
      -1,
      -4
    ],
    "io_out": [
      13,
      9,
      7,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(add_n(input,3),-5))),46)"
  },
  {
    "input": "input : list = [3, -5, -4, 1, 2, 2]\noutput : list = [-8, -6, 4, 6, 6, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(add_n([3, -5, -4, 1, 2, 2],-1),2)),24),-4)",
    "io_inp": [
      3,
      -5,
      -4,
      1,
      2,
      2
    ],
    "io_out": [
      -8,
      -6,
      4,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(add_n(input,-1),2)),24),-4)"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [25]",
    "output": "generated_output : list = take(take(take(mul_n(mul_n([-5, 1, -2],1),-5),4),35),1)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(mul_n(input,1),-5),4),35),1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(sort_des([4, -1]))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -3, 2, 5]\noutput : list = [-4, -4, 1, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(reverse([-3, -3, 2, 5]),-2)),3))",
    "io_inp": [
      -3,
      -3,
      2,
      5
    ],
    "io_out": [
      -4,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(reverse(input),-2)),3))"
  },
  {
    "input": "input : list = [-2, -5, 1, 3, 1, -1]\noutput : list = [-15, -5, -5, 5, 10, 25]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_des([-2, -5, 1, 3, 1, -1])))),-5)",
    "io_inp": [
      -2,
      -5,
      1,
      3,
      1,
      -1
    ],
    "io_out": [
      -15,
      -5,
      -5,
      5,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [-5, 2, -5, -3, -1, 4]\noutput : list = [5, 3, 0, -2, -4, -4]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(reverse([-5, 2, -5, -3, -1, 4]),20),2),1))",
    "io_inp": [
      -5,
      2,
      -5,
      -3,
      -1,
      4
    ],
    "io_out": [
      5,
      3,
      0,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(reverse(input),20),2),1))"
  },
  {
    "input": "input : list = [-1, 5, 2, 0, 3, -2]\noutput : list = [9, 7, 6, 4, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(add_n([-1, 5, 2, 0, 3, -2],3),23),3)),4)",
    "io_inp": [
      -1,
      5,
      2,
      0,
      3,
      -2
    ],
    "io_out": [
      9,
      7,
      6,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(add_n(input,3),23),3)),4)"
  },
  {
    "input": "input : list = [2, 0, 0, 1, 5]\noutput : list = [2, 0]",
    "output": "generated_output : list = take([2, 0, 0, 1, 5],2)",
    "io_inp": [
      2,
      0,
      0,
      1,
      5
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-1, 3, 4]))",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -1, 4, -2]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, -1, 4, -2],1))",
    "io_inp": [
      -5,
      -1,
      4,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-1, -3, -5, -3, 4]\noutput : list = [-20, -12, -12, -4, 16]",
    "output": "generated_output : list = mul_n(sort_asc([-1, -3, -5, -3, 4]),4)",
    "io_inp": [
      -1,
      -3,
      -5,
      -3,
      4
    ],
    "io_out": [
      -20,
      -12,
      -12,
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse([0, 2])",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(reverse([4, -5]))),-1))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [1, 0]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-4, -5],5)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,5)))"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [-5, -4, -1]",
    "output": "generated_output : list = take(take(add_n(sort_asc(sub_n([0, -1, 3],1)),-3),18),26)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(sub_n(input,1)),-3),18),26)"
  },
  {
    "input": "input : list = [-1, 2, -3, -1]\noutput : list = [6, 1, 3]",
    "output": "generated_output : list = add_n(drop(add_n([-1, 2, -3, -1],3),1),1)",
    "io_inp": [
      -1,
      2,
      -3,
      -1
    ],
    "io_out": [
      6,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(input,3),1),1)"
  },
  {
    "input": "input : list = [-3, 0, 2, 4, 3, -1]\noutput : list = [11, 10, 9, 7, 6, 4]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n([-3, 0, 2, 4, 3, -1],-4))),3)",
    "io_inp": [
      -3,
      0,
      2,
      4,
      3,
      -1
    ],
    "io_out": [
      11,
      10,
      9,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(input,-4))),3)"
  },
  {
    "input": "input : list = [2, -4, 0, 2, 5]\noutput : list = [-7, -3, -1, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(add_n([2, -4, 0, 2, 5],-3)))))",
    "io_inp": [
      2,
      -4,
      0,
      2,
      5
    ],
    "io_out": [
      -7,
      -3,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [3, 4, -1, 5, 1, 2]\noutput : list = [-1, 5, 1, 2]",
    "output": "generated_output : list = drop([3, 4, -1, 5, 1, 2],2)",
    "io_inp": [
      3,
      4,
      -1,
      5,
      1,
      2
    ],
    "io_out": [
      -1,
      5,
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 0, 0, -4, -2, 1]\noutput : list = [-16, -16, -8, 0, 0, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(mul_n([-4, 0, 0, -4, -2, 1],-4),-1))))",
    "io_inp": [
      -4,
      0,
      0,
      -4,
      -2,
      1
    ],
    "io_out": [
      -16,
      -16,
      -8,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(mul_n(input,-4),-1))))"
  },
  {
    "input": "input : list = [-3, -5, 2, -3]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = take(take(sort_des(drop([-3, -5, 2, -3],1)),6),35)",
    "io_inp": [
      -3,
      -5,
      2,
      -3
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(drop(input,1)),6),35)"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 1, 1],1)",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [8, -20, -24]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(add_n([-3, -4, 4],-2)),4),19))",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      8,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(add_n(input,-2)),4),19))"
  },
  {
    "input": "input : list = [2, -1, 5, 3]\noutput : list = [8, 10, 4]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(drop([2, -1, 5, 3],1),-1)),1),5)",
    "io_inp": [
      2,
      -1,
      5,
      3
    ],
    "io_out": [
      8,
      10,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(drop(input,1),-1)),1),5)"
  },
  {
    "input": "input : list = [-2, -5, -2, 4, 2]\noutput : list = [13, 11, 7, 7, 4]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(sort_asc([-2, -5, -2, 4, 2])),5),4))",
    "io_inp": [
      -2,
      -5,
      -2,
      4,
      2
    ],
    "io_out": [
      13,
      11,
      7,
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(sort_asc(input)),5),4))"
  },
  {
    "input": "input : list = [-1, -2, -2, -4]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(add_n(take([-1, -2, -2, -4],2),3))",
    "io_inp": [
      -1,
      -2,
      -2,
      -4
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(input,2),3))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = reverse(sort_des([-4, 5]))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, -4, -5, -4, 2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = reverse(sort_des(drop([5, -4, -5, -4, 2, -4],4)))",
    "io_inp": [
      5,
      -4,
      -5,
      -4,
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,4)))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, -7]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(add_n([-5, 2],-2)))))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [1, 4, 2, 2]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n(take(take(sort_asc([1, 4, 2, 2]),1),6),-1),7)",
    "io_inp": [
      1,
      4,
      2,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(sort_asc(input),1),6),-1),7)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [50, 125]",
    "output": "generated_output : list = mul_n(mul_n([2, 5],-5),-5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      50,
      125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-5)"
  },
  {
    "input": "input : list = [-5, 2, -3, -3]\noutput : list = [1, 16, 16, 22]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sub_n([-5, 2, -3, -3],4)),-3)),5)",
    "io_inp": [
      -5,
      2,
      -3,
      -3
    ],
    "io_out": [
      1,
      16,
      16,
      22
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sub_n(input,4)),-3)),5)"
  },
  {
    "input": "input : list = [1, 1, -2, 4, 5, -3]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(take([1, 1, -2, 4, 5, -3],1),-4),30)),-4)",
    "io_inp": [
      1,
      1,
      -2,
      4,
      5,
      -3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(take(input,1),-4),30)),-4)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [0, 25]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(reverse([-1, 4]),1),5)))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      0,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(reverse(input),1),5)))"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-1, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des([-5, 1, -3]),2)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-5, 4, 1, 4, 5]\noutput : list = [20, -4, -16, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(sort_des([-5, 4, 1, 4, 5])),7),-4))",
    "io_inp": [
      -5,
      4,
      1,
      4,
      5
    ],
    "io_out": [
      20,
      -4,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(sort_des(input)),7),-4))"
  },
  {
    "input": "input : list = [-3, -1, -4, -5, -1, -1]\noutput : list = [12, 8, 14, 16, 8, 8]",
    "output": "generated_output : list = add_n(mul_n(add_n([-3, -1, -4, -5, -1, -1],-2),-2),2)",
    "io_inp": [
      -3,
      -1,
      -4,
      -5,
      -1,
      -1
    ],
    "io_out": [
      12,
      8,
      14,
      16,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-2),-2),2)"
  },
  {
    "input": "input : list = [-2, 2, 3, -2, -4, 3]\noutput : list = [-4, -2, -2, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([-2, 2, 3, -2, -4, 3])",
    "io_inp": [
      -2,
      2,
      3,
      -2,
      -4,
      3
    ],
    "io_out": [
      -4,
      -2,
      -2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des([1, -1])",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4, 2, -5, -5]\noutput : list = [6, 9]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(take([-3, -4, 2, -5, -5],2),-1)),-3))",
    "io_inp": [
      -3,
      -4,
      2,
      -5,
      -5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(take(input,2),-1)),-3))"
  },
  {
    "input": "input : list = [-2, -5, -4, -3]\noutput : list = [25]",
    "output": "generated_output : list = mul_n(sub_n(take([-2, -5, -4, -3],1),3),-5)",
    "io_inp": [
      -2,
      -5,
      -4,
      -3
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),3),-5)"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [0, 6, 12]",
    "output": "generated_output : list = mul_n([0, 2, 4],3)",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      0,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 1, -1, -5, 1]\noutput : list = [-11, -11, -1, 14, 19]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_asc([-4, 1, -1, -5, 1])),-5),-2),-4)",
    "io_inp": [
      -4,
      1,
      -1,
      -5,
      1
    ],
    "io_out": [
      -11,
      -11,
      -1,
      14,
      19
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_asc(input)),-5),-2),-4)"
  },
  {
    "input": "input : list = [-5, -4, -5]\noutput : list = [4, 5, 5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-5, -4, -5])),-1)",
    "io_inp": [
      -5,
      -4,
      -5
    ],
    "io_out": [
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [0, -1, 3, -4]\noutput : list = [-11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(take([0, -1, 3, -4],1),5),2),-4))",
    "io_inp": [
      0,
      -1,
      3,
      -4
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(take(input,1),5),2),-4))"
  },
  {
    "input": "input : list = [-3, 4, 2, 4]\noutput : list = [-30, 20, 40, 40]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(reverse([-3, 4, 2, 4]),-5))),-2)",
    "io_inp": [
      -3,
      4,
      2,
      4
    ],
    "io_out": [
      -30,
      20,
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(reverse(input),-5))),-2)"
  },
  {
    "input": "input : list = [-4, -2, -4]\noutput : list = [-10, -10, -8]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(reverse([-4, -2, -4]),2),12),4))",
    "io_inp": [
      -4,
      -2,
      -4
    ],
    "io_out": [
      -10,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(reverse(input),2),12),4))"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = sort_des([-2, 1, 2])",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-4, -6, -3]",
    "output": "generated_output : list = add_n(take(sub_n([-3, -5, -2],-1),9),-2)",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-1),9),-2)"
  },
  {
    "input": "input : list = [3, 0, -5, -5, -5]\noutput : list = [35, 5, -45, -45, -45]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n([3, 0, -5, -5, -5],2),-5),-1),-5))",
    "io_inp": [
      3,
      0,
      -5,
      -5,
      -5
    ],
    "io_out": [
      35,
      5,
      -45,
      -45,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n(input,2),-5),-1),-5))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc([-2, -5])",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5, 5, -2, 4]\noutput : list = [15, 8, 14]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(drop([4, -5, 5, -2, 4],2),-4),3),13),-3)",
    "io_inp": [
      4,
      -5,
      5,
      -2,
      4
    ],
    "io_out": [
      15,
      8,
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(drop(input,2),-4),3),13),-3)"
  },
  {
    "input": "input : list = [-5, -1, -2, 1, -4]\noutput : list = [2, 0, -1, -3, -4]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sort_des([-5, -1, -2, 1, -4])),-4)),-3)",
    "io_inp": [
      -5,
      -1,
      -2,
      1,
      -4
    ],
    "io_out": [
      2,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sort_des(input)),-4)),-3)"
  },
  {
    "input": "input : list = [5, 3, -1, -4, -5, 1]\noutput : list = [5, 3, -1, -4, -5, 1]",
    "output": "generated_output : list = reverse(reverse([5, 3, -1, -4, -5, 1]))",
    "io_inp": [
      5,
      3,
      -1,
      -4,
      -5,
      1
    ],
    "io_out": [
      5,
      3,
      -1,
      -4,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_asc([1, 1])),-4)))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [4, -2, -1, -2, 1]\noutput : list = [9, 6, 4]",
    "output": "generated_output : list = reverse(mul_n(add_n(drop(sort_asc([4, -2, -1, -2, 1]),2),5),1))",
    "io_inp": [
      4,
      -2,
      -1,
      -2,
      1
    ],
    "io_out": [
      9,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(drop(sort_asc(input),2),5),1))"
  },
  {
    "input": "input : list = [-4, -1, 0, -1]\noutput : list = [6, 6, 24]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(sort_asc([-4, -1, 0, -1]),3)),-3),2)",
    "io_inp": [
      -4,
      -1,
      0,
      -1
    ],
    "io_out": [
      6,
      6,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(sort_asc(input),3)),-3),2)"
  },
  {
    "input": "input : list = [3, 4, 4, -5]\noutput : list = [-5, 4, 4, 3]",
    "output": "generated_output : list = reverse([3, 4, 4, -5])",
    "io_inp": [
      3,
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -4, 0, 0]\noutput : list = [-9, -8, -4, -4]",
    "output": "generated_output : list = add_n(sort_asc([-5, -4, 0, 0]),-4)",
    "io_inp": [
      -5,
      -4,
      0,
      0
    ],
    "io_out": [
      -9,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-4, 0, 5, -4]\noutput : list = [22, -5, 10, 22]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse([-4, 0, 5, -4]),-3),5),5)",
    "io_inp": [
      -4,
      0,
      5,
      -4
    ],
    "io_out": [
      22,
      -5,
      10,
      22
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(input),-3),5),5)"
  },
  {
    "input": "input : list = [4, -2, -2, 3, 4, 0]\noutput : list = [23, -7, -7, 18, 23, 3]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n([4, -2, -2, 3, 4, 0],5)),3))",
    "io_inp": [
      4,
      -2,
      -2,
      3,
      4,
      0
    ],
    "io_out": [
      23,
      -7,
      -7,
      18,
      23,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(input,5)),3))"
  },
  {
    "input": "input : list = [-1, 5, 2, 2, -3]\noutput : list = [0, -24, -12, -12, 8]",
    "output": "generated_output : list = mul_n(sub_n([-1, 5, 2, 2, -3],-1),-4)",
    "io_inp": [
      -1,
      5,
      2,
      2,
      -3
    ],
    "io_out": [
      0,
      -24,
      -12,
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-4)"
  },
  {
    "input": "input : list = [-4, 0, 4, 5]\noutput : list = [-11, -7, -3, -2]",
    "output": "generated_output : list = sub_n(sub_n([-4, 0, 4, 5],5),2)",
    "io_inp": [
      -4,
      0,
      4,
      5
    ],
    "io_out": [
      -11,
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),2)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [5, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(sort_des([-2, -5, 5])))))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, 3, 0]\noutput : list = [9, 9, 6]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(reverse([3, 3, 0]),-5),3)),2)",
    "io_inp": [
      3,
      3,
      0
    ],
    "io_out": [
      9,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(reverse(input),-5),3)),2)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(sub_n([0, -5],1),5))),-2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(sub_n(input,1),5))),-2)"
  },
  {
    "input": "input : list = [-3, 1, -2, -2, 0, -4]\noutput : list = [-16, 0, -8, -8, 4, -12]",
    "output": "generated_output : list = reverse(take(take(mul_n(mul_n([-3, 1, -2, -2, 0, -4],1),4),16),18))",
    "io_inp": [
      -3,
      1,
      -2,
      -2,
      0,
      -4
    ],
    "io_out": [
      -16,
      0,
      -8,
      -8,
      4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(mul_n(input,1),4),16),18))"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [-9, -12, -12]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n(sub_n([-4, -4, -1],2),-3)),38),3)",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(sub_n(input,2),-3)),38),3)"
  },
  {
    "input": "input : list = [2, 4, 4, 2, 1]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = sort_des(drop([2, 4, 4, 2, 1],2))",
    "io_inp": [
      2,
      4,
      4,
      2,
      1
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(sort_asc(drop([1, 2, 5],1)),22)",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,1)),22)"
  },
  {
    "input": "input : list = [-1, 2, -2, 1]\noutput : list = [20, 16, 8, 4]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(add_n([-1, 2, -2, 1],-3),-4),15)))",
    "io_inp": [
      -1,
      2,
      -2,
      1
    ],
    "io_out": [
      20,
      16,
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(add_n(input,-3),-4),15)))"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [-2, -9, -10]",
    "output": "generated_output : list = sort_des(sub_n([3, -4, -5],5))",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [3, -4, -3, 3]\noutput : list = [9, 3, 2, 9]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n([3, -4, -3, 3],3)),2),-1)",
    "io_inp": [
      3,
      -4,
      -3,
      3
    ],
    "io_out": [
      9,
      3,
      2,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(input,3)),2),-1)"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [7, 6, 1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse([2, 3, -3]))),4)",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(input))),4)"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [10, 6, 11]",
    "output": "generated_output : list = add_n(add_n(take(add_n(add_n([0, -4, 1],5),-1),5),3),3)",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      10,
      6,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(add_n(input,5),-1),5),3),3)"
  },
  {
    "input": "input : list = [3, 0, 3, 5, 1]\noutput : list = [2, 6, 4, 1, 4]",
    "output": "generated_output : list = reverse(sub_n([3, 0, 3, 5, 1],-1))",
    "io_inp": [
      3,
      0,
      3,
      5,
      1
    ],
    "io_out": [
      2,
      6,
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-1, 0, 3, 4, -3, -2]\noutput : list = [-7, -6, -5, -4, -1, 0]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(sort_asc([-1, 0, 3, 4, -3, -2]),3),23),-3),4)",
    "io_inp": [
      -1,
      0,
      3,
      4,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(sort_asc(input),3),23),-3),4)"
  },
  {
    "input": "input : list = [-5, -2, -3, 2, 2]\noutput : list = [14, 14, 9, 10, 7]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(reverse([-5, -2, -3, 2, 2]),-3),23),5),4)",
    "io_inp": [
      -5,
      -2,
      -3,
      2,
      2
    ],
    "io_out": [
      14,
      14,
      9,
      10,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(reverse(input),-3),23),5),4)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [4, 10]",
    "output": "generated_output : list = sub_n(sub_n(add_n([-5, 1],2),-3),-4)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,2),-3),-4)"
  },
  {
    "input": "input : list = [-1, 5, -5, 1, 2, -1]\noutput : list = [27, 18, 15, 9, 9, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(sub_n([-1, 5, -5, 1, 2, -1],-4),6)),3))",
    "io_inp": [
      -1,
      5,
      -5,
      1,
      2,
      -1
    ],
    "io_out": [
      27,
      18,
      15,
      9,
      9,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(sub_n(input,-4),6)),3))"
  },
  {
    "input": "input : list = [-1, 2, -1, 1]\noutput : list = [1, -1, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, -1, 1])",
    "io_inp": [
      -1,
      2,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -3, 3]\noutput : list = [-9, 0, 9]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(sort_asc([0, -3, 3])))),3)",
    "io_inp": [
      0,
      -3,
      3
    ],
    "io_out": [
      -9,
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [-4, -1, 0, 0, 0]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = take([-4, -1, 0, 0, 0],3)",
    "io_inp": [
      -4,
      -1,
      0,
      0,
      0
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, 2, 3, 4]\noutput : list = [8, 10, 12, 14]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sort_des([5, 2, 3, 4]),-5),-3)),2)",
    "io_inp": [
      5,
      2,
      3,
      4
    ],
    "io_out": [
      8,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sort_des(input),-5),-3)),2)"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [-7, -4, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_des([-1, 5, 2]),14),4)),2)",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_des(input),14),4)),2)"
  },
  {
    "input": "input : list = [-3, 5, -5, -3]\noutput : list = [5, -3, -3, -5]",
    "output": "generated_output : list = sort_des([-3, 5, -5, -3])",
    "io_inp": [
      -3,
      5,
      -5,
      -3
    ],
    "io_out": [
      5,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, -3, 5, 5]\noutput : list = [8, 8, 0, -1, -1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n([-4, -4, -3, 5, 5],2)),5))",
    "io_inp": [
      -4,
      -4,
      -3,
      5,
      5
    ],
    "io_out": [
      8,
      8,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(input,2)),5))"
  },
  {
    "input": "input : list = [0, -4, -2, 5, 2, 5]\noutput : list = [-29, -29, -14, -4, 6, 16]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(mul_n([0, -4, -2, 5, 2, 5],-1)),5),-4))",
    "io_inp": [
      0,
      -4,
      -2,
      5,
      2,
      5
    ],
    "io_out": [
      -29,
      -29,
      -14,
      -4,
      6,
      16
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(mul_n(input,-1)),5),-4))"
  },
  {
    "input": "input : list = [2, -1, -3, -5, 4, -2]\noutput : list = [2, 0, -3, -4, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des([2, -1, -3, -5, 4, -2]),2)",
    "io_inp": [
      2,
      -1,
      -3,
      -5,
      4,
      -2
    ],
    "io_out": [
      2,
      0,
      -3,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [3, 4, -2, 4, 5]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_des(reverse(add_n(take([3, 4, -2, 4, 5],1),-2))),50)",
    "io_inp": [
      3,
      4,
      -2,
      4,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(add_n(take(input,1),-2))),50)"
  },
  {
    "input": "input : list = [1, -5, 4, -4, 2]\noutput : list = [4, 2, 1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(add_n([1, -5, 4, -4, 2],5),-5),16)))",
    "io_inp": [
      1,
      -5,
      4,
      -4,
      2
    ],
    "io_out": [
      4,
      2,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(add_n(input,5),-5),16)))"
  },
  {
    "input": "input : list = [1, 2, -5, -1, 2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(add_n(take([1, 2, -5, -1, 2],2),-4))",
    "io_inp": [
      1,
      2,
      -5,
      -1,
      2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,2),-4))"
  },
  {
    "input": "input : list = [3, -3, -3, 2]\noutput : list = [0, -1, -6, -6]",
    "output": "generated_output : list = sub_n(sub_n(take(take(sort_des([3, -3, -3, 2]),11),24),4),-1)",
    "io_inp": [
      3,
      -3,
      -3,
      2
    ],
    "io_out": [
      0,
      -1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(sort_des(input),11),24),4),-1)"
  },
  {
    "input": "input : list = [4, 2, 5, 2]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 2, 5, 2],1)",
    "io_inp": [
      4,
      2,
      5,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -5, -4, -3, -2]\noutput : list = [-8, -10, -9, -8, -7]",
    "output": "generated_output : list = sub_n([-3, -5, -4, -3, -2],5)",
    "io_inp": [
      -3,
      -5,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -8,
      -10,
      -9,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [6, 9]",
    "output": "generated_output : list = sub_n([2, 5],-4)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 1, 0, 5, 2]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take(take([-1, 1, 0, 5, 2],3),13),-1),2))",
    "io_inp": [
      -1,
      1,
      0,
      5,
      2
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(take(input,3),13),-1),2))"
  },
  {
    "input": "input : list = [5, 2, 3, 5, 1, 4]\noutput : list = [1, -2, -1, 1, -3, 0]",
    "output": "generated_output : list = add_n([5, 2, 3, 5, 1, 4],-4)",
    "io_inp": [
      5,
      2,
      3,
      5,
      1,
      4
    ],
    "io_out": [
      1,
      -2,
      -1,
      1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -1, 5, 0]\noutput : list = [-1, 5, 0]",
    "output": "generated_output : list = drop([-2, -1, 5, 0],1)",
    "io_inp": [
      -2,
      -1,
      5,
      0
    ],
    "io_out": [
      -1,
      5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sort_asc([3, 5])))))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, 5, 0, -4]\noutput : list = [1]",
    "output": "generated_output : list = take(take([1, 5, 0, -4],1),7)",
    "io_inp": [
      1,
      5,
      0,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(input,1),7)"
  },
  {
    "input": "input : list = [-1, -3, 1, -5, 2]\noutput : list = [4, 2, -2, -6, -10]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(mul_n([-1, -3, 1, -5, 2],2)))))",
    "io_inp": [
      -1,
      -3,
      1,
      -5,
      2
    ],
    "io_out": [
      4,
      2,
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [3, 1, 5, 1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(drop([3, 1, 5, 1],2),5),11)),-1)",
    "io_inp": [
      3,
      1,
      5,
      1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(drop(input,2),5),11)),-1)"
  },
  {
    "input": "input : list = [-2, 4, 0, 2]\noutput : list = [-8, -4, 0, 4]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sort_des([-2, 4, 0, 2]))),-2),50)",
    "io_inp": [
      -2,
      4,
      0,
      2
    ],
    "io_out": [
      -8,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sort_des(input))),-2),50)"
  },
  {
    "input": "input : list = [-4, 2, -5, 3, 0, -4]\noutput : list = [20, 0, -15, 25, -10, 20]",
    "output": "generated_output : list = reverse(take(take(take(mul_n([-4, 2, -5, 3, 0, -4],-5),11),33),31))",
    "io_inp": [
      -4,
      2,
      -5,
      3,
      0,
      -4
    ],
    "io_out": [
      20,
      0,
      -15,
      25,
      -10,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(mul_n(input,-5),11),33),31))"
  },
  {
    "input": "input : list = [2, 3, 1, 4, 2]\noutput : list = [2, 4, 1, 3, 2]",
    "output": "generated_output : list = reverse([2, 3, 1, 4, 2])",
    "io_inp": [
      2,
      3,
      1,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      1,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -1, 1, -1, -2]\noutput : list = [-5, -3, -5, -6]",
    "output": "generated_output : list = sub_n(drop([-5, -1, 1, -1, -2],1),4)",
    "io_inp": [
      -5,
      -1,
      1,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [3, -1, -5, 5, -2]\noutput : list = [23, 11, 7, -9, -17]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n([3, -1, -5, 5, -2],2),-4))),-5)",
    "io_inp": [
      3,
      -1,
      -5,
      5,
      -2
    ],
    "io_out": [
      23,
      11,
      7,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n(input,2),-4))),-5)"
  },
  {
    "input": "input : list = [5, -5, -1, 4, 4, 1]\noutput : list = [-20, -20, -5, 5, 25]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(drop([5, -5, -1, 4, 4, 1],1)),-5)))",
    "io_inp": [
      5,
      -5,
      -1,
      4,
      4,
      1
    ],
    "io_out": [
      -20,
      -20,
      -5,
      5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(drop(input,1)),-5)))"
  },
  {
    "input": "input : list = [5, 2, -2, -3]\noutput : list = [13]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(take([5, 2, -2, -3],1),-5),27)),-3)",
    "io_inp": [
      5,
      2,
      -2,
      -3
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(take(input,1),-5),27)),-3)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-14, -12, -10]",
    "output": "generated_output : list = take(add_n(reverse(add_n(sort_des([-1, -3, -5]),-5)),-4),28)",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -14,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(sort_des(input),-5)),-4),28)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [-11]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take([-3, 3, 5],1),-5),-5),1)",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(input,1),-5),-5),1)"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [2]",
    "output": "generated_output : list = add_n(take([0, -5, -1],1),2)",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),2)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [12, 10, 7]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(add_n([4, 2, -1],1),2),4),-5),19)",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      12,
      10,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(add_n(input,1),2),4),-5),19)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [0, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(mul_n([4, -1],1),2))),-2)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(mul_n(input,1),2))),-2)"
  },
  {
    "input": "input : list = [4, -3, -1, 5]\noutput : list = [8, 1, 3, 9]",
    "output": "generated_output : list = add_n([4, -3, -1, 5],4)",
    "io_inp": [
      4,
      -3,
      -1,
      5
    ],
    "io_out": [
      8,
      1,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, 5, -1, 1, -3]\noutput : list = [6, 0, -6, -15, -18]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(mul_n([4, 5, -1, 1, -3],-3)),2)),-5)",
    "io_inp": [
      4,
      5,
      -1,
      1,
      -3
    ],
    "io_out": [
      6,
      0,
      -6,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(mul_n(input,-3)),2)),-5)"
  },
  {
    "input": "input : list = [5, -5, 1, -5, 0]\noutput : list = [-5, -5, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([5, -5, 1, -5, 0])",
    "io_inp": [
      5,
      -5,
      1,
      -5,
      0
    ],
    "io_out": [
      -5,
      -5,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2, 2, -4, -4]\noutput : list = [-4, -4, 2, 2, 3]",
    "output": "generated_output : list = take(reverse([3, 2, 2, -4, -4]),18)",
    "io_inp": [
      3,
      2,
      2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(input),18)"
  },
  {
    "input": "input : list = [-2, 2, 2, -1]\noutput : list = [12, 12, 9, 8]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_asc([-2, 2, 2, -1]),5),3),-2))",
    "io_inp": [
      -2,
      2,
      2,
      -1
    ],
    "io_out": [
      12,
      12,
      9,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_asc(input),5),3),-2))"
  },
  {
    "input": "input : list = [-1, -4, 5, 1, -1]\noutput : list = [2, -2, -4, -4, -7]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(sort_des([-1, -4, 5, 1, -1]),-1)),24),-2)",
    "io_inp": [
      -1,
      -4,
      5,
      1,
      -1
    ],
    "io_out": [
      2,
      -2,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(sort_des(input),-1)),24),-2)"
  },
  {
    "input": "input : list = [3, -2, 4, -5, -5]\noutput : list = [3]",
    "output": "generated_output : list = reverse(take([3, -2, 4, -5, -5],1))",
    "io_inp": [
      3,
      -2,
      4,
      -5,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(reverse([-3, -1]),11),5),-1),2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(reverse(input),11),5),-1),2)"
  },
  {
    "input": "input : list = [3, -4, 4, 1, -5, 4]\noutput : list = [4, -2, 7]",
    "output": "generated_output : list = drop(take(add_n([3, -4, 4, 1, -5, 4],3),18),3)",
    "io_inp": [
      3,
      -4,
      4,
      1,
      -5,
      4
    ],
    "io_out": [
      4,
      -2,
      7
    ],
    "output_masked": "generated_output : list = drop(take(add_n(input,3),18),3)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [8, 6, 12]",
    "output": "generated_output : list = take(add_n(add_n(reverse([5, -1, 1]),5),2),22)",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      8,
      6,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(input),5),2),22)"
  },
  {
    "input": "input : list = [-5, 3, -4, 2, -4]\noutput : list = [3, 2, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 3, -4, 2, -4])",
    "io_inp": [
      -5,
      3,
      -4,
      2,
      -4
    ],
    "io_out": [
      3,
      2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, -3, 0]\noutput : list = [-2, 1, 4, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(add_n(mul_n([-3, 3, -3, 0],-1),1))),4)",
    "io_inp": [
      -3,
      3,
      -3,
      0
    ],
    "io_out": [
      -2,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(add_n(mul_n(input,-1),1))),4)"
  },
  {
    "input": "input : list = [-4, 3, 1, 2, 5, -3]\noutput : list = [-44, -32, 16, 28, 40, 64]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(mul_n([-4, 3, 1, 2, 5, -3],-3)),1)),-4)",
    "io_inp": [
      -4,
      3,
      1,
      2,
      5,
      -3
    ],
    "io_out": [
      -44,
      -32,
      16,
      28,
      40,
      64
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(mul_n(input,-3)),1)),-4)"
  },
  {
    "input": "input : list = [5, 1, -2, -1]\noutput : list = [-2, -1, 1, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse([5, 1, -2, -1]))),35)",
    "io_inp": [
      5,
      1,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(input))),35)"
  },
  {
    "input": "input : list = [0, 4, -4, -2, -5]\noutput : list = [4, -4, -2, -5]",
    "output": "generated_output : list = drop([0, 4, -4, -2, -5],1)",
    "io_inp": [
      0,
      4,
      -4,
      -2,
      -5
    ],
    "io_out": [
      4,
      -4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2, 3, -3]\noutput : list = [7, 7, 12, -18]",
    "output": "generated_output : list = take(add_n(take(sub_n(mul_n([2, 2, 3, -3],5),-1),5),-4),20)",
    "io_inp": [
      2,
      2,
      3,
      -3
    ],
    "io_out": [
      7,
      7,
      12,
      -18
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(mul_n(input,5),-1),5),-4),20)"
  },
  {
    "input": "input : list = [-2, -2, -5, 0, -4, -1]\noutput : list = [0, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse(take([-2, -2, -5, 0, -4, -1],4)))))",
    "io_inp": [
      -2,
      -2,
      -5,
      0,
      -4,
      -1
    ],
    "io_out": [
      0,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(take(input,4)))))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [7, 9]",
    "output": "generated_output : list = sub_n(reverse([4, 2]),-5)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-1, 1, 3, 5]\noutput : list = [5, 3, 1, -1]",
    "output": "generated_output : list = sort_des(reverse([-1, 1, 3, 5]))",
    "io_inp": [
      -1,
      1,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 3, -4, -4, 2]\noutput : list = [5, 10, 10, 40, 45]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(sub_n([-5, 3, -4, -4, 2],-5)),5),4),1)",
    "io_inp": [
      -5,
      3,
      -4,
      -4,
      2
    ],
    "io_out": [
      5,
      10,
      10,
      40,
      45
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(sub_n(input,-5)),5),4),1)"
  },
  {
    "input": "input : list = [5, -1, 3, -4, -1, -4]\noutput : list = [0, -30, -10, -45, -30, -45]",
    "output": "generated_output : list = mul_n(add_n([5, -1, 3, -4, -1, -4],-5),5)",
    "io_inp": [
      5,
      -1,
      3,
      -4,
      -1,
      -4
    ],
    "io_out": [
      0,
      -30,
      -10,
      -45,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),5)"
  },
  {
    "input": "input : list = [-2, -4, 1, -3]\noutput : list = [0, -15, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(add_n([-2, -4, 1, -3],-1)),5)))",
    "io_inp": [
      -2,
      -4,
      1,
      -3
    ],
    "io_out": [
      0,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(add_n(input,-1)),5)))"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [7, 3, 2]",
    "output": "generated_output : list = take(reverse(take(add_n(sort_asc([4, 0, -1]),3),13)),41)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(take(add_n(sort_asc(input),3),13)),41)"
  },
  {
    "input": "input : list = [5, -2, 2, -5, -5, 3]\noutput : list = [3, 1, 0, -4, -7, -7]",
    "output": "generated_output : list = take(add_n(add_n(reverse(sort_asc([5, -2, 2, -5, -5, 3])),1),-3),54)",
    "io_inp": [
      5,
      -2,
      2,
      -5,
      -5,
      3
    ],
    "io_out": [
      3,
      1,
      0,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(sort_asc(input)),1),-3),54)"
  },
  {
    "input": "input : list = [4, -5, -1, 0, 2, -1]\noutput : list = [-7, -3, -3, -2, 0]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(sort_des([4, -5, -1, 0, 2, -1])),5),-4),2)",
    "io_inp": [
      4,
      -5,
      -1,
      0,
      2,
      -1
    ],
    "io_out": [
      -7,
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(sort_des(input)),5),-4),2)"
  },
  {
    "input": "input : list = [0, 5, -2, -4, 3, -3]\noutput : list = [16, 12, 8, 0, -12, -20]",
    "output": "generated_output : list = mul_n(sort_asc([0, 5, -2, -4, 3, -3]),-4)",
    "io_inp": [
      0,
      5,
      -2,
      -4,
      3,
      -3
    ],
    "io_out": [
      16,
      12,
      8,
      0,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-9, -10]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(reverse([4, 5]),5),-1)),21)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(reverse(input),5),-1)),21)"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [-2, -5, -3]",
    "output": "generated_output : list = sub_n([3, 0, 2],5)",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      -2,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-6, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sort_asc([-1, -4])),-1)),2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sort_asc(input)),-1)),2)"
  },
  {
    "input": "input : list = [5, -3, -4, -1, 4]\noutput : list = [8, 3, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(drop([5, -3, -4, -1, 4],1),-3),-1)))",
    "io_inp": [
      5,
      -3,
      -4,
      -1,
      4
    ],
    "io_out": [
      8,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(drop(input,1),-3),-1)))"
  },
  {
    "input": "input : list = [-4, -1, 2, -1, 4]\noutput : list = [-1, 2, 5, 2, 7]",
    "output": "generated_output : list = add_n([-4, -1, 2, -1, 4],3)",
    "io_inp": [
      -4,
      -1,
      2,
      -1,
      4
    ],
    "io_out": [
      -1,
      2,
      5,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, 4, 5, 4]\noutput : list = [4, 5, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, 5, 4])",
    "io_inp": [
      4,
      4,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(sub_n([5, 3],-2),1))))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(sub_n(input,-2),1))))"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-3, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(sort_asc([2, -5, 2])),3)),-5)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(sort_asc(input)),3)),-5)"
  },
  {
    "input": "input : list = [4, 2, 5, -5, 2, -3]\noutput : list = [-5, -3, 2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 2, 5, -5, 2, -3])",
    "io_inp": [
      4,
      2,
      5,
      -5,
      2,
      -3
    ],
    "io_out": [
      -5,
      -3,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2, -2, -4, -5]\noutput : list = [-5, 0, -4, -6, -7]",
    "output": "generated_output : list = sub_n([-3, 2, -2, -4, -5],2)",
    "io_inp": [
      -3,
      2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -5,
      0,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -4, 0, 5]\noutput : list = [25, 0, -20, -20]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des([-4, -4, 0, 5]),5),25)))",
    "io_inp": [
      -4,
      -4,
      0,
      5
    ],
    "io_out": [
      25,
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des(input),5),25)))"
  },
  {
    "input": "input : list = [1, -2, 5, 0, 5]\noutput : list = [8, 8, 4, 3, 1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n([1, -2, 5, 0, 5],3))))",
    "io_inp": [
      1,
      -2,
      5,
      0,
      5
    ],
    "io_out": [
      8,
      8,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(input,3))))"
  },
  {
    "input": "input : list = [3, 2, 0, -3]\noutput : list = [-3, 6, 12, 15]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sort_asc([3, 2, 0, -3])),2),27),3)",
    "io_inp": [
      3,
      2,
      0,
      -3
    ],
    "io_out": [
      -3,
      6,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sort_asc(input)),2),27),3)"
  },
  {
    "input": "input : list = [0, 3, -3, 1, 0]\noutput : list = [-6, -2, 0, 0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(reverse([0, 3, -3, 1, 0]))),-2))",
    "io_inp": [
      0,
      3,
      -3,
      1,
      0
    ],
    "io_out": [
      -6,
      -2,
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(reverse(input))),-2))"
  },
  {
    "input": "input : list = [2, 0, 2, -4]\noutput : list = [6, 6, 4, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n([2, 0, 2, -4],5))),1),40)",
    "io_inp": [
      2,
      0,
      2,
      -4
    ],
    "io_out": [
      6,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n(input,5))),1),40)"
  },
  {
    "input": "input : list = [5, -3, 0, 3, -5, -3]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(take([5, -3, 0, 3, -5, -3],1),1)",
    "io_inp": [
      5,
      -3,
      0,
      3,
      -5,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),1)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [7, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des([3, -2, -5]),-4)",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(sort_des([1, 2]),4)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),4)"
  },
  {
    "input": "input : list = [-3, 0, -2, 3]\noutput : list = [3, 0, -2, -3]",
    "output": "generated_output : list = sort_des([-3, 0, -2, 3])",
    "io_inp": [
      -3,
      0,
      -2,
      3
    ],
    "io_out": [
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -3, -2, 3, 2, 0]\noutput : list = [0, 1, 3, 4, 5, 6]",
    "output": "generated_output : list = take(sort_asc(add_n(take(sort_des([1, -3, -2, 3, 2, 0]),11),3)),47)",
    "io_inp": [
      1,
      -3,
      -2,
      3,
      2,
      0
    ],
    "io_out": [
      0,
      1,
      3,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(sort_des(input),11),3)),47)"
  },
  {
    "input": "input : list = [5, -3, -4, -4, 3, -1]\noutput : list = [5, 3, -1, -3, -4, -4]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_des([5, -3, -4, -4, 3, -1])))))",
    "io_inp": [
      5,
      -3,
      -4,
      -4,
      3,
      -1
    ],
    "io_out": [
      5,
      3,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = sort_des([-2, -2, 3])",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5, 1, -4, -1]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = sort_des(take([0, 5, 1, -4, -1],3))",
    "io_inp": [
      0,
      5,
      1,
      -4,
      -1
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-1, 5, -2, 1, 0]\noutput : list = [9, 5, 4, 3, 2]",
    "output": "generated_output : list = take(sort_des(sort_des(take(add_n([-1, 5, -2, 1, 0],4),13))),31)",
    "io_inp": [
      -1,
      5,
      -2,
      1,
      0
    ],
    "io_out": [
      9,
      5,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(add_n(input,4),13))),31)"
  },
  {
    "input": "input : list = [-3, 0, 0, -3, -2]\noutput : list = [-4, -4, -2, -1, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(mul_n([-3, 0, 0, -3, -2],-1)))),-4)",
    "io_inp": [
      -3,
      0,
      0,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(mul_n(input,-1)))),-4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-4, 6]",
    "output": "generated_output : list = add_n(reverse([5, -5]),1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-2, 3, 1, 1]\noutput : list = [-2, 1, 1, 3]",
    "output": "generated_output : list = sort_asc([-2, 3, 1, 1])",
    "io_inp": [
      -2,
      3,
      1,
      1
    ],
    "io_out": [
      -2,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-8, 1, -8]",
    "output": "generated_output : list = add_n([-4, 5, -4],-4)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -8,
      1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -1, 4, 2, -4]\noutput : list = [7, 3, -3, -7, -9]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(add_n([-3, -1, 4, 2, -4],-3),2),5),12))",
    "io_inp": [
      -3,
      -1,
      4,
      2,
      -4
    ],
    "io_out": [
      7,
      3,
      -3,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(add_n(input,-3),2),5),12))"
  },
  {
    "input": "input : list = [4, -1, 4]\noutput : list = [-4, -19, -19]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_asc([4, -1, 4]),-3),-1),2),4)",
    "io_inp": [
      4,
      -1,
      4
    ],
    "io_out": [
      -4,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_asc(input),-3),-1),2),4)"
  },
  {
    "input": "input : list = [4, 0, -3, 3]\noutput : list = [-4, -1, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(sub_n([4, 0, -3, 3],1)))",
    "io_inp": [
      4,
      0,
      -3,
      3
    ],
    "io_out": [
      -4,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,1)))"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = drop([3, 0, 2],1)",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [15, 15]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_des([5, 5]),2),-2),-2),-1)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_des(input),2),-2),-2),-1)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [7, 4]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sub_n([-3, 0],-2)),6),5))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sub_n(input,-2)),6),5))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(add_n([0, 0],-1),3))))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(add_n(input,-1),3))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [5, 0]",
    "output": "generated_output : list = add_n(sort_des([1, -4]),4)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(reverse([2, 1, 4])))),26)",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(reverse(input)))),26)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(add_n([3, 5],1),2),-2),-4),-5)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(add_n(input,1),2),-2),-4),-5)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(sub_n([2, -3],5),13))))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(sub_n(input,5),13))))"
  },
  {
    "input": "input : list = [-2, -4, -5, -1, 1]\noutput : list = [4, 2, 1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(add_n([-2, -4, -5, -1, 1],3)))))",
    "io_inp": [
      -2,
      -4,
      -5,
      -1,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(add_n(input,3)))))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [2, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des([4, -2])),5),1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(input)),5),1)"
  },
  {
    "input": "input : list = [-2, -2, 1, 1, 2]\noutput : list = [-9, -9, -6, -6, -5]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(sub_n([-2, -2, 1, 1, 2],4),-4),1)))",
    "io_inp": [
      -2,
      -2,
      1,
      1,
      2
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(sub_n(input,4),-4),1)))"
  },
  {
    "input": "input : list = [-2, 4, 3, 3, -2]\noutput : list = [44, 44, -56, -56, -76]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(mul_n([-2, 4, 3, 3, -2],-5),4)),1),3)",
    "io_inp": [
      -2,
      4,
      3,
      3,
      -2
    ],
    "io_out": [
      44,
      44,
      -56,
      -56,
      -76
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(mul_n(input,-5),4)),1),3)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-12, 9]",
    "output": "generated_output : list = mul_n([-4, 3],3)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, 5, -5, 1, -2]\noutput : list = [-3, 0, 3, 3, 7]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse([1, 5, -5, 1, -2]),2)),40)",
    "io_inp": [
      1,
      5,
      -5,
      1,
      -2
    ],
    "io_out": [
      -3,
      0,
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(input),2)),40)"
  },
  {
    "input": "input : list = [5, -2, -1, 1, 4, 1]\noutput : list = [-13, -9, -1, -1, 11, 15]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des([5, -2, -1, 1, 4, 1]),4),5)))",
    "io_inp": [
      5,
      -2,
      -1,
      1,
      4,
      1
    ],
    "io_out": [
      -13,
      -9,
      -1,
      -1,
      11,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des(input),4),5)))"
  },
  {
    "input": "input : list = [-5, -1, 4, -5]\noutput : list = [-7, -11, -11]",
    "output": "generated_output : list = add_n(take(drop(sort_des(sub_n([-5, -1, 4, -5],5)),1),35),-1)",
    "io_inp": [
      -5,
      -1,
      4,
      -5
    ],
    "io_out": [
      -7,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(drop(sort_des(sub_n(input,5)),1),35),-1)"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [11, -1, -9]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des([4, -1, 1])),4),-1),-4)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      11,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des(input)),4),-1),-4)"
  },
  {
    "input": "input : list = [-1, 0, 1, 2, -3, 2]\noutput : list = [2, 2, 1, 0, -1, -3]",
    "output": "generated_output : list = take(take(sort_des([-1, 0, 1, 2, -3, 2]),23),9)",
    "io_inp": [
      -1,
      0,
      1,
      2,
      -3,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),23),9)"
  },
  {
    "input": "input : list = [3, -3, -1, 3]\noutput : list = [30, 12, -24, -24]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(mul_n([3, -3, -1, 3],-3),1)),3))",
    "io_inp": [
      3,
      -3,
      -1,
      3
    ],
    "io_out": [
      30,
      12,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(mul_n(input,-3),1)),3))"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(take([-4, -4, -1],1),-5)",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [-40, 40, 50]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc([4, -4, 5]),-2),15)),-5)",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      -40,
      40,
      50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc(input),-2),15)),-5)"
  },
  {
    "input": "input : list = [-3, 2, 2, 5, 3, -1]\noutput : list = [-1, 3, 5, 2, 2, -3]",
    "output": "generated_output : list = reverse([-3, 2, 2, 5, 3, -1])",
    "io_inp": [
      -3,
      2,
      2,
      5,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      5,
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, -4, -1, 4, 2]\noutput : list = [0, 3, 3, 12, 21, 27]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(sort_des([-4, -5, -4, -1, 4, 2]),10)),5),3)",
    "io_inp": [
      -4,
      -5,
      -4,
      -1,
      4,
      2
    ],
    "io_out": [
      0,
      3,
      3,
      12,
      21,
      27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(sort_des(input),10)),5),3)"
  },
  {
    "input": "input : list = [0, -1, -5, -4]\noutput : list = [-1, -2, -6, -5]",
    "output": "generated_output : list = sub_n([0, -1, -5, -4],1)",
    "io_inp": [
      0,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, -2, -3, 5, 4]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(take([-2, -2, -3, 5, 4],1)))))",
    "io_inp": [
      -2,
      -2,
      -3,
      5,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(take([1, -1, -3],1),9)),-1))",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(take(input,1),9)),-1))"
  },
  {
    "input": "input : list = [-2, 4, -1, 0, 2, 0]\noutput : list = [5, 6, 7, 7, 9, 11]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(sub_n([-2, 4, -1, 0, 2, 0],-1)),4),-2))",
    "io_inp": [
      -2,
      4,
      -1,
      0,
      2,
      0
    ],
    "io_out": [
      5,
      6,
      7,
      7,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(sub_n(input,-1)),4),-2))"
  },
  {
    "input": "input : list = [5, 4, 5, 0, -3]\noutput : list = [-5, -5, -4, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_des([5, 4, 5, 0, -3])),-1)))",
    "io_inp": [
      5,
      4,
      5,
      0,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-1, 4, 5, 4, 2]\noutput : list = [1]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(take([-1, 4, 5, 4, 2],1),-5),-1)),-3)",
    "io_inp": [
      -1,
      4,
      5,
      4,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(take(input,1),-5),-1)),-3)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-7, -2]",
    "output": "generated_output : list = mul_n(add_n([4, -1],3),-1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-1)"
  },
  {
    "input": "input : list = [-5, -2, -2]\noutput : list = [10, 10, 25]",
    "output": "generated_output : list = reverse(take(take(mul_n([-5, -2, -2],-5),10),15))",
    "io_inp": [
      -5,
      -2,
      -2
    ],
    "io_out": [
      10,
      10,
      25
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(input,-5),10),15))"
  },
  {
    "input": "input : list = [4, -5, -3, -4, 0]\noutput : list = [1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(drop([4, -5, -3, -4, 0],1),1))))",
    "io_inp": [
      4,
      -5,
      -3,
      -4,
      0
    ],
    "io_out": [
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [4, 5, -3, 1]\noutput : list = [10, 8, 2, -6]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sort_des([4, 5, -3, 1]),5),2),-4),-4)",
    "io_inp": [
      4,
      5,
      -3,
      1
    ],
    "io_out": [
      10,
      8,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sort_des(input),5),2),-4),-4)"
  },
  {
    "input": "input : list = [0, 3, 2, 5, 5, -3]\noutput : list = [5, 5, -3]",
    "output": "generated_output : list = drop([0, 3, 2, 5, 5, -3],3)",
    "io_inp": [
      0,
      3,
      2,
      5,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, 3, 2, 2, 2, 3]\noutput : list = [8, 8, 7, 7, 7, 4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(sort_asc([-1, 3, 2, 2, 2, 3]),-5),27)))",
    "io_inp": [
      -1,
      3,
      2,
      2,
      2,
      3
    ],
    "io_out": [
      8,
      8,
      7,
      7,
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(sort_asc(input),-5),27)))"
  },
  {
    "input": "input : list = [-4, 3, -5, -5, 5]\noutput : list = [-4, -4, -3, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(reverse([-4, 3, -5, -5, 5]),1))))",
    "io_inp": [
      -4,
      3,
      -5,
      -5,
      5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [2, 1, -5, -1]\noutput : list = [-11, -8, -2, 10]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(mul_n([2, 1, -5, -1],-3),-5)),33))",
    "io_inp": [
      2,
      1,
      -5,
      -1
    ],
    "io_out": [
      -11,
      -8,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(mul_n(input,-3),-5)),33))"
  },
  {
    "input": "input : list = [0, 3, -1, -5, -5, 2]\noutput : list = [-9, -9, -5, -4, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc([0, 3, -1, -5, -5, 2]),-4)",
    "io_inp": [
      0,
      3,
      -1,
      -5,
      -5,
      2
    ],
    "io_out": [
      -9,
      -9,
      -5,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(take([2, -1, -2],1),-2),-5),-2),-4)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(take(input,1),-2),-5),-2),-4)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n([-5, -1],-2)),-5)),27)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n(input,-2)),-5)),27)"
  },
  {
    "input": "input : list = [-1, -4, -3, 2, -2]\noutput : list = [-4, -3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc([-1, -4, -3, 2, -2])",
    "io_inp": [
      -1,
      -4,
      -3,
      2,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, -3, -2, 5, -4]\noutput : list = [3, -4, -2, -1, 6, -3]",
    "output": "generated_output : list = add_n(sub_n([2, -5, -3, -2, 5, -4],-4),-3)",
    "io_inp": [
      2,
      -5,
      -3,
      -2,
      5,
      -4
    ],
    "io_out": [
      3,
      -4,
      -2,
      -1,
      6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-3)"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [-9, -24, -30]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(reverse([2, -3, -5]),-5),3),11))",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      -9,
      -24,
      -30
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(reverse(input),-5),3),11))"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [-25, -15, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(add_n([4, 2, -1],3),-2)),-5))",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      -25,
      -15,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(add_n(input,3),-2)),-5))"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [-12, -12, -13]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-3, -2, -2],5)),5)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      -12,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,5)),5)"
  },
  {
    "input": "input : list = [1, 1, 1, -1, -2, 1]\noutput : list = [-3, -3, -3, -3, 3, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(mul_n([1, 1, 1, -1, -2, 1],-3)))),1)",
    "io_inp": [
      1,
      1,
      1,
      -1,
      -2,
      1
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -3,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(mul_n(input,-3)))),1)"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(reverse(sort_des(take([-1, -4, 1],1))),24),10)",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(take(input,1))),24),10)"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [-1, -5, 3]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(add_n([1, -3, 5],2),1),1),2),-3)",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      -1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(add_n(input,2),1),1),2),-3)"
  },
  {
    "input": "input : list = [3, 0, -3, 4, -4, -2]\noutput : list = [-4, -3, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(drop([3, 0, -3, 4, -4, -2],1))",
    "io_inp": [
      3,
      0,
      -3,
      4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n(sort_des([-5, 2]),-1))))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [-32, -28, 4]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(mul_n([3, -5, 4],-1),4))),4)",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      -32,
      -28,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(mul_n(input,-1),4))),4)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [3, 15]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(reverse([5, 1]),3),17)))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(reverse(input),3),17)))"
  },
  {
    "input": "input : list = [-2, 3, 0, -4]\noutput : list = [-3, 1, 4, -1]",
    "output": "generated_output : list = sub_n(take(take(reverse(sub_n([-2, 3, 0, -4],1)),7),5),-2)",
    "io_inp": [
      -2,
      3,
      0,
      -4
    ],
    "io_out": [
      -3,
      1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(sub_n(input,1)),7),5),-2)"
  },
  {
    "input": "input : list = [-2, 2, -4, -3]\noutput : list = [0, 3, -15, -3]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n([-2, 2, -4, -3],-1),-4),-3))",
    "io_inp": [
      -2,
      2,
      -4,
      -3
    ],
    "io_out": [
      0,
      3,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(input,-1),-4),-3))"
  },
  {
    "input": "input : list = [-5, 0, 5, 1, -4]\noutput : list = [-9, -8, -4, -3, 1]",
    "output": "generated_output : list = reverse(sort_des(add_n([-5, 0, 5, 1, -4],-4)))",
    "io_inp": [
      -5,
      0,
      5,
      1,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,-4)))"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [4, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(add_n([3, -2, -5],5),-2),2)))",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(add_n(input,5),-2),2)))"
  },
  {
    "input": "input : list = [-5, -5, 0, 1, 5, 3]\noutput : list = [10, 0, -2, -10, -6]",
    "output": "generated_output : list = mul_n(take(take(drop([-5, -5, 0, 1, 5, 3],1),18),30),-2)",
    "io_inp": [
      -5,
      -5,
      0,
      1,
      5,
      3
    ],
    "io_out": [
      10,
      0,
      -2,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(drop(input,1),18),30),-2)"
  },
  {
    "input": "input : list = [-4, 0, 0, 5, -1, 1]\noutput : list = [13]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(take([-4, 0, 0, 5, -1, 1],1),-4),-3)))",
    "io_inp": [
      -4,
      0,
      0,
      5,
      -1,
      1
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(take(input,1),-4),-3)))"
  },
  {
    "input": "input : list = [1, -4, 3, -1]\noutput : list = [-6, -2, 2, 8]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(sort_des([1, -4, 3, -1]),-2),2),1),-1)",
    "io_inp": [
      1,
      -4,
      3,
      -1
    ],
    "io_out": [
      -6,
      -2,
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(sort_des(input),-2),2),1),-1)"
  },
  {
    "input": "input : list = [-5, -5, -4, 4, 5]\noutput : list = [1, 0, -8, -9, -9]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(sub_n([-5, -5, -4, 4, 5],2))),-3),1)",
    "io_inp": [
      -5,
      -5,
      -4,
      4,
      5
    ],
    "io_out": [
      1,
      0,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(sub_n(input,2))),-3),1)"
  },
  {
    "input": "input : list = [-5, 3, 5, -5, -1, 4]\noutput : list = [-10, -10, -2, 6, 8, 10]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(mul_n([-5, 3, 5, -5, -1, 4],2))),39))",
    "io_inp": [
      -5,
      3,
      5,
      -5,
      -1,
      4
    ],
    "io_out": [
      -10,
      -10,
      -2,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(mul_n(input,2))),39))"
  },
  {
    "input": "input : list = [-4, -3, 5, 4, -2, -3]\noutput : list = [-3, -2, 6, 5, -1, -2]",
    "output": "generated_output : list = add_n([-4, -3, 5, 4, -2, -3],1)",
    "io_inp": [
      -4,
      -3,
      5,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      6,
      5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, -2, 2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(take([2, -2, 2],1)),9),-1))",
    "io_inp": [
      2,
      -2,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(take(input,1)),9),-1))"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(take([1, 2, -3],1),8))))",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(take(input,1),8))))"
  },
  {
    "input": "input : list = [0, 1, -1, -5]\noutput : list = [5, 6, 4, 0]",
    "output": "generated_output : list = sub_n([0, 1, -1, -5],-5)",
    "io_inp": [
      0,
      1,
      -1,
      -5
    ],
    "io_out": [
      5,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(drop([0, -5, 0],1),-4),3),15))",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(drop(input,1),-4),3),15))"
  },
  {
    "input": "input : list = [2, -1, 4, 2, -4]\noutput : list = [-24, -12, -12, 6, 24]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_des([2, -1, 4, 2, -4])),-3),2))",
    "io_inp": [
      2,
      -1,
      4,
      2,
      -4
    ],
    "io_out": [
      -24,
      -12,
      -12,
      6,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_des(input)),-3),2))"
  },
  {
    "input": "input : list = [0, -4, 2, 2, -3]\noutput : list = [-2, -2, -4, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_asc([0, -4, 2, 2, -3])))),4)",
    "io_inp": [
      0,
      -4,
      2,
      2,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(take(add_n([0, -4],-4),1),-4)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,-4),1),-4)"
  },
  {
    "input": "input : list = [0, 3, 0, -2, 5]\noutput : list = [14, 10, 4, 4, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_des([0, 3, 0, -2, 5]),2),2)",
    "io_inp": [
      0,
      3,
      0,
      -2,
      5
    ],
    "io_out": [
      14,
      10,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),2),2)"
  },
  {
    "input": "input : list = [2, 5, -4, -2]\noutput : list = [-39, -59, 31, 1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(sub_n([2, 5, -4, -2],2),2)),5),-1)",
    "io_inp": [
      2,
      5,
      -4,
      -2
    ],
    "io_out": [
      -39,
      -59,
      31,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(sub_n(input,2),2)),5),-1)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take([5, -4, -1],1),-5),-2),2))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take(input,1),-5),-2),2))"
  },
  {
    "input": "input : list = [-3, 3, -4, 1]\noutput : list = [6, 0, -12, -15]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n([-3, 3, -4, 1],3),1),3))",
    "io_inp": [
      -3,
      3,
      -4,
      1
    ],
    "io_out": [
      6,
      0,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(input,3),1),3))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(reverse([3, -4]),-4)),-3))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(reverse(input),-4)),-3))"
  },
  {
    "input": "input : list = [5, -2, -1, 4, 2, 1]\noutput : list = [4]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(take([5, -2, -1, 4, 2, 1],1))),4),-5)",
    "io_inp": [
      5,
      -2,
      -1,
      4,
      2,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(take(input,1))),4),-5)"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(take([2, -3, 4],1),-5)),21))",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(take(input,1),-5)),21))"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [-15, 20, -5]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n([-2, 5, 0],-1),-1),24),-5)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      -15,
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(input,-1),-1),24),-5)"
  },
  {
    "input": "input : list = [-4, 2, 2, 3, 4, -5]\noutput : list = [-9, -8, -2, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sub_n([-4, 2, 2, 3, 4, -5],1),13),-3),18))",
    "io_inp": [
      -4,
      2,
      2,
      3,
      4,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sub_n(input,1),13),-3),18))"
  },
  {
    "input": "input : list = [1, -5, 4]\noutput : list = [4, -2, 7]",
    "output": "generated_output : list = sub_n([1, -5, 4],-3)",
    "io_inp": [
      1,
      -5,
      4
    ],
    "io_out": [
      4,
      -2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(drop([1, -5, -4],1))",
    "io_inp": [
      1,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 5, -2, 0]\noutput : list = [4, -32, -4, -12]",
    "output": "generated_output : list = mul_n(add_n([-4, 5, -2, 0],3),-4)",
    "io_inp": [
      -4,
      5,
      -2,
      0
    ],
    "io_out": [
      4,
      -32,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-4)"
  },
  {
    "input": "input : list = [-3, -2, 1, 4]\noutput : list = [-4, 2, 8, 10]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(sub_n([-3, -2, 1, 4],3),-3),-4),-2))",
    "io_inp": [
      -3,
      -2,
      1,
      4
    ],
    "io_out": [
      -4,
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(sub_n(input,3),-3),-4),-2))"
  },
  {
    "input": "input : list = [-5, 5, 0]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take(take([-5, 5, 0],1),13),-3),-4))",
    "io_inp": [
      -5,
      5,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(take(input,1),13),-3),-4))"
  },
  {
    "input": "input : list = [4, 4, -1, 3, -2, 4]\noutput : list = [20, 20, 20]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(mul_n([4, 4, -1, 3, -2, 4],5)),35),3))",
    "io_inp": [
      4,
      4,
      -1,
      3,
      -2,
      4
    ],
    "io_out": [
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(mul_n(input,5)),35),3))"
  },
  {
    "input": "input : list = [-1, -1, -1, -4, 1, -1]\noutput : list = [1, -1, -1, -1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(reverse([-1, -1, -1, -4, 1, -1])))))",
    "io_inp": [
      -1,
      -1,
      -1,
      -4,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 1, -5, -4, -5, -2]\noutput : list = [2, -4, -6, -8, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(sort_des([-3, 1, -5, -4, -5, -2])))),2)",
    "io_inp": [
      -3,
      1,
      -5,
      -4,
      -5,
      -2
    ],
    "io_out": [
      2,
      -4,
      -6,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = sort_asc(reverse([-5, -3, 2]))",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, -4, -5, 5, 2, 3]\noutput : list = [-6, -6, -8, -9, -15, -16]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(sub_n([5, -4, -5, 5, 2, 3],5),1))),5)",
    "io_inp": [
      5,
      -4,
      -5,
      5,
      2,
      3
    ],
    "io_out": [
      -6,
      -6,
      -8,
      -9,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(sub_n(input,5),1))),5)"
  },
  {
    "input": "input : list = [-1, 0, -4, 1]\noutput : list = [1, 0, -1, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse([-1, 0, -4, 1]))),23)",
    "io_inp": [
      -1,
      0,
      -4,
      1
    ],
    "io_out": [
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(input))),23)"
  },
  {
    "input": "input : list = [0, 0, 1, 4]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(take([0, 0, 1, 4],1),15),-1)))",
    "io_inp": [
      0,
      0,
      1,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(take(input,1),15),-1)))"
  },
  {
    "input": "input : list = [-1, 4, 3, -5, 2]\noutput : list = [3, 8, 7, -1, 6]",
    "output": "generated_output : list = sub_n([-1, 4, 3, -5, 2],-4)",
    "io_inp": [
      -1,
      4,
      3,
      -5,
      2
    ],
    "io_out": [
      3,
      8,
      7,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-3, 2]",
    "output": "generated_output : list = mul_n(sub_n([-1, 4],2),1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),1)"
  },
  {
    "input": "input : list = [-4, -1, -1, 3, -3]\noutput : list = [-6, 0, -4, -4, -7]",
    "output": "generated_output : list = sub_n(reverse([-4, -1, -1, 3, -3]),3)",
    "io_inp": [
      -4,
      -1,
      -1,
      3,
      -3
    ],
    "io_out": [
      -6,
      0,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [3, -5, 5, 3, 3, -2]\noutput : list = [-3, -8, -8, -10, 0, -8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(sub_n([3, -5, 5, 3, 3, -2],4),-1),4)),5)",
    "io_inp": [
      3,
      -5,
      5,
      3,
      3,
      -2
    ],
    "io_out": [
      -3,
      -8,
      -8,
      -10,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(sub_n(input,4),-1),4)),5)"
  },
  {
    "input": "input : list = [5, -1, 5, 0, 1]\noutput : list = [-14, -14, 6, 11, 16]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(add_n([5, -1, 5, 0, 1],-1),-5),4)),-2)",
    "io_inp": [
      5,
      -1,
      5,
      0,
      1
    ],
    "io_out": [
      -14,
      -14,
      6,
      11,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(add_n(input,-1),-5),4)),-2)"
  },
  {
    "input": "input : list = [-3, 2, 2, 5, -2, 2]\noutput : list = [4, 1, 1, 1, -3, -4]",
    "output": "generated_output : list = take(add_n(add_n(sort_des([-3, 2, 2, 5, -2, 2]),-5),4),15)",
    "io_inp": [
      -3,
      2,
      2,
      5,
      -2,
      2
    ],
    "io_out": [
      4,
      1,
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(input),-5),4),15)"
  },
  {
    "input": "input : list = [-2, 3, 0, -2, -3, -4]\noutput : list = [6, 0, -4, -4, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(sort_asc([-2, 3, 0, -2, -3, -4])),-2),-1))",
    "io_inp": [
      -2,
      3,
      0,
      -2,
      -3,
      -4
    ],
    "io_out": [
      6,
      0,
      -4,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(sort_asc(input)),-2),-1))"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [0, -8, -12]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(add_n([-3, 0, -1],5),2)),4),-4)",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      0,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(add_n(input,5),2)),4),-4)"
  },
  {
    "input": "input : list = [-2, -5, -5, 2]\noutput : list = [-5, -5, -2, 2]",
    "output": "generated_output : list = sort_asc([-2, -5, -5, 2])",
    "io_inp": [
      -2,
      -5,
      -5,
      2
    ],
    "io_out": [
      -5,
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 1, -2, 5, 4]\noutput : list = [6, 10, 7, 14, 13]",
    "output": "generated_output : list = sub_n(add_n([-3, 1, -2, 5, 4],4),-5)",
    "io_inp": [
      -3,
      1,
      -2,
      5,
      4
    ],
    "io_out": [
      6,
      10,
      7,
      14,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),-5)"
  },
  {
    "input": "input : list = [5, -2, -1, -2, 2, -3]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take(reverse(take(take([5, -2, -1, -2, 2, -3],4),1)),43),-1)",
    "io_inp": [
      5,
      -2,
      -1,
      -2,
      2,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(take(input,4),1)),43),-1)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [3, 8]",
    "output": "generated_output : list = add_n([-1, 4],4)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [2, -3, -4]\noutput : list = [-3, -8, -9]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(reverse([2, -3, -4]))),5))",
    "io_inp": [
      2,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(reverse(input))),5))"
  },
  {
    "input": "input : list = [2, 0, 0]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des([2, 0, 0])),9),3)",
    "io_inp": [
      2,
      0,
      0
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(input)),9),3)"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [3, 3, -3]",
    "output": "generated_output : list = reverse(sort_asc([-3, 3, 3]))",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 5, -1, -1, -5]\noutput : list = [15, 39, 3, 3, -21]",
    "output": "generated_output : list = mul_n(add_n(take(mul_n(mul_n([1, 5, -1, -1, -5],-2),-1),36),3),3)",
    "io_inp": [
      1,
      5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      15,
      39,
      3,
      3,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(mul_n(mul_n(input,-2),-1),36),3),3)"
  },
  {
    "input": "input : list = [0, 5, -1, 4, -2]\noutput : list = [4, 9, 3, 8, 2]",
    "output": "generated_output : list = sub_n([0, 5, -1, 4, -2],-4)",
    "io_inp": [
      0,
      5,
      -1,
      4,
      -2
    ],
    "io_out": [
      4,
      9,
      3,
      8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 3, 2]\noutput : list = [6, 5, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(sort_asc([-5, 3, 2]),-2)),2),1)",
    "io_inp": [
      -5,
      3,
      2
    ],
    "io_out": [
      6,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(sort_asc(input),-2)),2),1)"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [-10, -14, -14]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(mul_n([2, 3, 3],-4),-2))))",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      -10,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(mul_n(input,-4),-2))))"
  },
  {
    "input": "input : list = [-5, -5, 4, 2, 4]\noutput : list = [-108, -84, -108]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(drop([-5, -5, 4, 2, 4],2),-5),10),-4),3)",
    "io_inp": [
      -5,
      -5,
      4,
      2,
      4
    ],
    "io_out": [
      -108,
      -84,
      -108
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(drop(input,2),-5),10),-4),3)"
  },
  {
    "input": "input : list = [-5, -5, -3, 4, -3, -4]\noutput : list = [2, -5, -7, -7]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(take([-5, -5, -3, 4, -3, -4],4),4),-3)),-3)",
    "io_inp": [
      -5,
      -5,
      -3,
      4,
      -3,
      -4
    ],
    "io_out": [
      2,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(take(input,4),4),-3)),-3)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [6, 4, 0]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sort_asc([-1, -5, 1])),-5),16),33)",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sort_asc(input)),-5),16),33)"
  },
  {
    "input": "input : list = [4, 1, -4, 1, -3, -3]\noutput : list = [1, 4, 4, 8, 8, 9]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(mul_n([4, 1, -4, 1, -3, -3],-1))),4),1)",
    "io_inp": [
      4,
      1,
      -4,
      1,
      -3,
      -3
    ],
    "io_out": [
      1,
      4,
      4,
      8,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(mul_n(input,-1))),4),1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse(sort_des(reverse([-1, 0])))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 0, 2, -3, -5, 5]\noutput : list = [-10, 10, 6, -4, 0, 2]",
    "output": "generated_output : list = reverse(mul_n([-1, 0, 2, -3, -5, 5],-2))",
    "io_inp": [
      -1,
      0,
      2,
      -3,
      -5,
      5
    ],
    "io_out": [
      -10,
      10,
      6,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [4, 2, 1, -3, -3]\noutput : list = [-3, -3, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([4, 2, 1, -3, -3])",
    "io_inp": [
      4,
      2,
      1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, 0, 3]\noutput : list = [0, 2, 5, 6]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc([4, -2, 0, 3]),2)),12))",
    "io_inp": [
      4,
      -2,
      0,
      3
    ],
    "io_out": [
      0,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc(input),2)),12))"
  },
  {
    "input": "input : list = [3, 5, -4]\noutput : list = [5, 3, -4]",
    "output": "generated_output : list = sort_des([3, 5, -4])",
    "io_inp": [
      3,
      5,
      -4
    ],
    "io_out": [
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, 0, 0]\noutput : list = [1, 1, -1, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(reverse([3, 2, 0, 0]),-1)),-1))",
    "io_inp": [
      3,
      2,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(reverse(input),-1)),-1))"
  },
  {
    "input": "input : list = [-1, -3, -4, 4]\noutput : list = [5, 0, -2, -3]",
    "output": "generated_output : list = mul_n(add_n(sort_des([-1, -3, -4, 4]),1),1)",
    "io_inp": [
      -1,
      -3,
      -4,
      4
    ],
    "io_out": [
      5,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),1),1)"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(take([3, -3, 3],1),13)",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(take(input,1),13)"
  },
  {
    "input": "input : list = [2, -2, -1, -4, 5, -2]\noutput : list = [0, -4, -3, -6, 3, -4]",
    "output": "generated_output : list = add_n([2, -2, -1, -4, 5, -2],-2)",
    "io_inp": [
      2,
      -2,
      -1,
      -4,
      5,
      -2
    ],
    "io_out": [
      0,
      -4,
      -3,
      -6,
      3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, -2, 3, -2, -2, 1]\noutput : list = [-2, -2, -2, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(sort_asc([2, -2, 3, -2, -2, 1]),9))))",
    "io_inp": [
      2,
      -2,
      3,
      -2,
      -2,
      1
    ],
    "io_out": [
      -2,
      -2,
      -2,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(sort_asc(input),9))))"
  },
  {
    "input": "input : list = [4, 1, 0]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = sort_asc(add_n([4, 1, 0],-4))",
    "io_inp": [
      4,
      1,
      0
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [1, -2, -1, 1]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(drop([1, -2, -1, 1],1)))",
    "io_inp": [
      1,
      -2,
      -1,
      1
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [1, -3, 5, -3]\noutput : list = [-3, -7, 1, -7]",
    "output": "generated_output : list = sub_n(add_n(add_n([1, -3, 5, -3],-4),1),1)",
    "io_inp": [
      1,
      -3,
      5,
      -3
    ],
    "io_out": [
      -3,
      -7,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-4),1),1)"
  },
  {
    "input": "input : list = [-5, -4, 2, 5, 3]\noutput : list = [-5, -4, 2, 3, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des([-5, -4, 2, 5, 3])),16)",
    "io_inp": [
      -5,
      -4,
      2,
      5,
      3
    ],
    "io_out": [
      -5,
      -4,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),16)"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = sort_des([1, -1, 2])",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, -1, -4]\noutput : list = [-14]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(take([5, 1, -1, -4],1),-1),-1),-2),-2)",
    "io_inp": [
      5,
      1,
      -1,
      -4
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(take(input,1),-1),-1),-2),-2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des([4, 4])",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(take([-5, 4, -5],1))",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [3, 4, 2, 4, 2]\noutput : list = [15, 12, 9]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(take([3, 4, 2, 4, 2],3))),3),3)",
    "io_inp": [
      3,
      4,
      2,
      4,
      2
    ],
    "io_out": [
      15,
      12,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(take(input,3))),3),3)"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [9, 12, 8]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(sub_n([0, 4, 1],-2),-5)),-4),-3)",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      9,
      12,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(sub_n(input,-2),-5)),-4),-3)"
  },
  {
    "input": "input : list = [4, 5, -2, -5, 1, -3]\noutput : list = [-5, -3, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(drop([4, 5, -2, -5, 1, -3],2)))))",
    "io_inp": [
      4,
      5,
      -2,
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [25, 35]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n([-1, -3],-5),-5),-5))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      25,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(input,-5),-5),-5))"
  },
  {
    "input": "input : list = [3, 3, 3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = drop([3, 3, 3, -5],2)",
    "io_inp": [
      3,
      3,
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = sort_des([-3, -1, 3])",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, 0, 4, -4, 5]\noutput : list = [-1, 4, 4, 8, 0, 9]",
    "output": "generated_output : list = sub_n([-5, 0, 0, 4, -4, 5],-4)",
    "io_inp": [
      -5,
      0,
      0,
      4,
      -4,
      5
    ],
    "io_out": [
      -1,
      4,
      4,
      8,
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [-5, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(sort_asc([-1, 1, -5])))))",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, 5, -5, -4]\noutput : list = [25, 15, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n([3, 5, -5, -4],5))",
    "io_inp": [
      3,
      5,
      -5,
      -4
    ],
    "io_out": [
      25,
      15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [0, 0, 4, 1, 2, -3]\noutput : list = [-12, -6, -3, 0, 0, 9]",
    "output": "generated_output : list = take(mul_n(take(sort_des(sort_asc([0, 0, 4, 1, 2, -3])),14),-3),43)",
    "io_inp": [
      0,
      0,
      4,
      1,
      2,
      -3
    ],
    "io_out": [
      -12,
      -6,
      -3,
      0,
      0,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(sort_asc(input)),14),-3),43)"
  },
  {
    "input": "input : list = [-1, 4, 3, -5, -5, -2]\noutput : list = [4, 3, -1, -2, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(sort_asc([-1, 4, 3, -5, -5, -2])))))",
    "io_inp": [
      -1,
      4,
      3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      4,
      3,
      -1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, -1, -5, -3, -5]\noutput : list = [4, 3, -1, 1, -1]",
    "output": "generated_output : list = add_n([0, -1, -5, -3, -5],4)",
    "io_inp": [
      0,
      -1,
      -5,
      -3,
      -5
    ],
    "io_out": [
      4,
      3,
      -1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -1, -1, 0, 3]\noutput : list = [-5, -8, -8, -9, -9]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(sub_n([0, -1, -1, 0, 3],3))),-5),15)",
    "io_inp": [
      0,
      -1,
      -1,
      0,
      3
    ],
    "io_out": [
      -5,
      -8,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(sub_n(input,3))),-5),15)"
  },
  {
    "input": "input : list = [0, 3, 1]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(sub_n([0, 3, 1],-1)),1),2))",
    "io_inp": [
      0,
      3,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(sub_n(input,-1)),1),2))"
  },
  {
    "input": "input : list = [0, -2, 1, -1, -4]\noutput : list = [-8, -6, -5, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(drop([0, -2, 1, -1, -4],1))),4))",
    "io_inp": [
      0,
      -2,
      1,
      -1,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(drop(input,1))),4))"
  },
  {
    "input": "input : list = [5, 1, -1, -5, -5, -5]\noutput : list = [-3, 3, 15, 15, 15]",
    "output": "generated_output : list = mul_n(drop([5, 1, -1, -5, -5, -5],1),-3)",
    "io_inp": [
      5,
      1,
      -1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -3,
      3,
      15,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(add_n([-1, 4],3))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [3, 0, 1, 3, -2]\noutput : list = [-9, -3, 0, 6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_des([3, 0, 1, 3, -2]),4),-5)),3)",
    "io_inp": [
      3,
      0,
      1,
      3,
      -2
    ],
    "io_out": [
      -9,
      -3,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_des(input),4),-5)),3)"
  },
  {
    "input": "input : list = [0, -5, -1, -4]\noutput : list = [-8, -9, -12, -13]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n([0, -5, -1, -4],-4)),-4))",
    "io_inp": [
      0,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -8,
      -9,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(input,-4)),-4))"
  },
  {
    "input": "input : list = [3, 1, -5, -3, 3, 5]\noutput : list = [-3, -1, 3, 5, 5, 7]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sort_des([3, 1, -5, -3, 3, 5]),9)),5),3)",
    "io_inp": [
      3,
      1,
      -5,
      -3,
      3,
      5
    ],
    "io_out": [
      -3,
      -1,
      3,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sort_des(input),9)),5),3)"
  },
  {
    "input": "input : list = [4, -1, 0, -5, -2]\noutput : list = [6, 3]",
    "output": "generated_output : list = add_n(add_n(sort_des(drop(sub_n([4, -1, 0, -5, -2],-5),3)),4),-1)",
    "io_inp": [
      4,
      -1,
      0,
      -5,
      -2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(drop(sub_n(input,-5),3)),4),-1)"
  },
  {
    "input": "input : list = [0, 2, 2, 5]\noutput : list = [0, 3, 3, 5]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(add_n([0, 2, 2, 5],-5)),-1)),32)",
    "io_inp": [
      0,
      2,
      2,
      5
    ],
    "io_out": [
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(add_n(input,-5)),-1)),32)"
  },
  {
    "input": "input : list = [-4, -5, -3, 4, 3]\noutput : list = [-11, -12, -10, -3, -4]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(add_n([-4, -5, -3, 4, 3],-4),-4),4),2),3)",
    "io_inp": [
      -4,
      -5,
      -3,
      4,
      3
    ],
    "io_out": [
      -11,
      -12,
      -10,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(add_n(input,-4),-4),4),2),3)"
  },
  {
    "input": "input : list = [-1, 3, 0, -4, -5]\noutput : list = [-5, -4, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(sort_asc([-1, 3, 0, -4, -5]),8),16)))",
    "io_inp": [
      -1,
      3,
      0,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(sort_asc(input),8),16)))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(sort_asc([4, 5]),-1)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(sort_asc([-3, 0, -2]),1))))",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-5, -1, -1, 2, 5, -4]\noutput : list = [9, -27, -15, -3, -3, 13]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(add_n([-5, -1, -1, 2, 5, -4],2)),-4),1),51)",
    "io_inp": [
      -5,
      -1,
      -1,
      2,
      5,
      -4
    ],
    "io_out": [
      9,
      -27,
      -15,
      -3,
      -3,
      13
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(add_n(input,2)),-4),1),51)"
  },
  {
    "input": "input : list = [3, -5, 5]\noutput : list = [6]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(take([3, -5, 5],1)),3)),4)",
    "io_inp": [
      3,
      -5,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(take(input,1)),3)),4)"
  },
  {
    "input": "input : list = [1, -3, 2, 2, 5]\noutput : list = [-10, -4, -4]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(reverse([1, -3, 2, 2, 5]),3)),-2))",
    "io_inp": [
      1,
      -3,
      2,
      2,
      5
    ],
    "io_out": [
      -10,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(reverse(input),3)),-2))"
  },
  {
    "input": "input : list = [-3, 4, 2, 0]\noutput : list = [-6, -12]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(drop([-3, 4, 2, 0],2),-3),-3),3))",
    "io_inp": [
      -3,
      4,
      2,
      0
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(drop(input,2),-3),-3),3))"
  },
  {
    "input": "input : list = [2, -1, 1, 5, -2]\noutput : list = [5, 2, 1, -1, -2]",
    "output": "generated_output : list = take(sort_des(reverse([2, -1, 1, 5, -2])),6)",
    "io_inp": [
      2,
      -1,
      1,
      5,
      -2
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),6)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [48, -112]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sub_n([5, -5],2),4)),4))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      48,
      -112
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sub_n(input,2),4)),4))"
  },
  {
    "input": "input : list = [-3, 0, -4, 3, -5]\noutput : list = [0, -3, -6, -7, -8]",
    "output": "generated_output : list = sort_des(add_n([-3, 0, -4, 3, -5],-3))",
    "io_inp": [
      -3,
      0,
      -4,
      3,
      -5
    ],
    "io_out": [
      0,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [14, 8, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(reverse([-5, 4, -2]))),-2),-4)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      14,
      8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(reverse(input))),-2),-4)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-3, 6, -3]",
    "output": "generated_output : list = reverse(take(add_n(add_n(reverse([-4, 5, -4]),3),-2),3))",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -3,
      6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(reverse(input),3),-2),3))"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [-1, 24, 19]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(mul_n([1, -4, -3],-5),-2),4),-4),-2)",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      -1,
      24,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(mul_n(input,-5),-2),4),-4),-2)"
  },
  {
    "input": "input : list = [3, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop([3, 2, 5],1)",
    "io_inp": [
      3,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 2, 1, -1]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(drop(sub_n([-5, 2, 1, -1],-1),2))),-1)",
    "io_inp": [
      -5,
      2,
      1,
      -1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(drop(sub_n(input,-1),2))),-1)"
  },
  {
    "input": "input : list = [1, -3, 1, 0]\noutput : list = [-7, -4, -3, -3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(add_n([1, -3, 1, 0],-4)))))",
    "io_inp": [
      1,
      -3,
      1,
      0
    ],
    "io_out": [
      -7,
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [56, -8]",
    "output": "generated_output : list = mul_n(add_n(take(mul_n(drop([-3, 4, 0],1),-4),12),2),-4)",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      56,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(mul_n(drop(input,1),-4),12),2),-4)"
  },
  {
    "input": "input : list = [-2, -1, -2, -3, 4, 5]\noutput : list = [-150]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(reverse([-2, -1, -2, -3, 4, 5]),1),2),-3),5)",
    "io_inp": [
      -2,
      -1,
      -2,
      -3,
      4,
      5
    ],
    "io_out": [
      -150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(reverse(input),1),2),-3),5)"
  },
  {
    "input": "input : list = [-2, 3, 0, -2]\noutput : list = [-5, 0, -3, -5]",
    "output": "generated_output : list = add_n(reverse(reverse([-2, 3, 0, -2])),-3)",
    "io_inp": [
      -2,
      3,
      0,
      -2
    ],
    "io_out": [
      -5,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(reverse([1, -1]))),2))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(reverse(input))),2))"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-11, 5, 17]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(sort_asc([-5, 2, -2])),-4),3),1)",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -11,
      5,
      17
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(sort_asc(input)),-4),3),1)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = drop([-3, 5, 5],1)",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [-1, 2, -6]",
    "output": "generated_output : list = add_n([0, 3, -5],-1)",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      -1,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -3, -1, -5]\noutput : list = [-5, -1, -3, -2]",
    "output": "generated_output : list = reverse([-2, -3, -1, -5])",
    "io_inp": [
      -2,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc([-4, -5]),1)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(input),1)))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [9, 3]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(sort_asc([-1, 5]),-4)),32))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(sort_asc(input),-4)),32))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-25, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(mul_n([1, 0],5),-5))))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -25,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(mul_n(input,5),-5))))"
  },
  {
    "input": "input : list = [-1, -4, 3, -2]\noutput : list = [3, -1, -2, -4]",
    "output": "generated_output : list = take(sort_des(sort_des([-1, -4, 3, -2])),21)",
    "io_inp": [
      -1,
      -4,
      3,
      -2
    ],
    "io_out": [
      3,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),21)"
  },
  {
    "input": "input : list = [1, 5, 4, -5, -2, -2]\noutput : list = [0, 4, 3, -6, -3, -3]",
    "output": "generated_output : list = sub_n(sub_n([1, 5, 4, -5, -2, -2],3),-2)",
    "io_inp": [
      1,
      5,
      4,
      -5,
      -2,
      -2
    ],
    "io_out": [
      0,
      4,
      3,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),-2)"
  },
  {
    "input": "input : list = [-4, -1, -4, 4]\noutput : list = [-2, -2, 1, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(add_n([-4, -1, -4, 4],4),2))))",
    "io_inp": [
      -4,
      -1,
      -4,
      4
    ],
    "io_out": [
      -2,
      -2,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(add_n(input,4),2))))"
  },
  {
    "input": "input : list = [4, 3, 4, 3, -3]\noutput : list = [12, 12, 11, 11, 5]",
    "output": "generated_output : list = take(sub_n(take(add_n(sort_des([4, 3, 4, 3, -3]),5),31),-3),45)",
    "io_inp": [
      4,
      3,
      4,
      3,
      -3
    ],
    "io_out": [
      12,
      12,
      11,
      11,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(sort_des(input),5),31),-3),45)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-15, 20]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(reverse([3, -4]),5)),-1))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -15,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(reverse(input),5)),-1))"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [3, -4, -2]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(reverse([4, -3, -1]),3)),12),4)",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(reverse(input),3)),12),4)"
  },
  {
    "input": "input : list = [5, 1, -5, -5, 1, 1]\noutput : list = [4, 0, 0, 0, -6, -6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(sort_des([5, 1, -5, -5, 1, 1]),26),4),5),2)",
    "io_inp": [
      5,
      1,
      -5,
      -5,
      1,
      1
    ],
    "io_out": [
      4,
      0,
      0,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(sort_des(input),26),4),5),2)"
  },
  {
    "input": "input : list = [-5, -5, 1, 5, 4, -5]\noutput : list = [5, 4, 1, -5, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(sort_asc([-5, -5, 1, 5, 4, -5]),6))))",
    "io_inp": [
      -5,
      -5,
      1,
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      1,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(sort_asc(input),6))))"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [-16, -11, -10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(sub_n([-2, 4, 3],4),3),4)),3)",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      -16,
      -11,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(sub_n(input,4),3),4)),3)"
  },
  {
    "input": "input : list = [2, 1, -3]\noutput : list = [2, 1, -3]",
    "output": "generated_output : list = sort_des([2, 1, -3])",
    "io_inp": [
      2,
      1,
      -3
    ],
    "io_out": [
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, 0, 5, 5]\noutput : list = [-7, -4, -2, 1, 1]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n([2, -3, 0, 5, 5],-4))),35)",
    "io_inp": [
      2,
      -3,
      0,
      5,
      5
    ],
    "io_out": [
      -7,
      -4,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(input,-4))),35)"
  },
  {
    "input": "input : list = [-4, -4, -4]\noutput : list = [-5, -5, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sort_asc([-4, -4, -4]),-4),3)))",
    "io_inp": [
      -4,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sort_asc(input),-4),3)))"
  },
  {
    "input": "input : list = [-4, 0, 3, -4, 0, -3]\noutput : list = [-5, -8, -8, -11, -12, -12]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(sub_n([-4, 0, 3, -4, 0, -3],5)),-4)),-1)",
    "io_inp": [
      -4,
      0,
      3,
      -4,
      0,
      -3
    ],
    "io_out": [
      -5,
      -8,
      -8,
      -11,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(sub_n(input,5)),-4)),-1)"
  },
  {
    "input": "input : list = [5, -3, -3, -5, 5, 5]\noutput : list = [-5, -3, -3, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -3, -3, -5, 5, 5]))",
    "io_inp": [
      5,
      -3,
      -3,
      -5,
      5,
      5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 3, 0, 0, -1]\noutput : list = [-6, 2, -1, -1, -2]",
    "output": "generated_output : list = sub_n([-5, 3, 0, 0, -1],1)",
    "io_inp": [
      -5,
      3,
      0,
      0,
      -1
    ],
    "io_out": [
      -6,
      2,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, -1, -3, 1]\noutput : list = [-3, -1, -1, 1]",
    "output": "generated_output : list = sort_asc([-1, -1, -3, 1])",
    "io_inp": [
      -1,
      -1,
      -3,
      1
    ],
    "io_out": [
      -3,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [-6, -2, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sort_des([4, 2, 0]),-2)),3),5)",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sort_des(input),-2)),3),5)"
  },
  {
    "input": "input : list = [0, -2, -4, -4, -4]\noutput : list = [-8, -8, -8, -6, -4]",
    "output": "generated_output : list = sort_asc(add_n(reverse([0, -2, -4, -4, -4]),-4))",
    "io_inp": [
      0,
      -2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([3, 3],1)))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,1)))"
  },
  {
    "input": "input : list = [-1, 1, 4, 4, -5, 1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(mul_n(take([-1, 1, 4, 4, -5, 1],1),-2))",
    "io_inp": [
      -1,
      1,
      4,
      4,
      -5,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,1),-2))"
  },
  {
    "input": "input : list = [3, -5, 1, 3]\noutput : list = [22, -2, -10, -10]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(mul_n([3, -5, 1, 3],-4))),2),6)",
    "io_inp": [
      3,
      -5,
      1,
      3
    ],
    "io_out": [
      22,
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(mul_n(input,-4))),2),6)"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [-4, -4, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(reverse([0, -4, -4])))))",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [2, -5, 0, 1]\noutput : list = [8, 6, 4, -6]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(sub_n([2, -5, 0, 1],-2)),-1),-2))",
    "io_inp": [
      2,
      -5,
      0,
      1
    ],
    "io_out": [
      8,
      6,
      4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(sub_n(input,-2)),-1),-2))"
  },
  {
    "input": "input : list = [1, -2, 1, -1, -4]\noutput : list = [6, 6, 3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(drop(reverse([1, -2, 1, -1, -4]),2)),-5))",
    "io_inp": [
      1,
      -2,
      1,
      -1,
      -4
    ],
    "io_out": [
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(drop(reverse(input),2)),-5))"
  },
  {
    "input": "input : list = [2, 4, 1, -1, 5, 3]\noutput : list = [3, 5, -1, 1, 4, 2]",
    "output": "generated_output : list = reverse([2, 4, 1, -1, 5, 3])",
    "io_inp": [
      2,
      4,
      1,
      -1,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      -1,
      1,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, 0, -1]\noutput : list = [-4, -5, -6, -6]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_asc([-2, -2, 0, -1]),-2)),2),1)",
    "io_inp": [
      -2,
      -2,
      0,
      -1
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_asc(input),-2)),2),1)"
  },
  {
    "input": "input : list = [5, -1, 5, -5, 3]\noutput : list = [-3, 1, 5, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(reverse([5, -1, 5, -5, 3]),3)),-1))",
    "io_inp": [
      5,
      -1,
      5,
      -5,
      3
    ],
    "io_out": [
      -3,
      1,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(reverse(input),3)),-1))"
  },
  {
    "input": "input : list = [3, 0, 2, -4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = take(sort_des(sort_des(take(drop([3, 0, 2, -4, 3],3),5))),19)",
    "io_inp": [
      3,
      0,
      2,
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(drop(input,3),5))),19)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n([0, 0],-3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -1, 2, -3, 1]\noutput : list = [2, 1, -1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sort_asc([-1, -1, 2, -3, 1])))))",
    "io_inp": [
      -1,
      -1,
      2,
      -3,
      1
    ],
    "io_out": [
      2,
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 2, 5, 1]\noutput : list = [6, 3, 2, -3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-4, 2, 5, 1],-3)),2)",
    "io_inp": [
      -4,
      2,
      5,
      1
    ],
    "io_out": [
      6,
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-3)),2)"
  },
  {
    "input": "input : list = [-4, 0, 2, -3]\noutput : list = [0, 1, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([-4, 0, 2, -3],5)),1)",
    "io_inp": [
      -4,
      0,
      2,
      -3
    ],
    "io_out": [
      0,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,5)),1)"
  },
  {
    "input": "input : list = [3, 5, -1, 4]\noutput : list = [5, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(drop([3, 5, -1, 4],1))),-5))",
    "io_inp": [
      3,
      5,
      -1,
      4
    ],
    "io_out": [
      5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(drop(input,1))),-5))"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [2, 2, 7]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(sort_des([2, -3, -3])),-5)),39)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(sort_des(input)),-5)),39)"
  },
  {
    "input": "input : list = [2, -5, -1]\noutput : list = [4, -2, -10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(sort_asc([2, -5, -1]),15))),2)",
    "io_inp": [
      2,
      -5,
      -1
    ],
    "io_out": [
      4,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(sort_asc(input),15))),2)"
  },
  {
    "input": "input : list = [1, -3, 2, 0, 3]\noutput : list = [0, -4, 1, -1, 2]",
    "output": "generated_output : list = sub_n([1, -3, 2, 0, 3],1)",
    "io_inp": [
      1,
      -3,
      2,
      0,
      3
    ],
    "io_out": [
      0,
      -4,
      1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, 3, -2, 1]\noutput : list = [-2, -1, 1, 3]",
    "output": "generated_output : list = take(reverse(take(sort_des(sort_asc([-1, 3, -2, 1])),21)),22)",
    "io_inp": [
      -1,
      3,
      -2,
      1
    ],
    "io_out": [
      -2,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_des(sort_asc(input)),21)),22)"
  },
  {
    "input": "input : list = [0, -4, 0]\noutput : list = [-5, 11]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(drop([0, -4, 0],1)),16),-4),5)",
    "io_inp": [
      0,
      -4,
      0
    ],
    "io_out": [
      -5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(drop(input,1)),16),-4),5)"
  },
  {
    "input": "input : list = [1, 1, -5, 1]\noutput : list = [2, -4, 2]",
    "output": "generated_output : list = take(reverse(sub_n(take(drop([1, 1, -5, 1],1),3),-1)),42)",
    "io_inp": [
      1,
      1,
      -5,
      1
    ],
    "io_out": [
      2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(drop(input,1),3),-1)),42)"
  },
  {
    "input": "input : list = [3, 5, 5, -4, -1, 0]\noutput : list = [5, 7, 7, -2, 1, 2]",
    "output": "generated_output : list = sub_n([3, 5, 5, -4, -1, 0],-2)",
    "io_inp": [
      3,
      5,
      5,
      -4,
      -1,
      0
    ],
    "io_out": [
      5,
      7,
      7,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-9, -8]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([-5, -4],2),3),-1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -9,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,2),3),-1)"
  },
  {
    "input": "input : list = [-5, -1, 2, 0]\noutput : list = [-5, -1, 0, 2]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(reverse([-5, -1, 2, 0])),-1),-1),20)",
    "io_inp": [
      -5,
      -1,
      2,
      0
    ],
    "io_out": [
      -5,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(reverse(input)),-1),-1),20)"
  },
  {
    "input": "input : list = [0, 1, 2, 2, -1, 0]\noutput : list = [0, -5, -10, -10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(take([0, 1, 2, 2, -1, 0],4)))),-5)",
    "io_inp": [
      0,
      1,
      2,
      2,
      -1,
      0
    ],
    "io_out": [
      0,
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(take(input,4)))),-5)"
  },
  {
    "input": "input : list = [-5, -4, 3, -4, 0, -5]\noutput : list = [-16, -20]",
    "output": "generated_output : list = take(take(reverse(mul_n(take([-5, -4, 3, -4, 0, -5],2),4)),28),26)",
    "io_inp": [
      -5,
      -4,
      3,
      -4,
      0,
      -5
    ],
    "io_out": [
      -16,
      -20
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(take(input,2),4)),28),26)"
  },
  {
    "input": "input : list = [-2, -5, 0, -5, -5, -3]\noutput : list = [-6, -9, -4, -9, -9, -7]",
    "output": "generated_output : list = sub_n([-2, -5, 0, -5, -5, -3],4)",
    "io_inp": [
      -2,
      -5,
      0,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -9,
      -4,
      -9,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, -4, -4, -2, 0, 2]\noutput : list = [-8, -10, -11, -12, -14, -14]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(add_n([-1, -4, -4, -2, 0, 2],-3),-3)),-4))",
    "io_inp": [
      -1,
      -4,
      -4,
      -2,
      0,
      2
    ],
    "io_out": [
      -8,
      -10,
      -11,
      -12,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(add_n(input,-3),-3)),-4))"
  },
  {
    "input": "input : list = [3, 3, -5, -1, 4, 3]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(add_n(take(drop(reverse([3, 3, -5, -1, 4, 3]),5),3),2),1)",
    "io_inp": [
      3,
      3,
      -5,
      -1,
      4,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(drop(reverse(input),5),3),2),1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [16, -12]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(mul_n([-3, 4],4)),1)))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      16,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(mul_n(input,4)),1)))"
  },
  {
    "input": "input : list = [-2, 2, 3, -4]\noutput : list = [3, 2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([-2, 2, 3, -4]))",
    "io_inp": [
      -2,
      2,
      3,
      -4
    ],
    "io_out": [
      3,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -2, 0, -2]\noutput : list = [-2, -2, -1, 0]",
    "output": "generated_output : list = sort_asc([-1, -2, 0, -2])",
    "io_inp": [
      -1,
      -2,
      0,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(sort_des([4, -4])),-1)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [1, -5]",
    "output": "generated_output : list = reverse(mul_n([5, -1],-1))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [-2, -8, -4]",
    "output": "generated_output : list = mul_n([1, 4, 2],-2)",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      -2,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(mul_n([2, 0, -2],-1)))))",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [3, 1, -4, -1, 5, -3]\noutput : list = [-4, -3, -1, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(reverse([3, 1, -4, -1, 5, -3])),13),21))",
    "io_inp": [
      3,
      1,
      -4,
      -1,
      5,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(reverse(input)),13),21))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(reverse([5, 5]))),-1))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-3, 2, -1, -4]\noutput : list = [-11, 4, -5, -14]",
    "output": "generated_output : list = add_n(take(mul_n([-3, 2, -1, -4],3),11),-2)",
    "io_inp": [
      -3,
      2,
      -1,
      -4
    ],
    "io_out": [
      -11,
      4,
      -5,
      -14
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,3),11),-2)"
  },
  {
    "input": "input : list = [-2, 4, -1, -1, 3, 2]\noutput : list = [-2, -1, -1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, -1, -1, 3, 2])",
    "io_inp": [
      -2,
      4,
      -1,
      -1,
      3,
      2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(drop([3, -1, -2],1),-3),5),-2))",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(drop(input,1),-3),5),-2))"
  },
  {
    "input": "input : list = [5, 1, 2, 1, 2, 2]\noutput : list = [2, 2, 1, 2, 1, 5]",
    "output": "generated_output : list = take(take(add_n(reverse(add_n([5, 1, 2, 1, 2, 2],5)),-5),36),16)",
    "io_inp": [
      5,
      1,
      2,
      1,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      2,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(add_n(input,5)),-5),36),16)"
  },
  {
    "input": "input : list = [-1, -4, 4, -2, -1, 4]\noutput : list = [31, 13, 4, 4, -41, -41]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n([-1, -4, 4, -2, -1, 4],-3),3),-5))",
    "io_inp": [
      -1,
      -4,
      4,
      -2,
      -1,
      4
    ],
    "io_out": [
      31,
      13,
      4,
      4,
      -41,
      -41
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(input,-3),3),-5))"
  },
  {
    "input": "input : list = [-1, -1, -5, 0, 0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(drop([-1, -1, -5, 0, 0, 1],4),19)",
    "io_inp": [
      -1,
      -1,
      -5,
      0,
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,4),19)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [6, 7]",
    "output": "generated_output : list = sort_asc(sub_n([5, 4],-2))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse(add_n(add_n(take(add_n([-4, -4],3),3),2),1))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(add_n(input,3),3),2),1))"
  },
  {
    "input": "input : list = [3, 0, 4, 1]\noutput : list = [-3, 1, 9, 13]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(mul_n([3, 0, 4, 1],-1)),-4),3))",
    "io_inp": [
      3,
      0,
      4,
      1
    ],
    "io_out": [
      -3,
      1,
      9,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(mul_n(input,-1)),-4),3))"
  },
  {
    "input": "input : list = [3, 3, -1]\noutput : list = [2, 6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sort_asc([3, 3, -1]))),-3))",
    "io_inp": [
      3,
      3,
      -1
    ],
    "io_out": [
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [0, -1, 4, 4, 3]\noutput : list = [4, 4, 3, 0, -1]",
    "output": "generated_output : list = sort_des([0, -1, 4, 4, 3])",
    "io_inp": [
      0,
      -1,
      4,
      4,
      3
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, -4, -5]\noutput : list = [4, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([3, -2, -4, -5],-1)))",
    "io_inp": [
      3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      4,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [-2, -5, 5, 1]\noutput : list = [-2, -6, -9, -12]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(sub_n([-2, -5, 5, 1],4),-2)),1),-4)",
    "io_inp": [
      -2,
      -5,
      5,
      1
    ],
    "io_out": [
      -2,
      -6,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(sub_n(input,4),-2)),1),-4)"
  },
  {
    "input": "input : list = [-5, 5, 3, 5, -4]\noutput : list = [-9, -8, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(add_n([-5, 5, 3, 5, -4],-4),1),-1)))",
    "io_inp": [
      -5,
      5,
      3,
      5,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(add_n(input,-4),1),-1)))"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [13, 13, 10]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n([4, 4, 1],2),5)),2)",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      13,
      13,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(input,2),5)),2)"
  },
  {
    "input": "input : list = [-1, 0, 5]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(add_n([-1, 0, 5],-1),2)",
    "io_inp": [
      -1,
      0,
      5
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),2)"
  },
  {
    "input": "input : list = [-2, 4, 3, 0, -5]\noutput : list = [-9, 0, 15]",
    "output": "generated_output : list = drop(mul_n([-2, 4, 3, 0, -5],-3),2)",
    "io_inp": [
      -2,
      4,
      3,
      0,
      -5
    ],
    "io_out": [
      -9,
      0,
      15
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,-3),2)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(drop(take(mul_n(add_n([0, 3],5),1),9),1),1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(drop(take(mul_n(add_n(input,5),1),9),1),1)"
  },
  {
    "input": "input : list = [0, -2, -1, 4, -5, 1]\noutput : list = [12, -12, 24, 4, 0, 8]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(reverse([0, -2, -1, 4, -5, 1]),-2),1),4),27)",
    "io_inp": [
      0,
      -2,
      -1,
      4,
      -5,
      1
    ],
    "io_out": [
      12,
      -12,
      24,
      4,
      0,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(reverse(input),-2),1),4),27)"
  },
  {
    "input": "input : list = [3, 4, -4, 3, 3]\noutput : list = [3, 3, -4]",
    "output": "generated_output : list = sort_des(drop([3, 4, -4, 3, 3],2))",
    "io_inp": [
      3,
      4,
      -4,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [-4, -12, 12]",
    "output": "generated_output : list = mul_n([1, 3, -3],-4)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      -4,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -4, -4, 3, 3]\noutput : list = [-2, -2, -6, -9, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([-1, -4, -4, 3, 3]),-5))",
    "io_inp": [
      -1,
      -4,
      -4,
      3,
      3
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [1, 3, 2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(drop([1, 3, 2],1))),4))",
    "io_inp": [
      1,
      3,
      2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(drop(input,1))),4))"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [8, 2, 0]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_des([-4, -1, 0])),15)),-2)",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_des(input)),15)),-2)"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [-3, -8]",
    "output": "generated_output : list = take(sub_n(drop(sort_des([2, -3, 4]),1),5),4)",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(sort_des(input),1),5),4)"
  },
  {
    "input": "input : list = [-5, 4, 1, 0, 2]\noutput : list = [-8]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(take([-5, 4, 1, 0, 2],1)),-3)),31)",
    "io_inp": [
      -5,
      4,
      1,
      0,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(take(input,1)),-3)),31)"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = sort_des([4, 5, 3])",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, 4]\noutput : list = [10, -2, -4]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(sort_des([-3, 3, 4]),-2),-2)),32)",
    "io_inp": [
      -3,
      3,
      4
    ],
    "io_out": [
      10,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(sort_des(input),-2),-2)),32)"
  },
  {
    "input": "input : list = [0, 4, 4]\noutput : list = [2, 14, 14]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(reverse([0, 4, 4]),3),-2),29))",
    "io_inp": [
      0,
      4,
      4
    ],
    "io_out": [
      2,
      14,
      14
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(reverse(input),3),-2),29))"
  },
  {
    "input": "input : list = [-5, -3, -1, -4, 3, 4]\noutput : list = [-38, -29, 7, 25, 34, 43]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(mul_n([-5, -3, -1, -4, 3, 4],-3)),3)),-2)",
    "io_inp": [
      -5,
      -3,
      -1,
      -4,
      3,
      4
    ],
    "io_out": [
      -38,
      -29,
      7,
      25,
      34,
      43
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(mul_n(input,-3)),3)),-2)"
  },
  {
    "input": "input : list = [3, -1, -2, 2, -4]\noutput : list = [-12, -8, 4, 8, 16]",
    "output": "generated_output : list = mul_n(sort_des([3, -1, -2, 2, -4]),-4)",
    "io_inp": [
      3,
      -1,
      -2,
      2,
      -4
    ],
    "io_out": [
      -12,
      -8,
      4,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, -1, 3, -4]\noutput : list = [3, 1, -1, -4]",
    "output": "generated_output : list = sort_des([1, -1, 3, -4])",
    "io_inp": [
      1,
      -1,
      3,
      -4
    ],
    "io_out": [
      3,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -3, -5, -4, 5, -2]\noutput : list = [0, 7, -2, -3, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(drop([3, -3, -5, -4, 5, -2],1),2)),-4)",
    "io_inp": [
      3,
      -3,
      -5,
      -4,
      5,
      -2
    ],
    "io_out": [
      0,
      7,
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(drop(input,1),2)),-4)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-1, 5])))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-5, 5, -4, -2, -1]\noutput : list = [-9, -10, -12, -3, -13]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(reverse([-5, 5, -4, -2, -1]),13),-2),2),4)",
    "io_inp": [
      -5,
      5,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -10,
      -12,
      -3,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(reverse(input),13),-2),2),4)"
  },
  {
    "input": "input : list = [-1, 1, 5, -5, -3, -3]\noutput : list = [-12, -12, -18]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(drop([-1, 1, 5, -5, -3, -3],3)),3),43),3)",
    "io_inp": [
      -1,
      1,
      5,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -12,
      -12,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(drop(input,3)),3),43),3)"
  },
  {
    "input": "input : list = [-3, 4, 3, -5]\noutput : list = [1, -1, -13, -17]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(mul_n([-3, 4, 3, -5],2),5),-2)),40)",
    "io_inp": [
      -3,
      4,
      3,
      -5
    ],
    "io_out": [
      1,
      -1,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(mul_n(input,2),5),-2)),40)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [8, 1]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(sort_asc([4, -3]),-5),16),-1))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(sort_asc(input),-5),16),-1))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [25, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(sort_asc([4, -5]),1))),5)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(sort_asc(input),1))),5)"
  },
  {
    "input": "input : list = [5, 0, -2, -4, 1, 2]\noutput : list = [3, -6, -9, -12, -18, -24]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des([5, 0, -2, -4, 1, 2]),4),3)))",
    "io_inp": [
      5,
      0,
      -2,
      -4,
      1,
      2
    ],
    "io_out": [
      3,
      -6,
      -9,
      -12,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des(input),4),3)))"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-9]",
    "output": "generated_output : list = take(add_n(take([-5, 2, -5],1),-4),10)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,1),-4),10)"
  },
  {
    "input": "input : list = [-2, 1, 5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = drop([-2, 1, 5, -3],2)",
    "io_inp": [
      -2,
      1,
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [15, -20]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(sort_asc([-4, 3]),1)),1),5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(sort_asc(input),1)),1),5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n([4, -3],-1)))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-1)))"
  },
  {
    "input": "input : list = [-1, -3, -2, -5]\noutput : list = [-17, -15, -14]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(add_n([-1, -3, -2, -5],-2)),3),-5),-5)",
    "io_inp": [
      -1,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -17,
      -15,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(add_n(input,-2)),3),-5),-5)"
  },
  {
    "input": "input : list = [-5, -1, -5, 4, 2]\noutput : list = [-7, -3, -7, 2, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-5, -1, -5, 4, 2],-3),2),-3)",
    "io_inp": [
      -5,
      -1,
      -5,
      4,
      2
    ],
    "io_out": [
      -7,
      -3,
      -7,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,-3),2),-3)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n(reverse([2, 1]),4)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(take([-2, -4, 5],1)),-5)))",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(take(input,1)),-5)))"
  },
  {
    "input": "input : list = [1, 0, -1, 2]\noutput : list = [-7, -8, -9, -10]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(sort_asc([1, 0, -1, 2]))),5),-4)",
    "io_inp": [
      1,
      0,
      -1,
      2
    ],
    "io_out": [
      -7,
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(sort_asc(input))),5),-4)"
  },
  {
    "input": "input : list = [5, 4, -1]\noutput : list = [-2, 3]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(drop([5, 4, -1],1),-1),14)))",
    "io_inp": [
      5,
      4,
      -1
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(drop(input,1),-1),14)))"
  },
  {
    "input": "input : list = [-3, 0, -3, 4]\noutput : list = [8, 0, -6, -6]",
    "output": "generated_output : list = sort_des(mul_n([-3, 0, -3, 4],2))",
    "io_inp": [
      -3,
      0,
      -3,
      4
    ],
    "io_out": [
      8,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [-1, -5, 3, 4]\noutput : list = [5, 3, -5, -13]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sort_asc([-1, -5, 3, 4]),2)),3))",
    "io_inp": [
      -1,
      -5,
      3,
      4
    ],
    "io_out": [
      5,
      3,
      -5,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sort_asc(input),2)),3))"
  },
  {
    "input": "input : list = [1, 2, -3, -2, -5, 1]\noutput : list = [-2, -3, -3, -6, -7, -9]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(sub_n([1, 2, -3, -2, -5, 1],-4),5)),33),3)",
    "io_inp": [
      1,
      2,
      -3,
      -2,
      -5,
      1
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(sub_n(input,-4),5)),33),3)"
  },
  {
    "input": "input : list = [0, 0, 0]\noutput : list = [-3, -3, -3]",
    "output": "generated_output : list = take(sort_asc(take(add_n(sub_n([0, 0, 0],-2),-5),10)),3)",
    "io_inp": [
      0,
      0,
      0
    ],
    "io_out": [
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(sub_n(input,-2),-5),10)),3)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(reverse([-5, 5]),2),2)))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(reverse(input),2),2)))"
  },
  {
    "input": "input : list = [4, 3, 3, -3, -3, -3]\noutput : list = [13, 9, 9, -15, -15, -15]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(mul_n([4, 3, 3, -3, -3, -3],4)),-3)),1)",
    "io_inp": [
      4,
      3,
      3,
      -3,
      -3,
      -3
    ],
    "io_out": [
      13,
      9,
      9,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(mul_n(input,4)),-3)),1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [24, 27]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc([3, 2]),5),3),-3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      24,
      27
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(input),5),3),-3)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = reverse([-3, 1])",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2, -1, -5]\noutput : list = [-25, -5, -10]",
    "output": "generated_output : list = mul_n(mul_n(reverse(drop([-5, -2, -1, -5],1)),1),5)",
    "io_inp": [
      -5,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -25,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(drop(input,1)),1),5)"
  },
  {
    "input": "input : list = [1, -1, 5, 4]\noutput : list = [5, 1, 13, 11]",
    "output": "generated_output : list = sub_n(take(take(sub_n(mul_n([1, -1, 5, 4],2),-5),22),27),2)",
    "io_inp": [
      1,
      -1,
      5,
      4
    ],
    "io_out": [
      5,
      1,
      13,
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(mul_n(input,2),-5),22),27),2)"
  },
  {
    "input": "input : list = [-3, 2, 4, -1, 4, 4]\noutput : list = [-9, -4, -2, -7, -2, -2]",
    "output": "generated_output : list = add_n(sub_n([-3, 2, 4, -1, 4, 4],4),-2)",
    "io_inp": [
      -3,
      2,
      4,
      -1,
      4,
      4
    ],
    "io_out": [
      -9,
      -4,
      -2,
      -7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-2)"
  },
  {
    "input": "input : list = [3, 1, -4, 5, 3, -3]\noutput : list = [11, 10, 6, 4, 4, 2]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(sort_asc([3, 1, -4, 5, 3, -3]),2),26),-5),-1)",
    "io_inp": [
      3,
      1,
      -4,
      5,
      3,
      -3
    ],
    "io_out": [
      11,
      10,
      6,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(sort_asc(input),2),26),-5),-1)"
  },
  {
    "input": "input : list = [2, 0, -5, 2]\noutput : list = [1, -6]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(drop([2, 0, -5, 2],2)),27),-2),-1)",
    "io_inp": [
      2,
      0,
      -5,
      2
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(drop(input,2)),27),-2),-1)"
  },
  {
    "input": "input : list = [-2, 3, -4, 3]\noutput : list = [4, -3, 4, -1]",
    "output": "generated_output : list = reverse(add_n(add_n([-2, 3, -4, 3],-3),4))",
    "io_inp": [
      -2,
      3,
      -4,
      3
    ],
    "io_out": [
      4,
      -3,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-3),4))"
  },
  {
    "input": "input : list = [-5, 4, -4, -4, 4]\noutput : list = [4, -4, -4, 4, -5]",
    "output": "generated_output : list = reverse([-5, 4, -4, -4, 4])",
    "io_inp": [
      -5,
      4,
      -4,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      -4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -2, -1, -4]\noutput : list = [-2, -2, -3, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(reverse([-1, -2, -1, -4]),21))),-1)",
    "io_inp": [
      -1,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(reverse(input),21))),-1)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [-3, 1, 1]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(reverse([-5, -1, -1])),2),33))",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(reverse(input)),2),33))"
  },
  {
    "input": "input : list = [1, -3, 0, -3, 0]\noutput : list = [-6, 21]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(drop([1, -3, 0, -3, 0],3),3)),2),-3)",
    "io_inp": [
      1,
      -3,
      0,
      -3,
      0
    ],
    "io_out": [
      -6,
      21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(drop(input,3),3)),2),-3)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sort_asc([2, 2]),6),1),-1))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sort_asc(input),6),1),-1))"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [6, 8, 13]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n([5, 0, -2],4),-4)))",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      6,
      8,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(input,4),-4)))"
  },
  {
    "input": "input : list = [5, -3, 1, -4]\noutput : list = [15, -9, 3, -12]",
    "output": "generated_output : list = mul_n([5, -3, 1, -4],3)",
    "io_inp": [
      5,
      -3,
      1,
      -4
    ],
    "io_out": [
      15,
      -9,
      3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, -4, -1, 1]\noutput : list = [49, -56, -11, 19]",
    "output": "generated_output : list = take(add_n(mul_n(take(mul_n([3, -4, -1, 1],-5),9),-3),4),40)",
    "io_inp": [
      3,
      -4,
      -1,
      1
    ],
    "io_out": [
      49,
      -56,
      -11,
      19
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(mul_n(input,-5),9),-3),4),40)"
  },
  {
    "input": "input : list = [2, -5, 0, -1, 2, -2]\noutput : list = [4, 4, 2, 1, 0, -3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(sort_des([2, -5, 0, -1, 2, -2]),14),1),-3))",
    "io_inp": [
      2,
      -5,
      0,
      -1,
      2,
      -2
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(sort_des(input),14),1),-3))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [7, 9]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sub_n([5, 3],-4))),26),20)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sub_n(input,-4))),26),20)"
  },
  {
    "input": "input : list = [0, -5, 3, -4, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(take(take(take([0, -5, 3, -4, 0],2),3),6))",
    "io_inp": [
      0,
      -5,
      3,
      -4,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(input,2),3),6))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-4, 6]",
    "output": "generated_output : list = take(reverse(sort_des(add_n([5, -5],1))),17)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(input,1))),17)"
  },
  {
    "input": "input : list = [-4, -4, 1, -2, 5]\noutput : list = [-5, -2, 2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(drop([-4, -4, 1, -2, 5],2),-3),2),-4))",
    "io_inp": [
      -4,
      -4,
      1,
      -2,
      5
    ],
    "io_out": [
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(drop(input,2),-3),2),-4))"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [-3, 3, 9]",
    "output": "generated_output : list = reverse(take(sort_des(take(mul_n([-3, -1, 1],-3),7)),32))",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      -3,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(mul_n(input,-3),7)),32))"
  },
  {
    "input": "input : list = [-5, 0, 1, -1, -1]\noutput : list = [-22, -2, -2, 3, 8]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sort_asc([-5, 0, 1, -1, -1]),1),5),-2),7)",
    "io_inp": [
      -5,
      0,
      1,
      -1,
      -1
    ],
    "io_out": [
      -22,
      -2,
      -2,
      3,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sort_asc(input),1),5),-2),7)"
  },
  {
    "input": "input : list = [-3, 5, 2]\noutput : list = [5, 2, -3]",
    "output": "generated_output : list = sort_des([-3, 5, 2])",
    "io_inp": [
      -3,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(drop([-1, -4, -2],1),-4),4)),-5)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(drop(input,1),-4),4)),-5)"
  },
  {
    "input": "input : list = [-3, 4, -3, -3]\noutput : list = [-1, 6, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_des([-3, 4, -3, -3])),-1)),-3)",
    "io_inp": [
      -3,
      4,
      -3,
      -3
    ],
    "io_out": [
      -1,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_des(input)),-1)),-3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [19, 43]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(reverse([5, -1])),5),4),-3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      19,
      43
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(reverse(input)),5),4),-3)"
  },
  {
    "input": "input : list = [1, -2, -4, -4, -5]\noutput : list = [-48, -60]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(drop([1, -2, -4, -4, -5],3)),-4)),-3)",
    "io_inp": [
      1,
      -2,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -48,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(drop(input,3)),-4)),-3)"
  },
  {
    "input": "input : list = [5, 1, 1, 0]\noutput : list = [-2, -1, -1, 3]",
    "output": "generated_output : list = sort_asc(take(sub_n([5, 1, 1, 0],2),11))",
    "io_inp": [
      5,
      1,
      1,
      0
    ],
    "io_out": [
      -2,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,2),11))"
  },
  {
    "input": "input : list = [3, 5, 5, -1, -1, -3]\noutput : list = [-3, -1, -1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([3, 5, 5, -1, -1, -3])",
    "io_inp": [
      3,
      5,
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(mul_n(drop(mul_n([-5, 0],5),1),5))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(mul_n(input,5),1),5))"
  },
  {
    "input": "input : list = [-3, -1, 3, -2]\noutput : list = [-15, 5, 10, 15]",
    "output": "generated_output : list = mul_n(sort_des([-3, -1, 3, -2]),-5)",
    "io_inp": [
      -3,
      -1,
      3,
      -2
    ],
    "io_out": [
      -15,
      5,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-2, 5, -2, 0, 2]\noutput : list = [4]",
    "output": "generated_output : list = take(take(take(mul_n(mul_n([-2, 5, -2, 0, 2],-1),2),9),31),1)",
    "io_inp": [
      -2,
      5,
      -2,
      0,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(mul_n(input,-1),2),9),31),1)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [-25, 0, 25]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc([5, -5, 0])),9),5)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      -25,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(input)),9),5)"
  },
  {
    "input": "input : list = [-5, -3, 5]\noutput : list = [-25, -15, 25]",
    "output": "generated_output : list = sort_asc(mul_n([-5, -3, 5],5))",
    "io_inp": [
      -5,
      -3,
      5
    ],
    "io_out": [
      -25,
      -15,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-4, -4, 1]\noutput : list = [-9, -9, -4]",
    "output": "generated_output : list = sub_n([-4, -4, 1],5)",
    "io_inp": [
      -4,
      -4,
      1
    ],
    "io_out": [
      -9,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, -3, 5, -2, -1]\noutput : list = [5, 1, -1, -2, -3]",
    "output": "generated_output : list = sort_des([1, -3, 5, -2, -1])",
    "io_inp": [
      1,
      -3,
      5,
      -2,
      -1
    ],
    "io_out": [
      5,
      1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc([-4, 0])",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = sub_n(sub_n([1, -1, -4],2),-2)",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),-2)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [8, -2, 2]",
    "output": "generated_output : list = reverse(add_n([-1, -5, 5],3))",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      8,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-3, -3, -1, -4, -1]\noutput : list = [-7, -6, -6, -4, -4]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des([-3, -3, -1, -4, -1]),1)),4)",
    "io_inp": [
      -3,
      -3,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(input),1)),4)"
  },
  {
    "input": "input : list = [3, -4, 5, 5]\noutput : list = [-11, -4]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(take([3, -4, 5, 5],2)),4),1),3)",
    "io_inp": [
      3,
      -4,
      5,
      5
    ],
    "io_out": [
      -11,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(take(input,2)),4),1),3)"
  },
  {
    "input": "input : list = [0, -1, 1, 4, 3]\noutput : list = [7, 3, -1, -9, -13]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(mul_n([0, -1, 1, 4, 3],-4),-3))),43)",
    "io_inp": [
      0,
      -1,
      1,
      4,
      3
    ],
    "io_out": [
      7,
      3,
      -1,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(mul_n(input,-4),-3))),43)"
  },
  {
    "input": "input : list = [4, -1, -5, -2, -3, -5]\noutput : list = [-2, -2, 0, 1, 2, 7]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse([4, -1, -5, -2, -3, -5]),-2),-1),50))",
    "io_inp": [
      4,
      -1,
      -5,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -2,
      0,
      1,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse(input),-2),-1),50))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_asc([0, 5]))),22))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_asc(input))),22))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [-5, 1, 1]",
    "output": "generated_output : list = take(take(mul_n([-5, 1, 1],1),13),20)",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,1),13),20)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [4, 6]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(sub_n([-2, -1],-4),8),-2)),-1)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(sub_n(input,-4),8),-2)),-1)"
  },
  {
    "input": "input : list = [5, 5, 5, -1]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(take(sub_n(take(sort_asc([5, 5, 5, -1]),1),-2),39),3)",
    "io_inp": [
      5,
      5,
      5,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(sort_asc(input),1),-2),39),3)"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [9, 5, 4]",
    "output": "generated_output : list = sub_n(sort_des(take(take(sort_des([1, 5, 0]),4),5)),-4)",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      9,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(sort_des(input),4),5)),-4)"
  },
  {
    "input": "input : list = [0, -3, 0, 2]\noutput : list = [2, 0, -3, 0]",
    "output": "generated_output : list = reverse([0, -3, 0, 2])",
    "io_inp": [
      0,
      -3,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4, 3, 1, -4, 5]\noutput : list = [23, 23, 3, -5, -9, -13]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(mul_n([-4, 4, 3, 1, -4, 5],-4),2)),26),5)",
    "io_inp": [
      -4,
      4,
      3,
      1,
      -4,
      5
    ],
    "io_out": [
      23,
      23,
      3,
      -5,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(mul_n(input,-4),2)),26),5)"
  },
  {
    "input": "input : list = [-3, 4, -2, -2, -4]\noutput : list = [-24, 12, 12, 18, 24]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sort_des([-3, 4, -2, -2, -4]),-2))),3)",
    "io_inp": [
      -3,
      4,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -24,
      12,
      12,
      18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sort_des(input),-2))),3)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(reverse([-2, 3, -1]),15),10)))",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(reverse(input),15),10)))"
  },
  {
    "input": "input : list = [1, 0, -3]\noutput : list = [-12, 0, 4]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(mul_n([1, 0, -3],1)),4),5))",
    "io_inp": [
      1,
      0,
      -3
    ],
    "io_out": [
      -12,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(mul_n(input,1)),4),5))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_asc([-3, -3])),5)),-3)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_asc(input)),5)),-3)"
  },
  {
    "input": "input : list = [-2, -1, 5, 0, -4]\noutput : list = [3, -21]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n(drop([-2, -1, 5, 0, -4],3),2),1),3),9)",
    "io_inp": [
      -2,
      -1,
      5,
      0,
      -4
    ],
    "io_out": [
      3,
      -21
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(drop(input,3),2),1),3),9)"
  },
  {
    "input": "input : list = [4, -3, -4, 4, 0, 4]\noutput : list = [-14, -12, -6, 2, 2, 2]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(sort_des([4, -3, -4, 4, 0, 4]),-3),2),30))",
    "io_inp": [
      4,
      -3,
      -4,
      4,
      0,
      4
    ],
    "io_out": [
      -14,
      -12,
      -6,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(sort_des(input),-3),2),30))"
  },
  {
    "input": "input : list = [3, 4, 4, 1, -2, -2]\noutput : list = [1, 1, 0, -2, -5, -5]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(sub_n([3, 4, 4, 1, -2, -2],4),2),1)),28)",
    "io_inp": [
      3,
      4,
      4,
      1,
      -2,
      -2
    ],
    "io_out": [
      1,
      1,
      0,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(sub_n(input,4),2),1)),28)"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n([3, 1, 3],1))))",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(input,1))))"
  },
  {
    "input": "input : list = [1, 5, 2, -2, -2]\noutput : list = [5, 2, 1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(sort_asc([1, 5, 2, -2, -2])))))",
    "io_inp": [
      1,
      5,
      2,
      -2,
      -2
    ],
    "io_out": [
      5,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -4, -5, 5, -2]\noutput : list = [5, 5, -2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(sort_asc([5, -4, -5, 5, -2])))))",
    "io_inp": [
      5,
      -4,
      -5,
      5,
      -2
    ],
    "io_out": [
      5,
      5,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [-3, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([2, -3, 3]))",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 0, -3, -1, -1, -5]\noutput : list = [-2, 2, 2, 0, 3, 3]",
    "output": "generated_output : list = sub_n(reverse(sub_n([0, 0, -3, -1, -1, -5],1)),-4)",
    "io_inp": [
      0,
      0,
      -3,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -2,
      2,
      2,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,1)),-4)"
  },
  {
    "input": "input : list = [-2, -1, -5, 2, 5, 3]\noutput : list = [-28, -16, -12, 0, 4, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(reverse([-2, -1, -5, 2, 5, 3]),12)),-2),4)",
    "io_inp": [
      -2,
      -1,
      -5,
      2,
      5,
      3
    ],
    "io_out": [
      -28,
      -16,
      -12,
      0,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(reverse(input),12)),-2),4)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse([0, -1]),1)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(input),1)))"
  },
  {
    "input": "input : list = [5, 5, 3, 2]\noutput : list = [-5, -4, -2, -2]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc(sort_asc([5, 5, 3, 2])),-5),-2),28)",
    "io_inp": [
      5,
      5,
      3,
      2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(sort_asc(input)),-5),-2),28)"
  },
  {
    "input": "input : list = [-2, -1, 0, 1, -3, 0]\noutput : list = [2, 1, 1, 0, -1, -2]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(reverse([-2, -1, 0, 1, -3, 0])),11)),1)",
    "io_inp": [
      -2,
      -1,
      0,
      1,
      -3,
      0
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(reverse(input)),11)),1)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-6, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des([1, -4]),-2)),-4))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des(input),-2)),-4))"
  },
  {
    "input": "input : list = [5, 3, -1, 5, 2]\noutput : list = [4, 7, 8, 10, 10]",
    "output": "generated_output : list = reverse(add_n(take(sort_des([5, 3, -1, 5, 2]),20),5))",
    "io_inp": [
      5,
      3,
      -1,
      5,
      2
    ],
    "io_out": [
      4,
      7,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(input),20),5))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = sub_n([4, -5],-2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, -4, 3, 4]\noutput : list = [4, 3, 2, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sort_asc([5, -4, 3, 4])))),1)",
    "io_inp": [
      5,
      -4,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(drop([1, -2, -1],1))),3)",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(drop(input,1))),3)"
  },
  {
    "input": "input : list = [-3, 1, 1, 4, -3]\noutput : list = [5]",
    "output": "generated_output : list = take(take(take(sort_des(sub_n([-3, 1, 1, 4, -3],-1)),4),1),30)",
    "io_inp": [
      -3,
      1,
      1,
      4,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(take(sort_des(sub_n(input,-1)),4),1),30)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(sort_asc([-1, -1])))),46)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(sort_asc(input)))),46)"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n([2, 1, 0],-3))",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [-4, -2, -3, -1]\noutput : list = [-11, -14, -17, -20]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(reverse([-4, -2, -3, -1]),4),3)),4)",
    "io_inp": [
      -4,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -11,
      -14,
      -17,
      -20
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(reverse(input),4),3)),4)"
  },
  {
    "input": "input : list = [-5, 4, -1, 4, -2]\noutput : list = [-5, 1, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(drop([-5, 4, -1, 4, -2],2),-1),-3),-5))",
    "io_inp": [
      -5,
      4,
      -1,
      4,
      -2
    ],
    "io_out": [
      -5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(drop(input,2),-1),-3),-5))"
  },
  {
    "input": "input : list = [-4, 1, -3, 3]\noutput : list = [6, 16, 8, 20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n([-4, 1, -3, 3],3),-5),-5),2)",
    "io_inp": [
      -4,
      1,
      -3,
      3
    ],
    "io_out": [
      6,
      16,
      8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(input,3),-5),-5),2)"
  },
  {
    "input": "input : list = [-4, 4, 1, -1]\noutput : list = [3, 5, 8, 0]",
    "output": "generated_output : list = reverse(sub_n([-4, 4, 1, -1],-4))",
    "io_inp": [
      -4,
      4,
      1,
      -1
    ],
    "io_out": [
      3,
      5,
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [3, 0, 1, 5, -4, -5]\noutput : list = [9, 7, 5, 4, 0, -1]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sort_des([3, 0, 1, 5, -4, -5])),4),11))",
    "io_inp": [
      3,
      0,
      1,
      5,
      -4,
      -5
    ],
    "io_out": [
      9,
      7,
      5,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sort_des(input)),4),11))"
  },
  {
    "input": "input : list = [4, 0, -5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = drop([4, 0, -5, 1],2)",
    "io_inp": [
      4,
      0,
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-12, -8]",
    "output": "generated_output : list = mul_n(mul_n([3, 2],2),-2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),-2)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-12, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(mul_n([-3, 3],2)),-4),2))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(mul_n(input,2)),-4),2))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc([3, -4])",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, 4, 2, -5, -5]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(take([-3, 5, 4, 2, -5, -5],1),3)",
    "io_inp": [
      -3,
      5,
      4,
      2,
      -5,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-1, 1, -1, -3, -2, 0]\noutput : list = [12, 8, 4, 4, 0, -4]",
    "output": "generated_output : list = mul_n(take(sort_asc([-1, 1, -1, -3, -2, 0]),22),-4)",
    "io_inp": [
      -1,
      1,
      -1,
      -3,
      -2,
      0
    ],
    "io_out": [
      12,
      8,
      4,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),22),-4)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [15, 40, 10]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(sub_n([2, -3, 3],1),4),1),-3),-5)",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      15,
      40,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(sub_n(input,1),4),1),-3),-5)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take([3, 1, 5],1),-2)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [5, 3, 4, 5, -5, 3]\noutput : list = [0, 8, 8, 9, 10, 10]",
    "output": "generated_output : list = sort_asc(add_n([5, 3, 4, 5, -5, 3],5))",
    "io_inp": [
      5,
      3,
      4,
      5,
      -5,
      3
    ],
    "io_out": [
      0,
      8,
      8,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [4, 0, 1, -4, 2, 5]\noutput : list = [1, 2]",
    "output": "generated_output : list = drop(add_n(sort_asc([4, 0, 1, -4, 2, 5]),-3),4)",
    "io_inp": [
      4,
      0,
      1,
      -4,
      2,
      5
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(input),-3),4)"
  },
  {
    "input": "input : list = [3, 3, -3, -5, 5, 2]\noutput : list = [0, 3, -7, -5, 1, 1]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(reverse([3, 3, -3, -5, 5, 2]),3),-1),-2),50)",
    "io_inp": [
      3,
      3,
      -3,
      -5,
      5,
      2
    ],
    "io_out": [
      0,
      3,
      -7,
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(reverse(input),3),-1),-2),50)"
  },
  {
    "input": "input : list = [1, -4, 4, -3]\noutput : list = [1, 4]",
    "output": "generated_output : list = drop(sort_asc([1, -4, 4, -3]),2)",
    "io_inp": [
      1,
      -4,
      4,
      -3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, -3, -4, -4]\noutput : list = [-1, -7, -8, -8]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(sub_n([3, -3, -4, -4],4))),7))",
    "io_inp": [
      3,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(sub_n(input,4))),7))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [2, -1]",
    "output": "generated_output : list = add_n([-1, -4],3)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, -4, 0, 3, -2, -4]\noutput : list = [-6, -3, -8, -10]",
    "output": "generated_output : list = add_n(sub_n(drop([-5, -4, 0, 3, -2, -4],2),4),-2)",
    "io_inp": [
      -5,
      -4,
      0,
      3,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -3,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,2),4),-2)"
  },
  {
    "input": "input : list = [1, -1, 0, -3, -1, -1]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(drop([1, -1, 0, -3, -1, -1],3))),38))",
    "io_inp": [
      1,
      -1,
      0,
      -3,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(drop(input,3))),38))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [6, 7]",
    "output": "generated_output : list = reverse(add_n([4, 3],3))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [4, 2, 2, -5, 0]\noutput : list = [-20, 0, 8, 8, 16]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(reverse([4, 2, 2, -5, 0])))),4)",
    "io_inp": [
      4,
      2,
      2,
      -5,
      0
    ],
    "io_out": [
      -20,
      0,
      8,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(reverse(input)))),4)"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(drop([-1, 2, 4],1),9))),3)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(drop(input,1),9))),3)"
  },
  {
    "input": "input : list = [4, 0, 2, -1]\noutput : list = [4, -8, 0, -16]",
    "output": "generated_output : list = reverse(mul_n([4, 0, 2, -1],-4))",
    "io_inp": [
      4,
      0,
      2,
      -1
    ],
    "io_out": [
      4,
      -8,
      0,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [4, 5, 5, 4, -3]\noutput : list = [5, 5, 4, 4, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([4, 5, 5, 4, -3])))",
    "io_inp": [
      4,
      5,
      5,
      4,
      -3
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, -1, -4, -2]\noutput : list = [120, 60, 30, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_des([0, -1, -4, -2])),3),-2),5)",
    "io_inp": [
      0,
      -1,
      -4,
      -2
    ],
    "io_out": [
      120,
      60,
      30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_des(input)),3),-2),5)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [15, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_des(mul_n([-3, 1],-5)),8)),25)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(mul_n(input,-5)),8)),25)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc([-3, 1])",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3, 0, -1, -1]\noutput : list = [-3, -2, -1, -1, 0]",
    "output": "generated_output : list = sort_asc([-2, -3, 0, -1, -1])",
    "io_inp": [
      -2,
      -3,
      0,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5, -3, -4, 2]\noutput : list = [-12, -13, -11, -12, -6]",
    "output": "generated_output : list = take(reverse(add_n(reverse(sub_n([-4, -5, -3, -4, 2],3)),-5)),41)",
    "io_inp": [
      -4,
      -5,
      -3,
      -4,
      2
    ],
    "io_out": [
      -12,
      -13,
      -11,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(sub_n(input,3)),-5)),41)"
  },
  {
    "input": "input : list = [3, 0, -5, 2, 2, -1]\noutput : list = [4, -20, -20, 36, -4, -28]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(mul_n([3, 0, -5, 2, 2, -1],2),15)),1),-4)",
    "io_inp": [
      3,
      0,
      -5,
      2,
      2,
      -1
    ],
    "io_out": [
      4,
      -20,
      -20,
      36,
      -4,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(mul_n(input,2),15)),1),-4)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-15, -6]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(reverse([-4, 5])),4),-2),-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -15,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(reverse(input)),4),-2),-5)"
  },
  {
    "input": "input : list = [4, -1, 1, -3, 1, 3]\noutput : list = [-3, 1, 3]",
    "output": "generated_output : list = sort_asc(drop([4, -1, 1, -3, 1, 3],3))",
    "io_inp": [
      4,
      -1,
      1,
      -3,
      1,
      3
    ],
    "io_out": [
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(mul_n([-5, -3],2),3),2)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(mul_n(input,2),3),2)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [7, 8]",
    "output": "generated_output : list = sub_n([3, 4],-4)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [4, 1, -5, 2]\noutput : list = [6, 0, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n(mul_n([4, 1, -5, 2],-1),1),-2)))",
    "io_inp": [
      4,
      1,
      -5,
      2
    ],
    "io_out": [
      6,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(mul_n(input,-1),1),-2)))"
  },
  {
    "input": "input : list = [-1, 1, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = drop([-1, 1, -3],1)",
    "io_inp": [
      -1,
      1,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -3, 3, 0, 1]\noutput : list = [-20, -12, 0, 4, 12]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des([-5, -3, 3, 0, 1]),4))))",
    "io_inp": [
      -5,
      -3,
      3,
      0,
      1
    ],
    "io_out": [
      -20,
      -12,
      0,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-45, 45]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_des([3, -3])),-5)),3)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -45,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_des(input)),-5)),3)"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [0, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(add_n([1, 4, -3],-2),17),5)))",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(add_n(input,-2),17),5)))"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = sort_des([0, -2, 4])",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(reverse(reverse(take(add_n([-1, 1],-4),1))))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(add_n(input,-4),1))))"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [-6, -3, -2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_asc([-2, 1, 2]),-1),-3)),1)",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_asc(input),-1),-3)),1)"
  },
  {
    "input": "input : list = [3, 4, 2, -1, -5]\noutput : list = [25, 5, -10, -20, -15]",
    "output": "generated_output : list = mul_n(reverse([3, 4, 2, -1, -5]),-5)",
    "io_inp": [
      3,
      4,
      2,
      -1,
      -5
    ],
    "io_out": [
      25,
      5,
      -10,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [1, -5, 3, 0, 4, 0]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(drop(drop([1, -5, 3, 0, 4, 0],2),3),-1)",
    "io_inp": [
      1,
      -5,
      3,
      0,
      4,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(drop(input,2),3),-1)"
  },
  {
    "input": "input : list = [3, 3, -3, -3, 3, -2]\noutput : list = [-1, 9, -3, -3, 9, 9]",
    "output": "generated_output : list = add_n(sub_n(reverse(mul_n(add_n([3, 3, -3, -3, 3, -2],-2),2)),-2),5)",
    "io_inp": [
      3,
      3,
      -3,
      -3,
      3,
      -2
    ],
    "io_out": [
      -1,
      9,
      -3,
      -3,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(mul_n(add_n(input,-2),2)),-2),5)"
  },
  {
    "input": "input : list = [2, -3, 0, 5, 1]\noutput : list = [6, 1, 4, 9, 5]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(sub_n([2, -3, 0, 5, 1],-5),1)),-2))",
    "io_inp": [
      2,
      -3,
      0,
      5,
      1
    ],
    "io_out": [
      6,
      1,
      4,
      9,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(sub_n(input,-5),1)),-2))"
  },
  {
    "input": "input : list = [1, -3, 0, -1, 4]\noutput : list = [0, -10, -8, -14, -6]",
    "output": "generated_output : list = add_n(take(mul_n(add_n(reverse([1, -3, 0, -1, 4]),-5),2),27),2)",
    "io_inp": [
      1,
      -3,
      0,
      -1,
      4
    ],
    "io_out": [
      0,
      -10,
      -8,
      -14,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(add_n(reverse(input),-5),2),27),2)"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [45, 60, 75]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(reverse([-3, -4, -5]),5),-3)))",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      45,
      60,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(reverse(input),5),-3)))"
  },
  {
    "input": "input : list = [4, 5, -2, -4, -3]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take([4, 5, -2, -4, -3],2)))",
    "io_inp": [
      4,
      5,
      -2,
      -4,
      -3
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [4, 5, -4, 5, -2]\noutput : list = [7, 7, 6, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([4, 5, -4, 5, -2],-1)),-1)",
    "io_inp": [
      4,
      5,
      -4,
      5,
      -2
    ],
    "io_out": [
      7,
      7,
      6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-1)),-1)"
  },
  {
    "input": "input : list = [-4, -5, 2, -1]\noutput : list = [-7, -8, -1, -4]",
    "output": "generated_output : list = add_n([-4, -5, 2, -1],-3)",
    "io_inp": [
      -4,
      -5,
      2,
      -1
    ],
    "io_out": [
      -7,
      -8,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(reverse([-4, -4])),18)),-4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(reverse(input)),18)),-4)"
  },
  {
    "input": "input : list = [-4, 3, -2, 1]\noutput : list = [17, 9, -3, -11]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(sort_asc([-4, 3, -2, 1]),4),-2),3))",
    "io_inp": [
      -4,
      3,
      -2,
      1
    ],
    "io_out": [
      17,
      9,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(sort_asc(input),4),-2),3))"
  },
  {
    "input": "input : list = [-4, -4, 3, -1]\noutput : list = [-4, -4, -1, 3]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(sort_des([-4, -4, 3, -1]))),42))",
    "io_inp": [
      -4,
      -4,
      3,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(sort_des(input))),42))"
  },
  {
    "input": "input : list = [3, -1, 1, 3, -4, -3]\noutput : list = [0, 1, 3, 5, 7, 7]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(reverse([3, -1, 1, 3, -4, -3])))),-4)",
    "io_inp": [
      3,
      -1,
      1,
      3,
      -4,
      -3
    ],
    "io_out": [
      0,
      1,
      3,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [4, -3, -3, -3, -3, -5]\noutput : list = [28, 18, 18, 18, 18, -17]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n([4, -3, -3, -3, -3, -5],-5))),3)",
    "io_inp": [
      4,
      -3,
      -3,
      -3,
      -3,
      -5
    ],
    "io_out": [
      28,
      18,
      18,
      18,
      18,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(input,-5))),3)"
  },
  {
    "input": "input : list = [-2, 3, 0, 4]\noutput : list = [5, 8, 9]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(drop([-2, 3, 0, 4],1)),9)),-5)",
    "io_inp": [
      -2,
      3,
      0,
      4
    ],
    "io_out": [
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(drop(input,1)),9)),-5)"
  },
  {
    "input": "input : list = [-3, -4, 2, 4]\noutput : list = [-1, -2, 4, 6]",
    "output": "generated_output : list = sub_n([-3, -4, 2, 4],-2)",
    "io_inp": [
      -3,
      -4,
      2,
      4
    ],
    "io_out": [
      -1,
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [-7, -1, 2]",
    "output": "generated_output : list = sub_n(sort_asc([4, 1, -5]),2)",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      -7,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(sub_n([-2, -4],3)),7),2))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(sub_n(input,3)),7),2))"
  },
  {
    "input": "input : list = [3, 3, 3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(drop([3, 3, 3, 4],2))),11))",
    "io_inp": [
      3,
      3,
      3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(drop(input,2))),11))"
  },
  {
    "input": "input : list = [-2, 0, 4, 2, 3]\noutput : list = [4, 3, 2, 0, -2]",
    "output": "generated_output : list = sort_des([-2, 0, 4, 2, 3])",
    "io_inp": [
      -2,
      0,
      4,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2, -3, 1, 2, 1]\noutput : list = [128]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(sub_n([-3, -2, -3, 1, 2, 1],5),1),-4),4))",
    "io_inp": [
      -3,
      -2,
      -3,
      1,
      2,
      1
    ],
    "io_out": [
      128
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(sub_n(input,5),1),-4),4))"
  },
  {
    "input": "input : list = [5, -4, -2, -4, 1, 3]\noutput : list = [-5, -7, -9, -12, -14, -14]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(sub_n([5, -4, -2, -4, 1, 3],2))),4),-4)",
    "io_inp": [
      5,
      -4,
      -2,
      -4,
      1,
      3
    ],
    "io_out": [
      -5,
      -7,
      -9,
      -12,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(sub_n(input,2))),4),-4)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des(sort_asc([-5, -1])),-5),1),-5)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(sort_asc(input)),-5),1),-5)"
  },
  {
    "input": "input : list = [-3, 1, 1, -4, 1, 4]\noutput : list = [-3, -6, -11, -6, -6, -10]",
    "output": "generated_output : list = take(take(add_n(reverse(add_n([-3, 1, 1, -4, 1, 4],-5)),-2),14),9)",
    "io_inp": [
      -3,
      1,
      1,
      -4,
      1,
      4
    ],
    "io_out": [
      -3,
      -6,
      -11,
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(add_n(input,-5)),-2),14),9)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_des([0, 5])))),3)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [-3, 1, -5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = drop([-3, 1, -5, -3],2)",
    "io_inp": [
      -3,
      1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [0, 4, 9]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(sort_asc([-4, 0, 5]))),4),21)",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      0,
      4,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(sort_asc(input))),4),21)"
  },
  {
    "input": "input : list = [2, -5, 2, -4, 1, 4]\noutput : list = [-5, 2, -4, 1, 4]",
    "output": "generated_output : list = drop([2, -5, 2, -4, 1, 4],1)",
    "io_inp": [
      2,
      -5,
      2,
      -4,
      1,
      4
    ],
    "io_out": [
      -5,
      2,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 2, -5, 4]\noutput : list = [3, 10, 11, 12]",
    "output": "generated_output : list = take(sort_asc(sort_asc(add_n(sub_n([3, 2, -5, 4],-4),4))),15)",
    "io_inp": [
      3,
      2,
      -5,
      4
    ],
    "io_out": [
      3,
      10,
      11,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(add_n(sub_n(input,-4),4))),15)"
  },
  {
    "input": "input : list = [1, -2, -4, 2, 0, 3]\noutput : list = [-6, -4, -2, -1, 0, 1]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(sort_asc([1, -2, -4, 2, 0, 3])),3)),-5)",
    "io_inp": [
      1,
      -2,
      -4,
      2,
      0,
      3
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(sort_asc(input)),3)),-5)"
  },
  {
    "input": "input : list = [0, -5, 1, 0]\noutput : list = [-22, 3, 3, 8]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(mul_n([0, -5, 1, 0],5))),-3))",
    "io_inp": [
      0,
      -5,
      1,
      0
    ],
    "io_out": [
      -22,
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(mul_n(input,5))),-3))"
  },
  {
    "input": "input : list = [-5, 3, -5, -1, -1, -4]\noutput : list = [0, -4, -4, -7, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-5, 3, -5, -1, -1, -4])),3)",
    "io_inp": [
      -5,
      3,
      -5,
      -1,
      -1,
      -4
    ],
    "io_out": [
      0,
      -4,
      -4,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),3)"
  },
  {
    "input": "input : list = [-5, -2, 2, -1, -4]\noutput : list = [-9, -13, -16]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(take([-5, -2, 2, -1, -4],3),-4),-4),-3))",
    "io_inp": [
      -5,
      -2,
      2,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -13,
      -16
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(take(input,3),-4),-4),-3))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 60]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n([0, -4],4),1),-4)))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n(input,4),1),-4)))"
  },
  {
    "input": "input : list = [-5, 5, -5, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(take([-5, 5, -5, 0],1),1),7),4))",
    "io_inp": [
      -5,
      5,
      -5,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(take(input,1),1),7),4))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [5, -3]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n([-4, 0],2)),5),28)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(input,2)),5),28)"
  },
  {
    "input": "input : list = [-5, 4, 0, 3, -2, 1]\noutput : list = [6, -6, 14, 2, 18, -18]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-5, 4, 0, 3, -2, 1],4),-2))",
    "io_inp": [
      -5,
      4,
      0,
      3,
      -2,
      1
    ],
    "io_out": [
      6,
      -6,
      14,
      2,
      18,
      -18
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,4),-2))"
  },
  {
    "input": "input : list = [0, 2, 4, 2, -3]\noutput : list = [-7, 13, 21, 13]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(drop([0, 2, 4, 2, -3],1),4)),-4),-1)",
    "io_inp": [
      0,
      2,
      4,
      2,
      -3
    ],
    "io_out": [
      -7,
      13,
      21,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(drop(input,1),4)),-4),-1)"
  },
  {
    "input": "input : list = [5, -5, -4, -2, -4]\noutput : list = [-20, 20, 16, 8, 16]",
    "output": "generated_output : list = take(mul_n([5, -5, -4, -2, -4],-4),8)",
    "io_inp": [
      5,
      -5,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -20,
      20,
      16,
      8,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),8)"
  },
  {
    "input": "input : list = [5, 4, 2, -5]\noutput : list = [6, 5, 3, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(add_n([5, 4, 2, -5],1)))))",
    "io_inp": [
      5,
      4,
      2,
      -5
    ],
    "io_out": [
      6,
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(add_n(input,1)))))"
  },
  {
    "input": "input : list = [5, -1, 5]\noutput : list = [1, -5]",
    "output": "generated_output : list = take(take(sub_n(reverse(sub_n([5, -1, 5],5)),-1),27),2)",
    "io_inp": [
      5,
      -1,
      5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(sub_n(input,5)),-1),27),2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [3, 1]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(reverse([1, -1])),19),3),5)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(reverse(input)),19),3),5)"
  },
  {
    "input": "input : list = [4, 1, -4, 5, 0, -5]\noutput : list = [-125, -100, -25, 0, 100, 125]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des([4, 1, -4, 5, 0, -5]),11),5),-5)",
    "io_inp": [
      4,
      1,
      -4,
      5,
      0,
      -5
    ],
    "io_out": [
      -125,
      -100,
      -25,
      0,
      100,
      125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(input),11),5),-5)"
  },
  {
    "input": "input : list = [-1, -4, 3, -3, 5, -2]\noutput : list = [-14, -13, -12, -11, -7, -5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(sub_n([-1, -4, 3, -3, 5, -2],3)),-3),-4))",
    "io_inp": [
      -1,
      -4,
      3,
      -3,
      5,
      -2
    ],
    "io_out": [
      -14,
      -13,
      -12,
      -11,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(sub_n(input,3)),-3),-4))"
  },
  {
    "input": "input : list = [-2, -5, -1, -4, 5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = take(take([-2, -5, -1, -4, 5],2),7)",
    "io_inp": [
      -2,
      -5,
      -1,
      -4,
      5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,2),7)"
  },
  {
    "input": "input : list = [-1, 2, 5, 5, 2, -2]\noutput : list = [-2, 1, 4, 4, 1, -3]",
    "output": "generated_output : list = sub_n([-1, 2, 5, 5, 2, -2],1)",
    "io_inp": [
      -1,
      2,
      5,
      5,
      2,
      -2
    ],
    "io_out": [
      -2,
      1,
      4,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, -4, 5, -5, 0]\noutput : list = [-20, -16, -8, 0, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-2, -4, 5, -5, 0]),4))",
    "io_inp": [
      -2,
      -4,
      5,
      -5,
      0
    ],
    "io_out": [
      -20,
      -16,
      -8,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),4))"
  },
  {
    "input": "input : list = [5, -1, 4, 2, 4]\noutput : list = [5, -1, 4, 2, 4]",
    "output": "generated_output : list = take(reverse(reverse([5, -1, 4, 2, 4])),14)",
    "io_inp": [
      5,
      -1,
      4,
      2,
      4
    ],
    "io_out": [
      5,
      -1,
      4,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),14)"
  },
  {
    "input": "input : list = [2, -5, 4, 0, -3]\noutput : list = [2, -5, 4]",
    "output": "generated_output : list = take(take([2, -5, 4, 0, -3],3),6)",
    "io_inp": [
      2,
      -5,
      4,
      0,
      -3
    ],
    "io_out": [
      2,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(take(input,3),6)"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [-4, -4, 2]",
    "output": "generated_output : list = add_n([-2, -2, 4],-2)",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 3, -1]\noutput : list = [-2, -6, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(add_n([-3, 3, -1],4),-4))),5)",
    "io_inp": [
      -3,
      3,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(add_n(input,4),-4))),5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [20, 10]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_des([-4, -2]))),-5))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      20,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-15, 10]",
    "output": "generated_output : list = mul_n(sort_asc([-3, 2]),5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = drop([0, 4, -1],1)",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -5, 4]\noutput : list = [-5, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(sort_des([5, -5, 4])))))",
    "io_inp": [
      5,
      -5,
      4
    ],
    "io_out": [
      -5,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, -1, -5, 5]\noutput : list = [-9, -19, -15, -15]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse([-1, -1, -5, 5]),5),4),-5)",
    "io_inp": [
      -1,
      -1,
      -5,
      5
    ],
    "io_out": [
      -9,
      -19,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(input),5),4),-5)"
  },
  {
    "input": "input : list = [-3, -5, 2, 2, 4]\noutput : list = [-59, -35, 25, 25, 49]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(sort_asc([-3, -5, 2, 2, 4]),3),4),-1),6)",
    "io_inp": [
      -3,
      -5,
      2,
      2,
      4
    ],
    "io_out": [
      -59,
      -35,
      25,
      25,
      49
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(sort_asc(input),3),4),-1),6)"
  },
  {
    "input": "input : list = [-3, -5, 3]\noutput : list = [9, 3, 1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(sort_des([-3, -5, 3])),-4),-2))",
    "io_inp": [
      -3,
      -5,
      3
    ],
    "io_out": [
      9,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(sort_des(input)),-4),-2))"
  },
  {
    "input": "input : list = [-4, -2, 0, -4, 4, 5]\noutput : list = [225, 200, 100, 50, 0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sub_n([-4, -2, 0, -4, 4, 5],-4)),-5)),-5)",
    "io_inp": [
      -4,
      -2,
      0,
      -4,
      4,
      5
    ],
    "io_out": [
      225,
      200,
      100,
      50,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sub_n(input,-4)),-5)),-5)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc([3, 5])),14))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(input)),14))"
  },
  {
    "input": "input : list = [-4, 3, 5, 1, 5, 0]\noutput : list = [0, 5, 1, 5, 3, -4]",
    "output": "generated_output : list = mul_n(reverse([-4, 3, 5, 1, 5, 0]),1)",
    "io_inp": [
      -4,
      3,
      5,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      1,
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(add_n([-1, -5],-2),1)),-1),1)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(add_n(input,-2),1)),-1),1)"
  },
  {
    "input": "input : list = [0, 1, -4]\noutput : list = [-1, -2, -6]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(sub_n([0, 1, -4],1),-1),-1)),1)",
    "io_inp": [
      0,
      1,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(sub_n(input,1),-1),-1)),1)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(sort_des([5, 4])))))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, 5, 3]\noutput : list = [-3, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n([2, 5, 3],5)))),3)",
    "io_inp": [
      2,
      5,
      3
    ],
    "io_out": [
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n(input,5)))),3)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [3, -5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_des([4, 0])),2)),5)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_des(input)),2)),5)"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [-3, 7, 7]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(add_n([5, 5, -5],2))),28))",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      -3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(add_n(input,2))),28))"
  },
  {
    "input": "input : list = [-5, -2, -4]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -2, -4],1)",
    "io_inp": [
      -5,
      -2,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 4, -5, 5, -1, -1]\noutput : list = [-13, 11, -16, 14, -4, -4]",
    "output": "generated_output : list = sub_n(take(mul_n([-4, 4, -5, 5, -1, -1],3),24),1)",
    "io_inp": [
      -4,
      4,
      -5,
      5,
      -1,
      -1
    ],
    "io_out": [
      -13,
      11,
      -16,
      14,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,3),24),1)"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [-1, 4, 8]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_des([4, 0, -5])))),4)",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      -1,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_des(input)))),4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(sub_n([-3, -4],-1)),20)))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(sub_n(input,-1)),20)))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = mul_n(reverse([-1, -1]),3)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -8]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n([-3, -4],5),-2),2))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(input,5),-2),2))"
  },
  {
    "input": "input : list = [2, 1, 3, -2, -5]\noutput : list = [-7, -4, -1, 0, 1]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(sort_des([2, 1, 3, -2, -5])))),-2)",
    "io_inp": [
      2,
      1,
      3,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -4,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [13, -7]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(mul_n([-2, 3],-4),-4),1)),-1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      13,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(mul_n(input,-4),-4),1)),-1)"
  },
  {
    "input": "input : list = [1, 0, 3, -4, 1]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 0, 3, -4, 1],1)",
    "io_inp": [
      1,
      0,
      3,
      -4,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sub_n([-2, -5],-1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(reverse(sort_des([-1, 3])))),-2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(reverse(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [-5, 2, -2, -1]\noutput : list = [-2, 1, 2, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(mul_n([-5, 2, -2, -1],-1)))),38)",
    "io_inp": [
      -5,
      2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(mul_n(input,-1)))),38)"
  },
  {
    "input": "input : list = [-2, 1, 4, 5]\noutput : list = [5, 4, 1, -2]",
    "output": "generated_output : list = mul_n(sort_des([-2, 1, 4, 5]),1)",
    "io_inp": [
      -2,
      1,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-1, -5, 3, 4, 5, -2]\noutput : list = [6, 5, 4, 0, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_asc([-1, -5, 3, 4, 5, -2]),1),-2),4))",
    "io_inp": [
      -1,
      -5,
      3,
      4,
      5,
      -2
    ],
    "io_out": [
      6,
      5,
      4,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_asc(input),1),-2),4))"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [-6, -2, 10]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(mul_n([-1, -3, 5],2))),4))",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      -6,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(mul_n(input,2))),4))"
  },
  {
    "input": "input : list = [4, -4, 0, -3]\noutput : list = [0, -4, -7, -8]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(sort_asc([4, -4, 0, -3])),23),5),1)",
    "io_inp": [
      4,
      -4,
      0,
      -3
    ],
    "io_out": [
      0,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(sort_asc(input)),23),5),1)"
  },
  {
    "input": "input : list = [5, -4, 0, 0, -5, 3]\noutput : list = [3, 1, -2, -2, -6, -7]",
    "output": "generated_output : list = take(add_n(add_n(take(sort_des([5, -4, 0, 0, -5, 3]),11),-3),1),44)",
    "io_inp": [
      5,
      -4,
      0,
      0,
      -5,
      3
    ],
    "io_out": [
      3,
      1,
      -2,
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(sort_des(input),11),-3),1),44)"
  },
  {
    "input": "input : list = [4, -5, -5]\noutput : list = [10, 1, 1]",
    "output": "generated_output : list = take(take(take(sub_n(sub_n([4, -5, -5],-5),-1),12),29),12)",
    "io_inp": [
      4,
      -5,
      -5
    ],
    "io_out": [
      10,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(sub_n(input,-5),-1),12),29),12)"
  },
  {
    "input": "input : list = [4, 2, -2, 1, 2, -2]\noutput : list = [5, 3, 3, 2, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(sub_n([4, 2, -2, 1, 2, -2],-4)),1),-3))",
    "io_inp": [
      4,
      2,
      -2,
      1,
      2,
      -2
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(sub_n(input,-4)),1),-3))"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [8, -4, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n([1, -2, 1],-4)),-1),1)",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(input,-4)),-1),1)"
  },
  {
    "input": "input : list = [5, 3, -3, 2]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc([5, 3, -3, 2])),2))",
    "io_inp": [
      5,
      3,
      -3,
      2
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(input)),2))"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [10, -5, -14]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(mul_n([1, 4, -4],-3)))),-2)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      10,
      -5,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(mul_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [-2, -5, 3, 4, -4, 2]\noutput : list = [-5, -4, -2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([-2, -5, 3, 4, -4, 2])",
    "io_inp": [
      -2,
      -5,
      3,
      4,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [2, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(add_n([0, -2, 3],4)))))",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(add_n(input,4)))))"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [1, 3, 1]",
    "output": "generated_output : list = sub_n(add_n([0, 2, 0],5),4)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      1,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),4)"
  },
  {
    "input": "input : list = [-2, 0, 4, 3, -1]\noutput : list = [-3, -2, -1, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(reverse([-2, 0, 4, 3, -1]),-3),-4)))",
    "io_inp": [
      -2,
      0,
      4,
      3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(reverse(input),-3),-4)))"
  },
  {
    "input": "input : list = [2, -5, 4, 5, -4, 1]\noutput : list = [1, -4, 5, 4, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 4, 5, -4, 1])",
    "io_inp": [
      2,
      -5,
      4,
      5,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      5,
      4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5, 3, 2, -2, 4]\noutput : list = [-4, -10, 6, 4, -4, 8]",
    "output": "generated_output : list = mul_n([-2, -5, 3, 2, -2, 4],2)",
    "io_inp": [
      -2,
      -5,
      3,
      2,
      -2,
      4
    ],
    "io_out": [
      -4,
      -10,
      6,
      4,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [1, -2, -2]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des([1, -2, -2]),1)))",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(input),1)))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n([-4, 1],-1)))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(reverse([-1, -3]),3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),3)"
  },
  {
    "input": "input : list = [0, 2, -2, 1, 5]\noutput : list = [0, 2, -2]",
    "output": "generated_output : list = take([0, 2, -2, 1, 5],3)",
    "io_inp": [
      0,
      2,
      -2,
      1,
      5
    ],
    "io_out": [
      0,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-20, -4]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(sort_des([-5, -1])),4)),1)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -20,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(sort_des(input)),4)),1)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [21, 17]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(sort_des([4, 5]),2),2),14),1)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      21,
      17
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(sort_des(input),2),2),14),1)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sub_n(reverse([2, -1]),4)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [2, 5, 1, 5, 3, -2]\noutput : list = [-2, 1, 2, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([2, 5, 1, 5, 3, -2])",
    "io_inp": [
      2,
      5,
      1,
      5,
      3,
      -2
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 2, -1]\noutput : list = [-11, -10, -13]",
    "output": "generated_output : list = sub_n(add_n(sub_n([1, 2, -1],5),-2),5)",
    "io_inp": [
      1,
      2,
      -1
    ],
    "io_out": [
      -11,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,5),-2),5)"
  },
  {
    "input": "input : list = [3, 5, 5, 2, -4]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_des(take(take([3, 5, 5, 2, -4],1),11)),-1)",
    "io_inp": [
      3,
      5,
      5,
      2,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(input,1),11)),-1)"
  },
  {
    "input": "input : list = [1, -5, -2, 0, 0, -1]\noutput : list = [-35, -5, -5, 25, 55, 145]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(mul_n([1, -5, -2, 0, 0, -1],-3)),5),2),-5)",
    "io_inp": [
      1,
      -5,
      -2,
      0,
      0,
      -1
    ],
    "io_out": [
      -35,
      -5,
      -5,
      25,
      55,
      145
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(mul_n(input,-3)),5),2),-5)"
  },
  {
    "input": "input : list = [-1, -3, 0, 1, -2]\noutput : list = [-14, -23, -20, -11, -17]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n([-1, -3, 0, 1, -2],-5),-3)),-5)",
    "io_inp": [
      -1,
      -3,
      0,
      1,
      -2
    ],
    "io_out": [
      -14,
      -23,
      -20,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(input,-5),-3)),-5)"
  },
  {
    "input": "input : list = [-2, -1, -3]\noutput : list = [4, 12, 8]",
    "output": "generated_output : list = mul_n(reverse(add_n([-2, -1, -3],4)),4)",
    "io_inp": [
      -2,
      -1,
      -3
    ],
    "io_out": [
      4,
      12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,4)),4)"
  },
  {
    "input": "input : list = [3, 5, 5, -4, 5, 5]\noutput : list = [-4, 3, 5, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse([3, 5, 5, -4, 5, 5]))),1))",
    "io_inp": [
      3,
      5,
      5,
      -4,
      5,
      5
    ],
    "io_out": [
      -4,
      3,
      5,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [8, 20, 32]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(reverse([3, -3, 0])),5),4))",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      8,
      20,
      32
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(reverse(input)),5),4))"
  },
  {
    "input": "input : list = [4, 0, 2, 4, -2, 0]\noutput : list = [-2, 0, 0, 2, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([4, 0, 2, 4, -2, 0])))",
    "io_inp": [
      4,
      0,
      2,
      4,
      -2,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, 4, -1, 2, 4, -2]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = sort_des(sort_asc(take([5, 4, -1, 2, 4, -2],3)))",
    "io_inp": [
      5,
      4,
      -1,
      2,
      4,
      -2
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,3)))"
  },
  {
    "input": "input : list = [3, 5, 1, 1]\noutput : list = [-9, -9, -45, -27]",
    "output": "generated_output : list = mul_n(mul_n(reverse([3, 5, 1, 1]),3),-3)",
    "io_inp": [
      3,
      5,
      1,
      1
    ],
    "io_out": [
      -9,
      -9,
      -45,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),3),-3)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [-13]",
    "output": "generated_output : list = drop(add_n(sort_des(reverse(mul_n([3, -2, -5],3))),2),2)",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_des(reverse(mul_n(input,3))),2),2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [7, 8]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(add_n([5, 4],5))),-3),5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(add_n(input,5))),-3),5)"
  },
  {
    "input": "input : list = [4, 2, 2, -5, 3, -1]\noutput : list = [4, 7, 10, 10, 19, 31]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(sort_des([4, 2, 2, -5, 3, -1]),5),-3),-1))",
    "io_inp": [
      4,
      2,
      2,
      -5,
      3,
      -1
    ],
    "io_out": [
      4,
      7,
      10,
      10,
      19,
      31
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(sort_des(input),5),-3),-1))"
  },
  {
    "input": "input : list = [2, -2, 0, -1]\noutput : list = [-7, -6, -5, -3]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(add_n([2, -2, 0, -1],-1)),-4),1))",
    "io_inp": [
      2,
      -2,
      0,
      -1
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(add_n(input,-1)),-4),1))"
  },
  {
    "input": "input : list = [0, 3, 1]\noutput : list = [-2, -6, 0]",
    "output": "generated_output : list = mul_n(reverse([0, 3, 1]),-2)",
    "io_inp": [
      0,
      3,
      1
    ],
    "io_out": [
      -2,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [0, -2, -5, -2]\noutput : list = [0, 2, 5, 2]",
    "output": "generated_output : list = mul_n([0, -2, -5, -2],-1)",
    "io_inp": [
      0,
      -2,
      -5,
      -2
    ],
    "io_out": [
      0,
      2,
      5,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [-20, -4, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([-1, 3, -5])),4)",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      -20,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),4)"
  },
  {
    "input": "input : list = [-3, 5, -3, 2, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take(take(add_n(take([-3, 5, -3, 2, 0],1),1),12),17)",
    "io_inp": [
      -3,
      5,
      -3,
      2,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(input,1),1),12),17)"
  },
  {
    "input": "input : list = [1, -4, 3, 0]\noutput : list = [18, 8, 22, 16]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n([1, -4, 3, 0],5),2),-4),-2)",
    "io_inp": [
      1,
      -4,
      3,
      0
    ],
    "io_out": [
      18,
      8,
      22,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(input,5),2),-4),-2)"
  },
  {
    "input": "input : list = [-4, -5, 2, 5, -1, 1]\noutput : list = [16, 20, -8, -20, 4, -4]",
    "output": "generated_output : list = mul_n([-4, -5, 2, 5, -1, 1],-4)",
    "io_inp": [
      -4,
      -5,
      2,
      5,
      -1,
      1
    ],
    "io_out": [
      16,
      20,
      -8,
      -20,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, 0, -1, -4, 0]\noutput : list = [20, 5, 0, 0, -5]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse([1, 0, -1, -4, 0]),-5)),9)",
    "io_inp": [
      1,
      0,
      -1,
      -4,
      0
    ],
    "io_out": [
      20,
      5,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(input),-5)),9)"
  },
  {
    "input": "input : list = [-2, 4, 1, -2, 2, 3]\noutput : list = [-24, -20, -4, -16, -28, -4]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n([-2, 4, 1, -2, 2, 3],-3),-4)),18)",
    "io_inp": [
      -2,
      4,
      1,
      -2,
      2,
      3
    ],
    "io_out": [
      -24,
      -20,
      -4,
      -16,
      -28,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(input,-3),-4)),18)"
  },
  {
    "input": "input : list = [-1, 1, 3, -2]\noutput : list = [0, -2, -4, -5]",
    "output": "generated_output : list = add_n(sort_des([-1, 1, 3, -2]),-3)",
    "io_inp": [
      -1,
      1,
      3,
      -2
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-2, -2, -1, -5, 3, -5]\noutput : list = [-7, -7, -6, -10, -2, -10]",
    "output": "generated_output : list = add_n(add_n([-2, -2, -1, -5, 3, -5],-3),-2)",
    "io_inp": [
      -2,
      -2,
      -1,
      -5,
      3,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -10,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),-2)"
  },
  {
    "input": "input : list = [-1, 2, 4, -1, 5, 5]\noutput : list = [5, 5, 4, 2, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des([-1, 2, 4, -1, 5, 5]))",
    "io_inp": [
      -1,
      2,
      4,
      -1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(take([5, 3, -5],1),-4),5)),-4)",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(take(input,1),-4),5)),-4)"
  },
  {
    "input": "input : list = [-3, 3, 5, -3, -3]\noutput : list = [-5, -3, 3, 3, 3]",
    "output": "generated_output : list = take(take(reverse(mul_n(sort_asc([-3, 3, 5, -3, -3]),-1)),14),22)",
    "io_inp": [
      -3,
      3,
      5,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(sort_asc(input),-1)),14),22)"
  },
  {
    "input": "input : list = [-3, -1, -1, 0]\noutput : list = [0, -1, -1, -3]",
    "output": "generated_output : list = take(sort_des(take(reverse(reverse([-3, -1, -1, 0])),9)),22)",
    "io_inp": [
      -3,
      -1,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(reverse(input)),9)),22)"
  },
  {
    "input": "input : list = [-3, 2, 4, 4]\noutput : list = [-14, -14, -10, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(reverse([-3, 2, 4, 4]),9),3)),-2)",
    "io_inp": [
      -3,
      2,
      4,
      4
    ],
    "io_out": [
      -14,
      -14,
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(reverse(input),9),3)),-2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-12, -6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(mul_n([3, -3],-1),5))),-4)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(mul_n(input,-1),5))),-4)"
  },
  {
    "input": "input : list = [1, -4, 0, 4, -2, -3]\noutput : list = [2, 27, 7, -13, 17, 22]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(mul_n([1, -4, 0, 4, -2, -3],5),-4),-3),15),-1)",
    "io_inp": [
      1,
      -4,
      0,
      4,
      -2,
      -3
    ],
    "io_out": [
      2,
      27,
      7,
      -13,
      17,
      22
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(mul_n(input,5),-4),-3),15),-1)"
  },
  {
    "input": "input : list = [5, 5, -4, 2]\noutput : list = [3, 3, 0, -6]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(reverse([5, 5, -4, 2]),2))))",
    "io_inp": [
      5,
      5,
      -4,
      2
    ],
    "io_out": [
      3,
      3,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [-5, -5, 4, -1, 1, 5]\noutput : list = [14, 14, 10, 8, 5, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(mul_n([-5, -5, 4, -1, 1, 5],-1))),-4),5)",
    "io_inp": [
      -5,
      -5,
      4,
      -1,
      1,
      5
    ],
    "io_out": [
      14,
      14,
      10,
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(mul_n(input,-1))),-4),5)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [4, -1]",
    "output": "generated_output : list = add_n([5, 0],-1)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -4, -3, -4, 1, -1]\noutput : list = [21, 21, 21, 17, 9, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(mul_n([-4, -4, -3, -4, 1, -1],-4),30)),5))",
    "io_inp": [
      -4,
      -4,
      -3,
      -4,
      1,
      -1
    ],
    "io_out": [
      21,
      21,
      21,
      17,
      9,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(mul_n(input,-4),30)),5))"
  },
  {
    "input": "input : list = [-4, -1, -3, -3, 4, 1]\noutput : list = [-36, -9, 9, 27, 27, 36]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n([-4, -1, -3, -3, 4, 1],3),-3))))",
    "io_inp": [
      -4,
      -1,
      -3,
      -3,
      4,
      1
    ],
    "io_out": [
      -36,
      -9,
      9,
      27,
      27,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n(input,3),-3))))"
  },
  {
    "input": "input : list = [5, 5, 3, 1, 2]\noutput : list = [-2, -1, 0, 2, 2]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(sort_des([5, 5, 3, 1, 2])),1),6),-2)",
    "io_inp": [
      5,
      5,
      3,
      1,
      2
    ],
    "io_out": [
      -2,
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(sort_des(input)),1),6),-2)"
  },
  {
    "input": "input : list = [-1, 3, -3, 4, -1]\noutput : list = [12, 8, 8, 0, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n(add_n([-1, 3, -3, 4, -1],-2),-2))),2)",
    "io_inp": [
      -1,
      3,
      -3,
      4,
      -1
    ],
    "io_out": [
      12,
      8,
      8,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(add_n(input,-2),-2))),2)"
  },
  {
    "input": "input : list = [2, -1, 1, 4, -1]\noutput : list = [2, 6, 8, 12, 12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc([2, -1, 1, 4, -1]),5),-2))",
    "io_inp": [
      2,
      -1,
      1,
      4,
      -1
    ],
    "io_out": [
      2,
      6,
      8,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(input),5),-2))"
  },
  {
    "input": "input : list = [5, -1, -4]\noutput : list = [7, 1, -11]",
    "output": "generated_output : list = sort_des(take(add_n(take(mul_n([5, -1, -4],-2),18),-1),6))",
    "io_inp": [
      5,
      -1,
      -4
    ],
    "io_out": [
      7,
      1,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(mul_n(input,-2),18),-1),6))"
  },
  {
    "input": "input : list = [0, -5, 4, 1]\noutput : list = [-9, -4, -3, 0]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(sub_n([0, -5, 4, 1],3),13),1)))",
    "io_inp": [
      0,
      -5,
      4,
      1
    ],
    "io_out": [
      -9,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(sub_n(input,3),13),1)))"
  },
  {
    "input": "input : list = [1, -3, 3, -4]\noutput : list = [-16, -12, 4, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([1, -3, 3, -4]),4))",
    "io_inp": [
      1,
      -3,
      3,
      -4
    ],
    "io_out": [
      -16,
      -12,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [-4, 24, 24]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(sort_asc([-4, 3, -4]),-3)),1),-4)",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      -4,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(sort_asc(input),-3)),1),-4)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [15, 12, -3]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([-1, 5, 4]),3))",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      15,
      12,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [-4, 4, 3, 5, -2, 2]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(drop(sub_n([-4, 4, 3, 5, -2, 2],-3),3),3))",
    "io_inp": [
      -4,
      4,
      3,
      5,
      -2,
      2
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(sub_n(input,-3),3),3))"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [8]",
    "output": "generated_output : list = drop(reverse(sub_n(sub_n(sub_n([4, 4, -2],-4),-4),4)),2)",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = drop(reverse(sub_n(sub_n(sub_n(input,-4),-4),4)),2)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sort_asc([-4, 4]),-1))))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [18, -18]",
    "output": "generated_output : list = reverse(add_n(mul_n(drop([4, -4, 5],1),4),-2))",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      18,
      -18
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(drop(input,1),4),-2))"
  },
  {
    "input": "input : list = [5, 1, -3, -4, -4, 0]\noutput : list = [0, 4, 8]",
    "output": "generated_output : list = drop(reverse(add_n([5, 1, -3, -4, -4, 0],3)),3)",
    "io_inp": [
      5,
      1,
      -3,
      -4,
      -4,
      0
    ],
    "io_out": [
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(input,3)),3)"
  },
  {
    "input": "input : list = [2, -1, -4, -3, 0]\noutput : list = [8, 5, 4]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(drop([2, -1, -4, -3, 0],2),5),3)),4)",
    "io_inp": [
      2,
      -1,
      -4,
      -3,
      0
    ],
    "io_out": [
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(drop(input,2),5),3)),4)"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take(take(take(sort_des([4, 2, -3]),7),1),34))",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(sort_des(input),7),1),34))"
  },
  {
    "input": "input : list = [0, -3, 3]\noutput : list = [3, 9]",
    "output": "generated_output : list = sub_n(take(add_n(take(drop([0, -3, 3],1),16),4),2),-2)",
    "io_inp": [
      0,
      -3,
      3
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(drop(input,1),16),4),2),-2)"
  },
  {
    "input": "input : list = [3, 1, 4, -1, -5, -2]\noutput : list = [6, 2, 8, -2, -10, -4]",
    "output": "generated_output : list = mul_n([3, 1, 4, -1, -5, -2],2)",
    "io_inp": [
      3,
      1,
      4,
      -1,
      -5,
      -2
    ],
    "io_out": [
      6,
      2,
      8,
      -2,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, -4, 3, 3]\noutput : list = [-6, -6, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc([-4, -4, 3, 3])),31),-2))",
    "io_inp": [
      -4,
      -4,
      3,
      3
    ],
    "io_out": [
      -6,
      -6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc(input)),31),-2))"
  },
  {
    "input": "input : list = [3, 5, -2, 0, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(sort_des([3, 5, -2, 0, 5]))),2))",
    "io_inp": [
      3,
      5,
      -2,
      0,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-65, -50, -50]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-4, -3, -3],3),-1),5)",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -65,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,3),-1),5)"
  },
  {
    "input": "input : list = [-5, 0, -3, 1, -1]\noutput : list = [30, 20, 10, 5, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(sub_n([-5, 0, -3, 1, -1],1)),-5),1))",
    "io_inp": [
      -5,
      0,
      -3,
      1,
      -1
    ],
    "io_out": [
      30,
      20,
      10,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(sub_n(input,1)),-5),1))"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take([5, 3, -3],1))",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [2, -2, 0, 0, -5, 4]\noutput : list = [3, 6, 8, 8, 10, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(sub_n([2, -2, 0, 0, -5, 4],-2),2),-4)))",
    "io_inp": [
      2,
      -2,
      0,
      0,
      -5,
      4
    ],
    "io_out": [
      3,
      6,
      8,
      8,
      10,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(sub_n(input,-2),2),-4)))"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [-2, 6, 10]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(mul_n([0, 2, 3],4),1),-2)))",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      -2,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(mul_n(input,4),1),-2)))"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [3, 5, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc([-3, -1, 5]),3),3))",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      3,
      5,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(input),3),3))"
  },
  {
    "input": "input : list = [-1, 1, 0, -1]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(take([-1, 1, 0, -1],1),-1))),5)",
    "io_inp": [
      -1,
      1,
      0,
      -1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(take(input,1),-1))),5)"
  },
  {
    "input": "input : list = [5, 3, 1, 5]\noutput : list = [5, 9]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(take([5, 3, 1, 5],2),2),-2),-1))",
    "io_inp": [
      5,
      3,
      1,
      5
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(take(input,2),2),-2),-1))"
  },
  {
    "input": "input : list = [-5, -3, -4]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(sub_n(sort_des(take(drop([-5, -3, -4],1),18)),-3),9)",
    "io_inp": [
      -5,
      -3,
      -4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(drop(input,1),18)),-3),9)"
  },
  {
    "input": "input : list = [-1, 1, 4]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(sort_des([-1, 1, 4])),16)))",
    "io_inp": [
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(sort_des(input)),16)))"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(sub_n([-1, 0, 1],3),-1),4)))",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(sub_n(input,3),-1),4)))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [8, -2]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(add_n([5, -5],-1),-4)),19))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(add_n(input,-1),-4)),19))"
  },
  {
    "input": "input : list = [-3, 1, 1, 5, 4, 1]\noutput : list = [-25, -5, -5, -5, 10, 15]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(add_n([-3, 1, 1, 5, 4, 1],-2)))),5)",
    "io_inp": [
      -3,
      1,
      1,
      5,
      4,
      1
    ],
    "io_out": [
      -25,
      -5,
      -5,
      -5,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(add_n(input,-2)))),5)"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([-1, 3, 2])))",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [-5, -4, 3]",
    "output": "generated_output : list = take(sort_asc([-4, 3, -5]),15)",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [-5, 2, 1, 1, -3, -4]\noutput : list = [-13, -6, -7, -7, -11, -12]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(sub_n([-5, 2, 1, 1, -3, -4],4))),-2),-2)",
    "io_inp": [
      -5,
      2,
      1,
      1,
      -3,
      -4
    ],
    "io_out": [
      -13,
      -6,
      -7,
      -7,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(sub_n(input,4))),-2),-2)"
  },
  {
    "input": "input : list = [-3, 3, -3, -1, 0, -2]\noutput : list = [4, 6, 5, 3, 9, 3]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(sub_n([-3, 3, -3, -1, 0, -2],-1)),-5)))",
    "io_inp": [
      -3,
      3,
      -3,
      -1,
      0,
      -2
    ],
    "io_out": [
      4,
      6,
      5,
      3,
      9,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(sub_n(input,-1)),-5)))"
  },
  {
    "input": "input : list = [4, -2, 2, 2, -4, -1]\noutput : list = [2, 0, 0, -4]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(take([4, -2, 2, 2, -4, -1],4))),2),28)",
    "io_inp": [
      4,
      -2,
      2,
      2,
      -4,
      -1
    ],
    "io_out": [
      2,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(take(input,4))),2),28)"
  },
  {
    "input": "input : list = [-2, -4, -1, -2]\noutput : list = [31, 37, 28, 31]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(sub_n([-2, -4, -1, -2],1),2),4),-3),4)",
    "io_inp": [
      -2,
      -4,
      -1,
      -2
    ],
    "io_out": [
      31,
      37,
      28,
      31
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(sub_n(input,1),2),4),-3),4)"
  },
  {
    "input": "input : list = [4, 5, 0, -4, 1, 5]\noutput : list = [-3, 1, 2, 5, 6, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(sort_des([4, 5, 0, -4, 1, 5]))),1),6)",
    "io_inp": [
      4,
      5,
      0,
      -4,
      1,
      5
    ],
    "io_out": [
      -3,
      1,
      2,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(sort_des(input))),1),6)"
  },
  {
    "input": "input : list = [-4, 1, 4, 0, 5]\noutput : list = [0, 5, 8, 4, 9]",
    "output": "generated_output : list = sub_n([-4, 1, 4, 0, 5],-4)",
    "io_inp": [
      -4,
      1,
      4,
      0,
      5
    ],
    "io_out": [
      0,
      5,
      8,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(take([2, -1, 4],1)),-5),3),-4)",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(take(input,1)),-5),3),-4)"
  },
  {
    "input": "input : list = [-5, -5, -3, 5, 4]\noutput : list = [25, 20, -15, -25, -25]",
    "output": "generated_output : list = mul_n(sort_des([-5, -5, -3, 5, 4]),5)",
    "io_inp": [
      -5,
      -5,
      -3,
      5,
      4
    ],
    "io_out": [
      25,
      20,
      -15,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-4, 1, 4, 3]\noutput : list = [3, 6, 5]",
    "output": "generated_output : list = sub_n(sub_n(drop([-4, 1, 4, 3],1),-5),3)",
    "io_inp": [
      -4,
      1,
      4,
      3
    ],
    "io_out": [
      3,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),-5),3)"
  },
  {
    "input": "input : list = [4, -3, -5, 3, 2]\noutput : list = [100, 60, -40, -60, -80]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(reverse([4, -3, -5, 3, 2])),1),5),-4)",
    "io_inp": [
      4,
      -3,
      -5,
      3,
      2
    ],
    "io_out": [
      100,
      60,
      -40,
      -60,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(reverse(input)),1),5),-4)"
  },
  {
    "input": "input : list = [4, 4, -4, -4]\noutput : list = [1, 1, -7, -7]",
    "output": "generated_output : list = sub_n([4, 4, -4, -4],3)",
    "io_inp": [
      4,
      4,
      -4,
      -4
    ],
    "io_out": [
      1,
      1,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [-18, -15, -6]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(reverse([-2, 1, -3]),3),3),19))",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      -18,
      -15,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(reverse(input),3),3),19))"
  },
  {
    "input": "input : list = [-2, 1, 4, 3, -1, -5]\noutput : list = [12, 9, 8, 6, 4, 3]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(mul_n([-2, 1, 4, 3, -1, -5],-1),-3)),4))",
    "io_inp": [
      -2,
      1,
      4,
      3,
      -1,
      -5
    ],
    "io_out": [
      12,
      9,
      8,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(mul_n(input,-1),-3)),4))"
  },
  {
    "input": "input : list = [-3, 0, 5, -3]\noutput : list = [11, 6, 3, 3]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse(add_n([-3, 0, 5, -3],4)),-5),-3))",
    "io_inp": [
      -3,
      0,
      5,
      -3
    ],
    "io_out": [
      11,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(add_n(input,4)),-5),-3))"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -3, 3],1)",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [-2, -47, 7]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n([0, -5, 1],-3))),-3),2)",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      -2,
      -47,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n(input,-3))),-3),2)"
  },
  {
    "input": "input : list = [-3, -2, -1, -1, -3, 3]\noutput : list = [40, 20, 20, 15, 10, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(reverse([-3, -2, -1, -1, -3, 3]),22)),-5),5)",
    "io_inp": [
      -3,
      -2,
      -1,
      -1,
      -3,
      3
    ],
    "io_out": [
      40,
      20,
      20,
      15,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(reverse(input),22)),-5),5)"
  },
  {
    "input": "input : list = [4, -4, 3, 0, -1, -3]\noutput : list = [-4, -2, -1, 2, -5, 3]",
    "output": "generated_output : list = take(add_n(take(reverse([4, -4, 3, 0, -1, -3]),22),-1),23)",
    "io_inp": [
      4,
      -4,
      3,
      0,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(input),22),-1),23)"
  },
  {
    "input": "input : list = [-5, 2, -1, -4, -2, 0]\noutput : list = [-1, 1, 3, 0, -3, 4]",
    "output": "generated_output : list = add_n(reverse(mul_n([-5, 2, -1, -4, -2, 0],-1)),-1)",
    "io_inp": [
      -5,
      2,
      -1,
      -4,
      -2,
      0
    ],
    "io_out": [
      -1,
      1,
      3,
      0,
      -3,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,-1)),-1)"
  },
  {
    "input": "input : list = [-3, -3, 3, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(take([-3, -3, 3, 4],2),-1),-2)),21)",
    "io_inp": [
      -3,
      -3,
      3,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(take(input,2),-1),-2)),21)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-10, 10]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(sort_des([5, -5]),-2),8)))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(sort_des(input),-2),8)))"
  },
  {
    "input": "input : list = [-5, -2, 0, 1, 1]\noutput : list = [-625, -250, 0, 125, 125]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc([-5, -2, 0, 1, 1]),5),5),5)",
    "io_inp": [
      -5,
      -2,
      0,
      1,
      1
    ],
    "io_out": [
      -625,
      -250,
      0,
      125,
      125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(input),5),5),5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = add_n([-3, 0],1)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, 0, -5, 4, 4, -4]\noutput : list = [8, 6, 6, -2, -10, -12]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(sort_des([5, 0, -5, 4, 4, -4]),-2),-3),2))",
    "io_inp": [
      5,
      0,
      -5,
      4,
      4,
      -4
    ],
    "io_out": [
      8,
      6,
      6,
      -2,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(sort_des(input),-2),-3),2))"
  },
  {
    "input": "input : list = [3, -1, 1, 3, 4, -4]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sub_n(drop(take(sort_asc([3, -1, 1, 3, 4, -4]),19),5),-1))",
    "io_inp": [
      3,
      -1,
      1,
      3,
      4,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(take(sort_asc(input),19),5),-1))"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 0, 4],1)",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([5, 4],1),1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,1),1))"
  },
  {
    "input": "input : list = [-2, 1, -3, 3, 0]\noutput : list = [-22, -6, -18]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(take([-2, 1, -3, 3, 0],3),2)),-5),2)",
    "io_inp": [
      -2,
      1,
      -3,
      3,
      0
    ],
    "io_out": [
      -22,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(take(input,3),2)),-5),2)"
  },
  {
    "input": "input : list = [3, -2, 4]\noutput : list = [6, 1, 7]",
    "output": "generated_output : list = add_n(sub_n([3, -2, 4],-5),-2)",
    "io_inp": [
      3,
      -2,
      4
    ],
    "io_out": [
      6,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),-2)"
  },
  {
    "input": "input : list = [1, 5, 5, -3]\noutput : list = [-2, -14, -14, 10]",
    "output": "generated_output : list = sub_n(mul_n([1, 5, 5, -3],-3),-1)",
    "io_inp": [
      1,
      5,
      5,
      -3
    ],
    "io_out": [
      -2,
      -14,
      -14,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),-1)"
  },
  {
    "input": "input : list = [5, 1, -4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = drop([5, 1, -4, 0],2)",
    "io_inp": [
      5,
      1,
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -1, -2, 0, 1, -5]\noutput : list = [0, 5, 10, 10, 15, 30]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(reverse([-1, -1, -2, 0, 1, -5])),-1),-5))",
    "io_inp": [
      -1,
      -1,
      -2,
      0,
      1,
      -5
    ],
    "io_out": [
      0,
      5,
      10,
      10,
      15,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(reverse(input)),-1),-5))"
  },
  {
    "input": "input : list = [-3, -5, 1, -3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take([-3, -5, 1, -3],1))",
    "io_inp": [
      -3,
      -5,
      1,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [3, 3, 2, -3, -1, -1]\noutput : list = [2, -3, -1, -1]",
    "output": "generated_output : list = drop([3, 3, 2, -3, -1, -1],2)",
    "io_inp": [
      3,
      3,
      2,
      -3,
      -1,
      -1
    ],
    "io_out": [
      2,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 5, -1, 5]\noutput : list = [16, 16, 13, 10]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(add_n([2, 5, -1, 5],5),-4)),2))",
    "io_inp": [
      2,
      5,
      -1,
      5
    ],
    "io_out": [
      16,
      16,
      13,
      10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(add_n(input,5),-4)),2))"
  },
  {
    "input": "input : list = [-5, 1, -4, -5, -2]\noutput : list = [-10, -4, -9, -10, -7]",
    "output": "generated_output : list = sub_n([-5, 1, -4, -5, -2],5)",
    "io_inp": [
      -5,
      1,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -4,
      -9,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, -2, 2, 1, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(drop(sort_des([-2, -2, 2, 1, -5]),3))))",
    "io_inp": [
      -2,
      -2,
      2,
      1,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(drop(sort_des(input),3))))"
  },
  {
    "input": "input : list = [1, -1, 1, 1, -3]\noutput : list = [-4, 12, 12, 4, 12]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(reverse([1, -1, 1, 1, -3]),8),4),4),-4)",
    "io_inp": [
      1,
      -1,
      1,
      1,
      -3
    ],
    "io_out": [
      -4,
      12,
      12,
      4,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(reverse(input),8),4),4),-4)"
  },
  {
    "input": "input : list = [-3, 1, -4, -3, 0]\noutput : list = [0, -9, -12, 3, -9]",
    "output": "generated_output : list = reverse(mul_n([-3, 1, -4, -3, 0],3))",
    "io_inp": [
      -3,
      1,
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      -9,
      -12,
      3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = reverse(take(sort_des(take(sort_asc([4, 1, 5]),6)),6))",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(sort_asc(input),6)),6))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(sort_asc([1, 0]),7)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [2, -3, 4, 0]\noutput : list = [-8, 12, -16, 0]",
    "output": "generated_output : list = mul_n([2, -3, 4, 0],-4)",
    "io_inp": [
      2,
      -3,
      4,
      0
    ],
    "io_out": [
      -8,
      12,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 2, 5, 1]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 2, 5, 1],1)",
    "io_inp": [
      -3,
      2,
      5,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 5, 2, 3]\noutput : list = [-8, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(add_n([-5, 5, 2, 3],-3))",
    "io_inp": [
      -5,
      5,
      2,
      3
    ],
    "io_out": [
      -8,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [8, -4]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n([-4, 0],-3),7),-4))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(input,-3),7),-4))"
  },
  {
    "input": "input : list = [5, -2, 4]\noutput : list = [2, 8]",
    "output": "generated_output : list = add_n(drop([5, -2, 4],1),4)",
    "io_inp": [
      5,
      -2,
      4
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [1, -5, 0, 5]\noutput : list = [10, 2, 0, -10]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(mul_n([1, -5, 0, 5],2)))),38)",
    "io_inp": [
      1,
      -5,
      0,
      5
    ],
    "io_out": [
      10,
      2,
      0,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(mul_n(input,2)))),38)"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [-28]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(take([5, -2, 3],1),-5),13),5),-2)",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      -28
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(take(input,1),-5),13),5),-2)"
  },
  {
    "input": "input : list = [4, -4, -3]\noutput : list = [0, -7, -8]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(sort_des([4, -4, -3]),3),5),5),-2)",
    "io_inp": [
      4,
      -4,
      -3
    ],
    "io_out": [
      0,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(sort_des(input),3),5),5),-2)"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [5, 3, -4]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(sort_des([-4, 5, 3])),3)),3)",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(sort_des(input)),3)),3)"
  },
  {
    "input": "input : list = [4, 3, 3, 0, -1]\noutput : list = [9, 8, 8, 5, 4]",
    "output": "generated_output : list = sub_n([4, 3, 3, 0, -1],-5)",
    "io_inp": [
      4,
      3,
      3,
      0,
      -1
    ],
    "io_out": [
      9,
      8,
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, 1, -5, -3, 1, -2]\noutput : list = [5, 1, 1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(reverse([5, 1, -5, -3, 1, -2])),11)))",
    "io_inp": [
      5,
      1,
      -5,
      -3,
      1,
      -2
    ],
    "io_out": [
      5,
      1,
      1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(reverse(input)),11)))"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [1, -5, -17]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(add_n([-1, -5, 1],1)),3)),5)",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(add_n(input,1)),3)),5)"
  },
  {
    "input": "input : list = [4, -2, 1, 0, -2, 2]\noutput : list = [16, -8, 4, 0, -8, 8]",
    "output": "generated_output : list = mul_n([4, -2, 1, 0, -2, 2],4)",
    "io_inp": [
      4,
      -2,
      1,
      0,
      -2,
      2
    ],
    "io_out": [
      16,
      -8,
      4,
      0,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, -5, -3, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sub_n(take([1, -5, -3, -5],1),4))",
    "io_inp": [
      1,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(input,1),4))"
  },
  {
    "input": "input : list = [1, 2, -2, -3]\noutput : list = [-7, -6]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(drop([1, 2, -2, -3],2)),4),1),3)",
    "io_inp": [
      1,
      2,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(drop(input,2)),4),1),3)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(sort_asc([4, 5])),7)))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(sort_asc(input)),7)))"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [2, -3, -4]",
    "output": "generated_output : list = sort_des(reverse([-3, 2, -4]))",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, -3, -2, 5]\noutput : list = [-9, -7, -6, 1]",
    "output": "generated_output : list = sub_n([-5, -3, -2, 5],4)",
    "io_inp": [
      -5,
      -3,
      -2,
      5
    ],
    "io_out": [
      -9,
      -7,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [2, 4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(sort_des([-3, -2]),-1)),2),-2)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(sort_des(input),-1)),2),-2)"
  },
  {
    "input": "input : list = [5, 2, 2, -2, -5]\noutput : list = [5, 2]",
    "output": "generated_output : list = take([5, 2, 2, -2, -5],2)",
    "io_inp": [
      5,
      2,
      2,
      -2,
      -5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -3, -1]\noutput : list = [-9, -3, 9]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n([-4, -3, -1],4),-2),-4),-1),-3)",
    "io_inp": [
      -4,
      -3,
      -1
    ],
    "io_out": [
      -9,
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n(input,4),-2),-4),-1),-3)"
  },
  {
    "input": "input : list = [-1, 2, 5, -2, -4]\noutput : list = [20, 10, 5, -10, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-1, 2, 5, -2, -4])),-5)",
    "io_inp": [
      -1,
      2,
      5,
      -2,
      -4
    ],
    "io_out": [
      20,
      10,
      5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [5, -2, 5, -2, 2, -5]\noutput : list = [7, 0, 7, 0, 4, -3]",
    "output": "generated_output : list = reverse(add_n(add_n(take(reverse([5, -2, 5, -2, 2, -5]),11),-3),5))",
    "io_inp": [
      5,
      -2,
      5,
      -2,
      2,
      -5
    ],
    "io_out": [
      7,
      0,
      7,
      0,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(reverse(input),11),-3),5))"
  },
  {
    "input": "input : list = [0, 2, 5, 0]\noutput : list = [-4, -4, -6, -9]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(sort_des([0, 2, 5, 0]),-1),8)),4)",
    "io_inp": [
      0,
      2,
      5,
      0
    ],
    "io_out": [
      -4,
      -4,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(sort_des(input),-1),8)),4)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(sort_des([-5, 1])),14)),3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(sort_des(input)),14)),3)"
  },
  {
    "input": "input : list = [-2, 3, 5, 4]\noutput : list = [1, 0, -1, -6]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(sort_des([-2, 3, 5, 4])),12)),4)",
    "io_inp": [
      -2,
      3,
      5,
      4
    ],
    "io_out": [
      1,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(sort_des(input)),12)),4)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n([-2, -1],4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, -1, 1, -4]\noutput : list = [-6, -3, -3, -1]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des([-1, -1, 1, -4]),2)),-4)",
    "io_inp": [
      -1,
      -1,
      1,
      -4
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(input),2)),-4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-10, -2]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(add_n([5, 3],-5),-4),-5),14),5)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(add_n(input,-5),-4),-5),14),5)"
  },
  {
    "input": "input : list = [-5, 3, 0, 1, 0, -4]\noutput : list = [-9, -1, -4, -3, -4, -8]",
    "output": "generated_output : list = add_n([-5, 3, 0, 1, 0, -4],-4)",
    "io_inp": [
      -5,
      3,
      0,
      1,
      0,
      -4
    ],
    "io_out": [
      -9,
      -1,
      -4,
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 4, -1, 4, 3, 3]\noutput : list = [4, -3]",
    "output": "generated_output : list = reverse(take([-3, 4, -1, 4, 3, 3],2))",
    "io_inp": [
      -3,
      4,
      -1,
      4,
      3,
      3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [0, -4, 5, 3, -1, 5]\noutput : list = [-1, 2, 3, 6, 8, 8]",
    "output": "generated_output : list = add_n(sort_asc([0, -4, 5, 3, -1, 5]),3)",
    "io_inp": [
      0,
      -4,
      5,
      3,
      -1,
      5
    ],
    "io_out": [
      -1,
      2,
      3,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-2, -2, -1, 3, 5, 0]\noutput : list = [1, 1, -1, -3, -9, -13]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(reverse([-2, -2, -1, 3, 5, 0])),-2)),3)",
    "io_inp": [
      -2,
      -2,
      -1,
      3,
      5,
      0
    ],
    "io_out": [
      1,
      1,
      -1,
      -3,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(reverse(input)),-2)),3)"
  },
  {
    "input": "input : list = [-4, -2, -1, 3]\noutput : list = [-2, -6, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_asc([-4, -2, -1, 3])),-1),4))",
    "io_inp": [
      -4,
      -2,
      -1,
      3
    ],
    "io_out": [
      -2,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_asc(input)),-1),4))"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [8, 2, -1]",
    "output": "generated_output : list = take(take(reverse(sort_asc(add_n([5, -4, -1],3))),36),23)",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      8,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(add_n(input,3))),36),23)"
  },
  {
    "input": "input : list = [0, -2, -4, 3, 2, -2]\noutput : list = [-20, -16, -16, -12, -8, -6]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(add_n([0, -2, -4, 3, 2, -2],-5))),2),2)",
    "io_inp": [
      0,
      -2,
      -4,
      3,
      2,
      -2
    ],
    "io_out": [
      -20,
      -16,
      -16,
      -12,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(add_n(input,-5))),2),2)"
  },
  {
    "input": "input : list = [-1, 3, 1, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(drop([-1, 3, 1, 4, 5],3)),28)))",
    "io_inp": [
      -1,
      3,
      1,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(drop(input,3)),28)))"
  },
  {
    "input": "input : list = [1, 4, -3, -3, 0]\noutput : list = [8, 5, 4, 1, 1]",
    "output": "generated_output : list = sort_des(sub_n([1, 4, -3, -3, 0],-4))",
    "io_inp": [
      1,
      4,
      -3,
      -3,
      0
    ],
    "io_out": [
      8,
      5,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [3, 5, 3, -3, -2, 2]\noutput : list = [-6, -10, -6, 6, 4, -4]",
    "output": "generated_output : list = take(mul_n([3, 5, 3, -3, -2, 2],-2),23)",
    "io_inp": [
      3,
      5,
      3,
      -3,
      -2,
      2
    ],
    "io_out": [
      -6,
      -10,
      -6,
      6,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-2),23)"
  },
  {
    "input": "input : list = [-4, -3, -2, 1]\noutput : list = [-15, -10, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(drop([-4, -3, -2, 1],1),5))),23)",
    "io_inp": [
      -4,
      -3,
      -2,
      1
    ],
    "io_out": [
      -15,
      -10,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(drop(input,1),5))),23)"
  },
  {
    "input": "input : list = [-2, -5, -5, -1]\noutput : list = [28, 28, 13, 8]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(mul_n([-2, -5, -5, -1],-5)),10)),-3)",
    "io_inp": [
      -2,
      -5,
      -5,
      -1
    ],
    "io_out": [
      28,
      28,
      13,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(mul_n(input,-5)),10)),-3)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(take(mul_n([-2, 4, 5],-1),7)),34))",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(mul_n(input,-1),7)),34))"
  },
  {
    "input": "input : list = [5, 3, -2, 0]\noutput : list = [-30, -20, -5, 5]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(add_n([5, 3, -2, 0],-4),5)),25),21)",
    "io_inp": [
      5,
      3,
      -2,
      0
    ],
    "io_out": [
      -30,
      -20,
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(add_n(input,-4),5)),25),21)"
  },
  {
    "input": "input : list = [3, 0, 0, 1]\noutput : list = [3, 1, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc([3, 0, 0, 1]))",
    "io_inp": [
      3,
      0,
      0,
      1
    ],
    "io_out": [
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, -5, 0, -3]\noutput : list = [15, 3, -6, -12, -12]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc([-5, 4, -5, 0, -3]),1)),3)",
    "io_inp": [
      -5,
      4,
      -5,
      0,
      -3
    ],
    "io_out": [
      15,
      3,
      -6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(input),1)),3)"
  },
  {
    "input": "input : list = [-3, -2, 2, 1]\noutput : list = [-48]",
    "output": "generated_output : list = mul_n(mul_n(take([-3, -2, 2, 1],1),4),4)",
    "io_inp": [
      -3,
      -2,
      2,
      1
    ],
    "io_out": [
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),4),4)"
  },
  {
    "input": "input : list = [5, -1, -3, -1]\noutput : list = [2, -2, -2, -14]",
    "output": "generated_output : list = take(sort_des(reverse(add_n(mul_n([5, -1, -3, -1],-2),-4))),24)",
    "io_inp": [
      5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      2,
      -2,
      -2,
      -14
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(add_n(mul_n(input,-2),-4))),24)"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [-5, -5, 2]",
    "output": "generated_output : list = take(add_n([-4, -4, 3],-1),4)",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      -5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),4)"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [2, 4, 5]",
    "output": "generated_output : list = take(sort_asc(reverse([4, 5, 2])),17)",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(input)),17)"
  },
  {
    "input": "input : list = [0, -3, 1, -5, -3, -4]\noutput : list = [1, 0, -3, -3, -4, -5]",
    "output": "generated_output : list = sort_des([0, -3, 1, -5, -3, -4])",
    "io_inp": [
      0,
      -3,
      1,
      -5,
      -3,
      -4
    ],
    "io_out": [
      1,
      0,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = mul_n([-4, 3],1)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, 1, -4, 4, -1, -3]\noutput : list = [-5, -6, -1, -9, -4, -2]",
    "output": "generated_output : list = mul_n(sub_n([0, 1, -4, 4, -1, -3],-5),-1)",
    "io_inp": [
      0,
      1,
      -4,
      4,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -6,
      -1,
      -9,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),-1)"
  },
  {
    "input": "input : list = [5, 2, -3, -5, 4]\noutput : list = [13, 9, -1, -5, -7]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(add_n([5, 2, -3, -5, 4],1)),-2)),5)",
    "io_inp": [
      5,
      2,
      -3,
      -5,
      4
    ],
    "io_out": [
      13,
      9,
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(add_n(input,1)),-2)),5)"
  },
  {
    "input": "input : list = [0, 1, 5, -1, -5]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = reverse(reverse(take(reverse(take([0, 1, 5, -1, -5],3)),20)))",
    "io_inp": [
      0,
      1,
      5,
      -1,
      -5
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(take(input,3)),20)))"
  },
  {
    "input": "input : list = [3, -4, 5, -1]\noutput : list = [5, 3, -1, -4]",
    "output": "generated_output : list = sort_des([3, -4, 5, -1])",
    "io_inp": [
      3,
      -4,
      5,
      -1
    ],
    "io_out": [
      5,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 1, 0, 3, 1, -4]\noutput : list = [-6, -1, -2, 1, -1, -6]",
    "output": "generated_output : list = add_n([-4, 1, 0, 3, 1, -4],-2)",
    "io_inp": [
      -4,
      1,
      0,
      3,
      1,
      -4
    ],
    "io_out": [
      -6,
      -1,
      -2,
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, 4, -3, 2, -2, 5]\noutput : list = [-6, -6, -13, -8, -12, -5]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(add_n([4, 4, -3, 2, -2, 5],2),-2),7),-5),5)",
    "io_inp": [
      4,
      4,
      -3,
      2,
      -2,
      5
    ],
    "io_out": [
      -6,
      -6,
      -13,
      -8,
      -12,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(add_n(input,2),-2),7),-5),5)"
  },
  {
    "input": "input : list = [-1, -2, 1, -2, -4]\noutput : list = [1, -1, -2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(sort_asc([-1, -2, 1, -2, -4])))))",
    "io_inp": [
      -1,
      -2,
      1,
      -2,
      -4
    ],
    "io_out": [
      1,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, 4, -5, 0, 4, 4]\noutput : list = [-16, 11, -16, -1, 11, 11]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(reverse([-5, 4, -5, 0, 4, 4]),-1)),3),4)",
    "io_inp": [
      -5,
      4,
      -5,
      0,
      4,
      4
    ],
    "io_out": [
      -16,
      11,
      -16,
      -1,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(reverse(input),-1)),3),4)"
  },
  {
    "input": "input : list = [5, -2, -3, 2, -1]\noutput : list = [7, 4, 1, 0, -1]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(sub_n([5, -2, -3, 2, -1],1))),41),3)",
    "io_inp": [
      5,
      -2,
      -3,
      2,
      -1
    ],
    "io_out": [
      7,
      4,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(sub_n(input,1))),41),3)"
  },
  {
    "input": "input : list = [0, -5, -2, 2, 5, 0]\noutput : list = [2, 0, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(take([0, -5, -2, 2, 5, 0],4)))",
    "io_inp": [
      0,
      -5,
      -2,
      2,
      5,
      0
    ],
    "io_out": [
      2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,4)))"
  },
  {
    "input": "input : list = [3, -2, -4, -5, 3, -3]\noutput : list = [12, 7, 5, 4, 12, 6]",
    "output": "generated_output : list = sub_n(sub_n([3, -2, -4, -5, 3, -3],-4),-5)",
    "io_inp": [
      3,
      -2,
      -4,
      -5,
      3,
      -3
    ],
    "io_out": [
      12,
      7,
      5,
      4,
      12,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [21, 1]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sub_n([2, -2],2))),-5),-1)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      21,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sub_n(input,2))),-5),-1)"
  },
  {
    "input": "input : list = [-3, -2, 5]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(take([-3, -2, 5],1))),2),-1)",
    "io_inp": [
      -3,
      -2,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(take(input,1))),2),-1)"
  },
  {
    "input": "input : list = [2, -5, 1, 4, 3]\noutput : list = [4, 3, 2, 1, -5]",
    "output": "generated_output : list = sort_des([2, -5, 1, 4, 3])",
    "io_inp": [
      2,
      -5,
      1,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 4, -4, 3, -4, 4]\noutput : list = [4, 4, 3, 0, -4, -4]",
    "output": "generated_output : list = sort_des([0, 4, -4, 3, -4, 4])",
    "io_inp": [
      0,
      4,
      -4,
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, 0, 3, 5, -3]\noutput : list = [-8, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(drop([-5, 5, 0, 3, 5, -3],3))),-5)",
    "io_inp": [
      -5,
      5,
      0,
      3,
      5,
      -3
    ],
    "io_out": [
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(drop(input,3))),-5)"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [-3, 0, 2]",
    "output": "generated_output : list = sub_n([0, 3, 5],3)",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-8, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n([0, -1],5),2)),-5))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n(input,5),2)),-5))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sub_n(add_n(add_n([1, -1],-4),-3),-2)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-4),-3),-2)"
  },
  {
    "input": "input : list = [1, 0, 0, 0, -3]\noutput : list = [12, 6, 6, 6, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(add_n([1, 0, 0, 0, -3],-3))),-2))",
    "io_inp": [
      1,
      0,
      0,
      0,
      -3
    ],
    "io_out": [
      12,
      6,
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(add_n(input,-3))),-2))"
  },
  {
    "input": "input : list = [-4, 3, -1, 4, -2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = take(sort_des(drop([-4, 3, -1, 4, -2, 0],4)),37)",
    "io_inp": [
      -4,
      3,
      -1,
      4,
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,4)),37)"
  },
  {
    "input": "input : list = [-5, 5, -3, 2, 0]\noutput : list = [-3, 0, 2]",
    "output": "generated_output : list = sort_asc(drop([-5, 5, -3, 2, 0],2))",
    "io_inp": [
      -5,
      5,
      -3,
      2,
      0
    ],
    "io_out": [
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-1, -1, -1, 3, -4, -2]\noutput : list = [-4, -2, -1, -1, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, -1, -1, 3, -4, -2])",
    "io_inp": [
      -1,
      -1,
      -1,
      3,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [9, 6, 1]",
    "output": "generated_output : list = sort_des(take(take(add_n(reverse([2, -3, 5]),4),4),6))",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      9,
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(reverse(input),4),4),6))"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [1, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des([0, 1, 1]))",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -4, -3, 4]\noutput : list = [-5, 7, 9, 11]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(mul_n([-2, -4, -3, 4],-2))),3))",
    "io_inp": [
      -2,
      -4,
      -3,
      4
    ],
    "io_out": [
      -5,
      7,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(mul_n(input,-2))),3))"
  },
  {
    "input": "input : list = [4, 5, 3, 2, 5]\noutput : list = [6, 9, 12, 15, 15]",
    "output": "generated_output : list = mul_n(sort_asc([4, 5, 3, 2, 5]),3)",
    "io_inp": [
      4,
      5,
      3,
      2,
      5
    ],
    "io_out": [
      6,
      9,
      12,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [1, -4, -1, 1]\noutput : list = [-4, -1, 1, 1]",
    "output": "generated_output : list = sort_asc([1, -4, -1, 1])",
    "io_inp": [
      1,
      -4,
      -1,
      1
    ],
    "io_out": [
      -4,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [18, -3, -9]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([4, -5, -3],-2),3))",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      18,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,-2),3))"
  },
  {
    "input": "input : list = [0, -5, 0, 5]\noutput : list = [0, -5]",
    "output": "generated_output : list = take([0, -5, 0, 5],2)",
    "io_inp": [
      0,
      -5,
      0,
      5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 0, 2, 1, 5]\noutput : list = [-1, -7, -11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(take([-3, 0, 2, 1, 5],3),2),-2),3))",
    "io_inp": [
      -3,
      0,
      2,
      1,
      5
    ],
    "io_out": [
      -1,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(take(input,3),2),-2),3))"
  },
  {
    "input": "input : list = [-5, -1, -4]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(take([-5, -1, -4],1)),-4),4),5)",
    "io_inp": [
      -5,
      -1,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(take(input,1)),-4),4),5)"
  },
  {
    "input": "input : list = [4, -3, 4, 1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -3, 4, 1],1)",
    "io_inp": [
      4,
      -3,
      4,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -5, 4, -1, -1]\noutput : list = [55, -20, 100, -35, 40, 40]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n([-2, 3, -5, 4, -1, -1],2),-3),5),5)",
    "io_inp": [
      -2,
      3,
      -5,
      4,
      -1,
      -1
    ],
    "io_out": [
      55,
      -20,
      100,
      -35,
      40,
      40
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(input,2),-3),5),5)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([1, 1])),1)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),1)"
  },
  {
    "input": "input : list = [4, -5, 1, 5]\noutput : list = [5, 25]",
    "output": "generated_output : list = mul_n(drop([4, -5, 1, 5],2),5)",
    "io_inp": [
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [-5, 1, 5, -2, -1]\noutput : list = [-1, -2, 5, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 5, -2, -1])",
    "io_inp": [
      -5,
      1,
      5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      5,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, 2, 2, -4]\noutput : list = [10, 10, 4, -5, -8]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(mul_n([-3, 0, 2, 2, -4],3),1),6)),-5)",
    "io_inp": [
      -3,
      0,
      2,
      2,
      -4
    ],
    "io_out": [
      10,
      10,
      4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(mul_n(input,3),1),6)),-5)"
  },
  {
    "input": "input : list = [-4, 4, -5, -3, 3, 3]\noutput : list = [-17, 15]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n(take([-4, 4, -5, -3, 3, 3],2),-4)),-1))",
    "io_inp": [
      -4,
      4,
      -5,
      -3,
      3,
      3
    ],
    "io_out": [
      -17,
      15
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(take(input,2),-4)),-1))"
  },
  {
    "input": "input : list = [-5, 3, -3, -4, -3, -3]\noutput : list = [8, 2, 2, 2, 1, 0]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(mul_n([-5, 3, -3, -4, -3, -3],1)),5),1))",
    "io_inp": [
      -5,
      3,
      -3,
      -4,
      -3,
      -3
    ],
    "io_out": [
      8,
      2,
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(mul_n(input,1)),5),1))"
  },
  {
    "input": "input : list = [-1, -3, 4, -2, -2]\noutput : list = [-4, -4, 8, -6, -2]",
    "output": "generated_output : list = reverse(mul_n([-1, -3, 4, -2, -2],2))",
    "io_inp": [
      -1,
      -3,
      4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      8,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [-1, 5, -4, -1]\noutput : list = [-24, 6, 21]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(drop([-1, 5, -4, -1],1),-5),-1))",
    "io_inp": [
      -1,
      5,
      -4,
      -1
    ],
    "io_out": [
      -24,
      6,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(drop(input,1),-5),-1))"
  },
  {
    "input": "input : list = [4, -1, 1, 4, -4, -3]\noutput : list = [0, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(drop(sort_asc(reverse([4, -1, 1, 4, -4, -3])),3),1))",
    "io_inp": [
      4,
      -1,
      1,
      4,
      -4,
      -3
    ],
    "io_out": [
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(sort_asc(reverse(input)),3),1))"
  },
  {
    "input": "input : list = [-5, -3, 4, -3, 0, 3]\noutput : list = [-9, -5, -5, 1, 7, 9]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([-5, -3, 4, -3, 0, 3],2)),1)",
    "io_inp": [
      -5,
      -3,
      4,
      -3,
      0,
      3
    ],
    "io_out": [
      -9,
      -5,
      -5,
      1,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,2)),1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-3, -6]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(sort_asc([-2, -1])))),3)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [-3, -1, -4, 2]\noutput : list = [-8, -6, -2, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(mul_n([-3, -1, -4, 2],1)),2)))",
    "io_inp": [
      -3,
      -1,
      -4,
      2
    ],
    "io_out": [
      -8,
      -6,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(mul_n(input,1)),2)))"
  },
  {
    "input": "input : list = [0, -3, -2, -2, -2]\noutput : list = [-3, -2, -2, -2, 0]",
    "output": "generated_output : list = sort_asc([0, -3, -2, -2, -2])",
    "io_inp": [
      0,
      -3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, 4, -5, -2]\noutput : list = [-5, -2, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 5, 4, -5, -2])",
    "io_inp": [
      0,
      5,
      4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1, -1, -2, 4]\noutput : list = [4, -1, -1, -2, -4]",
    "output": "generated_output : list = sort_des([-4, -1, -1, -2, 4])",
    "io_inp": [
      -4,
      -1,
      -1,
      -2,
      4
    ],
    "io_out": [
      4,
      -1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -3, -2, -1, -4]\noutput : list = [-17, 3, 8, 13, 18]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(mul_n([3, -3, -2, -1, -4],-5)),1),-2))",
    "io_inp": [
      3,
      -3,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -17,
      3,
      8,
      13,
      18
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(mul_n(input,-5)),1),-2))"
  },
  {
    "input": "input : list = [3, -2, -5, 2]\noutput : list = [4, -3, 0, 5]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse([3, -2, -5, 2]),-2)))",
    "io_inp": [
      3,
      -2,
      -5,
      2
    ],
    "io_out": [
      4,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(input),-2)))"
  },
  {
    "input": "input : list = [5, -4, 1, -3, -2, 3]\noutput : list = [-5, -4, -3, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n([5, -4, 1, -3, -2, 3],1))",
    "io_inp": [
      5,
      -4,
      1,
      -3,
      -2,
      3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-3, 3, 3, -5, -4, -1]\noutput : list = [1, 1, -3, -5, -6, -7]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(sort_asc([-3, 3, 3, -5, -4, -1]),3),33)),1)",
    "io_inp": [
      -3,
      3,
      3,
      -5,
      -4,
      -1
    ],
    "io_out": [
      1,
      1,
      -3,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(sort_asc(input),3),33)),1)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [25, 5]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(mul_n([5, 1],5),6),-1),-1))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      25,
      5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(mul_n(input,5),6),-1),-1))"
  },
  {
    "input": "input : list = [-1, -3, 0, -2, -1]\noutput : list = [-7, -8, -8, -9, -10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_des([-1, -3, 0, -2, -1]),-5)),2),1)",
    "io_inp": [
      -1,
      -3,
      0,
      -2,
      -1
    ],
    "io_out": [
      -7,
      -8,
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_des(input),-5)),2),1)"
  },
  {
    "input": "input : list = [2, 2, -3, -1]\noutput : list = [-20, -20, -45, -35]",
    "output": "generated_output : list = mul_n(add_n(add_n([2, 2, -3, -1],-5),-1),5)",
    "io_inp": [
      2,
      2,
      -3,
      -1
    ],
    "io_out": [
      -20,
      -20,
      -45,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-5),-1),5)"
  },
  {
    "input": "input : list = [4, -4, -1, -3]\noutput : list = [7, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([4, -4, -1, -3],-3)))",
    "io_inp": [
      4,
      -4,
      -1,
      -3
    ],
    "io_out": [
      7,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(reverse([1, 4, 5])))),3)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des([-2, -5])",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, 2, 5, -5]\noutput : list = [-28, -28, -13, -7, 2]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_asc([-5, 0, 2, 5, -5]),-3),3),-4),1)",
    "io_inp": [
      -5,
      0,
      2,
      5,
      -5
    ],
    "io_out": [
      -28,
      -28,
      -13,
      -7,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_asc(input),-3),3),-4),1)"
  },
  {
    "input": "input : list = [5, -5, -5, 4]\noutput : list = [-26, -26, 1, 4]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n(sub_n([5, -5, -5, 4],5),3)),4))",
    "io_inp": [
      5,
      -5,
      -5,
      4
    ],
    "io_out": [
      -26,
      -26,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(sub_n(input,5),3)),4))"
  },
  {
    "input": "input : list = [2, -2, -3, -2, -3, 1]\noutput : list = [2, 1, -2, -2, -3, -3]",
    "output": "generated_output : list = sort_des(reverse([2, -2, -3, -2, -3, 1]))",
    "io_inp": [
      2,
      -2,
      -3,
      -2,
      -3,
      1
    ],
    "io_out": [
      2,
      1,
      -2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse(add_n(take(add_n([0, -1],4),14),-4))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(input,4),14),-4))"
  },
  {
    "input": "input : list = [3, 2, 0, 4]\noutput : list = [0, -12]",
    "output": "generated_output : list = mul_n(drop([3, 2, 0, 4],2),-3)",
    "io_inp": [
      3,
      2,
      0,
      4
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(add_n([-3, -1],2)),5),20))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(add_n(input,2)),5),20))"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([2, 0, -2]),-1))",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),-1))"
  },
  {
    "input": "input : list = [-3, 5, -5, -4, -1]\noutput : list = [-20, -16, -12, -4, 20]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(sort_des([-3, 5, -5, -4, -1])),4),41),30)",
    "io_inp": [
      -3,
      5,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -20,
      -16,
      -12,
      -4,
      20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(sort_des(input)),4),41),30)"
  },
  {
    "input": "input : list = [5, 1, -2, -1]\noutput : list = [5, 1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc([5, 1, -2, -1])))))",
    "io_inp": [
      5,
      1,
      -2,
      -1
    ],
    "io_out": [
      5,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n(sort_asc([-4, 1]),2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-3, -4, -5, 3, 3, -1]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(drop(add_n(sub_n(take([-3, -4, -5, 3, 3, -1],4),-1),1),3))",
    "io_inp": [
      -3,
      -4,
      -5,
      3,
      3,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(sub_n(take(input,4),-1),1),3))"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [2, -10, -12]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(sort_asc([4, -3, 3]),-2))),-4)",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      2,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(sort_asc(input),-2))),-4)"
  },
  {
    "input": "input : list = [-1, -2, 4, -4]\noutput : list = [62, -18, -34, -66]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n([-1, -2, 4, -4],-4),-4))),2)",
    "io_inp": [
      -1,
      -2,
      4,
      -4
    ],
    "io_out": [
      62,
      -18,
      -34,
      -66
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n(input,-4),-4))),2)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(drop([0, -2, -5],1)),-3),30),45)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(drop(input,1)),-3),30),45)"
  },
  {
    "input": "input : list = [2, 4, 5, -3, -1]\noutput : list = [-7, -5, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(drop([2, 4, 5, -3, -1],2)))),4)",
    "io_inp": [
      2,
      4,
      5,
      -3,
      -1
    ],
    "io_out": [
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(drop(input,2)))),4)"
  },
  {
    "input": "input : list = [1, -1, -4, 0]\noutput : list = [14]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(take([1, -1, -4, 0],1),3),-3),3),-4)",
    "io_inp": [
      1,
      -1,
      -4,
      0
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(take(input,1),3),-3),3),-4)"
  },
  {
    "input": "input : list = [3, 5, -5, 2, -3, -2]\noutput : list = [-16, -12, -10, -2, 0, 4]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(sort_asc([3, 5, -5, 2, -3, -2]),9),1),3),2)",
    "io_inp": [
      3,
      5,
      -5,
      2,
      -3,
      -2
    ],
    "io_out": [
      -16,
      -12,
      -10,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(sort_asc(input),9),1),3),2)"
  },
  {
    "input": "input : list = [4, 4, -1, 5, 2, 5]\noutput : list = [-1, -4, -1]",
    "output": "generated_output : list = take(sub_n(add_n(take(drop([4, 4, -1, 5, 2, 5],3),5),-4),2),39)",
    "io_inp": [
      4,
      4,
      -1,
      5,
      2,
      5
    ],
    "io_out": [
      -1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(drop(input,3),5),-4),2),39)"
  },
  {
    "input": "input : list = [4, -2, 0, -5]\noutput : list = [-4, 4, 8, 14]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(mul_n([4, -2, 0, -5],-2),5),1),1))",
    "io_inp": [
      4,
      -2,
      0,
      -5
    ],
    "io_out": [
      -4,
      4,
      8,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(mul_n(input,-2),5),1),1))"
  },
  {
    "input": "input : list = [3, -4, 4, -4, 2]\noutput : list = [8, 1, 9, 1, 7]",
    "output": "generated_output : list = add_n(take(add_n(take(sub_n([3, -4, 4, -4, 2],2),20),4),42),3)",
    "io_inp": [
      3,
      -4,
      4,
      -4,
      2
    ],
    "io_out": [
      8,
      1,
      9,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sub_n(input,2),20),4),42),3)"
  },
  {
    "input": "input : list = [-4, 4, -2, 0, 3, 4]\noutput : list = [-10, -10, -15, -30, -40, -50]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(sort_des([-4, 4, -2, 0, 3, 4]),-4),5),-5),5)",
    "io_inp": [
      -4,
      4,
      -2,
      0,
      3,
      4
    ],
    "io_out": [
      -10,
      -10,
      -15,
      -30,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(sort_des(input),-4),5),-5),5)"
  },
  {
    "input": "input : list = [5, 1, 1, 2, 1, -1]\noutput : list = [2, -2, -2, -1, -2, -4]",
    "output": "generated_output : list = sub_n([5, 1, 1, 2, 1, -1],3)",
    "io_inp": [
      5,
      1,
      1,
      2,
      1,
      -1
    ],
    "io_out": [
      2,
      -2,
      -2,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [11, 10, 6]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(add_n([-5, -1, 0],5),3))),3)",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      11,
      10,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(add_n(input,5),3))),3)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(drop([1, 1, -2],1),2),22)))",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(drop(input,1),2),22)))"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [10, 35, 0]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse(sub_n([-3, 4, -1],-3)),1),5),-5)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      10,
      35,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(sub_n(input,-3)),1),5),-5)"
  },
  {
    "input": "input : list = [3, 2, 3, 0, 4, -3]\noutput : list = [6, 5, 6, 3, 7, 0]",
    "output": "generated_output : list = sub_n([3, 2, 3, 0, 4, -3],-3)",
    "io_inp": [
      3,
      2,
      3,
      0,
      4,
      -3
    ],
    "io_out": [
      6,
      5,
      6,
      3,
      7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sub_n([0, 3],-3),-5))))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sub_n(input,-3),-5))))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc([-3, 5])",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, -5, -2, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(take([-4, -3, -5, -2, 0],2)))))",
    "io_inp": [
      -4,
      -3,
      -5,
      -2,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(take(input,2)))))"
  },
  {
    "input": "input : list = [0, -1, 1, -5]\noutput : list = [-2, 0, -6]",
    "output": "generated_output : list = add_n(drop([0, -1, 1, -5],1),-1)",
    "io_inp": [
      0,
      -1,
      1,
      -5
    ],
    "io_out": [
      -2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [4, 5, -4]\noutput : list = [-9, -11, 7]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(mul_n([4, 5, -4],-2),-3),4)))",
    "io_inp": [
      4,
      5,
      -4
    ],
    "io_out": [
      -9,
      -11,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(mul_n(input,-2),-3),4)))"
  },
  {
    "input": "input : list = [3, 4, -4, 3, 1, -2]\noutput : list = [3, 4, -4, 3]",
    "output": "generated_output : list = take([3, 4, -4, 3, 1, -2],4)",
    "io_inp": [
      3,
      4,
      -4,
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des([-3, 1])",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [8, 4, 1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_asc([1, 5, -2]),-4),3),2))",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_asc(input),-4),3),2))"
  },
  {
    "input": "input : list = [-3, -4, 4, 4, 2, 1]\noutput : list = [-16, -28, -52, -52, 44, 32]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(mul_n([-3, -4, 4, 4, 2, 1],-4),-2),3)),2)",
    "io_inp": [
      -3,
      -4,
      4,
      4,
      2,
      1
    ],
    "io_out": [
      -16,
      -28,
      -52,
      -52,
      44,
      32
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(mul_n(input,-4),-2),3)),2)"
  },
  {
    "input": "input : list = [1, 5, -5, 4, -5]\noutput : list = [-5, -5, 1, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(reverse([1, 5, -5, 4, -5])),4)),-4)",
    "io_inp": [
      1,
      5,
      -5,
      4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(reverse(input)),4)),-4)"
  },
  {
    "input": "input : list = [1, -4, 2, 0, -2, -4]\noutput : list = [48, 48, 24, 0, -12, -24]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(reverse([1, -4, 2, 0, -2, -4])),4),-3))",
    "io_inp": [
      1,
      -4,
      2,
      0,
      -2,
      -4
    ],
    "io_out": [
      48,
      48,
      24,
      0,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(reverse(input)),4),-3))"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = take(add_n(reverse([-5, -2, -1]),4),28)",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),4),28)"
  },
  {
    "input": "input : list = [-2, -1, -3, -3, -2, 3]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(take([-2, -1, -3, -3, -2, 3],2)),-2),6))",
    "io_inp": [
      -2,
      -1,
      -3,
      -3,
      -2,
      3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(take(input,2)),-2),6))"
  },
  {
    "input": "input : list = [4, 5, 3, 3]\noutput : list = [3, 4, 2, 2]",
    "output": "generated_output : list = sub_n([4, 5, 3, 3],1)",
    "io_inp": [
      4,
      5,
      3,
      3
    ],
    "io_out": [
      3,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, 1, 4, -3, 5, 0]\noutput : list = [4, 5, 8, 1, 9, 4]",
    "output": "generated_output : list = add_n([0, 1, 4, -3, 5, 0],4)",
    "io_inp": [
      0,
      1,
      4,
      -3,
      5,
      0
    ],
    "io_out": [
      4,
      5,
      8,
      1,
      9,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [2, -1, -2, -5, -3, -4]\noutput : list = [4, -2, -4, -6, -10]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(mul_n([2, -1, -2, -5, -3, -4],2),4),5),-4))",
    "io_inp": [
      2,
      -1,
      -2,
      -5,
      -3,
      -4
    ],
    "io_out": [
      4,
      -2,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(mul_n(input,2),4),5),-4))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [8, 1]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-4, 3])),-5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),-5)"
  },
  {
    "input": "input : list = [-2, 1, 5, 1]\noutput : list = [-1000, -2500, -4500, -2500]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sub_n([-2, 1, 5, 1],-4),5),-4),5),5)",
    "io_inp": [
      -2,
      1,
      5,
      1
    ],
    "io_out": [
      -1000,
      -2500,
      -4500,
      -2500
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sub_n(input,-4),5),-4),5),5)"
  },
  {
    "input": "input : list = [-1, -1, 1, 0, 5, -1]\noutput : list = [-1, -5, -6, -7, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_des([-1, -1, 1, 0, 5, -1])),-1)),5)",
    "io_inp": [
      -1,
      -1,
      1,
      0,
      5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -6,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_des(input)),-1)),5)"
  },
  {
    "input": "input : list = [0, -5, 1, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(take([0, -5, 1, 0],2),-1),-1),-1),49)",
    "io_inp": [
      0,
      -5,
      1,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(take(input,2),-1),-1),-1),49)"
  },
  {
    "input": "input : list = [3, -1, 1, -5, -3, 3]\noutput : list = [2, -2, 0, -6, -4, 2]",
    "output": "generated_output : list = add_n([3, -1, 1, -5, -3, 3],-1)",
    "io_inp": [
      3,
      -1,
      1,
      -5,
      -3,
      3
    ],
    "io_out": [
      2,
      -2,
      0,
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, 2, 5, -3, 4, 1]\noutput : list = [-6, -12, 2, -14, -8, -12]",
    "output": "generated_output : list = take(take(add_n(mul_n(reverse([4, 2, 5, -3, 4, 1]),-2),-4),9),43)",
    "io_inp": [
      4,
      2,
      5,
      -3,
      4,
      1
    ],
    "io_out": [
      -6,
      -12,
      2,
      -14,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(reverse(input),-2),-4),9),43)"
  },
  {
    "input": "input : list = [-5, -4, 4]\noutput : list = [-8, 8, 10]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(mul_n([-5, -4, 4],1)),-2)))",
    "io_inp": [
      -5,
      -4,
      4
    ],
    "io_out": [
      -8,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(mul_n(input,1)),-2)))"
  },
  {
    "input": "input : list = [4, 1, 0, 1, 1, -2]\noutput : list = [2, -1, -2, -1, -1, -4]",
    "output": "generated_output : list = add_n(add_n(add_n([4, 1, 0, 1, 1, -2],-1),-5),4)",
    "io_inp": [
      4,
      1,
      0,
      1,
      1,
      -2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-1),-5),4)"
  },
  {
    "input": "input : list = [-4, -4, 0, -1, 1, 4]\noutput : list = [4, -8, -12, -16, -28, -28]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_des(sub_n([-4, -4, 0, -1, 1, 4],3)),4),4),-4)",
    "io_inp": [
      -4,
      -4,
      0,
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      -8,
      -12,
      -16,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_des(sub_n(input,3)),4),4),-4)"
  },
  {
    "input": "input : list = [-4, -1, 0, 0, -3, 4]\noutput : list = [6, 5, 3, 2, 2, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(add_n([-4, -1, 0, 0, -3, 4],2)),4)),-1)",
    "io_inp": [
      -4,
      -1,
      0,
      0,
      -3,
      4
    ],
    "io_out": [
      6,
      5,
      3,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(add_n(input,2)),4)),-1)"
  },
  {
    "input": "input : list = [-4, -4, 3, 5, 2]\noutput : list = [8, 6, 5, -1, -1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(reverse([-4, -4, 3, 5, 2])))),-3)",
    "io_inp": [
      -4,
      -4,
      3,
      5,
      2
    ],
    "io_out": [
      8,
      6,
      5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [-9, 6]",
    "output": "generated_output : list = mul_n(drop([-1, 3, -2],1),-3)",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      -9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [7, 13]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(mul_n([2, 4],3),9),-1)))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      7,
      13
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(mul_n(input,3),9),-1)))"
  },
  {
    "input": "input : list = [3, -3, 4, -5, -4]\noutput : list = [4, 3, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([3, -3, 4, -5, -4]))",
    "io_inp": [
      3,
      -3,
      4,
      -5,
      -4
    ],
    "io_out": [
      4,
      3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-6, -3]",
    "output": "generated_output : list = add_n([-1, 2],-5)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-19, -19]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(sort_des([-4, -4]),5),15)),1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -19,
      -19
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(sort_des(input),5),15)),1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [5, 20]",
    "output": "generated_output : list = reverse(mul_n([4, 1],5))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      5,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-1, 7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des([-4, 4]),-4)),3),-4)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des(input),-4)),3),-4)"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = sort_des(add_n([2, 3, 5],-4))",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [-1, -2, -5, -3, 3]\noutput : list = [5, 3, 2, 1, -3]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(mul_n([-1, -2, -5, -3, 3],-1)))))",
    "io_inp": [
      -1,
      -2,
      -5,
      -3,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [3, 1, 2, -1]\noutput : list = [-3, -4, -6]",
    "output": "generated_output : list = drop(sort_des(sort_des(sort_des(sub_n([3, 1, 2, -1],5)))),1)",
    "io_inp": [
      3,
      1,
      2,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(sort_des(sub_n(input,5)))),1)"
  },
  {
    "input": "input : list = [1, 5, 0, -4]\noutput : list = [0, 4, -1, -5]",
    "output": "generated_output : list = take(sub_n([1, 5, 0, -4],1),11)",
    "io_inp": [
      1,
      5,
      0,
      -4
    ],
    "io_out": [
      0,
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),11)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(mul_n([1, 5],-1),1))))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(mul_n(input,-1),1))))"
  },
  {
    "input": "input : list = [-5, -4, 0, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(drop([-5, -4, 0, -2],2),10),-3)))",
    "io_inp": [
      -5,
      -4,
      0,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(drop(input,2),10),-3)))"
  },
  {
    "input": "input : list = [3, 5, -2, 1, 2]\noutput : list = [0, -2, -7]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(take([3, 5, -2, 1, 2],3),-5))),46)",
    "io_inp": [
      3,
      5,
      -2,
      1,
      2
    ],
    "io_out": [
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(take(input,3),-5))),46)"
  },
  {
    "input": "input : list = [-4, -3, -1, 2, -1]\noutput : list = [-6, 9, 9]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(drop([-4, -3, -1, 2, -1],2),-5)),-4)",
    "io_inp": [
      -4,
      -3,
      -1,
      2,
      -1
    ],
    "io_out": [
      -6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(drop(input,2),-5)),-4)"
  },
  {
    "input": "input : list = [-4, -5, 2, -4, 4, 4]\noutput : list = [-5, -5, -7, -13, -13, -14]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sub_n([-4, -5, 2, -4, 4, 4],5)),37)),-4)",
    "io_inp": [
      -4,
      -5,
      2,
      -4,
      4,
      4
    ],
    "io_out": [
      -5,
      -5,
      -7,
      -13,
      -13,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sub_n(input,5)),37)),-4)"
  },
  {
    "input": "input : list = [-4, 3, 0, -5, 5, 3]\noutput : list = [-3, -2, 2, 5, 5, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([-4, 3, 0, -5, 5, 3])),2)",
    "io_inp": [
      -4,
      3,
      0,
      -5,
      5,
      3
    ],
    "io_out": [
      -3,
      -2,
      2,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-2, -4, 3, -4, 4]\noutput : list = [4, -4, 3, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, 3, -4, 4])",
    "io_inp": [
      -2,
      -4,
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, 4, -5, 4, 2]\noutput : list = [-5, -2, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -2, 4, -5, 4, 2])",
    "io_inp": [
      5,
      -2,
      4,
      -5,
      4,
      2
    ],
    "io_out": [
      -5,
      -2,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, -3, 4]\noutput : list = [4, 3, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des(reverse([3, -1, -3, 4])))",
    "io_inp": [
      3,
      -1,
      -3,
      4
    ],
    "io_out": [
      4,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [3, -5, -5, -2, 4]\noutput : list = [4, 3, -2, -5, -5]",
    "output": "generated_output : list = sort_des([3, -5, -5, -2, 4])",
    "io_inp": [
      3,
      -5,
      -5,
      -2,
      4
    ],
    "io_out": [
      4,
      3,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 1, 4, -4, 1]\noutput : list = [-3, 1, 4]",
    "output": "generated_output : list = take([-3, 1, 4, -4, 1],3)",
    "io_inp": [
      -3,
      1,
      4,
      -4,
      1
    ],
    "io_out": [
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -2, 0, -3, 3, 3]\noutput : list = [-3, 3, 3]",
    "output": "generated_output : list = sort_asc(drop([-5, -2, 0, -3, 3, 3],3))",
    "io_inp": [
      -5,
      -2,
      0,
      -3,
      3,
      3
    ],
    "io_out": [
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [-2, -5, -2, 0, 1, 1]\noutput : list = [-3, -3, -4, -6, -6, -9]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc([-2, -5, -2, 0, 1, 1])),-4))",
    "io_inp": [
      -2,
      -5,
      -2,
      0,
      1,
      1
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(input)),-4))"
  },
  {
    "input": "input : list = [-4, 2, 0, -3, -5]\noutput : list = [-4, -3, -2, 1, 3]",
    "output": "generated_output : list = sort_asc(take(sub_n([-4, 2, 0, -3, -5],-1),6))",
    "io_inp": [
      -4,
      2,
      0,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,-1),6))"
  },
  {
    "input": "input : list = [0, -3, -3, -5]\noutput : list = [-5, -3, -3, 0]",
    "output": "generated_output : list = reverse([0, -3, -3, -5])",
    "io_inp": [
      0,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 1, 1, -1, 1, 5]\noutput : list = [-2, -3, -6, -6, -6, -8]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(sort_des([4, 1, 1, -1, 1, 5])),-5)),2)",
    "io_inp": [
      4,
      1,
      1,
      -1,
      1,
      5
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(sort_des(input)),-5)),2)"
  },
  {
    "input": "input : list = [3, -4, 3, -5]\noutput : list = [8, 8, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des(sort_asc([3, -4, 3, -5])))),5)",
    "io_inp": [
      3,
      -4,
      3,
      -5
    ],
    "io_out": [
      8,
      8,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-15, -15]",
    "output": "generated_output : list = sort_des(mul_n([5, 5],-3))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-1, 2, 0, 4, 0, -4]\noutput : list = [-16, -6, 4, 4, 9, 24]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n([-1, 2, 0, 4, 0, -4],-5),4),-4),4))",
    "io_inp": [
      -1,
      2,
      0,
      4,
      0,
      -4
    ],
    "io_out": [
      -16,
      -6,
      4,
      4,
      9,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n(input,-5),4),-4),4))"
  },
  {
    "input": "input : list = [-5, 3, -4, 0, -4]\noutput : list = [7, -1, 6, 2, 6]",
    "output": "generated_output : list = sub_n(mul_n([-5, 3, -4, 0, -4],-1),-2)",
    "io_inp": [
      -5,
      3,
      -4,
      0,
      -4
    ],
    "io_out": [
      7,
      -1,
      6,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),-2)"
  },
  {
    "input": "input : list = [-5, -1, 4, -3, 1, -2]\noutput : list = [0, -8, -18, -4, -12, -6]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n([-5, -1, 4, -3, 1, -2],2),5),3),-5),-2)",
    "io_inp": [
      -5,
      -1,
      4,
      -3,
      1,
      -2
    ],
    "io_out": [
      0,
      -8,
      -18,
      -4,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n(input,2),5),3),-5),-2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(reverse(reverse(reverse([-4, 1]))),3)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(input))),3)"
  },
  {
    "input": "input : list = [5, -3, 2, 1]\noutput : list = [17, 5, 2, -7]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(mul_n([5, -3, 2, 1],-3)),-5),3))",
    "io_inp": [
      5,
      -3,
      2,
      1
    ],
    "io_out": [
      17,
      5,
      2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(mul_n(input,-3)),-5),3))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(add_n([-3, 1],5),-2)),34),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(add_n(input,5),-2)),34),-5)"
  },
  {
    "input": "input : list = [-1, 0, -4]\noutput : list = [-3, 9, 6]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(reverse([-1, 0, -4]),3),3)))",
    "io_inp": [
      -1,
      0,
      -4
    ],
    "io_out": [
      -3,
      9,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(reverse(input),3),3)))"
  },
  {
    "input": "input : list = [-2, -4, 1, -4]\noutput : list = [-7, 2, 8, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(sort_des([-2, -4, 1, -4]),-3)),17),4)",
    "io_inp": [
      -2,
      -4,
      1,
      -4
    ],
    "io_out": [
      -7,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(sort_des(input),-3)),17),4)"
  },
  {
    "input": "input : list = [-3, 3, 1, -3]\noutput : list = [0, 16, 24]",
    "output": "generated_output : list = sort_asc(drop(mul_n(sort_asc(sub_n([-3, 3, 1, -3],-3)),4),1))",
    "io_inp": [
      -3,
      3,
      1,
      -3
    ],
    "io_out": [
      0,
      16,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(sort_asc(sub_n(input,-3)),4),1))"
  },
  {
    "input": "input : list = [-4, 1, -2, 2, -1]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = take(mul_n(sort_des(take(sort_des([-4, 1, -2, 2, -1]),3)),-1),37)",
    "io_inp": [
      -4,
      1,
      -2,
      2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(sort_des(input),3)),-1),37)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des([-3, 4])",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [7, 9]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(sub_n([4, 3],1),7),2)),-3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(sub_n(input,1),7),2)),-3)"
  },
  {
    "input": "input : list = [-2, 5, -1, -5, 3]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(add_n(take([-2, 5, -1, -5, 3],1),3),1)",
    "io_inp": [
      -2,
      5,
      -1,
      -5,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,1),3),1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-303, 297]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(mul_n([-5, 5],4),1),5),-4),3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -303,
      297
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(mul_n(input,4),1),5),-4),3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(sub_n([-1, -2],3)),-2)))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(sub_n(input,3)),-2)))"
  },
  {
    "input": "input : list = [-3, -3, -3, -2, 3]\noutput : list = [15, 15, 15, 10, -15]",
    "output": "generated_output : list = mul_n([-3, -3, -3, -2, 3],-5)",
    "io_inp": [
      -3,
      -3,
      -3,
      -2,
      3
    ],
    "io_out": [
      15,
      15,
      15,
      10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [5, 3, 5, 4, -4, 4]\noutput : list = [-1, 6, 7, 7, 8, 8]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(add_n([5, 3, 5, 4, -4, 4],3)))),33)",
    "io_inp": [
      5,
      3,
      5,
      4,
      -4,
      4
    ],
    "io_out": [
      -1,
      6,
      7,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(add_n(input,3)))),33)"
  },
  {
    "input": "input : list = [2, -3, 0, 0, -3]\noutput : list = [-2, 3, 0, 0, 3]",
    "output": "generated_output : list = take(mul_n([2, -3, 0, 0, -3],-1),19)",
    "io_inp": [
      2,
      -3,
      0,
      0,
      -3
    ],
    "io_out": [
      -2,
      3,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),19)"
  },
  {
    "input": "input : list = [0, 0, 4, 1]\noutput : list = [7, 4, 3, 3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(sort_asc([0, 0, 4, 1])),3)))",
    "io_inp": [
      0,
      0,
      4,
      1
    ],
    "io_out": [
      7,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-3, 5, -5, -5]\noutput : list = [11, 3, 1, 1]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sort_des([-3, 5, -5, -5]),-3),5),2),42)",
    "io_inp": [
      -3,
      5,
      -5,
      -5
    ],
    "io_out": [
      11,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sort_des(input),-3),5),2),42)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = mul_n([-2, 3],1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(add_n(sort_des(take(sort_des([2, 5]),13)),-4),15)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(sort_des(input),13)),-4),15)"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [1]",
    "output": "generated_output : list = add_n(take([-1, -4, -2],1),2)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),2)"
  },
  {
    "input": "input : list = [5, 3, -5, 5, -1, 5]\noutput : list = [5, 5, 5, 3, -1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc([5, 3, -5, 5, -1, 5]))))",
    "io_inp": [
      5,
      3,
      -5,
      5,
      -1,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [-2, -5, 5, -3]\noutput : list = [2, -12, -14, -18]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n([-2, -5, 5, -3],-4))),2)",
    "io_inp": [
      -2,
      -5,
      5,
      -3
    ],
    "io_out": [
      2,
      -12,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(input,-4))),2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-19, -159]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(reverse([5, -2]),-3),-4),5),-1)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -19,
      -159
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(reverse(input),-3),-4),5),-1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc([3, 0])",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(reverse([-2, -2])),2),-1),-2)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(reverse(input)),2),-1),-2)"
  },
  {
    "input": "input : list = [-4, 0, -2]\noutput : list = [4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(drop(sort_des(reverse([-4, 0, -2])),1),-2))",
    "io_inp": [
      -4,
      0,
      -2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(sort_des(reverse(input)),1),-2))"
  },
  {
    "input": "input : list = [-3, -4, -2, 0, 0]\noutput : list = [-8, -9, -7, -5, -5]",
    "output": "generated_output : list = take(take(add_n([-3, -4, -2, 0, 0],-5),18),35)",
    "io_inp": [
      -3,
      -4,
      -2,
      0,
      0
    ],
    "io_out": [
      -8,
      -9,
      -7,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-5),18),35)"
  },
  {
    "input": "input : list = [3, -2, 0, 3, -3, -2]\noutput : list = [-1, -4, -6, -6, -7]",
    "output": "generated_output : list = drop(sort_des(take(take(add_n([3, -2, 0, 3, -3, -2],-4),29),34)),1)",
    "io_inp": [
      3,
      -2,
      0,
      3,
      -3,
      -2
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = drop(sort_des(take(take(add_n(input,-4),29),34)),1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-45, 135]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_des([1, -5]),2),-1),5),-3)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -45,
      135
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_des(input),2),-1),5),-3)"
  },
  {
    "input": "input : list = [-3, -4, -5, 2]\noutput : list = [3, 24, 21, 18]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-3, -4, -5, 2],3),-3))",
    "io_inp": [
      -3,
      -4,
      -5,
      2
    ],
    "io_out": [
      3,
      24,
      21,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,3),-3))"
  },
  {
    "input": "input : list = [4, -4, -5, -1, -2]\noutput : list = [4, -1, -2, -4, -5]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des([4, -4, -5, -1, -2]),2),-4),-2)",
    "io_inp": [
      4,
      -4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      4,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(input),2),-4),-2)"
  },
  {
    "input": "input : list = [-1, -2, 0, 4, 3]\noutput : list = [-1, -2, -5, -6, -7]",
    "output": "generated_output : list = sort_des(take(sort_des(sub_n(sort_asc([-1, -2, 0, 4, 3]),5)),13))",
    "io_inp": [
      -1,
      -2,
      0,
      4,
      3
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sub_n(sort_asc(input),5)),13))"
  },
  {
    "input": "input : list = [-3, 1, 4, -5, 5, 5]\noutput : list = [-4, 5, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(reverse([-3, 1, 4, -5, 5, 5]),4),-1)))",
    "io_inp": [
      -3,
      1,
      4,
      -5,
      5,
      5
    ],
    "io_out": [
      -4,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(reverse(input),4),-1)))"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [1, 5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(drop([0, 1, 0],1),-4)),5)",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(drop(input,1),-4)),5)"
  },
  {
    "input": "input : list = [5, -2, -2, 4, -2, 0]\noutput : list = [9, 2, 2, 8, 2, 4]",
    "output": "generated_output : list = take(reverse(reverse(add_n(add_n([5, -2, -2, 4, -2, 0],2),2))),42)",
    "io_inp": [
      5,
      -2,
      -2,
      4,
      -2,
      0
    ],
    "io_out": [
      9,
      2,
      2,
      8,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(add_n(input,2),2))),42)"
  },
  {
    "input": "input : list = [-3, -1, 2, -3]\noutput : list = [-8, 4, 12, 12]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(mul_n([-3, -1, 2, -3],-4),17))))",
    "io_inp": [
      -3,
      -1,
      2,
      -3
    ],
    "io_out": [
      -8,
      4,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(mul_n(input,-4),17))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(sort_asc([1, -4])))),6)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(sort_asc(input)))),6)"
  },
  {
    "input": "input : list = [0, 0, -5, -1]\noutput : list = [-3, -3, -8, -4]",
    "output": "generated_output : list = take(sub_n([0, 0, -5, -1],3),5)",
    "io_inp": [
      0,
      0,
      -5,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),5)"
  },
  {
    "input": "input : list = [-5, 1, 0, 3, 1]\noutput : list = [7, 5, 5, 4, -1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([-5, 1, 0, 3, 1],-4)))",
    "io_inp": [
      -5,
      1,
      0,
      3,
      1
    ],
    "io_out": [
      7,
      5,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [2, -5, -5, 1, -5]\noutput : list = [7, 0, 0, 6, 0]",
    "output": "generated_output : list = add_n([2, -5, -5, 1, -5],5)",
    "io_inp": [
      2,
      -5,
      -5,
      1,
      -5
    ],
    "io_out": [
      7,
      0,
      0,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-10, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(mul_n([-2, 3],-2),3),-3)),4)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(mul_n(input,-2),3),-3)),4)"
  },
  {
    "input": "input : list = [-3, 5, 0, -1]\noutput : list = [11, 5]",
    "output": "generated_output : list = take(take(add_n(mul_n(sort_asc([-3, 5, 0, -1]),-3),2),12),2)",
    "io_inp": [
      -3,
      5,
      0,
      -1
    ],
    "io_out": [
      11,
      5
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(sort_asc(input),-3),2),12),2)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-80, -40]",
    "output": "generated_output : list = take(take(mul_n(mul_n(add_n([-2, 0],-2),-4),-5),24),26)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -80,
      -40
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(add_n(input,-2),-4),-5),24),26)"
  },
  {
    "input": "input : list = [2, -3, -2]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(drop([2, -3, -2],1))),-2),11)",
    "io_inp": [
      2,
      -3,
      -2
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(drop(input,1))),-2),11)"
  },
  {
    "input": "input : list = [-2, 4, 1]\noutput : list = [-5, -8, -11]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(add_n([-2, 4, 1],-3)),-1)),-5)",
    "io_inp": [
      -2,
      4,
      1
    ],
    "io_out": [
      -5,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(add_n(input,-3)),-1)),-5)"
  },
  {
    "input": "input : list = [3, 4, -1, 0, 4]\noutput : list = [-8, -5, 4, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(mul_n([3, 4, -1, 0, 4],3),4),-3),2))",
    "io_inp": [
      3,
      4,
      -1,
      0,
      4
    ],
    "io_out": [
      -8,
      -5,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(mul_n(input,3),4),-3),2))"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [8, -4, -8]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n([4, -2, -4],1),2),4),-2)",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      8,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(input,1),2),4),-2)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(sort_des([-1, -3]),-1),-5),4),42)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(sort_des(input),-1),-5),4),42)"
  },
  {
    "input": "input : list = [-3, 2, -3, 2]\noutput : list = [13, 13, 3, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des(mul_n([-3, 2, -3, 2],2)),-5)),-4)",
    "io_inp": [
      -3,
      2,
      -3,
      2
    ],
    "io_out": [
      13,
      13,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(mul_n(input,2)),-5)),-4)"
  },
  {
    "input": "input : list = [2, -5, 4, 0, 3]\noutput : list = [-4, -2, -1, 0]",
    "output": "generated_output : list = take(take(drop(sort_asc(add_n([2, -5, 4, 0, 3],-4)),1),14),24)",
    "io_inp": [
      2,
      -5,
      4,
      0,
      3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(take(drop(sort_asc(add_n(input,-4)),1),14),24)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [8, 10]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(sort_asc([-2, -1]),3),-2),31))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(sort_asc(input),3),-2),31))"
  },
  {
    "input": "input : list = [5, -4, 2, -2, -5]\noutput : list = [-1, -10, -4, -8, -11]",
    "output": "generated_output : list = sub_n(sub_n(add_n([5, -4, 2, -2, -5],-4),3),-1)",
    "io_inp": [
      5,
      -4,
      2,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -10,
      -4,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,-4),3),-1)"
  },
  {
    "input": "input : list = [-1, -4, 0, -3]\noutput : list = [-2, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(sort_des([-1, -4, 0, -3]),1)),-1))",
    "io_inp": [
      -1,
      -4,
      0,
      -3
    ],
    "io_out": [
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(sort_des(input),1)),-1))"
  },
  {
    "input": "input : list = [0, -1, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(take([0, -1, 5],1),-1),-1),4))",
    "io_inp": [
      0,
      -1,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(take(input,1),-1),-1),4))"
  },
  {
    "input": "input : list = [5, 1, 5, -3]\noutput : list = [8, 4]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(take([5, 1, 5, -3],2)),22),-3))",
    "io_inp": [
      5,
      1,
      5,
      -3
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(take(input,2)),22),-3))"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [-40, -20, 100]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(mul_n([1, 2, -5],-4)))),5)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      -40,
      -20,
      100
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(mul_n(input,-4)))),5)"
  },
  {
    "input": "input : list = [-4, -5, -4, 4, -5, 0]\noutput : list = [-5, -4, 4, -5, 0]",
    "output": "generated_output : list = drop([-4, -5, -4, 4, -5, 0],1)",
    "io_inp": [
      -4,
      -5,
      -4,
      4,
      -5,
      0
    ],
    "io_out": [
      -5,
      -4,
      4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -5, 3, -3, -5, -4]\noutput : list = [1, -5, -6, -7, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des([-5, -5, 3, -3, -5, -4])),2))",
    "io_inp": [
      -5,
      -5,
      3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      1,
      -5,
      -6,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(input)),2))"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [-3, 4, 4]",
    "output": "generated_output : list = sort_asc([-3, 4, 4])",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, -1, -2, -3, 1]\noutput : list = [-4, -3, -2, -2, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n([1, -1, -1, -2, -3, 1],-1))))",
    "io_inp": [
      1,
      -1,
      -1,
      -2,
      -3,
      1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(input,-1))))"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([-3, 0, -2])))",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [3, 0, -4, 0, 3]\noutput : list = [-40, 0, 0, 30, 30]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(mul_n([3, 0, -4, 0, 3],5)),2),16),37)",
    "io_inp": [
      3,
      0,
      -4,
      0,
      3
    ],
    "io_out": [
      -40,
      0,
      0,
      30,
      30
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(mul_n(input,5)),2),16),37)"
  },
  {
    "input": "input : list = [-4, 2, -1, -4, 3, 0]\noutput : list = [16, -8, 4, 16]",
    "output": "generated_output : list = mul_n(take([-4, 2, -1, -4, 3, 0],4),-4)",
    "io_inp": [
      -4,
      2,
      -1,
      -4,
      3,
      0
    ],
    "io_out": [
      16,
      -8,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),-4)"
  },
  {
    "input": "input : list = [5, 0, 4, -1]\noutput : list = [2, 7, 3, 8]",
    "output": "generated_output : list = reverse(sub_n([5, 0, 4, -1],-3))",
    "io_inp": [
      5,
      0,
      4,
      -1
    ],
    "io_out": [
      2,
      7,
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-4, -2, 3, -2, -3, 3]\noutput : list = [-1, -1, -6, -6, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(sort_asc([-4, -2, 3, -2, -3, 3]),1),18),3))",
    "io_inp": [
      -4,
      -2,
      3,
      -2,
      -3,
      3
    ],
    "io_out": [
      -1,
      -1,
      -6,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(sort_asc(input),1),18),3))"
  },
  {
    "input": "input : list = [2, 1, -5, -5, -2]\noutput : list = [-25, -20, 10, 10, -5]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(sub_n([2, 1, -5, -5, -2],-3)),-5)),20)",
    "io_inp": [
      2,
      1,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -25,
      -20,
      10,
      10,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(sub_n(input,-3)),-5)),20)"
  },
  {
    "input": "input : list = [2, 4, 0, 0, -4]\noutput : list = [-4, 0, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sort_asc([2, 4, 0, 0, -4])))))",
    "io_inp": [
      2,
      4,
      0,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, 5, -5, 2, 4, -4]\noutput : list = [3, 4, 10, 12, 13, 13]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n([5, 5, -5, 2, 4, -4],5)),3))",
    "io_inp": [
      5,
      5,
      -5,
      2,
      4,
      -4
    ],
    "io_out": [
      3,
      4,
      10,
      12,
      13,
      13
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(input,5)),3))"
  },
  {
    "input": "input : list = [-2, 4, 4, 5]\noutput : list = [5, 4, 4, -2]",
    "output": "generated_output : list = sort_des([-2, 4, 4, 5])",
    "io_inp": [
      -2,
      4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, 4, -2, 2]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(drop(sort_asc([3, 5, 4, -2, 2]),4),-3)",
    "io_inp": [
      3,
      5,
      4,
      -2,
      2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(input),4),-3)"
  },
  {
    "input": "input : list = [5, 2, 3, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(take([5, 2, 3, 1, 4],2)),3),4))",
    "io_inp": [
      5,
      2,
      3,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(take(input,2)),3),4))"
  },
  {
    "input": "input : list = [1, 5, 3, -2, 5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(take([1, 5, 3, -2, 5],1))),-2))",
    "io_inp": [
      1,
      5,
      3,
      -2,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(take(input,1))),-2))"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_asc([0, 2, 0])))))",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, 0, -4, -2, 2]\noutput : list = [35, 20, -10, -40, -70]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(mul_n([3, 0, -4, -2, 2],-3)),-3),5),-5)",
    "io_inp": [
      3,
      0,
      -4,
      -2,
      2
    ],
    "io_out": [
      35,
      20,
      -10,
      -40,
      -70
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(mul_n(input,-3)),-3),5),-5)"
  },
  {
    "input": "input : list = [-3, -1, -1, -4]\noutput : list = [-4, -3, -1, -1]",
    "output": "generated_output : list = sort_asc([-3, -1, -1, -4])",
    "io_inp": [
      -3,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, -2, -3, 4]\noutput : list = [-96, 72, 48, -120, -120]",
    "output": "generated_output : list = mul_n(mul_n(take(mul_n(reverse([5, 5, -2, -3, 4]),2),24),-3),4)",
    "io_inp": [
      5,
      5,
      -2,
      -3,
      4
    ],
    "io_out": [
      -96,
      72,
      48,
      -120,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(mul_n(reverse(input),2),24),-3),4)"
  },
  {
    "input": "input : list = [-3, 3, 1, -3]\noutput : list = [12, 18]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(take([-3, 3, 1, -3],2),5),5),-5))",
    "io_inp": [
      -3,
      3,
      1,
      -3
    ],
    "io_out": [
      12,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(take(input,2),5),5),-5))"
  },
  {
    "input": "input : list = [0, 1, 3]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(take([0, 1, 3],1),5))),9)",
    "io_inp": [
      0,
      1,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(take(input,1),5))),9)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [-3, -1, 1]",
    "output": "generated_output : list = sub_n(add_n(add_n([-5, -3, -1],1),3),2)",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,1),3),2)"
  },
  {
    "input": "input : list = [3, -5, 4, 5]\noutput : list = [5, 4, 3, -5]",
    "output": "generated_output : list = sort_des([3, -5, 4, 5])",
    "io_inp": [
      3,
      -5,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, 3, -4, 5, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(take([0, -4, 3, -4, 5, 0],1),-2),-4)))",
    "io_inp": [
      0,
      -4,
      3,
      -4,
      5,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(take(input,1),-2),-4)))"
  },
  {
    "input": "input : list = [5, -1, -2, 3]\noutput : list = [0, 1, 5, 7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n([5, -1, -2, 3],-4))),-2),-4)",
    "io_inp": [
      5,
      -1,
      -2,
      3
    ],
    "io_out": [
      0,
      1,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n(input,-4))),-2),-4)"
  },
  {
    "input": "input : list = [-3, 4, 4, 0]\noutput : list = [-6, 1, 1, -3]",
    "output": "generated_output : list = sub_n([-3, 4, 4, 0],3)",
    "io_inp": [
      -3,
      4,
      4,
      0
    ],
    "io_out": [
      -6,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(sort_asc([4, -3, 2]))),-1))",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(sort_asc(input))),-1))"
  },
  {
    "input": "input : list = [-5, -4, -3, -4, -5]\noutput : list = [-4, -3, -4, -5]",
    "output": "generated_output : list = take(drop([-5, -4, -3, -4, -5],1),19)",
    "io_inp": [
      -5,
      -4,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),19)"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(drop([0, 2, -3],1),1)),5),9)",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(drop(input,1),1)),5),9)"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(reverse(drop([0, 5, 2],1)),1)",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,1)),1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sub_n(sort_des([2, -2]),5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [4, 5, -4, 2, 2]\noutput : list = [9, 10, 1, 7, 7]",
    "output": "generated_output : list = sub_n(sub_n([4, 5, -4, 2, 2],-3),-2)",
    "io_inp": [
      4,
      5,
      -4,
      2,
      2
    ],
    "io_out": [
      9,
      10,
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-2)"
  },
  {
    "input": "input : list = [-5, 3, -2, -3, 0]\noutput : list = [-20, -10, -5, 5, 20]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(reverse([-5, 3, -2, -3, 0]),-4)),3),5)",
    "io_inp": [
      -5,
      3,
      -2,
      -3,
      0
    ],
    "io_out": [
      -20,
      -10,
      -5,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(reverse(input),-4)),3),5)"
  },
  {
    "input": "input : list = [2, -2, 4, 5, 2]\noutput : list = [-45, -105, -105, -135, -150]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(add_n([2, -2, 4, 5, 2],5),-3),24),5))",
    "io_inp": [
      2,
      -2,
      4,
      5,
      2
    ],
    "io_out": [
      -45,
      -105,
      -105,
      -135,
      -150
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(add_n(input,5),-3),24),5))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [9, -3]",
    "output": "generated_output : list = mul_n([-3, 1],-3)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -5, 5, 3, -4]\noutput : list = [-15, -12, -12, 9, 15]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(sort_des([-4, -5, 5, 3, -4]),3),30),30))",
    "io_inp": [
      -4,
      -5,
      5,
      3,
      -4
    ],
    "io_out": [
      -15,
      -12,
      -12,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(sort_des(input),3),30),30))"
  },
  {
    "input": "input : list = [1, -4, 2, 1, 1, 2]\noutput : list = [-24, 1, 1, 1, 6, 6]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(mul_n([1, -4, 2, 1, 1, 2],5))),-4))",
    "io_inp": [
      1,
      -4,
      2,
      1,
      1,
      2
    ],
    "io_out": [
      -24,
      1,
      1,
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(mul_n(input,5))),-4))"
  },
  {
    "input": "input : list = [0, -4, -3, -4]\noutput : list = [0, -3, -4, -4]",
    "output": "generated_output : list = sort_des([0, -4, -3, -4])",
    "io_inp": [
      0,
      -4,
      -3,
      -4
    ],
    "io_out": [
      0,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3, 5, -4]\noutput : list = [-5, 2, 4]",
    "output": "generated_output : list = take(add_n(take(sub_n(sub_n([-4, 3, 5, -4],-1),-2),3),-4),46)",
    "io_inp": [
      -4,
      3,
      5,
      -4
    ],
    "io_out": [
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(sub_n(input,-1),-2),3),-4),46)"
  },
  {
    "input": "input : list = [1, -2, 1, -4]\noutput : list = [-3, -6, -3, -8]",
    "output": "generated_output : list = add_n([1, -2, 1, -4],-4)",
    "io_inp": [
      1,
      -2,
      1,
      -4
    ],
    "io_out": [
      -3,
      -6,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, 5, -3, 1]\noutput : list = [21, 12, 9, -3]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(add_n([0, 5, -3, 1],-4)))),-3)",
    "io_inp": [
      0,
      5,
      -3,
      1
    ],
    "io_out": [
      21,
      12,
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(add_n(input,-4)))),-3)"
  },
  {
    "input": "input : list = [-4, -3, 4, -5, 2, -3]\noutput : list = [5, 3, -2, -2, -3, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(sort_asc([-4, -3, 4, -5, 2, -3]),29),-4),5))",
    "io_inp": [
      -4,
      -3,
      4,
      -5,
      2,
      -3
    ],
    "io_out": [
      5,
      3,
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(sort_asc(input),29),-4),5))"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [12, -4, 8]",
    "output": "generated_output : list = mul_n([-3, 1, -2],-4)",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      12,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, -3, -5, -3]\noutput : list = [-7, -5, -5, 0]",
    "output": "generated_output : list = sub_n(sort_asc([2, -3, -5, -3]),2)",
    "io_inp": [
      2,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [4, -3, -1, -3, -4]\noutput : list = [2, -5, -3, -5, -6]",
    "output": "generated_output : list = sub_n(add_n([4, -3, -1, -3, -4],3),5)",
    "io_inp": [
      4,
      -3,
      -1,
      -3,
      -4
    ],
    "io_out": [
      2,
      -5,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),5)"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(drop([-5, 1, 2],1))),1),-1)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(drop(input,1))),1),-1)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-15, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sub_n([1, 4],3),4),5)),2)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -15,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sub_n(input,3),4),5)),2)"
  },
  {
    "input": "input : list = [-1, 1, 2, -5]\noutput : list = [1, 0, -2, -6]",
    "output": "generated_output : list = sort_des(add_n([-1, 1, 2, -5],-1))",
    "io_inp": [
      -1,
      1,
      2,
      -5
    ],
    "io_out": [
      1,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-14, -12, -6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(add_n([4, -2, -4],-2)),4),4))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -14,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(add_n(input,-2)),4),4))"
  },
  {
    "input": "input : list = [-3, 0, 3, 0]\noutput : list = [-3, 0, 0, 3]",
    "output": "generated_output : list = sort_asc([-3, 0, 3, 0])",
    "io_inp": [
      -3,
      0,
      3,
      0
    ],
    "io_out": [
      -3,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 1, 3],1)",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 3, 4, 2, 4, -2]\noutput : list = [-2, 2, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(drop([0, 3, 4, 2, 4, -2],2)))))",
    "io_inp": [
      0,
      3,
      4,
      2,
      4,
      -2
    ],
    "io_out": [
      -2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [-3, 3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(drop([-3, 3, 1],1))",
    "io_inp": [
      -3,
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n([1, 3],-3)),5)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,-3)),5)"
  },
  {
    "input": "input : list = [-2, -1, 1, -5, 4]\noutput : list = [20, 5, -5, -10, -25]",
    "output": "generated_output : list = take(sort_des(mul_n([-2, -1, 1, -5, 4],5)),35)",
    "io_inp": [
      -2,
      -1,
      1,
      -5,
      4
    ],
    "io_out": [
      20,
      5,
      -5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,5)),35)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(sort_asc([-2, 0]),-1))))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [3, 3, 1, 2, -5]\noutput : list = [5, -2, -1, -3, -3]",
    "output": "generated_output : list = mul_n(reverse([3, 3, 1, 2, -5]),-1)",
    "io_inp": [
      3,
      3,
      1,
      2,
      -5
    ],
    "io_out": [
      5,
      -2,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [1, -1, -2, -3, -4]\noutput : list = [1, -1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse([1, -1, -2, -3, -4]),5)))",
    "io_inp": [
      1,
      -1,
      -2,
      -3,
      -4
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(input),5)))"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [-1, -5, -6]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(add_n([5, 1, 0],-2))),-4),3)",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(add_n(input,-2))),-4),3)"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [72, 0, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(add_n([-5, 4, -5],5)),-4)),-2)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      72,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(add_n(input,5)),-4)),-2)"
  },
  {
    "input": "input : list = [4, 4, -5, -2]\noutput : list = [-11, -8, -2, -2]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(sort_des([4, 4, -5, -2]),-1),23),5))",
    "io_inp": [
      4,
      4,
      -5,
      -2
    ],
    "io_out": [
      -11,
      -8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(sort_des(input),-1),23),5))"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(take([4, -2, 5],1))),3))",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(take(input,1))),3))"
  },
  {
    "input": "input : list = [4, 5, 4, -2, -1]\noutput : list = [-4, -3, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(reverse([4, 5, 4, -2, -1]),20),-2)))",
    "io_inp": [
      4,
      5,
      4,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -3,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(reverse(input),20),-2)))"
  },
  {
    "input": "input : list = [-4, -5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = drop([-4, -5, -1],1)",
    "io_inp": [
      -4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -1, -2, -3, 5]\noutput : list = [7, 6, 6, 5, -1]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(add_n([-2, -1, -2, -3, 5],-3),-1),13),1))",
    "io_inp": [
      -2,
      -1,
      -2,
      -3,
      5
    ],
    "io_out": [
      7,
      6,
      6,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(add_n(input,-3),-1),13),1))"
  },
  {
    "input": "input : list = [4, 2, 4, 5, 3]\noutput : list = [16, 8, 16, 20, 12]",
    "output": "generated_output : list = mul_n([4, 2, 4, 5, 3],4)",
    "io_inp": [
      4,
      2,
      4,
      5,
      3
    ],
    "io_out": [
      16,
      8,
      16,
      20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, -1, -5, -2]\noutput : list = [-5, -6, -8, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([-4, -1, -5, -2])),4)",
    "io_inp": [
      -4,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc([0, -2, -5])),1))",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(input)),1))"
  },
  {
    "input": "input : list = [3, 4, 3, 5, -5, -3]\noutput : list = [8, 9, 8, 10, 0, 2]",
    "output": "generated_output : list = add_n(add_n([3, 4, 3, 5, -5, -3],3),2)",
    "io_inp": [
      3,
      4,
      3,
      5,
      -5,
      -3
    ],
    "io_out": [
      8,
      9,
      8,
      10,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),2)"
  },
  {
    "input": "input : list = [2, -3, 2, -1, 5, 0]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = add_n(take(add_n(take(sort_asc([2, -3, 2, -1, 5, 0]),3),2),11),1)",
    "io_inp": [
      2,
      -3,
      2,
      -1,
      5,
      0
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sort_asc(input),3),2),11),1)"
  },
  {
    "input": "input : list = [1, -3, -2, -1, -5, 1]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(take([1, -3, -2, -1, -5, 1],1),24),1),-5))",
    "io_inp": [
      1,
      -3,
      -2,
      -1,
      -5,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(take(input,1),24),1),-5))"
  },
  {
    "input": "input : list = [-5, 4, -5, -4, -5]\noutput : list = [-15, -15, -15, -14, -6]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n([-5, 4, -5, -4, -5],1),4)),-5)",
    "io_inp": [
      -5,
      4,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -15,
      -15,
      -15,
      -14,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(input,1),4)),-5)"
  },
  {
    "input": "input : list = [5, -5, -2, -3, 3]\noutput : list = [4, -6, -3]",
    "output": "generated_output : list = sub_n(take([5, -5, -2, -3, 3],3),1)",
    "io_inp": [
      5,
      -5,
      -2,
      -3,
      3
    ],
    "io_out": [
      4,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),1)"
  },
  {
    "input": "input : list = [-1, 3, -2, -4, -5]\noutput : list = [-3, -2, 0, 1, 5]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(sub_n([-1, 3, -2, -4, -5],2)),-5),1))",
    "io_inp": [
      -1,
      3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(sub_n(input,2)),-5),1))"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = add_n(add_n(sort_des([2, 2, 2]),-4),1)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-4),1)"
  },
  {
    "input": "input : list = [5, 5, 4, 2]\noutput : list = [6]",
    "output": "generated_output : list = reverse(sub_n(take([5, 5, 4, 2],1),-1))",
    "io_inp": [
      5,
      5,
      4,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,1),-1))"
  },
  {
    "input": "input : list = [-5, 4, -3, 1]\noutput : list = [-8, 8, 40, 64]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(reverse([-5, 4, -3, 1]),-4),-4)),-2)",
    "io_inp": [
      -5,
      4,
      -3,
      1
    ],
    "io_out": [
      -8,
      8,
      40,
      64
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(reverse(input),-4),-4)),-2)"
  },
  {
    "input": "input : list = [4, 1, 4, -5, -1]\noutput : list = [-1, -5, 4, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 4, -5, -1])",
    "io_inp": [
      4,
      1,
      4,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3, -4, 4, 4]\noutput : list = [-3, -3, -11, -4, -7]",
    "output": "generated_output : list = add_n(add_n(reverse([0, 3, -4, 4, 4]),-2),-5)",
    "io_inp": [
      0,
      3,
      -4,
      4,
      4
    ],
    "io_out": [
      -3,
      -3,
      -11,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),-2),-5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [0, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(add_n([2, 4],-1))),-1),-4)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(add_n(input,-1))),-1),-4)"
  },
  {
    "input": "input : list = [1, 5, 3, 2, -2, -4]\noutput : list = [-2, -6, -14, -16, -20, -12]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(add_n([1, 5, 3, 2, -2, -4],2),3),-2)),14)",
    "io_inp": [
      1,
      5,
      3,
      2,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -6,
      -14,
      -16,
      -20,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(add_n(input,2),3),-2)),14)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([4, -1])))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 1, -2]\noutput : list = [-9, -15, -18]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(add_n([-1, 1, -2],-4)),3)))",
    "io_inp": [
      -1,
      1,
      -2
    ],
    "io_out": [
      -9,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(add_n(input,-4)),3)))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-24, -60]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sub_n([1, -5],5),2)),3))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -24,
      -60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sub_n(input,5),2)),3))"
  },
  {
    "input": "input : list = [5, 0, -1, 5, -5]\noutput : list = [0, 4, 5, 10, 10]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_asc([5, 0, -1, 5, -5])),5),-4),4)",
    "io_inp": [
      5,
      0,
      -1,
      5,
      -5
    ],
    "io_out": [
      0,
      4,
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_asc(input)),5),-4),4)"
  },
  {
    "input": "input : list = [-5, -3, 3, -4, 4, -1]\noutput : list = [13, 5, -19, 9, -23, -3]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n(mul_n([-5, -3, 3, -4, 4, -1],-2),2),4),2),5)",
    "io_inp": [
      -5,
      -3,
      3,
      -4,
      4,
      -1
    ],
    "io_out": [
      13,
      5,
      -19,
      9,
      -23,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(mul_n(input,-2),2),4),2),5)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n([-1, -3],-2)),-3))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(input,-2)),-3))"
  },
  {
    "input": "input : list = [4, -5, -4, 5]\noutput : list = [-15, -20, -60, -65]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_des([4, -5, -4, 5])),4),-4),-5)",
    "io_inp": [
      4,
      -5,
      -4,
      5
    ],
    "io_out": [
      -15,
      -20,
      -60,
      -65
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_des(input)),4),-4),-5)"
  },
  {
    "input": "input : list = [5, 0, -4, -5]\noutput : list = [-8, -7, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(drop([5, 0, -4, -5],1),9)),3))",
    "io_inp": [
      5,
      0,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(drop(input,1),9)),3))"
  },
  {
    "input": "input : list = [-5, 3, -2, -3, 2, -5]\noutput : list = [-5, 2, -3, -2, 3, -5]",
    "output": "generated_output : list = take(reverse([-5, 3, -2, -3, 2, -5]),25)",
    "io_inp": [
      -5,
      3,
      -2,
      -3,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      -3,
      -2,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(input),25)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [-8, -4, -3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(sort_des([-3, 1, 2]),2),-3)))",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      -8,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(sort_des(input),2),-3)))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [25, 49]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(mul_n([-4, -2],3)),-4),2),1)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      25,
      49
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(mul_n(input,3)),-4),2),1)"
  },
  {
    "input": "input : list = [-4, 5, -2, 2, -4, 1]\noutput : list = [-4, -2, 5]",
    "output": "generated_output : list = sort_asc(take([-4, 5, -2, 2, -4, 1],3))",
    "io_inp": [
      -4,
      5,
      -2,
      2,
      -4,
      1
    ],
    "io_out": [
      -4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [2, -1, 2, 5, 0]\noutput : list = [10, 7, 7, 5, 4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(reverse([2, -1, 2, 5, 0])))),-5)",
    "io_inp": [
      2,
      -1,
      2,
      5,
      0
    ],
    "io_out": [
      10,
      7,
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [3, 5, -1, 0, 4]\noutput : list = [7, 3, 2]",
    "output": "generated_output : list = add_n(add_n(sort_des(reverse(drop([3, 5, -1, 0, 4],2))),-1),4)",
    "io_inp": [
      3,
      5,
      -1,
      0,
      4
    ],
    "io_out": [
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(reverse(drop(input,2))),-1),4)"
  },
  {
    "input": "input : list = [-3, -2, -5, -1, -2, 2]\noutput : list = [2, -1, -2, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -2, -5, -1, -2, 2])",
    "io_inp": [
      -3,
      -2,
      -5,
      -1,
      -2,
      2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3, 4, 0, -3]\noutput : list = [-11, -4, -3, -7, -10]",
    "output": "generated_output : list = take(add_n(add_n(sub_n([-4, 3, 4, 0, -3],1),-1),-5),11)",
    "io_inp": [
      -4,
      3,
      4,
      0,
      -3
    ],
    "io_out": [
      -11,
      -4,
      -3,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(input,1),-1),-5),11)"
  },
  {
    "input": "input : list = [2, -5, -2, 0, 2, -5]\noutput : list = [-15, -15, -6, 0, 6, 6]",
    "output": "generated_output : list = sort_asc(mul_n([2, -5, -2, 0, 2, -5],3))",
    "io_inp": [
      2,
      -5,
      -2,
      0,
      2,
      -5
    ],
    "io_out": [
      -15,
      -15,
      -6,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,3))"
  },
  {
    "input": "input : list = [-2, -2, -4, 3]\noutput : list = [-4, -2, -2, 3]",
    "output": "generated_output : list = sort_asc([-2, -2, -4, 3])",
    "io_inp": [
      -2,
      -2,
      -4,
      3
    ],
    "io_out": [
      -4,
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([2, -3])))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [5, -2, -2, 4, -3, 5]\noutput : list = [11, 11, 10, 4, 4, 3]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(add_n([5, -2, -2, 4, -3, 5],3),-3))),7)",
    "io_inp": [
      5,
      -2,
      -2,
      4,
      -3,
      5
    ],
    "io_out": [
      11,
      11,
      10,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(add_n(input,3),-3))),7)"
  },
  {
    "input": "input : list = [5, -3, -3, 1, -4, 2]\noutput : list = [-2, 4, 6, 14, 14, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse([5, -3, -3, 1, -4, 2])),4),-2))",
    "io_inp": [
      5,
      -3,
      -3,
      1,
      -4,
      2
    ],
    "io_out": [
      -2,
      4,
      6,
      14,
      14,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse(input)),4),-2))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(reverse([-5, -4])))))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(sort_des([1, 4])),2),2))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(sort_des(input)),2),2))"
  },
  {
    "input": "input : list = [0, 1, -3, 3, -1]\noutput : list = [2, 0, -1, -2, -4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([0, 1, -3, 3, -1],1)),1)",
    "io_inp": [
      0,
      1,
      -3,
      3,
      -1
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,1)),1)"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [0, -1, 3]",
    "output": "generated_output : list = mul_n([0, -1, 3],1)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      0,
      -1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, -4, -3, 1]\noutput : list = [-5, 0, 15, 20]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n([0, -4, -3, 1],-5))),18)",
    "io_inp": [
      0,
      -4,
      -3,
      1
    ],
    "io_out": [
      -5,
      0,
      15,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(input,-5))),18)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n([-2, -4],2),6)))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(input,2),6)))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(reverse([-4, 1]),3))),2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(reverse(input),3))),2)"
  },
  {
    "input": "input : list = [3, -5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(drop([3, -5, -2],1),-1),1),-2),45)",
    "io_inp": [
      3,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(drop(input,1),-1),1),-2),45)"
  },
  {
    "input": "input : list = [1, 3, 2, -3, 5]\noutput : list = [0, -8, -12, -16, -32]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_asc([1, 3, 2, -3, 5])),-5),4))",
    "io_inp": [
      1,
      3,
      2,
      -3,
      5
    ],
    "io_out": [
      0,
      -8,
      -12,
      -16,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_asc(input)),-5),4))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-6, -8]",
    "output": "generated_output : list = add_n(sort_des(take(take(sub_n([2, 0],3),5),3)),-5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sub_n(input,3),5),3)),-5)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = mul_n([-3, -1, 3],1)",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [1, -5, -7]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_des([-2, -4, 4]),3))))",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [35, 15]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(add_n([2, -2],5))),5),2)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      35,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(add_n(input,5))),5),2)"
  },
  {
    "input": "input : list = [0, 1, 3, 2]\noutput : list = [10, 20, 30, 40]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(sub_n([0, 1, 3, 2],4),14),5)),-2)",
    "io_inp": [
      0,
      1,
      3,
      2
    ],
    "io_out": [
      10,
      20,
      30,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(sub_n(input,4),14),5)),-2)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-3, 1])),4)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [1, 4, -4, 2, 3, 3]\noutput : list = [-1, 2, -6, 0, 1, 1]",
    "output": "generated_output : list = sub_n([1, 4, -4, 2, 3, 3],2)",
    "io_inp": [
      1,
      4,
      -4,
      2,
      3,
      3
    ],
    "io_out": [
      -1,
      2,
      -6,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, -5, 5, -5, 4]\noutput : list = [0, -27, 3, -27, -21]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(add_n([-3, -5, 5, -5, 4],-1)),2),3),3)",
    "io_inp": [
      -3,
      -5,
      5,
      -5,
      4
    ],
    "io_out": [
      0,
      -27,
      3,
      -27,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(add_n(input,-1)),2),3),3)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(sub_n([-4, -2],5),9)),-2),-3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(sub_n(input,5),9)),-2),-3)"
  },
  {
    "input": "input : list = [-1, 1, -3, 3]\noutput : list = [-3, -1, 1, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_des([-1, 1, -3, 3])))))",
    "io_inp": [
      -1,
      1,
      -3,
      3
    ],
    "io_out": [
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [28, 36, 40]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(reverse([-4, -2, -5]),-5),-4)))",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      28,
      36,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(reverse(input),-5),-4)))"
  },
  {
    "input": "input : list = [-1, -3, 2, -5, 0, 2]\noutput : list = [11, 11, 9, 8, 6, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(sub_n([-1, -3, 2, -5, 0, 2],-5),3))),-1)",
    "io_inp": [
      -1,
      -3,
      2,
      -5,
      0,
      2
    ],
    "io_out": [
      11,
      11,
      9,
      8,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(sub_n(input,-5),3))),-1)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [2, 8, 10]",
    "output": "generated_output : list = reverse(sub_n(add_n(reverse([-3, 3, 5]),2),-3))",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(reverse(input),2),-3))"
  },
  {
    "input": "input : list = [-1, 2, 3, -5, -5]\noutput : list = [3, 2, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(drop([-1, 2, 3, -5, -5],1)))))",
    "io_inp": [
      -1,
      2,
      3,
      -5,
      -5
    ],
    "io_out": [
      3,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [3, 4, -1, 4, -2, -5]\noutput : list = [7, 8, 3, 8]",
    "output": "generated_output : list = sub_n(add_n(take([3, 4, -1, 4, -2, -5],4),3),-1)",
    "io_inp": [
      3,
      4,
      -1,
      4,
      -2,
      -5
    ],
    "io_out": [
      7,
      8,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(input,4),3),-1)"
  },
  {
    "input": "input : list = [-1, -2, 0, -4, -3]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-1, -2, 0, -4, -3],3)))",
    "io_inp": [
      -1,
      -2,
      0,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,3)))"
  },
  {
    "input": "input : list = [-3, 0, 3, 0, 2]\noutput : list = [0, -1, -3, -3, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sort_asc([-3, 0, 3, 0, 2]))),3),21)",
    "io_inp": [
      -3,
      0,
      3,
      0,
      2
    ],
    "io_out": [
      0,
      -1,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sort_asc(input))),3),21)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-7, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(reverse([-4, -1]),3))))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, 2])",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, -1, -1]\noutput : list = [5, 5, 1, -7]",
    "output": "generated_output : list = add_n(sort_des(take(take(mul_n([1, 5, -1, -1],-2),18),10)),3)",
    "io_inp": [
      1,
      5,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(mul_n(input,-2),18),10)),3)"
  },
  {
    "input": "input : list = [3, 3, 1, 3]\noutput : list = [1, 1, 1, -1]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(reverse([3, 3, 1, 3])),2),33))",
    "io_inp": [
      3,
      3,
      1,
      3
    ],
    "io_out": [
      1,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(reverse(input)),2),33))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(reverse(reverse(drop(sort_des([1, -3]),1))),3)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(drop(sort_des(input),1))),3)"
  },
  {
    "input": "input : list = [2, -4, 4, -5, 4, -2]\noutput : list = [-15, -12, -6, 6, 12, 12]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(reverse([2, -4, 4, -5, 4, -2])),-1)),-3)",
    "io_inp": [
      2,
      -4,
      4,
      -5,
      4,
      -2
    ],
    "io_out": [
      -15,
      -12,
      -6,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(reverse(input)),-1)),-3)"
  },
  {
    "input": "input : list = [-1, -1, 5, 0, -4]\noutput : list = [-3, -3, 3, -2, -6]",
    "output": "generated_output : list = add_n([-1, -1, 5, 0, -4],-2)",
    "io_inp": [
      -1,
      -1,
      5,
      0,
      -4
    ],
    "io_out": [
      -3,
      -3,
      3,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -5, 3, 2, 3, 0]\noutput : list = [3, 2, 3, 0]",
    "output": "generated_output : list = drop([4, -5, 3, 2, 3, 0],2)",
    "io_inp": [
      4,
      -5,
      3,
      2,
      3,
      0
    ],
    "io_out": [
      3,
      2,
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -4, -3, 1, 5]\noutput : list = [-3, -4, -3]",
    "output": "generated_output : list = take(drop(reverse([-3, -4, -3, 1, 5]),2),17)",
    "io_inp": [
      -3,
      -4,
      -3,
      1,
      5
    ],
    "io_out": [
      -3,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(reverse(input),2),17)"
  },
  {
    "input": "input : list = [2, -4, 1, 4]\noutput : list = [-8, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(sort_asc([2, -4, 1, 4]),16),-4)))",
    "io_inp": [
      2,
      -4,
      1,
      4
    ],
    "io_out": [
      -8,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(sort_asc(input),16),-4)))"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [0, -25, -35]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc([2, -5, -3]),-2),5))",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      0,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(input),-2),5))"
  },
  {
    "input": "input : list = [-5, -4, -3, 3]\noutput : list = [-22, -19, -1]",
    "output": "generated_output : list = sub_n(take(drop(mul_n(sub_n([-5, -4, -3, 3],4),3),1),35),-2)",
    "io_inp": [
      -5,
      -4,
      -3,
      3
    ],
    "io_out": [
      -22,
      -19,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(mul_n(sub_n(input,4),3),1),35),-2)"
  },
  {
    "input": "input : list = [0, 3, -4, -4]\noutput : list = [-3, 18, 18]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(drop([0, 3, -4, -4],1),-2),3),-1))",
    "io_inp": [
      0,
      3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(drop(input,1),-2),3),-1))"
  },
  {
    "input": "input : list = [-3, 5, -1, 2]\noutput : list = [-4, 2, 8, 12]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc([-3, 5, -1, 2]),4),-2),-2))",
    "io_inp": [
      -3,
      5,
      -1,
      2
    ],
    "io_out": [
      -4,
      2,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc(input),4),-2),-2))"
  },
  {
    "input": "input : list = [-2, -5, -2, -4]\noutput : list = [-5, -4, -2, -2]",
    "output": "generated_output : list = sort_asc([-2, -5, -2, -4])",
    "io_inp": [
      -2,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des([0, -1]),1),3),18)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(input),1),3),18)"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [-4, -19, -22]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(add_n([5, -1, 4],1)),-3),15),-4)",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      -4,
      -19,
      -22
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(add_n(input,1)),-3),15),-4)"
  },
  {
    "input": "input : list = [0, -3, -4, -2, -3]\noutput : list = [-9, -8, -8, -7, -5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(add_n([0, -3, -4, -2, -3],-5))),11))",
    "io_inp": [
      0,
      -3,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(add_n(input,-5))),11))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = reverse([-2, 3])",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, -2, 5]\noutput : list = [29, 1, 13, 41]",
    "output": "generated_output : list = add_n(take(take(mul_n(sub_n([2, -5, -2, 5],-4),4),4),32),5)",
    "io_inp": [
      2,
      -5,
      -2,
      5
    ],
    "io_out": [
      29,
      1,
      13,
      41
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(sub_n(input,-4),4),4),32),5)"
  },
  {
    "input": "input : list = [1, 5, -3, -2]\noutput : list = [-32, -48, 80, 16]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(reverse([1, 5, -3, -2]),-4))),-4)",
    "io_inp": [
      1,
      5,
      -3,
      -2
    ],
    "io_out": [
      -32,
      -48,
      80,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(reverse(input),-4))),-4)"
  },
  {
    "input": "input : list = [1, -5, 3]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n([1, -5, 3],1)),8)))",
    "io_inp": [
      1,
      -5,
      3
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n(input,1)),8)))"
  },
  {
    "input": "input : list = [-5, -5, -5, -2, -2, -3]\noutput : list = [2, 2, 1, -1, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(reverse([-5, -5, -5, -2, -2, -3]),25)),4))",
    "io_inp": [
      -5,
      -5,
      -5,
      -2,
      -2,
      -3
    ],
    "io_out": [
      2,
      2,
      1,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(reverse(input),25)),4))"
  },
  {
    "input": "input : list = [0, -2, -5, 1, 0, -4]\noutput : list = [17, 5, 2, 20, 11, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(mul_n([0, -2, -5, 1, 0, -4],-3),-1),-4)),2)",
    "io_inp": [
      0,
      -2,
      -5,
      1,
      0,
      -4
    ],
    "io_out": [
      17,
      5,
      2,
      20,
      11,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(mul_n(input,-3),-1),-4)),2)"
  },
  {
    "input": "input : list = [-2, 3, -5, 4]\noutput : list = [-14, -9, 16, 31]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(mul_n([-2, 3, -5, 4],-5),-2))),4)",
    "io_inp": [
      -2,
      3,
      -5,
      4
    ],
    "io_out": [
      -14,
      -9,
      16,
      31
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(mul_n(input,-5),-2))),4)"
  },
  {
    "input": "input : list = [4, -2, 2, -1, 2, 1]\noutput : list = [-2, -1, 1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([4, -2, 2, -1, 2, 1])",
    "io_inp": [
      4,
      -2,
      2,
      -1,
      2,
      1
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, 3, -5, -1, 3]\noutput : list = [-6, -2, -2, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n(add_n([5, -1, 3, -5, -1, 3],-2),1))",
    "io_inp": [
      5,
      -1,
      3,
      -5,
      -1,
      3
    ],
    "io_out": [
      -6,
      -2,
      -2,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,-2),1))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-19, -19]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n([-3, -3],-4))),-2),5)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -19,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n(input,-4))),-2),5)"
  },
  {
    "input": "input : list = [4, -1, 5, 0, -5, 0]\noutput : list = [4, -1, 4, 9]",
    "output": "generated_output : list = take(reverse(add_n(drop([4, -1, 5, 0, -5, 0],2),4)),31)",
    "io_inp": [
      4,
      -1,
      5,
      0,
      -5,
      0
    ],
    "io_out": [
      4,
      -1,
      4,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(drop(input,2),4)),31)"
  },
  {
    "input": "input : list = [-4, 1, 3, 1]\noutput : list = [-4, 1, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc([-4, 1, 3, 1]))))",
    "io_inp": [
      -4,
      1,
      3,
      1
    ],
    "io_out": [
      -4,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [0, -1, 4, 0]\noutput : list = [0, -1, 4, 0]",
    "output": "generated_output : list = reverse(reverse([0, -1, 4, 0]))",
    "io_inp": [
      0,
      -1,
      4,
      0
    ],
    "io_out": [
      0,
      -1,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -3, -5, -3]\noutput : list = [-64, -8, -8, 8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(sub_n([4, -3, -5, -3],1),5),-2)),4)",
    "io_inp": [
      4,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -64,
      -8,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(sub_n(input,1),5),-2)),4)"
  },
  {
    "input": "input : list = [-4, 1, -3, 5, -2, -1]\noutput : list = [0, 1, 2, 3, 5, 9]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(sub_n([-4, 1, -3, 5, -2, -1],-2))),-2),4)",
    "io_inp": [
      -4,
      1,
      -3,
      5,
      -2,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(sub_n(input,-2))),-2),4)"
  },
  {
    "input": "input : list = [4, -3, 3, 1, 2]\noutput : list = [-1, -2, -3, -4, -8]",
    "output": "generated_output : list = sort_des(add_n(reverse([4, -3, 3, 1, 2]),-5))",
    "io_inp": [
      4,
      -3,
      3,
      1,
      2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [-1, 3, -4, 3]\noutput : list = [20, 8, -8, -8]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(mul_n([-1, 3, -4, 3],-4),1)),9),4)",
    "io_inp": [
      -1,
      3,
      -4,
      3
    ],
    "io_out": [
      20,
      8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(mul_n(input,-4),1)),9),4)"
  },
  {
    "input": "input : list = [1, 0, 1, 1, 1]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(take([1, 0, 1, 1, 1],2),5),-1)),1)",
    "io_inp": [
      1,
      0,
      1,
      1,
      1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(take(input,2),5),-1)),1)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des([2, 4])",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 2, 4, 3, -2, 5]\noutput : list = [3, 2, 1, 0, -4, -7]",
    "output": "generated_output : list = take(take(sort_des(sub_n(reverse([-5, 2, 4, 3, -2, 5]),2)),44),14)",
    "io_inp": [
      -5,
      2,
      4,
      3,
      -2,
      5
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(reverse(input),2)),44),14)"
  },
  {
    "input": "input : list = [2, -3, 5, -3]\noutput : list = [4, -6, 10, -6]",
    "output": "generated_output : list = mul_n([2, -3, 5, -3],2)",
    "io_inp": [
      2,
      -3,
      5,
      -3
    ],
    "io_out": [
      4,
      -6,
      10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, 5, -2, 2, 3]\noutput : list = [0, 3, 4, 5, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(reverse(reverse([1, 5, -2, 2, 3]))),-4),2)",
    "io_inp": [
      1,
      5,
      -2,
      2,
      3
    ],
    "io_out": [
      0,
      3,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(reverse(reverse(input))),-4),2)"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [0, -12, -20]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sort_asc([3, 5, 0]),-4))),44)",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      0,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sort_asc(input),-4))),44)"
  },
  {
    "input": "input : list = [-2, -1, 3, 1, -4, -5]\noutput : list = [-6, -5, -1, -3, -8, -9]",
    "output": "generated_output : list = sub_n([-2, -1, 3, 1, -4, -5],4)",
    "io_inp": [
      -2,
      -1,
      3,
      1,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -1,
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [0, 4, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(sort_asc([3, 5, -1]))),-2),3)",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(sort_asc(input))),-2),3)"
  },
  {
    "input": "input : list = [1, -3, 5, 3, -5]\noutput : list = [-4, 4, 12, 28, 36]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc([1, -3, 5, 3, -5])),4),-4))",
    "io_inp": [
      1,
      -3,
      5,
      3,
      -5
    ],
    "io_out": [
      -4,
      4,
      12,
      28,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc(input)),4),-4))"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [4, 7, 9]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([4, -1, 2],5)))",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      4,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,5)))"
  },
  {
    "input": "input : list = [2, -4, -5, 0, 2, -5]\noutput : list = [-10, -3]",
    "output": "generated_output : list = add_n(sort_asc(drop([2, -4, -5, 0, 2, -5],4)),-5)",
    "io_inp": [
      2,
      -4,
      -5,
      0,
      2,
      -5
    ],
    "io_out": [
      -10,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,4)),-5)"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [36, 36, 16]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(reverse([-2, -2, 3]),-4)),3),-4)",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      36,
      36,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(reverse(input),-4)),3),-4)"
  },
  {
    "input": "input : list = [-4, -1, -3, 3, 4, -1]\noutput : list = [-4, -3, -1, -1, 3, 4]",
    "output": "generated_output : list = sort_asc([-4, -1, -3, 3, 4, -1])",
    "io_inp": [
      -4,
      -1,
      -3,
      3,
      4,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1, 4, -2, 4]\noutput : list = [25, 40, 65, 35, 65]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(sub_n([-4, -1, 4, -2, 4],-2),20),-2),5),5)",
    "io_inp": [
      -4,
      -1,
      4,
      -2,
      4
    ],
    "io_out": [
      25,
      40,
      65,
      35,
      65
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(sub_n(input,-2),20),-2),5),5)"
  },
  {
    "input": "input : list = [3, -3, -2, 5, -5, 0]\noutput : list = [-9, -7, -6, -4, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(sort_des([3, -3, -2, 5, -5, 0]),11),4)))",
    "io_inp": [
      3,
      -3,
      -2,
      5,
      -5,
      0
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(sort_des(input),11),4)))"
  },
  {
    "input": "input : list = [-3, 3, -1, 0, 4]\noutput : list = [4, 3, 0, -1, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des([-3, 3, -1, 0, 4])))",
    "io_inp": [
      -3,
      3,
      -1,
      0,
      4
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = sort_des(take(reverse([-1, 0, -1]),8))",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),8))"
  },
  {
    "input": "input : list = [5, 3, -1, -2, 4, -1]\noutput : list = [-1, 4, -2, -1, 3, 5]",
    "output": "generated_output : list = sub_n(take(add_n(reverse([5, 3, -1, -2, 4, -1]),-3),30),-3)",
    "io_inp": [
      5,
      3,
      -1,
      -2,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -2,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(input),-3),30),-3)"
  },
  {
    "input": "input : list = [4, 3, 2, 2, 4, 0]\noutput : list = [24, 20, 16]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(take([4, 3, 2, 2, 4, 0],3),1),3),4),25)",
    "io_inp": [
      4,
      3,
      2,
      2,
      4,
      0
    ],
    "io_out": [
      24,
      20,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(take(input,3),1),3),4),25)"
  },
  {
    "input": "input : list = [3, -4, -4, -4, 5]\noutput : list = [3, 3, 3, -25, -33]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(sort_des([3, -4, -4, -4, 5])),4),-4),-3)",
    "io_inp": [
      3,
      -4,
      -4,
      -4,
      5
    ],
    "io_out": [
      3,
      3,
      3,
      -25,
      -33
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(sort_des(input)),4),-4),-3)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-72, -48]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n([-3, -2],2),-4)),-3))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -72,
      -48
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n(input,2),-4)),-3))"
  },
  {
    "input": "input : list = [1, 2, -1, 5, 4]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(take(take(drop(sort_des([1, 2, -1, 5, 4]),4),22),22),3)",
    "io_inp": [
      1,
      2,
      -1,
      5,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(take(drop(sort_des(input),4),22),22),3)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(sort_des([-2, 5]),5))))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(sort_des(input),5))))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 5]),-1)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-8, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(reverse([4, -5]),-5),2)))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(reverse(input),-5),2)))"
  },
  {
    "input": "input : list = [-4, 5, -4, -5, 4, -1]\noutput : list = [-1, -37, -1, 3, -33, -13]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n([-4, 5, -4, -5, 4, -1],5),-4),24),-3)",
    "io_inp": [
      -4,
      5,
      -4,
      -5,
      4,
      -1
    ],
    "io_out": [
      -1,
      -37,
      -1,
      3,
      -33,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(input,5),-4),24),-3)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-2, 5])))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [4, -5, -5]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(take([4, -5, -5],1),-5)",
    "io_inp": [
      4,
      -5,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [2, -4, -5, -1, 3]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(take([2, -4, -5, -1, 3],3)),1),20))",
    "io_inp": [
      2,
      -4,
      -5,
      -1,
      3
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(take(input,3)),1),20))"
  },
  {
    "input": "input : list = [5, -1, -3, 3]\noutput : list = [2, 0, -4, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sub_n([5, -1, -3, 3],3)))))",
    "io_inp": [
      5,
      -1,
      -3,
      3
    ],
    "io_out": [
      2,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [-3, 2, 1, -2]\noutput : list = [-3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc([-3, 2, 1, -2])",
    "io_inp": [
      -3,
      2,
      1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [3, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(sort_des([2, -1]),8))),4)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(sort_des(input),8))),4)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(mul_n([0, 0, -1],1)))))",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [5, -5, 1, -1, -1]\noutput : list = [-10, -2, 2, 2, 10]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(reverse([5, -5, 1, -1, -1])),-2)))",
    "io_inp": [
      5,
      -5,
      1,
      -1,
      -1
    ],
    "io_out": [
      -10,
      -2,
      2,
      2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [4, 0, -5, -1, -4]\noutput : list = [100, 80, 20, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(drop(mul_n([4, 0, -5, -1, -4],-4),1),5)))",
    "io_inp": [
      4,
      0,
      -5,
      -1,
      -4
    ],
    "io_out": [
      100,
      80,
      20,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(drop(mul_n(input,-4),1),5)))"
  },
  {
    "input": "input : list = [-2, 2, -3, -3, -2, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(take(drop(add_n(drop([-2, 2, -3, -3, -2, -3],3),1),2),11))",
    "io_inp": [
      -2,
      2,
      -3,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(add_n(drop(input,3),1),2),11))"
  },
  {
    "input": "input : list = [5, -2, 4]\noutput : list = [3, -4, 2]",
    "output": "generated_output : list = sub_n([5, -2, 4],2)",
    "io_inp": [
      5,
      -2,
      4
    ],
    "io_out": [
      3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, 2, 0, 1, 0]\noutput : list = [-6, -9, -12, -12, -21]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(add_n([-3, 2, 0, 1, 0],-4))),3))",
    "io_inp": [
      -3,
      2,
      0,
      1,
      0
    ],
    "io_out": [
      -6,
      -9,
      -12,
      -12,
      -21
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(add_n(input,-4))),3))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(sort_des([3, 3])),-1),25),3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(sort_des(input)),-1),25),3)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [4, -8]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(sort_des([-2, 4]))),-2),6)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      4,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(sort_des(input))),-2),6)"
  },
  {
    "input": "input : list = [0, -3, -2]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = sort_des([0, -3, -2])",
    "io_inp": [
      0,
      -3,
      -2
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, -4, -3, -2, -5]\noutput : list = [-40, -36, -36, -32, -28, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(sub_n([-4, 5, -4, -3, -2, -5],1),4)),4))",
    "io_inp": [
      -4,
      5,
      -4,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -40,
      -36,
      -36,
      -32,
      -28,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(sub_n(input,1),4)),4))"
  },
  {
    "input": "input : list = [4, 0, 3]\noutput : list = [-10, -8, -2]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(sort_des([4, 0, 3])),-2),2))",
    "io_inp": [
      4,
      0,
      3
    ],
    "io_out": [
      -10,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(sort_des(input)),-2),2))"
  },
  {
    "input": "input : list = [1, 5, 0, -1, 3, 1]\noutput : list = [1, 5, 0]",
    "output": "generated_output : list = take([1, 5, 0, -1, 3, 1],3)",
    "io_inp": [
      1,
      5,
      0,
      -1,
      3,
      1
    ],
    "io_out": [
      1,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [1, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(reverse([-2, 3, -2]),1),1)))",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(reverse(input),1),1)))"
  },
  {
    "input": "input : list = [4, 1, 5, -4, -3, 0]\noutput : list = [-4, -3, 0, 1, 4, 5]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(sort_asc([4, 1, 5, -4, -3, 0])),37)),7)",
    "io_inp": [
      4,
      1,
      5,
      -4,
      -3,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(sort_asc(input)),37)),7)"
  },
  {
    "input": "input : list = [3, -5, -2, 0, -4, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = take([3, -5, -2, 0, -4, -5],2)",
    "io_inp": [
      3,
      -5,
      -2,
      0,
      -4,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 4, -2]\noutput : list = [12, 9, 6]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n(sort_des([1, 4, -2]),-1),5),5),3)",
    "io_inp": [
      1,
      4,
      -2
    ],
    "io_out": [
      12,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(sort_des(input),-1),5),5),3)"
  },
  {
    "input": "input : list = [-1, -1, 4, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, 4, -2],1)",
    "io_inp": [
      -1,
      -1,
      4,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [18, 9]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(drop([2, 1, 4],1),1),2)),3)",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      18,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(drop(input,1),1),2)),3)"
  },
  {
    "input": "input : list = [-4, 5, -3, -1, -5, 4]\noutput : list = [10, 2, 1]",
    "output": "generated_output : list = sort_des(take(sub_n(take(take([-4, 5, -3, -1, -5, 4],3),15),-5),23))",
    "io_inp": [
      -4,
      5,
      -3,
      -1,
      -5,
      4
    ],
    "io_out": [
      10,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(take(input,3),15),-5),23))"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [20, -15, -25]",
    "output": "generated_output : list = sort_des(mul_n([4, -5, -3],5))",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      20,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [-4, 2, 3, -1, 0, -1]\noutput : list = [3, 2, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(take([-4, 2, 3, -1, 0, -1],4)),34)))",
    "io_inp": [
      -4,
      2,
      3,
      -1,
      0,
      -1
    ],
    "io_out": [
      3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(take(input,4)),34)))"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [5, 4, -4]",
    "output": "generated_output : list = take(sort_des([5, -4, 4]),15)",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      5,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),15)"
  },
  {
    "input": "input : list = [5, -2, 4, -1, 1]\noutput : list = [2, 0, 5, -1, 6]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n(reverse([5, -2, 4, -1, 1]),1),3),1),1)",
    "io_inp": [
      5,
      -2,
      4,
      -1,
      1
    ],
    "io_out": [
      2,
      0,
      5,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(reverse(input),1),3),1),1)"
  },
  {
    "input": "input : list = [-4, -1, -4, 4]\noutput : list = [-4, -4, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-4, -1, -4, 4])))",
    "io_inp": [
      -4,
      -1,
      -4,
      4
    ],
    "io_out": [
      -4,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-4, -5, -5]\noutput : list = [-4, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-4, -5, -5]))",
    "io_inp": [
      -4,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 5, 4, -2]\noutput : list = [5, 8, 7, 1]",
    "output": "generated_output : list = take(add_n(mul_n([2, 5, 4, -2],1),3),19)",
    "io_inp": [
      2,
      5,
      4,
      -2
    ],
    "io_out": [
      5,
      8,
      7,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,1),3),19)"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [-4, 3, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(add_n([2, -5, 4],1))),35))",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(add_n(input,1))),35))"
  },
  {
    "input": "input : list = [-1, -3, 2]\noutput : list = [2, 4, 7]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(sub_n([-1, -3, 2],-3),-2)),12))",
    "io_inp": [
      -1,
      -3,
      2
    ],
    "io_out": [
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(sub_n(input,-3),-2)),12))"
  },
  {
    "input": "input : list = [4, 5, 0, -5]\noutput : list = [5, 4, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc([4, 5, 0, -5]))",
    "io_inp": [
      4,
      5,
      0,
      -5
    ],
    "io_out": [
      5,
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -1, -5, -1, -4, 2]\noutput : list = [-5, -4, -1, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sort_asc([3, -1, -5, -1, -4, 2])))))",
    "io_inp": [
      3,
      -1,
      -5,
      -1,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4,
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, 5, 5, 0, -5, -3]\noutput : list = [-7, -5, -2, -2, 3, 3]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sort_des([0, 5, 5, 0, -5, -3]),23),1),-1))",
    "io_inp": [
      0,
      5,
      5,
      0,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -2,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sort_des(input),23),1),-1))"
  },
  {
    "input": "input : list = [-2, 3, 3, 5, -4]\noutput : list = [-1, 1, 6, 6, 8]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(sub_n([-2, 3, 3, 5, -4],-4),21),3)),4)",
    "io_inp": [
      -2,
      3,
      3,
      5,
      -4
    ],
    "io_out": [
      -1,
      1,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(sub_n(input,-4),21),3)),4)"
  },
  {
    "input": "input : list = [-5, 2, -1]\noutput : list = [-3, 4, 1]",
    "output": "generated_output : list = sub_n(sub_n([-5, 2, -1],1),-3)",
    "io_inp": [
      -5,
      2,
      -1
    ],
    "io_out": [
      -3,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-3)"
  },
  {
    "input": "input : list = [1, -4, -2, -3, -4]\noutput : list = [10]",
    "output": "generated_output : list = drop(take(sub_n(mul_n(take([1, -4, -2, -3, -4],3),-4),-2),41),2)",
    "io_inp": [
      1,
      -4,
      -2,
      -3,
      -4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(mul_n(take(input,3),-4),-2),41),2)"
  },
  {
    "input": "input : list = [-4, 3, 4, -2, 1]\noutput : list = [8, 4, -2, -6, -8]",
    "output": "generated_output : list = mul_n(sort_asc([-4, 3, 4, -2, 1]),-2)",
    "io_inp": [
      -4,
      3,
      4,
      -2,
      1
    ],
    "io_out": [
      8,
      4,
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-5, -3, -2, 5]\noutput : list = [-5, -3, -2, 5]",
    "output": "generated_output : list = add_n(sub_n([-5, -3, -2, 5],-5),-5)",
    "io_inp": [
      -5,
      -3,
      -2,
      5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),-5)"
  },
  {
    "input": "input : list = [-5, -5, -5]\noutput : list = [-6, -6, -6]",
    "output": "generated_output : list = add_n([-5, -5, -5],-1)",
    "io_inp": [
      -5,
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [5, 5, -4, 1]\noutput : list = [15, 15, -9, -39]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sort_asc([5, 5, -4, 1]),-2)),5),-3)",
    "io_inp": [
      5,
      5,
      -4,
      1
    ],
    "io_out": [
      15,
      15,
      -9,
      -39
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sort_asc(input),-2)),5),-3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sub_n([-2, 1],3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, 3, 4, 5, -4]\noutput : list = [18, 2, 0]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(take([-5, 3, 4, 5, -4],3)),4),-2),5)",
    "io_inp": [
      -5,
      3,
      4,
      5,
      -4
    ],
    "io_out": [
      18,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(take(input,3)),4),-2),5)"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [40, 30, 25]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_asc([0, -3, -1]),-5)),-5))",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      40,
      30,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_asc(input),-5)),-5))"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [0, -2, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(add_n([-3, 1, 3],-3)))))",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [-1, -3, 4, -3]\noutput : list = [-8, -10, -3, -10]",
    "output": "generated_output : list = add_n(sub_n([-1, -3, 4, -3],4),-3)",
    "io_inp": [
      -1,
      -3,
      4,
      -3
    ],
    "io_out": [
      -8,
      -10,
      -3,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-3)"
  },
  {
    "input": "input : list = [3, 1, -4, 5]\noutput : list = [9, 0, 5]",
    "output": "generated_output : list = add_n(reverse(drop([3, 1, -4, 5],1)),4)",
    "io_inp": [
      3,
      1,
      -4,
      5
    ],
    "io_out": [
      9,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,1)),4)"
  },
  {
    "input": "input : list = [-5, -4, 2, -4]\noutput : list = [65, 60, 60, 30]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_des([-5, -4, 2, -4]),-5),3),-5))",
    "io_inp": [
      -5,
      -4,
      2,
      -4
    ],
    "io_out": [
      65,
      60,
      60,
      30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_des(input),-5),3),-5))"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [-24, -3, -27]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(sub_n([4, -3, 5],-4),-1),-1),24),-3)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      -24,
      -3,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(sub_n(input,-4),-1),-1),24),-3)"
  },
  {
    "input": "input : list = [1, 1, 3]\noutput : list = [3, 3, 5]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(sort_des([1, 1, 3]))),-2),45)",
    "io_inp": [
      1,
      1,
      3
    ],
    "io_out": [
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(sort_des(input))),-2),45)"
  },
  {
    "input": "input : list = [-3, -2, -3, 4, -4, 5]\noutput : list = [-8, -7, -6, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(drop([-3, -2, -3, 4, -4, 5],1),-4)))",
    "io_inp": [
      -3,
      -2,
      -3,
      4,
      -4,
      5
    ],
    "io_out": [
      -8,
      -7,
      -6,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(drop(input,1),-4)))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-20, -25]",
    "output": "generated_output : list = take(mul_n([4, 5],-5),9)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),9)"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(reverse(add_n(take(drop([-5, 1, 0],1),7),-4)),16)",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(drop(input,1),7),-4)),16)"
  },
  {
    "input": "input : list = [-1, 1, -4, 5]\noutput : list = [2, -2, -4, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n([-1, 1, -4, 5],-4),-3))),-4)",
    "io_inp": [
      -1,
      1,
      -4,
      5
    ],
    "io_out": [
      2,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n(input,-4),-3))),-4)"
  },
  {
    "input": "input : list = [-2, 5, 3, 3]\noutput : list = [6, 4, 4, -1]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(sort_des([-2, 5, 3, 3]))),1),45)",
    "io_inp": [
      -2,
      5,
      3,
      3
    ],
    "io_out": [
      6,
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(sort_des(input))),1),45)"
  },
  {
    "input": "input : list = [5, 4, -5, -4]\noutput : list = [29, 24, -16]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(drop([5, 4, -5, -4],1)),-1),-5),1)",
    "io_inp": [
      5,
      4,
      -5,
      -4
    ],
    "io_out": [
      29,
      24,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(drop(input,1)),-1),-5),1)"
  },
  {
    "input": "input : list = [-5, 2, -4, -1, 2]\noutput : list = [-1, 6, 0, 3, 6]",
    "output": "generated_output : list = sub_n([-5, 2, -4, -1, 2],-4)",
    "io_inp": [
      -5,
      2,
      -4,
      -1,
      2
    ],
    "io_out": [
      -1,
      6,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [4, 3, 1, -3]\noutput : list = [-3, 1, 3, 4]",
    "output": "generated_output : list = reverse([4, 3, 1, -3])",
    "io_inp": [
      4,
      3,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -1, -1, 4]\noutput : list = [-12, -12, -20, -32]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(reverse([1, -1, -1, 4]),-4)),-4))",
    "io_inp": [
      1,
      -1,
      -1,
      4
    ],
    "io_out": [
      -12,
      -12,
      -20,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(reverse(input),-4)),-4))"
  },
  {
    "input": "input : list = [1, 3, 3, -2]\noutput : list = [-2, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([1, 3, 3, -2])",
    "io_inp": [
      1,
      3,
      3,
      -2
    ],
    "io_out": [
      -2,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, 4]\noutput : list = [-20, 15, 15]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sort_des([4, -3, 4])),5),-5))",
    "io_inp": [
      4,
      -3,
      4
    ],
    "io_out": [
      -20,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sort_des(input)),5),-5))"
  },
  {
    "input": "input : list = [0, -2, 2, -4, 3, 0]\noutput : list = [-12, -8, 0, 0, 8, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([0, -2, 2, -4, 3, 0],-4)))",
    "io_inp": [
      0,
      -2,
      2,
      -4,
      3,
      0
    ],
    "io_out": [
      -12,
      -8,
      0,
      0,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [2, 4, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(add_n([-3, 0, -5],2))),5))",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(add_n(input,2))),5))"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [2, 6, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(reverse([-5, -1, 0]),-2),-5)))",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      2,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(reverse(input),-2),-5)))"
  },
  {
    "input": "input : list = [-2, -3, -3, 1, 3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(take([-2, -3, -3, 1, 3],2)),1)))",
    "io_inp": [
      -2,
      -3,
      -3,
      1,
      3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(take(input,2)),1)))"
  },
  {
    "input": "input : list = [3, -5, 0, 2]\noutput : list = [4, -16, -24, -28]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n(mul_n([3, -5, 0, 2],-1),-4)),4))",
    "io_inp": [
      3,
      -5,
      0,
      2
    ],
    "io_out": [
      4,
      -16,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(mul_n(input,-1),-4)),4))"
  },
  {
    "input": "input : list = [-4, 5, -5, -3]\noutput : list = [-10, -9, -8, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(reverse([-4, 5, -5, -3]),5),1)))",
    "io_inp": [
      -4,
      5,
      -5,
      -3
    ],
    "io_out": [
      -10,
      -9,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(reverse(input),5),1)))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-6, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n([3, -5],-2),4)))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(input,-2),4)))"
  },
  {
    "input": "input : list = [2, 3, 3, -4]\noutput : list = [0, 0, -2, -14]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(sort_des([2, 3, 3, -4]),3),2)),31)",
    "io_inp": [
      2,
      3,
      3,
      -4
    ],
    "io_out": [
      0,
      0,
      -2,
      -14
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(sort_des(input),3),2)),31)"
  },
  {
    "input": "input : list = [-5, 5, -3, 3, -5, 4]\noutput : list = [32, 2, 42, -8]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(take([-5, 5, -3, 3, -5, 4],4),-4),5),-3))",
    "io_inp": [
      -5,
      5,
      -3,
      3,
      -5,
      4
    ],
    "io_out": [
      32,
      2,
      42,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(take(input,4),-4),5),-3))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [5, 15]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(sort_des([5, 3]),2),5),28))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      5,
      15
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(sort_des(input),2),5),28))"
  },
  {
    "input": "input : list = [-1, -2, 2, 5, 2, -4]\noutput : list = [-9, -7, -6, -3, -3, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(reverse([-1, -2, 2, 5, 2, -4])))),5)",
    "io_inp": [
      -1,
      -2,
      2,
      5,
      2,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(reverse(input)))),5)"
  },
  {
    "input": "input : list = [0, 4, 5, 2, 2]\noutput : list = [0, -1, -3, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sub_n([0, 4, 5, 2, 2],5),5),-3)),-2)",
    "io_inp": [
      0,
      4,
      5,
      2,
      2
    ],
    "io_out": [
      0,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sub_n(input,5),5),-3)),-2)"
  },
  {
    "input": "input : list = [4, -4, 4]\noutput : list = [2, 10, 10]",
    "output": "generated_output : list = add_n(add_n(sort_asc([4, -4, 4]),1),5)",
    "io_inp": [
      4,
      -4,
      4
    ],
    "io_out": [
      2,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),1),5)"
  },
  {
    "input": "input : list = [2, 0, 5, -4, 2, -4]\noutput : list = [6, 4, 9, 0, 6, 0]",
    "output": "generated_output : list = sub_n([2, 0, 5, -4, 2, -4],-4)",
    "io_inp": [
      2,
      0,
      5,
      -4,
      2,
      -4
    ],
    "io_out": [
      6,
      4,
      9,
      0,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [3, -3, -3]",
    "output": "generated_output : list = reverse([-3, -3, 3])",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -1, -4, -2, -4, -5]\noutput : list = [0, -1, -3, -3, -4, -4]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(reverse([-5, -1, -4, -2, -4, -5]),-2)),1),8)",
    "io_inp": [
      -5,
      -1,
      -4,
      -2,
      -4,
      -5
    ],
    "io_out": [
      0,
      -1,
      -3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(reverse(input),-2)),1),8)"
  },
  {
    "input": "input : list = [-4, 0, 2, -2]\noutput : list = [1, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(reverse([-4, 0, 2, -2]),-1))))",
    "io_inp": [
      -4,
      0,
      2,
      -2
    ],
    "io_out": [
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [3, -4, -1, 4]\noutput : list = [6, 5, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([3, -4, -1, 4],-2)))",
    "io_inp": [
      3,
      -4,
      -1,
      4
    ],
    "io_out": [
      6,
      5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [2, -2, -5, 5, -4, -1]\noutput : list = [-9, -8, -6, -5, -2, 1]",
    "output": "generated_output : list = add_n(sort_asc([2, -2, -5, 5, -4, -1]),-4)",
    "io_inp": [
      2,
      -2,
      -5,
      5,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -8,
      -6,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [5, 2, 5, -1, -2]\noutput : list = [28, 28, 1, -26, -35]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_des(mul_n([5, 2, 5, -1, -2],3)),5),3),2)",
    "io_inp": [
      5,
      2,
      5,
      -1,
      -2
    ],
    "io_out": [
      28,
      28,
      1,
      -26,
      -35
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_des(mul_n(input,3)),5),3),2)"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [9, -9]",
    "output": "generated_output : list = mul_n(drop([3, -3, 3],1),-3)",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [0, 2, -3, -2]\noutput : list = [10, 15, -10, 0]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n([0, 2, -3, -2],-5),1))))",
    "io_inp": [
      0,
      2,
      -3,
      -2
    ],
    "io_out": [
      10,
      15,
      -10,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n(input,-5),1))))"
  },
  {
    "input": "input : list = [3, -1, 1, 0, 3, -5]\noutput : list = [3, 3, 1]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(sort_asc([3, -1, 1, 0, 3, -5])))),3)",
    "io_inp": [
      3,
      -1,
      1,
      0,
      3,
      -5
    ],
    "io_out": [
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [4, 1, 1, -2, 5, 2]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(take([4, 1, 1, -2, 5, 2],2))",
    "io_inp": [
      4,
      1,
      1,
      -2,
      5,
      2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-5, 0, 5]",
    "output": "generated_output : list = sort_asc([-5, 0, 5])",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 4, -5, -1, -2]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(drop([2, 4, -5, -1, -2],2),-4)))",
    "io_inp": [
      2,
      4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(drop(input,2),-4)))"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-3, 4, -1]",
    "output": "generated_output : list = sub_n([-4, 3, -2],-1)",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -3,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, -2, 4, -1, -2, -1]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(drop([1, -2, 4, -1, -2, -1],4),5),12)))",
    "io_inp": [
      1,
      -2,
      4,
      -1,
      -2,
      -1
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(drop(input,4),5),12)))"
  },
  {
    "input": "input : list = [-5, -1, 4, -4, 2]\noutput : list = [-9, -8, -5, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(reverse([-5, -1, 4, -4, 2])),-4)))",
    "io_inp": [
      -5,
      -1,
      4,
      -4,
      2
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-2, 0, 3, -5, 1]\noutput : list = [18, 12, 9, 3, -6]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(reverse([-2, 0, 3, -5, 1])),4),-1),3)",
    "io_inp": [
      -2,
      0,
      3,
      -5,
      1
    ],
    "io_out": [
      18,
      12,
      9,
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(reverse(input)),4),-1),3)"
  },
  {
    "input": "input : list = [-1, -4, 0, -1, 0]\noutput : list = [5, 2, 2, 1, 1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(reverse([-1, -4, 0, -1, 0])),-1),-1))",
    "io_inp": [
      -1,
      -4,
      0,
      -1,
      0
    ],
    "io_out": [
      5,
      2,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(reverse(input)),-1),-1))"
  },
  {
    "input": "input : list = [-4, 0, -5, -1]\noutput : list = [5, 4, 1, 0]",
    "output": "generated_output : list = take(sort_des(mul_n([-4, 0, -5, -1],-1)),8)",
    "io_inp": [
      -4,
      0,
      -5,
      -1
    ],
    "io_out": [
      5,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,-1)),8)"
  },
  {
    "input": "input : list = [5, 5, 1, 5, 0, -5]\noutput : list = [-12, -7, -6, -2, -2]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(sub_n([5, 5, 1, 5, 0, -5],2),-3),-2)),5)",
    "io_inp": [
      5,
      5,
      1,
      5,
      0,
      -5
    ],
    "io_out": [
      -12,
      -7,
      -6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(sub_n(input,2),-3),-2)),5)"
  },
  {
    "input": "input : list = [-2, -4, -4, 0, 5, -1]\noutput : list = [14, -22, 8, 32, 32, 20]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(mul_n([-2, -4, -4, 0, 5, -1],-3),-4),2)),42)",
    "io_inp": [
      -2,
      -4,
      -4,
      0,
      5,
      -1
    ],
    "io_out": [
      14,
      -22,
      8,
      32,
      32,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(mul_n(input,-3),-4),2)),42)"
  },
  {
    "input": "input : list = [-4, -4, -5, -1, -1]\noutput : list = [-2, -2, -14, -14, -18]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(mul_n([-4, -4, -5, -1, -1],1),4))),-2)",
    "io_inp": [
      -4,
      -4,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -14,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(mul_n(input,1),4))),-2)"
  },
  {
    "input": "input : list = [-1, -4, 0, -3, -5, -5]\noutput : list = [60, 60, 48, 36, 12, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n([-1, -4, 0, -3, -5, -5],3),-4)))",
    "io_inp": [
      -1,
      -4,
      0,
      -3,
      -5,
      -5
    ],
    "io_out": [
      60,
      60,
      48,
      36,
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(input,3),-4)))"
  },
  {
    "input": "input : list = [1, 5, -4]\noutput : list = [25]",
    "output": "generated_output : list = drop(mul_n(add_n(sort_asc(add_n([1, 5, -4],-5)),5),5),2)",
    "io_inp": [
      1,
      5,
      -4
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = drop(mul_n(add_n(sort_asc(add_n(input,-5)),5),5),2)"
  },
  {
    "input": "input : list = [-3, 3, 3, 3, -3]\noutput : list = [-3, 3, 3, 3, -3]",
    "output": "generated_output : list = reverse([-3, 3, 3, 3, -3])",
    "io_inp": [
      -3,
      3,
      3,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, 5, -4, -5, 3]\noutput : list = [-4, -3, 2, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(sort_des([1, 2, 5, -4, -5, 3])),-1)))",
    "io_inp": [
      1,
      2,
      5,
      -4,
      -5,
      3
    ],
    "io_out": [
      -4,
      -3,
      2,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [3, 4, -2, -1, 1]\noutput : list = [21, 9, -15, -39, -51]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(mul_n([3, 4, -2, -1, 1],4),-4),-3),-3))",
    "io_inp": [
      3,
      4,
      -2,
      -1,
      1
    ],
    "io_out": [
      21,
      9,
      -15,
      -39,
      -51
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(mul_n(input,4),-4),-3),-3))"
  },
  {
    "input": "input : list = [2, 1, -1, 2, 0]\noutput : list = [0, 12, -6, 6, 12]",
    "output": "generated_output : list = take(reverse(mul_n(take(mul_n([2, 1, -1, 2, 0],-3),19),-2)),45)",
    "io_inp": [
      2,
      1,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      12,
      -6,
      6,
      12
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(mul_n(input,-3),19),-2)),45)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sort_des([-3, 2]),1))))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(add_n([1, -3, 0],1))),-2),3)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(add_n(input,1))),-2),3)"
  },
  {
    "input": "input : list = [-1, 1, 4, -5]\noutput : list = [4, -4, -16, 20]",
    "output": "generated_output : list = mul_n([-1, 1, 4, -5],-4)",
    "io_inp": [
      -1,
      1,
      4,
      -5
    ],
    "io_out": [
      4,
      -4,
      -16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [4, -4, 1, 2, -3, -2]\noutput : list = [-4, -5, 0, -1, -6, 2]",
    "output": "generated_output : list = sub_n(sub_n(reverse([4, -4, 1, 2, -3, -2]),-2),4)",
    "io_inp": [
      4,
      -4,
      1,
      2,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -5,
      0,
      -1,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-2),4)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [12, -9]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(mul_n([4, -3],3)))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      12,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [-4, -1, -1]\noutput : list = [5, 5, 2]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(reverse([-4, -1, -1])),2)),4)",
    "io_inp": [
      -4,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(reverse(input)),2)),4)"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [-16, 8, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(mul_n([4, -4, 2],4)))))",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      -16,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-5, -4, 5, 4, -5, -4]\noutput : list = [-22, -18, 14, 14, 18, 18]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([-5, -4, 5, 4, -5, -4],-4),2))",
    "io_inp": [
      -5,
      -4,
      5,
      4,
      -5,
      -4
    ],
    "io_out": [
      -22,
      -18,
      14,
      14,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,-4),2))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse([-2, -1])",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [0, 2, 8]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(add_n([-5, -3, 3],-4),-4),24),5))",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(add_n(input,-4),-4),24),5))"
  },
  {
    "input": "input : list = [-3, 1, -1]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(add_n([-3, 1, -1],2)))),3)",
    "io_inp": [
      -3,
      1,
      -1
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(add_n(input,2)))),3)"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(take([4, -3, 2],1)),-5),3))",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(take(input,1)),-5),3))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [9, 5]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(mul_n([-4, -3],-4)),-2)),-5)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(mul_n(input,-4)),-2)),-5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-6, -3]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(reverse([-3, 0]),-1),-4),30))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(reverse(input),-1),-4),30))"
  },
  {
    "input": "input : list = [4, 4, 3, -5, 5]\noutput : list = [25, -15, 17]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(drop([4, 4, 3, -5, 5],2),4)),13),5)",
    "io_inp": [
      4,
      4,
      3,
      -5,
      5
    ],
    "io_out": [
      25,
      -15,
      17
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(drop(input,2),4)),13),5)"
  },
  {
    "input": "input : list = [-1, -2, 0, -2, 3, -4]\noutput : list = [-9, 3, 7, 11, 11, 19]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_des(mul_n([-1, -2, 0, -2, 3, -4],-4)))),-3)",
    "io_inp": [
      -1,
      -2,
      0,
      -2,
      3,
      -4
    ],
    "io_out": [
      -9,
      3,
      7,
      11,
      11,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_des(mul_n(input,-4)))),-3)"
  },
  {
    "input": "input : list = [1, 2, -4, -2, 2]\noutput : list = [-16, -16, -8, 16, 32]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(mul_n([1, 2, -4, -2, 2],-4))),2))",
    "io_inp": [
      1,
      2,
      -4,
      -2,
      2
    ],
    "io_out": [
      -16,
      -16,
      -8,
      16,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(mul_n(input,-4))),2))"
  },
  {
    "input": "input : list = [1, 5, 1, 1, 4]\noutput : list = [6, 6, 6, 9, 10]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_des([1, 5, 1, 1, 4]),-2)),-1),-2)",
    "io_inp": [
      1,
      5,
      1,
      1,
      4
    ],
    "io_out": [
      6,
      6,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_des(input),-2)),-1),-2)"
  },
  {
    "input": "input : list = [4, -5, 2, -4, 4, 4]\noutput : list = [-9, -8, -2, 0, 0, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([4, -5, 2, -4, 4, 4],3),1))",
    "io_inp": [
      4,
      -5,
      2,
      -4,
      4,
      4
    ],
    "io_out": [
      -9,
      -8,
      -2,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,3),1))"
  },
  {
    "input": "input : list = [5, -5, -2, 0, 2]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = drop(sub_n([5, -5, -2, 0, 2],3),2)",
    "io_inp": [
      5,
      -5,
      -2,
      0,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,3),2)"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [-10, -3, -11]",
    "output": "generated_output : list = sub_n(sub_n([-2, 5, -3],5),3)",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      -10,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),3)"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [12, 9, 9]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(add_n([1, 2, 1],2),10))),3)",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      12,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(add_n(input,2),10))),3)"
  },
  {
    "input": "input : list = [2, 1, 0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = drop([2, 1, 0, 2],2)",
    "io_inp": [
      2,
      1,
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -4, 4, -5]\noutput : list = [-19, -7, 5, 8]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n(add_n([0, -4, 4, -5],2),-3)),-1))",
    "io_inp": [
      0,
      -4,
      4,
      -5
    ],
    "io_out": [
      -19,
      -7,
      5,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(add_n(input,2),-3)),-1))"
  },
  {
    "input": "input : list = [-1, 4, 0, -3]\noutput : list = [4, 0, -1, -3]",
    "output": "generated_output : list = sort_des([-1, 4, 0, -3])",
    "io_inp": [
      -1,
      4,
      0,
      -3
    ],
    "io_out": [
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [-2, 26, 6]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n([0, -5, 2],-4),3),-3))",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      -2,
      26,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(input,-4),3),-3))"
  },
  {
    "input": "input : list = [-3, 1, -2, 0, 4]\noutput : list = [-3, -2, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([-3, 1, -2, 0, 4])",
    "io_inp": [
      -3,
      1,
      -2,
      0,
      4
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(reverse([-1, 0])),-5)),1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(reverse(input)),-5)),1)"
  },
  {
    "input": "input : list = [-4, -2, -4, -3, 0, -1]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(drop(reverse(mul_n(drop([-4, -2, -4, -3, 0, -1],2),-2)),3),4)",
    "io_inp": [
      -4,
      -2,
      -4,
      -3,
      0,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(mul_n(drop(input,2),-2)),3),4)"
  },
  {
    "input": "input : list = [0, 0, -2]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(reverse([0, 0, -2])))))",
    "io_inp": [
      0,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [1, -1, -3, 4, 4, 1]\noutput : list = [4, 4, 1, 1, -1, -3]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(sort_des([1, -1, -3, 4, 4, 1]),1),31)))",
    "io_inp": [
      1,
      -1,
      -3,
      4,
      4,
      1
    ],
    "io_out": [
      4,
      4,
      1,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(sort_des(input),1),31)))"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [156, 136, -44]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des([4, 5, -5]),2),5),-4),4)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      156,
      136,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des(input),2),5),-4),4)"
  },
  {
    "input": "input : list = [5, 4, 4, 5, 1, 2]\noutput : list = [-4, -8, -16, -16, -20, -20]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(reverse([5, 4, 4, 5, 1, 2]),19))),-4)",
    "io_inp": [
      5,
      4,
      4,
      5,
      1,
      2
    ],
    "io_out": [
      -4,
      -8,
      -16,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(reverse(input),19))),-4)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n(add_n([-4, -1],3),3)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),3)"
  },
  {
    "input": "input : list = [1, 5, -5, -1]\noutput : list = [0, -4, -6, -10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(sort_asc([1, 5, -5, -1]),7)),5),1)",
    "io_inp": [
      1,
      5,
      -5,
      -1
    ],
    "io_out": [
      0,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(sort_asc(input),7)),5),1)"
  },
  {
    "input": "input : list = [0, 4, -1, -4, -2]\noutput : list = [0, -32, 8]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take([0, 4, -1, -4, -2],3),-1),4),2)",
    "io_inp": [
      0,
      4,
      -1,
      -4,
      -2
    ],
    "io_out": [
      0,
      -32,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(input,3),-1),4),2)"
  },
  {
    "input": "input : list = [5, 3, 5, -2]\noutput : list = [10, 8, 10, 3]",
    "output": "generated_output : list = sub_n(add_n([5, 3, 5, -2],1),-4)",
    "io_inp": [
      5,
      3,
      5,
      -2
    ],
    "io_out": [
      10,
      8,
      10,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),-4)"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [0, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, 0])",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3, -1, 1, 1, 1]\noutput : list = [4, 5, 6, 6]",
    "output": "generated_output : list = take(sort_asc(sub_n([0, 3, -1, 1, 1, 1],-5)),4)",
    "io_inp": [
      0,
      3,
      -1,
      1,
      1,
      1
    ],
    "io_out": [
      4,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,-5)),4)"
  },
  {
    "input": "input : list = [4, -3, 4, 4, 4]\noutput : list = [7, 0, 7, 7, 7]",
    "output": "generated_output : list = sub_n([4, -3, 4, 4, 4],-3)",
    "io_inp": [
      4,
      -3,
      4,
      4,
      4
    ],
    "io_out": [
      7,
      0,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 5, -1, -5]\noutput : list = [12, 0, -4, -8]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse([-3, 5, -1, -5])),2),2)",
    "io_inp": [
      -3,
      5,
      -1,
      -5
    ],
    "io_out": [
      12,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(input)),2),2)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(reverse([4, 0])),-1)))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(sort_des([-1, 1]))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, 5, -4, 1]\noutput : list = [0, 4, -5, 0]",
    "output": "generated_output : list = add_n([1, 5, -4, 1],-1)",
    "io_inp": [
      1,
      5,
      -4,
      1
    ],
    "io_out": [
      0,
      4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, 2, -4]\noutput : list = [-6, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des([4, 2, -4])),2))",
    "io_inp": [
      4,
      2,
      -4
    ],
    "io_out": [
      -6,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(input)),2))"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(take(sort_asc([-1, -2, -2]),1),4)",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),1),4)"
  },
  {
    "input": "input : list = [5, -1, 5, 1, -1]\noutput : list = [4, 4, 0, -2, -2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_asc([5, -1, 5, 1, -1])),-4),-1),4)",
    "io_inp": [
      5,
      -1,
      5,
      1,
      -1
    ],
    "io_out": [
      4,
      4,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_asc(input)),-4),-1),4)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = sort_asc(add_n([-4, -3, 4],1))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(sort_asc([-3, -3])),4),13),-1)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(sort_asc(input)),4),13),-1)"
  },
  {
    "input": "input : list = [3, -5, -5, 3, -1]\noutput : list = [3, 3, -1, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc([3, -5, -5, 3, -1]))",
    "io_inp": [
      3,
      -5,
      -5,
      3,
      -1
    ],
    "io_out": [
      3,
      3,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 2, -5]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(drop(sort_des(add_n(sub_n([-2, 2, -5],-3),-1)),1))",
    "io_inp": [
      -2,
      2,
      -5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(add_n(sub_n(input,-3),-1)),1))"
  },
  {
    "input": "input : list = [1, 3, 1, 1, -3]\noutput : list = [-3, 1, 1, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([1, 3, 1, 1, -3]))",
    "io_inp": [
      1,
      3,
      1,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 5, 2, 0, -1]\noutput : list = [4, 12, 9, 7, 6]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(reverse([-3, 5, 2, 0, -1]),-1),-1)),5)",
    "io_inp": [
      -3,
      5,
      2,
      0,
      -1
    ],
    "io_out": [
      4,
      12,
      9,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(reverse(input),-1),-1)),5)"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [-3, -4, -3]",
    "output": "generated_output : list = sub_n([1, 0, 1],4)",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      -3,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [1, 3, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop([1, 3, 1, -1],2)",
    "io_inp": [
      1,
      3,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -1, -5]\noutput : list = [61, 13, 1]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(reverse([0, -1, -5]),4),-3),1),31)",
    "io_inp": [
      0,
      -1,
      -5
    ],
    "io_out": [
      61,
      13,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(reverse(input),4),-3),1),31)"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(take([-3, 0, 5],1),3))))",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(take(input,1),3))))"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [-12, 0, 6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_asc([-5, 4, 1]),2),-5),-1),-2)",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      -12,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_asc(input),2),-5),-1),-2)"
  },
  {
    "input": "input : list = [-5, -4, 2, -4, -2, -3]\noutput : list = [-17, -13, -13, -9, -5, 11]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(sort_des([-5, -4, 2, -4, -2, -3]),4),-3)),11)",
    "io_inp": [
      -5,
      -4,
      2,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -17,
      -13,
      -13,
      -9,
      -5,
      11
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(sort_des(input),4),-3)),11)"
  },
  {
    "input": "input : list = [-2, -3, 4, -3, -2, 3]\noutput : list = [-3, -3, -2, -2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc([-2, -3, 4, -3, -2, 3])),28)))",
    "io_inp": [
      -2,
      -3,
      4,
      -3,
      -2,
      3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc(input)),28)))"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [5, -20, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc([5, -1, 4]))),-5)",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [12, -20]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(sort_des([5, -3]),-4)),1),27)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      12,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(sort_des(input),-4)),1),27)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(take([-4, -2, 0],1)))))",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-1, 5, -3, -3, 2]\noutput : list = [-20, 10, -30, -30, -5]",
    "output": "generated_output : list = mul_n(sub_n([-1, 5, -3, -3, 2],3),5)",
    "io_inp": [
      -1,
      5,
      -3,
      -3,
      2
    ],
    "io_out": [
      -20,
      10,
      -30,
      -30,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),5)"
  },
  {
    "input": "input : list = [5, 0, -1, -4, -5, 1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 0, -1, -4, -5, 1],1)",
    "io_inp": [
      5,
      0,
      -1,
      -4,
      -5,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, 5, -1, -2]\noutput : list = [-5, 7, 13, 16, 22]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sub_n([1, -4, 5, -1, -2],3),-3),1)))",
    "io_inp": [
      1,
      -4,
      5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      7,
      13,
      16,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sub_n(input,3),-3),1)))"
  },
  {
    "input": "input : list = [1, 4, 3]\noutput : list = [5, 0, -10]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(reverse([1, 4, 3]),3))),5)",
    "io_inp": [
      1,
      4,
      3
    ],
    "io_out": [
      5,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(reverse(input),3))),5)"
  },
  {
    "input": "input : list = [5, 2, 5, -5, -4]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n(sub_n(take(drop(sub_n([5, 2, 5, -5, -4],1),3),32),-4),-2)",
    "io_inp": [
      5,
      2,
      5,
      -5,
      -4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(drop(sub_n(input,1),3),32),-4),-2)"
  },
  {
    "input": "input : list = [2, -4, 5, 0, 0]\noutput : list = [5, 0, 0]",
    "output": "generated_output : list = drop([2, -4, 5, 0, 0],2)",
    "io_inp": [
      2,
      -4,
      5,
      0,
      0
    ],
    "io_out": [
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 1, -5]\noutput : list = [4, 3, -2]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(add_n([0, 1, -5],3)))),33)",
    "io_inp": [
      0,
      1,
      -5
    ],
    "io_out": [
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(add_n(input,3)))),33)"
  },
  {
    "input": "input : list = [-5, 5, 0, 3]\noutput : list = [25, -25, 0, -15]",
    "output": "generated_output : list = mul_n([-5, 5, 0, 3],-5)",
    "io_inp": [
      -5,
      5,
      0,
      3
    ],
    "io_out": [
      25,
      -25,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 1, 0, -4, -1]\noutput : list = [3, 4, 5, 6]",
    "output": "generated_output : list = take(sub_n(sort_asc(drop(sort_asc([2, 1, 0, -4, -1]),1)),-4),14)",
    "io_inp": [
      2,
      1,
      0,
      -4,
      -1
    ],
    "io_out": [
      3,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(drop(sort_asc(input),1)),-4),14)"
  },
  {
    "input": "input : list = [2, -3, 3, 1, -1]\noutput : list = [-8, -6, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(drop([2, -3, 3, 1, -1],2),-2))),5)",
    "io_inp": [
      2,
      -3,
      3,
      1,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(drop(input,2),-2))),5)"
  },
  {
    "input": "input : list = [-3, -3, -2, -3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = drop([-3, -3, -2, -3, -2],3)",
    "io_inp": [
      -3,
      -3,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, 5, -4, 2, -1]\noutput : list = [-10, -1]",
    "output": "generated_output : list = sub_n(mul_n(drop([-1, 5, -4, 2, -1],3),-3),4)",
    "io_inp": [
      -1,
      5,
      -4,
      2,
      -1
    ],
    "io_out": [
      -10,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,3),-3),4)"
  },
  {
    "input": "input : list = [-5, 3, 5, -3, 2]\noutput : list = [-50, -34, -26, 14, 30]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(mul_n([-5, 3, 5, -3, 2],-4)),5)),2)",
    "io_inp": [
      -5,
      3,
      5,
      -3,
      2
    ],
    "io_out": [
      -50,
      -34,
      -26,
      14,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(mul_n(input,-4)),5)),2)"
  },
  {
    "input": "input : list = [4, -3, -5, -2, -1]\noutput : list = [-1, -2, -5, -3, 4]",
    "output": "generated_output : list = reverse(take(reverse(reverse([4, -3, -5, -2, -1])),30))",
    "io_inp": [
      4,
      -3,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(input)),30))"
  },
  {
    "input": "input : list = [-4, 5, 2, -5, -4]\noutput : list = [1, -2, -8, -8, -9]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(sort_des([-4, 5, 2, -5, -4]),4)),1))",
    "io_inp": [
      -4,
      5,
      2,
      -5,
      -4
    ],
    "io_out": [
      1,
      -2,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(sort_des(input),4)),1))"
  },
  {
    "input": "input : list = [-2, 4, 0, -1, 4]\noutput : list = [8, 14, 10, 9, 14]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-2, 4, 0, -1, 4],-3),4),-3)",
    "io_inp": [
      -2,
      4,
      0,
      -1,
      4
    ],
    "io_out": [
      8,
      14,
      10,
      9,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-3),4),-3)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [7, 9]",
    "output": "generated_output : list = sub_n([2, 4],-5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, 4, 4, 4]\noutput : list = [23]",
    "output": "generated_output : list = drop(take(sub_n(sub_n(mul_n([1, 4, 4, 4],4),-2),-5),33),3)",
    "io_inp": [
      1,
      4,
      4,
      4
    ],
    "io_out": [
      23
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(sub_n(mul_n(input,4),-2),-5),33),3)"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [0, 0, 8]",
    "output": "generated_output : list = mul_n(take(mul_n([0, 0, 4],2),7),1)",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,2),7),1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n([-1, 3],-5),11)))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(input,-5),11)))"
  },
  {
    "input": "input : list = [-1, 2, -3, -3]\noutput : list = [-2, 1, -4, -4]",
    "output": "generated_output : list = take(add_n(add_n([-1, 2, -3, -3],-4),3),4)",
    "io_inp": [
      -1,
      2,
      -3,
      -3
    ],
    "io_out": [
      -2,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,-4),3),4)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-40, -16, 0]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_des([0, -2, -5])),4)),2)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -40,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_des(input)),4)),2)"
  },
  {
    "input": "input : list = [0, 2, 0, 1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(take([0, 2, 0, 1],1)),4)))",
    "io_inp": [
      0,
      2,
      0,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(take(input,1)),4)))"
  },
  {
    "input": "input : list = [1, 4, 3, -2]\noutput : list = [-1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n([1, 4, 3, -2],-1),8)))",
    "io_inp": [
      1,
      4,
      3,
      -2
    ],
    "io_out": [
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(input,-1),8)))"
  },
  {
    "input": "input : list = [5, 3, 3, -5]\noutput : list = [-12, 20]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(sort_asc([5, 3, 3, -5]),1),-1),4),2)",
    "io_inp": [
      5,
      3,
      3,
      -5
    ],
    "io_out": [
      -12,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(sort_asc(input),1),-1),4),2)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-12, -9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(sub_n([-4, -1],5),10)),3))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(sub_n(input,5),10)),3))"
  },
  {
    "input": "input : list = [-2, 3, 4, 1]\noutput : list = [32, -13, -43, -58]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(sort_asc([-2, 3, 4, 1]),3),-5),2))",
    "io_inp": [
      -2,
      3,
      4,
      1
    ],
    "io_out": [
      32,
      -13,
      -43,
      -58
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(sort_asc(input),3),-5),2))"
  },
  {
    "input": "input : list = [3, -2, -1, -3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take([3, -2, -1, -3],2)))",
    "io_inp": [
      3,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [3, 1, -1]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(sub_n([3, 1, -1],-3),1),-1),-2))",
    "io_inp": [
      3,
      1,
      -1
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(sub_n(input,-3),1),-1),-2))"
  },
  {
    "input": "input : list = [-4, -1, 4, -1, 0]\noutput : list = [-4, -1, -1, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([-4, -1, 4, -1, 0])))",
    "io_inp": [
      -4,
      -1,
      4,
      -1,
      0
    ],
    "io_out": [
      -4,
      -1,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-8, -3]",
    "output": "generated_output : list = add_n(take(add_n(reverse(sub_n([3, -2],5)),1),26),-2)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(sub_n(input,5)),1),26),-2)"
  },
  {
    "input": "input : list = [0, 1, 1, -4]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(take([0, 1, 1, -4],2))",
    "io_inp": [
      0,
      1,
      1,
      -4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [-10, -20, -40]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(add_n([-1, 5, 1],3)),-5)),15)",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      -10,
      -20,
      -40
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(add_n(input,3)),-5)),15)"
  },
  {
    "input": "input : list = [-5, -2, -3, -4, 2]\noutput : list = [-14, -6, -4, -2, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des([-5, -2, -3, -4, 2]),-5),7),-2)",
    "io_inp": [
      -5,
      -2,
      -3,
      -4,
      2
    ],
    "io_out": [
      -14,
      -6,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(input),-5),7),-2)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [8, -6]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(sort_des([3, -4])),-1),26),2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(sort_des(input)),-1),26),2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [16, 24]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des([1, -1]),-5)),-4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      16,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(input),-5)),-4)"
  },
  {
    "input": "input : list = [-5, -5, 5, 1, 5]\noutput : list = [-10, -2, -10]",
    "output": "generated_output : list = mul_n(drop([-5, -5, 5, 1, 5],2),-2)",
    "io_inp": [
      -5,
      -5,
      5,
      1,
      5
    ],
    "io_out": [
      -10,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [3, 1, 3, -2, -2]\noutput : list = [-6, -6, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(sort_des([3, 1, 3, -2, -2])),4),35))",
    "io_inp": [
      3,
      1,
      3,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(sort_des(input)),4),35))"
  },
  {
    "input": "input : list = [-4, 1, -4, 4, 4]\noutput : list = [4, 4, -4, 1, -4]",
    "output": "generated_output : list = reverse([-4, 1, -4, 4, 4])",
    "io_inp": [
      -4,
      1,
      -4,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 1, 4, -5, 3]\noutput : list = [1, 0, -2, -7, -8]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des([-4, 1, 4, -5, 3]))),3)",
    "io_inp": [
      -4,
      1,
      4,
      -5,
      3
    ],
    "io_out": [
      1,
      0,
      -2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(input))),3)"
  },
  {
    "input": "input : list = [3, 5, -3, 2]\noutput : list = [-4, -24, -28, -36]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_asc([3, 5, -3, 2]),4))),-4)",
    "io_inp": [
      3,
      5,
      -3,
      2
    ],
    "io_out": [
      -4,
      -24,
      -28,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_asc(input),4))),-4)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = take(take(sort_des(sort_des(sort_asc([3, 1, -3]))),35),40)",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_des(sort_asc(input))),35),40)"
  },
  {
    "input": "input : list = [5, -3, -2, -5, -1]\noutput : list = [21, -11]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(take([5, -3, -2, -5, -1],2),4)),1),22)",
    "io_inp": [
      5,
      -3,
      -2,
      -5,
      -1
    ],
    "io_out": [
      21,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(take(input,2),4)),1),22)"
  },
  {
    "input": "input : list = [2, 2, -4, 1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = take(sort_des(sub_n(take(take([2, 2, -4, 1],2),5),5)),11)",
    "io_inp": [
      2,
      2,
      -4,
      1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(take(input,2),5),5)),11)"
  },
  {
    "input": "input : list = [-3, 2, 4, 2]\noutput : list = [8, 6, 6, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(add_n([-3, 2, 4, 2],2)))),-2)",
    "io_inp": [
      -3,
      2,
      4,
      2
    ],
    "io_out": [
      8,
      6,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(add_n(input,2)))),-2)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n(drop([5, 3, 1],1),-1)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [0, -5, -4, -1]\noutput : list = [7, 8, 11, 12]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(sub_n([0, -5, -4, -1],-3))),5),4)",
    "io_inp": [
      0,
      -5,
      -4,
      -1
    ],
    "io_out": [
      7,
      8,
      11,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(sub_n(input,-3))),5),4)"
  },
  {
    "input": "input : list = [-1, 5, -4, 4, -2, 0]\noutput : list = [-1, 1, 2, 3, 7, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n([-1, 5, -4, 4, -2, 0],-3)))))",
    "io_inp": [
      -1,
      5,
      -4,
      4,
      -2,
      0
    ],
    "io_out": [
      -1,
      1,
      2,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [-5, 2, 2, -1, 4]\noutput : list = [-8, -5, -3]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(drop([-5, 2, 2, -1, 4],2)),4),1),-2)",
    "io_inp": [
      -5,
      2,
      2,
      -1,
      4
    ],
    "io_out": [
      -8,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(drop(input,2)),4),1),-2)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(sort_asc([-1, 0]),-2),9)),2)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(sort_asc(input),-2),9)),2)"
  },
  {
    "input": "input : list = [0, 4, -1, -3, 3]\noutput : list = [-1, 4, 0]",
    "output": "generated_output : list = mul_n(reverse(take([0, 4, -1, -3, 3],3)),1)",
    "io_inp": [
      0,
      4,
      -1,
      -3,
      3
    ],
    "io_out": [
      -1,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,3)),1)"
  },
  {
    "input": "input : list = [5, 2, 5, -5]\noutput : list = [-5, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, 2, 5, -5]))",
    "io_inp": [
      5,
      2,
      5,
      -5
    ],
    "io_out": [
      -5,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [24, 9]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(sub_n([0, -5],3)))),-3)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      24,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(sub_n(input,3)))),-3)"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [-14, 1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sort_des([1, 1, -4]),3)),2))",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      -14,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sort_des(input),3)),2))"
  },
  {
    "input": "input : list = [3, -3, -4, -5, -4]\noutput : list = [-4, -5, -4, -3, 3]",
    "output": "generated_output : list = reverse([3, -3, -4, -5, -4])",
    "io_inp": [
      3,
      -3,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2, 3, -5, 3, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(add_n(take([2, -2, 3, -5, 3, 1],1),-1))",
    "io_inp": [
      2,
      -2,
      3,
      -5,
      3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,1),-1))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [10, 10]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(mul_n([-2, -2],-4)),2),-2),-4)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(mul_n(input,-4)),2),-2),-4)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [15, 8]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(sub_n([4, -3],-5)),4)),2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      15,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(sub_n(input,-5)),4)),2)"
  },
  {
    "input": "input : list = [1, 5, -2, -2, 1]\noutput : list = [-2, 2, -5, -5, -2]",
    "output": "generated_output : list = sub_n([1, 5, -2, -2, 1],3)",
    "io_inp": [
      1,
      5,
      -2,
      -2,
      1
    ],
    "io_out": [
      -2,
      2,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take(take(sub_n(take([4, 0, -1],1),4),8),25),1)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(take(input,1),4),8),25),1)"
  },
  {
    "input": "input : list = [0, 2, -5, -1, 1]\noutput : list = [-25, -5, 0, 5, 10]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n([0, 2, -5, -1, 1],-5))),-1)",
    "io_inp": [
      0,
      2,
      -5,
      -1,
      1
    ],
    "io_out": [
      -25,
      -5,
      0,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(input,-5))),-1)"
  },
  {
    "input": "input : list = [-1, -2, 2, 3, 4, -5]\noutput : list = [11, 2]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(drop([-1, -2, 2, 3, 4, -5],4),3),27)),4)",
    "io_inp": [
      -1,
      -2,
      2,
      3,
      4,
      -5
    ],
    "io_out": [
      11,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(drop(input,4),3),27)),4)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_des([-2, -4, -4])))))",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 4, -5, 1, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(drop([-5, 4, -5, 1, 3, -2],4)))))",
    "io_inp": [
      -5,
      4,
      -5,
      1,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(drop(input,4)))))"
  },
  {
    "input": "input : list = [-1, 4, -4]\noutput : list = [7, 2, -1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse([-1, 4, -4]),-1),-4))",
    "io_inp": [
      -1,
      4,
      -4
    ],
    "io_out": [
      7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(input),-1),-4))"
  },
  {
    "input": "input : list = [0, 5, 4, -1, -5, 4]\noutput : list = [-21, -5, -1, 15, 15, 19]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(mul_n([0, 5, 4, -1, -5, 4],4)))),1)",
    "io_inp": [
      0,
      5,
      4,
      -1,
      -5,
      4
    ],
    "io_out": [
      -21,
      -5,
      -1,
      15,
      15,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(mul_n(input,4)))),1)"
  },
  {
    "input": "input : list = [-1, -3, -4, 0, 3, 0]\noutput : list = [-4, -3, -1, 0, 0, 3]",
    "output": "generated_output : list = sort_asc([-1, -3, -4, 0, 3, 0])",
    "io_inp": [
      -1,
      -3,
      -4,
      0,
      3,
      0
    ],
    "io_out": [
      -4,
      -3,
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 4, -4, 5]\noutput : list = [4, -2, -4, -5]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_des([2, 4, -4, 5])),1),-1),42)",
    "io_inp": [
      2,
      4,
      -4,
      5
    ],
    "io_out": [
      4,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_des(input)),1),-1),42)"
  },
  {
    "input": "input : list = [-2, -1, 0, -5, 0]\noutput : list = [1, 1]",
    "output": "generated_output : list = take(take(sort_des(sub_n(drop([-2, -1, 0, -5, 0],2),-1)),2),43)",
    "io_inp": [
      -2,
      -1,
      0,
      -5,
      0
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(drop(input,2),-1)),2),43)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_des([-1, -4])))),5)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [4, -2, -5, 4, -2]\noutput : list = [-4]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse([4, -2, -5, 4, -2])),-1),1)",
    "io_inp": [
      4,
      -2,
      -5,
      4,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(input)),-1),1)"
  },
  {
    "input": "input : list = [-2, -4, 4, 5]\noutput : list = [-4, 4, 5]",
    "output": "generated_output : list = sort_asc(drop([-2, -4, 4, 5],1))",
    "io_inp": [
      -2,
      -4,
      4,
      5
    ],
    "io_out": [
      -4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 1, -3, 5]\noutput : list = [-3, 1, 4, 5]",
    "output": "generated_output : list = add_n(take(take(sort_asc(mul_n([-2, 1, -3, 5],-1)),25),16),2)",
    "io_inp": [
      -2,
      1,
      -3,
      5
    ],
    "io_out": [
      -3,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(mul_n(input,-1)),25),16),2)"
  },
  {
    "input": "input : list = [4, -5, 5, -4, -4, 0]\noutput : list = [2, -7, 3, -6, -6, -2]",
    "output": "generated_output : list = sub_n([4, -5, 5, -4, -4, 0],2)",
    "io_inp": [
      4,
      -5,
      5,
      -4,
      -4,
      0
    ],
    "io_out": [
      2,
      -7,
      3,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -2, -4, -1, -2, -1]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_asc(add_n(take(add_n([-4, -2, -4, -1, -2, -1],5),23),1)),1)",
    "io_inp": [
      -4,
      -2,
      -4,
      -1,
      -2,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(add_n(input,5),23),1)),1)"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [-15, -5, -1]",
    "output": "generated_output : list = take(take(add_n(sort_asc(mul_n([5, 0, -2],-2)),-5),38),16)",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      -15,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(mul_n(input,-2)),-5),38),16)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(sort_asc([-5, 2])),-1)),26)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(sort_asc(input)),-1)),26)"
  },
  {
    "input": "input : list = [-3, -1, -4, -2, 0, -3]\noutput : list = [1, 2, 2, 3, 4, 5]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(add_n([-3, -1, -4, -2, 0, -3],3)),33)),-2)",
    "io_inp": [
      -3,
      -1,
      -4,
      -2,
      0,
      -3
    ],
    "io_out": [
      1,
      2,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(add_n(input,3)),33)),-2)"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sub_n(sort_asc(drop([1, 5, -1],1)),1)",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,1)),1)"
  },
  {
    "input": "input : list = [3, 5, 3, 1, 2, -1]\noutput : list = [8, 6, 6]",
    "output": "generated_output : list = take(sub_n(take(sort_des(sort_des([3, 5, 3, 1, 2, -1])),3),-3),55)",
    "io_inp": [
      3,
      5,
      3,
      1,
      2,
      -1
    ],
    "io_out": [
      8,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(sort_des(input)),3),-3),55)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-9, -6]",
    "output": "generated_output : list = sub_n(sub_n(add_n([-1, 2],-5),-2),5)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,-5),-2),5)"
  },
  {
    "input": "input : list = [-3, -1, 0, -5, -3, -2]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(take([-3, -1, 0, -5, -3, -2],1)),-3)))",
    "io_inp": [
      -3,
      -1,
      0,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(take(input,1)),-3)))"
  },
  {
    "input": "input : list = [-3, 3, -5, 1, -5]\noutput : list = [-25, 5, -25, 15, -15]",
    "output": "generated_output : list = reverse(mul_n([-3, 3, -5, 1, -5],5))",
    "io_inp": [
      -3,
      3,
      -5,
      1,
      -5
    ],
    "io_out": [
      -25,
      5,
      -25,
      15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [-3, -2, -3]\noutput : list = [-13]",
    "output": "generated_output : list = sub_n(take(take(add_n(take([-3, -2, -3],1),-5),14),36),5)",
    "io_inp": [
      -3,
      -2,
      -3
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(take(input,1),-5),14),36),5)"
  },
  {
    "input": "input : list = [2, 4, 2, -5, 5, -5]\noutput : list = [3, 2, 0, 0, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc([2, 4, 2, -5, 5, -5])),2))",
    "io_inp": [
      2,
      4,
      2,
      -5,
      5,
      -5
    ],
    "io_out": [
      3,
      2,
      0,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(input)),2))"
  },
  {
    "input": "input : list = [-4, 4, -5]\noutput : list = [-5, -4, 4]",
    "output": "generated_output : list = sort_asc([-4, 4, -5])",
    "io_inp": [
      -4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = mul_n([-3, -2, 3],1)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, -4, -1, 1]\noutput : list = [16, 12, 8, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n(sub_n([0, -4, -1, 1],-3),4))))",
    "io_inp": [
      0,
      -4,
      -1,
      1
    ],
    "io_out": [
      16,
      12,
      8,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(sub_n(input,-3),4))))"
  },
  {
    "input": "input : list = [-3, -3, 3, 2, 5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse(take(take(take(drop([-3, -3, 3, 2, 5, -2],4),13),22),41))",
    "io_inp": [
      -3,
      -3,
      3,
      2,
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(drop(input,4),13),22),41))"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [-13, -13, -16]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des([-3, -4, -3]),3),-4),15)",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      -13,
      -13,
      -16
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(input),3),-4),15)"
  },
  {
    "input": "input : list = [0, 5, -4, -5]\noutput : list = [-13, -12, -8, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(reverse([0, 5, -4, -5])),4)),4)",
    "io_inp": [
      0,
      5,
      -4,
      -5
    ],
    "io_out": [
      -13,
      -12,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(reverse(input)),4)),4)"
  },
  {
    "input": "input : list = [-3, 5, -5, 0, 5]\noutput : list = [84, 4, -76, 84, -44]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(mul_n([-3, 5, -5, 0, 5],4)),4),4),23)",
    "io_inp": [
      -3,
      5,
      -5,
      0,
      5
    ],
    "io_out": [
      84,
      4,
      -76,
      84,
      -44
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(mul_n(input,4)),4),4),23)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-15, 0]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(sort_des([0, -3])),5),25),22)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -15,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(sort_des(input)),5),25),22)"
  },
  {
    "input": "input : list = [3, 5, -2, 5, -4, -3]\noutput : list = [1, 1, -1, -6, -7, -8]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sub_n([3, 5, -2, 5, -4, -3],4)))))",
    "io_inp": [
      3,
      5,
      -2,
      5,
      -4,
      -3
    ],
    "io_out": [
      1,
      1,
      -1,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [-4, 5, -3, 5, -2, -4]\noutput : list = [-6, -6, -5, -4, 3, 3]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(sort_asc([-4, 5, -3, 5, -2, -4]),-4),40),-1),-3)",
    "io_inp": [
      -4,
      5,
      -3,
      5,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(sort_asc(input),-4),40),-1),-3)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [8, 4, -10]",
    "output": "generated_output : list = mul_n([4, 2, -5],2)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      8,
      4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, -5, 2, 3, -1]\noutput : list = [3, 2, 2, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([2, -5, 2, 3, -1])))",
    "io_inp": [
      2,
      -5,
      2,
      3,
      -1
    ],
    "io_out": [
      3,
      2,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [1, 4, 2, -4, 0, -5]\noutput : list = [8, 6, 5, 4, 0, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n([1, 4, 2, -4, 0, -5],-1))),-3)",
    "io_inp": [
      1,
      4,
      2,
      -4,
      0,
      -5
    ],
    "io_out": [
      8,
      6,
      5,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(input,-1))),-3)"
  },
  {
    "input": "input : list = [4, 3, -5, 2, 5]\noutput : list = [71, 59, -37, 47, 83]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(mul_n([4, 3, -5, 2, 5],3),4),-1),4),-3)",
    "io_inp": [
      4,
      3,
      -5,
      2,
      5
    ],
    "io_out": [
      71,
      59,
      -37,
      47,
      83
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(mul_n(input,3),4),-1),4),-3)"
  },
  {
    "input": "input : list = [-3, -3, -2, -1, -4]\noutput : list = [-3, -3, -2, -1, -4]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n([-3, -3, -2, -1, -4],-3),1),14),-2)",
    "io_inp": [
      -3,
      -3,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(input,-3),1),14),-2)"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [-12, 24, 30]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_des([-5, 2, 1]),3),-3)),-2)",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      -12,
      24,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_des(input),3),-3)),-2)"
  },
  {
    "input": "input : list = [0, -4, 4, -3, -4]\noutput : list = [-4, -4, -3, 0, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse([0, -4, 4, -3, -4])))),48)",
    "io_inp": [
      0,
      -4,
      4,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse(input)))),48)"
  },
  {
    "input": "input : list = [5, 0, 4, 5, 3]\noutput : list = [0, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 0, 4, 5, 3]))",
    "io_inp": [
      5,
      0,
      4,
      5,
      3
    ],
    "io_out": [
      0,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(drop([5, -2, -1],1),-4))",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,1),-4))"
  },
  {
    "input": "input : list = [5, -2, 0, -1, 1, 5]\noutput : list = [-3, -2, -1, 0, 4, 4]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(sort_asc([5, -2, 0, -1, 1, 5])),16),1))",
    "io_inp": [
      5,
      -2,
      0,
      -1,
      1,
      5
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(sort_asc(input)),16),1))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [9, 0]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_des([-4, 5]),-4))),34)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_des(input),-4))),34)"
  },
  {
    "input": "input : list = [0, -1, -1, 2]\noutput : list = [0, -1]",
    "output": "generated_output : list = take([0, -1, -1, 2],2)",
    "io_inp": [
      0,
      -1,
      -1,
      2
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, -5, 2, 4]\noutput : list = [-2, -6, 1, 3]",
    "output": "generated_output : list = add_n([-1, -5, 2, 4],-1)",
    "io_inp": [
      -1,
      -5,
      2,
      4
    ],
    "io_out": [
      -2,
      -6,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(add_n([1, 1],5)),3),-4))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(add_n(input,5)),3),-4))"
  },
  {
    "input": "input : list = [3, -1, 3, 3, 4]\noutput : list = [5, 4, 4, 4, 0]",
    "output": "generated_output : list = sub_n(sort_des([3, -1, 3, 3, 4]),-1)",
    "io_inp": [
      3,
      -1,
      3,
      3,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [1, 1, -4, 4, -1]\noutput : list = [4, 1, 1, -1, -4]",
    "output": "generated_output : list = take(sort_des([1, 1, -4, 4, -1]),14)",
    "io_inp": [
      1,
      1,
      -4,
      4,
      -1
    ],
    "io_out": [
      4,
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [5, 1, 3, 4, 2]\noutput : list = [11]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(take([5, 1, 3, 4, 2],1),-4),-1),-1))",
    "io_inp": [
      5,
      1,
      3,
      4,
      2
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(take(input,1),-4),-1),-1))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-4, -10]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(mul_n([2, -1],-1))),-4),-2)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(mul_n(input,-1))),-4),-2)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [-18]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(take([-3, -2, 2],1)),-3),-2))",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(take(input,1)),-3),-2))"
  },
  {
    "input": "input : list = [4, 2, -3, -4, 1, 1]\noutput : list = [-8, -7, -3, -3, -2, 0]",
    "output": "generated_output : list = take(sort_asc(sub_n([4, 2, -3, -4, 1, 1],4)),34)",
    "io_inp": [
      4,
      2,
      -3,
      -4,
      1,
      1
    ],
    "io_out": [
      -8,
      -7,
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,4)),34)"
  },
  {
    "input": "input : list = [2, -1, 2, 1]\noutput : list = [0, 2, 3, 3]",
    "output": "generated_output : list = add_n(sort_asc([2, -1, 2, 1]),1)",
    "io_inp": [
      2,
      -1,
      2,
      1
    ],
    "io_out": [
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [0, -1, 4, -3, 3]\noutput : list = [7, 9, 10, 13, 14]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sort_asc([0, -1, 4, -3, 3])),-5)),5)",
    "io_inp": [
      0,
      -1,
      4,
      -3,
      3
    ],
    "io_out": [
      7,
      9,
      10,
      13,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sort_asc(input)),-5)),5)"
  },
  {
    "input": "input : list = [5, 1, 2, -5, 3]\noutput : list = [12, 7, -28]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(drop([5, 1, 2, -5, 3],2),5),3)))",
    "io_inp": [
      5,
      1,
      2,
      -5,
      3
    ],
    "io_out": [
      12,
      7,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(drop(input,2),5),3)))"
  },
  {
    "input": "input : list = [1, 0, -4, 0, -5]\noutput : list = [-2, 0, 8]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(take([1, 0, -4, 0, -5],3),-1),2)))",
    "io_inp": [
      1,
      0,
      -4,
      0,
      -5
    ],
    "io_out": [
      -2,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(take(input,3),-1),2)))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-16, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(add_n([2, 0],-4)))),4)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(add_n(input,-4)))),4)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n([5, 3, 1],3))",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [3, 1, -1, -2, 4, -2]\noutput : list = [-3, -5, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(take([3, 1, -1, -2, 4, -2],4)),1),5))",
    "io_inp": [
      3,
      1,
      -1,
      -2,
      4,
      -2
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(take(input,4)),1),5))"
  },
  {
    "input": "input : list = [1, 3, -1, 4, -4, 0]\noutput : list = [4, 3, 1, 0, -1, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(take(reverse([1, 3, -1, 4, -4, 0]),25))),18)",
    "io_inp": [
      1,
      3,
      -1,
      4,
      -4,
      0
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(reverse(input),25))),18)"
  },
  {
    "input": "input : list = [-5, -1, -4]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n(mul_n([-5, -1, -4],-1),3))))",
    "io_inp": [
      -5,
      -1,
      -4
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(mul_n(input,-1),3))))"
  },
  {
    "input": "input : list = [0, -3, 0, 0, 0]\noutput : list = [0, 0, 0, 0, -6]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des([0, -3, 0, 0, 0])),2)))",
    "io_inp": [
      0,
      -3,
      0,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [4, 5, -5, 2]\noutput : list = [-10, 25]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(drop([4, 5, -5, 2],2),13),3)),5)",
    "io_inp": [
      4,
      5,
      -5,
      2
    ],
    "io_out": [
      -10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(drop(input,2),13),3)),5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse([2, 5])",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(add_n([3, 4, 1],-2))),4),-1)",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(add_n(input,-2))),4),-1)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-20, 16, 16]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(sort_des([-4, 5, -4])))),-4)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -20,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [2, -1, -5]\noutput : list = [-7]",
    "output": "generated_output : list = reverse(drop(reverse(add_n(reverse([2, -1, -5]),-2)),2))",
    "io_inp": [
      2,
      -1,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = reverse(drop(reverse(add_n(reverse(input),-2)),2))"
  },
  {
    "input": "input : list = [5, -1, 4, 4, -5, -2]\noutput : list = [25, 10, 5, -20, -20, -25]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(reverse([5, -1, 4, 4, -5, -2]),-5))))",
    "io_inp": [
      5,
      -1,
      4,
      4,
      -5,
      -2
    ],
    "io_out": [
      25,
      10,
      5,
      -20,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [1, -3, -5, -2, 5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(take([1, -3, -5, -2, 5],1),24),3)))",
    "io_inp": [
      1,
      -3,
      -5,
      -2,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(take(input,1),24),3)))"
  },
  {
    "input": "input : list = [3, 3, 0, -1]\noutput : list = [6, 3, 2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(reverse(drop([3, 3, 0, -1],1)),3)))",
    "io_inp": [
      3,
      3,
      0,
      -1
    ],
    "io_out": [
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(reverse(drop(input,1)),3)))"
  },
  {
    "input": "input : list = [-2, -3, -5]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = sub_n([-2, -3, -5],-2)",
    "io_inp": [
      -2,
      -3,
      -5
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [0, 6]",
    "output": "generated_output : list = sub_n([-4, 2],-4)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [4, 4, -1]\noutput : list = [5, 5, 0]",
    "output": "generated_output : list = sub_n(take(sub_n(take(add_n([4, 4, -1],-1),14),-1),24),-1)",
    "io_inp": [
      4,
      4,
      -1
    ],
    "io_out": [
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(add_n(input,-1),14),-1),24),-1)"
  },
  {
    "input": "input : list = [5, -4, -3, 0, 3, 1]\noutput : list = [19, 11, 3, -1, -13, -17]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([5, -4, -3, 0, 3, 1],4)),1)",
    "io_inp": [
      5,
      -4,
      -3,
      0,
      3,
      1
    ],
    "io_out": [
      19,
      11,
      3,
      -1,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,4)),1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-17, -17]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(add_n([-5, -5],1),3),2),3))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -17,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(add_n(input,1),3),2),3))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-6, 12]",
    "output": "generated_output : list = reverse(mul_n(mul_n([4, -2],3),1))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -6,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,3),1))"
  },
  {
    "input": "input : list = [-5, 3, 4, 0, 3]\noutput : list = [3, 6]",
    "output": "generated_output : list = add_n(drop([-5, 3, 4, 0, 3],3),3)",
    "io_inp": [
      -5,
      3,
      4,
      0,
      3
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),3)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [2, 42, 142]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(add_n([3, -4, -2],4)),-4),-5),2)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      2,
      42,
      142
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(add_n(input,4)),-4),-5),2)"
  },
  {
    "input": "input : list = [1, 1, 5, 5, -3, -4]\noutput : list = [-4, -3, 5]",
    "output": "generated_output : list = sort_asc(drop([1, 1, 5, 5, -3, -4],3))",
    "io_inp": [
      1,
      1,
      5,
      5,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [2, -4, 2, 5]\noutput : list = [-3, -6, -6, -12]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_des([2, -4, 2, 5]),3),5)))",
    "io_inp": [
      2,
      -4,
      2,
      5
    ],
    "io_out": [
      -3,
      -6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_des(input),3),5)))"
  },
  {
    "input": "input : list = [5, 5, 1, -2, 2, 3]\noutput : list = [8, 8, 4, 1, 5, 6]",
    "output": "generated_output : list = sub_n([5, 5, 1, -2, 2, 3],-3)",
    "io_inp": [
      5,
      5,
      1,
      -2,
      2,
      3
    ],
    "io_out": [
      8,
      8,
      4,
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -2, 1, -4]\noutput : list = [8, 6, 5, 3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sub_n([-1, -2, 1, -4],3),1),-1)))",
    "io_inp": [
      -1,
      -2,
      1,
      -4
    ],
    "io_out": [
      8,
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sub_n(input,3),1),-1)))"
  },
  {
    "input": "input : list = [-3, -1, -4, -1, -3]\noutput : list = [-6, -6, -8, -8, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_asc([-3, -1, -4, -1, -3]),1))),-4)",
    "io_inp": [
      -3,
      -1,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_asc(input),1))),-4)"
  },
  {
    "input": "input : list = [3, 1, -3, -1, 1, 4]\noutput : list = [10, 6, -2, 2, 6, 12]",
    "output": "generated_output : list = take(add_n(take(sub_n(mul_n([3, 1, -3, -1, 1, 4],2),-2),8),2),14)",
    "io_inp": [
      3,
      1,
      -3,
      -1,
      1,
      4
    ],
    "io_out": [
      10,
      6,
      -2,
      2,
      6,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(mul_n(input,2),-2),8),2),14)"
  },
  {
    "input": "input : list = [4, -3, -5, 1]\noutput : list = [4, 1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([4, -3, -5, 1]))",
    "io_inp": [
      4,
      -3,
      -5,
      1
    ],
    "io_out": [
      4,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -1, -1, -3, 4, 2]\noutput : list = [-1, 1, -6, -4, -4, -8]",
    "output": "generated_output : list = add_n(reverse([-5, -1, -1, -3, 4, 2]),-3)",
    "io_inp": [
      -5,
      -1,
      -1,
      -3,
      4,
      2
    ],
    "io_out": [
      -1,
      1,
      -6,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [0, 3, 0, 1, 1, -1]\noutput : list = [-1, 1, 1, 0, 3, 0]",
    "output": "generated_output : list = reverse([0, 3, 0, 1, 1, -1])",
    "io_inp": [
      0,
      3,
      0,
      1,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      1,
      0,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -4, -5, 2, 4]\noutput : list = [20, 16, 20, -8, -16]",
    "output": "generated_output : list = mul_n([-5, -4, -5, 2, 4],-4)",
    "io_inp": [
      -5,
      -4,
      -5,
      2,
      4
    ],
    "io_out": [
      20,
      16,
      20,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3, -3, 5, -3, -4]\noutput : list = [6, 4, -2, -2, -3]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(drop([3, 3, -3, 5, -3, -4],1)),15),-2),1)",
    "io_inp": [
      3,
      3,
      -3,
      5,
      -3,
      -4
    ],
    "io_out": [
      6,
      4,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(drop(input,1)),15),-2),1)"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [-4, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, -4])",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2, 5, 4, 4]\noutput : list = [-1, 1, 1, 2, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(sort_asc([5, 2, 5, 4, 4]),-3))))",
    "io_inp": [
      5,
      2,
      5,
      4,
      4
    ],
    "io_out": [
      -1,
      1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n([-1, -1],-2)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [-11]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take([3, 3, 4],1)),-5),-4)",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(input,1)),-5),-4)"
  },
  {
    "input": "input : list = [3, -5, -2, -1]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = sort_asc(drop(reverse(sort_des([3, -5, -2, -1])),1))",
    "io_inp": [
      3,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(sort_des(input)),1))"
  },
  {
    "input": "input : list = [-4, 2, 1, 5, 0]\noutput : list = [-4, 0, 1, 2, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_asc([-4, 2, 1, 5, 0])))))",
    "io_inp": [
      -4,
      2,
      1,
      5,
      0
    ],
    "io_out": [
      -4,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [0, 10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(reverse([5, -5]),5))),-1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(reverse(input),5))),-1)"
  },
  {
    "input": "input : list = [3, 3, 0]\noutput : list = [4, 4, -2]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n(sub_n([3, 3, 0],-4),-5),2)))",
    "io_inp": [
      3,
      3,
      0
    ],
    "io_out": [
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(sub_n(input,-4),-5),2)))"
  },
  {
    "input": "input : list = [4, -5, -1, 1]\noutput : list = [12, 9, 7, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(add_n([4, -5, -1, 1],5)))),3)",
    "io_inp": [
      4,
      -5,
      -1,
      1
    ],
    "io_out": [
      12,
      9,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(add_n(input,5)))),3)"
  },
  {
    "input": "input : list = [-4, -4, -5, -1]\noutput : list = [13, 9, -3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(drop([-4, -4, -5, -1],1),-4),-4),3))",
    "io_inp": [
      -4,
      -4,
      -5,
      -1
    ],
    "io_out": [
      13,
      9,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(drop(input,1),-4),-4),3))"
  },
  {
    "input": "input : list = [2, 4, -5, -4, 3]\noutput : list = [-6, -5, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([2, 4, -5, -4, 3],1)))",
    "io_inp": [
      2,
      4,
      -5,
      -4,
      3
    ],
    "io_out": [
      -6,
      -5,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,1)))"
  },
  {
    "input": "input : list = [3, -2, -4, -4, 4]\noutput : list = [-4, -4, -2, 3, 4]",
    "output": "generated_output : list = sort_asc([3, -2, -4, -4, 4])",
    "io_inp": [
      3,
      -2,
      -4,
      -4,
      4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 2, 2, -4, -5, 5]\noutput : list = [10, 7, 7, 1, 1, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des([-4, 2, 2, -4, -5, 5]),-2),-4),-2),-5)",
    "io_inp": [
      -4,
      2,
      2,
      -4,
      -5,
      5
    ],
    "io_out": [
      10,
      7,
      7,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des(input),-2),-4),-2),-5)"
  },
  {
    "input": "input : list = [2, -1, 2]\noutput : list = [2, 2, -1]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse([2, -1, 2])))),1)",
    "io_inp": [
      2,
      -1,
      2
    ],
    "io_out": [
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse(input)))),1)"
  },
  {
    "input": "input : list = [1, -3, -4, -5, 2, 4]\noutput : list = [-5, 2, 4]",
    "output": "generated_output : list = sort_asc(drop([1, -3, -4, -5, 2, 4],3))",
    "io_inp": [
      1,
      -3,
      -4,
      -5,
      2,
      4
    ],
    "io_out": [
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [-3, -4, 3]",
    "output": "generated_output : list = reverse(add_n(take(sub_n([3, -4, -3],-2),12),-2))",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(input,-2),12),-2))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-25, -49]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(add_n([5, -1],5),-4)),-5),4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -25,
      -49
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(add_n(input,5),-4)),-5),4)"
  },
  {
    "input": "input : list = [5, -2, 1]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_asc([5, -2, 1])))),-1)",
    "io_inp": [
      5,
      -2,
      1
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [-2, 0, -4, -4, 2, -4]\noutput : list = [24, 24, 24, 12, 0, -12]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(sort_des([-2, 0, -4, -4, 2, -4])),-3)),2)",
    "io_inp": [
      -2,
      0,
      -4,
      -4,
      2,
      -4
    ],
    "io_out": [
      24,
      24,
      24,
      12,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(sort_des(input)),-3)),2)"
  },
  {
    "input": "input : list = [-5, -2, 4, 5]\noutput : list = [-10, -7, -1, 0]",
    "output": "generated_output : list = sub_n([-5, -2, 4, 5],5)",
    "io_inp": [
      -5,
      -2,
      4,
      5
    ],
    "io_out": [
      -10,
      -7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-7, 1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n([-4, 0],1),2)),-3)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(input,1),2)),-3)"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [4, -4, -12]",
    "output": "generated_output : list = take(sort_des(mul_n([3, -1, 1],-4)),3)",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,-4)),3)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sort_asc([2, -3]))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [-5, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, -5])",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 1, 5, -2, 2]\noutput : list = [5, 2, 1, -1, -2]",
    "output": "generated_output : list = sort_des([-1, 1, 5, -2, 2])",
    "io_inp": [
      -1,
      1,
      5,
      -2,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-9, -8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(reverse([-5, -4]))),4))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -9,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(reverse(input))),4))"
  },
  {
    "input": "input : list = [-3, 2, 3]\noutput : list = [-10, -15, -40]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-3, 2, 3]),5),5)",
    "io_inp": [
      -3,
      2,
      3
    ],
    "io_out": [
      -10,
      -15,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),5),5)"
  },
  {
    "input": "input : list = [0, -5, -4, -3, -1]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(sort_des(take(take(drop([0, -5, -4, -3, -1],1),1),6)),2)",
    "io_inp": [
      0,
      -5,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(drop(input,1),1),6)),2)"
  },
  {
    "input": "input : list = [4, 3, -5, -1, 5]\noutput : list = [-6, -2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(add_n([4, 3, -5, -1, 5],-1),12))))",
    "io_inp": [
      4,
      3,
      -5,
      -1,
      5
    ],
    "io_out": [
      -6,
      -2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(add_n(input,-1),12))))"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [-8, 2, 6]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(mul_n([-4, 1, 3],-1),-2),13)))",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      -8,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(mul_n(input,-1),-2),13)))"
  },
  {
    "input": "input : list = [-4, 4, -4, 2]\noutput : list = [-4, -2, 4, 4]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_asc([-4, 4, -4, 2]),-1))),1)",
    "io_inp": [
      -4,
      4,
      -4,
      2
    ],
    "io_out": [
      -4,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_asc(input),-1))),1)"
  },
  {
    "input": "input : list = [-5, -4, 3, -2, 0]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(drop([-5, -4, 3, -2, 0],2))))",
    "io_inp": [
      -5,
      -4,
      3,
      -2,
      0
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(drop(input,2))))"
  },
  {
    "input": "input : list = [-5, -4, -5]\noutput : list = [-20, -20, -16]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sort_asc([-5, -4, -5]),4),4)),24)",
    "io_inp": [
      -5,
      -4,
      -5
    ],
    "io_out": [
      -20,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sort_asc(input),4),4)),24)"
  },
  {
    "input": "input : list = [-1, 4, -1]\noutput : list = [5, -20, 5]",
    "output": "generated_output : list = mul_n([-1, 4, -1],-5)",
    "io_inp": [
      -1,
      4,
      -1
    ],
    "io_out": [
      5,
      -20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 4, -2, -3]\noutput : list = [1, -5, -6, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des([-5, 4, -2, -3]),3)),27)",
    "io_inp": [
      -5,
      4,
      -2,
      -3
    ],
    "io_out": [
      1,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(input),3)),27)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [8, 7]",
    "output": "generated_output : list = reverse(sub_n([3, 4],-4))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-5, -2, 4, 0]\noutput : list = [0, 4, -2, -5]",
    "output": "generated_output : list = reverse([-5, -2, 4, 0])",
    "io_inp": [
      -5,
      -2,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, 1, -5, -2, 4]\noutput : list = [4, -2, -5, 1, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, 1, -5, -2, 4])",
    "io_inp": [
      2,
      -1,
      1,
      -5,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -5,
      1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0, -4, -5, 4]\noutput : list = [8, 4, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(drop([-4, 0, -4, -5, 4],1),-4))",
    "io_inp": [
      -4,
      0,
      -4,
      -5,
      4
    ],
    "io_out": [
      8,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),-4))"
  },
  {
    "input": "input : list = [-5, -3, -1, -4]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = take(add_n(take(sort_des(drop([-5, -3, -1, -4],1)),32),1),41)",
    "io_inp": [
      -5,
      -3,
      -1,
      -4
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(drop(input,1)),32),1),41)"
  },
  {
    "input": "input : list = [-1, -4, 0, 0, 0, 5]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(take([-1, -4, 0, 0, 0, 5],2),-4)",
    "io_inp": [
      -1,
      -4,
      0,
      0,
      0,
      5
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [3, -5, 0, -5, -2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -5, 0, -5, -2],1)",
    "io_inp": [
      3,
      -5,
      0,
      -5,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -1, -2, 0]\noutput : list = [-5, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n([-5, -1, -2, 0],5),5))))",
    "io_inp": [
      -5,
      -1,
      -2,
      0
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n(input,5),5))))"
  },
  {
    "input": "input : list = [4, 0, -5, -1, -3]\noutput : list = [-13, -11, -9, -8, -4]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc(add_n([4, 0, -5, -1, -3],-4)),4),-4),4)",
    "io_inp": [
      4,
      0,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -13,
      -11,
      -9,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(add_n(input,-4)),4),-4),4)"
  },
  {
    "input": "input : list = [-1, 5, 3, 3, -4, 3]\noutput : list = [10, 8, 8, 8, 4, 1]",
    "output": "generated_output : list = add_n(add_n(take(sort_des([-1, 5, 3, 3, -4, 3]),19),2),3)",
    "io_inp": [
      -1,
      5,
      3,
      3,
      -4,
      3
    ],
    "io_out": [
      10,
      8,
      8,
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(input),19),2),3)"
  },
  {
    "input": "input : list = [0, 4, -1, 5]\noutput : list = [4, -12, 8, -16]",
    "output": "generated_output : list = sub_n(mul_n([0, 4, -1, 5],-4),-4)",
    "io_inp": [
      0,
      4,
      -1,
      5
    ],
    "io_out": [
      4,
      -12,
      8,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),-4)"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [5, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(sort_des([-3, 4, -4])),-1)))",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [4, 3, 2, 3, 4]\noutput : list = [-44, -36]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(take([4, 3, 2, 3, 4],2),-2),3),4),41)",
    "io_inp": [
      4,
      3,
      2,
      3,
      4
    ],
    "io_out": [
      -44,
      -36
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(take(input,2),-2),3),4),41)"
  },
  {
    "input": "input : list = [5, -2, 0, -4, 3]\noutput : list = [6, 4, 1, -1, -3]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(sort_asc([5, -2, 0, -4, 3]))),28),1)",
    "io_inp": [
      5,
      -2,
      0,
      -4,
      3
    ],
    "io_out": [
      6,
      4,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(sort_asc(input))),28),1)"
  },
  {
    "input": "input : list = [-1, -4, 2, 4, 4, -2]\noutput : list = [8, 20, -4]",
    "output": "generated_output : list = take(add_n(take(sub_n(mul_n([-1, -4, 2, 4, 4, -2],-4),1),3),5),46)",
    "io_inp": [
      -1,
      -4,
      2,
      4,
      4,
      -2
    ],
    "io_out": [
      8,
      20,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(mul_n(input,-4),1),3),5),46)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n([1, 1],-3)),6))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(input,-3)),6))"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 2, 4],1)",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 2, 0, -4, 3]\noutput : list = [-18, -12, 0, 12, 24]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(mul_n([-2, 2, 0, -4, 3],-3)),16)),2)",
    "io_inp": [
      -2,
      2,
      0,
      -4,
      3
    ],
    "io_out": [
      -18,
      -12,
      0,
      12,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(mul_n(input,-3)),16)),2)"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [-8, -5, -2]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(add_n([1, -2, 4],-2)),8)),-4)",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(add_n(input,-2)),8)),-4)"
  },
  {
    "input": "input : list = [-1, 0, 1, -4, 2, -1]\noutput : list = [4, 0, -4, 16, -8, 4]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(reverse([-1, 0, 1, -4, 2, -1]),2),-2)),38)",
    "io_inp": [
      -1,
      0,
      1,
      -4,
      2,
      -1
    ],
    "io_out": [
      4,
      0,
      -4,
      16,
      -8,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(reverse(input),2),-2)),38)"
  },
  {
    "input": "input : list = [-5, -1, 0, 0, 4]\noutput : list = [4, -12, -12, -16, -32]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-5, -1, 0, 0, 4]),3),4)",
    "io_inp": [
      -5,
      -1,
      0,
      0,
      4
    ],
    "io_out": [
      4,
      -12,
      -12,
      -16,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),3),4)"
  },
  {
    "input": "input : list = [-3, -2, -2, 2, 5, -3]\noutput : list = [-8, -7, -7, -3, 0, -8]",
    "output": "generated_output : list = add_n([-3, -2, -2, 2, 5, -3],-5)",
    "io_inp": [
      -3,
      -2,
      -2,
      2,
      5,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -3,
      0,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -3, -4, 2]\noutput : list = [10, -20, -15, -10]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n([-2, -3, -4, 2],1),5))))",
    "io_inp": [
      -2,
      -3,
      -4,
      2
    ],
    "io_out": [
      10,
      -20,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n(input,1),5))))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1, -5, 1, -2, -1]\noutput : list = [10, 5]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(drop([5, 1, -5, 1, -2, -1],4))),-5),17)",
    "io_inp": [
      5,
      1,
      -5,
      1,
      -2,
      -1
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(drop(input,4))),-5),17)"
  },
  {
    "input": "input : list = [0, 3, 2]\noutput : list = [0, -3, -2]",
    "output": "generated_output : list = mul_n([0, 3, 2],-1)",
    "io_inp": [
      0,
      3,
      2
    ],
    "io_out": [
      0,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 0, -2, 3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = drop([-1, 0, -2, 3, -4],3)",
    "io_inp": [
      -1,
      0,
      -2,
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, 3, -2, -3]\noutput : list = [-8, -12, -28, -32]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_des([2, 3, -2, -3]),5),-4))",
    "io_inp": [
      2,
      3,
      -2,
      -3
    ],
    "io_out": [
      -8,
      -12,
      -28,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_des(input),5),-4))"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(sub_n(drop([5, 2, 5],1),4),10)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,1),4),10)"
  },
  {
    "input": "input : list = [5, 2, 2]\noutput : list = [9, 6, 6]",
    "output": "generated_output : list = sort_des(sub_n([5, 2, 2],-4))",
    "io_inp": [
      5,
      2,
      2
    ],
    "io_out": [
      9,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-5, -4, 3, -2]\noutput : list = [-6, -4, 0, 10]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(sub_n([-5, -4, 3, -2],3)),2),-5),5)",
    "io_inp": [
      -5,
      -4,
      3,
      -2
    ],
    "io_out": [
      -6,
      -4,
      0,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(sub_n(input,3)),2),-5),5)"
  },
  {
    "input": "input : list = [3, 3, -3, 1]\noutput : list = [-122, -122, -42, 118]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(sort_des([3, 3, -3, 1]),-2),-4),-5),-2)",
    "io_inp": [
      3,
      3,
      -3,
      1
    ],
    "io_out": [
      -122,
      -122,
      -42,
      118
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(sort_des(input),-2),-4),-5),-2)"
  },
  {
    "input": "input : list = [1, 5, -4, -3, -4]\noutput : list = [20, 20, 15, -5, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sort_asc([1, 5, -4, -3, -4])))),-5)",
    "io_inp": [
      1,
      5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      20,
      20,
      15,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [0, 2, 5, 0, 3, -5]\noutput : list = [3, 1, 0, -2, -2, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sub_n([0, 2, 5, 0, 3, -5],-3)),-5)))",
    "io_inp": [
      0,
      2,
      5,
      0,
      3,
      -5
    ],
    "io_out": [
      3,
      1,
      0,
      -2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sub_n(input,-3)),-5)))"
  },
  {
    "input": "input : list = [0, -5, -2, 5, -2, -4]\noutput : list = [-26, -21, -11, -11, -1, 24]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(mul_n([0, -5, -2, 5, -2, -4],5)),35),-2),-1)",
    "io_inp": [
      0,
      -5,
      -2,
      5,
      -2,
      -4
    ],
    "io_out": [
      -26,
      -21,
      -11,
      -11,
      -1,
      24
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(mul_n(input,5)),35),-2),-1)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [-6, -12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(drop([5, 5, 2],1)),-1),-2))",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(drop(input,1)),-1),-2))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 11]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([1, 4],2)),-3)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,2)),-3)"
  },
  {
    "input": "input : list = [-3, 1, -4, -5]\noutput : list = [-17, 3, -22, -27]",
    "output": "generated_output : list = sub_n(mul_n([-3, 1, -4, -5],5),2)",
    "io_inp": [
      -3,
      1,
      -4,
      -5
    ],
    "io_out": [
      -17,
      3,
      -22,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),2)"
  },
  {
    "input": "input : list = [-1, -2, -2, 5, 0]\noutput : list = [0, -25, 10, 10, 5]",
    "output": "generated_output : list = reverse(mul_n([-1, -2, -2, 5, 0],-5))",
    "io_inp": [
      -1,
      -2,
      -2,
      5,
      0
    ],
    "io_out": [
      0,
      -25,
      10,
      10,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-1, -1, 2, 5, 4, -3]\noutput : list = [-1, 2, 5, 4, -3]",
    "output": "generated_output : list = drop([-1, -1, 2, 5, 4, -3],1)",
    "io_inp": [
      -1,
      -1,
      2,
      5,
      4,
      -3
    ],
    "io_out": [
      -1,
      2,
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [3, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sub_n([3, -1, -4],-3),3))))",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sub_n(input,-3),3))))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [60, 140]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(add_n([1, -3],-4),-4)),5))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      60,
      140
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(add_n(input,-4),-4)),5))"
  },
  {
    "input": "input : list = [3, 3, -3, -2, 4]\noutput : list = [-2, -1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sub_n([3, 3, -3, -2, 4],-1))),1))",
    "io_inp": [
      3,
      3,
      -3,
      -2,
      4
    ],
    "io_out": [
      -2,
      -1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sub_n(input,-1))),1))"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [0, 12, 20]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_des([5, 3, 0])),4)))",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      0,
      12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [2, 4, -2, 0, 0, -1]\noutput : list = [4, 0, 0, -1, -2]",
    "output": "generated_output : list = sort_des(drop([2, 4, -2, 0, 0, -1],1))",
    "io_inp": [
      2,
      4,
      -2,
      0,
      0,
      -1
    ],
    "io_out": [
      4,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 3, -4, 1, 2]\noutput : list = [-4, -4, 1, 2, 3]",
    "output": "generated_output : list = sort_asc([-4, 3, -4, 1, 2])",
    "io_inp": [
      -4,
      3,
      -4,
      1,
      2
    ],
    "io_out": [
      -4,
      -4,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 3, 4, -3, -3]\noutput : list = [0, 9, 12, -9, -9]",
    "output": "generated_output : list = mul_n([0, 3, 4, -3, -3],3)",
    "io_inp": [
      0,
      3,
      4,
      -3,
      -3
    ],
    "io_out": [
      0,
      9,
      12,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [-11, 10]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(drop([-1, 5, -2],1)),3)),5)",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      -11,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(drop(input,1)),3)),5)"
  },
  {
    "input": "input : list = [-4, 0, 3, -3, -1]\noutput : list = [-12, -8, -5, -11, -9]",
    "output": "generated_output : list = sub_n(add_n([-4, 0, 3, -3, -1],-4),4)",
    "io_inp": [
      -4,
      0,
      3,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -8,
      -5,
      -11,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),4)"
  },
  {
    "input": "input : list = [-5, -5, 0, 2, -2, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(add_n([-5, -5, 0, 2, -2, -3],2)),5),1))",
    "io_inp": [
      -5,
      -5,
      0,
      2,
      -2,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(add_n(input,2)),5),1))"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [80, 160, 120]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(add_n([-2, -3, -1],-1),-4)),-5),-2)",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      80,
      160,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(add_n(input,-1),-4)),-5),-2)"
  },
  {
    "input": "input : list = [1, 3, 5, 0]\noutput : list = [0, 5, 15, 25]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([1, 3, 5, 0],5)))",
    "io_inp": [
      1,
      3,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      15,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,5)))"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [-15, -6, 3]",
    "output": "generated_output : list = mul_n([-5, -2, 1],3)",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      -15,
      -6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, 5, -1, -2]\noutput : list = [9, 10, 16, 6]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(add_n([-5, 5, -1, -2],4),-5),15),-2))",
    "io_inp": [
      -5,
      5,
      -1,
      -2
    ],
    "io_out": [
      9,
      10,
      16,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(add_n(input,4),-5),15),-2))"
  },
  {
    "input": "input : list = [-2, 4, -4, -4, -3]\noutput : list = [45, 15, 10, 5, 5]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_des([-2, 4, -4, -4, -3])),5)),5)",
    "io_inp": [
      -2,
      4,
      -4,
      -4,
      -3
    ],
    "io_out": [
      45,
      15,
      10,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_des(input)),5)),5)"
  },
  {
    "input": "input : list = [5, 0, 4, 0, 4, 3]\noutput : list = [9, 8, 8, 7, 4, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des(sub_n([5, 0, 4, 0, 4, 3],-4))),-4),-4)",
    "io_inp": [
      5,
      0,
      4,
      0,
      4,
      3
    ],
    "io_out": [
      9,
      8,
      8,
      7,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(sub_n(input,-4))),-4),-4)"
  },
  {
    "input": "input : list = [0, 3, 4, 2]\noutput : list = [12, 9, 6, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(reverse([0, 3, 4, 2]),3))))",
    "io_inp": [
      0,
      3,
      4,
      2
    ],
    "io_out": [
      12,
      9,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(sub_n([2, -2],-1)),10),11),-4)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(sub_n(input,-1)),10),11),-4)"
  },
  {
    "input": "input : list = [0, 5, -3, 0]\noutput : list = [4, -1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sub_n([0, 5, -3, 0],1)))))",
    "io_inp": [
      0,
      5,
      -3,
      0
    ],
    "io_out": [
      4,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [0, 5, 3, -1, -3, -3]\noutput : list = [3, 3, 5, 6, 9, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(add_n([0, 5, 3, -1, -3, -3],1)),-3)),-2)",
    "io_inp": [
      0,
      5,
      3,
      -1,
      -3,
      -3
    ],
    "io_out": [
      3,
      3,
      5,
      6,
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(add_n(input,1)),-3)),-2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-11, -10]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(sort_des([-2, -3]),-2),-3)),3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -11,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(sort_des(input),-2),-3)),3)"
  },
  {
    "input": "input : list = [-1, -4, -2, 4, -3, 5]\noutput : list = [248, 184, 120, 56, -264, -328]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(mul_n([-1, -4, -2, 4, -3, 5],-4),-4)),-2),-4)",
    "io_inp": [
      -1,
      -4,
      -2,
      4,
      -3,
      5
    ],
    "io_out": [
      248,
      184,
      120,
      56,
      -264,
      -328
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(mul_n(input,-4),-4)),-2),-4)"
  },
  {
    "input": "input : list = [-3, -4, -4, -3]\noutput : list = [15, 15, 12, 12]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(sort_asc([-3, -4, -4, -3]),23),-2),1),-3)",
    "io_inp": [
      -3,
      -4,
      -4,
      -3
    ],
    "io_out": [
      15,
      15,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(sort_asc(input),23),-2),1),-3)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(take(take(reverse([4, 5]),13),4),-3))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(reverse(input),13),4),-3))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-4, -64]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([0, 5],4),-3),4)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -4,
      -64
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,4),-3),4)"
  },
  {
    "input": "input : list = [-2, 2, -3, -2, 1, -4]\noutput : list = [-2, -1, 0, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sub_n([-2, 2, -3, -2, 1, -4],-1))),-1))",
    "io_inp": [
      -2,
      2,
      -3,
      -2,
      1,
      -4
    ],
    "io_out": [
      -2,
      -1,
      0,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sub_n(input,-1))),-1))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [3, 11]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n([-3, -1],2),-2)),1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      3,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(input,2),-2)),1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([1, 5]),5))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [-9, -12]",
    "output": "generated_output : list = add_n(sort_des(sub_n(drop([4, -5, -2],1),3)),-4)",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      -9,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(drop(input,1),3)),-4)"
  },
  {
    "input": "input : list = [5, 1, -3, -3, 3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take([5, 1, -3, -3, 3],1))",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [2, 2, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(reverse([-4, 1, 1]),5)),4))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(reverse(input),5)),4))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(mul_n([0, 1],-2))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [20, -40]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_asc([-2, 4])),24),-2),5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      20,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_asc(input)),24),-2),5)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc([4, -4])",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [0, -2]",
    "output": "generated_output : list = sub_n([-2, -4],-2)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [2, -5, -5]",
    "output": "generated_output : list = reverse([-5, -5, 2])",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, 4, 1, -2, -3]\noutput : list = [-2, -3, 4, 1, -2, -3]",
    "output": "generated_output : list = reverse(reverse([-2, -3, 4, 1, -2, -3]))",
    "io_inp": [
      -2,
      -3,
      4,
      1,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3,
      4,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, 4, 3, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = drop([4, 4, 3, -5, -4],3)",
    "io_inp": [
      4,
      4,
      3,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, -1, 5, -1, -5, 2]\noutput : list = [-5, -1, -1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([3, -1, 5, -1, -5, 2])",
    "io_inp": [
      3,
      -1,
      5,
      -1,
      -5,
      2
    ],
    "io_out": [
      -5,
      -1,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [5, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(reverse([-1, -3, 5])))",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [3, 3, -4]\noutput : list = [11, 11, 4]",
    "output": "generated_output : list = sub_n(sub_n([3, 3, -4],-3),-5)",
    "io_inp": [
      3,
      3,
      -4
    ],
    "io_out": [
      11,
      11,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-5)"
  },
  {
    "input": "input : list = [-4, -5, -4, 0]\noutput : list = [-18, -15, -3]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(drop([-4, -5, -4, 0],1)),3),-3))",
    "io_inp": [
      -4,
      -5,
      -4,
      0
    ],
    "io_out": [
      -18,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(drop(input,1)),3),-3))"
  },
  {
    "input": "input : list = [-2, -3, -2, -3, 1]\noutput : list = [1, -7, -5, -7, -5]",
    "output": "generated_output : list = add_n(reverse(mul_n([-2, -3, -2, -3, 1],2)),-1)",
    "io_inp": [
      -2,
      -3,
      -2,
      -3,
      1
    ],
    "io_out": [
      1,
      -7,
      -5,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,2)),-1)"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [-2, -4, -10]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(add_n([0, -1, 3],1)),-2)),2)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(add_n(input,1)),-2)),2)"
  },
  {
    "input": "input : list = [-1, 0, -2, -2, 4, 4]\noutput : list = [-6, 0, -12, -12, 24, 24]",
    "output": "generated_output : list = mul_n(mul_n([-1, 0, -2, -2, 4, 4],3),2)",
    "io_inp": [
      -1,
      0,
      -2,
      -2,
      4,
      4
    ],
    "io_out": [
      -6,
      0,
      -12,
      -12,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),2)"
  },
  {
    "input": "input : list = [1, -5, -3, 5, -4, 2]\noutput : list = [8, -16, 20, -12, -20, 4]",
    "output": "generated_output : list = mul_n(reverse([1, -5, -3, 5, -4, 2]),4)",
    "io_inp": [
      1,
      -5,
      -3,
      5,
      -4,
      2
    ],
    "io_out": [
      8,
      -16,
      20,
      -12,
      -20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [12, 14, 15]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([2, 4, 5]),-5),-5)",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      12,
      14,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),-5),-5)"
  },
  {
    "input": "input : list = [-5, 3, 0, -4]\noutput : list = [-3, -2, 2, 5]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc([-5, 3, 0, -4])),2),21)",
    "io_inp": [
      -5,
      3,
      0,
      -4
    ],
    "io_out": [
      -3,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(input)),2),21)"
  },
  {
    "input": "input : list = [0, -5, -3]\noutput : list = [-3, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([0, -5, -3],-1),3))",
    "io_inp": [
      0,
      -5,
      -3
    ],
    "io_out": [
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,-1),3))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [12, 9]",
    "output": "generated_output : list = mul_n(reverse([-3, -4]),-3)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [0, 5, 5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = drop([0, 5, 5, -2],2)",
    "io_inp": [
      0,
      5,
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [25, -15, 0]",
    "output": "generated_output : list = reverse(mul_n([0, 3, -5],-5))",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      25,
      -15,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [80, 80]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_asc([4, 4])),4),5),23)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      80,
      80
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_asc(input)),4),5),23)"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [12, 9, 6]",
    "output": "generated_output : list = sort_des(take(take(sub_n(sub_n([5, 2, -1],-2),-5),23),21))",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      12,
      9,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(sub_n(input,-2),-5),23),21))"
  },
  {
    "input": "input : list = [4, -1, -1, 2]\noutput : list = [7, 3, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(mul_n([4, -1, -1, 2],2),21),1)))",
    "io_inp": [
      4,
      -1,
      -1,
      2
    ],
    "io_out": [
      7,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(mul_n(input,2),21),1)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-9, -10]",
    "output": "generated_output : list = take(take(sort_des(take(add_n([-4, -5],-5),2)),21),37)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(add_n(input,-5),2)),21),37)"
  },
  {
    "input": "input : list = [-2, -1, -4, 3, -1, -3]\noutput : list = [-4, -3, -2, -1, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(reverse([-2, -1, -4, 3, -1, -3]),27),31)))",
    "io_inp": [
      -2,
      -1,
      -4,
      3,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(reverse(input),27),31)))"
  },
  {
    "input": "input : list = [-4, 4, 5, 3, -3]\noutput : list = [7, 3, -21, -25, -29]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(mul_n([-4, 4, 5, 3, -3],-4),19)),5),-4)",
    "io_inp": [
      -4,
      4,
      5,
      3,
      -3
    ],
    "io_out": [
      7,
      3,
      -21,
      -25,
      -29
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(mul_n(input,-4),19)),5),-4)"
  },
  {
    "input": "input : list = [-4, 3, -2, -3, -5]\noutput : list = [4, -1, -2, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des([-4, 3, -2, -3, -5]),-1)",
    "io_inp": [
      -4,
      3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [10, -15]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_asc([3, -2]))),24),-5)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_asc(input))),24),-5)"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [-39, 3, 15]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(mul_n([5, -2, -4],2),-3)),-3))",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      -39,
      3,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(mul_n(input,2),-3)),-3))"
  },
  {
    "input": "input : list = [-2, 1, 4, -4]\noutput : list = [5, 2]",
    "output": "generated_output : list = add_n(reverse(take([-2, 1, 4, -4],2)),4)",
    "io_inp": [
      -2,
      1,
      4,
      -4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,2)),4)"
  },
  {
    "input": "input : list = [-2, -2, 5, -1, -5]\noutput : list = [-9, -13]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(drop([-2, -2, 5, -1, -5],3),-5),4),-1),3)",
    "io_inp": [
      -2,
      -2,
      5,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(drop(input,3),-5),4),-1),3)"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(drop([3, 4, 4],1),5))))",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(drop(input,1),5))))"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = drop([5, 3, 0],1)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -4, -1, 4, -4]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(sub_n(take([-5, -4, -1, 4, -4],1),-3),2)",
    "io_inp": [
      -5,
      -4,
      -1,
      4,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,1),-3),2)"
  },
  {
    "input": "input : list = [0, 0, 0, -4, 5, -1]\noutput : list = [-4, -1, 0, 0, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse([0, 0, 0, -4, 5, -1]))",
    "io_inp": [
      0,
      0,
      0,
      -4,
      5,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, -2, -1, 4]\noutput : list = [3, 3, 4, 9]",
    "output": "generated_output : list = sort_asc(sub_n([-2, -2, -1, 4],-5))",
    "io_inp": [
      -2,
      -2,
      -1,
      4
    ],
    "io_out": [
      3,
      3,
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [-2, 1, 5]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(sort_des([0, -3, 4]),-3))),4)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(sort_des(input),-3))),4)"
  },
  {
    "input": "input : list = [3, 1, 0, -2, 4]\noutput : list = [7, 8]",
    "output": "generated_output : list = reverse(take(take(sort_des(add_n([3, 1, 0, -2, 4],4)),21),2))",
    "io_inp": [
      3,
      1,
      0,
      -2,
      4
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(add_n(input,4)),21),2))"
  },
  {
    "input": "input : list = [1, 2, 4]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = take(reverse([1, 2, 4]),10)",
    "io_inp": [
      1,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),10)"
  },
  {
    "input": "input : list = [4, 5, 2, -3, 1]\noutput : list = [2, 3, 0, -5, -1]",
    "output": "generated_output : list = add_n([4, 5, 2, -3, 1],-2)",
    "io_inp": [
      4,
      5,
      2,
      -3,
      1
    ],
    "io_out": [
      2,
      3,
      0,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 3, 2, 0, -4, -2]\noutput : list = [3, 5, 5, 7, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(add_n([-2, 3, 2, 0, -4, -2],5)),-2)))",
    "io_inp": [
      -2,
      3,
      2,
      0,
      -4,
      -2
    ],
    "io_out": [
      3,
      5,
      5,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(add_n(input,5)),-2)))"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [60, 48, -12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(sort_des([-4, 1, -5]))),4),-3)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      60,
      48,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(sort_des(input))),4),-3)"
  },
  {
    "input": "input : list = [0, -2, 4, -1, -3]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(drop([0, -2, 4, -1, -3],3),2),3)))",
    "io_inp": [
      0,
      -2,
      4,
      -1,
      -3
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(drop(input,3),2),3)))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sub_n(add_n(reverse([1, -5]),4),5)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),4),5)"
  },
  {
    "input": "input : list = [-5, 1, 2, -1, -4, -1]\noutput : list = [2, 1, -1, -1, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 1, 2, -1, -4, -1])",
    "io_inp": [
      -5,
      1,
      2,
      -1,
      -4,
      -1
    ],
    "io_out": [
      2,
      1,
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, 5, -1, 1, 5]\noutput : list = [6, 6, 5, 2, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sub_n([4, -3, 5, -1, 1, 5],-2),1))))",
    "io_inp": [
      4,
      -3,
      5,
      -1,
      1,
      5
    ],
    "io_out": [
      6,
      6,
      5,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sub_n(input,-2),1))))"
  },
  {
    "input": "input : list = [-3, 0, 2, -2, 1]\noutput : list = [4, 3, 2, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([-3, 0, 2, -2, 1])),-2)",
    "io_inp": [
      -3,
      0,
      2,
      -2,
      1
    ],
    "io_out": [
      4,
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-4, -2, 1, -4]\noutput : list = [-4, 1, -2, -4]",
    "output": "generated_output : list = take(reverse([-4, -2, 1, -4]),10)",
    "io_inp": [
      -4,
      -2,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),10)"
  },
  {
    "input": "input : list = [-4, 1, -3, 4]\noutput : list = [-1, 0, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sort_asc([-4, 1, -3, 4])),3)))",
    "io_inp": [
      -4,
      1,
      -3,
      4
    ],
    "io_out": [
      -1,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [3, 3, 3, 4, -1, 3]\noutput : list = [3, 3, 3]",
    "output": "generated_output : list = sort_des(take([3, 3, 3, 4, -1, 3],3))",
    "io_inp": [
      3,
      3,
      3,
      4,
      -1,
      3
    ],
    "io_out": [
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-1, -1, 5, -4, -4, 0]\noutput : list = [-4, 16]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(drop([-1, -1, 5, -4, -4, 0],4),-4),5),31),4)",
    "io_inp": [
      -1,
      -1,
      5,
      -4,
      -4,
      0
    ],
    "io_out": [
      -4,
      16
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(drop(input,4),-4),5),31),4)"
  },
  {
    "input": "input : list = [-5, 0, -5, 0, 2, -1]\noutput : list = [-19, -19, 1, 6, 6, 16]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(mul_n([-5, 0, -5, 0, 2, -1],5),-3)),-2),-5)",
    "io_inp": [
      -5,
      0,
      -5,
      0,
      2,
      -1
    ],
    "io_out": [
      -19,
      -19,
      1,
      6,
      6,
      16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(mul_n(input,5),-3)),-2),-5)"
  },
  {
    "input": "input : list = [-4, -1, 2, -1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -1, 2, -1],1)",
    "io_inp": [
      -4,
      -1,
      2,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 3, -2, -1]\noutput : list = [-25, -20, -5, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([2, 3, -2, -1],-2)),-5)",
    "io_inp": [
      2,
      3,
      -2,
      -1
    ],
    "io_out": [
      -25,
      -20,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-2)),-5)"
  },
  {
    "input": "input : list = [-5, -3, 5, -1, -3, -1]\noutput : list = [32, 24, 24, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(drop([-5, -3, 5, -1, -3, -1],2)),5),-4)",
    "io_inp": [
      -5,
      -3,
      5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      32,
      24,
      24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(drop(input,2)),5),-4)"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(add_n(take(sort_asc(take([1, 2, 1],1)),3),-4))",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_asc(take(input,1)),3),-4))"
  },
  {
    "input": "input : list = [2, -5, -2]\noutput : list = [0, -4, -7]",
    "output": "generated_output : list = sort_des(take(add_n([2, -5, -2],-2),14))",
    "io_inp": [
      2,
      -5,
      -2
    ],
    "io_out": [
      0,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,-2),14))"
  },
  {
    "input": "input : list = [3, -4, 1, -4, 4, 2]\noutput : list = [-7, -7, -2, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(reverse([3, -4, 1, -4, 4, 2]),4),-1)))",
    "io_inp": [
      3,
      -4,
      1,
      -4,
      4,
      2
    ],
    "io_out": [
      -7,
      -7,
      -2,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(reverse(input),4),-1)))"
  },
  {
    "input": "input : list = [-2, 4, 5, -1, -1, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 4, 5, -1, -1, -3],1)",
    "io_inp": [
      -2,
      4,
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [1, 0, -5]",
    "output": "generated_output : list = sort_des(take(reverse(reverse([0, -5, 1])),11))",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(reverse(input)),11))"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = drop([-5, 5, -1],1)",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 3, -1, -5, 1, -3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(sort_asc(take([-5, 3, -1, -5, 1, -3],1)))",
    "io_inp": [
      -5,
      3,
      -1,
      -5,
      1,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-3, 2, -1, -4]\noutput : list = [20, -10, -30, -40]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(sort_asc([-3, 2, -1, -4]),-5),16),-2))",
    "io_inp": [
      -3,
      2,
      -1,
      -4
    ],
    "io_out": [
      20,
      -10,
      -30,
      -40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(sort_asc(input),-5),16),-2))"
  },
  {
    "input": "input : list = [2, -5, 0, 0, 4, -3]\noutput : list = [-7, -5, -2, -2, 0, 2]",
    "output": "generated_output : list = sort_asc(take(add_n([2, -5, 0, 0, 4, -3],-2),19))",
    "io_inp": [
      2,
      -5,
      0,
      0,
      4,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -2,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-2),19))"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [-125]",
    "output": "generated_output : list = reverse(reverse(mul_n(drop(mul_n([4, 0, 5],-5),2),5)))",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      -125
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(drop(mul_n(input,-5),2),5)))"
  },
  {
    "input": "input : list = [5, 2, 3, 5, 3]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(take([5, 2, 3, 5, 3],2),16)",
    "io_inp": [
      5,
      2,
      3,
      5,
      3
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(take(input,2),16)"
  },
  {
    "input": "input : list = [-3, -2, 4, -5, 2]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sort_des(take([-3, -2, 4, -5, 2],1)))",
    "io_inp": [
      -3,
      -2,
      4,
      -5,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(mul_n([3, 0],3),4))),6)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(mul_n(input,3),4))),6)"
  },
  {
    "input": "input : list = [0, -4, -5]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(drop(reverse(sort_des(drop([0, -4, -5],1))),1),-5)",
    "io_inp": [
      0,
      -4,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(sort_des(drop(input,1))),1),-5)"
  },
  {
    "input": "input : list = [-5, 1, 3, 2]\noutput : list = [84, 96, 72, 0]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(sub_n([-5, 1, 3, 2],-5),-3),-4)),21)",
    "io_inp": [
      -5,
      1,
      3,
      2
    ],
    "io_out": [
      84,
      96,
      72,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(sub_n(input,-5),-3),-4)),21)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [19, 19]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(mul_n([-5, -5],-3)),8)),-4)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      19,
      19
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(mul_n(input,-3)),8)),-4)"
  },
  {
    "input": "input : list = [5, -3, -4, 3, -1]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = mul_n(reverse(take([5, -3, -4, 3, -1],3)),-1)",
    "io_inp": [
      5,
      -3,
      -4,
      3,
      -1
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,3)),-1)"
  },
  {
    "input": "input : list = [1, -1, 3, 3, 2, -2]\noutput : list = [-20, -20, -15, 5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(drop([1, -1, 3, 3, 2, -2],2),1)),-5))",
    "io_inp": [
      1,
      -1,
      3,
      3,
      2,
      -2
    ],
    "io_out": [
      -20,
      -20,
      -15,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(drop(input,2),1)),-5))"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [9, -9, -11]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(mul_n([5, -5, -4],2),3),7),-2))",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      9,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(mul_n(input,2),3),7),-2))"
  },
  {
    "input": "input : list = [-2, -5, -2, 3, -3]\noutput : list = [-15, 5, 5, 9, 17]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(reverse([-2, -5, -2, 3, -3])),-4),-3))",
    "io_inp": [
      -2,
      -5,
      -2,
      3,
      -3
    ],
    "io_out": [
      -15,
      5,
      5,
      9,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(reverse(input)),-4),-3))"
  },
  {
    "input": "input : list = [-5, 4, 2, 2]\noutput : list = [17, 11, 11, -10]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(mul_n([-5, 4, 2, 2],3)),5)))",
    "io_inp": [
      -5,
      4,
      2,
      2
    ],
    "io_out": [
      17,
      11,
      11,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(mul_n(input,3)),5)))"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = sort_des(sub_n([-2, 0, -2],2))",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [3, -2, 4, 2, -1, 0]\noutput : list = [4, -1, 5, 3, 0, 1]",
    "output": "generated_output : list = sub_n([3, -2, 4, 2, -1, 0],-1)",
    "io_inp": [
      3,
      -2,
      4,
      2,
      -1,
      0
    ],
    "io_out": [
      4,
      -1,
      5,
      3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 2, -5, 0, 5, 1]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(take([-2, 2, -5, 0, 5, 1],2)))))",
    "io_inp": [
      -2,
      2,
      -5,
      0,
      5,
      1
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [0, -4, 0, 5]\noutput : list = [0, -20, 0, 25]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(add_n([0, -4, 0, 5],-3),11),4),1),5)",
    "io_inp": [
      0,
      -4,
      0,
      5
    ],
    "io_out": [
      0,
      -20,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(add_n(input,-3),11),4),1),5)"
  },
  {
    "input": "input : list = [0, 2, 3, -1]\noutput : list = [4, 3, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sort_asc([0, 2, 3, -1])),-1)))",
    "io_inp": [
      0,
      2,
      3,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [2, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(add_n([-2, 4],-4)),-3),-5))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(add_n(input,-4)),-3),-5))"
  },
  {
    "input": "input : list = [-3, -1, 3, 3]\noutput : list = [-5]",
    "output": "generated_output : list = drop(add_n(reverse(add_n(sort_asc([-3, -1, 3, 3]),3)),-5),3)",
    "io_inp": [
      -3,
      -1,
      3,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(add_n(reverse(add_n(sort_asc(input),3)),-5),3)"
  },
  {
    "input": "input : list = [0, -4, 0, 4]\noutput : list = [0, 0, -4]",
    "output": "generated_output : list = drop(take(sort_des(add_n(sub_n([0, -4, 0, 4],2),2)),39),1)",
    "io_inp": [
      0,
      -4,
      0,
      4
    ],
    "io_out": [
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = drop(take(sort_des(add_n(sub_n(input,2),2)),39),1)"
  },
  {
    "input": "input : list = [2, -5, 5, -4]\noutput : list = [50, 40, -20, -50]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(mul_n([2, -5, 5, -4],2)),22)),-5)",
    "io_inp": [
      2,
      -5,
      5,
      -4
    ],
    "io_out": [
      50,
      40,
      -20,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(mul_n(input,2)),22)),-5)"
  },
  {
    "input": "input : list = [5, 1, -4, 2]\noutput : list = [8, 4, -1, 5]",
    "output": "generated_output : list = add_n([5, 1, -4, 2],3)",
    "io_inp": [
      5,
      1,
      -4,
      2
    ],
    "io_out": [
      8,
      4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, -3, 0, -2, -3]\noutput : list = [0, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(take([5, -3, 0, -2, -3],2),2),-1)),1)",
    "io_inp": [
      5,
      -3,
      0,
      -2,
      -3
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(take(input,2),2),-1)),1)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [-2, 0, -4]",
    "output": "generated_output : list = add_n(reverse([0, 4, 2]),-4)",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      -2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [5, -3, 5, -5, 1]\noutput : list = [-2, 10, -10, 6, -10]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse([5, -3, 5, -5, 1]),-2)))",
    "io_inp": [
      5,
      -3,
      5,
      -5,
      1
    ],
    "io_out": [
      -2,
      10,
      -10,
      6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(input),-2)))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-32, -16]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n([-3, -5],1)),2),4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -32,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(input,1)),2),4)"
  },
  {
    "input": "input : list = [-4, -2, 3, -3]\noutput : list = [240, 120, -180, 180]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(mul_n([-4, -2, 3, -3],-3),9),-1),4),-5)",
    "io_inp": [
      -4,
      -2,
      3,
      -3
    ],
    "io_out": [
      240,
      120,
      -180,
      180
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(mul_n(input,-3),9),-1),4),-5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = add_n(take(add_n(sub_n([-5, 3],-3),4),17),-4)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(input,-3),4),17),-4)"
  },
  {
    "input": "input : list = [-5, 0, 5, -5, -1, 4]\noutput : list = [-5, -5, -1, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([-5, 0, 5, -5, -1, 4])",
    "io_inp": [
      -5,
      0,
      5,
      -5,
      -1,
      4
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [-10, -15, 15]",
    "output": "generated_output : list = mul_n(reverse([-3, 3, 2]),-5)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      -10,
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [5, -4, 3, 3]\noutput : list = [8, 6, 6, -1]",
    "output": "generated_output : list = sub_n(sort_des([5, -4, 3, 3]),-3)",
    "io_inp": [
      5,
      -4,
      3,
      3
    ],
    "io_out": [
      8,
      6,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [4, 1, 0]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = mul_n([4, 1, 0],-1)",
    "io_inp": [
      4,
      1,
      0
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 1, 4, -5]\noutput : list = [15, -3, -12, 15]",
    "output": "generated_output : list = mul_n([-5, 1, 4, -5],-3)",
    "io_inp": [
      -5,
      1,
      4,
      -5
    ],
    "io_out": [
      15,
      -3,
      -12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [-14, 4, 13]",
    "output": "generated_output : list = sub_n(mul_n([4, -2, -5],-3),2)",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      -14,
      4,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),2)"
  },
  {
    "input": "input : list = [3, -4, 5, -5, 5]\noutput : list = [0, 0, -2, -9, -10]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc([3, -4, 5, -5, 5])),5))",
    "io_inp": [
      3,
      -4,
      5,
      -5,
      5
    ],
    "io_out": [
      0,
      0,
      -2,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(input)),5))"
  },
  {
    "input": "input : list = [2, -3, -2]\noutput : list = [2]",
    "output": "generated_output : list = take(reverse(sort_des(take(take([2, -3, -2],1),6))),2)",
    "io_inp": [
      2,
      -3,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(take(input,1),6))),2)"
  },
  {
    "input": "input : list = [1, -3, -1]\noutput : list = [-3, 1, -1]",
    "output": "generated_output : list = take(take(add_n(mul_n([1, -3, -1],-1),-2),4),34)",
    "io_inp": [
      1,
      -3,
      -1
    ],
    "io_out": [
      -3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(input,-1),-2),4),34)"
  },
  {
    "input": "input : list = [3, 3, -1, -2, -4, -3]\noutput : list = [6, 7, 8, 9, 13, 13]",
    "output": "generated_output : list = sort_asc(add_n(add_n([3, 3, -1, -2, -4, -3],5),5))",
    "io_inp": [
      3,
      3,
      -1,
      -2,
      -4,
      -3
    ],
    "io_out": [
      6,
      7,
      8,
      9,
      13,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,5),5))"
  },
  {
    "input": "input : list = [4, -5, 0, 3]\noutput : list = [4, -5, 0, 3]",
    "output": "generated_output : list = mul_n([4, -5, 0, 3],1)",
    "io_inp": [
      4,
      -5,
      0,
      3
    ],
    "io_out": [
      4,
      -5,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, 5, 2, -3, -5, 3]\noutput : list = [-8, -6, -2, -1, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc([1, 5, 2, -3, -5, 3]),-3)",
    "io_inp": [
      1,
      5,
      2,
      -3,
      -5,
      3
    ],
    "io_out": [
      -8,
      -6,
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [0, 4, 4, 1, -5]\noutput : list = [7, 23, 23, 11, -13]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(add_n([0, 4, 4, 1, -5],2),4),1),1),5)",
    "io_inp": [
      0,
      4,
      4,
      1,
      -5
    ],
    "io_out": [
      7,
      23,
      23,
      11,
      -13
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(add_n(input,2),4),1),1),5)"
  },
  {
    "input": "input : list = [-1, 1, -5, -3, -3]\noutput : list = [-3, -5, -7, -7, -9]",
    "output": "generated_output : list = take(sort_des(add_n(take(sort_asc([-1, 1, -5, -3, -3]),23),-4)),15)",
    "io_inp": [
      -1,
      1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(sort_asc(input),23),-4)),15)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [15, 6, 21]",
    "output": "generated_output : list = mul_n(add_n([1, -2, 3],4),3)",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      15,
      6,
      21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),3)"
  },
  {
    "input": "input : list = [-3, 1, 1, 4, -4, 4]\noutput : list = [4, 4, 1, 1, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(sub_n([-3, 1, 1, 4, -4, 4],-3),-5))),2)",
    "io_inp": [
      -3,
      1,
      1,
      4,
      -4,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(sub_n(input,-3),-5))),2)"
  },
  {
    "input": "input : list = [0, 3, -4, 0, -2, 5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc(take([0, 3, -4, 0, -2, 5],1)),-4),1))",
    "io_inp": [
      0,
      3,
      -4,
      0,
      -2,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(take(input,1)),-4),1))"
  },
  {
    "input": "input : list = [-2, 0, 2, 3, 2]\noutput : list = [-5, -1, 3, 3, 5]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(mul_n([-2, 0, 2, 3, 2],2),-1)),25),2)",
    "io_inp": [
      -2,
      0,
      2,
      3,
      2
    ],
    "io_out": [
      -5,
      -1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(mul_n(input,2),-1)),25),2)"
  },
  {
    "input": "input : list = [1, -5, -1, 2]\noutput : list = [7, 6, 4, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse([1, -5, -1, 2])),-5)",
    "io_inp": [
      1,
      -5,
      -1,
      2
    ],
    "io_out": [
      7,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),-5)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [8, 0, -4]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_asc([5, -1, 1]))),2),-2)",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      8,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_asc(input))),2),-2)"
  },
  {
    "input": "input : list = [3, 0, 4, -5, 4]\noutput : list = [-5, 0, 3, 4, 4]",
    "output": "generated_output : list = sort_asc([3, 0, 4, -5, 4])",
    "io_inp": [
      3,
      0,
      4,
      -5,
      4
    ],
    "io_out": [
      -5,
      0,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(drop([4, -1, -4],1),1))))",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [-5, -3, 5, 4, 0, 0]\noutput : list = [5, 4, 0, 0, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, 5, 4, 0, 0])",
    "io_inp": [
      -5,
      -3,
      5,
      4,
      0,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, 1, -1, -1]\noutput : list = [-7, -7, -9, -9, -9]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des([1, -1, 1, -1, -1]),2),5),-5)",
    "io_inp": [
      1,
      -1,
      1,
      -1,
      -1
    ],
    "io_out": [
      -7,
      -7,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(input),2),5),-5)"
  },
  {
    "input": "input : list = [3, -3, -5, 5, 5]\noutput : list = [3, 3, 1, -5, -7]",
    "output": "generated_output : list = take(sort_des(add_n([3, -3, -5, 5, 5],-2)),32)",
    "io_inp": [
      3,
      -3,
      -5,
      5,
      5
    ],
    "io_out": [
      3,
      3,
      1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-2)),32)"
  },
  {
    "input": "input : list = [-4, -5, 5, -2, -5]\noutput : list = [20, 25, -25, 10, 25]",
    "output": "generated_output : list = mul_n([-4, -5, 5, -2, -5],-5)",
    "io_inp": [
      -4,
      -5,
      5,
      -2,
      -5
    ],
    "io_out": [
      20,
      25,
      -25,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 2, -1, 1]\noutput : list = [4, -2]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(drop([2, 2, -1, 1],2),-3),1)),39)",
    "io_inp": [
      2,
      2,
      -1,
      1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(drop(input,2),-3),1)),39)"
  },
  {
    "input": "input : list = [-4, 4, 5, 1]\noutput : list = [1, 9]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des(take([-4, 4, 5, 1],2)),14)),5)",
    "io_inp": [
      -4,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(take(input,2)),14)),5)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(take(reverse(add_n([-2, 2],-1)),21))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(input,-1)),21))"
  },
  {
    "input": "input : list = [-5, 1, -1]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, 1, -1],1))",
    "io_inp": [
      -5,
      1,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [4, -2, 0, 2, 5, 2]\noutput : list = [-2, 0, 2, 2, 4, 5]",
    "output": "generated_output : list = mul_n(sort_asc([4, -2, 0, 2, 5, 2]),1)",
    "io_inp": [
      4,
      -2,
      0,
      2,
      5,
      2
    ],
    "io_out": [
      -2,
      0,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(sort_des([-3, 1, -4])),25)),-1)",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(sort_des(input)),25)),-1)"
  },
  {
    "input": "input : list = [0, -4, 2, -4]\noutput : list = [15, 15, 3, -3]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc([0, -4, 2, -4])),3),4),-3)",
    "io_inp": [
      0,
      -4,
      2,
      -4
    ],
    "io_out": [
      15,
      15,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc(input)),3),4),-3)"
  },
  {
    "input": "input : list = [-5, -2, 0, 1, 3, 1]\noutput : list = [78, 33, 3, -12, -42, -12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(reverse([-5, -2, 0, 1, 3, 1]),5),1)),-3)",
    "io_inp": [
      -5,
      -2,
      0,
      1,
      3,
      1
    ],
    "io_out": [
      78,
      33,
      3,
      -12,
      -42,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(reverse(input),5),1)),-3)"
  },
  {
    "input": "input : list = [-1, 3, 1, -4]\noutput : list = [-8, 2, 6, -2]",
    "output": "generated_output : list = mul_n(take(reverse([-1, 3, 1, -4]),16),2)",
    "io_inp": [
      -1,
      3,
      1,
      -4
    ],
    "io_out": [
      -8,
      2,
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),16),2)"
  },
  {
    "input": "input : list = [5, 4, -5, 4]\noutput : list = [-4, 5, -4]",
    "output": "generated_output : list = mul_n(drop([5, 4, -5, 4],1),-1)",
    "io_inp": [
      5,
      4,
      -5,
      4
    ],
    "io_out": [
      -4,
      5,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [12, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([0, 3]),2),2)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),2),2)"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(mul_n([-3, -2, 4],-1),5)),-1),1)",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(mul_n(input,-1),5)),-1),1)"
  },
  {
    "input": "input : list = [0, -3, 3, -3, 4]\noutput : list = [2, -5, 1, -5, -2]",
    "output": "generated_output : list = reverse(add_n([0, -3, 3, -3, 4],-2))",
    "io_inp": [
      0,
      -3,
      3,
      -3,
      4
    ],
    "io_out": [
      2,
      -5,
      1,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-3, -2, 2, 4, 0, -3]\noutput : list = [-16, -16, -14, -10, -6, -2]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_asc([-3, -2, 2, 4, 0, -3])),5),2))",
    "io_inp": [
      -3,
      -2,
      2,
      4,
      0,
      -3
    ],
    "io_out": [
      -16,
      -16,
      -14,
      -10,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_asc(input)),5),2))"
  },
  {
    "input": "input : list = [0, -5, -1, 1]\noutput : list = [0, -10]",
    "output": "generated_output : list = reverse(mul_n(add_n(take([0, -5, -1, 1],2),5),-2))",
    "io_inp": [
      0,
      -5,
      -1,
      1
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(input,2),5),-2))"
  },
  {
    "input": "input : list = [1, 0, 0, -2]\noutput : list = [28, 20, 20, 16]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des([1, 0, 0, -2]),5)),-4)",
    "io_inp": [
      1,
      0,
      0,
      -2
    ],
    "io_out": [
      28,
      20,
      20,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(input),5)),-4)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-9, -18]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n([-1, -4],2)),3))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -9,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(input,2)),3))"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(sort_des([-3, -4, -1]),-5),-1),27),-4)",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(sort_des(input),-5),-1),27),-4)"
  },
  {
    "input": "input : list = [-1, 5, -1, -3, 3, -5]\noutput : list = [-4, -2, 0, 0, 4, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n([-1, 5, -1, -3, 3, -5],1))),19))",
    "io_inp": [
      -1,
      5,
      -1,
      -3,
      3,
      -5
    ],
    "io_out": [
      -4,
      -2,
      0,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n(input,1))),19))"
  },
  {
    "input": "input : list = [-2, 1, -5, 3, 2]\noutput : list = [-10, 5, 20, 25, 30]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sub_n([-2, 1, -5, 3, 2],-2),5)),-2),3)",
    "io_inp": [
      -2,
      1,
      -5,
      3,
      2
    ],
    "io_out": [
      -10,
      5,
      20,
      25,
      30
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sub_n(input,-2),5)),-2),3)"
  },
  {
    "input": "input : list = [-3, -4, -3, -1, 5, 2]\noutput : list = [7, 4, 1, -1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(sort_des([-3, -4, -3, -1, 5, 2]),30),2)))",
    "io_inp": [
      -3,
      -4,
      -3,
      -1,
      5,
      2
    ],
    "io_out": [
      7,
      4,
      1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(sort_des(input),30),2)))"
  },
  {
    "input": "input : list = [-5, 5, 2, 4, -2, 0]\noutput : list = [0, 3, 5, 7, 9, 10]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sub_n([-5, 5, 2, 4, -2, 0],-3)))),-2)",
    "io_inp": [
      -5,
      5,
      2,
      4,
      -2,
      0
    ],
    "io_out": [
      0,
      3,
      5,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sub_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc([-5, 5])",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, 4]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(take([1, 5, 4],1),-2),18)),2)",
    "io_inp": [
      1,
      5,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(take(input,1),-2),18)),2)"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(drop([-2, 2, 3],1))))",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(drop(input,1))))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(sort_des([1, -2]))),1),5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(sort_des(input))),1),5)"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [23, -12, -12]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([4, -3, -3],5)),-3)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      23,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,5)),-3)"
  },
  {
    "input": "input : list = [-2, 0, -3]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take([-2, 0, -3],1),2)",
    "io_inp": [
      -2,
      0,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),2)"
  },
  {
    "input": "input : list = [1, 1, 4, 4, 0]\noutput : list = [4, 8, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(drop([1, 1, 4, 4, 0],2)),4))",
    "io_inp": [
      1,
      1,
      4,
      4,
      0
    ],
    "io_out": [
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(drop(input,2)),4))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [3, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(sort_asc([2, 4]),14)),2),1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(sort_asc(input),14)),2),1)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([2, -1]),-1),-5)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-1),-5)"
  },
  {
    "input": "input : list = [0, -2, -3, -3]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(drop([0, -2, -3, -3],2),-4)),2),2)",
    "io_inp": [
      0,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(drop(input,2),-4)),2),2)"
  },
  {
    "input": "input : list = [-1, -4, -2, 3, -5, 1]\noutput : list = [-5, -4, -2, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([-1, -4, -2, 3, -5, 1])",
    "io_inp": [
      -1,
      -4,
      -2,
      3,
      -5,
      1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [7, 5]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc([1, -1]),-5),1))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(input),-5),1))"
  },
  {
    "input": "input : list = [1, -2, -3, 1]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_des(drop([1, -2, -3, 1],1)),1)),2)",
    "io_inp": [
      1,
      -2,
      -3,
      1
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_des(drop(input,1)),1)),2)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [10, 15]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(drop([2, 3, 2],1),6),1)),5)",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(drop(input,1),6),1)),5)"
  },
  {
    "input": "input : list = [2, 0, 0, 4, -3, -5]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(drop([2, 0, 0, 4, -3, -5],4),5),-1),4))",
    "io_inp": [
      2,
      0,
      0,
      4,
      -3,
      -5
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(drop(input,4),5),-1),4))"
  },
  {
    "input": "input : list = [5, -4, 5, 4, 5]\noutput : list = [26, 21, 26, -19, 26]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(mul_n([5, -4, 5, 4, 5],1),12),5)),-1)",
    "io_inp": [
      5,
      -4,
      5,
      4,
      5
    ],
    "io_out": [
      26,
      21,
      26,
      -19,
      26
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(mul_n(input,1),12),5)),-1)"
  },
  {
    "input": "input : list = [-1, -1, -2, 4, 5, 1]\noutput : list = [-7, -1, 0, -4]",
    "output": "generated_output : list = add_n(take(drop([-1, -1, -2, 4, 5, 1],2),4),-5)",
    "io_inp": [
      -1,
      -1,
      -2,
      4,
      5,
      1
    ],
    "io_out": [
      -7,
      -1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,2),4),-5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-32, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sub_n([-3, 5],4),1),4)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -32,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sub_n(input,4),1),4)))"
  },
  {
    "input": "input : list = [2, -5, -1, -1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -5, -1, -1],1)",
    "io_inp": [
      2,
      -5,
      -1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -5, -2, 0, 1, -1]\noutput : list = [19, 7, 4, 1, -2, -11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([5, -5, -2, 0, 1, -1],3),-4))",
    "io_inp": [
      5,
      -5,
      -2,
      0,
      1,
      -1
    ],
    "io_out": [
      19,
      7,
      4,
      1,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,3),-4))"
  },
  {
    "input": "input : list = [-5, -2, -1, 2, 5]\noutput : list = [8, 5, 2, 1, -2]",
    "output": "generated_output : list = take(sort_des(take(add_n(mul_n([-5, -2, -1, 2, 5],1),3),31)),23)",
    "io_inp": [
      -5,
      -2,
      -1,
      2,
      5
    ],
    "io_out": [
      8,
      5,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(mul_n(input,1),3),31)),23)"
  },
  {
    "input": "input : list = [-4, 0, 2, -4, 3]\noutput : list = [15, 10, 0, -20, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-4, 0, 2, -4, 3]),5))",
    "io_inp": [
      -4,
      0,
      2,
      -4,
      3
    ],
    "io_out": [
      15,
      10,
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [-5, 0, 1, 4]\noutput : list = [-16, -7, -4, 11]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(mul_n([-5, 0, 1, 4],-3)),-4)))",
    "io_inp": [
      -5,
      0,
      1,
      4
    ],
    "io_out": [
      -16,
      -7,
      -4,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(mul_n(input,-3)),-4)))"
  },
  {
    "input": "input : list = [1, -1, -1, 5, 1, -3]\noutput : list = [-3, 1, 5, -1, -1, 1]",
    "output": "generated_output : list = reverse([1, -1, -1, 5, 1, -3])",
    "io_inp": [
      1,
      -1,
      -1,
      5,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      5,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5, 4]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc([-2, -5, 4])),-1))",
    "io_inp": [
      -2,
      -5,
      4
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(input)),-1))"
  },
  {
    "input": "input : list = [-3, -2, -5, 2]\noutput : list = [8, 4, 16, -12]",
    "output": "generated_output : list = mul_n(add_n([-3, -2, -5, 2],1),-4)",
    "io_inp": [
      -3,
      -2,
      -5,
      2
    ],
    "io_out": [
      8,
      4,
      16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-4)"
  },
  {
    "input": "input : list = [-2, -1, 0, 1, 2, 1]\noutput : list = [-3, -6, -3, 0, 3, 6]",
    "output": "generated_output : list = mul_n(reverse([-2, -1, 0, 1, 2, 1]),-3)",
    "io_inp": [
      -2,
      -1,
      0,
      1,
      2,
      1
    ],
    "io_out": [
      -3,
      -6,
      -3,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [4, -2, -2, -4]\noutput : list = [-8, -16]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(drop([4, -2, -2, -4],2))),39),4)",
    "io_inp": [
      4,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(drop(input,2))),39),4)"
  },
  {
    "input": "input : list = [5, 1, 2, -5]\noutput : list = [-9, -5, -6, 1]",
    "output": "generated_output : list = sub_n(take(mul_n([5, 1, 2, -5],-1),20),4)",
    "io_inp": [
      5,
      1,
      2,
      -5
    ],
    "io_out": [
      -9,
      -5,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,-1),20),4)"
  },
  {
    "input": "input : list = [3, -1, 3, 2, -2]\noutput : list = [60, -20, 60, 40, -40]",
    "output": "generated_output : list = mul_n(mul_n([3, -1, 3, 2, -2],-5),-4)",
    "io_inp": [
      3,
      -1,
      3,
      2,
      -2
    ],
    "io_out": [
      60,
      -20,
      60,
      40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-4)"
  },
  {
    "input": "input : list = [-4, -1, -2, -4, 3, -3]\noutput : list = [-15, -15, -14, -13, -12, -8]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n([-4, -1, -2, -4, 3, -3],2)),5),4)",
    "io_inp": [
      -4,
      -1,
      -2,
      -4,
      3,
      -3
    ],
    "io_out": [
      -15,
      -15,
      -14,
      -13,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(input,2)),5),4)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-5, -14, -14]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([0, -3, -3],3),3),2)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,3),3),2)"
  },
  {
    "input": "input : list = [-3, 5, -2, -5, 3, 0]\noutput : list = [-5, 3, -4, -7, 1, -2]",
    "output": "generated_output : list = take(sub_n([-3, 5, -2, -5, 3, 0],2),28)",
    "io_inp": [
      -3,
      5,
      -2,
      -5,
      3,
      0
    ],
    "io_out": [
      -5,
      3,
      -4,
      -7,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,2),28)"
  },
  {
    "input": "input : list = [5, -3, 0, 0, -3]\noutput : list = [74]",
    "output": "generated_output : list = sub_n(mul_n(drop(mul_n(take([5, -3, 0, 0, -3],2),5),1),-5),1)",
    "io_inp": [
      5,
      -3,
      0,
      0,
      -3
    ],
    "io_out": [
      74
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(mul_n(take(input,2),5),1),-5),1)"
  },
  {
    "input": "input : list = [-2, 2, -1, -2, -3, 3]\noutput : list = [-12, -10, -10, -8, -2, 0]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(sub_n([-2, 2, -1, -2, -3, 3],3)),20)),2)",
    "io_inp": [
      -2,
      2,
      -1,
      -2,
      -3,
      3
    ],
    "io_out": [
      -12,
      -10,
      -10,
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(sub_n(input,3)),20)),2)"
  },
  {
    "input": "input : list = [-3, -5, -2, -2, -2, -2]\noutput : list = [-64, -80, -56, -56, -56, -56]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n([-3, -5, -2, -2, -2, -2],-4),4),2),-2),2)",
    "io_inp": [
      -3,
      -5,
      -2,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -64,
      -80,
      -56,
      -56,
      -56,
      -56
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n(input,-4),4),2),-2),2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(sort_asc([-3, -5]),-5),-5)))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(sort_asc(input),-5),-5)))"
  },
  {
    "input": "input : list = [-5, 0, 4, 4]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(drop([-5, 0, 4, 4],2),12),-5),3))",
    "io_inp": [
      -5,
      0,
      4,
      4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(drop(input,2),12),-5),3))"
  },
  {
    "input": "input : list = [5, -1, -2]\noutput : list = [-2, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -2])",
    "io_inp": [
      5,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([-5, -3, 0])))",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 0, -2, 0, 0]\noutput : list = [-5, -5, -5, -6, -7]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(sort_des([-1, 0, -2, 0, 0])),5)),17)",
    "io_inp": [
      -1,
      0,
      -2,
      0,
      0
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(sort_des(input)),5)),17)"
  },
  {
    "input": "input : list = [4, 0, -3, 3]\noutput : list = [-18, -14, -2, 10]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(sort_asc([4, 0, -3, 3])),-4),-2))",
    "io_inp": [
      4,
      0,
      -3,
      3
    ],
    "io_out": [
      -18,
      -14,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(sort_asc(input)),-4),-2))"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = sort_asc([3, 0, 1])",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 4, 4, 4]\noutput : list = [4, 4, 4]",
    "output": "generated_output : list = sort_asc(take(take(reverse(drop([-5, 4, 4, 4],1)),14),7))",
    "io_inp": [
      -5,
      4,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(drop(input,1)),14),7))"
  },
  {
    "input": "input : list = [1, 3, 0, 3, 2, -5]\noutput : list = [35, 5, -1, -7, -13, -13]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(mul_n([1, 3, 0, 3, 2, -5],-3),2)),5))",
    "io_inp": [
      1,
      3,
      0,
      3,
      2,
      -5
    ],
    "io_out": [
      35,
      5,
      -1,
      -7,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(mul_n(input,-3),2)),5))"
  },
  {
    "input": "input : list = [0, -5, 3, 3, 5, 3]\noutput : list = [-6, -1, 2, 2, 2, 4]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(sort_des([0, -5, 3, 3, 5, 3]),-3),12)),4)",
    "io_inp": [
      0,
      -5,
      3,
      3,
      5,
      3
    ],
    "io_out": [
      -6,
      -1,
      2,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(sort_des(input),-3),12)),4)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n([-3, 0],-1)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, 0, 2]\noutput : list = [-2, 8, 18]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sort_asc([4, 0, 2])),5)),-2)",
    "io_inp": [
      4,
      0,
      2
    ],
    "io_out": [
      -2,
      8,
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sort_asc(input)),5)),-2)"
  },
  {
    "input": "input : list = [3, -3, -3, 5]\noutput : list = [3, -3]",
    "output": "generated_output : list = take([3, -3, -3, 5],2)",
    "io_inp": [
      3,
      -3,
      -3,
      5
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(sort_asc([1, 0]),3))),27)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(sort_asc(input),3))),27)"
  },
  {
    "input": "input : list = [-5, -2, 4, -2]\noutput : list = [5, -1, -1, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(sort_asc([-5, -2, 4, -2]),4)),-2),5)",
    "io_inp": [
      -5,
      -2,
      4,
      -2
    ],
    "io_out": [
      5,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(sort_asc(input),4)),-2),5)"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [-10, 22, 14]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(mul_n([0, 4, 3],4),2),-1),-4),-5)",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      -10,
      22,
      14
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(mul_n(input,4),2),-1),-4),-5)"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [-25, 0, 15]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(sort_des([5, -3, 0]))),5),-1)",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      -25,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(sort_des(input))),5),-1)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [32, 24, 8]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(sort_des([3, 4, 1]),4),2)),42)",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      32,
      24,
      8
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(sort_des(input),4),2)),42)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-149, 1, -374]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(mul_n([-5, 0, -2],-5),5),-3),1))",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -149,
      1,
      -374
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(mul_n(input,-5),5),-3),1))"
  },
  {
    "input": "input : list = [3, 4, -1]\noutput : list = [-26, -6, -1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(add_n([3, 4, -1],-5),5),-1),3))",
    "io_inp": [
      3,
      4,
      -1
    ],
    "io_out": [
      -26,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(add_n(input,-5),5),-1),3))"
  },
  {
    "input": "input : list = [-1, 0, 2, -4, 2]\noutput : list = [1, 4, 5, 7, 7]",
    "output": "generated_output : list = add_n(take(sort_asc([-1, 0, 2, -4, 2]),22),5)",
    "io_inp": [
      -1,
      0,
      2,
      -4,
      2
    ],
    "io_out": [
      1,
      4,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),22),5)"
  },
  {
    "input": "input : list = [-1, 3, 5, 2, -1]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(reverse(take([-1, 3, 5, 2, -1],1)))",
    "io_inp": [
      -1,
      3,
      5,
      2,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [-4, 1, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des([1, 3, -4])),17)",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),17)"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [4, -1, -6]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(sort_asc([5, 0, -5]),1)),12))",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      4,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(sort_asc(input),1)),12))"
  },
  {
    "input": "input : list = [4, 0, 3, -1]\noutput : list = [8, 7, 4, 3]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(sort_asc([4, 0, 3, -1]),3),1),31))",
    "io_inp": [
      4,
      0,
      3,
      -1
    ],
    "io_out": [
      8,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(sort_asc(input),3),1),31))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [8, -4]",
    "output": "generated_output : list = sort_des(mul_n(add_n([2, -1],-1),-4))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,-1),-4))"
  },
  {
    "input": "input : list = [5, -2, -4, -2, 1]\noutput : list = [4, 0, -3, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(sub_n([5, -2, -4, -2, 1],-1),-2))",
    "io_inp": [
      5,
      -2,
      -4,
      -2,
      1
    ],
    "io_out": [
      4,
      0,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,-1),-2))"
  },
  {
    "input": "input : list = [0, -4, -4, 5]\noutput : list = [0, 80]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(take([0, -4, -4, 5],2)),5),11),-4)",
    "io_inp": [
      0,
      -4,
      -4,
      5
    ],
    "io_out": [
      0,
      80
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(take(input,2)),5),11),-4)"
  },
  {
    "input": "input : list = [-5, 5, 1, 3, 3]\noutput : list = [5, 3, 3, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-5, 5, 1, 3, 3]))",
    "io_inp": [
      -5,
      5,
      1,
      3,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 2, 1, 3, -1, -5]\noutput : list = [6, 4, 4, 2, -2, -10]",
    "output": "generated_output : list = mul_n(sort_des([2, 2, 1, 3, -1, -5]),2)",
    "io_inp": [
      2,
      2,
      1,
      3,
      -1,
      -5
    ],
    "io_out": [
      6,
      4,
      4,
      2,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-4, 2, 2, 1, -3]\noutput : list = [1, 7, 7, 6, 2]",
    "output": "generated_output : list = add_n([-4, 2, 2, 1, -3],5)",
    "io_inp": [
      -4,
      2,
      2,
      1,
      -3
    ],
    "io_out": [
      1,
      7,
      7,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(take([1, -2, 1],1),7))),5)",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(take(input,1),7))),5)"
  },
  {
    "input": "input : list = [-4, 0, 3, 3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(add_n(drop(reverse(sub_n([-4, 0, 3, 3],-3)),2),-2))",
    "io_inp": [
      -4,
      0,
      3,
      3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(reverse(sub_n(input,-3)),2),-2))"
  },
  {
    "input": "input : list = [1, 3, -2, -4, -3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(add_n(add_n(take([1, 3, -2, -4, -3],1),5),2),-3)",
    "io_inp": [
      1,
      3,
      -2,
      -4,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(input,1),5),2),-3)"
  },
  {
    "input": "input : list = [3, 3, -2, -1, 3, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(take([3, 3, -2, -1, 3, 0],2),3))))",
    "io_inp": [
      3,
      3,
      -2,
      -1,
      3,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(take(input,2),3))))"
  },
  {
    "input": "input : list = [-4, -4, 2, 2]\noutput : list = [2, 2, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, 2, 2])",
    "io_inp": [
      -4,
      -4,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(reverse([-5, -1]))),-3),-1)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(reverse(input))),-3),-1)"
  },
  {
    "input": "input : list = [2, 0, -1]\noutput : list = [6, 0, -3]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(reverse([2, 0, -1])))),3)",
    "io_inp": [
      2,
      0,
      -1
    ],
    "io_out": [
      6,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(reverse(input)))),3)"
  },
  {
    "input": "input : list = [3, 1, 3, -4, -3, 5]\noutput : list = [-5, -15, -15, -25]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(sort_des([3, 1, 3, -4, -3, 5]),4),-5)))",
    "io_inp": [
      3,
      1,
      3,
      -4,
      -3,
      5
    ],
    "io_out": [
      -5,
      -15,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(sort_des(input),4),-5)))"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = mul_n([2, 1, 1],2)",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, -5, -4, 4]\noutput : list = [600, -600, -600, -750]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(mul_n([-4, -5, -4, 4],2),5)),-3),-5)",
    "io_inp": [
      -4,
      -5,
      -4,
      4
    ],
    "io_out": [
      600,
      -600,
      -600,
      -750
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(mul_n(input,2),5)),-3),-5)"
  },
  {
    "input": "input : list = [2, -2, 4, -4, -1, 2]\noutput : list = [-8, 0, 0, 12, 16, 24]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_asc([2, -2, 4, -4, -1, 2]),2),-4)),32)",
    "io_inp": [
      2,
      -2,
      4,
      -4,
      -1,
      2
    ],
    "io_out": [
      -8,
      0,
      0,
      12,
      16,
      24
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_asc(input),2),-4)),32)"
  },
  {
    "input": "input : list = [2, -5, -1, 0]\noutput : list = [-4, 10, 2, 0]",
    "output": "generated_output : list = mul_n([2, -5, -1, 0],-2)",
    "io_inp": [
      2,
      -5,
      -1,
      0
    ],
    "io_out": [
      -4,
      10,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 5, -4, 4]\noutput : list = [8, 11]",
    "output": "generated_output : list = sub_n(mul_n(take([4, 5, -4, 4],2),3),4)",
    "io_inp": [
      4,
      5,
      -4,
      4
    ],
    "io_out": [
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,2),3),4)"
  },
  {
    "input": "input : list = [-3, 0, 3, -2]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take([-3, 0, 3, -2],1),-4)",
    "io_inp": [
      -3,
      0,
      3,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-3, 2, -4, 4]\noutput : list = [-6, -1, -7, 1]",
    "output": "generated_output : list = sub_n([-3, 2, -4, 4],3)",
    "io_inp": [
      -3,
      2,
      -4,
      4
    ],
    "io_out": [
      -6,
      -1,
      -7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, 3, -4, 4, 5, -1]\noutput : list = [2, 0, -2, -10, -14, -16]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(add_n([-3, 3, -4, 4, 5, -1],-5)),1),2),22)",
    "io_inp": [
      -3,
      3,
      -4,
      4,
      5,
      -1
    ],
    "io_out": [
      2,
      0,
      -2,
      -10,
      -14,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(add_n(input,-5)),1),2),22)"
  },
  {
    "input": "input : list = [-1, 0, 0, -5]\noutput : list = [-4, -4, 0, 16]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(mul_n([-1, 0, 0, -5],-4)))),-4)",
    "io_inp": [
      -1,
      0,
      0,
      -5
    ],
    "io_out": [
      -4,
      -4,
      0,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(mul_n(input,-4)))),-4)"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [-15, -35]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(drop([2, 1, -4],1),-5),4),-1))",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      -15,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(drop(input,1),-5),4),-1))"
  },
  {
    "input": "input : list = [4, 2, -5, 2, 0]\noutput : list = [-5, 0, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(take(take(sub_n([4, 2, -5, 2, 0],4),7),6),-4))",
    "io_inp": [
      4,
      2,
      -5,
      2,
      0
    ],
    "io_out": [
      -5,
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(sub_n(input,4),7),6),-4))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des([-1, 0])",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 2, 2]\noutput : list = [2, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(drop([1, 5, 2, 2],1),4),-3),4))",
    "io_inp": [
      1,
      5,
      2,
      2
    ],
    "io_out": [
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(drop(input,1),4),-3),4))"
  },
  {
    "input": "input : list = [0, 2, -4, 1]\noutput : list = [-12, -4, 4, 36]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(mul_n([0, 2, -4, 1],2)),-4)),4)",
    "io_inp": [
      0,
      2,
      -4,
      1
    ],
    "io_out": [
      -12,
      -4,
      4,
      36
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(mul_n(input,2)),-4)),4)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-10, -10]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(sort_asc([-3, -3])),5),2))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(sort_asc(input)),5),2))"
  },
  {
    "input": "input : list = [-4, -3, 5, 2]\noutput : list = [-27, -19, 45, 21]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(mul_n([-4, -3, 5, 2],2),-4),-1),5),6)",
    "io_inp": [
      -4,
      -3,
      5,
      2
    ],
    "io_out": [
      -27,
      -19,
      45,
      21
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(mul_n(input,2),-4),-1),5),6)"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [2, -3, -3]",
    "output": "generated_output : list = mul_n(sort_des(reverse([2, -3, -3])),1)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n([-1, -5],-5)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(take([-2, -5, 0],1),-1)",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [-4, 1, -2, -1, 4]\noutput : list = [-1, -4, -6, -7, -9]",
    "output": "generated_output : list = sub_n(sort_des([-4, 1, -2, -1, 4]),5)",
    "io_inp": [
      -4,
      1,
      -2,
      -1,
      4
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-5, 3, 3, 4, 4, 0]\noutput : list = [-28, 4, 4, 8, 8, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(sub_n([-5, 3, 3, 4, 4, 0],2),7))),4)",
    "io_inp": [
      -5,
      3,
      3,
      4,
      4,
      0
    ],
    "io_out": [
      -28,
      4,
      4,
      8,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(sub_n(input,2),7))),4)"
  },
  {
    "input": "input : list = [4, 4, 3, 2]\noutput : list = [2, 3, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, 3, 2])",
    "io_inp": [
      4,
      4,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(drop([4, 1, -5],1),13)))",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(drop(input,1),13)))"
  },
  {
    "input": "input : list = [-2, 2, 3, -4, 4, 5]\noutput : list = [-4, -2, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([-2, 2, 3, -4, 4, 5]))",
    "io_inp": [
      -2,
      2,
      3,
      -4,
      4,
      5
    ],
    "io_out": [
      -4,
      -2,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, -1, 4, -4, -4]\noutput : list = [1, -2, 3, -5, -5]",
    "output": "generated_output : list = sub_n([2, -1, 4, -4, -4],1)",
    "io_inp": [
      2,
      -1,
      4,
      -4,
      -4
    ],
    "io_out": [
      1,
      -2,
      3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 2, -1, 2, -3, -3]\noutput : list = [-15, -15, -7, 5, 5, 9]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(mul_n([3, 2, -1, 2, -3, -3],4)),-3),25))",
    "io_inp": [
      3,
      2,
      -1,
      2,
      -3,
      -3
    ],
    "io_out": [
      -15,
      -15,
      -7,
      5,
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(mul_n(input,4)),-3),25))"
  },
  {
    "input": "input : list = [-1, -4, 2, 2, 0, 4]\noutput : list = [0, -2, -2, -4, -5, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(add_n([-1, -4, 2, 2, 0, 4],-5))),1))",
    "io_inp": [
      -1,
      -4,
      2,
      2,
      0,
      4
    ],
    "io_out": [
      0,
      -2,
      -2,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(add_n(input,-5))),1))"
  },
  {
    "input": "input : list = [5, -1, 1, -3, 2]\noutput : list = [17, 9, 1, -3, -15]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(mul_n([5, -1, 1, -3, 2],-4),15)),-5))",
    "io_inp": [
      5,
      -1,
      1,
      -3,
      2
    ],
    "io_out": [
      17,
      9,
      1,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(mul_n(input,-4),15)),-5))"
  },
  {
    "input": "input : list = [5, -2, -4, -3]\noutput : list = [32, -3, -13, -8]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(mul_n([5, -2, -4, -3],5),-3),-5),4),5)",
    "io_inp": [
      5,
      -2,
      -4,
      -3
    ],
    "io_out": [
      32,
      -3,
      -13,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(mul_n(input,5),-3),-5),4),5)"
  },
  {
    "input": "input : list = [-2, 3, 5, -4, -5]\noutput : list = [-4, 1, 3, -6, -7]",
    "output": "generated_output : list = sub_n([-2, 3, 5, -4, -5],2)",
    "io_inp": [
      -2,
      3,
      5,
      -4,
      -5
    ],
    "io_out": [
      -4,
      1,
      3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 3, -4, 5, 2]\noutput : list = [-24, -16, -12, 12]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(drop([-4, 3, -4, 5, 2],1),1),-4))",
    "io_inp": [
      -4,
      3,
      -4,
      5,
      2
    ],
    "io_out": [
      -24,
      -16,
      -12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(drop(input,1),1),-4))"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [20, 16, -20]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(sort_asc([-4, 5, -5])),-4)),9)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      20,
      16,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(sort_asc(input)),-4)),9)"
  },
  {
    "input": "input : list = [3, -4, -3, 2]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(drop([3, -4, -3, 2],1),-2)),1),-2)",
    "io_inp": [
      3,
      -4,
      -3,
      2
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(drop(input,1),-2)),1),-2)"
  },
  {
    "input": "input : list = [1, 3, -5, -4, -5, 5]\noutput : list = [5, -5, -4, -5, 3, 1]",
    "output": "generated_output : list = reverse([1, 3, -5, -4, -5, 5])",
    "io_inp": [
      1,
      3,
      -5,
      -4,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      -4,
      -5,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, 0, -5, -5]\noutput : list = [5, 0, -3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse([-3, 5, 0, -5, -5]))",
    "io_inp": [
      -3,
      5,
      0,
      -5,
      -5
    ],
    "io_out": [
      5,
      0,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, 4, -2, 3]\noutput : list = [-30, -5, -35, -30]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n([3, 4, -2, 3],-3),15)),-5)",
    "io_inp": [
      3,
      4,
      -2,
      3
    ],
    "io_out": [
      -30,
      -5,
      -35,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(input,-3),15)),-5)"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(take([4, 0, -4],1)))),19)",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(take(input,1)))),19)"
  },
  {
    "input": "input : list = [1, 3, 4, 3, -4, -5]\noutput : list = [8, 6, 6, 2, -8, -10]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([1, 3, 4, 3, -4, -5])),2)",
    "io_inp": [
      1,
      3,
      4,
      3,
      -4,
      -5
    ],
    "io_out": [
      8,
      6,
      6,
      2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [4, 2, 2, 2]\noutput : list = [4, 2, 2, 2]",
    "output": "generated_output : list = sort_des(reverse([4, 2, 2, 2]))",
    "io_inp": [
      4,
      2,
      2,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -5, 1, 5, 0]\noutput : list = [5, 1, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(drop([0, -5, 1, 5, 0],1)))",
    "io_inp": [
      0,
      -5,
      1,
      5,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-5, 0, -4, 1, -2]\noutput : list = [-20, -12, 0]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des(drop([-5, 0, -4, 1, -2],2)),4),-4))",
    "io_inp": [
      -5,
      0,
      -4,
      1,
      -2
    ],
    "io_out": [
      -20,
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(drop(input,2)),4),-4))"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n([2, 5, 1],-1),1)))",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(input,-1),1)))"
  },
  {
    "input": "input : list = [-5, -4, -3, -3, 2]\noutput : list = [-2, -4, -6, -6, -16]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(mul_n([-5, -4, -3, -3, 2],1),-5),-1)),-2)",
    "io_inp": [
      -5,
      -4,
      -3,
      -3,
      2
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -6,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(mul_n(input,1),-5),-1)),-2)"
  },
  {
    "input": "input : list = [1, -3, -4, -2, 2]\noutput : list = [-4, -8, -9, -7, -3]",
    "output": "generated_output : list = sub_n(mul_n([1, -3, -4, -2, 2],1),5)",
    "io_inp": [
      1,
      -3,
      -4,
      -2,
      2
    ],
    "io_out": [
      -4,
      -8,
      -9,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = reverse([4, -3])",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 3, 4, 4, 2, -4]\noutput : list = [2, 2, 1, 0, -5, -6]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(add_n([-3, 3, 4, 4, 2, -4],-4)),-2)))",
    "io_inp": [
      -3,
      3,
      4,
      4,
      2,
      -4
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(add_n(input,-4)),-2)))"
  },
  {
    "input": "input : list = [5, -3, 2, 1, 5, -3]\noutput : list = [3, 4, -1, 7]",
    "output": "generated_output : list = reverse(take(take(add_n(add_n([5, -3, 2, 1, 5, -3],-1),3),4),6))",
    "io_inp": [
      5,
      -3,
      2,
      1,
      5,
      -3
    ],
    "io_out": [
      3,
      4,
      -1,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(add_n(input,-1),3),4),6))"
  },
  {
    "input": "input : list = [3, -4, 5, -5]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -4, 5, -5],1)",
    "io_inp": [
      3,
      -4,
      5,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -2, 2, -4, 3]\noutput : list = [-3, -1, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(take(take(add_n(sort_asc([5, -2, 2, -4, 3]),1),17),43))",
    "io_inp": [
      5,
      -2,
      2,
      -4,
      3
    ],
    "io_out": [
      -3,
      -1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(sort_asc(input),1),17),43))"
  },
  {
    "input": "input : list = [-4, 5, -2, 4]\noutput : list = [-8, -6, 0, 1]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(sort_asc([-4, 5, -2, 4])),-4)),22)",
    "io_inp": [
      -4,
      5,
      -2,
      4
    ],
    "io_out": [
      -8,
      -6,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(sort_asc(input)),-4)),22)"
  },
  {
    "input": "input : list = [-1, 2, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(take([-1, 2, -1, 0],1),-3)),-4))",
    "io_inp": [
      -1,
      2,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(take(input,1),-3)),-4))"
  },
  {
    "input": "input : list = [2, 1, -2, 5, -5, -3]\noutput : list = [1, -2, -3, -6, -7, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(mul_n([2, 1, -2, 5, -5, -3],1),20)),-4))",
    "io_inp": [
      2,
      1,
      -2,
      5,
      -5,
      -3
    ],
    "io_out": [
      1,
      -2,
      -3,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(mul_n(input,1),20)),-4))"
  },
  {
    "input": "input : list = [3, -2, -3, 4, 4]\noutput : list = [3, 3, 2]",
    "output": "generated_output : list = take(sort_des(sub_n([3, -2, -3, 4, 4],1)),3)",
    "io_inp": [
      3,
      -2,
      -3,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,1)),3)"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [6, 3, 8]",
    "output": "generated_output : list = sub_n([2, -1, 4],-4)",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      6,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 2, 5, 0, 5]\noutput : list = [25, 5, -5, -20, -20]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(mul_n([-4, 2, 5, 0, 5],-5)),5)))",
    "io_inp": [
      -4,
      2,
      5,
      0,
      5
    ],
    "io_out": [
      25,
      5,
      -5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(mul_n(input,-5)),5)))"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 1, 5],1)",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -5, 1, -2]\noutput : list = [24, 16, 4, -8]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(mul_n([3, -5, 1, -2],1),3),30),4))",
    "io_inp": [
      3,
      -5,
      1,
      -2
    ],
    "io_out": [
      24,
      16,
      4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(mul_n(input,1),3),30),4))"
  },
  {
    "input": "input : list = [-2, -4, -1, 4, 5]\noutput : list = [-6, -8, -5, 0, 1]",
    "output": "generated_output : list = sub_n([-2, -4, -1, 4, 5],4)",
    "io_inp": [
      -2,
      -4,
      -1,
      4,
      5
    ],
    "io_out": [
      -6,
      -8,
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [0, -3, 3, -1, -2, 1]\noutput : list = [-2, -4, -5, -6, -7, -8]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sort_des([0, -3, 3, -1, -2, 1]),5))))",
    "io_inp": [
      0,
      -3,
      3,
      -1,
      -2,
      1
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(mul_n([0, -4, -2],-2),-2),2),3))",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(mul_n(input,-2),-2),2),3))"
  },
  {
    "input": "input : list = [5, -5, -2, 3]\noutput : list = [13, 5, -15, -27]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sub_n([5, -5, -2, 3],3)),4)),5)",
    "io_inp": [
      5,
      -5,
      -2,
      3
    ],
    "io_out": [
      13,
      5,
      -15,
      -27
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sub_n(input,3)),4)),5)"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [5, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(reverse([5, -4, -2])))))",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [2, -2, 0, 3, -2, 2]\noutput : list = [2, 5, 0, 4]",
    "output": "generated_output : list = sub_n(drop([2, -2, 0, 3, -2, 2],2),-2)",
    "io_inp": [
      2,
      -2,
      0,
      3,
      -2,
      2
    ],
    "io_out": [
      2,
      5,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [5, -4, 4, 0, 0]\noutput : list = [-7, 1, -3, -3]",
    "output": "generated_output : list = add_n(drop([5, -4, 4, 0, 0],1),-3)",
    "io_inp": [
      5,
      -4,
      4,
      0,
      0
    ],
    "io_out": [
      -7,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [2, 1, -2, -2, -2]\noutput : list = [8, 4, -8, -8, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(take(mul_n([2, 1, -2, -2, -2],-2),20)),-2))",
    "io_inp": [
      2,
      1,
      -2,
      -2,
      -2
    ],
    "io_out": [
      8,
      4,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(take(mul_n(input,-2),20)),-2))"
  },
  {
    "input": "input : list = [-4, 2, -4]\noutput : list = [-7, -13, -13]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_asc([-4, 2, -4]),-4),2),3))",
    "io_inp": [
      -4,
      2,
      -4
    ],
    "io_out": [
      -7,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_asc(input),-4),2),3))"
  },
  {
    "input": "input : list = [-1, 3, 1, -1, -4]\noutput : list = [6, 4, 2, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n([-1, 3, 1, -1, -4],-2)),-4)),3)",
    "io_inp": [
      -1,
      3,
      1,
      -1,
      -4
    ],
    "io_out": [
      6,
      4,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n(input,-2)),-4)),3)"
  },
  {
    "input": "input : list = [2, 4, 3, 0, -1, 3]\noutput : list = [90, 50, 60, 90, 100, 80]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(sub_n([2, 4, 3, 0, -1, 3],-5)),-5),5),-2)",
    "io_inp": [
      2,
      4,
      3,
      0,
      -1,
      3
    ],
    "io_out": [
      90,
      50,
      60,
      90,
      100,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(sub_n(input,-5)),-5),5),-2)"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [8, -4, 8]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse([2, -4, 2]),11),-2),2)",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      8,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(input),11),-2),2)"
  },
  {
    "input": "input : list = [-5, 4, 4, 4, 1]\noutput : list = [84, -12, -60, -60, -60]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(mul_n([-5, 4, 4, 4, 1],4),2),-2),-2))",
    "io_inp": [
      -5,
      4,
      4,
      4,
      1
    ],
    "io_out": [
      84,
      -12,
      -60,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(mul_n(input,4),2),-2),-2))"
  },
  {
    "input": "input : list = [2, 4, 4, 3]\noutput : list = [4, 4, 3, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([2, 4, 4, 3])))",
    "io_inp": [
      2,
      4,
      4,
      3
    ],
    "io_out": [
      4,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, -3, -5, 1, -3, -4]\noutput : list = [-4, -2, 2, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(take([1, -3, -5, 1, -3, -4],4),-4)),5))",
    "io_inp": [
      1,
      -3,
      -5,
      1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(take(input,4),-4)),5))"
  },
  {
    "input": "input : list = [3, -2, -5, 4, -4, -5]\noutput : list = [-5, -4, 4, -5, -2]",
    "output": "generated_output : list = reverse(drop([3, -2, -5, 4, -4, -5],1))",
    "io_inp": [
      3,
      -2,
      -5,
      4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      4,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, -5, -4, -2]\noutput : list = [-20, -20, -15, -5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(add_n([-5, -5, -4, -2],1),5))))",
    "io_inp": [
      -5,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -20,
      -20,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(add_n(input,1),5))))"
  },
  {
    "input": "input : list = [-3, 0, -4, 1, -1, -1]\noutput : list = [-12, -10, -6, -6, -4, -2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_asc([-3, 0, -4, 1, -1, -1]),-2),-1),2),2)",
    "io_inp": [
      -3,
      0,
      -4,
      1,
      -1,
      -1
    ],
    "io_out": [
      -12,
      -10,
      -6,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_asc(input),-2),-1),2),2)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-15, 20]",
    "output": "generated_output : list = mul_n([-3, 4],5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, 2, 5, -2, 1]\noutput : list = [-17, 43, -97, -37, 23]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(mul_n([-1, 2, 5, -2, 1],4),1),-5),2))",
    "io_inp": [
      -1,
      2,
      5,
      -2,
      1
    ],
    "io_out": [
      -17,
      43,
      -97,
      -37,
      23
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(mul_n(input,4),1),-5),2))"
  },
  {
    "input": "input : list = [-5, 0, -4, -1, -4, 5]\noutput : list = [7, 2, 1, -2, -2, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse([-5, 0, -4, -1, -4, 5]))),2)",
    "io_inp": [
      -5,
      0,
      -4,
      -1,
      -4,
      5
    ],
    "io_out": [
      7,
      2,
      1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(input))),2)"
  },
  {
    "input": "input : list = [5, -5, 1, -1, -4]\noutput : list = [10, -10, 2, -2, -8]",
    "output": "generated_output : list = mul_n(add_n(sub_n([5, -5, 1, -1, -4],-3),-3),2)",
    "io_inp": [
      5,
      -5,
      1,
      -1,
      -4
    ],
    "io_out": [
      10,
      -10,
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,-3),-3),2)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [10, 7, -5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_asc([4, 3, -1])),3)),2)",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      10,
      7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_asc(input)),3)),2)"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-11, -8, -2]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_asc([-1, -3, -4]),3),2),1),1)",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -11,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_asc(input),3),2),1),1)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [8, 7]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(sub_n([5, 4],-5),-3),-4),-1),37)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(sub_n(input,-5),-3),-4),-1),37)"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [20]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(take([4, -1, -1],1)),5)),31)",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(take(input,1)),5)),31)"
  },
  {
    "input": "input : list = [-5, 5, -5]\noutput : list = [5, -5, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, 5, -5]))",
    "io_inp": [
      -5,
      5,
      -5
    ],
    "io_out": [
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, -2, 1, -3]\noutput : list = [1, -4, -1, -5]",
    "output": "generated_output : list = add_n([3, -2, 1, -3],-2)",
    "io_inp": [
      3,
      -2,
      1,
      -3
    ],
    "io_out": [
      1,
      -4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -3, 1, -2]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(take([-5, -3, 1, -2],1)),-3)))",
    "io_inp": [
      -5,
      -3,
      1,
      -2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(take(input,1)),-3)))"
  },
  {
    "input": "input : list = [-3, -3, 0]\noutput : list = [-7, -7, -4]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des([-3, -3, 0]),6)),4)",
    "io_inp": [
      -3,
      -3,
      0
    ],
    "io_out": [
      -7,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(input),6)),4)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [9, 8]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([3, 4],-4)),-1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-4)),-1)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [9, 4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(sub_n([-1, 4],-5)))),5)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(sub_n(input,-5)))),5)"
  },
  {
    "input": "input : list = [4, 5, 3, 2, 5]\noutput : list = [35, 25, 20, 35]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(drop([4, 5, 3, 2, 5],1),-1),-1),-3),-5)",
    "io_inp": [
      4,
      5,
      3,
      2,
      5
    ],
    "io_out": [
      35,
      25,
      20,
      35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(drop(input,1),-1),-1),-3),-5)"
  },
  {
    "input": "input : list = [4, -2, 4, 4, 1, -3]\noutput : list = [2, -4, 2, 2, -1, -5]",
    "output": "generated_output : list = take(sub_n(add_n([4, -2, 4, 4, 1, -3],3),5),15)",
    "io_inp": [
      4,
      -2,
      4,
      4,
      1,
      -3
    ],
    "io_out": [
      2,
      -4,
      2,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,3),5),15)"
  },
  {
    "input": "input : list = [2, 5, 3, 2]\noutput : list = [5, 4]",
    "output": "generated_output : list = take(sort_des(take(add_n(drop([2, 5, 3, 2],2),2),24)),29)",
    "io_inp": [
      2,
      5,
      3,
      2
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(drop(input,2),2),24)),29)"
  },
  {
    "input": "input : list = [-5, -5, 5, -3, 3, -3]\noutput : list = [-8, -8, 2, -6, 0, -6]",
    "output": "generated_output : list = add_n([-5, -5, 5, -3, 3, -3],-3)",
    "io_inp": [
      -5,
      -5,
      5,
      -3,
      3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      2,
      -6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -5, 0, -2]\noutput : list = [1, 0, -1, -4]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n([-1, -5, 0, -2],-1)),1),42)",
    "io_inp": [
      -1,
      -5,
      0,
      -2
    ],
    "io_out": [
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(input,-1)),1),42)"
  },
  {
    "input": "input : list = [2, 4, -1, 0, 2, 3]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n(drop([2, 4, -1, 0, 2, 3],4),-2)",
    "io_inp": [
      2,
      4,
      -1,
      0,
      2,
      3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,4),-2)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(reverse(add_n([2, 1],3)))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,3)))"
  },
  {
    "input": "input : list = [1, -5, -4, 3, -5, -5]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(take([1, -5, -4, 3, -5, -5],3)))))",
    "io_inp": [
      1,
      -5,
      -4,
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(take(input,3)))))"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [3, -2, -4]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(sort_des([-3, -5, 2]))),-1),-2)",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(sort_des(input))),-1),-2)"
  },
  {
    "input": "input : list = [-4, 1, 3, 0]\noutput : list = [-4, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([-4, 1, 3, 0])",
    "io_inp": [
      -4,
      1,
      3,
      0
    ],
    "io_out": [
      -4,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(reverse(reverse([5, 4])))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [6, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse([-5, 4])),2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 5, 3],1)",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 3, -3, -5, -1]\noutput : list = [-8, -12, 12, 20, 4]",
    "output": "generated_output : list = mul_n([2, 3, -3, -5, -1],-4)",
    "io_inp": [
      2,
      3,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -8,
      -12,
      12,
      20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 2, 2, -2, 0]\noutput : list = [4, -4, -12]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(drop([3, 2, 2, -2, 0],2),-4),3),-1))",
    "io_inp": [
      3,
      2,
      2,
      -2,
      0
    ],
    "io_out": [
      4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(drop(input,2),-4),3),-1))"
  },
  {
    "input": "input : list = [4, -3, 5, 1, -4, 4]\noutput : list = [-20, -16, -16, -4, 12, 16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(mul_n([4, -3, 5, 1, -4, 4],-1)))),4)",
    "io_inp": [
      4,
      -3,
      5,
      1,
      -4,
      4
    ],
    "io_out": [
      -20,
      -16,
      -16,
      -4,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(mul_n(input,-1)))),4)"
  },
  {
    "input": "input : list = [1, 3, 3, 3, 2, 0]\noutput : list = [3, 4, 5, 6, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_des([1, 3, 3, 3, 2, 0]),-2),-5)))",
    "io_inp": [
      1,
      3,
      3,
      3,
      2,
      0
    ],
    "io_out": [
      3,
      4,
      5,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_des(input),-2),-5)))"
  },
  {
    "input": "input : list = [-2, 4, 4, -4, 3]\noutput : list = [13, 13, 11, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(drop([-2, 4, 4, -4, 3],1),2))),5)",
    "io_inp": [
      -2,
      4,
      4,
      -4,
      3
    ],
    "io_out": [
      13,
      13,
      11,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(drop(input,1),2))),5)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse([-1, 0, 0])),-3)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [5, -1, 3, 2]\noutput : list = [5, 3, 2, -1]",
    "output": "generated_output : list = sort_des(reverse([5, -1, 3, 2]))",
    "io_inp": [
      5,
      -1,
      3,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-3, 1, 1, -5]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take([-3, 1, 1, -5],2)",
    "io_inp": [
      -3,
      1,
      1,
      -5
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [-10, -10, -20]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(sort_des([2, 2, 4]),-1)),5),11)",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      -10,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(sort_des(input),-1)),5),11)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [8, -13, 17]",
    "output": "generated_output : list = sub_n(mul_n([-2, 5, -5],-3),-2)",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      8,
      -13,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),-2)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [16, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse(add_n([-1, -4],-1))),3),-2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      16,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(add_n(input,-1))),3),-2)"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [-1, 3, -3]",
    "output": "generated_output : list = reverse(mul_n([3, -3, 1],-1))",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      -1,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-5, -2, 4]\noutput : list = [-5, -2, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des([-5, -2, 4])),20)",
    "io_inp": [
      -5,
      -2,
      4
    ],
    "io_out": [
      -5,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),20)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-4, 4]",
    "output": "generated_output : list = mul_n([-2, 2],2)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, 2, -2]\noutput : list = [1, 1, -3]",
    "output": "generated_output : list = sub_n(sort_des([2, 2, -2]),1)",
    "io_inp": [
      2,
      2,
      -2
    ],
    "io_out": [
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [-13, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(mul_n([0, 1, 5],-3),12))),2)",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      -13,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(mul_n(input,-3),12))),2)"
  },
  {
    "input": "input : list = [3, 4, 2, -3, 4, -5]\noutput : list = [8, 8, 6, 4, -6, -10]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(sort_asc([3, 4, 2, -3, 4, -5])),2)),54)",
    "io_inp": [
      3,
      4,
      2,
      -3,
      4,
      -5
    ],
    "io_out": [
      8,
      8,
      6,
      4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(sort_asc(input)),2)),54)"
  },
  {
    "input": "input : list = [-1, 4, 2, -3, -1, -2]\noutput : list = [39, 34, 29, 14]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(drop([-1, 4, 2, -3, -1, -2],2),4),-5),-4))",
    "io_inp": [
      -1,
      4,
      2,
      -3,
      -1,
      -2
    ],
    "io_out": [
      39,
      34,
      29,
      14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(drop(input,2),4),-5),-4))"
  },
  {
    "input": "input : list = [2, -1, -3, 2, 0]\noutput : list = [-4, -4, 0, 2, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([2, -1, -3, 2, 0]),-2))",
    "io_inp": [
      2,
      -1,
      -3,
      2,
      0
    ],
    "io_out": [
      -4,
      -4,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [0, 5, -3, -2, -5, 1]\noutput : list = [8, 4, 3, 1, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([0, 5, -3, -2, -5, 1])),-3)",
    "io_inp": [
      0,
      5,
      -3,
      -2,
      -5,
      1
    ],
    "io_out": [
      8,
      4,
      3,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [0, -5, 5, 0, -1, 2]\noutput : list = [-22, -6, -2, -2, 6, 18]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(mul_n([0, -5, 5, 0, -1, 2],4),2))),53)",
    "io_inp": [
      0,
      -5,
      5,
      0,
      -1,
      2
    ],
    "io_out": [
      -22,
      -6,
      -2,
      -2,
      6,
      18
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(mul_n(input,4),2))),53)"
  },
  {
    "input": "input : list = [-3, -5, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = drop([-3, -5, 3, 2],2)",
    "io_inp": [
      -3,
      -5,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-4, -5, -1]",
    "output": "generated_output : list = take(reverse([-1, -5, -4]),8)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),8)"
  },
  {
    "input": "input : list = [-5, -5, 5, -1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -5, 5, -1],1)",
    "io_inp": [
      -5,
      -5,
      5,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [-3, 6, 12]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc([-2, 1, -4])),-3)))",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      -3,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [-3, -4, -5, 5, 2, 2]\noutput : list = [-35, -35, -80, 70, 55, 40]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(mul_n([-3, -4, -5, 5, 2, 2],-3),-1),5),9))",
    "io_inp": [
      -3,
      -4,
      -5,
      5,
      2,
      2
    ],
    "io_out": [
      -35,
      -35,
      -80,
      70,
      55,
      40
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(mul_n(input,-3),-1),5),9))"
  },
  {
    "input": "input : list = [3, 4, -1, 3, 0, 5]\noutput : list = [2, 0, -6, -6, -8, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([3, 4, -1, 3, 0, 5],-2)))",
    "io_inp": [
      3,
      4,
      -1,
      3,
      0,
      5
    ],
    "io_out": [
      2,
      0,
      -6,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(reverse([-1, -5])))),1)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(reverse(input)))),1)"
  },
  {
    "input": "input : list = [-3, 2, 4, -4, 3, -4]\noutput : list = [-5, 2, -5, 3, 1, -4]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(sub_n([-3, 2, 4, -4, 3, -4],3),21)),2),4)",
    "io_inp": [
      -3,
      2,
      4,
      -4,
      3,
      -4
    ],
    "io_out": [
      -5,
      2,
      -5,
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(sub_n(input,3),21)),2),4)"
  },
  {
    "input": "input : list = [3, 5, -5, 5, -2, -1]\noutput : list = [1, 4, 5, 9, 11, 11]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(add_n([3, 5, -5, 5, -2, -1],2)),6),-1),-3)",
    "io_inp": [
      3,
      5,
      -5,
      5,
      -2,
      -1
    ],
    "io_out": [
      1,
      4,
      5,
      9,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(add_n(input,2)),6),-1),-3)"
  },
  {
    "input": "input : list = [-4, 3, 0, -2, 2, 2]\noutput : list = [-14, -5, 1, -11, -11]",
    "output": "generated_output : list = take(sub_n(take(mul_n(drop([-4, 3, 0, -2, 2, 2],1),-3),33),5),43)",
    "io_inp": [
      -4,
      3,
      0,
      -2,
      2,
      2
    ],
    "io_out": [
      -14,
      -5,
      1,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(drop(input,1),-3),33),5),43)"
  },
  {
    "input": "input : list = [1, 0, -1, 2, -3]\noutput : list = [-1, -2, -3, -4, -6]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(add_n([1, 0, -1, 2, -3],-3)))))",
    "io_inp": [
      1,
      0,
      -1,
      2,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [4, -1, -3, -1]\noutput : list = [10]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(take([4, -1, -3, -1],1)),-2),-4))",
    "io_inp": [
      4,
      -1,
      -3,
      -1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(take(input,1)),-2),-4))"
  },
  {
    "input": "input : list = [2, 3, 1, 2, -3]\noutput : list = [6, 5, 5, 4, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse([2, 3, 1, 2, -3]),-3))",
    "io_inp": [
      2,
      3,
      1,
      2,
      -3
    ],
    "io_out": [
      6,
      5,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(take(reverse([0, -2]),7))),15)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(reverse(input),7))),15)"
  },
  {
    "input": "input : list = [4, 1, -2, -4, -4]\noutput : list = [-3, -3, -1, 2, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(sort_des([4, 1, -2, -4, -4]),-1)),18))",
    "io_inp": [
      4,
      1,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(sort_des(input),-1)),18))"
  },
  {
    "input": "input : list = [5, -4, 5, 0, 5]\noutput : list = [-3, 1, 6, 6, 6]",
    "output": "generated_output : list = add_n(sort_asc([5, -4, 5, 0, 5]),1)",
    "io_inp": [
      5,
      -4,
      5,
      0,
      5
    ],
    "io_out": [
      -3,
      1,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [5, 0, 5, -1, 1, -5]\noutput : list = [10, 6, 5, 4, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(drop([5, 0, 5, -1, 1, -5],1),21)),-5))",
    "io_inp": [
      5,
      0,
      5,
      -1,
      1,
      -5
    ],
    "io_out": [
      10,
      6,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(drop(input,1),21)),-5))"
  },
  {
    "input": "input : list = [3, -1, 3, 0, -5]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(add_n(take(take(drop([3, -1, 3, 0, -5],1),22),1),-3),-2)",
    "io_inp": [
      3,
      -1,
      3,
      0,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(drop(input,1),22),1),-3),-2)"
  },
  {
    "input": "input : list = [1, 3, 3]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = sort_asc([1, 3, 3])",
    "io_inp": [
      1,
      3,
      3
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, 1, -4, -3]\noutput : list = [4, 3, 8, 10, 4]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(reverse([-3, 3, 1, -4, -3]),-3),-4)))",
    "io_inp": [
      -3,
      3,
      1,
      -4,
      -3
    ],
    "io_out": [
      4,
      3,
      8,
      10,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(reverse(input),-3),-4)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des([-4, -5])",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3, -5, 3]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(take([-1, 3, -5, 3],1))),-2),-1)",
    "io_inp": [
      -1,
      3,
      -5,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(take(input,1))),-2),-1)"
  },
  {
    "input": "input : list = [-5, -4, 5, 1]\noutput : list = [1, 5, -4, -5]",
    "output": "generated_output : list = reverse([-5, -4, 5, 1])",
    "io_inp": [
      -5,
      -4,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, -4, -5, -2]\noutput : list = [6, 8, 0, -1, 2]",
    "output": "generated_output : list = sub_n(sub_n([2, 4, -4, -5, -2],1),-5)",
    "io_inp": [
      2,
      4,
      -4,
      -5,
      -2
    ],
    "io_out": [
      6,
      8,
      0,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [8, -10]",
    "output": "generated_output : list = sub_n(mul_n([-5, 4],-2),2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),2)"
  },
  {
    "input": "input : list = [1, 2, 3, 1]\noutput : list = [1, 3, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, 3, 1])",
    "io_inp": [
      1,
      2,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -2, 3, -5]\noutput : list = [-30, -18, 2, 6, 10]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(add_n([4, 5, -2, 3, -5],-2),4),2)))",
    "io_inp": [
      4,
      5,
      -2,
      3,
      -5
    ],
    "io_out": [
      -30,
      -18,
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(add_n(input,-2),4),2)))"
  },
  {
    "input": "input : list = [-3, -1, -5, -2]\noutput : list = [7, 4, 8, 6]",
    "output": "generated_output : list = take(sub_n(take(add_n(reverse([-3, -1, -5, -2]),5),29),-4),19)",
    "io_inp": [
      -3,
      -1,
      -5,
      -2
    ],
    "io_out": [
      7,
      4,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(reverse(input),5),29),-4),19)"
  },
  {
    "input": "input : list = [1, -1, 3, 0, 1]\noutput : list = [-6, -8, -8, -9, -10]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(reverse([1, -1, 3, 0, 1])),-4),5))",
    "io_inp": [
      1,
      -1,
      3,
      0,
      1
    ],
    "io_out": [
      -6,
      -8,
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(reverse(input)),-4),5))"
  },
  {
    "input": "input : list = [4, 4, -2, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(take([4, 4, -2, -4],2))",
    "io_inp": [
      4,
      4,
      -2,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(sub_n([-1, 4],-3),9)),-3))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(sub_n(input,-3),9)),-3))"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [12, 6]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(drop([4, -4, -2],1)),-1),-1),-3)",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(drop(input,1)),-1),-1),-3)"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 0, 3],1)",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take(reverse([3, 4]),3))))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(reverse(input),3))))"
  },
  {
    "input": "input : list = [3, 1, -4, 5]\noutput : list = [-9, -14, -5]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(drop([3, 1, -4, 5],1),17),-2),-5),3)",
    "io_inp": [
      3,
      1,
      -4,
      5
    ],
    "io_out": [
      -9,
      -14,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(drop(input,1),17),-2),-5),3)"
  },
  {
    "input": "input : list = [-4, -5, 4, 1, 1]\noutput : list = [15, 12]",
    "output": "generated_output : list = mul_n(reverse(take([-4, -5, 4, 1, 1],2)),-3)",
    "io_inp": [
      -4,
      -5,
      4,
      1,
      1
    ],
    "io_out": [
      15,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,2)),-3)"
  },
  {
    "input": "input : list = [5, 1, 4, 0]\noutput : list = [13]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(take([5, 1, 4, 0],1),-1)),-5),-2)",
    "io_inp": [
      5,
      1,
      4,
      0
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(take(input,1),-1)),-5),-2)"
  },
  {
    "input": "input : list = [-1, -3, 1, 1, 5, 5]\noutput : list = [24, 24, 12, 12, 0, 6]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(reverse([-1, -3, 1, 1, 5, 5]),3),-5),-4),35)",
    "io_inp": [
      -1,
      -3,
      1,
      1,
      5,
      5
    ],
    "io_out": [
      24,
      24,
      12,
      12,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(reverse(input),3),-5),-4),35)"
  },
  {
    "input": "input : list = [0, 5, -4, 2, -3, -4]\noutput : list = [3, 4, 9, 3, 12, 7]",
    "output": "generated_output : list = reverse(add_n(sub_n([0, 5, -4, 2, -3, -4],-5),2))",
    "io_inp": [
      0,
      5,
      -4,
      2,
      -3,
      -4
    ],
    "io_out": [
      3,
      4,
      9,
      3,
      12,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-5),2))"
  },
  {
    "input": "input : list = [-1, 2, 2, 5, 0, 5]\noutput : list = [5, 8, 8, 11, 6, 11]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(add_n([-1, 2, 2, 5, 0, 5],5),17),5),-4),1)",
    "io_inp": [
      -1,
      2,
      2,
      5,
      0,
      5
    ],
    "io_out": [
      5,
      8,
      8,
      11,
      6,
      11
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(add_n(input,5),17),5),-4),1)"
  },
  {
    "input": "input : list = [-2, -5, -1, 4, 4, 1]\noutput : list = [-4, -16, -20, -28, -40, -40]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(add_n([-2, -5, -1, 4, 4, 1],4)),-2)),-4)",
    "io_inp": [
      -2,
      -5,
      -1,
      4,
      4,
      1
    ],
    "io_out": [
      -4,
      -16,
      -20,
      -28,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(add_n(input,4)),-2)),-4)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [14, 14]",
    "output": "generated_output : list = mul_n(sub_n([4, 4],-3),2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      14,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),2)"
  },
  {
    "input": "input : list = [5, 5, 5, -3, 4, -3]\noutput : list = [-96, -96, -96, -84, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(reverse([5, 5, 5, -3, 4, -3]),-3),4),-3))",
    "io_inp": [
      5,
      5,
      5,
      -3,
      4,
      -3
    ],
    "io_out": [
      -96,
      -96,
      -96,
      -84,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(reverse(input),-3),4),-3))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_des([-4, -1])))),21)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_des(input)))),21)"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [16]",
    "output": "generated_output : list = take(mul_n(take(sort_des(take([-4, 5, -5],1)),3),-4),40)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(take(input,1)),3),-4),40)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [1, 7]",
    "output": "generated_output : list = sub_n(sub_n(take(take(sub_n([-4, 2],3),13),2),-4),-4)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(sub_n(input,3),13),2),-4),-4)"
  },
  {
    "input": "input : list = [-4, -4, 3, 1]\noutput : list = [-13, -8, -6]",
    "output": "generated_output : list = sort_asc(drop(sub_n(sub_n(sub_n([-4, -4, 3, 1],3),1),5),1))",
    "io_inp": [
      -4,
      -4,
      3,
      1
    ],
    "io_out": [
      -13,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(sub_n(sub_n(input,3),1),5),1))"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = reverse(sort_des([1, -3, 5]))",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 2, -2, 4, 4, 5]\noutput : list = [2, 1, 1, -1, -5, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n([-2, 2, -2, 4, 4, 5],3)),36))",
    "io_inp": [
      -2,
      2,
      -2,
      4,
      4,
      5
    ],
    "io_out": [
      2,
      1,
      1,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(input,3)),36))"
  },
  {
    "input": "input : list = [4, 5, -1, 0]\noutput : list = [-5, -4, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_des([4, 5, -1, 0])),-4)))",
    "io_inp": [
      4,
      5,
      -1,
      0
    ],
    "io_out": [
      -5,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [1, 3, 1, 0, -2]\noutput : list = [12, 8, 6]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(drop([1, 3, 1, 0, -2],2),-4)),-2))",
    "io_inp": [
      1,
      3,
      1,
      0,
      -2
    ],
    "io_out": [
      12,
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(drop(input,2),-4)),-2))"
  },
  {
    "input": "input : list = [3, 3, -4, -3, -4, -3]\noutput : list = [2, 2, -26]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(take([3, 3, -4, -3, -4, -3],4),4),3),-5),5)",
    "io_inp": [
      3,
      3,
      -4,
      -3,
      -4,
      -3
    ],
    "io_out": [
      2,
      2,
      -26
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(take(input,4),4),3),-5),5)"
  },
  {
    "input": "input : list = [-3, -2, -5, 3, -3, 1]\noutput : list = [1, 2, -1, 7, 1, 5]",
    "output": "generated_output : list = sub_n([-3, -2, -5, 3, -3, 1],-4)",
    "io_inp": [
      -3,
      -2,
      -5,
      3,
      -3,
      1
    ],
    "io_out": [
      1,
      2,
      -1,
      7,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, -5, 3, 0, 4]\noutput : list = [-5, 0, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sub_n([3, -5, 3, 0, 4],-1)),-4),5))",
    "io_inp": [
      3,
      -5,
      3,
      0,
      4
    ],
    "io_out": [
      -5,
      0,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sub_n(input,-1)),-4),5))"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [-8, -12, -14]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(sub_n([4, -2, 0],5),-3),1)),-5)",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      -8,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(sub_n(input,5),-3),1)),-5)"
  },
  {
    "input": "input : list = [2, 5, 4, -5, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([2, 5, 4, -5, -3, -3],4)",
    "io_inp": [
      2,
      5,
      4,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-5, -4, 4, -2]\noutput : list = [8, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sub_n([-5, -4, 4, -2],1)),5)))",
    "io_inp": [
      -5,
      -4,
      4,
      -2
    ],
    "io_out": [
      8,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sub_n(input,1)),5)))"
  },
  {
    "input": "input : list = [2, -1, -5, 1, 5]\noutput : list = [4, 1, -3, 3, 7]",
    "output": "generated_output : list = take(take(sub_n(sub_n(add_n([2, -1, -5, 1, 5],4),5),-3),19),23)",
    "io_inp": [
      2,
      -1,
      -5,
      1,
      5
    ],
    "io_out": [
      4,
      1,
      -3,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(add_n(input,4),5),-3),19),23)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n([-3, -5],4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, -2, -3, 0, 0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(reverse(drop([-4, -2, -3, 0, 0, -3],4)))",
    "io_inp": [
      -4,
      -2,
      -3,
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,4)))"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [-6, -3, 15]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(reverse([-1, 5, -2])),11),3))",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      -6,
      -3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(reverse(input)),11),3))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sort_des([-3, 2]))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, 1, -1, -4, 4, 2]\noutput : list = [0, 3, 5, 6, 6, 8]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc([2, 1, -1, -4, 4, 2]),4)),40))",
    "io_inp": [
      2,
      1,
      -1,
      -4,
      4,
      2
    ],
    "io_out": [
      0,
      3,
      5,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc(input),4)),40))"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [5, 10, 5]",
    "output": "generated_output : list = add_n([0, 5, 0],5)",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      5,
      10,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 0, 3, 3]\noutput : list = [4, 4, 1, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n([0, 0, 3, 3],-3))),2))",
    "io_inp": [
      0,
      0,
      3,
      3
    ],
    "io_out": [
      4,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n(input,-3))),2))"
  },
  {
    "input": "input : list = [-2, 0, 2, 3, 5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(drop([-2, 0, 2, 3, 5, 5],4),-1)",
    "io_inp": [
      -2,
      0,
      2,
      3,
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),-1)"
  },
  {
    "input": "input : list = [5, -3, -1]\noutput : list = [-3, -1, 5]",
    "output": "generated_output : list = take(sort_asc([5, -3, -1]),11)",
    "io_inp": [
      5,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [12]",
    "output": "generated_output : list = take(mul_n([4, -5],3),1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),1)"
  },
  {
    "input": "input : list = [2, 3, 3, 2]\noutput : list = [10, 15]",
    "output": "generated_output : list = mul_n(take([2, 3, 3, 2],2),5)",
    "io_inp": [
      2,
      3,
      3,
      2
    ],
    "io_out": [
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),5)"
  },
  {
    "input": "input : list = [-3, 3, -5]\noutput : list = [-30, 10, -20]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n([-3, 3, -5],5),5)),19)",
    "io_inp": [
      -3,
      3,
      -5
    ],
    "io_out": [
      -30,
      10,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(input,5),5)),19)"
  },
  {
    "input": "input : list = [1, -3, 1]\noutput : list = [-8, -4, -4]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des([1, -3, 1]),1),5))",
    "io_inp": [
      1,
      -3,
      1
    ],
    "io_out": [
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(input),1),5))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_des(reverse([2, -2])),4),-2))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_des(reverse(input)),4),-2))"
  },
  {
    "input": "input : list = [-1, -3, -5, -4, -2]\noutput : list = [-5, -4, -3, -2, -1]",
    "output": "generated_output : list = sort_asc([-1, -3, -5, -4, -2])",
    "io_inp": [
      -1,
      -3,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4, 5, -2]\noutput : list = [40, 16, -16, -32]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(reverse([2, -4, 5, -2]),2))),4)",
    "io_inp": [
      2,
      -4,
      5,
      -2
    ],
    "io_out": [
      40,
      16,
      -16,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(reverse(input),2))),4)"
  },
  {
    "input": "input : list = [-1, -2, -1, 1, -5, -4]\noutput : list = [-4, -3, -1, 0, 0, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(add_n([-1, -2, -1, 1, -5, -4],1)))),47)",
    "io_inp": [
      -1,
      -2,
      -1,
      1,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(add_n(input,1)))),47)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-20, -12]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(sort_asc([-3, -5]),4))))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -20,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [-2, 1, -3, 5, -1]\noutput : list = [5, 1, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(drop([-2, 1, -3, 5, -1],1)),25)))",
    "io_inp": [
      -2,
      1,
      -3,
      5,
      -1
    ],
    "io_out": [
      5,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(drop(input,1)),25)))"
  },
  {
    "input": "input : list = [3, 2, 3, 2, -4, 1]\noutput : list = [3, 3, 2, 2]",
    "output": "generated_output : list = sort_des(sort_asc(take([3, 2, 3, 2, -4, 1],4)))",
    "io_inp": [
      3,
      2,
      3,
      2,
      -4,
      1
    ],
    "io_out": [
      3,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,4)))"
  },
  {
    "input": "input : list = [1, -3, -1, -1, -2, 2]\noutput : list = [2, 1, -1, -1, -2, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(sort_des([1, -3, -1, -1, -2, 2]),1))))",
    "io_inp": [
      1,
      -3,
      -1,
      -1,
      -2,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-3, 0, -5, -4]\noutput : list = [-6, -9, -10, -11]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(sub_n([-3, 0, -5, -4],5)))),1)",
    "io_inp": [
      -3,
      0,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -9,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(sub_n(input,5)))),1)"
  },
  {
    "input": "input : list = [-1, 0, 5, 2, 0, -5]\noutput : list = [6, -6, -9, -9, -15, -24]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(reverse([-1, 0, 5, 2, 0, -5]),-3)),-3))",
    "io_inp": [
      -1,
      0,
      5,
      2,
      0,
      -5
    ],
    "io_out": [
      6,
      -6,
      -9,
      -9,
      -15,
      -24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(reverse(input),-3)),-3))"
  },
  {
    "input": "input : list = [1, 4, 0, 3, -2]\noutput : list = [-3, -12, 0]",
    "output": "generated_output : list = take(take(mul_n([1, 4, 0, 3, -2],-3),6),3)",
    "io_inp": [
      1,
      4,
      0,
      3,
      -2
    ],
    "io_out": [
      -3,
      -12,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-3),6),3)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = sort_des([-2, -1, 3])",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, -2, 4, 5]\noutput : list = [-2, -1, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([0, -1, -2, 4, 5])))",
    "io_inp": [
      0,
      -1,
      -2,
      4,
      5
    ],
    "io_out": [
      -2,
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [0, -3, -9]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([-3, -2, 0]),-3),-3)",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),-3),-3)"
  },
  {
    "input": "input : list = [1, 5, 0, 5]\noutput : list = [0, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(sort_des([1, 5, 0, 5])),9)))",
    "io_inp": [
      1,
      5,
      0,
      5
    ],
    "io_out": [
      0,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(sort_des(input)),9)))"
  },
  {
    "input": "input : list = [-3, 4, 0, -1, 2]\noutput : list = [-3, -1, 0, 2, 4]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(add_n([-3, 4, 0, -1, 2],2)),1)),2)",
    "io_inp": [
      -3,
      4,
      0,
      -1,
      2
    ],
    "io_out": [
      -3,
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(add_n(input,2)),1)),2)"
  },
  {
    "input": "input : list = [-1, 3, -4, -1]\noutput : list = [-2, -8, 6, -2]",
    "output": "generated_output : list = reverse(take(mul_n(reverse(reverse([-1, 3, -4, -1])),2),29))",
    "io_inp": [
      -1,
      3,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -8,
      6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(reverse(input)),2),29))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-6, -15]",
    "output": "generated_output : list = sort_des(take(take(mul_n(reverse([5, 2]),-3),10),3))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(reverse(input),-3),10),3))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des([2, -3])",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, 2, 0, -3, 2]\noutput : list = [8, -4, -12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(drop([3, 2, 2, 0, -3, 2],3)),1),-4)",
    "io_inp": [
      3,
      2,
      2,
      0,
      -3,
      2
    ],
    "io_out": [
      8,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(drop(input,3)),1),-4)"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [-18, -15, -12]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(add_n([0, 2, 1],4)),-3)),40)",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      -18,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(add_n(input,4)),-3)),40)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sort_asc([5, -1]))),17))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sort_asc(input))),17))"
  },
  {
    "input": "input : list = [-1, 1, 2, 3, 0]\noutput : list = [-11, -8, -5, -2, 1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(reverse([-1, 1, 2, 3, 0]),-3),-2),-4))",
    "io_inp": [
      -1,
      1,
      2,
      3,
      0
    ],
    "io_out": [
      -11,
      -8,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(reverse(input),-3),-2),-4))"
  },
  {
    "input": "input : list = [2, 2, 3]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(add_n([2, 2, 3],-2))),25),2)",
    "io_inp": [
      2,
      2,
      3
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(add_n(input,-2))),25),2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [7, 1]",
    "output": "generated_output : list = add_n([2, -4],5)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 2, 2, -3, 0]\noutput : list = [0, -3, 2, 2, -2]",
    "output": "generated_output : list = reverse([-2, 2, 2, -3, 0])",
    "io_inp": [
      -2,
      2,
      2,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, 2, -3]\noutput : list = [0, 25, 5, 5]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(add_n([-2, -2, 2, -3],3),5))))",
    "io_inp": [
      -2,
      -2,
      2,
      -3
    ],
    "io_out": [
      0,
      25,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(add_n(input,3),5))))"
  },
  {
    "input": "input : list = [-3, 4, 0, 4, 1, 5]\noutput : list = [-5, -11, -13, -19, -19, -21]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(mul_n([-3, 4, 0, 4, 1, 5],-2)),3),4),4)",
    "io_inp": [
      -3,
      4,
      0,
      4,
      1,
      5
    ],
    "io_out": [
      -5,
      -11,
      -13,
      -19,
      -19,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(mul_n(input,-2)),3),4),4)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-3, -8]",
    "output": "generated_output : list = sub_n(add_n(take(take(sort_des([1, -4]),2),19),-2),2)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(sort_des(input),2),19),-2),2)"
  },
  {
    "input": "input : list = [3, -2, -1, 1, 3, -5]\noutput : list = [-5, 3, 1, -1, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, -1, 1, 3, -5])",
    "io_inp": [
      3,
      -2,
      -1,
      1,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      1,
      -1,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-10, -4]",
    "output": "generated_output : list = mul_n([-5, -2],2)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(sort_asc([5, 5])))))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, -2, -1, -3, 4, 0]\noutput : list = [-6, -7, -6, -8, -1, -5]",
    "output": "generated_output : list = sub_n([-1, -2, -1, -3, 4, 0],5)",
    "io_inp": [
      -1,
      -2,
      -1,
      -3,
      4,
      0
    ],
    "io_out": [
      -6,
      -7,
      -6,
      -8,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 5, 4, 0, 1]\noutput : list = [0, 0, 3, 12, 15]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_des([5, 5, 4, 0, 1])),-5),-3))",
    "io_inp": [
      5,
      5,
      4,
      0,
      1
    ],
    "io_out": [
      0,
      0,
      3,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_des(input)),-5),-3))"
  },
  {
    "input": "input : list = [-4, -5, 5, 1]\noutput : list = [1, -3, -8, -9]",
    "output": "generated_output : list = take(sub_n(take(sort_des(reverse([-4, -5, 5, 1])),18),4),42)",
    "io_inp": [
      -4,
      -5,
      5,
      1
    ],
    "io_out": [
      1,
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(reverse(input)),18),4),42)"
  },
  {
    "input": "input : list = [-4, 3, -3, 4, 1]\noutput : list = [80, -60, 60, -80, -20]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(mul_n([-4, 3, -3, 4, 1],-1))),-4),-5)",
    "io_inp": [
      -4,
      3,
      -3,
      4,
      1
    ],
    "io_out": [
      80,
      -60,
      60,
      -80,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(mul_n(input,-1))),-4),-5)"
  },
  {
    "input": "input : list = [-2, 2, 2, 3, -5, 5]\noutput : list = [-4, 3, 3, 4, 6]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(drop([-2, 2, 2, 3, -5, 5],1),1),-2)),23)",
    "io_inp": [
      -2,
      2,
      2,
      3,
      -5,
      5
    ],
    "io_out": [
      -4,
      3,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(drop(input,1),1),-2)),23)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [8, 6]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n([4, 3],2)))))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [-4, -3, 3, 5, 2]\noutput : list = [-80, -48, -32, 48, 64]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des([-4, -3, 3, 5, 2]),4)),-4)",
    "io_inp": [
      -4,
      -3,
      3,
      5,
      2
    ],
    "io_out": [
      -80,
      -48,
      -32,
      48,
      64
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(input),4)),-4)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(take([-5, 5, 5],1),3)",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-1, 4, -2]\noutput : list = [10, 8, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sub_n([-1, 4, -2],3),-2))),46)",
    "io_inp": [
      -1,
      4,
      -2
    ],
    "io_out": [
      10,
      8,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sub_n(input,3),-2))),46)"
  },
  {
    "input": "input : list = [0, -2, 4, 5, -5, 0]\noutput : list = [5, 4, 0, 0, -2, -5]",
    "output": "generated_output : list = sort_des([0, -2, 4, 5, -5, 0])",
    "io_inp": [
      0,
      -2,
      4,
      5,
      -5,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [2, 0, 4]",
    "output": "generated_output : list = sub_n([-1, -3, 1],-3)",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 5, 1, -5, 5, -5]\noutput : list = [20, 20, 4, 4, -20, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([1, 5, 1, -5, 5, -5])),4)",
    "io_inp": [
      1,
      5,
      1,
      -5,
      5,
      -5
    ],
    "io_out": [
      20,
      20,
      4,
      4,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [5, 3, 4, -5, -5]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(take([5, 3, 4, -5, -5],3),4)),-5))",
    "io_inp": [
      5,
      3,
      4,
      -5,
      -5
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(take(input,3),4)),-5))"
  },
  {
    "input": "input : list = [4, -4, 0, -2, -2, -5]\noutput : list = [4, -4, 0]",
    "output": "generated_output : list = take([4, -4, 0, -2, -2, -5],3)",
    "io_inp": [
      4,
      -4,
      0,
      -2,
      -2,
      -5
    ],
    "io_out": [
      4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, -5, -4, -2, -4, -2]\noutput : list = [-7, -9, -7, -9, -10, -8]",
    "output": "generated_output : list = reverse(take(reverse(reverse(add_n([-3, -5, -4, -2, -4, -2],-5))),44))",
    "io_inp": [
      -3,
      -5,
      -4,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -9,
      -7,
      -9,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(add_n(input,-5))),44))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [15, -65]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n([-1, 4],-4),-1),-4),1))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      15,
      -65
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n(input,-4),-1),-4),1))"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [-25, -15, 20]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(reverse([4, -5, -3]))),5),23)",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      -25,
      -15,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(reverse(input))),5),23)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-10, -9]",
    "output": "generated_output : list = sort_asc(add_n([-4, -5],-5))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -10,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [-7, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(sort_asc([5, -2, 5]),2)),-3))",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      -7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(sort_asc(input),2)),-3))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-84, -96]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n([2, 3],5),3),-5),-5),-4)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -84,
      -96
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n(input,5),3),-5),-5),-4)"
  },
  {
    "input": "input : list = [-3, 5, -1]\noutput : list = [1, 7]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(drop([-3, 5, -1],1),-2))),42)",
    "io_inp": [
      -3,
      5,
      -1
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(drop(input,1),-2))),42)"
  },
  {
    "input": "input : list = [-2, 5, 0, 0, -3]\noutput : list = [-3, 0, 0, 5, -2]",
    "output": "generated_output : list = reverse([-2, 5, 0, 0, -3])",
    "io_inp": [
      -2,
      5,
      0,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      0,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des([-5, 3]))))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(sort_asc([5, 3]),-5),3)))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(sort_asc(input),-5),3)))"
  },
  {
    "input": "input : list = [5, -2, -5]\noutput : list = [5, -2, -5]",
    "output": "generated_output : list = reverse(reverse([5, -2, -5]))",
    "io_inp": [
      5,
      -2,
      -5
    ],
    "io_out": [
      5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [9, 9]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(sort_des([-4, -4]))),-3),-3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(sort_des(input))),-3),-3)"
  },
  {
    "input": "input : list = [1, -1, 0, 5, 1, 3]\noutput : list = [0, 1, 2, 2, 4, 6]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(reverse([1, -1, 0, 5, 1, 3])),-1),6))",
    "io_inp": [
      1,
      -1,
      0,
      5,
      1,
      3
    ],
    "io_out": [
      0,
      1,
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(reverse(input)),-1),6))"
  },
  {
    "input": "input : list = [5, -2, 2, 0]\noutput : list = [1, 5, 9]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(drop([5, -2, 2, 0],1)),2)),-5)",
    "io_inp": [
      5,
      -2,
      2,
      0
    ],
    "io_out": [
      1,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(drop(input,1)),2)),-5)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(sort_des([-4, -5]),12),1)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(sort_des(input),12),1)))"
  },
  {
    "input": "input : list = [-5, 3, -3, 3]\noutput : list = [-68, -38, 52, 52]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(mul_n([-5, 3, -3, 3],3)),-2),5),3)",
    "io_inp": [
      -5,
      3,
      -3,
      3
    ],
    "io_out": [
      -68,
      -38,
      52,
      52
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(mul_n(input,3)),-2),5),3)"
  },
  {
    "input": "input : list = [-1, -4, 5, 0]\noutput : list = [21, 9, 5, -15]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(mul_n([-1, -4, 5, 0],-4),-5),25)))",
    "io_inp": [
      -1,
      -4,
      5,
      0
    ],
    "io_out": [
      21,
      9,
      5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(mul_n(input,-4),-5),25)))"
  },
  {
    "input": "input : list = [-4, 2, -1, -2, 2]\noutput : list = [-3, 3, 0, -1, 3]",
    "output": "generated_output : list = sub_n([-4, 2, -1, -2, 2],-1)",
    "io_inp": [
      -4,
      2,
      -1,
      -2,
      2
    ],
    "io_out": [
      -3,
      3,
      0,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, -4, 3, 1, 3]\noutput : list = [3, 1, 3, -4, 5]",
    "output": "generated_output : list = take(reverse([5, -4, 3, 1, 3]),6)",
    "io_inp": [
      5,
      -4,
      3,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      3,
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [-5, -3, -4, -2, 3, -2]\noutput : list = [3, -2, -2, -3, -4, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(reverse(reverse([-5, -3, -4, -2, 3, -2])))),40)",
    "io_inp": [
      -5,
      -3,
      -4,
      -2,
      3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(reverse(reverse(input)))),40)"
  },
  {
    "input": "input : list = [2, -2, 5, -3, -5, -4]\noutput : list = [-6, -3, 0, 3, 15, 24]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(sub_n([2, -2, 5, -3, -5, -4],-3),3))))",
    "io_inp": [
      2,
      -2,
      5,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -3,
      0,
      3,
      15,
      24
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(sub_n(input,-3),3))))"
  },
  {
    "input": "input : list = [4, 4, -5, 4, 0, 1]\noutput : list = [4, 4, 4, 1, 0, -5]",
    "output": "generated_output : list = sort_des([4, 4, -5, 4, 0, 1])",
    "io_inp": [
      4,
      4,
      -5,
      4,
      0,
      1
    ],
    "io_out": [
      4,
      4,
      4,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-1, 4]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(reverse([2, -3]))),-2),4)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(reverse(input))),-2),4)"
  },
  {
    "input": "input : list = [-3, 0, -2, 3, 4]\noutput : list = [15, 0, 10, -15, -20]",
    "output": "generated_output : list = mul_n([-3, 0, -2, 3, 4],-5)",
    "io_inp": [
      -3,
      0,
      -2,
      3,
      4
    ],
    "io_out": [
      15,
      0,
      10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 0, 5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sort_des(take([-1, 0, 5],1)))",
    "io_inp": [
      -1,
      0,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-5, 3, -4, -1, -1, -4]\noutput : list = [18, 15, 15, 6, 6, -6]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n([-5, 3, -4, -1, -1, -4],-3),-3),16))",
    "io_inp": [
      -5,
      3,
      -4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      18,
      15,
      15,
      6,
      6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(input,-3),-3),16))"
  },
  {
    "input": "input : list = [3, 0, -4, 3, 4]\noutput : list = [9, 8, 5, 1]",
    "output": "generated_output : list = sub_n(sort_des(drop([3, 0, -4, 3, 4],1)),-5)",
    "io_inp": [
      3,
      0,
      -4,
      3,
      4
    ],
    "io_out": [
      9,
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),-5)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [0, -9]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(add_n([-4, 5],2)),-4),-5),2)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(add_n(input,2)),-4),-5),2)"
  },
  {
    "input": "input : list = [-4, -1, 0, 3, 1, 2]\noutput : list = [-4]",
    "output": "generated_output : list = take(take([-4, -1, 0, 3, 1, 2],1),10)",
    "io_inp": [
      -4,
      -1,
      0,
      3,
      1,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,1),10)"
  },
  {
    "input": "input : list = [-1, -3, -2, 0, 5]\noutput : list = [2, 1, 0, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(add_n([-1, -3, -2, 0, 5],2),4)),28))",
    "io_inp": [
      -1,
      -3,
      -2,
      0,
      5
    ],
    "io_out": [
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(add_n(input,2),4)),28))"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [-4, -6, -6]",
    "output": "generated_output : list = reverse(take(sort_asc(add_n([-1, -3, -3],-3)),8))",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(add_n(input,-3)),8))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [40, 5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sort_asc([2, -5]),-3))),-5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      40,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sort_asc(input),-3))),-5)"
  },
  {
    "input": "input : list = [-2, 0, -4, -5, -2, 5]\noutput : list = [24, 4, -4, -4, -12, -16]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(sort_asc([-2, 0, -4, -5, -2, 5])),-1),4),18)",
    "io_inp": [
      -2,
      0,
      -4,
      -5,
      -2,
      5
    ],
    "io_out": [
      24,
      4,
      -4,
      -4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(sort_asc(input)),-1),4),18)"
  },
  {
    "input": "input : list = [-2, -5, 3, -3]\noutput : list = [-5, 13, -11, -2]",
    "output": "generated_output : list = add_n(mul_n(take(take(reverse([-2, -5, 3, -3]),18),12),3),4)",
    "io_inp": [
      -2,
      -5,
      3,
      -3
    ],
    "io_out": [
      -5,
      13,
      -11,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(reverse(input),18),12),3),4)"
  },
  {
    "input": "input : list = [-5, -2, 3, 4, -2]\noutput : list = [8, 7, 2, 2, -1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sort_des([-5, -2, 3, 4, -2]),-4))))",
    "io_inp": [
      -5,
      -2,
      3,
      4,
      -2
    ],
    "io_out": [
      8,
      7,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [2, -2, -4, 1]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(mul_n(take([2, -2, -4, 1],1),-3),-4)",
    "io_inp": [
      2,
      -2,
      -4,
      1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,1),-3),-4)"
  },
  {
    "input": "input : list = [5, -5, 4, 4, -3]\noutput : list = [5, 4, 4, -3, -5]",
    "output": "generated_output : list = sort_des([5, -5, 4, 4, -3])",
    "io_inp": [
      5,
      -5,
      4,
      4,
      -3
    ],
    "io_out": [
      5,
      4,
      4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1, -2, 0, -4, 2]\noutput : list = [-9, -5, -6]",
    "output": "generated_output : list = add_n(sub_n(add_n(take([-5, -1, -2, 0, -4, 2],3),2),4),-2)",
    "io_inp": [
      -5,
      -1,
      -2,
      0,
      -4,
      2
    ],
    "io_out": [
      -9,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(input,3),2),4),-2)"
  },
  {
    "input": "input : list = [-4, 5, 2, 5, 4]\noutput : list = [-1, -1, 0, 2, 8]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(reverse([-4, 5, 2, 5, 4])),-4),37),-1)",
    "io_inp": [
      -4,
      5,
      2,
      5,
      4
    ],
    "io_out": [
      -1,
      -1,
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(reverse(input)),-4),37),-1)"
  },
  {
    "input": "input : list = [-3, 5, -5, -5, 3]\noutput : list = [11, -29, 21, 21, -19]",
    "output": "generated_output : list = add_n(mul_n([-3, 5, -5, -5, 3],-5),-4)",
    "io_inp": [
      -3,
      5,
      -5,
      -5,
      3
    ],
    "io_out": [
      11,
      -29,
      21,
      21,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-4)"
  },
  {
    "input": "input : list = [2, 1, 3, 0]\noutput : list = [3, 2, 1, 0]",
    "output": "generated_output : list = sort_des([2, 1, 3, 0])",
    "io_inp": [
      2,
      1,
      3,
      0
    ],
    "io_out": [
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 2]\noutput : list = [-5, -5, -3]",
    "output": "generated_output : list = take(sort_asc(take(sub_n([0, 0, 2],5),14)),19)",
    "io_inp": [
      0,
      0,
      2
    ],
    "io_out": [
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(input,5),14)),19)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(sub_n([-2, -5],-2))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [2, 2, -4, -2]\noutput : list = [0, -6]",
    "output": "generated_output : list = mul_n(take(drop(add_n(sub_n([2, 2, -4, -2],-2),2),2),20),-3)",
    "io_inp": [
      2,
      2,
      -4,
      -2
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(add_n(sub_n(input,-2),2),2),20),-3)"
  },
  {
    "input": "input : list = [4, -2, -2, 0, -1, -1]\noutput : list = [-2, -2, 4]",
    "output": "generated_output : list = reverse(take(take(mul_n(take([4, -2, -2, 0, -1, -1],4),1),6),3))",
    "io_inp": [
      4,
      -2,
      -2,
      0,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(take(input,4),1),6),3))"
  },
  {
    "input": "input : list = [-5, -4, 3, -1, -4, 2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take([-5, -4, 3, -1, -4, 2],2)",
    "io_inp": [
      -5,
      -4,
      3,
      -1,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(reverse([-2, -3]),4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, 5, -4, -5]\noutput : list = [-1, 20, -7, -10]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n(mul_n([-2, 5, -4, -5],3),5),5),4),-1)",
    "io_inp": [
      -2,
      5,
      -4,
      -5
    ],
    "io_out": [
      -1,
      20,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(mul_n(input,3),5),5),4),-1)"
  },
  {
    "input": "input : list = [-4, -2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = drop([-4, -2, -4],1)",
    "io_inp": [
      -4,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -1, 4, 4, -5]\noutput : list = [-5, -1, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse([3, -1, 4, 4, -5]))",
    "io_inp": [
      3,
      -1,
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-5, 1, 1, -2]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = drop([-5, 1, 1, -2],1)",
    "io_inp": [
      -5,
      1,
      1,
      -2
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 1, 3, 3, -4, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take(drop(reverse(add_n(drop([3, 1, 3, 3, -4, -2],3),2)),1),30)",
    "io_inp": [
      3,
      1,
      3,
      3,
      -4,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(drop(reverse(add_n(drop(input,3),2)),1),30)"
  },
  {
    "input": "input : list = [5, 3, -5, -1]\noutput : list = [5]",
    "output": "generated_output : list = take(take(take([5, 3, -5, -1],1),11),16)",
    "io_inp": [
      5,
      3,
      -5,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(take(input,1),11),16)"
  },
  {
    "input": "input : list = [-4, 3, 2, 1, -3]\noutput : list = [30, 20, 10, -30, -40]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-4, 3, 2, 1, -3]),2),5)",
    "io_inp": [
      -4,
      3,
      2,
      1,
      -3
    ],
    "io_out": [
      30,
      20,
      10,
      -30,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),2),5)"
  },
  {
    "input": "input : list = [-5, -4, 1, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, -4, 1, -3],1))",
    "io_inp": [
      -5,
      -4,
      1,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [3, 0, -3, 1, 5]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(take([3, 0, -3, 1, 5],1))),5))",
    "io_inp": [
      3,
      0,
      -3,
      1,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(take(input,1))),5))"
  },
  {
    "input": "input : list = [1, -2, -5, -4]\noutput : list = [-4, -5, -2, 1]",
    "output": "generated_output : list = reverse([1, -2, -5, -4])",
    "io_inp": [
      1,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [0, 5, 9]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(add_n([0, 4, -5],5))),5))",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      0,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(add_n(input,5))),5))"
  },
  {
    "input": "input : list = [-2, -5, 4, 0]\noutput : list = [1, -3, -5, -8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(sort_des([-2, -5, 4, 0])),1)),-2)",
    "io_inp": [
      -2,
      -5,
      4,
      0
    ],
    "io_out": [
      1,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(sort_des(input)),1)),-2)"
  },
  {
    "input": "input : list = [3, 3, 1, -5, 5, 0]\noutput : list = [-6, -1, 0, 2, 2, 4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([3, 3, 1, -5, 5, 0])),1)",
    "io_inp": [
      3,
      3,
      1,
      -5,
      5,
      0
    ],
    "io_out": [
      -6,
      -1,
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [14, 10]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n([-1, 3],3)),-5),-5),-4)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      14,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n(input,3)),-5),-5),-4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [20, -16]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n([-5, 4],-4))))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      20,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [-3, -1, 4, 4, 2]\noutput : list = [0, 0, -2, -5, -7]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(add_n([-3, -1, 4, 4, 2],-3),1),-4),2))",
    "io_inp": [
      -3,
      -1,
      4,
      4,
      2
    ],
    "io_out": [
      0,
      0,
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(add_n(input,-3),1),-4),2))"
  },
  {
    "input": "input : list = [-5, 3, 0, -5]\noutput : list = [-40, -25, 0, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(reverse([-5, 3, 0, -5]))),5),-5)",
    "io_inp": [
      -5,
      3,
      0,
      -5
    ],
    "io_out": [
      -40,
      -25,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(reverse(input))),5),-5)"
  },
  {
    "input": "input : list = [-3, 0, -5, -1, -4]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(add_n([-3, 0, -5, -1, -4],-1),2)",
    "io_inp": [
      -3,
      0,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),2)"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [0, 8]",
    "output": "generated_output : list = take(take(sub_n(add_n(drop([1, -3, 5],1),-2),-5),15),32)",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(drop(input,1),-2),-5),15),32)"
  },
  {
    "input": "input : list = [-5, 3, -4, 3]\noutput : list = [15, -9, 12, -9]",
    "output": "generated_output : list = take(mul_n([-5, 3, -4, 3],-3),8)",
    "io_inp": [
      -5,
      3,
      -4,
      3
    ],
    "io_out": [
      15,
      -9,
      12,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),8)"
  },
  {
    "input": "input : list = [-2, 3, -1, -4]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-2, 3, -1, -4],2)))",
    "io_inp": [
      -2,
      3,
      -1,
      -4
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [-5, -2, 0, -4]\noutput : list = [0, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -2, 0, -4])",
    "io_inp": [
      -5,
      -2,
      0,
      -4
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -1, 1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([-3, -1, 1, -3],2)))",
    "io_inp": [
      -3,
      -1,
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [3, -3, 2, -5, -5]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(add_n(reverse(drop(drop([3, -3, 2, -5, -5],1),2)),5),2)",
    "io_inp": [
      3,
      -3,
      2,
      -5,
      -5
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(drop(drop(input,1),2)),5),2)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc([3, 1])",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, 0, 3, -3]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(take([5, 0, 0, 3, -3],1))),-4),10)",
    "io_inp": [
      5,
      0,
      0,
      3,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(take(input,1))),-4),10)"
  },
  {
    "input": "input : list = [0, 3, -3, -1, 2]\noutput : list = [3, 2, -1, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc(drop([0, 3, -3, -1, 2],1))),23))",
    "io_inp": [
      0,
      3,
      -3,
      -1,
      2
    ],
    "io_out": [
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(drop(input,1))),23))"
  },
  {
    "input": "input : list = [-4, 2, -2, 0]\noutput : list = [0, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(drop([-4, 2, -2, 0],2)))),4)",
    "io_inp": [
      -4,
      2,
      -2,
      0
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(drop(input,2)))),4)"
  },
  {
    "input": "input : list = [2, -3, -1, 5]\noutput : list = [-150, -50, 100, 250]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse([2, -3, -1, 5]),-5),-5),2))",
    "io_inp": [
      2,
      -3,
      -1,
      5
    ],
    "io_out": [
      -150,
      -50,
      100,
      250
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse(input),-5),-5),2))"
  },
  {
    "input": "input : list = [-5, 1, 2, 0, -1, 3]\noutput : list = [3, 2, 1, 0, -1, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, 1, 2, 0, -1, 3]))",
    "io_inp": [
      -5,
      1,
      2,
      0,
      -1,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-4, 2, -2, 1, -1, -2]\noutput : list = [4, 2, -2, -4, -4, -8]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([-4, 2, -2, 1, -1, -2],2)))",
    "io_inp": [
      -4,
      2,
      -2,
      1,
      -1,
      -2
    ],
    "io_out": [
      4,
      2,
      -2,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,2)))"
  },
  {
    "input": "input : list = [3, 1, -1, -1, 1]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(drop([3, 1, -1, -1, 1],2),2))),-3)",
    "io_inp": [
      3,
      1,
      -1,
      -1,
      1
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(drop(input,2),2))),-3)"
  },
  {
    "input": "input : list = [5, -5, -2, -2, -4]\noutput : list = [10, 0, 3, 3, 1]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(reverse([5, -5, -2, -2, -4])),5)))",
    "io_inp": [
      5,
      -5,
      -2,
      -2,
      -4
    ],
    "io_out": [
      10,
      0,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(reverse(input)),5)))"
  },
  {
    "input": "input : list = [4, -1, -5, -5, -5]\noutput : list = [8, -2, -10, -10, -10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc([4, -1, -5, -5, -5])),2)))",
    "io_inp": [
      4,
      -1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      8,
      -2,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = reverse([0, 1])",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [30, 15, -10]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des([2, -3, 5]),5),16)),-5)",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      30,
      15,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des(input),5),16)),-5)"
  },
  {
    "input": "input : list = [4, -5, -3, 0, -3]\noutput : list = [-19, -4, -19, -29, 16]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(reverse([4, -5, -3, 0, -3]),5),4),4),-4)",
    "io_inp": [
      4,
      -5,
      -3,
      0,
      -3
    ],
    "io_out": [
      -19,
      -4,
      -19,
      -29,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(reverse(input),5),4),4),-4)"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = drop([-3, 3, 3],1)",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [16, 44]",
    "output": "generated_output : list = mul_n(sub_n(add_n([-3, 4],4),-3),4)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      16,
      44
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,4),-3),4)"
  },
  {
    "input": "input : list = [-2, 4, 5, 0]\noutput : list = [-4, -5, -9, -11]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des([-2, 4, 5, 0]),1),5),3)",
    "io_inp": [
      -2,
      4,
      5,
      0
    ],
    "io_out": [
      -4,
      -5,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(input),1),5),3)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-13, 19]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-4, 4]),-4),-3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -13,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-4),-3)"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [3]",
    "output": "generated_output : list = reverse(reverse(take(reverse(take([3, 2, -5],1)),18)))",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(take(input,1)),18)))"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_des([-2, 0, 0]),1))",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [-1, -1, -1, 1, -2]\noutput : list = [0, 3, 1, 1]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(drop([-1, -1, -1, 1, -2],1),-2))))",
    "io_inp": [
      -1,
      -1,
      -1,
      1,
      -2
    ],
    "io_out": [
      0,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(drop(input,1),-2))))"
  },
  {
    "input": "input : list = [-2, 5, -2, 2]\noutput : list = [0, 0, 4, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(reverse([-2, 5, -2, 2])))),2)",
    "io_inp": [
      -2,
      5,
      -2,
      2
    ],
    "io_out": [
      0,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(reverse(input)))),2)"
  },
  {
    "input": "input : list = [1, -3, -1, -1, -5, -1]\noutput : list = [-3, -1, 1, 1, 1, 3]",
    "output": "generated_output : list = sub_n(sort_asc([1, -3, -1, -1, -5, -1]),-2)",
    "io_inp": [
      1,
      -3,
      -1,
      -1,
      -5,
      -1
    ],
    "io_out": [
      -3,
      -1,
      1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-5, -1, 1, 1, -4]\noutput : list = [-4, 1, 1, -1, -5]",
    "output": "generated_output : list = reverse([-5, -1, 1, 1, -4])",
    "io_inp": [
      -5,
      -1,
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [150, -150]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sort_des([2, -2]),1),-5),-5),3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      150,
      -150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sort_des(input),1),-5),-5),3)"
  },
  {
    "input": "input : list = [-4, -4, -4, -1, 1, 3]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(sub_n(drop(add_n(sort_des([-4, -4, -4, -1, 1, 3]),2),4),-3))",
    "io_inp": [
      -4,
      -4,
      -4,
      -1,
      1,
      3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(add_n(sort_des(input),2),4),-3))"
  },
  {
    "input": "input : list = [5, 2, 3, -5, 5, 4]\noutput : list = [-15, -10]",
    "output": "generated_output : list = add_n(drop(sub_n(take(mul_n([5, 2, 3, -5, 5, 4],-5),26),-5),4),5)",
    "io_inp": [
      5,
      2,
      3,
      -5,
      5,
      4
    ],
    "io_out": [
      -15,
      -10
    ],
    "output_masked": "generated_output : list = add_n(drop(sub_n(take(mul_n(input,-5),26),-5),4),5)"
  },
  {
    "input": "input : list = [-4, 5, -4, 0, -4]\noutput : list = [-16, -16, -16, 0, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-4, 5, -4, 0, -4]),4))",
    "io_inp": [
      -4,
      5,
      -4,
      0,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -16,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),4))"
  },
  {
    "input": "input : list = [2, 1, 0, 2]\noutput : list = [7, 6, 5, 7]",
    "output": "generated_output : list = add_n([2, 1, 0, 2],5)",
    "io_inp": [
      2,
      1,
      0,
      2
    ],
    "io_out": [
      7,
      6,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [3, -2, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc([3, -4, -2]),19))",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),19))"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [32, 16, -32]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(sort_des([4, -4, -2]),10),2)),-4)",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      32,
      16,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(sort_des(input),10),2)),-4)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-20, -8]",
    "output": "generated_output : list = mul_n([5, 2],-4)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, 36]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc([-4, 4]),-5)),-4)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(input),-5)),-4)"
  },
  {
    "input": "input : list = [-5, -2, 1, -5, -5, -5]\noutput : list = [20, 20, 20, 20, 8, -4]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sort_asc([-5, -2, 1, -5, -5, -5]))),-4),59)",
    "io_inp": [
      -5,
      -2,
      1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      20,
      20,
      20,
      20,
      8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sort_asc(input))),-4),59)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sort_asc(sub_n([-5, 3],-4))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [2, 0, 2, 5, 0]\noutput : list = [10, 10, 18, 18, 30]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(add_n([2, 0, 2, 5, 0],2),4),-2),38))",
    "io_inp": [
      2,
      0,
      2,
      5,
      0
    ],
    "io_out": [
      10,
      10,
      18,
      18,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(add_n(input,2),4),-2),38))"
  },
  {
    "input": "input : list = [0, -2, 4, -5, 1, 3]\noutput : list = [-10, -7, -5, -4, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(reverse([0, -2, 4, -5, 1, 3]))),5))",
    "io_inp": [
      0,
      -2,
      4,
      -5,
      1,
      3
    ],
    "io_out": [
      -10,
      -7,
      -5,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(reverse(input))),5))"
  },
  {
    "input": "input : list = [-1, 4, 3, 4]\noutput : list = [-6, -2, -1, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(add_n([-1, 4, 3, 4],-4),1)),18))",
    "io_inp": [
      -1,
      4,
      3,
      4
    ],
    "io_out": [
      -6,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(add_n(input,-4),1)),18))"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [-3, -9, -15]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(mul_n([3, 1, 5],-3)))))",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      -3,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [-5, -3, 4]",
    "output": "generated_output : list = sort_asc([-5, 4, -3])",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      -5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, 4, 5, -3, 4]\noutput : list = [3, 3, 2, 2, -5]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(drop([-2, 5, 4, 5, -3, 4],1)))),-2)",
    "io_inp": [
      -2,
      5,
      4,
      5,
      -3,
      4
    ],
    "io_out": [
      3,
      3,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(drop(input,1)))),-2)"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take([5, -1, -5],1))),-2)",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(input,1))),-2)"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [-9, 3, 9]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(add_n([-2, 4, 2],2),-3),3)))",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      -9,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(add_n(input,2),-3),3)))"
  },
  {
    "input": "input : list = [0, -2, 3, 1]\noutput : list = [2, 0, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse([0, -2, 3, 1])),-1)",
    "io_inp": [
      0,
      -2,
      3,
      1
    ],
    "io_out": [
      2,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),-1)"
  },
  {
    "input": "input : list = [1, -5, 2, 4]\noutput : list = [-8, -4, 10, -2]",
    "output": "generated_output : list = reverse(mul_n([1, -5, 2, 4],-2))",
    "io_inp": [
      1,
      -5,
      2,
      4
    ],
    "io_out": [
      -8,
      -4,
      10,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(sort_des([-4, -3, -3])))),26)",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(sort_des(input)))),26)"
  },
  {
    "input": "input : list = [2, 0, 4, -3, 2, -2]\noutput : list = [-7, -6, -4, -2, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(add_n([2, 0, 4, -3, 2, -2],-1)))),-3)",
    "io_inp": [
      2,
      0,
      4,
      -3,
      2,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(add_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sub_n(reverse(add_n([3, -1],-2)),-1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,-2)),-1)"
  },
  {
    "input": "input : list = [-4, -4, -5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(drop([-4, -4, -5, 1],2)))))",
    "io_inp": [
      -4,
      -4,
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(drop(input,2)))))"
  },
  {
    "input": "input : list = [4, 3, -1, -1]\noutput : list = [12, 10, 2, 2]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(mul_n([4, 3, -1, -1],2),4)),23))",
    "io_inp": [
      4,
      3,
      -1,
      -1
    ],
    "io_out": [
      12,
      10,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(mul_n(input,2),4)),23))"
  },
  {
    "input": "input : list = [1, 1, 1, 5, -1, 4]\noutput : list = [-40, -10, -10, -10, 35, 50]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(mul_n([1, 1, 1, 5, -1, 4],-3)),-3),2),-5)",
    "io_inp": [
      1,
      1,
      1,
      5,
      -1,
      4
    ],
    "io_out": [
      -40,
      -10,
      -10,
      -10,
      35,
      50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(mul_n(input,-3)),-3),2),-5)"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [4]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(take([-3, -2, -5],1),-4),-4),1),17)",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(take(input,1),-4),-4),1),17)"
  },
  {
    "input": "input : list = [1, 4, -4, -4]\noutput : list = [-4, -4, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, -4, -4])",
    "io_inp": [
      1,
      4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [-10, 25, -10]",
    "output": "generated_output : list = mul_n(reverse([-2, 5, -2]),5)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      -10,
      25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [-13, -7, 5]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(reverse([4, 2, -2]),1)),-3),-2)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      -13,
      -7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(reverse(input),1)),-3),-2)"
  },
  {
    "input": "input : list = [2, 1, -5]\noutput : list = [-3, -9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(drop([2, 1, -5],1)),-3),3),4)",
    "io_inp": [
      2,
      1,
      -5
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(drop(input,1)),-3),3),4)"
  },
  {
    "input": "input : list = [-5, 2, 1, 3, 5, 2]\noutput : list = [3, 1, 0, 0, -1, -7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc([-5, 2, 1, 3, 5, 2])),1)),1)",
    "io_inp": [
      -5,
      2,
      1,
      3,
      5,
      2
    ],
    "io_out": [
      3,
      1,
      0,
      0,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc(input)),1)),1)"
  },
  {
    "input": "input : list = [-3, 4, 1, -2]\noutput : list = [20, 5, -10, -15]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(mul_n([-3, 4, 1, -2],5),-1),1)))",
    "io_inp": [
      -3,
      4,
      1,
      -2
    ],
    "io_out": [
      20,
      5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(mul_n(input,5),-1),1)))"
  },
  {
    "input": "input : list = [-1, -3, -3, -2, -2]\noutput : list = [0, 4, 4, 8, 8]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(sort_asc([-1, -3, -3, -2, -2]),1),12)),-4)",
    "io_inp": [
      -1,
      -3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      0,
      4,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(sort_asc(input),1),12)),-4)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [10, 30]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(sort_asc([5, 1]),-1),5),-5),-1)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(sort_asc(input),-1),5),-5),-1)"
  },
  {
    "input": "input : list = [-3, 4, 2]\noutput : list = [-15, -10, -8]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sub_n([-3, 4, 2],3),-5),-4)))",
    "io_inp": [
      -3,
      4,
      2
    ],
    "io_out": [
      -15,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sub_n(input,3),-5),-4)))"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = reverse(sort_asc([5, 2, 4]))",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 5, -3, -3, -5, -2]\noutput : list = [-20, -12]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(take([1, 5, -3, -3, -5, -2],2)),-5),23),-2)",
    "io_inp": [
      1,
      5,
      -3,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(take(input,2)),-5),23),-2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-8, -16]",
    "output": "generated_output : list = mul_n(take(sort_des([-4, -2]),14),4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),14),4)"
  },
  {
    "input": "input : list = [5, 3, -4, -3, 1, -2]\noutput : list = [2, 0, -7, -6, -2, -5]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(reverse([5, 3, -4, -3, 1, -2])))),3)",
    "io_inp": [
      5,
      3,
      -4,
      -3,
      1,
      -2
    ],
    "io_out": [
      2,
      0,
      -7,
      -6,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(reverse(input)))),3)"
  },
  {
    "input": "input : list = [0, 2, -5, -4, 4]\noutput : list = [4, -4, -5, 2, 0]",
    "output": "generated_output : list = reverse([0, 2, -5, -4, 4])",
    "io_inp": [
      0,
      2,
      -5,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      -5,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, 0, -1, 1]\noutput : list = [-5, -4, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(add_n([-4, -5, 0, -1, 1],3),-3),4),4))",
    "io_inp": [
      -4,
      -5,
      0,
      -1,
      1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(add_n(input,3),-3),4),4))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-5, -13]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sub_n([-5, 3],3)),5)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -5,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sub_n(input,3)),5)))"
  },
  {
    "input": "input : list = [1, 3, -2, -5]\noutput : list = [4, 12, -8, -20]",
    "output": "generated_output : list = mul_n([1, 3, -2, -5],4)",
    "io_inp": [
      1,
      3,
      -2,
      -5
    ],
    "io_out": [
      4,
      12,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, 4, 1, -2, -5, -3]\noutput : list = [4, 4, 1, -2, -3, -5]",
    "output": "generated_output : list = take(sort_des([4, 4, 1, -2, -5, -3]),26)",
    "io_inp": [
      4,
      4,
      1,
      -2,
      -5,
      -3
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),26)"
  },
  {
    "input": "input : list = [-5, -5, -1, 3, 0]\noutput : list = [-10, -10, -6, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(drop(reverse([-5, -5, -1, 3, 0]),1),-5)))",
    "io_inp": [
      -5,
      -5,
      -1,
      3,
      0
    ],
    "io_out": [
      -10,
      -10,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(drop(reverse(input),1),-5)))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take(reverse([4, 4]),8),-2),5))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(reverse(input),8),-2),5))"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [0, 2, 2]",
    "output": "generated_output : list = add_n([-3, -1, -1],3)",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 0, 0, -2, 1, 0]\noutput : list = [-1, -2, -2, -2, -4, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sort_des([-5, 0, 0, -2, 1, 0]))),2))",
    "io_inp": [
      -5,
      0,
      0,
      -2,
      1,
      0
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sort_des(input))),2))"
  },
  {
    "input": "input : list = [4, 1, 1]\noutput : list = [-9, 0, 0]",
    "output": "generated_output : list = sub_n(mul_n([4, 1, 1],-3),-3)",
    "io_inp": [
      4,
      1,
      1
    ],
    "io_out": [
      -9,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),-3)"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [0, -2]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(drop([4, -3, -1],1)),-1),2))",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(drop(input,1)),-1),2))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-12, 6]",
    "output": "generated_output : list = mul_n([4, -2],-3)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse([-1, -3])",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, -2, -1, 5]\noutput : list = [8, 8]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(take([-1, -1, -2, -1, 5],2),2),-4),3))",
    "io_inp": [
      -1,
      -1,
      -2,
      -1,
      5
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(take(input,2),2),-4),3))"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [-3, -2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc([-2, -3, 4])),18)))",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc(input)),18)))"
  },
  {
    "input": "input : list = [-2, -4, -2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(drop([-2, -4, -2, 3],2)))))",
    "io_inp": [
      -2,
      -4,
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(drop(input,2)))))"
  },
  {
    "input": "input : list = [-5, -4, 4, 2]\noutput : list = [-4, -3, 3, 5]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(sub_n([-5, -4, 4, 2],-2)),14),-1))",
    "io_inp": [
      -5,
      -4,
      4,
      2
    ],
    "io_out": [
      -4,
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(sub_n(input,-2)),14),-1))"
  },
  {
    "input": "input : list = [-4, -3, 1, 5, 4]\noutput : list = [5, 4, 1, -3, -4]",
    "output": "generated_output : list = sort_des([-4, -3, 1, 5, 4])",
    "io_inp": [
      -4,
      -3,
      1,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, 5, 5, 3]\noutput : list = [5, 5, 3, -1, -2]",
    "output": "generated_output : list = sort_des([-2, -1, 5, 5, 3])",
    "io_inp": [
      -2,
      -1,
      5,
      5,
      3
    ],
    "io_out": [
      5,
      5,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 0, 3, -1, 4, -5]\noutput : list = [-1, 3, 4, 7, 8, 8]",
    "output": "generated_output : list = add_n(sort_asc([4, 0, 3, -1, 4, -5]),4)",
    "io_inp": [
      4,
      0,
      3,
      -1,
      4,
      -5
    ],
    "io_out": [
      -1,
      3,
      4,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [4, 5, -3, 2]\noutput : list = [-4, 1, 3, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(sort_asc([4, 5, -3, 2]),1)),1))",
    "io_inp": [
      4,
      5,
      -3,
      2
    ],
    "io_out": [
      -4,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(sort_asc(input),1)),1))"
  },
  {
    "input": "input : list = [4, -5, 3, -4, -5]\noutput : list = [12, 11, 4, 3, 3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(add_n([4, -5, 3, -4, -5],5)),2),-5))",
    "io_inp": [
      4,
      -5,
      3,
      -4,
      -5
    ],
    "io_out": [
      12,
      11,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(add_n(input,5)),2),-5))"
  },
  {
    "input": "input : list = [-4, -5, -3, -4, -3]\noutput : list = [16, 16, 18, 18, 20]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sub_n(sort_asc([-4, -5, -3, -4, -3]),5),-2)))",
    "io_inp": [
      -4,
      -5,
      -3,
      -4,
      -3
    ],
    "io_out": [
      16,
      16,
      18,
      18,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sub_n(sort_asc(input),5),-2)))"
  },
  {
    "input": "input : list = [-5, 4, 4, -2]\noutput : list = [12, 12, 6, 3]",
    "output": "generated_output : list = sort_des(take(add_n(add_n([-5, 4, 4, -2],4),4),21))",
    "io_inp": [
      -5,
      4,
      4,
      -2
    ],
    "io_out": [
      12,
      12,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(input,4),4),21))"
  },
  {
    "input": "input : list = [5, -2, -3, 4]\noutput : list = [12, 8, -16, -20]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n([5, -2, -3, 4],-4))))",
    "io_inp": [
      5,
      -2,
      -3,
      4
    ],
    "io_out": [
      12,
      8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [2, 2, 3, -2, 4]\noutput : list = [3, 2, 1, 1, -3]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(add_n([2, 2, 3, -2, 4],4)),-5),6))",
    "io_inp": [
      2,
      2,
      3,
      -2,
      4
    ],
    "io_out": [
      3,
      2,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(add_n(input,4)),-5),6))"
  },
  {
    "input": "input : list = [5, 1, 4, 5, -1, 5]\noutput : list = [-7, -6, -12, -6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(add_n(drop([5, 1, 4, 5, -1, 5],2),-4),4),-5),-2)",
    "io_inp": [
      5,
      1,
      4,
      5,
      -1,
      5
    ],
    "io_out": [
      -7,
      -6,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(add_n(drop(input,2),-4),4),-5),-2)"
  },
  {
    "input": "input : list = [-1, 4, -5, -4]\noutput : list = [-12, -2, 4, 6]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(mul_n([-1, 4, -5, -4],-2))),-4))",
    "io_inp": [
      -1,
      4,
      -5,
      -4
    ],
    "io_out": [
      -12,
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(mul_n(input,-2))),-4))"
  },
  {
    "input": "input : list = [1, -1, -2, -1, -5, -1]\noutput : list = [-9, -6, -5, -5, -5, -3]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(reverse([1, -1, -2, -1, -5, -1]),1),1),-5))",
    "io_inp": [
      1,
      -1,
      -2,
      -1,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(reverse(input),1),1),-5))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(reverse(take(drop(reverse([-1, -4]),1),4)),3)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(drop(reverse(input),1),4)),3)"
  },
  {
    "input": "input : list = [-4, 1, -4, 5, -3]\noutput : list = [-10, -2, -11]",
    "output": "generated_output : list = reverse(add_n(take(add_n(drop([-4, 1, -4, 5, -3],2),-2),10),-5))",
    "io_inp": [
      -4,
      1,
      -4,
      5,
      -3
    ],
    "io_out": [
      -10,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(drop(input,2),-2),10),-5))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sub_n([-4, 5],1)))))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(drop([5, 5, 1],1))",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-4, -2, 2, 0, -4]\noutput : list = [-4, -4, -2, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc([-4, -2, 2, 0, -4])),1)))",
    "io_inp": [
      -4,
      -2,
      2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [4, -1, -1, 2]\noutput : list = [2, 14, 14, -6]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(sub_n([4, -1, -1, 2],2),-4),4),-2))",
    "io_inp": [
      4,
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      14,
      14,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(sub_n(input,2),-4),4),-2))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [10, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(reverse([-1, 0]),-4)),2),-2)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(reverse(input),-4)),2),-2)"
  },
  {
    "input": "input : list = [3, -2, 5, 0, 3, -4]\noutput : list = [0, 2, 4, 7, 7, 9]",
    "output": "generated_output : list = sort_asc(sub_n([3, -2, 5, 0, 3, -4],-4))",
    "io_inp": [
      3,
      -2,
      5,
      0,
      3,
      -4
    ],
    "io_out": [
      0,
      2,
      4,
      7,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [4, -1, -1, -4, -4]\noutput : list = [0, 0, 3, 3, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(add_n([4, -1, -1, -4, -4],1)))),3)",
    "io_inp": [
      4,
      -1,
      -1,
      -4,
      -4
    ],
    "io_out": [
      0,
      0,
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(add_n(input,1)))),3)"
  },
  {
    "input": "input : list = [4, -2, 4, 3, 2, -1]\noutput : list = [4, 4, 3, 2, -1, -2]",
    "output": "generated_output : list = take(sort_des(reverse([4, -2, 4, 3, 2, -1])),21)",
    "io_inp": [
      4,
      -2,
      4,
      3,
      2,
      -1
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),21)"
  },
  {
    "input": "input : list = [-2, 4, 5, -1, 5]\noutput : list = [-5, 1, 2, -4, 2]",
    "output": "generated_output : list = take(add_n(mul_n([-2, 4, 5, -1, 5],1),-3),13)",
    "io_inp": [
      -2,
      4,
      5,
      -1,
      5
    ],
    "io_out": [
      -5,
      1,
      2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,1),-3),13)"
  },
  {
    "input": "input : list = [-2, 1, 1, -2, 3, -5]\noutput : list = [6, 2, -4, -10]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(drop([-2, 1, 1, -2, 3, -5],2),2),24)))",
    "io_inp": [
      -2,
      1,
      1,
      -2,
      3,
      -5
    ],
    "io_out": [
      6,
      2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(drop(input,2),2),24)))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n(sub_n([0, -4],-5),-2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),-2)"
  },
  {
    "input": "input : list = [5, -3, 3, -1]\noutput : list = [10, 2, 8, 4]",
    "output": "generated_output : list = take(add_n([5, -3, 3, -1],5),16)",
    "io_inp": [
      5,
      -3,
      3,
      -1
    ],
    "io_out": [
      10,
      2,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),16)"
  },
  {
    "input": "input : list = [-5, 4, -1, 2]\noutput : list = [5, 3, 0, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n([-5, 4, -1, 2],2)),4),3)",
    "io_inp": [
      -5,
      4,
      -1,
      2
    ],
    "io_out": [
      5,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(input,2)),4),3)"
  },
  {
    "input": "input : list = [-5, 5, 2, -4, 0]\noutput : list = [-10, -4, 0, 8, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sort_asc([-5, 5, 2, -4, 0]),-2))))",
    "io_inp": [
      -5,
      5,
      2,
      -4,
      0
    ],
    "io_out": [
      -10,
      -4,
      0,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [1, -4, 3]\noutput : list = [9, 7, 2]",
    "output": "generated_output : list = take(add_n(sort_des(take(sub_n([1, -4, 3],-5),11)),1),15)",
    "io_inp": [
      1,
      -4,
      3
    ],
    "io_out": [
      9,
      7,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(sub_n(input,-5),11)),1),15)"
  },
  {
    "input": "input : list = [3, -3, 1, 2]\noutput : list = [6, 0, 4, 5]",
    "output": "generated_output : list = sub_n([3, -3, 1, 2],-3)",
    "io_inp": [
      3,
      -3,
      1,
      2
    ],
    "io_out": [
      6,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, 5, -5]\noutput : list = [16, -14, 4, -11]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(reverse([4, -1, 5, -5]),-2),-3),-5),44)",
    "io_inp": [
      4,
      -1,
      5,
      -5
    ],
    "io_out": [
      16,
      -14,
      4,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(reverse(input),-2),-3),-5),44)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse([5, -2])",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 0, 4]\noutput : list = [2, 1, -3]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sub_n([5, 0, 4],3),4),4)),16)",
    "io_inp": [
      5,
      0,
      4
    ],
    "io_out": [
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sub_n(input,3),4),4)),16)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des([4, 0, 1]))",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [0, -6, 0]",
    "output": "generated_output : list = sub_n(reverse([2, -4, 2]),2)",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      0,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-2, 0, -5, 2, 2]\noutput : list = [2, 2, 0, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(reverse([-2, 0, -5, 2, 2])))))",
    "io_inp": [
      -2,
      0,
      -5,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, 1, -4, -2, -5, 0]\noutput : list = [0, -5, -2, -4, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, -4, -2, -5, 0])",
    "io_inp": [
      -2,
      1,
      -4,
      -2,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      -2,
      -4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -1, -1, 4, 5, 2]\noutput : list = [-7, -4, -4, -1, 1, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n([-4, -1, -1, 4, 5, 2],-3))),21)",
    "io_inp": [
      -4,
      -1,
      -1,
      4,
      5,
      2
    ],
    "io_out": [
      -7,
      -4,
      -4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(input,-3))),21)"
  },
  {
    "input": "input : list = [-3, -2, -4, -3]\noutput : list = [8, 12, 12, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sort_des([-3, -2, -4, -3]),-1)),4))",
    "io_inp": [
      -3,
      -2,
      -4,
      -3
    ],
    "io_out": [
      8,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sort_des(input),-1)),4))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-5, 20]",
    "output": "generated_output : list = mul_n([-1, 4],5)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, 4, 2, 2, 3, -5]\noutput : list = [-3, -11, -10, -10, -12, -10]",
    "output": "generated_output : list = mul_n(reverse(sub_n(take(add_n([2, 4, 2, 2, 3, -5],5),23),-3)),-1)",
    "io_inp": [
      2,
      4,
      2,
      2,
      3,
      -5
    ],
    "io_out": [
      -3,
      -11,
      -10,
      -10,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(take(add_n(input,5),23),-3)),-1)"
  },
  {
    "input": "input : list = [3, -4, 2, -4, 2]\noutput : list = [3, 2, 2, -4, -4]",
    "output": "generated_output : list = sort_des([3, -4, 2, -4, 2])",
    "io_inp": [
      3,
      -4,
      2,
      -4,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 3, 4, -4]\noutput : list = [3, 2, 1, -1, -6]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des([1, 5, 3, 4, -4]),-2),8))",
    "io_inp": [
      1,
      5,
      3,
      4,
      -4
    ],
    "io_out": [
      3,
      2,
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(input),-2),8))"
  },
  {
    "input": "input : list = [-3, 4, 1, -1, -1, 2]\noutput : list = [-6, -4, -4, -2, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc([-3, 4, 1, -1, -1, 2]),-3)",
    "io_inp": [
      -3,
      4,
      1,
      -1,
      -1,
      2
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [3, -1, 0, -4, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(take([3, -1, 0, -4, 0],2))",
    "io_inp": [
      3,
      -1,
      0,
      -4,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-3, -2, 3, 4, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([-3, -2, 3, 4, -3, -3],4)",
    "io_inp": [
      -3,
      -2,
      3,
      4,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-1, 1, -1, 2, -4]\noutput : list = [1, 4, 4, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n([-1, 1, -1, 2, -4],-5))",
    "io_inp": [
      -1,
      1,
      -1,
      2,
      -4
    ],
    "io_out": [
      1,
      4,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(mul_n([5, 5],-2)))))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(mul_n(input,-2)))))"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n(sub_n([3, 4, 4],4),2)),16),2)",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(sub_n(input,4),2)),16),2)"
  },
  {
    "input": "input : list = [5, 0, 0, 4, -2]\noutput : list = [41, 16, 16, 36, 6]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n(add_n([5, 0, 0, 4, -2],3),-1),5),-5),1)",
    "io_inp": [
      5,
      0,
      0,
      4,
      -2
    ],
    "io_out": [
      41,
      16,
      16,
      36,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(add_n(input,3),-1),5),-5),1)"
  },
  {
    "input": "input : list = [-4, 4, 4, 2, -2, 4]\noutput : list = [18, -18]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(drop([-4, 4, 4, 2, -2, 4],4),2),-1),-2),3)",
    "io_inp": [
      -4,
      4,
      4,
      2,
      -2,
      4
    ],
    "io_out": [
      18,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(drop(input,4),2),-1),-2),3)"
  },
  {
    "input": "input : list = [4, -2, -3, -5]\noutput : list = [4, -2, -3, -5]",
    "output": "generated_output : list = sort_des([4, -2, -3, -5])",
    "io_inp": [
      4,
      -2,
      -3,
      -5
    ],
    "io_out": [
      4,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, 0, -1]\noutput : list = [-6, -7, -5, -6]",
    "output": "generated_output : list = add_n([-1, -2, 0, -1],-5)",
    "io_inp": [
      -1,
      -2,
      0,
      -1
    ],
    "io_out": [
      -6,
      -7,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, 0, 3, 4, -3]\noutput : list = [0, 3, 6, 15, 24]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des([5, 0, 3, 4, -3]),-4),1)),-3)",
    "io_inp": [
      5,
      0,
      3,
      4,
      -3
    ],
    "io_out": [
      0,
      3,
      6,
      15,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des(input),-4),1)),-3)"
  },
  {
    "input": "input : list = [5, -1, -2, -3, -3]\noutput : list = [-27, -27, -18, -9, 45]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(mul_n([5, -1, -2, -3, -3],3)),-3),16),-1)",
    "io_inp": [
      5,
      -1,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -27,
      -27,
      -18,
      -9,
      45
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(mul_n(input,3)),-3),16),-1)"
  },
  {
    "input": "input : list = [-5, 3, 3, 4, 2, -5]\noutput : list = [-9, -9, -2, -1, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc([-5, 3, 3, 4, 2, -5]),-4)",
    "io_inp": [
      -5,
      3,
      3,
      4,
      2,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [20, -16]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(mul_n([4, -5],-1),4))))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      20,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(mul_n(input,-1),4))))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n([0, 0],2)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, 1, 1, 0, -4, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop(reverse([-1, 1, 1, 0, -4, -1]),4)",
    "io_inp": [
      -1,
      1,
      1,
      0,
      -4,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(reverse(input),4)"
  },
  {
    "input": "input : list = [0, 2, 0, -4, 4]\noutput : list = [0, -16, -16, -24, -32]",
    "output": "generated_output : list = sort_des(mul_n(add_n([0, 2, 0, -4, 4],4),-4))",
    "io_inp": [
      0,
      2,
      0,
      -4,
      4
    ],
    "io_out": [
      0,
      -16,
      -16,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,4),-4))"
  },
  {
    "input": "input : list = [3, -4, -2, -4]\noutput : list = [16, 6, 2, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sub_n([3, -4, -2, -4],-3))),2),-4)",
    "io_inp": [
      3,
      -4,
      -2,
      -4
    ],
    "io_out": [
      16,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sub_n(input,-3))),2),-4)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(sort_asc([-5, -4]),12)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),12)"
  },
  {
    "input": "input : list = [-2, 1, 3, 5, 5]\noutput : list = [-6, -9]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(take([-2, 1, 3, 5, 5],2),5),18),2))",
    "io_inp": [
      -2,
      1,
      3,
      5,
      5
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(take(input,2),5),18),2))"
  },
  {
    "input": "input : list = [1, -3, -2, -1]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(drop([1, -3, -2, -1],1),-5),5)),27)",
    "io_inp": [
      1,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(drop(input,1),-5),5)),27)"
  },
  {
    "input": "input : list = [3, -4, 0, -1, 2]\noutput : list = [-1, 2, 3, 5, 6]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(sort_asc([3, -4, 0, -1, 2]),-1),1),-2),40)",
    "io_inp": [
      3,
      -4,
      0,
      -1,
      2
    ],
    "io_out": [
      -1,
      2,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(sort_asc(input),-1),1),-2),40)"
  },
  {
    "input": "input : list = [-4, -3, 1, -1]\noutput : list = [-3, -5, -7]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(drop([-4, -3, 1, -1],1)),31),1),-3)",
    "io_inp": [
      -4,
      -3,
      1,
      -1
    ],
    "io_out": [
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(drop(input,1)),31),1),-3)"
  },
  {
    "input": "input : list = [4, 0, 3]\noutput : list = [24, 20, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc([4, 0, 3])),-2),4)",
    "io_inp": [
      4,
      0,
      3
    ],
    "io_out": [
      24,
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(input)),-2),4)"
  },
  {
    "input": "input : list = [-2, -3, -3, 4]\noutput : list = [4, 4, 5, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(add_n([-2, -3, -3, 4],3),1),-4)),-1)",
    "io_inp": [
      -2,
      -3,
      -3,
      4
    ],
    "io_out": [
      4,
      4,
      5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(add_n(input,3),1),-4)),-1)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [-13, -11, -4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sub_n([-2, 5, -4],4))),-5))",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      -13,
      -11,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sub_n(input,4))),-5))"
  },
  {
    "input": "input : list = [-3, 1, 2, -1, 1]\noutput : list = [5, 4, 4, 2, 0]",
    "output": "generated_output : list = take(take(sub_n(sort_des(reverse([-3, 1, 2, -1, 1])),-3),13),14)",
    "io_inp": [
      -3,
      1,
      2,
      -1,
      1
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(reverse(input)),-3),13),14)"
  },
  {
    "input": "input : list = [-2, -2, 2, 1, -5, -1]\noutput : list = [-6, -6, 10, 6, -18]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(mul_n([-2, -2, 2, 1, -5, -1],4),5)),-2))",
    "io_inp": [
      -2,
      -2,
      2,
      1,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -6,
      10,
      6,
      -18
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(mul_n(input,4),5)),-2))"
  },
  {
    "input": "input : list = [-3, -4, 1, 4, 3, 0]\noutput : list = [-4, -8, -20, -24, -32, -36]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sub_n([-3, -4, 1, 4, 3, 0],-5)),-4)))",
    "io_inp": [
      -3,
      -4,
      1,
      4,
      3,
      0
    ],
    "io_out": [
      -4,
      -8,
      -20,
      -24,
      -32,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sub_n(input,-5)),-4)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-9, -15]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(sub_n([-4, 2],3),3),3),5))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(sub_n(input,3),3),3),5))"
  },
  {
    "input": "input : list = [2, 1, 4, 1, 3]\noutput : list = [-12, -3, -9]",
    "output": "generated_output : list = mul_n(take(take(drop([2, 1, 4, 1, 3],2),9),19),-3)",
    "io_inp": [
      2,
      1,
      4,
      1,
      3
    ],
    "io_out": [
      -12,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(take(drop(input,2),9),19),-3)"
  },
  {
    "input": "input : list = [0, -1, -2, 5]\noutput : list = [3, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n([0, -1, -2, 5],2))",
    "io_inp": [
      0,
      -1,
      -2,
      5
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [-1, -3, -5, 2]\noutput : list = [-8, 4, 12, 20]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(sort_des([-1, -3, -5, 2])),-4),42))",
    "io_inp": [
      -1,
      -3,
      -5,
      2
    ],
    "io_out": [
      -8,
      4,
      12,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(sort_des(input)),-4),42))"
  },
  {
    "input": "input : list = [-1, -5, -5, -2]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(take(drop(sub_n(drop([-1, -5, -5, -2],1),2),2),10),3)",
    "io_inp": [
      -1,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(sub_n(drop(input,1),2),2),10),3)"
  },
  {
    "input": "input : list = [2, 2, -5, 3, 0]\noutput : list = [-5, 0, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(sub_n([2, 2, -5, 3, 0],-2),18),-2),-4))",
    "io_inp": [
      2,
      2,
      -5,
      3,
      0
    ],
    "io_out": [
      -5,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(sub_n(input,-2),18),-2),-4))"
  },
  {
    "input": "input : list = [2, -2, -2, -1]\noutput : list = [11, -1, -5, -5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_des([2, -2, -2, -1]))),4),3)",
    "io_inp": [
      2,
      -2,
      -2,
      -1
    ],
    "io_out": [
      11,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_des(input))),4),3)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(drop([5, 5, 5],1),4))))",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(drop(input,1),4))))"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = take(sort_des([-2, 3, -2]),19)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),19)"
  },
  {
    "input": "input : list = [3, 1, -4, -1, 2]\noutput : list = [-6, 3, 12, -3, -9]",
    "output": "generated_output : list = reverse(reverse(reverse(take(mul_n([3, 1, -4, -1, 2],-3),17))))",
    "io_inp": [
      3,
      1,
      -4,
      -1,
      2
    ],
    "io_out": [
      -6,
      3,
      12,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(mul_n(input,-3),17))))"
  },
  {
    "input": "input : list = [3, 1, 2, -1, -1, -1]\noutput : list = [2, 2, 2, 11, 8, 14]",
    "output": "generated_output : list = sub_n(reverse(mul_n([3, 1, 2, -1, -1, -1],3)),-5)",
    "io_inp": [
      3,
      1,
      2,
      -1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      2,
      11,
      8,
      14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,3)),-5)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [55, -105, 39]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n(mul_n([-5, 5, -4],-4),4),4),-4),-5)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      55,
      -105,
      39
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(mul_n(input,-4),4),4),-4),-5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(sub_n([3, -1],4)))),-2)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(sub_n(input,4)))),-2)"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [-2, -6, -7]",
    "output": "generated_output : list = sort_des(add_n([-1, 3, -2],-5))",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(sort_des([3, 0]))),26),-3)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(sort_des(input))),26),-3)"
  },
  {
    "input": "input : list = [2, -2, -3, 1, -3]\noutput : list = [12, 8, -4, -8, -8]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n(sub_n([2, -2, -3, 1, -3],-5),-4),4)))",
    "io_inp": [
      2,
      -2,
      -3,
      1,
      -3
    ],
    "io_out": [
      12,
      8,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(sub_n(input,-5),-4),4)))"
  },
  {
    "input": "input : list = [-4, -2, 1, 2]\noutput : list = [6, 12]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(take([-4, -2, 1, 2],2))),-3))",
    "io_inp": [
      -4,
      -2,
      1,
      2
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(take(input,2))),-3))"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [-35, -5, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(mul_n([5, 4, -2],-1),5)),-5))",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      -35,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(mul_n(input,-1),5)),-5))"
  },
  {
    "input": "input : list = [-4, -4, 2, -2]\noutput : list = [2, -2, -4, -4]",
    "output": "generated_output : list = sort_des([-4, -4, 2, -2])",
    "io_inp": [
      -4,
      -4,
      2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, -5, 0, 4, 4]\noutput : list = [-3, -3, 2, 2, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-5, 0, -5, 0, 4, 4],-2)))",
    "io_inp": [
      -5,
      0,
      -5,
      0,
      4,
      4
    ],
    "io_out": [
      -3,
      -3,
      2,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [5, -5, 1, -2, -3, 0]\noutput : list = [25]",
    "output": "generated_output : list = take(mul_n([5, -5, 1, -2, -3, 0],5),1)",
    "io_inp": [
      5,
      -5,
      1,
      -2,
      -3,
      0
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(input,5),1)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [-6, -14, -12]",
    "output": "generated_output : list = sub_n(add_n([4, -4, -2],-5),5)",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -14,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),5)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n(sub_n(reverse([-5, -3]),2),4)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),2),4)"
  },
  {
    "input": "input : list = [4, -2, -3, 0, 5]\noutput : list = [5, 4, 0, -2, -3]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(reverse([4, -2, -3, 0, 5])),34)),30)",
    "io_inp": [
      4,
      -2,
      -3,
      0,
      5
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(reverse(input)),34)),30)"
  },
  {
    "input": "input : list = [4, -2, 1, 1, 3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(drop(reverse(sort_des(add_n([4, -2, 1, 1, 3],-5))),3))",
    "io_inp": [
      4,
      -2,
      1,
      1,
      3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(sort_des(add_n(input,-5))),3))"
  },
  {
    "input": "input : list = [-4, -4, -5, -3, -4, -1]\noutput : list = [4, 4, 5, 3, 4, 1]",
    "output": "generated_output : list = mul_n(mul_n([-4, -4, -5, -3, -4, -1],1),-1)",
    "io_inp": [
      -4,
      -4,
      -5,
      -3,
      -4,
      -1
    ],
    "io_out": [
      4,
      4,
      5,
      3,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-1)"
  },
  {
    "input": "input : list = [-3, -1, 2, 0, -5, 2]\noutput : list = [1, 1, -1, -2, -4, -6]",
    "output": "generated_output : list = reverse(take(take(sort_asc(sub_n([-3, -1, 2, 0, -5, 2],1)),29),34))",
    "io_inp": [
      -3,
      -1,
      2,
      0,
      -5,
      2
    ],
    "io_out": [
      1,
      1,
      -1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(sub_n(input,1)),29),34))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-22, 38]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(mul_n([4, 0],3)),5),5),-3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -22,
      38
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(mul_n(input,3)),5),5),-3)"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [-2, -3, 1]",
    "output": "generated_output : list = add_n([2, 1, 5],-4)",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      -2,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-7, -7]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(sort_des([-2, -2]))),5),42)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(sort_des(input))),5),42)"
  },
  {
    "input": "input : list = [5, -5, -2, 0, -2, 4]\noutput : list = [-99, 101, 41, 1]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(take([5, -5, -2, 0, -2, 4],4),11),4),-5),-1)",
    "io_inp": [
      5,
      -5,
      -2,
      0,
      -2,
      4
    ],
    "io_out": [
      -99,
      101,
      41,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(take(input,4),11),4),-5),-1)"
  },
  {
    "input": "input : list = [3, 0, -4, 0, 1, 3]\noutput : list = [4, 4, 2, 1, 1, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_des([3, 0, -4, 0, 1, 3]),1))),-1)",
    "io_inp": [
      3,
      0,
      -4,
      0,
      1,
      3
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_des(input),1))),-1)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [20, 8]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(sub_n([-3, 0],-5),4),9)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      20,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(sub_n(input,-5),4),9)))"
  },
  {
    "input": "input : list = [-1, 5, -5, 3, 1, 2]\noutput : list = [-2, 4, -6, 2, 0, 1]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(reverse([-1, 5, -5, 3, 1, 2]),3)),26),2)",
    "io_inp": [
      -1,
      5,
      -5,
      3,
      1,
      2
    ],
    "io_out": [
      -2,
      4,
      -6,
      2,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(reverse(input),3)),26),2)"
  },
  {
    "input": "input : list = [-3, -5, -2, -1, 2]\noutput : list = [-2, -4, -1, 0, 3]",
    "output": "generated_output : list = add_n(sub_n([-3, -5, -2, -1, 2],-5),-4)",
    "io_inp": [
      -3,
      -5,
      -2,
      -1,
      2
    ],
    "io_out": [
      -2,
      -4,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),-4)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [4]",
    "output": "generated_output : list = take(drop(take(sort_des(drop([3, 5, 4],1)),11),1),2)",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(drop(take(sort_des(drop(input,1)),11),1),2)"
  },
  {
    "input": "input : list = [-1, -1, -3, 5, 1, 5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take(mul_n(sort_des(take([-1, -1, -3, 5, 1, 5],1)),-5),21),-5)",
    "io_inp": [
      -1,
      -1,
      -3,
      5,
      1,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_des(take(input,1)),-5),21),-5)"
  },
  {
    "input": "input : list = [-1, -4, -3, -3, -5, -5]\noutput : list = [-16, -16, -13, -10, -10, -4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(mul_n([-1, -4, -3, -3, -5, -5],3),-3),-4)))",
    "io_inp": [
      -1,
      -4,
      -3,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -16,
      -16,
      -13,
      -10,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(mul_n(input,3),-3),-4)))"
  },
  {
    "input": "input : list = [5, -1, 3, 2, -3]\noutput : list = [-1, 1, 4, 5, 7]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(sort_asc([5, -1, 3, 2, -3]),-2),4),4),1)",
    "io_inp": [
      5,
      -1,
      3,
      2,
      -3
    ],
    "io_out": [
      -1,
      1,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(sort_asc(input),-2),4),4),1)"
  },
  {
    "input": "input : list = [-1, 2, -4, 1, 3, -2]\noutput : list = [-2, 3, 1, -4, 2]",
    "output": "generated_output : list = take(reverse(drop([-1, 2, -4, 1, 3, -2],1)),10)",
    "io_inp": [
      -1,
      2,
      -4,
      1,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      1,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(drop(input,1)),10)"
  },
  {
    "input": "input : list = [1, 5, 0, 2]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 5, 0, 2],1)",
    "io_inp": [
      1,
      5,
      0,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 3, 0, 4, 0, 4]\noutput : list = [-2, 0, 0, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(sub_n([-2, 3, 0, 4, 0, 4],-4),-4))))",
    "io_inp": [
      -2,
      3,
      0,
      4,
      0,
      4
    ],
    "io_out": [
      -2,
      0,
      0,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(sub_n(input,-4),-4))))"
  },
  {
    "input": "input : list = [3, 4, -4, -2]\noutput : list = [-3, -2, -10, -8]",
    "output": "generated_output : list = add_n(sub_n([3, 4, -4, -2],3),-3)",
    "io_inp": [
      3,
      4,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),-3)"
  },
  {
    "input": "input : list = [2, 2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des(drop([2, 2, -1],1))",
    "io_inp": [
      2,
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [2, 42, 34]",
    "output": "generated_output : list = sub_n(take(mul_n(take(add_n([5, -5, -3],-5),19),-4),26),-2)",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      2,
      42,
      34
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(add_n(input,-5),19),-4),26),-2)"
  },
  {
    "input": "input : list = [-5, -3, -5, -3, -1, -2]\noutput : list = [1, 1, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n(sub_n([-5, -3, -5, -3, -1, -2],-3),3),15),1))",
    "io_inp": [
      -5,
      -3,
      -5,
      -3,
      -1,
      -2
    ],
    "io_out": [
      1,
      1,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(sub_n(input,-3),3),15),1))"
  },
  {
    "input": "input : list = [2, -1, -3, -2, -5]\noutput : list = [-8, -5, -6, -4, -1]",
    "output": "generated_output : list = reverse(add_n(add_n([2, -1, -3, -2, -5],-4),1))",
    "io_inp": [
      2,
      -1,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -5,
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-4),1))"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 2, 1]\noutput : list = [-7, -6, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sub_n([-5, -4, 0, -1, 2, 1],2)))))",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      2,
      1
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [5, 6, 9]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(sub_n([1, 0, 4],-5)))))",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [5, 2, 4, 1, -4, 3]\noutput : list = [-20, 5, 10, 15, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse([5, 2, 4, 1, -4, 3]))),5))",
    "io_inp": [
      5,
      2,
      4,
      1,
      -4,
      3
    ],
    "io_out": [
      -20,
      5,
      10,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse(input))),5))"
  },
  {
    "input": "input : list = [5, 5, 3, -1, -3, -1]\noutput : list = [-1, -3, -1, 3, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, 3, -1, -3, -1])",
    "io_inp": [
      5,
      5,
      3,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, -3]\noutput : list = [3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([-5, 3, -3])))",
    "io_inp": [
      -5,
      3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 3, -1],1)",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 0, 1, 2, -1, 4]\noutput : list = [-3, -1, 0, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(add_n([-3, 0, 1, 2, -1, 4],-5),-5))))",
    "io_inp": [
      -3,
      0,
      1,
      2,
      -1,
      4
    ],
    "io_out": [
      -3,
      -1,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(add_n(input,-5),-5))))"
  },
  {
    "input": "input : list = [-5, -2, 5, 1]\noutput : list = [0, 3, 6, 10]",
    "output": "generated_output : list = sort_asc(sub_n([-5, -2, 5, 1],-5))",
    "io_inp": [
      -5,
      -2,
      5,
      1
    ],
    "io_out": [
      0,
      3,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [0, -8, 16]",
    "output": "generated_output : list = mul_n(add_n(sub_n([1, 3, -3],3),2),-4)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      0,
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,3),2),-4)"
  },
  {
    "input": "input : list = [0, -1, 1, -1, -3, 4]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take([0, -1, 1, -1, -3, 4],1))",
    "io_inp": [
      0,
      -1,
      1,
      -1,
      -3,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, 0, -2, -1, 0]\noutput : list = [4, 0, 0, -1, -2]",
    "output": "generated_output : list = sort_des([4, 0, -2, -1, 0])",
    "io_inp": [
      4,
      0,
      -2,
      -1,
      0
    ],
    "io_out": [
      4,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, -2, -3]\noutput : list = [-52, -64]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(take([4, 5, -2, -3],2),-3)),4),4)",
    "io_inp": [
      4,
      5,
      -2,
      -3
    ],
    "io_out": [
      -52,
      -64
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(take(input,2),-3)),4),4)"
  },
  {
    "input": "input : list = [0, 2, -4, 5, -5]\noutput : list = [-2, 1, 3, 7, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(reverse([0, 2, -4, 5, -5]),3))),-1)",
    "io_inp": [
      0,
      2,
      -4,
      5,
      -5
    ],
    "io_out": [
      -2,
      1,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(reverse(input),3))),-1)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [-6, -18, 0]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n([0, -4, 2],-1),-1),1),3)",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      -6,
      -18,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(input,-1),-1),1),3)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-66, 54]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(mul_n([5, -5],-4),15),-2),-3))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -66,
      54
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(mul_n(input,-4),15),-2),-3))"
  },
  {
    "input": "input : list = [-2, -5, -2, 4]\noutput : list = [7, -5, -5, -11]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(mul_n([-2, -5, -2, 4],2),2),3)))",
    "io_inp": [
      -2,
      -5,
      -2,
      4
    ],
    "io_out": [
      7,
      -5,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(mul_n(input,2),2),3)))"
  },
  {
    "input": "input : list = [4, 4, -4, -1, -3, 5]\noutput : list = [-25, 15, 5, 20, -20, -20]",
    "output": "generated_output : list = reverse(mul_n([4, 4, -4, -1, -3, 5],-5))",
    "io_inp": [
      4,
      4,
      -4,
      -1,
      -3,
      5
    ],
    "io_out": [
      -25,
      15,
      5,
      20,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [2, 2]",
    "output": "generated_output : list = sub_n([0, 0],-2)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [-9, -6, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sort_des([1, 5, -2]),-4))),3)",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      -9,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sort_des(input),-4))),3)"
  },
  {
    "input": "input : list = [4, -2, -1, 5]\noutput : list = [5, 4, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse([4, -2, -1, 5]))))",
    "io_inp": [
      4,
      -2,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [0, -1, -5]\noutput : list = [6, 4, -4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_des([0, -1, -5]),2),3),-4),-5)",
    "io_inp": [
      0,
      -1,
      -5
    ],
    "io_out": [
      6,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_des(input),2),3),-4),-5)"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(sort_asc([-3, -5, -3]),2),28),2))",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(sort_asc(input),2),28),2))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des([0, -4])),12)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),12)"
  },
  {
    "input": "input : list = [4, -5, -3, 0]\noutput : list = [18, 12, 3, -9]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sort_des([4, -5, -3, 0]),-3),-4)),-3)",
    "io_inp": [
      4,
      -5,
      -3,
      0
    ],
    "io_out": [
      18,
      12,
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sort_des(input),-3),-4)),-3)"
  },
  {
    "input": "input : list = [-4, 1, 0, 1]\noutput : list = [0, 0, -4, -20]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse([-4, 1, 0, 1]),4),4)))",
    "io_inp": [
      -4,
      1,
      0,
      1
    ],
    "io_out": [
      0,
      0,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse(input),4),4)))"
  },
  {
    "input": "input : list = [-5, 3, -5, 5, -5]\noutput : list = [-2, 6, -2, 8, -2]",
    "output": "generated_output : list = add_n([-5, 3, -5, 5, -5],3)",
    "io_inp": [
      -5,
      3,
      -5,
      5,
      -5
    ],
    "io_out": [
      -2,
      6,
      -2,
      8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, -1, 2, -5, -1, 1]\noutput : list = [0, 1, 4, 4, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-4, -1, 2, -5, -1, 1]),-5))",
    "io_inp": [
      -4,
      -1,
      2,
      -5,
      -1,
      1
    ],
    "io_out": [
      0,
      1,
      4,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [3, 4, 1, 3, 4]\noutput : list = [2, 6, 6, 8, 8]",
    "output": "generated_output : list = mul_n(sort_asc([3, 4, 1, 3, 4]),2)",
    "io_inp": [
      3,
      4,
      1,
      3,
      4
    ],
    "io_out": [
      2,
      6,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [4, -1, 0, 2, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(drop([4, -1, 0, 2, 1],3),9),5)),2)",
    "io_inp": [
      4,
      -1,
      0,
      2,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(drop(input,3),9),5)),2)"
  },
  {
    "input": "input : list = [4, -3, 2, -4]\noutput : list = [4, -10, 0, -12]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(sub_n([4, -3, 2, -4],1),1),1),2),33)",
    "io_inp": [
      4,
      -3,
      2,
      -4
    ],
    "io_out": [
      4,
      -10,
      0,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(sub_n(input,1),1),1),2),33)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(sub_n([4, -1],-1)))))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-4, -4, -16]",
    "output": "generated_output : list = mul_n([-1, -1, -4],4)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, 5, -5, -1]\noutput : list = [-5, -25, 25, -20]",
    "output": "generated_output : list = mul_n(reverse([-4, 5, -5, -1]),5)",
    "io_inp": [
      -4,
      5,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -25,
      25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-5, -3, -1, -3, -5, 2]\noutput : list = [-7, -7, -5, -5, -3, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(add_n([-5, -3, -1, -3, -5, 2],-4),-2))))",
    "io_inp": [
      -5,
      -3,
      -1,
      -3,
      -5,
      2
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(add_n(input,-4),-2))))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = mul_n(reverse([0, 5]),1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [5, -1, 1, -3]\noutput : list = [5, -1]",
    "output": "generated_output : list = take([5, -1, 1, -3],2)",
    "io_inp": [
      5,
      -1,
      1,
      -3
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-4, 4]",
    "output": "generated_output : list = mul_n(take(take(reverse(reverse([2, -2])),17),8),-2)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(reverse(input)),17),8),-2)"
  },
  {
    "input": "input : list = [5, 0, 4, 1, -5, 3]\noutput : list = [4, 1, -5, 3]",
    "output": "generated_output : list = drop([5, 0, 4, 1, -5, 3],2)",
    "io_inp": [
      5,
      0,
      4,
      1,
      -5,
      3
    ],
    "io_out": [
      4,
      1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [-1, -1, 3]",
    "output": "generated_output : list = sub_n(add_n([-1, -1, 3],-4),-4)",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),-4)"
  },
  {
    "input": "input : list = [-5, -3, -4, 5]\noutput : list = [5, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, -3, -4, 5]))",
    "io_inp": [
      -5,
      -3,
      -4,
      5
    ],
    "io_out": [
      5,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, -2, -4, -4, 0, 5]\noutput : list = [24, 18, 9, 3, -3, -3]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_des([3, -2, -4, -4, 0, 5]),3),4),1),5)",
    "io_inp": [
      3,
      -2,
      -4,
      -4,
      0,
      5
    ],
    "io_out": [
      24,
      18,
      9,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_des(input),3),4),1),5)"
  },
  {
    "input": "input : list = [1, 4, -1, 2, 2]\noutput : list = [15, 30, 5, 20, 20]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(add_n([1, 4, -1, 2, 2],2),5),1),4),3)",
    "io_inp": [
      1,
      4,
      -1,
      2,
      2
    ],
    "io_out": [
      15,
      30,
      5,
      20,
      20
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(add_n(input,2),5),1),4),3)"
  },
  {
    "input": "input : list = [5, -1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(drop([5, -1, -1],1)),-3),-2)",
    "io_inp": [
      5,
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(drop(input,1)),-3),-2)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [0, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(sort_des([-2, 3, -1]),13))),-2)",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(sort_des(input),13))),-2)"
  },
  {
    "input": "input : list = [2, 1, 3, -3, 4, -2]\noutput : list = [9, 8, 7, 6, 3, 2]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_asc([2, 1, 3, -3, 4, -2]))),5),1)",
    "io_inp": [
      2,
      1,
      3,
      -3,
      4,
      -2
    ],
    "io_out": [
      9,
      8,
      7,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_asc(input))),5),1)"
  },
  {
    "input": "input : list = [-5, 0, 4, 2]\noutput : list = [-3, -18, -30, -24]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(sub_n([-5, 0, 4, 2],-3),3),-1),-4),5)",
    "io_inp": [
      -5,
      0,
      4,
      2
    ],
    "io_out": [
      -3,
      -18,
      -30,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(sub_n(input,-3),3),-1),-4),5)"
  },
  {
    "input": "input : list = [2, -1, 4, -1]\noutput : list = [8, 8, 11, 13]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(sub_n([2, -1, 4, -1],-5))),22),-4)",
    "io_inp": [
      2,
      -1,
      4,
      -1
    ],
    "io_out": [
      8,
      8,
      11,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(sub_n(input,-5))),22),-4)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [0, 4]",
    "output": "generated_output : list = sub_n(take(sort_asc([-1, -5]),4),-5)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),4),-5)"
  },
  {
    "input": "input : list = [-5, 3, -4, 5, 4]\noutput : list = [-18, -20]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(drop([-5, 3, -4, 5, 4],3),1),4),-2))",
    "io_inp": [
      -5,
      3,
      -4,
      5,
      4
    ],
    "io_out": [
      -18,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(drop(input,3),1),4),-2))"
  },
  {
    "input": "input : list = [1, 1, -3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(sort_asc(drop([1, 1, -3, 0],2)))",
    "io_inp": [
      1,
      1,
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(reverse(take(take(sort_des([-4, 0]),8),11)))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sort_des(input),8),11)))"
  },
  {
    "input": "input : list = [-1, 5, -5, 0, -2]\noutput : list = [0]",
    "output": "generated_output : list = drop(mul_n(sort_des(add_n([-1, 5, -5, 0, -2],5)),-2),4)",
    "io_inp": [
      -1,
      5,
      -5,
      0,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_des(add_n(input,5)),-2),4)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(reverse([-1, 5])),5),14),3)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(reverse(input)),5),14),3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -2],4))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [0, -1, -5, -2, 2]\noutput : list = [-10, -4, -1, 2, 11]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([0, -1, -5, -2, 2],-3),-4))",
    "io_inp": [
      0,
      -1,
      -5,
      -2,
      2
    ],
    "io_out": [
      -10,
      -4,
      -1,
      2,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,-3),-4))"
  },
  {
    "input": "input : list = [-1, 4, 3, -2, -1, -1]\noutput : list = [37, 28, -8, -8, -8, -17]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(mul_n([-1, 4, 3, -2, -1, -1],-3),-3),-4)),3)",
    "io_inp": [
      -1,
      4,
      3,
      -2,
      -1,
      -1
    ],
    "io_out": [
      37,
      28,
      -8,
      -8,
      -8,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(mul_n(input,-3),-3),-4)),3)"
  },
  {
    "input": "input : list = [3, -1, 5, -5, 2, -2]\noutput : list = [-5, -2, -1, 2, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc([3, -1, 5, -5, 2, -2])))))",
    "io_inp": [
      3,
      -1,
      5,
      -5,
      2,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -1, 0, -4, -1]\noutput : list = [-30, -10, -5, -25, -10]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([-5, -1, 0, -4, -1],5),4),1)",
    "io_inp": [
      -5,
      -1,
      0,
      -4,
      -1
    ],
    "io_out": [
      -30,
      -10,
      -5,
      -25,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,5),4),1)"
  },
  {
    "input": "input : list = [-4, -5, -4, 5, -4, 3]\noutput : list = [16, 20]",
    "output": "generated_output : list = mul_n(sort_des(take(reverse(take([-4, -5, -4, 5, -4, 3],2)),7)),-4)",
    "io_inp": [
      -4,
      -5,
      -4,
      5,
      -4,
      3
    ],
    "io_out": [
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(reverse(take(input,2)),7)),-4)"
  },
  {
    "input": "input : list = [0, 1, -2, 4]\noutput : list = [11, 8, 14]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(drop([0, 1, -2, 4],1),5))),5)",
    "io_inp": [
      0,
      1,
      -2,
      4
    ],
    "io_out": [
      11,
      8,
      14
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(drop(input,1),5))),5)"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [-1, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 1, -1])",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, -3, -1]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(drop(add_n(take(mul_n([-3, -5, -3, -1],-2),15),-3),3))",
    "io_inp": [
      -3,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(take(mul_n(input,-2),15),-3),3))"
  },
  {
    "input": "input : list = [-1, -3, 5, -5]\noutput : list = [6, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([-1, -3, 5, -5],-4),3))",
    "io_inp": [
      -1,
      -3,
      5,
      -5
    ],
    "io_out": [
      6,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,-4),3))"
  },
  {
    "input": "input : list = [1, -3, -1]\noutput : list = [10, 14]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(drop([1, -3, -1],1)),4),3),-2)",
    "io_inp": [
      1,
      -3,
      -1
    ],
    "io_out": [
      10,
      14
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(drop(input,1)),4),3),-2)"
  },
  {
    "input": "input : list = [-4, 2, -4, -1]\noutput : list = [-4, -4, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, 2, -4, -1]))",
    "io_inp": [
      -4,
      2,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -5, 5, 1, -5, 5]\noutput : list = [-10, 10, -2, -10, 10, 0]",
    "output": "generated_output : list = reverse(mul_n([0, -5, 5, 1, -5, 5],-2))",
    "io_inp": [
      0,
      -5,
      5,
      1,
      -5,
      5
    ],
    "io_out": [
      -10,
      10,
      -2,
      -10,
      10,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(reverse([2, 2]),-2),-1),4),-1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(reverse(input),-2),-1),4),-1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-8, 12]",
    "output": "generated_output : list = mul_n([2, -3],-4)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, -3, 4, -5, 4, -3]\noutput : list = [6, -6, 15, -12, 15, -6]",
    "output": "generated_output : list = mul_n(sub_n([1, -3, 4, -5, 4, -3],-1),3)",
    "io_inp": [
      1,
      -3,
      4,
      -5,
      4,
      -3
    ],
    "io_out": [
      6,
      -6,
      15,
      -12,
      15,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),3)"
  },
  {
    "input": "input : list = [1, 0, -4, 4]\noutput : list = [0, -40, -20, -15]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(sub_n([1, 0, -4, 4],4)),5)))",
    "io_inp": [
      1,
      0,
      -4,
      4
    ],
    "io_out": [
      0,
      -40,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(sub_n(input,4)),5)))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [4, -2]",
    "output": "generated_output : list = mul_n(sort_des([2, -1]),2)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-45, -15]",
    "output": "generated_output : list = mul_n(reverse(add_n([-1, 5],4)),-5)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -45,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,4)),-5)"
  },
  {
    "input": "input : list = [-3, 0, -1, 1, -4, 0]\noutput : list = [4, 3, 3, 2, 0, -1]",
    "output": "generated_output : list = take(sub_n(take(sort_des(sort_asc([-3, 0, -1, 1, -4, 0])),24),-3),54)",
    "io_inp": [
      -3,
      0,
      -1,
      1,
      -4,
      0
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(sort_asc(input)),24),-3),54)"
  },
  {
    "input": "input : list = [5, 4, 0, 3, 0]\noutput : list = [5]",
    "output": "generated_output : list = drop(reverse(sort_des([5, 4, 0, 3, 0])),4)",
    "io_inp": [
      5,
      4,
      0,
      3,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_des(input)),4)"
  },
  {
    "input": "input : list = [0, -2, -4, 5]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(take([0, -2, -4, 5],1)),-2)),-4)",
    "io_inp": [
      0,
      -2,
      -4,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(take(input,1)),-2)),-4)"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [-5, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([-5, 4, -1])))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [5, -5, 5, 1, 0]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(drop([5, -5, 5, 1, 0],2),22),-1),12))",
    "io_inp": [
      5,
      -5,
      5,
      1,
      0
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(drop(input,2),22),-1),12))"
  },
  {
    "input": "input : list = [1, -3, -4, 4, 5]\noutput : list = [-5, -4, -1, 3, 4]",
    "output": "generated_output : list = take(mul_n(reverse(take(sort_asc([1, -3, -4, 4, 5]),22)),-1),18)",
    "io_inp": [
      1,
      -3,
      -4,
      4,
      5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(sort_asc(input),22)),-1),18)"
  },
  {
    "input": "input : list = [-4, -2, -4, -1]\noutput : list = [-12, -12, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(sub_n([-4, -2, -4, -1],4),-3),-2),4))",
    "io_inp": [
      -4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(sub_n(input,4),-3),-2),4))"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [5, 2, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([0, 3, -3]),-2))",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [-9, -4, -2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc([0, -5, 2]),4),5)),5)",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      -9,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc(input),4),5)),5)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(sort_asc([5, 1, 4])))),5)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [0, 4, 0, -4, 5, 5]\noutput : list = [-1, -1]",
    "output": "generated_output : list = drop(add_n(sub_n(add_n(mul_n([0, 4, 0, -4, 5, 5],1),-3),-2),-5),4)",
    "io_inp": [
      0,
      4,
      0,
      -4,
      5,
      5
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(add_n(mul_n(input,1),-3),-2),-5),4)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [6, 6, 3]",
    "output": "generated_output : list = sub_n([1, 1, -2],-5)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, 2, 0, -5, 4, -4]\noutput : list = [3, 1, -1, -1, -5, -6]",
    "output": "generated_output : list = sort_des(add_n([0, 2, 0, -5, 4, -4],-1))",
    "io_inp": [
      0,
      2,
      0,
      -5,
      4,
      -4
    ],
    "io_out": [
      3,
      1,
      -1,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [5, -4, -3, -3, 5]\noutput : list = [8, -1]",
    "output": "generated_output : list = sub_n(take([5, -4, -3, -3, 5],2),-3)",
    "io_inp": [
      5,
      -4,
      -3,
      -3,
      5
    ],
    "io_out": [
      8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-3)"
  },
  {
    "input": "input : list = [-4, 2, 4, 2, -2, 5]\noutput : list = [5, 4, 2, 2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des([-4, 2, 4, 2, -2, 5]))))",
    "io_inp": [
      -4,
      2,
      4,
      2,
      -2,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [1, 2, 1, -1]\noutput : list = [5, -5, -5, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(sort_asc([1, 2, 1, -1])),-5)))",
    "io_inp": [
      1,
      2,
      1,
      -1
    ],
    "io_out": [
      5,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [0, 0, -5]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n([0, 0, -5],-2),1),5),2)",
    "io_inp": [
      0,
      0,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(input,-2),1),5),2)"
  },
  {
    "input": "input : list = [4, 0, 0, 0, -1, 5]\noutput : list = [0, 0, 0, -1, 5]",
    "output": "generated_output : list = drop([4, 0, 0, 0, -1, 5],1)",
    "io_inp": [
      4,
      0,
      0,
      0,
      -1,
      5
    ],
    "io_out": [
      0,
      0,
      0,
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 2, -4, -4]\noutput : list = [-10, -10, -4, -2]",
    "output": "generated_output : list = sub_n(sub_n(reverse([4, 2, -4, -4]),2),4)",
    "io_inp": [
      4,
      2,
      -4,
      -4
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),2),4)"
  },
  {
    "input": "input : list = [-4, -2, 4, -3]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take([-4, -2, 4, -3],2)",
    "io_inp": [
      -4,
      -2,
      4,
      -3
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -3, 3, 0, 4, -3]\noutput : list = [7, 0, 4, 1, 7, 8]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(add_n([-4, -3, 3, 0, 4, -3],-3),22)),-1),-1)",
    "io_inp": [
      -4,
      -3,
      3,
      0,
      4,
      -3
    ],
    "io_out": [
      7,
      0,
      4,
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(add_n(input,-3),22)),-1),-1)"
  },
  {
    "input": "input : list = [-3, 0, 1, 1, -4]\noutput : list = [24, 19, 4, -1, -1]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_asc([-3, 0, 1, 1, -4])),-5),-4))",
    "io_inp": [
      -3,
      0,
      1,
      1,
      -4
    ],
    "io_out": [
      24,
      19,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_asc(input)),-5),-4))"
  },
  {
    "input": "input : list = [0, 3, -4, -4]\noutput : list = [3, 6, -1, -1]",
    "output": "generated_output : list = sub_n([0, 3, -4, -4],-3)",
    "io_inp": [
      0,
      3,
      -4,
      -4
    ],
    "io_out": [
      3,
      6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 0, -5, 0, 5]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(mul_n(sub_n(drop(sort_asc([-4, 0, -5, 0, 5]),4),4),-2))",
    "io_inp": [
      -4,
      0,
      -5,
      0,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(drop(sort_asc(input),4),4),-2))"
  },
  {
    "input": "input : list = [-5, 5, 3, -4, 2, -5]\noutput : list = [0, 0, 1, 7, 8, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse([-5, 5, 3, -4, 2, -5]))),-5)",
    "io_inp": [
      -5,
      5,
      3,
      -4,
      2,
      -5
    ],
    "io_out": [
      0,
      0,
      1,
      7,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(input))),-5)"
  },
  {
    "input": "input : list = [0, 2, -1, 5, 0, -3]\noutput : list = [-16, -13, -8, -14, -11, -13]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(sub_n([0, 2, -1, 5, 0, -3],4),26),5)),4)",
    "io_inp": [
      0,
      2,
      -1,
      5,
      0,
      -3
    ],
    "io_out": [
      -16,
      -13,
      -8,
      -14,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(sub_n(input,4),26),5)),4)"
  },
  {
    "input": "input : list = [3, 0, 0, 4, 2]\noutput : list = [-15, -15, -30]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(mul_n([3, 0, 0, 4, 2],1),3),3)),-5)",
    "io_inp": [
      3,
      0,
      0,
      4,
      2
    ],
    "io_out": [
      -15,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(mul_n(input,1),3),3)),-5)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [2, -10]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(sub_n([-2, -5],3),5),-2),-1),-2)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(sub_n(input,3),5),-2),-1),-2)"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [-11, -2, 16]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc([-5, 1, 4]),-3),-1))",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      -11,
      -2,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(input),-3),-1))"
  },
  {
    "input": "input : list = [1, 0, 0, -5, -3, 5]\noutput : list = [-10, -6, 0, 0, 2, 10]",
    "output": "generated_output : list = mul_n(sort_asc([1, 0, 0, -5, -3, 5]),2)",
    "io_inp": [
      1,
      0,
      0,
      -5,
      -3,
      5
    ],
    "io_out": [
      -10,
      -6,
      0,
      0,
      2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [5, -4, 4, -3, 1]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(mul_n(take(take(take([5, -4, 4, -3, 1],1),16),1),-1),-3)",
    "io_inp": [
      5,
      -4,
      4,
      -3,
      1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(take(input,1),16),1),-1),-3)"
  },
  {
    "input": "input : list = [1, -2, 0, -4]\noutput : list = [3, 2, 0, -2]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(sort_asc([1, -2, 0, -4])),1),22),-3)",
    "io_inp": [
      1,
      -2,
      0,
      -4
    ],
    "io_out": [
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(sort_asc(input)),1),22),-3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [1, 5]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(sort_asc([-1, 3]))),4),-1)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(sort_asc(input))),4),-1)"
  },
  {
    "input": "input : list = [-4, 1, 0, 5, 4]\noutput : list = [0, 5, 4]",
    "output": "generated_output : list = drop([-4, 1, 0, 5, 4],2)",
    "io_inp": [
      -4,
      1,
      0,
      5,
      4
    ],
    "io_out": [
      0,
      5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 0, 0, 5]\noutput : list = [-4, -2, -2, 3]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sub_n([-2, 0, 0, 5],-1),9),-3),10))",
    "io_inp": [
      -2,
      0,
      0,
      5
    ],
    "io_out": [
      -4,
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sub_n(input,-1),9),-3),10))"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(sub_n([-3, -4, 2],-1),4),4)))",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(sub_n(input,-1),4),4)))"
  },
  {
    "input": "input : list = [-1, -1, 4, 0, -5]\noutput : list = [3, 3, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(take([-1, -1, 4, 0, -5],3),15))),4)",
    "io_inp": [
      -1,
      -1,
      4,
      0,
      -5
    ],
    "io_out": [
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(take(input,3),15))),4)"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [0, 3, 5]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(reverse([0, -5, -2])),2),-3),9)",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(reverse(input)),2),-3),9)"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [-2, -3, -4]",
    "output": "generated_output : list = take(take(sort_des(add_n(sort_des([-3, -2, -1]),-1)),32),29)",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(sort_des(input),-1)),32),29)"
  },
  {
    "input": "input : list = [-1, -2, 5, -3, -3, 4]\noutput : list = [-15, -10, 15, 20, 25, 25]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(add_n([-1, -2, 5, -3, -3, 4],1),-3))),-5)",
    "io_inp": [
      -1,
      -2,
      5,
      -3,
      -3,
      4
    ],
    "io_out": [
      -15,
      -10,
      15,
      20,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(add_n(input,1),-3))),-5)"
  },
  {
    "input": "input : list = [-2, 4, 1, 0]\noutput : list = [-5, -3, -2, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sort_asc([-2, 4, 1, 0])))),3)",
    "io_inp": [
      -2,
      4,
      1,
      0
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [1, -1, 0, 3, -2]\noutput : list = [29, 11, 2, -7, -16]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(mul_n([1, -1, 0, 3, -2],-3),-3)),30),2)",
    "io_inp": [
      1,
      -1,
      0,
      3,
      -2
    ],
    "io_out": [
      29,
      11,
      2,
      -7,
      -16
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(mul_n(input,-3),-3)),30),2)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-12, -4]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse([4, -4]),1),-2),4),-2)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -12,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse(input),1),-2),4),-2)"
  },
  {
    "input": "input : list = [5, 5, -1, 1]\noutput : list = [5, 5, 1, -1]",
    "output": "generated_output : list = sort_des([5, 5, -1, 1])",
    "io_inp": [
      5,
      5,
      -1,
      1
    ],
    "io_out": [
      5,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [15, 10, -10]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sort_asc([4, 3, -1])),1),5))",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      15,
      10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sort_asc(input)),1),5))"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = take(mul_n(add_n(add_n([-1, 1, 3],-2),1),2),7)",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(input,-2),1),2),7)"
  },
  {
    "input": "input : list = [3, 1, 5, -5, 3, -1]\noutput : list = [19, 3, -5, -13, -13, -21]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(mul_n([3, 1, 5, -5, 3, -1],-4))),-1),26)",
    "io_inp": [
      3,
      1,
      5,
      -5,
      3,
      -1
    ],
    "io_out": [
      19,
      3,
      -5,
      -13,
      -13,
      -21
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(mul_n(input,-4))),-1),26)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-25, -40]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(sub_n([4, 1],-4)),-5)))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -25,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(sub_n(input,-4)),-5)))"
  },
  {
    "input": "input : list = [-3, -5, -3, 4, -3, 4]\noutput : list = [7, 0, -2, 0]",
    "output": "generated_output : list = reverse(take(take(add_n([-3, -5, -3, 4, -3, 4],3),29),4))",
    "io_inp": [
      -3,
      -5,
      -3,
      4,
      -3,
      4
    ],
    "io_out": [
      7,
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(input,3),29),4))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-7, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(add_n([5, -5],2))),4))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -7,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(add_n(input,2))),4))"
  },
  {
    "input": "input : list = [2, 3, -2, -5, 4]\noutput : list = [2, 3, -2]",
    "output": "generated_output : list = take([2, 3, -2, -5, 4],3)",
    "io_inp": [
      2,
      3,
      -2,
      -5,
      4
    ],
    "io_out": [
      2,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [1, 0, 1, 4]\noutput : list = [2, -1, -1, -2]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sort_asc([1, 0, 1, 4])),5),-3),-1)",
    "io_inp": [
      1,
      0,
      1,
      4
    ],
    "io_out": [
      2,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sort_asc(input)),5),-3),-1)"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [20, -4, -4]",
    "output": "generated_output : list = mul_n(sort_asc([1, 1, -5]),-4)",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      20,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-5, -2, -1, 5]\noutput : list = [1, 4, 5, 11]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_des([-5, -2, -1, 5])),-5),5),4)",
    "io_inp": [
      -5,
      -2,
      -1,
      5
    ],
    "io_out": [
      1,
      4,
      5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_des(input)),-5),5),4)"
  },
  {
    "input": "input : list = [-1, -2, 1]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(add_n([-1, -2, 1],-2)))))",
    "io_inp": [
      -1,
      -2,
      1
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [1, -1, 1, -3, 3, -2]\noutput : list = [36, 12, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(take([1, -1, 1, -3, 3, -2],4),-3),4),1))",
    "io_inp": [
      1,
      -1,
      1,
      -3,
      3,
      -2
    ],
    "io_out": [
      36,
      12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(take(input,4),-3),4),1))"
  },
  {
    "input": "input : list = [-1, 5, 1, 3, 0]\noutput : list = [1, 2, 3, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([-1, 5, 1, 3, 0])),-2)",
    "io_inp": [
      -1,
      5,
      1,
      3,
      0
    ],
    "io_out": [
      1,
      2,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [8]",
    "output": "generated_output : list = take(mul_n(reverse(drop(add_n([-3, -1],3),1)),4),6)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(drop(add_n(input,3),1)),4),6)"
  },
  {
    "input": "input : list = [3, 2, 3]\noutput : list = [8, 4, 8]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(add_n([3, 2, 3],-1))),14),4)",
    "io_inp": [
      3,
      2,
      3
    ],
    "io_out": [
      8,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(add_n(input,-1))),14),4)"
  },
  {
    "input": "input : list = [-4, 0, -4, 3, -4, 0]\noutput : list = [5, 5, 5, 25, 25, 40]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sub_n([-4, 0, -4, 3, -4, 0],-5),-5),-1)))",
    "io_inp": [
      -4,
      0,
      -4,
      3,
      -4,
      0
    ],
    "io_out": [
      5,
      5,
      5,
      25,
      25,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sub_n(input,-5),-5),-1)))"
  },
  {
    "input": "input : list = [-1, 0, -1, -2, -3, 4]\noutput : list = [0, 4, 5, 5, 6, 7]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(reverse([-1, 0, -1, -2, -3, 4])),17),-1),-4)",
    "io_inp": [
      -1,
      0,
      -1,
      -2,
      -3,
      4
    ],
    "io_out": [
      0,
      4,
      5,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(reverse(input)),17),-1),-4)"
  },
  {
    "input": "input : list = [-3, 3, -3, 3]\noutput : list = [3, 3, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-3, 3, -3, 3])))",
    "io_inp": [
      -3,
      3,
      -3,
      3
    ],
    "io_out": [
      3,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, 5, 2, 4, 2, 4]\noutput : list = [2, 2, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(take([2, 5, 2, 4, 2, 4],4)))))",
    "io_inp": [
      2,
      5,
      2,
      4,
      2,
      4
    ],
    "io_out": [
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(take(input,4)))))"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [-9, -7, -7]",
    "output": "generated_output : list = add_n([-4, -2, -2],-5)",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      -9,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, 0, 0, 0]\noutput : list = [1, -3, -3, -3]",
    "output": "generated_output : list = sub_n([4, 0, 0, 0],3)",
    "io_inp": [
      4,
      0,
      0,
      0
    ],
    "io_out": [
      1,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, 5, 3, -2]\noutput : list = [26, 16, 16, -9]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(mul_n([3, 5, 3, -2],5),-1))))",
    "io_inp": [
      3,
      5,
      3,
      -2
    ],
    "io_out": [
      26,
      16,
      16,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(mul_n(input,5),-1))))"
  },
  {
    "input": "input : list = [-3, -2, 4, 1, 4, -2]\noutput : list = [4, 4, 1, -2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des([-3, -2, 4, 1, 4, -2]))",
    "io_inp": [
      -3,
      -2,
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -5, 2, 2, 0]\noutput : list = [-12, 8]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc([2, -5, 2, 2, 0]),2),-2),4)",
    "io_inp": [
      2,
      -5,
      2,
      2,
      0
    ],
    "io_out": [
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(input),2),-2),4)"
  },
  {
    "input": "input : list = [-1, 2, 2, 3, 3, 5]\noutput : list = [5, 3, 3, 2, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, 2, 3, 3, 5])",
    "io_inp": [
      -1,
      2,
      2,
      3,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-2, 4, 2])),1)",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [3, -3, -3]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = sub_n(sort_asc([3, -3, -3]),-2)",
    "io_inp": [
      3,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(sort_des([1, 5])),2),12),4)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(sort_des(input)),2),12),4)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sub_n(take(take(add_n(sort_asc([-1, 4]),2),17),17),4)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(sort_asc(input),2),17),17),4)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = take(take(sort_asc([1, -5]),3),12)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),3),12)"
  },
  {
    "input": "input : list = [2, -1, 0, -2, -1, 1]\noutput : list = [-2, -1, -1, 0, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(sort_asc([2, -1, 0, -2, -1, 1]),1),7)),1)",
    "io_inp": [
      2,
      -1,
      0,
      -2,
      -1,
      1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(sort_asc(input),1),7)),1)"
  },
  {
    "input": "input : list = [-1, -5, 4, 1]\noutput : list = [2, -1, -3, -7]",
    "output": "generated_output : list = sort_des(sub_n([-1, -5, 4, 1],2))",
    "io_inp": [
      -1,
      -5,
      4,
      1
    ],
    "io_out": [
      2,
      -1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [-4, 4, 2, 4, 3, -2]\noutput : list = [-20, 10, 20]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(take([-4, 4, 2, 4, 3, -2],3)),1),5))",
    "io_inp": [
      -4,
      4,
      2,
      4,
      3,
      -2
    ],
    "io_out": [
      -20,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(take(input,3)),1),5))"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [8, -4, -8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([2, 4, -4])),-2)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      8,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),-2)"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [12, 0, 8]",
    "output": "generated_output : list = take(mul_n([3, 0, 2],4),6)",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      12,
      0,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),6)"
  },
  {
    "input": "input : list = [-3, -2, 5, 5, 3, -5]\noutput : list = [7, 7, 5, 0, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sort_des([-3, -2, 5, 5, 3, -5]),2),14)))",
    "io_inp": [
      -3,
      -2,
      5,
      5,
      3,
      -5
    ],
    "io_out": [
      7,
      7,
      5,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sort_des(input),2),14)))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n([-2, -1],-2))))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(input,-2))))"
  },
  {
    "input": "input : list = [4, -3, -3, 1]\noutput : list = [-6, -6, -2, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(add_n([4, -3, -3, 1],-3)))))",
    "io_inp": [
      4,
      -3,
      -3,
      1
    ],
    "io_out": [
      -6,
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(mul_n([-1, 2, 3],-1)),-1)))",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(mul_n(input,-1)),-1)))"
  },
  {
    "input": "input : list = [-5, 2, -2, 1, 5, 3]\noutput : list = [-5, 2, -2, 1, 5, 3]",
    "output": "generated_output : list = add_n(sub_n([-5, 2, -2, 1, 5, 3],5),5)",
    "io_inp": [
      -5,
      2,
      -2,
      1,
      5,
      3
    ],
    "io_out": [
      -5,
      2,
      -2,
      1,
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),5)"
  },
  {
    "input": "input : list = [3, -1, -1, 1, -2, -4]\noutput : list = [9, 3, -3, -3, -6, -12]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(mul_n([3, -1, -1, 1, -2, -4],3))),48))",
    "io_inp": [
      3,
      -1,
      -1,
      1,
      -2,
      -4
    ],
    "io_out": [
      9,
      3,
      -3,
      -3,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(mul_n(input,3))),48))"
  },
  {
    "input": "input : list = [0, -1, 1, 1]\noutput : list = [-12, -8, -4, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(add_n([0, -1, 1, 1],-2),4))))",
    "io_inp": [
      0,
      -1,
      1,
      1
    ],
    "io_out": [
      -12,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(add_n(input,-2),4))))"
  },
  {
    "input": "input : list = [1, -3, -2, -4, -2, 2]\noutput : list = [10, -6]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take([1, -3, -2, -4, -2, 2],2),-4),2))",
    "io_inp": [
      1,
      -3,
      -2,
      -4,
      -2,
      2
    ],
    "io_out": [
      10,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(input,2),-4),2))"
  },
  {
    "input": "input : list = [5, 3, 5, -2]\noutput : list = [8, 8, 6, 1]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(sub_n([5, 3, 5, -2],1),-4)),32))",
    "io_inp": [
      5,
      3,
      5,
      -2
    ],
    "io_out": [
      8,
      8,
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(sub_n(input,1),-4)),32))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [1, 9]",
    "output": "generated_output : list = add_n([-3, 5],4)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, -5, 3, 1, 0]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = drop([3, -5, 3, 1, 0],2)",
    "io_inp": [
      3,
      -5,
      3,
      1,
      0
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-80, -16]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(mul_n([-1, -5],-4))),-4),34)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -80,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(mul_n(input,-4))),-4),34)"
  },
  {
    "input": "input : list = [3, 0, 3, 1, -2, 2]\noutput : list = [6, 6, 3]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(take([3, 0, 3, 1, -2, 2],3),-5),5)),3)",
    "io_inp": [
      3,
      0,
      3,
      1,
      -2,
      2
    ],
    "io_out": [
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(take(input,3),-5),5)),3)"
  },
  {
    "input": "input : list = [2, 2, -5, 2, 4]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take([2, 2, -5, 2, 4],2),-2)),1)",
    "io_inp": [
      2,
      2,
      -5,
      2,
      4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(input,2),-2)),1)"
  },
  {
    "input": "input : list = [-1, -5, 0, -4, -3, 2]\noutput : list = [2, -3, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(take(drop([-1, -5, 0, -4, -3, 2],3),17)),14))",
    "io_inp": [
      -1,
      -5,
      0,
      -4,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(drop(input,3),17)),14))"
  },
  {
    "input": "input : list = [1, -5, -4, 5]\noutput : list = [5, 1, -4, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc([1, -5, -4, 5])),30)",
    "io_inp": [
      1,
      -5,
      -4,
      5
    ],
    "io_out": [
      5,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),30)"
  },
  {
    "input": "input : list = [3, 2, 2, 3]\noutput : list = [2, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, 2, 2, 3]))",
    "io_inp": [
      3,
      2,
      2,
      3
    ],
    "io_out": [
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -2, 4, 3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, 4, 3],1)",
    "io_inp": [
      3,
      -2,
      4,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-20, 7]",
    "output": "generated_output : list = sub_n(mul_n(add_n([5, -4],1),-3),2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -20,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,1),-3),2)"
  },
  {
    "input": "input : list = [-4, 3, -5, -3, 0]\noutput : list = [8, -10, -22, 26, -16]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(reverse([-4, 3, -5, -3, 0]),-3),-1),-3),-2)",
    "io_inp": [
      -4,
      3,
      -5,
      -3,
      0
    ],
    "io_out": [
      8,
      -10,
      -22,
      26,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(reverse(input),-3),-1),-3),-2)"
  },
  {
    "input": "input : list = [-3, 1, 4, 3]\noutput : list = [32, 28, 20, 4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([-3, 1, 4, 3],-4),4))",
    "io_inp": [
      -3,
      1,
      4,
      3
    ],
    "io_out": [
      32,
      28,
      20,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,-4),4))"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des([0, 1, -1]),2)),15)",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(input),2)),15)"
  },
  {
    "input": "input : list = [-5, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = drop([-5, 1, -5],1)",
    "io_inp": [
      -5,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -4, -3, -4]\noutput : list = [-8]",
    "output": "generated_output : list = drop(mul_n([-5, -4, -3, -4],2),3)",
    "io_inp": [
      -5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [2, 3, 7]",
    "output": "generated_output : list = sub_n([-3, -2, 2],-5)",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse(sub_n([-1, 2],-2))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [4, 0, 2, 0]\noutput : list = [4]",
    "output": "generated_output : list = drop(sort_asc([4, 0, 2, 0]),3)",
    "io_inp": [
      4,
      0,
      2,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),3)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-15, 10]",
    "output": "generated_output : list = mul_n([3, -2],-5)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -5, 3, -1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(reverse(drop([2, -5, 3, -1, 5],3)))",
    "io_inp": [
      2,
      -5,
      3,
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,3)))"
  },
  {
    "input": "input : list = [2, 0, 5, -5]\noutput : list = [-40, -20, -70, 30]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(add_n([2, 0, 5, -5],2),-5),2),1),44)",
    "io_inp": [
      2,
      0,
      5,
      -5
    ],
    "io_out": [
      -40,
      -20,
      -70,
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(add_n(input,2),-5),2),1),44)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -15]",
    "output": "generated_output : list = mul_n(reverse([-5, 0]),3)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-3, -1, -4, 3, -2, -2]\noutput : list = [16, 20, 24, 24, 28, 44]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(add_n([-3, -1, -4, 3, -2, -2],4),-4)),4),29)",
    "io_inp": [
      -3,
      -1,
      -4,
      3,
      -2,
      -2
    ],
    "io_out": [
      16,
      20,
      24,
      24,
      28,
      44
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(add_n(input,4),-4)),4),29)"
  },
  {
    "input": "input : list = [3, -3, 0, -1, -3, -2]\noutput : list = [9, 0, -3, -6, -9, -9]",
    "output": "generated_output : list = take(sort_des(take(take(mul_n([3, -3, 0, -1, -3, -2],3),23),31)),7)",
    "io_inp": [
      3,
      -3,
      0,
      -1,
      -3,
      -2
    ],
    "io_out": [
      9,
      0,
      -3,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(mul_n(input,3),23),31)),7)"
  },
  {
    "input": "input : list = [-2, -3, -1, 5, -2, -4]\noutput : list = [60, -12, -24, -24, -36, -48]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([-2, -3, -1, 5, -2, -4],4),3))",
    "io_inp": [
      -2,
      -3,
      -1,
      5,
      -2,
      -4
    ],
    "io_out": [
      60,
      -12,
      -24,
      -24,
      -36,
      -48
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,4),3))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n(take(take(reverse(sort_asc([1, 0])),16),13),-2)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(sort_asc(input)),16),13),-2)"
  },
  {
    "input": "input : list = [3, 0, -1, 4, 2, 1]\noutput : list = [2, 0, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(drop(sub_n(sub_n([3, 0, -1, 4, 2, 1],1),-2),2),3))",
    "io_inp": [
      3,
      0,
      -1,
      4,
      2,
      1
    ],
    "io_out": [
      2,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(sub_n(sub_n(input,1),-2),2),3))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [1, 7, 10]",
    "output": "generated_output : list = sort_asc(take(add_n([5, -4, 2],5),4))",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      1,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,5),4))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n([4, 4],-3),4),-3))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(input,-3),4),-3))"
  },
  {
    "input": "input : list = [3, 2, 3, -2, 0, 2]\noutput : list = [-4, -4, -5, -5, -7, -9]",
    "output": "generated_output : list = sort_des(add_n(add_n([3, 2, 3, -2, 0, 2],-2),-5))",
    "io_inp": [
      3,
      2,
      3,
      -2,
      0,
      2
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-2),-5))"
  },
  {
    "input": "input : list = [-3, 2, -5, 5]\noutput : list = [258, 158, -92, -242]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(sort_asc([-3, 2, -5, 5]),5),-5),4),2)",
    "io_inp": [
      -3,
      2,
      -5,
      5
    ],
    "io_out": [
      258,
      158,
      -92,
      -242
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(sort_asc(input),5),-5),4),2)"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [2, -5, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-2, 5, -3])),3)",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-4, -4, 5, 4]\noutput : list = [12, 12, -12, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des([-4, -4, 5, 4]),22),-3)))",
    "io_inp": [
      -4,
      -4,
      5,
      4
    ],
    "io_out": [
      12,
      12,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des(input),22),-3)))"
  },
  {
    "input": "input : list = [-4, 0, 5, 5, -3, 4]\noutput : list = [9, 9, 8, 4, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse([-4, 0, 5, 5, -3, 4])),4))",
    "io_inp": [
      -4,
      0,
      5,
      5,
      -3,
      4
    ],
    "io_out": [
      9,
      9,
      8,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(input)),4))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(sort_des([-1, 1])),16),-5))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(sort_des(input)),16),-5))"
  },
  {
    "input": "input : list = [4, 2, -4]\noutput : list = [1, 7]",
    "output": "generated_output : list = sort_asc(take(take(add_n(drop([4, 2, -4],1),5),13),30))",
    "io_inp": [
      4,
      2,
      -4
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(drop(input,1),5),13),30))"
  },
  {
    "input": "input : list = [2, 1, -5, 1, -1]\noutput : list = [-1, 1, -5, 1, 2]",
    "output": "generated_output : list = take(reverse(take(reverse(reverse([2, 1, -5, 1, -1])),9)),15)",
    "io_inp": [
      2,
      1,
      -5,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(reverse(input)),9)),15)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(sort_des([-5, -2])),1)))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [2, -3, 3, -3]\noutput : list = [7]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(take([2, -3, 3, -3],1),-2),-3)),30)",
    "io_inp": [
      2,
      -3,
      3,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(take(input,1),-2),-3)),30)"
  },
  {
    "input": "input : list = [-1, -5, -4, -2]\noutput : list = [-18, -17, -15, -14]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(add_n([-1, -5, -4, -2],-4),-2),-4)),-3)",
    "io_inp": [
      -1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -18,
      -17,
      -15,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(add_n(input,-4),-2),-4)),-3)"
  },
  {
    "input": "input : list = [-4, -4, -3]\noutput : list = [-3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([-4, -4, -3])))",
    "io_inp": [
      -4,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [2, 0, 1, -2, -3]\noutput : list = [-6, -5, -2, -3, -1]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(sub_n([2, 0, 1, -2, -3],3),-4)),1),4)",
    "io_inp": [
      2,
      0,
      1,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(sub_n(input,3),-4)),1),4)"
  },
  {
    "input": "input : list = [4, 3, 3, 4, 3, 1]\noutput : list = [8, 7, 7, 8, 7, 5]",
    "output": "generated_output : list = add_n([4, 3, 3, 4, 3, 1],4)",
    "io_inp": [
      4,
      3,
      3,
      4,
      3,
      1
    ],
    "io_out": [
      8,
      7,
      7,
      8,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -3, 2, -1]\noutput : list = [3, -6, 9, 0]",
    "output": "generated_output : list = mul_n(reverse([0, -3, 2, -1]),-3)",
    "io_inp": [
      0,
      -3,
      2,
      -1
    ],
    "io_out": [
      3,
      -6,
      9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-1, 1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = drop([-1, 1, 4],1)",
    "io_inp": [
      -1,
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 5, 2, 5, 5, 2]\noutput : list = [7, 7, 4]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(drop([-5, 5, 2, 5, 5, 2],3),13)),-2))",
    "io_inp": [
      -5,
      5,
      2,
      5,
      5,
      2
    ],
    "io_out": [
      7,
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(drop(input,3),13)),-2))"
  },
  {
    "input": "input : list = [5, 3, -5, -3, -3, 4]\noutput : list = [-14, -18, -2, 2]",
    "output": "generated_output : list = take(mul_n(drop(sub_n(reverse([5, 3, -5, -3, -3, 4]),4),2),2),53)",
    "io_inp": [
      5,
      3,
      -5,
      -3,
      -3,
      4
    ],
    "io_out": [
      -14,
      -18,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(sub_n(reverse(input),4),2),2),53)"
  },
  {
    "input": "input : list = [-1, -1, 1, 2, 0]\noutput : list = [-2, 2, 4, 0]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(drop([-1, -1, 1, 2, 0],1),-2),28),2),-4)",
    "io_inp": [
      -1,
      -1,
      1,
      2,
      0
    ],
    "io_out": [
      -2,
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(drop(input,1),-2),28),2),-4)"
  },
  {
    "input": "input : list = [0, -3, -3, 3, 3]\noutput : list = [32, 32, 20, 8, 8]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(mul_n([0, -3, -3, 3, 3],1),-5),-4)),1)",
    "io_inp": [
      0,
      -3,
      -3,
      3,
      3
    ],
    "io_out": [
      32,
      32,
      20,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(mul_n(input,1),-5),-4)),1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [7, 5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_des([-2, 0])),-1),-1),5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(sort_des(input)),-1),-1),5)"
  },
  {
    "input": "input : list = [3, 1, 5, 0]\noutput : list = [-7, -6, -4, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sub_n([3, 1, 5, 0],3),-3),-4),5))",
    "io_inp": [
      3,
      1,
      5,
      0
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sub_n(input,3),-3),-4),5))"
  },
  {
    "input": "input : list = [3, -5, -5, 0]\noutput : list = [-2, -10, -10, -5]",
    "output": "generated_output : list = sub_n([3, -5, -5, 0],5)",
    "io_inp": [
      3,
      -5,
      -5,
      0
    ],
    "io_out": [
      -2,
      -10,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, 0, -3, -1, 0, 0]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = take(drop([4, 0, -3, -1, 0, 0],3),25)",
    "io_inp": [
      4,
      0,
      -3,
      -1,
      0,
      0
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(drop(input,3),25)"
  },
  {
    "input": "input : list = [3, 4, -5, 2, -2]\noutput : list = [-11, -6, -1, 19, 34]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(mul_n([3, 4, -5, 2, -2],-5)),5)),-4)",
    "io_inp": [
      3,
      4,
      -5,
      2,
      -2
    ],
    "io_out": [
      -11,
      -6,
      -1,
      19,
      34
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(mul_n(input,-5)),5)),-4)"
  },
  {
    "input": "input : list = [-2, -1, -4, 0, -4, 2]\noutput : list = [-2, -5, -1, -5, 1]",
    "output": "generated_output : list = take(take(take(add_n(drop([-2, -1, -4, 0, -4, 2],1),-1),18),43),20)",
    "io_inp": [
      -2,
      -1,
      -4,
      0,
      -4,
      2
    ],
    "io_out": [
      -2,
      -5,
      -1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(drop(input,1),-1),18),43),20)"
  },
  {
    "input": "input : list = [0, 0, -3, 3, 3]\noutput : list = [-3, 0, 0, 3, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(sort_des([0, 0, -3, 3, 3]),21))))",
    "io_inp": [
      0,
      0,
      -3,
      3,
      3
    ],
    "io_out": [
      -3,
      0,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(sort_des(input),21))))"
  },
  {
    "input": "input : list = [-3, 3, 5, -3, -2, -5]\noutput : list = [5, 3, -2, -3, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([-3, 3, 5, -3, -2, -5])))",
    "io_inp": [
      -3,
      3,
      5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      5,
      3,
      -2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, 4, -5, 0, -3]\noutput : list = [-3, 0, -5, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, -5, 0, -3])",
    "io_inp": [
      1,
      4,
      -5,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      -5,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -3, -5, -4, -1, 1]\noutput : list = [-6, 6, 10, 8, 2, -2]",
    "output": "generated_output : list = mul_n([3, -3, -5, -4, -1, 1],-2)",
    "io_inp": [
      3,
      -3,
      -5,
      -4,
      -1,
      1
    ],
    "io_out": [
      -6,
      6,
      10,
      8,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -2, -1, 5, -4]\noutput : list = [-4, -2, -1]",
    "output": "generated_output : list = take([-4, -2, -1, 5, -4],3)",
    "io_inp": [
      -4,
      -2,
      -1,
      5,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [-28, 8, -4]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(mul_n([-1, -3, 3],-3)),5),2),15)",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      -28,
      8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(mul_n(input,-3)),5),2),15)"
  },
  {
    "input": "input : list = [2, 5, -1, -4, 2, -3]\noutput : list = [-9, -8, -6, -3, -3, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse([2, 5, -1, -4, 2, -3])),-5))",
    "io_inp": [
      2,
      5,
      -1,
      -4,
      2,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -6,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(input)),-5))"
  },
  {
    "input": "input : list = [-3, -3, 0, 1]\noutput : list = [-3, -4, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(sub_n([-3, -3, 0, 1],-3),-4)),-3))",
    "io_inp": [
      -3,
      -3,
      0,
      1
    ],
    "io_out": [
      -3,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(sub_n(input,-3),-4)),-3))"
  },
  {
    "input": "input : list = [-1, 5, 5, -1, 1]\noutput : list = [18, 18, 2, -6, -6]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(reverse([-1, 5, 5, -1, 1])),-2),-1),-2)",
    "io_inp": [
      -1,
      5,
      5,
      -1,
      1
    ],
    "io_out": [
      18,
      18,
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(reverse(input)),-2),-1),-2)"
  },
  {
    "input": "input : list = [4, 3, -1, -3, 1, 4]\noutput : list = [-75, -25, 25, 100]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(drop([4, 3, -1, -3, 1, 4],2),5),5)))",
    "io_inp": [
      4,
      3,
      -1,
      -3,
      1,
      4
    ],
    "io_out": [
      -75,
      -25,
      25,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(drop(input,2),5),5)))"
  },
  {
    "input": "input : list = [-5, -4, 0, -4, -2]\noutput : list = [-3, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(take([-5, -4, 0, -4, -2],2)),2)),-1)",
    "io_inp": [
      -5,
      -4,
      0,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(take(input,2)),2)),-1)"
  },
  {
    "input": "input : list = [5, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = drop([5, -3, 4],1)",
    "io_inp": [
      5,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -5, 1, 1, 2]\noutput : list = [2, 1, 1, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 1, 1, 2])",
    "io_inp": [
      2,
      -5,
      1,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      1,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, 0, -4]\noutput : list = [-12, -14, -9, -13]",
    "output": "generated_output : list = add_n(add_n(add_n([-3, -5, 0, -4],-5),1),-5)",
    "io_inp": [
      -3,
      -5,
      0,
      -4
    ],
    "io_out": [
      -12,
      -14,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-5),1),-5)"
  },
  {
    "input": "input : list = [-4, -5, -2, 1, 5]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -5, -2, 1, 5],1)",
    "io_inp": [
      -4,
      -5,
      -2,
      1,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5, -3, 0, -1, 3]\noutput : list = [-1, -5, -4, -7, -9, -6]",
    "output": "generated_output : list = sub_n(reverse([-2, -5, -3, 0, -1, 3]),4)",
    "io_inp": [
      -2,
      -5,
      -3,
      0,
      -1,
      3
    ],
    "io_out": [
      -1,
      -5,
      -4,
      -7,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-5, 5, -5]\noutput : list = [-5, -5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, 5, -5]))",
    "io_inp": [
      -5,
      5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n([0, 0],4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, -2, -3]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(take([-4, -2, -3],1),5)",
    "io_inp": [
      -4,
      -2,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(drop([-4, -3, 3],1)))),46)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(drop(input,1)))),46)"
  },
  {
    "input": "input : list = [1, 2, 5, 3]\noutput : list = [-4, -8]",
    "output": "generated_output : list = mul_n(take([1, 2, 5, 3],2),-4)",
    "io_inp": [
      1,
      2,
      5,
      3
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(mul_n([-1, -3],-2),3)),-1),32)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(mul_n(input,-2),3)),-1),32)"
  },
  {
    "input": "input : list = [0, -3, 1, -5]\noutput : list = [2, -7, 5, -13]",
    "output": "generated_output : list = add_n(mul_n(mul_n([0, -3, 1, -5],1),3),2)",
    "io_inp": [
      0,
      -3,
      1,
      -5
    ],
    "io_out": [
      2,
      -7,
      5,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,1),3),2)"
  },
  {
    "input": "input : list = [1, -2, -3, -1]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(sort_des(drop(take(reverse([1, -2, -3, -1]),13),3)))",
    "io_inp": [
      1,
      -2,
      -3,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(take(reverse(input),13),3)))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sub_n([-2, -1],-1)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 0, 3, 0]\noutput : list = [-2, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse([-2, 0, 3, 0]))",
    "io_inp": [
      -2,
      0,
      3,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [6, 0, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(take(sort_des([-3, 4, 0]),18)),-2))",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      6,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(take(sort_des(input),18)),-2))"
  },
  {
    "input": "input : list = [-3, 2, -2, -3, 1]\noutput : list = [-7, -7, -6, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_asc([-3, 2, -2, -3, 1]),-5),-1),-2))",
    "io_inp": [
      -3,
      2,
      -2,
      -3,
      1
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_asc(input),-5),-1),-2))"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(add_n([-4, -2, 2],3))),3))",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(add_n(input,3))),3))"
  },
  {
    "input": "input : list = [1, 1, 5, 3, 4]\noutput : list = [-2, -2, 2, 0, 1]",
    "output": "generated_output : list = add_n([1, 1, 5, 3, 4],-3)",
    "io_inp": [
      1,
      1,
      5,
      3,
      4
    ],
    "io_out": [
      -2,
      -2,
      2,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, -5, 5, -3, 1, 4]\noutput : list = [-3, 1, 4]",
    "output": "generated_output : list = drop([2, -5, 5, -3, 1, 4],3)",
    "io_inp": [
      2,
      -5,
      5,
      -3,
      1,
      4
    ],
    "io_out": [
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [4, 5, 1, -5, 2, 1]\noutput : list = [60, 72, -12, 60, 108, 96]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(reverse([4, 5, 1, -5, 2, 1]),4),2),3),2)",
    "io_inp": [
      4,
      5,
      1,
      -5,
      2,
      1
    ],
    "io_out": [
      60,
      72,
      -12,
      60,
      108,
      96
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(reverse(input),4),2),3),2)"
  },
  {
    "input": "input : list = [-2, 3, -1, 2]\noutput : list = [-2, -5, -1, -6]",
    "output": "generated_output : list = reverse(sub_n([-2, 3, -1, 2],4))",
    "io_inp": [
      -2,
      3,
      -1,
      2
    ],
    "io_out": [
      -2,
      -5,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [4, 0, -1, 1, 4, 2]\noutput : list = [7, 8, 9, 10, 12, 12]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des([4, 0, -1, 1, 4, 2]),-4)),2),2)",
    "io_inp": [
      4,
      0,
      -1,
      1,
      4,
      2
    ],
    "io_out": [
      7,
      8,
      9,
      10,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des(input),-4)),2),2)"
  },
  {
    "input": "input : list = [-3, 1, -5, 2, -3]\noutput : list = [-12, 3]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(drop([-3, 1, -5, 2, -3],3)),4),2),-3)",
    "io_inp": [
      -3,
      1,
      -5,
      2,
      -3
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(drop(input,3)),4),2),-3)"
  },
  {
    "input": "input : list = [3, -2, -3]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, -3])",
    "io_inp": [
      3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 2, 1, 2]\noutput : list = [24, 40, 16, 8, 16]",
    "output": "generated_output : list = mul_n(mul_n([3, 5, 2, 1, 2],4),2)",
    "io_inp": [
      3,
      5,
      2,
      1,
      2
    ],
    "io_out": [
      24,
      40,
      16,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),2)"
  },
  {
    "input": "input : list = [2, 2, 0, 0, 2]\noutput : list = [-1, -1, -1, -3, -3]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(sort_des([2, 2, 0, 0, 2])),25),-5),2)",
    "io_inp": [
      2,
      2,
      0,
      0,
      2
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(sort_des(input)),25),-5),2)"
  },
  {
    "input": "input : list = [-3, -5, -1, 0]\noutput : list = [-5, -6, -8, -10]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([-3, -5, -1, 0]),3),2)",
    "io_inp": [
      -3,
      -5,
      -1,
      0
    ],
    "io_out": [
      -5,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),3),2)"
  },
  {
    "input": "input : list = [-4, -4, -1, -4, 4]\noutput : list = [2, -6, -3, -6, -6]",
    "output": "generated_output : list = sub_n(take(reverse(take(add_n([-4, -4, -1, -4, 4],-4),25)),21),-2)",
    "io_inp": [
      -4,
      -4,
      -1,
      -4,
      4
    ],
    "io_out": [
      2,
      -6,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(add_n(input,-4),25)),21),-2)"
  },
  {
    "input": "input : list = [-4, -5, 1, -4, -5, -1]\noutput : list = [10, 8, 5, 5, 4, 4]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(sort_des([-4, -5, 1, -4, -5, -1]),4))),5)",
    "io_inp": [
      -4,
      -5,
      1,
      -4,
      -5,
      -1
    ],
    "io_out": [
      10,
      8,
      5,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(sort_des(input),4))),5)"
  },
  {
    "input": "input : list = [0, -3, 5, -3]\noutput : list = [-3, -3, 0, 5]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(sort_des([0, -3, 5, -3])),5),29),5)",
    "io_inp": [
      0,
      -3,
      5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(sort_des(input)),5),29),5)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-21, -15]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(add_n([1, 3],4)),-3)))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -21,
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(add_n(input,4)),-3)))"
  },
  {
    "input": "input : list = [-3, -5, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(drop([-3, -5, -5],1),-3))))",
    "io_inp": [
      -3,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-50, 10]",
    "output": "generated_output : list = mul_n(mul_n(reverse(drop([-4, 1, -5],1)),5),2)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -50,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(drop(input,1)),5),2)"
  },
  {
    "input": "input : list = [-3, -1, 1, -1, 2]\noutput : list = [1, 0, -2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n([-3, -1, 1, -1, 2],-1)))",
    "io_inp": [
      -3,
      -1,
      1,
      -1,
      2
    ],
    "io_out": [
      1,
      0,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-1)))"
  },
  {
    "input": "input : list = [-3, 4, -3, 1, -4]\noutput : list = [-5, -4, -4, 0, 3]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(sub_n([-3, 4, -3, 1, -4],-4))),1),-4)",
    "io_inp": [
      -3,
      4,
      -3,
      1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(sub_n(input,-4))),1),-4)"
  },
  {
    "input": "input : list = [-2, -2, -5, 5]\noutput : list = [4, 4, 10, -10]",
    "output": "generated_output : list = reverse(take(take(reverse(mul_n([-2, -2, -5, 5],-2)),6),30))",
    "io_inp": [
      -2,
      -2,
      -5,
      5
    ],
    "io_out": [
      4,
      4,
      10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(mul_n(input,-2)),6),30))"
  },
  {
    "input": "input : list = [0, -1, 4]\noutput : list = [-15, -10, -35]",
    "output": "generated_output : list = add_n(mul_n(sub_n([0, -1, 4],-2),-5),-5)",
    "io_inp": [
      0,
      -1,
      4
    ],
    "io_out": [
      -15,
      -10,
      -35
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-2),-5),-5)"
  },
  {
    "input": "input : list = [5, -5, -3, 5]\noutput : list = [24, 24, -16, -26]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(sort_des([5, -5, -3, 5])),5),1))",
    "io_inp": [
      5,
      -5,
      -3,
      5
    ],
    "io_out": [
      24,
      24,
      -16,
      -26
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(sort_des(input)),5),1))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(sort_asc([0, 1]),-5),15)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(sort_asc(input),-5),15)))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-104, -104]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(sub_n([-4, -4],5),-3),-4)),-4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -104,
      -104
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(sub_n(input,5),-3),-4)),-4)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [2, 2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n([4, 4],2)),4)),-4)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n(input,2)),4)),-4)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [4, -2, 3]",
    "output": "generated_output : list = sub_n(add_n([3, -3, 2],4),3)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),3)"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [-6, -2, 4]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(sort_asc([-5, 5, -1]))),3),4)",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      -6,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(sort_asc(input))),3),4)"
  },
  {
    "input": "input : list = [5, 2, 0, 1, -4, 4]\noutput : list = [-11, -20, -26, -23, -38, -14]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n(add_n([5, 2, 0, 1, -4, 4],-4),5),3),-2),-3)",
    "io_inp": [
      5,
      2,
      0,
      1,
      -4,
      4
    ],
    "io_out": [
      -11,
      -20,
      -26,
      -23,
      -38,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(add_n(input,-4),5),3),-2),-3)"
  },
  {
    "input": "input : list = [3, 3, 3, -1]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = reverse(reverse(drop(sort_asc(sub_n([3, 3, 3, -1],4)),1)))",
    "io_inp": [
      3,
      3,
      3,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(sort_asc(sub_n(input,4)),1)))"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [-3, -9, 12]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(sub_n([5, -2, 0],-1),3)),1),5)",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      -3,
      -9,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(sub_n(input,-1),3)),1),5)"
  },
  {
    "input": "input : list = [4, 4, -2, -1, -4]\noutput : list = [-4, -1]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(drop([4, 4, -2, -1, -4],3))),40),1)",
    "io_inp": [
      4,
      4,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(drop(input,3))),40),1)"
  },
  {
    "input": "input : list = [-4, 2, -1]\noutput : list = [-1, 2, -4]",
    "output": "generated_output : list = reverse([-4, 2, -1])",
    "io_inp": [
      -4,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 1, -1, -5, 5]\noutput : list = [-5, -2, -1, 1, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(sort_des([-2, 1, -1, -5, 5])),13)))",
    "io_inp": [
      -2,
      1,
      -1,
      -5,
      5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(sort_des(input)),13)))"
  },
  {
    "input": "input : list = [4, 5, 0]\noutput : list = [4, 5, 0]",
    "output": "generated_output : list = reverse(reverse([4, 5, 0]))",
    "io_inp": [
      4,
      5,
      0
    ],
    "io_out": [
      4,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(reverse(sub_n([-1, 2],3)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,3)))"
  },
  {
    "input": "input : list = [0, 5, 2, -5, 1]\noutput : list = [20, -10, 25]",
    "output": "generated_output : list = reverse(mul_n(add_n(take(drop([0, 5, 2, -5, 1],2),20),3),5))",
    "io_inp": [
      0,
      5,
      2,
      -5,
      1
    ],
    "io_out": [
      20,
      -10,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(drop(input,2),20),3),5))"
  },
  {
    "input": "input : list = [-3, 1, -1, 1]\noutput : list = [3, 5, 7, 7]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(sort_des([-3, 1, -1, 1]),-5)),1),5)",
    "io_inp": [
      -3,
      1,
      -1,
      1
    ],
    "io_out": [
      3,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(sort_des(input),-5)),1),5)"
  },
  {
    "input": "input : list = [1, -1, -2, 4, 3, -2]\noutput : list = [7, 7, 4, -2, -8, -11]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(mul_n([1, -1, -2, 4, 3, -2],-3))),1))",
    "io_inp": [
      1,
      -1,
      -2,
      4,
      3,
      -2
    ],
    "io_out": [
      7,
      7,
      4,
      -2,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(mul_n(input,-3))),1))"
  },
  {
    "input": "input : list = [-5, -2, 2, 5]\noutput : list = [-32, -8, 24, 48]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(reverse([-5, -2, 2, 5]),1),-2),38),4)",
    "io_inp": [
      -5,
      -2,
      2,
      5
    ],
    "io_out": [
      -32,
      -8,
      24,
      48
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(reverse(input),1),-2),38),4)"
  },
  {
    "input": "input : list = [5, -1, -5, -5]\noutput : list = [12, 6, 2, 2]",
    "output": "generated_output : list = add_n(take(add_n([5, -1, -5, -5],2),18),5)",
    "io_inp": [
      5,
      -1,
      -5,
      -5
    ],
    "io_out": [
      12,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,2),18),5)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(add_n([-1, -1],2),1),-1)))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(add_n(input,2),1),-1)))"
  },
  {
    "input": "input : list = [4, -2, 4, -5, -1, -3]\noutput : list = [-127, -77, -52, -27, 98, 98]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n(mul_n([4, -2, 4, -5, -1, -3],5),5)),-2))",
    "io_inp": [
      4,
      -2,
      4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -127,
      -77,
      -52,
      -27,
      98,
      98
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(mul_n(input,5),5)),-2))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [0, 30]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sub_n([-2, 4],-2),5)))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      0,
      30
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sub_n(input,-2),5)))"
  },
  {
    "input": "input : list = [2, -2, -1]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(sort_des([2, -2, -1]))),1))",
    "io_inp": [
      2,
      -2,
      -1
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [2, 5, 0, -5, -4, 3]\noutput : list = [5, 3, 2, 0, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse([2, 5, 0, -5, -4, 3])))",
    "io_inp": [
      2,
      5,
      0,
      -5,
      -4,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [3, 5, 4, 1, 3, 3]\noutput : list = [5, 4, 3, 3, 3, 1]",
    "output": "generated_output : list = sort_des([3, 5, 4, 1, 3, 3])",
    "io_inp": [
      3,
      5,
      4,
      1,
      3,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [4, 3, 3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc([3, 2, 2])),-1))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(input)),-1))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [8, -32]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_asc([5, -5])),-3)),-4)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      8,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_asc(input)),-3)),-4)"
  },
  {
    "input": "input : list = [-3, -1, 0, 3]\noutput : list = [1, 3, 4, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(mul_n([-3, -1, 0, 3],1),15),13)),-4)",
    "io_inp": [
      -3,
      -1,
      0,
      3
    ],
    "io_out": [
      1,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(mul_n(input,1),15),13)),-4)"
  },
  {
    "input": "input : list = [-4, -5, -2, -3]\noutput : list = [-7, -6, -5, -4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(add_n([-4, -5, -2, -3],-5),2)),-1))",
    "io_inp": [
      -4,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(add_n(input,-5),2)),-1))"
  },
  {
    "input": "input : list = [1, -3, 5, 2, 3, -5]\noutput : list = [5, 3, 2, 1, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(sort_asc([1, -3, 5, 2, 3, -5])),35)))",
    "io_inp": [
      1,
      -3,
      5,
      2,
      3,
      -5
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(sort_asc(input)),35)))"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(drop([1, 5, -1],1),-4),2)))",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(drop(input,1),-4),2)))"
  },
  {
    "input": "input : list = [5, -2, -2, -5]\noutput : list = [-19, -10, -10, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(mul_n([5, -2, -2, -5],1),3),-5),1))",
    "io_inp": [
      5,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -19,
      -10,
      -10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(mul_n(input,1),3),-5),1))"
  },
  {
    "input": "input : list = [5, 2, -4, 2, -5, -5]\noutput : list = [75, 75, -30, 60, -30, -75]",
    "output": "generated_output : list = mul_n(reverse(mul_n([5, 2, -4, 2, -5, -5],5)),-3)",
    "io_inp": [
      5,
      2,
      -4,
      2,
      -5,
      -5
    ],
    "io_out": [
      75,
      75,
      -30,
      60,
      -30,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,5)),-3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [0, 20]",
    "output": "generated_output : list = mul_n(add_n([-1, 4],1),4)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),4)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_des([0, -5]),10))))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_des(input),10))))"
  },
  {
    "input": "input : list = [2, -3, 5, 1, 3]\noutput : list = [-6, 2, 4, 6, 10]",
    "output": "generated_output : list = sort_asc(mul_n([2, -3, 5, 1, 3],2))",
    "io_inp": [
      2,
      -3,
      5,
      1,
      3
    ],
    "io_out": [
      -6,
      2,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n([1, 3],1),-4)),1)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(input,1),-4)),1)"
  },
  {
    "input": "input : list = [4, 0, 2, -1, -1, 2]\noutput : list = [4, 2, 2, 0, -1, -1]",
    "output": "generated_output : list = sort_des([4, 0, 2, -1, -1, 2])",
    "io_inp": [
      4,
      0,
      2,
      -1,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [0, 4, 8]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(sub_n([0, 2, -2],-2),16),2)))",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(sub_n(input,-2),16),2)))"
  },
  {
    "input": "input : list = [4, -2, 0, 5, 1]\noutput : list = [-3, 1, -4, -6, 0]",
    "output": "generated_output : list = reverse(add_n(add_n([4, -2, 0, 5, 1],-1),-3))",
    "io_inp": [
      4,
      -2,
      0,
      5,
      1
    ],
    "io_out": [
      -3,
      1,
      -4,
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-1),-3))"
  },
  {
    "input": "input : list = [-5, 1, 4, 4, -1, -4]\noutput : list = [-5, -4, -1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([-5, 1, 4, 4, -1, -4])",
    "io_inp": [
      -5,
      1,
      4,
      4,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, -1, -1, 0]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = drop([5, 2, -1, -1, 0],2)",
    "io_inp": [
      5,
      2,
      -1,
      -1,
      0
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, 4, -4, -1, 0, 4]\noutput : list = [5, 5, 5, -3, -5, -11]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(mul_n([4, 4, -4, -1, 0, 4],2)),19),3))",
    "io_inp": [
      4,
      4,
      -4,
      -1,
      0,
      4
    ],
    "io_out": [
      5,
      5,
      5,
      -3,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(mul_n(input,2)),19),3))"
  },
  {
    "input": "input : list = [-1, 3, 1, -1]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = take(add_n(sort_asc(drop(sort_des([-1, 3, 1, -1]),1)),-3),36)",
    "io_inp": [
      -1,
      3,
      1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(drop(sort_des(input),1)),-3),36)"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc([-4, -3, 1]),-1),3),36)",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(input),-1),3),36)"
  },
  {
    "input": "input : list = [-1, -3, -3, 0]\noutput : list = [-15, -15, -5, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-1, -3, -3, 0]),5))",
    "io_inp": [
      -1,
      -3,
      -3,
      0
    ],
    "io_out": [
      -15,
      -15,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [5, 8]",
    "output": "generated_output : list = take(take(sort_asc(reverse(add_n([0, 3],5))),32),16)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(add_n(input,5))),32),16)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [17, 22]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-5, -4]),-5),3)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      17,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-5),3)"
  },
  {
    "input": "input : list = [-1, 1, -5, -4, 4]\noutput : list = [-4, -3, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(drop([-1, 1, -5, -4, 4],1))),-1))",
    "io_inp": [
      -1,
      1,
      -5,
      -4,
      4
    ],
    "io_out": [
      -4,
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(drop(input,1))),-1))"
  },
  {
    "input": "input : list = [1, -3, 4, 3, 5]\noutput : list = [6, 5, 4, 2, -2]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(add_n([1, -3, 4, 3, 5],-1),2),3),-3))",
    "io_inp": [
      1,
      -3,
      4,
      3,
      5
    ],
    "io_out": [
      6,
      5,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(add_n(input,-1),2),3),-3))"
  },
  {
    "input": "input : list = [1, 1, 2, -3, -2, 4]\noutput : list = [4, -2, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(drop([1, 1, 2, -3, -2, 4],3),1)),1),1)",
    "io_inp": [
      1,
      1,
      2,
      -3,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(drop(input,3),1)),1),1)"
  },
  {
    "input": "input : list = [-4, -4, -4]\noutput : list = [8, 8]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n(drop([-4, -4, -4],1),-2))))",
    "io_inp": [
      -4,
      -4,
      -4
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(drop(input,1),-2))))"
  },
  {
    "input": "input : list = [0, -2, -5, -3, -3, 2]\noutput : list = [5, 7, 7, 8, 10, 12]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(sort_asc([0, -2, -5, -3, -3, 2]),29)),5),-5)",
    "io_inp": [
      0,
      -2,
      -5,
      -3,
      -3,
      2
    ],
    "io_out": [
      5,
      7,
      7,
      8,
      10,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(sort_asc(input),29)),5),-5)"
  },
  {
    "input": "input : list = [2, -5, 4, -5, -4, 5]\noutput : list = [-4, -4, -3, 5, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(drop([2, -5, 4, -5, -4, 5],1)))),1)",
    "io_inp": [
      2,
      -5,
      4,
      -5,
      -4,
      5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [0, 5, 2, 5]\noutput : list = [0, 2, 5, 5]",
    "output": "generated_output : list = sort_asc([0, 5, 2, 5])",
    "io_inp": [
      0,
      5,
      2,
      5
    ],
    "io_out": [
      0,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-8, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(drop([4, 0, -1],1),-2),4)))",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(drop(input,1),-2),4)))"
  },
  {
    "input": "input : list = [-3, -4, -4, 5, 2, 3]\noutput : list = [-16, -8, -4, 16, 20, 20]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(mul_n([-3, -4, -4, 5, 2, 3],-4),4)),32))",
    "io_inp": [
      -3,
      -4,
      -4,
      5,
      2,
      3
    ],
    "io_out": [
      -16,
      -8,
      -4,
      16,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(mul_n(input,-4),4)),32))"
  },
  {
    "input": "input : list = [0, 1, 4, 1, 5, 4]\noutput : list = [8, 7, 7, 4, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([0, 1, 4, 1, 5, 4],-1)),-2)",
    "io_inp": [
      0,
      1,
      4,
      1,
      5,
      4
    ],
    "io_out": [
      8,
      7,
      7,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-1)),-2)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [5, -25]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(sort_asc([-5, 1])),5),19))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(sort_asc(input)),5),19))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [2, -8]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(add_n([5, 0],-2),2)),-1),-2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(add_n(input,-2),2)),-1),-2)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des([-5, -1])",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [20, 5]",
    "output": "generated_output : list = mul_n([-4, -1],-5)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [7, 0]",
    "output": "generated_output : list = add_n(sub_n([4, -3],-4),-1)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-1)"
  },
  {
    "input": "input : list = [4, -4, 4]\noutput : list = [4, -4, -4]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc([4, -4, 4]),3),-3),-1)",
    "io_inp": [
      4,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(input),3),-3),-1)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [4, -28]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(add_n([-5, 3],5),1)),4),-4)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      4,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(add_n(input,5),1)),4),-4)"
  },
  {
    "input": "input : list = [-4, -1, 5, -2, -1, -4]\noutput : list = [11, 5, 5, 4, 2, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(sub_n([-4, -1, 5, -2, -1, -4],-4),-1))),-3)",
    "io_inp": [
      -4,
      -1,
      5,
      -2,
      -1,
      -4
    ],
    "io_out": [
      11,
      5,
      5,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(sub_n(input,-4),-1))),-3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc([-1, 5])",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3, -3]\noutput : list = [-6, -14, -14]",
    "output": "generated_output : list = add_n(take(sub_n(take(sub_n([5, -3, -3],4),15),4),17),-3)",
    "io_inp": [
      5,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(sub_n(input,4),15),4),17),-3)"
  },
  {
    "input": "input : list = [0, 1, 4]\noutput : list = [-19, -7, -3]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(sort_des([0, 1, 4])),-4)),-3)",
    "io_inp": [
      0,
      1,
      4
    ],
    "io_out": [
      -19,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(sort_des(input)),-4)),-3)"
  },
  {
    "input": "input : list = [1, 1, 0, 4, 1, 0]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(drop([1, 1, 0, 4, 1, 0],3)),1)),-1)",
    "io_inp": [
      1,
      1,
      0,
      4,
      1,
      0
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(drop(input,3)),1)),-1)"
  },
  {
    "input": "input : list = [-1, 5, 0, -2, 2, -4]\noutput : list = [-2, -20, -5, 1, -11, 7]",
    "output": "generated_output : list = add_n(mul_n([-1, 5, 0, -2, 2, -4],-3),-5)",
    "io_inp": [
      -1,
      5,
      0,
      -2,
      2,
      -4
    ],
    "io_out": [
      -2,
      -20,
      -5,
      1,
      -11,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),-5)"
  },
  {
    "input": "input : list = [-5, -3, 5, -5, 1]\noutput : list = [-4, -2, 6, -4, 2]",
    "output": "generated_output : list = sub_n([-5, -3, 5, -5, 1],-1)",
    "io_inp": [
      -5,
      -3,
      5,
      -5,
      1
    ],
    "io_out": [
      -4,
      -2,
      6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-10, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(sort_asc([-1, -5]))),-3),-5)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(sort_asc(input))),-3),-5)"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-3, -1, 4]",
    "output": "generated_output : list = sort_asc([-3, 4, -1])",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, -1, 0, -5, 2]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(drop(sort_asc(add_n(sort_des([4, 5, -1, 0, -5, 2]),-4)),5))",
    "io_inp": [
      4,
      5,
      -1,
      0,
      -5,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_asc(add_n(sort_des(input),-4)),5))"
  },
  {
    "input": "input : list = [-1, -1, 3, 5, 4, 5]\noutput : list = [5, 5, 4, 3, -1, -1]",
    "output": "generated_output : list = sort_des([-1, -1, 3, 5, 4, 5])",
    "io_inp": [
      -1,
      -1,
      3,
      5,
      4,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, 4, 5, 3]\noutput : list = [-11, -14, -5, -4, -6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(add_n(add_n([-2, -5, 4, 5, 3],-1),4),3),-4),5)",
    "io_inp": [
      -2,
      -5,
      4,
      5,
      3
    ],
    "io_out": [
      -11,
      -14,
      -5,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(add_n(add_n(input,-1),4),3),-4),5)"
  },
  {
    "input": "input : list = [2, -4, -2, -1, -2, -4]\noutput : list = [-4, -4, -2, -2, -1, 2]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sort_asc([2, -4, -2, -1, -2, -4]))),46),50)",
    "io_inp": [
      2,
      -4,
      -2,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sort_asc(input))),46),50)"
  },
  {
    "input": "input : list = [5, 3, -3, 2, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = drop([5, 3, -3, 2, 1, 1],4)",
    "io_inp": [
      5,
      3,
      -3,
      2,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [-7, -7, -3]",
    "output": "generated_output : list = sub_n([-5, -5, -1],2)",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, 5, -3, -2, 5]\noutput : list = [25, 25, -5, -10, -15]",
    "output": "generated_output : list = take(sort_des(mul_n([-1, 5, -3, -2, 5],5)),22)",
    "io_inp": [
      -1,
      5,
      -3,
      -2,
      5
    ],
    "io_out": [
      25,
      25,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,5)),22)"
  },
  {
    "input": "input : list = [1, 0, 5, 2, -3, 0]\noutput : list = [-2, 0, -10, -4, 6, 0]",
    "output": "generated_output : list = mul_n([1, 0, 5, 2, -3, 0],-2)",
    "io_inp": [
      1,
      0,
      5,
      2,
      -3,
      0
    ],
    "io_out": [
      -2,
      0,
      -10,
      -4,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 3, 4, 1, 5, 0]\noutput : list = [4, 6, 8, 2]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(take([2, 3, 4, 1, 5, 0],4)),20),2))",
    "io_inp": [
      2,
      3,
      4,
      1,
      5,
      0
    ],
    "io_out": [
      4,
      6,
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(take(input,4)),20),2))"
  },
  {
    "input": "input : list = [0, -1, -5, 2, 2, -4]\noutput : list = [-5, -4, 2, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(drop([0, -1, -5, 2, 2, -4],2))))",
    "io_inp": [
      0,
      -1,
      -5,
      2,
      2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(drop(input,2))))"
  },
  {
    "input": "input : list = [3, 5, 0, 3, -3]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(take(take(drop([3, 5, 0, 3, -3],2),5),10),2)",
    "io_inp": [
      3,
      5,
      0,
      3,
      -3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(drop(input,2),5),10),2)"
  },
  {
    "input": "input : list = [4, 1, -1, 3]\noutput : list = [3, -1, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, -1, 3])",
    "io_inp": [
      4,
      1,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(add_n([-3, 1],-4)),-5)),-4)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(add_n(input,-4)),-5)),-4)"
  },
  {
    "input": "input : list = [-5, -2, 3, -4, 2, -1]\noutput : list = [-5, -4, -2, -1, 2, 3]",
    "output": "generated_output : list = reverse(sort_des([-5, -2, 3, -4, 2, -1]))",
    "io_inp": [
      -5,
      -2,
      3,
      -4,
      2,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -5, 2, 3, 5, -1]\noutput : list = [-8, -4, -2, 4, 4, 12]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n([-1, -5, 2, 3, 5, -1],-2),-2)))",
    "io_inp": [
      -1,
      -5,
      2,
      3,
      5,
      -1
    ],
    "io_out": [
      -8,
      -4,
      -2,
      4,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(input,-2),-2)))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-16, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-1, 4],-4)))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -16,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, -5, 1, 4, 2, 0]\noutput : list = [-19, -25, -7, 2, -4, -10]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(sub_n([-3, -5, 1, 4, 2, 0],4))),3),2)",
    "io_inp": [
      -3,
      -5,
      1,
      4,
      2,
      0
    ],
    "io_out": [
      -19,
      -25,
      -7,
      2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(sub_n(input,4))),3),2)"
  },
  {
    "input": "input : list = [-5, 0, -2, -3, 2]\noutput : list = [18, 8, 3, -7, -17]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(add_n([-5, 0, -2, -3, 2],1))),-5),2)",
    "io_inp": [
      -5,
      0,
      -2,
      -3,
      2
    ],
    "io_out": [
      18,
      8,
      3,
      -7,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(add_n(input,1))),-5),2)"
  },
  {
    "input": "input : list = [5, -2, -3]\noutput : list = [1, -6, -7]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(sort_des([5, -2, -3])),1),19),5)",
    "io_inp": [
      5,
      -2,
      -3
    ],
    "io_out": [
      1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(sort_des(input)),1),19),5)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [3, -5]",
    "output": "generated_output : list = add_n(sort_des(mul_n([1, -3],2)),1)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,2)),1)"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [-4, -4, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([0, -4, -4])))",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [5, 2, -4, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take([5, 2, -4, 2],1))))",
    "io_inp": [
      5,
      2,
      -4,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(input,1))))"
  },
  {
    "input": "input : list = [-5, 1, 3, -3, -3]\noutput : list = [22, 14, 14, -2]",
    "output": "generated_output : list = take(sort_des(take(sub_n(mul_n([-5, 1, 3, -3, -3],-4),-2),11)),4)",
    "io_inp": [
      -5,
      1,
      3,
      -3,
      -3
    ],
    "io_out": [
      22,
      14,
      14,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(mul_n(input,-4),-2),11)),4)"
  },
  {
    "input": "input : list = [-5, -3, 2, 1, -2, 0]\noutput : list = [6, 4, 2, -2, -4, -8]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-5, -3, 2, 1, -2, 0]),2),-2)",
    "io_inp": [
      -5,
      -3,
      2,
      1,
      -2,
      0
    ],
    "io_out": [
      6,
      4,
      2,
      -2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),2),-2)"
  },
  {
    "input": "input : list = [0, 0, 5, -1, 1, 5]\noutput : list = [6, 6, 11, 5, 7, 11]",
    "output": "generated_output : list = sub_n(add_n([0, 0, 5, -1, 1, 5],2),-4)",
    "io_inp": [
      0,
      0,
      5,
      -1,
      1,
      5
    ],
    "io_out": [
      6,
      6,
      11,
      5,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),-4)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(take([-5, 2, -3],1)),-3),-3),-4)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(take(input,1)),-3),-3),-4)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-7, 2]",
    "output": "generated_output : list = sub_n([-4, 5],3)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, 3, -4, 3]\noutput : list = [35, 0, 35, 5]",
    "output": "generated_output : list = reverse(mul_n(take(take(add_n([-3, 3, -4, 3],4),4),7),5))",
    "io_inp": [
      -3,
      3,
      -4,
      3
    ],
    "io_out": [
      35,
      0,
      35,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(add_n(input,4),4),7),5))"
  },
  {
    "input": "input : list = [-2, 2, -5, -2]\noutput : list = [-7, -3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(take([-2, 2, -5, -2],2),-3),5),3))",
    "io_inp": [
      -2,
      2,
      -5,
      -2
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(take(input,2),-3),5),3))"
  },
  {
    "input": "input : list = [5, 2, -1, 4]\noutput : list = [6, 9]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(take([5, 2, -1, 4],2),-5))),1)",
    "io_inp": [
      5,
      2,
      -1,
      4
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(take(input,2),-5))),1)"
  },
  {
    "input": "input : list = [2, -1, 4, 4]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(take(add_n(take([2, -1, 4, 4],2),-4),24))",
    "io_inp": [
      2,
      -1,
      4,
      4
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(input,2),-4),24))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(add_n(sub_n([1, 0],2),3))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,2),3))"
  },
  {
    "input": "input : list = [1, 2, -1, -5]\noutput : list = [5, 9]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(take([1, 2, -1, -5],2)),4),-1),3)",
    "io_inp": [
      1,
      2,
      -1,
      -5
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(take(input,2)),4),-1),3)"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [-6, -9, 0]",
    "output": "generated_output : list = take(reverse(sub_n([4, -5, -2],4)),18)",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -9,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,4)),18)"
  },
  {
    "input": "input : list = [-4, -3, -5]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = take(take(sort_asc([-4, -3, -5]),14),15)",
    "io_inp": [
      -4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),14),15)"
  },
  {
    "input": "input : list = [1, -3, 4, 3, 1]\noutput : list = [4, 3, 1, 1, -3]",
    "output": "generated_output : list = take(sort_des([1, -3, 4, 3, 1]),5)",
    "io_inp": [
      1,
      -3,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),5)"
  },
  {
    "input": "input : list = [-1, 3, -3, 1, 3, 4]\noutput : list = [-11, -8, -8, -2, 10]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n(drop([-1, 3, -3, 1, 3, 4],1),-3)),1))",
    "io_inp": [
      -1,
      3,
      -3,
      1,
      3,
      4
    ],
    "io_out": [
      -11,
      -8,
      -8,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(drop(input,1),-3)),1))"
  },
  {
    "input": "input : list = [2, -5, -2, 5]\noutput : list = [5, -2, -5, 2]",
    "output": "generated_output : list = take(reverse([2, -5, -2, 5]),11)",
    "io_inp": [
      2,
      -5,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),11)"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [4, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(drop([-2, 5, 5],1)),-2)),3)",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(drop(input,1)),-2)),3)"
  },
  {
    "input": "input : list = [3, -1, -1]\noutput : list = [-1, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sub_n([3, -1, -1],-1)),5)))",
    "io_inp": [
      3,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sub_n(input,-1)),5)))"
  },
  {
    "input": "input : list = [-5, 5, -2, 1, -3]\noutput : list = [-8, 2, -5, -2, -6]",
    "output": "generated_output : list = sub_n(sub_n([-5, 5, -2, 1, -3],-1),4)",
    "io_inp": [
      -5,
      5,
      -2,
      1,
      -3
    ],
    "io_out": [
      -8,
      2,
      -5,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),4)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [15, 18]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(reverse([-1, -2]),-4)),-3),30)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      15,
      18
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(reverse(input),-4)),-3),30)"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [11, 10, 8]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(add_n([5, 4, 2],5))),1))",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      11,
      10,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(add_n(input,5))),1))"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [0, -3, -12]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(sort_des([0, -1, -4]),11))),3)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      0,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(sort_des(input),11))),3)"
  },
  {
    "input": "input : list = [5, -2, 2, 5, -4, 0]\noutput : list = [-20, 8, -8, -20, 16, 0]",
    "output": "generated_output : list = mul_n([5, -2, 2, 5, -4, 0],-4)",
    "io_inp": [
      5,
      -2,
      2,
      5,
      -4,
      0
    ],
    "io_out": [
      -20,
      8,
      -8,
      -20,
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, -1, -2, -5, -4]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(take([1, -1, -2, -5, -4],2),-1))))",
    "io_inp": [
      1,
      -1,
      -2,
      -5,
      -4
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(take(input,2),-1))))"
  },
  {
    "input": "input : list = [2, 5, 3, -4, 5]\noutput : list = [2, 2, 0, -1, -7]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(sort_asc([2, 5, 3, -4, 5]),4)),-1),45)",
    "io_inp": [
      2,
      5,
      3,
      -4,
      5
    ],
    "io_out": [
      2,
      2,
      0,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(sort_asc(input),4)),-1),45)"
  },
  {
    "input": "input : list = [5, -3, 3, -1, -4, 2]\noutput : list = [2, -4, -1, 3]",
    "output": "generated_output : list = reverse(drop([5, -3, 3, -1, -4, 2],2))",
    "io_inp": [
      5,
      -3,
      3,
      -1,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [3, 5, 2, 1, 4]\noutput : list = [12, 20, 8, 4, 16]",
    "output": "generated_output : list = mul_n(take(take(reverse(reverse([3, 5, 2, 1, 4])),30),25),4)",
    "io_inp": [
      3,
      5,
      2,
      1,
      4
    ],
    "io_out": [
      12,
      20,
      8,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(reverse(input)),30),25),4)"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [-16, 16, -8]",
    "output": "generated_output : list = mul_n([4, -4, 2],-4)",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      -16,
      16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = drop([1, 2, -2],1)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -3, -2, 4]\noutput : list = [5]",
    "output": "generated_output : list = take(mul_n(take([-5, -3, -2, 4],1),-1),3)",
    "io_inp": [
      -5,
      -3,
      -2,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,1),-1),3)"
  },
  {
    "input": "input : list = [-5, 0, -3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(take([-5, 0, -3],1),17))))",
    "io_inp": [
      -5,
      0,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(take(input,1),17))))"
  },
  {
    "input": "input : list = [3, 2, 3]\noutput : list = [2, 3]",
    "output": "generated_output : list = drop([3, 2, 3],1)",
    "io_inp": [
      3,
      2,
      3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 5, -2, -4, -5, -4]\noutput : list = [8, 7, 1, -1, -1, -2]",
    "output": "generated_output : list = take(sub_n(take(sort_des(add_n([4, 5, -2, -4, -5, -4],-2)),37),-5),27)",
    "io_inp": [
      4,
      5,
      -2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      8,
      7,
      1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(add_n(input,-2)),37),-5),27)"
  },
  {
    "input": "input : list = [1, -4, 4, 1, 4, 2]\noutput : list = [-3, -1, -4, -1, -9, -4]",
    "output": "generated_output : list = take(add_n(reverse([1, -4, 4, 1, 4, 2]),-5),26)",
    "io_inp": [
      1,
      -4,
      4,
      1,
      4,
      2
    ],
    "io_out": [
      -3,
      -1,
      -4,
      -1,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),-5),26)"
  },
  {
    "input": "input : list = [-5, 3, 3, -1, 4, 3]\noutput : list = [-18, 6, 6, -6, 9, 6]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(add_n([-5, 3, 3, -1, 4, 3],2),3),4),44),5)",
    "io_inp": [
      -5,
      3,
      3,
      -1,
      4,
      3
    ],
    "io_out": [
      -18,
      6,
      6,
      -6,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(add_n(input,2),3),4),44),5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-12, -6]",
    "output": "generated_output : list = take(mul_n(take(reverse(sort_asc([2, 4])),10),-3),41)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(sort_asc(input)),10),-3),41)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [50, -50]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc([-1, 3])),-1),-5),-5)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc(input)),-1),-5),-5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-4, -8]",
    "output": "generated_output : list = mul_n(reverse([-2, -1]),4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [3, -3, 3, 1, -2]\noutput : list = [1, 1, -1, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(add_n([3, -3, 3, 1, -2],-2),22))))",
    "io_inp": [
      3,
      -3,
      3,
      1,
      -2
    ],
    "io_out": [
      1,
      1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(add_n(input,-2),22))))"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [9, 8, 5]",
    "output": "generated_output : list = sub_n(sub_n(reverse([-1, 2, 3]),-1),-5)",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      9,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-1),-5)"
  },
  {
    "input": "input : list = [4, 3, -5, -1]\noutput : list = [-2, -3, -11, -7]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n(add_n([4, 3, -5, -1],2),4),-4)))",
    "io_inp": [
      4,
      3,
      -5,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -11,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(add_n(input,2),4),-4)))"
  },
  {
    "input": "input : list = [1, 1, 3, 1]\noutput : list = [2]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(take([1, 1, 3, 1],1)),2)),14)",
    "io_inp": [
      1,
      1,
      3,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(take(input,1)),2)),14)"
  },
  {
    "input": "input : list = [4, 2, 0, 0]\noutput : list = [2, 2, 4, 6]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(add_n([4, 2, 0, 0],3),14)),-1))",
    "io_inp": [
      4,
      2,
      0,
      0
    ],
    "io_out": [
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(add_n(input,3),14)),-1))"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [-15, 12, 12]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n([-4, -4, 5],1))),-3)",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      -15,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(input,1))),-3)"
  },
  {
    "input": "input : list = [3, 1, -2, 5, -5]\noutput : list = [-2, 0, 2, 5, 8]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(reverse([3, 1, -2, 5, -5]),-1)),3))",
    "io_inp": [
      3,
      1,
      -2,
      5,
      -5
    ],
    "io_out": [
      -2,
      0,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(reverse(input),-1)),3))"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sub_n(take(drop([-1, 2, -4],1),10),3)",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,1),10),3)"
  },
  {
    "input": "input : list = [-3, 2, -4, -1, 0, -2]\noutput : list = [4, -6]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(take([-3, 2, -4, -1, 0, -2],2)),2)))",
    "io_inp": [
      -3,
      2,
      -4,
      -1,
      0,
      -2
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(take(input,2)),2)))"
  },
  {
    "input": "input : list = [-3, 2, 4, 1, 2, -5]\noutput : list = [-10, -35, -45]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(take([-3, 2, 4, 1, 2, -5],3)),-5),-5))",
    "io_inp": [
      -3,
      2,
      4,
      1,
      2,
      -5
    ],
    "io_out": [
      -10,
      -35,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(take(input,3)),-5),-5))"
  },
  {
    "input": "input : list = [5, -1, 1, -5, -3]\noutput : list = [-5, -3, -1, 1, 5]",
    "output": "generated_output : list = sort_asc([5, -1, 1, -5, -3])",
    "io_inp": [
      5,
      -1,
      1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4, -2, 2, -3]\noutput : list = [-60, -84, -132, -72]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(drop(add_n([2, -4, -2, 2, -3],4),1),-5),3),-4)",
    "io_inp": [
      2,
      -4,
      -2,
      2,
      -3
    ],
    "io_out": [
      -60,
      -84,
      -132,
      -72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(drop(add_n(input,4),1),-5),3),-4)"
  },
  {
    "input": "input : list = [-5, 2, 2, 3, 4, 0]\noutput : list = [-14, -9, -7, -7, -6, -5]",
    "output": "generated_output : list = add_n(sort_asc(add_n([-5, 2, 2, 3, 4, 0],-4)),-5)",
    "io_inp": [
      -5,
      2,
      2,
      3,
      4,
      0
    ],
    "io_out": [
      -14,
      -9,
      -7,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,-4)),-5)"
  },
  {
    "input": "input : list = [-5, -1, -5]\noutput : list = [-4, -20, -20]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(reverse([-5, -1, -5])),4)),1)",
    "io_inp": [
      -5,
      -1,
      -5
    ],
    "io_out": [
      -4,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(reverse(input)),4)),1)"
  },
  {
    "input": "input : list = [4, 5, -1, 0, 4, -1]\noutput : list = [-100, -80, -80, 0, 20, 20]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(sort_asc([4, 5, -1, 0, 4, -1])),19),-5),4)",
    "io_inp": [
      4,
      5,
      -1,
      0,
      4,
      -1
    ],
    "io_out": [
      -100,
      -80,
      -80,
      0,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(sort_asc(input)),19),-5),4)"
  },
  {
    "input": "input : list = [5, -4, -2, 5, 2]\noutput : list = [-5, -1, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(drop([5, -4, -2, 5, 2],2)))),-3)",
    "io_inp": [
      5,
      -4,
      -2,
      5,
      2
    ],
    "io_out": [
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(drop(input,2)))),-3)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-1, 2]",
    "output": "generated_output : list = add_n(sort_asc([0, 3]),-1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-4, -5, -3, 0, 2]\noutput : list = [-7, -9, -12, -13, -14]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(sub_n([-4, -5, -3, 0, 2],4))),-5))",
    "io_inp": [
      -4,
      -5,
      -3,
      0,
      2
    ],
    "io_out": [
      -7,
      -9,
      -12,
      -13,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(sub_n(input,4))),-5))"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-3, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -5, -3])",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [8, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(add_n([3, -5, -4],4)),1)",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      8,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(input,4)),1)"
  },
  {
    "input": "input : list = [2, -3, -3, 2]\noutput : list = [-5, -5, -30]",
    "output": "generated_output : list = mul_n(sub_n(take(take(drop([2, -3, -3, 2],1),16),13),-4),-5)",
    "io_inp": [
      2,
      -3,
      -3,
      2
    ],
    "io_out": [
      -5,
      -5,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(drop(input,1),16),13),-4),-5)"
  },
  {
    "input": "input : list = [-2, 2, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(take([-2, 2, 0],1),16),4)))",
    "io_inp": [
      -2,
      2,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(take(input,1),16),4)))"
  },
  {
    "input": "input : list = [2, -4, 3, -1]\noutput : list = [9, 1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(drop([2, -4, 3, -1],2))),2),-3)",
    "io_inp": [
      2,
      -4,
      3,
      -1
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(drop(input,2))),2),-3)"
  },
  {
    "input": "input : list = [4, 5, -3, 1]\noutput : list = [1, -3, 5, 4]",
    "output": "generated_output : list = reverse([4, 5, -3, 1])",
    "io_inp": [
      4,
      5,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, -3, -2, -5]\noutput : list = [-2, 0, -8, -7, -10]",
    "output": "generated_output : list = add_n([3, 5, -3, -2, -5],-5)",
    "io_inp": [
      3,
      5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -2,
      0,
      -8,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [0, -20, -20]",
    "output": "generated_output : list = mul_n([0, 5, 5],-4)",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [0, 10, -20]",
    "output": "generated_output : list = mul_n([0, -2, 4],-5)",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      0,
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 0, 2, -3]\noutput : list = [2, 0, -3, -4]",
    "output": "generated_output : list = take(sort_des(take(sort_des(sort_asc([-4, 0, 2, -3])),19)),46)",
    "io_inp": [
      -4,
      0,
      2,
      -3
    ],
    "io_out": [
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(sort_asc(input)),19)),46)"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [2, -3, -7]",
    "output": "generated_output : list = sort_des(sub_n([-5, 4, -1],2))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [-5, -3, -3, 0, -5]\noutput : list = [0, 0, 2, 2, 5]",
    "output": "generated_output : list = take(add_n(reverse(reverse(sort_asc([-5, -3, -3, 0, -5]))),5),48)",
    "io_inp": [
      -5,
      -3,
      -3,
      0,
      -5
    ],
    "io_out": [
      0,
      0,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(sort_asc(input))),5),48)"
  },
  {
    "input": "input : list = [4, -1, 1, -1]\noutput : list = [7]",
    "output": "generated_output : list = add_n(take([4, -1, 1, -1],1),3)",
    "io_inp": [
      4,
      -1,
      1,
      -1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-3, 0, -5, -1, -3, -3]\noutput : list = [-16, 8, -32, 0, -16, -16]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n([-3, 0, -5, -1, -3, -3],1),2),-1),-4)",
    "io_inp": [
      -3,
      0,
      -5,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -16,
      8,
      -32,
      0,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(input,1),2),-1),-4)"
  },
  {
    "input": "input : list = [-4, -4, 5, -2]\noutput : list = [-3, -3, 6, -1]",
    "output": "generated_output : list = add_n([-4, -4, 5, -2],1)",
    "io_inp": [
      -4,
      -4,
      5,
      -2
    ],
    "io_out": [
      -3,
      -3,
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, -4, 2, -1]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(take([2, -4, 2, -1],1),2))),29)",
    "io_inp": [
      2,
      -4,
      2,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(take(input,1),2))),29)"
  },
  {
    "input": "input : list = [-5, 0, -4]\noutput : list = [-5, -9, -10]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(sort_asc([-5, 0, -4]))),-5))",
    "io_inp": [
      -5,
      0,
      -4
    ],
    "io_out": [
      -5,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = reverse([-3, 5])",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 3, 3]\noutput : list = [20, 15, 15]",
    "output": "generated_output : list = mul_n([4, 3, 3],5)",
    "io_inp": [
      4,
      3,
      3
    ],
    "io_out": [
      20,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-1, -6, -9]",
    "output": "generated_output : list = sub_n([4, -1, -4],5)",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(reverse(add_n(reverse(sort_des([-5, -1])),2)),16)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(sort_des(input)),2)),16)"
  },
  {
    "input": "input : list = [3, 2, -1, 2, 5, 3]\noutput : list = [-3, 0, 3, 1]",
    "output": "generated_output : list = drop(sub_n(sub_n([3, 2, -1, 2, 5, 3],4),-2),2)",
    "io_inp": [
      3,
      2,
      -1,
      2,
      5,
      3
    ],
    "io_out": [
      -3,
      0,
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(sub_n(sub_n(input,4),-2),2)"
  },
  {
    "input": "input : list = [-1, 4, 2, 3, -5, 3]\noutput : list = [0, 5, 3, 4, -4, 4]",
    "output": "generated_output : list = sub_n([-1, 4, 2, 3, -5, 3],-1)",
    "io_inp": [
      -1,
      4,
      2,
      3,
      -5,
      3
    ],
    "io_out": [
      0,
      5,
      3,
      4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, -5, 3, -4]\noutput : list = [8, 1, 9, 1]",
    "output": "generated_output : list = reverse(mul_n(add_n([3, -5, 3, -4],-4),-1))",
    "io_inp": [
      3,
      -5,
      3,
      -4
    ],
    "io_out": [
      8,
      1,
      9,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-4),-1))"
  },
  {
    "input": "input : list = [-5, -5, 0, -3, -2]\noutput : list = [-6, -7, -4, -9, -9]",
    "output": "generated_output : list = add_n(reverse([-5, -5, 0, -3, -2]),-4)",
    "io_inp": [
      -5,
      -5,
      0,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -7,
      -4,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-5, -4, 5]\noutput : list = [-25, -20, 25]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(sort_des([-5, -4, 5])))),5)",
    "io_inp": [
      -5,
      -4,
      5
    ],
    "io_out": [
      -25,
      -20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [2, 5, 4, -1, 5]\noutput : list = [5, 5, 4, 2, -1]",
    "output": "generated_output : list = sort_des(sort_asc([2, 5, 4, -1, 5]))",
    "io_inp": [
      2,
      5,
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -2, 1, -3, -5, -2]\noutput : list = [-10, -8, -7, -7, -4]",
    "output": "generated_output : list = take(reverse(add_n(sort_des([1, -2, 1, -3, -5, -2]),-5)),5)",
    "io_inp": [
      1,
      -2,
      1,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -7,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(input),-5)),5)"
  },
  {
    "input": "input : list = [4, 2, -4, -2, -4, 4]\noutput : list = [4, 4, 2, -2, -4, -4]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(sort_des([4, 2, -4, -2, -4, 4]),1)),1),51)",
    "io_inp": [
      4,
      2,
      -4,
      -2,
      -4,
      4
    ],
    "io_out": [
      4,
      4,
      2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(sort_des(input),1)),1),51)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc([3, 2])",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, 4, -3, 3, -3]\noutput : list = [-10, -8, -5, -1]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take([-5, 0, 4, -3, 3, -3],4),-3),-2))",
    "io_inp": [
      -5,
      0,
      4,
      -3,
      3,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(input,4),-3),-2))"
  },
  {
    "input": "input : list = [-5, -2, 2, 1, -1]\noutput : list = [9, 8, 6, 5, 2]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sub_n([-5, -2, 2, 1, -1],-4))),-3))",
    "io_inp": [
      -5,
      -2,
      2,
      1,
      -1
    ],
    "io_out": [
      9,
      8,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sub_n(input,-4))),-3))"
  },
  {
    "input": "input : list = [-4, -3, -2, 2]\noutput : list = [6, 10]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(drop([-4, -3, -2, 2],2),-4)),4),34)",
    "io_inp": [
      -4,
      -3,
      -2,
      2
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(drop(input,2),-4)),4),34)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [8, 0]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(sort_asc([5, -3])),-3)))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [5, -4, -3, 0, -4, 2]\noutput : list = [-12, -12, -9, 0, 6, 15]",
    "output": "generated_output : list = mul_n(sort_asc([5, -4, -3, 0, -4, 2]),3)",
    "io_inp": [
      5,
      -4,
      -3,
      0,
      -4,
      2
    ],
    "io_out": [
      -12,
      -12,
      -9,
      0,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-2, -2, 0, -1, 3]\noutput : list = [14, -4, -10, -16, -16]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_des(mul_n([-2, -2, 0, -1, 3],3)),2)),2)",
    "io_inp": [
      -2,
      -2,
      0,
      -1,
      3
    ],
    "io_out": [
      14,
      -4,
      -10,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_des(mul_n(input,3)),2)),2)"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([-2, -4, 0])))",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-2, -2, 4, 0, -2, 3]\noutput : list = [-2, -2, -2, 0, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(take(reverse([-2, -2, 4, 0, -2, 3]),13)))",
    "io_inp": [
      -2,
      -2,
      4,
      0,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(input),13)))"
  },
  {
    "input": "input : list = [-1, 5, 3, -5, -4, -2]\noutput : list = [10, 8, 4, 3, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc([-1, 5, 3, -5, -4, -2]))),-5)",
    "io_inp": [
      -1,
      5,
      3,
      -5,
      -4,
      -2
    ],
    "io_out": [
      10,
      8,
      4,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [-5, 3, 5, -3, 5]\noutput : list = [-5, -3, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, 3, 5, -3, 5]))",
    "io_inp": [
      -5,
      3,
      5,
      -3,
      5
    ],
    "io_out": [
      -5,
      -3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 4, -1, -5]\noutput : list = [-11, -11, -1, 7]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([4, 4, -1, -5],-2)),3)",
    "io_inp": [
      4,
      4,
      -1,
      -5
    ],
    "io_out": [
      -11,
      -11,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,-2)),3)"
  },
  {
    "input": "input : list = [-1, 3, -4, 1, 2, 4]\noutput : list = [-5, -2, 0, 1, 2, 3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_des([-1, 3, -4, 1, 2, 4])),4),-3))",
    "io_inp": [
      -1,
      3,
      -4,
      1,
      2,
      4
    ],
    "io_out": [
      -5,
      -2,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_des(input)),4),-3))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = mul_n([1, 0],5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 0, 1, -4, 4, -1]\noutput : list = [-4, -1, 0, 1, 1, 4]",
    "output": "generated_output : list = sort_asc([1, 0, 1, -4, 4, -1])",
    "io_inp": [
      1,
      0,
      1,
      -4,
      4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, 3, 1, 3]\noutput : list = [-3, -2, 3, 5, 5]",
    "output": "generated_output : list = take(add_n(sort_asc([-5, -4, 3, 1, 3]),2),12)",
    "io_inp": [
      -5,
      -4,
      3,
      1,
      3
    ],
    "io_out": [
      -3,
      -2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),2),12)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(reverse(drop(take(add_n([-2, -3],-2),13),1)))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(take(add_n(input,-2),13),1)))"
  },
  {
    "input": "input : list = [-1, 3, -4, -5]\noutput : list = [-2, 14, -14, -18]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n([-1, 3, -4, -5],4),4),8),2)",
    "io_inp": [
      -1,
      3,
      -4,
      -5
    ],
    "io_out": [
      -2,
      14,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(input,4),4),8),2)"
  },
  {
    "input": "input : list = [1, 0, 0, -4, -5, -3]\noutput : list = [-4, -3, -3, 0, 1, 2]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(sort_des([1, 0, 0, -4, -5, -3]),-2),-1),-1),20)",
    "io_inp": [
      1,
      0,
      0,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(sort_des(input),-2),-1),-1),20)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sub_n(reverse([0, -3]),3)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n([-4, -1],2))),19)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(input,2))),19)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(sort_des([5, -5])))))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, -3, -4, 5]\noutput : list = [-3, -2, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_des([5, -3, -4, 5]),5),-1),5))",
    "io_inp": [
      5,
      -3,
      -4,
      5
    ],
    "io_out": [
      -3,
      -2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_des(input),5),-1),5))"
  },
  {
    "input": "input : list = [-3, 2, 1, -3]\noutput : list = [4, 3, -1, -1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(add_n([-3, 2, 1, -3],-1),3),-5)),-5)",
    "io_inp": [
      -3,
      2,
      1,
      -3
    ],
    "io_out": [
      4,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(add_n(input,-1),3),-5)),-5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [8, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(mul_n([5, 2],4)))))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [3, 2, 3, 1, -2]\noutput : list = [12, 12, 8, 4, -8]",
    "output": "generated_output : list = take(sort_des(take(take(mul_n([3, 2, 3, 1, -2],4),22),26)),9)",
    "io_inp": [
      3,
      2,
      3,
      1,
      -2
    ],
    "io_out": [
      12,
      12,
      8,
      4,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(mul_n(input,4),22),26)),9)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [-5, -1, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des([-5, -1, 2])),5)",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),5)"
  },
  {
    "input": "input : list = [0, -3, -5, -3, 0]\noutput : list = [20, 10, 10, -5, -5]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(sort_des([0, -3, -5, -3, 0]),-5)),21),5)",
    "io_inp": [
      0,
      -3,
      -5,
      -3,
      0
    ],
    "io_out": [
      20,
      10,
      10,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(sort_des(input),-5)),21),5)"
  },
  {
    "input": "input : list = [-5, 1, -1]\noutput : list = [8, 0, -16]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(sort_asc([-5, 1, -1]),-1),4)))",
    "io_inp": [
      -5,
      1,
      -1
    ],
    "io_out": [
      8,
      0,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(sort_asc(input),-1),4)))"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [0, -6, -2]",
    "output": "generated_output : list = sub_n([1, -5, -1],1)",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      0,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 0, 3, 1, 0, 5]\noutput : list = [7, 2, 3, 5, 2, 6]",
    "output": "generated_output : list = reverse(add_n([4, 0, 3, 1, 0, 5],2))",
    "io_inp": [
      4,
      0,
      3,
      1,
      0,
      5
    ],
    "io_out": [
      7,
      2,
      3,
      5,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [-2, 5, 4, -2, 4, -5]\noutput : list = [2, 9, 8, 2, 8, -1]",
    "output": "generated_output : list = sub_n([-2, 5, 4, -2, 4, -5],-4)",
    "io_inp": [
      -2,
      5,
      4,
      -2,
      4,
      -5
    ],
    "io_out": [
      2,
      9,
      8,
      2,
      8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [44, 44]",
    "output": "generated_output : list = mul_n(add_n(sub_n([-5, -5],4),-2),-4)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      44,
      44
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,4),-2),-4)"
  },
  {
    "input": "input : list = [-5, -1, -3, 1]\noutput : list = [-32, -12, -22]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(add_n([-5, -1, -3, 1],-1),5),3),-5),3)",
    "io_inp": [
      -5,
      -1,
      -3,
      1
    ],
    "io_out": [
      -32,
      -12,
      -22
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(add_n(input,-1),5),3),-5),3)"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take([1, -2, 1],1),3)))",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(input,1),3)))"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [4, 0, -1]",
    "output": "generated_output : list = sort_des([0, 4, -1])",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, 4, -2, -4, 5]\noutput : list = [-36, -32, -8, -4, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-4, -3, 4, -2, -4, 5],-4)),-4)",
    "io_inp": [
      -4,
      -3,
      4,
      -2,
      -4,
      5
    ],
    "io_out": [
      -36,
      -32,
      -8,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-4)),-4)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [6, 0, 2]",
    "output": "generated_output : list = mul_n([3, 0, 1],2)",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      6,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-4, -12]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc([-3, -5]),2)),4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(input),2)),4)"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [-20, -25]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n(drop([-3, -5, -4],1),5))))",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(drop(input,1),5))))"
  },
  {
    "input": "input : list = [4, 1, 1, 2, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(add_n(mul_n(drop(add_n([4, 1, 1, 2, -3],2),4),-2),-2))",
    "io_inp": [
      4,
      1,
      1,
      2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(drop(add_n(input,2),4),-2),-2))"
  },
  {
    "input": "input : list = [0, 1, -2, -4, 0, 5]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(take([0, 1, -2, -4, 0, 5],2),-3),-1)))",
    "io_inp": [
      0,
      1,
      -2,
      -4,
      0,
      5
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(take(input,2),-3),-1)))"
  },
  {
    "input": "input : list = [1, -5, -4]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(sub_n([1, -5, -4],-2)))))",
    "io_inp": [
      1,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [1, 3, 0, 4]\noutput : list = [-20, -16, -8, -4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([1, 3, 0, 4],1),-4))",
    "io_inp": [
      1,
      3,
      0,
      4
    ],
    "io_out": [
      -20,
      -16,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,1),-4))"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [20, 20, 40]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(mul_n([-2, -4, -2],-2)),20),5))",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      20,
      20,
      40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(mul_n(input,-2)),20),5))"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = drop([-5, 1, 3],1)",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = mul_n([-1, 0],-3)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [11, 7, 1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des([-5, 1, 5]),5),-1))",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      11,
      7,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(input),5),-1))"
  },
  {
    "input": "input : list = [-1, 1, -2, 4]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(reverse(take([-1, 1, -2, 4],2)))",
    "io_inp": [
      -1,
      1,
      -2,
      4
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 2, 3, -3, 0]\noutput : list = [-1, 3, 1, 2, -4, -1]",
    "output": "generated_output : list = sub_n([0, 4, 2, 3, -3, 0],1)",
    "io_inp": [
      0,
      4,
      2,
      3,
      -3,
      0
    ],
    "io_out": [
      -1,
      3,
      1,
      2,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, -4, -4, -4, 1, -5]\noutput : list = [1, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(take([0, -4, -4, -4, 1, -5],2)))),5)",
    "io_inp": [
      0,
      -4,
      -4,
      -4,
      1,
      -5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(take(input,2)))),5)"
  },
  {
    "input": "input : list = [2, 1, -3, -1, 3, 2]\noutput : list = [-3, -1, 1, 2, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(sort_asc([2, 1, -3, -1, 3, 2])),11)))",
    "io_inp": [
      2,
      1,
      -3,
      -1,
      3,
      2
    ],
    "io_out": [
      -3,
      -1,
      1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(sort_asc(input)),11)))"
  },
  {
    "input": "input : list = [-4, 5, -1, 3, 5, 3]\noutput : list = [3, 5, 3]",
    "output": "generated_output : list = drop([-4, 5, -1, 3, 5, 3],3)",
    "io_inp": [
      -4,
      5,
      -1,
      3,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 5, 4, -1, 4, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(take([-5, 5, 4, -1, 4, -1],1))",
    "io_inp": [
      -5,
      5,
      4,
      -1,
      4,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, -5, -5, 2, -2, -1]\noutput : list = [10, -5, -5, -10, -25, -25]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-1, -5, -5, 2, -2, -1])),5)",
    "io_inp": [
      -1,
      -5,
      -5,
      2,
      -2,
      -1
    ],
    "io_out": [
      10,
      -5,
      -5,
      -10,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [-4, -5, 1, -2, -2, 3]\noutput : list = [-16, -20, 4, -8, -8, 12]",
    "output": "generated_output : list = take(take(mul_n([-4, -5, 1, -2, -2, 3],4),29),7)",
    "io_inp": [
      -4,
      -5,
      1,
      -2,
      -2,
      3
    ],
    "io_out": [
      -16,
      -20,
      4,
      -8,
      -8,
      12
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,4),29),7)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-12, -20]",
    "output": "generated_output : list = sort_des(mul_n([3, 5],-4))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [-3, 0, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(reverse([-3, 0, 4])))),13)",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(reverse(input)))),13)"
  },
  {
    "input": "input : list = [-2, 3, -3, 5]\noutput : list = [-6, -5, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([-2, 3, -3, 5])),-3)",
    "io_inp": [
      -2,
      3,
      -3,
      5
    ],
    "io_out": [
      -6,
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [0, -5, -1, -4, -3, 3]\noutput : list = [3, -3, -4, -1, -5, 0]",
    "output": "generated_output : list = reverse([0, -5, -1, -4, -3, 3])",
    "io_inp": [
      0,
      -5,
      -1,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -4,
      -1,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [7, 1]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(sub_n([-1, 2],3),4),2),1))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(sub_n(input,3),4),2),1))"
  },
  {
    "input": "input : list = [-4, 0, 1, 3, 4]\noutput : list = [-10, -2, 0, 4, 6]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sort_asc([-4, 0, 1, 3, 4]),2),2)))",
    "io_inp": [
      -4,
      0,
      1,
      3,
      4
    ],
    "io_out": [
      -10,
      -2,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sort_asc(input),2),2)))"
  },
  {
    "input": "input : list = [-4, -4, -4, 3, 5, -1]\noutput : list = [-4, -4, -4, 3, 5, -1]",
    "output": "generated_output : list = reverse(reverse([-4, -4, -4, 3, 5, -1]))",
    "io_inp": [
      -4,
      -4,
      -4,
      3,
      5,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -4,
      3,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [-16, -8, 12]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(mul_n([2, 0, -5],-4),-3),-5)))",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      -16,
      -8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(mul_n(input,-4),-3),-5)))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-3]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n([0, -1],5)),-2),1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(input,5)),-2),1)"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = mul_n([-1, -2, -2],1)",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [5, -5, 4]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(drop(sub_n([5, -5, 4],-4),2),5)))",
    "io_inp": [
      5,
      -5,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(drop(sub_n(input,-4),2),5)))"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [1, 0, -6]",
    "output": "generated_output : list = sub_n(reverse([-5, 1, 2]),1)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      1,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [5, -15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des([3, -1]))),-5)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(input))),-5)"
  },
  {
    "input": "input : list = [5, 2, -5, 2, 1, 0]\noutput : list = [4, 1, 1, 0, -1, -6]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(add_n([5, 2, -5, 2, 1, 0],2)),-4),1))",
    "io_inp": [
      5,
      2,
      -5,
      2,
      1,
      0
    ],
    "io_out": [
      4,
      1,
      1,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(add_n(input,2)),-4),1))"
  },
  {
    "input": "input : list = [0, 0, -4, -5, -3]\noutput : list = [-3, -3, -6, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des([0, 0, -4, -5, -3]),3)",
    "io_inp": [
      0,
      0,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-4, -5, 3, 0, -2]\noutput : list = [-9, -7, -4, -12, -11]",
    "output": "generated_output : list = reverse(add_n(sub_n([-4, -5, 3, 0, -2],2),-5))",
    "io_inp": [
      -4,
      -5,
      3,
      0,
      -2
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -12,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,2),-5))"
  },
  {
    "input": "input : list = [5, 2, -5, 4]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(take([5, 2, -5, 4],2),2)),21))",
    "io_inp": [
      5,
      2,
      -5,
      4
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(take(input,2),2)),21))"
  },
  {
    "input": "input : list = [-4, -5, -2, 5]\noutput : list = [4, 5, 2, -5]",
    "output": "generated_output : list = take(mul_n([-4, -5, -2, 5],-1),20)",
    "io_inp": [
      -4,
      -5,
      -2,
      5
    ],
    "io_out": [
      4,
      5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),20)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [180, 80, 80]",
    "output": "generated_output : list = mul_n(mul_n(take(mul_n(sub_n([-4, 1, 1],5),2),23),-2),5)",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      180,
      80,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(mul_n(sub_n(input,5),2),23),-2),5)"
  },
  {
    "input": "input : list = [-1, 0, 2, -1]\noutput : list = [4, 9, 19, 4]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(sub_n([-1, 0, 2, -1],-2),10),-5),-1),-1)",
    "io_inp": [
      -1,
      0,
      2,
      -1
    ],
    "io_out": [
      4,
      9,
      19,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(sub_n(input,-2),10),-5),-1),-1)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [0, -3, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(add_n([1, -5, -2],-1)))))",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [1, -2, -3, 5]\noutput : list = [-2, -5, -6, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(sub_n([1, -2, -3, 5],4),5))),4)",
    "io_inp": [
      1,
      -2,
      -3,
      5
    ],
    "io_out": [
      -2,
      -5,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(sub_n(input,4),5))),4)"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [-2, 2, -8]",
    "output": "generated_output : list = sub_n([1, 5, -5],3)",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      -2,
      2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, -5, -3, -1, 5, 1]\noutput : list = [-20, -12, -4, -4, 4, 20]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -5, -3, -1, 5, 1],4))",
    "io_inp": [
      -1,
      -5,
      -3,
      -1,
      5,
      1
    ],
    "io_out": [
      -20,
      -12,
      -4,
      -4,
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [5, -4, -5, 3, 2]\noutput : list = [7, 6, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(drop([5, -4, -5, 3, 2],1)),1),-5))",
    "io_inp": [
      5,
      -4,
      -5,
      3,
      2
    ],
    "io_out": [
      7,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(drop(input,1)),1),-5))"
  },
  {
    "input": "input : list = [5, -2, 2, 0, 4]\noutput : list = [-30, 5, -15, -5, -25]",
    "output": "generated_output : list = mul_n(sub_n([5, -2, 2, 0, 4],-1),-5)",
    "io_inp": [
      5,
      -2,
      2,
      0,
      4
    ],
    "io_out": [
      -30,
      5,
      -15,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-5)"
  },
  {
    "input": "input : list = [-2, 3, 1, -5]\noutput : list = [0, 3, 6, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(reverse([-2, 3, 1, -5]),4)),-1))",
    "io_inp": [
      -2,
      3,
      1,
      -5
    ],
    "io_out": [
      0,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(reverse(input),4)),-1))"
  },
  {
    "input": "input : list = [5, 0, -4]\noutput : list = [-4, 0, 5]",
    "output": "generated_output : list = take(reverse(mul_n([5, 0, -4],1)),5)",
    "io_inp": [
      5,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,1)),5)"
  },
  {
    "input": "input : list = [-2, -2, 0, 2, 3]\noutput : list = [3, 2, 0, -2, -2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(add_n([-2, -2, 0, 2, 3],4)),-4),30))",
    "io_inp": [
      -2,
      -2,
      0,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(add_n(input,4)),-4),30))"
  },
  {
    "input": "input : list = [2, -2, 2, 2, -2]\noutput : list = [-2, 2, 2, -2, 2]",
    "output": "generated_output : list = reverse([2, -2, 2, 2, -2])",
    "io_inp": [
      2,
      -2,
      2,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, 0]\noutput : list = [-16, -25, -10]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n([2, 5, 0],1),-3),-3),4)",
    "io_inp": [
      2,
      5,
      0
    ],
    "io_out": [
      -16,
      -25,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(input,1),-3),-3),4)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = reverse(sort_asc(take(drop([-5, 0, -2],1),3)))",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(drop(input,1),3)))"
  },
  {
    "input": "input : list = [-5, -5, 2, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, -5, 2, 3],1))",
    "io_inp": [
      -5,
      -5,
      2,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [-3, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, -3])",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, -2, 4, 3]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = take(sort_asc(take(add_n(drop([1, 3, -2, 4, 3],2),-3),30)),36)",
    "io_inp": [
      1,
      3,
      -2,
      4,
      3
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(drop(input,2),-3),30)),36)"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-17, -15, -9]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_asc([-5, -4, -1]),2),-2),-4),-5)",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -17,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_asc(input),2),-2),-4),-5)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-9, 6]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(mul_n([3, 0],-5),-3))),3)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -9,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(mul_n(input,-5),-3))),3)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [25, 20, -15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([-4, -5, 3])),-5)",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      25,
      20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),-5)"
  },
  {
    "input": "input : list = [-3, 2, 0, 5, 3, -3]\noutput : list = [-6, -1, -3, 2, 0, -6]",
    "output": "generated_output : list = add_n(reverse(reverse([-3, 2, 0, 5, 3, -3])),-3)",
    "io_inp": [
      -3,
      2,
      0,
      5,
      3,
      -3
    ],
    "io_out": [
      -6,
      -1,
      -3,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [2, 3, -4, 5]\noutput : list = [5, -1, -4, -22]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(add_n([2, 3, -4, 5],-5),3)),5))",
    "io_inp": [
      2,
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      -1,
      -4,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(add_n(input,-5),3)),5))"
  },
  {
    "input": "input : list = [-3, 2, 2]\noutput : list = [12, -8, -8]",
    "output": "generated_output : list = mul_n([-3, 2, 2],-4)",
    "io_inp": [
      -3,
      2,
      2
    ],
    "io_out": [
      12,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc([-1, -2])",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, -1, 3, 5, -1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = take(sub_n(take(take(take([0, 5, -1, 3, 5, -1],2),4),22),5),15)",
    "io_inp": [
      0,
      5,
      -1,
      3,
      5,
      -1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(take(input,2),4),22),5),15)"
  },
  {
    "input": "input : list = [-1, 1, 3, 3]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(take([-1, 1, 3, 3],1),3))))",
    "io_inp": [
      -1,
      1,
      3,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(take(input,1),3))))"
  },
  {
    "input": "input : list = [-2, 5, -1]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(take([-2, 5, -1],1))),23),3)",
    "io_inp": [
      -2,
      5,
      -1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(take(input,1))),23),3)"
  },
  {
    "input": "input : list = [1, -1, 4, 3, 3, -4]\noutput : list = [11, 10, 10, 8, 6, 3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(sub_n([1, -1, 4, 3, 3, -4],-5),-2),3)),3)",
    "io_inp": [
      1,
      -1,
      4,
      3,
      3,
      -4
    ],
    "io_out": [
      11,
      10,
      10,
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(sub_n(input,-5),-2),3)),3)"
  },
  {
    "input": "input : list = [1, 4, 2, 2, 4, 4]\noutput : list = [-2, -2, 0, 0]",
    "output": "generated_output : list = drop(sub_n([1, 4, 2, 2, 4, 4],4),2)",
    "io_inp": [
      1,
      4,
      2,
      2,
      4,
      4
    ],
    "io_out": [
      -2,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,4),2)"
  },
  {
    "input": "input : list = [-5, 0, -3]\noutput : list = [-13, -3, -9]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n([-5, 0, -3],1),2),1),2)",
    "io_inp": [
      -5,
      0,
      -3
    ],
    "io_out": [
      -13,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(input,1),2),1),2)"
  },
  {
    "input": "input : list = [2, 4, -1, 3, 4]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(take([2, 4, -1, 3, 4],1)))))",
    "io_inp": [
      2,
      4,
      -1,
      3,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [-3, -3, -3, 3]\noutput : list = [12, 12, 12, -6]",
    "output": "generated_output : list = add_n(mul_n([-3, -3, -3, 3],-3),3)",
    "io_inp": [
      -3,
      -3,
      -3,
      3
    ],
    "io_out": [
      12,
      12,
      12,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),3)"
  },
  {
    "input": "input : list = [-1, 2, 1, 5]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(drop([-1, 2, 1, 5],2),17))),-1)",
    "io_inp": [
      -1,
      2,
      1,
      5
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(drop(input,2),17))),-1)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(reverse([-2, -4]),-5)),5),16)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(reverse(input),-5)),5),16)"
  },
  {
    "input": "input : list = [3, -5, -5, 0]\noutput : list = [0, -5, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, -5, 0])",
    "io_inp": [
      3,
      -5,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2, -1, -1, -2, 3]\noutput : list = [-9, -2, -5, -5, -6, -1]",
    "output": "generated_output : list = add_n([-5, 2, -1, -1, -2, 3],-4)",
    "io_inp": [
      -5,
      2,
      -1,
      -1,
      -2,
      3
    ],
    "io_out": [
      -9,
      -2,
      -5,
      -5,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, -1, -2, 5, -1]\noutput : list = [5, 4, 4, -2, -2]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n([5, -1, -2, 5, -1],3)),-1))",
    "io_inp": [
      5,
      -1,
      -2,
      5,
      -1
    ],
    "io_out": [
      5,
      4,
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(input,3)),-1))"
  },
  {
    "input": "input : list = [-5, -4, -4, 1, -1, -2]\noutput : list = [2, -3, -3, -4]",
    "output": "generated_output : list = add_n(take(take(reverse(take([-5, -4, -4, 1, -1, -2],4)),17),22),1)",
    "io_inp": [
      -5,
      -4,
      -4,
      1,
      -1,
      -2
    ],
    "io_out": [
      2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(take(input,4)),17),22),1)"
  },
  {
    "input": "input : list = [0, -1, 1, -4, -5, -1]\noutput : list = [-9, -8, -5, -5, -4, -3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc([0, -1, 1, -4, -5, -1]),4),-4)),-4)",
    "io_inp": [
      0,
      -1,
      1,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc(input),4),-4)),-4)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-4, -2, 4]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des([4, -2, -4])),14))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(input)),14))"
  },
  {
    "input": "input : list = [1, 3, 0, 3, -2, -1]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(sort_des([1, 3, 0, 3, -2, -1]))),2),2)",
    "io_inp": [
      1,
      3,
      0,
      3,
      -2,
      -1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(sort_des(input))),2),2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-8, 10]",
    "output": "generated_output : list = mul_n([-4, 5],2)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(reverse([1, 2]),4)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [1, -11]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(mul_n([1, 5],-3),1))),4)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      1,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(mul_n(input,-3),1))),4)"
  },
  {
    "input": "input : list = [4, 0, -3, -5, 5, -3]\noutput : list = [5, 4, 0, -3, -3, -5]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(sort_asc([4, 0, -3, -5, 5, -3])),1)),56)",
    "io_inp": [
      4,
      0,
      -3,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      4,
      0,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(sort_asc(input)),1)),56)"
  },
  {
    "input": "input : list = [0, -4, -5, -2, 2, 0]\noutput : list = [2, 0, 0, -2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(mul_n([0, -4, -5, -2, 2, 0],1),21))))",
    "io_inp": [
      0,
      -4,
      -5,
      -2,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(mul_n(input,1),21))))"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [9, 5, 4]",
    "output": "generated_output : list = take(add_n(take(reverse(add_n([-4, -3, 1],5)),19),3),35)",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      9,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(add_n(input,5)),19),3),35)"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [-30, -25, 10]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des([3, 2, -5]),3),-5))",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      -30,
      -25,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(input),3),-5))"
  },
  {
    "input": "input : list = [-5, -4, -5, -2]\noutput : list = [-5, -5, -4, -2]",
    "output": "generated_output : list = reverse(sort_des([-5, -4, -5, -2]))",
    "io_inp": [
      -5,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [-10, 2, -8]",
    "output": "generated_output : list = mul_n([5, -1, 4],-2)",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      -10,
      2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 2, 5, -5]\noutput : list = [-8, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(reverse([4, 2, 5, -5]),18),-2),-5))",
    "io_inp": [
      4,
      2,
      5,
      -5
    ],
    "io_out": [
      -8,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(reverse(input),18),-2),-5))"
  },
  {
    "input": "input : list = [4, -3, 5, -1, 3, 5]\noutput : list = [1, 3, 8, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(take([4, -3, 5, -1, 3, 5],4),1)),4))",
    "io_inp": [
      4,
      -3,
      5,
      -1,
      3,
      5
    ],
    "io_out": [
      1,
      3,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(take(input,4),1)),4))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [12, 15]",
    "output": "generated_output : list = add_n(take(take(sort_asc(add_n([5, 2],5)),5),21),5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      12,
      15
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(add_n(input,5)),5),21),5)"
  },
  {
    "input": "input : list = [-1, 3, -1, 0, 4, -5]\noutput : list = [3, 2, -1, -2, -2, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(sort_asc([-1, 3, -1, 0, 4, -5]))),1),50)",
    "io_inp": [
      -1,
      3,
      -1,
      0,
      4,
      -5
    ],
    "io_out": [
      3,
      2,
      -1,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(sort_asc(input))),1),50)"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [3, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(sort_asc([-3, -5, -4])),-1)))",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-2, 1, 2, -2, -5, -2]\noutput : list = [-4, -1, 0, -4, -7, -4]",
    "output": "generated_output : list = sub_n([-2, 1, 2, -2, -5, -2],2)",
    "io_inp": [
      -2,
      1,
      2,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -1,
      0,
      -4,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-8, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(mul_n([-5, 0],2),2))),-4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(mul_n(input,2),2))),-4)"
  },
  {
    "input": "input : list = [4, 5, -4, -4, -1]\noutput : list = [-1, -4, -4, 5, 4]",
    "output": "generated_output : list = reverse([4, 5, -4, -4, -1])",
    "io_inp": [
      4,
      5,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4,
      -4,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, 4, 0, -5, -4]\noutput : list = [10, 15, -10, -30, 10, -30]",
    "output": "generated_output : list = mul_n(sub_n(reverse([4, -4, 4, 0, -5, -4]),-2),-5)",
    "io_inp": [
      4,
      -4,
      4,
      0,
      -5,
      -4
    ],
    "io_out": [
      10,
      15,
      -10,
      -30,
      10,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-2),-5)"
  },
  {
    "input": "input : list = [-3, -4, 1, -5, -3, 4]\noutput : list = [-20, -5, -8]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(take([-3, -4, 1, -5, -3, 4],3),5),-3),2))",
    "io_inp": [
      -3,
      -4,
      1,
      -5,
      -3,
      4
    ],
    "io_out": [
      -20,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(take(input,3),5),-3),2))"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-12, 4, 8]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(sort_asc([3, -2, -1]))),-4))",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -12,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [1, -1, -4, -5]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(take([1, -1, -4, -5],2),3),4),1))",
    "io_inp": [
      1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(take(input,2),3),4),1))"
  },
  {
    "input": "input : list = [-4, 5, -5, 0, 1]\noutput : list = [5, 1, 0, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(reverse([-4, 5, -5, 0, 1])))))",
    "io_inp": [
      -4,
      5,
      -5,
      0,
      1
    ],
    "io_out": [
      5,
      1,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-40, -32]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(mul_n([4, 5],4),-2))))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -40,
      -32
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(mul_n(input,4),-2))))"
  },
  {
    "input": "input : list = [-2, 3, -3, 5, -1, -1]\noutput : list = [19, -13, 11, -9]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(take([-2, 3, -3, 5, -1, -1],4)),4),-2),-3)",
    "io_inp": [
      -2,
      3,
      -3,
      5,
      -1,
      -1
    ],
    "io_out": [
      19,
      -13,
      11,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(take(input,4)),4),-2),-3)"
  },
  {
    "input": "input : list = [-2, 1, -1, 3]\noutput : list = [3, 1, -1, -2]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(sort_asc([-2, 1, -1, 3]),1),1),28))",
    "io_inp": [
      -2,
      1,
      -1,
      3
    ],
    "io_out": [
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(sort_asc(input),1),1),28))"
  },
  {
    "input": "input : list = [4, 3, 1, 4, 1]\noutput : list = [5, 5, 7, 8, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(sort_asc([4, 3, 1, 4, 1]),3)),-1))",
    "io_inp": [
      4,
      3,
      1,
      4,
      1
    ],
    "io_out": [
      5,
      5,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(sort_asc(input),3)),-1))"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = reverse(take(drop([5, 3, -2],1),8))",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),8))"
  },
  {
    "input": "input : list = [-2, 3, -5, 3]\noutput : list = [-8, -8, 12, 24]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(sort_asc([-2, 3, -5, 3]))),-4),-4)",
    "io_inp": [
      -2,
      3,
      -5,
      3
    ],
    "io_out": [
      -8,
      -8,
      12,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(sort_asc(input))),-4),-4)"
  },
  {
    "input": "input : list = [-5, -3, -5, 4]\noutput : list = [-8, 0, -8, 28]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(reverse([-5, -3, -5, 4]),3),2),2))",
    "io_inp": [
      -5,
      -3,
      -5,
      4
    ],
    "io_out": [
      -8,
      0,
      -8,
      28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(reverse(input),3),2),2))"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-14, -49, -24]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(add_n([-3, 4, -1],3),-4),-5),-3),-3)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -14,
      -49,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(add_n(input,3),-4),-5),-3),-3)"
  },
  {
    "input": "input : list = [-3, 0, 1, 0, -1, 1]\noutput : list = [-4, -1, 0, -1, -2, 0]",
    "output": "generated_output : list = add_n([-3, 0, 1, 0, -1, 1],-1)",
    "io_inp": [
      -3,
      0,
      1,
      0,
      -1,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      -1,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [11, 8, 4]",
    "output": "generated_output : list = add_n(take(reverse(sub_n([-5, -1, 2],-4)),24),5)",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      11,
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(input,-4)),24),5)"
  },
  {
    "input": "input : list = [-4, 4, 4, 4, -1]\noutput : list = [1, 6, 6, 6, -2]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(sub_n([-4, 4, 4, 4, -1],2),-5),6),1))",
    "io_inp": [
      -4,
      4,
      4,
      4,
      -1
    ],
    "io_out": [
      1,
      6,
      6,
      6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(sub_n(input,2),-5),6),1))"
  },
  {
    "input": "input : list = [5, 4, -2, -3, 3]\noutput : list = [25, 20, -5, -10, -15]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc([5, 4, -2, -3, 3]),25)),2),-5)",
    "io_inp": [
      5,
      4,
      -2,
      -3,
      3
    ],
    "io_out": [
      25,
      20,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc(input),25)),2),-5)"
  },
  {
    "input": "input : list = [-5, -2, 5, 4, -2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = drop([-5, -2, 5, 4, -2, 0],4)",
    "io_inp": [
      -5,
      -2,
      5,
      4,
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [2, 3, -4, -1, -2, 2]\noutput : list = [-12, -10, -9, -6, -6, -5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(add_n([2, 3, -4, -1, -2, 2],-5))),-1),2)",
    "io_inp": [
      2,
      3,
      -4,
      -1,
      -2,
      2
    ],
    "io_out": [
      -12,
      -10,
      -9,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(add_n(input,-5))),-1),2)"
  },
  {
    "input": "input : list = [-4, -4, -3, 3, 4, -1]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(reverse(sort_des(take([-4, -4, -3, 3, 4, -1],1))),-4)",
    "io_inp": [
      -4,
      -4,
      -3,
      3,
      4,
      -1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(input,1))),-4)"
  },
  {
    "input": "input : list = [-1, 0, -3, 4, -2]\noutput : list = [7, -23]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(drop([-1, 0, -3, 4, -2],3)),-5),3)",
    "io_inp": [
      -1,
      0,
      -3,
      4,
      -2
    ],
    "io_out": [
      7,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(drop(input,3)),-5),3)"
  },
  {
    "input": "input : list = [4, 4, -4, 1, 4]\noutput : list = [-10, 5, 14, 14, 14]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sort_asc([4, 4, -4, 1, 4]),3))),-2)",
    "io_inp": [
      4,
      4,
      -4,
      1,
      4
    ],
    "io_out": [
      -10,
      5,
      14,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sort_asc(input),3))),-2)"
  },
  {
    "input": "input : list = [-5, -4, 5]\noutput : list = [-6, -5, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(add_n([-5, -4, 5],2),16)),1),-2)",
    "io_inp": [
      -5,
      -4,
      5
    ],
    "io_out": [
      -6,
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(add_n(input,2),16)),1),-2)"
  },
  {
    "input": "input : list = [5, 2, -4, -1, 0, -2]\noutput : list = [-4, -13, 5, 14]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(take([5, 2, -4, -1, 0, -2],4)),-1),3),4)",
    "io_inp": [
      5,
      2,
      -4,
      -1,
      0,
      -2
    ],
    "io_out": [
      -4,
      -13,
      5,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(take(input,4)),-1),3),4)"
  },
  {
    "input": "input : list = [4, -2, -1, -5, 5]\noutput : list = [7, 6, 1, 0, -3]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(sort_des([4, -2, -1, -5, 5])),-2),34))",
    "io_inp": [
      4,
      -2,
      -1,
      -5,
      5
    ],
    "io_out": [
      7,
      6,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(sort_des(input)),-2),34))"
  },
  {
    "input": "input : list = [-4, 2, 3, 2]\noutput : list = [9, 8, 8, 2]",
    "output": "generated_output : list = add_n(take(sort_des(sub_n(add_n([-4, 2, 3, 2],4),2)),35),4)",
    "io_inp": [
      -4,
      2,
      3,
      2
    ],
    "io_out": [
      9,
      8,
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sub_n(add_n(input,4),2)),35),4)"
  },
  {
    "input": "input : list = [3, 1, 1, 5]\noutput : list = [2, 0, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n([3, 1, 1, 5],3))",
    "io_inp": [
      3,
      1,
      1,
      5
    ],
    "io_out": [
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [2, -3, 4, 0, -2]\noutput : list = [-1, 1, 5, -2, 3]",
    "output": "generated_output : list = sub_n(reverse([2, -3, 4, 0, -2]),-1)",
    "io_inp": [
      2,
      -3,
      4,
      0,
      -2
    ],
    "io_out": [
      -1,
      1,
      5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-1, -4, -1, -5]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = sub_n(sort_asc(drop([-1, -4, -1, -5],1)),-2)",
    "io_inp": [
      -1,
      -4,
      -1,
      -5
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [2, -1, 4, 3, 2, 5]\noutput : list = [4, 2, -1]",
    "output": "generated_output : list = sort_des(take(take([2, -1, 4, 3, 2, 5],3),6))",
    "io_inp": [
      2,
      -1,
      4,
      3,
      2,
      5
    ],
    "io_out": [
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,3),6))"
  },
  {
    "input": "input : list = [2, -1, 2, -3]\noutput : list = [2, -1, 2, -3]",
    "output": "generated_output : list = reverse(reverse([2, -1, 2, -3]))",
    "io_inp": [
      2,
      -1,
      2,
      -3
    ],
    "io_out": [
      2,
      -1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, -1, -2, 2, 4, 4]\noutput : list = [-2, -1, 2, 2, 4, 4]",
    "output": "generated_output : list = sort_asc([2, -1, -2, 2, 4, 4])",
    "io_inp": [
      2,
      -1,
      -2,
      2,
      4,
      4
    ],
    "io_out": [
      -2,
      -1,
      2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4, -1, 0]\noutput : list = [-1, -9]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(take([4, -4, -1, 0],2)),-5)))",
    "io_inp": [
      4,
      -4,
      -1,
      0
    ],
    "io_out": [
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(take(input,2)),-5)))"
  },
  {
    "input": "input : list = [-2, -2, -5, -1, 4]\noutput : list = [2, 2, 5, 1, -4]",
    "output": "generated_output : list = take(mul_n([-2, -2, -5, -1, 4],-1),26)",
    "io_inp": [
      -2,
      -2,
      -5,
      -1,
      4
    ],
    "io_out": [
      2,
      2,
      5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),26)"
  },
  {
    "input": "input : list = [4, -2, -2, -5]\noutput : list = [2, -4, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(sort_des([4, -2, -2, -5]))),-2))",
    "io_inp": [
      4,
      -2,
      -2,
      -5
    ],
    "io_out": [
      2,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [1, -5, -5]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = add_n([1, -5, -5],3)",
    "io_inp": [
      1,
      -5,
      -5
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, 1, -4, 1, 4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(take([5, 1, -4, 1, 4],2),1)),-1),2)",
    "io_inp": [
      5,
      1,
      -4,
      1,
      4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(take(input,2),1)),-1),2)"
  },
  {
    "input": "input : list = [1, -2, -2, -4, 5, 5]\noutput : list = [14, 14, 22, -14, -14]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(drop([1, -2, -2, -4, 5, 5],1),-4),-1),-5),22)",
    "io_inp": [
      1,
      -2,
      -2,
      -4,
      5,
      5
    ],
    "io_out": [
      14,
      14,
      22,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(drop(input,1),-4),-1),-5),22)"
  },
  {
    "input": "input : list = [3, -2, -4, -5, -5]\noutput : list = [-6, -11, -13, -14, -14]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(sort_asc([3, -2, -4, -5, -5])),-5),4),37)",
    "io_inp": [
      3,
      -2,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -6,
      -11,
      -13,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(sort_asc(input)),-5),4),37)"
  },
  {
    "input": "input : list = [-2, 4, 2, -4]\noutput : list = [15, 5, -15, -25]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_asc([-2, 4, 2, -4]),5)),4),5)",
    "io_inp": [
      -2,
      4,
      2,
      -4
    ],
    "io_out": [
      15,
      5,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_asc(input),5)),4),5)"
  },
  {
    "input": "input : list = [1, -5, 5, -5, -2]\noutput : list = [-13, -7, -3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(take([1, -5, 5, -5, -2],3),-5),4)),1)",
    "io_inp": [
      1,
      -5,
      5,
      -5,
      -2
    ],
    "io_out": [
      -13,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(take(input,3),-5),4)),1)"
  },
  {
    "input": "input : list = [-3, 3, 2, 0, 3]\noutput : list = [-2, 4, 3, 1, 4]",
    "output": "generated_output : list = add_n([-3, 3, 2, 0, 3],1)",
    "io_inp": [
      -3,
      3,
      2,
      0,
      3
    ],
    "io_out": [
      -2,
      4,
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 4, -1, 5, -3, -2]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(sub_n(take(take(drop([4, 4, -1, 5, -3, -2],4),9),15),1),49)",
    "io_inp": [
      4,
      4,
      -1,
      5,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(drop(input,4),9),15),1),49)"
  },
  {
    "input": "input : list = [0, 2, 1, 2, 5, 0]\noutput : list = [0, 2, 1, 2, 5, 0]",
    "output": "generated_output : list = take(reverse(reverse(reverse(reverse([0, 2, 1, 2, 5, 0])))),41)",
    "io_inp": [
      0,
      2,
      1,
      2,
      5,
      0
    ],
    "io_out": [
      0,
      2,
      1,
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(reverse(input)))),41)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des(sub_n([-2, -2],1))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,1))"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [-8, -10, -10]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(mul_n([5, 4, 5],-2),14))))",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(mul_n(input,-2),14))))"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sort_des([-1, -3, -4])))))",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, -4, -2, 2, -2]\noutput : list = [4, -4, -4, -20]",
    "output": "generated_output : list = reverse(drop(mul_n(add_n(sort_des([4, -4, -2, 2, -2]),3),-4),1))",
    "io_inp": [
      4,
      -4,
      -2,
      2,
      -2
    ],
    "io_out": [
      4,
      -4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = reverse(drop(mul_n(add_n(sort_des(input),3),-4),1))"
  },
  {
    "input": "input : list = [-4, -3, 3, -1]\noutput : list = [6, -2]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(drop([-4, -3, 3, -1],2)),2)))",
    "io_inp": [
      -4,
      -3,
      3,
      -1
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(drop(input,2)),2)))"
  },
  {
    "input": "input : list = [3, -4, 5, 3, 0]\noutput : list = [60, 36, 36, 0, -48]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sort_asc([3, -4, 5, 3, 0]),3))),4)",
    "io_inp": [
      3,
      -4,
      5,
      3,
      0
    ],
    "io_out": [
      60,
      36,
      36,
      0,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sort_asc(input),3))),4)"
  },
  {
    "input": "input : list = [-3, -5, 1, -3, -5, -2]\noutput : list = [3, 3, 5, 5, 6, 9]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(sort_des([-3, -5, 1, -3, -5, -2]),-2),5),1))",
    "io_inp": [
      -3,
      -5,
      1,
      -3,
      -5,
      -2
    ],
    "io_out": [
      3,
      3,
      5,
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(sort_des(input),-2),5),1))"
  },
  {
    "input": "input : list = [-5, -5, -3, 5]\noutput : list = [-10, -10, -8, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_asc([-5, -5, -3, 5]),-5))))",
    "io_inp": [
      -5,
      -5,
      -3,
      5
    ],
    "io_out": [
      -10,
      -10,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_asc(input),-5))))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [8, 16]",
    "output": "generated_output : list = reverse(mul_n(take(take(mul_n([2, 1],-2),5),17),-4))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      8,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(mul_n(input,-2),5),17),-4))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = add_n([-3, -1],-3)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, -1, 5, 4, 5, 5]\noutput : list = [20, 16, 0, -4, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(reverse([0, -1, 5, 4, 5, 5]),4)),-4))",
    "io_inp": [
      0,
      -1,
      5,
      4,
      5,
      5
    ],
    "io_out": [
      20,
      16,
      0,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(reverse(input),4)),-4))"
  },
  {
    "input": "input : list = [3, 0, 5, 5, 4]\noutput : list = [-1, 2, 3, 4, 4]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(sort_des([3, 0, 5, 5, 4]),1),1),7))",
    "io_inp": [
      3,
      0,
      5,
      5,
      4
    ],
    "io_out": [
      -1,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(sort_des(input),1),1),7))"
  },
  {
    "input": "input : list = [-5, 3, 2]\noutput : list = [3]",
    "output": "generated_output : list = take(sub_n(sort_asc(add_n(take([-5, 3, 2],1),5)),-3),39)",
    "io_inp": [
      -5,
      3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(add_n(take(input,1),5)),-3),39)"
  },
  {
    "input": "input : list = [3, 2, 0, -1]\noutput : list = [1, 0]",
    "output": "generated_output : list = add_n(drop([3, 2, 0, -1],2),1)",
    "io_inp": [
      3,
      2,
      0,
      -1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),1)"
  },
  {
    "input": "input : list = [0, 1, 5, -2]\noutput : list = [6, 2, 1, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(sub_n([0, 1, 5, -2],-2)))),-1)",
    "io_inp": [
      0,
      1,
      5,
      -2
    ],
    "io_out": [
      6,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(sub_n(input,-2)))),-1)"
  },
  {
    "input": "input : list = [-1, -5, -5, 5, -2]\noutput : list = [21, 81, 81, -69, 36]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(mul_n([-1, -5, -5, 5, -2],-5),3),19),-4),2)",
    "io_inp": [
      -1,
      -5,
      -5,
      5,
      -2
    ],
    "io_out": [
      21,
      81,
      81,
      -69,
      36
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(mul_n(input,-5),3),19),-4),2)"
  },
  {
    "input": "input : list = [-2, -2, -5, 4]\noutput : list = [12, -6, -6, -15]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_asc([-2, -2, -5, 4]),4),4)),3)",
    "io_inp": [
      -2,
      -2,
      -5,
      4
    ],
    "io_out": [
      12,
      -6,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_asc(input),4),4)),3)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [0, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, 0])",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [6]",
    "output": "generated_output : list = take(add_n(reverse(reverse(mul_n([2, 2],5))),-4),1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(mul_n(input,5))),-4),1)"
  },
  {
    "input": "input : list = [-5, -3, 2, 4, 2]\noutput : list = [30, 12, 12, -33, -51]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(mul_n([-5, -3, 2, 4, 2],-3)),2),3),-1)",
    "io_inp": [
      -5,
      -3,
      2,
      4,
      2
    ],
    "io_out": [
      30,
      12,
      12,
      -33,
      -51
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(mul_n(input,-3)),2),3),-1)"
  },
  {
    "input": "input : list = [3, 5, 2, 0]\noutput : list = [-1, -5, 1, 5]",
    "output": "generated_output : list = sub_n(mul_n([3, 5, 2, 0],-2),-5)",
    "io_inp": [
      3,
      5,
      2,
      0
    ],
    "io_out": [
      -1,
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),-5)"
  },
  {
    "input": "input : list = [4, 1, -2]\noutput : list = [7, 4, 1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(reverse([4, 1, -2]),2),1),-4))",
    "io_inp": [
      4,
      1,
      -2
    ],
    "io_out": [
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(reverse(input),2),1),-4))"
  },
  {
    "input": "input : list = [1, -5, -2, -2, -5]\noutput : list = [-10, -7, -7, -10]",
    "output": "generated_output : list = add_n(drop([1, -5, -2, -2, -5],1),-5)",
    "io_inp": [
      1,
      -5,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-3, 4, -5, 5, 2, 2]\noutput : list = [10, 9, 7, 7, 2, 0]",
    "output": "generated_output : list = sort_des(add_n([-3, 4, -5, 5, 2, 2],5))",
    "io_inp": [
      -3,
      4,
      -5,
      5,
      2,
      2
    ],
    "io_out": [
      10,
      9,
      7,
      7,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [0, -3, 3, -1]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -3, 3, -1],1)",
    "io_inp": [
      0,
      -3,
      3,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -2, 2, -2, 4]\noutput : list = [-35, -15, -45]",
    "output": "generated_output : list = drop(mul_n(sub_n(mul_n([5, -2, 2, -2, 4],-1),5),5),2)",
    "io_inp": [
      5,
      -2,
      2,
      -2,
      4
    ],
    "io_out": [
      -35,
      -15,
      -45
    ],
    "output_masked": "generated_output : list = drop(mul_n(sub_n(mul_n(input,-1),5),5),2)"
  },
  {
    "input": "input : list = [2, -3, 3, 2, 2, 2]\noutput : list = [-2, -2, -2]",
    "output": "generated_output : list = sub_n(take(take(reverse(drop([2, -3, 3, 2, 2, 2],3)),27),19),4)",
    "io_inp": [
      2,
      -3,
      3,
      2,
      2,
      2
    ],
    "io_out": [
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(drop(input,3)),27),19),4)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-8, 8]",
    "output": "generated_output : list = take(mul_n([2, -2],-4),15)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),15)"
  },
  {
    "input": "input : list = [5, -3, -1, 2]\noutput : list = [-10, 5, 15]",
    "output": "generated_output : list = take(mul_n(take(reverse(drop([5, -3, -1, 2],1)),26),-5),30)",
    "io_inp": [
      5,
      -3,
      -1,
      2
    ],
    "io_out": [
      -10,
      5,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(drop(input,1)),26),-5),30)"
  },
  {
    "input": "input : list = [5, 1, -4, 3]\noutput : list = [-25, -5, 20, -15]",
    "output": "generated_output : list = take(take(mul_n([5, 1, -4, 3],-5),8),7)",
    "io_inp": [
      5,
      1,
      -4,
      3
    ],
    "io_out": [
      -25,
      -5,
      20,
      -15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-5),8),7)"
  },
  {
    "input": "input : list = [5, 5, 4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = drop(sort_des([5, 5, 4, 3]),2)",
    "io_inp": [
      5,
      5,
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),2)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [9]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(drop([-5, 5, -4],1),1),1),2),-3)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(drop(input,1),1),1),2),-3)"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [10, 4, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n([-5, -1, 5],1)),-5),1)",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      10,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(input,1)),-5),1)"
  },
  {
    "input": "input : list = [-5, 2, 4, 1]\noutput : list = [30, 9, 3, 12]",
    "output": "generated_output : list = mul_n(add_n([-5, 2, 4, 1],-5),-3)",
    "io_inp": [
      -5,
      2,
      4,
      1
    ],
    "io_out": [
      30,
      9,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-3, -2, -4, 4, 2, -4]\noutput : list = [3, -3, -15, -18, -21, -21]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(sort_des([-3, -2, -4, 4, 2, -4]),15),1),3),3)",
    "io_inp": [
      -3,
      -2,
      -4,
      4,
      2,
      -4
    ],
    "io_out": [
      3,
      -3,
      -15,
      -18,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(sort_des(input),15),1),3),3)"
  },
  {
    "input": "input : list = [3, 1, 0, -4, -3, -1]\noutput : list = [-12, -4, 0, 16, 12, 4]",
    "output": "generated_output : list = mul_n([3, 1, 0, -4, -3, -1],-4)",
    "io_inp": [
      3,
      1,
      0,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -4,
      0,
      16,
      12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 2, 0, -4, 5]\noutput : list = [1, -2, -4, -8, -9]",
    "output": "generated_output : list = sort_des(take(sub_n([-5, 2, 0, -4, 5],4),24))",
    "io_inp": [
      -5,
      2,
      0,
      -4,
      5
    ],
    "io_out": [
      1,
      -2,
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,4),24))"
  },
  {
    "input": "input : list = [-5, 5, 4, -1, 4]\noutput : list = [0, -1, -1, -6, -10]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sub_n([-5, 5, 4, -1, 4],3),-2))))",
    "io_inp": [
      -5,
      5,
      4,
      -1,
      4
    ],
    "io_out": [
      0,
      -1,
      -1,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sub_n(input,3),-2))))"
  },
  {
    "input": "input : list = [-2, -1, 3, -4]\noutput : list = [-24, 32]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(drop([-2, -1, 3, -4],2),21),2),-2),2)",
    "io_inp": [
      -2,
      -1,
      3,
      -4
    ],
    "io_out": [
      -24,
      32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(drop(input,2),21),2),-2),2)"
  },
  {
    "input": "input : list = [1, 1, -1, 1]\noutput : list = [-5, -5, 5, -5]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(mul_n([1, 1, -1, 1],-5)))))",
    "io_inp": [
      1,
      1,
      -1,
      1
    ],
    "io_out": [
      -5,
      -5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [1, -9]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(drop([0, 5, -5],1)),3),4),3)",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      1,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(drop(input,1)),3),4),3)"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [6, -2, -2]",
    "output": "generated_output : list = reverse(mul_n(add_n([-5, -5, -1],4),2))",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,4),2))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [9, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([-3, -5]),-3))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [2, -5, -6]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(sub_n([-4, -3, 4],2)),26)))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(sub_n(input,2)),26)))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [1, -7]",
    "output": "generated_output : list = add_n([4, -4],-3)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [18, 18]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(sort_des([4, 4]),5),1),-1),18)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      18,
      18
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(sort_des(input),5),1),-1),18)"
  },
  {
    "input": "input : list = [-4, 4, -3, 2]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take([-4, 4, -3, 2],2)",
    "io_inp": [
      -4,
      4,
      -3,
      2
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 0, -1, -3]\noutput : list = [-5, -6, -8, -9]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(sort_asc([-4, 0, -1, -3]),18))),-5)",
    "io_inp": [
      -4,
      0,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(sort_asc(input),18))),-5)"
  },
  {
    "input": "input : list = [4, 4, -2, 0]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(drop([4, 4, -2, 0],1)))))",
    "io_inp": [
      4,
      4,
      -2,
      0
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [1, -3, 0, -4]\noutput : list = [4, 3, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(sort_asc([1, -3, 0, -4]))),-3))",
    "io_inp": [
      1,
      -3,
      0,
      -4
    ],
    "io_out": [
      4,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [1, -1, 2, -4, -3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -1, 2, -4, -3],1)",
    "io_inp": [
      1,
      -1,
      2,
      -4,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 0, -5]\noutput : list = [-6, -18, -36]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(mul_n([-2, 0, -5],3),3),2)))",
    "io_inp": [
      -2,
      0,
      -5
    ],
    "io_out": [
      -6,
      -18,
      -36
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(mul_n(input,3),3),2)))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(mul_n([0, 1],1)),-2)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(mul_n(input,1)),-2)))"
  },
  {
    "input": "input : list = [-1, 3, 5, 5, -5, 1]\noutput : list = [5, -5, 1]",
    "output": "generated_output : list = drop([-1, 3, 5, 5, -5, 1],3)",
    "io_inp": [
      -1,
      3,
      5,
      5,
      -5,
      1
    ],
    "io_out": [
      5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(reverse([-3, -1, -1]),16))))",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(reverse(input),16))))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [8, 20]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des([2, 5]),5),4))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      8,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(input),5),4))"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [6, 4, 4]",
    "output": "generated_output : list = reverse(take(reverse(add_n(sort_des([1, -1, -1]),5)),16))",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(sort_des(input),5)),16))"
  },
  {
    "input": "input : list = [4, 3, -1, 1, 2, 5]\noutput : list = [30, 25, 5, 15, 20, 35]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(reverse([4, 3, -1, 1, 2, 5]),2)),4),5)",
    "io_inp": [
      4,
      3,
      -1,
      1,
      2,
      5
    ],
    "io_out": [
      30,
      25,
      5,
      15,
      20,
      35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(reverse(input),2)),4),5)"
  },
  {
    "input": "input : list = [3, -1, 1, -4, -5, 0]\noutput : list = [7, -1, 3, -7, -9, 1]",
    "output": "generated_output : list = sub_n(mul_n([3, -1, 1, -4, -5, 0],2),-1)",
    "io_inp": [
      3,
      -1,
      1,
      -4,
      -5,
      0
    ],
    "io_out": [
      7,
      -1,
      3,
      -7,
      -9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-1)"
  },
  {
    "input": "input : list = [5, -3, -4, 0]\noutput : list = [8, 3, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(add_n([5, -3, -4, 0],3)))))",
    "io_inp": [
      5,
      -3,
      -4,
      0
    ],
    "io_out": [
      8,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(add_n(input,3)))))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(reverse([3, 2]),5),4)))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(reverse(input),5),4)))"
  },
  {
    "input": "input : list = [5, -3, -5, -2, -3, -3]\noutput : list = [0, 2, 2, 2, 3, 10]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([5, -3, -5, -2, -3, -3],-5)))",
    "io_inp": [
      5,
      -3,
      -5,
      -2,
      -3,
      -3
    ],
    "io_out": [
      0,
      2,
      2,
      2,
      3,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-5)))"
  },
  {
    "input": "input : list = [0, -3, -4, 5, -2, 1]\noutput : list = [4, 7, 0, 9, 8, 5]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(reverse([0, -3, -4, 5, -2, 1]),4),34),-1),-1)",
    "io_inp": [
      0,
      -3,
      -4,
      5,
      -2,
      1
    ],
    "io_out": [
      4,
      7,
      0,
      9,
      8,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(reverse(input),4),34),-1),-1)"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [-12, -8, -16]",
    "output": "generated_output : list = mul_n([3, 2, 4],-4)",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      -12,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 2, 4, 1, -5, -2]\noutput : list = [-2, -5, -8]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n(drop([0, 2, 4, 1, -5, -2],3),-3))))",
    "io_inp": [
      0,
      2,
      4,
      1,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(drop(input,3),-3))))"
  },
  {
    "input": "input : list = [-5, 1, 4, -4]\noutput : list = [-5, -4, 1, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(take(sort_des([-5, 1, 4, -4]),20)),7))",
    "io_inp": [
      -5,
      1,
      4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(sort_des(input),20)),7))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-16, 0]",
    "output": "generated_output : list = mul_n([-4, 0],4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [2, -1]",
    "output": "generated_output : list = mul_n(mul_n([-2, 1],1),-1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-1)"
  },
  {
    "input": "input : list = [-3, 0, 2, -5]\noutput : list = [-3, -5, -8, -10]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(reverse([-3, 0, 2, -5]),6),5)),1)",
    "io_inp": [
      -3,
      0,
      2,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(reverse(input),6),5)),1)"
  },
  {
    "input": "input : list = [3, 1, 5, -3]\noutput : list = [9]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(take([3, 1, 5, -3],1)),3)),28)",
    "io_inp": [
      3,
      1,
      5,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(take(input,1)),3)),28)"
  },
  {
    "input": "input : list = [5, -1, -3, -2, -1, -3]\noutput : list = [5, -1, -1, -2, -3, -3]",
    "output": "generated_output : list = sort_des([5, -1, -3, -2, -1, -3])",
    "io_inp": [
      5,
      -1,
      -3,
      -2,
      -1,
      -3
    ],
    "io_out": [
      5,
      -1,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, 2, 5]\noutput : list = [-12, 8, 16, 20]",
    "output": "generated_output : list = sort_asc(mul_n([4, -3, 2, 5],4))",
    "io_inp": [
      4,
      -3,
      2,
      5
    ],
    "io_out": [
      -12,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [-2, -1, 0, 2]\noutput : list = [-2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc([-2, -1, 0, 2])))))",
    "io_inp": [
      -2,
      -1,
      0,
      2
    ],
    "io_out": [
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [7, 6, 2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(add_n([-5, -1, 0],2)),-1),-1),3)",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      7,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(add_n(input,2)),-1),-1),3)"
  },
  {
    "input": "input : list = [0, 5, -3]\noutput : list = [-25, 0, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(sort_asc([0, 5, -3]))),-5))",
    "io_inp": [
      0,
      5,
      -3
    ],
    "io_out": [
      -25,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [2, 5, -2]\noutput : list = [-7, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n([2, 5, -2],5))",
    "io_inp": [
      2,
      5,
      -2
    ],
    "io_out": [
      -7,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,5))"
  },
  {
    "input": "input : list = [5, 1, 0, 4, 0]\noutput : list = [5, 4, 1, 0, 0]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n(add_n([5, 1, 0, 4, 0],-3),-3))))",
    "io_inp": [
      5,
      1,
      0,
      4,
      0
    ],
    "io_out": [
      5,
      4,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(add_n(input,-3),-3))))"
  },
  {
    "input": "input : list = [-2, 4, -5, -3, 3, 4]\noutput : list = [0, 0, -1, -6, -7, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse([-2, 4, -5, -3, 3, 4])),-4))",
    "io_inp": [
      -2,
      4,
      -5,
      -3,
      3,
      4
    ],
    "io_out": [
      0,
      0,
      -1,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(input)),-4))"
  },
  {
    "input": "input : list = [5, 1, -1, -5, -3, -3]\noutput : list = [1, -3, -5, -9, -7, -7]",
    "output": "generated_output : list = add_n([5, 1, -1, -5, -3, -3],-4)",
    "io_inp": [
      5,
      1,
      -1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      1,
      -3,
      -5,
      -9,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, -2, -3, -5, 5]\noutput : list = [-5, 0, 10]",
    "output": "generated_output : list = drop(sort_asc(mul_n(add_n(sub_n([5, -2, -3, -5, 5],-2),1),-5)),2)",
    "io_inp": [
      5,
      -2,
      -3,
      -5,
      5
    ],
    "io_out": [
      -5,
      0,
      10
    ],
    "output_masked": "generated_output : list = drop(sort_asc(mul_n(add_n(sub_n(input,-2),1),-5)),2)"
  },
  {
    "input": "input : list = [-3, -5, 3, 1, 0, -2]\noutput : list = [-5, -3, -2, 0, -8]",
    "output": "generated_output : list = sub_n(take(reverse(drop([-3, -5, 3, 1, 0, -2],1)),16),3)",
    "io_inp": [
      -3,
      -5,
      3,
      1,
      0,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(drop(input,1)),16),3)"
  },
  {
    "input": "input : list = [2, 4, -3, 3]\noutput : list = [-3, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_des([2, 4, -3, 3])))))",
    "io_inp": [
      2,
      4,
      -3,
      3
    ],
    "io_out": [
      -3,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 1, -5, 1, 3]\noutput : list = [-23, -13, -13, 2, 17]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(mul_n([-2, 1, -5, 1, 3],-5),-3))),-5)",
    "io_inp": [
      -2,
      1,
      -5,
      1,
      3
    ],
    "io_out": [
      -23,
      -13,
      -13,
      2,
      17
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(mul_n(input,-5),-3))),-5)"
  },
  {
    "input": "input : list = [-2, 5, -3, -3, 3]\noutput : list = [-28, -18, 7, 12, 12]",
    "output": "generated_output : list = add_n(mul_n(sort_des([-2, 5, -3, -3, 3]),-5),-3)",
    "io_inp": [
      -2,
      5,
      -3,
      -3,
      3
    ],
    "io_out": [
      -28,
      -18,
      7,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),-5),-3)"
  },
  {
    "input": "input : list = [1, 5, 5, 0, 2, 5]\noutput : list = [-8, -8, -8, 4, 8, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n([1, 5, 5, 0, 2, 5],3),-4)))",
    "io_inp": [
      1,
      5,
      5,
      0,
      2,
      5
    ],
    "io_out": [
      -8,
      -8,
      -8,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(input,3),-4)))"
  },
  {
    "input": "input : list = [5, 1, 5, -1]\noutput : list = [5, 1]",
    "output": "generated_output : list = take([5, 1, 5, -1],2)",
    "io_inp": [
      5,
      1,
      5,
      -1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 1, -1, 5, 5, -2]\noutput : list = [-16, 24, 8]",
    "output": "generated_output : list = take(mul_n(mul_n(take(sub_n([-4, 1, -1, 5, 5, -2],-2),3),2),4),22)",
    "io_inp": [
      -4,
      1,
      -1,
      5,
      5,
      -2
    ],
    "io_out": [
      -16,
      24,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(sub_n(input,-2),3),2),4),22)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [12, 10, 6]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(sub_n([-5, -1, 1],-4),-3),18),-4))",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      12,
      10,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(sub_n(input,-4),-3),18),-4))"
  },
  {
    "input": "input : list = [4, 3, 4, -2, 1, -4]\noutput : list = [2, 4]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(sub_n([4, 3, 4, -2, 1, -4],-1)),5),2),-5)",
    "io_inp": [
      4,
      3,
      4,
      -2,
      1,
      -4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(sub_n(input,-1)),5),2),-5)"
  },
  {
    "input": "input : list = [1, -1, -1, 3, 2, -5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(drop(take([1, -1, -1, 3, 2, -5],2),1))))",
    "io_inp": [
      1,
      -1,
      -1,
      3,
      2,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(drop(take(input,2),1))))"
  },
  {
    "input": "input : list = [-4, 5, -3, 5]\noutput : list = [5, 5, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(drop([-4, 5, -3, 5],1)))))",
    "io_inp": [
      -4,
      5,
      -3,
      5
    ],
    "io_out": [
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [5, 4, 4, -4]\noutput : list = [-4, 4, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([5, 4, 4, -4]))",
    "io_inp": [
      5,
      4,
      4,
      -4
    ],
    "io_out": [
      -4,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 1, -3]\noutput : list = [-16, -12, 4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des([-4, 1, -3]),4)))",
    "io_inp": [
      -4,
      1,
      -3
    ],
    "io_out": [
      -16,
      -12,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(input),4)))"
  },
  {
    "input": "input : list = [1, 2, -1, 1, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(drop([1, 2, -1, 1, 0],2),2))))",
    "io_inp": [
      1,
      2,
      -1,
      1,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(drop(input,2),2))))"
  },
  {
    "input": "input : list = [3, 4, -4, 4, -5, 5]\noutput : list = [5, 4, 4, 3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(take(sort_asc([3, 4, -4, 4, -5, 5]),18),33)))",
    "io_inp": [
      3,
      4,
      -4,
      4,
      -5,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(sort_asc(input),18),33)))"
  },
  {
    "input": "input : list = [-3, -4, -3, -3, 3, 1]\noutput : list = [1, 3, -3, -3, -4, -3]",
    "output": "generated_output : list = take(reverse([-3, -4, -3, -3, 3, 1]),6)",
    "io_inp": [
      -3,
      -4,
      -3,
      -3,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -3,
      -3,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [1, 1, -3, -2, -5, 5]\noutput : list = [4, 4, 12, 10, 16, -4]",
    "output": "generated_output : list = mul_n(sub_n([1, 1, -3, -2, -5, 5],3),-2)",
    "io_inp": [
      1,
      1,
      -3,
      -2,
      -5,
      5
    ],
    "io_out": [
      4,
      4,
      12,
      10,
      16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-2)"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [-5, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, -5])",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, -5, 0, 2]\noutput : list = [-5, -1, -1, 0, 2]",
    "output": "generated_output : list = sort_asc([-1, -1, -5, 0, 2])",
    "io_inp": [
      -1,
      -1,
      -5,
      0,
      2
    ],
    "io_out": [
      -5,
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, -5, 5, 5, 2]\noutput : list = [4, 4, 2, 1, -3, -6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des([-2, 3, -5, 5, 5, 2]),1),1)))",
    "io_inp": [
      -2,
      3,
      -5,
      5,
      5,
      2
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des(input),1),1)))"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 0, -2],1)",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -1, 1, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(drop([1, -1, 1, 0, 3],3))",
    "io_inp": [
      1,
      -1,
      1,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [-3, -5, 3]\noutput : list = [1, -1, 7]",
    "output": "generated_output : list = sub_n([-3, -5, 3],-4)",
    "io_inp": [
      -3,
      -5,
      3
    ],
    "io_out": [
      1,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 0, 0, -5, -5, -5]\noutput : list = [0, 0, -5, -5, -5]",
    "output": "generated_output : list = drop([-3, 0, 0, -5, -5, -5],1)",
    "io_inp": [
      -3,
      0,
      0,
      -5,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 1, -2, 5, 2, 3]\noutput : list = [-1, -4, 3, 0, 1]",
    "output": "generated_output : list = add_n(drop([5, 1, -2, 5, 2, 3],1),-2)",
    "io_inp": [
      5,
      1,
      -2,
      5,
      2,
      3
    ],
    "io_out": [
      -1,
      -4,
      3,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [-3, 3, -3]\noutput : list = [-8, -2, -2]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(sort_asc([-3, 3, -3]),-5)),-1),44)",
    "io_inp": [
      -3,
      3,
      -3
    ],
    "io_out": [
      -8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(sort_asc(input),-5)),-1),44)"
  },
  {
    "input": "input : list = [-1, 2, -3, -3, 3]\noutput : list = [-2, 1, -4, -4, 2]",
    "output": "generated_output : list = add_n([-1, 2, -3, -3, 3],-1)",
    "io_inp": [
      -1,
      2,
      -3,
      -3,
      3
    ],
    "io_out": [
      -2,
      1,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 1, 3, 3, -1]\noutput : list = [-1, 0, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([0, 1, 3, 3, -1])",
    "io_inp": [
      0,
      1,
      3,
      3,
      -1
    ],
    "io_out": [
      -1,
      0,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [-4, -4, 8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sub_n([-3, -3, 3],-3)),4),-2),2)",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      -4,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sub_n(input,-3)),4),-2),2)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [4, -4, -3]",
    "output": "generated_output : list = sub_n([5, -3, -2],1)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, 0, 1, -4]\noutput : list = [-3, -4, -8, -9]",
    "output": "generated_output : list = sort_des(sub_n([-5, 0, 1, -4],4))",
    "io_inp": [
      -5,
      0,
      1,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [-2, -3, -4, 1, -4, 5]\noutput : list = [6, -3, 2, -3, -2, -1]",
    "output": "generated_output : list = take(take(reverse(add_n([-2, -3, -4, 1, -4, 5],1)),12),20)",
    "io_inp": [
      -2,
      -3,
      -4,
      1,
      -4,
      5
    ],
    "io_out": [
      6,
      -3,
      2,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(input,1)),12),20)"
  },
  {
    "input": "input : list = [5, 4, -5, 0, -3]\noutput : list = [-2, 1, -4, 5, 6]",
    "output": "generated_output : list = reverse(take(sub_n([5, 4, -5, 0, -3],-1),7))",
    "io_inp": [
      5,
      4,
      -5,
      0,
      -3
    ],
    "io_out": [
      -2,
      1,
      -4,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-1),7))"
  },
  {
    "input": "input : list = [-5, -4, 5, 2, 1, -5]\noutput : list = [300, -60, -120, -300, 240, 300]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n([-5, -4, 5, 2, 1, -5],-3),-4)),-5)",
    "io_inp": [
      -5,
      -4,
      5,
      2,
      1,
      -5
    ],
    "io_out": [
      300,
      -60,
      -120,
      -300,
      240,
      300
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(input,-3),-4)),-5)"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n([5, 4, 5],-4),2)),-4))",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n(input,-4),2)),-4))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-10, -11]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc([-1, 0])),-5)),5)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc(input)),-5)),5)"
  },
  {
    "input": "input : list = [-5, -5, 4, -2, 3]\noutput : list = [-12, 6, -9]",
    "output": "generated_output : list = mul_n(drop([-5, -5, 4, -2, 3],2),-3)",
    "io_inp": [
      -5,
      -5,
      4,
      -2,
      3
    ],
    "io_out": [
      -12,
      6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [1, 5, 5, -1, -4, 0]\noutput : list = [-2, 1, 2, 3, 7, 7]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(sub_n([1, 5, 5, -1, -4, 0],3),9))),5)",
    "io_inp": [
      1,
      5,
      5,
      -1,
      -4,
      0
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(sub_n(input,3),9))),5)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-7, -8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_des([-4, -3]),-4),4)),-4)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_des(input),-4),4)),-4)"
  },
  {
    "input": "input : list = [5, 3, 4, -4]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(take([5, 3, 4, -4],1),18),-5)))",
    "io_inp": [
      5,
      3,
      4,
      -4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(take(input,1),18),-5)))"
  },
  {
    "input": "input : list = [-3, 4, -2, -5, 0]\noutput : list = [-5, -3, -2, 0, 4]",
    "output": "generated_output : list = take(take(sort_asc([-3, 4, -2, -5, 0]),24),21)",
    "io_inp": [
      -3,
      4,
      -2,
      -5,
      0
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),24),21)"
  },
  {
    "input": "input : list = [-2, -4, 1, 4, -1, 5]\noutput : list = [-6, -12, 3, 12, -3, 15]",
    "output": "generated_output : list = take(mul_n([-2, -4, 1, 4, -1, 5],3),19)",
    "io_inp": [
      -2,
      -4,
      1,
      4,
      -1,
      5
    ],
    "io_out": [
      -6,
      -12,
      3,
      12,
      -3,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),19)"
  },
  {
    "input": "input : list = [3, 0, 0, -5, 3]\noutput : list = [3, 3, 0, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(sub_n([3, 0, 0, -5, 3],5),8),-5)))",
    "io_inp": [
      3,
      0,
      0,
      -5,
      3
    ],
    "io_out": [
      3,
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(sub_n(input,5),8),-5)))"
  },
  {
    "input": "input : list = [1, 4, -1, -4, -1]\noutput : list = [-15, -5, 10]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(take([1, 4, -1, -4, -1],3),-2),15)),5)",
    "io_inp": [
      1,
      4,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -15,
      -5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(take(input,3),-2),15)),5)"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [7, 2]",
    "output": "generated_output : list = sub_n(drop([3, 5, 0],1),-2)",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [4, 4, 3, -3, 1]\noutput : list = [7, 7, 10, 16, 28]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(sub_n([4, 4, 3, -3, 1],5),19),-3)),4)",
    "io_inp": [
      4,
      4,
      3,
      -3,
      1
    ],
    "io_out": [
      7,
      7,
      10,
      16,
      28
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(sub_n(input,5),19),-3)),4)"
  },
  {
    "input": "input : list = [3, -4, -3, 3]\noutput : list = [6, -1, 0, 6]",
    "output": "generated_output : list = sub_n([3, -4, -3, 3],-3)",
    "io_inp": [
      3,
      -4,
      -3,
      3
    ],
    "io_out": [
      6,
      -1,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -5, 5, -4, 0]\noutput : list = [0, -4, 5, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, 5, -4, 0])",
    "io_inp": [
      -2,
      -5,
      5,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, 0, 3, -4, -5]\noutput : list = [-7, -6, -2, 1, 1, 1]",
    "output": "generated_output : list = take(take(reverse(sort_des(add_n([3, 3, 0, 3, -4, -5],-2))),18),35)",
    "io_inp": [
      3,
      3,
      0,
      3,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -2,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(add_n(input,-2))),18),35)"
  },
  {
    "input": "input : list = [5, 2, 3]\noutput : list = [8, 9, 11]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc([5, 2, 3]),4)),2))",
    "io_inp": [
      5,
      2,
      3
    ],
    "io_out": [
      8,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc(input),4)),2))"
  },
  {
    "input": "input : list = [0, -3, 1, -1, 4, 2]\noutput : list = [-6, 2, 6, 10, 14, 22]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sort_des([0, -3, 1, -1, 4, 2])),-2),3),-2)",
    "io_inp": [
      0,
      -3,
      1,
      -1,
      4,
      2
    ],
    "io_out": [
      -6,
      2,
      6,
      10,
      14,
      22
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sort_des(input)),-2),3),-2)"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(drop([-1, 3, -2],1))",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [0, -4, 2, -4, 3]\noutput : list = [1, 1, 5, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(reverse([0, -4, 2, -4, 3]),4),-1)))",
    "io_inp": [
      0,
      -4,
      2,
      -4,
      3
    ],
    "io_out": [
      1,
      1,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(reverse(input),4),-1)))"
  },
  {
    "input": "input : list = [-1, 5, 2, 3]\noutput : list = [8, 20, 14, 16]",
    "output": "generated_output : list = mul_n(add_n([-1, 5, 2, 3],5),2)",
    "io_inp": [
      -1,
      5,
      2,
      3
    ],
    "io_out": [
      8,
      20,
      14,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),2)"
  },
  {
    "input": "input : list = [5, -5, 3, 5]\noutput : list = [22, 22, 16, -8]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_des(sort_asc([5, -5, 3, 5])),3),-3),-4)",
    "io_inp": [
      5,
      -5,
      3,
      5
    ],
    "io_out": [
      22,
      22,
      16,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_des(sort_asc(input)),3),-3),-4)"
  },
  {
    "input": "input : list = [-4, 5, -2]\noutput : list = [-2, 5, -4]",
    "output": "generated_output : list = reverse([-4, 5, -2])",
    "io_inp": [
      -4,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0, 3, 1]\noutput : list = [3]",
    "output": "generated_output : list = take(drop([-5, 0, 3, 1],2),1)",
    "io_inp": [
      -5,
      0,
      3,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),1)"
  },
  {
    "input": "input : list = [-1, -2, -5, 5, -2]\noutput : list = [4, -20, -24, -24, -36]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(reverse([-1, -2, -5, 5, -2])),-3),-1),4)",
    "io_inp": [
      -1,
      -2,
      -5,
      5,
      -2
    ],
    "io_out": [
      4,
      -20,
      -24,
      -24,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(reverse(input)),-3),-1),4)"
  },
  {
    "input": "input : list = [-4, 3, 2, 4, -1]\noutput : list = [4, 3, 2, -1, -4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-4, 3, 2, 4, -1])),1)",
    "io_inp": [
      -4,
      3,
      2,
      4,
      -1
    ],
    "io_out": [
      4,
      3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-4, 2, 0, 1, 5, -2]\noutput : list = [-4]",
    "output": "generated_output : list = take(take([-4, 2, 0, 1, 5, -2],3),1)",
    "io_inp": [
      -4,
      2,
      0,
      1,
      5,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,3),1)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [2, 4, 0]",
    "output": "generated_output : list = add_n([1, 3, -1],1)",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 3, 2, -2]\noutput : list = [-20, 15, 10, -10]",
    "output": "generated_output : list = take(take(reverse(reverse(mul_n([-4, 3, 2, -2],5))),19),46)",
    "io_inp": [
      -4,
      3,
      2,
      -2
    ],
    "io_out": [
      -20,
      15,
      10,
      -10
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(mul_n(input,5))),19),46)"
  },
  {
    "input": "input : list = [1, 2, -4, 3, 5]\noutput : list = [16, -4, -8, -12, -20]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n([1, 2, -4, 3, 5],-4))))",
    "io_inp": [
      1,
      2,
      -4,
      3,
      5
    ],
    "io_out": [
      16,
      -4,
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [5, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = drop([5, 1, -2],1)",
    "io_inp": [
      5,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(sort_des([3, 2]),-4),-5)))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(sort_des(input),-4),-5)))"
  },
  {
    "input": "input : list = [-1, -4, 0, 2, -3]\noutput : list = [-3, 2, 0, -4, -1]",
    "output": "generated_output : list = reverse([-1, -4, 0, 2, -3])",
    "io_inp": [
      -1,
      -4,
      0,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      0,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, -4, -1]\noutput : list = [-20, -5, 20, 20]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(sort_asc([4, 4, -4, -1]),1),5)))",
    "io_inp": [
      4,
      4,
      -4,
      -1
    ],
    "io_out": [
      -20,
      -5,
      20,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(sort_asc(input),1),5)))"
  },
  {
    "input": "input : list = [-1, 0, 4, -3, -2, 3]\noutput : list = [-5, -4, -3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-1, 0, 4, -3, -2, 3],2)))",
    "io_inp": [
      -1,
      0,
      4,
      -3,
      -2,
      3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-5, 1, 2, 4]\noutput : list = [75, -15, -30]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(mul_n([-5, 1, 2, 4],5),3),-3)))",
    "io_inp": [
      -5,
      1,
      2,
      4
    ],
    "io_out": [
      75,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(mul_n(input,5),3),-3)))"
  },
  {
    "input": "input : list = [4, 2, 4, -1, 4]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sub_n(take([4, 2, 4, -1, 4],1),3),-3)",
    "io_inp": [
      4,
      2,
      4,
      -1,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,1),3),-3)"
  },
  {
    "input": "input : list = [-2, 3, 0, 3]\noutput : list = [4, 4, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(reverse([-2, 3, 0, 3]))),1))",
    "io_inp": [
      -2,
      3,
      0,
      3
    ],
    "io_out": [
      4,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(reverse(input))),1))"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [21, 13, -7]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(sub_n([-5, -3, 2],1),-4))),3)",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      21,
      13,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(sub_n(input,1),-4))),3)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(take([-4, 4, 2],1)),18),-3))",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(take(input,1)),18),-3))"
  },
  {
    "input": "input : list = [4, 0, -4, 1]\noutput : list = [-30, -18, -6, -21]",
    "output": "generated_output : list = take(mul_n(take(sub_n(sub_n([4, 0, -4, 1],-3),-3),25),-3),20)",
    "io_inp": [
      4,
      0,
      -4,
      1
    ],
    "io_out": [
      -30,
      -18,
      -6,
      -21
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(sub_n(input,-3),-3),25),-3),20)"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [-59, 1, 21]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_asc([3, 5, -3]),2),-5),5),4)",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      -59,
      1,
      21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_asc(input),2),-5),5),4)"
  },
  {
    "input": "input : list = [4, -1, -4, 1, 5, -5]\noutput : list = [4, 2, -4, -8, -14, -16]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(add_n([4, -1, -4, 1, 5, -5],-3),29)),2))",
    "io_inp": [
      4,
      -1,
      -4,
      1,
      5,
      -5
    ],
    "io_out": [
      4,
      2,
      -4,
      -8,
      -14,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(add_n(input,-3),29)),2))"
  },
  {
    "input": "input : list = [1, 1, -3, 0]\noutput : list = [-3, 0, 1, 1]",
    "output": "generated_output : list = sort_asc([1, 1, -3, 0])",
    "io_inp": [
      1,
      1,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 3, 2, -2, 3]\noutput : list = [8, 4, -8, -12, -12]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-1, 3, 2, -2, 3],-4)))",
    "io_inp": [
      -1,
      3,
      2,
      -2,
      3
    ],
    "io_out": [
      8,
      4,
      -8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = reverse(mul_n([-3, -1],1))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [2, -2, -4, 3, 0]\noutput : list = [6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(take([2, -2, -4, 3, 0],2)),32)),-3)",
    "io_inp": [
      2,
      -2,
      -4,
      3,
      0
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(take(input,2)),32)),-3)"
  },
  {
    "input": "input : list = [1, 4, -2, -4, 3]\noutput : list = [4, 1]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(take([1, 4, -2, -4, 3],2)))),34)",
    "io_inp": [
      1,
      4,
      -2,
      -4,
      3
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(take(input,2)))),34)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = take(add_n(take(sub_n(sort_des([5, 0, 5]),2),9),-2),14)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(sort_des(input),2),9),-2),14)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse([3, -4])",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3, 4, -1, -3, 5]\noutput : list = [12, 10, 11, 6, 4, 12]",
    "output": "generated_output : list = add_n(add_n(reverse(take(reverse([5, 3, 4, -1, -3, 5]),13)),5),2)",
    "io_inp": [
      5,
      3,
      4,
      -1,
      -3,
      5
    ],
    "io_out": [
      12,
      10,
      11,
      6,
      4,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(reverse(input),13)),5),2)"
  },
  {
    "input": "input : list = [-3, -1, -2, 2, -4, 0]\noutput : list = [7, 1, -2, -5, -8, -11]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_asc([-3, -1, -2, 2, -4, 0])),3)),-1)",
    "io_inp": [
      -3,
      -1,
      -2,
      2,
      -4,
      0
    ],
    "io_out": [
      7,
      1,
      -2,
      -5,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_asc(input)),3)),-1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-6]",
    "output": "generated_output : list = drop(reverse(reverse(add_n(sort_des([1, -5]),-1))),1)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = drop(reverse(reverse(add_n(sort_des(input),-1))),1)"
  },
  {
    "input": "input : list = [5, 4, -1, 2]\noutput : list = [-4, -3, -1, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(sub_n([5, 4, -1, 2],1),12))),-1)",
    "io_inp": [
      5,
      4,
      -1,
      2
    ],
    "io_out": [
      -4,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(sub_n(input,1),12))),-1)"
  },
  {
    "input": "input : list = [-1, -3, 5, 3]\noutput : list = [2, 0, -4, -6]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(mul_n([-1, -3, 5, 3],-1)),2),-1),41)",
    "io_inp": [
      -1,
      -3,
      5,
      3
    ],
    "io_out": [
      2,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(mul_n(input,-1)),2),-1),41)"
  },
  {
    "input": "input : list = [1, 5, -1, -3, 1]\noutput : list = [1, -3, -1, 5, 1]",
    "output": "generated_output : list = reverse([1, 5, -1, -3, 1])",
    "io_inp": [
      1,
      5,
      -1,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -1,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [8, 9]",
    "output": "generated_output : list = add_n([3, 4],5)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [4, 3, 3, 1, -2]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = drop([4, 3, 3, 1, -2],2)",
    "io_inp": [
      4,
      3,
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n([-1, 2, -4],1)))))",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n(input,1)))))"
  },
  {
    "input": "input : list = [2, 3, -4, 2, -3, -5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take([2, 3, -4, 2, -3, -5],1))",
    "io_inp": [
      2,
      3,
      -4,
      2,
      -3,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-1, 0, 5, -2, 1, -4]\noutput : list = [-6, 2, 4, 6, 8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(reverse([-1, 0, 5, -2, 1, -4]),3),1),-2))",
    "io_inp": [
      -1,
      0,
      5,
      -2,
      1,
      -4
    ],
    "io_out": [
      -6,
      2,
      4,
      6,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(reverse(input),3),1),-2))"
  },
  {
    "input": "input : list = [1, -3, -3, 0, 1, 1]\noutput : list = [1, -3, -3, 0]",
    "output": "generated_output : list = take([1, -3, -3, 0, 1, 1],4)",
    "io_inp": [
      1,
      -3,
      -3,
      0,
      1,
      1
    ],
    "io_out": [
      1,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [4, -1, 3, 1, 0, -5]\noutput : list = [9, 24, 12, 18, 21, 36]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(add_n([4, -1, 3, 1, 0, -5],-5),2),1),12),-3)",
    "io_inp": [
      4,
      -1,
      3,
      1,
      0,
      -5
    ],
    "io_out": [
      9,
      24,
      12,
      18,
      21,
      36
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(add_n(input,-5),2),1),12),-3)"
  },
  {
    "input": "input : list = [4, 1, -3, 2, -3]\noutput : list = [16, 8, 4, -12, -12]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(reverse([4, 1, -3, 2, -3]))),4))",
    "io_inp": [
      4,
      1,
      -3,
      2,
      -3
    ],
    "io_out": [
      16,
      8,
      4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [1, 4, 0]\noutput : list = [8, 11, 7]",
    "output": "generated_output : list = sub_n(add_n([1, 4, 0],3),-4)",
    "io_inp": [
      1,
      4,
      0
    ],
    "io_out": [
      8,
      11,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),-4)"
  },
  {
    "input": "input : list = [3, 5, -1, -4, 4]\noutput : list = [0, -48, -30, 6, -6]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(mul_n([3, 5, -1, -4, 4],-2),-5)),-3),-3)",
    "io_inp": [
      3,
      5,
      -1,
      -4,
      4
    ],
    "io_out": [
      0,
      -48,
      -30,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(mul_n(input,-2),-5)),-3),-3)"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, -4, 1],1))",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [1, -4, -3, -4, 4, 3]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse(sort_asc(take([1, -4, -3, -4, 4, 3],2)))",
    "io_inp": [
      1,
      -4,
      -3,
      -4,
      4,
      3
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [3, -2, 0, 3]\noutput : list = [4, 4, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(sub_n([3, -2, 0, 3],2))),3))",
    "io_inp": [
      3,
      -2,
      0,
      3
    ],
    "io_out": [
      4,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(sub_n(input,2))),3))"
  },
  {
    "input": "input : list = [0, -5, 3, 4, -5]\noutput : list = [200, -250, -200, 200, -50]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(reverse([0, -5, 3, 4, -5]),-2),-2),-5),-5)",
    "io_inp": [
      0,
      -5,
      3,
      4,
      -5
    ],
    "io_out": [
      200,
      -250,
      -200,
      200,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(reverse(input),-2),-2),-5),-5)"
  },
  {
    "input": "input : list = [1, -2, 3, 2]\noutput : list = [6, -3, -6, -9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_des([1, -2, 3, 2])))),-3)",
    "io_inp": [
      1,
      -2,
      3,
      2
    ],
    "io_out": [
      6,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-23, 13]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n([-4, 5],4)),3),4))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -23,
      13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n(input,4)),3),4))"
  },
  {
    "input": "input : list = [2, 0, 0, -2]\noutput : list = [1, -1, -1, -3]",
    "output": "generated_output : list = add_n(sub_n(sub_n([2, 0, 0, -2],4),1),4)",
    "io_inp": [
      2,
      0,
      0,
      -2
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,4),1),4)"
  },
  {
    "input": "input : list = [-1, 5, -5, -2, -2]\noutput : list = [24, 12, 12, 8, -16]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n(reverse([-1, 5, -5, -2, -2]),-4),-1)),3)",
    "io_inp": [
      -1,
      5,
      -5,
      -2,
      -2
    ],
    "io_out": [
      24,
      12,
      12,
      8,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(reverse(input),-4),-1)),3)"
  },
  {
    "input": "input : list = [3, -2, 2, 2, 4]\noutput : list = [-16, -6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(drop([3, -2, 2, 2, 4],3),21),-5)),4)",
    "io_inp": [
      3,
      -2,
      2,
      2,
      4
    ],
    "io_out": [
      -16,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(drop(input,3),21),-5)),4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [6, 3]",
    "output": "generated_output : list = add_n(take(take(sort_des(sub_n([3, 0],-4)),9),21),-1)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(sub_n(input,-4)),9),21),-1)"
  },
  {
    "input": "input : list = [-4, -3, -4]\noutput : list = [-3, -4, -4]",
    "output": "generated_output : list = take(mul_n(take(sort_des(reverse([-4, -3, -4])),23),1),23)",
    "io_inp": [
      -4,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(reverse(input)),23),1),23)"
  },
  {
    "input": "input : list = [4, -5, -2, -1, 2]\noutput : list = [6, 3, 2, -1, 8]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(add_n([4, -5, -2, -1, 2],-1)),-5)))",
    "io_inp": [
      4,
      -5,
      -2,
      -1,
      2
    ],
    "io_out": [
      6,
      3,
      2,
      -1,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(add_n(input,-1)),-5)))"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sub_n(reverse(mul_n(drop([-2, -4, 1],1),-2)),3)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(drop(input,1),-2)),3)"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [9, 10, 7]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(sub_n([-3, -4, -1],5),15),5),4),-1)",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      9,
      10,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(sub_n(input,5),15),5),4),-1)"
  },
  {
    "input": "input : list = [2, -3, 1, -5, 2, 1]\noutput : list = [-10, -10, -8, -8, 0, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(add_n([2, -3, 1, -5, 2, 1],3),-2)),25))",
    "io_inp": [
      2,
      -3,
      1,
      -5,
      2,
      1
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -8,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(add_n(input,3),-2)),25))"
  },
  {
    "input": "input : list = [1, 5, -2, -3, 0]\noutput : list = [8, 4, 3, 1, 0]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(sort_des([1, 5, -2, -3, 0]))),8),3)",
    "io_inp": [
      1,
      5,
      -2,
      -3,
      0
    ],
    "io_out": [
      8,
      4,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(sort_des(input))),8),3)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse(reverse([2, 2]))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -5, 5, -4, 5]\noutput : list = [1, -8]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(drop([-3, -5, 5, -4, 5],3),18),-4)))",
    "io_inp": [
      -3,
      -5,
      5,
      -4,
      5
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(drop(input,3),18),-4)))"
  },
  {
    "input": "input : list = [-3, 1, 2, -1, -4, 1]\noutput : list = [-11, -10, -8, -6, -6, -5]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(sub_n([-3, 1, 2, -1, -4, 1],5),2))),28)",
    "io_inp": [
      -3,
      1,
      2,
      -1,
      -4,
      1
    ],
    "io_out": [
      -11,
      -10,
      -8,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(sub_n(input,5),2))),28)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [9, 3]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(reverse([0, 2]),8),2),1),3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(reverse(input),8),2),1),3)"
  },
  {
    "input": "input : list = [-2, 1, 2, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = add_n(take([-2, 1, 2, 5],2),1)",
    "io_inp": [
      -2,
      1,
      2,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),1)"
  },
  {
    "input": "input : list = [2, -2, 0, 5]\noutput : list = [6, 3, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des([2, -2, 0, 5]),-1)",
    "io_inp": [
      2,
      -2,
      0,
      5
    ],
    "io_out": [
      6,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-4, -3, 0, 0, 1]\noutput : list = [-48, -36, 0, 0, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(mul_n([-4, -3, 0, 0, 1],-3),22),-4)))",
    "io_inp": [
      -4,
      -3,
      0,
      0,
      1
    ],
    "io_out": [
      -48,
      -36,
      0,
      0,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(mul_n(input,-3),22),-4)))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, 6]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n([0, 3],2))))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(input,2))))"
  },
  {
    "input": "input : list = [4, 0, 4, -3, 0, -4]\noutput : list = [-7, -6, -3, -3, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(add_n([4, 0, 4, -3, 0, -4],-5))),2))",
    "io_inp": [
      4,
      0,
      4,
      -3,
      0,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(add_n(input,-5))),2))"
  },
  {
    "input": "input : list = [-3, -4, -2, -5, 4, 5]\noutput : list = [5, 4, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(reverse([-3, -4, -2, -5, 4, 5])),39),9))",
    "io_inp": [
      -3,
      -4,
      -2,
      -5,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(reverse(input)),39),9))"
  },
  {
    "input": "input : list = [-2, 0, 0, -1, -4, 1]\noutput : list = [1, 3, 3, 2, -1, 4]",
    "output": "generated_output : list = sub_n([-2, 0, 0, -1, -4, 1],-3)",
    "io_inp": [
      -2,
      0,
      0,
      -1,
      -4,
      1
    ],
    "io_out": [
      1,
      3,
      3,
      2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(sort_des([3, 2]),-4),1),1))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(sort_des(input),-4),1),1))"
  },
  {
    "input": "input : list = [-5, 5, 1, -2]\noutput : list = [-2, 1, 5, -5]",
    "output": "generated_output : list = reverse([-5, 5, 1, -2])",
    "io_inp": [
      -5,
      5,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4, 3, 1]\noutput : list = [-4, -4, 1, 3]",
    "output": "generated_output : list = take(sort_asc([-4, -4, 3, 1]),14)",
    "io_inp": [
      -4,
      -4,
      3,
      1
    ],
    "io_out": [
      -4,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [-5, 0, -3]\noutput : list = [6, 3, 1]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n(sub_n([-5, 0, -3],-3),-3),21)))",
    "io_inp": [
      -5,
      0,
      -3
    ],
    "io_out": [
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(sub_n(input,-3),-3),21)))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(mul_n([5, 1],1),4),-5)),-3)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(mul_n(input,1),4),-5)),-3)"
  },
  {
    "input": "input : list = [0, -2, -5, 1, 2]\noutput : list = [-6, -5, -4, -2, 1]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_des(sub_n([0, -2, -5, 1, 2],-2)),-1),1),-2)",
    "io_inp": [
      0,
      -2,
      -5,
      1,
      2
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_des(sub_n(input,-2)),-1),1),-2)"
  },
  {
    "input": "input : list = [3, -1, -3, 5, 5]\noutput : list = [8]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(take([3, -1, -3, 5, 5],1),-5))))",
    "io_inp": [
      3,
      -1,
      -3,
      5,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(take(input,1),-5))))"
  },
  {
    "input": "input : list = [3, 1, -1, 2, -4]\noutput : list = [2, 4, 6]",
    "output": "generated_output : list = reverse(sub_n(take([3, 1, -1, 2, -4],3),-3))",
    "io_inp": [
      3,
      1,
      -1,
      2,
      -4
    ],
    "io_out": [
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,3),-3))"
  },
  {
    "input": "input : list = [-1, -2, -5, 2, 0]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = sort_asc(drop([-1, -2, -5, 2, 0],2))",
    "io_inp": [
      -1,
      -2,
      -5,
      2,
      0
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [3, -4, 1, 1]\noutput : list = [2, -5, 0, 0]",
    "output": "generated_output : list = sub_n(add_n([3, -4, 1, 1],4),5)",
    "io_inp": [
      3,
      -4,
      1,
      1
    ],
    "io_out": [
      2,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),5)"
  },
  {
    "input": "input : list = [-3, 2, 0, 1]\noutput : list = [5, 4, 3, 0]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(sort_asc([-3, 2, 0, 1])),25),-3))",
    "io_inp": [
      -3,
      2,
      0,
      1
    ],
    "io_out": [
      5,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(sort_asc(input)),25),-3))"
  },
  {
    "input": "input : list = [4, -5, 5, -2, 5, -1]\noutput : list = [-6, -36, -1, -36, 14, -31]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(mul_n([4, -5, 5, -2, 5, -1],-5),-4)),-3),4)",
    "io_inp": [
      4,
      -5,
      5,
      -2,
      5,
      -1
    ],
    "io_out": [
      -6,
      -36,
      -1,
      -36,
      14,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(mul_n(input,-5),-4)),-3),4)"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [6, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(drop([-5, -2, 1],1)),-3)))",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(drop(input,1)),-3)))"
  },
  {
    "input": "input : list = [-2, -3, -1, 4]\noutput : list = [4, 5, 6, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(add_n([-2, -3, -1, 4],3)))),-4)",
    "io_inp": [
      -2,
      -3,
      -1,
      4
    ],
    "io_out": [
      4,
      5,
      6,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(add_n(input,3)))),-4)"
  },
  {
    "input": "input : list = [1, 1, 3, -1]\noutput : list = [-12, 12, 12, 36]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(sort_asc([1, 1, 3, -1]),-4),-3),-4),-4)",
    "io_inp": [
      1,
      1,
      3,
      -1
    ],
    "io_out": [
      -12,
      12,
      12,
      36
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(sort_asc(input),-4),-3),-4),-4)"
  },
  {
    "input": "input : list = [3, 4, 0, -2, 3]\noutput : list = [0, 2, 5, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(sub_n([3, 4, 0, -2, 3],-3),3),16),-2))",
    "io_inp": [
      3,
      4,
      0,
      -2,
      3
    ],
    "io_out": [
      0,
      2,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(sub_n(input,-3),3),16),-2))"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = sort_asc([-2, 1, 1])",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 1, 0]\noutput : list = [8, 4, 3, -2]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-5, 5, 1, 0],1)),-3)",
    "io_inp": [
      -5,
      5,
      1,
      0
    ],
    "io_out": [
      8,
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,1)),-3)"
  },
  {
    "input": "input : list = [4, 0, 0, -4, 5]\noutput : list = [-4, 0, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 0, 0, -4, 5])",
    "io_inp": [
      4,
      0,
      0,
      -4,
      5
    ],
    "io_out": [
      -4,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n([-1, 0],-1)),16))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(input,-1)),16))"
  },
  {
    "input": "input : list = [4, -2, 5, 1, -4]\noutput : list = [80, -20, -100, 40, -80]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n([4, -2, 5, 1, -4],-5)),21),4)",
    "io_inp": [
      4,
      -2,
      5,
      1,
      -4
    ],
    "io_out": [
      80,
      -20,
      -100,
      40,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(input,-5)),21),4)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [24, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n([-4, 2],4),-2))),-2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n(input,4),-2))),-2)"
  },
  {
    "input": "input : list = [0, -3, -2, 3, 5]\noutput : list = [0, 9, 6, -9, -15]",
    "output": "generated_output : list = mul_n([0, -3, -2, 3, 5],-3)",
    "io_inp": [
      0,
      -3,
      -2,
      3,
      5
    ],
    "io_out": [
      0,
      9,
      6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, -3, -5, 3]\noutput : list = [-50, -30, 30, 30, 30]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(mul_n([3, 3, -3, -5, 3],2))),5))",
    "io_inp": [
      3,
      3,
      -3,
      -5,
      3
    ],
    "io_out": [
      -50,
      -30,
      30,
      30,
      30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(mul_n(input,2))),5))"
  },
  {
    "input": "input : list = [-3, 0, -5, 4, -1]\noutput : list = [-3, -1, 1, 2, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(sub_n([-3, 0, -5, 4, -1],-2),2)),2),31)",
    "io_inp": [
      -3,
      0,
      -5,
      4,
      -1
    ],
    "io_out": [
      -3,
      -1,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(sub_n(input,-2),2)),2),31)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-11, 5]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(mul_n([4, 0],-4),5),8)))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -11,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(mul_n(input,-4),5),8)))"
  },
  {
    "input": "input : list = [-4, -1, 1]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(drop([-4, -1, 1],1),11)),3))",
    "io_inp": [
      -4,
      -1,
      1
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(drop(input,1),11)),3))"
  },
  {
    "input": "input : list = [-3, 0, -4, 0, -2]\noutput : list = [0, -20]",
    "output": "generated_output : list = mul_n(mul_n(drop([-3, 0, -4, 0, -2],3),-2),-5)",
    "io_inp": [
      -3,
      0,
      -4,
      0,
      -2
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(input,3),-2),-5)"
  },
  {
    "input": "input : list = [2, 0, 5, -4]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = take(sort_des([2, 0, 5, -4]),3)",
    "io_inp": [
      2,
      0,
      5,
      -4
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(input),3)"
  },
  {
    "input": "input : list = [1, 1, -5, -2]\noutput : list = [-7, -4, -1, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n([1, 1, -5, -2],2)),18)",
    "io_inp": [
      1,
      1,
      -5,
      -2
    ],
    "io_out": [
      -7,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,2)),18)"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [0, -2, -7]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(reverse([-5, 2, 0]),-1)),-3),31)",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(reverse(input),-1)),-3),31)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = take(reverse(reverse(add_n(sub_n([5, 5],1),3))),35)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(sub_n(input,1),3))),35)"
  },
  {
    "input": "input : list = [5, 4, -3]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 4, -3],1)",
    "io_inp": [
      5,
      4,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, -1, 0, 0]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -4, -1, 0, 0],1)",
    "io_inp": [
      1,
      -4,
      -1,
      0,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 2, 3, -2, -5, -2]\noutput : list = [41, 14, 14, 5, -22, -31]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(mul_n([-1, 2, 3, -2, -5, -2],1),3)),-3),-4)",
    "io_inp": [
      -1,
      2,
      3,
      -2,
      -5,
      -2
    ],
    "io_out": [
      41,
      14,
      14,
      5,
      -22,
      -31
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(mul_n(input,1),3)),-3),-4)"
  },
  {
    "input": "input : list = [-5, -2, 5, -1, -5]\noutput : list = [-9, -9, -6, -5, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(add_n([-5, -2, 5, -1, -5],-5),24)),1))",
    "io_inp": [
      -5,
      -2,
      5,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(add_n(input,-5),24)),1))"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(take([2, -4, 4],1))),-2),-1)",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(take(input,1))),-2),-1)"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = mul_n([5, 0, -2],-1)",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 5, -1, 1, -1]\noutput : list = [0, -24, 0]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(drop([-2, 5, -1, 1, -1],2),-1),3),-4))",
    "io_inp": [
      -2,
      5,
      -1,
      1,
      -1
    ],
    "io_out": [
      0,
      -24,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(drop(input,2),-1),3),-4))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(sub_n([-3, -2],-2)),4)),5)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(sub_n(input,-2)),4)),5)"
  },
  {
    "input": "input : list = [-2, -4, 2, -2]\noutput : list = [-31, -23, -23, -7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(add_n([-2, -4, 2, -2],-5),4)),-5))",
    "io_inp": [
      -2,
      -4,
      2,
      -2
    ],
    "io_out": [
      -31,
      -23,
      -23,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(add_n(input,-5),4)),-5))"
  },
  {
    "input": "input : list = [-3, -1, 5, -2, 3]\noutput : list = [1, -5, -7]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(take([-3, -1, 5, -2, 3],3),4))))",
    "io_inp": [
      -3,
      -1,
      5,
      -2,
      3
    ],
    "io_out": [
      1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(take(input,3),4))))"
  },
  {
    "input": "input : list = [-4, -5, -2, 0, -2, 2]\noutput : list = [2, -2, 0, -2, -5, -4]",
    "output": "generated_output : list = reverse([-4, -5, -2, 0, -2, 2])",
    "io_inp": [
      -4,
      -5,
      -2,
      0,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      0,
      -2,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2, -3]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = sort_asc([-4, -2, -3])",
    "io_inp": [
      -4,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, -3, -1, -1, -4]\noutput : list = [9, 3, 3, 3, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n(add_n([5, -1, -3, -1, -1, -4],1),-3),10)))",
    "io_inp": [
      5,
      -1,
      -3,
      -1,
      -1,
      -4
    ],
    "io_out": [
      9,
      3,
      3,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(add_n(input,1),-3),10)))"
  },
  {
    "input": "input : list = [2, -2, -4, 1, 3]\noutput : list = [-9, -7, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(sub_n([2, -2, -4, 1, 3],5),22))))",
    "io_inp": [
      2,
      -2,
      -4,
      1,
      3
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(sub_n(input,5),22))))"
  },
  {
    "input": "input : list = [-1, -1, 2, -1, 0, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take([-1, -1, 2, -1, 0, -1],2)",
    "io_inp": [
      -1,
      -1,
      2,
      -1,
      0,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 4, -1, -4]\noutput : list = [-5, -4, -1, 4]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse([-5, 4, -1, -4]),-2),2),36))",
    "io_inp": [
      -5,
      4,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse(input),-2),2),36))"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [8]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(take([3, -3, 5],1)),1),-5),37)",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(take(input,1)),1),-5),37)"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [-5, -5, 1]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_asc([-2, 4, -2])),-3),37))",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      -5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_asc(input)),-3),37))"
  },
  {
    "input": "input : list = [1, 1, 3, -4, -2, 1]\noutput : list = [0, 2, 5, 5, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n([1, 1, 3, -4, -2, 1],-1))),-3)",
    "io_inp": [
      1,
      1,
      3,
      -4,
      -2,
      1
    ],
    "io_out": [
      0,
      2,
      5,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(input,-1))),-3)"
  },
  {
    "input": "input : list = [1, -1, -3, -1, -4]\noutput : list = [-8, -7, -5, -5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(drop([1, -1, -3, -1, -4],1),-4))))",
    "io_inp": [
      1,
      -1,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(drop(input,1),-4))))"
  },
  {
    "input": "input : list = [0, 0, -2, 3, 4]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(take([0, 0, -2, 3, 4],3),20)),3),-2)",
    "io_inp": [
      0,
      0,
      -2,
      3,
      4
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(take(input,3),20)),3),-2)"
  },
  {
    "input": "input : list = [0, -1, 5, 0, 2, -5]\noutput : list = [2, 14, 17, 17, 23, 32]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(sort_asc([0, -1, 5, 0, 2, -5]),17),-5),3),2)",
    "io_inp": [
      0,
      -1,
      5,
      0,
      2,
      -5
    ],
    "io_out": [
      2,
      14,
      17,
      17,
      23,
      32
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(sort_asc(input),17),-5),3),2)"
  },
  {
    "input": "input : list = [0, 3, -4, 4]\noutput : list = [4, -4, 3, 0]",
    "output": "generated_output : list = reverse([0, 3, -4, 4])",
    "io_inp": [
      0,
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, -3, 1]\noutput : list = [-3, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse([0, -1, -3, 1]))",
    "io_inp": [
      0,
      -1,
      -3,
      1
    ],
    "io_out": [
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, 5, 5, 5, 1, 2]\noutput : list = [1, 1, 1, 1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sort_asc([5, 5, 5, 5, 1, 2]),-4))))",
    "io_inp": [
      5,
      5,
      5,
      5,
      1,
      2
    ],
    "io_out": [
      1,
      1,
      1,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [0, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([-4, 4],-5)),1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-5)),1)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(take(sub_n(take(drop([5, 5, 2],1),4),1),22))",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(drop(input,1),4),1),22))"
  },
  {
    "input": "input : list = [0, 2, -1, 2, 0, -2]\noutput : list = [3, 4, 5, 5, 7, 7]",
    "output": "generated_output : list = sort_asc(sub_n([0, 2, -1, 2, 0, -2],-5))",
    "io_inp": [
      0,
      2,
      -1,
      2,
      0,
      -2
    ],
    "io_out": [
      3,
      4,
      5,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [-17, 7]",
    "output": "generated_output : list = take(take(add_n(mul_n(drop([-4, -3, 3],1),4),-5),36),43)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      -17,
      7
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(drop(input,1),4),-5),36),43)"
  },
  {
    "input": "input : list = [-2, 3, 3, -5, -1]\noutput : list = [3, 3, -1, -2, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(sort_asc([-2, 3, 3, -5, -1])))),34)",
    "io_inp": [
      -2,
      3,
      3,
      -5,
      -1
    ],
    "io_out": [
      3,
      3,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(sort_asc(input)))),34)"
  },
  {
    "input": "input : list = [0, -1, 2, 4, 1, 4]\noutput : list = [-3, -2, -1, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(sub_n([0, -1, 2, 4, 1, 4],2))",
    "io_inp": [
      0,
      -1,
      2,
      4,
      1,
      4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [-4, 4, -4, 3]\noutput : list = [-8, 8, -8, 6]",
    "output": "generated_output : list = take(mul_n([-4, 4, -4, 3],2),9)",
    "io_inp": [
      -4,
      4,
      -4,
      3
    ],
    "io_out": [
      -8,
      8,
      -8,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),9)"
  },
  {
    "input": "input : list = [0, 0, 0, -1, 1]\noutput : list = [1, 0, 0, 0, -1]",
    "output": "generated_output : list = sort_des([0, 0, 0, -1, 1])",
    "io_inp": [
      0,
      0,
      0,
      -1,
      1
    ],
    "io_out": [
      1,
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n([2, 1],2)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 5, -5, -1, -1]\noutput : list = [-4, 2, 2, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(reverse([-5, 5, -5, -1, -1]),-1)),1))",
    "io_inp": [
      -5,
      5,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -4,
      2,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(reverse(input),-1)),1))"
  },
  {
    "input": "input : list = [-3, -3, 2, 1]\noutput : list = [0, 4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(drop([-3, -3, 2, 1],2),2))),-4)",
    "io_inp": [
      -3,
      -3,
      2,
      1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(drop(input,2),2))),-4)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = sort_des(mul_n([-1, 0, -5],-1))",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [2, 3, -1, 0]\noutput : list = [-3, -4, -6, -7]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(sub_n([2, 3, -1, 0],5),1))),4)",
    "io_inp": [
      2,
      3,
      -1,
      0
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(sub_n(input,5),1))),4)"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(reverse([-3, 2, 5])))))",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [2, 17, 22]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(sub_n([-4, 0, -3],1))),-5),3)",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      2,
      17,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(sub_n(input,1))),-5),3)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(add_n([-4, -4],3))),8))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(add_n(input,3))),8))"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [10, 10, 0]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_des([3, 1, 3]))),5),-5)",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      10,
      10,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_des(input))),5),-5)"
  },
  {
    "input": "input : list = [-3, 5, -2, 5]\noutput : list = [6, -1, 6, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n([-3, 5, -2, 5],1)),2),2)",
    "io_inp": [
      -3,
      5,
      -2,
      5
    ],
    "io_out": [
      6,
      -1,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(input,1)),2),2)"
  },
  {
    "input": "input : list = [-2, 5, 2, -1, -5]\noutput : list = [-4, 3, 0, -3, -7]",
    "output": "generated_output : list = add_n([-2, 5, 2, -1, -5],-2)",
    "io_inp": [
      -2,
      5,
      2,
      -1,
      -5
    ],
    "io_out": [
      -4,
      3,
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n(add_n([-1, -1],-2),-3),8)),-5)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(add_n(input,-2),-3),8)),-5)"
  },
  {
    "input": "input : list = [4, 4, 2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(add_n(drop([4, 4, 2],1),-2),2)),5)",
    "io_inp": [
      4,
      4,
      2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(add_n(drop(input,1),-2),2)),5)"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [1, 1, 1]",
    "output": "generated_output : list = take(add_n(take(add_n([-2, -2, -2],-1),4),4),37)",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(input,-1),4),4),37)"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_des(take(take([-2, 0, -4],1),4)),4)",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(input,1),4)),4)"
  },
  {
    "input": "input : list = [0, 4, 0, 5, 2]\noutput : list = [0, 0, 6, 12, 15]",
    "output": "generated_output : list = mul_n(sort_asc([0, 4, 0, 5, 2]),3)",
    "io_inp": [
      0,
      4,
      0,
      5,
      2
    ],
    "io_out": [
      0,
      0,
      6,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-3, -5, 2, 3, -1, -1]\noutput : list = [-2, -3, -6, -6, -8, -10]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(add_n([-3, -5, 2, 3, -1, -1],-1)))),4)",
    "io_inp": [
      -3,
      -5,
      2,
      3,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(add_n(input,-1)))),4)"
  },
  {
    "input": "input : list = [-4, 4, -5, 5, -1, -4]\noutput : list = [5, 4, -1, -4, -4, -5]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(sort_des([-4, 4, -5, 5, -1, -4])),4),4),12)",
    "io_inp": [
      -4,
      4,
      -5,
      5,
      -1,
      -4
    ],
    "io_out": [
      5,
      4,
      -1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(sort_des(input)),4),4),12)"
  },
  {
    "input": "input : list = [-2, -4, 5, 4, 2]\noutput : list = [8, 7, 5, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(sub_n([-2, -4, 5, 4, 2],-2),4))),3)",
    "io_inp": [
      -2,
      -4,
      5,
      4,
      2
    ],
    "io_out": [
      8,
      7,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(sub_n(input,-2),4))),3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-20, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n([5, 1],-5),-5)))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(input,-5),-5)))"
  },
  {
    "input": "input : list = [1, 1, 5, 0]\noutput : list = [0, -9, -9, -45]",
    "output": "generated_output : list = reverse(take(mul_n(mul_n(sort_des([1, 1, 5, 0]),-3),3),31))",
    "io_inp": [
      1,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      -9,
      -9,
      -45
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(mul_n(sort_des(input),-3),3),31))"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [-1, 5, 6]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(sub_n([-2, 5, 4],-1)),12)))",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      -1,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(sub_n(input,-1)),12)))"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-8, -7, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([2, -5, -4]),3))",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [2, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-1, -4])),-3)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [3, -2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc(take(drop([3, -2, 5],1),2))",
    "io_inp": [
      3,
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,1),2))"
  },
  {
    "input": "input : list = [2, 0, -1, -3]\noutput : list = [3, 1, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(reverse([2, 0, -1, -3])),-1)))",
    "io_inp": [
      2,
      0,
      -1,
      -3
    ],
    "io_out": [
      3,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-3, -3, -4]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(reverse([-3, -3, -4]),-1)),38),29)",
    "io_inp": [
      -3,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(reverse(input),-1)),38),29)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(sort_des([-1, -1, 3]),1),-3),4))",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(sort_des(input),1),-3),4))"
  },
  {
    "input": "input : list = [-5, -4, 5, 3, -1, -4]\noutput : list = [6, -2, -8]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([-5, -4, 5, 3, -1, -4],3),4),2)))",
    "io_inp": [
      -5,
      -4,
      5,
      3,
      -1,
      -4
    ],
    "io_out": [
      6,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,3),4),2)))"
  },
  {
    "input": "input : list = [-3, -5, -1, 1]\noutput : list = [104, 64, 24, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(mul_n([-3, -5, -1, 1],5),1)),-4))",
    "io_inp": [
      -3,
      -5,
      -1,
      1
    ],
    "io_out": [
      104,
      64,
      24,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(mul_n(input,5),1)),-4))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [20, -5]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(sort_asc([-4, 1]),9),-5)))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      20,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(sort_asc(input),9),-5)))"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [-1, 4, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(reverse([4, 2, -3]))),3),-1)",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      -1,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(reverse(input))),3),-1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [11, -5]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(mul_n([2, -2],4)),15),3))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      11,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(mul_n(input,4)),15),3))"
  },
  {
    "input": "input : list = [-3, 4, -1, 3]\noutput : list = [4, 0, 5, -2]",
    "output": "generated_output : list = reverse(add_n([-3, 4, -1, 3],1))",
    "io_inp": [
      -3,
      4,
      -1,
      3
    ],
    "io_out": [
      4,
      0,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [-3, -4, -4, 3, 4, -3]\noutput : list = [-18, -13, 17, 17, 22, 22]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(mul_n([-3, -4, -4, 3, 4, -3],-1))),5),-2)",
    "io_inp": [
      -3,
      -4,
      -4,
      3,
      4,
      -3
    ],
    "io_out": [
      -18,
      -13,
      17,
      17,
      22,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(mul_n(input,-1))),5),-2)"
  },
  {
    "input": "input : list = [-3, -4, -5, 1]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(reverse(take([-3, -4, -5, 1],1)),-2)",
    "io_inp": [
      -3,
      -4,
      -5,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,1)),-2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [9, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n([-4, 5],1)),-5),2)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(input,1)),-5),2)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, -15]",
    "output": "generated_output : list = mul_n(add_n(reverse([1, -3]),4),-3)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),4),-3)"
  },
  {
    "input": "input : list = [-3, -3, -4, -1]\noutput : list = [1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_asc([-3, -3, -4, -1]),5)),30))",
    "io_inp": [
      -3,
      -3,
      -4,
      -1
    ],
    "io_out": [
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_asc(input),5)),30))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-30, -60]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse([2, 4]),3)),-5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -30,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(input),3)),-5)"
  },
  {
    "input": "input : list = [-4, -5, 5, -1, -2, 1]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(drop([-4, -5, 5, -1, -2, 1],3)),28)),52)",
    "io_inp": [
      -4,
      -5,
      5,
      -1,
      -2,
      1
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(drop(input,3)),28)),52)"
  },
  {
    "input": "input : list = [3, -5, -4, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = take(drop([3, -5, -4, 5, 5],3),11)",
    "io_inp": [
      3,
      -5,
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,3),11)"
  },
  {
    "input": "input : list = [-1, -2, 1]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des(reverse([-1, -2, 1])),1),2),31)",
    "io_inp": [
      -1,
      -2,
      1
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(reverse(input)),1),2),31)"
  },
  {
    "input": "input : list = [-1, 4, -3, -5, 3]\noutput : list = [-4, -2, 0, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc([-1, 4, -3, -5, 3]),1)",
    "io_inp": [
      -1,
      4,
      -3,
      -5,
      3
    ],
    "io_out": [
      -4,
      -2,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-4, 5, -5, 4, -2]\noutput : list = [-4, 5, -1]",
    "output": "generated_output : list = add_n(sub_n(drop(drop([-4, 5, -5, 4, -2],1),1),2),3)",
    "io_inp": [
      -4,
      5,
      -5,
      4,
      -2
    ],
    "io_out": [
      -4,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(drop(input,1),1),2),3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-8, -10]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse([-5, -3]),1),2),4)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(input),1),2),4)"
  },
  {
    "input": "input : list = [4, -2, -4, 0, 1]\noutput : list = [-16, -4, 0, 8, 16]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_des([4, -2, -4, 0, 1]),-4))))",
    "io_inp": [
      4,
      -2,
      -4,
      0,
      1
    ],
    "io_out": [
      -16,
      -4,
      0,
      8,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [1, 3, -4, -3, -3, 1]\noutput : list = [4, 6, -1, 0, 0, 4]",
    "output": "generated_output : list = take(sub_n(add_n(take(sub_n([1, 3, -4, -3, -3, 1],1),18),2),-2),41)",
    "io_inp": [
      1,
      3,
      -4,
      -3,
      -3,
      1
    ],
    "io_out": [
      4,
      6,
      -1,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(sub_n(input,1),18),2),-2),41)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-12, -8]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(reverse([-3, -2]),4)),13))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(reverse(input),4)),13))"
  },
  {
    "input": "input : list = [-1, -4, -4, -4, 3, -1]\noutput : list = [-14, 2, 2, 14, 14, 14]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(mul_n([-1, -4, -4, -4, 3, -1],-4),-2))))",
    "io_inp": [
      -1,
      -4,
      -4,
      -4,
      3,
      -1
    ],
    "io_out": [
      -14,
      2,
      2,
      14,
      14,
      14
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(mul_n(input,-4),-2))))"
  },
  {
    "input": "input : list = [-1, 5, 5, -3]\noutput : list = [-25, -25, 5, 15]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(mul_n([-1, 5, 5, -3],-5))),14))",
    "io_inp": [
      -1,
      5,
      5,
      -3
    ],
    "io_out": [
      -25,
      -25,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(mul_n(input,-5))),14))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(sort_des([-3, -4])))))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-100, -40]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(mul_n([2, 5],-4)),5)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -100,
      -40
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(mul_n(input,-4)),5)))"
  },
  {
    "input": "input : list = [-2, -3, 5, -3]\noutput : list = [1, 0, 8, 0]",
    "output": "generated_output : list = add_n([-2, -3, 5, -3],3)",
    "io_inp": [
      -2,
      -3,
      5,
      -3
    ],
    "io_out": [
      1,
      0,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 2, 5, 1, 3]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = drop(sub_n(reverse(sort_des(drop([-5, 2, 5, 1, 3],1))),4),1)",
    "io_inp": [
      -5,
      2,
      5,
      1,
      3
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(sub_n(reverse(sort_des(drop(input,1))),4),1)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [4, 12, 0]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-5, 1, -3],-5)),2)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      4,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-5)),2)"
  },
  {
    "input": "input : list = [0, 2, 4, 2, -5]\noutput : list = [-20, -10, -10, 0, 25]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(mul_n([0, 2, 4, 2, -5],5),-1),5)),9)",
    "io_inp": [
      0,
      2,
      4,
      2,
      -5
    ],
    "io_out": [
      -20,
      -10,
      -10,
      0,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(mul_n(input,5),-1),5)),9)"
  },
  {
    "input": "input : list = [1, -5, -5, -1]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(take([1, -5, -5, -1],1)))),3)",
    "io_inp": [
      1,
      -5,
      -5,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(take(input,1)))),3)"
  },
  {
    "input": "input : list = [-5, -5, 2, 1, 5]\noutput : list = [9, 6, 5, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des([-5, -5, 2, 1, 5]),-5)),1))",
    "io_inp": [
      -5,
      -5,
      2,
      1,
      5
    ],
    "io_out": [
      9,
      6,
      5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des(input),-5)),1))"
  },
  {
    "input": "input : list = [3, 1, 1, 4, -1, 0]\noutput : list = [3, 1, 1]",
    "output": "generated_output : list = take([3, 1, 1, 4, -1, 0],3)",
    "io_inp": [
      3,
      1,
      1,
      4,
      -1,
      0
    ],
    "io_out": [
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [6, 3]",
    "output": "generated_output : list = mul_n([-2, -1],-3)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -1, -3, 5, 1, 2]\noutput : list = [-1, 1, 3, 4, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(drop([-1, -1, -3, 5, 1, 2],1)))),2)",
    "io_inp": [
      -1,
      -1,
      -3,
      5,
      1,
      2
    ],
    "io_out": [
      -1,
      1,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [-2, -1, -2, 1]\noutput : list = [-12, 6]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(drop([-2, -1, -2, 1],2))),2),3)",
    "io_inp": [
      -2,
      -1,
      -2,
      1
    ],
    "io_out": [
      -12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(drop(input,2))),2),3)"
  },
  {
    "input": "input : list = [5, -2, 4, 5, 0, 5]\noutput : list = [4, 6, 10, 11, 11, 11]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(sort_asc([5, -2, 4, 5, 0, 5]),16),1),2),-4)",
    "io_inp": [
      5,
      -2,
      4,
      5,
      0,
      5
    ],
    "io_out": [
      4,
      6,
      10,
      11,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(sort_asc(input),16),1),2),-4)"
  },
  {
    "input": "input : list = [2, 2, 0, -5]\noutput : list = [20, 0, -8, -8]",
    "output": "generated_output : list = mul_n(reverse([2, 2, 0, -5]),-4)",
    "io_inp": [
      2,
      2,
      0,
      -5
    ],
    "io_out": [
      20,
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [16, 8, 4]",
    "output": "generated_output : list = mul_n([4, 2, 1],4)",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      16,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, -1, 4, -5, 0]\noutput : list = [3, 3]",
    "output": "generated_output : list = take(mul_n(sub_n(take(take([-1, -1, 4, -5, 0],2),24),2),-1),44)",
    "io_inp": [
      -1,
      -1,
      4,
      -5,
      0
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(take(input,2),24),2),-1),44)"
  },
  {
    "input": "input : list = [3, -1, 0, 0, 5]\noutput : list = [2, -2, -1, -1, 4]",
    "output": "generated_output : list = add_n([3, -1, 0, 0, 5],-1)",
    "io_inp": [
      3,
      -1,
      0,
      0,
      5
    ],
    "io_out": [
      2,
      -2,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -5, 1, -4, -4, -3]\noutput : list = [28, 8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(take([-1, -5, 1, -4, -4, -3],2),-5),-3)))",
    "io_inp": [
      -1,
      -5,
      1,
      -4,
      -4,
      -3
    ],
    "io_out": [
      28,
      8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(take(input,2),-5),-3)))"
  },
  {
    "input": "input : list = [4, 2, -5, 2, 1, -2]\noutput : list = [-5, -2, 1, 2, 2, 4]",
    "output": "generated_output : list = reverse(sort_des([4, 2, -5, 2, 1, -2]))",
    "io_inp": [
      4,
      2,
      -5,
      2,
      1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, 1, -1, -1, 4, -4]\noutput : list = [2, -1, -3, -3, 2, -6]",
    "output": "generated_output : list = add_n([4, 1, -1, -1, 4, -4],-2)",
    "io_inp": [
      4,
      1,
      -1,
      -1,
      4,
      -4
    ],
    "io_out": [
      2,
      -1,
      -3,
      -3,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 4, 3, 4, -3, 4]\noutput : list = [3, 3, 3, 2, -4, -4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sub_n([-3, 4, 3, 4, -3, 4],3)),-2)),1)",
    "io_inp": [
      -3,
      4,
      3,
      4,
      -3,
      4
    ],
    "io_out": [
      3,
      3,
      3,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sub_n(input,3)),-2)),1)"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [4, 5, -1]",
    "output": "generated_output : list = add_n([3, 4, -2],1)",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      4,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des([-3, -1, 3])))",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [3, 3, -2, -4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(drop([3, 3, -2, -4, 3],3))",
    "io_inp": [
      3,
      3,
      -2,
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [4, -3, 4, -2]\noutput : list = [-80, 160, -120, 160]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(mul_n([4, -3, 4, -2],4),-5),15),-2))",
    "io_inp": [
      4,
      -3,
      4,
      -2
    ],
    "io_out": [
      -80,
      160,
      -120,
      160
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(mul_n(input,4),-5),15),-2))"
  },
  {
    "input": "input : list = [-2, 4, -4, 2, 0]\noutput : list = [0, 2, -4, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, -4, 2, 0])",
    "io_inp": [
      -2,
      4,
      -4,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      -4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4, 3, 3, 1, 4]\noutput : list = [4, 3, 3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-2, 4, 3, 3, 1, 4],2)))",
    "io_inp": [
      -2,
      4,
      3,
      3,
      1,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-26, -22]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(reverse([-4, -5]),4),2),5),-4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -26,
      -22
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(reverse(input),4),2),5),-4)"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [1, -1, -5]",
    "output": "generated_output : list = sort_des([-1, 1, -5])",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, 3, 1, 3]\noutput : list = [36, -48, 36, 12, 36]",
    "output": "generated_output : list = mul_n(mul_n([3, -4, 3, 1, 3],-4),-3)",
    "io_inp": [
      3,
      -4,
      3,
      1,
      3
    ],
    "io_out": [
      36,
      -48,
      36,
      12,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),-3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse([-5, 3])",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, -1, 5, 1]\noutput : list = [-6, -5, 2, -4, 2, -2]",
    "output": "generated_output : list = add_n([-3, -2, 5, -1, 5, 1],-3)",
    "io_inp": [
      -3,
      -2,
      5,
      -1,
      5,
      1
    ],
    "io_out": [
      -6,
      -5,
      2,
      -4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [5, 0, -2, -4, 5]\noutput : list = [7, 7, 2, 0, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(sub_n([5, 0, -2, -4, 5],-3)))),-1)",
    "io_inp": [
      5,
      0,
      -2,
      -4,
      5
    ],
    "io_out": [
      7,
      7,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(sub_n(input,-3)))),-1)"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [3, 3, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(reverse([-2, -2, -2]),-4))),1)",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(reverse(input),-4))),1)"
  },
  {
    "input": "input : list = [3, 2, 3, -5, 5, 5]\noutput : list = [5, 5, 3, 3, 2, -5]",
    "output": "generated_output : list = take(sort_des([3, 2, 3, -5, 5, 5]),24)",
    "io_inp": [
      3,
      2,
      3,
      -5,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),24)"
  },
  {
    "input": "input : list = [5, 1, 3, 2, -1, 2]\noutput : list = [9, 5, 7, 6, 3, 6]",
    "output": "generated_output : list = add_n(sub_n(add_n(add_n(sub_n([5, 1, 3, 2, -1, 2],1),-1),2),-1),3)",
    "io_inp": [
      5,
      1,
      3,
      2,
      -1,
      2
    ],
    "io_out": [
      9,
      5,
      7,
      6,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(add_n(sub_n(input,1),-1),2),-1),3)"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [4, 24, 24]",
    "output": "generated_output : list = reverse(mul_n(take(take(sub_n([3, 3, -2],-3),9),9),4))",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      4,
      24,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sub_n(input,-3),9),9),4))"
  },
  {
    "input": "input : list = [-1, 2, 1, 1]\noutput : list = [4, 4, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(drop([-1, 2, 1, 1],1)),3),35))",
    "io_inp": [
      -1,
      2,
      1,
      1
    ],
    "io_out": [
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(drop(input,1)),3),35))"
  },
  {
    "input": "input : list = [2, 5, -2, 4, 0, -4]\noutput : list = [-2, 5, 2]",
    "output": "generated_output : list = reverse(take([2, 5, -2, 4, 0, -4],3))",
    "io_inp": [
      2,
      5,
      -2,
      4,
      0,
      -4
    ],
    "io_out": [
      -2,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-2, -1, -3, -1]\noutput : list = [9, 6, 12, 6]",
    "output": "generated_output : list = add_n(mul_n([-2, -1, -3, -1],-3),3)",
    "io_inp": [
      -2,
      -1,
      -3,
      -1
    ],
    "io_out": [
      9,
      6,
      12,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),3)"
  },
  {
    "input": "input : list = [-3, 2, -1, 5, 4, 2]\noutput : list = [-5, 0, -3, 3, 2, 0]",
    "output": "generated_output : list = add_n([-3, 2, -1, 5, 4, 2],-2)",
    "io_inp": [
      -3,
      2,
      -1,
      5,
      4,
      2
    ],
    "io_out": [
      -5,
      0,
      -3,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, -3, 4, -2, 5, -4]\noutput : list = [38, 28, 18, -22, -42, -52]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(mul_n([2, -3, 4, -2, 5, -4],-5)),2)),-2)",
    "io_inp": [
      2,
      -3,
      4,
      -2,
      5,
      -4
    ],
    "io_out": [
      38,
      28,
      18,
      -22,
      -42,
      -52
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(mul_n(input,-5)),2)),-2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n(reverse(take(add_n(sort_asc([1, -2]),-5),24)),-4)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(sort_asc(input),-5),24)),-4)"
  },
  {
    "input": "input : list = [-2, -2, -4, -5, 5]\noutput : list = [75, 50, 0, 0, -175]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(sub_n([-2, -2, -4, -5, 5],-2),-5),5)),27)",
    "io_inp": [
      -2,
      -2,
      -4,
      -5,
      5
    ],
    "io_out": [
      75,
      50,
      0,
      0,
      -175
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(sub_n(input,-2),-5),5)),27)"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = mul_n([3, -4, -5],1)",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-5, 1, 4, -1, -2, -2]\noutput : list = [12, 3, -3, -6, -6, -15]",
    "output": "generated_output : list = mul_n(sort_des([-5, 1, 4, -1, -2, -2]),3)",
    "io_inp": [
      -5,
      1,
      4,
      -1,
      -2,
      -2
    ],
    "io_out": [
      12,
      3,
      -3,
      -6,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([1, 0]),-2))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [-3, -4, 1, 2, 0, -2]\noutput : list = [-16, -8]",
    "output": "generated_output : list = sort_asc(drop(mul_n(sub_n([-3, -4, 1, 2, 0, -2],2),4),4))",
    "io_inp": [
      -3,
      -4,
      1,
      2,
      0,
      -2
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(sub_n(input,2),4),4))"
  },
  {
    "input": "input : list = [-4, -4, 1, -4, 5, 5]\noutput : list = [5, 5, -4, 1, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, 1, -4, 5, 5])",
    "io_inp": [
      -4,
      -4,
      1,
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -4,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, -2, -3]\noutput : list = [7, 3, -25, -5]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(mul_n([0, 5, -2, -3],-4)))),5)",
    "io_inp": [
      0,
      5,
      -2,
      -3
    ],
    "io_out": [
      7,
      3,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(mul_n(input,-4)))),5)"
  },
  {
    "input": "input : list = [0, -3, 2, -3, -5]\noutput : list = [2, 0, -3, -3, -5]",
    "output": "generated_output : list = take(sort_des([0, -3, 2, -3, -5]),20)",
    "io_inp": [
      0,
      -3,
      2,
      -3,
      -5
    ],
    "io_out": [
      2,
      0,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),20)"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take([-3, 3, -2],1),3),2))",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(input,1),3),2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-14, -6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(sub_n([4, 0],1),4),-2)))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -14,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(sub_n(input,1),4),-2)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [24, 16]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(sub_n([1, -1],2),4),4),-1),4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      24,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(sub_n(input,2),4),4),-1),4)"
  },
  {
    "input": "input : list = [1, -5, 4, 5, -3, 0]\noutput : list = [0, 2, 5, 6, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(sub_n([1, -5, 4, 5, -3, 0],-5)),24)))",
    "io_inp": [
      1,
      -5,
      4,
      5,
      -3,
      0
    ],
    "io_out": [
      0,
      2,
      5,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(sub_n(input,-5)),24)))"
  },
  {
    "input": "input : list = [5, 5, 4, -3]\noutput : list = [-1, -1, -2, -9]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(reverse([5, 5, 4, -3])),-1),5))",
    "io_inp": [
      5,
      5,
      4,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(reverse(input)),-1),5))"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [13, -7, 3]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n([2, -2, 0],5),16),-2),-1)",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      13,
      -7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(input,5),16),-2),-1)"
  },
  {
    "input": "input : list = [-4, 1, -5, 4, -4]\noutput : list = [6, -2]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(drop([-4, 1, -5, 4, -4],3),-1),-2)),17)",
    "io_inp": [
      -4,
      1,
      -5,
      4,
      -4
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(drop(input,3),-1),-2)),17)"
  },
  {
    "input": "input : list = [2, -1, 5]\noutput : list = [3, 15]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(drop([2, -1, 5],1),-1),2),2),-3)",
    "io_inp": [
      2,
      -1,
      5
    ],
    "io_out": [
      3,
      15
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(drop(input,1),-1),2),2),-3)"
  },
  {
    "input": "input : list = [2, 1, 1, -4]\noutput : list = [2, 1, 1, -4]",
    "output": "generated_output : list = take(sort_des([2, 1, 1, -4]),7)",
    "io_inp": [
      2,
      1,
      1,
      -4
    ],
    "io_out": [
      2,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [1, -2, -1, 0]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -2, -1, 0],1)",
    "io_inp": [
      1,
      -2,
      -1,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -3, 4, 1, -2, -2]\noutput : list = [-4, -3, -3, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sort_des([5, -3, 4, 1, -2, -2]),1))))",
    "io_inp": [
      5,
      -3,
      4,
      1,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [3, 5, 1, 1]\noutput : list = [7, 5, 3, 3]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(sort_des([3, 5, 1, 1]))),25),2)",
    "io_inp": [
      3,
      5,
      1,
      1
    ],
    "io_out": [
      7,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(sort_des(input))),25),2)"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [11]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(sort_asc([-3, 0, 4])),-5),1),2)",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(sort_asc(input)),-5),1),2)"
  },
  {
    "input": "input : list = [1, 4, 0, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_des(sub_n([1, 4, 0, 3],1)),1)",
    "io_inp": [
      1,
      4,
      0,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,1)),1)"
  },
  {
    "input": "input : list = [0, -4, -1, 4, 3, -1]\noutput : list = [0, -4, -1, 4, 3, -1]",
    "output": "generated_output : list = reverse(reverse([0, -4, -1, 4, 3, -1]))",
    "io_inp": [
      0,
      -4,
      -1,
      4,
      3,
      -1
    ],
    "io_out": [
      0,
      -4,
      -1,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, -2, -4, -4, -5, 1]\noutput : list = [-16, -28, -36, -36, -36, -40]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-4, -2, -4, -4, -5, 1]),5),4)",
    "io_inp": [
      -4,
      -2,
      -4,
      -4,
      -5,
      1
    ],
    "io_out": [
      -16,
      -28,
      -36,
      -36,
      -36,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),5),4)"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(drop([0, -2, -4],1),17),-1),14))",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(drop(input,1),17),-1),14))"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [-5, -8]",
    "output": "generated_output : list = add_n(mul_n(drop([-2, 1, 2],1),-3),-2)",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,1),-3),-2)"
  },
  {
    "input": "input : list = [4, 2, 3, 5]\noutput : list = [6, 7, 8, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(add_n([4, 2, 3, 5],3),-3)),-3),-5)",
    "io_inp": [
      4,
      2,
      3,
      5
    ],
    "io_out": [
      6,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(add_n(input,3),-3)),-3),-5)"
  },
  {
    "input": "input : list = [4, 2, 4, -5, -2]\noutput : list = [4, 4, 2, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc([4, 2, 4, -5, -2]))",
    "io_inp": [
      4,
      2,
      4,
      -5,
      -2
    ],
    "io_out": [
      4,
      4,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sub_n([3, -3],4)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 0, 0, 3]\noutput : list = [14]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take([-4, 0, 0, 3],1),-5),-1),5)",
    "io_inp": [
      -4,
      0,
      0,
      3
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(input,1),-5),-1),5)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-27, -18]",
    "output": "generated_output : list = take(mul_n(sub_n([-4, -1],5),3),9)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -27,
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,5),3),9)"
  },
  {
    "input": "input : list = [4, 1, -3, -4, 5]\noutput : list = [20, 15, -5, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([4, 1, -3, -4, 5],-5)))",
    "io_inp": [
      4,
      1,
      -3,
      -4,
      5
    ],
    "io_out": [
      20,
      15,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(sub_n(mul_n([-5, -4],1),-1),8)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,1),-1),8)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(add_n([1, -3],-1)),25))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(add_n(input,-1)),25))"
  },
  {
    "input": "input : list = [-5, 4, -5, 2, -1, 5]\noutput : list = [-10, -10, -2, 4, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse([-5, 4, -5, 2, -1, 5]),2),1))",
    "io_inp": [
      -5,
      4,
      -5,
      2,
      -1,
      5
    ],
    "io_out": [
      -10,
      -10,
      -2,
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(input),2),1))"
  },
  {
    "input": "input : list = [2, 4, -3, 0, -1, 5]\noutput : list = [8, 0, -4, -20, -24]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(drop([2, 4, -3, 0, -1, 5],1)),-4),-4))",
    "io_inp": [
      2,
      4,
      -3,
      0,
      -1,
      5
    ],
    "io_out": [
      8,
      0,
      -4,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(drop(input,1)),-4),-4))"
  },
  {
    "input": "input : list = [-2, -3, -1, -2, 3, 2]\noutput : list = [-4, -3, -3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-2, -3, -1, -2, 3, 2],1)))",
    "io_inp": [
      -2,
      -3,
      -1,
      -2,
      3,
      2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,1)))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [16]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(sub_n([0, 0],-4),1)),3),4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(sub_n(input,-4),1)),3),4)"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take([2, 3, -5],1),-3),2))",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(input,1),-3),2))"
  },
  {
    "input": "input : list = [5, -1, -3, 4, 3, -2]\noutput : list = [10, 8, 0, -2, -4]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(drop([5, -1, -3, 4, 3, -2],1),8)),2),2)",
    "io_inp": [
      5,
      -1,
      -3,
      4,
      3,
      -2
    ],
    "io_out": [
      10,
      8,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(drop(input,1),8)),2),2)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = sort_des([4, 2, -2])",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(reverse([1, 4]))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [4]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(take([-1, -4, 4],1),-2),-3),-5),29)",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(take(input,1),-2),-3),-5),29)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-10, -45]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(drop([5, -5, 2],1),-2),-2)),5)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -10,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(drop(input,1),-2),-2)),5)"
  },
  {
    "input": "input : list = [-5, 1, -4, -2]\noutput : list = [-25, 5, -20, -10]",
    "output": "generated_output : list = mul_n([-5, 1, -4, -2],5)",
    "io_inp": [
      -5,
      1,
      -4,
      -2
    ],
    "io_out": [
      -25,
      5,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [3, 5]",
    "output": "generated_output : list = add_n(add_n([2, 4],-4),5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),5)"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [0, -2, 2]",
    "output": "generated_output : list = sub_n([1, -1, 3],1)",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      0,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, -4, -2, -1, -1]\noutput : list = [-8, -7, -5, -4, -4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(reverse([-5, -4, -2, -1, -1]),4),4),-5))",
    "io_inp": [
      -5,
      -4,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(reverse(input),4),4),-5))"
  },
  {
    "input": "input : list = [-3, 5, 1, 1]\noutput : list = [-20, -4, -4, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n([-3, 5, 1, 1],1),4)),-1))",
    "io_inp": [
      -3,
      5,
      1,
      1
    ],
    "io_out": [
      -20,
      -4,
      -4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n(input,1),4)),-1))"
  },
  {
    "input": "input : list = [-1, 5, 0]\noutput : list = [-1, -2, -7]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(mul_n([-1, 5, 0],-1)),3),29),1)",
    "io_inp": [
      -1,
      5,
      0
    ],
    "io_out": [
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(mul_n(input,-1)),3),29),1)"
  },
  {
    "input": "input : list = [-5, -3, -3, -2]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = take(reverse(drop([-5, -3, -3, -2],1)),30)",
    "io_inp": [
      -5,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(drop(input,1)),30)"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [75, 50, 25]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_asc([1, 2, 3])),-5)),-5)",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      75,
      50,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_asc(input)),-5)),-5)"
  },
  {
    "input": "input : list = [-5, -5, -4, -2, -5, 1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(drop(reverse(add_n([-5, -5, -4, -2, -5, 1],3)),4),44)",
    "io_inp": [
      -5,
      -5,
      -4,
      -2,
      -5,
      1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(reverse(add_n(input,3)),4),44)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [123, -102]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(mul_n([-5, 4],-5)),5),-1),1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      123,
      -102
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(mul_n(input,-5)),5),-1),1)"
  },
  {
    "input": "input : list = [4, 4, -5, -5, -4]\noutput : list = [2, 2, 3, 11, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_des([4, 4, -5, -5, -4]),-3),-1),3))",
    "io_inp": [
      4,
      4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      2,
      2,
      3,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_des(input),-3),-1),3))"
  },
  {
    "input": "input : list = [-2, -1, -1, -3, 2]\noutput : list = [-13, -8, -3, -3, 12]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(mul_n([-2, -1, -1, -3, 2],5))),-2))",
    "io_inp": [
      -2,
      -1,
      -1,
      -3,
      2
    ],
    "io_out": [
      -13,
      -8,
      -3,
      -3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(mul_n(input,5))),-2))"
  },
  {
    "input": "input : list = [4, -5, 3, 2, 2]\noutput : list = [5, -4, 4, 3, 3]",
    "output": "generated_output : list = add_n([4, -5, 3, 2, 2],1)",
    "io_inp": [
      4,
      -5,
      3,
      2,
      2
    ],
    "io_out": [
      5,
      -4,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, -1, 3, 0, 4]\noutput : list = [3, 0, 4]",
    "output": "generated_output : list = drop([4, -1, 3, 0, 4],2)",
    "io_inp": [
      4,
      -1,
      3,
      0,
      4
    ],
    "io_out": [
      3,
      0,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, 3, 0, -3, -3, -3]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n(drop([1, 3, 0, -3, -3, -3],4),-1),-3),2),2)",
    "io_inp": [
      1,
      3,
      0,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(drop(input,4),-1),-3),2),2)"
  },
  {
    "input": "input : list = [-4, 2, 5, 3, -3, 1]\noutput : list = [-4, -10, -28, -16]",
    "output": "generated_output : list = add_n(drop(mul_n(sub_n(add_n([-4, 2, 5, 3, -3, 1],-2),4),3),2),-1)",
    "io_inp": [
      -4,
      2,
      5,
      3,
      -3,
      1
    ],
    "io_out": [
      -4,
      -10,
      -28,
      -16
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sub_n(add_n(input,-2),4),3),2),-1)"
  },
  {
    "input": "input : list = [0, 4, 4, 5]\noutput : list = [-5, -4, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n([0, 4, 4, 5],-1))",
    "io_inp": [
      0,
      4,
      4,
      5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [-15, 15, 10]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(reverse([2, -4, -3])),1),28),-5)",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      -15,
      15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(reverse(input)),1),28),-5)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-7, -1]",
    "output": "generated_output : list = add_n([-4, 2],-3)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, 4, -1, 3, -3]\noutput : list = [-7, -1, -5, 0, 0]",
    "output": "generated_output : list = reverse(sub_n([4, 4, -1, 3, -3],4))",
    "io_inp": [
      4,
      4,
      -1,
      3,
      -3
    ],
    "io_out": [
      -7,
      -1,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-2, 3, -1, 5]\noutput : list = [-3, -2, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(add_n([-2, 3, -1, 5],1),-1),-1)))",
    "io_inp": [
      -2,
      3,
      -1,
      5
    ],
    "io_out": [
      -3,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(add_n(input,1),-1),-1)))"
  },
  {
    "input": "input : list = [1, 2, 2, -5, -2]\noutput : list = [3, -11, -5]",
    "output": "generated_output : list = drop(add_n(mul_n([1, 2, 2, -5, -2],2),-1),2)",
    "io_inp": [
      1,
      2,
      2,
      -5,
      -2
    ],
    "io_out": [
      3,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = drop(add_n(mul_n(input,2),-1),2)"
  },
  {
    "input": "input : list = [-5, 1, 1, 0, 5, 2]\noutput : list = [12, 6, 6, 7, 2, 5]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(add_n([-5, 1, 1, 0, 5, 2],-4),-1),3),3),3)",
    "io_inp": [
      -5,
      1,
      1,
      0,
      5,
      2
    ],
    "io_out": [
      12,
      6,
      6,
      7,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(add_n(input,-4),-1),3),3),3)"
  },
  {
    "input": "input : list = [-4, 4, 5, -1]\noutput : list = [8, 2, -8, -10]",
    "output": "generated_output : list = sort_des(mul_n([-4, 4, 5, -1],-2))",
    "io_inp": [
      -4,
      4,
      5,
      -1
    ],
    "io_out": [
      8,
      2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-5, -12]",
    "output": "generated_output : list = sub_n(sub_n(reverse([-2, 5]),5),5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -5,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),5),5)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(reverse([0, 2]))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, 3, 0, 0, -1, -1]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = reverse(take(drop(sort_asc([-3, 3, 0, 0, -1, -1]),3),4))",
    "io_inp": [
      -3,
      3,
      0,
      0,
      -1,
      -1
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(drop(sort_asc(input),3),4))"
  },
  {
    "input": "input : list = [-4, 4, -4, 4]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(take([-4, 4, -4, 4],1),-2),22),-4))",
    "io_inp": [
      -4,
      4,
      -4,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(take(input,1),-2),22),-4))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = add_n([-5, 4],1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 5, 4, 3]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = drop([-4, 5, 4, 3],1)",
    "io_inp": [
      -4,
      5,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -1, -5, 4, -3, -1]\noutput : list = [4, 4, -1, -1, -3, -5]",
    "output": "generated_output : list = take(reverse(sort_asc([4, -1, -5, 4, -3, -1])),10)",
    "io_inp": [
      4,
      -1,
      -5,
      4,
      -3,
      -1
    ],
    "io_out": [
      4,
      4,
      -1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),10)"
  },
  {
    "input": "input : list = [4, 3, -5, -4, -1, 2]\noutput : list = [-4, -3, 0, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n([4, 3, -5, -4, -1, 2],1))",
    "io_inp": [
      4,
      3,
      -5,
      -4,
      -1,
      2
    ],
    "io_out": [
      -4,
      -3,
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(sort_asc([3, -3]))),30))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(sort_asc(input))),30))"
  },
  {
    "input": "input : list = [1, 4, -2, 4, 4]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(take(drop([1, 4, -2, 4, 4],3),4),2)",
    "io_inp": [
      1,
      4,
      -2,
      4,
      4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,3),4),2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sub_n([-4, 2],1))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(sub_n([-3, -2],-5),7)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),7)"
  },
  {
    "input": "input : list = [0, -4, 0, 4, -5, 3]\noutput : list = [-5, -3, 3, 3, 11, 13]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sort_asc([0, -4, 0, 4, -5, 3]),-2),-3)))",
    "io_inp": [
      0,
      -4,
      0,
      4,
      -5,
      3
    ],
    "io_out": [
      -5,
      -3,
      3,
      3,
      11,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sort_asc(input),-2),-3)))"
  },
  {
    "input": "input : list = [0, 1, -1, -1, -3, -4]\noutput : list = [-4, -3, -1, -1, 1, 0]",
    "output": "generated_output : list = reverse([0, 1, -1, -1, -3, -4])",
    "io_inp": [
      0,
      1,
      -1,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -1,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(sub_n([-5, -4],2))),30))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(sub_n(input,2))),30))"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(drop([4, 3, -2],1),1)),34))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(drop(input,1),1)),34))"
  },
  {
    "input": "input : list = [1, 5, -1, -5]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take([1, 5, -1, -5],1))",
    "io_inp": [
      1,
      5,
      -1,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-5, -5, 2, 4, -1, 4]\noutput : list = [-5, -5, -1, 2, 4, 4]",
    "output": "generated_output : list = sort_asc([-5, -5, 2, 4, -1, 4])",
    "io_inp": [
      -5,
      -5,
      2,
      4,
      -1,
      4
    ],
    "io_out": [
      -5,
      -5,
      -1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 4, -2]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(drop([-3, 4, -2],1),17),-2),1))",
    "io_inp": [
      -3,
      4,
      -2
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(drop(input,1),17),-2),1))"
  },
  {
    "input": "input : list = [-1, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = mul_n(mul_n(drop([-1, -5, 0],1),-1),-1)",
    "io_inp": [
      -1,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(input,1),-1),-1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1, -6]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(mul_n([-2, 5],1),2),-4),-2))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(mul_n(input,1),2),-4),-2))"
  },
  {
    "input": "input : list = [5, -1, 5]\noutput : list = [7, 1, 7]",
    "output": "generated_output : list = add_n([5, -1, 5],2)",
    "io_inp": [
      5,
      -1,
      5
    ],
    "io_out": [
      7,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, 2, -2, -3, 4]\noutput : list = [15, -6, -3, 9, -3]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(mul_n([-2, 2, -2, -3, 4],3),-2)),-4),-3)",
    "io_inp": [
      -2,
      2,
      -2,
      -3,
      4
    ],
    "io_out": [
      15,
      -6,
      -3,
      9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(mul_n(input,3),-2)),-4),-3)"
  },
  {
    "input": "input : list = [-5, 3, -3, -4, 3, -1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take(sub_n([-5, 3, -3, -4, 3, -1],-1),1))",
    "io_inp": [
      -5,
      3,
      -3,
      -4,
      3,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,-1),1))"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [-6, 9]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(drop([-3, 2, -3],1),-3)),4))",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      -6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(drop(input,1),-3)),4))"
  },
  {
    "input": "input : list = [3, -2, 0, 0, -4, -3]\noutput : list = [4, 0, -4, -12, -12, -24]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(sub_n([3, -2, 0, 0, -4, -3],-3),24))),-4)",
    "io_inp": [
      3,
      -2,
      0,
      0,
      -4,
      -3
    ],
    "io_out": [
      4,
      0,
      -4,
      -12,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(sub_n(input,-3),24))),-4)"
  },
  {
    "input": "input : list = [-5, -2, 3, -5, -1]\noutput : list = [-6, 4, 10, 10]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(reverse([-5, -2, 3, -5, -1])),-2),4))",
    "io_inp": [
      -5,
      -2,
      3,
      -5,
      -1
    ],
    "io_out": [
      -6,
      4,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(reverse(input)),-2),4))"
  },
  {
    "input": "input : list = [1, -5, -4, 3, -3, 0]\noutput : list = [-10, -9, -8, -5, -4, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(sub_n([1, -5, -4, 3, -3, 0],-4),-4))),5)",
    "io_inp": [
      1,
      -5,
      -4,
      3,
      -3,
      0
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(sub_n(input,-4),-4))),5)"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [-8, -11, -11]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(reverse([-2, -5, -5]),-3)),36),-3)",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(reverse(input),-3)),36),-3)"
  },
  {
    "input": "input : list = [3, 2, -2, 5, -1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(drop(mul_n(reverse(reverse([3, 2, -2, 5, -1])),2),4),1)",
    "io_inp": [
      3,
      2,
      -2,
      5,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(reverse(reverse(input)),2),4),1)"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [-2, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([1, -2, 4])))",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [2, -3, 2]",
    "output": "generated_output : list = take(reverse([2, -3, 2]),5)",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [-1, 3, 6]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(mul_n([0, -4, 3],1),7)),-3),44)",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(mul_n(input,1),7)),-3),44)"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([2, 1, -2]))",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [3, -18]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([-3, 4],-3),5),1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      3,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,-3),5),1)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = add_n(sort_asc(reverse([1, 3, -1])),-4)",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(input)),-4)"
  },
  {
    "input": "input : list = [4, 0, 0, -5, 1]\noutput : list = [-60, 0, 0, 12, 48]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(reverse([4, 0, 0, -5, 1]),-4),-3),8))",
    "io_inp": [
      4,
      0,
      0,
      -5,
      1
    ],
    "io_out": [
      -60,
      0,
      0,
      12,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(reverse(input),-4),-3),8))"
  },
  {
    "input": "input : list = [3, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = drop([3, -5, 0],1)",
    "io_inp": [
      3,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 2, -5, -3, 0, -2]\noutput : list = [0, 2, 3, 5, 7, 8]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(sub_n([3, 2, -5, -3, 0, -2],-5)))))",
    "io_inp": [
      3,
      2,
      -5,
      -3,
      0,
      -2
    ],
    "io_out": [
      0,
      2,
      3,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [-3, -1, -1, -2]\noutput : list = [-4, -4, -5, -6]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(reverse([-3, -1, -1, -2])),2),39),-1)",
    "io_inp": [
      -3,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(reverse(input)),2),39),-1)"
  },
  {
    "input": "input : list = [2, 3, 4, -4]\noutput : list = [7, 6]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(take([2, 3, 4, -4],2),7)),1),4)",
    "io_inp": [
      2,
      3,
      4,
      -4
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(take(input,2),7)),1),4)"
  },
  {
    "input": "input : list = [-5, -3, 5, -1, 2, 2]\noutput : list = [25, 10, 10, -5, -15, -25]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(reverse([-5, -3, 5, -1, 2, 2])),-1)),-5)",
    "io_inp": [
      -5,
      -3,
      5,
      -1,
      2,
      2
    ],
    "io_out": [
      25,
      10,
      10,
      -5,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(reverse(input)),-1)),-5)"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [4, 10, 5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(add_n([-3, 2, -4],4)),4),-4),4)",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      4,
      10,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(add_n(input,4)),4),-4),4)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-3, -18]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(mul_n([-1, 2],-1),1),-3),5),2)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -3,
      -18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(mul_n(input,-1),1),-3),5),2)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sub_n(sort_asc([5, 0]),2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, -1, -2, -5, 5, 4]\noutput : list = [-28, -13, -8, 12, 17, 22]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n(reverse([3, -1, -2, -5, 5, 4]),5)),-3))",
    "io_inp": [
      3,
      -1,
      -2,
      -5,
      5,
      4
    ],
    "io_out": [
      -28,
      -13,
      -8,
      12,
      17,
      22
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(reverse(input),5)),-3))"
  },
  {
    "input": "input : list = [-2, 2, -5, -4, -3]\noutput : list = [3, -1, -2, -3, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(reverse([-2, 2, -5, -4, -3]))),-3),-2)",
    "io_inp": [
      -2,
      2,
      -5,
      -4,
      -3
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(reverse(input))),-3),-2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [5, -25]",
    "output": "generated_output : list = sub_n(take(take(reverse(mul_n([-4, 2],5)),20),27),5)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      5,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(mul_n(input,5)),20),27),5)"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = sort_asc([0, 0, 3])",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [7, 4, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sub_n([5, -1, 2],-4)),-2),4))",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sub_n(input,-4)),-2),4))"
  },
  {
    "input": "input : list = [4, -4, 5, 4, -4]\noutput : list = [-80, -60, -60, 100, 100]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des([4, -4, 5, 4, -4]),1),5),-4)",
    "io_inp": [
      4,
      -4,
      5,
      4,
      -4
    ],
    "io_out": [
      -80,
      -60,
      -60,
      100,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(input),1),5),-4)"
  },
  {
    "input": "input : list = [1, 5, -5, 3]\noutput : list = [5, -5, 3]",
    "output": "generated_output : list = drop([1, 5, -5, 3],1)",
    "io_inp": [
      1,
      5,
      -5,
      3
    ],
    "io_out": [
      5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3, 3, -5, 2]\noutput : list = [7, 7]",
    "output": "generated_output : list = drop(sub_n(sort_asc(mul_n(sort_asc([3, 3, 3, -5, 2]),3)),2),3)",
    "io_inp": [
      3,
      3,
      3,
      -5,
      2
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = drop(sub_n(sort_asc(mul_n(sort_asc(input),3)),2),3)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -3, 3],1)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -1, -2, 4, -4]\noutput : list = [14, 9, 8, 8, 6]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n(add_n([-2, -1, -2, 4, -4],1),-3),2)),4)",
    "io_inp": [
      -2,
      -1,
      -2,
      4,
      -4
    ],
    "io_out": [
      14,
      9,
      8,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(add_n(input,1),-3),2)),4)"
  },
  {
    "input": "input : list = [-3, 2, -3, -4, 5]\noutput : list = [10, 4, -6, -6, -8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(mul_n([-3, 2, -3, -4, 5],-2),9))),-1)",
    "io_inp": [
      -3,
      2,
      -3,
      -4,
      5
    ],
    "io_out": [
      10,
      4,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(mul_n(input,-2),9))),-1)"
  },
  {
    "input": "input : list = [3, -5, 5, 4, -4, 3]\noutput : list = [-8, -4, 24, 24, 28, 32]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(sub_n([3, -5, 5, 4, -4, 3],-3),27))),4)",
    "io_inp": [
      3,
      -5,
      5,
      4,
      -4,
      3
    ],
    "io_out": [
      -8,
      -4,
      24,
      24,
      28,
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(sub_n(input,-3),27))),4)"
  },
  {
    "input": "input : list = [-5, -4, -3, 5, -4]\noutput : list = [36, 32, 28, -4, 32]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(reverse([-5, -4, -3, 5, -4]),4),-4)),44)",
    "io_inp": [
      -5,
      -4,
      -3,
      5,
      -4
    ],
    "io_out": [
      36,
      32,
      28,
      -4,
      32
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(reverse(input),4),-4)),44)"
  },
  {
    "input": "input : list = [1, 1, -5, 0, 1]\noutput : list = [-11, -6, -5]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(drop([1, 1, -5, 0, 1],2)),32),1),5)",
    "io_inp": [
      1,
      1,
      -5,
      0,
      1
    ],
    "io_out": [
      -11,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(drop(input,2)),32),1),5)"
  },
  {
    "input": "input : list = [0, -4, -3, -2, -4]\noutput : list = [0, -4, -3]",
    "output": "generated_output : list = take([0, -4, -3, -2, -4],3)",
    "io_inp": [
      0,
      -4,
      -3,
      -2,
      -4
    ],
    "io_out": [
      0,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 2, -2, 0, 4, 5]\noutput : list = [15, 14, 12, 10, 8, 5]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(reverse([-5, 2, -2, 0, 4, 5])),5)),-5)",
    "io_inp": [
      -5,
      2,
      -2,
      0,
      4,
      5
    ],
    "io_out": [
      15,
      14,
      12,
      10,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(reverse(input)),5)),-5)"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [160, 320, -400]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-2, -4, 5],5),-4),4)",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      160,
      320,
      -400
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,5),-4),4)"
  },
  {
    "input": "input : list = [4, -1, 3, -5]\noutput : list = [-12]",
    "output": "generated_output : list = take(mul_n(take([4, -1, 3, -5],1),-3),12)",
    "io_inp": [
      4,
      -1,
      3,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,1),-3),12)"
  },
  {
    "input": "input : list = [5, 1, -2, -2, 0]\noutput : list = [1, -3, -6, -6, -4]",
    "output": "generated_output : list = add_n([5, 1, -2, -2, 0],-4)",
    "io_inp": [
      5,
      1,
      -2,
      -2,
      0
    ],
    "io_out": [
      1,
      -3,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, 2, -2, -4, 1, 4]\noutput : list = [-5, 5, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(drop([3, 2, -2, -4, 1, 4],3),2))),-3)",
    "io_inp": [
      3,
      2,
      -2,
      -4,
      1,
      4
    ],
    "io_out": [
      -5,
      5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(drop(input,3),2))),-3)"
  },
  {
    "input": "input : list = [-5, -1, -5, -2]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(sub_n(take([-5, -1, -5, -2],2),-1),2)",
    "io_inp": [
      -5,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,2),-1),2)"
  },
  {
    "input": "input : list = [4, 0, 0, -5, -3, -5]\noutput : list = [-10, -10, -8, -5, -5, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sort_des([4, 0, 0, -5, -3, -5])))),5)",
    "io_inp": [
      4,
      0,
      0,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-4, -3, 2, -3, -3, 4]\noutput : list = [4, 3, 3, -2]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(take([-4, -3, 2, -3, -3, 4],4)),-1)))",
    "io_inp": [
      -4,
      -3,
      2,
      -3,
      -3,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(take(input,4)),-1)))"
  },
  {
    "input": "input : list = [-1, -2, -3, 3, 5, 5]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(sort_des(add_n(take([-1, -2, -3, 3, 5, 5],1),-3)),5)",
    "io_inp": [
      -1,
      -2,
      -3,
      3,
      5,
      5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(take(input,1),-3)),5)"
  },
  {
    "input": "input : list = [-1, -3, 2, 5]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = drop([-1, -3, 2, 5],1)",
    "io_inp": [
      -1,
      -3,
      2,
      5
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(mul_n(take([1, 0, -1],1),-2))",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),-2))"
  },
  {
    "input": "input : list = [4, -1, 4, -1]\noutput : list = [-4, -9]",
    "output": "generated_output : list = sub_n(add_n(add_n(take([4, -1, 4, -1],2),1),-5),4)",
    "io_inp": [
      4,
      -1,
      4,
      -1
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(input,2),1),-5),4)"
  },
  {
    "input": "input : list = [1, -4, 2, -4]\noutput : list = [13, 13, 8, 7]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n([1, -4, 2, -4],-2),2),-1)),5)",
    "io_inp": [
      1,
      -4,
      2,
      -4
    ],
    "io_out": [
      13,
      13,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n(input,-2),2),-1)),5)"
  },
  {
    "input": "input : list = [-5, -3, 5, 5, 3]\noutput : list = [-12, -10, -4, -2, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([-5, -3, 5, 5, 3]),-4),3)",
    "io_inp": [
      -5,
      -3,
      5,
      5,
      3
    ],
    "io_out": [
      -12,
      -10,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),-4),3)"
  },
  {
    "input": "input : list = [-4, -5, 1, -1]\noutput : list = [0, -2, -5, -6]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sort_asc([-4, -5, 1, -1]))),1),-1)",
    "io_inp": [
      -4,
      -5,
      1,
      -1
    ],
    "io_out": [
      0,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sort_asc(input))),1),-1)"
  },
  {
    "input": "input : list = [-3, 1, 1, -3, -4]\noutput : list = [-4, -3, -3, 1, 1]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(reverse([-3, 1, 1, -3, -4])))))",
    "io_inp": [
      -3,
      1,
      1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, -4, -4, 0]\noutput : list = [0, 18, 36, 36]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(mul_n([-2, -4, -4, 0],-3),3))),17)",
    "io_inp": [
      -2,
      -4,
      -4,
      0
    ],
    "io_out": [
      0,
      18,
      36,
      36
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(mul_n(input,-3),3))),17)"
  },
  {
    "input": "input : list = [-1, -1, 3, 4, -3]\noutput : list = [-4, -2, -2, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n([-1, -1, 3, 4, -3],-1)))",
    "io_inp": [
      -1,
      -1,
      3,
      4,
      -3
    ],
    "io_out": [
      -4,
      -2,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-1)))"
  },
  {
    "input": "input : list = [-4, -4, -3, -5, 1]\noutput : list = [-2, -1, -1, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sort_asc([-4, -4, -3, -5, 1])),3)))",
    "io_inp": [
      -4,
      -4,
      -3,
      -5,
      1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [1, -3, -3, -1]\noutput : list = [-8, -8, -6, -4]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(add_n([1, -3, -3, -1],2),-3),-4)))",
    "io_inp": [
      1,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(add_n(input,2),-3),-4)))"
  },
  {
    "input": "input : list = [1, 2, -5, 4, 5]\noutput : list = [5, -7, -9, -13, -15]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n([1, 2, -5, 4, 5],-2))),5))",
    "io_inp": [
      1,
      2,
      -5,
      4,
      5
    ],
    "io_out": [
      5,
      -7,
      -9,
      -13,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n(input,-2))),5))"
  },
  {
    "input": "input : list = [-2, -1, -3]\noutput : list = [-3, -11]",
    "output": "generated_output : list = add_n(mul_n(drop([-2, -1, -3],1),4),1)",
    "io_inp": [
      -2,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,1),4),1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-22, 2]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_des([4, -4]),1),2),-3),4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -22,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_des(input),1),2),-3),4)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, -1]",
    "output": "generated_output : list = add_n(take(sort_des(take(mul_n([0, 1],1),4)),15),-1)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(mul_n(input,1),4)),15),-1)"
  },
  {
    "input": "input : list = [-2, 4, 3, 0, -2, -3]\noutput : list = [4, 5, 5, 7, 10, 11]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(sort_des([-2, 4, 3, 0, -2, -3]))),4),-3)",
    "io_inp": [
      -2,
      4,
      3,
      0,
      -2,
      -3
    ],
    "io_out": [
      4,
      5,
      5,
      7,
      10,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(sort_des(input))),4),-3)"
  },
  {
    "input": "input : list = [4, -1, 0, 2]\noutput : list = [-1, 0, 2]",
    "output": "generated_output : list = drop([4, -1, 0, 2],1)",
    "io_inp": [
      4,
      -1,
      0,
      2
    ],
    "io_out": [
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 5, -3, -3]\noutput : list = [-2, -2, -1, 6]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(sub_n([-2, 5, -3, -3],-1)),13)))",
    "io_inp": [
      -2,
      5,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(sub_n(input,-1)),13)))"
  },
  {
    "input": "input : list = [-4, 1, -4, -5]\noutput : list = [-4, -3, -3, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(sub_n([-4, 1, -4, -5],-1)))),37)",
    "io_inp": [
      -4,
      1,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(sub_n(input,-1)))),37)"
  },
  {
    "input": "input : list = [3, -1, -3, 0]\noutput : list = [1, -2, 0, 4]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(reverse([3, -1, -3, 0]),-1),25),-1),1)",
    "io_inp": [
      3,
      -1,
      -3,
      0
    ],
    "io_out": [
      1,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(reverse(input),-1),25),-1),1)"
  },
  {
    "input": "input : list = [-5, -3, 3, -4]\noutput : list = [5, 4, 3, -3]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sort_des([-5, -3, 3, -4])))),-1)",
    "io_inp": [
      -5,
      -3,
      3,
      -4
    ],
    "io_out": [
      5,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [-3, 3, -4, -4, -2, 0]\noutput : list = [-4, -4, -3, -2, 0, 3]",
    "output": "generated_output : list = take(take(take(sort_asc(reverse([-3, 3, -4, -4, -2, 0])),22),36),42)",
    "io_inp": [
      -3,
      3,
      -4,
      -4,
      -2,
      0
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(sort_asc(reverse(input)),22),36),42)"
  },
  {
    "input": "input : list = [1, 2, 0, 0, -1, -1]\noutput : list = [2, 1, 0, 0, -1, -1]",
    "output": "generated_output : list = take(sort_des([1, 2, 0, 0, -1, -1]),13)",
    "io_inp": [
      1,
      2,
      0,
      0,
      -1,
      -1
    ],
    "io_out": [
      2,
      1,
      0,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),13)"
  },
  {
    "input": "input : list = [2, -5, -5, 4, -4, 0]\noutput : list = [-9, -9, -8, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(take(add_n([2, -5, -5, 4, -4, 0],-4),16),5)))",
    "io_inp": [
      2,
      -5,
      -5,
      4,
      -4,
      0
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(add_n(input,-4),16),5)))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(add_n([3, 1],3))),3))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(add_n(input,3))),3))"
  },
  {
    "input": "input : list = [1, -3, 4, -5, 4]\noutput : list = [1, 10, 1, 8, 4]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(mul_n([1, -3, 4, -5, 4],-1),-4),-3)),-4)",
    "io_inp": [
      1,
      -3,
      4,
      -5,
      4
    ],
    "io_out": [
      1,
      10,
      1,
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(mul_n(input,-1),-4),-3)),-4)"
  },
  {
    "input": "input : list = [-4, -5, 2, -5]\noutput : list = [-25, -25, -20, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-4, -5, 2, -5],5)))",
    "io_inp": [
      -4,
      -5,
      2,
      -5
    ],
    "io_out": [
      -25,
      -25,
      -20,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,5)))"
  },
  {
    "input": "input : list = [2, 5, -3, 2, 5]\noutput : list = [-13, 7, 19]",
    "output": "generated_output : list = sub_n(add_n(mul_n(drop([2, 5, -3, 2, 5],2),4),-5),-4)",
    "io_inp": [
      2,
      5,
      -3,
      2,
      5
    ],
    "io_out": [
      -13,
      7,
      19
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(drop(input,2),4),-5),-4)"
  },
  {
    "input": "input : list = [-1, 2, -4, 3]\noutput : list = [1, -2, 4, -3]",
    "output": "generated_output : list = mul_n([-1, 2, -4, 3],-1)",
    "io_inp": [
      -1,
      2,
      -4,
      3
    ],
    "io_out": [
      1,
      -2,
      4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 0, 3]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(sort_des([-2, 0, 3]))),1))",
    "io_inp": [
      -2,
      0,
      3
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [36, 36]",
    "output": "generated_output : list = take(mul_n(mul_n([4, 4],3),3),3)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      36,
      36
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,3),3),3)"
  },
  {
    "input": "input : list = [-5, 5, -4, -4]\noutput : list = [-1, 0, 0, 9]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(add_n([-5, 5, -4, -4],4),5)),27))",
    "io_inp": [
      -5,
      5,
      -4,
      -4
    ],
    "io_out": [
      -1,
      0,
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(add_n(input,4),5)),27))"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [5, 5, 4]",
    "output": "generated_output : list = reverse(take(take(sort_asc(sub_n([2, 1, 2],-3)),20),4))",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      5,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(sub_n(input,-3)),20),4))"
  },
  {
    "input": "input : list = [-3, 5, 0, 2, 2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(drop([-3, 5, 0, 2, 2],3),-3),-3),4),-3)",
    "io_inp": [
      -3,
      5,
      0,
      2,
      2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(drop(input,3),-3),-3),4),-3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-2, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(add_n([1, 3],-3)))))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [-2, 3, -5]\noutput : list = [-25, -10, 15]",
    "output": "generated_output : list = mul_n(sort_asc([-2, 3, -5]),5)",
    "io_inp": [
      -2,
      3,
      -5
    ],
    "io_out": [
      -25,
      -10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [1, -3, 3, -3]\noutput : list = [-2, -2, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_asc([1, -3, 3, -3])),1)))",
    "io_inp": [
      1,
      -3,
      3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [17, -23, 2]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(mul_n([-4, 4, -1],-5),17)),3))",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      17,
      -23,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(mul_n(input,-5),17)),3))"
  },
  {
    "input": "input : list = [-5, 3, 2, 4, 3]\noutput : list = [-3, -2, -4, -3, -11]",
    "output": "generated_output : list = add_n(sub_n(reverse([-5, 3, 2, 4, 3]),3),-3)",
    "io_inp": [
      -5,
      3,
      2,
      4,
      3
    ],
    "io_out": [
      -3,
      -2,
      -4,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),3),-3)"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take([2, 0, 4],1))",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [1, 0, 0, -2, 5]\noutput : list = [5, 1, 0, 0, -2]",
    "output": "generated_output : list = take(sort_des([1, 0, 0, -2, 5]),15)",
    "io_inp": [
      1,
      0,
      0,
      -2,
      5
    ],
    "io_out": [
      5,
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),15)"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [-4, -2, 3]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(reverse([4, -1, -3])),1)),13)",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(reverse(input)),1)),13)"
  },
  {
    "input": "input : list = [-2, 5, 1]\noutput : list = [3, -4, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(reverse([-2, 5, 1]),2)),3),-1)",
    "io_inp": [
      -2,
      5,
      1
    ],
    "io_out": [
      3,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(reverse(input),2)),3),-1)"
  },
  {
    "input": "input : list = [-4, -1, 4, -1, 0, -3]\noutput : list = [16, 7, -8, 7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(take([-4, -1, 4, -1, 0, -3],4),3),-1),-3),-1)",
    "io_inp": [
      -4,
      -1,
      4,
      -1,
      0,
      -3
    ],
    "io_out": [
      16,
      7,
      -8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(take(input,4),3),-1),-3),-1)"
  },
  {
    "input": "input : list = [4, -1, -3, 3, 5]\noutput : list = [-16, -12]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(drop([4, -1, -3, 3, 5],3),3)),27),-2)",
    "io_inp": [
      4,
      -1,
      -3,
      3,
      5
    ],
    "io_out": [
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(drop(input,3),3)),27),-2)"
  },
  {
    "input": "input : list = [0, -1, -5, -4]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(take([0, -1, -5, -4],2)),4),-1))",
    "io_inp": [
      0,
      -1,
      -5,
      -4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(take(input,2)),4),-1))"
  },
  {
    "input": "input : list = [-4, -5, 0, -1, -2]\noutput : list = [6, 7, 8, 3, 4]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(sub_n([-4, -5, 0, -1, -2],-2),2)),-5),-1)",
    "io_inp": [
      -4,
      -5,
      0,
      -1,
      -2
    ],
    "io_out": [
      6,
      7,
      8,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(sub_n(input,-2),2)),-5),-1)"
  },
  {
    "input": "input : list = [3, -5, -4, 5, 3, 1]\noutput : list = [-5, -4, 1, 3, 3, 5]",
    "output": "generated_output : list = take(sort_asc([3, -5, -4, 5, 3, 1]),24)",
    "io_inp": [
      3,
      -5,
      -4,
      5,
      3,
      1
    ],
    "io_out": [
      -5,
      -4,
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),24)"
  },
  {
    "input": "input : list = [5, -1, -5, 0, 4, 2]\noutput : list = [-5, -1, 0, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -1, -5, 0, 4, 2])",
    "io_inp": [
      5,
      -1,
      -5,
      0,
      4,
      2
    ],
    "io_out": [
      -5,
      -1,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 1, 2, -3, -1, 0]\noutput : list = [4, 2, 1, 1, 0, -1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc([0, 1, 2, -3, -1, 0]),-1),-2),2),-1)",
    "io_inp": [
      0,
      1,
      2,
      -3,
      -1,
      0
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc(input),-1),-2),2),-1)"
  },
  {
    "input": "input : list = [-3, 1, 2, 2]\noutput : list = [-3, 1, 2, 2]",
    "output": "generated_output : list = sort_asc([-3, 1, 2, 2])",
    "io_inp": [
      -3,
      1,
      2,
      2
    ],
    "io_out": [
      -3,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 3, -3, 0, 3]\noutput : list = [3, 3, 0, 0, -3]",
    "output": "generated_output : list = take(sort_des([0, 3, -3, 0, 3]),12)",
    "io_inp": [
      0,
      3,
      -3,
      0,
      3
    ],
    "io_out": [
      3,
      3,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),12)"
  },
  {
    "input": "input : list = [4, 0, 0, 0, 3]\noutput : list = [4, 3, 0, 0]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(reverse([4, 0, 0, 0, 3]))),4))",
    "io_inp": [
      4,
      0,
      0,
      0,
      3
    ],
    "io_out": [
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(reverse(input))),4))"
  },
  {
    "input": "input : list = [0, 2, 5, -5, -3]\noutput : list = [0, -8]",
    "output": "generated_output : list = take(reverse(mul_n(take(reverse([0, 2, 5, -5, -3]),17),-4)),2)",
    "io_inp": [
      0,
      2,
      5,
      -5,
      -3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(reverse(input),17),-4)),2)"
  },
  {
    "input": "input : list = [1, 3, -5, 3, 3, -2]\noutput : list = [-6, -6, -16, -46]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(take([1, 3, -5, 3, 3, -2],4),5),5),-4))",
    "io_inp": [
      1,
      3,
      -5,
      3,
      3,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -16,
      -46
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(take(input,4),5),5),-4))"
  },
  {
    "input": "input : list = [-2, 2, 0, 4]\noutput : list = [2, -2, -6, -10]",
    "output": "generated_output : list = sort_des(add_n(take(add_n(mul_n([-2, 2, 0, 4],2),-3),6),-3))",
    "io_inp": [
      -2,
      2,
      0,
      4
    ],
    "io_out": [
      2,
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(add_n(mul_n(input,2),-3),6),-3))"
  },
  {
    "input": "input : list = [3, 1, -5, -5, -1]\noutput : list = [10, 2, -2, -6]",
    "output": "generated_output : list = drop(mul_n(sort_asc([3, 1, -5, -5, -1]),-2),1)",
    "io_inp": [
      3,
      1,
      -5,
      -5,
      -1
    ],
    "io_out": [
      10,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_asc(input),-2),1)"
  },
  {
    "input": "input : list = [1, -3, 4, 1, -4]\noutput : list = [15, 3, -17]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(drop([1, -3, 4, 1, -4],2))),4),1)",
    "io_inp": [
      1,
      -3,
      4,
      1,
      -4
    ],
    "io_out": [
      15,
      3,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(drop(input,2))),4),1)"
  },
  {
    "input": "input : list = [0, 5, -4, -4]\noutput : list = [5, -4, -4]",
    "output": "generated_output : list = drop([0, 5, -4, -4],1)",
    "io_inp": [
      0,
      5,
      -4,
      -4
    ],
    "io_out": [
      5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -2, -5, 4, 2]\noutput : list = [0, -2, -5, -6, -9]",
    "output": "generated_output : list = reverse(add_n(sort_asc([-1, -2, -5, 4, 2]),-4))",
    "io_inp": [
      -1,
      -2,
      -5,
      4,
      2
    ],
    "io_out": [
      0,
      -2,
      -5,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [5, -5, 5, -4, -5]\noutput : list = [-10, -10, -9, 0, 0]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(reverse([5, -5, 5, -4, -5]))),41),-5)",
    "io_inp": [
      5,
      -5,
      5,
      -4,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -9,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(reverse(input))),41),-5)"
  },
  {
    "input": "input : list = [5, 0, -4, 1, 3, 4]\noutput : list = [5, 4, 3, 1, 0, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([5, 0, -4, 1, 3, 4])))",
    "io_inp": [
      5,
      0,
      -4,
      1,
      3,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [1, 3, 4, 2, -5]\noutput : list = [1, 0, -1, -2, -8]",
    "output": "generated_output : list = sort_des(sort_des(add_n([1, 3, 4, 2, -5],-3)))",
    "io_inp": [
      1,
      3,
      4,
      2,
      -5
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-3)))"
  },
  {
    "input": "input : list = [-4, -2, 4, 1]\noutput : list = [8, 5, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-4, -2, 4, 1],4)))",
    "io_inp": [
      -4,
      -2,
      4,
      1
    ],
    "io_out": [
      8,
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,4)))"
  },
  {
    "input": "input : list = [3, -5, -3, -3, -2, 1]\noutput : list = [60, 36, 36, 24, -12, -36]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_des([3, -5, -3, -3, -2, 1])),3),-4))",
    "io_inp": [
      3,
      -5,
      -3,
      -3,
      -2,
      1
    ],
    "io_out": [
      60,
      36,
      36,
      24,
      -12,
      -36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_des(input)),3),-4))"
  },
  {
    "input": "input : list = [1, -1, 3, -4, -3, 3]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(drop([1, -1, 3, -4, -3, 3],3))),43))",
    "io_inp": [
      1,
      -1,
      3,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(drop(input,3))),43))"
  },
  {
    "input": "input : list = [-5, 0, 0, 2, 1, 2]\noutput : list = [-5, 0, 0, 1, 2, 2]",
    "output": "generated_output : list = take(sort_asc(reverse(take(sort_des([-5, 0, 0, 2, 1, 2]),8))),33)",
    "io_inp": [
      -5,
      0,
      0,
      2,
      1,
      2
    ],
    "io_out": [
      -5,
      0,
      0,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(sort_des(input),8))),33)"
  },
  {
    "input": "input : list = [3, 5, 3, 2, -4, 2]\noutput : list = [4, -2, 4, 5, 7, 5]",
    "output": "generated_output : list = sub_n(reverse([3, 5, 3, 2, -4, 2]),-2)",
    "io_inp": [
      3,
      5,
      3,
      2,
      -4,
      2
    ],
    "io_out": [
      4,
      -2,
      4,
      5,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-5, 5, -2, -2, 2]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(take([-5, 5, -2, -2, 2],2))",
    "io_inp": [
      -5,
      5,
      -2,
      -2,
      2
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [-15, 15, 20]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(sort_asc([4, 3, -3]),-5),-1)))",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      -15,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(sort_asc(input),-5),-1)))"
  },
  {
    "input": "input : list = [1, 5, -4, 2]\noutput : list = [-1, 3, -6, 0]",
    "output": "generated_output : list = add_n(add_n(take(add_n(sub_n([1, 5, -4, 2],4),2),19),-5),5)",
    "io_inp": [
      1,
      5,
      -4,
      2
    ],
    "io_out": [
      -1,
      3,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(sub_n(input,4),2),19),-5),5)"
  },
  {
    "input": "input : list = [0, -1, -1]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_des(take([0, -1, -1],1)),-3)),5)",
    "io_inp": [
      0,
      -1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_des(take(input,1)),-3)),5)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [2, -7]",
    "output": "generated_output : list = add_n(sort_des(take(take(mul_n([4, 1],-3),3),10)),5)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(mul_n(input,-3),3),10)),5)"
  },
  {
    "input": "input : list = [2, 4, 4]\noutput : list = [-1, 1, 1]",
    "output": "generated_output : list = sub_n([2, 4, 4],3)",
    "io_inp": [
      2,
      4,
      4
    ],
    "io_out": [
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, 1, -2, -2, 0]\noutput : list = [-6, -8, -8, -5, -9]",
    "output": "generated_output : list = sub_n(reverse(sub_n([-3, 1, -2, -2, 0],1)),5)",
    "io_inp": [
      -3,
      1,
      -2,
      -2,
      0
    ],
    "io_out": [
      -6,
      -8,
      -8,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,1)),5)"
  },
  {
    "input": "input : list = [-1, 1, 4]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(take([-1, 1, 4],1),2)",
    "io_inp": [
      -1,
      1,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),2)"
  },
  {
    "input": "input : list = [5, -1, 3, -1]\noutput : list = [9, 7, 3, 3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des([5, -1, 3, -1]))),-4)",
    "io_inp": [
      5,
      -1,
      3,
      -1
    ],
    "io_out": [
      9,
      7,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(input))),-4)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [-4, -6, -10]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(sub_n([0, -4, 2],4),1))),3)",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(sub_n(input,4),1))),3)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des([2, 0]))),4)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(input))),4)"
  },
  {
    "input": "input : list = [4, 3, 1, 3, 1]\noutput : list = [4]",
    "output": "generated_output : list = add_n(drop(mul_n(sort_des([4, 3, 1, 3, 1]),3),4),1)",
    "io_inp": [
      4,
      3,
      1,
      3,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sort_des(input),3),4),1)"
  },
  {
    "input": "input : list = [-5, -1, 4, 5, -3]\noutput : list = [-2, 6, 5, 0, -4]",
    "output": "generated_output : list = sub_n(sub_n(reverse([-5, -1, 4, 5, -3]),-5),4)",
    "io_inp": [
      -5,
      -1,
      4,
      5,
      -3
    ],
    "io_out": [
      -2,
      6,
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-5),4)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [6, 2]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n(sub_n([3, -1],1),-1),2),-2),-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(sub_n(input,1),-1),2),-2),-3)"
  },
  {
    "input": "input : list = [-4, -2, 2, 4, 0, -2]\noutput : list = [-7, -5, -1, 1, -3, -5]",
    "output": "generated_output : list = add_n([-4, -2, 2, 4, 0, -2],-3)",
    "io_inp": [
      -4,
      -2,
      2,
      4,
      0,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -2, -3, -3]\noutput : list = [-50, -50, -75, -75]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(mul_n([-2, -2, -3, -3],5))),5))",
    "io_inp": [
      -2,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -50,
      -50,
      -75,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(mul_n(input,5))),5))"
  },
  {
    "input": "input : list = [3, 4, -5, 5]\noutput : list = [-4, 4, 5, 6]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_des([3, 4, -5, 5])),4),-5),23)",
    "io_inp": [
      3,
      4,
      -5,
      5
    ],
    "io_out": [
      -4,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_des(input)),4),-5),23)"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [6, -3, -1]",
    "output": "generated_output : list = take(add_n([4, -5, -3],2),6)",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),6)"
  },
  {
    "input": "input : list = [-3, -3, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(take([-3, -3, -3],1),12)",
    "io_inp": [
      -3,
      -3,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(input,1),12)"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [-24, 30, 6]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(sub_n([-4, 5, 1],-5),5),13),-3),-2)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      -24,
      30,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(sub_n(input,-5),5),13),-3),-2)"
  },
  {
    "input": "input : list = [2, 5, 3]\noutput : list = [8, 6, 5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sub_n([2, 5, 3],-5))),2))",
    "io_inp": [
      2,
      5,
      3
    ],
    "io_out": [
      8,
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sub_n(input,-5))),2))"
  },
  {
    "input": "input : list = [-2, 3, 4]\noutput : list = [-12, -9, 6]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(mul_n([-2, 3, 4],-3)))),7)",
    "io_inp": [
      -2,
      3,
      4
    ],
    "io_out": [
      -12,
      -9,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(mul_n(input,-3)))),7)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 4]))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n([-4, -1],-1)))),-2)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n(input,-1)))),-2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sub_n(add_n(add_n(reverse(sort_des([2, -4])),3),2),4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(reverse(sort_des(input)),3),2),4)"
  },
  {
    "input": "input : list = [-5, 4, 4, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 4, 4, 2],1)",
    "io_inp": [
      -5,
      4,
      4,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [0, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-2, 4])),4)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [4, 0, -1, -5, -4, -1]\noutput : list = [-4, -16, -20, -4, 0, 16]",
    "output": "generated_output : list = mul_n(reverse([4, 0, -1, -5, -4, -1]),4)",
    "io_inp": [
      4,
      0,
      -1,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -16,
      -20,
      -4,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-4, 2, -5, -3, -4]\noutput : list = [0, -5, -6, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des([-4, 2, -5, -3, -4]),2)",
    "io_inp": [
      -4,
      2,
      -5,
      -3,
      -4
    ],
    "io_out": [
      0,
      -5,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [1, -5, 0, -5]\noutput : list = [160, 160, 0, -32]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(mul_n([1, -5, 0, -5],4),-2)),4))",
    "io_inp": [
      1,
      -5,
      0,
      -5
    ],
    "io_out": [
      160,
      160,
      0,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(mul_n(input,4),-2)),4))"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [-4, -2, -1]",
    "output": "generated_output : list = take(sort_asc([-1, -4, -2]),14)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [-4, 2, -1, -3]\noutput : list = [4, 2]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(drop([-4, 2, -1, -3],2),-5),3),-3),39)",
    "io_inp": [
      -4,
      2,
      -1,
      -3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(drop(input,2),-5),3),-3),39)"
  },
  {
    "input": "input : list = [-4, -2, -5, 0, 1, 2]\noutput : list = [-5, -4, -2, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sort_des([-4, -2, -5, 0, 1, 2])))))",
    "io_inp": [
      -4,
      -2,
      -5,
      0,
      1,
      2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [-2, 5, 4]",
    "output": "generated_output : list = add_n([-3, 4, 3],1)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      -2,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 5, -2, -4, 5, 0]\noutput : list = [-4, -4, -2, 0, 5, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, -2, -4, 5, 0])",
    "io_inp": [
      -4,
      5,
      -2,
      -4,
      5,
      0
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, 4, 5, 5, -4]\noutput : list = [-7, -7, -7, 9, 11, 11]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(mul_n([-4, -4, 4, 5, 5, -4],2),1))),14)",
    "io_inp": [
      -4,
      -4,
      4,
      5,
      5,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -7,
      9,
      11,
      11
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(mul_n(input,2),1))),14)"
  },
  {
    "input": "input : list = [-5, 2, 3, -2]\noutput : list = [11, 6, -14, -29]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(sort_des([-5, 2, 3, -2])),5)),4)",
    "io_inp": [
      -5,
      2,
      3,
      -2
    ],
    "io_out": [
      11,
      6,
      -14,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(sort_des(input)),5)),4)"
  },
  {
    "input": "input : list = [1, -3, 2, 5, 2, -4]\noutput : list = [-8, -6, 2, 4, 4, 10]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sub_n([1, -3, 2, 5, 2, -4],-3),3))),2)",
    "io_inp": [
      1,
      -3,
      2,
      5,
      2,
      -4
    ],
    "io_out": [
      -8,
      -6,
      2,
      4,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sub_n(input,-3),3))),2)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [4, 24]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(sort_des([0, 5])),1),4))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      4,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(sort_des(input)),1),4))"
  },
  {
    "input": "input : list = [-2, 5, -1]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(take(sort_des(take([-2, 5, -1],1)),2),19))",
    "io_inp": [
      -2,
      5,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(take(input,1)),2),19))"
  },
  {
    "input": "input : list = [4, 3, 0, 0, -5]\noutput : list = [2, 1, -2, -2, -7]",
    "output": "generated_output : list = take(take(add_n([4, 3, 0, 0, -5],-2),20),24)",
    "io_inp": [
      4,
      3,
      0,
      0,
      -5
    ],
    "io_out": [
      2,
      1,
      -2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-2),20),24)"
  },
  {
    "input": "input : list = [1, 4, 4]\noutput : list = [4, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, 4])",
    "io_inp": [
      1,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sort_des(sub_n(add_n(drop([4, 0, 0],1),-4),5))",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(drop(input,1),-4),5))"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse([-1, 3, -2]),2)))",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(input),2)))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, 1, 3, -5]\noutput : list = [-1, -3, -9]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(drop([-3, -4, 1, 3, -5],2),-4))))",
    "io_inp": [
      -3,
      -4,
      1,
      3,
      -5
    ],
    "io_out": [
      -1,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(drop(input,2),-4))))"
  },
  {
    "input": "input : list = [-2, 5, 1, 1, -4, 5]\noutput : list = [-25, -25, -5, -5, 10, 20]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(sort_asc([-2, 5, 1, 1, -4, 5]),-5),12)))",
    "io_inp": [
      -2,
      5,
      1,
      1,
      -4,
      5
    ],
    "io_out": [
      -25,
      -25,
      -5,
      -5,
      10,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(sort_asc(input),-5),12)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(reverse(drop(add_n(add_n([5, -4],-4),4),1)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(add_n(add_n(input,-4),4),1)))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [23, 2]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(add_n([4, -3],-5),3),-1),-1))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      23,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(add_n(input,-5),3),-1),-1))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sub_n(mul_n([-3, 1],2),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-5)"
  },
  {
    "input": "input : list = [-5, 0, 3, -2, 1]\noutput : list = [-16, -8, -4, 4, 16]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n([-5, 0, 3, -2, 1],-4),-2),-2)))",
    "io_inp": [
      -5,
      0,
      3,
      -2,
      1
    ],
    "io_out": [
      -16,
      -8,
      -4,
      4,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n(input,-4),-2),-2)))"
  },
  {
    "input": "input : list = [-3, -4, -3, 0, 2, -3]\noutput : list = [-2, 0, 3, 3, 3, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(mul_n([-3, -4, -3, 0, 2, -3],-1))),1),-1)",
    "io_inp": [
      -3,
      -4,
      -3,
      0,
      2,
      -3
    ],
    "io_out": [
      -2,
      0,
      3,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(mul_n(input,-1))),1),-1)"
  },
  {
    "input": "input : list = [4, 3, 3, 5]\noutput : list = [-15, -15, -20, -25]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(mul_n([4, 3, 3, 5],-5)))))",
    "io_inp": [
      4,
      3,
      3,
      5
    ],
    "io_out": [
      -15,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [5, -2, 2, -2, -2]\noutput : list = [-3, -3, -3, 1, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([5, -2, 2, -2, -2]),-1))",
    "io_inp": [
      5,
      -2,
      2,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),-1))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-60, -15]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(sub_n([0, 3],-1)),-5),27),3)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -60,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(sub_n(input,-1)),-5),27),3)"
  },
  {
    "input": "input : list = [0, -3, -1, -2, -5]\noutput : list = [-1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(drop([0, -3, -1, -2, -5],1))",
    "io_inp": [
      0,
      -3,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [8, 16]",
    "output": "generated_output : list = take(sort_asc(take(reverse(mul_n([4, 2],4)),11)),32)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      8,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(mul_n(input,4)),11)),32)"
  },
  {
    "input": "input : list = [3, -1, 1, -2]\noutput : list = [3, 4, 6, 8]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(sub_n([3, -1, 1, -2],-2),4),-1)),32)",
    "io_inp": [
      3,
      -1,
      1,
      -2
    ],
    "io_out": [
      3,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(sub_n(input,-2),4),-1)),32)"
  },
  {
    "input": "input : list = [1, 0, 5, 3]\noutput : list = [3, 4, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n([1, 0, 5, 3],-3)))))",
    "io_inp": [
      1,
      0,
      5,
      3
    ],
    "io_out": [
      3,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(drop([-4, 5, 3],1)),2),-2))",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(drop(input,1)),2),-2))"
  },
  {
    "input": "input : list = [5, 1, -1, -3, 2, -5]\noutput : list = [-5, 2, -3]",
    "output": "generated_output : list = reverse(drop([5, 1, -1, -3, 2, -5],3))",
    "io_inp": [
      5,
      1,
      -1,
      -3,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [-2, -5, -4, -2, -5, -2]\noutput : list = [-6, -9]",
    "output": "generated_output : list = take(add_n(sub_n(take([-2, -5, -4, -2, -5, -2],2),1),-3),26)",
    "io_inp": [
      -2,
      -5,
      -4,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(take(input,2),1),-3),26)"
  },
  {
    "input": "input : list = [4, 1, 1, 5, 1]\noutput : list = [12, 12, 12, 48, 60]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_asc([4, 1, 1, 5, 1]),3),4)))",
    "io_inp": [
      4,
      1,
      1,
      5,
      1
    ],
    "io_out": [
      12,
      12,
      12,
      48,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_asc(input),3),4)))"
  },
  {
    "input": "input : list = [0, 1, 3, -4]\noutput : list = [-3, -2, 0, -7]",
    "output": "generated_output : list = take(add_n(reverse(reverse([0, 1, 3, -4])),-3),27)",
    "io_inp": [
      0,
      1,
      3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      0,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(input)),-3),27)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [16, 24]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n([-2, -1],-1),-2)),17),4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      16,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n(input,-1),-2)),17),4)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [4, 12, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse([-1, -3, -1])),-4)",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      4,
      12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(input)),-4)"
  },
  {
    "input": "input : list = [5, 0, -5, 2, 3, 5]\noutput : list = [-5, 0, 5, -2, -3, -5]",
    "output": "generated_output : list = mul_n([5, 0, -5, 2, 3, 5],-1)",
    "io_inp": [
      5,
      0,
      -5,
      2,
      3,
      5
    ],
    "io_out": [
      -5,
      0,
      5,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, -5, 3, 4, -5]\noutput : list = [15, -9]",
    "output": "generated_output : list = mul_n(add_n(add_n(drop(take([0, -5, 3, 4, -5],3),1),2),-2),-3)",
    "io_inp": [
      0,
      -5,
      3,
      4,
      -5
    ],
    "io_out": [
      15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(drop(take(input,3),1),2),-2),-3)"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -5, 2])",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2, -5, 2]\noutput : list = [0, 1, -2, 5]",
    "output": "generated_output : list = sub_n([-3, -2, -5, 2],-3)",
    "io_inp": [
      -3,
      -2,
      -5,
      2
    ],
    "io_out": [
      0,
      1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 3, 1, -4, -1]\noutput : list = [6, 6, 4, 1]",
    "output": "generated_output : list = add_n(drop(take(reverse(sort_asc([1, 3, 1, -4, -1])),5),1),5)",
    "io_inp": [
      1,
      3,
      1,
      -4,
      -1
    ],
    "io_out": [
      6,
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(take(reverse(sort_asc(input)),5),1),5)"
  },
  {
    "input": "input : list = [3, -5, 5, -3, -3, -5]\noutput : list = [-5, -3, 3, 5]",
    "output": "generated_output : list = sort_asc(take([3, -5, 5, -3, -3, -5],4))",
    "io_inp": [
      3,
      -5,
      5,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,4))"
  },
  {
    "input": "input : list = [-4, -1, -5, 1, 5, 2]\noutput : list = [-3, 1, 3, 4, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(drop([-4, -1, -5, 1, 5, 2],1),11))),2)",
    "io_inp": [
      -4,
      -1,
      -5,
      1,
      5,
      2
    ],
    "io_out": [
      -3,
      1,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(drop(input,1),11))),2)"
  },
  {
    "input": "input : list = [0, -4, -2, -5, -2, 1]\noutput : list = [-7, -6, -4, -4, -2, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(sub_n([0, -4, -2, -5, -2, 1],-3)))),5)",
    "io_inp": [
      0,
      -4,
      -2,
      -5,
      -2,
      1
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(sub_n(input,-3)))),5)"
  },
  {
    "input": "input : list = [1, 0, -4, 4]\noutput : list = [3, 2, -2, 6]",
    "output": "generated_output : list = sub_n([1, 0, -4, 4],-2)",
    "io_inp": [
      1,
      0,
      -4,
      4
    ],
    "io_out": [
      3,
      2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 1, -5, -4, 2]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(drop([-2, 1, -5, -4, 2],3),-5),-4)))",
    "io_inp": [
      -2,
      1,
      -5,
      -4,
      2
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(drop(input,3),-5),-4)))"
  },
  {
    "input": "input : list = [-2, 0, 3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(take([-2, 0, 3],1),4))),3)",
    "io_inp": [
      -2,
      0,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(take(input,1),4))),3)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(add_n(reverse(drop(sort_des([-3, -2, 1]),2)),-2))",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(drop(sort_des(input),2)),-2))"
  },
  {
    "input": "input : list = [2, 2, -3, 3]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(reverse(take(add_n(drop([2, 2, -3, 3],2),2),14)))",
    "io_inp": [
      2,
      2,
      -3,
      3
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(drop(input,2),2),14)))"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [-129, 96, 121]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(mul_n([-4, 5, -5],-5),5),4)))",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      -129,
      96,
      121
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(mul_n(input,-5),5),4)))"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-5, -3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(add_n([5, -3, -5],-3),6),-3)))",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(add_n(input,-3),6),-3)))"
  },
  {
    "input": "input : list = [2, 3, 0, -5, 3]\noutput : list = [-5, 0, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([2, 3, 0, -5, 3])",
    "io_inp": [
      2,
      3,
      0,
      -5,
      3
    ],
    "io_out": [
      -5,
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = add_n([4, 2, 0],-3)",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -5, -3, 4, 4, -2]\noutput : list = [10, 10, 4, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(drop([-1, -5, -3, 4, 4, -2],2),1)),-2),-3)",
    "io_inp": [
      -1,
      -5,
      -3,
      4,
      4,
      -2
    ],
    "io_out": [
      10,
      10,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(drop(input,2),1)),-2),-3)"
  },
  {
    "input": "input : list = [4, -5, 4, -4, -3, 2]\noutput : list = [7, 7, 5, 0, -1, -2]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(add_n([4, -5, 4, -4, -3, 2],1)),2)),37)",
    "io_inp": [
      4,
      -5,
      4,
      -4,
      -3,
      2
    ],
    "io_out": [
      7,
      7,
      5,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(add_n(input,1)),2)),37)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des([4, -5]),-5),5),-1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(input),-5),5),-1)"
  },
  {
    "input": "input : list = [-4, 0, -4, 3, -4, -5]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(add_n(reverse(drop(sub_n([-4, 0, -4, 3, -4, -5],-4),5)),-3))",
    "io_inp": [
      -4,
      0,
      -4,
      3,
      -4,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(drop(sub_n(input,-4),5)),-3))"
  },
  {
    "input": "input : list = [-3, -2, -5, -3, 2]\noutput : list = [7, 3, 2, 2, 0]",
    "output": "generated_output : list = add_n(sort_des([-3, -2, -5, -3, 2]),5)",
    "io_inp": [
      -3,
      -2,
      -5,
      -3,
      2
    ],
    "io_out": [
      7,
      3,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [3, 2, 1, 2]\noutput : list = [8, 7]",
    "output": "generated_output : list = add_n(take([3, 2, 1, 2],2),5)",
    "io_inp": [
      3,
      2,
      1,
      2
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),5)"
  },
  {
    "input": "input : list = [-3, -5, 2, 0, 5]\noutput : list = [7, 9, 12]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(drop(drop([-3, -5, 2, 0, 5],1),1),-5),-2))",
    "io_inp": [
      -3,
      -5,
      2,
      0,
      5
    ],
    "io_out": [
      7,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(drop(drop(input,1),1),-5),-2))"
  },
  {
    "input": "input : list = [-5, 3, -1, -4, 1, -5]\noutput : list = [5, 3, 1, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(drop([-5, 3, -1, -4, 1, -5],1),2))",
    "io_inp": [
      -5,
      3,
      -1,
      -4,
      1,
      -5
    ],
    "io_out": [
      5,
      3,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),2))"
  },
  {
    "input": "input : list = [0, -2, -4, -2]\noutput : list = [0, 2, 2, 4]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(mul_n([0, -2, -4, -2],1))),-1))",
    "io_inp": [
      0,
      -2,
      -4,
      -2
    ],
    "io_out": [
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(mul_n(input,1))),-1))"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [4, 3, -2]",
    "output": "generated_output : list = sort_des([4, 3, -2])",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [3, 18, 3]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n(mul_n([-2, 3, -2],-3),-2),-1),3),-4)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      3,
      18,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(mul_n(input,-3),-2),-1),3),-4)"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [2, -4, 5]",
    "output": "generated_output : list = mul_n([2, -4, 5],1)",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      2,
      -4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take([-1, -5, -1],1))",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [0, 1, 5, 1]\noutput : list = [-1, 0, 4, 0]",
    "output": "generated_output : list = add_n([0, 1, 5, 1],-1)",
    "io_inp": [
      0,
      1,
      5,
      1
    ],
    "io_out": [
      -1,
      0,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 4, -1, 4]\noutput : list = [25]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(take([-5, 4, -1, 4],1)))),-5)",
    "io_inp": [
      -5,
      4,
      -1,
      4
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(take(input,1)))),-5)"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [-25, 10, 15]",
    "output": "generated_output : list = sort_asc(mul_n([3, -5, 2],5))",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      -25,
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-2, 5, 5, -2]\noutput : list = [-1, -8]",
    "output": "generated_output : list = take(sub_n(take(add_n(drop([-2, 5, 5, -2],2),-5),8),1),38)",
    "io_inp": [
      -2,
      5,
      5,
      -2
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(drop(input,2),-5),8),1),38)"
  },
  {
    "input": "input : list = [-4, 4, 0]\noutput : list = [27, -5, -37]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n([-4, 4, 0],4),2))),5)",
    "io_inp": [
      -4,
      4,
      0
    ],
    "io_out": [
      27,
      -5,
      -37
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n(input,4),2))),5)"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [1, -1, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n([-1, 1, -5],5))),-5))",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n(input,5))),-5))"
  },
  {
    "input": "input : list = [2, 1, -3]\noutput : list = [25, -7, -15]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(mul_n([2, 1, -3],2),-4),13)),1)",
    "io_inp": [
      2,
      1,
      -3
    ],
    "io_out": [
      25,
      -7,
      -15
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(mul_n(input,2),-4),13)),1)"
  },
  {
    "input": "input : list = [4, -3, 3, -3, -1]\noutput : list = [1, 1, 3, 7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_des([4, -3, 3, -3, -1]),5))),-4)",
    "io_inp": [
      4,
      -3,
      3,
      -3,
      -1
    ],
    "io_out": [
      1,
      1,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_des(input),5))),-4)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc([5, 2])",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [-6, 2, 1]",
    "output": "generated_output : list = sub_n(sub_n([-3, 5, 4],2),1)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      -6,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-10, 8]",
    "output": "generated_output : list = mul_n([5, -4],-2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -3, 2, 2, -2, 5]\noutput : list = [10, 4, 4, -4, -6, -6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_asc([-3, -3, 2, 2, -2, 5]),2)),2),-2)",
    "io_inp": [
      -3,
      -3,
      2,
      2,
      -2,
      5
    ],
    "io_out": [
      10,
      4,
      4,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_asc(input),2)),2),-2)"
  },
  {
    "input": "input : list = [-3, 3, -3, -4, 5, 1]\noutput : list = [5, 11, 5, 4, 13, 9]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(add_n([-3, 3, -3, -4, 5, 1],3)),-4)),1)",
    "io_inp": [
      -3,
      3,
      -3,
      -4,
      5,
      1
    ],
    "io_out": [
      5,
      11,
      5,
      4,
      13,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(add_n(input,3)),-4)),1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [15, -1]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(reverse([5, -3]),3),1),-2),-1)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      15,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(reverse(input),3),1),-2),-1)"
  },
  {
    "input": "input : list = [4, -4, -3]\noutput : list = [-4, -3, 4]",
    "output": "generated_output : list = sort_asc([4, -4, -3])",
    "io_inp": [
      4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -1, 0, 2]\noutput : list = [8, 0, 0, -4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([0, -1, 0, 2],4)))",
    "io_inp": [
      0,
      -1,
      0,
      2
    ],
    "io_out": [
      8,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,4)))"
  },
  {
    "input": "input : list = [-1, -2, -3]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = sub_n([-1, -2, -3],-2)",
    "io_inp": [
      -1,
      -2,
      -3
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 4, 5, 0]\noutput : list = [-8, -7, -3, 2]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n(sort_des([-5, 4, 5, 0]),-3)),-1))",
    "io_inp": [
      -5,
      4,
      5,
      0
    ],
    "io_out": [
      -8,
      -7,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(sort_des(input),-3)),-1))"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(take([-1, 3, -4],1)),-3)))",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(take(input,1)),-3)))"
  },
  {
    "input": "input : list = [3, 3, -4, -5, -4]\noutput : list = [12, 15, 12]",
    "output": "generated_output : list = drop(reverse(reverse(mul_n(mul_n([3, 3, -4, -5, -4],-1),3))),2)",
    "io_inp": [
      3,
      3,
      -4,
      -5,
      -4
    ],
    "io_out": [
      12,
      15,
      12
    ],
    "output_masked": "generated_output : list = drop(reverse(reverse(mul_n(mul_n(input,-1),3))),2)"
  },
  {
    "input": "input : list = [4, 2, -1, -5, 2, 1]\noutput : list = [1, 2, -5, -1, 2, 4]",
    "output": "generated_output : list = reverse([4, 2, -1, -5, 2, 1])",
    "io_inp": [
      4,
      2,
      -1,
      -5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      -5,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [6, 3, 2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc([0, -1, 3])),-3))",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [-1, -2, -2, 5, -4, -1]\noutput : list = [10, -25, 20, 5]",
    "output": "generated_output : list = mul_n(drop([-1, -2, -2, 5, -4, -1],2),-5)",
    "io_inp": [
      -1,
      -2,
      -2,
      5,
      -4,
      -1
    ],
    "io_out": [
      10,
      -25,
      20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [4, 1, -1, 1, -5]\noutput : list = [4, 1, 1, -1, -5]",
    "output": "generated_output : list = sort_des([4, 1, -1, 1, -5])",
    "io_inp": [
      4,
      1,
      -1,
      1,
      -5
    ],
    "io_out": [
      4,
      1,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-1, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, -1])",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -5, 0, 2, 3, 5]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(sort_des([1, -5, 0, 2, 3, 5]),1),1),-1),2)",
    "io_inp": [
      1,
      -5,
      0,
      2,
      3,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(sort_des(input),1),1),-1),2)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [9, -6]",
    "output": "generated_output : list = mul_n([3, -2],3)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, 0, 0, 4]\noutput : list = [4, 0, 0, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sort_des([-3, 0, 0, 4])))))",
    "io_inp": [
      -3,
      0,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, -1, 2, -2]\noutput : list = [-2, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([1, -1, 2, -2],-5),5))",
    "io_inp": [
      1,
      -1,
      2,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-5),5))"
  },
  {
    "input": "input : list = [0, -4, -1, 0]\noutput : list = [-13, 2, 7, 7]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_des([0, -4, -1, 0]),1),5)),2)",
    "io_inp": [
      0,
      -4,
      -1,
      0
    ],
    "io_out": [
      -13,
      2,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_des(input),1),5)),2)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [1, -6]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(sort_asc([-4, 3]))),-2),10)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(sort_asc(input))),-2),10)"
  },
  {
    "input": "input : list = [4, 4, -2, -2, -5, 0]\noutput : list = [-5, -2, -2, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, 4, -2, -2, -5, 0]))",
    "io_inp": [
      4,
      4,
      -2,
      -2,
      -5,
      0
    ],
    "io_out": [
      -5,
      -2,
      -2,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [4, 0, 0]",
    "output": "generated_output : list = sort_des([0, 0, 4])",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, 4, -1, -2]\noutput : list = [-30, -30, -15, -5, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n([1, 4, 4, -1, -2],-3))),-5),-5)",
    "io_inp": [
      1,
      4,
      4,
      -1,
      -2
    ],
    "io_out": [
      -30,
      -30,
      -15,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n(input,-3))),-5),-5)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [144, 96]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-3, -2],-4),-3),-4)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      144,
      96
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-4),-3),-4)"
  },
  {
    "input": "input : list = [4, -3, -5, 1, 5, 3]\noutput : list = [-13, -9, -1, 3, 5, 7]",
    "output": "generated_output : list = sort_asc(add_n(take(mul_n(sub_n([4, -3, -5, 1, 5, 3],4),2),21),5))",
    "io_inp": [
      4,
      -3,
      -5,
      1,
      5,
      3
    ],
    "io_out": [
      -13,
      -9,
      -1,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(mul_n(sub_n(input,4),2),21),5))"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [74]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(drop(mul_n([-2, -5, 5],-5),2),-3),1))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      74
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(drop(mul_n(input,-5),2),-3),1))"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [21, 11, 1]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(sort_asc([0, -4, -2]),3),-5),-4),3)",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      21,
      11,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(sort_asc(input),3),-5),-4),3)"
  },
  {
    "input": "input : list = [2, -2, -3, 2]\noutput : list = [1, 5]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(take([2, -2, -3, 2],2)),-3)),7)",
    "io_inp": [
      2,
      -2,
      -3,
      2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(take(input,2)),-3)),7)"
  },
  {
    "input": "input : list = [-4, -2, -2, 4]\noutput : list = [10, -14]",
    "output": "generated_output : list = take(add_n(mul_n(drop([-4, -2, -2, 4],2),-4),2),8)",
    "io_inp": [
      -4,
      -2,
      -2,
      4
    ],
    "io_out": [
      10,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(drop(input,2),-4),2),8)"
  },
  {
    "input": "input : list = [5, -5, 0, -1, 1]\noutput : list = [-7, -3, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(sort_asc([5, -5, 0, -1, 1]),2),10)))",
    "io_inp": [
      5,
      -5,
      0,
      -1,
      1
    ],
    "io_out": [
      -7,
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(sort_asc(input),2),10)))"
  },
  {
    "input": "input : list = [-2, -1, -2, 0]\noutput : list = [-5, -5, -4, -3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(reverse([-2, -1, -2, 0]),5),3),5))",
    "io_inp": [
      -2,
      -1,
      -2,
      0
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(reverse(input),5),3),5))"
  },
  {
    "input": "input : list = [-3, 0, 5, -3, 5]\noutput : list = [2, 2, -3, -6, -6]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(sub_n([-3, 0, 5, -3, 5],3)),6)))",
    "io_inp": [
      -3,
      0,
      5,
      -3,
      5
    ],
    "io_out": [
      2,
      2,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(sub_n(input,3)),6)))"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [-10, -10, -20]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(mul_n([-5, -3, -3],5)),5)))",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(mul_n(input,5)),5)))"
  },
  {
    "input": "input : list = [0, 5, -1]\noutput : list = [-3, 0, 15]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(mul_n([0, 5, -1],1),8),3)))",
    "io_inp": [
      0,
      5,
      -1
    ],
    "io_out": [
      -3,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(mul_n(input,1),8),3)))"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [4, 0, -8]",
    "output": "generated_output : list = mul_n(sort_asc([4, -2, 0]),-2)",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      4,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-1, 2, 3, -5, -1]\noutput : list = [-12, -7, 8, 8, 28]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(mul_n([-1, 2, 3, -5, -1],5),3),28),-1))",
    "io_inp": [
      -1,
      2,
      3,
      -5,
      -1
    ],
    "io_out": [
      -12,
      -7,
      8,
      8,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(mul_n(input,5),3),28),-1))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [10, 40]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(sort_asc([-1, -4])),7),2),-5)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      10,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(sort_asc(input)),7),2),-5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [11, 26]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(sort_des([2, 5]),6),5),1))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      11,
      26
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(sort_des(input),6),5),1))"
  },
  {
    "input": "input : list = [1, 0, -3, 4, -3, -2]\noutput : list = [4, 0, -12, 16, -12, -8]",
    "output": "generated_output : list = mul_n([1, 0, -3, 4, -3, -2],4)",
    "io_inp": [
      1,
      0,
      -3,
      4,
      -3,
      -2
    ],
    "io_out": [
      4,
      0,
      -12,
      16,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, 2, -2, 5, 5]\noutput : list = [-11, -9, -5, -2, -2]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sort_des([-4, 2, -2, 5, 5])),2),1),-5)",
    "io_inp": [
      -4,
      2,
      -2,
      5,
      5
    ],
    "io_out": [
      -11,
      -9,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sort_des(input)),2),1),-5)"
  },
  {
    "input": "input : list = [-1, -2, -5, -3, -1]\noutput : list = [-1, -3, -5, -2, -1]",
    "output": "generated_output : list = reverse([-1, -2, -5, -3, -1])",
    "io_inp": [
      -1,
      -2,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [5, 9]",
    "output": "generated_output : list = take(reverse(add_n(add_n(sort_des([2, -2]),4),3)),21)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(sort_des(input),4),3)),21)"
  },
  {
    "input": "input : list = [2, 1, 2, 4, -5, -5]\noutput : list = [4, 3, 4, 6, -3, -3]",
    "output": "generated_output : list = add_n([2, 1, 2, 4, -5, -5],2)",
    "io_inp": [
      2,
      1,
      2,
      4,
      -5,
      -5
    ],
    "io_out": [
      4,
      3,
      4,
      6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 0, 5, 5, 4]\noutput : list = [-16]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(take([4, 0, 5, 5, 4],1)),-4)))",
    "io_inp": [
      4,
      0,
      5,
      5,
      4
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(take(input,1)),-4)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [10, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([5, -4]),5))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      10,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-1, 2, -1, 0, 2]\noutput : list = [2, 0, -1, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, -1, 0, 2])",
    "io_inp": [
      -1,
      2,
      -1,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, -3, 4]\noutput : list = [-15, 15, 15, 20]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(reverse([3, 3, -3, 4]))),32),5)",
    "io_inp": [
      3,
      3,
      -3,
      4
    ],
    "io_out": [
      -15,
      15,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(reverse(input))),32),5)"
  },
  {
    "input": "input : list = [-3, -2, -1, -3, 0, 5]\noutput : list = [-6, 4, 6, 8, 10, 10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(reverse([-3, -2, -1, -3, 0, 5]),-2))),-2)",
    "io_inp": [
      -3,
      -2,
      -1,
      -3,
      0,
      5
    ],
    "io_out": [
      -6,
      4,
      6,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(reverse(input),-2))),-2)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-6, -5]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(reverse([-2, -1])),4)))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [2, 3, -5, -4, -3, 1]\noutput : list = [-9, -8, -7, -3]",
    "output": "generated_output : list = sub_n(drop([2, 3, -5, -4, -3, 1],2),4)",
    "io_inp": [
      2,
      3,
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),4)"
  },
  {
    "input": "input : list = [-3, 5, -3, 2]\noutput : list = [9, 4, 12, 4]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(add_n([-3, 5, -3, 2],2)),2),33),-3)",
    "io_inp": [
      -3,
      5,
      -3,
      2
    ],
    "io_out": [
      9,
      4,
      12,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(add_n(input,2)),2),33),-3)"
  },
  {
    "input": "input : list = [-5, 0, 2, -2, -2]\noutput : list = [-9, -9, -7, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(drop([-5, 0, 2, -2, -2],1))),4),3)",
    "io_inp": [
      -5,
      0,
      2,
      -2,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(drop(input,1))),4),3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [17, -23]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n([-3, 5],1))),-5),2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      17,
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n(input,1))),-5),2)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(reverse([-1, 5]),-1)),7))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(reverse(input),-1)),7))"
  },
  {
    "input": "input : list = [-2, 1, 0, -5, 3]\noutput : list = [-4, -7, -9, -10, -12]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(add_n([-2, 1, 0, -5, 3],4),-1))),-5)",
    "io_inp": [
      -2,
      1,
      0,
      -5,
      3
    ],
    "io_out": [
      -4,
      -7,
      -9,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(add_n(input,4),-1))),-5)"
  },
  {
    "input": "input : list = [3, -2, 5, 5]\noutput : list = [6, 6, 4, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(add_n([3, -2, 5, 5],-5),1),5),2))",
    "io_inp": [
      3,
      -2,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(add_n(input,-5),1),5),2))"
  },
  {
    "input": "input : list = [1, 1, 4, -5, 0]\noutput : list = [1, 1, 4]",
    "output": "generated_output : list = mul_n(take([1, 1, 4, -5, 0],3),1)",
    "io_inp": [
      1,
      1,
      4,
      -5,
      0
    ],
    "io_out": [
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),1)"
  },
  {
    "input": "input : list = [-1, -5, 1, 2, -3, 1]\noutput : list = [3, -3, -3]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(mul_n([-1, -5, 1, 2, -3, 1],-2),3)),3),-3)",
    "io_inp": [
      -1,
      -5,
      1,
      2,
      -3,
      1
    ],
    "io_out": [
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(mul_n(input,-2),3)),3),-3)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = take(drop([0, 2, -2],1),14)",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(input,1),14)"
  },
  {
    "input": "input : list = [-4, 0, 3, 1, -4]\noutput : list = [-4, -4, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-4, 0, 3, 1, -4],1)))",
    "io_inp": [
      -4,
      0,
      3,
      1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,1)))"
  },
  {
    "input": "input : list = [3, 5, 0, 0, -2]\noutput : list = [9, 15]",
    "output": "generated_output : list = mul_n(add_n(drop([3, 5, 0, 0, -2],3),-3),-3)",
    "io_inp": [
      3,
      5,
      0,
      0,
      -2
    ],
    "io_out": [
      9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,3),-3),-3)"
  },
  {
    "input": "input : list = [3, 2, 5, -1, 2]\noutput : list = [-17, -2, -32, -17, -22]",
    "output": "generated_output : list = add_n(reverse(sub_n(mul_n([3, 2, 5, -1, 2],-5),2)),-5)",
    "io_inp": [
      3,
      2,
      5,
      -1,
      2
    ],
    "io_out": [
      -17,
      -2,
      -32,
      -17,
      -22
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(mul_n(input,-5),2)),-5)"
  },
  {
    "input": "input : list = [-5, -1, 4, -5]\noutput : list = [0, -5, -9, -9]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(add_n([-5, -1, 4, -5],1),5))))",
    "io_inp": [
      -5,
      -1,
      4,
      -5
    ],
    "io_out": [
      0,
      -5,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(add_n(input,1),5))))"
  },
  {
    "input": "input : list = [-5, -1, 3, 2]\noutput : list = [-2, -1, -5, -9]",
    "output": "generated_output : list = reverse(add_n([-5, -1, 3, 2],-4))",
    "io_inp": [
      -5,
      -1,
      3,
      2
    ],
    "io_out": [
      -2,
      -1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [0, 10]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(sort_asc([-4, 1]))),-2),-2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(sort_asc(input))),-2),-2)"
  },
  {
    "input": "input : list = [-1, -2, 1, 4, 0, 4]\noutput : list = [3]",
    "output": "generated_output : list = take(take(mul_n(mul_n(drop([-1, -2, 1, 4, 0, 4],2),1),3),41),1)",
    "io_inp": [
      -1,
      -2,
      1,
      4,
      0,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(drop(input,2),1),3),41),1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-7, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(reverse([-5, 4]),1)),2))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(reverse(input),1)),2))"
  },
  {
    "input": "input : list = [-1, 2, 0, 2]\noutput : list = [0, 1, 3, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(reverse([-1, 2, 0, 2]),-2)),2),-1)",
    "io_inp": [
      -1,
      2,
      0,
      2
    ],
    "io_out": [
      0,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(reverse(input),-2)),2),-1)"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [-9, -6, -3]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc([2, -4, -1]),3),-5))",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(input),3),-5))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [10, 5]",
    "output": "generated_output : list = mul_n([-2, -1],-5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [-6, 2, 14]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sort_asc([4, 1, -1]),4)),2))",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      -6,
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sort_asc(input),4)),2))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc([5, 0])",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(sub_n([0, -3],5),1))))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(sub_n(input,5),1))))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-10, -8]",
    "output": "generated_output : list = sort_asc(add_n([-3, -5],-5))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [-2, -5, -5, -4]\noutput : list = [51, 60]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(drop([-2, -5, -5, -4],2),-3),5)),3)",
    "io_inp": [
      -2,
      -5,
      -5,
      -4
    ],
    "io_out": [
      51,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(drop(input,2),-3),5)),3)"
  },
  {
    "input": "input : list = [0, -4, 2, -5, 3]\noutput : list = [1, -15, -1, -13, -5]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse([0, -4, 2, -5, 3]),-2),-1),5)",
    "io_inp": [
      0,
      -4,
      2,
      -5,
      3
    ],
    "io_out": [
      1,
      -15,
      -1,
      -13,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(input),-2),-1),5)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [12, -4]",
    "output": "generated_output : list = mul_n(mul_n([-3, 1],-1),4)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),4)"
  },
  {
    "input": "input : list = [0, -2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = drop([0, -2, 5],1)",
    "io_inp": [
      0,
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 2, -5, 3, 3, -4]\noutput : list = [-6, -1]",
    "output": "generated_output : list = add_n(take(take([-3, 2, -5, 3, 3, -4],2),25),-3)",
    "io_inp": [
      -3,
      2,
      -5,
      3,
      3,
      -4
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(take(input,2),25),-3)"
  },
  {
    "input": "input : list = [-2, 0, -3, -2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 0, -3, -2],1)",
    "io_inp": [
      -2,
      0,
      -3,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 0, 4, -3, 2]\noutput : list = [4, 4, 8]",
    "output": "generated_output : list = sort_asc(add_n(take([0, 0, 4, -3, 2],3),4))",
    "io_inp": [
      0,
      0,
      4,
      -3,
      2
    ],
    "io_out": [
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,3),4))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(take(take(reverse(sort_asc([1, 3])),8),18))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(sort_asc(input)),8),18))"
  },
  {
    "input": "input : list = [2, 5, -4, 2, 4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = drop([2, 5, -4, 2, 4, 1],4)",
    "io_inp": [
      2,
      5,
      -4,
      2,
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [-4, 10, -4]",
    "output": "generated_output : list = take(mul_n([-2, 5, -2],2),15)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      -4,
      10,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),15)"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_des(take([3, 3, 3],1)),-4)",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-4)"
  },
  {
    "input": "input : list = [-5, -4, 2, 0, 5]\noutput : list = [18, 12, 8, 0, -2]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n([-5, -4, 2, 0, 5],2),2)),2)",
    "io_inp": [
      -5,
      -4,
      2,
      0,
      5
    ],
    "io_out": [
      18,
      12,
      8,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(input,2),2)),2)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(sort_des([-2, -5]),-4))),4)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(sort_des(input),-4))),4)"
  },
  {
    "input": "input : list = [-1, 0, 2, -2, 2, 5]\noutput : list = [15, 12, 8, 12, 10, 9]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n([-1, 0, 2, -2, 2, 5],-5),1)),1),5)",
    "io_inp": [
      -1,
      0,
      2,
      -2,
      2,
      5
    ],
    "io_out": [
      15,
      12,
      8,
      12,
      10,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n(input,-5),1)),1),5)"
  },
  {
    "input": "input : list = [0, -5, 4, -5, 1, 0]\noutput : list = [-24, -24, -4, -4, 0, 12]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc([0, -5, 4, -5, 1, 0]),10),1),4)",
    "io_inp": [
      0,
      -5,
      4,
      -5,
      1,
      0
    ],
    "io_out": [
      -24,
      -24,
      -4,
      -4,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(input),10),1),4)"
  },
  {
    "input": "input : list = [-5, 5, 4]\noutput : list = [-5, 13, 15]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n([-5, 5, 4],2),5)),11)",
    "io_inp": [
      -5,
      5,
      4
    ],
    "io_out": [
      -5,
      13,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(input,2),5)),11)"
  },
  {
    "input": "input : list = [-3, 2, -1]\noutput : list = [45]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(take([-3, 2, -1],1),-3)),9),5)",
    "io_inp": [
      -3,
      2,
      -1
    ],
    "io_out": [
      45
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(take(input,1),-3)),9),5)"
  },
  {
    "input": "input : list = [2, -2, -4, -2]\noutput : list = [-12, -6, -6, 6]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(mul_n([2, -2, -4, -2],3)))))",
    "io_inp": [
      2,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -12,
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [3, -1, -1, -5, 5, 1]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(drop([3, -1, -1, -5, 5, 1],4),1)",
    "io_inp": [
      3,
      -1,
      -1,
      -5,
      5,
      1
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),1)"
  },
  {
    "input": "input : list = [1, -2, 1, 5]\noutput : list = [0, -4, -4, -7]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(reverse([1, -2, 1, 5])),-2)),-3)",
    "io_inp": [
      1,
      -2,
      1,
      5
    ],
    "io_out": [
      0,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(reverse(input)),-2)),-3)"
  },
  {
    "input": "input : list = [2, 4, 2, -4, -4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(sub_n([2, 4, 2, -4, -4],5),1),-1),2))",
    "io_inp": [
      2,
      4,
      2,
      -4,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(sub_n(input,5),1),-1),2))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-6, -5]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(reverse([-4, -5]))),5),-1)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(reverse(input))),5),-1)"
  },
  {
    "input": "input : list = [5, 2, -3, -3, 5, 3]\noutput : list = [-10]",
    "output": "generated_output : list = take(reverse(take(reverse(mul_n([5, 2, -3, -3, 5, 3],-2)),24)),1)",
    "io_inp": [
      5,
      2,
      -3,
      -3,
      5,
      3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(mul_n(input,-2)),24)),1)"
  },
  {
    "input": "input : list = [0, -5, 0, 5, 1, -2]\noutput : list = [6, 1, 1, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(take([0, -5, 0, 5, 1, -2],4),-1))))",
    "io_inp": [
      0,
      -5,
      0,
      5,
      1,
      -2
    ],
    "io_out": [
      6,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(take(input,4),-1))))"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [5, 4, -3]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(sort_asc([-3, 5, 4]),5)),1))",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(sort_asc(input),5)),1))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sub_n([-4, 5],1)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [14, 8, 2]",
    "output": "generated_output : list = add_n(mul_n([-3, -1, 1],-3),5)",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      14,
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),5)"
  },
  {
    "input": "input : list = [-4, 4, 3, -3, 2, 0]\noutput : list = [-10, -20, -30, -50, -80, -90]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n(sub_n([-4, 4, 3, -3, 2, 0],5),5)),35),2)",
    "io_inp": [
      -4,
      4,
      3,
      -3,
      2,
      0
    ],
    "io_out": [
      -10,
      -20,
      -30,
      -50,
      -80,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(sub_n(input,5),5)),35),2)"
  },
  {
    "input": "input : list = [3, 3, 5, 3, 2]\noutput : list = [3, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(take([3, 3, 5, 3, 2],2)))))",
    "io_inp": [
      3,
      3,
      5,
      3,
      2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(take(input,2)))))"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(sub_n(take(take(drop([2, -3, 0],1),11),14),-1))",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(drop(input,1),11),14),-1))"
  },
  {
    "input": "input : list = [-1, -1, 3, -5, 1]\noutput : list = [-1, -7, -13, -13, -25]",
    "output": "generated_output : list = sort_des(sort_des(add_n(add_n(mul_n([-1, -1, 3, -5, 1],3),-5),-5)))",
    "io_inp": [
      -1,
      -1,
      3,
      -5,
      1
    ],
    "io_out": [
      -1,
      -7,
      -13,
      -13,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(add_n(mul_n(input,3),-5),-5)))"
  },
  {
    "input": "input : list = [3, 4, -5, 3]\noutput : list = [15, -9, -9, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([3, 4, -5, 3]),-3))",
    "io_inp": [
      3,
      4,
      -5,
      3
    ],
    "io_out": [
      15,
      -9,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [-1, -4, 2, -3, -5, -1]\noutput : list = [-1, -6, -8, -4]",
    "output": "generated_output : list = sub_n(drop([-1, -4, 2, -3, -5, -1],2),3)",
    "io_inp": [
      -1,
      -4,
      2,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -6,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [5, -5, -4, -5, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(reverse(drop([5, -5, -4, -5, 1, -5],4)))",
    "io_inp": [
      5,
      -5,
      -4,
      -5,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,4)))"
  },
  {
    "input": "input : list = [-5, 2, 1, 3, -5, -1]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(drop(sort_des(drop(mul_n([-5, 2, 1, 3, -5, -1],2),4)),1),4)",
    "io_inp": [
      -5,
      2,
      1,
      3,
      -5,
      -1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_des(drop(mul_n(input,2),4)),1),4)"
  },
  {
    "input": "input : list = [3, 2, -5, 5]\noutput : list = [5, -5, 2, 3]",
    "output": "generated_output : list = take(reverse([3, 2, -5, 5]),19)",
    "io_inp": [
      3,
      2,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(input),19)"
  },
  {
    "input": "input : list = [2, 3, 3, -4, 5]\noutput : list = [5, 3, 3, 2, -4]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_des([2, 3, 3, -4, 5])),10)),8)",
    "io_inp": [
      2,
      3,
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_des(input)),10)),8)"
  },
  {
    "input": "input : list = [5, 1, -3, -3]\noutput : list = [3, -1, -5, -5]",
    "output": "generated_output : list = sub_n([5, 1, -3, -3],2)",
    "io_inp": [
      5,
      1,
      -3,
      -3
    ],
    "io_out": [
      3,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, 2, -4, -3]\noutput : list = [-6, -6, 0, -1]",
    "output": "generated_output : list = sub_n(mul_n([2, 2, -4, -3],-1),4)",
    "io_inp": [
      2,
      2,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),4)"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [-9, -3, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sub_n([1, 5, -5],-3),-3)),2),-2)",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      -9,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sub_n(input,-3),-3)),2),-2)"
  },
  {
    "input": "input : list = [4, -5, -1, -3]\noutput : list = [-7, -5, -3, 2]",
    "output": "generated_output : list = sort_asc(reverse(add_n([4, -5, -1, -3],-2)))",
    "io_inp": [
      4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-2)))"
  },
  {
    "input": "input : list = [2, 0, 2, 5, 4, -1]\noutput : list = [-7, -5, -1, -1, 3, 5]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sort_des([2, 0, 2, 5, 4, -1]),2),32),5))",
    "io_inp": [
      2,
      0,
      2,
      5,
      4,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -1,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sort_des(input),2),32),5))"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [-5, -2, -3]",
    "output": "generated_output : list = reverse([-3, -2, -5])",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [5, -25]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(mul_n([4, -2],-5)),4)),1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      5,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(mul_n(input,-5)),4)),1)"
  },
  {
    "input": "input : list = [-2, 5, -2, -4, 0]\noutput : list = [3, 10, 3]",
    "output": "generated_output : list = take(sub_n([-2, 5, -2, -4, 0],-5),3)",
    "io_inp": [
      -2,
      5,
      -2,
      -4,
      0
    ],
    "io_out": [
      3,
      10,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),3)"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [30]",
    "output": "generated_output : list = mul_n(sub_n(take([-4, -4, -1],1),2),-5)",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),2),-5)"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [12, 6, 5]",
    "output": "generated_output : list = add_n(sort_des(add_n([-2, 4, -3],3)),5)",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      12,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(input,3)),5)"
  },
  {
    "input": "input : list = [4, 4, 1, 2]\noutput : list = [4, 7, 7]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(add_n([4, 4, 1, 2],-2),-1),3),4))",
    "io_inp": [
      4,
      4,
      1,
      2
    ],
    "io_out": [
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(add_n(input,-2),-1),3),4))"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-7, -5, 13]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(mul_n([-5, 5, -4],2)),3)))",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -7,
      -5,
      13
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(mul_n(input,2)),3)))"
  },
  {
    "input": "input : list = [-1, -5, -3, -4]\noutput : list = [-9, -8, -7, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(sort_des([-1, -5, -3, -4]),16),-4)))",
    "io_inp": [
      -1,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(sort_des(input),16),-4)))"
  },
  {
    "input": "input : list = [0, 2, 2, 1, -5, -1]\noutput : list = [-5, -1, 0, 1, 2, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(reverse([0, 2, 2, 1, -5, -1])))))",
    "io_inp": [
      0,
      2,
      2,
      1,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      0,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, 4, 1, -5, -4, 1]\noutput : list = [-1, 5, 2, -4, -3, 2]",
    "output": "generated_output : list = add_n(add_n([-2, 4, 1, -5, -4, 1],3),-2)",
    "io_inp": [
      -2,
      4,
      1,
      -5,
      -4,
      1
    ],
    "io_out": [
      -1,
      5,
      2,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [2, 5, 4, -4]\noutput : list = [-7, -4]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(take([2, 5, 4, -4],2)),-1)),-2)",
    "io_inp": [
      2,
      5,
      4,
      -4
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(take(input,2)),-1)),-2)"
  },
  {
    "input": "input : list = [2, 4, 1, -4]\noutput : list = [15, -15]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des(take([2, 4, 1, -4],2)),3),-5),-3)",
    "io_inp": [
      2,
      4,
      1,
      -4
    ],
    "io_out": [
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(take(input,2)),3),-5),-3)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-10, -4, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sort_asc([5, -5, 2]),-2))))",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -10,
      -4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -3, 5],1)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 2, -1, 2]\noutput : list = [-19, -3, 9, 9]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(reverse([-5, 2, -1, 2]),8),4),-1))",
    "io_inp": [
      -5,
      2,
      -1,
      2
    ],
    "io_out": [
      -19,
      -3,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(reverse(input),8),4),-1))"
  },
  {
    "input": "input : list = [4, -1, 5, 5]\noutput : list = [5, 5, 4, -1]",
    "output": "generated_output : list = sort_des([4, -1, 5, 5])",
    "io_inp": [
      4,
      -1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5, -1, 0]\noutput : list = [5, 6, 8, 11]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc([2, 5, -1, 0]),4),-5),-1)",
    "io_inp": [
      2,
      5,
      -1,
      0
    ],
    "io_out": [
      5,
      6,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(input),4),-5),-1)"
  },
  {
    "input": "input : list = [3, 5, -5, 1, 5]\noutput : list = [-8, -2, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([3, 5, -5, 1, 5],-3)))",
    "io_inp": [
      3,
      5,
      -5,
      1,
      5
    ],
    "io_out": [
      -8,
      -2,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-3)))"
  },
  {
    "input": "input : list = [3, -1, 0]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = sort_des([3, -1, 0])",
    "io_inp": [
      3,
      -1,
      0
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sub_n([-1, 2],-1)))),34)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sub_n(input,-1)))),34)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse(reverse([5, 1]))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, 1, -5, 2, -1, 3]\noutput : list = [16, 36, 12, 40, 28, 44]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(reverse([-4, 1, -5, 2, -1, 3]),-4)),-4),4)",
    "io_inp": [
      -4,
      1,
      -5,
      2,
      -1,
      3
    ],
    "io_out": [
      16,
      36,
      12,
      40,
      28,
      44
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(reverse(input),-4)),-4),4)"
  },
  {
    "input": "input : list = [0, -5, -5, 0, 4, -5]\noutput : list = [-10, -10, -10, 0, 0, 8]",
    "output": "generated_output : list = mul_n(sort_asc([0, -5, -5, 0, 4, -5]),2)",
    "io_inp": [
      0,
      -5,
      -5,
      0,
      4,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -10,
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-4, 2, 3, -5]\noutput : list = [-4, -3, 3, 4]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(sort_des([-4, 2, 3, -5]))),1),27)",
    "io_inp": [
      -4,
      2,
      3,
      -5
    ],
    "io_out": [
      -4,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(sort_des(input))),1),27)"
  },
  {
    "input": "input : list = [2, -1, 3, -4]\noutput : list = [5]",
    "output": "generated_output : list = reverse(drop(sort_des(mul_n(add_n([2, -1, 3, -4],-4),-5)),3))",
    "io_inp": [
      2,
      -1,
      3,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(mul_n(add_n(input,-4),-5)),3))"
  },
  {
    "input": "input : list = [2, -2, -1, -3, 2, -1]\noutput : list = [2, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(drop(sub_n([2, -2, -1, -3, 2, -1],3),4))),-2)",
    "io_inp": [
      2,
      -2,
      -1,
      -3,
      2,
      -1
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(drop(sub_n(input,3),4))),-2)"
  },
  {
    "input": "input : list = [4, 3, 2, 4, -4]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = mul_n(take(reverse(take(reverse([4, 3, 2, 4, -4]),19)),3),1)",
    "io_inp": [
      4,
      3,
      2,
      4,
      -4
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(reverse(input),19)),3),1)"
  },
  {
    "input": "input : list = [1, 3, 5, 0, 1, -1]\noutput : list = [5, 3, 1, 0]",
    "output": "generated_output : list = sort_des(take([1, 3, 5, 0, 1, -1],4))",
    "io_inp": [
      1,
      3,
      5,
      0,
      1,
      -1
    ],
    "io_out": [
      5,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [0, 3, 0, 5, 3, 5]\noutput : list = [-2, 2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(drop([0, 3, 0, 5, 3, 5],4)),-4)),2)",
    "io_inp": [
      0,
      3,
      0,
      5,
      3,
      5
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(drop(input,4)),-4)),2)"
  },
  {
    "input": "input : list = [-4, 0, -2, 5, -4, 4]\noutput : list = [96, 0, 48, -120, 96, -96]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(mul_n([-4, 0, -2, 5, -4, 4],-3)),2),4))",
    "io_inp": [
      -4,
      0,
      -2,
      5,
      -4,
      4
    ],
    "io_out": [
      96,
      0,
      48,
      -120,
      96,
      -96
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(mul_n(input,-3)),2),4))"
  },
  {
    "input": "input : list = [3, 1, -5, -1]\noutput : list = [-4, -10, -6]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(drop([3, 1, -5, -1],1),-1),21),-5),-1)",
    "io_inp": [
      3,
      1,
      -5,
      -1
    ],
    "io_out": [
      -4,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(drop(input,1),-1),21),-5),-1)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-16, 12]",
    "output": "generated_output : list = sort_asc(mul_n([3, -4],4))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [3, -4, 4, 5, 5]\noutput : list = [2, 2, 1, 0, -7]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_des(add_n([3, -4, 4, 5, 5],-3)))))",
    "io_inp": [
      3,
      -4,
      4,
      5,
      5
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_des(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-9, -13]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n([-3, 1],5),8))),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -9,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sub_n(input,5),8))),-5)"
  },
  {
    "input": "input : list = [-4, 0, 4, 4, -3, 2]\noutput : list = [-10, -9, -6, -4, -2, -2]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(sort_des([-4, 0, 4, 4, -3, 2])),4),19),-2)",
    "io_inp": [
      -4,
      0,
      4,
      4,
      -3,
      2
    ],
    "io_out": [
      -10,
      -9,
      -6,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(sort_des(input)),4),19),-2)"
  },
  {
    "input": "input : list = [-4, -5, -4]\noutput : list = [-25, -20]",
    "output": "generated_output : list = mul_n(take(drop([-4, -5, -4],1),3),5)",
    "io_inp": [
      -4,
      -5,
      -4
    ],
    "io_out": [
      -25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(input,1),3),5)"
  },
  {
    "input": "input : list = [3, 4, 4, 3, -2, 1]\noutput : list = [-2, 1, 3]",
    "output": "generated_output : list = sort_asc(drop([3, 4, 4, 3, -2, 1],3))",
    "io_inp": [
      3,
      4,
      4,
      3,
      -2,
      1
    ],
    "io_out": [
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [-6, -3, -2]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sub_n([4, 3, 0],3),-2)),3),-4)",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sub_n(input,3),-2)),3),-4)"
  },
  {
    "input": "input : list = [3, -2, 2, -3, -4, -4]\noutput : list = [0, -60, -12, -72, -84, -84]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(add_n([3, -2, 2, -3, -4, -4],-2),10),3),-3),4)",
    "io_inp": [
      3,
      -2,
      2,
      -3,
      -4,
      -4
    ],
    "io_out": [
      0,
      -60,
      -12,
      -72,
      -84,
      -84
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(add_n(input,-2),10),3),-3),4)"
  },
  {
    "input": "input : list = [3, 4, -5, 2, -2]\noutput : list = [7, -2, 5, 1]",
    "output": "generated_output : list = sub_n(take(drop([3, 4, -5, 2, -2],1),23),-3)",
    "io_inp": [
      3,
      4,
      -5,
      2,
      -2
    ],
    "io_out": [
      7,
      -2,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,1),23),-3)"
  },
  {
    "input": "input : list = [0, 2, -4, -3]\noutput : list = [50, 20, 30]",
    "output": "generated_output : list = drop(reverse(add_n(mul_n(sub_n([0, 2, -4, -3],5),-5),5)),1)",
    "io_inp": [
      0,
      2,
      -4,
      -3
    ],
    "io_out": [
      50,
      20,
      30
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(mul_n(sub_n(input,5),-5),5)),1)"
  },
  {
    "input": "input : list = [-1, 4, -2, -3, 4, -2]\noutput : list = [4, 4, -1]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc([-1, 4, -2, -3, 4, -2]))),3)",
    "io_inp": [
      -1,
      4,
      -2,
      -3,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(input))),3)"
  },
  {
    "input": "input : list = [-5, -1, 1, -3]\noutput : list = [0, 4, 6, 2]",
    "output": "generated_output : list = sub_n([-5, -1, 1, -3],-5)",
    "io_inp": [
      -5,
      -1,
      1,
      -3
    ],
    "io_out": [
      0,
      4,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 2, -5, 4, 2, 2]\noutput : list = [-7, -1, -8, 1, -1, -1]",
    "output": "generated_output : list = take(add_n(take(add_n(add_n([-4, 2, -5, 4, 2, 2],-1),-4),18),2),6)",
    "io_inp": [
      -4,
      2,
      -5,
      4,
      2,
      2
    ],
    "io_out": [
      -7,
      -1,
      -8,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(add_n(input,-1),-4),18),2),6)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [-3, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(sort_des([1, 1, -3])),21)))",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(sort_des(input)),21)))"
  },
  {
    "input": "input : list = [5, -2, 2, 4]\noutput : list = [-16, -8]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(drop([5, -2, 2, 4],2),-4),14)))",
    "io_inp": [
      5,
      -2,
      2,
      4
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(drop(input,2),-4),14)))"
  },
  {
    "input": "input : list = [0, 4, 3, 2, -1]\noutput : list = [4, 6, 7, 8]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(add_n([0, 4, 3, 2, -1],4))),4))",
    "io_inp": [
      0,
      4,
      3,
      2,
      -1
    ],
    "io_out": [
      4,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(add_n(input,4))),4))"
  },
  {
    "input": "input : list = [-4, -3, -3, 4]\noutput : list = [-7, -6, -6, 1]",
    "output": "generated_output : list = add_n(sub_n([-4, -3, -3, 4],4),1)",
    "io_inp": [
      -4,
      -3,
      -3,
      4
    ],
    "io_out": [
      -7,
      -6,
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),1)"
  },
  {
    "input": "input : list = [-5, -3, 3, 5, 3, 0]\noutput : list = [-15, -9, -9, 0, 9, 15]",
    "output": "generated_output : list = mul_n(take(take(sort_des(sort_des([-5, -3, 3, 5, 3, 0])),35),35),-3)",
    "io_inp": [
      -5,
      -3,
      3,
      5,
      3,
      0
    ],
    "io_out": [
      -15,
      -9,
      -9,
      0,
      9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(sort_des(input)),35),35),-3)"
  },
  {
    "input": "input : list = [3, 1, 4, 2, -1, -2]\noutput : list = [-1, 0, 2, 3, 4, 5]",
    "output": "generated_output : list = take(take(reverse(sort_des(sub_n([3, 1, 4, 2, -1, -2],-1))),12),19)",
    "io_inp": [
      3,
      1,
      4,
      2,
      -1,
      -2
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(sub_n(input,-1))),12),19)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [3, 2]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n(sort_des([-3, -4]),-3),1)),2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(sort_des(input),-3),1)),2)"
  },
  {
    "input": "input : list = [2, -2, -3, -4, -2, 0]\noutput : list = [11, 3, -5, -5, -9, -13]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(mul_n([2, -2, -3, -4, -2, 0],4)),-3)))",
    "io_inp": [
      2,
      -2,
      -3,
      -4,
      -2,
      0
    ],
    "io_out": [
      11,
      3,
      -5,
      -5,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(mul_n(input,4)),-3)))"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-15, -30, -40]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n([-1, 2, 4],-4),1),-5),24)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -15,
      -30,
      -40
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(input,-4),1),-5),24)"
  },
  {
    "input": "input : list = [-1, 4, 5, 2, 3, 1]\noutput : list = [3, 8, 9, 6, 7, 5]",
    "output": "generated_output : list = add_n([-1, 4, 5, 2, 3, 1],4)",
    "io_inp": [
      -1,
      4,
      5,
      2,
      3,
      1
    ],
    "io_out": [
      3,
      8,
      9,
      6,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 3, 3, -4, -2]\noutput : list = [-2, -4, 3, 3, 0]",
    "output": "generated_output : list = reverse([0, 3, 3, -4, -2])",
    "io_inp": [
      0,
      3,
      3,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [0, 5, 5]",
    "output": "generated_output : list = sort_asc([0, 5, 5])",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, 1, -2]\noutput : list = [0, -1, -2, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(sub_n([-1, 0, 1, -2],3)))),-2)",
    "io_inp": [
      -1,
      0,
      1,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(sub_n(input,3)))),-2)"
  },
  {
    "input": "input : list = [2, -3, -4, -3]\noutput : list = [-8, -7, -7]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(drop([2, -3, -4, -3],1),11)),-4))",
    "io_inp": [
      2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(drop(input,1),11)),-4))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [12, 10]",
    "output": "generated_output : list = add_n(add_n(sort_des([5, 3]),3),4)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      12,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),3),4)"
  },
  {
    "input": "input : list = [1, -1, -2, -5]\noutput : list = [4, 2, 1, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(reverse([1, -1, -2, -5]),-1)),-4))",
    "io_inp": [
      1,
      -1,
      -2,
      -5
    ],
    "io_out": [
      4,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(reverse(input),-1)),-4))"
  },
  {
    "input": "input : list = [2, 0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = drop([2, 0, 1],1)",
    "io_inp": [
      2,
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 2, 5, -1, 3]\noutput : list = [-1, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 2, 5, -1, 3])",
    "io_inp": [
      4,
      2,
      5,
      -1,
      3
    ],
    "io_out": [
      -1,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-9, -4]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(sub_n([1, -4],-1)),-3),14),-3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(sub_n(input,-1)),-3),14),-3)"
  },
  {
    "input": "input : list = [-1, 1, -4, 0, -2, 4]\noutput : list = [8, 5, 4, 3, 2, 0]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(add_n([-1, 1, -4, 0, -2, 4],4)))))",
    "io_inp": [
      -1,
      1,
      -4,
      0,
      -2,
      4
    ],
    "io_out": [
      8,
      5,
      4,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(add_n(input,4)))))"
  },
  {
    "input": "input : list = [2, 5, -4, 3, -5, 2]\noutput : list = [-2, -1, 5, 5, 6, 8]",
    "output": "generated_output : list = sub_n(sort_asc([2, 5, -4, 3, -5, 2]),-3)",
    "io_inp": [
      2,
      5,
      -4,
      3,
      -5,
      2
    ],
    "io_out": [
      -2,
      -1,
      5,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [50]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(take([2, -4, 5],1)),-1),5),-5)",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(take(input,1)),-1),5),-5)"
  },
  {
    "input": "input : list = [2, -1, 0, 4, -1, -5]\noutput : list = [4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(take([2, -1, 0, 4, -1, -5],4))),9))",
    "io_inp": [
      2,
      -1,
      0,
      4,
      -1,
      -5
    ],
    "io_out": [
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(take(input,4))),9))"
  },
  {
    "input": "input : list = [3, -3, -1, -2]\noutput : list = [6, 3, 9, -9]",
    "output": "generated_output : list = mul_n(reverse([3, -3, -1, -2]),-3)",
    "io_inp": [
      3,
      -3,
      -1,
      -2
    ],
    "io_out": [
      6,
      3,
      9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [5, 3, 5, -1]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(drop([5, 3, 5, -1],2),-1))))",
    "io_inp": [
      5,
      3,
      5,
      -1
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(drop(input,2),-1))))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(sort_asc([-2, -3])),-2)),7)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(sort_asc(input)),-2)),7)"
  },
  {
    "input": "input : list = [-3, -3, 2, 0]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(drop([-3, -3, 2, 0],2),2),5),1),3)",
    "io_inp": [
      -3,
      -3,
      2,
      0
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(drop(input,2),2),5),1),3)"
  },
  {
    "input": "input : list = [3, 4, 3]\noutput : list = [8, 9, 8]",
    "output": "generated_output : list = add_n([3, 4, 3],5)",
    "io_inp": [
      3,
      4,
      3
    ],
    "io_out": [
      8,
      9,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(take([4, 5, -3],1),8)),2),-1)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(take(input,1),8)),2),-1)"
  },
  {
    "input": "input : list = [3, -5, -4, -3, 0, -3]\noutput : list = [0, -3, -6, -6, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(reverse([3, -5, -4, -3, 0, -3]),-3),3)),-3)",
    "io_inp": [
      3,
      -5,
      -4,
      -3,
      0,
      -3
    ],
    "io_out": [
      0,
      -3,
      -6,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(reverse(input),-3),3)),-3)"
  },
  {
    "input": "input : list = [-3, -4, 0, -5]\noutput : list = [0, -15, -20, -25]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(mul_n([-3, -4, 0, -5],5),1))))",
    "io_inp": [
      -3,
      -4,
      0,
      -5
    ],
    "io_out": [
      0,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(mul_n(input,5),1))))"
  },
  {
    "input": "input : list = [1, -4, -3, -2]\noutput : list = [-3, 6, 9, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n([1, -4, -3, -2],-1),3))))",
    "io_inp": [
      1,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -3,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(mul_n(input,-1),3))))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(add_n([-2, 0],-3),-4))),-2)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(add_n(input,-3),-4))),-2)"
  },
  {
    "input": "input : list = [-4, -2, 1, -4, -5, 1]\noutput : list = [-6, -4, -1, -6, -7, -1]",
    "output": "generated_output : list = add_n([-4, -2, 1, -4, -5, 1],-2)",
    "io_inp": [
      -4,
      -2,
      1,
      -4,
      -5,
      1
    ],
    "io_out": [
      -6,
      -4,
      -1,
      -6,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, 2, -5, 5, -3, -1]\noutput : list = [-5, -3, -1, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([1, 2, -5, 5, -3, -1])",
    "io_inp": [
      1,
      2,
      -5,
      5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, -1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(drop([-1, -1, -1, -1],2),5)),27))",
    "io_inp": [
      -1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(drop(input,2),5)),27))"
  },
  {
    "input": "input : list = [-3, 5, -1]\noutput : list = [-2, 0, 6]",
    "output": "generated_output : list = sub_n(sort_asc([-3, 5, -1]),-1)",
    "io_inp": [
      -3,
      5,
      -1
    ],
    "io_out": [
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [0, 2, -5, 4, -1, -3]\noutput : list = [-4, -2, 0, 1, 3, 5]",
    "output": "generated_output : list = add_n(sort_asc([0, 2, -5, 4, -1, -3]),1)",
    "io_inp": [
      0,
      2,
      -5,
      4,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [0, -3, -4, -5, -5, -3]\noutput : list = [-8, -11, -11, -12, -13, -13]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(reverse([0, -3, -4, -5, -5, -3])),3),-5))",
    "io_inp": [
      0,
      -3,
      -4,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -11,
      -11,
      -12,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(reverse(input)),3),-5))"
  },
  {
    "input": "input : list = [-2, -4, 0, -4, -3, -5]\noutput : list = [-41, -32, -32, -23, -14, 4]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(mul_n([-2, -4, 0, -4, -3, -5],3),3),-4)))",
    "io_inp": [
      -2,
      -4,
      0,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -41,
      -32,
      -32,
      -23,
      -14,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(mul_n(input,3),3),-4)))"
  },
  {
    "input": "input : list = [5, 3, 4]\noutput : list = [0, -2, -1]",
    "output": "generated_output : list = add_n([5, 3, 4],-5)",
    "io_inp": [
      5,
      3,
      4
    ],
    "io_out": [
      0,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [1, -3, 4, -2, -4]\noutput : list = [-3, 9, -12, 6, 12]",
    "output": "generated_output : list = mul_n([1, -3, 4, -2, -4],-3)",
    "io_inp": [
      1,
      -3,
      4,
      -2,
      -4
    ],
    "io_out": [
      -3,
      9,
      -12,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -4, 3, -3, -5, -1]\noutput : list = [-6, -6, -5, -4, -2, 2]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sub_n([-5, -4, 3, -3, -5, -1],1))),7))",
    "io_inp": [
      -5,
      -4,
      3,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sub_n(input,1))),7))"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take([1, 4, 2],1))",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, -5, 0, 2]\noutput : list = [0, -4, 1, 3]",
    "output": "generated_output : list = add_n(add_n([-1, -5, 0, 2],4),-3)",
    "io_inp": [
      -1,
      -5,
      0,
      2
    ],
    "io_out": [
      0,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),-3)"
  },
  {
    "input": "input : list = [3, -3, -4, 2]\noutput : list = [1, -5, -6, 0]",
    "output": "generated_output : list = sub_n([3, -3, -4, 2],2)",
    "io_inp": [
      3,
      -3,
      -4,
      2
    ],
    "io_out": [
      1,
      -5,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, 3, 0, 0]\noutput : list = [2, 4, 1, 1]",
    "output": "generated_output : list = add_n([1, 3, 0, 0],1)",
    "io_inp": [
      1,
      3,
      0,
      0
    ],
    "io_out": [
      2,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, 3, -4, 1, 2]\noutput : list = [-6, 0, -7, -2, -1]",
    "output": "generated_output : list = take(sub_n([-3, 3, -4, 1, 2],3),11)",
    "io_inp": [
      -3,
      3,
      -4,
      1,
      2
    ],
    "io_out": [
      -6,
      0,
      -7,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),11)"
  },
  {
    "input": "input : list = [-3, -2, 4, 4, 5, 5]\noutput : list = [2, 3, 9, 9, 10, 10]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sub_n([-3, -2, 4, 4, 5, 5],-4),1))))",
    "io_inp": [
      -3,
      -2,
      4,
      4,
      5,
      5
    ],
    "io_out": [
      2,
      3,
      9,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sub_n(input,-4),1))))"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [5, 1, 1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc([1, 1, 5]))))",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse([-2, 5]),5)))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(input),5)))"
  },
  {
    "input": "input : list = [0, -4, 4, -3, -1]\noutput : list = [-6, -5, -3, -2, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(sort_des([0, -4, 4, -3, -1]))),3),1)",
    "io_inp": [
      0,
      -4,
      4,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(sort_des(input))),3),1)"
  },
  {
    "input": "input : list = [-3, 1, 5, 0, 5, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(take([-3, 1, 5, 0, 5, -4],2))),-2),-1)",
    "io_inp": [
      -3,
      1,
      5,
      0,
      5,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(take(input,2))),-2),-1)"
  },
  {
    "input": "input : list = [4, -5, 2, -4, -5]\noutput : list = [8, 4, -8, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des([4, -5, 2, -4, -5]),2)",
    "io_inp": [
      4,
      -5,
      2,
      -4,
      -5
    ],
    "io_out": [
      8,
      4,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [0, 5, -2, 4, -1]\noutput : list = [13, 11, 3, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(reverse([0, 5, -2, 4, -1])),2)),-3)",
    "io_inp": [
      0,
      5,
      -2,
      4,
      -1
    ],
    "io_out": [
      13,
      11,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(reverse(input)),2)),-3)"
  },
  {
    "input": "input : list = [-5, 5, -5, 3, -4]\noutput : list = [28]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(add_n([-5, 5, -5, 3, -4],1),-3),1)),-4)",
    "io_inp": [
      -5,
      5,
      -5,
      3,
      -4
    ],
    "io_out": [
      28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(add_n(input,1),-3),1)),-4)"
  },
  {
    "input": "input : list = [-4, 3, -4, -5, -1, -4]\noutput : list = [-16, -12, -12, -12, 0, 16]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des([-4, 3, -4, -5, -1, -4])),-1),4)",
    "io_inp": [
      -4,
      3,
      -4,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -16,
      -12,
      -12,
      -12,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(input)),-1),4)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(sub_n([-1, -1],-3),12)),1),-4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(sub_n(input,-3),12)),1),-4)"
  },
  {
    "input": "input : list = [1, -1, 1, 2]\noutput : list = [-8, -6, -6, -2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(add_n([1, -1, 1, 2],-1),-3),-2)))",
    "io_inp": [
      1,
      -1,
      1,
      2
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(add_n(input,-1),-3),-2)))"
  },
  {
    "input": "input : list = [0, 1, 3, 4, 2]\noutput : list = [1, -3, -7, -11, -15]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(reverse([0, 1, 3, 4, 2]),-4)),-1),36)",
    "io_inp": [
      0,
      1,
      3,
      4,
      2
    ],
    "io_out": [
      1,
      -3,
      -7,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(reverse(input),-4)),-1),36)"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [5, -3, 0]",
    "output": "generated_output : list = mul_n([5, -3, 0],1)",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, 2, -4, -4, 3, -1]\noutput : list = [0, -1, -4, -4, -7, -7]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(sort_des([-1, 2, -4, -4, 3, -1]),-3),39)))",
    "io_inp": [
      -1,
      2,
      -4,
      -4,
      3,
      -1
    ],
    "io_out": [
      0,
      -1,
      -4,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(sort_des(input),-3),39)))"
  },
  {
    "input": "input : list = [1, -4, 5, 2, 5]\noutput : list = [1, -4, 5, 2, 5]",
    "output": "generated_output : list = sub_n(add_n([1, -4, 5, 2, 5],2),2)",
    "io_inp": [
      1,
      -4,
      5,
      2,
      5
    ],
    "io_out": [
      1,
      -4,
      5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),2)"
  },
  {
    "input": "input : list = [-4, 1, 2, 2, -3, -5]\noutput : list = [-6, -5, -4, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sub_n([-4, 1, 2, 2, -3, -5],3)),2)))",
    "io_inp": [
      -4,
      1,
      2,
      2,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -4,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sub_n(input,3)),2)))"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [12, -8, 4]",
    "output": "generated_output : list = add_n(mul_n([-5, 5, -1],-2),2)",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      12,
      -8,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),2)"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [25]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take([5, -5, -4],1),5)))",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(input,1),5)))"
  },
  {
    "input": "input : list = [-3, -2, 4, -4, 2]\noutput : list = [36, 0, 48, 12, 6]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(sub_n([-3, -2, 4, -4, 2],-4),2)),8),3)",
    "io_inp": [
      -3,
      -2,
      4,
      -4,
      2
    ],
    "io_out": [
      36,
      0,
      48,
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(sub_n(input,-4),2)),8),3)"
  },
  {
    "input": "input : list = [-4, -4, 2, -4, 3]\noutput : list = [-4, -4, 2]",
    "output": "generated_output : list = take([-4, -4, 2, -4, 3],3)",
    "io_inp": [
      -4,
      -4,
      2,
      -4,
      3
    ],
    "io_out": [
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n([4, -2],2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [3, 0, -5, -3, -2]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(drop([3, 0, -5, -3, -2],3))),4))",
    "io_inp": [
      3,
      0,
      -5,
      -3,
      -2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(drop(input,3))),4))"
  },
  {
    "input": "input : list = [-1, 2, -3, -4]\noutput : list = [-6, -7]",
    "output": "generated_output : list = sub_n(drop([-1, 2, -3, -4],2),3)",
    "io_inp": [
      -1,
      2,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [-5, -1, -2]\noutput : list = [8, 5, -4]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des(add_n([-5, -1, -2],2)),3),-5),45)",
    "io_inp": [
      -5,
      -1,
      -2
    ],
    "io_out": [
      8,
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(add_n(input,2)),3),-5),45)"
  },
  {
    "input": "input : list = [-2, 5, 4, -3]\noutput : list = [-1, 20, 17, -4]",
    "output": "generated_output : list = add_n(take(add_n(take(mul_n([-2, 5, 4, -3],3),15),1),12),4)",
    "io_inp": [
      -2,
      5,
      4,
      -3
    ],
    "io_out": [
      -1,
      20,
      17,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(mul_n(input,3),15),1),12),4)"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [-25, 0, 15]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(reverse([3, 0, -5]),5))))",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      -25,
      0,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-4, -5, -5]\noutput : list = [-5, -5, -4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([-4, -5, -5])))",
    "io_inp": [
      -4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [3, 4, -4, 3, -4]\noutput : list = [35, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(drop([3, 4, -4, 3, -4],3)),3),-5)",
    "io_inp": [
      3,
      4,
      -4,
      3,
      -4
    ],
    "io_out": [
      35,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(drop(input,3)),3),-5)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = sort_asc([0, 2, -2])",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_des([-5, 0, 0]),-2))))",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [-1, -5, 5, 1, -4]\noutput : list = [-11, -9, -3, 1, 9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(mul_n([-1, -5, 5, 1, -4],2)),2)),3)",
    "io_inp": [
      -1,
      -5,
      5,
      1,
      -4
    ],
    "io_out": [
      -11,
      -9,
      -3,
      1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(mul_n(input,2)),2)),3)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([-3, 4])))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [8, -7, -12]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(mul_n([4, 3, 0],-5),6),-5),-3))",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      8,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(mul_n(input,-5),6),-5),-3))"
  },
  {
    "input": "input : list = [4, -3, 0, 1, 5]\noutput : list = [-4, -1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([4, -3, 0, 1, 5]),1))",
    "io_inp": [
      4,
      -3,
      0,
      1,
      5
    ],
    "io_out": [
      -4,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [5, 5, 5, 1]\noutput : list = [5, 5, 5, 1]",
    "output": "generated_output : list = sort_des(take(reverse([5, 5, 5, 1]),7))",
    "io_inp": [
      5,
      5,
      5,
      1
    ],
    "io_out": [
      5,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),7))"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [-6, -4, -3]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(reverse([-1, 0, -3])),-3)),14)",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(reverse(input)),-3)),14)"
  },
  {
    "input": "input : list = [2, 1, 4, -5]\noutput : list = [0, 6, 7, 9]",
    "output": "generated_output : list = sub_n(sort_asc([2, 1, 4, -5]),-5)",
    "io_inp": [
      2,
      1,
      4,
      -5
    ],
    "io_out": [
      0,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [5, -1, -5, -5, 0, 0]\noutput : list = [-5, -5, -1, 0, 0, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc([5, -1, -5, -5, 0, 0])),12)",
    "io_inp": [
      5,
      -1,
      -5,
      -5,
      0,
      0
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),12)"
  },
  {
    "input": "input : list = [-3, 5, 2]\noutput : list = [30, 39, 15]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(add_n([-3, 5, 2],4)),-1),4),-3)",
    "io_inp": [
      -3,
      5,
      2
    ],
    "io_out": [
      30,
      39,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(add_n(input,4)),-1),4),-3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(sort_asc([-4, -1]),1))),1)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(sort_asc(input),1))),1)"
  },
  {
    "input": "input : list = [-3, 3, 1, 1, 2, -4]\noutput : list = [12, -12, -4, -4, -8, 16]",
    "output": "generated_output : list = mul_n([-3, 3, 1, 1, 2, -4],-4)",
    "io_inp": [
      -3,
      3,
      1,
      1,
      2,
      -4
    ],
    "io_out": [
      12,
      -12,
      -4,
      -4,
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -3, 5, 1]\noutput : list = [-24, -12, 24, 72]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(mul_n([-2, -3, 5, 1],4),-4)),3))",
    "io_inp": [
      -2,
      -3,
      5,
      1
    ],
    "io_out": [
      -24,
      -12,
      24,
      72
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(mul_n(input,4),-4)),3))"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [1, 9, 29]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n([-5, 0, 2],2),-4)),-1)",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      1,
      9,
      29
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(input,2),-4)),-1)"
  },
  {
    "input": "input : list = [-2, 5, 3]\noutput : list = [20, 12, -8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sort_asc([-2, 5, 3])))),4)",
    "io_inp": [
      -2,
      5,
      3
    ],
    "io_out": [
      20,
      12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [5, -1, 3, -2]\noutput : list = [11, 7, -1, -3]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(sub_n([5, -1, 3, -2],-3))),2),5)",
    "io_inp": [
      5,
      -1,
      3,
      -2
    ],
    "io_out": [
      11,
      7,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(sub_n(input,-3))),2),5)"
  },
  {
    "input": "input : list = [-5, 1, 0, -2, 4]\noutput : list = [-4, 2, 1, -1, 5]",
    "output": "generated_output : list = add_n([-5, 1, 0, -2, 4],1)",
    "io_inp": [
      -5,
      1,
      0,
      -2,
      4
    ],
    "io_out": [
      -4,
      2,
      1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, -4, -2, 5, 5, 3]\noutput : list = [2, -4, -2, 5, 5, 3]",
    "output": "generated_output : list = reverse(reverse([2, -4, -2, 5, 5, 3]))",
    "io_inp": [
      2,
      -4,
      -2,
      5,
      5,
      3
    ],
    "io_out": [
      2,
      -4,
      -2,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -3, 0, 1, -3]\noutput : list = [-3, -3, 0, 1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc([4, -3, 0, 1, -3])),35)",
    "io_inp": [
      4,
      -3,
      0,
      1,
      -3
    ],
    "io_out": [
      -3,
      -3,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),35)"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(take(take(sub_n(take([0, -1, 1],1),2),2),14))",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(take(input,1),2),2),14))"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -1, -1],1)",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 1, -4, 2, -1, 0]\noutput : list = [-4, -2, -1, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse([-2, 1, -4, 2, -1, 0]))",
    "io_inp": [
      -2,
      1,
      -4,
      2,
      -1,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(drop([0, -5, -2],1))",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [0, -5, -3, -4, 3, -3]\noutput : list = [-5, -4, -3, -3, 0, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc([0, -5, -3, -4, 3, -3])))",
    "io_inp": [
      0,
      -5,
      -3,
      -4,
      3,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, -4, 5, 2, -4]\noutput : list = [12, -6, -15, 12, 12]",
    "output": "generated_output : list = reverse(mul_n([-4, -4, 5, 2, -4],-3))",
    "io_inp": [
      -4,
      -4,
      5,
      2,
      -4
    ],
    "io_out": [
      12,
      -6,
      -15,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-1, -1, -4, -5]\noutput : list = [1, 1, -2, -3]",
    "output": "generated_output : list = sub_n(add_n([-1, -1, -4, -5],1),-1)",
    "io_inp": [
      -1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      1,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),-1)"
  },
  {
    "input": "input : list = [2, 4, -2]\noutput : list = [9, 3, -9]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(mul_n([2, 4, -2],3))),-3))",
    "io_inp": [
      2,
      4,
      -2
    ],
    "io_out": [
      9,
      3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(mul_n(input,3))),-3))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [24, 19]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc([-4, -3]),-5),2)),-2)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      24,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc(input),-5),2)),-2)"
  },
  {
    "input": "input : list = [1, 1, 1, 2]\noutput : list = [-3, -4, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(add_n([1, 1, 1, 2],-1)),4)",
    "io_inp": [
      1,
      1,
      1,
      2
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-1)),4)"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(reverse([-3, -2, -2]),-2),2)))",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(reverse(input),-2),2)))"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [5, -11, -13]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(add_n([5, -4, 4],2))),-2),-1)",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      5,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(add_n(input,2))),-2),-1)"
  },
  {
    "input": "input : list = [4, 4, -5, -4, 3]\noutput : list = [4, 4, 3, -4, -5]",
    "output": "generated_output : list = sort_des([4, 4, -5, -4, 3])",
    "io_inp": [
      4,
      4,
      -5,
      -4,
      3
    ],
    "io_out": [
      4,
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, 4, 2]\noutput : list = [16, -20, -16, -8]",
    "output": "generated_output : list = mul_n([-4, 5, 4, 2],-4)",
    "io_inp": [
      -4,
      5,
      4,
      2
    ],
    "io_out": [
      16,
      -20,
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -4, 4, -2, -3]\noutput : list = [8, 2, 1, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(reverse([-5, -4, 4, -2, -3])),-1)),3)",
    "io_inp": [
      -5,
      -4,
      4,
      -2,
      -3
    ],
    "io_out": [
      8,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(reverse(input)),-1)),3)"
  },
  {
    "input": "input : list = [-1, 2, -3]\noutput : list = [0, -5]",
    "output": "generated_output : list = sub_n(sub_n(reverse(take(reverse([-1, 2, -3]),2)),-1),3)",
    "io_inp": [
      -1,
      2,
      -3
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(take(reverse(input),2)),-1),3)"
  },
  {
    "input": "input : list = [-4, -1, -2, 2, -5, -2]\noutput : list = [-5, -4, -2, -2, -1, 2]",
    "output": "generated_output : list = sort_asc([-4, -1, -2, 2, -5, -2])",
    "io_inp": [
      -4,
      -1,
      -2,
      2,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [-8, 0]",
    "output": "generated_output : list = take(mul_n(sort_des(drop([3, 4, 0],1)),-2),22)",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(drop(input,1)),-2),22)"
  },
  {
    "input": "input : list = [2, 0, -1, -5]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = drop([2, 0, -1, -5],1)",
    "io_inp": [
      2,
      0,
      -1,
      -5
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 5, 2, 4, -5]\noutput : list = [1, 0, -1, -2, -9]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(add_n([3, 5, 2, 4, -5],-4)))))",
    "io_inp": [
      3,
      5,
      2,
      4,
      -5
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [1, 4, 5, -1, 2, 2]\noutput : list = [-20, -16, -8, -8, -4, 4]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([1, 4, 5, -1, 2, 2],1)),-4)",
    "io_inp": [
      1,
      4,
      5,
      -1,
      2,
      2
    ],
    "io_out": [
      -20,
      -16,
      -8,
      -8,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,1)),-4)"
  },
  {
    "input": "input : list = [3, -2, -3]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(mul_n(add_n(take([3, -2, -3],1),-1),-1))",
    "io_inp": [
      3,
      -2,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(input,1),-1),-1))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(sort_des([4, 0]),4),7),5))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(sort_des(input),4),7),5))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_asc([-2, -1]),2))))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [4, 2, 5, -5]\noutput : list = [-4, 10, 14, 16]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_des([4, 2, 5, -5])),4),1),2)",
    "io_inp": [
      4,
      2,
      5,
      -5
    ],
    "io_out": [
      -4,
      10,
      14,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_des(input)),4),1),2)"
  },
  {
    "input": "input : list = [5, -4, 1, -1, -2]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(drop([5, -4, 1, -1, -2],2),1))),-3)",
    "io_inp": [
      5,
      -4,
      1,
      -1,
      -2
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(drop(input,2),1))),-3)"
  },
  {
    "input": "input : list = [-5, 5, -5, -3]\noutput : list = [5, 5, 3, -5]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(sort_des([-5, 5, -5, -3]),1),10),-1))",
    "io_inp": [
      -5,
      5,
      -5,
      -3
    ],
    "io_out": [
      5,
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(sort_des(input),1),10),-1))"
  },
  {
    "input": "input : list = [1, -4, -2, 2]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(take([1, -4, -2, 2],2))),22))",
    "io_inp": [
      1,
      -4,
      -2,
      2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(take(input,2))),22))"
  },
  {
    "input": "input : list = [-1, -5, -3]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(sort_asc([-1, -5, -3])))))",
    "io_inp": [
      -1,
      -5,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, 2, -1, -4]\noutput : list = [-4, -1, -1, 2]",
    "output": "generated_output : list = sort_asc([-1, 2, -1, -4])",
    "io_inp": [
      -1,
      2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 0]\noutput : list = [-6, -9, -5]",
    "output": "generated_output : list = sub_n(take(take(add_n(sub_n([-1, -4, 0],3),-5),28),22),-3)",
    "io_inp": [
      -1,
      -4,
      0
    ],
    "io_out": [
      -6,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(sub_n(input,3),-5),28),22),-3)"
  },
  {
    "input": "input : list = [1, -2, -1, -5, 1, 5]\noutput : list = [-159, 21, 141]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(drop([1, -2, -1, -5, 1, 5],3),2),-5),3),-3)",
    "io_inp": [
      1,
      -2,
      -1,
      -5,
      1,
      5
    ],
    "io_out": [
      -159,
      21,
      141
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(drop(input,3),2),-5),3),-3)"
  },
  {
    "input": "input : list = [4, -1, -5, 0]\noutput : list = [4, 0, -1, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_asc([4, -1, -5, 0])),10)),18)",
    "io_inp": [
      4,
      -1,
      -5,
      0
    ],
    "io_out": [
      4,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_asc(input)),10)),18)"
  },
  {
    "input": "input : list = [-1, -2, -4]\noutput : list = [-120, -100, -60]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(sub_n([-1, -2, -4],-5),4),2),4),-5)",
    "io_inp": [
      -1,
      -2,
      -4
    ],
    "io_out": [
      -120,
      -100,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(sub_n(input,-5),4),2),4),-5)"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [0, 4, 10]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(sort_asc([2, 0, 5]),16)),2))",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(sort_asc(input),16)),2))"
  },
  {
    "input": "input : list = [1, 5, -1, -2]\noutput : list = [7, 5, -7, 1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n([1, 5, -1, -2],2),-1)),-3)",
    "io_inp": [
      1,
      5,
      -1,
      -2
    ],
    "io_out": [
      7,
      5,
      -7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(input,2),-1)),-3)"
  },
  {
    "input": "input : list = [5, -4, 0, 3, -1, -3]\noutput : list = [7, 17, 37, 22]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(add_n([5, -4, 0, 3, -1, -3],4)),4),5),-2)",
    "io_inp": [
      5,
      -4,
      0,
      3,
      -1,
      -3
    ],
    "io_out": [
      7,
      17,
      37,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(add_n(input,4)),4),5),-2)"
  },
  {
    "input": "input : list = [0, -2, -3, -2]\noutput : list = [-2, -3, -2, 0]",
    "output": "generated_output : list = reverse([0, -2, -3, -2])",
    "io_inp": [
      0,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, 1, 0, -2, -4]\noutput : list = [10, 5, 0, -10, -20, -25]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(sort_des([2, -5, 1, 0, -2, -4])),35),5))",
    "io_inp": [
      2,
      -5,
      1,
      0,
      -2,
      -4
    ],
    "io_out": [
      10,
      5,
      0,
      -10,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(sort_des(input)),35),5))"
  },
  {
    "input": "input : list = [-4, -1, 2, -5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(drop(sort_des(reverse(drop([-4, -1, 2, -5, -1],2))),1))",
    "io_inp": [
      -4,
      -1,
      2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_des(reverse(drop(input,2))),1))"
  },
  {
    "input": "input : list = [-4, -2, 5, 4]\noutput : list = [-12, -8, 6, 4]",
    "output": "generated_output : list = mul_n(sub_n([-4, -2, 5, 4],2),2)",
    "io_inp": [
      -4,
      -2,
      5,
      4
    ],
    "io_out": [
      -12,
      -8,
      6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),2)"
  },
  {
    "input": "input : list = [1, 1, 5, 2, 3]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(reverse(drop(add_n([1, 1, 5, 2, 3],-2),3)))",
    "io_inp": [
      1,
      1,
      5,
      2,
      3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(add_n(input,-2),3)))"
  },
  {
    "input": "input : list = [-4, 1, 1, 5, 0]\noutput : list = [-135, -27, -27, 0, 108]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(mul_n([-4, 1, 1, 5, 0],1),3)),3),-3)",
    "io_inp": [
      -4,
      1,
      1,
      5,
      0
    ],
    "io_out": [
      -135,
      -27,
      -27,
      0,
      108
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(mul_n(input,1),3)),3),-3)"
  },
  {
    "input": "input : list = [-5, -1, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = drop([-5, -1, 1, -5],2)",
    "io_inp": [
      -5,
      -1,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2, -5, 2]\noutput : list = [-2, -9, -2]",
    "output": "generated_output : list = sub_n(reverse(add_n(drop([-4, 2, -5, 2],1),-1)),3)",
    "io_inp": [
      -4,
      2,
      -5,
      2
    ],
    "io_out": [
      -2,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(drop(input,1),-1)),3)"
  },
  {
    "input": "input : list = [-5, 4, 1, -2, -5]\noutput : list = [-9, 0, 9, 18]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(drop([-5, 4, 1, -2, -5],1),-2)),3))",
    "io_inp": [
      -5,
      4,
      1,
      -2,
      -5
    ],
    "io_out": [
      -9,
      0,
      9,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(drop(input,1),-2)),3))"
  },
  {
    "input": "input : list = [-2, 2, 3, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_asc([-2, 2, 3, 4]),2),1),-3),45)",
    "io_inp": [
      -2,
      2,
      3,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_asc(input),2),1),-3),45)"
  },
  {
    "input": "input : list = [1, -4, 0]\noutput : list = [1, 0, -4]",
    "output": "generated_output : list = sort_des([1, -4, 0])",
    "io_inp": [
      1,
      -4,
      0
    ],
    "io_out": [
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, -3]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(take(sort_des(take([3, -5, -3],1)),23),5)",
    "io_inp": [
      3,
      -5,
      -3
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(input,1)),23),5)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [24, 12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des([-2, 1]),4)),-4)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      24,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(input),4)),-4)"
  },
  {
    "input": "input : list = [-4, 5, 5, -1, 1]\noutput : list = [-2, -4, 2, 2, -7]",
    "output": "generated_output : list = add_n(reverse([-4, 5, 5, -1, 1]),-3)",
    "io_inp": [
      -4,
      5,
      5,
      -1,
      1
    ],
    "io_out": [
      -2,
      -4,
      2,
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [5, 20]",
    "output": "generated_output : list = add_n(sub_n(sub_n(drop(mul_n([2, 2, -3],-3),1),-5),-4),2)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      5,
      20
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(drop(mul_n(input,-3),1),-5),-4),2)"
  },
  {
    "input": "input : list = [-3, 5, -3]\noutput : list = [7, -1, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse([-3, 5, -3])),2)",
    "io_inp": [
      -3,
      5,
      -3
    ],
    "io_out": [
      7,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [5, 3, 4]\noutput : list = [-4, -5, -3]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(sub_n([5, 3, 4],-5)),-5),4),-4)",
    "io_inp": [
      5,
      3,
      4
    ],
    "io_out": [
      -4,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(sub_n(input,-5)),-5),4),-4)"
  },
  {
    "input": "input : list = [-5, 5, 4]\noutput : list = [-6, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(sort_asc([-5, 5, 4])),1),18))",
    "io_inp": [
      -5,
      5,
      4
    ],
    "io_out": [
      -6,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(sort_asc(input)),1),18))"
  },
  {
    "input": "input : list = [2, 3, 2, 0, -2]\noutput : list = [-9, -4, -4, 6, 16]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des([2, 3, 2, 0, -2]),-5),-5),-3),4)",
    "io_inp": [
      2,
      3,
      2,
      0,
      -2
    ],
    "io_out": [
      -9,
      -4,
      -4,
      6,
      16
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des(input),-5),-5),-3),4)"
  },
  {
    "input": "input : list = [3, 4, 3, 5, 1]\noutput : list = [1, 5, 3, 4, 3]",
    "output": "generated_output : list = reverse([3, 4, 3, 5, 1])",
    "io_inp": [
      3,
      4,
      3,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      3,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4, 0, -2]\noutput : list = [5]",
    "output": "generated_output : list = take(take(reverse(reverse(take([5, -4, 0, -2],1))),8),5)",
    "io_inp": [
      5,
      -4,
      0,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(take(input,1))),8),5)"
  },
  {
    "input": "input : list = [-4, -2, -1, -5, -5]\noutput : list = [0]",
    "output": "generated_output : list = reverse(reverse(drop(sort_des(sub_n([-4, -2, -1, -5, -5],-5)),4)))",
    "io_inp": [
      -4,
      -2,
      -1,
      -5,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(sort_des(sub_n(input,-5)),4)))"
  },
  {
    "input": "input : list = [-2, -2, 5, 3, 4]\noutput : list = [-40]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(take([-2, -2, 5, 3, 4],1)),5),4),8)",
    "io_inp": [
      -2,
      -2,
      5,
      3,
      4
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(take(input,1)),5),4),8)"
  },
  {
    "input": "input : list = [-3, -2, -1, 4, -5]\noutput : list = [0, 5]",
    "output": "generated_output : list = sub_n(drop(sort_asc([-3, -2, -1, 4, -5]),3),-1)",
    "io_inp": [
      -3,
      -2,
      -1,
      4,
      -5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(input),3),-1)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des([-1, 5])",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, 0, 5, 1]\noutput : list = [2, -2, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des(drop([4, 1, 0, 5, 1],1))),-3))",
    "io_inp": [
      4,
      1,
      0,
      5,
      1
    ],
    "io_out": [
      2,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(drop(input,1))),-3))"
  },
  {
    "input": "input : list = [-1, 1, -1, 4, -3]\noutput : list = [7, 4, 2, 2, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse([-1, 1, -1, 4, -3]),3))",
    "io_inp": [
      -1,
      1,
      -1,
      4,
      -3
    ],
    "io_out": [
      7,
      4,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),3))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [30, 15]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc([0, -3]),-5),-2),-5)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      30,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(input),-5),-2),-5)"
  },
  {
    "input": "input : list = [-3, 0, -5, -3, -4]\noutput : list = [-6, -5, -4, -4, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(sort_des([-3, 0, -5, -3, -4]))),-1))",
    "io_inp": [
      -3,
      0,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [-5, -15, -20]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(sub_n([-3, 0, -1],-1)),3)),-5)",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(sub_n(input,-1)),3)),-5)"
  },
  {
    "input": "input : list = [-2, -3, 1, 5, -1]\noutput : list = [4, 20, 28]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(drop([-2, -3, 1, 5, -1],2),3)),-3),-4)",
    "io_inp": [
      -2,
      -3,
      1,
      5,
      -1
    ],
    "io_out": [
      4,
      20,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(drop(input,2),3)),-3),-4)"
  },
  {
    "input": "input : list = [-5, -5, 1, -1, -2, 1]\noutput : list = [-45, -45, -18, -9, 9, 9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(mul_n([-5, -5, 1, -1, -2, 1],3)))),3)",
    "io_inp": [
      -5,
      -5,
      1,
      -1,
      -2,
      1
    ],
    "io_out": [
      -45,
      -45,
      -18,
      -9,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(mul_n(input,3)))),3)"
  },
  {
    "input": "input : list = [-1, 0, -4, -4]\noutput : list = [1, 0, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(reverse([-1, 0, -4, -4]),-1))))",
    "io_inp": [
      -1,
      0,
      -4,
      -4
    ],
    "io_out": [
      1,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-15]",
    "output": "generated_output : list = sort_asc(mul_n(drop(reverse([5, 4]),1),-3))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(reverse(input),1),-3))"
  },
  {
    "input": "input : list = [-4, 0, 4, 5]\noutput : list = [4, 0, -4]",
    "output": "generated_output : list = drop(sort_des([-4, 0, 4, 5]),1)",
    "io_inp": [
      -4,
      0,
      4,
      5
    ],
    "io_out": [
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),1)"
  },
  {
    "input": "input : list = [1, -1, 4, 2]\noutput : list = [9, 7]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(take([1, -1, 4, 2],2),3),25),-5),1)",
    "io_inp": [
      1,
      -1,
      4,
      2
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(take(input,2),3),25),-5),1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-10, -6]",
    "output": "generated_output : list = add_n(take(sub_n(take(sort_asc([-1, 3]),6),5),18),-4)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -10,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(sort_asc(input),6),5),18),-4)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-5, -7]",
    "output": "generated_output : list = sub_n([-1, -3],4)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, 4, -5, 1, 0]\noutput : list = [-5, 0, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 4, -5, 1, 0])",
    "io_inp": [
      4,
      4,
      -5,
      1,
      0
    ],
    "io_out": [
      -5,
      0,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n(reverse([2, 1]),4)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, -2, -5]\noutput : list = [-4, -4, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_des([-2, -2, -5])))),-2)",
    "io_inp": [
      -2,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [-2, -3, -3, 3]\noutput : list = [7, 2, 1, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(sub_n([-2, -3, -3, 3],-4),12)),3),3)",
    "io_inp": [
      -2,
      -3,
      -3,
      3
    ],
    "io_out": [
      7,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(sub_n(input,-4),12)),3),3)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-15, 9]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_des([3, -3]),4),2)),3)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -15,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_des(input),4),2)),3)"
  },
  {
    "input": "input : list = [-2, 2, -3, 2]\noutput : list = [10, 10, 6, 5]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(add_n([-2, 2, -3, 2],3)),1),1),-5)",
    "io_inp": [
      -2,
      2,
      -3,
      2
    ],
    "io_out": [
      10,
      10,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(add_n(input,3)),1),1),-5)"
  },
  {
    "input": "input : list = [4, -2, 0, 1]\noutput : list = [-8, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(reverse([4, -2, 0, 1])),-2)))",
    "io_inp": [
      4,
      -2,
      0,
      1
    ],
    "io_out": [
      -8,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [-1, -5, 1, 5, 2, -5]\noutput : list = [-7, -7, -3, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n([-1, -5, 1, 5, 2, -5],-2))",
    "io_inp": [
      -1,
      -5,
      1,
      5,
      2,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -3,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [2, 4, -5]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = sort_des([2, 4, -5])",
    "io_inp": [
      2,
      4,
      -5
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, 4, -4, 1]\noutput : list = [7, 6, 11, 3, 8]",
    "output": "generated_output : list = add_n(take(sub_n([0, -1, 4, -4, 1],-3),5),4)",
    "io_inp": [
      0,
      -1,
      4,
      -4,
      1
    ],
    "io_out": [
      7,
      6,
      11,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-3),5),4)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [45, 20, 20]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(sort_asc([-5, 0, 0]),-1),18),-4),5)",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      45,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(sort_asc(input),-1),18),-4),5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [7, 0]",
    "output": "generated_output : list = take(sort_des(add_n([3, -4],4)),24)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,4)),24)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sub_n([0, 1],2)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, 4, -4, -4, -4, 2]\noutput : list = [-4, -2, 1, 4, 4, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(sort_des([-1, 4, -4, -4, -4, 2]),-1))))",
    "io_inp": [
      -1,
      4,
      -4,
      -4,
      -4,
      2
    ],
    "io_out": [
      -4,
      -2,
      1,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [0, 4, 8]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(sort_des([-5, -1, -3])),10),5),2)",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(sort_des(input)),10),5),2)"
  },
  {
    "input": "input : list = [5, 3, -1, -4, -5]\noutput : list = [9, 7, 3, 0, -1]",
    "output": "generated_output : list = add_n(sort_des([5, 3, -1, -4, -5]),4)",
    "io_inp": [
      5,
      3,
      -1,
      -4,
      -5
    ],
    "io_out": [
      9,
      7,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-4, -3, -2, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = drop([-4, -3, -2, 1, 2],3)",
    "io_inp": [
      -4,
      -3,
      -2,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, -3, -1, 3, 4, -2]\noutput : list = [0, -1, -2, -6, -7]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(drop([1, -3, -1, 3, 4, -2],1)),-1),-5),2)",
    "io_inp": [
      1,
      -3,
      -1,
      3,
      4,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(drop(input,1)),-1),-5),2)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [3, -1, -5]",
    "output": "generated_output : list = take(reverse(take(mul_n(sort_asc([-1, 3, -5]),1),11)),43)",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(sort_asc(input),1),11)),43)"
  },
  {
    "input": "input : list = [-4, 5, -5, -2, 3]\noutput : list = [0, -5, -8]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(drop([-4, 5, -5, -2, 3],2)),-3)))",
    "io_inp": [
      -4,
      5,
      -5,
      -2,
      3
    ],
    "io_out": [
      0,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(drop(input,2)),-3)))"
  },
  {
    "input": "input : list = [0, 5, 0, 4]\noutput : list = [-2, 3, -2, 2]",
    "output": "generated_output : list = add_n([0, 5, 0, 4],-2)",
    "io_inp": [
      0,
      5,
      0,
      4
    ],
    "io_out": [
      -2,
      3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, 5, -5, -2, -3, 3]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(take([1, 5, -5, -2, -3, 3],2)))))",
    "io_inp": [
      1,
      5,
      -5,
      -2,
      -3,
      3
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(take(input,2)))))"
  },
  {
    "input": "input : list = [3, -5, -3]\noutput : list = [-1, 1, 7]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(sort_des([3, -5, -3]))),4))",
    "io_inp": [
      3,
      -5,
      -3
    ],
    "io_out": [
      -1,
      1,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(sort_des(input))),4))"
  },
  {
    "input": "input : list = [-4, -5, 1, 5, -2]\noutput : list = [12, 8, 5, 3, 2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(add_n([-4, -5, 1, 5, -2],5),7),-2)))",
    "io_inp": [
      -4,
      -5,
      1,
      5,
      -2
    ],
    "io_out": [
      12,
      8,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(add_n(input,5),7),-2)))"
  },
  {
    "input": "input : list = [-1, -3, 1, 0, 0, 2]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(drop([-1, -3, 1, 0, 0, 2],3)))))",
    "io_inp": [
      -1,
      -3,
      1,
      0,
      0,
      2
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(drop(input,3)))))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [15, 7]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(mul_n([-4, -2],1)),-4),-1),11)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      15,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(mul_n(input,1)),-4),-1),11)"
  },
  {
    "input": "input : list = [4, 1, 1, -5, 5]\noutput : list = [-2, 4, 4, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(reverse([4, 1, 1, -5, 5]),-3),1)),5)",
    "io_inp": [
      4,
      1,
      1,
      -5,
      5
    ],
    "io_out": [
      -2,
      4,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(reverse(input),-3),1)),5)"
  },
  {
    "input": "input : list = [-4, 0, 1, 5, 0, 4]\noutput : list = [1, 5, 6, 10, 5, 9]",
    "output": "generated_output : list = sub_n(add_n([-4, 0, 1, 5, 0, 4],3),-2)",
    "io_inp": [
      -4,
      0,
      1,
      5,
      0,
      4
    ],
    "io_out": [
      1,
      5,
      6,
      10,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [3, -1, 0, 4, -1]\noutput : list = [-2, -6, -5, -1]",
    "output": "generated_output : list = take(sub_n([3, -1, 0, 4, -1],5),4)",
    "io_inp": [
      3,
      -1,
      0,
      4,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),4)"
  },
  {
    "input": "input : list = [1, 2, -3, -1, -4]\noutput : list = [-8, -6, -2, 2, 4]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(mul_n([1, 2, -3, -1, -4],2)),25)),1)",
    "io_inp": [
      1,
      2,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(mul_n(input,2)),25)),1)"
  },
  {
    "input": "input : list = [5, 2, -4]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n(add_n(take(sub_n([5, 2, -4],2),1),3),-5),36)",
    "io_inp": [
      5,
      2,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(sub_n(input,2),1),3),-5),36)"
  },
  {
    "input": "input : list = [1, 3, 0, 2]\noutput : list = [16, 14, 12, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des([1, 3, 0, 2]),18)),-5),2)",
    "io_inp": [
      1,
      3,
      0,
      2
    ],
    "io_out": [
      16,
      14,
      12,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des(input),18)),-5),2)"
  },
  {
    "input": "input : list = [-1, 2, 3, 1, -5]\noutput : list = [-13, -9, -7, -6, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sort_asc([-1, 2, 3, 1, -5]),5),-3)))",
    "io_inp": [
      -1,
      2,
      3,
      1,
      -5
    ],
    "io_out": [
      -13,
      -9,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sort_asc(input),5),-3)))"
  },
  {
    "input": "input : list = [5, -3, -5, 1, 3]\noutput : list = [2, 0, -6, -4, 4]",
    "output": "generated_output : list = add_n(add_n(reverse([5, -3, -5, 1, 3]),2),-3)",
    "io_inp": [
      5,
      -3,
      -5,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      -6,
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),2),-3)"
  },
  {
    "input": "input : list = [5, 4, 1]\noutput : list = [5, 4, 1]",
    "output": "generated_output : list = sort_des([5, 4, 1])",
    "io_inp": [
      5,
      4,
      1
    ],
    "io_out": [
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 2, -2, 3]\noutput : list = [7, 6, 5, 1]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(sub_n([4, 2, -2, 3],-3)),15)))",
    "io_inp": [
      4,
      2,
      -2,
      3
    ],
    "io_out": [
      7,
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(sub_n(input,-3)),15)))"
  },
  {
    "input": "input : list = [-1, 2, -2, 3, -4]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = sort_asc(take([-1, 2, -2, 3, -4],3))",
    "io_inp": [
      -1,
      2,
      -2,
      3,
      -4
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [5, 4, 1, -4]\noutput : list = [7, 6, 3, -2]",
    "output": "generated_output : list = sub_n([5, 4, 1, -4],-2)",
    "io_inp": [
      5,
      4,
      1,
      -4
    ],
    "io_out": [
      7,
      6,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(mul_n(take([0, 2, -2],1),-1),3)",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),-1),3)"
  },
  {
    "input": "input : list = [1, 5, 3]\noutput : list = [0, 10]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des(drop([1, 5, 3],1)),5),-5),36)",
    "io_inp": [
      1,
      5,
      3
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(drop(input,1)),5),-5),36)"
  },
  {
    "input": "input : list = [-1, 4, 0, 0]\noutput : list = [3, -1, -1, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(reverse([-1, 4, 0, 0]))),-1))",
    "io_inp": [
      -1,
      4,
      0,
      0
    ],
    "io_out": [
      3,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-2, 4, 1]\noutput : list = [-3, 3, 0]",
    "output": "generated_output : list = sub_n([-2, 4, 1],1)",
    "io_inp": [
      -2,
      4,
      1
    ],
    "io_out": [
      -3,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 3, -3, -3, -1, 2]\noutput : list = [-8, -8, -6, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sub_n([4, 3, -3, -3, -1, 2],5)))))",
    "io_inp": [
      4,
      3,
      -3,
      -3,
      -1,
      2
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sub_n(input,5)))))"
  },
  {
    "input": "input : list = [0, -5, -3, 1, 2, 4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(sub_n(drop(add_n(sub_n([0, -5, -3, 1, 2, 4],3),-5),4),-5),-2)",
    "io_inp": [
      0,
      -5,
      -3,
      1,
      2,
      4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(add_n(sub_n(input,3),-5),4),-5),-2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-6, -12]",
    "output": "generated_output : list = add_n(add_n([2, -4],-3),-5)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),-5)"
  },
  {
    "input": "input : list = [-5, -3, 5, 5, -3]\noutput : list = [-5, -3, -3, 5, 5]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(reverse([-5, -3, 5, 5, -3])),33)),19)",
    "io_inp": [
      -5,
      -3,
      5,
      5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(reverse(input)),33)),19)"
  },
  {
    "input": "input : list = [2, -5, 5, 1, -4]\noutput : list = [7, 0, 10, 6, 1]",
    "output": "generated_output : list = take(sub_n([2, -5, 5, 1, -4],-5),24)",
    "io_inp": [
      2,
      -5,
      5,
      1,
      -4
    ],
    "io_out": [
      7,
      0,
      10,
      6,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),24)"
  },
  {
    "input": "input : list = [3, -4, -4, -2, -4, -3]\noutput : list = [3, -2, -3, -4, -4, -4]",
    "output": "generated_output : list = reverse(reverse(take(sort_des([3, -4, -4, -2, -4, -3]),14)))",
    "io_inp": [
      3,
      -4,
      -4,
      -2,
      -4,
      -3
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(input),14)))"
  },
  {
    "input": "input : list = [-1, 0, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(take([-1, 0, -5, -4],2)),1),-4))",
    "io_inp": [
      -1,
      0,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(take(input,2)),1),-4))"
  },
  {
    "input": "input : list = [0, -5, -4, 4, 5, -4]\noutput : list = [2, 1, -3, -7, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n([0, -5, -4, 4, 5, -4],3))",
    "io_inp": [
      0,
      -5,
      -4,
      4,
      5,
      -4
    ],
    "io_out": [
      2,
      1,
      -3,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [1, 0, -4, 4]\noutput : list = [40, 0, -10, -40]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(reverse([1, 0, -4, 4]),20),-2),5))",
    "io_inp": [
      1,
      0,
      -4,
      4
    ],
    "io_out": [
      40,
      0,
      -10,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(reverse(input),20),-2),5))"
  },
  {
    "input": "input : list = [1, 0, -2, 0, 1]\noutput : list = [98, 82, 50, 82, 98]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(sub_n([1, 0, -2, 0, 1],-5),-1),-4),4),2)",
    "io_inp": [
      1,
      0,
      -2,
      0,
      1
    ],
    "io_out": [
      98,
      82,
      50,
      82,
      98
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(sub_n(input,-5),-1),-4),4),2)"
  },
  {
    "input": "input : list = [0, 0, -5, -4, -5, -5]\noutput : list = [0, 0, 12, 15, 15, 15]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([0, 0, -5, -4, -5, -5],-3)))",
    "io_inp": [
      0,
      0,
      -5,
      -4,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      12,
      15,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take([-2, -3, 2],1),-3)",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-5, 3, 2]\noutput : list = [-20, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(mul_n([-5, 3, 2],3)))),5)",
    "io_inp": [
      -5,
      3,
      2
    ],
    "io_out": [
      -20,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(mul_n(input,3)))),5)"
  },
  {
    "input": "input : list = [-1, -3, -4, 1, -1]\noutput : list = [-1, -2, -4, -4, -6]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(sort_des([-1, -3, -4, 1, -1]))),5),-1)",
    "io_inp": [
      -1,
      -3,
      -4,
      1,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(sort_des(input))),5),-1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([0, 4]))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [-1, -1]",
    "output": "generated_output : list = drop(sort_asc([-1, -1, -2]),1)",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),1)"
  },
  {
    "input": "input : list = [4, -5, -4]\noutput : list = [20, 16, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([4, -5, -4]),-4))",
    "io_inp": [
      4,
      -5,
      -4
    ],
    "io_out": [
      20,
      16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, -3, 2, 1]\noutput : list = [-14, -10, -4, -14, -12]",
    "output": "generated_output : list = mul_n(add_n([2, 0, -3, 2, 1],5),-2)",
    "io_inp": [
      2,
      0,
      -3,
      2,
      1
    ],
    "io_out": [
      -14,
      -10,
      -4,
      -14,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),-2)"
  },
  {
    "input": "input : list = [3, -4, -5, -2]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(take([3, -4, -5, -2],1),1))),1)",
    "io_inp": [
      3,
      -4,
      -5,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(take(input,1),1))),1)"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = reverse(drop([4, -2, 0],1))",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 3, -5, 3, -3]\noutput : list = [3, 3, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([-4, 3, -5, 3, -3])))",
    "io_inp": [
      -4,
      3,
      -5,
      3,
      -3
    ],
    "io_out": [
      3,
      3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, -5, -2, 4]\noutput : list = [-3, 0, 6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([4, -5, -2, 4]),-2))",
    "io_inp": [
      4,
      -5,
      -2,
      4
    ],
    "io_out": [
      -3,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [4, 3, -5, -2, -1, -1]\noutput : list = [-72, -56, 72, 24, 8, 8]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(mul_n([4, 3, -5, -2, -1, -1],2),-2),1),-4),2)",
    "io_inp": [
      4,
      3,
      -5,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -72,
      -56,
      72,
      24,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(mul_n(input,2),-2),1),-4),2)"
  },
  {
    "input": "input : list = [2, 1, 3]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc([2, 1, 3]),1),1)),30)",
    "io_inp": [
      2,
      1,
      3
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc(input),1),1)),30)"
  },
  {
    "input": "input : list = [-2, -2, 3, 3, -5]\noutput : list = [-6, -3, -3, 2, 2]",
    "output": "generated_output : list = sort_asc(take(sub_n([-2, -2, 3, 3, -5],1),8))",
    "io_inp": [
      -2,
      -2,
      3,
      3,
      -5
    ],
    "io_out": [
      -6,
      -3,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,1),8))"
  },
  {
    "input": "input : list = [2, 2, -4]\noutput : list = [-8, -8, 16]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(mul_n([2, 2, -4],-4),-5),5)),1)",
    "io_inp": [
      2,
      2,
      -4
    ],
    "io_out": [
      -8,
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(mul_n(input,-4),-5),5)),1)"
  },
  {
    "input": "input : list = [0, -2, -1, 4, -5]\noutput : list = [-1, 2, 3, 4, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(reverse([0, -2, -1, 4, -5])))),-4)",
    "io_inp": [
      0,
      -2,
      -1,
      4,
      -5
    ],
    "io_out": [
      -1,
      2,
      3,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [3, -1, 3, -2, -5]\noutput : list = [-31, -13, -7, 17, 17]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(mul_n([3, -1, 3, -2, -5],2),3),1),11))",
    "io_inp": [
      3,
      -1,
      3,
      -2,
      -5
    ],
    "io_out": [
      -31,
      -13,
      -7,
      17,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(mul_n(input,2),3),1),11))"
  },
  {
    "input": "input : list = [3, -1, 4, 5]\noutput : list = [90, -30, 120, 150]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([3, -1, 4, 5],2),-3),-5)",
    "io_inp": [
      3,
      -1,
      4,
      5
    ],
    "io_out": [
      90,
      -30,
      120,
      150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,2),-3),-5)"
  },
  {
    "input": "input : list = [-2, 0, 0, -3, 2]\noutput : list = [1, 3, 3, 0, 5]",
    "output": "generated_output : list = sub_n([-2, 0, 0, -3, 2],-3)",
    "io_inp": [
      -2,
      0,
      0,
      -3,
      2
    ],
    "io_out": [
      1,
      3,
      3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, 5, 5, 4]\noutput : list = [4, 5, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 5, 5, 4])",
    "io_inp": [
      5,
      5,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, -3, -3, -4, -1]\noutput : list = [-9, -7, -7, -3]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(drop([4, -3, -3, -3, -4, -1],2)),2),1))",
    "io_inp": [
      4,
      -3,
      -3,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(drop(input,2)),2),1))"
  },
  {
    "input": "input : list = [-3, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = drop([-3, 1, 1],1)",
    "io_inp": [
      -3,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -3, -4, -5, -4, 3]\noutput : list = [-1, 0, 0, 1, 2, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(add_n([-2, -3, -4, -5, -4, 3],5),-2)),3))",
    "io_inp": [
      -2,
      -3,
      -4,
      -5,
      -4,
      3
    ],
    "io_out": [
      -1,
      0,
      0,
      1,
      2,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(add_n(input,5),-2)),3))"
  },
  {
    "input": "input : list = [1, -2, 4, -5]\noutput : list = [8, -4]",
    "output": "generated_output : list = sort_des(mul_n(take([1, -2, 4, -5],2),-4))",
    "io_inp": [
      1,
      -2,
      4,
      -5
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,2),-4))"
  },
  {
    "input": "input : list = [1, 3, 0, -1, -3]\noutput : list = [2, 4, 5, 6, 8]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc([1, 3, 0, -1, -3])),-5))",
    "io_inp": [
      1,
      3,
      0,
      -1,
      -3
    ],
    "io_out": [
      2,
      4,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(input)),-5))"
  },
  {
    "input": "input : list = [-4, -2, -1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -2, -1],1)",
    "io_inp": [
      -4,
      -2,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -3, -2, 1]\noutput : list = [-9, 15]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(take([3, -3, -2, 1],2),4)),10),-3)",
    "io_inp": [
      3,
      -3,
      -2,
      1
    ],
    "io_out": [
      -9,
      15
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(take(input,2),4)),10),-3)"
  },
  {
    "input": "input : list = [-1, -4, -5, -5]\noutput : list = [-9, -9, -8, -5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(sub_n([-1, -4, -5, -5],4)))))",
    "io_inp": [
      -1,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [4]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(add_n([2, 5],2))),1),-3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(add_n(input,2))),1),-3)"
  },
  {
    "input": "input : list = [1, 4, -3, 2]\noutput : list = [-6, -11, -4, -7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n([1, 4, -3, 2],-1),1),3)),3)",
    "io_inp": [
      1,
      4,
      -3,
      2
    ],
    "io_out": [
      -6,
      -11,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n(input,-1),1),3)),3)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [-9, -5, -1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(sub_n([3, -5, -1],3),18),-1)))",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(sub_n(input,3),18),-1)))"
  },
  {
    "input": "input : list = [1, -3, -5, -3, 2, -3]\noutput : list = [-5, -3, -3, -3, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([1, -3, -5, -3, 2, -3])))",
    "io_inp": [
      1,
      -3,
      -5,
      -3,
      2,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [0, 1, 0, -5]\noutput : list = [-5, 0, 1, 0]",
    "output": "generated_output : list = reverse([0, 1, 0, -5])",
    "io_inp": [
      0,
      1,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -3, -1, 2, 4, -1]\noutput : list = [2, -3, -1, 2, 4, 1]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(sub_n([0, -3, -1, 2, 4, -1],-1)),3),1),-1)",
    "io_inp": [
      0,
      -3,
      -1,
      2,
      4,
      -1
    ],
    "io_out": [
      2,
      -3,
      -1,
      2,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(sub_n(input,-1)),3),1),-1)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [24, 36]",
    "output": "generated_output : list = mul_n(take(mul_n([-2, -3],3),9),-4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      24,
      36
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,3),9),-4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [9, 9]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(mul_n([1, 1],5),4),9)))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(mul_n(input,5),4),9)))"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [3, 3, -1]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(reverse([4, 0, 4]),-1),9)))",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(reverse(input),-1),9)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [5, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(sort_asc([-5, 1]),3),-3)),2)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(sort_asc(input),3),-3)),2)"
  },
  {
    "input": "input : list = [-3, 3, -1, 5]\noutput : list = [7, -1, -17, -25]",
    "output": "generated_output : list = sort_des(add_n(mul_n([-3, 3, -1, 5],-4),-5))",
    "io_inp": [
      -3,
      3,
      -1,
      5
    ],
    "io_out": [
      7,
      -1,
      -17,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,-4),-5))"
  },
  {
    "input": "input : list = [-1, -2, 3, 3, 3]\noutput : list = [-1, -2, 3, 3, 3]",
    "output": "generated_output : list = mul_n([-1, -2, 3, 3, 3],1)",
    "io_inp": [
      -1,
      -2,
      3,
      3,
      3
    ],
    "io_out": [
      -1,
      -2,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-2, 2, -5, 4]\noutput : list = [-8, -5, -1, 1]",
    "output": "generated_output : list = sort_asc(add_n([-2, 2, -5, 4],-3))",
    "io_inp": [
      -2,
      2,
      -5,
      4
    ],
    "io_out": [
      -8,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [-5, 0, 4, -5, -5]\noutput : list = [3, -1, -6, -6, -6]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(sort_asc([-5, 0, 4, -5, -5]))),-1))",
    "io_inp": [
      -5,
      0,
      4,
      -5,
      -5
    ],
    "io_out": [
      3,
      -1,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(sort_asc(input))),-1))"
  },
  {
    "input": "input : list = [1, -3, 4, -1]\noutput : list = [-18, 46, -66, 14]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(sub_n([1, -3, 4, -1],1),4),4),-4),-2)",
    "io_inp": [
      1,
      -3,
      4,
      -1
    ],
    "io_out": [
      -18,
      46,
      -66,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(sub_n(input,1),4),4),-4),-2)"
  },
  {
    "input": "input : list = [4, -1, 1, -4]\noutput : list = [-1, -6, -4, -9]",
    "output": "generated_output : list = sub_n([4, -1, 1, -4],5)",
    "io_inp": [
      4,
      -1,
      1,
      -4
    ],
    "io_out": [
      -1,
      -6,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, 3, 2, -3]\noutput : list = [3]",
    "output": "generated_output : list = reverse(take([3, 3, 2, -3],1))",
    "io_inp": [
      3,
      3,
      2,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-1, -7, -8]",
    "output": "generated_output : list = sort_des(add_n([-4, 3, -3],-4))",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -1,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [-2, -4, -3, -4, 0]\noutput : list = [-5, -5, -4, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(sort_asc([-2, -4, -3, -4, 0]))),-1))",
    "io_inp": [
      -2,
      -4,
      -3,
      -4,
      0
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(sort_asc(input))),-1))"
  },
  {
    "input": "input : list = [0, 5, -1]\noutput : list = [-3, 2, -4]",
    "output": "generated_output : list = sub_n([0, 5, -1],3)",
    "io_inp": [
      0,
      5,
      -1
    ],
    "io_out": [
      -3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, -3, -1, 3, 1, -3]\noutput : list = [-3, -3, -1, 1, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -3, -1, 3, 1, -3])",
    "io_inp": [
      1,
      -3,
      -1,
      3,
      1,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [3]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(take([3, 5, 4],1),-2),7),-1),-1)",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(take(input,1),-2),7),-1),-1)"
  },
  {
    "input": "input : list = [3, -1, -1, 3, 0, -3]\noutput : list = [7, 3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(take([3, -1, -1, 3, 0, -3],2),-1),-3)))",
    "io_inp": [
      3,
      -1,
      -1,
      3,
      0,
      -3
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(take(input,2),-1),-3)))"
  },
  {
    "input": "input : list = [-5, 5, 4, -1, -3]\noutput : list = [-8, 0, 8, 28, 32]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n([-5, 5, 4, -1, -3],-1)),-2),4)",
    "io_inp": [
      -5,
      5,
      4,
      -1,
      -3
    ],
    "io_out": [
      -8,
      0,
      8,
      28,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(input,-1)),-2),4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [3, 3]",
    "output": "generated_output : list = reverse(sub_n(reverse([0, 0]),-3))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse(drop([2, 1, 2],1))",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-2, -3, -5, -2]\noutput : list = [3]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(take([-2, -3, -5, -2],1)),-1)),1)",
    "io_inp": [
      -2,
      -3,
      -5,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(take(input,1)),-1)),1)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [2, 6, 10]",
    "output": "generated_output : list = mul_n([-1, -3, -5],-2)",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, 5, 2, 4, 4]\noutput : list = [4, 6, 6]",
    "output": "generated_output : list = add_n(drop([3, 5, 2, 4, 4],2),2)",
    "io_inp": [
      3,
      5,
      2,
      4,
      4
    ],
    "io_out": [
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),2)"
  },
  {
    "input": "input : list = [1, 1, 2, 5, 5]\noutput : list = [15, 15, 12, 3, 3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(add_n([1, 1, 2, 5, 5],-1),5))),-3)",
    "io_inp": [
      1,
      1,
      2,
      5,
      5
    ],
    "io_out": [
      15,
      15,
      12,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(add_n(input,-1),5))),-3)"
  },
  {
    "input": "input : list = [-4, -1, 5, 5]\noutput : list = [5, 5, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-4, -1, 5, 5])))",
    "io_inp": [
      -4,
      -1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, -3, 1, 0, -5]\noutput : list = [2, 0, 4, 3, -2]",
    "output": "generated_output : list = sub_n([-1, -3, 1, 0, -5],-3)",
    "io_inp": [
      -1,
      -3,
      1,
      0,
      -5
    ],
    "io_out": [
      2,
      0,
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(sort_des(add_n(take([-2, -1, 4],1),4)),-5)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(input,1),4)),-5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [4, -1]",
    "output": "generated_output : list = mul_n(add_n([-3, 2],-1),-1)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-1)"
  },
  {
    "input": "input : list = [5, 4, -5, 5]\noutput : list = [8, 8, 6, -12]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(reverse([5, 4, -5, 5]),2),-2)))",
    "io_inp": [
      5,
      4,
      -5,
      5
    ],
    "io_out": [
      8,
      8,
      6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(reverse(input),2),-2)))"
  },
  {
    "input": "input : list = [2, 5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(drop([2, 5, -4],1)))))",
    "io_inp": [
      2,
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [-5, -5, 4, -2]\noutput : list = [-8, -8, -5, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(sub_n([-5, -5, 4, -2],2),10),1)))",
    "io_inp": [
      -5,
      -5,
      4,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(sub_n(input,2),10),1)))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(sub_n([-2, 0],-5),8))))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(sub_n(input,-5),8))))"
  },
  {
    "input": "input : list = [1, 2, 4]\noutput : list = [10, 20, 25]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(reverse([1, 2, 4]),3),3),-5),43)",
    "io_inp": [
      1,
      2,
      4
    ],
    "io_out": [
      10,
      20,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(reverse(input),3),3),-5),43)"
  },
  {
    "input": "input : list = [-2, 4, 5, 4, -3]\noutput : list = [-32, -28, -28, -4, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-2, 4, 5, 4, -3],-3)),-4)",
    "io_inp": [
      -2,
      4,
      5,
      4,
      -3
    ],
    "io_out": [
      -32,
      -28,
      -28,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-3)),-4)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n([-1, 3],-5)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [1, 4, 1]",
    "output": "generated_output : list = add_n([-1, 2, -1],2)",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      1,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, 0, 3, 4, 1, 2]\noutput : list = [5, 4, 3, 2, 1, -4]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_des([-5, 0, 3, 4, 1, 2])),-2)),-1)",
    "io_inp": [
      -5,
      0,
      3,
      4,
      1,
      2
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_des(input)),-2)),-1)"
  },
  {
    "input": "input : list = [4, -4, 5, -3, -1, -5]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(drop([4, -4, 5, -3, -1, -5],4),-3)))",
    "io_inp": [
      4,
      -4,
      5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(drop(input,4),-3)))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(add_n([0, -4],-4)),1),-1),2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(add_n(input,-4)),1),-1),2)"
  },
  {
    "input": "input : list = [-1, -2, -1, -5]\noutput : list = [-2, -2, -4, -10]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sort_des([-1, -2, -1, -5])),2)))",
    "io_inp": [
      -1,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [-1, -1, -1, -4, 5, 1]\noutput : list = [1, 1, 1, -2, 7, 3]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n([-1, -1, -1, -4, 5, 1],-2),7),3),3)",
    "io_inp": [
      -1,
      -1,
      -1,
      -4,
      5,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      -2,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(input,-2),7),3),3)"
  },
  {
    "input": "input : list = [5, -4, 2, -2, -4, -5]\noutput : list = [-4, -13, -7, -11]",
    "output": "generated_output : list = add_n(take(take(add_n(take([5, -4, 2, -2, -4, -5],4),-5),31),39),-4)",
    "io_inp": [
      5,
      -4,
      2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -13,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(take(input,4),-5),31),39),-4)"
  },
  {
    "input": "input : list = [-3, 4, 5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(drop([-3, 4, 5, -1],2))",
    "io_inp": [
      -3,
      4,
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [3, -3, 5, 5, -2]\noutput : list = [-9, -6, 9, 15, 15]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(mul_n([3, -3, 5, 5, -2],3)),1)),1)",
    "io_inp": [
      3,
      -3,
      5,
      5,
      -2
    ],
    "io_out": [
      -9,
      -6,
      9,
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(mul_n(input,3)),1)),1)"
  },
  {
    "input": "input : list = [5, 5, -3, 1]\noutput : list = [0, 0, -8, -4]",
    "output": "generated_output : list = add_n([5, 5, -3, 1],-5)",
    "io_inp": [
      5,
      5,
      -3,
      1
    ],
    "io_out": [
      0,
      0,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 1, 1, -5, 3]\noutput : list = [0, -2, -2, -8, -8]",
    "output": "generated_output : list = sort_des(take(reverse(add_n([-5, 1, 1, -5, 3],-3)),33))",
    "io_inp": [
      -5,
      1,
      1,
      -5,
      3
    ],
    "io_out": [
      0,
      -2,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(input,-3)),33))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(drop(sort_des([5, -1]),1)),-4),5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(drop(sort_des(input),1)),-4),5)"
  },
  {
    "input": "input : list = [2, -1, -5, -2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n(drop([2, -1, -5, -2],2),1)",
    "io_inp": [
      2,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),1)"
  },
  {
    "input": "input : list = [-3, 2, 5, -5, -3]\noutput : list = [-6, -4, -4, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sort_des([-3, 2, 5, -5, -3]),3))),-2)",
    "io_inp": [
      -3,
      2,
      5,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sort_des(input),3))),-2)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-14, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(add_n([-3, -1],5),-4)),2),-4)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -14,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(add_n(input,5),-4)),2),-4)"
  },
  {
    "input": "input : list = [0, -2, -5, -1, 5, 5]\noutput : list = [30, 30]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(drop([0, -2, -5, -1, 5, 5],4)),1),18),5)",
    "io_inp": [
      0,
      -2,
      -5,
      -1,
      5,
      5
    ],
    "io_out": [
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(drop(input,4)),1),18),5)"
  },
  {
    "input": "input : list = [-2, -1, 1, 0, 1]\noutput : list = [1, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des([-2, -1, 1, 0, 1])",
    "io_inp": [
      -2,
      -1,
      1,
      0,
      1
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 2, -4]\noutput : list = [-8, -4, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 2, -4],2))",
    "io_inp": [
      -2,
      2,
      -4
    ],
    "io_out": [
      -8,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-3, -3, -10]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(add_n([2, -5, 2],-1),-4))))",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -3,
      -3,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(add_n(input,-1),-4))))"
  },
  {
    "input": "input : list = [-4, -4, -2, -4, 0, -1]\noutput : list = [0, -1, -2, -4, -4, -4]",
    "output": "generated_output : list = sort_des([-4, -4, -2, -4, 0, -1])",
    "io_inp": [
      -4,
      -4,
      -2,
      -4,
      0,
      -1
    ],
    "io_out": [
      0,
      -1,
      -2,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -3, -4, 2]\noutput : list = [-4, -3, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([1, -3, -4, 2],2)),2)",
    "io_inp": [
      1,
      -3,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,2)),2)"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [-17, -8, 10]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([1, 4, -5],-3),-5))",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      -17,
      -8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,-3),-5))"
  },
  {
    "input": "input : list = [0, 3, 5, 0, -5]\noutput : list = [-8, -3, -3, 0]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(drop(sort_des([0, 3, 5, 0, -5]),1),1)),-2)",
    "io_inp": [
      0,
      3,
      5,
      0,
      -5
    ],
    "io_out": [
      -8,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(drop(sort_des(input),1),1)),-2)"
  },
  {
    "input": "input : list = [0, -2, -3, -3]\noutput : list = [0, -32, -48, -48]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(reverse([0, -2, -3, -3]))),4),4)",
    "io_inp": [
      0,
      -2,
      -3,
      -3
    ],
    "io_out": [
      0,
      -32,
      -48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(reverse(input))),4),4)"
  },
  {
    "input": "input : list = [-2, 2, 2, -1, 1]\noutput : list = [-2, -1, 1, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 2, 2, -1, 1]))",
    "io_inp": [
      -2,
      2,
      2,
      -1,
      1
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 4, -3, -3]\noutput : list = [-2, 2, -5, -5]",
    "output": "generated_output : list = take(add_n([0, 4, -3, -3],-2),8)",
    "io_inp": [
      0,
      4,
      -3,
      -3
    ],
    "io_out": [
      -2,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),8)"
  },
  {
    "input": "input : list = [-2, -2, -2, -5, 4, 1]\noutput : list = [5, 2, -1, -1, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n([-2, -2, -2, -5, 4, 1],-1))))",
    "io_inp": [
      -2,
      -2,
      -2,
      -5,
      4,
      1
    ],
    "io_out": [
      5,
      2,
      -1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(input,-1))))"
  },
  {
    "input": "input : list = [-4, -2, 3, 0, 2, 2]\noutput : list = [3, 2, 2, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(sort_asc([-4, -2, 3, 0, 2, 2]),11))))",
    "io_inp": [
      -4,
      -2,
      3,
      0,
      2,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(sort_asc(input),11))))"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [0, 1, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sort_asc([-5, 0, -1]),-1))))",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, -3, 2],1),14)",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),14)"
  },
  {
    "input": "input : list = [3, 1, -1]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(take([3, 1, -1],1),9)),-1))",
    "io_inp": [
      3,
      1,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(take(input,1),9)),-1))"
  },
  {
    "input": "input : list = [4, -4, -5]\noutput : list = [-5, -4, 4]",
    "output": "generated_output : list = reverse([4, -4, -5])",
    "io_inp": [
      4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(drop(sub_n([4, 4, 1, 3],4),2),-1)))",
    "io_inp": [
      4,
      4,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(drop(sub_n(input,4),2),-1)))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-13, -3]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(mul_n([0, -5],2),3),17),20))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -13,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(mul_n(input,2),3),17),20))"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [-6, -6, 9]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(mul_n([-2, -2, 3],3)),1),20),43)",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      -6,
      -6,
      9
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(mul_n(input,3)),1),20),43)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-12, -12]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n([-1, -1],-2),3),3))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(input,-2),3),3))"
  },
  {
    "input": "input : list = [-2, 0, -3]\noutput : list = [-3, -1, -4]",
    "output": "generated_output : list = sub_n([-2, 0, -3],1)",
    "io_inp": [
      -2,
      0,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [12, 8]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(drop([3, 2, -2],1),5)),5))",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      12,
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(drop(input,1),5)),5))"
  },
  {
    "input": "input : list = [1, -3, 1, -2, -3, 2]\noutput : list = [-4, -6, -6, -12, -14, -14]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(add_n([1, -3, 1, -2, -3, 2],1)),-5),2))",
    "io_inp": [
      1,
      -3,
      1,
      -2,
      -3,
      2
    ],
    "io_out": [
      -4,
      -6,
      -6,
      -12,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(add_n(input,1)),-5),2))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-1, -3])),-2)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),-2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-30, -18]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(sort_des([-3, -5]),7)),-3),-2)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -30,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(sort_des(input),7)),-3),-2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(sort_des(reverse(add_n(reverse([4, 2]),-3))),3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(add_n(reverse(input),-3))),3)"
  },
  {
    "input": "input : list = [-4, 4, 0, -2, -2]\noutput : list = [-9]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(take([-4, 4, 0, -2, -2],1),5)),37),7)",
    "io_inp": [
      -4,
      4,
      0,
      -2,
      -2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(take(input,1),5)),37),7)"
  },
  {
    "input": "input : list = [-2, -5, -2]\noutput : list = [-1, -4, -4]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc([-2, -5, -2]),-1),-4),-2)",
    "io_inp": [
      -2,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(input),-1),-4),-2)"
  },
  {
    "input": "input : list = [-5, -1, 0, -5, 0, 0]\noutput : list = [0, 0, 4, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(mul_n([-5, -1, 0, -5, 0, 0],1))),-5))",
    "io_inp": [
      -5,
      -1,
      0,
      -5,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      4,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(mul_n(input,1))),-5))"
  },
  {
    "input": "input : list = [-1, 5, -3, 4]\noutput : list = [-22, -19, -4, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sub_n([-1, 5, -3, 4],-4),-3))),-5)",
    "io_inp": [
      -1,
      5,
      -3,
      4
    ],
    "io_out": [
      -22,
      -19,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sub_n(input,-4),-3))),-5)"
  },
  {
    "input": "input : list = [-5, 3, 2, 1, 0]\noutput : list = [-5, 0, 1, 2, 3]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(sub_n([-5, 3, 2, 1, 0],2)),-2)),6)",
    "io_inp": [
      -5,
      3,
      2,
      1,
      0
    ],
    "io_out": [
      -5,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(sub_n(input,2)),-2)),6)"
  },
  {
    "input": "input : list = [4, 0, -4, 4, -5, 2]\noutput : list = [-5, -4, 0, 2, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 0, -4, 4, -5, 2])",
    "io_inp": [
      4,
      0,
      -4,
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      -4,
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3, -3, 1, 5, -3]\noutput : list = [0, -3, -3, 1, 5, -3]",
    "output": "generated_output : list = mul_n([0, -3, -3, 1, 5, -3],1)",
    "io_inp": [
      0,
      -3,
      -3,
      1,
      5,
      -3
    ],
    "io_out": [
      0,
      -3,
      -3,
      1,
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -4, -5, -5, 3]\noutput : list = [10, 3, 2, 2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(drop([-1, -5, -4, -5, -5, 3],2)),2),-5)",
    "io_inp": [
      -1,
      -5,
      -4,
      -5,
      -5,
      3
    ],
    "io_out": [
      10,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(drop(input,2)),2),-5)"
  },
  {
    "input": "input : list = [-5, -1, 3, 1]\noutput : list = [0, 4, 8, 6]",
    "output": "generated_output : list = add_n([-5, -1, 3, 1],5)",
    "io_inp": [
      -5,
      -1,
      3,
      1
    ],
    "io_out": [
      0,
      4,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, -5, 5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(take([5, -5, 5, -5],2),1),-3),-4))",
    "io_inp": [
      5,
      -5,
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(take(input,2),1),-3),-4))"
  },
  {
    "input": "input : list = [-1, 1, 5, -3]\noutput : list = [-20, -10, 0, 20]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc([-1, 1, 5, -3]),14),5),5)",
    "io_inp": [
      -1,
      1,
      5,
      -3
    ],
    "io_out": [
      -20,
      -10,
      0,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(input),14),5),5)"
  },
  {
    "input": "input : list = [-2, -5, 2, -4, 2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(take([-2, -5, 2, -4, 2],1),-4),2),3),-1)",
    "io_inp": [
      -2,
      -5,
      2,
      -4,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(take(input,1),-4),2),3),-1)"
  },
  {
    "input": "input : list = [0, -2, -2, -3]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(take([0, -2, -2, -3],1),-3),23)),-3)",
    "io_inp": [
      0,
      -2,
      -2,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(take(input,1),-3),23)),-3)"
  },
  {
    "input": "input : list = [2, -2, -5, 5, -2]\noutput : list = [-2, -5, 5, -2]",
    "output": "generated_output : list = drop([2, -2, -5, 5, -2],1)",
    "io_inp": [
      2,
      -2,
      -5,
      5,
      -2
    ],
    "io_out": [
      -2,
      -5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [28, 28, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(add_n([3, -4, -4],-3),-4)),9))",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      28,
      28,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(add_n(input,-3),-4)),9))"
  },
  {
    "input": "input : list = [2, 5, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_des([2, 5, 2]))),2))",
    "io_inp": [
      2,
      5,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [1, 5, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(sort_des([-3, 1, 2]))),17),-4)",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(sort_des(input))),17),-4)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-3, -4]",
    "output": "generated_output : list = add_n([1, 0],-4)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 0, -3, -2, -3, 4]\noutput : list = [4]",
    "output": "generated_output : list = drop(drop([-2, 0, -3, -2, -3, 4],4),1)",
    "io_inp": [
      -2,
      0,
      -3,
      -2,
      -3,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = drop(drop(input,4),1)"
  },
  {
    "input": "input : list = [2, -2, 4, -1]\noutput : list = [-2, 3, -3, 1]",
    "output": "generated_output : list = reverse(sub_n(add_n([2, -2, 4, -1],-2),-1))",
    "io_inp": [
      2,
      -2,
      4,
      -1
    ],
    "io_out": [
      -2,
      3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-2),-1))"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(take([3, 2, -2],1)),-5),23),-2)",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(take(input,1)),-5),23),-2)"
  },
  {
    "input": "input : list = [3, 4, 3, -1]\noutput : list = [-5, -9, -9, -10]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(add_n([3, 4, 3, -1],4)),-1),2)",
    "io_inp": [
      3,
      4,
      3,
      -1
    ],
    "io_out": [
      -5,
      -9,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(add_n(input,4)),-1),2)"
  },
  {
    "input": "input : list = [-1, -1, 5, 4, 0, -1]\noutput : list = [-4, -4, -4, -3, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(sub_n([-1, -1, 5, 4, 0, -1],5),12),2)))",
    "io_inp": [
      -1,
      -1,
      5,
      4,
      0,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(sub_n(input,5),12),2)))"
  },
  {
    "input": "input : list = [-1, -1, 1, -1]\noutput : list = [-2, -2, 2]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(drop([-1, -1, 1, -1],1),2)),14))",
    "io_inp": [
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(drop(input,1),2)),14))"
  },
  {
    "input": "input : list = [3, -1, 3, 1, -3, -1]\noutput : list = [-20, -20, -16, -12, -12, -8]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(add_n([3, -1, 3, 1, -3, -1],4),15),-3)),-2)",
    "io_inp": [
      3,
      -1,
      3,
      1,
      -3,
      -1
    ],
    "io_out": [
      -20,
      -20,
      -16,
      -12,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(add_n(input,4),15),-3)),-2)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [0, 4]",
    "output": "generated_output : list = sub_n([-5, -1],-5)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -5, -1, 3, -1]\noutput : list = [-5, -2, -1, -1, 3]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des([-2, -5, -1, 3, -1]))),25)",
    "io_inp": [
      -2,
      -5,
      -1,
      3,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(input))),25)"
  },
  {
    "input": "input : list = [3, 1, 0, -1, 2]\noutput : list = [-4, -3, -2, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc([3, 1, 0, -1, 2]),-3)",
    "io_inp": [
      3,
      1,
      0,
      -1,
      2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [4, -2, -3, 5, -1, -2]\noutput : list = [5, 4, -1, -2, -2, -3]",
    "output": "generated_output : list = sort_des([4, -2, -3, 5, -1, -2])",
    "io_inp": [
      4,
      -2,
      -3,
      5,
      -1,
      -2
    ],
    "io_out": [
      5,
      4,
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, -5, -2]\noutput : list = [-3, -9]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(take([-3, 3, -5, -2],2),2),5),3))",
    "io_inp": [
      -3,
      3,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(take(input,2),2),5),3))"
  },
  {
    "input": "input : list = [-2, 3, -3, -2, 0, 5]\noutput : list = [7, 5, 5, 1, -5, -9]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_asc(sort_des([-2, 3, -3, -2, 0, 5])),-2),1))",
    "io_inp": [
      -2,
      3,
      -3,
      -2,
      0,
      5
    ],
    "io_out": [
      7,
      5,
      5,
      1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_asc(sort_des(input)),-2),1))"
  },
  {
    "input": "input : list = [-2, 1, 1, 0, 0, -3]\noutput : list = [-1, 1, 1, 2, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(reverse([-2, 1, 1, 0, 0, -3])),5),1))",
    "io_inp": [
      -2,
      1,
      1,
      0,
      0,
      -3
    ],
    "io_out": [
      -1,
      1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(reverse(input)),5),1))"
  },
  {
    "input": "input : list = [-3, 3, 2, 2, -2, 4]\noutput : list = [9, 7, 3]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(drop([-3, 3, 2, 2, -2, 4],3))),5),1)",
    "io_inp": [
      -3,
      3,
      2,
      2,
      -2,
      4
    ],
    "io_out": [
      9,
      7,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(drop(input,3))),5),1)"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [13, 1]",
    "output": "generated_output : list = take(add_n(mul_n(drop([-5, 5, -1],1),2),3),30)",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      13,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(drop(input,1),2),3),30)"
  },
  {
    "input": "input : list = [5, 4, 4, -3]\noutput : list = [-10, -3, -3, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(add_n([5, 4, 4, -3],-5))),2),4)",
    "io_inp": [
      5,
      4,
      4,
      -3
    ],
    "io_out": [
      -10,
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(add_n(input,-5))),2),4)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [1, 2, 9]",
    "output": "generated_output : list = sub_n([-4, -3, 4],-5)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      1,
      2,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, 0, 1, 1, -4]\noutput : list = [-7, 1, 3, 3, 11]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(sort_des([5, 0, 1, 1, -4])),2),10),1)",
    "io_inp": [
      5,
      0,
      1,
      1,
      -4
    ],
    "io_out": [
      -7,
      1,
      3,
      3,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(sort_des(input)),2),10),1)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [9, 6]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_asc([1, 4]),-5)),8),26)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_asc(input),-5)),8),26)"
  },
  {
    "input": "input : list = [-5, -1, -2, 5]\noutput : list = [6, 0, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_asc([-5, -1, -2, 5]),-1))))",
    "io_inp": [
      -5,
      -1,
      -2,
      5
    ],
    "io_out": [
      6,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [-1, 1, 4]\noutput : list = [-3, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([-1, 1, 4],-2)))",
    "io_inp": [
      -1,
      1,
      4
    ],
    "io_out": [
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-2)))"
  },
  {
    "input": "input : list = [-2, -5, -2, 3]\noutput : list = [-9]",
    "output": "generated_output : list = take(sort_asc(mul_n([-2, -5, -2, 3],-3)),1)",
    "io_inp": [
      -2,
      -5,
      -2,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-3)),1)"
  },
  {
    "input": "input : list = [-2, 1, 4, 2]\noutput : list = [4, -2, -8, -4]",
    "output": "generated_output : list = mul_n([-2, 1, 4, 2],-2)",
    "io_inp": [
      -2,
      1,
      4,
      2
    ],
    "io_out": [
      4,
      -2,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, 0, -2, -4]\noutput : list = [-2, 4, 10, 13]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(mul_n([1, 0, -2, -4],3),-5)),-5),1)",
    "io_inp": [
      1,
      0,
      -2,
      -4
    ],
    "io_out": [
      -2,
      4,
      10,
      13
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(mul_n(input,3),-5)),-5),1)"
  },
  {
    "input": "input : list = [5, 5, 5, -3, 0, 4]\noutput : list = [1, 1, 1, -7, -4, 0]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(reverse([5, 5, 5, -3, 0, 4]),2)),-1),3)",
    "io_inp": [
      5,
      5,
      5,
      -3,
      0,
      4
    ],
    "io_out": [
      1,
      1,
      1,
      -7,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(reverse(input),2)),-1),3)"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [3, 9, 9]",
    "output": "generated_output : list = mul_n(mul_n([-1, -3, -3],1),-3)",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      3,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-3)"
  },
  {
    "input": "input : list = [-2, 5, 1]\noutput : list = [-7]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(take([-2, 5, 1],1),2),3)))",
    "io_inp": [
      -2,
      5,
      1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(take(input,1),2),3)))"
  },
  {
    "input": "input : list = [2, 5, -3, -1]\noutput : list = [-10, 2, 6]",
    "output": "generated_output : list = sort_asc(mul_n(drop([2, 5, -3, -1],1),-2))",
    "io_inp": [
      2,
      5,
      -3,
      -1
    ],
    "io_out": [
      -10,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,1),-2))"
  },
  {
    "input": "input : list = [-5, -1, -3, -2, -5]\noutput : list = [6, -2, 2]",
    "output": "generated_output : list = add_n(mul_n(take([-5, -1, -3, -2, -5],3),-2),-4)",
    "io_inp": [
      -5,
      -1,
      -3,
      -2,
      -5
    ],
    "io_out": [
      6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,3),-2),-4)"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-5, -3, 0]",
    "output": "generated_output : list = take(reverse(sort_des(take(sort_asc([-3, -5, 0]),12))),34)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(sort_asc(input),12))),34)"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(mul_n(take([-5, -4, -4],1),1))",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),1))"
  },
  {
    "input": "input : list = [2, 5, 3, 5, 2]\noutput : list = [-3, -3, -5, -6, -6]",
    "output": "generated_output : list = take(sort_des(reverse(add_n(sub_n([2, 5, 3, 5, 2],4),-4))),18)",
    "io_inp": [
      2,
      5,
      3,
      5,
      2
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(add_n(sub_n(input,4),-4))),18)"
  },
  {
    "input": "input : list = [-4, -1, 3, 3]\noutput : list = [20, 20, 4, -8]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(sort_des([-4, -1, 3, 3]),9),-1),4),-4)",
    "io_inp": [
      -4,
      -1,
      3,
      3
    ],
    "io_out": [
      20,
      20,
      4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(sort_des(input),9),-1),4),-4)"
  },
  {
    "input": "input : list = [4, 5, -1, 3]\noutput : list = [-100, -80, -60, 20]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_des([4, 5, -1, 3]),-4)),5))",
    "io_inp": [
      4,
      5,
      -1,
      3
    ],
    "io_out": [
      -100,
      -80,
      -60,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_des(input),-4)),5))"
  },
  {
    "input": "input : list = [1, 2, 2, 2]\noutput : list = [-2, -4, -4, -4]",
    "output": "generated_output : list = mul_n([1, 2, 2, 2],-2)",
    "io_inp": [
      1,
      2,
      2,
      2
    ],
    "io_out": [
      -2,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 3, 4, -3, 4, 3]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(take([-1, 3, 4, -3, 4, 3],3)))),8)",
    "io_inp": [
      -1,
      3,
      4,
      -3,
      4,
      3
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(take(input,3)))),8)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-7, -10]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_des([-4, -1]))),4),2)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_des(input))),4),2)"
  },
  {
    "input": "input : list = [0, -5, 3, -4, -1, 1]\noutput : list = [11, 9, 6]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(drop([0, -5, 3, -4, -1, 1],3)),-5),-5),6)",
    "io_inp": [
      0,
      -5,
      3,
      -4,
      -1,
      1
    ],
    "io_out": [
      11,
      9,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(drop(input,3)),-5),-5),6)"
  },
  {
    "input": "input : list = [4, 3, 3, -1, 3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(sort_des(drop([4, 3, 3, -1, 3],3)),-4)",
    "io_inp": [
      4,
      3,
      3,
      -1,
      3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,3)),-4)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(sort_des([4, -5]),-1)),14))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(sort_des(input),-1)),14))"
  },
  {
    "input": "input : list = [1, -2, -1, -3]\noutput : list = [-2, 2, 4, 6]",
    "output": "generated_output : list = sort_asc(mul_n([1, -2, -1, -3],-2))",
    "io_inp": [
      1,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 1, 2, -4]\noutput : list = [7, 6, 4, 1]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(sort_asc([-1, 1, 2, -4])),3),-2))",
    "io_inp": [
      -1,
      1,
      2,
      -4
    ],
    "io_out": [
      7,
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(sort_asc(input)),3),-2))"
  },
  {
    "input": "input : list = [1, -2, 2, -3]\noutput : list = [-3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des([1, -2, 2, -3]),12))))",
    "io_inp": [
      1,
      -2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des(input),12))))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-2, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(reverse([3, 5]))),-5))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(reverse(input))),-5))"
  },
  {
    "input": "input : list = [-5, 1, -4, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = take(take([-5, 1, -4, -5],2),12)",
    "io_inp": [
      -5,
      1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(take(input,2),12)"
  },
  {
    "input": "input : list = [2, -1, -5, -4]\noutput : list = [-30]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(add_n([2, -1, -5, -4],1),-3)),5),1)",
    "io_inp": [
      2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(add_n(input,1),-3)),5),1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-4, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(sort_des([3, 1])),-4)))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-2, 3, -1, -2, 4, 0]\noutput : list = [-13, -8, -12, -13, -7, -11]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-2, 3, -1, -2, 4, 0],5),-3),3)",
    "io_inp": [
      -2,
      3,
      -1,
      -2,
      4,
      0
    ],
    "io_out": [
      -13,
      -8,
      -12,
      -13,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,5),-3),3)"
  },
  {
    "input": "input : list = [-1, 2, 0, 5]\noutput : list = [9, 6, 4, 3]",
    "output": "generated_output : list = take(add_n(sort_des([-1, 2, 0, 5]),4),29)",
    "io_inp": [
      -1,
      2,
      0,
      5
    ],
    "io_out": [
      9,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),4),29)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc([3, 3])",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0, 1, 0]\noutput : list = [-35, -15, -20, -15]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(reverse([4, 0, 1, 0])),5),2),-5)",
    "io_inp": [
      4,
      0,
      1,
      0
    ],
    "io_out": [
      -35,
      -15,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(reverse(input)),5),2),-5)"
  },
  {
    "input": "input : list = [3, -3, 2, 1, 1, 3]\noutput : list = [-2, 2, 2, 3, 4, 4]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n([3, -3, 2, 1, 1, 3],5)),29),-1),5)",
    "io_inp": [
      3,
      -3,
      2,
      1,
      1,
      3
    ],
    "io_out": [
      -2,
      2,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n(input,5)),29),-1),5)"
  },
  {
    "input": "input : list = [-2, -4, -2, -2, 1]\noutput : list = [-6, -8, -6, -6, -3]",
    "output": "generated_output : list = sub_n([-2, -4, -2, -2, 1],4)",
    "io_inp": [
      -2,
      -4,
      -2,
      -2,
      1
    ],
    "io_out": [
      -6,
      -8,
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [0, 2, 2, -5, -2, 1]\noutput : list = [2, 2, 1, 0, -2, -5]",
    "output": "generated_output : list = sort_des(mul_n([0, 2, 2, -5, -2, 1],1))",
    "io_inp": [
      0,
      2,
      2,
      -5,
      -2,
      1
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [4, -2]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc([-2, 4]))),6)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(input))),6)"
  },
  {
    "input": "input : list = [5, 2, 0, -4, -4]\noutput : list = [-8, -8, 0, 4, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([5, 2, 0, -4, -4]),2))",
    "io_inp": [
      5,
      2,
      0,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8,
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [2, -1, -4, -1]\noutput : list = [3, 0, 0, -3]",
    "output": "generated_output : list = take(sort_des(sub_n([2, -1, -4, -1],-1)),11)",
    "io_inp": [
      2,
      -1,
      -4,
      -1
    ],
    "io_out": [
      3,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,-1)),11)"
  },
  {
    "input": "input : list = [3, -4, 1]\noutput : list = [4, -2, -17]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_des([3, -4, 1])),3)),-5)",
    "io_inp": [
      3,
      -4,
      1
    ],
    "io_out": [
      4,
      -2,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_des(input)),3)),-5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 1, -5, 5]\noutput : list = [5, 1, -2, -5]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(reverse([-2, 1, -5, 5])))),8)",
    "io_inp": [
      -2,
      1,
      -5,
      5
    ],
    "io_out": [
      5,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(reverse(input)))),8)"
  },
  {
    "input": "input : list = [-5, 3, -3, 3, 0]\noutput : list = [3, 3, 0, -3, -5]",
    "output": "generated_output : list = sort_des([-5, 3, -3, 3, 0])",
    "io_inp": [
      -5,
      3,
      -3,
      3,
      0
    ],
    "io_out": [
      3,
      3,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [2, -3]",
    "output": "generated_output : list = sub_n(sort_des(add_n([0, -5],-3)),-5)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-3)),-5)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(sort_des([0, 0]),3))),-5)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(sort_des(input),3))),-5)"
  },
  {
    "input": "input : list = [4, -5, 0, 1, -3]\noutput : list = [14, 5, 2, -7, -13]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(sort_asc([4, -5, 0, 1, -3])),3),2))",
    "io_inp": [
      4,
      -5,
      0,
      1,
      -3
    ],
    "io_out": [
      14,
      5,
      2,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(sort_asc(input)),3),2))"
  },
  {
    "input": "input : list = [-3, -4, -2, -2, 1]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(drop([-3, -4, -2, -2, 1],2)),5),-3))",
    "io_inp": [
      -3,
      -4,
      -2,
      -2,
      1
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(drop(input,2)),5),-3))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-7, 9]",
    "output": "generated_output : list = add_n(mul_n([-4, 4],2),1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -7,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),1)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sub_n([5, 5],-5))),2),2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sub_n(input,-5))),2),2)"
  },
  {
    "input": "input : list = [-3, -2, -1, 1, -3]\noutput : list = [-1, 1, -3]",
    "output": "generated_output : list = take(add_n(drop(sub_n(drop([-3, -2, -1, 1, -3],1),-4),1),-4),21)",
    "io_inp": [
      -3,
      -2,
      -1,
      1,
      -3
    ],
    "io_out": [
      -1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(drop(sub_n(drop(input,1),-4),1),-4),21)"
  },
  {
    "input": "input : list = [0, 3, -1, 4]\noutput : list = [4]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(add_n([0, 3, -1, 4],2))),1),3)",
    "io_inp": [
      0,
      3,
      -1,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(add_n(input,2))),1),3)"
  },
  {
    "input": "input : list = [1, -3, 5, 1, 0, 2]\noutput : list = [6, 2, 10, 6, 5, 7]",
    "output": "generated_output : list = sub_n([1, -3, 5, 1, 0, 2],-5)",
    "io_inp": [
      1,
      -3,
      5,
      1,
      0,
      2
    ],
    "io_out": [
      6,
      2,
      10,
      6,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 2, -5, 3, 3, -1]\noutput : list = [4, 4, 3, 0, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n([-5, 2, -5, 3, 3, -1],-1),1)))",
    "io_inp": [
      -5,
      2,
      -5,
      3,
      3,
      -1
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(input,-1),1)))"
  },
  {
    "input": "input : list = [4, -2, -1, -4, 4, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(take([4, -2, -1, -4, 4, -2],1)))))",
    "io_inp": [
      4,
      -2,
      -1,
      -4,
      4,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [4, 4, 2]\noutput : list = [13, 21, 21]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(reverse([4, 4, 2]),4),5)))",
    "io_inp": [
      4,
      4,
      2
    ],
    "io_out": [
      13,
      21,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(reverse(input),4),5)))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [0, -7]",
    "output": "generated_output : list = add_n([2, -5],-2)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -3, 3, -5, 4]\noutput : list = [-6, -4, -4, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sort_des([-3, -3, 3, -5, 4])),-1)))",
    "io_inp": [
      -3,
      -3,
      3,
      -5,
      4
    ],
    "io_out": [
      -6,
      -4,
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [28, 8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(drop([-2, -3, 2],1),-1),4)),4)",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      28,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(drop(input,1),-1),4)),4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(sub_n([2, 1],-1),9),-3),5),2)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(sub_n(input,-1),9),-3),5),2)"
  },
  {
    "input": "input : list = [4, 4, 5, 4, -5, 5]\noutput : list = [50, -50, 40, 50, 40]",
    "output": "generated_output : list = reverse(mul_n(take(drop(mul_n([4, 4, 5, 4, -5, 5],5),1),21),2))",
    "io_inp": [
      4,
      4,
      5,
      4,
      -5,
      5
    ],
    "io_out": [
      50,
      -50,
      40,
      50,
      40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(drop(mul_n(input,5),1),21),2))"
  },
  {
    "input": "input : list = [-5, 1, 1, 2, -5]\noutput : list = [-9, -2]",
    "output": "generated_output : list = take(add_n(sort_asc(drop(drop([-5, 1, 1, 2, -5],1),2)),-4),6)",
    "io_inp": [
      -5,
      1,
      1,
      2,
      -5
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(drop(drop(input,1),2)),-4),6)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(mul_n(take(take(reverse([2, 3]),1),5),-2))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(reverse(input),1),5),-2))"
  },
  {
    "input": "input : list = [5, -2, 4, 4]\noutput : list = [3, 3, -3, 4]",
    "output": "generated_output : list = reverse(add_n([5, -2, 4, 4],-1))",
    "io_inp": [
      5,
      -2,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [3, 2, 5, -1, 1, -2]\noutput : list = [5, 3, 2, 1, -1, -2]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_des([3, 2, 5, -1, 1, -2])),1),1))",
    "io_inp": [
      3,
      2,
      5,
      -1,
      1,
      -2
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_des(input)),1),1))"
  },
  {
    "input": "input : list = [-4, -2, 3, -3, 0, 2]\noutput : list = [-10, -8, -3, -9, -6, -4]",
    "output": "generated_output : list = sub_n(add_n([-4, -2, 3, -3, 0, 2],-3),3)",
    "io_inp": [
      -4,
      -2,
      3,
      -3,
      0,
      2
    ],
    "io_out": [
      -10,
      -8,
      -3,
      -9,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(reverse([-3, 2])))))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [10, 5]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(sort_asc([-1, 4]),5),3),4))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(sort_asc(input),5),3),4))"
  },
  {
    "input": "input : list = [1, 4, 1, -4, -3]\noutput : list = [-4, -3, 1, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(sort_asc([1, 4, 1, -4, -3])))))",
    "io_inp": [
      1,
      4,
      1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -5, 0]\noutput : list = [0, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 0])",
    "io_inp": [
      3,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4, 4, 3]\noutput : list = [0, 1, 1, 0]",
    "output": "generated_output : list = sub_n([3, 4, 4, 3],3)",
    "io_inp": [
      3,
      4,
      4,
      3
    ],
    "io_out": [
      0,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(reverse(sub_n([-4, 4, 2],1)))),-1)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(reverse(sub_n(input,1)))),-1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-12, -9]",
    "output": "generated_output : list = mul_n([4, 3],-3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -4, -2, -3, 5]\noutput : list = [10, 10, 30, 20, 100]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-4, -4, -2, -3, 5],5),-2),-5)",
    "io_inp": [
      -4,
      -4,
      -2,
      -3,
      5
    ],
    "io_out": [
      10,
      10,
      30,
      20,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,5),-2),-5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(sort_asc([-4, -2]),14)),-3),-4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(sort_asc(input),14)),-3),-4)"
  },
  {
    "input": "input : list = [-5, -4, 0]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_asc([-5, -4, 0]),-1)),23))",
    "io_inp": [
      -5,
      -4,
      0
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_asc(input),-1)),23))"
  },
  {
    "input": "input : list = [-3, -5, 5, 2]\noutput : list = [20]",
    "output": "generated_output : list = take(mul_n(drop(sort_asc(sort_asc([-3, -5, 5, 2])),3),4),35)",
    "io_inp": [
      -3,
      -5,
      5,
      2
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(sort_asc(sort_asc(input)),3),4),35)"
  },
  {
    "input": "input : list = [4, 5, -1, 1]\noutput : list = [-3, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([4, 5, -1, 1]),-2))",
    "io_inp": [
      4,
      5,
      -1,
      1
    ],
    "io_out": [
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [-5, -5, 4, -5, -4, -4]\noutput : list = [-3, -3, -3, -2, -2, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n(sub_n([-5, -5, 4, -5, -4, -4],-5),-4))),1)",
    "io_inp": [
      -5,
      -5,
      4,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(sub_n(input,-5),-4))),1)"
  },
  {
    "input": "input : list = [-5, -2, 5, -3, 2]\noutput : list = [2, -3, 5, -2, -5]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse([-5, -2, 5, -3, 2]),4),-4),1)",
    "io_inp": [
      -5,
      -2,
      5,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(input),4),-4),1)"
  },
  {
    "input": "input : list = [3, 4, -5, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(take([3, 4, -5, 3],2))",
    "io_inp": [
      3,
      4,
      -5,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(drop([4, -2, 4],1))",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [1, 3, -5, 0, -5, -1]\noutput : list = [4, 4, -12, -16, -20, -28]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(add_n([1, 3, -5, 0, -5, -1],3),23),1),-4))",
    "io_inp": [
      1,
      3,
      -5,
      0,
      -5,
      -1
    ],
    "io_out": [
      4,
      4,
      -12,
      -16,
      -20,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(add_n(input,3),23),1),-4))"
  },
  {
    "input": "input : list = [1, 5, -3, -1, -1]\noutput : list = [-3, -1, -1, 1, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc([1, 5, -3, -1, -1])),35)",
    "io_inp": [
      1,
      5,
      -3,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),35)"
  },
  {
    "input": "input : list = [5, 0, 3, -3]\noutput : list = [1, 4, 6]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc([5, 0, 3, -3]),1)),3))",
    "io_inp": [
      5,
      0,
      3,
      -3
    ],
    "io_out": [
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc(input),1)),3))"
  },
  {
    "input": "input : list = [2, 5, -4, 0, 3]\noutput : list = [20, 10, 5, -5, -25]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(sort_asc([2, 5, -4, 0, 3])),12),5),-5)",
    "io_inp": [
      2,
      5,
      -4,
      0,
      3
    ],
    "io_out": [
      20,
      10,
      5,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(sort_asc(input)),12),5),-5)"
  },
  {
    "input": "input : list = [-2, -2, 4, 4, 3, 3]\noutput : list = [-9, -9, -3, -3, -4, -4]",
    "output": "generated_output : list = take(add_n(sub_n([-2, -2, 4, 4, 3, 3],4),-3),30)",
    "io_inp": [
      -2,
      -2,
      4,
      4,
      3,
      3
    ],
    "io_out": [
      -9,
      -9,
      -3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,4),-3),30)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([1, -2]),-1))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [0, 5, -2, -1, 3, -4]\noutput : list = [-4, -2, -1, 0, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_asc([0, 5, -2, -1, 3, -4])))))",
    "io_inp": [
      0,
      5,
      -2,
      -1,
      3,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, 2, 2, -5, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take(drop(take(mul_n(take([-5, 2, 2, -5, 1],2),-2),11),1),24)",
    "io_inp": [
      -5,
      2,
      2,
      -5,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(drop(take(mul_n(take(input,2),-2),11),1),24)"
  },
  {
    "input": "input : list = [2, 4, 4, 2, -5, -2]\noutput : list = [-10, -7, -3, -3, -1, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(add_n(add_n([2, 4, 4, 2, -5, -2],3),-5)),3),42)",
    "io_inp": [
      2,
      4,
      4,
      2,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -7,
      -3,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(add_n(add_n(input,3),-5)),3),42)"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [7, 7, 1]",
    "output": "generated_output : list = add_n([4, 4, -2],3)",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      7,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [5, 0]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_asc([-3, 2]),1),1),1),-1)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(sort_asc(input),1),1),1),-1)"
  },
  {
    "input": "input : list = [-2, 0, 0, -5, 4, -2]\noutput : list = [-11, -9, -9, -14, -5, -11]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(reverse([-2, 0, 0, -5, 4, -2]),5),18)),4)",
    "io_inp": [
      -2,
      0,
      0,
      -5,
      4,
      -2
    ],
    "io_out": [
      -11,
      -9,
      -9,
      -14,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(reverse(input),5),18)),4)"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [-16, -12, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-4, -3, 1],4))",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      -16,
      -12,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [-3, 3, -1]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sort_des([-3, 3, -1])),-1)))",
    "io_inp": [
      -3,
      3,
      -1
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-1, -5, -4, -2]\noutput : list = [-2, 10, 7, 1]",
    "output": "generated_output : list = add_n(mul_n([-1, -5, -4, -2],-3),-5)",
    "io_inp": [
      -1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -2,
      10,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),-5)"
  },
  {
    "input": "input : list = [1, 2, -4, 2, -2, 0]\noutput : list = [2, 2, 1, -4]",
    "output": "generated_output : list = sort_des(sort_des(take([1, 2, -4, 2, -2, 0],4)))",
    "io_inp": [
      1,
      2,
      -4,
      2,
      -2,
      0
    ],
    "io_out": [
      2,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,4)))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(reverse(sort_des([3, 3])),-3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [5, 1, -5, 2, 2]\noutput : list = [-10, 20, 25, 25, 40]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(sort_des([5, 1, -5, 2, 2]),3),5),19))",
    "io_inp": [
      5,
      1,
      -5,
      2,
      2
    ],
    "io_out": [
      -10,
      20,
      25,
      25,
      40
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(sort_des(input),3),5),19))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-4, -16]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(sort_des([4, 1]),-4),14)))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -4,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(sort_des(input),-4),14)))"
  },
  {
    "input": "input : list = [-3, 0, -4, 1, 0, 0]\noutput : list = [-4, -3, 0, 0, 0, 1]",
    "output": "generated_output : list = sort_asc([-3, 0, -4, 1, 0, 0])",
    "io_inp": [
      -3,
      0,
      -4,
      1,
      0,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0, 3, 5]\noutput : list = [5, 3, 0, -3]",
    "output": "generated_output : list = reverse([-3, 0, 3, 5])",
    "io_inp": [
      -3,
      0,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, -4, -5, -4]\noutput : list = [16, 16, -16, -20, -16]",
    "output": "generated_output : list = mul_n([4, 4, -4, -5, -4],4)",
    "io_inp": [
      4,
      4,
      -4,
      -5,
      -4
    ],
    "io_out": [
      16,
      16,
      -16,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, -2, 3, 4, -1]\noutput : list = [5, 4, 0, -1, -4]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(mul_n([-5, -2, 3, 4, -1],1)),-1),-2))",
    "io_inp": [
      -5,
      -2,
      3,
      4,
      -1
    ],
    "io_out": [
      5,
      4,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(mul_n(input,1)),-1),-2))"
  },
  {
    "input": "input : list = [1, 5, -2, -1, 2]\noutput : list = [-9, -21, 0, -3, -12]",
    "output": "generated_output : list = add_n(take(add_n(take(mul_n([1, 5, -2, -1, 2],-3),11),-1),23),-5)",
    "io_inp": [
      1,
      5,
      -2,
      -1,
      2
    ],
    "io_out": [
      -9,
      -21,
      0,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(mul_n(input,-3),11),-1),23),-5)"
  },
  {
    "input": "input : list = [5, -1, 5, 5, -4, -5]\noutput : list = [7, 1, 7, 7, -2, -3]",
    "output": "generated_output : list = sub_n([5, -1, 5, 5, -4, -5],-2)",
    "io_inp": [
      5,
      -1,
      5,
      5,
      -4,
      -5
    ],
    "io_out": [
      7,
      1,
      7,
      7,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-5, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n([0, 2],-1))),5)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(input,-1))),5)"
  },
  {
    "input": "input : list = [-2, 1, 3, -3, -2]\noutput : list = [16, 6, -9, -9, -14]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sort_asc([-2, 1, 3, -3, -2])),5),-1))",
    "io_inp": [
      -2,
      1,
      3,
      -3,
      -2
    ],
    "io_out": [
      16,
      6,
      -9,
      -9,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sort_asc(input)),5),-1))"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [36, 0, 0]",
    "output": "generated_output : list = take(mul_n(take(reverse(mul_n([0, 0, -3],3)),10),-4),14)",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      36,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(mul_n(input,3)),10),-4),14)"
  },
  {
    "input": "input : list = [0, -4, -4, 2, -3]\noutput : list = [0, 20, 20, -10, 15]",
    "output": "generated_output : list = mul_n(reverse(reverse([0, -4, -4, 2, -3])),-5)",
    "io_inp": [
      0,
      -4,
      -4,
      2,
      -3
    ],
    "io_out": [
      0,
      20,
      20,
      -10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(input)),-5)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(take([4, -5, 2],1),1),-3)))",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(take(input,1),1),-3)))"
  },
  {
    "input": "input : list = [-2, -2, 5, 3, 2]\noutput : list = [4, 2, 1, -3, -3]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sort_asc([-2, -2, 5, 3, 2]),1))),1)",
    "io_inp": [
      -2,
      -2,
      5,
      3,
      2
    ],
    "io_out": [
      4,
      2,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sort_asc(input),1))),1)"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([-4, 1, -5])))",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, 5, 4, 4, 1, 2]\noutput : list = [2, 1, 4, 4, 5, -4]",
    "output": "generated_output : list = reverse([-4, 5, 4, 4, 1, 2])",
    "io_inp": [
      -4,
      5,
      4,
      4,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      4,
      4,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, 0, -1, 1, 5]\noutput : list = [-2, -1, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(drop(sort_asc(sub_n([1, 4, 0, -1, 1, 5],2)),1)))",
    "io_inp": [
      1,
      4,
      0,
      -1,
      1,
      5
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(sort_asc(sub_n(input,2)),1)))"
  },
  {
    "input": "input : list = [-4, -4, -4, 4, -1, 3]\noutput : list = [44, 44, 44, 32, 16, 12]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc([-4, -4, -4, 4, -1, 3])),-4),3),-4)",
    "io_inp": [
      -4,
      -4,
      -4,
      4,
      -1,
      3
    ],
    "io_out": [
      44,
      44,
      44,
      32,
      16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc(input)),-4),3),-4)"
  },
  {
    "input": "input : list = [-4, 1, -3, -1]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(drop([-4, 1, -3, -1],2),-3),3)))",
    "io_inp": [
      -4,
      1,
      -3,
      -1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(drop(input,2),-3),3)))"
  },
  {
    "input": "input : list = [-2, 1, 1, 4]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take([-2, 1, 1, 4],2)",
    "io_inp": [
      -2,
      1,
      1,
      4
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 1, -1, 0, -2, 4]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take(take([-3, 1, -1, 0, -2, 4],2),14)",
    "io_inp": [
      -3,
      1,
      -1,
      0,
      -2,
      4
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(take(input,2),14)"
  },
  {
    "input": "input : list = [1, -1, -1, 3, 2, -5]\noutput : list = [3, 2, 1, -1, -1, -5]",
    "output": "generated_output : list = sort_des([1, -1, -1, 3, 2, -5])",
    "io_inp": [
      1,
      -1,
      -1,
      3,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2, -5, 0, 3]\noutput : list = [0, -2]",
    "output": "generated_output : list = take([0, -2, -5, 0, 3],2)",
    "io_inp": [
      0,
      -2,
      -5,
      0,
      3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse([1, 1]))),-5)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(input))),-5)"
  },
  {
    "input": "input : list = [1, 2, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(take([1, 2, 0],1))),1),4)",
    "io_inp": [
      1,
      2,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(take(input,1))),1),4)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [-25, -5, 5]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([-2, 4, 0],-1),-5))",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      -25,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-1),-5))"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(add_n(take([4, -4, 2],1),1),-3)",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(input,1),1),-3)"
  },
  {
    "input": "input : list = [-2, 0, 0, -1, 4]\noutput : list = [-7, -5, -5, -6, -1]",
    "output": "generated_output : list = sub_n([-2, 0, 0, -1, 4],5)",
    "io_inp": [
      -2,
      0,
      0,
      -1,
      4
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, 0, -3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take([4, 0, -3],1))",
    "io_inp": [
      4,
      0,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [7, 12, 14]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n([-4, -2, 3],-1),-3),-5),2))",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      7,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n(input,-1),-3),-5),2))"
  },
  {
    "input": "input : list = [1, 3, 4, 1, 1, -1]\noutput : list = [9, -9, -9, -9, -27, -36]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sort_asc([1, 3, 4, 1, 1, -1])),-3),3))",
    "io_inp": [
      1,
      3,
      4,
      1,
      1,
      -1
    ],
    "io_out": [
      9,
      -9,
      -9,
      -9,
      -27,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sort_asc(input)),-3),3))"
  },
  {
    "input": "input : list = [3, 5, -3, -2]\noutput : list = [-12, -8, 12, 20]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_des([3, 5, -3, -2]),4)),32))",
    "io_inp": [
      3,
      5,
      -3,
      -2
    ],
    "io_out": [
      -12,
      -8,
      12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_des(input),4)),32))"
  },
  {
    "input": "input : list = [2, -1, -3, 0, -5]\noutput : list = [8, 12, 16, 18, 22]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(add_n([2, -1, -3, 0, -5],5),4)),36),2)",
    "io_inp": [
      2,
      -1,
      -3,
      0,
      -5
    ],
    "io_out": [
      8,
      12,
      16,
      18,
      22
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(add_n(input,5),4)),36),2)"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [-3]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(take([-2, -1, 0],1))),1),9)",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(take(input,1))),1),9)"
  },
  {
    "input": "input : list = [4, -3, 1]\noutput : list = [-9, 3, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([4, -3, 1])),3)",
    "io_inp": [
      4,
      -3,
      1
    ],
    "io_out": [
      -9,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [0, 4, 2, -3, 4, -2]\noutput : list = [0, -12, -6, 9, -12, 6]",
    "output": "generated_output : list = mul_n([0, 4, 2, -3, 4, -2],-3)",
    "io_inp": [
      0,
      4,
      2,
      -3,
      4,
      -2
    ],
    "io_out": [
      0,
      -12,
      -6,
      9,
      -12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, -1, -5, 1, 1, 0]\noutput : list = [-6, 2, 4, 6, 6, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(sort_asc([3, -1, -5, 1, 1, 0]),-3),1),2))",
    "io_inp": [
      3,
      -1,
      -5,
      1,
      1,
      0
    ],
    "io_out": [
      -6,
      2,
      4,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(sort_asc(input),-3),1),2))"
  },
  {
    "input": "input : list = [4, -3, -4, -4, -5]\noutput : list = [10, 8, 8, 6, -8]",
    "output": "generated_output : list = sort_des(reverse(mul_n([4, -3, -4, -4, -5],-2)))",
    "io_inp": [
      4,
      -3,
      -4,
      -4,
      -5
    ],
    "io_out": [
      10,
      8,
      8,
      6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-1, 1, -5, -5]\noutput : list = [-4, -2, -8, -8]",
    "output": "generated_output : list = take(reverse(sub_n(take(reverse([-1, 1, -5, -5]),5),3)),16)",
    "io_inp": [
      -1,
      1,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(reverse(input),5),3)),16)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [3, -2]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(reverse([2, -3])),-3),2),10)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(reverse(input)),-3),2),10)"
  },
  {
    "input": "input : list = [5, -3, 5, -1, -1]\noutput : list = [5, 5, -1, -1, -3]",
    "output": "generated_output : list = sort_des([5, -3, 5, -1, -1])",
    "io_inp": [
      5,
      -3,
      5,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-16, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(mul_n([0, 4],-4),8))),4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -16,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(mul_n(input,-4),8))),4)"
  },
  {
    "input": "input : list = [4, 3, 3, -4, -5]\noutput : list = [6, 5, 5, -2, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(sort_asc([4, 3, 3, -4, -5])))),-2)",
    "io_inp": [
      4,
      3,
      3,
      -4,
      -5
    ],
    "io_out": [
      6,
      5,
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [3, -1, -4, 0, -3, 0]\noutput : list = [1, -2, -2, -3, -5, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(reverse([3, -1, -4, 0, -3, 0]),2))))",
    "io_inp": [
      3,
      -1,
      -4,
      0,
      -3,
      0
    ],
    "io_out": [
      1,
      -2,
      -2,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [0, -2, -3, 3, -2]\noutput : list = [-4, 6, -6, -4, 0]",
    "output": "generated_output : list = reverse(mul_n([0, -2, -3, 3, -2],2))",
    "io_inp": [
      0,
      -2,
      -3,
      3,
      -2
    ],
    "io_out": [
      -4,
      6,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [-4, -3, -5, -2, 3]\noutput : list = [16, 12, 20, 8, -12]",
    "output": "generated_output : list = mul_n(mul_n([-4, -3, -5, -2, 3],2),-2)",
    "io_inp": [
      -4,
      -3,
      -5,
      -2,
      3
    ],
    "io_out": [
      16,
      12,
      20,
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),-2)"
  },
  {
    "input": "input : list = [-3, 1, -1, 1, 5, -4]\noutput : list = [-2, -1, 1, 3, 3, 7]",
    "output": "generated_output : list = sort_asc(add_n([-3, 1, -1, 1, 5, -4],2))",
    "io_inp": [
      -3,
      1,
      -1,
      1,
      5,
      -4
    ],
    "io_out": [
      -2,
      -1,
      1,
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [-3, 0, -1, 1]\noutput : list = [3, 2, 1, -1]",
    "output": "generated_output : list = add_n(sort_des([-3, 0, -1, 1]),2)",
    "io_inp": [
      -3,
      0,
      -1,
      1
    ],
    "io_out": [
      3,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-3, 5, 1]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(drop(take(take(drop([-3, 5, 1],1),14),18),1),-3)",
    "io_inp": [
      -3,
      5,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(take(drop(input,1),14),18),1),-3)"
  },
  {
    "input": "input : list = [3, 0, 5, -2, -4, -3]\noutput : list = [-10, -6, 0, 4, 6, 8]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(mul_n([3, 0, 5, -2, -4, -3],1))),-2))",
    "io_inp": [
      3,
      0,
      5,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -10,
      -6,
      0,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(mul_n(input,1))),-2))"
  },
  {
    "input": "input : list = [-3, 2, 5, 0, -4]\noutput : list = [1, -2, -4, -7, -8]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(add_n([-3, 2, 5, 0, -4],-4)))))",
    "io_inp": [
      -3,
      2,
      5,
      0,
      -4
    ],
    "io_out": [
      1,
      -2,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n([-5, 0],2)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [1, -6]",
    "output": "generated_output : list = sort_des(reverse(add_n([-4, 3],-2)))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,-2)))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-6, 2]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(sub_n([-3, 5],3))),1),-1)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(sub_n(input,3))),1),-1)"
  },
  {
    "input": "input : list = [5, -1, -2, 1, 3, -1]\noutput : list = [2, 0, -2, -4, -4, -5]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(sort_des([5, -1, -2, 1, 3, -1])),10),3))",
    "io_inp": [
      5,
      -1,
      -2,
      1,
      3,
      -1
    ],
    "io_out": [
      2,
      0,
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(sort_des(input)),10),3))"
  },
  {
    "input": "input : list = [-3, 5, -2, 1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(drop([-3, 5, -2, 1],2)),1),3))",
    "io_inp": [
      -3,
      5,
      -2,
      1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(drop(input,2)),1),3))"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 0, 3],1)",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -3, -2, -1]\noutput : list = [-9, -9, -8, -7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des([-3, -3, -2, -1]),-3),2)),1)",
    "io_inp": [
      -3,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des(input),-3),2)),1)"
  },
  {
    "input": "input : list = [4, -3, 2, -4, 4, 0]\noutput : list = [27, 27, 17, 7, -8, -13]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(add_n([4, -3, 2, -4, 4, 0],5),-4),5)),2)",
    "io_inp": [
      4,
      -3,
      2,
      -4,
      4,
      0
    ],
    "io_out": [
      27,
      27,
      17,
      7,
      -8,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(add_n(input,5),-4),5)),2)"
  },
  {
    "input": "input : list = [1, -3, 4, 1, 0, -3]\noutput : list = [-6, -3, -2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(drop([1, -3, 4, 1, 0, -3],3)))),3)",
    "io_inp": [
      1,
      -3,
      4,
      1,
      0,
      -3
    ],
    "io_out": [
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(drop(input,3)))),3)"
  },
  {
    "input": "input : list = [3, -3, 4]\noutput : list = [4, -3, 3]",
    "output": "generated_output : list = reverse([3, -3, 4])",
    "io_inp": [
      3,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(take(sort_asc(sort_asc(take([-3, 1, -3],1))),30),37)",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_asc(take(input,1))),30),37)"
  },
  {
    "input": "input : list = [4, 1, -1, 4]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(sub_n(take([4, 1, -1, 4],1),-4))",
    "io_inp": [
      4,
      1,
      -1,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(input,1),-4))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-2, -3]",
    "output": "generated_output : list = add_n([0, -1],-2)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [-17, -27, -12]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(sub_n([-2, -4, -1],1)),5),-2))",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      -17,
      -27,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(sub_n(input,1)),5),-2))"
  },
  {
    "input": "input : list = [-2, 3, 4, 0, 5]\noutput : list = [-9, -7, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(add_n([-2, 3, 4, 0, 5],-2),5),5)))",
    "io_inp": [
      -2,
      3,
      4,
      0,
      5
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(add_n(input,-2),5),5)))"
  },
  {
    "input": "input : list = [2, 1, 2, 0, 3]\noutput : list = [9, 8, 8, 7, 6]",
    "output": "generated_output : list = sort_des(take(sub_n(take(add_n([2, 1, 2, 0, 3],1),12),-5),16))",
    "io_inp": [
      2,
      1,
      2,
      0,
      3
    ],
    "io_out": [
      9,
      8,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(add_n(input,1),12),-5),16))"
  },
  {
    "input": "input : list = [4, 5, 4, 4, -4]\noutput : list = [4, 5]",
    "output": "generated_output : list = take([4, 5, 4, 4, -4],2)",
    "io_inp": [
      4,
      5,
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-6, 1]",
    "output": "generated_output : list = add_n(reverse([2, -5]),-1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [-2, 6, 7]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(add_n([4, -5, 3],-1)),-4),25),45)",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      -2,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(add_n(input,-1)),-4),25),45)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(sort_asc([-2, -3]))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -4, 5, 0, 0, 3]\noutput : list = [51, 33, 6, 6, 6, -30]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_des([0, -4, 5, 0, 0, 3]),-3),-2),-3))",
    "io_inp": [
      0,
      -4,
      5,
      0,
      0,
      3
    ],
    "io_out": [
      51,
      33,
      6,
      6,
      6,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_des(input),-3),-2),-3))"
  },
  {
    "input": "input : list = [4, -2, -4, 1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -2, -4, 1],1)",
    "io_inp": [
      4,
      -2,
      -4,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 2, 5, -5, -4, 4]\noutput : list = [3, 5, 8]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(take([0, 2, 5, -5, -4, 4],3),3),-1)),-4)",
    "io_inp": [
      0,
      2,
      5,
      -5,
      -4,
      4
    ],
    "io_out": [
      3,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(take(input,3),3),-1)),-4)"
  },
  {
    "input": "input : list = [-5, -1, 2, 1, -4]\noutput : list = [2, 1, -1, -4, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(take(sort_des([-5, -1, 2, 1, -4]),23))),48)",
    "io_inp": [
      -5,
      -1,
      2,
      1,
      -4
    ],
    "io_out": [
      2,
      1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(sort_des(input),23))),48)"
  },
  {
    "input": "input : list = [-5, 5, -2, 2, -5]\noutput : list = [10]",
    "output": "generated_output : list = add_n(mul_n(take(reverse(sort_des([-5, 5, -2, 2, -5])),1),-3),-5)",
    "io_inp": [
      -5,
      5,
      -2,
      2,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(sort_des(input)),1),-3),-5)"
  },
  {
    "input": "input : list = [-3, 0, 0, 0, -5]\noutput : list = [-20]",
    "output": "generated_output : list = sub_n(add_n(mul_n(drop(mul_n([-3, 0, 0, 0, -5],-1),4),-4),3),3)",
    "io_inp": [
      -3,
      0,
      0,
      0,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(drop(mul_n(input,-1),4),-4),3),3)"
  },
  {
    "input": "input : list = [-2, 3, -2, 1]\noutput : list = [-6, -6, 3, 9]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 3, -2, 1],3))",
    "io_inp": [
      -2,
      3,
      -2,
      1
    ],
    "io_out": [
      -6,
      -6,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,3))"
  },
  {
    "input": "input : list = [3, -5, 3, -4]\noutput : list = [0, -8, 0, -7]",
    "output": "generated_output : list = add_n([3, -5, 3, -4],-3)",
    "io_inp": [
      3,
      -5,
      3,
      -4
    ],
    "io_out": [
      0,
      -8,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sort_des([1, -1])),7),3),1)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sort_des(input)),7),3),1)"
  },
  {
    "input": "input : list = [-2, 1, 5, 2, 1]\noutput : list = [8, 2, 2, 0, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(add_n([-2, 1, 5, 2, 1],-3),-2),2)))",
    "io_inp": [
      -2,
      1,
      5,
      2,
      1
    ],
    "io_out": [
      8,
      2,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(add_n(input,-3),-2),2)))"
  },
  {
    "input": "input : list = [-2, 3, 3, 5, 1, -1]\noutput : list = [4, 3, 1, -1, -1, -3]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des(mul_n([-2, 3, 3, 5, 1, -1],-1)))),2)",
    "io_inp": [
      -2,
      3,
      3,
      5,
      1,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(mul_n(input,-1)))),2)"
  },
  {
    "input": "input : list = [-3, 2, 4, 5, -5]\noutput : list = [2, 1, -1, -6, -8]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n([-3, 2, 4, 5, -5],-1)),2)))",
    "io_inp": [
      -3,
      2,
      4,
      5,
      -5
    ],
    "io_out": [
      2,
      1,
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n(input,-1)),2)))"
  },
  {
    "input": "input : list = [-3, -2, -4, 0]\noutput : list = [16, 13, 10, 4]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sort_des([-3, -2, -4, 0])),3),-3),5)",
    "io_inp": [
      -3,
      -2,
      -4,
      0
    ],
    "io_out": [
      16,
      13,
      10,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sort_des(input)),3),-3),5)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-23, -19]",
    "output": "generated_output : list = add_n(add_n(take(reverse(mul_n([-3, -4],4)),20),-3),-4)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -23,
      -19
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(mul_n(input,4)),20),-3),-4)"
  },
  {
    "input": "input : list = [4, 0, 0, -3]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(take([4, 0, 0, -3],2))),2))",
    "io_inp": [
      4,
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(take(input,2))),2))"
  },
  {
    "input": "input : list = [5, -5, 4, 1, 0, 2]\noutput : list = [11, 1, 10, 7, 6, 8]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(reverse([5, -5, 4, 1, 0, 2]),-2),22)),-4)",
    "io_inp": [
      5,
      -5,
      4,
      1,
      0,
      2
    ],
    "io_out": [
      11,
      1,
      10,
      7,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(reverse(input),-2),22)),-4)"
  },
  {
    "input": "input : list = [5, 5, 4, -5]\noutput : list = [0, 0, -1, -10]",
    "output": "generated_output : list = add_n(take(sort_des(sub_n(add_n([5, 5, 4, -5],-3),-2)),33),-4)",
    "io_inp": [
      5,
      5,
      4,
      -5
    ],
    "io_out": [
      0,
      0,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sub_n(add_n(input,-3),-2)),33),-4)"
  },
  {
    "input": "input : list = [-5, 1, -5, 4, 1, 2]\noutput : list = [-10, -10, -4, -4, -3, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([-5, 1, -5, 4, 1, 2]),5))",
    "io_inp": [
      -5,
      1,
      -5,
      4,
      1,
      2
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [4, 0, -2, -3, 3, 2]\noutput : list = [7, 8, 2, 3, 5]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(drop([4, 0, -2, -3, 3, 2],1)),-5)))",
    "io_inp": [
      4,
      0,
      -2,
      -3,
      3,
      2
    ],
    "io_out": [
      7,
      8,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(drop(input,1)),-5)))"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [5, 1, -4]",
    "output": "generated_output : list = reverse([-4, 1, 5])",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, 5, -2]\noutput : list = [15, 6, -3, -6]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([2, -1, 5, -2]),1),3)",
    "io_inp": [
      2,
      -1,
      5,
      -2
    ],
    "io_out": [
      15,
      6,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),1),3)"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [10, 7, 4]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(sub_n([-4, -1, 2],1))),-5),-1)",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      10,
      7,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(sub_n(input,1))),-5),-1)"
  },
  {
    "input": "input : list = [1, 3, 5]\noutput : list = [9, 7, 5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n(add_n([1, 3, 5],2),-5),3)))",
    "io_inp": [
      1,
      3,
      5
    ],
    "io_out": [
      9,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(add_n(input,2),-5),3)))"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [32, 24, 8]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_des([2, -2, -4])),-4),-4))",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      32,
      24,
      8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_des(input)),-4),-4))"
  },
  {
    "input": "input : list = [0, -4, -1, 1, 5, -2]\noutput : list = [3, -1, -2, -3, -4, -6]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n([0, -4, -1, 1, 5, -2],2))))",
    "io_inp": [
      0,
      -4,
      -1,
      1,
      5,
      -2
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(input,2))))"
  },
  {
    "input": "input : list = [4, 5, -5, 0, -4]\noutput : list = [8, 9, -1, 4, 0]",
    "output": "generated_output : list = mul_n(add_n([4, 5, -5, 0, -4],4),1)",
    "io_inp": [
      4,
      5,
      -5,
      0,
      -4
    ],
    "io_out": [
      8,
      9,
      -1,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),1)"
  },
  {
    "input": "input : list = [1, -2, 0, -5, 4, 0]\noutput : list = [-1, 2, 0, 5, -4, 0]",
    "output": "generated_output : list = mul_n([1, -2, 0, -5, 4, 0],-1)",
    "io_inp": [
      1,
      -2,
      0,
      -5,
      4,
      0
    ],
    "io_out": [
      -1,
      2,
      0,
      5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [10, -14]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(mul_n([-3, 5],-3)),-1)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(mul_n(input,-3)),-1)))"
  },
  {
    "input": "input : list = [-3, 2, -4, 3]\noutput : list = [-1, -8, -2, -7]",
    "output": "generated_output : list = take(take(add_n(reverse(mul_n([-3, 2, -4, 3],1)),-4),6),30)",
    "io_inp": [
      -3,
      2,
      -4,
      3
    ],
    "io_out": [
      -1,
      -8,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(mul_n(input,1)),-4),6),30)"
  },
  {
    "input": "input : list = [-4, -5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = drop([-4, -5, -1],1)",
    "io_inp": [
      -4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = add_n([-1, -2],3)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, 3, 0, 3, -4]\noutput : list = [12, 8, -4, -16, -16]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(add_n([-3, 3, 0, 3, -4],1))),-1),4)",
    "io_inp": [
      -3,
      3,
      0,
      3,
      -4
    ],
    "io_out": [
      12,
      8,
      -4,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(add_n(input,1))),-1),4)"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -1, 4],1)",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -4, -1, 3]\noutput : list = [12, 9, 3, -9]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(reverse([-3, -4, -1, 3])),-3)),23)",
    "io_inp": [
      -3,
      -4,
      -1,
      3
    ],
    "io_out": [
      12,
      9,
      3,
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(reverse(input)),-3)),23)"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(drop([-4, -1, 2],1),-5))),7)",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(drop(input,1),-5))),7)"
  },
  {
    "input": "input : list = [1, -1, 1, -2, -5]\noutput : list = [0, 3, 6, 4, 6]",
    "output": "generated_output : list = sub_n(reverse([1, -1, 1, -2, -5]),-5)",
    "io_inp": [
      1,
      -1,
      1,
      -2,
      -5
    ],
    "io_out": [
      0,
      3,
      6,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [5, -2, 2, 1, -5]\noutput : list = [-18, -12, -10, -4, 2]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(sort_des([5, -2, 2, 1, -5]),2),1),-2),-4)",
    "io_inp": [
      5,
      -2,
      2,
      1,
      -5
    ],
    "io_out": [
      -18,
      -12,
      -10,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(sort_des(input),2),1),-2),-4)"
  },
  {
    "input": "input : list = [1, 4, -5, -3, 4, -1]\noutput : list = [4, 6, 8, 10, 13, 13]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n([1, 4, -5, -3, 4, -1],-5)),1)),3)",
    "io_inp": [
      1,
      4,
      -5,
      -3,
      4,
      -1
    ],
    "io_out": [
      4,
      6,
      8,
      10,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n(input,-5)),1)),3)"
  },
  {
    "input": "input : list = [4, -5, 0, 0]\noutput : list = [-2, -11, -6, -6]",
    "output": "generated_output : list = take(sub_n(take(sub_n(add_n([4, -5, 0, 0],-2),-1),5),5),12)",
    "io_inp": [
      4,
      -5,
      0,
      0
    ],
    "io_out": [
      -2,
      -11,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(add_n(input,-2),-1),5),5),12)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-6, -9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(reverse([3, 2]),8))),-3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(reverse(input),8))),-3)"
  },
  {
    "input": "input : list = [5, 1, 1, 0, 1, -2]\noutput : list = [3, 6, 5, 6, 6, 10]",
    "output": "generated_output : list = add_n(reverse([5, 1, 1, 0, 1, -2]),5)",
    "io_inp": [
      5,
      1,
      1,
      0,
      1,
      -2
    ],
    "io_out": [
      3,
      6,
      5,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-2, -4, 4, -2]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(take([-2, -4, 4, -2],1),8),-1)))",
    "io_inp": [
      -2,
      -4,
      4,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(take(input,1),8),-1)))"
  },
  {
    "input": "input : list = [-2, 4, 5, -3]\noutput : list = [1, 2, 8, 9]",
    "output": "generated_output : list = reverse(sort_des(sub_n([-2, 4, 5, -3],-4)))",
    "io_inp": [
      -2,
      4,
      5,
      -3
    ],
    "io_out": [
      1,
      2,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [-1, -1, 1]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = sub_n([-1, -1, 1],1)",
    "io_inp": [
      -1,
      -1,
      1
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, 0, -3, 2]\noutput : list = [2, -3, 0, -3]",
    "output": "generated_output : list = reverse([-3, 0, -3, 2])",
    "io_inp": [
      -3,
      0,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0, 5, 2, -5, 0]\noutput : list = [0, -1, 4, 1, -6, -1]",
    "output": "generated_output : list = add_n([1, 0, 5, 2, -5, 0],-1)",
    "io_inp": [
      1,
      0,
      5,
      2,
      -5,
      0
    ],
    "io_out": [
      0,
      -1,
      4,
      1,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([-3, -5, 1],1)),-1)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,1)),-1)"
  },
  {
    "input": "input : list = [-5, -3, -1, 0, 3, 0]\noutput : list = [-4, -2, 0, 1, 1, 4]",
    "output": "generated_output : list = reverse(reverse(reverse(add_n(sort_des([-5, -3, -1, 0, 3, 0]),1))))",
    "io_inp": [
      -5,
      -3,
      -1,
      0,
      3,
      0
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(add_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [5, 5, 2, -2, -1, -1]\noutput : list = [-6]",
    "output": "generated_output : list = take(sort_asc(mul_n(drop([5, 5, 2, -2, -1, -1],2),-3)),1)",
    "io_inp": [
      5,
      5,
      2,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(drop(input,2),-3)),1)"
  },
  {
    "input": "input : list = [-1, -2, -3, -4, -4, -2]\noutput : list = [-5, -10, -10, -15, -20, -20]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(mul_n([-1, -2, -3, -4, -4, -2],5)))),32)",
    "io_inp": [
      -1,
      -2,
      -3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -10,
      -10,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(mul_n(input,5)))),32)"
  },
  {
    "input": "input : list = [2, 5, -4, 1, -5, -1]\noutput : list = [-3, -2, 1, 3, 4, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(add_n([2, 5, -4, 1, -5, -1],-1))),3))",
    "io_inp": [
      2,
      5,
      -4,
      1,
      -5,
      -1
    ],
    "io_out": [
      -3,
      -2,
      1,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(add_n(input,-1))),3))"
  },
  {
    "input": "input : list = [-4, -1, -3, -1, 3, 0]\noutput : list = [75, 60, 30, 30, 15, -30]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(mul_n([-4, -1, -3, -1, 3, 0],-5),5))),3)",
    "io_inp": [
      -4,
      -1,
      -3,
      -1,
      3,
      0
    ],
    "io_out": [
      75,
      60,
      30,
      30,
      15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(mul_n(input,-5),5))),3)"
  },
  {
    "input": "input : list = [-4, 3, 2, 0, -5]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(drop(add_n(sub_n([-4, 3, 2, 0, -5],-1),-3),4),5)",
    "io_inp": [
      -4,
      3,
      2,
      0,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(sub_n(input,-1),-3),4),5)"
  },
  {
    "input": "input : list = [0, 2, 5, -5]\noutput : list = [-50, 0, -15, -25]",
    "output": "generated_output : list = reverse(mul_n(sub_n([0, 2, 5, -5],5),5))",
    "io_inp": [
      0,
      2,
      5,
      -5
    ],
    "io_out": [
      -50,
      0,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,5),5))"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [28, -12, -28]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(mul_n([-3, 2, 4],-4),2),22),-4))",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      28,
      -12,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(mul_n(input,-4),2),22),-4))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-10, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(reverse([-5, 4])),5)),5)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -10,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(reverse(input)),5)),5)"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-7, -9, -3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-2, -3, 0],-1),2),5)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -7,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,-1),2),5)"
  },
  {
    "input": "input : list = [0, -4, 5, -5]\noutput : list = [-6, -11, -15, -16]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(add_n([0, -4, 5, -5],-4),-3))),4)",
    "io_inp": [
      0,
      -4,
      5,
      -5
    ],
    "io_out": [
      -6,
      -11,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(add_n(input,-4),-3))),4)"
  },
  {
    "input": "input : list = [0, 2, -2, 1, -1]\noutput : list = [24, 12, 0, -12, -24]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sort_des([0, 2, -2, 1, -1]))),4),3)",
    "io_inp": [
      0,
      2,
      -2,
      1,
      -1
    ],
    "io_out": [
      24,
      12,
      0,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sort_des(input))),4),3)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(add_n(take(reverse(sort_des([-5, -5])),7),3),15)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(sort_des(input)),7),3),15)"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [19, -5, -13]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n([-4, 2, 4],-4),14),2),5)",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      19,
      -5,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(input,-4),14),2),5)"
  },
  {
    "input": "input : list = [-3, 1, 4, 2]\noutput : list = [1, -1, -2, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(sort_des([-3, 1, 4, 2]),2))),1)",
    "io_inp": [
      -3,
      1,
      4,
      2
    ],
    "io_out": [
      1,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(sort_des(input),2))),1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([2, 5],-2),-1))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,-2),-1))"
  },
  {
    "input": "input : list = [-1, 0, -3, 2, -1]\noutput : list = [-7, -5, -4, -2]",
    "output": "generated_output : list = sort_asc(mul_n(drop(sub_n(add_n([-1, 0, -3, 2, -1],-1),3),1),1))",
    "io_inp": [
      -1,
      0,
      -3,
      2,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(sub_n(add_n(input,-1),3),1),1))"
  },
  {
    "input": "input : list = [-3, 1, 2, 4, 4, 1]\noutput : list = [-9, 3, 6, 12, 12, 3]",
    "output": "generated_output : list = mul_n([-3, 1, 2, 4, 4, 1],3)",
    "io_inp": [
      -3,
      1,
      2,
      4,
      4,
      1
    ],
    "io_out": [
      -9,
      3,
      6,
      12,
      12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, -1, -5]\noutput : list = [-5, -1, 3]",
    "output": "generated_output : list = take(sort_asc(mul_n([3, -1, -5],1)),14)",
    "io_inp": [
      3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,1)),14)"
  },
  {
    "input": "input : list = [2, -5, 2, 3]\noutput : list = [-3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(sort_des([2, -5, 2, 3]),-3),-1),36))",
    "io_inp": [
      2,
      -5,
      2,
      3
    ],
    "io_out": [
      -3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(sort_des(input),-3),-1),36))"
  },
  {
    "input": "input : list = [5, -3, 3, 2]\noutput : list = [3, 1, 0, -5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_asc([5, -3, 3, 2])),2)))",
    "io_inp": [
      5,
      -3,
      3,
      2
    ],
    "io_out": [
      3,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [3, -2, 0, 0, 0]\noutput : list = [3, 0, 0, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sort_asc([3, -2, 0, 0, 0]),23),1)))",
    "io_inp": [
      3,
      -2,
      0,
      0,
      0
    ],
    "io_out": [
      3,
      0,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sort_asc(input),23),1)))"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [-7, -9, -15]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(mul_n([0, 4, 1],-2),2))),5)",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      -7,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(mul_n(input,-2),2))),5)"
  },
  {
    "input": "input : list = [0, 1, -2, -2, -3]\noutput : list = [-14, -10, -10, -2, 2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n(sort_asc([0, 1, -2, -2, -3]),4),2),4),4)",
    "io_inp": [
      0,
      1,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -14,
      -10,
      -10,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(sort_asc(input),4),2),4),4)"
  },
  {
    "input": "input : list = [-5, 2, -5, -1, 0, 0]\noutput : list = [-5, -15, -20, -40, -40]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(add_n([-5, 2, -5, -1, 0, 0],-2),5),5),5))",
    "io_inp": [
      -5,
      2,
      -5,
      -1,
      0,
      0
    ],
    "io_out": [
      -5,
      -15,
      -20,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(add_n(input,-2),5),5),5))"
  },
  {
    "input": "input : list = [1, -1, 0, 2]\noutput : list = [6, -2, -10, -18]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(mul_n([1, -1, 0, 2],-4),14),1),2))",
    "io_inp": [
      1,
      -1,
      0,
      2
    ],
    "io_out": [
      6,
      -2,
      -10,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(mul_n(input,-4),14),1),2))"
  },
  {
    "input": "input : list = [-2, 2, 0, 1, 4]\noutput : list = [2, 0, -1, -2, -4]",
    "output": "generated_output : list = sort_des(add_n([-2, 2, 0, 1, 4],-2))",
    "io_inp": [
      -2,
      2,
      0,
      1,
      4
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, -5, 0, -5, -1]\noutput : list = [20, 20, 16, 4, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(reverse([-4, -5, 0, -5, -1]),2)),-2),1)",
    "io_inp": [
      -4,
      -5,
      0,
      -5,
      -1
    ],
    "io_out": [
      20,
      20,
      16,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(reverse(input),2)),-2),1)"
  },
  {
    "input": "input : list = [1, 3, 3, -3]\noutput : list = [4, -8, -14, -14]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([1, 3, 3, -3]),-3),5)",
    "io_inp": [
      1,
      3,
      3,
      -3
    ],
    "io_out": [
      4,
      -8,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),-3),5)"
  },
  {
    "input": "input : list = [5, -2, -2, 0, 0, 4]\noutput : list = [-20, 0, 0, 10, 10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(drop(mul_n([5, -2, -2, 0, 0, 4],-5),1)),4),-4)",
    "io_inp": [
      5,
      -2,
      -2,
      0,
      0,
      4
    ],
    "io_out": [
      -20,
      0,
      0,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(drop(mul_n(input,-5),1)),4),-4)"
  },
  {
    "input": "input : list = [5, -4, -4, -3, -3, 5]\noutput : list = [9, 9, 1, 1, 0]",
    "output": "generated_output : list = take(sub_n(sort_des([5, -4, -4, -3, -3, 5]),-4),5)",
    "io_inp": [
      5,
      -4,
      -4,
      -3,
      -3,
      5
    ],
    "io_out": [
      9,
      9,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),-4),5)"
  },
  {
    "input": "input : list = [2, -5, -4, -5, -1]\noutput : list = [0, -3, -6, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(add_n([2, -5, -4, -5, -1],-3)))),-1)",
    "io_inp": [
      2,
      -5,
      -4,
      -5,
      -1
    ],
    "io_out": [
      0,
      -3,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(add_n(input,-3)))),-1)"
  },
  {
    "input": "input : list = [-5, 2, 1, 2, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(sort_asc(drop(sort_asc(sort_des([-5, 2, 1, 2, -1])),3)),48)",
    "io_inp": [
      -5,
      2,
      1,
      2,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(sort_asc(sort_des(input)),3)),48)"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = take(take(add_n(sort_asc(sort_des([-2, -4, -3])),-1),27),33)",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(sort_des(input)),-1),27),33)"
  },
  {
    "input": "input : list = [-4, -4, -2, 5]\noutput : list = [5, -2, -4, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, -4, -2, 5]))",
    "io_inp": [
      -4,
      -4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [3, 9]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(drop([3, 5, -1],1),4),1),22))",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(drop(input,1),4),1),22))"
  },
  {
    "input": "input : list = [-3, 2, -5, 0, 5, -2]\noutput : list = [-9, -4, -11, -6, -1, -8]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sub_n([-3, 2, -5, 0, 5, -2],4),-4),22),-3),3)",
    "io_inp": [
      -3,
      2,
      -5,
      0,
      5,
      -2
    ],
    "io_out": [
      -9,
      -4,
      -11,
      -6,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sub_n(input,4),-4),22),-3),3)"
  },
  {
    "input": "input : list = [-2, -2, 4, 5]\noutput : list = [-9, -8, -2, -2]",
    "output": "generated_output : list = sub_n(take(take(mul_n(reverse([-2, -2, 4, 5]),-1),12),22),4)",
    "io_inp": [
      -2,
      -2,
      4,
      5
    ],
    "io_out": [
      -9,
      -8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(reverse(input),-1),12),22),4)"
  },
  {
    "input": "input : list = [5, -4, -4]\noutput : list = [-20, 16, 16]",
    "output": "generated_output : list = mul_n([5, -4, -4],-4)",
    "io_inp": [
      5,
      -4,
      -4
    ],
    "io_out": [
      -20,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, -5, 3, 1, 1]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(take([2, -5, 3, 1, 1],2),1))))",
    "io_inp": [
      2,
      -5,
      3,
      1,
      1
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(take(input,2),1))))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des([0, 5])",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, 2, 5, 4, 5]\noutput : list = [3, 1, 7]",
    "output": "generated_output : list = add_n(take([-2, -4, 2, 5, 4, 5],3),5)",
    "io_inp": [
      -2,
      -4,
      2,
      5,
      4,
      5
    ],
    "io_out": [
      3,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),5)"
  },
  {
    "input": "input : list = [2, -2, 1, 2, -3, 2]\noutput : list = [-9, -6, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(take([2, -2, 1, 2, -3, 2],3),3)),4))",
    "io_inp": [
      2,
      -2,
      1,
      2,
      -3,
      2
    ],
    "io_out": [
      -9,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(take(input,3),3)),4))"
  },
  {
    "input": "input : list = [1, -2, 2, 4]\noutput : list = [2, 0, -1, -4]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(sub_n([1, -2, 2, 4],-5)),-5),-2),8)",
    "io_inp": [
      1,
      -2,
      2,
      4
    ],
    "io_out": [
      2,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(sub_n(input,-5)),-5),-2),8)"
  },
  {
    "input": "input : list = [-2, 0, 0, -4, 5]\noutput : list = [-7, -5, -5, -9, 0]",
    "output": "generated_output : list = add_n([-2, 0, 0, -4, 5],-5)",
    "io_inp": [
      -2,
      0,
      0,
      -4,
      5
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -9,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, -1, -3, -1, -2]\noutput : list = [8, -4, -4, -8, -12]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(mul_n([2, -1, -3, -1, -2],1))),4))",
    "io_inp": [
      2,
      -1,
      -3,
      -1,
      -2
    ],
    "io_out": [
      8,
      -4,
      -4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(mul_n(input,1))),4))"
  },
  {
    "input": "input : list = [0, -3, -5, 3, -3, -3]\noutput : list = [-4, -4, 2, -6, -4, -1]",
    "output": "generated_output : list = sub_n(reverse(add_n([0, -3, -5, 3, -3, -3],3)),4)",
    "io_inp": [
      0,
      -3,
      -5,
      3,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      2,
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,3)),4)"
  },
  {
    "input": "input : list = [4, 4, -5, 3, -5, 1]\noutput : list = [5, 5, 4, 2, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(add_n([4, 4, -5, 3, -5, 1],-1)),-2)))",
    "io_inp": [
      4,
      4,
      -5,
      3,
      -5,
      1
    ],
    "io_out": [
      5,
      5,
      4,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(add_n(input,-1)),-2)))"
  },
  {
    "input": "input : list = [5, -1, -1]\noutput : list = [3, 3, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([5, -1, -1],1),-5))",
    "io_inp": [
      5,
      -1,
      -1
    ],
    "io_out": [
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,1),-5))"
  },
  {
    "input": "input : list = [-2, 3, 2, -2, -4, -5]\noutput : list = [3, 2, -2, -2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-2, 3, 2, -2, -4, -5]))",
    "io_inp": [
      -2,
      3,
      2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      3,
      2,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -1, 5, 4]\noutput : list = [4, 5, -1, -1]",
    "output": "generated_output : list = reverse([-1, -1, 5, 4])",
    "io_inp": [
      -1,
      -1,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -6]",
    "output": "generated_output : list = take(take(take(reverse(sub_n([-5, -4],1)),23),28),15)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(sub_n(input,1)),23),28),15)"
  },
  {
    "input": "input : list = [1, 1, 5, -5, 2, 2]\noutput : list = [5, 5, 9, -1, 6, 6]",
    "output": "generated_output : list = sub_n(sub_n(add_n([1, 1, 5, -5, 2, 2],3),3),-4)",
    "io_inp": [
      1,
      1,
      5,
      -5,
      2,
      2
    ],
    "io_out": [
      5,
      5,
      9,
      -1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,3),3),-4)"
  },
  {
    "input": "input : list = [1, 3, -3, 3]\noutput : list = [12, 6, 12, 10]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(reverse([1, 3, -3, 3]),-1),21),-4),-4)",
    "io_inp": [
      1,
      3,
      -3,
      3
    ],
    "io_out": [
      12,
      6,
      12,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(reverse(input),-1),21),-4),-4)"
  },
  {
    "input": "input : list = [3, 2, 2, 1]\noutput : list = [-2, -3, -3, -4]",
    "output": "generated_output : list = sub_n([3, 2, 2, 1],5)",
    "io_inp": [
      3,
      2,
      2,
      1
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-12, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([3, -5]),-4))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [1, -3, -5, -1]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take([1, -3, -5, -1],1))",
    "io_inp": [
      1,
      -3,
      -5,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-4, 5, 1, 4, 0]\noutput : list = [-20, -16, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(drop([-4, 5, 1, 4, 0],1))),-4))",
    "io_inp": [
      -4,
      5,
      1,
      4,
      0
    ],
    "io_out": [
      -20,
      -16,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(drop(input,1))),-4))"
  },
  {
    "input": "input : list = [-5, -3, 5]\noutput : list = [5, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, 5])",
    "io_inp": [
      -5,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(add_n([0, 4, 3],-5),9),1)))",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(add_n(input,-5),9),1)))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [16, 16]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(mul_n([-5, -5],-4),2)),-2))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(mul_n(input,-4),2)),-2))"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(sub_n([1, 5, -2],1)))),44)",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(sub_n(input,1)))),44)"
  },
  {
    "input": "input : list = [-3, 5, -3, 0, 0, -3]\noutput : list = [14, -10, -10]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(take([-3, 5, -3, 0, 0, -3],3),3),-1)))",
    "io_inp": [
      -3,
      5,
      -3,
      0,
      0,
      -3
    ],
    "io_out": [
      14,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(take(input,3),3),-1)))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-15, -3]",
    "output": "generated_output : list = mul_n([-5, -1],3)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, 2, 2, 3]\noutput : list = [0, -2, -3, -3]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des(sort_des([5, 2, 2, 3])))),-5)",
    "io_inp": [
      5,
      2,
      2,
      3
    ],
    "io_out": [
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-8, 4]",
    "output": "generated_output : list = reverse(mul_n(sub_n([1, -5],-1),2))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,-1),2))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des([-1, -1]),10),5),4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(input),10),5),4)"
  },
  {
    "input": "input : list = [4, 3, -4, -2, 3]\noutput : list = [3, -2, -4, 3]",
    "output": "generated_output : list = reverse(drop([4, 3, -4, -2, 3],1))",
    "io_inp": [
      4,
      3,
      -4,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 1, -5, -3, 4]\noutput : list = [-5, -3, -1, 1, 4]",
    "output": "generated_output : list = sort_asc([-1, 1, -5, -3, 4])",
    "io_inp": [
      -1,
      1,
      -5,
      -3,
      4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, -5, -5, 4]\noutput : list = [0, 0, -45]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop([5, 2, -5, -5, 4],2),-5)),5),-1)",
    "io_inp": [
      5,
      2,
      -5,
      -5,
      4
    ],
    "io_out": [
      0,
      0,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop(input,2),-5)),5),-1)"
  },
  {
    "input": "input : list = [-5, 0, -4, 0]\noutput : list = [-3, -2, 2, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(add_n([-5, 0, -4, 0],-1))),3))",
    "io_inp": [
      -5,
      0,
      -4,
      0
    ],
    "io_out": [
      -3,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(add_n(input,-1))),3))"
  },
  {
    "input": "input : list = [2, 2, -2, -4, 3]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sort_des(drop(sub_n(reverse(mul_n([2, 2, -2, -4, 3],-5)),-1),3))",
    "io_inp": [
      2,
      2,
      -2,
      -4,
      3
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(reverse(mul_n(input,-5)),-1),3))"
  },
  {
    "input": "input : list = [2, 0, -5, 4]\noutput : list = [-3, 2, -7]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(drop([2, 0, -5, 4],1),-1))),3)",
    "io_inp": [
      2,
      0,
      -5,
      4
    ],
    "io_out": [
      -3,
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(drop(input,1),-1))),3)"
  },
  {
    "input": "input : list = [3, -3, 5, 0, 3]\noutput : list = [2, 5, 5, 7]",
    "output": "generated_output : list = take(sub_n(reverse(take(sort_des([3, -3, 5, 0, 3]),4)),-2),34)",
    "io_inp": [
      3,
      -3,
      5,
      0,
      3
    ],
    "io_out": [
      2,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(sort_des(input),4)),-2),34)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-7, -5, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(reverse([-5, 2, -3]),-4)),2))",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -7,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(reverse(input),-4)),2))"
  },
  {
    "input": "input : list = [3, -3, -3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -3, -3],1)",
    "io_inp": [
      3,
      -3,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -3, -1, -5, 5]\noutput : list = [-5, -3, -3, -1, 5]",
    "output": "generated_output : list = sort_asc([-3, -3, -1, -5, 5])",
    "io_inp": [
      -3,
      -3,
      -1,
      -5,
      5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2, -4, -4]\noutput : list = [16, 16, 8, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc([5, -2, -4, -4])),-4)))",
    "io_inp": [
      5,
      -2,
      -4,
      -4
    ],
    "io_out": [
      16,
      16,
      8,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [1, 5, -2, 1, 5, -1]\noutput : list = [180, 180, 36, 36, -36, -72]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(mul_n([1, 5, -2, 1, 5, -1],-4),3)),-3))",
    "io_inp": [
      1,
      5,
      -2,
      1,
      5,
      -1
    ],
    "io_out": [
      180,
      180,
      36,
      36,
      -36,
      -72
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(mul_n(input,-4),3)),-3))"
  },
  {
    "input": "input : list = [4, 1, 2, 5]\noutput : list = [2, 3, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([4, 1, 2, 5]),-1))",
    "io_inp": [
      4,
      1,
      2,
      5
    ],
    "io_out": [
      2,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [-2, 1, 0, -5, -2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take(sort_des(add_n([-2, 1, 0, -5, -2, -1],-2)),2)",
    "io_inp": [
      -2,
      1,
      0,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-2)),2)"
  },
  {
    "input": "input : list = [2, -1, 5]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(take([2, -1, 5],1),5)),1))",
    "io_inp": [
      2,
      -1,
      5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(take(input,1),5)),1))"
  },
  {
    "input": "input : list = [-2, -2, -5, -3, 3]\noutput : list = [6, -6, -10, -4, -4]",
    "output": "generated_output : list = reverse(take(mul_n([-2, -2, -5, -3, 3],2),18))",
    "io_inp": [
      -2,
      -2,
      -5,
      -3,
      3
    ],
    "io_out": [
      6,
      -6,
      -10,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,2),18))"
  },
  {
    "input": "input : list = [2, -5, -3, -1, -5]\noutput : list = [4, 1, -1, -3, -3]",
    "output": "generated_output : list = add_n(sort_des([2, -5, -3, -1, -5]),2)",
    "io_inp": [
      2,
      -5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      4,
      1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-3, 3, 4, -2]\noutput : list = [-3, 3, 4, -2]",
    "output": "generated_output : list = reverse(reverse([-3, 3, 4, -2]))",
    "io_inp": [
      -3,
      3,
      4,
      -2
    ],
    "io_out": [
      -3,
      3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, -4, 2, 2, 5, -1]\noutput : list = [-3, 3, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(take([2, -4, 2, 2, 5, -1],4)),1)))",
    "io_inp": [
      2,
      -4,
      2,
      2,
      5,
      -1
    ],
    "io_out": [
      -3,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(take(input,4)),1)))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [10, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(sort_des([-5, 5]),15),5)),1)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(sort_des(input),15),5)),1)"
  },
  {
    "input": "input : list = [-4, 1, 2, 2, -1, 4]\noutput : list = [2, -1, 4]",
    "output": "generated_output : list = drop([-4, 1, 2, 2, -1, 4],3)",
    "io_inp": [
      -4,
      1,
      2,
      2,
      -1,
      4
    ],
    "io_out": [
      2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 4, 2, 4, -4]\noutput : list = [40, 35, 5, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(add_n([-5, 4, 2, 4, -4],-3)),-5)))",
    "io_inp": [
      -5,
      4,
      2,
      4,
      -4
    ],
    "io_out": [
      40,
      35,
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(add_n(input,-3)),-5)))"
  },
  {
    "input": "input : list = [2, 3, -3, -3, -1]\noutput : list = [2, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n(take([2, 3, -3, -3, -1],3),5))",
    "io_inp": [
      2,
      3,
      -3,
      -3,
      -1
    ],
    "io_out": [
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,3),5))"
  },
  {
    "input": "input : list = [4, -4, 3, 4]\noutput : list = [-7, 0, 1, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(sort_des([4, -4, 3, 4]),-4),-4)),3)",
    "io_inp": [
      4,
      -4,
      3,
      4
    ],
    "io_out": [
      -7,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(sort_des(input),-4),-4)),3)"
  },
  {
    "input": "input : list = [-4, -3, 3, 1, 0, 3]\noutput : list = [-5, -4, 2, 0, -1, 2]",
    "output": "generated_output : list = add_n([-4, -3, 3, 1, 0, 3],-1)",
    "io_inp": [
      -4,
      -3,
      3,
      1,
      0,
      3
    ],
    "io_out": [
      -5,
      -4,
      2,
      0,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -4, 4, 4, 5, -5]\noutput : list = [-5, -4, 1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(reverse([1, -4, 4, 4, 5, -5])))))",
    "io_inp": [
      1,
      -4,
      4,
      4,
      5,
      -5
    ],
    "io_out": [
      -5,
      -4,
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, 1, -2, -2]\noutput : list = [3, 3, 6, 1]",
    "output": "generated_output : list = add_n(take(sub_n(reverse([-4, 1, -2, -2]),-3),9),2)",
    "io_inp": [
      -4,
      1,
      -2,
      -2
    ],
    "io_out": [
      3,
      3,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(input),-3),9),2)"
  },
  {
    "input": "input : list = [5, 4, -1, 4, 5, 4]\noutput : list = [-40, -32, -32]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_des(drop([5, 4, -1, 4, 5, 4],3)),4),-2),27)",
    "io_inp": [
      5,
      4,
      -1,
      4,
      5,
      4
    ],
    "io_out": [
      -40,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_des(drop(input,3)),4),-2),27)"
  },
  {
    "input": "input : list = [1, 5, 2, 2]\noutput : list = [0, 4, 1, 1]",
    "output": "generated_output : list = sub_n([1, 5, 2, 2],1)",
    "io_inp": [
      1,
      5,
      2,
      2
    ],
    "io_out": [
      0,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [160, 40]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(reverse([1, 4]),-5),-4),2),14)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      160,
      40
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(reverse(input),-5),-4),2),14)"
  },
  {
    "input": "input : list = [4, 1, 1]\noutput : list = [-18, -18]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(drop([4, 1, 1],1),3),-5),-2),41)",
    "io_inp": [
      4,
      1,
      1
    ],
    "io_out": [
      -18,
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(drop(input,1),3),-5),-2),41)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([2, 1],-2),1))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-2),1))"
  },
  {
    "input": "input : list = [4, 2, 0, 5, 1, -4]\noutput : list = [-4, 1, 5, 0, 2, 4]",
    "output": "generated_output : list = reverse([4, 2, 0, 5, 1, -4])",
    "io_inp": [
      4,
      2,
      0,
      5,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      5,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, -2, -3, -3, -2]\noutput : list = [13, 13, 8, 8, -7, -7]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sort_asc([1, 1, -2, -3, -3, -2]),-5),35),-5),3)",
    "io_inp": [
      1,
      1,
      -2,
      -3,
      -3,
      -2
    ],
    "io_out": [
      13,
      13,
      8,
      8,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sort_asc(input),-5),35),-5),3)"
  },
  {
    "input": "input : list = [0, 0, -2, -5, -4]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n(take([0, 0, -2, -5, -4],2),-5),2)),4)",
    "io_inp": [
      0,
      0,
      -2,
      -5,
      -4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(take(input,2),-5),2)),4)"
  },
  {
    "input": "input : list = [2, 2, 5, 3]\noutput : list = [1, -1, -2, -2]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(sort_des([2, 2, 5, 3]))),17),4)",
    "io_inp": [
      2,
      2,
      5,
      3
    ],
    "io_out": [
      1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(sort_des(input))),17),4)"
  },
  {
    "input": "input : list = [-1, 1, 0, 2, -3]\noutput : list = [4, 6, 5, 7, 2]",
    "output": "generated_output : list = sub_n([-1, 1, 0, 2, -3],-5)",
    "io_inp": [
      -1,
      1,
      0,
      2,
      -3
    ],
    "io_out": [
      4,
      6,
      5,
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, 4, 3, -1]\noutput : list = [3, 7, 8]",
    "output": "generated_output : list = reverse(take(add_n(take(drop([3, 4, 3, -1],1),7),4),21))",
    "io_inp": [
      3,
      4,
      3,
      -1
    ],
    "io_out": [
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(drop(input,1),7),4),21))"
  },
  {
    "input": "input : list = [-5, 0, 3, 4, -4]\noutput : list = [4, -12, -10, -4, 6]",
    "output": "generated_output : list = reverse(add_n(reverse(reverse(mul_n([-5, 0, 3, 4, -4],-2))),-4))",
    "io_inp": [
      -5,
      0,
      3,
      4,
      -4
    ],
    "io_out": [
      4,
      -12,
      -10,
      -4,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(reverse(mul_n(input,-2))),-4))"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [4, 2, -3]",
    "output": "generated_output : list = sort_des(take(mul_n([4, 2, -3],1),13))",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,1),13))"
  },
  {
    "input": "input : list = [-1, -1, -1, 4, 4]\noutput : list = [4, 4, -1, -1, -1]",
    "output": "generated_output : list = sort_des([-1, -1, -1, 4, 4])",
    "io_inp": [
      -1,
      -1,
      -1,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -2, 4, -5]\noutput : list = [-5, -2, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([5, -2, 4, -5]))",
    "io_inp": [
      5,
      -2,
      4,
      -5
    ],
    "io_out": [
      -5,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, 3, -2, -1, 3, -1]\noutput : list = [-9, -9, 6, 3, -9, 3]",
    "output": "generated_output : list = take(mul_n([3, 3, -2, -1, 3, -1],-3),27)",
    "io_inp": [
      3,
      3,
      -2,
      -1,
      3,
      -1
    ],
    "io_out": [
      -9,
      -9,
      6,
      3,
      -9,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),27)"
  },
  {
    "input": "input : list = [-4, 0, -5, 2, 0, 3]\noutput : list = [3, 0, 2, -5, 0, -4]",
    "output": "generated_output : list = reverse([-4, 0, -5, 2, 0, 3])",
    "io_inp": [
      -4,
      0,
      -5,
      2,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      2,
      -5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take(take([-3, 4, -3],1),11))",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,1),11))"
  },
  {
    "input": "input : list = [-1, 2, 3, 4, 4]\noutput : list = [60, 60, 45, 30, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(mul_n([-1, 2, 3, 4, 4],-3))),-5))",
    "io_inp": [
      -1,
      2,
      3,
      4,
      4
    ],
    "io_out": [
      60,
      60,
      45,
      30,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(mul_n(input,-3))),-5))"
  },
  {
    "input": "input : list = [-2, -1, 4, 0, 4]\noutput : list = [-13, -9, 11, -5, 11]",
    "output": "generated_output : list = sub_n(mul_n(take(sub_n(sub_n([-2, -1, 4, 0, 4],5),-4),22),4),1)",
    "io_inp": [
      -2,
      -1,
      4,
      0,
      4
    ],
    "io_out": [
      -13,
      -9,
      11,
      -5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sub_n(sub_n(input,5),-4),22),4),1)"
  },
  {
    "input": "input : list = [-3, -5, -4, -3, 3, -4]\noutput : list = [2, 0, 1, 2, 8, 1]",
    "output": "generated_output : list = sub_n([-3, -5, -4, -3, 3, -4],-5)",
    "io_inp": [
      -3,
      -5,
      -4,
      -3,
      3,
      -4
    ],
    "io_out": [
      2,
      0,
      1,
      2,
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(take([2, 3, -5],1),2)",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),2)"
  },
  {
    "input": "input : list = [5, 3, -3, -5, 0, 3]\noutput : list = [5, 3, 3, 0, -3, -5]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sort_des([5, 3, -3, -5, 0, 3]))),1))",
    "io_inp": [
      5,
      3,
      -3,
      -5,
      0,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sort_des(input))),1))"
  },
  {
    "input": "input : list = [5, -1, -1, -2]\noutput : list = [0, -30]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(sort_des([5, -1, -1, -2]),2),-5),5))",
    "io_inp": [
      5,
      -1,
      -1,
      -2
    ],
    "io_out": [
      0,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(sort_des(input),2),-5),5))"
  },
  {
    "input": "input : list = [2, 5, 2, -3, -5]\noutput : list = [-2, -8, -18, -22]",
    "output": "generated_output : list = mul_n(drop(sub_n(take(sub_n([2, 5, 2, -3, -5],2),13),4),1),2)",
    "io_inp": [
      2,
      5,
      2,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -8,
      -18,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(take(sub_n(input,2),13),4),1),2)"
  },
  {
    "input": "input : list = [-4, 1, -4, 4, 1]\noutput : list = [-21, -21, -6, -6, 3]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse(sort_des([-4, 1, -4, 4, 1])),21),3),3)",
    "io_inp": [
      -4,
      1,
      -4,
      4,
      1
    ],
    "io_out": [
      -21,
      -21,
      -6,
      -6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(sort_des(input)),21),3),3)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(sort_des([-4, -5]),2),-2)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(sort_des(input),2),-2)))"
  },
  {
    "input": "input : list = [2, -5, 3, 0, 5, 5]\noutput : list = [5, 5, 3, 2, 0, -5]",
    "output": "generated_output : list = sort_des([2, -5, 3, 0, 5, 5])",
    "io_inp": [
      2,
      -5,
      3,
      0,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, 3, 4, -4]\noutput : list = [-12, -12, 9, 12, -12]",
    "output": "generated_output : list = mul_n([-4, -4, 3, 4, -4],3)",
    "io_inp": [
      -4,
      -4,
      3,
      4,
      -4
    ],
    "io_out": [
      -12,
      -12,
      9,
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [4, -5, 4, -1, 5, 2]\noutput : list = [5, 4, 4, 2, -1, -5]",
    "output": "generated_output : list = sort_des([4, -5, 4, -1, 5, 2])",
    "io_inp": [
      4,
      -5,
      4,
      -1,
      5,
      2
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -1, -3, -2]\noutput : list = [-7, -6, -5, 1]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(add_n([5, -1, -3, -2],-5),12),25)),-1)",
    "io_inp": [
      5,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(add_n(input,-5),12),25)),-1)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [0, -2, -6]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_asc([3, 1, -3]))),1),-2)",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_asc(input))),1),-2)"
  },
  {
    "input": "input : list = [4, -4, -3, 2]\noutput : list = [-3, -5, -10, -11]",
    "output": "generated_output : list = sub_n(sort_des(add_n([4, -4, -3, 2],-2)),5)",
    "io_inp": [
      4,
      -4,
      -3,
      2
    ],
    "io_out": [
      -3,
      -5,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-2)),5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [11, 15]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([2, 3],4)),3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      11,
      15
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,4)),3)"
  },
  {
    "input": "input : list = [5, -2, -3, 0, 1]\noutput : list = [9, 6, 0, -3]",
    "output": "generated_output : list = sort_des(drop(mul_n(sort_des(sort_asc([5, -2, -3, 0, 1])),-3),1))",
    "io_inp": [
      5,
      -2,
      -3,
      0,
      1
    ],
    "io_out": [
      9,
      6,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(mul_n(sort_des(sort_asc(input)),-3),1))"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_des(sort_asc(drop(add_n([3, -3, -2],1),2))),12)",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(drop(add_n(input,1),2))),12)"
  },
  {
    "input": "input : list = [2, 2, 3]\noutput : list = [1, 1, 2]",
    "output": "generated_output : list = add_n(sub_n(take(take(sub_n([2, 2, 3],1),4),10),3),3)",
    "io_inp": [
      2,
      2,
      3
    ],
    "io_out": [
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(sub_n(input,1),4),10),3),3)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 2, -3],1)",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -2, 3, -4]\noutput : list = [-2, -2, -7, -9]",
    "output": "generated_output : list = take(sort_des(reverse(take(sub_n([3, -2, 3, -4],5),7))),25)",
    "io_inp": [
      3,
      -2,
      3,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(sub_n(input,5),7))),25)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [12, 9]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(add_n([5, 2],5),3)),1))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(add_n(input,5),3)),1))"
  },
  {
    "input": "input : list = [-1, -3, 1, -1]\noutput : list = [1, -1, -1, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 1, -1])",
    "io_inp": [
      -1,
      -3,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, -1, -5, 0, 3]\noutput : list = [0, -9, -12, -12, -15, -24]",
    "output": "generated_output : list = sort_des(mul_n(add_n([-1, -2, -1, -5, 0, 3],5),-3))",
    "io_inp": [
      -1,
      -2,
      -1,
      -5,
      0,
      3
    ],
    "io_out": [
      0,
      -9,
      -12,
      -12,
      -15,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,5),-3))"
  },
  {
    "input": "input : list = [-1, 5, 2, -3, -4]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take([-1, 5, 2, -3, -4],2)))",
    "io_inp": [
      -1,
      5,
      2,
      -3,
      -4
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [3, 2, 5, 0, -2]\noutput : list = [3, 5, 7, 8, 10]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(add_n([3, 2, 5, 0, -2],-4),1),-4)),4)",
    "io_inp": [
      3,
      2,
      5,
      0,
      -2
    ],
    "io_out": [
      3,
      5,
      7,
      8,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(add_n(input,-4),1),-4)),4)"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [-25, 5, 15]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse([-4, 2, 4]),5)),-5)",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      -25,
      5,
      15
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(input),5)),-5)"
  },
  {
    "input": "input : list = [5, 3, -4, -1]\noutput : list = [-4, -1, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 3, -4, -1])",
    "io_inp": [
      5,
      3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, 5, 2, 1, 0]\noutput : list = [-8, 0, 0, -3, -4, -5]",
    "output": "generated_output : list = reverse(reverse(sub_n([-3, 5, 5, 2, 1, 0],5)))",
    "io_inp": [
      -3,
      5,
      5,
      2,
      1,
      0
    ],
    "io_out": [
      -8,
      0,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,5)))"
  },
  {
    "input": "input : list = [-1, -2, -5, -1, 2, 0]\noutput : list = [4, 7, 8, 8, 9, 11]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(reverse([-1, -2, -5, -1, 2, 0]))),5),4)",
    "io_inp": [
      -1,
      -2,
      -5,
      -1,
      2,
      0
    ],
    "io_out": [
      4,
      7,
      8,
      8,
      9,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(reverse(input))),5),4)"
  },
  {
    "input": "input : list = [-4, -3, 2, 5, -2]\noutput : list = [-3, 4, 1]",
    "output": "generated_output : list = take(reverse(add_n(add_n(drop([-4, -3, 2, 5, -2],2),2),-3)),32)",
    "io_inp": [
      -4,
      -3,
      2,
      5,
      -2
    ],
    "io_out": [
      -3,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(drop(input,2),2),-3)),32)"
  },
  {
    "input": "input : list = [4, 0, -2, 3, 2, 5]\noutput : list = [6, 5, 4, 3, 1, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([4, 0, -2, 3, 2, 5]),1),-2)",
    "io_inp": [
      4,
      0,
      -2,
      3,
      2,
      5
    ],
    "io_out": [
      6,
      5,
      4,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),1),-2)"
  },
  {
    "input": "input : list = [1, 3, 1, 5, -5]\noutput : list = [28, 12, -4, -4, -52]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(sort_des([1, 3, 1, 5, -5]),-2),25),-3),-4)",
    "io_inp": [
      1,
      3,
      1,
      5,
      -5
    ],
    "io_out": [
      28,
      12,
      -4,
      -4,
      -52
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(sort_des(input),-2),25),-3),-4)"
  },
  {
    "input": "input : list = [2, 3, -4, 4, 0, -5]\noutput : list = [-28, -24, -20, -12, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(mul_n([2, 3, -4, 4, 0, -5],1),3)),-4))",
    "io_inp": [
      2,
      3,
      -4,
      4,
      0,
      -5
    ],
    "io_out": [
      -28,
      -24,
      -20,
      -12,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(mul_n(input,1),3)),-4))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(sort_des([1, -1])),3),7))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(sort_des(input)),3),7))"
  },
  {
    "input": "input : list = [-5, -4, -2, -1, -2, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(take([-5, -4, -2, -1, -2, 0],2)))),-5)",
    "io_inp": [
      -5,
      -4,
      -2,
      -1,
      -2,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(take(input,2)))),-5)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [15, 25]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop([1, -3, -5],1)))),-5)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop(input,1)))),-5)"
  },
  {
    "input": "input : list = [3, 1, 3, 3, -2]\noutput : list = [8, 8, 8, 6, 3]",
    "output": "generated_output : list = add_n(sort_des([3, 1, 3, 3, -2]),5)",
    "io_inp": [
      3,
      1,
      3,
      3,
      -2
    ],
    "io_out": [
      8,
      8,
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-1, -1, 1, -2, -5, 4]\noutput : list = [-13, -4, -1, -1, 5, 14]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(reverse([-1, -1, 1, -2, -5, 4]),3),2)),4)",
    "io_inp": [
      -1,
      -1,
      1,
      -2,
      -5,
      4
    ],
    "io_out": [
      -13,
      -4,
      -1,
      -1,
      5,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(reverse(input),3),2)),4)"
  },
  {
    "input": "input : list = [1, 4, 5, -5, 5]\noutput : list = [80, -80, 80]",
    "output": "generated_output : list = take(take(mul_n(drop(mul_n([1, 4, 5, -5, 5],4),2),4),25),7)",
    "io_inp": [
      1,
      4,
      5,
      -5,
      5
    ],
    "io_out": [
      80,
      -80,
      80
    ],
    "output_masked": "generated_output : list = take(take(mul_n(drop(mul_n(input,4),2),4),25),7)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, -2]",
    "output": "generated_output : list = mul_n([0, 1],-2)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, -3, 2, 5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = take(reverse(take(sort_asc(drop([1, -3, 2, 5, 4],3)),6)),25)",
    "io_inp": [
      1,
      -3,
      2,
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(drop(input,3)),6)),25)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [0, -2, -2]",
    "output": "generated_output : list = take(sort_des([-2, 0, -2]),3)",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),3)"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [28, 12, 4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(mul_n([3, 1, 0],2),-1),4)))",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      28,
      12,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(mul_n(input,2),-1),4)))"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(reverse(drop(add_n([-1, 3, 2],4),2)))",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(add_n(input,4),2)))"
  },
  {
    "input": "input : list = [0, -4, 1, 5, -3, -5]\noutput : list = [0, -16, 4, 20, -12, -20]",
    "output": "generated_output : list = mul_n([0, -4, 1, 5, -3, -5],4)",
    "io_inp": [
      0,
      -4,
      1,
      5,
      -3,
      -5
    ],
    "io_out": [
      0,
      -16,
      4,
      20,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 4, -4]\noutput : list = [4, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(sort_des([-5, 4, -4])))))",
    "io_inp": [
      -5,
      4,
      -4
    ],
    "io_out": [
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, -4, 3, 1, 0]\noutput : list = [3, 1, 0, 0, -4]",
    "output": "generated_output : list = sort_des([0, -4, 3, 1, 0])",
    "io_inp": [
      0,
      -4,
      3,
      1,
      0
    ],
    "io_out": [
      3,
      1,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, -4, -1, -2, 0]\noutput : list = [-5]",
    "output": "generated_output : list = drop(add_n([-1, 5, -4, -1, -2, 0],-5),5)",
    "io_inp": [
      -1,
      5,
      -4,
      -1,
      -2,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-5),5)"
  },
  {
    "input": "input : list = [-5, 1, 4, 5, 0]\noutput : list = [3, -2]",
    "output": "generated_output : list = add_n(sort_des(reverse(drop([-5, 1, 4, 5, 0],3))),-2)",
    "io_inp": [
      -5,
      1,
      4,
      5,
      0
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(drop(input,3))),-2)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = sort_des([-2, 0, 1])",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [-1, -1, -4]",
    "output": "generated_output : list = add_n(reverse([-3, 0, 0]),-1)",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-4, 2, 4, 2, -5]\noutput : list = [-30, -18, -18, 18, 24]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n([-4, 2, 4, 2, -5],1),-3)),5),2)",
    "io_inp": [
      -4,
      2,
      4,
      2,
      -5
    ],
    "io_out": [
      -30,
      -18,
      -18,
      18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n(input,1),-3)),5),2)"
  },
  {
    "input": "input : list = [-4, -2, -3, -5]\noutput : list = [3, 2, 1, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_asc([-4, -2, -3, -5]))),-3),-2)",
    "io_inp": [
      -4,
      -2,
      -3,
      -5
    ],
    "io_out": [
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_asc(input))),-3),-2)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [16, 12]",
    "output": "generated_output : list = mul_n(sort_des([4, 3]),4)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-3, -1, 1, -3, -4, 5]\noutput : list = [5, -4, -3, 1, -1, -3]",
    "output": "generated_output : list = reverse([-3, -1, 1, -3, -4, 5])",
    "io_inp": [
      -3,
      -1,
      1,
      -3,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      -3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [7, 9]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n([3, 5],1),4)))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(input,1),4)))"
  },
  {
    "input": "input : list = [-2, 1, -2, 3, -1]\noutput : list = [8, 6, 4, 3, 3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(sort_des([-2, 1, -2, 3, -1]),10),5)))",
    "io_inp": [
      -2,
      1,
      -2,
      3,
      -1
    ],
    "io_out": [
      8,
      6,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(sort_des(input),10),5)))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse([-4, -1])",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, 2, -3]\noutput : list = [-1, 4, 6, 6]",
    "output": "generated_output : list = add_n(take(add_n(take(reverse([4, 4, 2, -3]),20),-3),17),5)",
    "io_inp": [
      4,
      4,
      2,
      -3
    ],
    "io_out": [
      -1,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(reverse(input),20),-3),17),5)"
  },
  {
    "input": "input : list = [4, -4, 3, 1, -1]\noutput : list = [4, 3, 1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des([4, -4, 3, 1, -1]))))",
    "io_inp": [
      4,
      -4,
      3,
      1,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [-4, -4, 1, -4]\noutput : list = [8, 8, 3, 8]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(reverse([-4, -4, 1, -4]),15),-1),-4))",
    "io_inp": [
      -4,
      -4,
      1,
      -4
    ],
    "io_out": [
      8,
      8,
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(reverse(input),15),-1),-4))"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [0, 8, 6]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(mul_n([1, 0, 4],-2),-4)),4),5)",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      0,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(mul_n(input,-2),-4)),4),5)"
  },
  {
    "input": "input : list = [-5, 4, 0, 2]\noutput : list = [0, -2, -4, -9]",
    "output": "generated_output : list = add_n(sort_des([-5, 4, 0, 2]),-4)",
    "io_inp": [
      -5,
      4,
      0,
      2
    ],
    "io_out": [
      0,
      -2,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-13, -11]",
    "output": "generated_output : list = take(sub_n(reverse(add_n([-1, -3],-5)),5),33)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -13,
      -11
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(input,-5)),5),33)"
  },
  {
    "input": "input : list = [2, -3, 2, 2]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sub_n(take(take(take([2, -3, 2, 2],1),16),15),2))",
    "io_inp": [
      2,
      -3,
      2,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(take(input,1),16),15),2))"
  },
  {
    "input": "input : list = [4, 3, 0, -2, 4, 3]\noutput : list = [10]",
    "output": "generated_output : list = add_n(sub_n(drop(take(reverse([4, 3, 0, -2, 4, 3]),6),5),-4),2)",
    "io_inp": [
      4,
      3,
      0,
      -2,
      4,
      3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(take(reverse(input),6),5),-4),2)"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [4, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, 4])",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, -4, -3, -3, 1]\noutput : list = [-26, 34, 58, 46, 46, -2]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(mul_n([3, -2, -4, -3, -3, 1],2),-3),-5),2),23)",
    "io_inp": [
      3,
      -2,
      -4,
      -3,
      -3,
      1
    ],
    "io_out": [
      -26,
      34,
      58,
      46,
      46,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(mul_n(input,2),-3),-5),2),23)"
  },
  {
    "input": "input : list = [-2, 0, 2, -2, -2]\noutput : list = [-6, 0, 6, -6, -6]",
    "output": "generated_output : list = mul_n([-2, 0, 2, -2, -2],3)",
    "io_inp": [
      -2,
      0,
      2,
      -2,
      -2
    ],
    "io_out": [
      -6,
      0,
      6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, 0, 2, 3, 4]\noutput : list = [16, -4, 4, 8, 12]",
    "output": "generated_output : list = take(add_n(mul_n(take(mul_n([5, 0, 2, 3, 4],4),20),1),-4),10)",
    "io_inp": [
      5,
      0,
      2,
      3,
      4
    ],
    "io_out": [
      16,
      -4,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(mul_n(input,4),20),1),-4),10)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -5, -4]\noutput : list = [-9, -8, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([4, 5, -5, -4]),4))",
    "io_inp": [
      4,
      5,
      -5,
      -4
    ],
    "io_out": [
      -9,
      -8,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-3, -1, -3]\noutput : list = [-11, -11, -9]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(sort_asc([-3, -1, -3]))),3),5)",
    "io_inp": [
      -3,
      -1,
      -3
    ],
    "io_out": [
      -11,
      -11,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(sort_asc(input))),3),5)"
  },
  {
    "input": "input : list = [3, 0, 5, 1, 4]\noutput : list = [0, -3, 2, -2, 1]",
    "output": "generated_output : list = add_n([3, 0, 5, 1, 4],-3)",
    "io_inp": [
      3,
      0,
      5,
      1,
      4
    ],
    "io_out": [
      0,
      -3,
      2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -5, 0, 0]\noutput : list = [-9, -4, -4]",
    "output": "generated_output : list = take(add_n(sort_asc(drop([-5, -5, 0, 0],1)),-4),29)",
    "io_inp": [
      -5,
      -5,
      0,
      0
    ],
    "io_out": [
      -9,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(drop(input,1)),-4),29)"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [10, -8]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(drop([3, -5, 4],1)),-2),8),1)",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      10,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(drop(input,1)),-2),8),1)"
  },
  {
    "input": "input : list = [-1, 1, -1, -3, -3]\noutput : list = [-11, -11, -9, -9, -7]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(sub_n([-1, 1, -1, -3, -3],5),3),3)),-3)",
    "io_inp": [
      -1,
      1,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -11,
      -11,
      -9,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(sub_n(input,5),3),3)),-3)"
  },
  {
    "input": "input : list = [3, -4, 0]\noutput : list = [-1, -4, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n([3, -4, 0],-1)),-3))",
    "io_inp": [
      3,
      -4,
      0
    ],
    "io_out": [
      -1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(input,-1)),-3))"
  },
  {
    "input": "input : list = [1, 3, 2, -2]\noutput : list = [11, 9]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(take([1, 3, 2, -2],2),-3)),5))",
    "io_inp": [
      1,
      3,
      2,
      -2
    ],
    "io_out": [
      11,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(take(input,2),-3)),5))"
  },
  {
    "input": "input : list = [0, -5, 1, 4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(drop([0, -5, 1, 4, 2],3)),26)))",
    "io_inp": [
      0,
      -5,
      1,
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(drop(input,3)),26)))"
  },
  {
    "input": "input : list = [-5, -3, -1, -1, -2, 0]\noutput : list = [0, -8, -4, -4, -12, -20]",
    "output": "generated_output : list = mul_n(reverse([-5, -3, -1, -1, -2, 0]),4)",
    "io_inp": [
      -5,
      -3,
      -1,
      -1,
      -2,
      0
    ],
    "io_out": [
      0,
      -8,
      -4,
      -4,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [2, -2, 4, 4]\noutput : list = [8, -8, 16, 16]",
    "output": "generated_output : list = mul_n([2, -2, 4, 4],4)",
    "io_inp": [
      2,
      -2,
      4,
      4
    ],
    "io_out": [
      8,
      -8,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [7, 0]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(sub_n([-5, 2],-3),-3),1),3))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(sub_n(input,-3),-3),1),3))"
  },
  {
    "input": "input : list = [4, 2, 0, 5]\noutput : list = [24, 20, 12, 4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(mul_n([4, 2, 0, 5],4)))),4)",
    "io_inp": [
      4,
      2,
      0,
      5
    ],
    "io_out": [
      24,
      20,
      12,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(mul_n(input,4)))),4)"
  },
  {
    "input": "input : list = [-4, 2, 2, -5, 3, -2]\noutput : list = [-4, 2, 2]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(take([-4, 2, 2, -5, 3, -2],3)))),1)",
    "io_inp": [
      -4,
      2,
      2,
      -5,
      3,
      -2
    ],
    "io_out": [
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(take(input,3)))),1)"
  },
  {
    "input": "input : list = [4, -3, -5]\noutput : list = [6, -4, -39]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(add_n([4, -3, -5],3),-1),-5)),1)",
    "io_inp": [
      4,
      -3,
      -5
    ],
    "io_out": [
      6,
      -4,
      -39
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(add_n(input,3),-1),-5)),1)"
  },
  {
    "input": "input : list = [-5, 5, 3, 0, -5, -5]\noutput : list = [-13, -13, -13, -8, -5, -3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(add_n([-5, 5, 3, 0, -5, -5],-4)),-5),-1))",
    "io_inp": [
      -5,
      5,
      3,
      0,
      -5,
      -5
    ],
    "io_out": [
      -13,
      -13,
      -13,
      -8,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(add_n(input,-4)),-5),-1))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 3, -2, -5, 2]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(drop([-3, 3, -2, -5, 2],2))))",
    "io_inp": [
      -3,
      3,
      -2,
      -5,
      2
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(drop(input,2))))"
  },
  {
    "input": "input : list = [-5, 5, -5, -1, 2, 5]\noutput : list = [-6, -2, 1, 4]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_asc(drop([-5, 5, -5, -1, 2, 5],2)),-2),3),2)",
    "io_inp": [
      -5,
      5,
      -5,
      -1,
      2,
      5
    ],
    "io_out": [
      -6,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_asc(drop(input,2)),-2),3),2)"
  },
  {
    "input": "input : list = [1, 1, 0, -4, 5]\noutput : list = [-2, -6, -7, -11]",
    "output": "generated_output : list = add_n(sort_des(add_n(drop([1, 1, 0, -4, 5],1),-3)),-4)",
    "io_inp": [
      1,
      1,
      0,
      -4,
      5
    ],
    "io_out": [
      -2,
      -6,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(drop(input,1),-3)),-4)"
  },
  {
    "input": "input : list = [5, 0, -3, 3, 1]\noutput : list = [-3, 0, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 0, -3, 3, 1])",
    "io_inp": [
      5,
      0,
      -3,
      3,
      1
    ],
    "io_out": [
      -3,
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, -5, 0, -2, 5]\noutput : list = [-1, 1, 2, 4, 8, 9]",
    "output": "generated_output : list = sort_asc(add_n([4, -3, -5, 0, -2, 5],4))",
    "io_inp": [
      4,
      -3,
      -5,
      0,
      -2,
      5
    ],
    "io_out": [
      -1,
      1,
      2,
      4,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = add_n(add_n([-5, 2],-3),5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),5)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [8, 8]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n([3, 3],-1),2),-1),5)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(input,-1),2),-1),5)"
  },
  {
    "input": "input : list = [-1, 0, -3, -1, -4]\noutput : list = [-4, -3, -1, -1, 0]",
    "output": "generated_output : list = sort_asc(take(take(reverse(mul_n([-1, 0, -3, -1, -4],1)),33),38))",
    "io_inp": [
      -1,
      0,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(mul_n(input,1)),33),38))"
  },
  {
    "input": "input : list = [0, 2, 1, 0, 4]\noutput : list = [3, 5, 4, 3, 7]",
    "output": "generated_output : list = add_n([0, 2, 1, 0, 4],3)",
    "io_inp": [
      0,
      2,
      1,
      0,
      4
    ],
    "io_out": [
      3,
      5,
      4,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [1, 6]",
    "output": "generated_output : list = sub_n([0, 5],-1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [0, -4, 2]",
    "output": "generated_output : list = reverse([2, -4, 0])",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, -1, -1, 2]\noutput : list = [3, 5, 5, 8, 10]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(sub_n([4, -3, -1, -1, 2],-3)),18),3))",
    "io_inp": [
      4,
      -3,
      -1,
      -1,
      2
    ],
    "io_out": [
      3,
      5,
      5,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(sub_n(input,-3)),18),3))"
  },
  {
    "input": "input : list = [1, -2, -1, -2, 4]\noutput : list = [4, -2, -1, -2, 1]",
    "output": "generated_output : list = reverse(mul_n([1, -2, -1, -2, 4],1))",
    "io_inp": [
      1,
      -2,
      -1,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-4, 1, 4, 0, 5]\noutput : list = [11, -4, -13, -1, -16]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(sub_n([-4, 1, 4, 0, 5],-5),2),-2),-3),2)",
    "io_inp": [
      -4,
      1,
      4,
      0,
      5
    ],
    "io_out": [
      11,
      -4,
      -13,
      -1,
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(sub_n(input,-5),2),-2),-3),2)"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [-4, 0, -4]",
    "output": "generated_output : list = take(add_n(sub_n([-1, 3, -1],1),-2),22)",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      -4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,1),-2),22)"
  },
  {
    "input": "input : list = [1, 4, -3, 3, 3, 3]\noutput : list = [9, 8, 8, 8, 6, 2]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(add_n([1, 4, -3, 3, 3, 3],4)),3),-2))",
    "io_inp": [
      1,
      4,
      -3,
      3,
      3,
      3
    ],
    "io_out": [
      9,
      8,
      8,
      8,
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(add_n(input,4)),3),-2))"
  },
  {
    "input": "input : list = [3, 5, -2, -5]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(take([3, 5, -2, -5],1)),2),2))",
    "io_inp": [
      3,
      5,
      -2,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(take(input,1)),2),2))"
  },
  {
    "input": "input : list = [-3, 4, -4, -5, -5, -4]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = add_n(reverse(drop([-3, 4, -4, -5, -5, -4],3)),4)",
    "io_inp": [
      -3,
      4,
      -4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,3)),4)"
  },
  {
    "input": "input : list = [-1, 0, -4, 3]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(take([-1, 0, -4, 3],1),5)),2),2)",
    "io_inp": [
      -1,
      0,
      -4,
      3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(take(input,1),5)),2),2)"
  },
  {
    "input": "input : list = [0, 5, -4, -1]\noutput : list = [-30, -5, 0, 15]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(sub_n([0, 5, -4, -1],-2)),-5),5),48)",
    "io_inp": [
      0,
      5,
      -4,
      -1
    ],
    "io_out": [
      -30,
      -5,
      0,
      15
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(sub_n(input,-2)),-5),5),48)"
  },
  {
    "input": "input : list = [5, 0, 4, -2, -1]\noutput : list = [9, 4, 8]",
    "output": "generated_output : list = sub_n(take([5, 0, 4, -2, -1],3),-4)",
    "io_inp": [
      5,
      0,
      4,
      -2,
      -1
    ],
    "io_out": [
      9,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-4)"
  },
  {
    "input": "input : list = [-2, -1, -4, -2]\noutput : list = [28, 24, 36, 28]",
    "output": "generated_output : list = mul_n(sub_n([-2, -1, -4, -2],5),-4)",
    "io_inp": [
      -2,
      -1,
      -4,
      -2
    ],
    "io_out": [
      28,
      24,
      36,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),-4)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-5, -9]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(reverse([-3, 1])),3),-1),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(reverse(input)),3),-1),-5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-8, 1]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(sort_asc([4, -5]),-1),-4)),26)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(sort_asc(input),-1),-4)),26)"
  },
  {
    "input": "input : list = [-5, -3, -4, 5, -4]\noutput : list = [-1, 0, 0, 1, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-5, -3, -4, 5, -4],1),-5))",
    "io_inp": [
      -5,
      -3,
      -4,
      5,
      -4
    ],
    "io_out": [
      -1,
      0,
      0,
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,1),-5))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [10, -15]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(mul_n([-4, 1],5)),-5)),1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(mul_n(input,5)),-5)),1)"
  },
  {
    "input": "input : list = [-3, -3, -5, 3, 2]\noutput : list = [-5, -5, -7]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(add_n([-3, -3, -5, 3, 2],-4),3)),-2))",
    "io_inp": [
      -3,
      -3,
      -5,
      3,
      2
    ],
    "io_out": [
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(add_n(input,-4),3)),-2))"
  },
  {
    "input": "input : list = [1, -5, -1, 4, -3]\noutput : list = [-6, -4, -2, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(sort_asc([1, -5, -1, 4, -3]),3)),2))",
    "io_inp": [
      1,
      -5,
      -1,
      4,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(sort_asc(input),3)),2))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(sort_asc([1, -3]))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -2, 2]\noutput : list = [2, 2, -18]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_des([2, -2, 2]),5),-5),-2),5)",
    "io_inp": [
      2,
      -2,
      2
    ],
    "io_out": [
      2,
      2,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_des(input),5),-5),-2),5)"
  },
  {
    "input": "input : list = [0, 5, 2, -5, -2]\noutput : list = [-2, 3, 0, -7, -4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sub_n([0, 5, 2, -5, -2],-1),3),5),-2),-3)",
    "io_inp": [
      0,
      5,
      2,
      -5,
      -2
    ],
    "io_out": [
      -2,
      3,
      0,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sub_n(input,-1),3),5),-2),-3)"
  },
  {
    "input": "input : list = [-1, 4, 5, 5, 3]\noutput : list = [3, 5, 5, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, 5, 5, 3])",
    "io_inp": [
      -1,
      4,
      5,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -1, 2, 5]\noutput : list = [2, -1, -4, -7]",
    "output": "generated_output : list = reverse(sub_n([-4, -1, 2, 5],3))",
    "io_inp": [
      -4,
      -1,
      2,
      5
    ],
    "io_out": [
      2,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-3, 1, -1, -3, 3]\noutput : list = [-9, -7, -5]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(take([-3, 1, -1, -3, 3],3),1),-3)),3)",
    "io_inp": [
      -3,
      1,
      -1,
      -3,
      3
    ],
    "io_out": [
      -9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(take(input,3),1),-3)),3)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [3]",
    "output": "generated_output : list = drop(reverse(reverse(sub_n(reverse([5, 5]),2))),1)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(reverse(reverse(sub_n(reverse(input),2))),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = reverse([4, -3])",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, -2, 1, -2, 5]\noutput : list = [5, 5, 1, 0, -2, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_asc([0, 5, -2, 1, -2, 5]))),-1),-1)",
    "io_inp": [
      0,
      5,
      -2,
      1,
      -2,
      5
    ],
    "io_out": [
      5,
      5,
      1,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_asc(input))),-1),-1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [26, 16]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sub_n([-4, -3],-2),-2),-2),5),4)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      26,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sub_n(input,-2),-2),-2),5),4)"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [-7, -6, -1]",
    "output": "generated_output : list = sub_n(take(sub_n([-5, -4, 1],-2),18),4)",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      -7,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,-2),18),4)"
  },
  {
    "input": "input : list = [2, -5, 0, -3, 1, 2]\noutput : list = [3, -4, 1, -2, 2, 3]",
    "output": "generated_output : list = add_n([2, -5, 0, -3, 1, 2],1)",
    "io_inp": [
      2,
      -5,
      0,
      -3,
      1,
      2
    ],
    "io_out": [
      3,
      -4,
      1,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -3, 2, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take(mul_n(take(take(take([-2, -3, 2, -5],1),15),1),1),11)",
    "io_inp": [
      -2,
      -3,
      2,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(take(input,1),15),1),1),11)"
  },
  {
    "input": "input : list = [3, -4, 4, -2, 3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(drop([3, -4, 4, -2, 3, 0],4))),32))",
    "io_inp": [
      3,
      -4,
      4,
      -2,
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(drop(input,4))),32))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(take(sort_asc(reverse(reverse([4, -3]))),32),1)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(reverse(input))),32),1)"
  },
  {
    "input": "input : list = [-2, 3, -4, 3, 1, 5]\noutput : list = [4, 2, -1, -3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([-2, 3, -4, 3, 1, 5],-1)))",
    "io_inp": [
      -2,
      3,
      -4,
      3,
      1,
      5
    ],
    "io_out": [
      4,
      2,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [3, -4, 2, -3, 5, 0]\noutput : list = [-6, -5, -2, 0, 1, 3]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n([3, -4, 2, -3, 5, 0],-2)),-5)),1)",
    "io_inp": [
      3,
      -4,
      2,
      -3,
      5,
      0
    ],
    "io_out": [
      -6,
      -5,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n(input,-2)),-5)),1)"
  },
  {
    "input": "input : list = [3, 3, -3, -2, -5]\noutput : list = [3, -2, -3, -5]",
    "output": "generated_output : list = drop(sort_des([3, 3, -3, -2, -5]),1)",
    "io_inp": [
      3,
      3,
      -3,
      -2,
      -5
    ],
    "io_out": [
      3,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),1)"
  },
  {
    "input": "input : list = [-5, 3, -2, 1, -1]\noutput : list = [5, -3, 2, -1, 1]",
    "output": "generated_output : list = mul_n([-5, 3, -2, 1, -1],-1)",
    "io_inp": [
      -5,
      3,
      -2,
      1,
      -1
    ],
    "io_out": [
      5,
      -3,
      2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 5, 1, -3, 0]\noutput : list = [4, 1, 5, 9, 5]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(add_n([1, 5, 1, -3, 0],2)),-5),-4),1)",
    "io_inp": [
      1,
      5,
      1,
      -3,
      0
    ],
    "io_out": [
      4,
      1,
      5,
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(add_n(input,2)),-5),-4),1)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(drop([-2, 5, -4],1)))))",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [3, -1, 2, 3, -2, -1]\noutput : list = [-1, -2, 3, 2, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, 2, 3, -2, -1])",
    "io_inp": [
      3,
      -1,
      2,
      3,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      3,
      2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, -4, 0, 5, -3]\noutput : list = [-2, -2, -1, 2, 2, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des([0, -4, -4, 0, 5, -3])),3),1)",
    "io_inp": [
      0,
      -4,
      -4,
      0,
      5,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(input)),3),1)"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [14]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(take([4, -3, 3],1),5)),-5))",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(take(input,1),5)),-5))"
  },
  {
    "input": "input : list = [0, 5, -3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = reverse(drop([0, 5, -3, 2],2))",
    "io_inp": [
      0,
      5,
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [5, 4, -3]\noutput : list = [0, -1, -8]",
    "output": "generated_output : list = add_n([5, 4, -3],-5)",
    "io_inp": [
      5,
      4,
      -3
    ],
    "io_out": [
      0,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 2, 1, 3, 2, -3]\noutput : list = [-15, -9, 3, 6, 6, 9]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(sort_asc([-5, 2, 1, 3, 2, -3]))),3))",
    "io_inp": [
      -5,
      2,
      1,
      3,
      2,
      -3
    ],
    "io_out": [
      -15,
      -9,
      3,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [1, -5, -1, 5]\noutput : list = [5, 1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des([1, -5, -1, 5]))",
    "io_inp": [
      1,
      -5,
      -1,
      5
    ],
    "io_out": [
      5,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, 2, 3, 0, -3]\noutput : list = [9, 6, 7, 4, 1]",
    "output": "generated_output : list = sub_n([5, 2, 3, 0, -3],-4)",
    "io_inp": [
      5,
      2,
      3,
      0,
      -3
    ],
    "io_out": [
      9,
      6,
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, 4, -4, 3, 0]\noutput : list = [-4, 3, 0]",
    "output": "generated_output : list = drop([0, 4, -4, 3, 0],2)",
    "io_inp": [
      0,
      4,
      -4,
      3,
      0
    ],
    "io_out": [
      -4,
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 0, 2, 3]\noutput : list = [2, 4]",
    "output": "generated_output : list = drop(mul_n(mul_n(add_n(reverse([-1, 0, 2, 3]),-1),-1),2),2)",
    "io_inp": [
      -1,
      0,
      2,
      3
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(add_n(reverse(input),-1),-1),2),2)"
  },
  {
    "input": "input : list = [2, 4, 0, 5, -1, -4]\noutput : list = [6, 5, 3, 1]",
    "output": "generated_output : list = take(sort_des(add_n([2, 4, 0, 5, -1, -4],1)),4)",
    "io_inp": [
      2,
      4,
      0,
      5,
      -1,
      -4
    ],
    "io_out": [
      6,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,1)),4)"
  },
  {
    "input": "input : list = [-4, 5, 4, -5]\noutput : list = [16, -20, -16, 20]",
    "output": "generated_output : list = mul_n([-4, 5, 4, -5],-4)",
    "io_inp": [
      -4,
      5,
      4,
      -5
    ],
    "io_out": [
      16,
      -20,
      -16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, 3, 0, 2, -3, 3]\noutput : list = [1, 4, 6, 7]",
    "output": "generated_output : list = sort_asc(drop(reverse(add_n(reverse([5, 3, 0, 2, -3, 3]),4)),2))",
    "io_inp": [
      5,
      3,
      0,
      2,
      -3,
      3
    ],
    "io_out": [
      1,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(add_n(reverse(input),4)),2))"
  },
  {
    "input": "input : list = [5, 5, 3, 1, 3, -3]\noutput : list = [2, 2, 0, -2, 0, -6]",
    "output": "generated_output : list = add_n([5, 5, 3, 1, 3, -3],-3)",
    "io_inp": [
      5,
      5,
      3,
      1,
      3,
      -3
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [5, -2, 2, -3, 1, -4]\noutput : list = [2, 7, 3, 8]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(drop([5, -2, 2, -3, 1, -4],2),-4),5)),-3)",
    "io_inp": [
      5,
      -2,
      2,
      -3,
      1,
      -4
    ],
    "io_out": [
      2,
      7,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(drop(input,2),-4),5)),-3)"
  },
  {
    "input": "input : list = [0, -4, 0, -4, 1]\noutput : list = [5, 4, 4, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n([0, -4, 0, -4, 1],-4))",
    "io_inp": [
      0,
      -4,
      0,
      -4,
      1
    ],
    "io_out": [
      5,
      4,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sub_n(take(take([4, -2, 0],1),8),1))",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(input,1),8),1))"
  },
  {
    "input": "input : list = [5, 0, -4]\noutput : list = [-103, -3, 122]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(mul_n([5, 0, -4],-5),-5))),-3)",
    "io_inp": [
      5,
      0,
      -4
    ],
    "io_out": [
      -103,
      -3,
      122
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(mul_n(input,-5),-5))),-3)"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [2, 0]",
    "output": "generated_output : list = mul_n(reverse(drop([5, 0, 1],1)),2)",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,1)),2)"
  },
  {
    "input": "input : list = [3, 5, -1, 5, -2, -2]\noutput : list = [5, 5, 3, -1, -2, -2]",
    "output": "generated_output : list = sort_des([3, 5, -1, 5, -2, -2])",
    "io_inp": [
      3,
      5,
      -1,
      5,
      -2,
      -2
    ],
    "io_out": [
      5,
      5,
      3,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, 0, 2, -1, -4]\noutput : list = [-3, 0, 3, 1, 1, -3]",
    "output": "generated_output : list = add_n(reverse([-4, 0, 0, 2, -1, -4]),1)",
    "io_inp": [
      -4,
      0,
      0,
      2,
      -1,
      -4
    ],
    "io_out": [
      -3,
      0,
      3,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-1, 1, -2, 2]\noutput : list = [8, -8, 4, -4]",
    "output": "generated_output : list = reverse(mul_n([-1, 1, -2, 2],4))",
    "io_inp": [
      -1,
      1,
      -2,
      2
    ],
    "io_out": [
      8,
      -8,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [5, -5, -4, 3, -2, 2]\noutput : list = [-5, -4, -2, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse([5, -5, -4, 3, -2, 2]))",
    "io_inp": [
      5,
      -5,
      -4,
      3,
      -2,
      2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(sort_des(take(take(take([-5, 3, 1],1),15),22)),-1)",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(take(input,1),15),22)),-1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [9, 2]",
    "output": "generated_output : list = sub_n([5, -2],-4)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, 0, -4, -1, 3]\noutput : list = [-3, 1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(drop([1, 0, -4, -1, 3],2),-1))),26)",
    "io_inp": [
      1,
      0,
      -4,
      -1,
      3
    ],
    "io_out": [
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(drop(input,2),-1))),26)"
  },
  {
    "input": "input : list = [-2, 2, -3]\noutput : list = [-7, -2, -6]",
    "output": "generated_output : list = reverse(add_n(add_n([-2, 2, -3],-3),-1))",
    "io_inp": [
      -2,
      2,
      -3
    ],
    "io_out": [
      -7,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-3),-1))"
  },
  {
    "input": "input : list = [5, -4, -4]\noutput : list = [-30, 24, 24]",
    "output": "generated_output : list = mul_n(mul_n([5, -4, -4],2),-3)",
    "io_inp": [
      5,
      -4,
      -4
    ],
    "io_out": [
      -30,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),-3)"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [4, 6, 8]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(mul_n([3, 2, 4],2)))))",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [0, 3, 1]\noutput : list = [-3, -5, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(take(sub_n([0, 3, 1],4),4),2)),25)",
    "io_inp": [
      0,
      3,
      1
    ],
    "io_out": [
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(sub_n(input,4),4),2)),25)"
  },
  {
    "input": "input : list = [4, -2, 0, -2]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(drop([4, -2, 0, -2],2)),5),-3))",
    "io_inp": [
      4,
      -2,
      0,
      -2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(drop(input,2)),5),-3))"
  },
  {
    "input": "input : list = [-1, 3, 4, -2, -1]\noutput : list = [-2, -1, -1, 3, 4]",
    "output": "generated_output : list = sort_asc([-1, 3, 4, -2, -1])",
    "io_inp": [
      -1,
      3,
      4,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, -1, 3, 4]\noutput : list = [7, 7, 6, 6, 2]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(sort_des([4, 3, -1, 3, 4]),4),1)),1)",
    "io_inp": [
      4,
      3,
      -1,
      3,
      4
    ],
    "io_out": [
      7,
      7,
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(sort_des(input),4),1)),1)"
  },
  {
    "input": "input : list = [-3, 4, 5, -4, -4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = take(take([-3, 4, 5, -4, -4],2),4)",
    "io_inp": [
      -3,
      4,
      5,
      -4,
      -4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(take(input,2),4)"
  },
  {
    "input": "input : list = [1, 5, -4, -3, 4, -4]\noutput : list = [-5, -4, 0, 4]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sub_n([1, 5, -4, -3, 4, -4],-4),11),4),-5))",
    "io_inp": [
      1,
      5,
      -4,
      -3,
      4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sub_n(input,-4),11),4),-5))"
  },
  {
    "input": "input : list = [-5, 1, -4]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(sub_n(take(reverse(drop([-5, 1, -4],1)),24),-2),17)",
    "io_inp": [
      -5,
      1,
      -4
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(drop(input,1)),24),-2),17)"
  },
  {
    "input": "input : list = [-2, 4, 3, -4, -5, -3]\noutput : list = [0, 6, 5, -2, -3, -1]",
    "output": "generated_output : list = sub_n([-2, 4, 3, -4, -5, -3],-2)",
    "io_inp": [
      -2,
      4,
      3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      0,
      6,
      5,
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 4, 0]\noutput : list = [3, -1]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(drop([-4, 4, 0],1)),1)),2)",
    "io_inp": [
      -4,
      4,
      0
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(drop(input,1)),1)),2)"
  },
  {
    "input": "input : list = [-4, 1, -2, 2, -1]\noutput : list = [-2, -3, -5, -6, -8]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(sort_asc([-4, 1, -2, 2, -1]),25),5),-1))",
    "io_inp": [
      -4,
      1,
      -2,
      2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(sort_asc(input),25),5),-1))"
  },
  {
    "input": "input : list = [5, 3, -4, -5, 2, -1]\noutput : list = [5, 3, 2, -1, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([5, 3, -4, -5, 2, -1]))",
    "io_inp": [
      5,
      3,
      -4,
      -5,
      2,
      -1
    ],
    "io_out": [
      5,
      3,
      2,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -2, 4]\noutput : list = [-4, -11, -5]",
    "output": "generated_output : list = add_n(take(add_n(add_n(add_n([5, -2, 4],-5),-2),1),13),-3)",
    "io_inp": [
      5,
      -2,
      4
    ],
    "io_out": [
      -4,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(add_n(input,-5),-2),1),13),-3)"
  },
  {
    "input": "input : list = [4, 0, 2, 4, -1, 5]\noutput : list = [6, 5, 5, 3, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(add_n([4, 0, 2, 4, -1, 5],1),16))))",
    "io_inp": [
      4,
      0,
      2,
      4,
      -1,
      5
    ],
    "io_out": [
      6,
      5,
      5,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(add_n(input,1),16))))"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [10, 4, -14]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(mul_n([5, 3, -3],3)),21),-3),-2)",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      10,
      4,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(mul_n(input,3)),21),-3),-2)"
  },
  {
    "input": "input : list = [4, -1, -3, 5, -5]\noutput : list = [-7, -5, -3, 2, 3]",
    "output": "generated_output : list = add_n(add_n(take(take(sort_asc([4, -1, -3, 5, -5]),14),14),-4),2)",
    "io_inp": [
      4,
      -1,
      -3,
      5,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(sort_asc(input),14),14),-4),2)"
  },
  {
    "input": "input : list = [0, 2, -3, 1, -5]\noutput : list = [-15, -12, -9, 0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(add_n([0, 2, -3, 1, -5],3))),-3))",
    "io_inp": [
      0,
      2,
      -3,
      1,
      -5
    ],
    "io_out": [
      -15,
      -12,
      -9,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(add_n(input,3))),-3))"
  },
  {
    "input": "input : list = [-2, -5, 2, 0, -4]\noutput : list = [-3, 1, 3, -4, -1]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(reverse([-2, -5, 2, 0, -4]),1))),-1)",
    "io_inp": [
      -2,
      -5,
      2,
      0,
      -4
    ],
    "io_out": [
      -3,
      1,
      3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(reverse(input),1))),-1)"
  },
  {
    "input": "input : list = [-1, -2, 1, -1]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(drop([-1, -2, 1, -1],1),18))),-4)",
    "io_inp": [
      -1,
      -2,
      1,
      -1
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(drop(input,1),18))),-4)"
  },
  {
    "input": "input : list = [-2, 3, -3, 4]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(take([-2, 3, -3, 4],2),8)",
    "io_inp": [
      -2,
      3,
      -3,
      4
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(take(input,2),8)"
  },
  {
    "input": "input : list = [-1, -2, -5]\noutput : list = [6, 5, 2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sub_n([-1, -2, -5],-2)),5)))",
    "io_inp": [
      -1,
      -2,
      -5
    ],
    "io_out": [
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sub_n(input,-2)),5)))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-9, -4]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(reverse([2, -3]),5)),23),1)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(reverse(input),5)),23),1)"
  },
  {
    "input": "input : list = [-2, -3, -5, 3, 2, -2]\noutput : list = [12, 14, 22, 22, 24, 28]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n([-2, -3, -5, 3, 2, -2],4),20),-5),-2))",
    "io_inp": [
      -2,
      -3,
      -5,
      3,
      2,
      -2
    ],
    "io_out": [
      12,
      14,
      22,
      22,
      24,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n(input,4),20),-5),-2))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [30, 15]",
    "output": "generated_output : list = take(mul_n(mul_n([2, 1],3),5),17)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      30,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,3),5),17)"
  },
  {
    "input": "input : list = [0, 1, 5, -1]\noutput : list = [-5, -4, 0, -6]",
    "output": "generated_output : list = add_n([0, 1, 5, -1],-5)",
    "io_inp": [
      0,
      1,
      5,
      -1
    ],
    "io_out": [
      -5,
      -4,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, -3, -2, -5, 0]\noutput : list = [2, -6, -5, -8, -3]",
    "output": "generated_output : list = add_n(add_n(add_n([5, -3, -2, -5, 0],-1),1),-3)",
    "io_inp": [
      5,
      -3,
      -2,
      -5,
      0
    ],
    "io_out": [
      2,
      -6,
      -5,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-1),1),-3)"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [6, 2, -2]",
    "output": "generated_output : list = sub_n([5, 1, -3],-1)",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      6,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, 5, 2, 3, 4]\noutput : list = [2, 3, 3, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(reverse([3, 5, 2, 3, 4]),17))),45)",
    "io_inp": [
      3,
      5,
      2,
      3,
      4
    ],
    "io_out": [
      2,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(reverse(input),17))),45)"
  },
  {
    "input": "input : list = [4, 5, 3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take(drop([4, 5, 3, -1],2),11))))",
    "io_inp": [
      4,
      5,
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(drop(input,2),11))))"
  },
  {
    "input": "input : list = [-1, 5, -5, -1, 5, 0]\noutput : list = [0, -5, 1, 5, -5, 1]",
    "output": "generated_output : list = mul_n(reverse([-1, 5, -5, -1, 5, 0]),-1)",
    "io_inp": [
      -1,
      5,
      -5,
      -1,
      5,
      0
    ],
    "io_out": [
      0,
      -5,
      1,
      5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-1, -2, -2, -2, -4]\noutput : list = [-4, -2, -2, -2, -1]",
    "output": "generated_output : list = sort_asc([-1, -2, -2, -2, -4])",
    "io_inp": [
      -1,
      -2,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 3, -5, 5, 1, 4]\noutput : list = [-1, 3, 5, 7, 8, 9]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_des([-1, 3, -5, 5, 1, 4])),1),4))",
    "io_inp": [
      -1,
      3,
      -5,
      5,
      1,
      4
    ],
    "io_out": [
      -1,
      3,
      5,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_des(input)),1),4))"
  },
  {
    "input": "input : list = [2, 2, 5, 4, -4]\noutput : list = [19, 15, 7, 7, -17]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(mul_n([2, 2, 5, 4, -4],-4),-1),-1)))",
    "io_inp": [
      2,
      2,
      5,
      4,
      -4
    ],
    "io_out": [
      19,
      15,
      7,
      7,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(mul_n(input,-4),-1),-1)))"
  },
  {
    "input": "input : list = [-5, -3, 2, -2]\noutput : list = [55, 35, -15, 25]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(sub_n([-5, -3, 2, -2],1),5),-4),-2),3)",
    "io_inp": [
      -5,
      -3,
      2,
      -2
    ],
    "io_out": [
      55,
      35,
      -15,
      25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(sub_n(input,1),5),-4),-2),3)"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [-4, -1, 3]",
    "output": "generated_output : list = sub_n(sub_n([-5, -2, 2],1),-2)",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-2)"
  },
  {
    "input": "input : list = [-4, -3, -4, -5]\noutput : list = [-27, -24, -24, -21]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_des([-4, -3, -4, -5]),4)),3),42)",
    "io_inp": [
      -4,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -27,
      -24,
      -24,
      -21
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_des(input),4)),3),42)"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [-6, -4, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(sub_n([0, 3, -2],4),7)),-2),-2)",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(sub_n(input,4),7)),-2),-2)"
  },
  {
    "input": "input : list = [-4, 5, 4, 0, -1, -3]\noutput : list = [0, -5, -15]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(drop([-4, 5, 4, 0, -1, -3],3)))),5)",
    "io_inp": [
      -4,
      5,
      4,
      0,
      -1,
      -3
    ],
    "io_out": [
      0,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(drop(input,3)))),5)"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sub_n(reverse(take([3, -5, -5],1)),-2))",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(input,1)),-2))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(sort_asc([-2, -1]),5)),22))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(sort_asc(input),5)),22))"
  },
  {
    "input": "input : list = [3, 1, 3, -5, 4]\noutput : list = [3, 1, 3]",
    "output": "generated_output : list = reverse(take([3, 1, 3, -5, 4],3))",
    "io_inp": [
      3,
      1,
      3,
      -5,
      4
    ],
    "io_out": [
      3,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-4, 5, 5, -4, -4]\noutput : list = [15, 15, -12, -12]",
    "output": "generated_output : list = mul_n(drop([-4, 5, 5, -4, -4],1),3)",
    "io_inp": [
      -4,
      5,
      5,
      -4,
      -4
    ],
    "io_out": [
      15,
      15,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [5, -1, 3, -4, 5]\noutput : list = [5, 5, 3, -1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([5, -1, 3, -4, 5])))",
    "io_inp": [
      5,
      -1,
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [0, 0, 2, 0, 0, -3]\noutput : list = [0, -6, -6, -6, -6, -10]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(mul_n([0, 0, 2, 0, 0, -3],-2),8),-1),5))",
    "io_inp": [
      0,
      0,
      2,
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      -6,
      -6,
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(mul_n(input,-2),8),-1),5))"
  },
  {
    "input": "input : list = [3, 3, -5, 4, -4, 3]\noutput : list = [16, -12, -16]",
    "output": "generated_output : list = mul_n(sub_n(drop(sort_des(reverse([3, 3, -5, 4, -4, 3])),3),-1),4)",
    "io_inp": [
      3,
      3,
      -5,
      4,
      -4,
      3
    ],
    "io_out": [
      16,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(sort_des(reverse(input)),3),-1),4)"
  },
  {
    "input": "input : list = [-1, 1, 0, 0, -1, 2]\noutput : list = [15, 10, 5, 5, 0, 0]",
    "output": "generated_output : list = mul_n(take(sort_des(take(add_n([-1, 1, 0, 0, -1, 2],1),26)),24),5)",
    "io_inp": [
      -1,
      1,
      0,
      0,
      -1,
      2
    ],
    "io_out": [
      15,
      10,
      5,
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(add_n(input,1),26)),24),5)"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-20, -8, 8]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 2, -2]),4)",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -20,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [4, 3, 0, -2, -3, -1]\noutput : list = [-1, -3, -2, 0, 3, 4]",
    "output": "generated_output : list = reverse([4, 3, 0, -2, -3, -1])",
    "io_inp": [
      4,
      3,
      0,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -2,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 2, 2, -4]\noutput : list = [1, 7, 7, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(reverse([4, 2, 2, -4]))),5))",
    "io_inp": [
      4,
      2,
      2,
      -4
    ],
    "io_out": [
      1,
      7,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(reverse(input))),5))"
  },
  {
    "input": "input : list = [-3, -5, -2, 0]\noutput : list = [6, 2]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(drop([-3, -5, -2, 0],2),18),-3),4),-2)",
    "io_inp": [
      -3,
      -5,
      -2,
      0
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(drop(input,2),18),-3),4),-2)"
  },
  {
    "input": "input : list = [1, 3, 1, -3]\noutput : list = [6, 4, 4, 0]",
    "output": "generated_output : list = sort_des(add_n([1, 3, 1, -3],3))",
    "io_inp": [
      1,
      3,
      1,
      -3
    ],
    "io_out": [
      6,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(take(take(drop(reverse([0, 3, -3]),1),18),20))",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(take(drop(reverse(input),1),18),20))"
  },
  {
    "input": "input : list = [-5, 3, 4, 5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = take([-5, 3, 4, 5],2)",
    "io_inp": [
      -5,
      3,
      4,
      5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 2, 0, 4, 1]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(sort_des(drop(reverse([-1, 2, 0, 4, 1]),4)),-3),-2)",
    "io_inp": [
      -1,
      2,
      0,
      4,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(drop(reverse(input),4)),-3),-2)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse([0, -5])",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -5, 1, -5, 0, 5]\noutput : list = [5, 0, -5, 1, -5, 1]",
    "output": "generated_output : list = reverse([1, -5, 1, -5, 0, 5])",
    "io_inp": [
      1,
      -5,
      1,
      -5,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -5,
      1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, 4, 3, -5, 2]\noutput : list = [-10, -14, 4, 2]",
    "output": "generated_output : list = mul_n(take(sub_n(take([-3, -5, 4, 3, -5, 2],4),2),35),2)",
    "io_inp": [
      -3,
      -5,
      4,
      3,
      -5,
      2
    ],
    "io_out": [
      -10,
      -14,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(input,4),2),35),2)"
  },
  {
    "input": "input : list = [0, -3, 3, 1]\noutput : list = [-9, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(take([0, -3, 3, 1],2),3))))",
    "io_inp": [
      0,
      -3,
      3,
      1
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(take(input,2),3))))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(sort_des([-4, -3]))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [-15, -6, 12]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(mul_n([4, -2, -5],-3)))),-1)",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      -15,
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(mul_n(input,-3)))),-1)"
  },
  {
    "input": "input : list = [-3, -3, -4, 2, -2, 5]\noutput : list = [35, 15, 0]",
    "output": "generated_output : list = sort_des(drop(sort_des(mul_n(add_n([-3, -3, -4, 2, -2, 5],-5),-5)),3))",
    "io_inp": [
      -3,
      -3,
      -4,
      2,
      -2,
      5
    ],
    "io_out": [
      35,
      15,
      0
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(mul_n(add_n(input,-5),-5)),3))"
  },
  {
    "input": "input : list = [1, -2, 3, 0]\noutput : list = [2, -1, 4, 1]",
    "output": "generated_output : list = add_n([1, -2, 3, 0],1)",
    "io_inp": [
      1,
      -2,
      3,
      0
    ],
    "io_out": [
      2,
      -1,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 1, -1, -1, -1]\noutput : list = [-1, -4, -6, -6, -6]",
    "output": "generated_output : list = add_n([4, 1, -1, -1, -1],-5)",
    "io_inp": [
      4,
      1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [-7, -6, -5]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(add_n([2, 1, 0],-2)),-5)),28)",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(add_n(input,-2)),-5)),28)"
  },
  {
    "input": "input : list = [2, 3, 2, -2]\noutput : list = [8, 7, 7, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sort_des([2, 3, 2, -2])),-4)),-1)",
    "io_inp": [
      2,
      3,
      2,
      -2
    ],
    "io_out": [
      8,
      7,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sort_des(input)),-4)),-1)"
  },
  {
    "input": "input : list = [-4, -1, 4]\noutput : list = [9, -1, -7]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(mul_n([-4, -1, 4],2)),4),-1))",
    "io_inp": [
      -4,
      -1,
      4
    ],
    "io_out": [
      9,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(mul_n(input,2)),4),-1))"
  },
  {
    "input": "input : list = [-2, -1, -3, 4, -5, 5]\noutput : list = [-4, -3, -5, 2, -7, 3]",
    "output": "generated_output : list = sub_n([-2, -1, -3, 4, -5, 5],2)",
    "io_inp": [
      -2,
      -1,
      -3,
      4,
      -5,
      5
    ],
    "io_out": [
      -4,
      -3,
      -5,
      2,
      -7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, -4, 3, 3]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take([0, -4, 3, 3],1)),-3),-1)",
    "io_inp": [
      0,
      -4,
      3,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(input,1)),-3),-1)"
  },
  {
    "input": "input : list = [1, 1, -4, 4, 4]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(take([1, 1, -4, 4, 4],2),15),1))",
    "io_inp": [
      1,
      1,
      -4,
      4,
      4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(input,2),15),1))"
  },
  {
    "input": "input : list = [-2, 1, -5, -2, 3, 1]\noutput : list = [-44, -4, -4, 56, 56, 116]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(mul_n([-2, 1, -5, -2, 3, 1],5),-4))),-4)",
    "io_inp": [
      -2,
      1,
      -5,
      -2,
      3,
      1
    ],
    "io_out": [
      -44,
      -4,
      -4,
      56,
      56,
      116
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(mul_n(input,5),-4))),-4)"
  },
  {
    "input": "input : list = [4, 0, 3, -5, -5, 0]\noutput : list = [4, 0, 3]",
    "output": "generated_output : list = take([4, 0, 3, -5, -5, 0],3)",
    "io_inp": [
      4,
      0,
      3,
      -5,
      -5,
      0
    ],
    "io_out": [
      4,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, -3, 3, -1, -5]\noutput : list = [20, 12, 4, 0, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([0, -3, 3, -1, -5]),-4))",
    "io_inp": [
      0,
      -3,
      3,
      -1,
      -5
    ],
    "io_out": [
      20,
      12,
      4,
      0,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [0, 0, 4, 3, -4]\noutput : list = [-7, -3, -3, 0, 1]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(sort_des([0, 0, 4, 3, -4])),15)),3)",
    "io_inp": [
      0,
      0,
      4,
      3,
      -4
    ],
    "io_out": [
      -7,
      -3,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(sort_des(input)),15)),3)"
  },
  {
    "input": "input : list = [4, -4, 3]\noutput : list = [-35, 70, 85]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_asc([4, -4, 3]),-3),2),3),-5)",
    "io_inp": [
      4,
      -4,
      3
    ],
    "io_out": [
      -35,
      70,
      85
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_asc(input),-3),2),3),-5)"
  },
  {
    "input": "input : list = [5, 3, -5, -1, 3]\noutput : list = [-6, 2, 10, -6, -10]",
    "output": "generated_output : list = reverse(mul_n([5, 3, -5, -1, 3],-2))",
    "io_inp": [
      5,
      3,
      -5,
      -1,
      3
    ],
    "io_out": [
      -6,
      2,
      10,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [-12, -15, -9]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(reverse([4, 5, 3]),-1),7)),3)",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      -12,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(reverse(input),-1),7)),3)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(sort_asc([0, 1]),5)),3),5)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(sort_asc(input),5)),3),5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n([-3, 0],-2))))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(input,-2))))"
  },
  {
    "input": "input : list = [3, 2, -2, -3]\noutput : list = [-3, -2, 2, 3]",
    "output": "generated_output : list = sort_asc([3, 2, -2, -3])",
    "io_inp": [
      3,
      2,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, 5, 5]\noutput : list = [125, 125, 75, -100]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n([-4, 3, 5, 5],5)),5)))",
    "io_inp": [
      -4,
      3,
      5,
      5
    ],
    "io_out": [
      125,
      125,
      75,
      -100
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n(input,5)),5)))"
  },
  {
    "input": "input : list = [-4, -3, 4, -2]\noutput : list = [-6, 0, -7, -8]",
    "output": "generated_output : list = add_n(reverse([-4, -3, 4, -2]),-4)",
    "io_inp": [
      -4,
      -3,
      4,
      -2
    ],
    "io_out": [
      -6,
      0,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [1, 0, 4, -1, 0, -4]\noutput : list = [-4, -1, 0, 0, 1, 4]",
    "output": "generated_output : list = take(sort_asc(take(reverse(mul_n([1, 0, 4, -1, 0, -4],1)),18)),6)",
    "io_inp": [
      1,
      0,
      4,
      -1,
      0,
      -4
    ],
    "io_out": [
      -4,
      -1,
      0,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(mul_n(input,1)),18)),6)"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [-1, 1, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(sub_n([4, -3, -1],-5))),-3),34)",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(sub_n(input,-5))),-3),34)"
  },
  {
    "input": "input : list = [1, 5, -2, 3]\noutput : list = [-6, 9, -12, 0]",
    "output": "generated_output : list = reverse(take(add_n(take(mul_n([1, 5, -2, 3],-3),12),3),26))",
    "io_inp": [
      1,
      5,
      -2,
      3
    ],
    "io_out": [
      -6,
      9,
      -12,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(mul_n(input,-3),12),3),26))"
  },
  {
    "input": "input : list = [2, -2, 4, -5, 1, 5]\noutput : list = [-75, -30, 15, 60, 75]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(drop([2, -2, 4, -5, 1, 5],1),15),5),3))",
    "io_inp": [
      2,
      -2,
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      -75,
      -30,
      15,
      60,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(drop(input,1),15),5),3))"
  },
  {
    "input": "input : list = [3, 3, -1, -4]\noutput : list = [-3, 0, 4, 4]",
    "output": "generated_output : list = reverse(sub_n([3, 3, -1, -4],-1))",
    "io_inp": [
      3,
      3,
      -1,
      -4
    ],
    "io_out": [
      -3,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-5, -5, 0, -4, -4]\noutput : list = [-15, -15, 0]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(take([-5, -5, 0, -4, -4],3)),3)),21)",
    "io_inp": [
      -5,
      -5,
      0,
      -4,
      -4
    ],
    "io_out": [
      -15,
      -15,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(take(input,3)),3)),21)"
  },
  {
    "input": "input : list = [5, 0, -2, -4, 2]\noutput : list = [-12, -6, 0, 6, 15]",
    "output": "generated_output : list = take(reverse(mul_n(take(sort_des([5, 0, -2, -4, 2]),5),3)),48)",
    "io_inp": [
      5,
      0,
      -2,
      -4,
      2
    ],
    "io_out": [
      -12,
      -6,
      0,
      6,
      15
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(sort_des(input),5),3)),48)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(add_n([-4, 0],4),-4),5)))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(add_n(input,4),-4),5)))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-19, 1]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des([4, 0]),-5),8)),1)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -19,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des(input),-5),8)),1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-7, -2]",
    "output": "generated_output : list = add_n([-3, 2],-4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 0, 3, -2, 0, 5]\noutput : list = [1, 2, 5, 0, 2, 7]",
    "output": "generated_output : list = add_n([-1, 0, 3, -2, 0, 5],2)",
    "io_inp": [
      -1,
      0,
      3,
      -2,
      0,
      5
    ],
    "io_out": [
      1,
      2,
      5,
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n([-5, 3, 0],-2)),2),3)",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(input,-2)),2),3)"
  },
  {
    "input": "input : list = [-5, 2, -4, -5, -5, 2]\noutput : list = [2, 2, -4, -5, -5, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(sort_des([-5, 2, -4, -5, -5, 2]),-5))),-5)",
    "io_inp": [
      -5,
      2,
      -4,
      -5,
      -5,
      2
    ],
    "io_out": [
      2,
      2,
      -4,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(sort_des(input),-5))),-5)"
  },
  {
    "input": "input : list = [5, 1, -1, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(take(drop([5, 1, -1, -1],2),9),3)",
    "io_inp": [
      5,
      1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,2),9),3)"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(drop(reverse(sub_n(drop([-4, 3, -2],1),1)),1))",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(sub_n(drop(input,1),1)),1))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-3, 12]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_asc([2, -3]),-2)),3),24)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -3,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_asc(input),-2)),3),24)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-40, 0]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(reverse([-3, 5]),2),3),5))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -40,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(reverse(input),2),3),5))"
  },
  {
    "input": "input : list = [5, 0, -4, -2]\noutput : list = [-4, -6, -2, 3]",
    "output": "generated_output : list = sub_n(reverse(add_n([5, 0, -4, -2],3)),5)",
    "io_inp": [
      5,
      0,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -6,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,3)),5)"
  },
  {
    "input": "input : list = [-1, 0, 1, 4, -2, -4]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(take(reverse(take([-1, 0, 1, 4, -2, -4],1)),15),5),20)",
    "io_inp": [
      -1,
      0,
      1,
      4,
      -2,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(take(input,1)),15),5),20)"
  },
  {
    "input": "input : list = [-1, 4, 4, 5]\noutput : list = [5, 4, 4, -1]",
    "output": "generated_output : list = sort_des([-1, 4, 4, 5])",
    "io_inp": [
      -1,
      4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sub_n([-2, 1],-4)),8),4))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sub_n(input,-4)),8),4))"
  },
  {
    "input": "input : list = [3, 0, -3]\noutput : list = [6, 0, -6]",
    "output": "generated_output : list = sort_des(mul_n(reverse([3, 0, -3]),-2))",
    "io_inp": [
      3,
      0,
      -3
    ],
    "io_out": [
      6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-1, -1, 3, 1]\noutput : list = [0, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n([-1, -1, 3, 1],-1))",
    "io_inp": [
      -1,
      -1,
      3,
      1
    ],
    "io_out": [
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [2, -5, -1, 5]\noutput : list = [48, -64, 0, 96]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(reverse([2, -5, -1, 5]),4)),4),4)",
    "io_inp": [
      2,
      -5,
      -1,
      5
    ],
    "io_out": [
      48,
      -64,
      0,
      96
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(reverse(input),4)),4),4)"
  },
  {
    "input": "input : list = [-4, -1, 4, 5]\noutput : list = [16, 4, -16, -20]",
    "output": "generated_output : list = mul_n([-4, -1, 4, 5],-4)",
    "io_inp": [
      -4,
      -1,
      4,
      5
    ],
    "io_out": [
      16,
      4,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [9, 12]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(sub_n([3, 0],-5))),4))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(sub_n(input,-5))),4))"
  },
  {
    "input": "input : list = [-2, -3, -1, 4, 0]\noutput : list = [-12, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(drop([-2, -3, -1, 4, 0],3)),-3)))",
    "io_inp": [
      -2,
      -3,
      -1,
      4,
      0
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(drop(input,3)),-3)))"
  },
  {
    "input": "input : list = [3, 0, -2, -3, 0]\noutput : list = [-3, -2, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(take(reverse([3, 0, -2, -3, 0]),20))",
    "io_inp": [
      3,
      0,
      -2,
      -3,
      0
    ],
    "io_out": [
      -3,
      -2,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),20))"
  },
  {
    "input": "input : list = [-5, -1, -4, 1]\noutput : list = [-5, -4, -1, 1]",
    "output": "generated_output : list = reverse(sort_des([-5, -1, -4, 1]))",
    "io_inp": [
      -5,
      -1,
      -4,
      1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 3, 5, -1, 5, 5]\noutput : list = [5, 5, 5, 3, -1, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 5, -1, 5, 5])",
    "io_inp": [
      -5,
      3,
      5,
      -1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 1, 1, -2, -3, -5]\noutput : list = [-2, -2, -5, -6, -6, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(sort_asc([-3, 1, 1, -2, -3, -5]),1)),-4))",
    "io_inp": [
      -3,
      1,
      1,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(sort_asc(input),1)),-4))"
  },
  {
    "input": "input : list = [1, 5, -3, 3, 1, 0]\noutput : list = [9, 45]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(take([1, 5, -3, 3, 1, 0],2),3),3)))",
    "io_inp": [
      1,
      5,
      -3,
      3,
      1,
      0
    ],
    "io_out": [
      9,
      45
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(take(input,2),3),3)))"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(drop([0, -3, -1],1),9))))",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(drop(input,1),9))))"
  },
  {
    "input": "input : list = [0, -5, -3, -4, -4, -2]\noutput : list = [1, -1, -2, -3, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des([0, -5, -3, -4, -4, -2]),-1)",
    "io_inp": [
      0,
      -5,
      -3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-1, 5, -5, -3, 1]\noutput : list = [-5, -3, -1, 1, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, -5, -3, 1])",
    "io_inp": [
      -1,
      5,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 1, 0, -2, 1]\noutput : list = [-9, -12, -9, -3, -12]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(sub_n([0, 1, 0, -2, 1],-2),1),-3),38),1)",
    "io_inp": [
      0,
      1,
      0,
      -2,
      1
    ],
    "io_out": [
      -9,
      -12,
      -9,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(sub_n(input,-2),1),-3),38),1)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(add_n([2, 3],-3)))))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [-4, 3, 4, -5]\noutput : list = [-4, 10, 12, -6]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(add_n([-4, 3, 4, -5],1),2))),2)",
    "io_inp": [
      -4,
      3,
      4,
      -5
    ],
    "io_out": [
      -4,
      10,
      12,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(add_n(input,1),2))),2)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(sort_des(sort_des([2, 3])),21)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),21)"
  },
  {
    "input": "input : list = [2, 2, 4, 0, 3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(drop([2, 2, 4, 0, 3],3),3),5),1))",
    "io_inp": [
      2,
      2,
      4,
      0,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(drop(input,3),3),5),1))"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [3, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(reverse([-2, -2, 4]),1))",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),1))"
  },
  {
    "input": "input : list = [0, 0, -3, 1, -5]\noutput : list = [-7, -5, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(drop([0, 0, -3, 1, -5],1)),-2)",
    "io_inp": [
      0,
      0,
      -3,
      1,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse([2, 2])),1),1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(input)),1),1)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [0, -2]",
    "output": "generated_output : list = sub_n([-2, -4],-2)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse([3, -3])",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, 4, -1, -5]\noutput : list = [12, 7, 6, 4, 3]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc([-2, -4, 4, -1, -5])),4)),4)",
    "io_inp": [
      -2,
      -4,
      4,
      -1,
      -5
    ],
    "io_out": [
      12,
      7,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_asc(input)),4)),4)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [18, 0]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n(sort_des([-3, 3]),-3)),8),3)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      18,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(sort_des(input),-3)),8),3)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(drop([-2, 4, 0],1),1),2),-2))",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(drop(input,1),1),2),-2))"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [-2, -6, -3]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(add_n([1, -3, 0],4),-2),13),5),4)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      -2,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(add_n(input,4),-2),13),5),4)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse([3, -1])",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des([-4, -2])",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, 5]\noutput : list = [2, -3, -4]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(reverse([0, -1, 5])),3),31))",
    "io_inp": [
      0,
      -1,
      5
    ],
    "io_out": [
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(reverse(input)),3),31))"
  },
  {
    "input": "input : list = [-4, 0, 2, 3, 3]\noutput : list = [-38, -38, -33, -23, -3]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(add_n([-4, 0, 2, 3, 3],5),-5),2)),19)",
    "io_inp": [
      -4,
      0,
      2,
      3,
      3
    ],
    "io_out": [
      -38,
      -38,
      -33,
      -23,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(add_n(input,5),-5),2)),19)"
  },
  {
    "input": "input : list = [-2, 5, 3, 3, 3]\noutput : list = [0, -2, -2, -2, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sub_n([-2, 5, 3, 3, 3],1),1))),-3)",
    "io_inp": [
      -2,
      5,
      3,
      3,
      3
    ],
    "io_out": [
      0,
      -2,
      -2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sub_n(input,1),1))),-3)"
  },
  {
    "input": "input : list = [-4, 4, 0, -2, -1]\noutput : list = [-20, 20, 0, -10, -5]",
    "output": "generated_output : list = mul_n([-4, 4, 0, -2, -1],5)",
    "io_inp": [
      -4,
      4,
      0,
      -2,
      -1
    ],
    "io_out": [
      -20,
      20,
      0,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, -1, -2, 1, 2, 0]\noutput : list = [-4, -3, -1, 3]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(take([5, -1, -2, 1, 2, 0],4),2),16),17))",
    "io_inp": [
      5,
      -1,
      -2,
      1,
      2,
      0
    ],
    "io_out": [
      -4,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(take(input,4),2),16),17))"
  },
  {
    "input": "input : list = [-4, 5, 3, 1, 0, 1]\noutput : list = [-9, -5, -4, -4, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc([-4, 5, 3, 1, 0, 1]),-5)",
    "io_inp": [
      -4,
      5,
      3,
      1,
      0,
      1
    ],
    "io_out": [
      -9,
      -5,
      -4,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [1, 0, 4, 3]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(take(drop([1, 0, 4, 3],2),6),-4))",
    "io_inp": [
      1,
      0,
      4,
      3
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(drop(input,2),6),-4))"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [10, 20, 5]",
    "output": "generated_output : list = mul_n(mul_n([-2, -4, -1],1),-5)",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      10,
      20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-5)"
  },
  {
    "input": "input : list = [1, 2, 4]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(take([1, 2, 4],1))),-2),-5)",
    "io_inp": [
      1,
      2,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(take(input,1))),-2),-5)"
  },
  {
    "input": "input : list = [-5, 4, 4]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(take([-5, 4, 4],1),-1),-3)))",
    "io_inp": [
      -5,
      4,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(take(input,1),-1),-3)))"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [0, 1, -8]",
    "output": "generated_output : list = sub_n([3, 4, -5],3)",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      0,
      1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, -2, -3, -5, 4, 1]\noutput : list = [2, -1, -4, -5, -7]",
    "output": "generated_output : list = drop(add_n(sub_n(sort_des(reverse([4, -2, -3, -5, 4, 1])),4),2),1)",
    "io_inp": [
      4,
      -2,
      -3,
      -5,
      4,
      1
    ],
    "io_out": [
      2,
      -1,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(sort_des(reverse(input)),4),2),1)"
  },
  {
    "input": "input : list = [-4, -3, -5, 2, 2]\noutput : list = [7, 7, 2, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n([-4, -3, -5, 2, 2],-5),11)))",
    "io_inp": [
      -4,
      -3,
      -5,
      2,
      2
    ],
    "io_out": [
      7,
      7,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(input,-5),11)))"
  },
  {
    "input": "input : list = [3, 1, -5, -1, 1, 2]\noutput : list = [1, -5, -1, 1, 2]",
    "output": "generated_output : list = drop([3, 1, -5, -1, 1, 2],1)",
    "io_inp": [
      3,
      1,
      -5,
      -1,
      1,
      2
    ],
    "io_out": [
      1,
      -5,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 1, 5, 1, -4, -5]\noutput : list = [10, 6, 10, 6, 1, 0]",
    "output": "generated_output : list = add_n(reverse(reverse(take(mul_n([5, 1, 5, 1, -4, -5],1),13))),5)",
    "io_inp": [
      5,
      1,
      5,
      1,
      -4,
      -5
    ],
    "io_out": [
      10,
      6,
      10,
      6,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(mul_n(input,1),13))),5)"
  },
  {
    "input": "input : list = [-4, -2, 3, 5, 0, -3]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(drop([-4, -2, 3, 5, 0, -3],4),4)),1))",
    "io_inp": [
      -4,
      -2,
      3,
      5,
      0,
      -3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(drop(input,4),4)),1))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-6, -11]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse([2, -3]),3)),5)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(input),3)),5)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [4, -2]",
    "output": "generated_output : list = sub_n(sub_n([1, -5],1),-4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-4)"
  },
  {
    "input": "input : list = [2, -2, -5, 5, 0, 2]\noutput : list = [-4, -1, 1, 3, 3, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des([2, -2, -5, 5, 0, 2]),3),-4))",
    "io_inp": [
      2,
      -2,
      -5,
      5,
      0,
      2
    ],
    "io_out": [
      -4,
      -1,
      1,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(input),3),-4))"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(drop([-2, -2, -2],1))),33)",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(drop(input,1))),33)"
  },
  {
    "input": "input : list = [-4, 4, 2, 5]\noutput : list = [-12, 6, 12, 15]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc([-4, 4, 2, 5])),3)))",
    "io_inp": [
      -4,
      4,
      2,
      5
    ],
    "io_out": [
      -12,
      6,
      12,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [7, -23]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(sort_asc([-1, 5])),-5),2))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      7,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(sort_asc(input)),-5),2))"
  },
  {
    "input": "input : list = [5, 1, 4, -2, 0, 4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 1, 4, -2, 0, 4],1)",
    "io_inp": [
      5,
      1,
      4,
      -2,
      0,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = sort_des(add_n([-1, 1, 3],-3))",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [-3, -5, -1, 0, 0, 0]\noutput : list = [-6, -2, 2, 4, 4, 4]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc(sort_asc([-3, -5, -1, 0, 0, 0])),13),2),-4)",
    "io_inp": [
      -3,
      -5,
      -1,
      0,
      0,
      0
    ],
    "io_out": [
      -6,
      -2,
      2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(sort_asc(input)),13),2),-4)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(reverse([2, 0]),4)),5))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(reverse(input),4)),5))"
  },
  {
    "input": "input : list = [-1, 5, 3, 3, -3]\noutput : list = [7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(take([-1, 5, 3, 3, -3],1),1),-5),2),5)",
    "io_inp": [
      -1,
      5,
      3,
      3,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(take(input,1),1),-5),2),5)"
  },
  {
    "input": "input : list = [-4, 2, -4, 5, 4, 4]\noutput : list = [195, 195, 240, -165, 105, -165]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(mul_n([-4, 2, -4, 5, 4, 4],3)),1),5),3)",
    "io_inp": [
      -4,
      2,
      -4,
      5,
      4,
      4
    ],
    "io_out": [
      195,
      195,
      240,
      -165,
      105,
      -165
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(mul_n(input,3)),1),5),3)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [-9, 3]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(mul_n([3, 0, -2],-4),-4),2),2),-1)",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      -9,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(mul_n(input,-4),-4),2),2),-1)"
  },
  {
    "input": "input : list = [1, 0, 5, 0, 2]\noutput : list = [7, 6, 11, 6, 8]",
    "output": "generated_output : list = sub_n(sub_n([1, 0, 5, 0, 2],-2),-4)",
    "io_inp": [
      1,
      0,
      5,
      0,
      2
    ],
    "io_out": [
      7,
      6,
      11,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [2, 14]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(add_n([4, 1],-4),-4),2),-4))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(add_n(input,-4),-4),2),-4))"
  },
  {
    "input": "input : list = [-3, -1, 0, -1, 2]\noutput : list = [2, -1, 0, -1, -3]",
    "output": "generated_output : list = reverse([-3, -1, 0, -1, 2])",
    "io_inp": [
      -3,
      -1,
      0,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(reverse([-3, -4]))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc([4, 2])",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 2, 0, -3, 0]\noutput : list = [2, -13]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(drop([2, 2, 0, -3, 0],3)),5),2))",
    "io_inp": [
      2,
      2,
      0,
      -3,
      0
    ],
    "io_out": [
      2,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(drop(input,3)),5),2))"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [-8, -10, -11]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des([0, -2, -3]),5),-3),18)",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      -8,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(input),5),-3),18)"
  },
  {
    "input": "input : list = [-3, 1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(drop([-3, 1, -5],1)),27)))",
    "io_inp": [
      -3,
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(drop(input,1)),27)))"
  },
  {
    "input": "input : list = [1, 5, 2, 0]\noutput : list = [0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(reverse(sort_asc([1, 5, 2, 0])),5)))",
    "io_inp": [
      1,
      5,
      2,
      0
    ],
    "io_out": [
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(reverse(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [5, 1, 3, 2]\noutput : list = [-1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(add_n([5, 1, 3, 2],-2)))))",
    "io_inp": [
      5,
      1,
      3,
      2
    ],
    "io_out": [
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-2, -1, 1]\noutput : list = [6, 4, 3]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sort_asc([-2, -1, 1]),1)),2),4)",
    "io_inp": [
      -2,
      -1,
      1
    ],
    "io_out": [
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sort_asc(input),1)),2),4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-10, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sort_asc([5, -5]),5)),-1))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sort_asc(input),5)),-1))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(sort_des([4, 3]),2),3),-2))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(sort_des(input),2),3),-2))"
  },
  {
    "input": "input : list = [0, -1, -2, 1, 0]\noutput : list = [1, 0, 0, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc([0, -1, -2, 1, 0]))))",
    "io_inp": [
      0,
      -1,
      -2,
      1,
      0
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(add_n([-4, -4],-2))),-4),-1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(add_n(input,-2))),-4),-1)"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(drop(drop([-1, 0, -1],1),1),-5)",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(drop(drop(input,1),1),-5)"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [-5, 2]",
    "output": "generated_output : list = drop(take(reverse([2, -5, 3]),17),1)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = drop(take(reverse(input),17),1)"
  },
  {
    "input": "input : list = [-2, -2, 1, 3, -1]\noutput : list = [8, 6, 4, 3, 3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(sort_des([-2, -2, 1, 3, -1])),5)))",
    "io_inp": [
      -2,
      -2,
      1,
      3,
      -1
    ],
    "io_out": [
      8,
      6,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_des(add_n([-1, 2],1)),1)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,1)),1)"
  },
  {
    "input": "input : list = [-2, 0, -4, 0]\noutput : list = [0, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc([-2, 0, -4, 0])),19)))",
    "io_inp": [
      -2,
      0,
      -4,
      0
    ],
    "io_out": [
      0,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc(input)),19)))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 12]",
    "output": "generated_output : list = mul_n(mul_n([0, 2],3),2)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),2)"
  },
  {
    "input": "input : list = [0, 2, 0, -2, -3]\noutput : list = [2, 0, 0, -2, -3]",
    "output": "generated_output : list = take(reverse(sort_asc([0, 2, 0, -2, -3])),20)",
    "io_inp": [
      0,
      2,
      0,
      -2,
      -3
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),20)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [10, 6, -2]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(sort_asc([-5, -3, 1]),-2),18),-3),-3)",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      10,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(sort_asc(input),-2),18),-3),-3)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-8, -7]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(reverse([-2, -3]))),17),-5)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(reverse(input))),17),-5)"
  },
  {
    "input": "input : list = [-3, 4, -5, 3, -4, -5]\noutput : list = [-9, 12, -15, 9, -12, -15]",
    "output": "generated_output : list = mul_n([-3, 4, -5, 3, -4, -5],3)",
    "io_inp": [
      -3,
      4,
      -5,
      3,
      -4,
      -5
    ],
    "io_out": [
      -9,
      12,
      -15,
      9,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, 4, -5, -5, 5]\noutput : list = [-5, -2, 4]",
    "output": "generated_output : list = sort_asc(take([-2, 4, -5, -5, 5],3))",
    "io_inp": [
      -2,
      4,
      -5,
      -5,
      5
    ],
    "io_out": [
      -5,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [2, -3, -3, 5, 0]\noutput : list = [8, 5, 3, 0, 0]",
    "output": "generated_output : list = add_n(sort_des([2, -3, -3, 5, 0]),3)",
    "io_inp": [
      2,
      -3,
      -3,
      5,
      0
    ],
    "io_out": [
      8,
      5,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, -4])",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, -1, -2, -1, -2]\noutput : list = [-1, -2, -1, -2]",
    "output": "generated_output : list = take(reverse(take(reverse(drop([5, 1, -1, -2, -1, -2],2)),14)),7)",
    "io_inp": [
      5,
      1,
      -1,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(drop(input,2)),14)),7)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-9, -1]",
    "output": "generated_output : list = sub_n(reverse([3, -5]),4)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -9,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(take([1, -2, -2],1),16),-4)),4)",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(take(input,1),16),-4)),4)"
  },
  {
    "input": "input : list = [4, -5, -1, -2, -3, -4]\noutput : list = [-20, 5, 10, 15, 20, 25]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n([4, -5, -1, -2, -3, -4],-5))))",
    "io_inp": [
      4,
      -5,
      -1,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -20,
      5,
      10,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(input,-5))))"
  },
  {
    "input": "input : list = [-5, 4, -5, -1, 0]\noutput : list = [-5, -5, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([-5, 4, -5, -1, 0])",
    "io_inp": [
      -5,
      4,
      -5,
      -1,
      0
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-8, -15]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(add_n([-5, 2],-3),2),-5)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -8,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(add_n(input,-3),2),-5)))"
  },
  {
    "input": "input : list = [-3, 5, -3, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(take([-3, 5, -3, -5],1))),-2),48)",
    "io_inp": [
      -3,
      5,
      -3,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(take(input,1))),-2),48)"
  },
  {
    "input": "input : list = [-2, -3, 4, -3]\noutput : list = [6, 8, -6, 8]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(reverse([-2, -3, 4, -3]),-2),29)),2)",
    "io_inp": [
      -2,
      -3,
      4,
      -3
    ],
    "io_out": [
      6,
      8,
      -6,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(reverse(input),-2),29)),2)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse(sub_n([-3, -4],-4))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-3, 2, -1, 4]\noutput : list = [3, 1, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-3, 2, -1, 4],-1)))",
    "io_inp": [
      -3,
      2,
      -1,
      4
    ],
    "io_out": [
      3,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-1)))"
  },
  {
    "input": "input : list = [-5, 5, 0]\noutput : list = [5, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-5, 5, 0]))",
    "io_inp": [
      -5,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -1, 3, -4, -4, -2]\noutput : list = [-18, -2, 2, 6, 10, 10]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n([-3, -1, 3, -4, -4, -2],-4),4),-2))",
    "io_inp": [
      -3,
      -1,
      3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -18,
      -2,
      2,
      6,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(input,-4),4),-2))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [16, 24]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(mul_n([4, 3],-2),2)),25),-4)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      16,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(mul_n(input,-2),2)),25),-4)"
  },
  {
    "input": "input : list = [-4, -3, 0, -4, 3]\noutput : list = [-20, -16, -4, -20, 8]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n([-4, -3, 0, -4, 3],3),17),-2),4)",
    "io_inp": [
      -4,
      -3,
      0,
      -4,
      3
    ],
    "io_out": [
      -20,
      -16,
      -4,
      -20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(input,3),17),-2),4)"
  },
  {
    "input": "input : list = [-5, 1, 3, 1, 1, 5]\noutput : list = [-20, -8, -8, -8, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(add_n([-5, 1, 3, 1, 1, 5],-5))),2))",
    "io_inp": [
      -5,
      1,
      3,
      1,
      1,
      5
    ],
    "io_out": [
      -20,
      -8,
      -8,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(add_n(input,-5))),2))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-2, 5]",
    "output": "generated_output : list = add_n([-3, 4],1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [84]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(take([4, 4, -4],1),-5),-4),4))",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      84
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(take(input,1),-5),-4),4))"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = drop([0, -3, 5],1)",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [8, 2]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(drop([3, -1, 5],1)),5),-2),-5)",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(drop(input,1)),5),-2),-5)"
  },
  {
    "input": "input : list = [-2, 0, 5, 3, -1, -3]\noutput : list = [-7, -5, -1, 1, -4, -6]",
    "output": "generated_output : list = take(add_n(reverse([-2, 0, 5, 3, -1, -3]),-4),16)",
    "io_inp": [
      -2,
      0,
      5,
      3,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -1,
      1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),-4),16)"
  },
  {
    "input": "input : list = [2, -3, -4, -3]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(take([2, -3, -4, -3],2)),1),33))",
    "io_inp": [
      2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(take(input,2)),1),33))"
  },
  {
    "input": "input : list = [4, 4, 3]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take([4, 4, 3],1),5)",
    "io_inp": [
      4,
      4,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),5)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_asc([1, 2]),-4),5),1))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_asc(input),-4),5),1))"
  },
  {
    "input": "input : list = [-3, 2, 1]\noutput : list = [-13]",
    "output": "generated_output : list = take(sub_n(take(add_n(take([-3, 2, 1],1),-5),6),5),39)",
    "io_inp": [
      -3,
      2,
      1
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(take(input,1),-5),6),5),39)"
  },
  {
    "input": "input : list = [1, -5, 0, 5, 3, 4]\noutput : list = [6, 1, 0, -2]",
    "output": "generated_output : list = reverse(mul_n(drop(sub_n(sort_des([1, -5, 0, 5, 3, 4]),1),2),-1))",
    "io_inp": [
      1,
      -5,
      0,
      5,
      3,
      4
    ],
    "io_out": [
      6,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(sub_n(sort_des(input),1),2),-1))"
  },
  {
    "input": "input : list = [-4, 3, 1, 2, 1, 3]\noutput : list = [19, -1, -1, -5, -9, -9]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(mul_n([-4, 3, 1, 2, 1, 3],-4)),3)))",
    "io_inp": [
      -4,
      3,
      1,
      2,
      1,
      3
    ],
    "io_out": [
      19,
      -1,
      -1,
      -5,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(mul_n(input,-4)),3)))"
  },
  {
    "input": "input : list = [0, 3, 4, 4]\noutput : list = [-4, -1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc([0, 3, 4, 4]),4)",
    "io_inp": [
      0,
      3,
      4,
      4
    ],
    "io_out": [
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [1, 2, -5, 0, 3, -2]\noutput : list = [0, -15, -25, -30, -35, -40]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(add_n([1, 2, -5, 0, 3, -2],5),-5))))",
    "io_inp": [
      1,
      2,
      -5,
      0,
      3,
      -2
    ],
    "io_out": [
      0,
      -15,
      -25,
      -30,
      -35,
      -40
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(add_n(input,5),-5))))"
  },
  {
    "input": "input : list = [-2, -3, -1, 1, 1]\noutput : list = [6, 6, 4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(drop([-2, -3, -1, 1, 1],2),4)),5))",
    "io_inp": [
      -2,
      -3,
      -1,
      1,
      1
    ],
    "io_out": [
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(drop(input,2),4)),5))"
  },
  {
    "input": "input : list = [0, 3, 4]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = sub_n(take(reverse(take(reverse([0, 3, 4]),16)),3),5)",
    "io_inp": [
      0,
      3,
      4
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(reverse(input),16)),3),5)"
  },
  {
    "input": "input : list = [-3, -5, -1, -4, 4]\noutput : list = [-3]",
    "output": "generated_output : list = drop(reverse([-3, -5, -1, -4, 4]),4)",
    "io_inp": [
      -3,
      -5,
      -1,
      -4,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(reverse(input),4)"
  },
  {
    "input": "input : list = [1, 1, 3, -4]\noutput : list = [1, 3, -4]",
    "output": "generated_output : list = drop([1, 1, 3, -4],1)",
    "io_inp": [
      1,
      1,
      3,
      -4
    ],
    "io_out": [
      1,
      3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -4, 5, -5, -4]\noutput : list = [100, -80, -80, -80, -100]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n([-4, -4, 5, -5, -4],-5)),-4))",
    "io_inp": [
      -4,
      -4,
      5,
      -5,
      -4
    ],
    "io_out": [
      100,
      -80,
      -80,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(input,-5)),-4))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n([0, -3],1)),-1),-1)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(input,1)),-1),-1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-7, -1]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(add_n([1, -5],2)),23)),-4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(add_n(input,2)),23)),-4)"
  },
  {
    "input": "input : list = [0, -1, 1, -3, 2]\noutput : list = [1, 3, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(add_n([0, -1, 1, -3, 2],2),3)),5))",
    "io_inp": [
      0,
      -1,
      1,
      -3,
      2
    ],
    "io_out": [
      1,
      3,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(add_n(input,2),3)),5))"
  },
  {
    "input": "input : list = [1, -3, -4, -2, -4, -1]\noutput : list = [-5, 10, 15, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take([1, -3, -4, -2, -4, -1],4),-5))))",
    "io_inp": [
      1,
      -3,
      -4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -5,
      10,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take(input,4),-5))))"
  },
  {
    "input": "input : list = [-2, -3, -3]\noutput : list = [2, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(sort_des([-2, -3, -3]),15))),5)",
    "io_inp": [
      -2,
      -3,
      -3
    ],
    "io_out": [
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(sort_des(input),15))),5)"
  },
  {
    "input": "input : list = [1, 4, -5, 2, 2]\noutput : list = [50, 50, -125, 100, 25]",
    "output": "generated_output : list = mul_n(mul_n(take(take(reverse([1, 4, -5, 2, 2]),7),17),-5),-5)",
    "io_inp": [
      1,
      4,
      -5,
      2,
      2
    ],
    "io_out": [
      50,
      50,
      -125,
      100,
      25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(reverse(input),7),17),-5),-5)"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [-15, -12]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(drop([-2, 5, 4],1)),-3)),1)",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(drop(input,1)),-3)),1)"
  },
  {
    "input": "input : list = [-3, -1, -5, 3]\noutput : list = [6, -2, 2, 0]",
    "output": "generated_output : list = add_n(reverse(sub_n([-3, -1, -5, 3],2)),5)",
    "io_inp": [
      -3,
      -1,
      -5,
      3
    ],
    "io_out": [
      6,
      -2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,2)),5)"
  },
  {
    "input": "input : list = [-5, 1, -3, -3, -4]\noutput : list = [-6, -2, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([-5, 1, -3, -3, -4],-1),5))",
    "io_inp": [
      -5,
      1,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,-1),5))"
  },
  {
    "input": "input : list = [-1, -2, -3, -1, -3, -4]\noutput : list = [-8, -6, -6, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(reverse([-1, -2, -3, -1, -3, -4]),2),4)))",
    "io_inp": [
      -1,
      -2,
      -3,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(reverse(input),2),4)))"
  },
  {
    "input": "input : list = [-4, -3, 5, -3, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = drop(sub_n([-4, -3, 5, -3, -2],-1),3)",
    "io_inp": [
      -4,
      -3,
      5,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-1),3)"
  },
  {
    "input": "input : list = [5, -4, -4, 3, 4]\noutput : list = [7, -2, -2, 5, 6]",
    "output": "generated_output : list = sub_n([5, -4, -4, 3, 4],-2)",
    "io_inp": [
      5,
      -4,
      -4,
      3,
      4
    ],
    "io_out": [
      7,
      -2,
      -2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, 3, -5, -2, 1, -5]\noutput : list = [-5, -5, -2, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 3, -5, -2, 1, -5])",
    "io_inp": [
      5,
      3,
      -5,
      -2,
      1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 4, 3, 5]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(mul_n(add_n(take(take([-4, 4, 3, 5],1),8),3),5))",
    "io_inp": [
      -4,
      4,
      3,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(take(input,1),8),3),5))"
  },
  {
    "input": "input : list = [1, -1, -2, 5, 0]\noutput : list = [5, 0, -2]",
    "output": "generated_output : list = sort_des(drop([1, -1, -2, 5, 0],2))",
    "io_inp": [
      1,
      -1,
      -2,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take([1, -2, -4],1))",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [0, 3, 4, -5]\noutput : list = [1, 0, -3, -8]",
    "output": "generated_output : list = sort_des(sub_n(reverse([0, 3, 4, -5]),3))",
    "io_inp": [
      0,
      3,
      4,
      -5
    ],
    "io_out": [
      1,
      0,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse([-2, -3])",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, -2, -2, 4, 5]\noutput : list = [-31, -26, -1, 4, 4, 9]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_des([-1, -3, -2, -2, 4, 5]),-1),-5),-1)",
    "io_inp": [
      -1,
      -3,
      -2,
      -2,
      4,
      5
    ],
    "io_out": [
      -31,
      -26,
      -1,
      4,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_des(input),-1),-5),-1)"
  },
  {
    "input": "input : list = [4, -2, 3, 5, 2, -1]\noutput : list = [6, 3, -6, -9, -12, -15]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(sort_des([4, -2, 3, 5, 2, -1]))),-3),54)",
    "io_inp": [
      4,
      -2,
      3,
      5,
      2,
      -1
    ],
    "io_out": [
      6,
      3,
      -6,
      -9,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(sort_des(input))),-3),54)"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(take([2, -5, 3],1),-3),19),3),-5)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(take(input,1),-3),19),3),-5)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(reverse([0, 5]))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sub_n(sort_asc([0, -5]),-2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-6, -4, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sub_n([-1, -3, -5],1)))))",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-3, -3, 3, 4]\noutput : list = [1, 1, 7, 8]",
    "output": "generated_output : list = sub_n([-3, -3, 3, 4],-4)",
    "io_inp": [
      -3,
      -3,
      3,
      4
    ],
    "io_out": [
      1,
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(sort_des([1, -1]),-3)),2))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(sort_des(input),-3)),2))"
  },
  {
    "input": "input : list = [5, 5, -5, 4, -4]\noutput : list = [4, 4, 3, -5, -6]",
    "output": "generated_output : list = add_n(reverse(sort_asc([5, 5, -5, 4, -4])),-1)",
    "io_inp": [
      5,
      5,
      -5,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [-2, -1, 0, -1, 0]\noutput : list = [-4, -5]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(take([-2, -1, 0, -1, 0],2)),1),3),49)",
    "io_inp": [
      -2,
      -1,
      0,
      -1,
      0
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(take(input,2)),1),3),49)"
  },
  {
    "input": "input : list = [0, -3, 1]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = take(take(sort_des(add_n([0, -3, 1],3)),5),29)",
    "io_inp": [
      0,
      -3,
      1
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(input,3)),5),29)"
  },
  {
    "input": "input : list = [3, 5, 5, 2]\noutput : list = [-1, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des([3, 5, 5, 2]),3)))",
    "io_inp": [
      3,
      5,
      5,
      2
    ],
    "io_out": [
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(input),3)))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = reverse(reverse([4, -4]))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 3, 4]\noutput : list = [-12, -9, 9]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(reverse([-3, 3, 4]))),-3))",
    "io_inp": [
      -3,
      3,
      4
    ],
    "io_out": [
      -12,
      -9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-5, 4, -2, 5, -3]\noutput : list = [-20, -12, -8, 16, 20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([-5, 4, -2, 5, -3]),-2),-2)",
    "io_inp": [
      -5,
      4,
      -2,
      5,
      -3
    ],
    "io_out": [
      -20,
      -12,
      -8,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),-2),-2)"
  },
  {
    "input": "input : list = [2, 5, 4, 1]\noutput : list = [10, 9, 7, 6]",
    "output": "generated_output : list = sub_n(sort_des(take(take(reverse([2, 5, 4, 1]),7),5)),-5)",
    "io_inp": [
      2,
      5,
      4,
      1
    ],
    "io_out": [
      10,
      9,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(reverse(input),7),5)),-5)"
  },
  {
    "input": "input : list = [-5, 5, 0, -5]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(take([-5, 5, 0, -5],1),-5)),-5),-1)",
    "io_inp": [
      -5,
      5,
      0,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(take(input,1),-5)),-5),-1)"
  },
  {
    "input": "input : list = [0, 1, 3, -3, 1]\noutput : list = [-2, -1, 1, -5, -1]",
    "output": "generated_output : list = sub_n([0, 1, 3, -3, 1],2)",
    "io_inp": [
      0,
      1,
      3,
      -3,
      1
    ],
    "io_out": [
      -2,
      -1,
      1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, -4, -3, 5]\noutput : list = [5, -2, -3, -4]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(add_n([-2, -4, -3, 5],-2)),2),26))",
    "io_inp": [
      -2,
      -4,
      -3,
      5
    ],
    "io_out": [
      5,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(add_n(input,-2)),2),26))"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [14, 8, 0]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n([-4, 3, 0],5)),2),-2))",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      14,
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n(input,5)),2),-2))"
  },
  {
    "input": "input : list = [3, -1, -2, 0]\noutput : list = [12, -3, -8, -13]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(mul_n([3, -1, -2, 0],5))),22),3)",
    "io_inp": [
      3,
      -1,
      -2,
      0
    ],
    "io_out": [
      12,
      -3,
      -8,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(mul_n(input,5))),22),3)"
  },
  {
    "input": "input : list = [-5, -1, -4, 3, 0]\noutput : list = [36, 21, 16, 1, -4]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n([-5, -1, -4, 3, 0],-5),5)),4)",
    "io_inp": [
      -5,
      -1,
      -4,
      3,
      0
    ],
    "io_out": [
      36,
      21,
      16,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(input,-5),5)),4)"
  },
  {
    "input": "input : list = [-3, 3, -3, 3]\noutput : list = [1, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(take([-3, 3, -3, 3],2))),4))",
    "io_inp": [
      -3,
      3,
      -3,
      3
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(take(input,2))),4))"
  },
  {
    "input": "input : list = [-4, 5, 4, -4]\noutput : list = [-89, 39, 55, -89]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse([-4, 5, 4, -4]),-4),5),-4),-5)",
    "io_inp": [
      -4,
      5,
      4,
      -4
    ],
    "io_out": [
      -89,
      39,
      55,
      -89
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse(input),-4),5),-4),-5)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc([-1, 5])",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -4, 3, -3]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(drop([3, -4, 3, -3],1)))))",
    "io_inp": [
      3,
      -4,
      3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [3, 0, -3, -5, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = take([3, 0, -3, -5, 1],2)",
    "io_inp": [
      3,
      0,
      -3,
      -5,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -3, 5, 4, 1, 3]\noutput : list = [-8, 12, -20, -16, -4, -12]",
    "output": "generated_output : list = mul_n([2, -3, 5, 4, 1, 3],-4)",
    "io_inp": [
      2,
      -3,
      5,
      4,
      1,
      3
    ],
    "io_out": [
      -8,
      12,
      -20,
      -16,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 5, -5]\noutput : list = [1, -23, 17]",
    "output": "generated_output : list = sub_n(mul_n([-1, 5, -5],-4),3)",
    "io_inp": [
      -1,
      5,
      -5
    ],
    "io_out": [
      1,
      -23,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),3)"
  },
  {
    "input": "input : list = [-1, -1, 4, 4]\noutput : list = [-1, -1, 4, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(sort_asc([-1, -1, 4, 4]),11))),1)",
    "io_inp": [
      -1,
      -1,
      4,
      4
    ],
    "io_out": [
      -1,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(sort_asc(input),11))),1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [1, 2]",
    "output": "generated_output : list = add_n(add_n([-4, -3],3),2)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),2)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [12, 3]",
    "output": "generated_output : list = mul_n(reverse([1, 4]),3)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(take([-2, 4, 5],1),8),-4)))",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(take(input,1),8),-4)))"
  },
  {
    "input": "input : list = [-5, 4, 0, -1, -1]\noutput : list = [-12, -8, -7, -7, -3]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_asc([-5, 4, 0, -1, -1]),5),-3),-1))",
    "io_inp": [
      -5,
      4,
      0,
      -1,
      -1
    ],
    "io_out": [
      -12,
      -8,
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_asc(input),5),-3),-1))"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(take([0, -4, 4],1),-1)),24),-5)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(take(input,1),-1)),24),-5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sub_n([5, 2],4)))))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [-1, -5, -2, 0, -1]\noutput : list = [12, 0, -4, -4, -8]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(sub_n([-1, -5, -2, 0, -1],-2),20)),-4),12)",
    "io_inp": [
      -1,
      -5,
      -2,
      0,
      -1
    ],
    "io_out": [
      12,
      0,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(sub_n(input,-2),20)),-4),12)"
  },
  {
    "input": "input : list = [-3, -4, -2, -2, 4]\noutput : list = [4, -2, -2, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, -2, -2, 4])",
    "io_inp": [
      -3,
      -4,
      -2,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, 4, 2]\noutput : list = [-8, 0, 1, -1]",
    "output": "generated_output : list = sub_n([-5, 3, 4, 2],3)",
    "io_inp": [
      -5,
      3,
      4,
      2
    ],
    "io_out": [
      -8,
      0,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, 3, -1, 2, -4]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(take([3, 3, -1, 2, -4],1)))))",
    "io_inp": [
      3,
      3,
      -1,
      2,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sub_n(drop([2, -4, 4],1),-2)",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [-5, -2, 1, 1]\noutput : list = [2, 2, -4, -10]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(reverse([-5, -2, 1, 1])),13)),2)",
    "io_inp": [
      -5,
      -2,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(reverse(input)),13)),2)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -2, 4],1)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 5, -1, 0, 3]\noutput : list = [-3, -1, 0, 3, 5]",
    "output": "generated_output : list = sort_asc([-3, 5, -1, 0, 3])",
    "io_inp": [
      -3,
      5,
      -1,
      0,
      3
    ],
    "io_out": [
      -3,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, 2, 2, -5, -5]\noutput : list = [-5, -5, 1, 2, 2]",
    "output": "generated_output : list = sort_asc(drop([-1, 1, 2, 2, -5, -5],1))",
    "io_inp": [
      -1,
      1,
      2,
      2,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [3, 2, -3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(drop([3, 2, -3],1)))))",
    "io_inp": [
      3,
      2,
      -3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-4, 2, -5, -5, -2, -1]\noutput : list = [-10, 20, 25, 25]",
    "output": "generated_output : list = take(sort_asc(drop(reverse(mul_n([-4, 2, -5, -5, -2, -1],-5)),2)),47)",
    "io_inp": [
      -4,
      2,
      -5,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -10,
      20,
      25,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(reverse(mul_n(input,-5)),2)),47)"
  },
  {
    "input": "input : list = [3, 0, 5]\noutput : list = [16, 8, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(reverse([3, 0, 5]),4),-5),1))",
    "io_inp": [
      3,
      0,
      5
    ],
    "io_out": [
      16,
      8,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(reverse(input),4),-5),1))"
  },
  {
    "input": "input : list = [2, -5, -2, -1, -1]\noutput : list = [2, -1, -1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([2, -5, -2, -1, -1])))",
    "io_inp": [
      2,
      -5,
      -2,
      -1,
      -1
    ],
    "io_out": [
      2,
      -1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [32, 16, -4]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc([-1, 4, -5]),17),-3),-4)",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      32,
      16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(input),17),-3),-4)"
  },
  {
    "input": "input : list = [5, 3, 4, -1]\noutput : list = [39, 19, 119]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n(drop([5, 3, 4, -1],1),5),-5),4),-1)",
    "io_inp": [
      5,
      3,
      4,
      -1
    ],
    "io_out": [
      39,
      19,
      119
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(drop(input,1),5),-5),4),-1)"
  },
  {
    "input": "input : list = [2, -4, -5, 2]\noutput : list = [6, 6, 0, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([2, -4, -5, 2])),-4)",
    "io_inp": [
      2,
      -4,
      -5,
      2
    ],
    "io_out": [
      6,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [2, -1, 3, 4, -1]\noutput : list = [48, 32, -16]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(take([2, -1, 3, 4, -1],3),4),9),4))",
    "io_inp": [
      2,
      -1,
      3,
      4,
      -1
    ],
    "io_out": [
      48,
      32,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(take(input,3),4),9),4))"
  },
  {
    "input": "input : list = [2, -1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(reverse(add_n(take(drop([2, -1, -3],1),16),2)),-2)",
    "io_inp": [
      2,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(drop(input,1),16),2)),-2)"
  },
  {
    "input": "input : list = [-1, 0, -3, -2, -2]\noutput : list = [-18, -15, -15, -12, -9]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_asc([-1, 0, -3, -2, -2]),-4),1)),3)",
    "io_inp": [
      -1,
      0,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -18,
      -15,
      -15,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_asc(input),-4),1)),3)"
  },
  {
    "input": "input : list = [-1, -2, -4, 0]\noutput : list = [-7, -5, -3]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(drop([-1, -2, -4, 0],1))),-3))",
    "io_inp": [
      -1,
      -2,
      -4,
      0
    ],
    "io_out": [
      -7,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(drop(input,1))),-3))"
  },
  {
    "input": "input : list = [0, 0, -1, 3, -2, 2]\noutput : list = [12, 8, 0, -4, -8]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(drop([0, 0, -1, 3, -2, 2],1),26),4)))",
    "io_inp": [
      0,
      0,
      -1,
      3,
      -2,
      2
    ],
    "io_out": [
      12,
      8,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(drop(input,1),26),4)))"
  },
  {
    "input": "input : list = [-3, -4, -2, -1, 4, 3]\noutput : list = [9, 6, 3, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(take([-3, -4, -2, -1, 4, 3],4),-3),3)))",
    "io_inp": [
      -3,
      -4,
      -2,
      -1,
      4,
      3
    ],
    "io_out": [
      9,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(take(input,4),-3),3)))"
  },
  {
    "input": "input : list = [4, 2, 2, 0]\noutput : list = [-2, 2, 2, 6]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(sort_asc([4, 2, 2, 0])),-3),35),-2)",
    "io_inp": [
      4,
      2,
      2,
      0
    ],
    "io_out": [
      -2,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(sort_asc(input)),-3),35),-2)"
  },
  {
    "input": "input : list = [4, 1, -5, -5, -1]\noutput : list = [-1, -5, -5, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, -5, -5, -1])",
    "io_inp": [
      4,
      1,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 5, -4]\noutput : list = [9, 8, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(sub_n([-5, 5, 5, -4],4),6),-1)))",
    "io_inp": [
      -5,
      5,
      5,
      -4
    ],
    "io_out": [
      9,
      8,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(sub_n(input,4),6),-1)))"
  },
  {
    "input": "input : list = [4, 2, 2, 0, 3]\noutput : list = [-3, 1, 1, 5, -1]",
    "output": "generated_output : list = take(take(add_n(mul_n(mul_n([4, 2, 2, 0, 3],-2),1),5),17),18)",
    "io_inp": [
      4,
      2,
      2,
      0,
      3
    ],
    "io_out": [
      -3,
      1,
      1,
      5,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(mul_n(input,-2),1),5),17),18)"
  },
  {
    "input": "input : list = [1, -3, -4, -5, -5]\noutput : list = [-9, -9, -8, -7, -3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n([1, -3, -4, -5, -5],3),2),-5))",
    "io_inp": [
      1,
      -3,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(input,3),2),-5))"
  },
  {
    "input": "input : list = [-4, -5, -3, 1, -1]\noutput : list = [-10, -8]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(take([-4, -5, -3, 1, -1],3)),2)),5)",
    "io_inp": [
      -4,
      -5,
      -3,
      1,
      -1
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(take(input,3)),2)),5)"
  },
  {
    "input": "input : list = [4, 0, 3, -2, -4]\noutput : list = [-6, -4, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(drop([4, 0, 3, -2, -4],2)),2)))",
    "io_inp": [
      4,
      0,
      3,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(drop(input,2)),2)))"
  },
  {
    "input": "input : list = [-4, -5, -4, -4]\noutput : list = [-5, -4, -4]",
    "output": "generated_output : list = drop([-4, -5, -4, -4],1)",
    "io_inp": [
      -4,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -1, 0, 4]\noutput : list = [0, 4, 0, -16]",
    "output": "generated_output : list = mul_n([0, -1, 0, 4],-4)",
    "io_inp": [
      0,
      -1,
      0,
      4
    ],
    "io_out": [
      0,
      4,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -3, -4, 2, -1, 3]\noutput : list = [-2, -3, -6, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des(drop([-2, -3, -4, 2, -1, 3],2)))),-5)",
    "io_inp": [
      -2,
      -3,
      -4,
      2,
      -1,
      3
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(drop(input,2)))),-5)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [6, 5]",
    "output": "generated_output : list = sub_n([1, 0],-5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, -4, 4, 1]\noutput : list = [0, 5, 8, 9]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(add_n(add_n([5, -4, 4, 1],-3),4)),1),-3)",
    "io_inp": [
      5,
      -4,
      4,
      1
    ],
    "io_out": [
      0,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(add_n(add_n(input,-3),4)),1),-3)"
  },
  {
    "input": "input : list = [4, 5, -4, 2]\noutput : list = [-28, -25, -19, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(sub_n([4, 5, -4, 2],-4),-3)),1))",
    "io_inp": [
      4,
      5,
      -4,
      2
    ],
    "io_out": [
      -28,
      -25,
      -19,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(sub_n(input,-4),-3)),1))"
  },
  {
    "input": "input : list = [-5, -5, -3]\noutput : list = [40]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(take([-5, -5, -3],1),4),-2),1),4)",
    "io_inp": [
      -5,
      -5,
      -3
    ],
    "io_out": [
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(take(input,1),4),-2),1),4)"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [-19, -13, -19]",
    "output": "generated_output : list = add_n(take(reverse(add_n(mul_n([5, 2, 5],-2),-4)),12),-5)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      -19,
      -13,
      -19
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(add_n(mul_n(input,-2),-4)),12),-5)"
  },
  {
    "input": "input : list = [-3, 3, -3, 1]\noutput : list = [-7, -1]",
    "output": "generated_output : list = add_n(sub_n(take([-3, 3, -3, 1],2),5),1)",
    "io_inp": [
      -3,
      3,
      -3,
      1
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,2),5),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(reverse([4, -3])))),-1)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-4, -3, 1, -1, 2, 1]\noutput : list = [-3, -2, 2, 0, 3, 2]",
    "output": "generated_output : list = reverse(reverse(add_n([-4, -3, 1, -1, 2, 1],1)))",
    "io_inp": [
      -4,
      -3,
      1,
      -1,
      2,
      1
    ],
    "io_out": [
      -3,
      -2,
      2,
      0,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(input,1)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [8, 2]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n([-5, 1],3),7),-4))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(input,3),7),-4))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n([-4, 2],-3),14)))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(input,-3),14)))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [8, 8]",
    "output": "generated_output : list = sort_asc(add_n([5, 5],3))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc([-2, 4])",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-15, 30]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n([0, -3],-2)),3),5)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -15,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(input,-2)),3),5)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(reverse([5, -1]))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 0, -2, 1]\noutput : list = [2, 0, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(mul_n(sort_des([-1, 0, -2, 1]),2))))",
    "io_inp": [
      -1,
      0,
      -2,
      1
    ],
    "io_out": [
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(mul_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 5, 2],1)",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(sort_des(drop([2, -5, -4],1)))",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [0, -5, 5]\noutput : list = [25, 0, -25]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([0, -5, 5])),5)",
    "io_inp": [
      0,
      -5,
      5
    ],
    "io_out": [
      25,
      0,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [10, 5]",
    "output": "generated_output : list = sort_des(take(take(sub_n(drop([-3, 0, 5],1),-5),20),18))",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(drop(input,1),-5),20),18))"
  },
  {
    "input": "input : list = [5, -2, 2, -1]\noutput : list = [0, -7, -3, -6]",
    "output": "generated_output : list = sub_n([5, -2, 2, -1],5)",
    "io_inp": [
      5,
      -2,
      2,
      -1
    ],
    "io_out": [
      0,
      -7,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, 4, -3, -2]\noutput : list = [-2, 5, -2, -1]",
    "output": "generated_output : list = sub_n(add_n([-3, 4, -3, -2],-4),-5)",
    "io_inp": [
      -3,
      4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),-5)"
  },
  {
    "input": "input : list = [5, -2, 0, -1, -2]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = drop([5, -2, 0, -1, -2],2)",
    "io_inp": [
      5,
      -2,
      0,
      -1,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, -4, 5, 1, 3]\noutput : list = [-8, -8, 1, -3, -1]",
    "output": "generated_output : list = sub_n([-4, -4, 5, 1, 3],4)",
    "io_inp": [
      -4,
      -4,
      5,
      1,
      3
    ],
    "io_out": [
      -8,
      -8,
      1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, -3, -2, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(drop([-3, -3, -2, 0],2))),-1)",
    "io_inp": [
      -3,
      -3,
      -2,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(drop(input,2))),-1)"
  },
  {
    "input": "input : list = [0, 4, -4, -3, -4, -2]\noutput : list = [7, 11]",
    "output": "generated_output : list = take(take(add_n(sub_n(take([0, 4, -4, -3, -4, -2],2),-5),2),18),54)",
    "io_inp": [
      0,
      4,
      -4,
      -3,
      -4,
      -2
    ],
    "io_out": [
      7,
      11
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(take(input,2),-5),2),18),54)"
  },
  {
    "input": "input : list = [-5, 2, -2, -3, 3, 1]\noutput : list = [4, -4, -10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(take([-5, 2, -2, -3, 3, 1],3)),2)))",
    "io_inp": [
      -5,
      2,
      -2,
      -3,
      3,
      1
    ],
    "io_out": [
      4,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(take(input,3)),2)))"
  },
  {
    "input": "input : list = [3, 2, -4, 2, 1]\noutput : list = [3, 2, -4]",
    "output": "generated_output : list = sort_des(take([3, 2, -4, 2, 1],3))",
    "io_inp": [
      3,
      2,
      -4,
      2,
      1
    ],
    "io_out": [
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(reverse([3, -4])))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [4, 0, 5, 3]\noutput : list = [15, 0, -5, -10]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n([4, 0, 5, 3],2)),1),-5)",
    "io_inp": [
      4,
      0,
      5,
      3
    ],
    "io_out": [
      15,
      0,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(input,2)),1),-5)"
  },
  {
    "input": "input : list = [2, 4, -4, 3, -4, 0]\noutput : list = [12, 12, -4, -12, -16, -20]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(add_n([2, 4, -4, 3, -4, 0],1)),-4)))",
    "io_inp": [
      2,
      4,
      -4,
      3,
      -4,
      0
    ],
    "io_out": [
      12,
      12,
      -4,
      -12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(add_n(input,1)),-4)))"
  },
  {
    "input": "input : list = [5, -2, -5, -3]\noutput : list = [9]",
    "output": "generated_output : list = sub_n(take(sort_des(take(take([5, -2, -5, -3],1),5)),24),-4)",
    "io_inp": [
      5,
      -2,
      -5,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(take(input,1),5)),24),-4)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [0, -1]",
    "output": "generated_output : list = add_n([4, 3],-4)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [3, 2, 4]",
    "output": "generated_output : list = reverse([4, 2, 3])",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 2, -4, 1, 1, -3]\noutput : list = [8, 6, 0, 5, 5, 1]",
    "output": "generated_output : list = sub_n([4, 2, -4, 1, 1, -3],-4)",
    "io_inp": [
      4,
      2,
      -4,
      1,
      1,
      -3
    ],
    "io_out": [
      8,
      6,
      0,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -5, 2, -4]\noutput : list = [-4, 2, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, 2, -4])",
    "io_inp": [
      -3,
      -5,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, -1, 0, 1]\noutput : list = [3, -1, -2, -3, -4]",
    "output": "generated_output : list = add_n(take(sort_des([5, -2, -1, 0, 1]),14),-2)",
    "io_inp": [
      5,
      -2,
      -1,
      0,
      1
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),14),-2)"
  },
  {
    "input": "input : list = [4, 0, -4, -5, -4]\noutput : list = [-22, -18, -18, -2, 14]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(mul_n([4, 0, -4, -5, -4],4))),33),2)",
    "io_inp": [
      4,
      0,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -22,
      -18,
      -18,
      -2,
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(mul_n(input,4))),33),2)"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [16, -8, -8]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(mul_n([3, -3, 3],-4),1))),5)",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      16,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(mul_n(input,-4),1))),5)"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [-2, -2, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(sub_n([0, 3, 0],5),-3))))",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(sub_n(input,5),-3))))"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = reverse([5, 2, 1])",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0, -2, -3, 0]\noutput : list = [-9, -5, -7, -8, -5]",
    "output": "generated_output : list = add_n([-4, 0, -2, -3, 0],-5)",
    "io_inp": [
      -4,
      0,
      -2,
      -3,
      0
    ],
    "io_out": [
      -9,
      -5,
      -7,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sub_n([0, 0],4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [1, 5, 1, 0, -1]\noutput : list = [-2, -1, 0, 4, 0]",
    "output": "generated_output : list = reverse(sub_n([1, 5, 1, 0, -1],1))",
    "io_inp": [
      1,
      5,
      1,
      0,
      -1
    ],
    "io_out": [
      -2,
      -1,
      0,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [0, -3, 0, 2, -4]\noutput : list = [5, 11, 5, 1, 13]",
    "output": "generated_output : list = add_n(mul_n([0, -3, 0, 2, -4],-2),5)",
    "io_inp": [
      0,
      -3,
      0,
      2,
      -4
    ],
    "io_out": [
      5,
      11,
      5,
      1,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),5)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(add_n([2, -3],-2),10))))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(add_n(input,-2),10))))"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [0, 6, 8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n([-3, 3, 5],-2)),-5)),4)",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n(input,-2)),-5)),4)"
  },
  {
    "input": "input : list = [3, 5, -5, -1, -1, -1]\noutput : list = [-15, -11, -11, -11, -7, -5]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(sub_n([3, 5, -5, -1, -1, -1],5)),-5)))",
    "io_inp": [
      3,
      5,
      -5,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -15,
      -11,
      -11,
      -11,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(sub_n(input,5)),-5)))"
  },
  {
    "input": "input : list = [1, 3, 3, 4, 3, 1]\noutput : list = [5, 5, 7, 7, 7, 8]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(sort_asc([1, 3, 3, 4, 3, 1]),-2)),36),2)",
    "io_inp": [
      1,
      3,
      3,
      4,
      3,
      1
    ],
    "io_out": [
      5,
      5,
      7,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(sort_asc(input),-2)),36),2)"
  },
  {
    "input": "input : list = [-1, 2, 2, -2, 4]\noutput : list = [-5, -4, -1, -1, 1]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse([-1, 2, 2, -2, 4])),1),5),3)",
    "io_inp": [
      -1,
      2,
      2,
      -2,
      4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse(input)),1),5),3)"
  },
  {
    "input": "input : list = [5, 3, -1, -5]\noutput : list = [-1, 1, 5, 9]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(mul_n([5, 3, -1, -5],-1),-1)),3))",
    "io_inp": [
      5,
      3,
      -1,
      -5
    ],
    "io_out": [
      -1,
      1,
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(mul_n(input,-1),-1)),3))"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [-10, -5, -3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(sub_n([0, 2, -5],-4),-4))),5)",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      -10,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(sub_n(input,-4),-4))),5)"
  },
  {
    "input": "input : list = [2, -4, -5]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = add_n(reverse([2, -4, -5]),1)",
    "io_inp": [
      2,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [0, -3, -2, 4, 0, -3]\noutput : list = [-4, -7, -6, 0, -4, -7]",
    "output": "generated_output : list = sub_n([0, -3, -2, 4, 0, -3],4)",
    "io_inp": [
      0,
      -3,
      -2,
      4,
      0,
      -3
    ],
    "io_out": [
      -4,
      -7,
      -6,
      0,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 2, 1, 3, -3, 4]\noutput : list = [-4, -3, -2, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sort_asc([2, 2, 1, 3, -3, 4])),-1)))",
    "io_inp": [
      2,
      2,
      1,
      3,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(mul_n([5, 5],1))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, -2, -1]\noutput : list = [21, 25, 25]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(reverse([-2, -2, -1]),5),-4),-1),-4)",
    "io_inp": [
      -2,
      -2,
      -1
    ],
    "io_out": [
      21,
      25,
      25
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(reverse(input),5),-4),-1),-4)"
  },
  {
    "input": "input : list = [-3, -5, -1, -5, 2]\noutput : list = [-14, 14, -2, 14]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(drop([-3, -5, -1, -5, 2],1)),-4),-2),4)",
    "io_inp": [
      -3,
      -5,
      -1,
      -5,
      2
    ],
    "io_out": [
      -14,
      14,
      -2,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(drop(input,1)),-4),-2),4)"
  },
  {
    "input": "input : list = [-3, -2, -2, 1, 2]\noutput : list = [-2, -2, 1, 2]",
    "output": "generated_output : list = drop([-3, -2, -2, 1, 2],1)",
    "io_inp": [
      -3,
      -2,
      -2,
      1,
      2
    ],
    "io_out": [
      -2,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 0, 4, 4, 4, 1]\noutput : list = [-34, -18, -34, -34, -34, -22]",
    "output": "generated_output : list = add_n(mul_n(add_n([4, 0, 4, 4, 4, 1],5),-4),2)",
    "io_inp": [
      4,
      0,
      4,
      4,
      4,
      1
    ],
    "io_out": [
      -34,
      -18,
      -34,
      -34,
      -34,
      -22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,5),-4),2)"
  },
  {
    "input": "input : list = [-2, -4, 5, -5]\noutput : list = [7, 0, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(sub_n([-2, -4, 5, -5],-5)),-2),-1))",
    "io_inp": [
      -2,
      -4,
      5,
      -5
    ],
    "io_out": [
      7,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(sub_n(input,-5)),-2),-1))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-4, -4])))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [0, -2, 1, 0, 4, 2]\noutput : list = [2, 0, -1, -2, -2, -4]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc([0, -2, 1, 0, 4, 2]),-2)),26)",
    "io_inp": [
      0,
      -2,
      1,
      0,
      4,
      2
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(input),-2)),26)"
  },
  {
    "input": "input : list = [2, 3, 5, -2]\noutput : list = [20, 28]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(take([2, 3, 5, -2],2),4),2)),4)",
    "io_inp": [
      2,
      3,
      5,
      -2
    ],
    "io_out": [
      20,
      28
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(take(input,2),4),2)),4)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [-5, -5, -5]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(sub_n([-1, -1, -1],3),2),3)),34)",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(sub_n(input,3),2),3)),34)"
  },
  {
    "input": "input : list = [-2, 4, -5, -4, -4, 1]\noutput : list = [-1, -1, 4]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(drop([-2, 4, -5, -4, -4, 1],3))),-3))",
    "io_inp": [
      -2,
      4,
      -5,
      -4,
      -4,
      1
    ],
    "io_out": [
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(drop(input,3))),-3))"
  },
  {
    "input": "input : list = [1, 0, -1, 1]\noutput : list = [-5, -5, 0, 5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(reverse([1, 0, -1, 1])),-5)))",
    "io_inp": [
      1,
      0,
      -1,
      1
    ],
    "io_out": [
      -5,
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-7, 0]",
    "output": "generated_output : list = take(sub_n(take(reverse(sort_des([3, -4])),17),3),34)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(sort_des(input)),17),3),34)"
  },
  {
    "input": "input : list = [-4, 0, 4, 5, 4]\noutput : list = [-9]",
    "output": "generated_output : list = sort_des(sub_n(drop(sort_des([-4, 0, 4, 5, 4]),4),5))",
    "io_inp": [
      -4,
      0,
      4,
      5,
      4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(sort_des(input),4),5))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse(reverse(reverse([-5, -2])))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-4, 5, 2, -1, 2, 0]\noutput : list = [0, 2, -1, 2, 5, -4]",
    "output": "generated_output : list = reverse([-4, 5, 2, -1, 2, 0])",
    "io_inp": [
      -4,
      5,
      2,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      -1,
      2,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [27, -3, 32]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(sub_n([4, -3, 3],1),-3),5),-2))",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      27,
      -3,
      32
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(sub_n(input,1),-3),5),-2))"
  },
  {
    "input": "input : list = [3, -1, 1, -5, -5, -1]\noutput : list = [-1, 1, -5, -5, -1]",
    "output": "generated_output : list = take(drop([3, -1, 1, -5, -5, -1],1),28)",
    "io_inp": [
      3,
      -1,
      1,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      1,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),28)"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [0, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(sort_asc([-3, -4, 1]),8))),-1)",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(sort_asc(input),8))),-1)"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [29, 21, -11]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n(reverse([-1, 3, 4]),2),24),4),-3)",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      29,
      21,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(reverse(input),2),24),4),-3)"
  },
  {
    "input": "input : list = [-1, -1, 1, 0, -2, 4]\noutput : list = [5, 4, 3, 3]",
    "output": "generated_output : list = add_n(sort_des(take([-1, -1, 1, 0, -2, 4],4)),4)",
    "io_inp": [
      -1,
      -1,
      1,
      0,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,4)),4)"
  },
  {
    "input": "input : list = [5, -4, 2, 0]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(mul_n([5, -4, 2, 0],-2),1),-4),1))",
    "io_inp": [
      5,
      -4,
      2,
      0
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(mul_n(input,-2),1),-4),1))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_asc([0, -3])),-1)),1)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_asc(input)),-1)),1)"
  },
  {
    "input": "input : list = [-4, -3, 1, -2, 4, -1]\noutput : list = [4, 3, -1, 2, -4, 1]",
    "output": "generated_output : list = reverse(reverse(mul_n([-4, -3, 1, -2, 4, -1],-1)))",
    "io_inp": [
      -4,
      -3,
      1,
      -2,
      4,
      -1
    ],
    "io_out": [
      4,
      3,
      -1,
      2,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [3, -2, 1, -1, 0]\noutput : list = [3]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(take([3, -2, 1, -1, 0],1)),30)))",
    "io_inp": [
      3,
      -2,
      1,
      -1,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(take(input,1)),30)))"
  },
  {
    "input": "input : list = [0, 2, -5, 1, 1, 4]\noutput : list = [0, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop([0, 2, -5, 1, 1, 4],3),-4))))",
    "io_inp": [
      0,
      2,
      -5,
      1,
      1,
      4
    ],
    "io_out": [
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop(input,3),-4))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, 4]))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-3, -2, 4, -1, 1, -3]\noutput : list = [-27, -27, -18, -9, 9, 36]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des(reverse([-3, -2, 4, -1, 1, -3])),-3)),-3)",
    "io_inp": [
      -3,
      -2,
      4,
      -1,
      1,
      -3
    ],
    "io_out": [
      -27,
      -27,
      -18,
      -9,
      9,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(reverse(input)),-3)),-3)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = drop([5, -5, 5],1)",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -2, 2, 0, 2]\noutput : list = [-11, -5, 7, 1, 7]",
    "output": "generated_output : list = add_n(mul_n([-4, -2, 2, 0, 2],3),1)",
    "io_inp": [
      -4,
      -2,
      2,
      0,
      2
    ],
    "io_out": [
      -11,
      -5,
      7,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),1)"
  },
  {
    "input": "input : list = [-4, 5, 5, -4, 2]\noutput : list = [-9, -9, -3, 0]",
    "output": "generated_output : list = reverse(drop(sort_des(sort_asc(add_n([-4, 5, 5, -4, 2],-5))),1))",
    "io_inp": [
      -4,
      5,
      5,
      -4,
      2
    ],
    "io_out": [
      -9,
      -9,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(sort_asc(add_n(input,-5))),1))"
  },
  {
    "input": "input : list = [0, 4, 3, 0]\noutput : list = [-13, -9, 3, 3]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(mul_n([0, 4, 3, 0],2)),-2),3),30)",
    "io_inp": [
      0,
      4,
      3,
      0
    ],
    "io_out": [
      -13,
      -9,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(mul_n(input,2)),-2),3),30)"
  },
  {
    "input": "input : list = [-1, -2, 5, 1]\noutput : list = [1, 5, -2, -1]",
    "output": "generated_output : list = reverse([-1, -2, 5, 1])",
    "io_inp": [
      -1,
      -2,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, 2, 0]\noutput : list = [-13, -9, 11, 3]",
    "output": "generated_output : list = add_n(mul_n([-4, -3, 2, 0],4),3)",
    "io_inp": [
      -4,
      -3,
      2,
      0
    ],
    "io_out": [
      -13,
      -9,
      11,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),3)"
  },
  {
    "input": "input : list = [1, -3, 0, -2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(take([1, -3, 0, -2],2)))))",
    "io_inp": [
      1,
      -3,
      0,
      -2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(take(input,2)))))"
  },
  {
    "input": "input : list = [1, -1, 0, -3, 3, 0]\noutput : list = [7, 5, 4, 4, 3, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(add_n([1, -1, 0, -3, 3, 0],4),27)),-1),1)",
    "io_inp": [
      1,
      -1,
      0,
      -3,
      3,
      0
    ],
    "io_out": [
      7,
      5,
      4,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(add_n(input,4),27)),-1),1)"
  },
  {
    "input": "input : list = [2, -5, -1, -3, 3, -3]\noutput : list = [-7, -5, -5, -3, 0, 1]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(add_n([2, -5, -1, -3, 3, -3],3))),5),1)",
    "io_inp": [
      2,
      -5,
      -1,
      -3,
      3,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(add_n(input,3))),5),1)"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [16, -8, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-4, 3, 2])),-4)",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      16,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [2, -1, -5, 4, -2]\noutput : list = [-5, -2, -1, 2, 4]",
    "output": "generated_output : list = sort_asc([2, -1, -5, 4, -2])",
    "io_inp": [
      2,
      -1,
      -5,
      4,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, 2, -5, -5, -4]\noutput : list = [-16, -16, -16, -14, -8, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n([-1, -5, 2, -5, -5, -4],3),2)))",
    "io_inp": [
      -1,
      -5,
      2,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -16,
      -14,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(input,3),2)))"
  },
  {
    "input": "input : list = [-3, -3, 4, -5, -1, 1]\noutput : list = [-2, -4, -8, 1, -6, -6]",
    "output": "generated_output : list = sub_n(reverse([-3, -3, 4, -5, -1, 1]),3)",
    "io_inp": [
      -3,
      -3,
      4,
      -5,
      -1,
      1
    ],
    "io_out": [
      -2,
      -4,
      -8,
      1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-5, 1, -5, -4, 5, -2]\noutput : list = [32]",
    "output": "generated_output : list = take(mul_n(add_n(take(sub_n([-5, 1, -5, -4, 5, -2],2),1),-1),-4),3)",
    "io_inp": [
      -5,
      1,
      -5,
      -4,
      5,
      -2
    ],
    "io_out": [
      32
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(sub_n(input,2),1),-1),-4),3)"
  },
  {
    "input": "input : list = [-2, 1, -1, -3, 4]\noutput : list = [4, -3, -1, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, -1, -3, 4])",
    "io_inp": [
      -2,
      1,
      -1,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [-3, 9, 12]",
    "output": "generated_output : list = reverse(take(sort_des(take(mul_n([-3, 1, -4],-3),16)),36))",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      -3,
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(mul_n(input,-3),16)),36))"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [1, 8]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(drop([3, 5, -2],1))),-3),32)",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(drop(input,1))),-3),32)"
  },
  {
    "input": "input : list = [-5, 5, -2]\noutput : list = [-2, 5, -5]",
    "output": "generated_output : list = reverse([-5, 5, -2])",
    "io_inp": [
      -5,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_des([3, -4, -3]),-2),-2)))",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_des(input),-2),-2)))"
  },
  {
    "input": "input : list = [5, -2, -5, 0]\noutput : list = [5, -2]",
    "output": "generated_output : list = take([5, -2, -5, 0],2)",
    "io_inp": [
      5,
      -2,
      -5,
      0
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 1, 3, -2, -4, 3]\noutput : list = [-3, -1, 2, 4, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sub_n([3, 1, 3, -2, -4, 3],-3)))),2)",
    "io_inp": [
      3,
      1,
      3,
      -2,
      -4,
      3
    ],
    "io_out": [
      -3,
      -1,
      2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sub_n(input,-3)))),2)"
  },
  {
    "input": "input : list = [2, -4, -2, -5]\noutput : list = [1, -5, -3, -6]",
    "output": "generated_output : list = sub_n(add_n([2, -4, -2, -5],-4),-3)",
    "io_inp": [
      2,
      -4,
      -2,
      -5
    ],
    "io_out": [
      1,
      -5,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),-3)"
  },
  {
    "input": "input : list = [-2, 0, -3, 5]\noutput : list = [0, -3, 5]",
    "output": "generated_output : list = drop([-2, 0, -3, 5],1)",
    "io_inp": [
      -2,
      0,
      -3,
      5
    ],
    "io_out": [
      0,
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [2, -19]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(sort_des([-4, 3]),-4),25),3),-5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      2,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(sort_des(input),-4),25),3),-5)"
  },
  {
    "input": "input : list = [-1, -4, -5, -2, -2, 3]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = take([-1, -4, -5, -2, -2, 3],3)",
    "io_inp": [
      -1,
      -4,
      -5,
      -2,
      -2,
      3
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [1, -4, 2, 5, 3]\noutput : list = [-15, 60, -30, -75, -45]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(mul_n([1, -4, 2, 5, 3],-3)),1)),5)",
    "io_inp": [
      1,
      -4,
      2,
      5,
      3
    ],
    "io_out": [
      -15,
      60,
      -30,
      -75,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(mul_n(input,-3)),1)),5)"
  },
  {
    "input": "input : list = [4, 1, 5, 1, 0, 4]\noutput : list = [8, 7]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(sort_des([4, 1, 5, 1, 0, 4]))),2),-3)",
    "io_inp": [
      4,
      1,
      5,
      1,
      0,
      4
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(sort_des(input))),2),-3)"
  },
  {
    "input": "input : list = [-4, 2, 1, 3]\noutput : list = [-3, 12, 15, 18]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sort_des([-4, 2, 1, 3]),-1),2)),3)",
    "io_inp": [
      -4,
      2,
      1,
      3
    ],
    "io_out": [
      -3,
      12,
      15,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(sort_des(input),-1),2)),3)"
  },
  {
    "input": "input : list = [-5, -3, 4, -1, -5, 2]\noutput : list = [4, -3, 1, 6, -1, -3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(mul_n([-5, -3, 4, -1, -5, 2],1),-5),4)),-1)",
    "io_inp": [
      -5,
      -3,
      4,
      -1,
      -5,
      2
    ],
    "io_out": [
      4,
      -3,
      1,
      6,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(mul_n(input,1),-5),4)),-1)"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [15, -5]",
    "output": "generated_output : list = mul_n(drop([2, -3, 1],1),-5)",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [2, 5, -5, 2]\noutput : list = [10, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(take([2, 5, -5, 2],2),5))))",
    "io_inp": [
      2,
      5,
      -5,
      2
    ],
    "io_out": [
      10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(take(input,2),5))))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [18, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(reverse([4, -1]),4),-2)))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      18,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(reverse(input),4),-2)))"
  },
  {
    "input": "input : list = [-5, 2, -1, 0, -4]\noutput : list = [-10, 4, -2]",
    "output": "generated_output : list = take(mul_n([-5, 2, -1, 0, -4],2),3)",
    "io_inp": [
      -5,
      2,
      -1,
      0,
      -4
    ],
    "io_out": [
      -10,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [4, 1, -5, -2, 2]\noutput : list = [-20, -10, -5, 10, 25]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse([4, 1, -5, -2, 2])))),-5)",
    "io_inp": [
      4,
      1,
      -5,
      -2,
      2
    ],
    "io_out": [
      -20,
      -10,
      -5,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [5, 5, -2, -3, 3]\noutput : list = [-31, -31, 4, 9, -21]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(mul_n([5, 5, -2, -3, 3],-5),-1),-1),-1),3)",
    "io_inp": [
      5,
      5,
      -2,
      -3,
      3
    ],
    "io_out": [
      -31,
      -31,
      4,
      9,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(mul_n(input,-5),-1),-1),-1),3)"
  },
  {
    "input": "input : list = [2, -4, -5, -2, -5]\noutput : list = [-3, -9, -10, -7, -10]",
    "output": "generated_output : list = add_n([2, -4, -5, -2, -5],-5)",
    "io_inp": [
      2,
      -4,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -9,
      -10,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc([2, 1]),10),-4)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),10),-4)"
  },
  {
    "input": "input : list = [-5, 2, 0, 5]\noutput : list = [12, 20, 32]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(drop([-5, 2, 0, 5],1),-3)),4))",
    "io_inp": [
      -5,
      2,
      0,
      5
    ],
    "io_out": [
      12,
      20,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(drop(input,1),-3)),4))"
  },
  {
    "input": "input : list = [2, 2, 0, -3, -2, 2]\noutput : list = [-6, -6, -6, -10, -14, -16]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n([2, 2, 0, -3, -2, 2],3),2)),4)",
    "io_inp": [
      2,
      2,
      0,
      -3,
      -2,
      2
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -10,
      -14,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(input,3),2)),4)"
  },
  {
    "input": "input : list = [-3, 5, -4, 4, 5, -2]\noutput : list = [-6, -5, -4, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-3, 5, -4, 4, 5, -2],-5),-3))",
    "io_inp": [
      -3,
      5,
      -4,
      4,
      5,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -4,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,-5),-3))"
  },
  {
    "input": "input : list = [-3, -1, -3, -4, -4, -5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(take([-3, -1, -3, -4, -4, -5],1),-2)),4))",
    "io_inp": [
      -3,
      -1,
      -3,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(take(input,1),-2)),4))"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n(drop([1, 5, 2],1),5)",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(reverse([3, 5])),10)))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(reverse(input)),10)))"
  },
  {
    "input": "input : list = [5, 2, -4]\noutput : list = [-29, -14, 16]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(add_n([5, 2, -4],1),-5),3)),4)",
    "io_inp": [
      5,
      2,
      -4
    ],
    "io_out": [
      -29,
      -14,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(add_n(input,1),-5),3)),4)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [3, 5, 3]",
    "output": "generated_output : list = add_n(reverse([0, 2, 0]),3)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      3,
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [-2, 6, 1]",
    "output": "generated_output : list = add_n([-4, 4, -1],2)",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      -2,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-3, -1, 4, 1, -5, -5]\noutput : list = [-80, -50, -30, -10, 10, 10]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_asc([-3, -1, 4, 1, -5, -5]),4),2)),-5)",
    "io_inp": [
      -3,
      -1,
      4,
      1,
      -5,
      -5
    ],
    "io_out": [
      -80,
      -50,
      -30,
      -10,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_asc(input),4),2)),-5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [9, 0]",
    "output": "generated_output : list = take(add_n(sort_des([4, -5]),5),22)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),5),22)"
  },
  {
    "input": "input : list = [3, 2, -5, 0, 0]\noutput : list = [7, 6, 4, 4, -1]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(reverse([3, 2, -5, 0, 0]))),1),-4)",
    "io_inp": [
      3,
      2,
      -5,
      0,
      0
    ],
    "io_out": [
      7,
      6,
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(reverse(input))),1),-4)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc([4, -3])",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 5, -3, 1, -2]\noutput : list = [1, 2, 5, 6, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des([2, 5, -3, 1, -2]))),4)",
    "io_inp": [
      2,
      5,
      -3,
      1,
      -2
    ],
    "io_out": [
      1,
      2,
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(input))),4)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [10, -25]",
    "output": "generated_output : list = mul_n(take(sort_des([2, -5]),5),5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),5),5)"
  },
  {
    "input": "input : list = [-3, 0, 4, 1]\noutput : list = [-9, -6, -5, -2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc([-3, 0, 4, 1]),-3)),-3))",
    "io_inp": [
      -3,
      0,
      4,
      1
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc(input),-3)),-3))"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(drop([-4, 4, 4],1))",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [0, -3, 0, 4]\noutput : list = [4, -5, -5, -17]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(mul_n([0, -3, 0, 4],-3)),5)))",
    "io_inp": [
      0,
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      -5,
      -5,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(mul_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sort_asc(reverse([-1, 0, -1]))",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [5, -13, -10]",
    "output": "generated_output : list = add_n(mul_n([3, -3, -2],3),-4)",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      5,
      -13,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),-4)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [1, 5, 8]",
    "output": "generated_output : list = take(sub_n(reverse(take(sort_des([0, -4, 3]),3)),-5),14)",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      1,
      5,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(sort_des(input),3)),-5),14)"
  },
  {
    "input": "input : list = [4, 1, 2, 2, -5]\noutput : list = [4, 4, 3, -3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(drop([4, 1, 2, 2, -5],1),7)),-2))",
    "io_inp": [
      4,
      1,
      2,
      2,
      -5
    ],
    "io_out": [
      4,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(drop(input,1),7)),-2))"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [-15, 10, 25]",
    "output": "generated_output : list = take(sort_asc(mul_n([5, 2, -3],5)),27)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      -15,
      10,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,5)),27)"
  },
  {
    "input": "input : list = [-5, 5, 3, -1, -5]\noutput : list = [-5, -5, -1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 5, 3, -1, -5]))",
    "io_inp": [
      -5,
      5,
      3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, -5, 3, 4, -3]\noutput : list = [-5, -3, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(sort_des([4, -5, 3, 4, -3])),8)),17)",
    "io_inp": [
      4,
      -5,
      3,
      4,
      -3
    ],
    "io_out": [
      -5,
      -3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(sort_des(input)),8)),17)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [4, -6]",
    "output": "generated_output : list = add_n(mul_n([0, -2],5),4)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),4)"
  },
  {
    "input": "input : list = [-1, -5, 4, -1, 2, -5]\noutput : list = [-82, -82, -42, -42, -12, 8]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(add_n([-1, -5, 4, -1, 2, -5],-3),2),5),-2))",
    "io_inp": [
      -1,
      -5,
      4,
      -1,
      2,
      -5
    ],
    "io_out": [
      -82,
      -82,
      -42,
      -42,
      -12,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(add_n(input,-3),2),5),-2))"
  },
  {
    "input": "input : list = [1, -4, -3, 3, -1, -1]\noutput : list = [4, 3, 8]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(take([1, -4, -3, 3, -1, -1],3)),4),-3),16)",
    "io_inp": [
      1,
      -4,
      -3,
      3,
      -1,
      -1
    ],
    "io_out": [
      4,
      3,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(take(input,3)),4),-3),16)"
  },
  {
    "input": "input : list = [2, -3, -4, 4, -2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(mul_n(take(take(drop([2, -3, -4, 4, -2, 3],4),10),2),1))",
    "io_inp": [
      2,
      -3,
      -4,
      4,
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(drop(input,4),10),2),1))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [36, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n([4, -3],3)),-2),4)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      36,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(input,3)),-2),4)"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(drop([4, 1, 2],1),-3)),4))",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(drop(input,1),-3)),4))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [2, 5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(reverse([-4, -1]),2)),1),5)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(reverse(input),2)),1),5)"
  },
  {
    "input": "input : list = [2, -4, -3, 5]\noutput : list = [-12, -8, 12, 24]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(add_n([2, -4, -3, 5],1),8),4),1))",
    "io_inp": [
      2,
      -4,
      -3,
      5
    ],
    "io_out": [
      -12,
      -8,
      12,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(add_n(input,1),8),4),1))"
  },
  {
    "input": "input : list = [-3, 5, -2, 3, -2]\noutput : list = [-2, 6, -1, 4, -1]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-3, 5, -2, 3, -2],2),1),4)",
    "io_inp": [
      -3,
      5,
      -2,
      3,
      -2
    ],
    "io_out": [
      -2,
      6,
      -1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,2),1),4)"
  },
  {
    "input": "input : list = [1, -1, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([1, -1, 3, 3],2)))",
    "io_inp": [
      1,
      -1,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(reverse([4, -5])),14)))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(reverse(input)),14)))"
  },
  {
    "input": "input : list = [3, 1, -1, -3, 4, -4]\noutput : list = [4, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take([3, 1, -1, -3, 4, -4],2))),-1)",
    "io_inp": [
      3,
      1,
      -1,
      -3,
      4,
      -4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(input,2))),-1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_asc([1, 5]))),-1))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_asc(input))),-1))"
  },
  {
    "input": "input : list = [2, -4, 0, 5, 3, 4]\noutput : list = [-5, 1, -3, -8, -6, -7]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(sub_n([2, -4, 0, 5, 3, 4],-3)),1),-1))",
    "io_inp": [
      2,
      -4,
      0,
      5,
      3,
      4
    ],
    "io_out": [
      -5,
      1,
      -3,
      -8,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(sub_n(input,-3)),1),-1))"
  },
  {
    "input": "input : list = [-2, 0, -2, 5]\noutput : list = [10, 0, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_des([-2, 0, -2, 5]))),2))",
    "io_inp": [
      -2,
      0,
      -2,
      5
    ],
    "io_out": [
      10,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -2, -5],1)",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 4, -5, 5]\noutput : list = [10, 10, 9, 0]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(sub_n([5, 4, -5, 5],-5)))),32)",
    "io_inp": [
      5,
      4,
      -5,
      5
    ],
    "io_out": [
      10,
      10,
      9,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(sub_n(input,-5)))),32)"
  },
  {
    "input": "input : list = [-3, -4, 3, 1, -2]\noutput : list = [-4, 0, 6, 8, 10]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(add_n([-3, -4, 3, 1, -2],-3)),-2)),-2)",
    "io_inp": [
      -3,
      -4,
      3,
      1,
      -2
    ],
    "io_out": [
      -4,
      0,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(add_n(input,-3)),-2)),-2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(sort_asc([-4, -2]),-1)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = add_n(take(sort_asc([2, 3, 5]),11),-1)",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),11),-1)"
  },
  {
    "input": "input : list = [0, 3, -2, -1, -5, 5]\noutput : list = [6, 4]",
    "output": "generated_output : list = sub_n(reverse(drop(sort_asc([0, 3, -2, -1, -5, 5]),4)),-1)",
    "io_inp": [
      0,
      3,
      -2,
      -1,
      -5,
      5
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(sort_asc(input),4)),-1)"
  },
  {
    "input": "input : list = [-3, 1, 1, 0]\noutput : list = [-2, -2, -3, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(reverse([-3, 1, 1, 0])),28),3))",
    "io_inp": [
      -3,
      1,
      1,
      0
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(reverse(input)),28),3))"
  },
  {
    "input": "input : list = [-5, 5, -2, 2]\noutput : list = [16, -24, 4, -12]",
    "output": "generated_output : list = add_n(mul_n([-5, 5, -2, 2],-4),-4)",
    "io_inp": [
      -5,
      5,
      -2,
      2
    ],
    "io_out": [
      16,
      -24,
      4,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),-4)"
  },
  {
    "input": "input : list = [3, -3, -1, 4, -2, -1]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc([3, -3, -1, 4, -2, -1]),3))",
    "io_inp": [
      3,
      -3,
      -1,
      4,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),3))"
  },
  {
    "input": "input : list = [5, 4, 4, 3]\noutput : list = [50, 45, 45, 40]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(reverse([5, 4, 4, 3]),-5))),5)",
    "io_inp": [
      5,
      4,
      4,
      3
    ],
    "io_out": [
      50,
      45,
      45,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(reverse(input),-5))),5)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = sort_asc(reverse([-1, -4, 5]))",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [-4, 4, -3]",
    "output": "generated_output : list = add_n([-3, 5, -2],-1)",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      -4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -5, 5, 4, -5]\noutput : list = [0, 9, 10, 0, 6]",
    "output": "generated_output : list = reverse(add_n([1, -5, 5, 4, -5],5))",
    "io_inp": [
      1,
      -5,
      5,
      4,
      -5
    ],
    "io_out": [
      0,
      9,
      10,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [4, 3, 2, 2, 3, 4]\noutput : list = [-15, -20, -20]",
    "output": "generated_output : list = reverse(mul_n(take(take(sort_des([4, 3, 2, 2, 3, 4]),3),27),-5))",
    "io_inp": [
      4,
      3,
      2,
      2,
      3,
      4
    ],
    "io_out": [
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sort_des(input),3),27),-5))"
  },
  {
    "input": "input : list = [0, 2, 2, -1, 4, -3]\noutput : list = [12, 4, -8, -16]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(drop([0, 2, 2, -1, 4, -3],2)),2),-2),31)",
    "io_inp": [
      0,
      2,
      2,
      -1,
      4,
      -3
    ],
    "io_out": [
      12,
      4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(drop(input,2)),2),-2),31)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n([5, 1],-1),-3),17))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(input,-1),-3),17))"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [-5, 1, 5]",
    "output": "generated_output : list = reverse(sort_des([-5, 5, 1]))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [1, 1, 3, -4, -3]\noutput : list = [1, -1, -1, -5, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([1, 1, 3, -4, -3])),2)",
    "io_inp": [
      1,
      1,
      3,
      -4,
      -3
    ],
    "io_out": [
      1,
      -1,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -1, -4],1)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -1, 3, 2]\noutput : list = [7, -5, 7, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(reverse([3, -1, 3, 2]),3),5)),-3)",
    "io_inp": [
      3,
      -1,
      3,
      2
    ],
    "io_out": [
      7,
      -5,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(reverse(input),3),5)),-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [5, 3]",
    "output": "generated_output : list = add_n([4, 2],1)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, -2, 4]\noutput : list = [-7, -2, -1]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(sub_n([3, -2, 4],5)))),25)",
    "io_inp": [
      3,
      -2,
      4
    ],
    "io_out": [
      -7,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(sub_n(input,5)))),25)"
  },
  {
    "input": "input : list = [0, 3, -2, -3]\noutput : list = [10, -5, -15, -20]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(mul_n([0, 3, -2, -3],5))),5),41)",
    "io_inp": [
      0,
      3,
      -2,
      -3
    ],
    "io_out": [
      10,
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(mul_n(input,5))),5),41)"
  },
  {
    "input": "input : list = [-3, -4, 3, -3, -2]\noutput : list = [-7, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take([-3, -4, 3, -3, -2],2)),4))",
    "io_inp": [
      -3,
      -4,
      3,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(input,2)),4))"
  },
  {
    "input": "input : list = [-2, 2, 1]\noutput : list = [6, -6, -3]",
    "output": "generated_output : list = mul_n([-2, 2, 1],-3)",
    "io_inp": [
      -2,
      2,
      1
    ],
    "io_out": [
      6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -5, -2, -5, 5]\noutput : list = [-124, 16, 56, 76, 76]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(mul_n([-4, -5, -2, -5, 5],-4)),5),5),1)",
    "io_inp": [
      -4,
      -5,
      -2,
      -5,
      5
    ],
    "io_out": [
      -124,
      16,
      56,
      76,
      76
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(mul_n(input,-4)),5),5),1)"
  },
  {
    "input": "input : list = [-2, 1, -2, -4]\noutput : list = [1]",
    "output": "generated_output : list = drop(sort_asc([-2, 1, -2, -4]),3)",
    "io_inp": [
      -2,
      1,
      -2,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-45, 0]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(mul_n([-3, 0],-5)),-3)),17)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -45,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(mul_n(input,-5)),-3)),17)"
  },
  {
    "input": "input : list = [-1, 1, 0, 0]\noutput : list = [-4, -2, -3, -3]",
    "output": "generated_output : list = add_n([-1, 1, 0, 0],-3)",
    "io_inp": [
      -1,
      1,
      0,
      0
    ],
    "io_out": [
      -4,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 3, 2, -1, 4]\noutput : list = [3, 2, 1, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des([-3, 3, 2, -1, 4]),1)",
    "io_inp": [
      -3,
      3,
      2,
      -1,
      4
    ],
    "io_out": [
      3,
      2,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [4, -3, -4, 5, -5]\noutput : list = [25, 20, -15, -20, -25]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc([4, -3, -4, 5, -5])),5)),1)",
    "io_inp": [
      4,
      -3,
      -4,
      5,
      -5
    ],
    "io_out": [
      25,
      20,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc(input)),5)),1)"
  },
  {
    "input": "input : list = [4, -4, 3, 1, 1, -3]\noutput : list = [5, -3, 4, 2, 2, -2]",
    "output": "generated_output : list = add_n([4, -4, 3, 1, 1, -3],1)",
    "io_inp": [
      4,
      -4,
      3,
      1,
      1,
      -3
    ],
    "io_out": [
      5,
      -3,
      4,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, 0, 5, -2, -4]\noutput : list = [-4, -2, -1, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([-1, 0, 5, -2, -4])))",
    "io_inp": [
      -1,
      0,
      5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [3, 0, -1, -2, -2]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = take([3, 0, -1, -2, -2],3)",
    "io_inp": [
      3,
      0,
      -1,
      -2,
      -2
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, -5, 3, 1]\noutput : list = [1, 3, -5, -4]",
    "output": "generated_output : list = reverse([-4, -5, 3, 1])",
    "io_inp": [
      -4,
      -5,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, 1, 3, -1]\noutput : list = [-1, 3, 1, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, 1, 3, -1])",
    "io_inp": [
      3,
      -2,
      1,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      1,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, 0, 2, -4]\noutput : list = [-40, -36, -24, -20, -12]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_des([-1, -5, 0, 2, -4]),4)),-1),4)",
    "io_inp": [
      -1,
      -5,
      0,
      2,
      -4
    ],
    "io_out": [
      -40,
      -36,
      -24,
      -20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_des(input),4)),-1),4)"
  },
  {
    "input": "input : list = [1, 1, 5, -1, 3, 0]\noutput : list = [6, 5, 4]",
    "output": "generated_output : list = add_n(take(take(drop(sort_des([1, 1, 5, -1, 3, 0]),3),26),34),5)",
    "io_inp": [
      1,
      1,
      5,
      -1,
      3,
      0
    ],
    "io_out": [
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(sort_des(input),3),26),34),5)"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = sort_des([1, -1, 2])",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 1, -4, -5, 5]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(take([-3, 1, -4, -5, 5],1)),4),8))",
    "io_inp": [
      -3,
      1,
      -4,
      -5,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(take(input,1)),4),8))"
  },
  {
    "input": "input : list = [-3, -3, -2, 5, -4, -3]\noutput : list = [-4, -3, -3, -3, -2, 5]",
    "output": "generated_output : list = sort_asc([-3, -3, -2, 5, -4, -3])",
    "io_inp": [
      -3,
      -3,
      -2,
      5,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, 5, 4, 4]\noutput : list = [-3, 4, 6, 6, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n([2, -5, 5, 4, 4],-3),-4))),-5)",
    "io_inp": [
      2,
      -5,
      5,
      4,
      4
    ],
    "io_out": [
      -3,
      4,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n(input,-3),-4))),-5)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-15, -3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(mul_n([5, 1],3),-1))))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -15,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(mul_n(input,3),-1))))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [16, -4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse(mul_n([0, -4],-5)),1),-3))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      16,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(mul_n(input,-5)),1),-3))"
  },
  {
    "input": "input : list = [3, 1, -1, -2, -1, -3]\noutput : list = [-5, -3, -4, -3, -1]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(drop([3, 1, -1, -2, -1, -3],1),-1),35),-3))",
    "io_inp": [
      3,
      1,
      -1,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(drop(input,1),-1),35),-3))"
  },
  {
    "input": "input : list = [-2, 0, -3, -5]\noutput : list = [-8, -10]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(take([-2, 0, -3, -5],2),3),23),5))",
    "io_inp": [
      -2,
      0,
      -3,
      -5
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(take(input,2),3),23),5))"
  },
  {
    "input": "input : list = [-1, -4, -2, -4]\noutput : list = [-2, -4, -8, -8]",
    "output": "generated_output : list = sort_des(mul_n([-1, -4, -2, -4],2))",
    "io_inp": [
      -1,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(drop([4, -2, -3],1))),-4)",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(drop(input,1))),-4)"
  },
  {
    "input": "input : list = [-1, -5, -2, 0, -2, -5]\noutput : list = [-4, -5, -6, -6, -9, -9]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n([-1, -5, -2, 0, -2, -5],4),6)),1)",
    "io_inp": [
      -1,
      -5,
      -2,
      0,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(input,4),6)),1)"
  },
  {
    "input": "input : list = [1, -1, 0, -4, -5]\noutput : list = [20, 16, 4, 0, -4]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(mul_n([1, -1, 0, -4, -5],-4),-4)),-4))",
    "io_inp": [
      1,
      -1,
      0,
      -4,
      -5
    ],
    "io_out": [
      20,
      16,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(mul_n(input,-4),-4)),-4))"
  },
  {
    "input": "input : list = [5, 0, 3, -3, 0]\noutput : list = [-8, -18]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(take([5, 0, 3, -3, 0],2)),-1),-3),-2)",
    "io_inp": [
      5,
      0,
      3,
      -3,
      0
    ],
    "io_out": [
      -8,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(take(input,2)),-1),-3),-2)"
  },
  {
    "input": "input : list = [5, -2, -3, -5]\noutput : list = [-31, -10, -7, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(add_n([5, -2, -3, -5],4),-3)),1),-4)",
    "io_inp": [
      5,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -31,
      -10,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(add_n(input,4),-3)),1),-4)"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [-4, -4, 0]",
    "output": "generated_output : list = reverse([0, -4, -4])",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4, 3, 5, -4, -4]\noutput : list = [-6, -4, 3, 3, 3, 3]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(add_n([-4, -4, 3, 5, -4, -4],1))),48),-1)",
    "io_inp": [
      -4,
      -4,
      3,
      5,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -4,
      3,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(add_n(input,1))),48),-1)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-6, 3, 15]",
    "output": "generated_output : list = mul_n(sort_asc([1, -2, 5]),3)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -6,
      3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [0, -10]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(add_n([5, 3],1)),-4),1),-5)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(add_n(input,1)),-4),1),-5)"
  },
  {
    "input": "input : list = [3, -5, 1, 0]\noutput : list = [-7, -2, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sub_n(sub_n([3, -5, 1, 0],-1),-2),5)))",
    "io_inp": [
      3,
      -5,
      1,
      0
    ],
    "io_out": [
      -7,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sub_n(sub_n(input,-1),-2),5)))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sort_des([4, -2])),5)))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-5, -4, 3, -4, -4]\noutput : list = [5, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(drop([-5, -4, 3, -4, -4],2))),-2))",
    "io_inp": [
      -5,
      -4,
      3,
      -4,
      -4
    ],
    "io_out": [
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(drop(input,2))),-2))"
  },
  {
    "input": "input : list = [0, -1, 3, -5]\noutput : list = [-8, -4, -3, 0]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sub_n(add_n([0, -1, 3, -5],-1),2),-1)),-1)",
    "io_inp": [
      0,
      -1,
      3,
      -5
    ],
    "io_out": [
      -8,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sub_n(add_n(input,-1),2),-1)),-1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des([4, 4])",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = drop([3, -1, 5],1)",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [-3, -5, -6]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n(add_n([-1, 1, 2],4),-1)),7))",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(add_n(input,4),-1)),7))"
  },
  {
    "input": "input : list = [1, -2, 2, 1, -2, -5]\noutput : list = [27, 12, 12, -3, -3, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(sort_des([1, -2, 2, 1, -2, -5]),-5),-2)))",
    "io_inp": [
      1,
      -2,
      2,
      1,
      -2,
      -5
    ],
    "io_out": [
      27,
      12,
      12,
      -3,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(sort_des(input),-5),-2)))"
  },
  {
    "input": "input : list = [4, 1, 4, 2]\noutput : list = [4, 4, 2, 1]",
    "output": "generated_output : list = sort_des([4, 1, 4, 2])",
    "io_inp": [
      4,
      1,
      4,
      2
    ],
    "io_out": [
      4,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-12, -11]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n([-2, -3],4))),5)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -12,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(input,4))),5)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(sort_asc([1, 3, 4])),2),2))",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(sort_asc(input)),2),2))"
  },
  {
    "input": "input : list = [2, -2, 5, -3, -3]\noutput : list = [79, 79, 54, -46, -121]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(mul_n([2, -2, 5, -3, -3],-5)),5),-4))",
    "io_inp": [
      2,
      -2,
      5,
      -3,
      -3
    ],
    "io_out": [
      79,
      79,
      54,
      -46,
      -121
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(mul_n(input,-5)),5),-4))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [1, -7]",
    "output": "generated_output : list = reverse(add_n([-5, 3],-2))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [3, 4, 5, -4, 2]\noutput : list = [5, 6, 7, -2, 4]",
    "output": "generated_output : list = add_n([3, 4, 5, -4, 2],2)",
    "io_inp": [
      3,
      4,
      5,
      -4,
      2
    ],
    "io_out": [
      5,
      6,
      7,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 0, 5, 4]\noutput : list = [11]",
    "output": "generated_output : list = add_n(add_n(take(take(add_n([4, 0, 5, 4],3),1),14),3),1)",
    "io_inp": [
      4,
      0,
      5,
      4
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(add_n(input,3),1),14),3),1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-18, 9]",
    "output": "generated_output : list = mul_n(reverse(take(add_n([-5, 4],2),14)),-3)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -18,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(input,2),14)),-3)"
  },
  {
    "input": "input : list = [2, 0, -1, 5]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = take(drop(sort_asc(sort_asc([2, 0, -1, 5])),1),5)",
    "io_inp": [
      2,
      0,
      -1,
      5
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(sort_asc(input)),1),5)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [21, -29, -29]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(reverse([-5, 5, 5]),9),-5),4))",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      21,
      -29,
      -29
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(reverse(input),9),-5),4))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des([-2, 1])",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, 1, -5]\noutput : list = [-9, -9, -3, -9]",
    "output": "generated_output : list = add_n(reverse(reverse([-5, -5, 1, -5])),-4)",
    "io_inp": [
      -5,
      -5,
      1,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),-4)"
  },
  {
    "input": "input : list = [0, 3, 4, 0, -1, -1]\noutput : list = [4, 4, 5, 5, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(reverse([0, 3, 4, 0, -1, -1])),-4)),1)",
    "io_inp": [
      0,
      3,
      4,
      0,
      -1,
      -1
    ],
    "io_out": [
      4,
      4,
      5,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(reverse(input)),-4)),1)"
  },
  {
    "input": "input : list = [-3, 3, -3, 3, 0, 0]\noutput : list = [0, 0, 3, -3]",
    "output": "generated_output : list = reverse(drop([-3, 3, -3, 3, 0, 0],2))",
    "io_inp": [
      -3,
      3,
      -3,
      3,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-3, 0, -3, -5, 3]\noutput : list = [3, 0, -3, -3, -5]",
    "output": "generated_output : list = sort_des([-3, 0, -3, -5, 3])",
    "io_inp": [
      -3,
      0,
      -3,
      -5,
      3
    ],
    "io_out": [
      3,
      0,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, -5, 2, 5]\noutput : list = [125, 100, 50, 25, -125]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(mul_n([1, 4, -5, 2, 5],-5)))),-5)",
    "io_inp": [
      1,
      4,
      -5,
      2,
      5
    ],
    "io_out": [
      125,
      100,
      50,
      25,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(mul_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [13, 23]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(sub_n([4, 2],-1)),5),2))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      13,
      23
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(sub_n(input,-1)),5),2))"
  },
  {
    "input": "input : list = [-5, 5, 2, 2, 1]\noutput : list = [-46, -19, -19, -10, 44]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(mul_n([-5, 5, 2, 2, 1],-3),3))),1)",
    "io_inp": [
      -5,
      5,
      2,
      2,
      1
    ],
    "io_out": [
      -46,
      -19,
      -19,
      -10,
      44
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(mul_n(input,-3),3))),1)"
  },
  {
    "input": "input : list = [1, -4, 2, 4, -3, 1]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(sub_n(take(drop(sort_des([1, -4, 2, 4, -3, 1]),5),16),-1),3)",
    "io_inp": [
      1,
      -4,
      2,
      4,
      -3,
      1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(drop(sort_des(input),5),16),-1),3)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [19, 9, -31]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n([-2, -1, 3],2),-5))),1)",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      19,
      9,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n(input,2),-5))),1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-3, -15]",
    "output": "generated_output : list = mul_n([-1, -5],3)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, -1, -4, -4, 5]\noutput : list = [-1, -1, 2, 4, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(sort_des([1, -1, -4, -4, 5]),7))),3)",
    "io_inp": [
      1,
      -1,
      -4,
      -4,
      5
    ],
    "io_out": [
      -1,
      -1,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(sort_des(input),7))),3)"
  },
  {
    "input": "input : list = [4, 1, -2, 2]\noutput : list = [4, 1, -2, 2]",
    "output": "generated_output : list = reverse(mul_n(reverse([4, 1, -2, 2]),1))",
    "io_inp": [
      4,
      1,
      -2,
      2
    ],
    "io_out": [
      4,
      1,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),1))"
  },
  {
    "input": "input : list = [-1, -1, -2, -5]\noutput : list = [-7, -7, -8, -11]",
    "output": "generated_output : list = add_n(take(add_n(take(sort_des([-1, -1, -2, -5]),23),-5),35),-1)",
    "io_inp": [
      -1,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sort_des(input),23),-5),35),-1)"
  },
  {
    "input": "input : list = [4, -5, -5, 4, 5]\noutput : list = [15, -12]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(take([4, -5, -5, 4, 5],2))),-3))",
    "io_inp": [
      4,
      -5,
      -5,
      4,
      5
    ],
    "io_out": [
      15,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(take(input,2))),-3))"
  },
  {
    "input": "input : list = [3, 5, 1, 0]\noutput : list = [5, 3, 1, 0]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(sort_asc([3, 5, 1, 0]),-2),2),35))",
    "io_inp": [
      3,
      5,
      1,
      0
    ],
    "io_out": [
      5,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(sort_asc(input),-2),2),35))"
  },
  {
    "input": "input : list = [-1, -4, -3]\noutput : list = [12, 9]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(drop([-1, -4, -3],1)),-3)),16)",
    "io_inp": [
      -1,
      -4,
      -3
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(drop(input,1)),-3)),16)"
  },
  {
    "input": "input : list = [-4, 0, -1, 5]\noutput : list = [-30, -15, -10, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(sub_n([-4, 0, -1, 5],2)),5)))",
    "io_inp": [
      -4,
      0,
      -1,
      5
    ],
    "io_out": [
      -30,
      -15,
      -10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(sub_n(input,2)),5)))"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [2, 2, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(sort_asc([1, 1, -5]),7))),1)",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(sort_asc(input),7))),1)"
  },
  {
    "input": "input : list = [4, 3, 5]\noutput : list = [4, 2, 3]",
    "output": "generated_output : list = reverse(sub_n([4, 3, 5],1))",
    "io_inp": [
      4,
      3,
      5
    ],
    "io_out": [
      4,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [5, 3, 1, -3, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(take([5, 3, 1, -3, 1],2),-4)),21))",
    "io_inp": [
      5,
      3,
      1,
      -3,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(take(input,2),-4)),21))"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-5, -3, 1]",
    "output": "generated_output : list = sort_asc([-5, 1, -3])",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, 2, 1, -3]\noutput : list = [-12, -12, -4, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(sort_asc([-1, -3, 2, 1, -3]))),4))",
    "io_inp": [
      -1,
      -3,
      2,
      1,
      -3
    ],
    "io_out": [
      -12,
      -12,
      -4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [2, -2, 2, 3, 5]\noutput : list = [9, 7, 6, 6, 2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([2, -2, 2, 3, 5],-4)))",
    "io_inp": [
      2,
      -2,
      2,
      3,
      5
    ],
    "io_out": [
      9,
      7,
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, -3, -2, -3, -4, 2]\noutput : list = [3, 2, 1, 7]",
    "output": "generated_output : list = sub_n(take(take(take(drop([-3, -3, -2, -3, -4, 2],2),11),14),19),-5)",
    "io_inp": [
      -3,
      -3,
      -2,
      -3,
      -4,
      2
    ],
    "io_out": [
      3,
      2,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(drop(input,2),11),14),19),-5)"
  },
  {
    "input": "input : list = [-4, -2, 4, -1, 3]\noutput : list = [-2, 4, -1, 3]",
    "output": "generated_output : list = drop([-4, -2, 4, -1, 3],1)",
    "io_inp": [
      -4,
      -2,
      4,
      -1,
      3
    ],
    "io_out": [
      -2,
      4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 3, 5, 1, 0]\noutput : list = [-4, -3, -2, 0, 2]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(reverse([-1, 3, 5, 1, 0]),-3))),49)",
    "io_inp": [
      -1,
      3,
      5,
      1,
      0
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(reverse(input),-3))),49)"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sub_n(drop([-5, -2, -1],1),-2))",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,1),-2))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [30, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([3, -5]),-5),-3)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      30,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),-5),-3)"
  },
  {
    "input": "input : list = [-4, 4, -5, -3]\noutput : list = [-5, -4, -3, 4]",
    "output": "generated_output : list = sort_asc([-4, 4, -5, -3])",
    "io_inp": [
      -4,
      4,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, 1, -1, 0, 2]\noutput : list = [2, 0, -1, 1, 3, -2]",
    "output": "generated_output : list = reverse([-2, 3, 1, -1, 0, 2])",
    "io_inp": [
      -2,
      3,
      1,
      -1,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -1,
      1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -5, 5, -3, -1]\noutput : list = [3, 11, -21, 19, -13]",
    "output": "generated_output : list = add_n(reverse(mul_n([3, -5, 5, -3, -1],-4)),-1)",
    "io_inp": [
      3,
      -5,
      5,
      -3,
      -1
    ],
    "io_out": [
      3,
      11,
      -21,
      19,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,-4)),-1)"
  },
  {
    "input": "input : list = [-1, 3, 3, 0, -4]\noutput : list = [-9, -3, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(drop([-1, 3, 3, 0, -4],2),-2))),-3)",
    "io_inp": [
      -1,
      3,
      3,
      0,
      -4
    ],
    "io_out": [
      -9,
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(drop(input,2),-2))),-3)"
  },
  {
    "input": "input : list = [4, -2, 0, -4, 1]\noutput : list = [2, -3]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(drop([4, -2, 0, -4, 1],3)),22)),-1)",
    "io_inp": [
      4,
      -2,
      0,
      -4,
      1
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(drop(input,3)),22)),-1)"
  },
  {
    "input": "input : list = [-2, -2, 1, 4, 2]\noutput : list = [-2, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(drop([-2, -2, 1, 4, 2],1)))))",
    "io_inp": [
      -2,
      -2,
      1,
      4,
      2
    ],
    "io_out": [
      -2,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des([4, 0])",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3, 4, 2, -3, -5]\noutput : list = [4, 4, 3, 2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(add_n([4, 3, 4, 2, -3, -5],-3),2),5)))",
    "io_inp": [
      4,
      3,
      4,
      2,
      -3,
      -5
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(add_n(input,-3),2),5)))"
  },
  {
    "input": "input : list = [-3, -5, -5, 1]\noutput : list = [0, -6, -6, -4]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(add_n([-3, -5, -5, 1],1),-1),29),-3))",
    "io_inp": [
      -3,
      -5,
      -5,
      1
    ],
    "io_out": [
      0,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(add_n(input,1),-1),29),-3))"
  },
  {
    "input": "input : list = [0, -4, 0, -4, -3, -5]\noutput : list = [5, 1, 5, 1, 2, 0]",
    "output": "generated_output : list = add_n([0, -4, 0, -4, -3, -5],5)",
    "io_inp": [
      0,
      -4,
      0,
      -4,
      -3,
      -5
    ],
    "io_out": [
      5,
      1,
      5,
      1,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 2, 1, -4]\noutput : list = [-80, -80, 20, 40]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_asc([-4, 2, 1, -4])),30),4),5)",
    "io_inp": [
      -4,
      2,
      1,
      -4
    ],
    "io_out": [
      -80,
      -80,
      20,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_asc(input)),30),4),5)"
  },
  {
    "input": "input : list = [-1, -2, -5, -1, 3, -4]\noutput : list = [0, -1, -4, 0, 4, -3]",
    "output": "generated_output : list = sub_n([-1, -2, -5, -1, 3, -4],-1)",
    "io_inp": [
      -1,
      -2,
      -5,
      -1,
      3,
      -4
    ],
    "io_out": [
      0,
      -1,
      -4,
      0,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, 0, -4, -1]\noutput : list = [4, 0, -1, -4]",
    "output": "generated_output : list = take(take(sort_des(sort_des([4, 0, -4, -1])),9),26)",
    "io_inp": [
      4,
      0,
      -4,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_des(input)),9),26)"
  },
  {
    "input": "input : list = [1, 5, 2, 0, 1, -5]\noutput : list = [-4, 0, -3, -5, -4, -10]",
    "output": "generated_output : list = sub_n([1, 5, 2, 0, 1, -5],5)",
    "io_inp": [
      1,
      5,
      2,
      0,
      1,
      -5
    ],
    "io_out": [
      -4,
      0,
      -3,
      -5,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [7, 1, 7]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(sub_n([4, -2, 4],-3),1)),-1),1)",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      7,
      1,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(sub_n(input,-3),1)),-1),1)"
  },
  {
    "input": "input : list = [3, 1, 4, 4]\noutput : list = [4, 4, 1, 3]",
    "output": "generated_output : list = reverse([3, 1, 4, 4])",
    "io_inp": [
      3,
      1,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 3, -5, 0, 4]\noutput : list = [10, 0, -4, -6, -8]",
    "output": "generated_output : list = mul_n(sort_asc([2, 3, -5, 0, 4]),-2)",
    "io_inp": [
      2,
      3,
      -5,
      0,
      4
    ],
    "io_out": [
      10,
      0,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-5, -5, 1, 5, -2, 1]\noutput : list = [-5, -2, 1, 1, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(sort_des([-5, -5, 1, 5, -2, 1]),5))))",
    "io_inp": [
      -5,
      -5,
      1,
      5,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(sort_des(input),5))))"
  },
  {
    "input": "input : list = [-2, 4, 1, 4]\noutput : list = [-4, 2, -1, 2]",
    "output": "generated_output : list = add_n([-2, 4, 1, 4],-2)",
    "io_inp": [
      -2,
      4,
      1,
      4
    ],
    "io_out": [
      -4,
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [0, -4, 2, 1]\noutput : list = [-16, 0, 4, 8]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n([0, -4, 2, 1],4))),13)",
    "io_inp": [
      0,
      -4,
      2,
      1
    ],
    "io_out": [
      -16,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(input,4))),13)"
  },
  {
    "input": "input : list = [3, -1, 5, -3]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(take([3, -1, 5, -3],2),-1)",
    "io_inp": [
      3,
      -1,
      5,
      -3
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [-2, 4, -3, 0]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(sort_des(take([-2, 4, -3, 0],1)),3)",
    "io_inp": [
      -2,
      4,
      -3,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(input,1)),3)"
  },
  {
    "input": "input : list = [5, -5, 4, -4, 5, -5]\noutput : list = [5, 5, 4, -4, -5, -5]",
    "output": "generated_output : list = sort_des([5, -5, 4, -4, 5, -5])",
    "io_inp": [
      5,
      -5,
      4,
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      5,
      4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, 2, -1, -5, -3]\noutput : list = [-4, -3, -2, 0, 1, 3]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(sub_n([0, -4, 2, -1, -5, -3],4),-5),31)),48)",
    "io_inp": [
      0,
      -4,
      2,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(sub_n(input,4),-5),31)),48)"
  },
  {
    "input": "input : list = [-1, 3, 5]\noutput : list = [15, 27, 33]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(sub_n([-1, 3, 5],-5)),1)),3)",
    "io_inp": [
      -1,
      3,
      5
    ],
    "io_out": [
      15,
      27,
      33
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(sub_n(input,-5)),1)),3)"
  },
  {
    "input": "input : list = [4, 2, 0, 3]\noutput : list = [-45, -36, -27, -9]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(mul_n([4, 2, 0, 3],-3)),3)),3)",
    "io_inp": [
      4,
      2,
      0,
      3
    ],
    "io_out": [
      -45,
      -36,
      -27,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(mul_n(input,-3)),3)),3)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [3, 4]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(add_n([4, 5],-5),-1),3),-1),3)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(add_n(input,-5),-1),3),-1),3)"
  },
  {
    "input": "input : list = [1, 3, 3, 0, -5]\noutput : list = [2, 2, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(take([1, 3, 3, 0, -5],3)))),-1)",
    "io_inp": [
      1,
      3,
      3,
      0,
      -5
    ],
    "io_out": [
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(take(input,3)))),-1)"
  },
  {
    "input": "input : list = [-1, 4, -1]\noutput : list = [-4, -4, 1]",
    "output": "generated_output : list = add_n(add_n(sort_asc([-1, 4, -1]),-1),-2)",
    "io_inp": [
      -1,
      4,
      -1
    ],
    "io_out": [
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),-1),-2)"
  },
  {
    "input": "input : list = [2, -4, 5, -2, 3]\noutput : list = [5, -2, 3]",
    "output": "generated_output : list = drop([2, -4, 5, -2, 3],2)",
    "io_inp": [
      2,
      -4,
      5,
      -2,
      3
    ],
    "io_out": [
      5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [2, 9, 1]",
    "output": "generated_output : list = sub_n([-2, 5, -3],-4)",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      2,
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -4, -3]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(take([-1, -4, -3],1)),3)),4)",
    "io_inp": [
      -1,
      -4,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(take(input,1)),3)),4)"
  },
  {
    "input": "input : list = [-3, 4, -1, 4, 3, 5]\noutput : list = [1, 0, 0, -1, -5, -7]",
    "output": "generated_output : list = add_n(take(take(sort_des(sort_asc([-3, 4, -1, 4, 3, 5])),27),30),-4)",
    "io_inp": [
      -3,
      4,
      -1,
      4,
      3,
      5
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(sort_asc(input)),27),30),-4)"
  },
  {
    "input": "input : list = [2, 2, 3, 4, 1, 2]\noutput : list = [7, 7, 8, 9, 6, 7]",
    "output": "generated_output : list = add_n([2, 2, 3, 4, 1, 2],5)",
    "io_inp": [
      2,
      2,
      3,
      4,
      1,
      2
    ],
    "io_out": [
      7,
      7,
      8,
      9,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sub_n([-2, 3],1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, 3, 5, 1]\noutput : list = [-1, 2, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(add_n([-2, 3, 5, 1],-3),14))),4)",
    "io_inp": [
      -2,
      3,
      5,
      1
    ],
    "io_out": [
      -1,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(add_n(input,-3),14))),4)"
  },
  {
    "input": "input : list = [0, 5, 1, 0, 3, -3]\noutput : list = [12, 10, 8, 7, 7, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(reverse([0, 5, 1, 0, 3, -3]))),-4),-3)",
    "io_inp": [
      0,
      5,
      1,
      0,
      3,
      -3
    ],
    "io_out": [
      12,
      10,
      8,
      7,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(reverse(input))),-4),-3)"
  },
  {
    "input": "input : list = [-5, -5, -1, 1, 0, -5]\noutput : list = [-75, -75, -75, -15, 0, 15]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(mul_n([-5, -5, -1, 1, 0, -5],5)),3),24))",
    "io_inp": [
      -5,
      -5,
      -1,
      1,
      0,
      -5
    ],
    "io_out": [
      -75,
      -75,
      -75,
      -15,
      0,
      15
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(mul_n(input,5)),3),24))"
  },
  {
    "input": "input : list = [2, 4, 4, -2, -3]\noutput : list = [4, 4, 2, -2, -3]",
    "output": "generated_output : list = sort_des([2, 4, 4, -2, -3])",
    "io_inp": [
      2,
      4,
      4,
      -2,
      -3
    ],
    "io_out": [
      4,
      4,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, 4, -3, 4]\noutput : list = [-16]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(take([-2, -2, 4, -3, 4],1),2),4),3),-4)",
    "io_inp": [
      -2,
      -2,
      4,
      -3,
      4
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(take(input,1),2),4),3),-4)"
  },
  {
    "input": "input : list = [0, -5, -3, 1, -5]\noutput : list = [2, 1, -2, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(reverse([0, -5, -3, 1, -5]),4),-1)),4)",
    "io_inp": [
      0,
      -5,
      -3,
      1,
      -5
    ],
    "io_out": [
      2,
      1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(reverse(input),4),-1)),4)"
  },
  {
    "input": "input : list = [-3, -2, -2, 1, 4, 5]\noutput : list = [-100, -80, -20, 40, 40, 60]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(sort_asc([-3, -2, -2, 1, 4, 5]))),-5),4)",
    "io_inp": [
      -3,
      -2,
      -2,
      1,
      4,
      5
    ],
    "io_out": [
      -100,
      -80,
      -20,
      40,
      40,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(sort_asc(input))),-5),4)"
  },
  {
    "input": "input : list = [2, 0, 4, -4]\noutput : list = [-30, -10, 0, 10]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_asc([2, 0, 4, -4]),2)),5),10)",
    "io_inp": [
      2,
      0,
      4,
      -4
    ],
    "io_out": [
      -30,
      -10,
      0,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(sort_asc(input),2)),5),10)"
  },
  {
    "input": "input : list = [-2, 2, -3, -3, 3, 4]\noutput : list = [-1, 3, -2, -2, 4, 5]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(sub_n([-2, 2, -3, -3, 3, 4],2),1),-3)))",
    "io_inp": [
      -2,
      2,
      -3,
      -3,
      3,
      4
    ],
    "io_out": [
      -1,
      3,
      -2,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(sub_n(input,2),1),-3)))"
  },
  {
    "input": "input : list = [3, -2, -2, 4]\noutput : list = [15, 15, -60, -75]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n([3, -2, -2, 4],3))),-3),-5)",
    "io_inp": [
      3,
      -2,
      -2,
      4
    ],
    "io_out": [
      15,
      15,
      -60,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n(input,3))),-3),-5)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse([1, 5])",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [18, -2]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(sort_des([-5, 5]),14),4),2))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      18,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(sort_des(input),14),4),2))"
  },
  {
    "input": "input : list = [4, -3, -5, -5, 1, 0]\noutput : list = [-1, 1, 4, 5, 8]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n([4, -3, -5, -5, 1, 0],-3),1)),5))",
    "io_inp": [
      4,
      -3,
      -5,
      -5,
      1,
      0
    ],
    "io_out": [
      -1,
      1,
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n(input,-3),1)),5))"
  },
  {
    "input": "input : list = [-1, -2, -3]\noutput : list = [-27, -18, -9]",
    "output": "generated_output : list = reverse(mul_n(mul_n([-1, -2, -3],-3),-3))",
    "io_inp": [
      -1,
      -2,
      -3
    ],
    "io_out": [
      -27,
      -18,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,-3),-3))"
  },
  {
    "input": "input : list = [5, -1, 1, -3, 2, 2]\noutput : list = [-13, -3, 7, 12, 12, 27]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sort_asc([5, -1, 1, -3, 2, 2]),5))),2)",
    "io_inp": [
      5,
      -1,
      1,
      -3,
      2,
      2
    ],
    "io_out": [
      -13,
      -3,
      7,
      12,
      12,
      27
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sort_asc(input),5))),2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-4, -12]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sub_n([-3, -5],-2)),-1)),-4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sub_n(input,-2)),-1)),-4)"
  },
  {
    "input": "input : list = [4, -3, -2, -2, -1]\noutput : list = [5, 2, -16]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(take([4, -3, -2, -2, -1],3)),-3)),4)",
    "io_inp": [
      4,
      -3,
      -2,
      -2,
      -1
    ],
    "io_out": [
      5,
      2,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(take(input,3)),-3)),4)"
  },
  {
    "input": "input : list = [-5, 4, 2]\noutput : list = [6, 4, -3]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(sort_des([-5, 4, 2])),17),4),2)",
    "io_inp": [
      -5,
      4,
      2
    ],
    "io_out": [
      6,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(sort_des(input)),17),4),2)"
  },
  {
    "input": "input : list = [1, 2, 1, 4]\noutput : list = [-2, -1, -2, 1]",
    "output": "generated_output : list = add_n(sub_n([1, 2, 1, 4],2),-1)",
    "io_inp": [
      1,
      2,
      1,
      4
    ],
    "io_out": [
      -2,
      -1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-1)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [7, 2, -1]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(sort_asc([3, -2, -5]),4))),19)",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(sort_asc(input),4))),19)"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(add_n([2, -2, -4],5)),-5),36))",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(add_n(input,5)),-5),36))"
  },
  {
    "input": "input : list = [1, 4, 1, -3, 5, 2]\noutput : list = [-8, -20, 12]",
    "output": "generated_output : list = reverse(mul_n(take(drop([1, 4, 1, -3, 5, 2],3),6),-4))",
    "io_inp": [
      1,
      4,
      1,
      -3,
      5,
      2
    ],
    "io_out": [
      -8,
      -20,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(drop(input,3),6),-4))"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(sort_asc([4, 0, -4]),-1),28),20))",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(sort_asc(input),-1),28),20))"
  },
  {
    "input": "input : list = [4, -5, 0, -5, 0]\noutput : list = [-10, -10, -5, -5, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([4, -5, 0, -5, 0])),5)",
    "io_inp": [
      4,
      -5,
      0,
      -5,
      0
    ],
    "io_out": [
      -10,
      -10,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [-2, 2, 2]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(add_n([-2, 2, 2],-2)),2),1),5)",
    "io_inp": [
      -2,
      2,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(add_n(input,-2)),2),1),5)"
  },
  {
    "input": "input : list = [0, 5, -3, 0]\noutput : list = [34, 19, 19, -6]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(sort_asc([0, 5, -3, 0]),-4),29),-5),1)",
    "io_inp": [
      0,
      5,
      -3,
      0
    ],
    "io_out": [
      34,
      19,
      19,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(sort_asc(input),-4),29),-5),1)"
  },
  {
    "input": "input : list = [1, 4, 3, 5, -3, 5]\noutput : list = [4, 7, 6, 8, 0, 8]",
    "output": "generated_output : list = sub_n(mul_n([1, 4, 3, 5, -3, 5],1),-3)",
    "io_inp": [
      1,
      4,
      3,
      5,
      -3,
      5
    ],
    "io_out": [
      4,
      7,
      6,
      8,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-3)"
  },
  {
    "input": "input : list = [-5, 3, 4, 4, 2]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(drop([-5, 3, 4, 4, 2],2)),1),39))",
    "io_inp": [
      -5,
      3,
      4,
      4,
      2
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(drop(input,2)),1),39))"
  },
  {
    "input": "input : list = [-1, -3, 1, 3, 3, 2]\noutput : list = [7, 8]",
    "output": "generated_output : list = sub_n(reverse(take(take(drop([-1, -3, 1, 3, 3, 2],4),24),17)),-5)",
    "io_inp": [
      -1,
      -3,
      1,
      3,
      3,
      2
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(drop(input,4),24),17)),-5)"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [-10, -40, -50]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(sub_n([5, 3, -3],-5)),-5)))",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      -10,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(sub_n(input,-5)),-5)))"
  },
  {
    "input": "input : list = [-2, -3, 2, 0]\noutput : list = [2, 0, -2, -3]",
    "output": "generated_output : list = sort_des([-2, -3, 2, 0])",
    "io_inp": [
      -2,
      -3,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(reverse([-1, 0]))),2),27)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(reverse(input))),2),27)"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [-10]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des([2, -2, 5]),-2),1)))",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des(input),-2),1)))"
  },
  {
    "input": "input : list = [-3, 0, -5, -4, -2]\noutput : list = [0, 1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(reverse([-3, 0, -5, -4, -2]),-5))))",
    "io_inp": [
      -3,
      0,
      -5,
      -4,
      -2
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [-3, 5, 4, -4]\noutput : list = [-4, 4, 3, -5]",
    "output": "generated_output : list = take(add_n([-3, 5, 4, -4],-1),14)",
    "io_inp": [
      -3,
      5,
      4,
      -4
    ],
    "io_out": [
      -4,
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),14)"
  },
  {
    "input": "input : list = [-5, 1, 1, 4, 1]\noutput : list = [20, 8]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(drop([-5, 1, 1, 4, 1],3),-3)),-3),-4)",
    "io_inp": [
      -5,
      1,
      1,
      4,
      1
    ],
    "io_out": [
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(drop(input,3),-3)),-3),-4)"
  },
  {
    "input": "input : list = [4, 5, 0, -4]\noutput : list = [5, 0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(drop([4, 5, 0, -4],1)))",
    "io_inp": [
      4,
      5,
      0,
      -4
    ],
    "io_out": [
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n(sub_n(reverse([3, -1]),4),-2)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),4),-2)"
  },
  {
    "input": "input : list = [1, -5, 3, 2]\noutput : list = [9, 8, 7, 1]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n([1, -5, 3, 2],1),2)),3)",
    "io_inp": [
      1,
      -5,
      3,
      2
    ],
    "io_out": [
      9,
      8,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(input,1),2)),3)"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = drop([-3, -5, -3],1)",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [60, 60, -68]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(mul_n([4, 4, -4],4))),1),4)",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      60,
      60,
      -68
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(mul_n(input,4))),1),4)"
  },
  {
    "input": "input : list = [-5, -4, -4, -4]\noutput : list = [-25, -20, -20, -20]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(reverse([-5, -4, -4, -4])),-5),-1),19)",
    "io_inp": [
      -5,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -25,
      -20,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(reverse(input)),-5),-1),19)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, -1, 0, 3, -3]\noutput : list = [-5, 1, 0, -3, 3]",
    "output": "generated_output : list = add_n(mul_n(sub_n(drop([5, 5, -1, 0, 3, -3],1),-5),-1),5)",
    "io_inp": [
      5,
      5,
      -1,
      0,
      3,
      -3
    ],
    "io_out": [
      -5,
      1,
      0,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(drop(input,1),-5),-1),5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(add_n([-4, -2],-2)),1),2),4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(add_n(input,-2)),1),2),4)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [1, -2, 2]",
    "output": "generated_output : list = reverse(reverse(take(take(reverse([2, -2, 1]),15),5)))",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(reverse(input),15),5)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [1, -5]",
    "output": "generated_output : list = sub_n([2, -4],1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, 3, 1, 4, 1]\noutput : list = [1, 3, 1]",
    "output": "generated_output : list = take([1, 3, 1, 4, 1],3)",
    "io_inp": [
      1,
      3,
      1,
      4,
      1
    ],
    "io_out": [
      1,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, -3, -1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(sort_asc([0, -3, -1, -2]),1)),-2))",
    "io_inp": [
      0,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(sort_asc(input),1)),-2))"
  },
  {
    "input": "input : list = [-4, -5, 5, -3, -1, -4]\noutput : list = [-3, -6, 24, 0, 6, -3]",
    "output": "generated_output : list = mul_n(sub_n([-4, -5, 5, -3, -1, -4],-3),3)",
    "io_inp": [
      -4,
      -5,
      5,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -6,
      24,
      0,
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),3)"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [1, -4, -6]",
    "output": "generated_output : list = sort_des(add_n([0, 5, -2],-4))",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [-1, -4, -3, -2, -2]\noutput : list = [2, 8, 6, 4, 4]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(mul_n([-1, -4, -3, -2, -2],-2)),1)),15)",
    "io_inp": [
      -1,
      -4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      2,
      8,
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(mul_n(input,-2)),1)),15)"
  },
  {
    "input": "input : list = [-2, -5, -5, 2, 3]\noutput : list = [-4, -10, -10, 4, 6]",
    "output": "generated_output : list = mul_n([-2, -5, -5, 2, 3],2)",
    "io_inp": [
      -2,
      -5,
      -5,
      2,
      3
    ],
    "io_out": [
      -4,
      -10,
      -10,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, 3, 4, 5, -5, -4]\noutput : list = [-22, -18, -14, 2, 14, 18]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(reverse([-1, 3, 4, 5, -5, -4]),-4)),-2),11)",
    "io_inp": [
      -1,
      3,
      4,
      5,
      -5,
      -4
    ],
    "io_out": [
      -22,
      -18,
      -14,
      2,
      14,
      18
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(reverse(input),-4)),-2),11)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [-5, 2, 4]",
    "output": "generated_output : list = sort_asc([4, 2, -5])",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, -3]\noutput : list = [-6, -4, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([-1, 1, -3])),3)",
    "io_inp": [
      -1,
      1,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),3)"
  },
  {
    "input": "input : list = [-3, 2, 2, 4]\noutput : list = [9, 7, 7, 2]",
    "output": "generated_output : list = sort_des(sub_n([-3, 2, 2, 4],-5))",
    "io_inp": [
      -3,
      2,
      2,
      4
    ],
    "io_out": [
      9,
      7,
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n(reverse([0, 4]),-3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-2, 3, -5, 0, 1]\noutput : list = [8, 6, 5, 3, 0]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc(sort_asc([-2, 3, -5, 0, 1]))),5))",
    "io_inp": [
      -2,
      3,
      -5,
      0,
      1
    ],
    "io_out": [
      8,
      6,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-24, -9]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(reverse([-1, 2]),2),22),-5),4)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -24,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(reverse(input),2),22),-5),4)"
  },
  {
    "input": "input : list = [-3, -2, 5, -3, -2]\noutput : list = [-2, 5, -3, -2]",
    "output": "generated_output : list = drop([-3, -2, 5, -3, -2],1)",
    "io_inp": [
      -3,
      -2,
      5,
      -3,
      -2
    ],
    "io_out": [
      -2,
      5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 0, -2, 2, -1, 4]\noutput : list = [8, 8, 6, 10]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(take([0, 0, -2, 2, -1, 4],4),24),2),-3),3)",
    "io_inp": [
      0,
      0,
      -2,
      2,
      -1,
      4
    ],
    "io_out": [
      8,
      8,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(take(input,4),24),2),-3),3)"
  },
  {
    "input": "input : list = [0, 5, -2, -4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = drop([0, 5, -2, -4, -5],3)",
    "io_inp": [
      0,
      5,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, -3, -3]\noutput : list = [-8, -12, -12]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(mul_n([-2, -3, -3],4)))))",
    "io_inp": [
      -2,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [1, 0, -5, 0, 0, 2]\noutput : list = [-40, -20, 0, 0, 0, 100]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(mul_n([1, 0, -5, 0, 0, 2],-4),-1),-5),18))",
    "io_inp": [
      1,
      0,
      -5,
      0,
      0,
      2
    ],
    "io_out": [
      -40,
      -20,
      0,
      0,
      0,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(mul_n(input,-4),-1),-5),18))"
  },
  {
    "input": "input : list = [0, 1, 3, 3, -4, -4]\noutput : list = [-45, -45, -15, 0, 60, 60]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(mul_n([0, 1, 3, 3, -4, -4],3))),34),-5)",
    "io_inp": [
      0,
      1,
      3,
      3,
      -4,
      -4
    ],
    "io_out": [
      -45,
      -45,
      -15,
      0,
      60,
      60
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(mul_n(input,3))),34),-5)"
  },
  {
    "input": "input : list = [0, -4, 1, 5, 1]\noutput : list = [1, 5, 1]",
    "output": "generated_output : list = take(drop([0, -4, 1, 5, 1],2),7)",
    "io_inp": [
      0,
      -4,
      1,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,2),7)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(reverse([4, 0]))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, 4, -2, -2]\noutput : list = [2, 2, -4, -3]",
    "output": "generated_output : list = mul_n(reverse([3, 4, -2, -2]),-1)",
    "io_inp": [
      3,
      4,
      -2,
      -2
    ],
    "io_out": [
      2,
      2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [3, 0, 2, -3, 2]\noutput : list = [5, -10, -20, -20, -25]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(reverse([3, 0, 2, -3, 2]))),2),-5)",
    "io_inp": [
      3,
      0,
      2,
      -3,
      2
    ],
    "io_out": [
      5,
      -10,
      -20,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(reverse(input))),2),-5)"
  },
  {
    "input": "input : list = [2, -2, -2, -3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(take([2, -2, -2, -3, 5],2),24)),-2),-1)",
    "io_inp": [
      2,
      -2,
      -2,
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(take(input,2),24)),-2),-1)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(sort_asc([-3, -2]),-4),-3),10),4)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(sort_asc(input),-4),-3),10),4)"
  },
  {
    "input": "input : list = [4, 1, -4, 2, 1]\noutput : list = [4, 2, 1, 1, -4]",
    "output": "generated_output : list = sub_n(take(take(sort_des(sub_n([4, 1, -4, 2, 1],1)),9),23),-1)",
    "io_inp": [
      4,
      1,
      -4,
      2,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(sub_n(input,1)),9),23),-1)"
  },
  {
    "input": "input : list = [-4, -4, 0, 2]\noutput : list = [-10, -6, 2, 2]",
    "output": "generated_output : list = mul_n(add_n(reverse([-4, -4, 0, 2]),3),-2)",
    "io_inp": [
      -4,
      -4,
      0,
      2
    ],
    "io_out": [
      -10,
      -6,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),3),-2)"
  },
  {
    "input": "input : list = [3, 1, -4, -3, 2]\noutput : list = [3, 2, 1, -3, -4]",
    "output": "generated_output : list = take(sort_des([3, 1, -4, -3, 2]),11)",
    "io_inp": [
      3,
      1,
      -4,
      -3,
      2
    ],
    "io_out": [
      3,
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),11)"
  },
  {
    "input": "input : list = [5, -3, 1, 3, -2, -4]\noutput : list = [16, 8, -12, -4, 12, -20]",
    "output": "generated_output : list = mul_n(take(reverse([5, -3, 1, 3, -2, -4]),27),-4)",
    "io_inp": [
      5,
      -3,
      1,
      3,
      -2,
      -4
    ],
    "io_out": [
      16,
      8,
      -12,
      -4,
      12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),27),-4)"
  },
  {
    "input": "input : list = [5, 3, 5, -4]\noutput : list = [-14, 0, 4, 4]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(sub_n([5, 3, 5, -4],1))),-2),2)",
    "io_inp": [
      5,
      3,
      5,
      -4
    ],
    "io_out": [
      -14,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(sub_n(input,1))),-2),2)"
  },
  {
    "input": "input : list = [2, -2, 2, 5, 4, 4]\noutput : list = [-12, -4, -12, -18, -16, -16]",
    "output": "generated_output : list = mul_n(sub_n([2, -2, 2, 5, 4, 4],-4),-2)",
    "io_inp": [
      2,
      -2,
      2,
      5,
      4,
      4
    ],
    "io_out": [
      -12,
      -4,
      -12,
      -18,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),-2)"
  },
  {
    "input": "input : list = [-3, 4, 1, 3]\noutput : list = [-3, 1, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(reverse(add_n([-3, 4, 1, 3],-4)))),4)",
    "io_inp": [
      -3,
      4,
      1,
      3
    ],
    "io_out": [
      -3,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(reverse(add_n(input,-4)))),4)"
  },
  {
    "input": "input : list = [-1, 5, 2, 5, 4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = drop([-1, 5, 2, 5, 4, 3],4)",
    "io_inp": [
      -1,
      5,
      2,
      5,
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [5, 2, -5]\noutput : list = [6, -1]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(drop([5, 2, -5],1),2),-3),10),-5)",
    "io_inp": [
      5,
      2,
      -5
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(drop(input,1),2),-3),10),-5)"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [3, 5, 6]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([2, -1, 1],4)),1)",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,4)),1)"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sort_des(drop(drop([5, 4, -2],1),1)))",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(drop(input,1),1)))"
  },
  {
    "input": "input : list = [2, 5, 0, 5]\noutput : list = [50, 50, 20, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_asc([2, 5, 0, 5]))),2),5)",
    "io_inp": [
      2,
      5,
      0,
      5
    ],
    "io_out": [
      50,
      50,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_asc(input))),2),5)"
  },
  {
    "input": "input : list = [-4, 2, -3, -1, -5, -3]\noutput : list = [-5, -4, -3, -3, -1, 2]",
    "output": "generated_output : list = sort_asc([-4, 2, -3, -1, -5, -3])",
    "io_inp": [
      -4,
      2,
      -3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4, 4, -5]\noutput : list = [16, -8, -16, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc([-2, -4, 4, -5]),4)))",
    "io_inp": [
      -2,
      -4,
      4,
      -5
    ],
    "io_out": [
      16,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [0, -5, 5, -1, -5]\noutput : list = [-5, -1, 5, -5, 0]",
    "output": "generated_output : list = reverse([0, -5, 5, -1, -5])",
    "io_inp": [
      0,
      -5,
      5,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [-7, -17, -11]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n([-4, 1, -2],-5),-2),-5),35)",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      -7,
      -17,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(input,-5),-2),-5),35)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(sort_des([-2, -5])))))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, -3, -1, -2]\noutput : list = [1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sub_n([-1, -3, -1, -2],1),5)),8))",
    "io_inp": [
      -1,
      -3,
      -1,
      -2
    ],
    "io_out": [
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sub_n(input,1),5)),8))"
  },
  {
    "input": "input : list = [3, -2, -4, -2, -4, -3]\noutput : list = [0, 2, 7]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(take([3, -2, -4, -2, -4, -3],3)),-2),-1),-1)",
    "io_inp": [
      3,
      -2,
      -4,
      -2,
      -4,
      -3
    ],
    "io_out": [
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(take(input,3)),-2),-1),-1)"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [23, 15, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(mul_n([2, -4, 4],4),3),4)))",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      23,
      15,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(mul_n(input,4),3),4)))"
  },
  {
    "input": "input : list = [1, -2, -2, -1, -4, 3]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take([1, -2, -2, -1, -4, 3],1),-5)",
    "io_inp": [
      1,
      -2,
      -2,
      -1,
      -4,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = sort_des(take(take(take(reverse([2, -5]),6),14),17))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(reverse(input),6),14),17))"
  },
  {
    "input": "input : list = [4, -3, 1, -4]\noutput : list = [-4, 1, -3, 4]",
    "output": "generated_output : list = reverse([4, -3, 1, -4])",
    "io_inp": [
      4,
      -3,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, 5, -1, 0, -2]\noutput : list = [8, 0, 9, 3, 4, 2]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n([4, -4, 5, -1, 0, -2],1),25),-4),-1)",
    "io_inp": [
      4,
      -4,
      5,
      -1,
      0,
      -2
    ],
    "io_out": [
      8,
      0,
      9,
      3,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(input,1),25),-4),-1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [6, 1]",
    "output": "generated_output : list = take(mul_n(add_n(take(sub_n([0, 5],2),4),-4),-1),38)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(sub_n(input,2),4),-4),-1),38)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = reverse([4, -4])",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(take([-3, -2, -1],1),2)",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),2)"
  },
  {
    "input": "input : list = [4, -5, -1, -4]\noutput : list = [-10, -9, -6, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([4, -5, -1, -4]),4),1)",
    "io_inp": [
      4,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),4),1)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [8, 6, 0]",
    "output": "generated_output : list = mul_n(sub_n([-3, -2, 1],1),-2)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      8,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-2)"
  },
  {
    "input": "input : list = [2, 3, 4]\noutput : list = [12, 16, 20]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sort_des([2, 3, 4])),1),3),4)",
    "io_inp": [
      2,
      3,
      4
    ],
    "io_out": [
      12,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sort_des(input)),1),3),4)"
  },
  {
    "input": "input : list = [-3, -1, 2, 3, 0, 0]\noutput : list = [-1, 2, 3, 0, 0]",
    "output": "generated_output : list = take(drop([-3, -1, 2, 3, 0, 0],1),6)",
    "io_inp": [
      -3,
      -1,
      2,
      3,
      0,
      0
    ],
    "io_out": [
      -1,
      2,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(drop(input,1),6)"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [8, 7, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(reverse([3, 4, 0]))),-4))",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      8,
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-3, 1, -4, 5, -2]\noutput : list = [-2, 5, -4, 1, -3]",
    "output": "generated_output : list = reverse([-3, 1, -4, 5, -2])",
    "io_inp": [
      -3,
      1,
      -4,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      -4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, 0]\noutput : list = [-12, -16, -24]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(sub_n([2, -1, 0],-4))),-4))",
    "io_inp": [
      2,
      -1,
      0
    ],
    "io_out": [
      -12,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(sub_n(input,-4))),-4))"
  },
  {
    "input": "input : list = [4, -1, -4, 4, -5, 5]\noutput : list = [88, -62, 73, -47, -2, 73]",
    "output": "generated_output : list = add_n(mul_n(sub_n(reverse(mul_n([4, -1, -4, 4, -5, 5],3)),-2),5),3)",
    "io_inp": [
      4,
      -1,
      -4,
      4,
      -5,
      5
    ],
    "io_out": [
      88,
      -62,
      73,
      -47,
      -2,
      73
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(reverse(mul_n(input,3)),-2),5),3)"
  },
  {
    "input": "input : list = [1, -4, 2]\noutput : list = [-4, -28]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(drop([1, -4, 2],1),-1),-3)),-4)",
    "io_inp": [
      1,
      -4,
      2
    ],
    "io_out": [
      -4,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(drop(input,1),-1),-3)),-4)"
  },
  {
    "input": "input : list = [1, -3, -2, -1, 0, -3]\noutput : list = [-2, -1, 0, -3]",
    "output": "generated_output : list = drop([1, -3, -2, -1, 0, -3],2)",
    "io_inp": [
      1,
      -3,
      -2,
      -1,
      0,
      -3
    ],
    "io_out": [
      -2,
      -1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_asc([4, 0, 1])),6)),15)",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_asc(input)),6)),15)"
  },
  {
    "input": "input : list = [4, 0, 3, 5, -2]\noutput : list = [20, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(take([4, 0, 3, 5, -2],2)),5),22))",
    "io_inp": [
      4,
      0,
      3,
      5,
      -2
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(take(input,2)),5),22))"
  },
  {
    "input": "input : list = [4, 2, 1, 3, -2]\noutput : list = [-5, -1, 3, 7, 19]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(add_n([4, 2, 1, 3, -2],-4)),-4),5))",
    "io_inp": [
      4,
      2,
      1,
      3,
      -2
    ],
    "io_out": [
      -5,
      -1,
      3,
      7,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(add_n(input,-4)),-4),5))"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [-7, -4, -7]",
    "output": "generated_output : list = add_n(sub_n([-3, 0, -3],1),-3)",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      -7,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),-3)"
  },
  {
    "input": "input : list = [5, -2, -3, -5, -1]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(drop([5, -2, -3, -5, -1],2),2),-4)),5)",
    "io_inp": [
      5,
      -2,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(drop(input,2),2),-4)),5)"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [-15, -15, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(mul_n([2, -3, 2],-5)),5)))",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      -15,
      -15,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(mul_n(input,-5)),5)))"
  },
  {
    "input": "input : list = [0, -5, 0, -2, -4]\noutput : list = [19, 24, 34, 44, 44]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(add_n([0, -5, 0, -2, -4],5)),-4),5),1)",
    "io_inp": [
      0,
      -5,
      0,
      -2,
      -4
    ],
    "io_out": [
      19,
      24,
      34,
      44,
      44
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(add_n(input,5)),-4),5),1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(add_n([-1, -5],1)),-1),4),1)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(add_n(input,1)),-1),4),1)"
  },
  {
    "input": "input : list = [1, -3, 2, -5]\noutput : list = [4, -12, 8, -20]",
    "output": "generated_output : list = mul_n([1, -3, 2, -5],4)",
    "io_inp": [
      1,
      -3,
      2,
      -5
    ],
    "io_out": [
      4,
      -12,
      8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 4, 5]\noutput : list = [10, -8, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([-5, 4, 5],-2)))",
    "io_inp": [
      -5,
      4,
      5
    ],
    "io_out": [
      10,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-4, 2, 2, -2, -5]\noutput : list = [7, 7, 3, 1]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(sort_asc([-4, 2, 2, -2, -5])),-2),4),-3)",
    "io_inp": [
      -4,
      2,
      2,
      -2,
      -5
    ],
    "io_out": [
      7,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(sort_asc(input)),-2),4),-3)"
  },
  {
    "input": "input : list = [1, 3, 0, -1, -2]\noutput : list = [7, 8, 9, 10, 12]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n([1, 3, 0, -1, -2],4)),-5)),51)",
    "io_inp": [
      1,
      3,
      0,
      -1,
      -2
    ],
    "io_out": [
      7,
      8,
      9,
      10,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n(input,4)),-5)),51)"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [5, 0, 2]",
    "output": "generated_output : list = add_n(reverse([1, -1, 4]),1)",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      5,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [3, -3, 2, 5, 3, 3]\noutput : list = [-6, -6, -8, -5, 0, -6]",
    "output": "generated_output : list = reverse(add_n(take(take(mul_n([3, -3, 2, 5, 3, 3],-1),25),25),-3))",
    "io_inp": [
      3,
      -3,
      2,
      5,
      3,
      3
    ],
    "io_out": [
      -6,
      -6,
      -8,
      -5,
      0,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(mul_n(input,-1),25),25),-3))"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [-13, -11, -7]",
    "output": "generated_output : list = sub_n(sub_n([-5, -3, 1],3),5)",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      -13,
      -11,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),5)"
  },
  {
    "input": "input : list = [4, -5, 5, 1]\noutput : list = [12, 9, 0, -18]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(mul_n([4, -5, 5, 1],3),-5)),2))",
    "io_inp": [
      4,
      -5,
      5,
      1
    ],
    "io_out": [
      12,
      9,
      0,
      -18
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(mul_n(input,3),-5)),2))"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [-2, -17, -22]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(reverse([-4, -1, -5]),5)),-3),16)",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -17,
      -22
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(reverse(input),5)),-3),16)"
  },
  {
    "input": "input : list = [1, -2, 5, 4, -2]\noutput : list = [3, 3, 6, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(reverse([1, -2, 5, 4, -2]),-5))))",
    "io_inp": [
      1,
      -2,
      5,
      4,
      -2
    ],
    "io_out": [
      3,
      3,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [36, 39]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(sub_n([4, 5],-4),4),3)),42)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      36,
      39
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(sub_n(input,-4),4),3)),42)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [15, 10]",
    "output": "generated_output : list = sort_des(reverse(mul_n([-3, -2],-5)))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [10, 12, 0]",
    "output": "generated_output : list = take(take(reverse(mul_n(add_n([3, -3, -2],-3),-2)),19),23)",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      10,
      12,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(add_n(input,-3),-2)),19),23)"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [0, 10, 25]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(sort_des([-2, -5, 0]),-5)),38))",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      0,
      10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(sort_des(input),-5)),38))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0]",
    "output": "generated_output : list = drop(mul_n(reverse([0, 5]),-2),1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(input),-2),1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [6, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(add_n([0, 3],-2)))),-3)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(add_n(input,-2)))),-3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [0, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc([-1, 5]),-2),3)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),-2),3)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(sort_des([-4, 1]),-2))))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [48, -36]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des(sort_des([3, -4])),-4)),3)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      48,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(sort_des(input)),-4)),3)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = sub_n([-2, 0, 1],3)",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [0, -6]",
    "output": "generated_output : list = mul_n(reverse(add_n([1, 4],-4)),2)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-4)),2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [12, 18]",
    "output": "generated_output : list = mul_n(add_n([0, 2],4),3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      12,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),3)"
  },
  {
    "input": "input : list = [1, 4, 1, -5, 3]\noutput : list = [-3, -11]",
    "output": "generated_output : list = add_n(sort_des(sort_des(add_n(drop([1, 4, 1, -5, 3],3),-2))),-4)",
    "io_inp": [
      1,
      4,
      1,
      -5,
      3
    ],
    "io_out": [
      -3,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(add_n(drop(input,3),-2))),-4)"
  },
  {
    "input": "input : list = [4, 2, -4, 2, 3, 3]\noutput : list = [0, 6, 6, 7, 7, 8]",
    "output": "generated_output : list = add_n(take(sort_asc(take(sort_asc([4, 2, -4, 2, 3, 3]),10)),32),4)",
    "io_inp": [
      4,
      2,
      -4,
      2,
      3,
      3
    ],
    "io_out": [
      0,
      6,
      6,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(sort_asc(input),10)),32),4)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [-1, 5, 9]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sub_n([5, 1, -5],-4)),16),3))",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      -1,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sub_n(input,-4)),16),3))"
  },
  {
    "input": "input : list = [-3, 3, -4, 2, -4, 0]\noutput : list = [-1, -3, -7, -7]",
    "output": "generated_output : list = reverse(take(sort_asc(add_n(drop([-3, 3, -4, 2, -4, 0],2),-3)),47))",
    "io_inp": [
      -3,
      3,
      -4,
      2,
      -4,
      0
    ],
    "io_out": [
      -1,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(add_n(drop(input,2),-3)),47))"
  },
  {
    "input": "input : list = [1, -4, -5, -5, 0, 1]\noutput : list = [-72, -72, -56, 8, 24, 24]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_des([1, -4, -5, -5, 0, 1]),4),-2)),4)",
    "io_inp": [
      1,
      -4,
      -5,
      -5,
      0,
      1
    ],
    "io_out": [
      -72,
      -72,
      -56,
      8,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_des(input),4),-2)),4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [0, 28]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sub_n([3, -4],3))),-2),2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      0,
      28
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sub_n(input,3))),-2),2)"
  },
  {
    "input": "input : list = [2, 2, 5, 3, 1]\noutput : list = [1, 2, 2, 3, 5]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc([2, 2, 5, 3, 1]),10)),38)",
    "io_inp": [
      2,
      2,
      5,
      3,
      1
    ],
    "io_out": [
      1,
      2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(input),10)),38)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(sub_n([-4, 1],1),12))))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(sub_n(input,1),12))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [100, -100]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(sort_asc([-4, 4]),5)),-5))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      100,
      -100
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(sort_asc(input),5)),-5))"
  },
  {
    "input": "input : list = [-4, 4, 4, 3, 3, -4]\noutput : list = [-6, -6, 22, 22, 26, 26]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(mul_n([-4, 4, 4, 3, 3, -4],-2),5),-2)),52)",
    "io_inp": [
      -4,
      4,
      4,
      3,
      3,
      -4
    ],
    "io_out": [
      -6,
      -6,
      22,
      22,
      26,
      26
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(mul_n(input,-2),5),-2)),52)"
  },
  {
    "input": "input : list = [-1, 3, 5]\noutput : list = [0, 2]",
    "output": "generated_output : list = add_n(drop([-1, 3, 5],1),-3)",
    "io_inp": [
      -1,
      3,
      5
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [3, -2, -3, 4]\noutput : list = [0, -2, 12]",
    "output": "generated_output : list = take(take(add_n(mul_n(drop([3, -2, -3, 4],1),2),4),32),25)",
    "io_inp": [
      3,
      -2,
      -3,
      4
    ],
    "io_out": [
      0,
      -2,
      12
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(drop(input,1),2),4),32),25)"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [-8, 1, 1]",
    "output": "generated_output : list = sub_n([-4, 5, 5],4)",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      -8,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [5, 3, 3, -4]\noutput : list = [-17, 11, 11, 19]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(mul_n([5, 3, 3, -4],4))),-1))",
    "io_inp": [
      5,
      3,
      3,
      -4
    ],
    "io_out": [
      -17,
      11,
      11,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(mul_n(input,4))),-1))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 120]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(mul_n([2, 0],-5),3),2),-2))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      120
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(mul_n(input,-5),3),2),-2))"
  },
  {
    "input": "input : list = [-2, -2, 2, -5]\noutput : list = [-9, -2, -6, -6]",
    "output": "generated_output : list = sub_n(reverse([-2, -2, 2, -5]),4)",
    "io_inp": [
      -2,
      -2,
      2,
      -5
    ],
    "io_out": [
      -9,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, -1, 0, -4, 4, -5]\noutput : list = [0, -4, -5, -6, -8, -9]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-2, -1, 0, -4, 4, -5],-5),-1))",
    "io_inp": [
      -2,
      -1,
      0,
      -4,
      4,
      -5
    ],
    "io_out": [
      0,
      -4,
      -5,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-5),-1))"
  },
  {
    "input": "input : list = [-5, -4, -2, 4, -3, 3]\noutput : list = [-27, -24, -21, -18, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(add_n([-5, -4, -2, 4, -3, 3],-1),3),3)))",
    "io_inp": [
      -5,
      -4,
      -2,
      4,
      -3,
      3
    ],
    "io_out": [
      -27,
      -24,
      -21,
      -18,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(add_n(input,-1),3),3)))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -12]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_des([-2, -4]),5),-4))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_des(input),5),-4))"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = sort_des([1, 3, -3])",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5, 0, 0]\noutput : list = [0, -1, 4, 4]",
    "output": "generated_output : list = add_n([-4, -5, 0, 0],4)",
    "io_inp": [
      -4,
      -5,
      0,
      0
    ],
    "io_out": [
      0,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, 1, 0, 1, -1, -1]\noutput : list = [4, 4, 0, -4, -4, -16]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des([-4, 1, 0, 1, -1, -1]),4)))",
    "io_inp": [
      -4,
      1,
      0,
      1,
      -1,
      -1
    ],
    "io_out": [
      4,
      4,
      0,
      -4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(input),4)))"
  },
  {
    "input": "input : list = [-5, -4, 1, -4, -5]\noutput : list = [-1, 0, 5, 0, -1]",
    "output": "generated_output : list = sub_n(reverse([-5, -4, 1, -4, -5]),-4)",
    "io_inp": [
      -5,
      -4,
      1,
      -4,
      -5
    ],
    "io_out": [
      -1,
      0,
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [5, 4, -2, -2, 3]\noutput : list = [42, 37, 7, 7, 32]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n(add_n([5, 4, -2, -2, 3],-1),-5),5),-5),2)",
    "io_inp": [
      5,
      4,
      -2,
      -2,
      3
    ],
    "io_out": [
      42,
      37,
      7,
      7,
      32
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(add_n(input,-1),-5),5),-5),2)"
  },
  {
    "input": "input : list = [4, 3, 5, 2, 4]\noutput : list = [5, 6, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take([4, 3, 5, 2, 4],3),2)))",
    "io_inp": [
      4,
      3,
      5,
      2,
      4
    ],
    "io_out": [
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(input,3),2)))"
  },
  {
    "input": "input : list = [2, -1, -4, -4, 3]\noutput : list = [1, 0, -3, -6, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(sub_n([2, -1, -4, -4, 3],-1),-2),1)))",
    "io_inp": [
      2,
      -1,
      -4,
      -4,
      3
    ],
    "io_out": [
      1,
      0,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(sub_n(input,-1),-2),1)))"
  },
  {
    "input": "input : list = [-1, 3, -4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(take([-1, 3, -4, 0],2),1)),-2))",
    "io_inp": [
      -1,
      3,
      -4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(take(input,2),1)),-2))"
  },
  {
    "input": "input : list = [2, 1, 0, -4, 0, 2]\noutput : list = [-4, 0, 0, 1, 2, 2]",
    "output": "generated_output : list = sort_asc(reverse([2, 1, 0, -4, 0, 2]))",
    "io_inp": [
      2,
      1,
      0,
      -4,
      0,
      2
    ],
    "io_out": [
      -4,
      0,
      0,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, -5, -5, -2, 5, 2]\noutput : list = [-6, -6, -3, 1, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n([5, -5, -5, -2, 5, 2],1)))",
    "io_inp": [
      5,
      -5,
      -5,
      -2,
      5,
      2
    ],
    "io_out": [
      -6,
      -6,
      -3,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,1)))"
  },
  {
    "input": "input : list = [3, -1, 4, 0, 4, 3]\noutput : list = [3, 4, 0, 4, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, 4, 0, 4, 3])",
    "io_inp": [
      3,
      -1,
      4,
      0,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      0,
      4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -3, 1, 1, 0, -2]\noutput : list = [-2, 0, 1, 1, -3]",
    "output": "generated_output : list = reverse(drop([1, -3, 1, 1, 0, -2],1))",
    "io_inp": [
      1,
      -3,
      1,
      1,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-3, 3, 4]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des([-3, 3, 4])),1))",
    "io_inp": [
      -3,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(input)),1))"
  },
  {
    "input": "input : list = [4, -5, -2, 4, -4]\noutput : list = [4, -5, -2, 4, -4]",
    "output": "generated_output : list = reverse(reverse([4, -5, -2, 4, -4]))",
    "io_inp": [
      4,
      -5,
      -2,
      4,
      -4
    ],
    "io_out": [
      4,
      -5,
      -2,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, -5, -2, -5, 4, 1]\noutput : list = [4, 3, 1]",
    "output": "generated_output : list = take(take(sort_des(drop(sort_asc([3, -5, -2, -5, 4, 1]),3)),16),53)",
    "io_inp": [
      3,
      -5,
      -2,
      -5,
      4,
      1
    ],
    "io_out": [
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(drop(sort_asc(input),3)),16),53)"
  },
  {
    "input": "input : list = [-1, 1, -3, -1, -1]\noutput : list = [1, -1, -1, -1, -3]",
    "output": "generated_output : list = sort_des([-1, 1, -3, -1, -1])",
    "io_inp": [
      -1,
      1,
      -3,
      -1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(sort_asc([-4, -5]),8)),3))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(sort_asc(input),8)),3))"
  },
  {
    "input": "input : list = [0, -5, 0, -3, -4]\noutput : list = [-4, -3, 0, -5, 0]",
    "output": "generated_output : list = reverse([0, -5, 0, -3, -4])",
    "io_inp": [
      0,
      -5,
      0,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(take([2, -3, -5],1)),25),-1))",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(take(input,1)),25),-1))"
  },
  {
    "input": "input : list = [2, 0, 0, -4, 0]\noutput : list = [-3, 1, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(drop([2, 0, 0, -4, 0],1),1))),-2)",
    "io_inp": [
      2,
      0,
      0,
      -4,
      0
    ],
    "io_out": [
      -3,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(drop(input,1),1))),-2)"
  },
  {
    "input": "input : list = [1, 0, -2, -4, 2]\noutput : list = [-40, -32, -24, -20, -16]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n([1, 0, -2, -4, 2],-4)),-2),4)",
    "io_inp": [
      1,
      0,
      -2,
      -4,
      2
    ],
    "io_out": [
      -40,
      -32,
      -24,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(input,-4)),-2),4)"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [-18, -14, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(sort_des([2, -3, -5]),-4)),2))",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      -18,
      -14,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(sort_des(input),-4)),2))"
  },
  {
    "input": "input : list = [2, 2, -2, -1, -4]\noutput : list = [-1, 2, 1, 5, 5]",
    "output": "generated_output : list = add_n(reverse([2, 2, -2, -1, -4]),3)",
    "io_inp": [
      2,
      2,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      2,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n([3, 0],-5)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, 5, 0, -1, -2, -1]\noutput : list = [8, 7, 8, 9, 14, 13]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(sub_n([4, 5, 0, -1, -2, -1],1),4)),3),-3)",
    "io_inp": [
      4,
      5,
      0,
      -1,
      -2,
      -1
    ],
    "io_out": [
      8,
      7,
      8,
      9,
      14,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(sub_n(input,1),4)),3),-3)"
  },
  {
    "input": "input : list = [-4, -3, -3, 0, -3]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = add_n(take([-4, -3, -3, 0, -3],3),3)",
    "io_inp": [
      -4,
      -3,
      -3,
      0,
      -3
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),3)"
  },
  {
    "input": "input : list = [-3, -1, 4, 2, -4]\noutput : list = [-4, -3, -1, 2, 4]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(sort_asc([-3, -1, 4, 2, -4]),-1))),-1)",
    "io_inp": [
      -3,
      -1,
      4,
      2,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(sort_asc(input),-1))),-1)"
  },
  {
    "input": "input : list = [3, 0, -1, 2]\noutput : list = [-4, -7, -8, -5]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(reverse([3, 0, -1, 2]),1),5),-3))",
    "io_inp": [
      3,
      0,
      -1,
      2
    ],
    "io_out": [
      -4,
      -7,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(reverse(input),1),5),-3))"
  },
  {
    "input": "input : list = [1, 1, 3, -2, -1, -1]\noutput : list = [-2, -2, -4, 6, 2, 2]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n([1, 1, 3, -2, -1, -1],-1)),-2),15)",
    "io_inp": [
      1,
      1,
      3,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -4,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(input,-1)),-2),15)"
  },
  {
    "input": "input : list = [-1, 0, -1, 1]\noutput : list = [5, 5, 3]",
    "output": "generated_output : list = take(add_n(sort_des(take(mul_n([-1, 0, -1, 1],-2),3)),3),23)",
    "io_inp": [
      -1,
      0,
      -1,
      1
    ],
    "io_out": [
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(mul_n(input,-2),3)),3),23)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(add_n([-2, -4],4),5))),40)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(add_n(input,4),5))),40)"
  },
  {
    "input": "input : list = [-5, 4, -1, -2, 4]\noutput : list = [-18, -15, 0, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(drop([-5, 4, -1, -2, 4],1)),4),23),3)",
    "io_inp": [
      -5,
      4,
      -1,
      -2,
      4
    ],
    "io_out": [
      -18,
      -15,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(drop(input,1)),4),23),3)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-20, -20]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(reverse([-4, -4]),5))))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [4, -1, 5, -1, -4, 1]\noutput : list = [-10, -9, -4, -4]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(take([4, -1, 5, -1, -4, 1],4),-5),12),-1))",
    "io_inp": [
      4,
      -1,
      5,
      -1,
      -4,
      1
    ],
    "io_out": [
      -10,
      -9,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(take(input,4),-5),12),-1))"
  },
  {
    "input": "input : list = [3, -5, -4, -1, 2, 5]\noutput : list = [-5, -4, -1, 2, 5]",
    "output": "generated_output : list = take(take(sub_n(sub_n(drop([3, -5, -4, -1, 2, 5],1),4),-4),31),24)",
    "io_inp": [
      3,
      -5,
      -4,
      -1,
      2,
      5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(drop(input,1),4),-4),31),24)"
  },
  {
    "input": "input : list = [-5, 0, -5, 0, 0, 5]\noutput : list = [-25, 0, -25, 0, 0, 25]",
    "output": "generated_output : list = mul_n([-5, 0, -5, 0, 0, 5],5)",
    "io_inp": [
      -5,
      0,
      -5,
      0,
      0,
      5
    ],
    "io_out": [
      -25,
      0,
      -25,
      0,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 3, 2, 1, 0, 0]\noutput : list = [-1, -2, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(take([3, 3, 2, 1, 0, 0],4),-1),4)))",
    "io_inp": [
      3,
      3,
      2,
      1,
      0,
      0
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(take(input,4),-1),4)))"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [2, 4, 0]",
    "output": "generated_output : list = reverse([0, 4, 2])",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -4, 5, -3]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -4, 5, -3],1)",
    "io_inp": [
      -5,
      -4,
      5,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 4, -1, -5]\noutput : list = [4, 2, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([2, 4, -1, -5])))",
    "io_inp": [
      2,
      4,
      -1,
      -5
    ],
    "io_out": [
      4,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [4, 5, 5]\noutput : list = [9]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(take([4, 5, 5],1))),-5))",
    "io_inp": [
      4,
      5,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(take(input,1))),-5))"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [5, -5, -30]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des(sort_asc([-4, 3, 1])),2),5),35)",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      5,
      -5,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(sort_asc(input)),2),5),35)"
  },
  {
    "input": "input : list = [5, 0, 2, 1, -4, 4]\noutput : list = [-4, 0, 1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(reverse([5, 0, 2, 1, -4, 4]))),21))",
    "io_inp": [
      5,
      0,
      2,
      1,
      -4,
      4
    ],
    "io_out": [
      -4,
      0,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(reverse(input))),21))"
  },
  {
    "input": "input : list = [4, -3, -4]\noutput : list = [-2, 0, 14]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n([4, -3, -4],3),2),-3),-3))",
    "io_inp": [
      4,
      -3,
      -4
    ],
    "io_out": [
      -2,
      0,
      14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n(input,3),2),-3),-3))"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [-5, 5, -4]",
    "output": "generated_output : list = reverse([-4, 5, -5])",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, 2, 2, -4, -4]\noutput : list = [-5, -10, -10]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(take([1, 2, 2, 2, -4, -4],3),-5)),39))",
    "io_inp": [
      1,
      2,
      2,
      2,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(take(input,3),-5)),39))"
  },
  {
    "input": "input : list = [-2, 2, -5, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 2, -5, -3],1)",
    "io_inp": [
      -2,
      2,
      -5,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 2, 0]\noutput : list = [-3, -23, -53]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(mul_n([5, 2, 0],2),-5)),34),-3)",
    "io_inp": [
      5,
      2,
      0
    ],
    "io_out": [
      -3,
      -23,
      -53
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(mul_n(input,2),-5)),34),-3)"
  },
  {
    "input": "input : list = [4, -5, -3, 3, 0, 2]\noutput : list = [12, -15, -9, 9, 0, 6]",
    "output": "generated_output : list = mul_n([4, -5, -3, 3, 0, 2],3)",
    "io_inp": [
      4,
      -5,
      -3,
      3,
      0,
      2
    ],
    "io_out": [
      12,
      -15,
      -9,
      9,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, 1, 2, -1, -3]\noutput : list = [-12, -4, 8, 4, 20]",
    "output": "generated_output : list = take(reverse(take(take(mul_n([5, 1, 2, -1, -3],4),7),22)),16)",
    "io_inp": [
      5,
      1,
      2,
      -1,
      -3
    ],
    "io_out": [
      -12,
      -4,
      8,
      4,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(mul_n(input,4),7),22)),16)"
  },
  {
    "input": "input : list = [3, 4, 5, 4]\noutput : list = [3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([3, 4, 5, 4])",
    "io_inp": [
      3,
      4,
      5,
      4
    ],
    "io_out": [
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, -5, 1]\noutput : list = [-8, -10, -11, -14]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(add_n([-2, -1, -5, 1],-4)),-2)),-3)",
    "io_inp": [
      -2,
      -1,
      -5,
      1
    ],
    "io_out": [
      -8,
      -10,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(add_n(input,-4)),-2)),-3)"
  },
  {
    "input": "input : list = [3, -4, -2, 0, -1, -4]\noutput : list = [-32, 52, 28, 4, 16, 52]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(mul_n([3, -4, -2, 0, -1, -4],4),-3),-4)))",
    "io_inp": [
      3,
      -4,
      -2,
      0,
      -1,
      -4
    ],
    "io_out": [
      -32,
      52,
      28,
      4,
      16,
      52
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(mul_n(input,4),-3),-4)))"
  },
  {
    "input": "input : list = [4, -5, -2, -1]\noutput : list = [-5, -2, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des([4, -5, -2, -1]))))",
    "io_inp": [
      4,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [0, 1, 3, -1, 1, 5]\noutput : list = [3, 4, 6, 2, 4, 8]",
    "output": "generated_output : list = add_n([0, 1, 3, -1, 1, 5],3)",
    "io_inp": [
      0,
      1,
      3,
      -1,
      1,
      5
    ],
    "io_out": [
      3,
      4,
      6,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc([5, -2]),1)),-1)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(input),1)),-1)"
  },
  {
    "input": "input : list = [5, -4, 0, 5]\noutput : list = [-20, -20, 0, 16]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(reverse([5, -4, 0, 5])),-4)))",
    "io_inp": [
      5,
      -4,
      0,
      5
    ],
    "io_out": [
      -20,
      -20,
      0,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [3, -4, 0, 0, -3, 3]\noutput : list = [-4, -3, 0, 0, 3, 3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc([3, -4, 0, 0, -3, 3]))),-5),-5)",
    "io_inp": [
      3,
      -4,
      0,
      0,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      0,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc(input))),-5),-5)"
  },
  {
    "input": "input : list = [3, -4, 1]\noutput : list = [1, -6, -1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(reverse([3, -4, 1]),-4),2),4))",
    "io_inp": [
      3,
      -4,
      1
    ],
    "io_out": [
      1,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(reverse(input),-4),2),4))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-4, -4],3)))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,3)))"
  },
  {
    "input": "input : list = [-1, 3, -4, 2]\noutput : list = [-5, -25, 10, -20]",
    "output": "generated_output : list = mul_n(take(add_n([-1, 3, -4, 2],2),14),-5)",
    "io_inp": [
      -1,
      3,
      -4,
      2
    ],
    "io_out": [
      -5,
      -25,
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,2),14),-5)"
  },
  {
    "input": "input : list = [-2, 3, 1]\noutput : list = [-1, -3, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-2, 3, 1])),4)",
    "io_inp": [
      -2,
      3,
      1
    ],
    "io_out": [
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-5, -4, -3, -5, 4, 0]\noutput : list = [-27, -27]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(mul_n([-5, -4, -3, -5, 4, 0],5)),2),2))",
    "io_inp": [
      -5,
      -4,
      -3,
      -5,
      4,
      0
    ],
    "io_out": [
      -27,
      -27
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(mul_n(input,5)),2),2))"
  },
  {
    "input": "input : list = [-5, 1, 1, -3, 5, 2]\noutput : list = [10, 7, 6, 2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(drop([-5, 1, 1, -3, 5, 2],2)),-5))",
    "io_inp": [
      -5,
      1,
      1,
      -3,
      5,
      2
    ],
    "io_out": [
      10,
      7,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(drop(input,2)),-5))"
  },
  {
    "input": "input : list = [2, -5, -4, 3, -2, -1]\noutput : list = [-5, -4, -2, -1, 2, 3]",
    "output": "generated_output : list = reverse(sort_des([2, -5, -4, 3, -2, -1]))",
    "io_inp": [
      2,
      -5,
      -4,
      3,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -5, 3, -5, -4, 2]\noutput : list = [5, 5, 5, 4, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(reverse([-5, -5, 3, -5, -4, 2])),-1)))",
    "io_inp": [
      -5,
      -5,
      3,
      -5,
      -4,
      2
    ],
    "io_out": [
      5,
      5,
      5,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-1, -4, -1, 2, 3]\noutput : list = [-4, -1, -1, 2, 3]",
    "output": "generated_output : list = sort_asc([-1, -4, -1, 2, 3])",
    "io_inp": [
      -1,
      -4,
      -1,
      2,
      3
    ],
    "io_out": [
      -4,
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, 1, 1, 3, -3]\noutput : list = [4, 2, 2, 0, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des([-1, -1, 1, 1, 3, -3]),-1)",
    "io_inp": [
      -1,
      -1,
      1,
      1,
      3,
      -3
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [0, 3, -5, -4, 5, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(take([0, 3, -5, -4, 5, 0],2)))))",
    "io_inp": [
      0,
      3,
      -5,
      -4,
      5,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(take(input,2)))))"
  },
  {
    "input": "input : list = [3, -2, 0, 2, -3, 2]\noutput : list = [-3, -2, 0, 2, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(sort_asc([3, -2, 0, 2, -3, 2])))))",
    "io_inp": [
      3,
      -2,
      0,
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      -2,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [5, 7]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(sub_n([2, 4],-5),-3),-3),3),-1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(sub_n(input,-5),-3),-3),3),-1)"
  },
  {
    "input": "input : list = [2, -3, -4, 0, 3]\noutput : list = [-4, -3, 0, 3]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(drop([2, -3, -4, 0, 3],1))),1))",
    "io_inp": [
      2,
      -3,
      -4,
      0,
      3
    ],
    "io_out": [
      -4,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(drop(input,1))),1))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(reverse(sort_asc([1, -4])))),-3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(reverse(sort_asc(input)))),-3)"
  },
  {
    "input": "input : list = [-1, 4, -2, 5]\noutput : list = [2, 7, 1, 8]",
    "output": "generated_output : list = take(add_n([-1, 4, -2, 5],3),6)",
    "io_inp": [
      -1,
      4,
      -2,
      5
    ],
    "io_out": [
      2,
      7,
      1,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(input,3),6)"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [1, 0, 1]",
    "output": "generated_output : list = add_n(reverse([-3, -4, -3]),4)",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      1,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-1, 1, -2]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sub_n([-1, 1, -2],-2)))))",
    "io_inp": [
      -1,
      1,
      -2
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [0, 5, -4, -2, -1, -5]\noutput : list = [10, 5, 1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(take([0, 5, -4, -2, -1, -5],3),1),-4)))",
    "io_inp": [
      0,
      5,
      -4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      10,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(take(input,3),1),-4)))"
  },
  {
    "input": "input : list = [-4, 5, -4, -1, 2]\noutput : list = [3, 3, 6, 9, 12]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sub_n(sub_n([-4, 5, -4, -1, 2],-4),-1),-2)))",
    "io_inp": [
      -4,
      5,
      -4,
      -1,
      2
    ],
    "io_out": [
      3,
      3,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sub_n(sub_n(input,-4),-1),-2)))"
  },
  {
    "input": "input : list = [-2, 0, 2]\noutput : list = [4, 0, -4]",
    "output": "generated_output : list = sort_des(take(take(mul_n([-2, 0, 2],-2),12),3))",
    "io_inp": [
      -2,
      0,
      2
    ],
    "io_out": [
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(input,-2),12),3))"
  },
  {
    "input": "input : list = [-3, 0, 3, 3, 3, -2]\noutput : list = [-1, 2, 5, 5, 5, 0]",
    "output": "generated_output : list = add_n([-3, 0, 3, 3, 3, -2],2)",
    "io_inp": [
      -3,
      0,
      3,
      3,
      3,
      -2
    ],
    "io_out": [
      -1,
      2,
      5,
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-5, -10]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_des([-1, 4]),3),2),1),4)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_des(input),3),2),1),4)"
  },
  {
    "input": "input : list = [-3, 3, -3, 0]\noutput : list = [-2, 4, -2, 1]",
    "output": "generated_output : list = add_n([-3, 3, -3, 0],1)",
    "io_inp": [
      -3,
      3,
      -3,
      0
    ],
    "io_out": [
      -2,
      4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, -5, 0, 1]\noutput : list = [-15, -12, 0, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([-4, -5, 0, 1]),3))",
    "io_inp": [
      -4,
      -5,
      0,
      1
    ],
    "io_out": [
      -15,
      -12,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [5, 1, 5, -3, 2, -2]\noutput : list = [18, 18, 6, 2, -10, -14]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(mul_n([5, 1, 5, -3, 2, -2],4),-2)),6))",
    "io_inp": [
      5,
      1,
      5,
      -3,
      2,
      -2
    ],
    "io_out": [
      18,
      18,
      6,
      2,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(mul_n(input,4),-2)),6))"
  },
  {
    "input": "input : list = [4, 5, -3, -4, -3]\noutput : list = [0, -1]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(take([4, 5, -3, -4, -3],2),-5),1)),1)",
    "io_inp": [
      4,
      5,
      -3,
      -4,
      -3
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(take(input,2),-5),1)),1)"
  },
  {
    "input": "input : list = [1, -3, -5, -3, -4, 5]\noutput : list = [-3, -7, -9, -7, -8, 1]",
    "output": "generated_output : list = add_n([1, -3, -5, -3, -4, 5],-4)",
    "io_inp": [
      1,
      -3,
      -5,
      -3,
      -4,
      5
    ],
    "io_out": [
      -3,
      -7,
      -9,
      -7,
      -8,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, 5, -4, 5]\noutput : list = [-4, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([3, 5, -4, 5])",
    "io_inp": [
      3,
      5,
      -4,
      5
    ],
    "io_out": [
      -4,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1]",
    "output": "generated_output : list = take(sub_n([-2, 5],-3),1)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),1)"
  },
  {
    "input": "input : list = [-5, -3, 4, -1]\noutput : list = [-4, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(reverse([-5, -3, 4, -1]),-1))))",
    "io_inp": [
      -5,
      -3,
      4,
      -1
    ],
    "io_out": [
      -4,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(take(take(reverse(add_n([-2, -5],5)),23),2))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(add_n(input,5)),23),2))"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [-6, 1, -6]",
    "output": "generated_output : list = take(take(sub_n(reverse(reverse([-2, 5, -2])),4),9),43)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      -6,
      1,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(reverse(input)),4),9),43)"
  },
  {
    "input": "input : list = [4, -2, -1]\noutput : list = [-2, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc([4, -2, -1]),16)))",
    "io_inp": [
      4,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(input),16)))"
  },
  {
    "input": "input : list = [0, -2, 5, 3, 4]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take([0, -2, 5, 3, 4],2))),3)",
    "io_inp": [
      0,
      -2,
      5,
      3,
      4
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(input,2))),3)"
  },
  {
    "input": "input : list = [-2, 5, 5, 3]\noutput : list = [-9, -4, -2, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n([-2, 5, 5, 3],-1),3),5))",
    "io_inp": [
      -2,
      5,
      5,
      3
    ],
    "io_out": [
      -9,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(input,-1),3),5))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n([3, -3],1),12)))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(input,1),12)))"
  },
  {
    "input": "input : list = [-3, -1, -2, 0]\noutput : list = [-1, -2, 0]",
    "output": "generated_output : list = drop([-3, -1, -2, 0],1)",
    "io_inp": [
      -3,
      -1,
      -2,
      0
    ],
    "io_out": [
      -1,
      -2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [5, 10, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([2, 1, 5]),5))",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      5,
      10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(take(take(sort_asc(take([-1, 1, -1],1)),23),16))",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(take(input,1)),23),16))"
  },
  {
    "input": "input : list = [3, -2, 1, 0, 2, 5]\noutput : list = [5, 3, 2, 1, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(sort_des([3, -2, 1, 0, 2, 5]),13))))",
    "io_inp": [
      3,
      -2,
      1,
      0,
      2,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(sort_des(input),13))))"
  },
  {
    "input": "input : list = [-1, 5, 0, 2, 4, 3]\noutput : list = [-4, -2, 2, 4, 6, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sort_asc([-1, 5, 0, 2, 4, 3]),2)),-4),-2)",
    "io_inp": [
      -1,
      5,
      0,
      2,
      4,
      3
    ],
    "io_out": [
      -4,
      -2,
      2,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sort_asc(input),2)),-4),-2)"
  },
  {
    "input": "input : list = [4, 5, 1, 0, 2]\noutput : list = [-1, 0, -4, -5, -3]",
    "output": "generated_output : list = sub_n([4, 5, 1, 0, 2],5)",
    "io_inp": [
      4,
      5,
      1,
      0,
      2
    ],
    "io_out": [
      -1,
      0,
      -4,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 3, -4, 1, 3]\noutput : list = [-7, -2, 0, 0, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(sort_asc([5, 3, -4, 1, 3]))),36),-3)",
    "io_inp": [
      5,
      3,
      -4,
      1,
      3
    ],
    "io_out": [
      -7,
      -2,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(sort_asc(input))),36),-3)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-1, -6, -8]",
    "output": "generated_output : list = sub_n(sort_des([-4, -2, 3]),4)",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [1, -2, -3, 3, -5, 2]\noutput : list = [-10, -8, -7, -4, -3, -2]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(sort_des([1, -2, -3, 3, -5, 2]))),-4),-1)",
    "io_inp": [
      1,
      -2,
      -3,
      3,
      -5,
      2
    ],
    "io_out": [
      -10,
      -8,
      -7,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(sort_des(input))),-4),-1)"
  },
  {
    "input": "input : list = [-5, 0, -1, -4]\noutput : list = [-7, -2, -3, -6]",
    "output": "generated_output : list = add_n([-5, 0, -1, -4],-2)",
    "io_inp": [
      -5,
      0,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des([4, 5, -5])",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 0, 5, -1, -3, 0]\noutput : list = [-3, -1, 0, 0, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 0, 5, -1, -3, 0])",
    "io_inp": [
      5,
      0,
      5,
      -1,
      -3,
      0
    ],
    "io_out": [
      -3,
      -1,
      0,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [-11, 19, -11]",
    "output": "generated_output : list = take(take(add_n(add_n(mul_n([-2, 4, -2],5),-5),4),5),20)",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      -11,
      19,
      -11
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(mul_n(input,5),-5),4),5),20)"
  },
  {
    "input": "input : list = [-3, 1, -4, 4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = drop([-3, 1, -4, 4, -5],3)",
    "io_inp": [
      -3,
      1,
      -4,
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [-3, -1, 4]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(reverse([1, 3, -4]))),-1),42)",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(reverse(input))),-1),42)"
  },
  {
    "input": "input : list = [3, 5, 3, 4, 3]\noutput : list = [-3, -3, -3, -4, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(reverse([3, 5, 3, 4, 3])))),-1)",
    "io_inp": [
      3,
      5,
      3,
      4,
      3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [1, 1, -5, 3]\noutput : list = [36, 0, -12]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(drop([1, 1, -5, 3],1),1),-2),3))",
    "io_inp": [
      1,
      1,
      -5,
      3
    ],
    "io_out": [
      36,
      0,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(drop(input,1),1),-2),3))"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [-75]",
    "output": "generated_output : list = drop(mul_n(take(take(mul_n([2, 1, 5],-3),3),21),5),2)",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      -75
    ],
    "output_masked": "generated_output : list = drop(mul_n(take(take(mul_n(input,-3),3),21),5),2)"
  },
  {
    "input": "input : list = [2, -5, 5, -3, -5, -1]\noutput : list = [-5, -5, -3, -1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([2, -5, 5, -3, -5, -1])))",
    "io_inp": [
      2,
      -5,
      5,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [2, 0, 1, 5]\noutput : list = [6, 0, -2, -4]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_asc([2, 0, 1, 5]))),2),-4)",
    "io_inp": [
      2,
      0,
      1,
      5
    ],
    "io_out": [
      6,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_asc(input))),2),-4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sub_n(sort_des([-3, -4]),2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [-20, -4, 12]",
    "output": "generated_output : list = reverse(sort_des(mul_n([-5, 3, -1],4)))",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      -20,
      -4,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,4)))"
  },
  {
    "input": "input : list = [3, -1, -1, -1]\noutput : list = [9, -3, -3, -3]",
    "output": "generated_output : list = mul_n([3, -1, -1, -1],3)",
    "io_inp": [
      3,
      -1,
      -1,
      -1
    ],
    "io_out": [
      9,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, 1, -1, -3, -4]\noutput : list = [5, 4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(sort_asc([2, 1, -1, -3, -4])),1),-4))",
    "io_inp": [
      2,
      1,
      -1,
      -3,
      -4
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [-2, -5, -4, -1, -1]\noutput : list = [2, 2, 14, 18, 6]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(mul_n([-2, -5, -4, -1, -1],-4),1)),-4),-5)",
    "io_inp": [
      -2,
      -5,
      -4,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      14,
      18,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(mul_n(input,-4),1)),-4),-5)"
  },
  {
    "input": "input : list = [-4, 3, 3, -3, -3]\noutput : list = [2, 2, -4, -4, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des(sort_asc([-4, 3, 3, -3, -3])))),-1)",
    "io_inp": [
      -4,
      3,
      3,
      -3,
      -3
    ],
    "io_out": [
      2,
      2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [4, 2, -2, 0]\noutput : list = [-6, -4, -2, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(sort_asc([4, 2, -2, 0])))),4)",
    "io_inp": [
      4,
      2,
      -2,
      0
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(take(drop([4, -2, 5],1),16))",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),16))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-10, -6]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(reverse([5, 3]),9),1)),-2)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(reverse(input),9),1)),-2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-36, -32]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n([-5, -4],-4),4))),1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -36,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n(input,-4),4))),1)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_asc([0, 1])))))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, 5, 0, -5]\noutput : list = [20, 0, -4, -20]",
    "output": "generated_output : list = take(take(reverse(mul_n(sort_des([1, 5, 0, -5]),-4)),36),42)",
    "io_inp": [
      1,
      5,
      0,
      -5
    ],
    "io_out": [
      20,
      0,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(sort_des(input),-4)),36),42)"
  },
  {
    "input": "input : list = [5, 1, -4, -3]\noutput : list = [15, 7, -3, -1]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(mul_n([5, 1, -4, -3],-2)),-1),5))",
    "io_inp": [
      5,
      1,
      -4,
      -3
    ],
    "io_out": [
      15,
      7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(mul_n(input,-2)),-1),5))"
  },
  {
    "input": "input : list = [4, 5, -5, -1, -1]\noutput : list = [-30, -10, -10, 15, 20]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n(mul_n([4, 5, -5, -1, -1],5),-5))))",
    "io_inp": [
      4,
      5,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -30,
      -10,
      -10,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(mul_n(input,5),-5))))"
  },
  {
    "input": "input : list = [-2, 2, 4, 5, 5, 5]\noutput : list = [21, 21, 21, 17, 9, -7]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(sort_asc([-2, 2, 4, 5, 5, 5])),8),4),-1)",
    "io_inp": [
      -2,
      2,
      4,
      5,
      5,
      5
    ],
    "io_out": [
      21,
      21,
      21,
      17,
      9,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(sort_asc(input)),8),4),-1)"
  },
  {
    "input": "input : list = [-3, -2, 5, -5]\noutput : list = [-5, -3, -2, 5]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des(sort_des([-3, -2, 5, -5])))),6)",
    "io_inp": [
      -3,
      -2,
      5,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(sort_des(input)))),6)"
  },
  {
    "input": "input : list = [-2, -4, -1, 1]\noutput : list = [3, 1, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(add_n([-2, -4, -1, 1],-2),4),14)))",
    "io_inp": [
      -2,
      -4,
      -1,
      1
    ],
    "io_out": [
      3,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(add_n(input,-2),4),14)))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(reverse(reverse(add_n(sort_asc([1, -3]),3))),29)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(sort_asc(input),3))),29)"
  },
  {
    "input": "input : list = [2, -5, 5, 2, 3]\noutput : list = [4, -3, 7, 4]",
    "output": "generated_output : list = take(take(add_n([2, -5, 5, 2, 3],2),16),4)",
    "io_inp": [
      2,
      -5,
      5,
      2,
      3
    ],
    "io_out": [
      4,
      -3,
      7,
      4
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,2),16),4)"
  },
  {
    "input": "input : list = [2, -1, -2, 1]\noutput : list = [-3, 3]",
    "output": "generated_output : list = add_n(take(reverse(take(mul_n([2, -1, -2, 1],2),2)),14),-1)",
    "io_inp": [
      2,
      -1,
      -2,
      1
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(mul_n(input,2),2)),14),-1)"
  },
  {
    "input": "input : list = [5, 1, 1, 1, 1]\noutput : list = [12, -8, -8, -8, -8]",
    "output": "generated_output : list = add_n(mul_n(take(take(add_n([5, 1, 1, 1, 1],-2),17),22),5),-3)",
    "io_inp": [
      5,
      1,
      1,
      1,
      1
    ],
    "io_out": [
      12,
      -8,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(add_n(input,-2),17),22),5),-3)"
  },
  {
    "input": "input : list = [5, -5, 1, 3]\noutput : list = [7, 5, 3, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n([5, -5, 1, 3],1),-5)),4))",
    "io_inp": [
      5,
      -5,
      1,
      3
    ],
    "io_out": [
      7,
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n(input,1),-5)),4))"
  },
  {
    "input": "input : list = [5, 1, -4, 4]\noutput : list = [-5, -4, -1, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([5, 1, -4, 4],-1)))",
    "io_inp": [
      5,
      1,
      -4,
      4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [5, -2, 4, 5, 5, 4]\noutput : list = [0, 6, 6, 7, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(add_n([5, -2, 4, 5, 5, 4],3)),5)),-4)",
    "io_inp": [
      5,
      -2,
      4,
      5,
      5,
      4
    ],
    "io_out": [
      0,
      6,
      6,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(add_n(input,3)),5)),-4)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-2, 2],5),3),2)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,5),3),2)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_des([-2, 4])),-1),-3))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_des(input)),-1),-3))"
  },
  {
    "input": "input : list = [-4, -4, -5, 5]\noutput : list = [-3, -3, -4, 6]",
    "output": "generated_output : list = reverse(take(reverse(take(sub_n([-4, -4, -5, 5],-1),11)),30))",
    "io_inp": [
      -4,
      -4,
      -5,
      5
    ],
    "io_out": [
      -3,
      -3,
      -4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(sub_n(input,-1),11)),30))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [8, 5]",
    "output": "generated_output : list = add_n(mul_n(take(reverse(mul_n([3, 4],-1)),15),-3),-4)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(mul_n(input,-1)),15),-3),-4)"
  },
  {
    "input": "input : list = [-1, 3, 5, -5, -1]\noutput : list = [2, 0, -4, -4, -8]",
    "output": "generated_output : list = take(take(add_n(sort_des([-1, 3, 5, -5, -1]),-3),27),35)",
    "io_inp": [
      -1,
      3,
      5,
      -5,
      -1
    ],
    "io_out": [
      2,
      0,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(input),-3),27),35)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-16, 8]",
    "output": "generated_output : list = mul_n(sort_des(reverse([-2, 4])),-4)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-4)"
  },
  {
    "input": "input : list = [5, -1, -2, -4, 0]\noutput : list = [-55, -37, -28, -19, 26]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(add_n([5, -1, -2, -4, 0],-2),-3),-3),1))",
    "io_inp": [
      5,
      -1,
      -2,
      -4,
      0
    ],
    "io_out": [
      -55,
      -37,
      -28,
      -19,
      26
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(add_n(input,-2),-3),-3),1))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-9, -14]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(sub_n([-4, 1],4),-3),-2)),5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -9,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(sub_n(input,4),-3),-2)),5)"
  },
  {
    "input": "input : list = [3, -5, -3, -4, -1]\noutput : list = [3, -1, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(sort_asc([3, -5, -3, -4, -1])),13)))",
    "io_inp": [
      3,
      -5,
      -3,
      -4,
      -1
    ],
    "io_out": [
      3,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(sort_asc(input)),13)))"
  },
  {
    "input": "input : list = [-3, -3, 4, 4, 0]\noutput : list = [1, 1, -3, -6, -6]",
    "output": "generated_output : list = sub_n(take(sort_des(take(reverse([-3, -3, 4, 4, 0]),7)),6),3)",
    "io_inp": [
      -3,
      -3,
      4,
      4,
      0
    ],
    "io_out": [
      1,
      1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(reverse(input),7)),6),3)"
  },
  {
    "input": "input : list = [-3, -2, 1, -2]\noutput : list = [13, 10, 1, 10]",
    "output": "generated_output : list = add_n(mul_n(mul_n([-3, -2, 1, -2],-1),3),4)",
    "io_inp": [
      -3,
      -2,
      1,
      -2
    ],
    "io_out": [
      13,
      10,
      1,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,-1),3),4)"
  },
  {
    "input": "input : list = [3, -3, -1, 1, -1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(add_n([3, -3, -1, 1, -1],3),1)),-5))",
    "io_inp": [
      3,
      -3,
      -1,
      1,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(add_n(input,3),1)),-5))"
  },
  {
    "input": "input : list = [0, 2, 4, -4, 2]\noutput : list = [-6, 6, -10, -6]",
    "output": "generated_output : list = mul_n(take(add_n(take(reverse([0, 2, 4, -4, 2]),4),1),21),-2)",
    "io_inp": [
      0,
      2,
      4,
      -4,
      2
    ],
    "io_out": [
      -6,
      6,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(reverse(input),4),1),21),-2)"
  },
  {
    "input": "input : list = [-5, -5, -4, -5, -2]\noutput : list = [7, 5, 4, 4, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_asc([-5, -5, -4, -5, -2]),-2),-4)),-3)",
    "io_inp": [
      -5,
      -5,
      -4,
      -5,
      -2
    ],
    "io_out": [
      7,
      5,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_asc(input),-2),-4)),-3)"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = reverse(reverse(sort_des([-1, 0, 1])))",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(mul_n([4, 0],-1))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [0, -4, 4, 3, 2, -2]\noutput : list = [21, 33, 9, 12, 15, 27]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(sub_n([0, -4, 4, 3, 2, -2],4),5),3),5),-3)",
    "io_inp": [
      0,
      -4,
      4,
      3,
      2,
      -2
    ],
    "io_out": [
      21,
      33,
      9,
      12,
      15,
      27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(sub_n(input,4),5),3),5),-3)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [8, -8]",
    "output": "generated_output : list = take(mul_n([-2, 2],-4),11)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      8,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),11)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-3, -12]",
    "output": "generated_output : list = sort_des(mul_n([-4, -1],3))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [4, -5, -4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(drop([4, -5, -4, 2],2))",
    "io_inp": [
      4,
      -5,
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [4, 1, 4, 5]\noutput : list = [-2, -8, -8, -10]",
    "output": "generated_output : list = mul_n(take(take(take(sort_asc([4, 1, 4, 5]),16),26),16),-2)",
    "io_inp": [
      4,
      1,
      4,
      5
    ],
    "io_out": [
      -2,
      -8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(sort_asc(input),16),26),16),-2)"
  },
  {
    "input": "input : list = [3, 5, 2, 4]\noutput : list = [4, 2, 5, 3]",
    "output": "generated_output : list = reverse([3, 5, 2, 4])",
    "io_inp": [
      3,
      5,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, -5, 5, -4]\noutput : list = [2, -7, -8]",
    "output": "generated_output : list = sub_n(take(sort_des(drop([-4, 5, -5, 5, -4],2)),18),3)",
    "io_inp": [
      -4,
      5,
      -5,
      5,
      -4
    ],
    "io_out": [
      2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(drop(input,2)),18),3)"
  },
  {
    "input": "input : list = [-2, -5, 2, 4, -4, -4]\noutput : list = [-10, -8, -8, -4, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n([-2, -5, 2, 4, -4, -4],2))",
    "io_inp": [
      -2,
      -5,
      2,
      4,
      -4,
      -4
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-4, -3, 3, 0]\noutput : list = [-1, -4, -7, -8]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(add_n([-4, -3, 3, 0],-4))),31))",
    "io_inp": [
      -4,
      -3,
      3,
      0
    ],
    "io_out": [
      -1,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(add_n(input,-4))),31))"
  },
  {
    "input": "input : list = [-1, -1, 0, -1, -3]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(take([-1, -1, 0, -1, -3],3),3)),-2))",
    "io_inp": [
      -1,
      -1,
      0,
      -1,
      -3
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(take(input,3),3)),-2))"
  },
  {
    "input": "input : list = [5, -5, -4, 2]\noutput : list = [-10, -9, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(add_n([5, -5, -4, 2],-4))),1))",
    "io_inp": [
      5,
      -5,
      -4,
      2
    ],
    "io_out": [
      -10,
      -9,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(add_n(input,-4))),1))"
  },
  {
    "input": "input : list = [-3, -4, 5, 1]\noutput : list = [0, 1, 5, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(add_n([-3, -4, 5, 1],4)))))",
    "io_inp": [
      -3,
      -4,
      5,
      1
    ],
    "io_out": [
      0,
      1,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(add_n(input,4)))))"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [7, 1, 7]",
    "output": "generated_output : list = add_n([2, -4, 2],5)",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      7,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, -1, 4, 4, 5, 4]\noutput : list = [-3, -1, 4, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse([-3, -1, 4, 4, 5, 4])))",
    "io_inp": [
      -3,
      -1,
      4,
      4,
      5,
      4
    ],
    "io_out": [
      -3,
      -1,
      4,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [4, -3, 1, 2, -1, -2]\noutput : list = [-1, -3, -4, -6, -7, -8]",
    "output": "generated_output : list = take(sub_n(sort_des([4, -3, 1, 2, -1, -2]),5),24)",
    "io_inp": [
      4,
      -3,
      1,
      2,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),5),24)"
  },
  {
    "input": "input : list = [5, -2, 5, 3, -2]\noutput : list = [10, 10, 6, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(reverse([5, -2, 5, 3, -2])),2)))",
    "io_inp": [
      5,
      -2,
      5,
      3,
      -2
    ],
    "io_out": [
      10,
      10,
      6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(reverse(input)),2)))"
  },
  {
    "input": "input : list = [5, -4, 4, -1, -3]\noutput : list = [3, -24, 0, -15, -21]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(add_n([5, -4, 4, -1, -3],-4),3),24)))",
    "io_inp": [
      5,
      -4,
      4,
      -1,
      -3
    ],
    "io_out": [
      3,
      -24,
      0,
      -15,
      -21
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(add_n(input,-4),3),24)))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-3, 12]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(mul_n([-4, 1],-3)))))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [20]",
    "output": "generated_output : list = reverse(mul_n(reverse(take([-4, 5, -5],1)),-5))",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(input,1)),-5))"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [10, 9, 10]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sub_n([2, 1, 2],1)),16),5),-4)",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      10,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sub_n(input,1)),16),5),-4)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-7, -9]",
    "output": "generated_output : list = sort_des(add_n(take(take(sub_n([-2, -4, -2],4),2),22),-1))",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(sub_n(input,4),2),22),-1))"
  },
  {
    "input": "input : list = [-2, -1, -1, -5, 2]\noutput : list = [-36, -12, -4, -4, 20]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(mul_n([-2, -1, -1, -5, 2],4)),2),-4))",
    "io_inp": [
      -2,
      -1,
      -1,
      -5,
      2
    ],
    "io_out": [
      -36,
      -12,
      -4,
      -4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(mul_n(input,4)),2),-4))"
  },
  {
    "input": "input : list = [2, 2, -4, 2]\noutput : list = [19, 19, 1, 19]",
    "output": "generated_output : list = add_n(mul_n(take(take(add_n([2, 2, -4, 2],3),12),9),3),4)",
    "io_inp": [
      2,
      2,
      -4,
      2
    ],
    "io_out": [
      19,
      19,
      1,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(add_n(input,3),12),9),3),4)"
  },
  {
    "input": "input : list = [-5, -1, -5, -2]\noutput : list = [-2, -6, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(drop([-5, -1, -5, -2],1),2)),-1))",
    "io_inp": [
      -5,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(drop(input,1),2)),-1))"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 4, -5],1)",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [-3, -3, 5]",
    "output": "generated_output : list = sort_asc([-3, -3, 5])",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      -3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, 2, -4, -5]\noutput : list = [10, -18, -6, 18, 22]",
    "output": "generated_output : list = sub_n(mul_n([-2, 5, 2, -4, -5],-4),-2)",
    "io_inp": [
      -2,
      5,
      2,
      -4,
      -5
    ],
    "io_out": [
      10,
      -18,
      -6,
      18,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),-2)"
  },
  {
    "input": "input : list = [4, -5, 3, -2, 0]\noutput : list = [-16, 20, -12, 8, 0]",
    "output": "generated_output : list = take(mul_n(mul_n([4, -5, 3, -2, 0],1),-4),14)",
    "io_inp": [
      4,
      -5,
      3,
      -2,
      0
    ],
    "io_out": [
      -16,
      20,
      -12,
      8,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,1),-4),14)"
  },
  {
    "input": "input : list = [3, -2, 4]\noutput : list = [4, 3, -2]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(add_n([3, -2, 4],5)),22)),-5)",
    "io_inp": [
      3,
      -2,
      4
    ],
    "io_out": [
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(add_n(input,5)),22)),-5)"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = sort_des([-1, 3, 2])",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc([-4, -5])",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, -4]\noutput : list = [16, 24, 16]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n([-4, -3, -4],-4),2),4)),4)",
    "io_inp": [
      -4,
      -3,
      -4
    ],
    "io_out": [
      16,
      24,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n(input,-4),2),4)),4)"
  },
  {
    "input": "input : list = [0, -4, -1, 5]\noutput : list = [-30, 15, 30, 105]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_asc([0, -4, -1, 5]),-1),2),-5),3)",
    "io_inp": [
      0,
      -4,
      -1,
      5
    ],
    "io_out": [
      -30,
      15,
      30,
      105
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_asc(input),-1),2),-5),3)"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [3]",
    "output": "generated_output : list = drop(sort_asc(add_n(reverse(reverse([0, -2, 2])),1)),2)",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(reverse(reverse(input)),1)),2)"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [3, 3, -2]",
    "output": "generated_output : list = sort_des([3, 3, -2])",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -1, 3, -4]\noutput : list = [-4, -1, 2, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(sub_n([2, -1, 3, -4],3),1),-2)),5)",
    "io_inp": [
      2,
      -1,
      3,
      -4
    ],
    "io_out": [
      -4,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(sub_n(input,3),1),-2)),5)"
  },
  {
    "input": "input : list = [-4, 1, 3, -5, -5]\noutput : list = [45, 45, 40, 15, 5]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(reverse([-4, 1, 3, -5, -5]),4),29)),-5)",
    "io_inp": [
      -4,
      1,
      3,
      -5,
      -5
    ],
    "io_out": [
      45,
      45,
      40,
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(reverse(input),4),29)),-5)"
  },
  {
    "input": "input : list = [2, 4, 4, 5, 5, -1]\noutput : list = [20, 20, 15, 15, 5, -10]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(mul_n([2, 4, 4, 5, 5, -1],1)),5),-5))",
    "io_inp": [
      2,
      4,
      4,
      5,
      5,
      -1
    ],
    "io_out": [
      20,
      20,
      15,
      15,
      5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(mul_n(input,1)),5),-5))"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [1, -1, 2]",
    "output": "generated_output : list = add_n([3, 1, 4],-2)",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 0, -5, 4, 4, 2]\noutput : list = [-49, -17, -9, 7, 23, 23]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_asc([-1, 0, -5, 4, 4, 2]),2),4),4),5)",
    "io_inp": [
      -1,
      0,
      -5,
      4,
      4,
      2
    ],
    "io_out": [
      -49,
      -17,
      -9,
      7,
      23,
      23
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_asc(input),2),4),4),5)"
  },
  {
    "input": "input : list = [5, 0, 5, -4, -5, -1]\noutput : list = [40, 40, 15, 10, -5, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(add_n([5, 0, 5, -4, -5, -1],3))),5))",
    "io_inp": [
      5,
      0,
      5,
      -4,
      -5,
      -1
    ],
    "io_out": [
      40,
      40,
      15,
      10,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(add_n(input,3))),5))"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [0, 15, 20]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(sort_asc([-1, 3, 2])),1),5))",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      0,
      15,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(sort_asc(input)),1),5))"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [11, 4, 1]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(add_n([-2, -5, 5],5))),-5),-4)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      11,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(add_n(input,5))),-5),-4)"
  },
  {
    "input": "input : list = [2, 5, 0]\noutput : list = [1, -2, -4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n([2, 5, 0],-2))),-2),1)",
    "io_inp": [
      2,
      5,
      0
    ],
    "io_out": [
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n(input,-2))),-2),1)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [-20, 0, 10]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n([-3, -1, 3],-1)),1),-5)",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      -20,
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(input,-1)),1),-5)"
  },
  {
    "input": "input : list = [-1, 3, -1, -2, -5]\noutput : list = [12, -4, -4, -8, -20]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(mul_n([-1, 3, -1, -2, -5],4),8))))",
    "io_inp": [
      -1,
      3,
      -1,
      -2,
      -5
    ],
    "io_out": [
      12,
      -4,
      -4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(mul_n(input,4),8))))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-11, -7]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(mul_n([-1, -3],2)),10),-5))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -11,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(mul_n(input,2)),10),-5))"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = add_n(add_n(sort_des([-2, -3, -4]),2),5)",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),2),5)"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = take(reverse(sort_asc([-5, 1, 3])),3)",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [-3, -19]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(drop([-4, 1, 5],1)),-4)),-1)",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      -3,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(drop(input,1)),-4)),-1)"
  },
  {
    "input": "input : list = [1, -2, -4, -4]\noutput : list = [-1, -4, -6, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(sort_des([1, -2, -4, -4]),13)),2))",
    "io_inp": [
      1,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(sort_des(input),13)),2))"
  },
  {
    "input": "input : list = [-1, -1, 4, -4, -5, -1]\noutput : list = [-1, 4, -4, -5, -1]",
    "output": "generated_output : list = drop([-1, -1, 4, -4, -5, -1],1)",
    "io_inp": [
      -1,
      -1,
      4,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -1,
      4,
      -4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 4, 0]\noutput : list = [-20, 20, 0]",
    "output": "generated_output : list = mul_n([-4, 4, 0],5)",
    "io_inp": [
      -4,
      4,
      0
    ],
    "io_out": [
      -20,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 0, 3, 4, -5, 0]\noutput : list = [0, -5, 4, 3, 0, 3]",
    "output": "generated_output : list = take(reverse([3, 0, 3, 4, -5, 0]),8)",
    "io_inp": [
      3,
      0,
      3,
      4,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      4,
      3,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(input),8)"
  },
  {
    "input": "input : list = [-5, -5, 0, -3, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(take([-5, -5, 0, -3, -1],2)))))",
    "io_inp": [
      -5,
      -5,
      0,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(take(input,2)))))"
  },
  {
    "input": "input : list = [3, 4, 1, 0]\noutput : list = [16, 12, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([3, 4, 1, 0]),4))",
    "io_inp": [
      3,
      4,
      1,
      0
    ],
    "io_out": [
      16,
      12,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [-26, -21]",
    "output": "generated_output : list = add_n(take(sort_asc(mul_n(drop([5, -5, -4],1),5)),29),-1)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      -26,
      -21
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(mul_n(drop(input,1),5)),29),-1)"
  },
  {
    "input": "input : list = [-1, 0, 0, -5, -1]\noutput : list = [-5, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(sub_n([-1, 0, 0, -5, -1],1),4),-1)))",
    "io_inp": [
      -1,
      0,
      0,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(sub_n(input,1),4),-1)))"
  },
  {
    "input": "input : list = [3, 4, -1]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse([3, 4, -1])))",
    "io_inp": [
      3,
      4,
      -1
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-1, -3, 4]\noutput : list = [-6, 1, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(reverse([-1, -3, 4]),-1)),-2))",
    "io_inp": [
      -1,
      -3,
      4
    ],
    "io_out": [
      -6,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(reverse(input),-1)),-2))"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [7, 5, 2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sort_asc([0, 2, -3]),5))))",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [0, 1, -1, -2, -1, 5]\noutput : list = [-5, -4, -6, -7, -6, 0]",
    "output": "generated_output : list = add_n([0, 1, -1, -2, -1, 5],-5)",
    "io_inp": [
      0,
      1,
      -1,
      -2,
      -1,
      5
    ],
    "io_out": [
      -5,
      -4,
      -6,
      -7,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 0, 5]\noutput : list = [3, -2, -4]",
    "output": "generated_output : list = add_n(reverse([-2, 0, 5]),-2)",
    "io_inp": [
      -2,
      0,
      5
    ],
    "io_out": [
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [4, 5, 4, 0, 4, -5]\noutput : list = [40, 20, 4, 4, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(sort_des([4, 5, 4, 0, 4, -5])),5),-4))",
    "io_inp": [
      4,
      5,
      4,
      0,
      4,
      -5
    ],
    "io_out": [
      40,
      20,
      4,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(sort_des(input)),5),-4))"
  },
  {
    "input": "input : list = [-5, -2, 5, 0, -2]\noutput : list = [105, 75, 0, 105, 150]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(sub_n([-5, -2, 5, 0, -2],5),11),3),-5))",
    "io_inp": [
      -5,
      -2,
      5,
      0,
      -2
    ],
    "io_out": [
      105,
      75,
      0,
      105,
      150
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(sub_n(input,5),11),3),-5))"
  },
  {
    "input": "input : list = [4, -5, 0, 0]\noutput : list = [-5, 0, 0]",
    "output": "generated_output : list = drop([4, -5, 0, 0],1)",
    "io_inp": [
      4,
      -5,
      0,
      0
    ],
    "io_out": [
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(add_n([0, 3],-2),9)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),9)"
  },
  {
    "input": "input : list = [0, -5, 5, 2, 3]\noutput : list = [0, -5, 5, 2, 3]",
    "output": "generated_output : list = reverse(take(reverse([0, -5, 5, 2, 3]),17))",
    "io_inp": [
      0,
      -5,
      5,
      2,
      3
    ],
    "io_out": [
      0,
      -5,
      5,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),17))"
  },
  {
    "input": "input : list = [2, 4, -1, 1]\noutput : list = [0, 2, -3, -1]",
    "output": "generated_output : list = sub_n([2, 4, -1, 1],2)",
    "io_inp": [
      2,
      4,
      -1,
      1
    ],
    "io_out": [
      0,
      2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -4, 1, 2, 4]\noutput : list = [-1, -2, -3, -4, -9]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(add_n([3, -4, 1, 2, 4],-3),-5)),3))",
    "io_inp": [
      3,
      -4,
      1,
      2,
      4
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(add_n(input,-3),-5)),3))"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [-5, -5, -9]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(mul_n([-3, -3, -5],2),1),-3),-5),22)",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(mul_n(input,2),1),-3),-5),22)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(take([-1, -4, 5],1))),8),-3)",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(take(input,1))),8),-3)"
  },
  {
    "input": "input : list = [0, -3, -3, 3, -4, -5]\noutput : list = [-2, -1, 0, 0, 3, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc([0, -3, -3, 3, -4, -5]))),3)",
    "io_inp": [
      0,
      -3,
      -3,
      3,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      0,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(input))),3)"
  },
  {
    "input": "input : list = [1, 5, 3, 5, -1]\noutput : list = [3, 3, 1, -1, -3]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(sort_asc([1, 5, 3, 5, -1])),2),33))",
    "io_inp": [
      1,
      5,
      3,
      5,
      -1
    ],
    "io_out": [
      3,
      3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(sort_asc(input)),2),33))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-41, -41]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n([-5, -5],5),-5),3),-4)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -41,
      -41
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(input,5),-5),3),-4)"
  },
  {
    "input": "input : list = [3, 0, -4]\noutput : list = [2, -1, -5]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(reverse([3, 0, -4]))),1))",
    "io_inp": [
      3,
      0,
      -4
    ],
    "io_out": [
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [-5, 1, 4, -2]\noutput : list = [-15, -6, 3, 12]",
    "output": "generated_output : list = take(mul_n(take(sort_des(mul_n([-5, 1, 4, -2],-3)),15),-1),30)",
    "io_inp": [
      -5,
      1,
      4,
      -2
    ],
    "io_out": [
      -15,
      -6,
      3,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(mul_n(input,-3)),15),-1),30)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(take(take(reverse([1, -1]),10),17))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(input),10),17))"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [0, 4, 1]",
    "output": "generated_output : list = add_n([-2, 2, -1],2)",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      0,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, 0, 1, 3, -1]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(take([-5, 0, 1, 3, -1],1)),32)),3)",
    "io_inp": [
      -5,
      0,
      1,
      3,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(take(input,1)),32)),3)"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [7]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(take([-5, 4, -2],1)),3),-1),5)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(take(input,1)),3),-1),5)"
  },
  {
    "input": "input : list = [-2, -4, 1, -5, -4, -1]\noutput : list = [-1, -3, 2, -4, -3, 0]",
    "output": "generated_output : list = add_n([-2, -4, 1, -5, -4, -1],1)",
    "io_inp": [
      -2,
      -4,
      1,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -3,
      2,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n([1, 0],4))),-5))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n(input,4))),-5))"
  },
  {
    "input": "input : list = [2, -3, -1, -1, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop(sort_asc([2, -3, -1, -1, 2, 5]),4)",
    "io_inp": [
      2,
      -3,
      -1,
      -1,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-5, -4, -5, -4]\noutput : list = [10, 10, 8, 8]",
    "output": "generated_output : list = sort_des(mul_n([-5, -4, -5, -4],-2))",
    "io_inp": [
      -5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      10,
      10,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 1, 2, 0]\noutput : list = [0, 10, 12, 8]",
    "output": "generated_output : list = mul_n(sub_n([-4, 1, 2, 0],-4),2)",
    "io_inp": [
      -4,
      1,
      2,
      0
    ],
    "io_out": [
      0,
      10,
      12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),2)"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [0, -3, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([5, 1, 0]),-3))",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      0,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [8, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(sort_des([3, -5])),-5),-5),-5)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(sort_des(input)),-5),-5),-5)"
  },
  {
    "input": "input : list = [-1, -4, 0]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(add_n([-1, -4, 0],-1)),21),1),-3)",
    "io_inp": [
      -1,
      -4,
      0
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(add_n(input,-1)),21),1),-3)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [11, 6]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(add_n([-2, 3],4),5),-2)),-3)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      11,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(add_n(input,4),5),-2)),-3)"
  },
  {
    "input": "input : list = [-1, 0, -5, -1, 2, -3]\noutput : list = [2, 0, -1, -1, -3, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(mul_n([-1, 0, -5, -1, 2, -3],1))),17))",
    "io_inp": [
      -1,
      0,
      -5,
      -1,
      2,
      -3
    ],
    "io_out": [
      2,
      0,
      -1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(mul_n(input,1))),17))"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [10, 4]",
    "output": "generated_output : list = sort_des(drop(mul_n([4, -2, -5],-2),1))",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = sort_des(drop(mul_n(input,-2),1))"
  },
  {
    "input": "input : list = [4, -2, 0, 1, -2]\noutput : list = [20, -10, 0, 5, -10]",
    "output": "generated_output : list = mul_n([4, -2, 0, 1, -2],5)",
    "io_inp": [
      4,
      -2,
      0,
      1,
      -2
    ],
    "io_out": [
      20,
      -10,
      0,
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, 0, 0, -1, -1]\noutput : list = [-7, -3, -3, -2, -2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(sort_asc([-5, 0, 0, -1, -1]),5),-3)))",
    "io_inp": [
      -5,
      0,
      0,
      -1,
      -1
    ],
    "io_out": [
      -7,
      -3,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(sort_asc(input),5),-3)))"
  },
  {
    "input": "input : list = [-3, -1, -1, -5, 2, 5]\noutput : list = [-5, -3, -1, -1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -1, -1, -5, 2, 5]))",
    "io_inp": [
      -3,
      -1,
      -1,
      -5,
      2,
      5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(mul_n(drop(mul_n([5, 2],-4),1),1))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(mul_n(input,-4),1),1))"
  },
  {
    "input": "input : list = [1, 5, -1, 4, -4]\noutput : list = [-12]",
    "output": "generated_output : list = take(mul_n(sub_n([1, 5, -1, 4, -4],-3),-3),1)",
    "io_inp": [
      1,
      5,
      -1,
      4,
      -4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,-3),-3),1)"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(take([4, -1, 2],1),-2),4)))",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(take(input,1),-2),4)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [3, 9]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -3],-3))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [7, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(add_n([-1, 5],-4)),-2),-4))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(add_n(input,-4)),-2),-4))"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(take([5, 5, 1],1),3))))",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(take(input,1),3))))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([1, 3])))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, 4, 2, -1]\noutput : list = [2, -4, -4, -13]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(add_n([2, 4, 2, -1],-2)),3)),4)",
    "io_inp": [
      2,
      4,
      2,
      -1
    ],
    "io_out": [
      2,
      -4,
      -4,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(add_n(input,-2)),3)),4)"
  },
  {
    "input": "input : list = [-2, 5, 1, 4]\noutput : list = [-6, -3, 0, 1]",
    "output": "generated_output : list = sub_n(sort_asc([-2, 5, 1, 4]),4)",
    "io_inp": [
      -2,
      5,
      1,
      4
    ],
    "io_out": [
      -6,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-5, -1, -5, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(drop([-5, -1, -5, 5, 5],3)))",
    "io_inp": [
      -5,
      -1,
      -5,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,3)))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [8, 5]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(reverse([4, 1])),3),30),-1)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(reverse(input)),3),30),-1)"
  },
  {
    "input": "input : list = [-4, 1, -4, 0, 0, 4]\noutput : list = [5, 1, 1, -3, 2, -3]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(add_n([-4, 1, -4, 0, 0, 4],3)))),-2)",
    "io_inp": [
      -4,
      1,
      -4,
      0,
      0,
      4
    ],
    "io_out": [
      5,
      1,
      1,
      -3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(add_n(input,3)))),-2)"
  },
  {
    "input": "input : list = [1, -4, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_asc(drop([1, -4, 1, 4],2)),-1),5))",
    "io_inp": [
      1,
      -4,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_asc(drop(input,2)),-1),5))"
  },
  {
    "input": "input : list = [3, 4, 2]\noutput : list = [-4, -20, -12]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(mul_n([3, 4, 2],-2)),24),3),4)",
    "io_inp": [
      3,
      4,
      2
    ],
    "io_out": [
      -4,
      -20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(mul_n(input,-2)),24),3),4)"
  },
  {
    "input": "input : list = [-5, -3, 1, -2]\noutput : list = [-5, -3, -2, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(sort_des([-5, -3, 1, -2])),22)))",
    "io_inp": [
      -5,
      -3,
      1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(sort_des(input)),22)))"
  },
  {
    "input": "input : list = [5, -3, -4]\noutput : list = [-9, -8, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n([5, -3, -4],4))),1)",
    "io_inp": [
      5,
      -3,
      -4
    ],
    "io_out": [
      -9,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(input,4))),1)"
  },
  {
    "input": "input : list = [3, 1, -1, -3, 2, -4]\noutput : list = [60, -30]",
    "output": "generated_output : list = mul_n(reverse(drop(mul_n([3, 1, -1, -3, 2, -4],-3),4)),5)",
    "io_inp": [
      3,
      1,
      -1,
      -3,
      2,
      -4
    ],
    "io_out": [
      60,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(mul_n(input,-3),4)),5)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [3, -4]",
    "output": "generated_output : list = add_n([5, -2],-2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 3, -3, -3, 3]\noutput : list = [9, 9, -9, -9, -9]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n([-3, 3, -3, -3, 3],3))))",
    "io_inp": [
      -3,
      3,
      -3,
      -3,
      3
    ],
    "io_out": [
      9,
      9,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(input,3))))"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = drop([-4, -5, 5],1)",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 3, 2, 4, 4, -2]\noutput : list = [-14, 4, 4, -2, 1, -5]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(add_n([1, 3, 2, 4, 4, -2],-1),-3),-1),5))",
    "io_inp": [
      1,
      3,
      2,
      4,
      4,
      -2
    ],
    "io_out": [
      -14,
      4,
      4,
      -2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(add_n(input,-1),-3),-1),5))"
  },
  {
    "input": "input : list = [2, -3, 5, 1, 0, -1]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(drop(sort_des(add_n(drop([2, -3, 5, 1, 0, -1],1),-2)),4),2)",
    "io_inp": [
      2,
      -3,
      5,
      1,
      0,
      -1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(add_n(drop(input,1),-2)),4),2)"
  },
  {
    "input": "input : list = [-4, 5, 1, 2, 4, 4]\noutput : list = [1, 10, 6, 7, 9, 9]",
    "output": "generated_output : list = take(add_n([-4, 5, 1, 2, 4, 4],5),19)",
    "io_inp": [
      -4,
      5,
      1,
      2,
      4,
      4
    ],
    "io_out": [
      1,
      10,
      6,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),19)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-22, -18]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(sub_n([4, 3],-1),-4),3),-4),-1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -22,
      -18
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(sub_n(input,-1),-4),3),-4),-1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des([-2, -1])",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3, -2, -5]\noutput : list = [-10, -7, -2, -6]",
    "output": "generated_output : list = take(take(sub_n(add_n(reverse([-1, 3, -2, -5]),-2),3),17),14)",
    "io_inp": [
      -1,
      3,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(reverse(input),-2),3),17),14)"
  },
  {
    "input": "input : list = [4, 0, 5, -4, 4, -3]\noutput : list = [-4, -3, 0, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([4, 0, 5, -4, 4, -3])))",
    "io_inp": [
      4,
      0,
      5,
      -4,
      4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [1, -5, -2, -2, 1]\noutput : list = [-5, -2, -2, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des([1, -5, -2, -2, 1]))",
    "io_inp": [
      1,
      -5,
      -2,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 2, 2, 1, 3, -2]\noutput : list = [-4, 1, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(take([-4, 2, 2, 1, 3, -2],4)),-5)),5)",
    "io_inp": [
      -4,
      2,
      2,
      1,
      3,
      -2
    ],
    "io_out": [
      -4,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(take(input,4)),-5)),5)"
  },
  {
    "input": "input : list = [4, 0, -1, -2]\noutput : list = [4, 0, -1, -2]",
    "output": "generated_output : list = sort_des(reverse([4, 0, -1, -2]))",
    "io_inp": [
      4,
      0,
      -1,
      -2
    ],
    "io_out": [
      4,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -5, -2, 1, 1]\noutput : list = [-5, -2, 1, 1, 4]",
    "output": "generated_output : list = sort_asc([4, -5, -2, 1, 1])",
    "io_inp": [
      4,
      -5,
      -2,
      1,
      1
    ],
    "io_out": [
      -5,
      -2,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc([1, 4])",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = drop([-2, -5, 1],1)",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2, -2, -2, -2, 0]\noutput : list = [4, 4, 4, -4, -12, -12]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(mul_n([2, 2, -2, -2, -2, 0],-4)),-4)),6)",
    "io_inp": [
      2,
      2,
      -2,
      -2,
      -2,
      0
    ],
    "io_out": [
      4,
      4,
      4,
      -4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(mul_n(input,-4)),-4)),6)"
  },
  {
    "input": "input : list = [1, 3, 0, -1, 3, 2]\noutput : list = [-3, -2, -1, 0, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(sort_asc([1, 3, 0, -1, 3, 2]),9))),2)",
    "io_inp": [
      1,
      3,
      0,
      -1,
      3,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(sort_asc(input),9))),2)"
  },
  {
    "input": "input : list = [1, 2, 1, -5, 5, 3]\noutput : list = [-5, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(drop([1, 2, 1, -5, 5, 3],2)))))",
    "io_inp": [
      1,
      2,
      1,
      -5,
      5,
      3
    ],
    "io_out": [
      -5,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [2, 1, 4, 2]\noutput : list = [1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(take(reverse([2, 1, 4, 2]),8))",
    "io_inp": [
      2,
      1,
      4,
      2
    ],
    "io_out": [
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),8))"
  },
  {
    "input": "input : list = [-1, -3, -1, 5, -4]\noutput : list = [-2, -5, -11, -11, -29]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(add_n([-1, -3, -1, 5, -4],5))),-3),-1)",
    "io_inp": [
      -1,
      -3,
      -1,
      5,
      -4
    ],
    "io_out": [
      -2,
      -5,
      -11,
      -11,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(add_n(input,5))),-3),-1)"
  },
  {
    "input": "input : list = [5, -2, -5]\noutput : list = [-10, -7, 0]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(reverse([5, -2, -5]))),1),5)",
    "io_inp": [
      5,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(reverse(input))),1),5)"
  },
  {
    "input": "input : list = [-5, 5, 1, 0, 3, 2]\noutput : list = [-7, 3, -1, -2, 1, 0]",
    "output": "generated_output : list = sub_n([-5, 5, 1, 0, 3, 2],2)",
    "io_inp": [
      -5,
      5,
      1,
      0,
      3,
      2
    ],
    "io_out": [
      -7,
      3,
      -1,
      -2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, -5, 5, 2]\noutput : list = [18, 8, 4, -2]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(sort_des([0, -5, 5, 2]),16),4),-2))",
    "io_inp": [
      0,
      -5,
      5,
      2
    ],
    "io_out": [
      18,
      8,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(sort_des(input),16),4),-2))"
  },
  {
    "input": "input : list = [-2, -2, 4, -4, -2]\noutput : list = [-10, -10, -4, -12, -10]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-2, -2, 4, -4, -2],5),-2),1)",
    "io_inp": [
      -2,
      -2,
      4,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,5),-2),1)"
  },
  {
    "input": "input : list = [5, -4, 1, 2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(reverse(drop([5, -4, 1, 2],2)),4)",
    "io_inp": [
      5,
      -4,
      1,
      2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,2)),4)"
  },
  {
    "input": "input : list = [3, -5, -2, 5, 0]\noutput : list = [2, 5, 7, 10, 12]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_des([3, -5, -2, 5, 0]),-2),4),-5))",
    "io_inp": [
      3,
      -5,
      -2,
      5,
      0
    ],
    "io_out": [
      2,
      5,
      7,
      10,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_des(input),-2),4),-5))"
  },
  {
    "input": "input : list = [4, -3, 3, 2]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(take([4, -3, 3, 2],1)))),34)",
    "io_inp": [
      4,
      -3,
      3,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(take(input,1)))),34)"
  },
  {
    "input": "input : list = [3, 5, -4, 2]\noutput : list = [32, 24, 20, -4]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc(sub_n([3, 5, -4, 2],-3))),4),30)",
    "io_inp": [
      3,
      5,
      -4,
      2
    ],
    "io_out": [
      32,
      24,
      20,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(sub_n(input,-3))),4),30)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-63]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(mul_n([-1, 0],-4),-4),4),1),1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -63
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(mul_n(input,-4),-4),4),1),1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(add_n([4, -1],-5),-2),3),-2))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(add_n(input,-5),-2),3),-2))"
  },
  {
    "input": "input : list = [-4, -2, 1, 2, -4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = drop([-4, -2, 1, 2, -4, -1],4)",
    "io_inp": [
      -4,
      -2,
      1,
      2,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [300, 300, -300]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n([-5, 5, 5],4),3)),5)",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      300,
      300,
      -300
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(input,4),3)),5)"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [-15]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(take([-3, 1, -3],1),13),5),7))",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(take(input,1),13),5),7))"
  },
  {
    "input": "input : list = [-4, 4, -5]\noutput : list = [2, -7]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(drop([-4, 4, -5],1))),-5),3)",
    "io_inp": [
      -4,
      4,
      -5
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(drop(input,1))),-5),3)"
  },
  {
    "input": "input : list = [-3, -1, 4, 4, 5, 3]\noutput : list = [-1, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(drop([-3, -1, 4, 4, 5, 3],1)))))",
    "io_inp": [
      -3,
      -1,
      4,
      4,
      5,
      3
    ],
    "io_out": [
      -1,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [8, 7, 0]",
    "output": "generated_output : list = sort_des(sub_n([2, -5, 3],-5))",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      8,
      7,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [5, 3, 0, 4, -1]\noutput : list = [8, 7, 6, 3, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(add_n([5, 3, 0, 4, -1],-1),-4))))",
    "io_inp": [
      5,
      3,
      0,
      4,
      -1
    ],
    "io_out": [
      8,
      7,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(add_n(input,-1),-4))))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sub_n([-5, 3],-4)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, 2, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([0, 2, -3, -3],2)",
    "io_inp": [
      0,
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 4, -3, 5, 1, 4]\noutput : list = [-5, -3, 1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([-5, 4, -3, 5, 1, 4])",
    "io_inp": [
      -5,
      4,
      -3,
      5,
      1,
      4
    ],
    "io_out": [
      -5,
      -3,
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, 1, -1, -4, 2]\noutput : list = [5, 2, 1, -1, -1, -4]",
    "output": "generated_output : list = sort_des(mul_n([-1, 5, 1, -1, -4, 2],1))",
    "io_inp": [
      -1,
      5,
      1,
      -1,
      -4,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, 5, -1, -5]\noutput : list = [6, 0, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(sub_n([-2, 5, -1, -5],-4),23),3)))",
    "io_inp": [
      -2,
      5,
      -1,
      -5
    ],
    "io_out": [
      6,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(sub_n(input,-4),23),3)))"
  },
  {
    "input": "input : list = [3, -1, 5, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = drop([3, -1, 5, 2, 2],3)",
    "io_inp": [
      3,
      -1,
      5,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, 3, 5, -2]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(take(drop(take(reverse([-4, 3, 5, -2]),9),3),36),2)",
    "io_inp": [
      -4,
      3,
      5,
      -2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(take(reverse(input),9),3),36),2)"
  },
  {
    "input": "input : list = [1, -4, -3, 0]\noutput : list = [0, 15, 20]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(drop([1, -4, -3, 0],1))),-5))",
    "io_inp": [
      1,
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      15,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(drop(input,1))),-5))"
  },
  {
    "input": "input : list = [3, -2, -2, -3, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = take(take(take([3, -2, -2, -3, 3],2),23),6)",
    "io_inp": [
      3,
      -2,
      -2,
      -3,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(take(input,2),23),6)"
  },
  {
    "input": "input : list = [0, 4, 2, 2, -5]\noutput : list = [-22, -2, 6, 6, 14]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n([0, 4, 2, 2, -5],-4)),2),-1)",
    "io_inp": [
      0,
      4,
      2,
      2,
      -5
    ],
    "io_out": [
      -22,
      -2,
      6,
      6,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(input,-4)),2),-1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [8, 8]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(mul_n([0, 0],4),-3),1),2))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(mul_n(input,4),-3),1),2))"
  },
  {
    "input": "input : list = [-2, 4, 3, -3]\noutput : list = [-3, -2, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_des(reverse([-2, 4, 3, -3])))))",
    "io_inp": [
      -2,
      4,
      3,
      -3
    ],
    "io_out": [
      -3,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, -3, 3, 5, 0]\noutput : list = [0, 5, 3, -3, -3]",
    "output": "generated_output : list = reverse([-3, -3, 3, 5, 0])",
    "io_inp": [
      -3,
      -3,
      3,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, -2, -3, -3]\noutput : list = [2, 0, 4, 6, 6]",
    "output": "generated_output : list = mul_n([-1, 0, -2, -3, -3],-2)",
    "io_inp": [
      -1,
      0,
      -2,
      -3,
      -3
    ],
    "io_out": [
      2,
      0,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(take([5, -2, 2],1),-5),-2),6))",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(take(input,1),-5),-2),6))"
  },
  {
    "input": "input : list = [-2, -3, 1, 1]\noutput : list = [1, 1, -2, -3]",
    "output": "generated_output : list = sort_des([-2, -3, 1, 1])",
    "io_inp": [
      -2,
      -3,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [6, 4, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(reverse([4, 2, -3]),-4))),-2)",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(reverse(input),-4))),-2)"
  },
  {
    "input": "input : list = [-2, -5, 4, 5, 2, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = drop(take(reverse(reverse(reverse([-2, -5, 4, 5, 2, 0]))),30),4)",
    "io_inp": [
      -2,
      -5,
      4,
      5,
      2,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = drop(take(reverse(reverse(reverse(input))),30),4)"
  },
  {
    "input": "input : list = [1, 1, -1]\noutput : list = [-1, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([1, 1, -1]))",
    "io_inp": [
      1,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -3, -4]\noutput : list = [-8, -7, -9]",
    "output": "generated_output : list = add_n(reverse([-5, -3, -4]),-4)",
    "io_inp": [
      -5,
      -3,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [3, 3, -5, 3, 0]\noutput : list = [4, 4, 4, 1, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(sort_des([3, 3, -5, 3, 0])))),1)",
    "io_inp": [
      3,
      3,
      -5,
      3,
      0
    ],
    "io_out": [
      4,
      4,
      4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = sub_n(add_n([1, -1, -3],2),2)",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),2)"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(drop(sub_n([0, 0, 5],5),2),5)",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(input,5),2),5)"
  },
  {
    "input": "input : list = [-1, -4, -5, 1, -2, -4]\noutput : list = [1, -2, -4]",
    "output": "generated_output : list = drop(reverse(take(reverse([-1, -4, -5, 1, -2, -4]),13)),3)",
    "io_inp": [
      -1,
      -4,
      -5,
      1,
      -2,
      -4
    ],
    "io_out": [
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = drop(reverse(take(reverse(input),13)),3)"
  },
  {
    "input": "input : list = [-3, -1, 0, 0]\noutput : list = [-1, 1, 2, 2]",
    "output": "generated_output : list = add_n(add_n(add_n([-3, -1, 0, 0],5),-2),-1)",
    "io_inp": [
      -3,
      -1,
      0,
      0
    ],
    "io_out": [
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,5),-2),-1)"
  },
  {
    "input": "input : list = [4, 3, -2, -5, 4, 2]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des(take([4, 3, -2, -5, 4, 2],1)),-4)),-5)",
    "io_inp": [
      4,
      3,
      -2,
      -5,
      4,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(take(input,1)),-4)),-5)"
  },
  {
    "input": "input : list = [-5, -3, 2, 1]\noutput : list = [-9, -5, 11, 19]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(mul_n([-5, -3, 2, 1],-4))),16),1)",
    "io_inp": [
      -5,
      -3,
      2,
      1
    ],
    "io_out": [
      -9,
      -5,
      11,
      19
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(mul_n(input,-4))),16),1)"
  },
  {
    "input": "input : list = [1, -1, -3, 3, 0, -5]\noutput : list = [3, 1, 0, -1, -3, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(sort_asc([1, -1, -3, 3, 0, -5]))),33))",
    "io_inp": [
      1,
      -1,
      -3,
      3,
      0,
      -5
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(sort_asc(input))),33))"
  },
  {
    "input": "input : list = [4, 1, 3, 2, 1]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(drop([4, 1, 3, 2, 1],2),19))))",
    "io_inp": [
      4,
      1,
      3,
      2,
      1
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(drop(input,2),19))))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-20, 50]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([5, -2],-2)),-5)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -20,
      50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,-2)),-5)"
  },
  {
    "input": "input : list = [-5, 1, -3, 3]\noutput : list = [20, 12, -4, -12]",
    "output": "generated_output : list = sort_des(mul_n([-5, 1, -3, 3],-4))",
    "io_inp": [
      -5,
      1,
      -3,
      3
    ],
    "io_out": [
      20,
      12,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-4))"
  },
  {
    "input": "input : list = [4, 3, -3, -3, 1, 4]\noutput : list = [1, 1, -7, -11, -13, -13]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(mul_n([4, 3, -3, -3, 1, 4],-2)))),5)",
    "io_inp": [
      4,
      3,
      -3,
      -3,
      1,
      4
    ],
    "io_out": [
      1,
      1,
      -7,
      -11,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(mul_n(input,-2)))),5)"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [-12, 16, 4]",
    "output": "generated_output : list = mul_n([3, -4, -1],-4)",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      -12,
      16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(take([2, -5, 4],1),-4),1),-1),2)",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(take(input,1),-4),1),-1),2)"
  },
  {
    "input": "input : list = [-5, 4, -2, -5, 1]\noutput : list = [0, 0, 3, 6, 9]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse([-5, 4, -2, -5, 1])),21),5)",
    "io_inp": [
      -5,
      4,
      -2,
      -5,
      1
    ],
    "io_out": [
      0,
      0,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(input)),21),5)"
  },
  {
    "input": "input : list = [-5, 1, -4, -4, 5]\noutput : list = [-1, 5, 0, 0, 9]",
    "output": "generated_output : list = sub_n([-5, 1, -4, -4, 5],-4)",
    "io_inp": [
      -5,
      1,
      -4,
      -4,
      5
    ],
    "io_out": [
      -1,
      5,
      0,
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [5, 1, -3]",
    "output": "generated_output : list = take(sort_des([1, -3, 5]),18)",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),18)"
  },
  {
    "input": "input : list = [1, -1, -1, 0, 2]\noutput : list = [2, 1, 0, -1, -1]",
    "output": "generated_output : list = sort_des([1, -1, -1, 0, 2])",
    "io_inp": [
      1,
      -1,
      -1,
      0,
      2
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, 1, -1, 3]\noutput : list = [2, -10, -2, 2, -6]",
    "output": "generated_output : list = mul_n([-1, 5, 1, -1, 3],-2)",
    "io_inp": [
      -1,
      5,
      1,
      -1,
      3
    ],
    "io_out": [
      2,
      -10,
      -2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [0, 0, -4]",
    "output": "generated_output : list = add_n(sort_des([4, 0, 4]),-4)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [4, -5, 4, 2]\noutput : list = [-5, 2, 4, 4]",
    "output": "generated_output : list = reverse(sort_des([4, -5, 4, 2]))",
    "io_inp": [
      4,
      -5,
      4,
      2
    ],
    "io_out": [
      -5,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [45, 0, 9]",
    "output": "generated_output : list = mul_n(mul_n([5, 0, 1],3),3)",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      45,
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),3)"
  },
  {
    "input": "input : list = [2, 4, -3, 0]\noutput : list = [7, 0, 3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(drop([2, 4, -3, 0],1)),-4),1))",
    "io_inp": [
      2,
      4,
      -3,
      0
    ],
    "io_out": [
      7,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(drop(input,1)),-4),1))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-2, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([5, -4],-2)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-1, 1, -3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(take([-1, 1, -3],1),4),-3),-5))",
    "io_inp": [
      -1,
      1,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(take(input,1),4),-3),-5))"
  },
  {
    "input": "input : list = [-2, 1, 4, -1, 2, 4]\noutput : list = [-40, -20, 20, 40, 80, 80]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_des([-2, 1, 4, -1, 2, 4]),-4),-5)),1)",
    "io_inp": [
      -2,
      1,
      4,
      -1,
      2,
      4
    ],
    "io_out": [
      -40,
      -20,
      20,
      40,
      80,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_des(input),-4),-5)),1)"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_des([-1, -4, 1])),25)))",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_des(input)),25)))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 25]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(add_n([1, -5],5),-1),-2),5))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(add_n(input,5),-1),-2),5))"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [2, -5, -4]",
    "output": "generated_output : list = add_n([4, -3, -2],-2)",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      2,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -2, -3, -1]\noutput : list = [16]",
    "output": "generated_output : list = mul_n(mul_n(take([-2, -2, -3, -1],1),-2),4)",
    "io_inp": [
      -2,
      -2,
      -3,
      -1
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),-2),4)"
  },
  {
    "input": "input : list = [-2, -1, -5, 5, 5]\noutput : list = [-7, -6, -10, 0, 0]",
    "output": "generated_output : list = add_n([-2, -1, -5, 5, 5],-5)",
    "io_inp": [
      -2,
      -1,
      -5,
      5,
      5
    ],
    "io_out": [
      -7,
      -6,
      -10,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [-10, 5, 10]",
    "output": "generated_output : list = mul_n([2, -1, -2],-5)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      -10,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([1, -5])),-4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),-4)"
  },
  {
    "input": "input : list = [3, 3, -5, 3, 3, -4]\noutput : list = [-8, -7, 0, 0, 0, 0]",
    "output": "generated_output : list = take(sort_asc(add_n(take(mul_n([3, 3, -5, 3, 3, -4],1),16),-3)),52)",
    "io_inp": [
      3,
      3,
      -5,
      3,
      3,
      -4
    ],
    "io_out": [
      -8,
      -7,
      0,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(mul_n(input,1),16),-3)),52)"
  },
  {
    "input": "input : list = [-2, -4, -4, 5]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(take([-2, -4, -4, 5],1),2)),5))",
    "io_inp": [
      -2,
      -4,
      -4,
      5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(take(input,1),2)),5))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(sort_asc([1, -5])),3),1))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(sort_asc(input)),3),1))"
  },
  {
    "input": "input : list = [4, 4, 0, -4, -3]\noutput : list = [-20, -20, 0, 15, 20]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(reverse([4, 4, 0, -4, -3]),-5))),27)",
    "io_inp": [
      4,
      4,
      0,
      -4,
      -3
    ],
    "io_out": [
      -20,
      -20,
      0,
      15,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(reverse(input),-5))),27)"
  },
  {
    "input": "input : list = [-5, -2, 5]\noutput : list = [-8, -15, -18]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(sub_n([-5, -2, 5],5),4),-2)),-2)",
    "io_inp": [
      -5,
      -2,
      5
    ],
    "io_out": [
      -8,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(sub_n(input,5),4),-2)),-2)"
  },
  {
    "input": "input : list = [-4, 5, -3, 0, -5, 5]\noutput : list = [33, -48, 24, -3, 42, -48]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(mul_n([-4, 5, -3, 0, -5, 5],3),1),34),3),-1)",
    "io_inp": [
      -4,
      5,
      -3,
      0,
      -5,
      5
    ],
    "io_out": [
      33,
      -48,
      24,
      -3,
      42,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(mul_n(input,3),1),34),3),-1)"
  },
  {
    "input": "input : list = [1, 1, -4, 1]\noutput : list = [-12, 8, 8, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n([1, 1, -4, 1],4)),4))",
    "io_inp": [
      1,
      1,
      -4,
      1
    ],
    "io_out": [
      -12,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(input,4)),4))"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [16, 16, -12]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n([-4, 3, -4],-4)),19))",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      16,
      16,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(input,-4)),19))"
  },
  {
    "input": "input : list = [1, 5, 5, -5]\noutput : list = [-8, -2, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc([1, 5, 5, -5])),3)))",
    "io_inp": [
      1,
      5,
      5,
      -5
    ],
    "io_out": [
      -8,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [5, 0, 2, 2]\noutput : list = [5, 7, 7, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sub_n([5, 0, 2, 2],-3),-2))))",
    "io_inp": [
      5,
      0,
      2,
      2
    ],
    "io_out": [
      5,
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sub_n(input,-3),-2))))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(add_n([4, 3],-1),12)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),12)"
  },
  {
    "input": "input : list = [-3, 3, 5, 3]\noutput : list = [2, 8]",
    "output": "generated_output : list = add_n(take([-3, 3, 5, 3],2),5)",
    "io_inp": [
      -3,
      3,
      5,
      3
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),5)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [2, -1, -5]",
    "output": "generated_output : list = sort_des([-5, -1, 2])",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 4, -2, 2, -3, 2]\noutput : list = [8, 2, 2]",
    "output": "generated_output : list = take(sort_des(add_n(take(take([-2, 4, -2, 2, -3, 2],3),17),4)),24)",
    "io_inp": [
      -2,
      4,
      -2,
      2,
      -3,
      2
    ],
    "io_out": [
      8,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(take(input,3),17),4)),24)"
  },
  {
    "input": "input : list = [1, 1, -1, -3]\noutput : list = [1, 1]",
    "output": "generated_output : list = take(drop(sort_asc([1, 1, -1, -3]),2),21)",
    "io_inp": [
      1,
      1,
      -1,
      -3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(input),2),21)"
  },
  {
    "input": "input : list = [-2, 2, -3, -4]\noutput : list = [6, 2, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(reverse([-2, 2, -3, -4])),-4)))",
    "io_inp": [
      -2,
      2,
      -3,
      -4
    ],
    "io_out": [
      6,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-3, 3, 2, -2, -3]\noutput : list = [-3, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(take([-3, 3, 2, -2, -3],3)))",
    "io_inp": [
      -3,
      3,
      2,
      -2,
      -3
    ],
    "io_out": [
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,3)))"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [5, 2, 2]",
    "output": "generated_output : list = add_n([2, -1, -1],3)",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [0, 200, 200]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n([-2, 0, -2],5),-5)),9),4)",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      0,
      200,
      200
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n(input,5),-5)),9),4)"
  },
  {
    "input": "input : list = [-2, 1, -2, 2, -4, -5]\noutput : list = [-6, -8, -9]",
    "output": "generated_output : list = sort_des(drop(sub_n(sort_des(sort_des([-2, 1, -2, 2, -4, -5])),4),3))",
    "io_inp": [
      -2,
      1,
      -2,
      2,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(sort_des(sort_des(input)),4),3))"
  },
  {
    "input": "input : list = [4, 1, -3, -4, 3]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(mul_n(take(sort_des(take([4, 1, -3, -4, 3],2)),16),-1),20)",
    "io_inp": [
      4,
      1,
      -3,
      -4,
      3
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(take(input,2)),16),-1),20)"
  },
  {
    "input": "input : list = [-2, -3, 4, -4]\noutput : list = [2, -6]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(drop([-2, -3, 4, -4],2),17)),-2))",
    "io_inp": [
      -2,
      -3,
      4,
      -4
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(drop(input,2),17)),-2))"
  },
  {
    "input": "input : list = [1, -5, 2, 2, -1, 2]\noutput : list = [2, 2, 2, 1, -1, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc([1, -5, 2, 2, -1, 2]),27))",
    "io_inp": [
      1,
      -5,
      2,
      2,
      -1,
      2
    ],
    "io_out": [
      2,
      2,
      2,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),27))"
  },
  {
    "input": "input : list = [-3, -3, -5, -5, -3, 1]\noutput : list = [-20, -16, -8]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(drop([-3, -3, -5, -5, -3, 1],3),4),5)),2)",
    "io_inp": [
      -3,
      -3,
      -5,
      -5,
      -3,
      1
    ],
    "io_out": [
      -20,
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(drop(input,3),4),5)),2)"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(take(mul_n(add_n(drop([-5, 1, 3],1),-1),2),7),9)",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(drop(input,1),-1),2),7),9)"
  },
  {
    "input": "input : list = [-3, 2, 4, -2, 0, -2]\noutput : list = [-8, -3]",
    "output": "generated_output : list = add_n(add_n(add_n(take(take([-3, 2, 4, -2, 0, -2],2),6),1),-3),-3)",
    "io_inp": [
      -3,
      2,
      4,
      -2,
      0,
      -2
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(take(input,2),6),1),-3),-3)"
  },
  {
    "input": "input : list = [-4, -2, 0, 5, -3]\noutput : list = [4, 3, 2, 0, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(reverse([-4, -2, 0, 5, -3]),-1)),15))",
    "io_inp": [
      -4,
      -2,
      0,
      5,
      -3
    ],
    "io_out": [
      4,
      3,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(reverse(input),-1)),15))"
  },
  {
    "input": "input : list = [-3, -4, 0, 2, -2, 2]\noutput : list = [24, 33, -3, -21, 15, -21]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(mul_n([-3, -4, 0, 2, -2, 2],1),3),-3),4),1)",
    "io_inp": [
      -3,
      -4,
      0,
      2,
      -2,
      2
    ],
    "io_out": [
      24,
      33,
      -3,
      -21,
      15,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(mul_n(input,1),3),-3),4),1)"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [25, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(drop([0, 5, 0],1),4),-1)),-5)",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      25,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(drop(input,1),4),-1)),-5)"
  },
  {
    "input": "input : list = [5, 4, 1, 0]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(drop([5, 4, 1, 0],2)),3)))",
    "io_inp": [
      5,
      4,
      1,
      0
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(drop(input,2)),3)))"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [2, -4, 4]",
    "output": "generated_output : list = take(reverse([4, -4, 2]),6)",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [1, -4, 3, 2, -2]\noutput : list = [-20, -10, 5, 10, 15]",
    "output": "generated_output : list = mul_n(sort_asc([1, -4, 3, 2, -2]),5)",
    "io_inp": [
      1,
      -4,
      3,
      2,
      -2
    ],
    "io_out": [
      -20,
      -10,
      5,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-2, -3, -4, -3]\noutput : list = [-1, -2, -2, -3]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(add_n([-2, -3, -4, -3],-2),-1)),2),1)",
    "io_inp": [
      -2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(add_n(input,-2),-1)),2),1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [4, -5]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(sort_asc([-4, 5]),2)),20),-1)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(sort_asc(input),2)),20),-1)"
  },
  {
    "input": "input : list = [-5, 3, 1, -2, -3]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(add_n(add_n(take([-5, 3, 1, -2, -3],1),3),-4),4)",
    "io_inp": [
      -5,
      3,
      1,
      -2,
      -3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(input,1),3),-4),4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-34, 29]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(mul_n([3, -4],3),-3)),2),-5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -34,
      29
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(mul_n(input,3),-3)),2),-5)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sub_n([-1, -2],-4)),3)),3)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sub_n(input,-4)),3)),3)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [11, 5, 3]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(reverse([-4, -2, 4])),20),-2),-5)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      11,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(reverse(input)),20),-2),-5)"
  },
  {
    "input": "input : list = [3, 2, -3, -5, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(drop([3, 2, -3, -5, -5, -4],4),1)),13))",
    "io_inp": [
      3,
      2,
      -3,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(drop(input,4),1)),13))"
  },
  {
    "input": "input : list = [-4, -3, 4, 4]\noutput : list = [-3, -3, -10, -11]",
    "output": "generated_output : list = sub_n(sort_des(add_n([-4, -3, 4, 4],-5)),2)",
    "io_inp": [
      -4,
      -3,
      4,
      4
    ],
    "io_out": [
      -3,
      -3,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-5)),2)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse([2, 4, 0])),5)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),5)"
  },
  {
    "input": "input : list = [4, -3, -5]\noutput : list = [-5, -3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des([4, -3, -5])))",
    "io_inp": [
      4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, -2, 2, -4]\noutput : list = [-8, -2, -6]",
    "output": "generated_output : list = take(reverse(add_n(add_n(drop([-4, -2, 2, -4],1),-5),1)),37)",
    "io_inp": [
      -4,
      -2,
      2,
      -4
    ],
    "io_out": [
      -8,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(drop(input,1),-5),1)),37)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-12, -16]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(add_n([-3, -5],-3)),2)),39)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -12,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(add_n(input,-3)),2)),39)"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take([4, 3, 0],1),-3)",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-4, 2, -3, 3, -4, 4]\noutput : list = [-35, 5, -30, 0, -25, 5]",
    "output": "generated_output : list = reverse(mul_n(add_n([-4, 2, -3, 3, -4, 4],3),-5))",
    "io_inp": [
      -4,
      2,
      -3,
      3,
      -4,
      4
    ],
    "io_out": [
      -35,
      5,
      -30,
      0,
      -25,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,3),-5))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [36, 8]",
    "output": "generated_output : list = take(take(mul_n(add_n(sub_n([4, -3],-3),2),4),32),24)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      36,
      8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(sub_n(input,-3),2),4),32),24)"
  },
  {
    "input": "input : list = [-5, 5, -4, 3, 4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse(sort_asc(drop([-5, 5, -4, 3, 4, -1],4)))",
    "io_inp": [
      -5,
      5,
      -4,
      3,
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,4)))"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [2, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(reverse([-2, -4, 4]))),2))",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(reverse(input))),2))"
  },
  {
    "input": "input : list = [5, 0, -1, 0, -2, 5]\noutput : list = [-7, -6, -5, -5, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([5, 0, -1, 0, -2, 5],-5)))",
    "io_inp": [
      5,
      0,
      -1,
      0,
      -2,
      5
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-5)))"
  },
  {
    "input": "input : list = [1, 1, -4, 5]\noutput : list = [12, 8, 8, 3]",
    "output": "generated_output : list = take(sort_des(reverse(add_n(sub_n([1, 1, -4, 5],-3),4))),31)",
    "io_inp": [
      1,
      1,
      -4,
      5
    ],
    "io_out": [
      12,
      8,
      8,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(add_n(sub_n(input,-3),4))),31)"
  },
  {
    "input": "input : list = [2, 5, 2, -4]\noutput : list = [-5, 1, 4]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(drop([2, 5, 2, -4],1)),1),4),5)",
    "io_inp": [
      2,
      5,
      2,
      -4
    ],
    "io_out": [
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(drop(input,1)),1),4),5)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc([0, -3])",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, -4, 4, -4]\noutput : list = [1, -6]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(take([-5, 2, -4, 4, -4],2))),-1))",
    "io_inp": [
      -5,
      2,
      -4,
      4,
      -4
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(take(input,2))),-1))"
  },
  {
    "input": "input : list = [5, 3, 2, -3]\noutput : list = [-1, 4, 5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sort_asc([5, 3, 2, -3]),4),-4),-2))",
    "io_inp": [
      5,
      3,
      2,
      -3
    ],
    "io_out": [
      -1,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sort_asc(input),4),-4),-2))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [4, 9]",
    "output": "generated_output : list = sub_n(sort_asc(take(add_n([3, -2],4),14)),-2)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(add_n(input,4),14)),-2)"
  },
  {
    "input": "input : list = [-5, 5, 0, -5, -4, -3]\noutput : list = [-100, -100, -80, -60, 0, 100]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_asc([-5, 5, 0, -5, -4, -3])),4),5))",
    "io_inp": [
      -5,
      5,
      0,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -100,
      -100,
      -80,
      -60,
      0,
      100
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_asc(input)),4),5))"
  },
  {
    "input": "input : list = [4, -4, -3, 0, 0]\noutput : list = [4, 0, 0, -3, -4]",
    "output": "generated_output : list = sort_des([4, -4, -3, 0, 0])",
    "io_inp": [
      4,
      -4,
      -3,
      0,
      0
    ],
    "io_out": [
      4,
      0,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [4, 3]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(sort_des([0, -1])),-3)),-1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(sort_des(input)),-3)),-1)"
  },
  {
    "input": "input : list = [-5, -1, -4, 0, 0]\noutput : list = [-5, -5, -6, -9, -10]",
    "output": "generated_output : list = sort_des(add_n([-5, -1, -4, 0, 0],-5))",
    "io_inp": [
      -5,
      -1,
      -4,
      0,
      0
    ],
    "io_out": [
      -5,
      -5,
      -6,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [-5, 4, 0, -2]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(drop([-5, 4, 0, -2],1),3),5)),1)",
    "io_inp": [
      -5,
      4,
      0,
      -2
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(drop(input,1),3),5)),1)"
  },
  {
    "input": "input : list = [-5, 1, 3, 5, 4, -1]\noutput : list = [-1, 4, 5, 3, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 3, 5, 4, -1])",
    "io_inp": [
      -5,
      1,
      3,
      5,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      5,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, 2, 1, -5, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take(take(reverse(mul_n(reverse([-4, 5, 2, 1, -5, 1]),1)),25),1)",
    "io_inp": [
      -4,
      5,
      2,
      1,
      -5,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(reverse(input),1)),25),1)"
  },
  {
    "input": "input : list = [-4, 4, 5, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n([-4, 4, 5, -2],-3),1)))",
    "io_inp": [
      -4,
      4,
      5,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(input,-3),1)))"
  },
  {
    "input": "input : list = [1, -1, -5, -2, 4]\noutput : list = [10, 4, 2, -2, -8]",
    "output": "generated_output : list = mul_n(sort_asc([1, -1, -5, -2, 4]),-2)",
    "io_inp": [
      1,
      -1,
      -5,
      -2,
      4
    ],
    "io_out": [
      10,
      4,
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [2, 1, -1]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc([2, 1, -1]),6))),4)",
    "io_inp": [
      2,
      1,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc(input),6))),4)"
  },
  {
    "input": "input : list = [1, -4, -5, 0]\noutput : list = [2, -6, -8]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(drop([1, -4, -5, 0],1)),1),14),2)",
    "io_inp": [
      1,
      -4,
      -5,
      0
    ],
    "io_out": [
      2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(drop(input,1)),1),14),2)"
  },
  {
    "input": "input : list = [-4, -2, 1]\noutput : list = [-6, -8, -11]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(sub_n([-4, -2, 1],-2),1),-1),-5),-3)",
    "io_inp": [
      -4,
      -2,
      1
    ],
    "io_out": [
      -6,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(sub_n(input,-2),1),-1),-5),-3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des([4, -2])",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, 3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = drop(drop([3, 5, 3, -4],1),1)",
    "io_inp": [
      3,
      5,
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = drop(drop(input,1),1)"
  },
  {
    "input": "input : list = [-5, -1, 3, -3, 3]\noutput : list = [-10, -2, 6]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(take([-5, -1, 3, -3, 3],3)),2)),42)",
    "io_inp": [
      -5,
      -1,
      3,
      -3,
      3
    ],
    "io_out": [
      -10,
      -2,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(take(input,3)),2)),42)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-11, 1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc([-4, -1])),4),5)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -11,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(input)),4),5)"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [3, 6]",
    "output": "generated_output : list = sub_n(reverse(take(drop(sort_des([4, 1, 4]),1),12)),-2)",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(drop(sort_des(input),1),12)),-2)"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [-1, -1, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(mul_n([1, 1, -4],1),1))),1)",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(mul_n(input,1),1))),1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-6, -7]",
    "output": "generated_output : list = take(add_n(sort_des([-1, -2]),-5),21)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),-5),21)"
  },
  {
    "input": "input : list = [-5, -3, 4, -4]\noutput : list = [21, 18, 15, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(sort_des([-5, -3, 4, -4]),2),8),-3))",
    "io_inp": [
      -5,
      -3,
      4,
      -4
    ],
    "io_out": [
      21,
      18,
      15,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(sort_des(input),2),8),-3))"
  },
  {
    "input": "input : list = [1, -4, 2]\noutput : list = [-8, -3, -2]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc([1, -4, 2]),-4)),37)",
    "io_inp": [
      1,
      -4,
      2
    ],
    "io_out": [
      -8,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(input),-4)),37)"
  },
  {
    "input": "input : list = [1, -1, 3, -5, -4]\noutput : list = [-5, -4, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -1, 3, -5, -4])",
    "io_inp": [
      1,
      -1,
      3,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, -3, -2, 0]\noutput : list = [-4, -3, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(reverse([-3, -4, -3, -2, 0])),17)))",
    "io_inp": [
      -3,
      -4,
      -3,
      -2,
      0
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(reverse(input)),17)))"
  },
  {
    "input": "input : list = [-1, -3, -5, 3]\noutput : list = [31, 15, -1, 63]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(add_n([-1, -3, -5, 3],1),-4),4),2),1)",
    "io_inp": [
      -1,
      -3,
      -5,
      3
    ],
    "io_out": [
      31,
      15,
      -1,
      63
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(add_n(input,1),-4),4),2),1)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(drop([-1, 5, 4],1))),5)",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(drop(input,1))),5)"
  },
  {
    "input": "input : list = [3, -1, 5, -1]\noutput : list = [5, 3, -1, -1]",
    "output": "generated_output : list = sort_des([3, -1, 5, -1])",
    "io_inp": [
      3,
      -1,
      5,
      -1
    ],
    "io_out": [
      5,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1, -3, 2, 3, -5]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(take([-1, -1, -3, 2, 3, -5],1),2))))",
    "io_inp": [
      -1,
      -1,
      -3,
      2,
      3,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(take(input,1),2))))"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [3, 3, 1]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(reverse([3, 1, 3])),25)))",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(reverse(input)),25)))"
  },
  {
    "input": "input : list = [2, 4, 4, 1]\noutput : list = [10, 10, 8, 7]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(reverse([2, 4, 4, 1]),5)),4),2)",
    "io_inp": [
      2,
      4,
      4,
      1
    ],
    "io_out": [
      10,
      10,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(reverse(input),5)),4),2)"
  },
  {
    "input": "input : list = [4, 2, 5, 0]\noutput : list = [-2, -7, -4, -6]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n([4, 2, 5, 0],-1)),2),32)",
    "io_inp": [
      4,
      2,
      5,
      0
    ],
    "io_out": [
      -2,
      -7,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(input,-1)),2),32)"
  },
  {
    "input": "input : list = [-2, -2, -3, 4, 0, 0]\noutput : list = [-4, -1, -1, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(drop([-2, -2, -3, 4, 0, 0],2),19),5)),-4)",
    "io_inp": [
      -2,
      -2,
      -3,
      4,
      0,
      0
    ],
    "io_out": [
      -4,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(drop(input,2),19),5)),-4)"
  },
  {
    "input": "input : list = [-5, -5, -3, 2, -5]\noutput : list = [25, 25, 15, -10, 25]",
    "output": "generated_output : list = mul_n([-5, -5, -3, 2, -5],-5)",
    "io_inp": [
      -5,
      -5,
      -3,
      2,
      -5
    ],
    "io_out": [
      25,
      25,
      15,
      -10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -5, 5, 0, 0, -5]\noutput : list = [-10, -10, 0, -5, -5, -10]",
    "output": "generated_output : list = add_n([-5, -5, 5, 0, 0, -5],-5)",
    "io_inp": [
      -5,
      -5,
      5,
      0,
      0,
      -5
    ],
    "io_out": [
      -10,
      -10,
      0,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, -5, -5]\noutput : list = [8, -1, -1]",
    "output": "generated_output : list = add_n(sort_des([4, -5, -5]),4)",
    "io_inp": [
      4,
      -5,
      -5
    ],
    "io_out": [
      8,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [0, -4, 0]\noutput : list = [3, -1, 3]",
    "output": "generated_output : list = sub_n([0, -4, 0],-3)",
    "io_inp": [
      0,
      -4,
      0
    ],
    "io_out": [
      3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 0, 0, 1, -3, -1]\noutput : list = [5, 4, 4, 3, 2, 1]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(sub_n([-2, 0, 0, 1, -3, -1],4),-4),23)),-4)",
    "io_inp": [
      -2,
      0,
      0,
      1,
      -3,
      -1
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(sub_n(input,4),-4),23)),-4)"
  },
  {
    "input": "input : list = [-1, 2, 5, -4, 0]\noutput : list = [0, 20, -25, -10, 5]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(sub_n([-1, 2, 5, -4, 0],-4),4),20)),-5)",
    "io_inp": [
      -1,
      2,
      5,
      -4,
      0
    ],
    "io_out": [
      0,
      20,
      -25,
      -10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(sub_n(input,-4),4),20)),-5)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sub_n([1, 2],3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-8, -4]",
    "output": "generated_output : list = mul_n(reverse(add_n([2, 0],-4)),2)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-4)),2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [8, 7]",
    "output": "generated_output : list = sort_des(sub_n(reverse([3, 2]),-5))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [-1, 4, -3, 0, -2, 3]\noutput : list = [4, 3, 0, -1, -2, -3]",
    "output": "generated_output : list = sort_des([-1, 4, -3, 0, -2, 3])",
    "io_inp": [
      -1,
      4,
      -3,
      0,
      -2,
      3
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, -1, -1]\noutput : list = [5, 2, 1, 1]",
    "output": "generated_output : list = add_n([3, 0, -1, -1],2)",
    "io_inp": [
      3,
      0,
      -1,
      -1
    ],
    "io_out": [
      5,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, 1, -2, -3, 0]\noutput : list = [600, 360, 240, 0, -120]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(mul_n([-5, 1, -2, -3, 0],-2),3)),-4),-5)",
    "io_inp": [
      -5,
      1,
      -2,
      -3,
      0
    ],
    "io_out": [
      600,
      360,
      240,
      0,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(mul_n(input,-2),3)),-4),-5)"
  },
  {
    "input": "input : list = [5, 1, 1, -3]\noutput : list = [-7, 1, 1, 9]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(sort_asc([5, 1, 1, -3]),2)),2),-3)",
    "io_inp": [
      5,
      1,
      1,
      -3
    ],
    "io_out": [
      -7,
      1,
      1,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(sort_asc(input),2)),2),-3)"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [0, 0, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des([-4, 0, 0]))))",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [0, 3, -2, -4]\noutput : list = [0, 3]",
    "output": "generated_output : list = take([0, 3, -2, -4],2)",
    "io_inp": [
      0,
      3,
      -2,
      -4
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -1, 2, 0, -4]\noutput : list = [-4, -2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc([-2, -1, 2, 0, -4])",
    "io_inp": [
      -2,
      -1,
      2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des([5, -2])",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [6, 9]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(reverse([2, 5]))),-5),-1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(reverse(input))),-5),-1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-3, 7]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sort_des([-5, 5]),6),2),16))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sort_des(input),6),2),16))"
  },
  {
    "input": "input : list = [2, 5, 1, 3, 3]\noutput : list = [15, -5, 5, 5]",
    "output": "generated_output : list = mul_n(add_n(drop([2, 5, 1, 3, 3],1),-2),5)",
    "io_inp": [
      2,
      5,
      1,
      3,
      3
    ],
    "io_out": [
      15,
      -5,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,1),-2),5)"
  },
  {
    "input": "input : list = [-3, 1, -1, 2]\noutput : list = [-28, -24, -16, -8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(mul_n([-3, 1, -1, 2],1)),5),-4))",
    "io_inp": [
      -3,
      1,
      -1,
      2
    ],
    "io_out": [
      -28,
      -24,
      -16,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(mul_n(input,1)),5),-4))"
  },
  {
    "input": "input : list = [-1, 1, 1]\noutput : list = [3, 3, -7]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(mul_n([-1, 1, 1],5),8),2),4))",
    "io_inp": [
      -1,
      1,
      1
    ],
    "io_out": [
      3,
      3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(mul_n(input,5),8),2),4))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-20, 4]",
    "output": "generated_output : list = mul_n(sub_n([2, -4],-3),-4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),-4)"
  },
  {
    "input": "input : list = [-3, -5, 0, 4, -1, -1]\noutput : list = [6, 2, 1, 1, -1, -3]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(reverse([-3, -5, 0, 4, -1, -1]))),2),14)",
    "io_inp": [
      -3,
      -5,
      0,
      4,
      -1,
      -1
    ],
    "io_out": [
      6,
      2,
      1,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(reverse(input))),2),14)"
  },
  {
    "input": "input : list = [4, -4, -3]\noutput : list = [7, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sort_asc([4, -4, -3])),11),3))",
    "io_inp": [
      4,
      -4,
      -3
    ],
    "io_out": [
      7,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sort_asc(input)),11),3))"
  },
  {
    "input": "input : list = [-3, 1, 0]\noutput : list = [-5, -4, -8]",
    "output": "generated_output : list = add_n(sub_n(take(add_n(reverse([-3, 1, 0]),1),9),4),-2)",
    "io_inp": [
      -3,
      1,
      0
    ],
    "io_out": [
      -5,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(reverse(input),1),9),4),-2)"
  },
  {
    "input": "input : list = [5, 3, 0, -2]\noutput : list = [-18, -6, 2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(drop([5, 3, 0, -2],1),2),-2),3),3)",
    "io_inp": [
      5,
      3,
      0,
      -2
    ],
    "io_out": [
      -18,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(drop(input,1),2),-2),3),3)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(take([3, 2, 2],1)),4),24))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(take(input,1)),4),24))"
  },
  {
    "input": "input : list = [-2, -2, -3, 3]\noutput : list = [-7, -2, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([-2, -2, -3, 3],-1)),-4)",
    "io_inp": [
      -2,
      -2,
      -3,
      3
    ],
    "io_out": [
      -7,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,-1)),-4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [6, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([0, 5]),1))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-4, -5, 2, 0, -2]\noutput : list = [4, 0, -4, -8, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(reverse([-4, -5, 2, 0, -2])),2)))",
    "io_inp": [
      -4,
      -5,
      2,
      0,
      -2
    ],
    "io_out": [
      4,
      0,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(reverse(input)),2)))"
  },
  {
    "input": "input : list = [1, -4, 1, -5]\noutput : list = [-12, -11, -6, -6]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(reverse([1, -4, 1, -5])),-2),5))",
    "io_inp": [
      1,
      -4,
      1,
      -5
    ],
    "io_out": [
      -12,
      -11,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(reverse(input)),-2),5))"
  },
  {
    "input": "input : list = [-4, 5, 2, 5, 1, 5]\noutput : list = [-4, -10]",
    "output": "generated_output : list = sort_des(take(mul_n(take(drop([-4, 5, 2, 5, 1, 5],1),2),-2),19))",
    "io_inp": [
      -4,
      5,
      2,
      5,
      1,
      5
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(drop(input,1),2),-2),19))"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [-20, -10, 10]",
    "output": "generated_output : list = sort_asc(mul_n([4, -2, 2],-5))",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      -20,
      -10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [0, -1, 1, -2, 0, 5]\noutput : list = [5, 1, 0, 0, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(reverse([0, -1, 1, -2, 0, 5])))",
    "io_inp": [
      0,
      -1,
      1,
      -2,
      0,
      5
    ],
    "io_out": [
      5,
      1,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [3, 4, -2, -1, -5, -4]\noutput : list = [3, 2, -2, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take([3, 4, -2, -1, -5, -4],4)),-4),-3)",
    "io_inp": [
      3,
      4,
      -2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(input,4)),-4),-3)"
  },
  {
    "input": "input : list = [2, -3, -3, 1]\noutput : list = [-6, -6, -2, -1]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(sub_n([2, -3, -3, 1],-1)),13)),4)",
    "io_inp": [
      2,
      -3,
      -3,
      1
    ],
    "io_out": [
      -6,
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(sub_n(input,-1)),13)),4)"
  },
  {
    "input": "input : list = [-5, 1, -4, 5, 0, -5]\noutput : list = [19, 3, -1, -17, -21, -21]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(mul_n([-5, 1, -4, 5, 0, -5],4),18),1)))",
    "io_inp": [
      -5,
      1,
      -4,
      5,
      0,
      -5
    ],
    "io_out": [
      19,
      3,
      -1,
      -17,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(mul_n(input,4),18),1)))"
  },
  {
    "input": "input : list = [-2, -3, -1, -2]\noutput : list = [-9, -14, -4, -9]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(add_n([-2, -3, -1, -2],1),5),-4)))",
    "io_inp": [
      -2,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -9,
      -14,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(add_n(input,1),5),-4)))"
  },
  {
    "input": "input : list = [-1, 0, 5, -1, -1, 2]\noutput : list = [-9, -3]",
    "output": "generated_output : list = sort_asc(drop(sub_n(sub_n(mul_n([-1, 0, 5, -1, -1, 2],-2),4),1),4))",
    "io_inp": [
      -1,
      0,
      5,
      -1,
      -1,
      2
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(sub_n(mul_n(input,-2),4),1),4))"
  },
  {
    "input": "input : list = [-1, -3, 3, 0, 1]\noutput : list = [-24, -18, -36, -27, -30]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(sub_n([-1, -3, 3, 0, 1],-2),3),4),10),-3)",
    "io_inp": [
      -1,
      -3,
      3,
      0,
      1
    ],
    "io_out": [
      -24,
      -18,
      -36,
      -27,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(sub_n(input,-2),3),4),10),-3)"
  },
  {
    "input": "input : list = [-5, -3, 2, -2, 0]\noutput : list = [0, -2, 2, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, 2, -2, 0])",
    "io_inp": [
      -5,
      -3,
      2,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 1, 3, 3]\noutput : list = [-2, 1]",
    "output": "generated_output : list = mul_n(take([-2, 1, 3, 3],2),1)",
    "io_inp": [
      -2,
      1,
      3,
      3
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),1)"
  },
  {
    "input": "input : list = [0, -4, 2, 1]\noutput : list = [1, 5, 6, 7]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(reverse([0, -4, 2, 1]))),2),-3)",
    "io_inp": [
      0,
      -4,
      2,
      1
    ],
    "io_out": [
      1,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(reverse(input))),2),-3)"
  },
  {
    "input": "input : list = [-1, 4, 4, -3, -4, -2]\noutput : list = [-1, -1, -6, -7, -8, -9]",
    "output": "generated_output : list = take(sort_des(sub_n([-1, 4, 4, -3, -4, -2],5)),30)",
    "io_inp": [
      -1,
      4,
      4,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -6,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,5)),30)"
  },
  {
    "input": "input : list = [-3, -2, -2, 4, -5, -2]\noutput : list = [34, 22, 16, 16, 16, -20]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_des([-3, -2, -2, 4, -5, -2])),-2),3),4)",
    "io_inp": [
      -3,
      -2,
      -2,
      4,
      -5,
      -2
    ],
    "io_out": [
      34,
      22,
      16,
      16,
      16,
      -20
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_des(input)),-2),3),4)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [20]",
    "output": "generated_output : list = sub_n(take(mul_n(take(mul_n([-3, 2],4),2),-2),1),4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(mul_n(input,4),2),-2),1),4)"
  },
  {
    "input": "input : list = [-5, 2, 0, -2, -3, 1]\noutput : list = [45, 35, 30, 20, 15, 10]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc(sub_n([-5, 2, 0, -2, -3, 1],4))),30),-5)",
    "io_inp": [
      -5,
      2,
      0,
      -2,
      -3,
      1
    ],
    "io_out": [
      45,
      35,
      30,
      20,
      15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(sub_n(input,4))),30),-5)"
  },
  {
    "input": "input : list = [4, 1, 5, 2, 2, -2]\noutput : list = [10, -5, -10, -10, -20, -25]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse([4, 1, 5, 2, 2, -2]),-5),15))",
    "io_inp": [
      4,
      1,
      5,
      2,
      2,
      -2
    ],
    "io_out": [
      10,
      -5,
      -10,
      -10,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(input),-5),15))"
  },
  {
    "input": "input : list = [-1, -4, -5]\noutput : list = [-5, -4, -1]",
    "output": "generated_output : list = sort_asc([-1, -4, -5])",
    "io_inp": [
      -1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [-2, -7, -10]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(add_n([3, -2, -5],-5),-4),4),18))",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(add_n(input,-5),-4),4),18))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -23]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(mul_n([-5, 1],4)),-1),2))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(mul_n(input,4)),-1),2))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(add_n([-1, -1],3),3)),32))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(add_n(input,3),3)),32))"
  },
  {
    "input": "input : list = [-3, 3, 3, -4]\noutput : list = [0, 0, -6, -7]",
    "output": "generated_output : list = take(sub_n(sort_des([-3, 3, 3, -4]),3),24)",
    "io_inp": [
      -3,
      3,
      3,
      -4
    ],
    "io_out": [
      0,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),3),24)"
  },
  {
    "input": "input : list = [-5, 3, -3]\noutput : list = [-20, 12, -12]",
    "output": "generated_output : list = mul_n([-5, 3, -3],4)",
    "io_inp": [
      -5,
      3,
      -3
    ],
    "io_out": [
      -20,
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, -3, -4, -3, 3, 5]\noutput : list = [0, 1, 7, 9]",
    "output": "generated_output : list = drop(sub_n([-3, -3, -4, -3, 3, 5],-4),2)",
    "io_inp": [
      -3,
      -3,
      -4,
      -3,
      3,
      5
    ],
    "io_out": [
      0,
      1,
      7,
      9
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-4),2)"
  },
  {
    "input": "input : list = [0, 5, 4, 0, 5, 1]\noutput : list = [0, -25, -20, 0, -25, -5]",
    "output": "generated_output : list = mul_n(mul_n([0, 5, 4, 0, 5, 1],-1),5)",
    "io_inp": [
      0,
      5,
      4,
      0,
      5,
      1
    ],
    "io_out": [
      0,
      -25,
      -20,
      0,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n([0, -1],-4)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 0, -1, 4]\noutput : list = [4, 0, -1, -3]",
    "output": "generated_output : list = sort_des([-3, 0, -1, 4])",
    "io_inp": [
      -3,
      0,
      -1,
      4
    ],
    "io_out": [
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, 3, 2]\noutput : list = [-9, -4, 16, 26]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_des(sort_des([-2, -4, 3, 2])),1),-5),-1)",
    "io_inp": [
      -2,
      -4,
      3,
      2
    ],
    "io_out": [
      -9,
      -4,
      16,
      26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_des(sort_des(input)),1),-5),-1)"
  },
  {
    "input": "input : list = [0, -4, -3, 0, -3, 4]\noutput : list = [1, -3, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(drop(sub_n([0, -4, -3, 0, -3, 4],-2),2))),-5)",
    "io_inp": [
      0,
      -4,
      -3,
      0,
      -3,
      4
    ],
    "io_out": [
      1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(drop(sub_n(input,-2),2))),-5)"
  },
  {
    "input": "input : list = [0, -1, -1, 1, -2, -3]\noutput : list = [5, 6, 7, 7, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(reverse(sub_n([0, -1, -1, 1, -2, -3],-4)))),4)",
    "io_inp": [
      0,
      -1,
      -1,
      1,
      -2,
      -3
    ],
    "io_out": [
      5,
      6,
      7,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(reverse(sub_n(input,-4)))),4)"
  },
  {
    "input": "input : list = [-3, 0, 3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take(take(add_n(add_n([-3, 0, 3],3),1),23),1))",
    "io_inp": [
      -3,
      0,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(add_n(input,3),1),23),1))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-2, -14]",
    "output": "generated_output : list = add_n(sub_n(mul_n([1, -3],3),2),-3)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -2,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,3),2),-3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [10, -6]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_asc([-5, 3]),-1),-1)),-2)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_asc(input),-1),-1)),-2)"
  },
  {
    "input": "input : list = [1, -2, -1, 1]\noutput : list = [-3, -5, -6]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(drop([1, -2, -1, 1],1))),-4))",
    "io_inp": [
      1,
      -2,
      -1,
      1
    ],
    "io_out": [
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(drop(input,1))),-4))"
  },
  {
    "input": "input : list = [-3, -2, -3, 5]\noutput : list = [3, -4, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n([-3, -2, -3, 5],2))",
    "io_inp": [
      -3,
      -2,
      -3,
      5
    ],
    "io_out": [
      3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [-5, -5, -2, -3]\noutput : list = [-2, -3, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(sort_asc([-5, -5, -2, -3])))))",
    "io_inp": [
      -5,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -4, -1, -4, 2, -1]\noutput : list = [-1, -4, -4, -7, -7]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(drop([2, -4, -1, -4, 2, -1],1)),3)),48)",
    "io_inp": [
      2,
      -4,
      -1,
      -4,
      2,
      -1
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(drop(input,1)),3)),48)"
  },
  {
    "input": "input : list = [-4, -2, -1, -5, 2]\noutput : list = [-7, -2, -22, 13]",
    "output": "generated_output : list = take(take(sub_n(mul_n(drop([-4, -2, -1, -5, 2],1),5),-3),39),14)",
    "io_inp": [
      -4,
      -2,
      -1,
      -5,
      2
    ],
    "io_out": [
      -7,
      -2,
      -22,
      13
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(drop(input,1),5),-3),39),14)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [5, 3]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(add_n([0, 2],4)),5),4),24)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(add_n(input,4)),5),4),24)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-19, -15]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sub_n([2, 1],-4))),-4),5)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -19,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sub_n(input,-4))),-4),5)"
  },
  {
    "input": "input : list = [-3, 3, 0, 3]\noutput : list = [7, 10, 10]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(drop([-3, 3, 0, 3],1))),5),2)",
    "io_inp": [
      -3,
      3,
      0,
      3
    ],
    "io_out": [
      7,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(drop(input,1))),5),2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-35, 35]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sort_asc([-5, 2]),2)),-3),-5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -35,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sort_asc(input),2)),-3),-5)"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(add_n([-4, 1, -5],3),2),1),-1))",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(add_n(input,3),2),1),-1))"
  },
  {
    "input": "input : list = [5, 4, 1, 4, 3, 2]\noutput : list = [5, 4, 1, 4]",
    "output": "generated_output : list = reverse(drop(reverse([5, 4, 1, 4, 3, 2]),2))",
    "io_inp": [
      5,
      4,
      1,
      4,
      3,
      2
    ],
    "io_out": [
      5,
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(reverse(input),2))"
  },
  {
    "input": "input : list = [-1, -1, 1, -3]\noutput : list = [-8, 2, 2, 12]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(sort_asc([-1, -1, 1, -3]),12),-5)),3)",
    "io_inp": [
      -1,
      -1,
      1,
      -3
    ],
    "io_out": [
      -8,
      2,
      2,
      12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(sort_asc(input),12),-5)),3)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-14, -14]",
    "output": "generated_output : list = take(take(sub_n(add_n(sort_des([-5, -5]),-4),5),22),41)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -14,
      -14
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(sort_des(input),-4),5),22),41)"
  },
  {
    "input": "input : list = [-1, -3, -4, 1, -4, -1]\noutput : list = [10, 10, 5, -5, -5, -15]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(sort_asc([-1, -3, -4, 1, -4, -1]),2)),-5))",
    "io_inp": [
      -1,
      -3,
      -4,
      1,
      -4,
      -1
    ],
    "io_out": [
      10,
      10,
      5,
      -5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(sort_asc(input),2)),-5))"
  },
  {
    "input": "input : list = [3, 3, 2, 1, -4]\noutput : list = [-34, -14, -10, -6, -6]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(add_n([3, 3, 2, 1, -4],-4),4)),-2),36)",
    "io_inp": [
      3,
      3,
      2,
      1,
      -4
    ],
    "io_out": [
      -34,
      -14,
      -10,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(add_n(input,-4),4)),-2),36)"
  },
  {
    "input": "input : list = [0, 5, -2, -1, -2, -1]\noutput : list = [9, 4, 3, 3, 2, 2]",
    "output": "generated_output : list = sub_n(sort_des([0, 5, -2, -1, -2, -1]),-4)",
    "io_inp": [
      0,
      5,
      -2,
      -1,
      -2,
      -1
    ],
    "io_out": [
      9,
      4,
      3,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [5, 4, -3, 0, -5, -3]\noutput : list = [5, 4, 0, -3, -3, -5]",
    "output": "generated_output : list = take(sort_des(sort_des([5, 4, -3, 0, -5, -3])),9)",
    "io_inp": [
      5,
      4,
      -3,
      0,
      -5,
      -3
    ],
    "io_out": [
      5,
      4,
      0,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),9)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-24, -4]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sub_n([2, -3],4),4),-5)),4)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -24,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sub_n(input,4),4),-5)),4)"
  },
  {
    "input": "input : list = [3, -3, -2, -4]\noutput : list = [-9, 6, 9, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(sort_asc([3, -3, -2, -4]),12),-3),10))",
    "io_inp": [
      3,
      -3,
      -2,
      -4
    ],
    "io_out": [
      -9,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(sort_asc(input),12),-3),10))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-24, -8]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sub_n([-2, 2],-4),-4))))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -24,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sub_n(input,-4),-4))))"
  },
  {
    "input": "input : list = [3, 2, 1, -3, -4]\noutput : list = [-20, -15, -10, 10, 15]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(sub_n([3, 2, 1, -3, -4],-2),-1),2),2),-5)",
    "io_inp": [
      3,
      2,
      1,
      -3,
      -4
    ],
    "io_out": [
      -20,
      -15,
      -10,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(sub_n(input,-2),-1),2),2),-5)"
  },
  {
    "input": "input : list = [-4, 1, 0, 2, -5, -1]\noutput : list = [-10, -6]",
    "output": "generated_output : list = sub_n(sort_asc(drop([-4, 1, 0, 2, -5, -1],4)),5)",
    "io_inp": [
      -4,
      1,
      0,
      2,
      -5,
      -1
    ],
    "io_out": [
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,4)),5)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-6, -3]",
    "output": "generated_output : list = take(mul_n(take(sort_des(sort_asc([2, 1])),23),-3),32)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(sort_asc(input)),23),-3),32)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-4, -4, -3]",
    "output": "generated_output : list = sort_asc(reverse(reverse([-3, -4, -4])))",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-80, -60]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sub_n([0, -1],3))),4),5)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -80,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sub_n(input,3))),4),5)"
  },
  {
    "input": "input : list = [-5, -1, -3, 0, -3]\noutput : list = [9, 12, 18, 18, 24]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(mul_n([-5, -1, -3, 0, -3],1),-3))),-3)",
    "io_inp": [
      -5,
      -1,
      -3,
      0,
      -3
    ],
    "io_out": [
      9,
      12,
      18,
      18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(mul_n(input,1),-3))),-3)"
  },
  {
    "input": "input : list = [3, 1, -1, 3, 2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(drop(sub_n([3, 1, -1, 3, 2],-1),3)),17))",
    "io_inp": [
      3,
      1,
      -1,
      3,
      2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(drop(sub_n(input,-1),3)),17))"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [2, 4, 8]",
    "output": "generated_output : list = sort_asc(sub_n(take(take(sort_des([-3, -1, 3]),5),12),-5))",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(sort_des(input),5),12),-5))"
  },
  {
    "input": "input : list = [5, -5, 2, -2, -5, 4]\noutput : list = [-20, -20, -14, -6, -2, 0]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(reverse([5, -5, 2, -2, -5, 4]),14),-5)),2)",
    "io_inp": [
      5,
      -5,
      2,
      -2,
      -5,
      4
    ],
    "io_out": [
      -20,
      -20,
      -14,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(reverse(input),14),-5)),2)"
  },
  {
    "input": "input : list = [4, 5, -4, 4]\noutput : list = [-1, 0, -9, -1]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(sub_n([4, 5, -4, 4],5),1),-1)))",
    "io_inp": [
      4,
      5,
      -4,
      4
    ],
    "io_out": [
      -1,
      0,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(sub_n(input,5),1),-1)))"
  },
  {
    "input": "input : list = [-2, 4, -3, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 4, -3, 5],1)",
    "io_inp": [
      -2,
      4,
      -3,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 1, 1, -4]\noutput : list = [-4, -4, -7, -9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(sub_n([-2, 1, 1, -4],3)),1),3),-2)",
    "io_inp": [
      -2,
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(sub_n(input,3)),1),3),-2)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [0, -5, 0]",
    "output": "generated_output : list = add_n([5, 0, 5],-5)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      0,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 5, -1, -3, 4, -3]\noutput : list = [55, 55, 40, 25, -50, -65]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_des([-2, 5, -1, -3, 4, -3]),3),-2),-5))",
    "io_inp": [
      -2,
      5,
      -1,
      -3,
      4,
      -3
    ],
    "io_out": [
      55,
      55,
      40,
      25,
      -50,
      -65
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_des(input),3),-2),-5))"
  },
  {
    "input": "input : list = [-4, 5, 0, -2, 1, -2]\noutput : list = [-7, 1, 3, 7, 7, 11]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-4, 5, 0, -2, 1, -2]),-2),-3)",
    "io_inp": [
      -4,
      5,
      0,
      -2,
      1,
      -2
    ],
    "io_out": [
      -7,
      1,
      3,
      7,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-2),-3)"
  },
  {
    "input": "input : list = [0, 1, -5, -2, 5]\noutput : list = [-7, -6, -12, -9, -2]",
    "output": "generated_output : list = take(take(take(add_n(add_n([0, 1, -5, -2, 5],-4),-3),10),7),48)",
    "io_inp": [
      0,
      1,
      -5,
      -2,
      5
    ],
    "io_out": [
      -7,
      -6,
      -12,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(add_n(input,-4),-3),10),7),48)"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-20, -12, -12]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(mul_n([-3, -5, -3],-2),-2))),13)",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -20,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(mul_n(input,-2),-2))),13)"
  },
  {
    "input": "input : list = [-1, 4, -2, -2, -5, -1]\noutput : list = [-14, -8, -8, -6, -6, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(sort_des([-1, 4, -2, -2, -5, -1]),2)),-3),-1)",
    "io_inp": [
      -1,
      4,
      -2,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -14,
      -8,
      -8,
      -6,
      -6,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(sort_des(input),2)),-3),-1)"
  },
  {
    "input": "input : list = [1, 5, -3, -3, -4]\noutput : list = [45, 40, 40, 0, 20]",
    "output": "generated_output : list = mul_n(reverse(sub_n([1, 5, -3, -3, -4],5)),-5)",
    "io_inp": [
      1,
      5,
      -3,
      -3,
      -4
    ],
    "io_out": [
      45,
      40,
      40,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,5)),-5)"
  },
  {
    "input": "input : list = [-3, 0, -1, -1, -5, -2]\noutput : list = [-5, -3, -2, -1, -1, 0]",
    "output": "generated_output : list = sort_asc([-3, 0, -1, -1, -5, -2])",
    "io_inp": [
      -3,
      0,
      -1,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [-20, -14, -11]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(mul_n([-3, -2, -5],3)),-5),19))",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      -20,
      -14,
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(mul_n(input,3)),-5),19))"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [-10, -8, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(reverse([-5, -1, -3]),11),5)))",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(reverse(input),11),5)))"
  },
  {
    "input": "input : list = [5, -5, 1, -1]\noutput : list = [56, 40, 32, 16]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sort_des([5, -5, 1, -1]),-4),-5),24),4)",
    "io_inp": [
      5,
      -5,
      1,
      -1
    ],
    "io_out": [
      56,
      40,
      32,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sort_des(input),-4),-5),24),4)"
  },
  {
    "input": "input : list = [-4, -4, -4, -2, -2, -3]\noutput : list = [-6, -6, -6, 4, 4, -1]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(add_n([-4, -4, -4, -2, -2, -3],2)),5),4))",
    "io_inp": [
      -4,
      -4,
      -4,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -6,
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(add_n(input,2)),5),4))"
  },
  {
    "input": "input : list = [-5, -4, -3, -4]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(drop([-5, -4, -3, -4],1),1),1),-2))",
    "io_inp": [
      -5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(drop(input,1),1),1),-2))"
  },
  {
    "input": "input : list = [-2, 0, 2, 1, -5]\noutput : list = [-2, 0, 2, 1, -5]",
    "output": "generated_output : list = reverse(reverse([-2, 0, 2, 1, -5]))",
    "io_inp": [
      -2,
      0,
      2,
      1,
      -5
    ],
    "io_out": [
      -2,
      0,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 1, -4, 5, -5]\noutput : list = [-2, -6, -10, -11, -12]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(reverse([-3, 1, -4, 5, -5]))),-4),3)",
    "io_inp": [
      -3,
      1,
      -4,
      5,
      -5
    ],
    "io_out": [
      -2,
      -6,
      -10,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(reverse(input))),-4),3)"
  },
  {
    "input": "input : list = [5, -3, -3, -4, 1, -2]\noutput : list = [17, 13, 13, 9, -3, -19]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(reverse(mul_n([5, -3, -3, -4, 1, -2],-4)))),-1)",
    "io_inp": [
      5,
      -3,
      -3,
      -4,
      1,
      -2
    ],
    "io_out": [
      17,
      13,
      13,
      9,
      -3,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(reverse(mul_n(input,-4)))),-1)"
  },
  {
    "input": "input : list = [1, -2, -1, -2, -5]\noutput : list = [-4, -6, -7, -7, -10]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_des([1, -2, -1, -2, -5])))),5)",
    "io_inp": [
      1,
      -2,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -6,
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-1, 0, 5, -1, -5, -4]\noutput : list = [-7, -6, -3, -3, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(add_n([-1, 0, 5, -1, -5, -4],-2)),1)))",
    "io_inp": [
      -1,
      0,
      5,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(add_n(input,-2)),1)))"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [1, -8]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(drop([-1, 4, -5],1),3),21)))",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(drop(input,1),3),21)))"
  },
  {
    "input": "input : list = [5, 3, 5, 2]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(mul_n([5, 3, 5, 2],-1),-4)),1),3)",
    "io_inp": [
      5,
      3,
      5,
      2
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(mul_n(input,-1),-4)),1),3)"
  },
  {
    "input": "input : list = [-1, -5, 5, -2, 4, -5]\noutput : list = [-9]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(sort_asc([-1, -5, 5, -2, 4, -5])),4)),1)",
    "io_inp": [
      -1,
      -5,
      5,
      -2,
      4,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(sort_asc(input)),4)),1)"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = mul_n(sort_des([-5, 0, -1]),1)",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n([4, 1],5),-4))))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n(input,5),-4))))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [15, -5]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_des([0, -4]),-1),-5)))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_des(input),-1),-5)))"
  },
  {
    "input": "input : list = [4, 5, 3, 4, 3]\noutput : list = [6, 7, 5, 6, 5]",
    "output": "generated_output : list = sub_n([4, 5, 3, 4, 3],-2)",
    "io_inp": [
      4,
      5,
      3,
      4,
      3
    ],
    "io_out": [
      6,
      7,
      5,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -5, -1, 4, -1]\noutput : list = [32, -8, 32, 64, 64]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse([-5, -5, -1, 4, -1]),-3),-4),2)",
    "io_inp": [
      -5,
      -5,
      -1,
      4,
      -1
    ],
    "io_out": [
      32,
      -8,
      32,
      64,
      64
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(input),-3),-4),2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [10, 10]",
    "output": "generated_output : list = mul_n(add_n([1, 1],4),2)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-10]",
    "output": "generated_output : list = take(take(sort_asc(add_n(add_n([-1, -5],-3),-2)),1),16)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(add_n(input,-3),-2)),1),16)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [3, -3, -5]",
    "output": "generated_output : list = take(reverse([-5, -3, 3]),7)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(input),7)"
  },
  {
    "input": "input : list = [2, -2, -4, 5, -3]\noutput : list = [1, -2, -6, -7, -8]",
    "output": "generated_output : list = sub_n(take(sort_des([2, -2, -4, 5, -3]),6),4)",
    "io_inp": [
      2,
      -2,
      -4,
      5,
      -3
    ],
    "io_out": [
      1,
      -2,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),6),4)"
  },
  {
    "input": "input : list = [-4, -5, 4]\noutput : list = [35, 40, -5]",
    "output": "generated_output : list = mul_n(sub_n([-4, -5, 4],3),-5)",
    "io_inp": [
      -4,
      -5,
      4
    ],
    "io_out": [
      35,
      40,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-5)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-21, -12]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(add_n([-4, -1],-3))),24),3)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -21,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(add_n(input,-3))),24),3)"
  },
  {
    "input": "input : list = [4, 1, 2, 1]\noutput : list = [0, -6, -4, -6]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(mul_n([4, 1, 2, 1],1),3),3),-4),2)",
    "io_inp": [
      4,
      1,
      2,
      1
    ],
    "io_out": [
      0,
      -6,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(mul_n(input,1),3),3),-4),2)"
  },
  {
    "input": "input : list = [5, -3, -5, -4, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = take([5, -3, -5, -4, 5],2)",
    "io_inp": [
      5,
      -3,
      -5,
      -4,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -1, 2, -1, -1]\noutput : list = [4, 4, 4, -8, -8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(mul_n([2, -1, 2, -1, -1],2)))),-2)",
    "io_inp": [
      2,
      -1,
      2,
      -1,
      -1
    ],
    "io_out": [
      4,
      4,
      4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(mul_n(input,2)))),-2)"
  },
  {
    "input": "input : list = [-5, 4, -3, 4, -4]\noutput : list = [-8, -7, -6, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(mul_n([-5, 4, -3, 4, -4],1))),-3))",
    "io_inp": [
      -5,
      4,
      -3,
      4,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(mul_n(input,1))),-3))"
  },
  {
    "input": "input : list = [4, 0, 2, 2]\noutput : list = [0, 0, -2, 2]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(sub_n([4, 0, 2, 2],-1),-1)),32),-4)",
    "io_inp": [
      4,
      0,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(sub_n(input,-1),-1)),32),-4)"
  },
  {
    "input": "input : list = [-5, 4, 2, 1, 4, -2]\noutput : list = [-2, 4, 1, 2, 4, -5]",
    "output": "generated_output : list = reverse([-5, 4, 2, 1, 4, -2])",
    "io_inp": [
      -5,
      4,
      2,
      1,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      1,
      2,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [2, -5]",
    "output": "generated_output : list = reverse(drop([3, -5, 2],1))",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [5, 2, 2, 2]\noutput : list = [-3, -3, -3, 0]",
    "output": "generated_output : list = sort_asc(add_n([5, 2, 2, 2],-5))",
    "io_inp": [
      5,
      2,
      2,
      2
    ],
    "io_out": [
      -3,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(reverse(take(take([1, -4, -5],1),12)))",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(input,1),12)))"
  },
  {
    "input": "input : list = [1, -5, -1, 3, 1]\noutput : list = [-2, -4, -4, -6, -10]",
    "output": "generated_output : list = sort_des(reverse(sub_n([1, -5, -1, 3, 1],5)))",
    "io_inp": [
      1,
      -5,
      -1,
      3,
      1
    ],
    "io_out": [
      -2,
      -4,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,5)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [30]",
    "output": "generated_output : list = mul_n(reverse(drop(mul_n(sort_asc([5, -4, 2]),2),2)),3)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(mul_n(sort_asc(input),2),2)),3)"
  },
  {
    "input": "input : list = [-2, 0, 4, -1]\noutput : list = [21, 9, 6, 3]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_des(add_n([-2, 0, 4, -1],3)),-3),-1),23)",
    "io_inp": [
      -2,
      0,
      4,
      -1
    ],
    "io_out": [
      21,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_des(add_n(input,3)),-3),-1),23)"
  },
  {
    "input": "input : list = [-3, 5, 1, -1, 1]\noutput : list = [-3, 5, 1]",
    "output": "generated_output : list = take([-3, 5, 1, -1, 1],3)",
    "io_inp": [
      -3,
      5,
      1,
      -1,
      1
    ],
    "io_out": [
      -3,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, -1, 4, 0, -3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(drop([0, -1, 4, 0, -3],3))",
    "io_inp": [
      0,
      -1,
      4,
      0,
      -3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [3, -4, -4, -2]\noutput : list = [6, -4, -8, -8]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(mul_n([3, -4, -4, -2],2)),5),5))",
    "io_inp": [
      3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      6,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(mul_n(input,2)),5),5))"
  },
  {
    "input": "input : list = [-5, -3, -3, -5, 2, -2]\noutput : list = [-5, -5, -3, -3, -2, 2]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_asc(reverse([-5, -3, -3, -5, 2, -2])),-3),2),-1)",
    "io_inp": [
      -5,
      -3,
      -3,
      -5,
      2,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_asc(reverse(input)),-3),2),-1)"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [16, 4, -20]",
    "output": "generated_output : list = mul_n([-4, -1, 5],-4)",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      16,
      4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, -4, 5, 1, -4, -3]\noutput : list = [1, -3, -8, -7]",
    "output": "generated_output : list = sub_n(drop([0, -4, 5, 1, -4, -3],2),4)",
    "io_inp": [
      0,
      -4,
      5,
      1,
      -4,
      -3
    ],
    "io_out": [
      1,
      -3,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),4)"
  },
  {
    "input": "input : list = [-3, 1, -5, 5]\noutput : list = [-8, -6, -2, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(sort_asc([-3, 1, -5, 5]),1)),-2))",
    "io_inp": [
      -3,
      1,
      -5,
      5
    ],
    "io_out": [
      -8,
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(sort_asc(input),1)),-2))"
  },
  {
    "input": "input : list = [-2, 2, -5, 3, 2, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(take([-2, 2, -5, 3, 2, -1],1),3),3)))",
    "io_inp": [
      -2,
      2,
      -5,
      3,
      2,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(take(input,1),3),3)))"
  },
  {
    "input": "input : list = [-2, 3, -2, 3]\noutput : list = [-1, -6, -1, -6]",
    "output": "generated_output : list = sub_n(reverse([-2, 3, -2, 3]),4)",
    "io_inp": [
      -2,
      3,
      -2,
      3
    ],
    "io_out": [
      -1,
      -6,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-6, 10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([-5, 3])),-2)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [2, 6, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sort_des([-5, -1, 3]),5),2)))",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(sort_des(input),5),2)))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [8, -8]",
    "output": "generated_output : list = mul_n(take(mul_n(take(sort_des([2, -2]),8),4),24),1)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(sort_des(input),8),4),24),1)"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [-5, 5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(drop([4, -1, 1],1)))),5)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(drop(input,1)))),5)"
  },
  {
    "input": "input : list = [-2, 0, -3, -2, 2]\noutput : list = [0, 2, -1, 0, 4]",
    "output": "generated_output : list = add_n([-2, 0, -3, -2, 2],2)",
    "io_inp": [
      -2,
      0,
      -3,
      -2,
      2
    ],
    "io_out": [
      0,
      2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [3, 3, -4, -2]\noutput : list = [13, 5, -15, -15]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n(sort_des([3, 3, -4, -2]),-4)),4),3)",
    "io_inp": [
      3,
      3,
      -4,
      -2
    ],
    "io_out": [
      13,
      5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(sort_des(input),-4)),4),3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-25, -15]",
    "output": "generated_output : list = mul_n(sort_asc([-5, -3]),5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [5, 0, -1, 4, 2]\noutput : list = [-45, 0, 90, 180, 225]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sort_des([5, 0, -1, 4, 2]),3)),-5),-3)",
    "io_inp": [
      5,
      0,
      -1,
      4,
      2
    ],
    "io_out": [
      -45,
      0,
      90,
      180,
      225
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sort_des(input),3)),-5),-3)"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [6, 5, 4]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(reverse([2, 4, 3])),11),-2),4)",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(reverse(input)),11),-2),4)"
  },
  {
    "input": "input : list = [-2, -3, -2, -4]\noutput : list = [-4, -2, -3, -2]",
    "output": "generated_output : list = reverse([-2, -3, -2, -4])",
    "io_inp": [
      -2,
      -3,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = drop([-3, -4, -5],1)",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [-1, -1, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-2, 1, 1])),2)",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [12]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(take([5, -4, -1],1))),-5),-2)",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(take(input,1))),-5),-2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-1, -9]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n([3, -5],-4)))))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -1,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [0, -3, 1]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_asc([0, -3, 1]),-1))))",
    "io_inp": [
      0,
      -3,
      1
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [1, 0, -3, -5, 3, -4]\noutput : list = [20, -15, 25, 15, 0, -5]",
    "output": "generated_output : list = reverse(mul_n([1, 0, -3, -5, 3, -4],-5))",
    "io_inp": [
      1,
      0,
      -3,
      -5,
      3,
      -4
    ],
    "io_out": [
      20,
      -15,
      25,
      15,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [2, 3, -3, 5, 4]\noutput : list = [16, 12, -8]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(mul_n([2, 3, -3, 5, 4],-4),-4),3),-1))",
    "io_inp": [
      2,
      3,
      -3,
      5,
      4
    ],
    "io_out": [
      16,
      12,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(mul_n(input,-4),-4),3),-1))"
  },
  {
    "input": "input : list = [3, 3, 2]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(take([3, 3, 2],1)),-5)),-5)",
    "io_inp": [
      3,
      3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(take(input,1)),-5)),-5)"
  },
  {
    "input": "input : list = [-1, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop([-1, -2, 4],1)",
    "io_inp": [
      -1,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(add_n([1, -2],-2)))))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-3, 3, 5, -5, 1, 1]\noutput : list = [-6, 0, 2]",
    "output": "generated_output : list = sub_n(take(take(take(take([-3, 3, 5, -5, 1, 1],3),9),5),17),3)",
    "io_inp": [
      -3,
      3,
      5,
      -5,
      1,
      1
    ],
    "io_out": [
      -6,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(take(input,3),9),5),17),3)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [-10, -7, -5]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(sub_n([-1, 1, -4],3)),3)),10)",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      -10,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(sub_n(input,3)),3)),10)"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [9, 8, 7]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(sub_n([3, 2, 4],-5)))),10)",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      9,
      8,
      7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(sub_n(input,-5)))),10)"
  },
  {
    "input": "input : list = [3, -1, -4, -2, 2, 4]\noutput : list = [40, 30, 20, -10, -20, -40]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(mul_n([3, -1, -4, -2, 2, 4],5)),2)))",
    "io_inp": [
      3,
      -1,
      -4,
      -2,
      2,
      4
    ],
    "io_out": [
      40,
      30,
      20,
      -10,
      -20,
      -40
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(mul_n(input,5)),2)))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-6, -3]",
    "output": "generated_output : list = take(reverse(sub_n(take(drop([-1, -1, -4],1),6),2)),34)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(drop(input,1),6),2)),34)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [4, 13]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(drop([0, -4, 5],1),-4)),-4)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      4,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(drop(input,1),-4)),-4)"
  },
  {
    "input": "input : list = [2, 0, -5, 1, 5, 1]\noutput : list = [2, 0]",
    "output": "generated_output : list = take([2, 0, -5, 1, 5, 1],2)",
    "io_inp": [
      2,
      0,
      -5,
      1,
      5,
      1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -2, 1, -5, 5, 2]\noutput : list = [6, 4, 0, -6]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(add_n([-4, -2, 1, -5, 5, 2],1),-1)),-2),4)",
    "io_inp": [
      -4,
      -2,
      1,
      -5,
      5,
      2
    ],
    "io_out": [
      6,
      4,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(add_n(input,1),-1)),-2),4)"
  },
  {
    "input": "input : list = [1, -4, -2, 4, 0, -1]\noutput : list = [-15, -11, -9, -7, -5, 1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_asc([1, -4, -2, 4, 0, -1]),2),-3)),4)",
    "io_inp": [
      1,
      -4,
      -2,
      4,
      0,
      -1
    ],
    "io_out": [
      -15,
      -11,
      -9,
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_asc(input),2),-3)),4)"
  },
  {
    "input": "input : list = [1, -1, 2, -4, -4, 4]\noutput : list = [0, -2, 1, -5, -5]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(sub_n([1, -1, 2, -4, -4, 4],-4),4),-3),4),5)",
    "io_inp": [
      1,
      -1,
      2,
      -4,
      -4,
      4
    ],
    "io_out": [
      0,
      -2,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(sub_n(input,-4),4),-3),4),5)"
  },
  {
    "input": "input : list = [-4, 0, -2, -3]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des([-4, 0, -2, -3]),1)),-3)",
    "io_inp": [
      -4,
      0,
      -2,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(input),1)),-3)"
  },
  {
    "input": "input : list = [3, 1, -1, -4, -5]\noutput : list = [-2, -1, 2, 4, 6]",
    "output": "generated_output : list = reverse(sub_n([3, 1, -1, -4, -5],-3))",
    "io_inp": [
      3,
      1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [29, 17]",
    "output": "generated_output : list = add_n(take(mul_n(sort_des(add_n([-4, 5, 2],1)),4),2),5)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      29,
      17
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_des(add_n(input,1)),4),2),5)"
  },
  {
    "input": "input : list = [-5, 4, -2, 4, -1]\noutput : list = [9, 9, 4, 3, 0]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(sort_asc([-5, 4, -2, 4, -1]),4))),1)",
    "io_inp": [
      -5,
      4,
      -2,
      4,
      -1
    ],
    "io_out": [
      9,
      9,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(sort_asc(input),4))),1)"
  },
  {
    "input": "input : list = [-3, 5, 4, -5]\noutput : list = [-15, -9, 12, 15]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc(sort_des([-3, 5, 4, -5]))),11),3)",
    "io_inp": [
      -3,
      5,
      4,
      -5
    ],
    "io_out": [
      -15,
      -9,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(sort_des(input))),11),3)"
  },
  {
    "input": "input : list = [1, -4, -2]\noutput : list = [16, 8, -4]",
    "output": "generated_output : list = take(mul_n(take(reverse(sort_des([1, -4, -2])),24),-4),37)",
    "io_inp": [
      1,
      -4,
      -2
    ],
    "io_out": [
      16,
      8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(sort_des(input)),24),-4),37)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [0, -4, -5]",
    "output": "generated_output : list = take(reverse(reverse(add_n(sort_des([-2, -1, 3]),-3))),38)",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(sort_des(input),-3))),38)"
  },
  {
    "input": "input : list = [-5, -2, 3, -3, -5]\noutput : list = [3, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(sort_asc([-5, -2, 3, -3, -5]),21)),24))",
    "io_inp": [
      -5,
      -2,
      3,
      -3,
      -5
    ],
    "io_out": [
      3,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(sort_asc(input),21)),24))"
  },
  {
    "input": "input : list = [-3, 1, 1, -5, 2, -1]\noutput : list = [-2, 1, -6, 0, 0, -4]",
    "output": "generated_output : list = reverse(add_n([-3, 1, 1, -5, 2, -1],-1))",
    "io_inp": [
      -3,
      1,
      1,
      -5,
      2,
      -1
    ],
    "io_out": [
      -2,
      1,
      -6,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-5, -3, -5, 5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(reverse(drop([-5, -3, -5, 5, 2],3)),6)",
    "io_inp": [
      -5,
      -3,
      -5,
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(drop(input,3)),6)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [2, 10]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(add_n([-4, 0],1)),-2),-4),14)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      2,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(add_n(input,1)),-2),-4),14)"
  },
  {
    "input": "input : list = [3, -3, 0, 1]\noutput : list = [150, 0, -75, -300]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(sub_n([3, -3, 0, 1],1),-5),-3)),5)",
    "io_inp": [
      3,
      -3,
      0,
      1
    ],
    "io_out": [
      150,
      0,
      -75,
      -300
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(sub_n(input,1),-5),-3)),5)"
  },
  {
    "input": "input : list = [5, -3, -3, 1, -2]\noutput : list = [5, 1, -2, -3, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc([5, -3, -3, 1, -2])),8)",
    "io_inp": [
      5,
      -3,
      -3,
      1,
      -2
    ],
    "io_out": [
      5,
      1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),8)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sub_n([-4, -4],-2)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 0, 4, 3, 3, -1]\noutput : list = [1, 5, 5, 6, 2, -1]",
    "output": "generated_output : list = sub_n(take(take(sub_n(reverse([-3, 0, 4, 3, 3, -1]),-5),33),9),3)",
    "io_inp": [
      -3,
      0,
      4,
      3,
      3,
      -1
    ],
    "io_out": [
      1,
      5,
      5,
      6,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(reverse(input),-5),33),9),3)"
  },
  {
    "input": "input : list = [-2, 5, 5, -1, 2]\noutput : list = [-5, -5, -8, -11, -12]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(reverse([-2, 5, 5, -1, 2]),1)),5),-4)",
    "io_inp": [
      -2,
      5,
      5,
      -1,
      2
    ],
    "io_out": [
      -5,
      -5,
      -8,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(reverse(input),1)),5),-4)"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [-4, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc([0, 4, -5]),-1)",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      -4,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [6, 5, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(mul_n([-5, -4, -1],-1)))),1)",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(mul_n(input,-1)))),1)"
  },
  {
    "input": "input : list = [-4, 3, 0, -2]\noutput : list = [7, 4, 2, 0]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(sort_des([-4, 3, 0, -2])),4),-1),-5)",
    "io_inp": [
      -4,
      3,
      0,
      -2
    ],
    "io_out": [
      7,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(sort_des(input)),4),-1),-5)"
  },
  {
    "input": "input : list = [-3, 5, 0, -4, -4, 1]\noutput : list = [1, 9, 4, 0, 0, 5]",
    "output": "generated_output : list = add_n([-3, 5, 0, -4, -4, 1],4)",
    "io_inp": [
      -3,
      5,
      0,
      -4,
      -4,
      1
    ],
    "io_out": [
      1,
      9,
      4,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-3, 4, -2, -3, -5, 3]\noutput : list = [-21, -42, -24, -21, -15, -39]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(sub_n([-3, 4, -2, -3, -5, 3],-4),-2),4),-4),-3)",
    "io_inp": [
      -3,
      4,
      -2,
      -3,
      -5,
      3
    ],
    "io_out": [
      -21,
      -42,
      -24,
      -21,
      -15,
      -39
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(sub_n(input,-4),-2),4),-4),-3)"
  },
  {
    "input": "input : list = [0, -5, -2, -2, 4]\noutput : list = [4, 0, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([0, -5, -2, -2, 4]))",
    "io_inp": [
      0,
      -5,
      -2,
      -2,
      4
    ],
    "io_out": [
      4,
      0,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, 0, 4, -4]\noutput : list = [6, 1, 5, -3]",
    "output": "generated_output : list = take(add_n([5, 0, 4, -4],1),14)",
    "io_inp": [
      5,
      0,
      4,
      -4
    ],
    "io_out": [
      6,
      1,
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),14)"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [-7, 0, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(sort_asc([5, -4, -2]),2))),-1)",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      -7,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(sort_asc(input),2))),-1)"
  },
  {
    "input": "input : list = [0, -1, 0, 0, -5, -4]\noutput : list = [-5, -4, -1, 0, 0, 0]",
    "output": "generated_output : list = sort_asc([0, -1, 0, 0, -5, -4])",
    "io_inp": [
      0,
      -1,
      0,
      0,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, -1, 1, 5]\noutput : list = [-1, 2, 4, 8, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(add_n([5, -4, -1, 1, 5],3)))))",
    "io_inp": [
      5,
      -4,
      -1,
      1,
      5
    ],
    "io_out": [
      -1,
      2,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [-2, 4, -1, 5, -1, -2]\noutput : list = [5, 4, -1, -1, -2, -2]",
    "output": "generated_output : list = sort_des([-2, 4, -1, 5, -1, -2])",
    "io_inp": [
      -2,
      4,
      -1,
      5,
      -1,
      -2
    ],
    "io_out": [
      5,
      4,
      -1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, 5, 5, 3]\noutput : list = [-4, -3, 5]",
    "output": "generated_output : list = take([-4, -3, 5, 5, 3],3)",
    "io_inp": [
      -4,
      -3,
      5,
      5,
      3
    ],
    "io_out": [
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 5, 2, -4]\noutput : list = [4, -6]",
    "output": "generated_output : list = sort_des(add_n(take(take(take([-5, 5, 2, -4],2),10),11),-1))",
    "io_inp": [
      -5,
      5,
      2,
      -4
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(take(input,2),10),11),-1))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-21, -18]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sub_n([4, 3],-3),-3))))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -21,
      -18
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sub_n(input,-3),-3))))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-8, -3]",
    "output": "generated_output : list = take(reverse(reverse(sub_n([-4, 1],4))),11)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(input,4))),11)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(add_n(sort_des([-4, -3]),5),14)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),5),14)"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [0, 4, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des(sort_asc([-4, 5, 0])))),4)",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      0,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [2, 0, 3, -3, 3]\noutput : list = [-10, 0, -15, 15, -15]",
    "output": "generated_output : list = mul_n([2, 0, 3, -3, 3],-5)",
    "io_inp": [
      2,
      0,
      3,
      -3,
      3
    ],
    "io_out": [
      -10,
      0,
      -15,
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -2, 4, 3, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(reverse(reverse(take(take([-2, -2, 4, 3, -4],2),2))),9)",
    "io_inp": [
      -2,
      -2,
      4,
      3,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(take(input,2),2))),9)"
  },
  {
    "input": "input : list = [4, 5, 4, -5, -4]\noutput : list = [-3, -4, -4, -12, -13]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(sort_des([4, 5, 4, -5, -4])),-4),1),-4)",
    "io_inp": [
      4,
      5,
      4,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(sort_des(input)),-4),1),-4)"
  },
  {
    "input": "input : list = [-2, -1, 3, -2, 4, -4]\noutput : list = [8]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(take([-2, -1, 3, -2, 4, -4],1)),5),-5))",
    "io_inp": [
      -2,
      -1,
      3,
      -2,
      4,
      -4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(take(input,1)),5),-5))"
  },
  {
    "input": "input : list = [-4, -4, 1, 2, 2, 5]\noutput : list = [21, 9, 9, 5, -15, -15]",
    "output": "generated_output : list = sub_n(reverse(mul_n([-4, -4, 1, 2, 2, 5],4)),-1)",
    "io_inp": [
      -4,
      -4,
      1,
      2,
      2,
      5
    ],
    "io_out": [
      21,
      9,
      9,
      5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,4)),-1)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [6, 4, 2]",
    "output": "generated_output : list = mul_n(sort_des([2, 3, 1]),2)",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-1, -5],4)))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,4)))"
  },
  {
    "input": "input : list = [5, 0, -5, -5]\noutput : list = [-24, -9, 6, 6]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n([5, 0, -5, -5],-3))),-3)",
    "io_inp": [
      5,
      0,
      -5,
      -5
    ],
    "io_out": [
      -24,
      -9,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(input,-3))),-3)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-15, -12, 3]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sort_des([-1, 5, 4]))),-3),26)",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -15,
      -12,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sort_des(input))),-3),26)"
  },
  {
    "input": "input : list = [-3, 2, -5, 2, -3, 5]\noutput : list = [2, -3, 5]",
    "output": "generated_output : list = drop([-3, 2, -5, 2, -3, 5],3)",
    "io_inp": [
      -3,
      2,
      -5,
      2,
      -3,
      5
    ],
    "io_out": [
      2,
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, -4, -4, 3, -5, 1]\noutput : list = [-1, 5, 7]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(drop([1, -4, -4, 3, -5, 1],3))),4),1)",
    "io_inp": [
      1,
      -4,
      -4,
      3,
      -5,
      1
    ],
    "io_out": [
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(drop(input,3))),4),1)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, -1, 1]\noutput : list = [-1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([3, 2, -1, 1]))",
    "io_inp": [
      3,
      2,
      -1,
      1
    ],
    "io_out": [
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-10, 0]",
    "output": "generated_output : list = sub_n(mul_n([-1, 1],5),5)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(add_n([0, 1],-2)))),-4)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(add_n(input,-2)))),-4)"
  },
  {
    "input": "input : list = [1, 1, -3, 3, 1, 2]\noutput : list = [2, 1, 3, -3, 1, 1]",
    "output": "generated_output : list = reverse([1, 1, -3, 3, 1, 2])",
    "io_inp": [
      1,
      1,
      -3,
      3,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, -3, 1]\noutput : list = [1, -1, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc([-1, -1, -3, 1]))",
    "io_inp": [
      -1,
      -1,
      -3,
      1
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -3, -2]\noutput : list = [-6, -6, -5]",
    "output": "generated_output : list = sub_n([-3, -3, -2],3)",
    "io_inp": [
      -3,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-27, -22]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(drop([3, -2, -1],1),4),5),29),3)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -27,
      -22
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(drop(input,1),4),5),29),3)"
  },
  {
    "input": "input : list = [5, 3, 5, 4, -4]\noutput : list = [-15, -25]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(take([5, 3, 5, 4, -4],2),-1),5)))",
    "io_inp": [
      5,
      3,
      5,
      4,
      -4
    ],
    "io_out": [
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(take(input,2),-1),5)))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(reverse([-1, -1])),-1)))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [0, 3, -1, 2, 1, -1]\noutput : list = [6, 6, -6, -18, -30, -42]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(mul_n([0, 3, -1, 2, 1, -1],4)),-3),2),-4)",
    "io_inp": [
      0,
      3,
      -1,
      2,
      1,
      -1
    ],
    "io_out": [
      6,
      6,
      -6,
      -18,
      -30,
      -42
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(mul_n(input,4)),-3),2),-4)"
  },
  {
    "input": "input : list = [-1, -3, 1, 2]\noutput : list = [0, 8, 16, 20]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(sub_n([-1, -3, 1, 2],-5),2),13)),4)",
    "io_inp": [
      -1,
      -3,
      1,
      2
    ],
    "io_out": [
      0,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(sub_n(input,-5),2),13)),4)"
  },
  {
    "input": "input : list = [-2, -1, 1, 3]\noutput : list = [0, -12, -24]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(drop([-2, -1, 1, 3],1)),-1),-2),3)",
    "io_inp": [
      -2,
      -1,
      1,
      3
    ],
    "io_out": [
      0,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(drop(input,1)),-1),-2),3)"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(drop(sort_asc(sub_n(reverse([-1, 3, 2]),1)),2),4)",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(sub_n(reverse(input),1)),2),4)"
  },
  {
    "input": "input : list = [-2, 1, 4]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 1, 4],1)",
    "io_inp": [
      -2,
      1,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 1, 0, 1, 5]\noutput : list = [-60, -140, -160, -140, -60]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(add_n([5, 1, 0, 1, 5],-3),5),4),5))",
    "io_inp": [
      5,
      1,
      0,
      1,
      5
    ],
    "io_out": [
      -60,
      -140,
      -160,
      -140,
      -60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(add_n(input,-3),5),4),5))"
  },
  {
    "input": "input : list = [1, -5, 5, -5, -1]\noutput : list = [-1, -5, -7, -11, -11]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc([1, -5, 5, -5, -1]),4),-2)))",
    "io_inp": [
      1,
      -5,
      5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -7,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc(input),4),-2)))"
  },
  {
    "input": "input : list = [-3, 4, -4, -2, -3]\noutput : list = [15, -75, -90, -90, -105]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(sub_n([-3, 4, -4, -2, -3],3),5),3)),31)",
    "io_inp": [
      -3,
      4,
      -4,
      -2,
      -3
    ],
    "io_out": [
      15,
      -75,
      -90,
      -90,
      -105
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(sub_n(input,3),5),3)),31)"
  },
  {
    "input": "input : list = [0, 2, 3, 0, 3, 0]\noutput : list = [1, 1, 1, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(sort_des([0, 2, 3, 0, 3, 0]),1))),28)",
    "io_inp": [
      0,
      2,
      3,
      0,
      3,
      0
    ],
    "io_out": [
      1,
      1,
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(sort_des(input),1))),28)"
  },
  {
    "input": "input : list = [-2, 5, 2, -5]\noutput : list = [-5, -2, 2, 5]",
    "output": "generated_output : list = take(sort_asc([-2, 5, 2, -5]),19)",
    "io_inp": [
      -2,
      5,
      2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),19)"
  },
  {
    "input": "input : list = [-2, 5, 1, 3]\noutput : list = [1, -1, 3, -4]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n([-2, 5, 1, 3],5),17),-3))",
    "io_inp": [
      -2,
      5,
      1,
      3
    ],
    "io_out": [
      1,
      -1,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(input,5),17),-3))"
  },
  {
    "input": "input : list = [-1, -3, 5, -3, 1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop(sort_des(sort_des(take(sort_des([-1, -3, 5, -3, 1]),17))),3)",
    "io_inp": [
      -1,
      -3,
      5,
      -3,
      1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(take(sort_des(input),17))),3)"
  },
  {
    "input": "input : list = [-4, -2, -3, 3, -4]\noutput : list = [25, -10, 20, 15, 25]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(add_n([-4, -2, -3, 3, -4],-1)))),-5)",
    "io_inp": [
      -4,
      -2,
      -3,
      3,
      -4
    ],
    "io_out": [
      25,
      -10,
      20,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(add_n(input,-1)))),-5)"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(mul_n([5, 2, 1],-1))),3),22)",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(mul_n(input,-1))),3),22)"
  },
  {
    "input": "input : list = [4, 3, -4, 0, -4]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n(add_n(drop(reverse(reverse([4, 3, -4, 0, -4])),3),2),-1)",
    "io_inp": [
      4,
      3,
      -4,
      0,
      -4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(reverse(reverse(input)),3),2),-1)"
  },
  {
    "input": "input : list = [0, 5, 4, 5, -3, 0]\noutput : list = [3, 0, 0, -4, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(mul_n([0, 5, 4, 5, -3, 0],-1)))))",
    "io_inp": [
      0,
      5,
      4,
      5,
      -3,
      0
    ],
    "io_out": [
      3,
      0,
      0,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [-1, 4, 2, 4, 0, 5]\noutput : list = [2, 1, 1, -1, -3, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(sub_n([-1, 4, 2, 4, 0, 5],4)),-1)),19)",
    "io_inp": [
      -1,
      4,
      2,
      4,
      0,
      5
    ],
    "io_out": [
      2,
      1,
      1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(sub_n(input,4)),-1)),19)"
  },
  {
    "input": "input : list = [2, -5, 4, 0]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -5, 4, 0],1)",
    "io_inp": [
      2,
      -5,
      4,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 5, 0, 2]\noutput : list = [-20, -8, -4, 0]",
    "output": "generated_output : list = reverse(take(mul_n(mul_n(sort_asc([1, 5, 0, 2]),-2),2),35))",
    "io_inp": [
      1,
      5,
      0,
      2
    ],
    "io_out": [
      -20,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(mul_n(sort_asc(input),-2),2),35))"
  },
  {
    "input": "input : list = [4, 2, 2]\noutput : list = [-2]",
    "output": "generated_output : list = drop(mul_n(sort_des([4, 2, 2]),-1),2)",
    "io_inp": [
      4,
      2,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_des(input),-1),2)"
  },
  {
    "input": "input : list = [0, 3, 3, 0, 5, 1]\noutput : list = [5, 5, 7, 11, 11, 15]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(sort_asc([0, 3, 3, 0, 5, 1])),2),10),-5)",
    "io_inp": [
      0,
      3,
      3,
      0,
      5,
      1
    ],
    "io_out": [
      5,
      5,
      7,
      11,
      11,
      15
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(sort_asc(input)),2),10),-5)"
  },
  {
    "input": "input : list = [-4, 4, -1, 2, -5]\noutput : list = [59, -37, 23, -13, 71]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(mul_n([-4, 4, -1, 2, -5],3),2),-4),-5),-2)",
    "io_inp": [
      -4,
      4,
      -1,
      2,
      -5
    ],
    "io_out": [
      59,
      -37,
      23,
      -13,
      71
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(mul_n(input,3),2),-4),-5),-2)"
  },
  {
    "input": "input : list = [5, 3, 2, 5, -2, -1]\noutput : list = [-24, -24, -20, -18, -12, -10]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n([5, 3, 2, 5, -2, -1],5))),2),-2)",
    "io_inp": [
      5,
      3,
      2,
      5,
      -2,
      -1
    ],
    "io_out": [
      -24,
      -24,
      -20,
      -18,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n(input,5))),2),-2)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des([-3, -1])",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, 4, 2, 1, -3]\noutput : list = [4, 2, 1, 1, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc([-2, 1, 4, 2, 1, -3]))",
    "io_inp": [
      -2,
      1,
      4,
      2,
      1,
      -3
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 3, 5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(take([-1, 3, 5],1),-3))),-1)",
    "io_inp": [
      -1,
      3,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(take(input,1),-3))),-1)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(take(add_n(add_n(sort_des([-1, 1]),1),1),29))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(sort_des(input),1),1),29))"
  },
  {
    "input": "input : list = [2, 3, -1, 1, -4]\noutput : list = [-5, -2, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n([2, 3, -1, 1, -4],1))",
    "io_inp": [
      2,
      3,
      -1,
      1,
      -4
    ],
    "io_out": [
      -5,
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [1, -5, -4, -3]\noutput : list = [24, 56, 64, 72]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(sort_des([1, -5, -4, -3]),-2),3),5),4)",
    "io_inp": [
      1,
      -5,
      -4,
      -3
    ],
    "io_out": [
      24,
      56,
      64,
      72
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(sort_des(input),-2),3),5),4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, -8]",
    "output": "generated_output : list = add_n(mul_n([0, -4],1),-4)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),-4)"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [-10, -7, -4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sub_n([-3, -2, -1],-3),-3)),4))",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      -10,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sub_n(input,-3),-3)),4))"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [25, 15, -5]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(sort_asc([5, 3, -1])),-5),-1),11)",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      25,
      15,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(sort_asc(input)),-5),-1),11)"
  },
  {
    "input": "input : list = [4, 2, -2, 5, 0]\noutput : list = [5, 10, 3, 7, 9]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(add_n([4, 2, -2, 5, 0],3),4)),-3),-1)",
    "io_inp": [
      4,
      2,
      -2,
      5,
      0
    ],
    "io_out": [
      5,
      10,
      3,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(add_n(input,3),4)),-3),-1)"
  },
  {
    "input": "input : list = [-2, -5, 0, 2, -4]\noutput : list = [11, 20, 5, -1, 17]",
    "output": "generated_output : list = add_n(mul_n([-2, -5, 0, 2, -4],-3),5)",
    "io_inp": [
      -2,
      -5,
      0,
      2,
      -4
    ],
    "io_out": [
      11,
      20,
      5,
      -1,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),5)"
  },
  {
    "input": "input : list = [-1, -2, 1]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = sort_des([-1, -2, 1])",
    "io_inp": [
      -1,
      -2,
      1
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -1, 5, 1]\noutput : list = [9, 1]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(drop([-3, -1, 5, 1],2),2),23),-1),-2)",
    "io_inp": [
      -3,
      -1,
      5,
      1
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(drop(input,2),2),23),-1),-2)"
  },
  {
    "input": "input : list = [-4, -2, -1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(drop([-4, -2, -1],1),2),-3)))",
    "io_inp": [
      -4,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(drop(input,1),2),-3)))"
  },
  {
    "input": "input : list = [3, 2, -1, -2, 3, 3]\noutput : list = [-1, -1, -1, -2, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([3, 2, -1, -2, 3, 3])),4)",
    "io_inp": [
      3,
      2,
      -1,
      -2,
      3,
      3
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-2, 2, -2, -5]\noutput : list = [-45, -21, 11, -21]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(mul_n([-2, 2, -2, -5],-2)),15),-4),5)",
    "io_inp": [
      -2,
      2,
      -2,
      -5
    ],
    "io_out": [
      -45,
      -21,
      11,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(mul_n(input,-2)),15),-4),5)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [-11, -15, -31]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sub_n([-3, 1, 2],5),4)),-2),1)",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      -11,
      -15,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sub_n(input,5),4)),-2),1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc([-3, 1]))),5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(input))),5)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(add_n([1, -5],1),5))))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(add_n(input,1),5))))"
  },
  {
    "input": "input : list = [3, 5, -3, 1, -1, 0]\noutput : list = [1, 3, 4, 5, 7, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(sub_n([3, 5, -3, 1, -1, 0],1),10),-5)))",
    "io_inp": [
      3,
      5,
      -3,
      1,
      -1,
      0
    ],
    "io_out": [
      1,
      3,
      4,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(sub_n(input,1),10),-5)))"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [0]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(take([3, -1, -4],1),5)),2))",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(take(input,1),5)),2))"
  },
  {
    "input": "input : list = [-5, 2, -3, 2, -5]\noutput : list = [-10, -3, -8, -3, -10]",
    "output": "generated_output : list = add_n(add_n([-5, 2, -3, 2, -5],-4),-1)",
    "io_inp": [
      -5,
      2,
      -3,
      2,
      -5
    ],
    "io_out": [
      -10,
      -3,
      -8,
      -3,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-1, 1, -3]\noutput : list = [-8, -6, -4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-1, 1, -3],2),3))",
    "io_inp": [
      -1,
      1,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,2),3))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [180, -520]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n(mul_n([-5, 2],5),-4),-4),-5))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      180,
      -520
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(mul_n(input,5),-4),-4),-5))"
  },
  {
    "input": "input : list = [1, -1, 0, 3, 5, 2]\noutput : list = [5, 3, 2, 1, 0, -1]",
    "output": "generated_output : list = take(sort_des([1, -1, 0, 3, 5, 2]),15)",
    "io_inp": [
      1,
      -1,
      0,
      3,
      5,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),15)"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [-2, -4, -6]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sub_n([-3, -4, -2],-4),-1)),-1),2)",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sub_n(input,-4),-1)),-1),2)"
  },
  {
    "input": "input : list = [-2, 3, -3, 1]\noutput : list = [-15, 10]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(take([-2, 3, -3, 1],2),-5),24)))",
    "io_inp": [
      -2,
      3,
      -3,
      1
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(take(input,2),-5),24)))"
  },
  {
    "input": "input : list = [-1, -4, 2, -3]\noutput : list = [-4, -1]",
    "output": "generated_output : list = reverse(take([-1, -4, 2, -3],2))",
    "io_inp": [
      -1,
      -4,
      2,
      -3
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [5, 2, 5, 3]\noutput : list = [75, 125, 50, 125]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(mul_n([5, 2, 5, 3],5),6)),-5),-1)",
    "io_inp": [
      5,
      2,
      5,
      3
    ],
    "io_out": [
      75,
      125,
      50,
      125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(mul_n(input,5),6)),-5),-1)"
  },
  {
    "input": "input : list = [-3, 1, 1, -4]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(sub_n(take(take(drop([-3, 1, 1, -4],2),20),13),-1),11)",
    "io_inp": [
      -3,
      1,
      1,
      -4
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(drop(input,2),20),13),-1),11)"
  },
  {
    "input": "input : list = [3, -2, 2, -1, 1, 4]\noutput : list = [3, 2, 1, 0, -2, -3]",
    "output": "generated_output : list = sort_des(sub_n([3, -2, 2, -1, 1, 4],1))",
    "io_inp": [
      3,
      -2,
      2,
      -1,
      1,
      4
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,1))"
  },
  {
    "input": "input : list = [-1, -2, 3, 3, -5, 0]\noutput : list = [2, 2, -4, -6, -8, -14]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(mul_n([-1, -2, 3, 3, -5, 0],2)),-4)))",
    "io_inp": [
      -1,
      -2,
      3,
      3,
      -5,
      0
    ],
    "io_out": [
      2,
      2,
      -4,
      -6,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(mul_n(input,2)),-4)))"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-9, 7, 9]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(sub_n([-4, -3, 5],-2)),-2),38),5)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -9,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(sub_n(input,-2)),-2),38),5)"
  },
  {
    "input": "input : list = [-2, 5, 3, 4]\noutput : list = [2, -8, -10, -12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des([-2, 5, 3, 4]),-1),-2))",
    "io_inp": [
      -2,
      5,
      3,
      4
    ],
    "io_out": [
      2,
      -8,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(input),-1),-2))"
  },
  {
    "input": "input : list = [4, -2, 4, 4]\noutput : list = [20, 20, 20, -10]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(mul_n([4, -2, 4, 4],5)))))",
    "io_inp": [
      4,
      -2,
      4,
      4
    ],
    "io_out": [
      20,
      20,
      20,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [3, -2, -5, -1, 0, 0]\noutput : list = [0, 6, 8, 10, 10, 16]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(mul_n([3, -2, -5, -1, 0, 0],2),-5),5),15))",
    "io_inp": [
      3,
      -2,
      -5,
      -1,
      0,
      0
    ],
    "io_out": [
      0,
      6,
      8,
      10,
      10,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(mul_n(input,2),-5),5),15))"
  },
  {
    "input": "input : list = [3, 5, -5, 2, 3, 0]\noutput : list = [3, 9, -21, 0, 3, -6]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(reverse([3, 5, -5, 2, 3, 0]),3)),-2),-4)",
    "io_inp": [
      3,
      5,
      -5,
      2,
      3,
      0
    ],
    "io_out": [
      3,
      9,
      -21,
      0,
      3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(reverse(input),3)),-2),-4)"
  },
  {
    "input": "input : list = [-2, 0, 5, 5, -3, -4]\noutput : list = [5, 5, 0, -2]",
    "output": "generated_output : list = take(take(sort_des(drop(reverse([-2, 0, 5, 5, -3, -4]),2)),39),15)",
    "io_inp": [
      -2,
      0,
      5,
      5,
      -3,
      -4
    ],
    "io_out": [
      5,
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(drop(reverse(input),2)),39),15)"
  },
  {
    "input": "input : list = [0, 0, 5, 4, 5]\noutput : list = [5, 5, 4, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([0, 0, 5, 4, 5])))",
    "io_inp": [
      0,
      0,
      5,
      4,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 0, -5, 1, -3]\noutput : list = [-8, -6, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(sort_asc([-1, 0, -5, 1, -3]),3))))",
    "io_inp": [
      -1,
      0,
      -5,
      1,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(reverse([-2, -5, -3]),-1))),16)",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(reverse(input),-1))),16)"
  },
  {
    "input": "input : list = [-4, -2, -5, -2, -2, 5]\noutput : list = [8, 20, 8, 16]",
    "output": "generated_output : list = mul_n(reverse(take([-4, -2, -5, -2, -2, 5],4)),-4)",
    "io_inp": [
      -4,
      -2,
      -5,
      -2,
      -2,
      5
    ],
    "io_out": [
      8,
      20,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,4)),-4)"
  },
  {
    "input": "input : list = [-1, -5, 0, 3]\noutput : list = [-5, -1, 0, 3]",
    "output": "generated_output : list = sort_asc([-1, -5, 0, 3])",
    "io_inp": [
      -1,
      -5,
      0,
      3
    ],
    "io_out": [
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, 5, -1]\noutput : list = [8, 0, -12, -16]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(mul_n([1, 4, 5, -1],-4),-4),30)))",
    "io_inp": [
      1,
      4,
      5,
      -1
    ],
    "io_out": [
      8,
      0,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(mul_n(input,-4),-4),30)))"
  },
  {
    "input": "input : list = [-4, -2, -1, 5, 5, 1]\noutput : list = [-4, -2, -1, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -2, -1, 5, 5, 1]))",
    "io_inp": [
      -4,
      -2,
      -1,
      5,
      5,
      1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-8, -13]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(sub_n([1, 2],-3),-2),-5),-2))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -8,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(sub_n(input,-3),-2),-5),-2))"
  },
  {
    "input": "input : list = [4, 3, -2, -2, -4]\noutput : list = [9, -1, -3]",
    "output": "generated_output : list = add_n(drop(mul_n(take(reverse([4, 3, -2, -2, -4]),18),-2),2),5)",
    "io_inp": [
      4,
      3,
      -2,
      -2,
      -4
    ],
    "io_out": [
      9,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(take(reverse(input),18),-2),2),5)"
  },
  {
    "input": "input : list = [-4, -3, -3, -1, -4]\noutput : list = [0, -2, -2, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_des([-4, -3, -3, -1, -4])),-1)))",
    "io_inp": [
      -4,
      -3,
      -3,
      -1,
      -4
    ],
    "io_out": [
      0,
      -2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [-5, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([-5, -2, 1])))",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [4, -1, -5, -2]\noutput : list = [1, -4, -5, -8]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc([4, -1, -5, -2]),1)),3)",
    "io_inp": [
      4,
      -1,
      -5,
      -2
    ],
    "io_out": [
      1,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(input),1)),3)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(take([-4, 1, 3],1),-4),-5)),-2)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(take(input,1),-4),-5)),-2)"
  },
  {
    "input": "input : list = [-5, -3, 5, 2, 5, -1]\noutput : list = [-50, -50, -20, 10, 30, 50]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(mul_n([-5, -3, 5, 2, 5, -1],-5)),2),30))",
    "io_inp": [
      -5,
      -3,
      5,
      2,
      5,
      -1
    ],
    "io_out": [
      -50,
      -50,
      -20,
      10,
      30,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(mul_n(input,-5)),2),30))"
  },
  {
    "input": "input : list = [-2, 3, -5, 0, 3]\noutput : list = [-6, -1, -9, -4, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n([-2, 3, -5, 0, 3],1)),-4))",
    "io_inp": [
      -2,
      3,
      -5,
      0,
      3
    ],
    "io_out": [
      -6,
      -1,
      -9,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(input,1)),-4))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(sort_des([-3, 2])))))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 2, 3, -5, 3, 4]\noutput : list = [5, 4, 3, 3, 2, -5]",
    "output": "generated_output : list = sort_des([5, 2, 3, -5, 3, 4])",
    "io_inp": [
      5,
      2,
      3,
      -5,
      3,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, 0, 1, 5]\noutput : list = [-8, -5, -5, -4, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_asc([0, -3, 0, 1, 5]))),5),1)",
    "io_inp": [
      0,
      -3,
      0,
      1,
      5
    ],
    "io_out": [
      -8,
      -5,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_asc(input))),5),1)"
  },
  {
    "input": "input : list = [5, -3, -4]\noutput : list = [9, 8, 0]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des([5, -3, -4]),-1)),-5)",
    "io_inp": [
      5,
      -3,
      -4
    ],
    "io_out": [
      9,
      8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(input),-1)),-5)"
  },
  {
    "input": "input : list = [5, -2, -3, 4, 3]\noutput : list = [-8, -7, -2, -1, 0]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(sort_asc([5, -2, -3, 4, 3]))),6),5)",
    "io_inp": [
      5,
      -2,
      -3,
      4,
      3
    ],
    "io_out": [
      -8,
      -7,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(sort_asc(input))),6),5)"
  },
  {
    "input": "input : list = [-1, -2, 0, -1]\noutput : list = [8, 4, 4, 0]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(reverse([-1, -2, 0, -1]))),-4),20)",
    "io_inp": [
      -1,
      -2,
      0,
      -1
    ],
    "io_out": [
      8,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(reverse(input))),-4),20)"
  },
  {
    "input": "input : list = [2, 5, 3, 0]\noutput : list = [4, 6, 7, 9]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_des([2, 5, 3, 0]),5),-1),-4)",
    "io_inp": [
      2,
      5,
      3,
      0
    ],
    "io_out": [
      4,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_des(input),5),-1),-4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-10, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des([-4, 4]),-2),2)))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -10,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des(input),-2),2)))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des([5, 2])",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, -2, -2]\noutput : list = [-2, -2, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(reverse([4, 5, -2, -2])))),6)",
    "io_inp": [
      4,
      5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(reverse(input)))),6)"
  },
  {
    "input": "input : list = [-4, 2, -2, 4]\noutput : list = [-1, -3, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(drop([-4, 2, -2, 4],1)))),5)",
    "io_inp": [
      -4,
      2,
      -2,
      4
    ],
    "io_out": [
      -1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(drop(input,1)))),5)"
  },
  {
    "input": "input : list = [-2, -4, -5, -5, 2]\noutput : list = [-7, -14, -14, -13, -11]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(reverse([-2, -4, -5, -5, 2]),-3),4),-2),4)",
    "io_inp": [
      -2,
      -4,
      -5,
      -5,
      2
    ],
    "io_out": [
      -7,
      -14,
      -14,
      -13,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(reverse(input),-3),4),-2),4)"
  },
  {
    "input": "input : list = [0, 1, -5, 3, 4, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take([0, 1, -5, 3, 4, -2],1))",
    "io_inp": [
      0,
      1,
      -5,
      3,
      4,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-2, -3, -2, -2]\noutput : list = [-2, -2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(drop([-2, -3, -2, -2],1),1)),35))",
    "io_inp": [
      -2,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(drop(input,1),1)),35))"
  },
  {
    "input": "input : list = [-1, 4, -1, -2, 2]\noutput : list = [11, 9, 6, 6, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-1, 4, -1, -2, 2]),5),-2)",
    "io_inp": [
      -1,
      4,
      -1,
      -2,
      2
    ],
    "io_out": [
      11,
      9,
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),5),-2)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = take(sub_n([-5, 3],-3),13)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),13)"
  },
  {
    "input": "input : list = [5, 1, -1, 0, 3, -4]\noutput : list = [18, 12, 10, 8, 4, 0]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n(sub_n([5, 1, -1, 0, 3, -4],5),-2)),20))",
    "io_inp": [
      5,
      1,
      -1,
      0,
      3,
      -4
    ],
    "io_out": [
      18,
      12,
      10,
      8,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(sub_n(input,5),-2)),20))"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse([-2, 4, 2]))),-1),2)",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse(input))),-1),2)"
  },
  {
    "input": "input : list = [4, -2, 0, 0, -4, 1]\noutput : list = [16, 4, 0, 0, -8, -16]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(sort_des([4, -2, 0, 0, -4, 1]),4),10)))",
    "io_inp": [
      4,
      -2,
      0,
      0,
      -4,
      1
    ],
    "io_out": [
      16,
      4,
      0,
      0,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(sort_des(input),4),10)))"
  },
  {
    "input": "input : list = [5, 2, -4, 3]\noutput : list = [2, 0, -1, -7]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n([5, 2, -4, 3],3))),35)",
    "io_inp": [
      5,
      2,
      -4,
      3
    ],
    "io_out": [
      2,
      0,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(input,3))),35)"
  },
  {
    "input": "input : list = [-5, 1, -2, -3, 4]\noutput : list = [-9, -3]",
    "output": "generated_output : list = add_n(reverse(mul_n(drop(sort_asc([-5, 1, -2, -3, 4]),3),-2)),-1)",
    "io_inp": [
      -5,
      1,
      -2,
      -3,
      4
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(drop(sort_asc(input),3),-2)),-1)"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [6, 7, -2]",
    "output": "generated_output : list = reverse(add_n([-4, 5, 4],2))",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      6,
      7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [4, 4, -1]\noutput : list = [21, 21, -4]",
    "output": "generated_output : list = add_n(mul_n([4, 4, -1],5),1)",
    "io_inp": [
      4,
      4,
      -1
    ],
    "io_out": [
      21,
      21,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),1)"
  },
  {
    "input": "input : list = [1, 4, 0, 4, 0, 4]\noutput : list = [-4, -16, 0, -16, 0, -16]",
    "output": "generated_output : list = mul_n([1, 4, 0, 4, 0, 4],-4)",
    "io_inp": [
      1,
      4,
      0,
      4,
      0,
      4
    ],
    "io_out": [
      -4,
      -16,
      0,
      -16,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sub_n([-5, 2],-2)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -2, 2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(take([-3, -2, 2, -3],2)))))",
    "io_inp": [
      -3,
      -2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(take(input,2)))))"
  },
  {
    "input": "input : list = [-3, 0, -3, 3, 2, -1]\noutput : list = [4, 3, 1, 0, -2, -2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc([-3, 0, -3, 3, 2, -1]))),-1)",
    "io_inp": [
      -3,
      0,
      -3,
      3,
      2,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(input))),-1)"
  },
  {
    "input": "input : list = [-5, 3, -3, -3, -5]\noutput : list = [-2, 6, 0]",
    "output": "generated_output : list = add_n(take([-5, 3, -3, -3, -5],3),3)",
    "io_inp": [
      -5,
      3,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -2,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),3)"
  },
  {
    "input": "input : list = [-3, -2, 1, 4, 4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take([-3, -2, 1, 4, 4],2)",
    "io_inp": [
      -3,
      -2,
      1,
      4,
      4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-14, -4]",
    "output": "generated_output : list = take(add_n(mul_n(add_n([5, -5],5),-1),-4),21)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -14,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(input,5),-1),-4),21)"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [-3, -5, -6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n([3, 1, 0],1)),-2),-2),5)",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n(input,1)),-2),-2),5)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [87, 87]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(mul_n([-5, -5],5),-5),13),-1),-3)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      87,
      87
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(mul_n(input,5),-5),13),-1),-3)"
  },
  {
    "input": "input : list = [4, 3, 4, -1, 3]\noutput : list = [-4, 12, 12, 16, 16]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(reverse([4, 3, 4, -1, 3])),17)),4)",
    "io_inp": [
      4,
      3,
      4,
      -1,
      3
    ],
    "io_out": [
      -4,
      12,
      12,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(reverse(input)),17)),4)"
  },
  {
    "input": "input : list = [1, -3, 4, 3]\noutput : list = [-8, -4, -2, -1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(sort_asc([1, -3, 4, 3]),9),-5)))",
    "io_inp": [
      1,
      -3,
      4,
      3
    ],
    "io_out": [
      -8,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(sort_asc(input),9),-5)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, 4, 3, 1]\noutput : list = [-1, 5, 6, 7, 8]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(sort_asc([2, -5, 4, 3, 1]),23)),-4),40)",
    "io_inp": [
      2,
      -5,
      4,
      3,
      1
    ],
    "io_out": [
      -1,
      5,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(sort_asc(input),23)),-4),40)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(reverse([5, -2]),6)),-2))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(reverse(input),6)),-2))"
  },
  {
    "input": "input : list = [4, 3, 5]\noutput : list = [-7, -3, 1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n([4, 3, 5],3),-4),-3)),4)",
    "io_inp": [
      4,
      3,
      5
    ],
    "io_out": [
      -7,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n(input,3),-4),-3)),4)"
  },
  {
    "input": "input : list = [5, 2, 4, 4, -3, 2]\noutput : list = [11, 10, 10, 8, 8, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse([5, 2, 4, 4, -3, 2]),1)),-5)",
    "io_inp": [
      5,
      2,
      4,
      4,
      -3,
      2
    ],
    "io_out": [
      11,
      10,
      10,
      8,
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(input),1)),-5)"
  },
  {
    "input": "input : list = [-2, -3, -5, 5, -1, 2]\noutput : list = [25, 10, -5, -10, -15, -25]",
    "output": "generated_output : list = mul_n(sort_des([-2, -3, -5, 5, -1, 2]),5)",
    "io_inp": [
      -2,
      -3,
      -5,
      5,
      -1,
      2
    ],
    "io_out": [
      25,
      10,
      -5,
      -10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [3, 4, -1, 1, 1]\noutput : list = [-70, -20, -40, -40]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(drop([3, 4, -1, 1, 1],1),-3),-2),5),27)",
    "io_inp": [
      3,
      4,
      -1,
      1,
      1
    ],
    "io_out": [
      -70,
      -20,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(drop(input,1),-3),-2),5),27)"
  },
  {
    "input": "input : list = [5, -2, -2, -4, 4]\noutput : list = [-23, -18, 12, 12, 22]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(mul_n([5, -2, -2, -4, 4],-5),2),8)))",
    "io_inp": [
      5,
      -2,
      -2,
      -4,
      4
    ],
    "io_out": [
      -23,
      -18,
      12,
      12,
      22
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(mul_n(input,-5),2),8)))"
  },
  {
    "input": "input : list = [-1, 1, -5, -2, 3]\noutput : list = [9, -6, -15, 3, -3]",
    "output": "generated_output : list = mul_n(reverse([-1, 1, -5, -2, 3]),3)",
    "io_inp": [
      -1,
      1,
      -5,
      -2,
      3
    ],
    "io_out": [
      9,
      -6,
      -15,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(take([0, -2, -5],1)),-2)))",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(take(input,1)),-2)))"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-24]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(take([1, 0, -1],1)),-4),-5),1)",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(take(input,1)),-4),-5),1)"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [-6, -6, 2]",
    "output": "generated_output : list = reverse(add_n(take(reverse(reverse([4, -4, -4])),20),-2))",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -6,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(reverse(input)),20),-2))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [18, 4]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(add_n([4, -3],-4)),-2),-2))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      18,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(add_n(input,-4)),-2),-2))"
  },
  {
    "input": "input : list = [-2, 5, 5, 0]\noutput : list = [5, 5, 0, -2]",
    "output": "generated_output : list = sort_des([-2, 5, 5, 0])",
    "io_inp": [
      -2,
      5,
      5,
      0
    ],
    "io_out": [
      5,
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [-8, -8, -12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse([2, 2, 4]))),2),-2)",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse(input))),2),-2)"
  },
  {
    "input": "input : list = [-2, 3, 5, 5]\noutput : list = [0, 25, 35, 35]",
    "output": "generated_output : list = mul_n(sub_n([-2, 3, 5, 5],-2),5)",
    "io_inp": [
      -2,
      3,
      5,
      5
    ],
    "io_out": [
      0,
      25,
      35,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),5)"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sort_des(mul_n([0, -2, -3],-1))",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [1, -2, 5, 4, 1, -2]\noutput : list = [-2, 5, 4, 1, -2]",
    "output": "generated_output : list = drop(mul_n([1, -2, 5, 4, 1, -2],1),1)",
    "io_inp": [
      1,
      -2,
      5,
      4,
      1,
      -2
    ],
    "io_out": [
      -2,
      5,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,1),1)"
  },
  {
    "input": "input : list = [1, -1, -5, 3, 0, 5]\noutput : list = [6, 4, 2, 1, 0, -4]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_des([1, -1, -5, 3, 0, 5]),-1))),1)",
    "io_inp": [
      1,
      -1,
      -5,
      3,
      0,
      5
    ],
    "io_out": [
      6,
      4,
      2,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_des(input),-1))),1)"
  },
  {
    "input": "input : list = [3, -4, 3, -3]\noutput : list = [13, -15, 13, -11]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(add_n([3, -4, 3, -3],-4),-3),4),26),-5)",
    "io_inp": [
      3,
      -4,
      3,
      -3
    ],
    "io_out": [
      13,
      -15,
      13,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(add_n(input,-4),-3),4),26),-5)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [12, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(sub_n([1, -3],-3),3))))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(sub_n(input,-3),3))))"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [-80, -56, -40]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(add_n([1, -4, -1],-5),-1),4)),2)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      -80,
      -56,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(add_n(input,-5),-1),4)),2)"
  },
  {
    "input": "input : list = [4, -3, 3, 2, -4, 5]\noutput : list = [-27, -24, -9, -6, -3, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n([4, -3, 3, 2, -4, 5],-5)),3))",
    "io_inp": [
      4,
      -3,
      3,
      2,
      -4,
      5
    ],
    "io_out": [
      -27,
      -24,
      -9,
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(input,-5)),3))"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [14, 2, 0]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(sort_asc([-1, -2, 5]),-1),-2),4))",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      14,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(sort_asc(input),-1),-2),4))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [6, 18]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-1, 3],5),-3))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      6,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,5),-3))"
  },
  {
    "input": "input : list = [-3, 3, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = drop([-3, 3, 5, 5],2)",
    "io_inp": [
      -3,
      3,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 0, -1, 1]\noutput : list = [15]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(take([5, 0, -1, 1],1),5),-5),3),5)",
    "io_inp": [
      5,
      0,
      -1,
      1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(take(input,1),5),-5),3),5)"
  },
  {
    "input": "input : list = [-2, 2, -5, 5, -3, 4]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(reverse(add_n(drop(reverse([-2, 2, -5, 5, -3, 4]),5),-1)),-3)",
    "io_inp": [
      -2,
      2,
      -5,
      5,
      -3,
      4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(drop(reverse(input),5),-1)),-3)"
  },
  {
    "input": "input : list = [-3, 4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse(drop([-3, 4, 1],1))",
    "io_inp": [
      -3,
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [3, -4, -1, -3, -4]\noutput : list = [-9, -9, -8, -6, -2]",
    "output": "generated_output : list = reverse(take(sub_n(take(sort_des([3, -4, -1, -3, -4]),23),5),9))",
    "io_inp": [
      3,
      -4,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(sort_des(input),23),5),9))"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 3, -4],1)",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, 2]\noutput : list = [17]",
    "output": "generated_output : list = drop(sub_n(mul_n(mul_n([1, -4, 2],2),3),-5),2)",
    "io_inp": [
      1,
      -4,
      2
    ],
    "io_out": [
      17
    ],
    "output_masked": "generated_output : list = drop(sub_n(mul_n(mul_n(input,2),3),-5),2)"
  },
  {
    "input": "input : list = [4, -1, -2, -4]\noutput : list = [-4, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(drop(sort_des(reverse([4, -1, -2, -4])),1)))",
    "io_inp": [
      4,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(sort_des(reverse(input)),1)))"
  },
  {
    "input": "input : list = [4, 2, 3, -4]\noutput : list = [32, 24, 16, -32]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(mul_n([4, 2, 3, -4],-4))),-2))",
    "io_inp": [
      4,
      2,
      3,
      -4
    ],
    "io_out": [
      32,
      24,
      16,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(mul_n(input,-4))),-2))"
  },
  {
    "input": "input : list = [-3, 1, 0, -5]\noutput : list = [3, 2, -1, -3]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n([-3, 1, 0, -5],-1)),-3)))",
    "io_inp": [
      -3,
      1,
      0,
      -5
    ],
    "io_out": [
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n(input,-1)),-3)))"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [0, 2, -5]",
    "output": "generated_output : list = reverse(reverse([0, 2, -5]))",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [2, 4, 0]",
    "output": "generated_output : list = add_n([0, 2, -2],2)",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-3, -4, 3, 5]\noutput : list = [4, 2, -4, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des(add_n([-3, -4, 3, 5],2)))),-3)",
    "io_inp": [
      -3,
      -4,
      3,
      5
    ],
    "io_out": [
      4,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(add_n(input,2)))),-3)"
  },
  {
    "input": "input : list = [1, -4, 2, -1, 0]\noutput : list = [-10, -7, -6, -5, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(add_n([1, -4, 2, -1, 0],-4),-2))))",
    "io_inp": [
      1,
      -4,
      2,
      -1,
      0
    ],
    "io_out": [
      -10,
      -7,
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(add_n(input,-4),-2))))"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [-1, -3, -3]",
    "output": "generated_output : list = reverse(reverse([-1, -3, -3]))",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, 4, -3]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_asc([0, 4, -3]),4)),3),1)",
    "io_inp": [
      0,
      4,
      -3
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_asc(input),4)),3),1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(sort_asc([-5, -1]),-5),1),-3),19)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(sort_asc(input),-5),1),-3),19)"
  },
  {
    "input": "input : list = [-3, 1, -5, -4]\noutput : list = [0, -12, -15, -18]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(add_n([-3, 1, -5, -4],-1)))),3)",
    "io_inp": [
      -3,
      1,
      -5,
      -4
    ],
    "io_out": [
      0,
      -12,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(add_n(input,-1)))),3)"
  },
  {
    "input": "input : list = [1, -5, -5, 3, -3, -2]\noutput : list = [6, 4, 1, 0, -2, -2]",
    "output": "generated_output : list = take(sub_n(mul_n(take(sort_des([1, -5, -5, 3, -3, -2]),22),1),-3),8)",
    "io_inp": [
      1,
      -5,
      -5,
      3,
      -3,
      -2
    ],
    "io_out": [
      6,
      4,
      1,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(sort_des(input),22),1),-3),8)"
  },
  {
    "input": "input : list = [-3, 5, -2, -2]\noutput : list = [8, 1, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(add_n([-3, 5, -2, -2],3)))",
    "io_inp": [
      -3,
      5,
      -2,
      -2
    ],
    "io_out": [
      8,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,3)))"
  },
  {
    "input": "input : list = [-5, -4, 4, -4, 2]\noutput : list = [-5, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(drop([-5, -4, 4, -4, 2],2)),-1)))",
    "io_inp": [
      -5,
      -4,
      4,
      -4,
      2
    ],
    "io_out": [
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(drop(input,2)),-1)))"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [6, 2, -4]",
    "output": "generated_output : list = sub_n([5, 1, -5],-1)",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      6,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 2, -3, -2]\noutput : list = [-4, -3, -2, 2]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sort_asc([-4, 2, -3, -2]))),4),26)",
    "io_inp": [
      -4,
      2,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sort_asc(input))),4),26)"
  },
  {
    "input": "input : list = [-2, -1, 2, 1, -3, 5]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = sort_asc(drop([-2, -1, 2, 1, -3, 5],3))",
    "io_inp": [
      -2,
      -1,
      2,
      1,
      -3,
      5
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [-2, -5, -4, 5, 5]\noutput : list = [-5, -4, -2, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(sort_asc([-2, -5, -4, 5, 5]),13))))",
    "io_inp": [
      -2,
      -5,
      -4,
      5,
      5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(sort_asc(input),13))))"
  },
  {
    "input": "input : list = [-5, -3, 1, 4]\noutput : list = [-10, -6, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(drop([-5, -3, 1, 4],1),1)),5),-1)",
    "io_inp": [
      -5,
      -3,
      1,
      4
    ],
    "io_out": [
      -10,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(drop(input,1),1)),5),-1)"
  },
  {
    "input": "input : list = [1, -5, 5, 3, -2]\noutput : list = [5, 3, 1, -2, -5]",
    "output": "generated_output : list = sort_des([1, -5, 5, 3, -2])",
    "io_inp": [
      1,
      -5,
      5,
      3,
      -2
    ],
    "io_out": [
      5,
      3,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, 1, 1]\noutput : list = [-1, -5, -5, -11]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(add_n([-5, 5, 1, 1],-5)),-2)),1)",
    "io_inp": [
      -5,
      5,
      1,
      1
    ],
    "io_out": [
      -1,
      -5,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(add_n(input,-5)),-2)),1)"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [-2, -7]",
    "output": "generated_output : list = take(add_n([0, -5, 0],-2),2)",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),2)"
  },
  {
    "input": "input : list = [-1, 3, -4, 3, 2]\noutput : list = [2, 3, -4, 3, -1]",
    "output": "generated_output : list = reverse([-1, 3, -4, 3, 2])",
    "io_inp": [
      -1,
      3,
      -4,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      -4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(mul_n([1, 0, 1],-5),1))))",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(mul_n(input,-5),1))))"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(drop([5, -2, -2],1)),-1),-4))",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(drop(input,1)),-1),-4))"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [25, -15, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(sort_asc([-5, 5, 3]),11))),-5)",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      25,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(sort_asc(input),11))),-5)"
  },
  {
    "input": "input : list = [-2, 5, 4, -4, -2]\noutput : list = [-16, -14]",
    "output": "generated_output : list = take(take(mul_n(sub_n(drop([-2, 5, 4, -4, -2],1),-3),-2),2),12)",
    "io_inp": [
      -2,
      5,
      4,
      -4,
      -2
    ],
    "io_out": [
      -16,
      -14
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(drop(input,1),-3),-2),2),12)"
  },
  {
    "input": "input : list = [4, -2, 3, -3, -4]\noutput : list = [9, 8, 3, 2, 1]",
    "output": "generated_output : list = sort_des(add_n([4, -2, 3, -3, -4],5))",
    "io_inp": [
      4,
      -2,
      3,
      -3,
      -4
    ],
    "io_out": [
      9,
      8,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [4, -1, 5]\noutput : list = [14, -4]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(drop([4, -1, 5],1)),26),3),-1)",
    "io_inp": [
      4,
      -1,
      5
    ],
    "io_out": [
      14,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(drop(input,1)),26),3),-1)"
  },
  {
    "input": "input : list = [-3, -2, 1, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take([-3, -2, 1, -3],2)",
    "io_inp": [
      -3,
      -2,
      1,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 1, -5, -3]\noutput : list = [5, 1, -5, -3]",
    "output": "generated_output : list = mul_n([5, 1, -5, -3],1)",
    "io_inp": [
      5,
      1,
      -5,
      -3
    ],
    "io_out": [
      5,
      1,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, 3, 2, 0]\noutput : list = [2, 0, -1, -1]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(reverse([3, 3, 2, 0]),-2)),-1))",
    "io_inp": [
      3,
      3,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(reverse(input),-2)),-1))"
  },
  {
    "input": "input : list = [2, -1, -1, 5]\noutput : list = [15, 15, 0, -15]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc([2, -1, -1, 5]),22),-2)),-5)",
    "io_inp": [
      2,
      -1,
      -1,
      5
    ],
    "io_out": [
      15,
      15,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc(input),22),-2)),-5)"
  },
  {
    "input": "input : list = [5, 1, -3, -3, -1]\noutput : list = [2, -2, -4, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(reverse([5, 1, -3, -3, -1]),3),2),2))",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      -1
    ],
    "io_out": [
      2,
      -2,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(reverse(input),3),2),2))"
  },
  {
    "input": "input : list = [4, 5, -2, 1]\noutput : list = [-18, -6, 3]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(drop([4, 5, -2, 1],1),1)),-3),3)",
    "io_inp": [
      4,
      5,
      -2,
      1
    ],
    "io_out": [
      -18,
      -6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(drop(input,1),1)),-3),3)"
  },
  {
    "input": "input : list = [-4, -5, 2, 1]\noutput : list = [16, 20, -8, -4]",
    "output": "generated_output : list = mul_n([-4, -5, 2, 1],-4)",
    "io_inp": [
      -4,
      -5,
      2,
      1
    ],
    "io_out": [
      16,
      20,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [1, -4, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(sub_n([5, 0, 5],1))),-1))",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(sub_n(input,1))),-1))"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [-3, 6, -12]",
    "output": "generated_output : list = mul_n([1, -2, 4],-3)",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      -3,
      6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 1, 3, 1]\noutput : list = [-12, 0, 0, 6]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc([-3, 1, 3, 1]),21),1),3)",
    "io_inp": [
      -3,
      1,
      3,
      1
    ],
    "io_out": [
      -12,
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(input),21),1),3)"
  },
  {
    "input": "input : list = [-1, 2, -2, 0, -4]\noutput : list = [-4, -6, -7, -8, -10]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(sort_des([-1, 2, -2, 0, -4]),-3),-2),12),1)",
    "io_inp": [
      -1,
      2,
      -2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -6,
      -7,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(sort_des(input),-3),-2),12),1)"
  },
  {
    "input": "input : list = [-2, 0, 3, -2]\noutput : list = [-6, -6, -4, -1]",
    "output": "generated_output : list = take(take(reverse(sub_n(sort_des([-2, 0, 3, -2]),4)),6),41)",
    "io_inp": [
      -2,
      0,
      3,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(sort_des(input),4)),6),41)"
  },
  {
    "input": "input : list = [-4, -5, -5, 4, -2]\noutput : list = [-5, -5, 4, -2]",
    "output": "generated_output : list = drop([-4, -5, -5, 4, -2],1)",
    "io_inp": [
      -4,
      -5,
      -5,
      4,
      -2
    ],
    "io_out": [
      -5,
      -5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [24, -24]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(mul_n([2, -2],-4),12)),3))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      24,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(mul_n(input,-4),12)),3))"
  },
  {
    "input": "input : list = [4, 4, -1, -2, -4]\noutput : list = [6, 6, 1, 0, -2]",
    "output": "generated_output : list = take(sort_des(reverse(add_n(add_n([4, 4, -1, -2, -4],-3),5))),26)",
    "io_inp": [
      4,
      4,
      -1,
      -2,
      -4
    ],
    "io_out": [
      6,
      6,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(add_n(add_n(input,-3),5))),26)"
  },
  {
    "input": "input : list = [2, -5, -2, 1, -3]\noutput : list = [-5, -3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc([2, -5, -2, 1, -3])",
    "io_inp": [
      2,
      -5,
      -2,
      1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [52, -20]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(mul_n([2, -4],-3)),-1),-4),-4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      52,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(mul_n(input,-3)),-1),-4),-4)"
  },
  {
    "input": "input : list = [1, 1, 4, -4]\noutput : list = [-7, 8, 8, 17]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n([1, 1, 4, -4],3),14),-5))",
    "io_inp": [
      1,
      1,
      4,
      -4
    ],
    "io_out": [
      -7,
      8,
      8,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(input,3),14),-5))"
  },
  {
    "input": "input : list = [1, -2, 4, -1, 3]\noutput : list = [-2, 2, 10, 18, 22]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sub_n([1, -2, 4, -1, 3],4),-4))),2)",
    "io_inp": [
      1,
      -2,
      4,
      -1,
      3
    ],
    "io_out": [
      -2,
      2,
      10,
      18,
      22
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sub_n(input,4),-4))),2)"
  },
  {
    "input": "input : list = [-2, 1, -5, -5, -3]\noutput : list = [-8, -8, -6, -5, -2]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(add_n([-2, 1, -5, -5, -3],-2))),1),30)",
    "io_inp": [
      -2,
      1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(add_n(input,-2))),1),30)"
  },
  {
    "input": "input : list = [5, -2, -4, -4]\noutput : list = [-23, 12, 22, 22]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_asc([5, -2, -4, -4]),-5),-1)),-3)",
    "io_inp": [
      5,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -23,
      12,
      22,
      22
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(sort_asc(input),-5),-1)),-3)"
  },
  {
    "input": "input : list = [2, 1, 4, 1, 4]\noutput : list = [-12, -12, -3, -3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(drop([2, 1, 4, 1, 4],1),5)),-3))",
    "io_inp": [
      2,
      1,
      4,
      1,
      4
    ],
    "io_out": [
      -12,
      -12,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(drop(input,1),5)),-3))"
  },
  {
    "input": "input : list = [2, -2, -5, -2]\noutput : list = [13, -7, -7, -22]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(sort_asc([2, -2, -5, -2]),5),3)),47)",
    "io_inp": [
      2,
      -2,
      -5,
      -2
    ],
    "io_out": [
      13,
      -7,
      -7,
      -22
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(sort_asc(input),5),3)),47)"
  },
  {
    "input": "input : list = [2, -2, 0, 2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = drop([2, -2, 0, 2, -5],3)",
    "io_inp": [
      2,
      -2,
      0,
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n([2, 3],3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, -5, -4, -3]\noutput : list = [-5, -4, -3, 0]",
    "output": "generated_output : list = sort_asc([0, -5, -4, -3])",
    "io_inp": [
      0,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, 0, -3]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(take([-1, -2, 0, -3],1),-5)),1),-1)",
    "io_inp": [
      -1,
      -2,
      0,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(take(input,1),-5)),1),-1)"
  },
  {
    "input": "input : list = [-1, 2, 2, 3, -4, -3]\noutput : list = [-6, -3, 12, 15]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(drop([-1, 2, 2, 3, -4, -3],2),1)),-3),41)",
    "io_inp": [
      -1,
      2,
      2,
      3,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -3,
      12,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(drop(input,2),1)),-3),41)"
  },
  {
    "input": "input : list = [1, 0, -3]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(take([1, 0, -3],1)),3)),2)",
    "io_inp": [
      1,
      0,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(take(input,1)),3)),2)"
  },
  {
    "input": "input : list = [-4, -1, 1, -2, 5, 2]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = take([-4, -1, 1, -2, 5, 2],3)",
    "io_inp": [
      -4,
      -1,
      1,
      -2,
      5,
      2
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, 1, -2, 3, 5]\noutput : list = [1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(drop(sort_asc([5, 1, -2, 3, 5]),1),22)))",
    "io_inp": [
      5,
      1,
      -2,
      3,
      5
    ],
    "io_out": [
      1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(drop(sort_asc(input),1),22)))"
  },
  {
    "input": "input : list = [-3, 1, 3, -2]\noutput : list = [-3, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(reverse([-3, 1, 3, -2])),16),-1))",
    "io_inp": [
      -3,
      1,
      3,
      -2
    ],
    "io_out": [
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(reverse(input)),16),-1))"
  },
  {
    "input": "input : list = [0, -1, 1, 4]\noutput : list = [11, 2, -1, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(mul_n([0, -1, 1, 4],3),-3),-2)),10)",
    "io_inp": [
      0,
      -1,
      1,
      4
    ],
    "io_out": [
      11,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(mul_n(input,3),-3),-2)),10)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse([0, 2])",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [22, 22, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(mul_n([5, 5, 1],5),-3))))",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      22,
      22,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(mul_n(input,5),-3))))"
  },
  {
    "input": "input : list = [2, -3, 2, -2, -5, -3]\noutput : list = [1, 1, -3, -4, -4, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des(sort_asc([2, -3, 2, -2, -5, -3]))),-1))",
    "io_inp": [
      2,
      -3,
      2,
      -2,
      -5,
      -3
    ],
    "io_out": [
      1,
      1,
      -3,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(sort_asc(input))),-1))"
  },
  {
    "input": "input : list = [1, -4, -3, 1, -1, 3]\noutput : list = [-32, 28, 16, -32, -8, -56]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(mul_n([1, -4, -3, 1, -1, 3],-3),-5)),4))",
    "io_inp": [
      1,
      -4,
      -3,
      1,
      -1,
      3
    ],
    "io_out": [
      -32,
      28,
      16,
      -32,
      -8,
      -56
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(mul_n(input,-3),-5)),4))"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [-1, -2, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_des([4, -1, 3])),5)))",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [5, 5, 2, 4, 0]\noutput : list = [0, 2, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 5, 2, 4, 0])",
    "io_inp": [
      5,
      5,
      2,
      4,
      0
    ],
    "io_out": [
      0,
      2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, 2, -1]\noutput : list = [-4, -2, 1, 2]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(reverse([-3, 3, 2, -1]))),-5),-4)",
    "io_inp": [
      -3,
      3,
      2,
      -1
    ],
    "io_out": [
      -4,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(reverse(input))),-5),-4)"
  },
  {
    "input": "input : list = [-2, 5, -2, 3]\noutput : list = [3, -2, 5, -2]",
    "output": "generated_output : list = reverse([-2, 5, -2, 3])",
    "io_inp": [
      -2,
      5,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(take([-1, -1, 5],1),-2),-3),-4),5)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(take(input,1),-2),-3),-4),5)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [-5, -5, -5]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([-1, -1, -1]),5),1)",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),5),1)"
  },
  {
    "input": "input : list = [1, 3, -5, -5]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(drop(take([1, 3, -5, -5],2),1))",
    "io_inp": [
      1,
      3,
      -5,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(take(input,2),1))"
  },
  {
    "input": "input : list = [4, 0, -1, -5]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = take(add_n(mul_n(drop([4, 0, -1, -5],1),1),3),14)",
    "io_inp": [
      4,
      0,
      -1,
      -5
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(drop(input,1),1),3),14)"
  },
  {
    "input": "input : list = [3, 1, 2, 2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(drop([3, 1, 2, 2],2))),5)",
    "io_inp": [
      3,
      1,
      2,
      2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(drop(input,2))),5)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sort_asc([-4, -1])),4)),-1)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sort_asc(input)),4)),-1)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(sort_asc([-3, -1]),15),-2),2))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(sort_asc(input),15),-2),2))"
  },
  {
    "input": "input : list = [4, 4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = drop([4, 4, 4],1)",
    "io_inp": [
      4,
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -4, 2, 5, 0, -5]\noutput : list = [-2, -1, 3, 3, 5, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_des([0, -4, 2, 5, 0, -5])))),3)",
    "io_inp": [
      0,
      -4,
      2,
      5,
      0,
      -5
    ],
    "io_out": [
      -2,
      -1,
      3,
      3,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [2, 0, 1, 5, 4, 2]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(take(sub_n([2, 0, 1, 5, 4, 2],3),3)),38))",
    "io_inp": [
      2,
      0,
      1,
      5,
      4,
      2
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(sub_n(input,3),3)),38))"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [8, -2, -10]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(reverse([-4, 5, 1]),-2)),32))",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      8,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(reverse(input),-2)),32))"
  },
  {
    "input": "input : list = [2, -3, -1, 4, -1, 5]\noutput : list = [5, 4, 2, -1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_asc([2, -3, -1, 4, -1, 5]))",
    "io_inp": [
      2,
      -3,
      -1,
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -3, 2, -5, -2, -5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des([-3, -3, 2, -5, -2, -5])),-1),2))",
    "io_inp": [
      -3,
      -3,
      2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des(input)),-1),2))"
  },
  {
    "input": "input : list = [1, 1, 2, 2, -3, 2]\noutput : list = [8, 8, 8, 4, 4, -12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc([1, 1, 2, 2, -3, 2]),4)))",
    "io_inp": [
      1,
      1,
      2,
      2,
      -3,
      2
    ],
    "io_out": [
      8,
      8,
      8,
      4,
      4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [-2, 2, 2, -3, 3]\noutput : list = [-4, -8, -8, -24, -28]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(add_n([-2, 2, 2, -3, 3],-4))),14),4)",
    "io_inp": [
      -2,
      2,
      2,
      -3,
      3
    ],
    "io_out": [
      -4,
      -8,
      -8,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(add_n(input,-4))),14),4)"
  },
  {
    "input": "input : list = [2, 0, -3, 4, 2, -4]\noutput : list = [7, 5, 2, 9, 7, 1]",
    "output": "generated_output : list = sub_n([2, 0, -3, 4, 2, -4],-5)",
    "io_inp": [
      2,
      0,
      -3,
      4,
      2,
      -4
    ],
    "io_out": [
      7,
      5,
      2,
      9,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, -2, -2, 4, 4, 5]\noutput : list = [5, 4, 4, 2, -2, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(sort_asc([2, -2, -2, 4, 4, 5])))))",
    "io_inp": [
      2,
      -2,
      -2,
      4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [5, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, 5])",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, -2, 0]\noutput : list = [-15, -5, 0, 15]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse([1, 4, -2, 0])),-1),5)",
    "io_inp": [
      1,
      4,
      -2,
      0
    ],
    "io_out": [
      -15,
      -5,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(input)),-1),5)"
  },
  {
    "input": "input : list = [5, -5, -1, -3, -5]\noutput : list = [-19, -19, -9, 1, 31]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc([5, -5, -1, -3, -5]),5),3),-3)",
    "io_inp": [
      5,
      -5,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -19,
      -19,
      -9,
      1,
      31
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(input),5),3),-3)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des(add_n(take(add_n(sort_asc([3, 3]),-1),10),-5))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(add_n(sort_asc(input),-1),10),-5))"
  },
  {
    "input": "input : list = [-5, -4, 3, -4, 2]\noutput : list = [-2, -1, -1, 5, 6]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse([-5, -4, 3, -4, 2])),3))",
    "io_inp": [
      -5,
      -4,
      3,
      -4,
      2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(input)),3))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [4, 6]",
    "output": "generated_output : list = take(reverse(add_n(reverse(reverse([3, 1])),3)),22)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(reverse(input)),3)),22)"
  },
  {
    "input": "input : list = [2, 3, -3, -5]\noutput : list = [6, 5]",
    "output": "generated_output : list = sort_des(take(sub_n(take([2, 3, -3, -5],2),-3),15))",
    "io_inp": [
      2,
      3,
      -3,
      -5
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(input,2),-3),15))"
  },
  {
    "input": "input : list = [-5, -5, -3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(drop([-5, -5, -3, 1],2))),16)",
    "io_inp": [
      -5,
      -5,
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(drop(input,2))),16)"
  },
  {
    "input": "input : list = [-5, -4, -4, 5, 1, 1]\noutput : list = [15, 3, 3, -12, -12, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([-5, -4, -4, 5, 1, 1]),3))",
    "io_inp": [
      -5,
      -4,
      -4,
      5,
      1,
      1
    ],
    "io_out": [
      15,
      3,
      3,
      -12,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(take([-3, -1, -5],1),4)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),4)"
  },
  {
    "input": "input : list = [0, 5, 3, 3, -2, -1]\noutput : list = [2, 0, 0, -3, -4, -5]",
    "output": "generated_output : list = add_n(sort_des([0, 5, 3, 3, -2, -1]),-3)",
    "io_inp": [
      0,
      5,
      3,
      3,
      -2,
      -1
    ],
    "io_out": [
      2,
      0,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [3, 5, -5, 3, 5]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(sub_n(drop(reverse(add_n([3, 5, -5, 3, 5],-1)),4),3),5)",
    "io_inp": [
      3,
      5,
      -5,
      3,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(reverse(add_n(input,-1)),4),3),5)"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [3, 1, -4]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(sort_asc([-5, 0, 2]),-2),3)),46)",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(sort_asc(input),-2),3)),46)"
  },
  {
    "input": "input : list = [5, -3, -5, -1, 2, -3]\noutput : list = [45, -15, -55, -55, -95]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(drop([5, -3, -5, -1, 2, -3],1)),-4),-1),-5)",
    "io_inp": [
      5,
      -3,
      -5,
      -1,
      2,
      -3
    ],
    "io_out": [
      45,
      -15,
      -55,
      -55,
      -95
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(drop(input,1)),-4),-1),-5)"
  },
  {
    "input": "input : list = [-5, -2, 0, -3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(reverse(take([-5, -2, 0, -3],1)))",
    "io_inp": [
      -5,
      -2,
      0,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-25, -25]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(sub_n([0, 0],3),1),5),-5))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(sub_n(input,3),1),5),-5))"
  },
  {
    "input": "input : list = [2, -4, 0, 1]\noutput : list = [3]",
    "output": "generated_output : list = take(sub_n(reverse([2, -4, 0, 1]),-2),1)",
    "io_inp": [
      2,
      -4,
      0,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),-2),1)"
  },
  {
    "input": "input : list = [3, 4, 2, -2, -3]\noutput : list = [48, 60, 36, -12, -24]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(sub_n([3, 4, 2, -2, -3],3),4),3),4),49)",
    "io_inp": [
      3,
      4,
      2,
      -2,
      -3
    ],
    "io_out": [
      48,
      60,
      36,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(sub_n(input,3),4),3),4),49)"
  },
  {
    "input": "input : list = [-2, -4, -2, -1, 2]\noutput : list = [-12, -10, -10, -9, -6]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sub_n([-2, -4, -2, -1, 2],4),3),2)),1)",
    "io_inp": [
      -2,
      -4,
      -2,
      -1,
      2
    ],
    "io_out": [
      -12,
      -10,
      -10,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sub_n(input,4),3),2)),1)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-20, -20]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(mul_n([5, 5],-5),-5)),23))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(mul_n(input,-5),-5)),23))"
  },
  {
    "input": "input : list = [2, 1, 2, 0, 1, -1]\noutput : list = [-3, -3, -4, -4, -5, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([2, 1, 2, 0, 1, -1],5)))",
    "io_inp": [
      2,
      1,
      2,
      0,
      1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,5)))"
  },
  {
    "input": "input : list = [1, -5, -1, 1, 2, -1]\noutput : list = [15, 7, 7, 3, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(mul_n([1, -5, -1, 1, 2, -1],-2))),-5))",
    "io_inp": [
      1,
      -5,
      -1,
      1,
      2,
      -1
    ],
    "io_out": [
      15,
      7,
      7,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(mul_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [3, 5, 5, 4, 4]\noutput : list = [5, 5, 4, 4, 3]",
    "output": "generated_output : list = take(sort_des(sort_des([3, 5, 5, 4, 4])),19)",
    "io_inp": [
      3,
      5,
      5,
      4,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),19)"
  },
  {
    "input": "input : list = [-1, 1, -5, 0, 4, 2]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(add_n(take(take([-1, 1, -5, 0, 4, 2],1),25),5),-2)",
    "io_inp": [
      -1,
      1,
      -5,
      0,
      4,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(input,1),25),5),-2)"
  },
  {
    "input": "input : list = [0, -4, 4, -1]\noutput : list = [-3, -6]",
    "output": "generated_output : list = drop(sort_des(sub_n(take(sort_des([0, -4, 4, -1]),21),2)),2)",
    "io_inp": [
      0,
      -4,
      4,
      -1
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(take(sort_des(input),21),2)),2)"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [3, 0, 3]",
    "output": "generated_output : list = add_n(reverse([1, -2, 1]),2)",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      3,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n([2, 0],-2))),8)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(input,-2))),8)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [108, 60, 36]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sub_n([-4, 2, 0],5),-3),6)),4)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      108,
      60,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sub_n(input,5),-3),6)),4)"
  },
  {
    "input": "input : list = [4, 5, -2, -4, 0]\noutput : list = [5, 4, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(reverse([4, 5, -2, -4, 0])),13)))",
    "io_inp": [
      4,
      5,
      -2,
      -4,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(reverse(input)),13)))"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [1, -3, -8]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(sort_des([-4, 1, 5]),1),-5)))",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(sort_des(input),1),-5)))"
  },
  {
    "input": "input : list = [-4, 4, 1, -3]\noutput : list = [4, 5, 9, 12]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(reverse([-4, 4, 1, -3]),4)),4),4)",
    "io_inp": [
      -4,
      4,
      1,
      -3
    ],
    "io_out": [
      4,
      5,
      9,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(reverse(input),4)),4),4)"
  },
  {
    "input": "input : list = [3, -4, 5, 0]\noutput : list = [2, 6, 9, 11]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(add_n([3, -4, 5, 0],5)))),1)",
    "io_inp": [
      3,
      -4,
      5,
      0
    ],
    "io_out": [
      2,
      6,
      9,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(add_n(input,5)))),1)"
  },
  {
    "input": "input : list = [-5, 3, 1, -4, 4, 5]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_asc(take([-5, 3, 1, -4, 4, 5],1)),4)",
    "io_inp": [
      -5,
      3,
      1,
      -4,
      4,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),4)"
  },
  {
    "input": "input : list = [2, -3, -3, 3]\noutput : list = [-3, -3, 3]",
    "output": "generated_output : list = sort_asc(drop([2, -3, -3, 3],1))",
    "io_inp": [
      2,
      -3,
      -3,
      3
    ],
    "io_out": [
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [1, -3, 2, 0]\noutput : list = [2, -2, 3, 1]",
    "output": "generated_output : list = reverse(sub_n(take(take(reverse([1, -3, 2, 0]),20),23),-1))",
    "io_inp": [
      1,
      -3,
      2,
      0
    ],
    "io_out": [
      2,
      -2,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(reverse(input),20),23),-1))"
  },
  {
    "input": "input : list = [-1, 4, 4, -4]\noutput : list = [4, 4, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(take(take(add_n([-1, 4, 4, -4],2),18),4),-2))",
    "io_inp": [
      -1,
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(add_n(input,2),18),4),-2))"
  },
  {
    "input": "input : list = [4, -3, 0, -1, 1]\noutput : list = [-20, 15, 0, 5, -5]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n([4, -3, 0, -1, 1],-1))),5)",
    "io_inp": [
      4,
      -3,
      0,
      -1,
      1
    ],
    "io_out": [
      -20,
      15,
      0,
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(input,-1))),5)"
  },
  {
    "input": "input : list = [-5, 0, 0, 2, -3]\noutput : list = [0, 5, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(take([-5, 0, 0, 2, -3],3))),3),-2)",
    "io_inp": [
      -5,
      0,
      0,
      2,
      -3
    ],
    "io_out": [
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(take(input,3))),3),-2)"
  },
  {
    "input": "input : list = [5, 1, 1]\noutput : list = [40, 16, 16]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(sort_des([5, 1, 1]),6),-3),5),-2)",
    "io_inp": [
      5,
      1,
      1
    ],
    "io_out": [
      40,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(sort_des(input),6),-3),5),-2)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [-1, -1, -5]",
    "output": "generated_output : list = take(add_n(take(sub_n([1, 1, -3],-3),9),-5),10)",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(input,-3),9),-5),10)"
  },
  {
    "input": "input : list = [2, 2, 2, 0, -5]\noutput : list = [-8, -8, -8]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(take([2, 2, 2, 0, -5],3),2),-2)))",
    "io_inp": [
      2,
      2,
      2,
      0,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(take(input,3),2),-2)))"
  },
  {
    "input": "input : list = [4, -3, 1, 5, 1]\noutput : list = [5, 4, 1, 1, -3]",
    "output": "generated_output : list = sort_des([4, -3, 1, 5, 1])",
    "io_inp": [
      4,
      -3,
      1,
      5,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, -1, -5, -4]\noutput : list = [0, 3, -2, -6, -5]",
    "output": "generated_output : list = add_n([1, 4, -1, -5, -4],-1)",
    "io_inp": [
      1,
      4,
      -1,
      -5,
      -4
    ],
    "io_out": [
      0,
      3,
      -2,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -4, -5, -3]\noutput : list = [-8, -8, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n([-3, -4, -5, -3],3),2),-4))",
    "io_inp": [
      -3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(input,3),2),-4))"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [-4, -6, -9]",
    "output": "generated_output : list = sort_des(sub_n(reverse([-5, -2, 0]),4))",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      -4,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),4))"
  },
  {
    "input": "input : list = [3, 3, 4, -3]\noutput : list = [-11]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take([3, 3, 4, -3],1)),-2),4),1)",
    "io_inp": [
      3,
      3,
      4,
      -3
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take(input,1)),-2),4),1)"
  },
  {
    "input": "input : list = [-2, -3, 2, 3, 1, 1]\noutput : list = [-14, -11, -8, -8, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(reverse([-2, -3, 2, 3, 1, 1])),-3)),5)",
    "io_inp": [
      -2,
      -3,
      2,
      3,
      1,
      1
    ],
    "io_out": [
      -14,
      -11,
      -8,
      -8,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(reverse(input)),-3)),5)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-10, -8, -2]",
    "output": "generated_output : list = sub_n([-5, -3, 3],5)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -10,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [11, -5]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sort_asc([-4, 4])),2)),3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      11,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sort_asc(input)),2)),3)"
  },
  {
    "input": "input : list = [2, 0, -4, -4, -1, -2]\noutput : list = [-4, -4, -2, -1]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(drop([2, 0, -4, -4, -1, -2],2)),-1),-1))",
    "io_inp": [
      2,
      0,
      -4,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(drop(input,2)),-1),-1))"
  },
  {
    "input": "input : list = [-3, -3, -4, 0, 2]\noutput : list = [-9, -8, -8, -5, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([-3, -3, -4, 0, 2]),5))",
    "io_inp": [
      -3,
      -3,
      -4,
      0,
      2
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [5, 5, 2, -1, 0, -4]\noutput : list = [4, 2, 10]",
    "output": "generated_output : list = mul_n(add_n(add_n(drop([5, 5, 2, -1, 0, -4],3),4),-5),-2)",
    "io_inp": [
      5,
      5,
      2,
      -1,
      0,
      -4
    ],
    "io_out": [
      4,
      2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(drop(input,3),4),-5),-2)"
  },
  {
    "input": "input : list = [5, 1, -4, -1, 0]\noutput : list = [24, 8, -12, 0, 4]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n([5, 1, -4, -1, 0],-1),4)))",
    "io_inp": [
      5,
      1,
      -4,
      -1,
      0
    ],
    "io_out": [
      24,
      8,
      -12,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(input,-1),4)))"
  },
  {
    "input": "input : list = [-4, 0, -2]\noutput : list = [-20, 0, -10]",
    "output": "generated_output : list = mul_n([-4, 0, -2],5)",
    "io_inp": [
      -4,
      0,
      -2
    ],
    "io_out": [
      -20,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, -1, 3, 3]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(drop([1, -1, 3, 3],2),8),2),1))",
    "io_inp": [
      1,
      -1,
      3,
      3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(drop(input,2),8),2),1))"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-9, -5, -6]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(reverse([-2, -1, -5]),4))),18)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(reverse(input),4))),18)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [7, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_asc([-5, 5]),-2))),34)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_asc(input),-2))),34)"
  },
  {
    "input": "input : list = [-3, 2, -3, -2]\noutput : list = [0, -8, -10, -10]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n(mul_n([-3, 2, -3, -2],2),4)),26),1)",
    "io_inp": [
      -3,
      2,
      -3,
      -2
    ],
    "io_out": [
      0,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(mul_n(input,2),4)),26),1)"
  },
  {
    "input": "input : list = [-4, -1, 2, 4]\noutput : list = [-8, -2, 4, 8]",
    "output": "generated_output : list = mul_n([-4, -1, 2, 4],2)",
    "io_inp": [
      -4,
      -1,
      2,
      4
    ],
    "io_out": [
      -8,
      -2,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, -1, -3]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n(drop([-3, -1, -3],1),-3)",
    "io_inp": [
      -3,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [-3, 0, 0]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(sort_des([0, 0, -3])),4),7),-4)",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(sort_des(input)),4),7),-4)"
  },
  {
    "input": "input : list = [3, 0, 2, 2]\noutput : list = [3, 5, 5, 6]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(sort_asc([3, 0, 2, 2]),-3)),40),10)",
    "io_inp": [
      3,
      0,
      2,
      2
    ],
    "io_out": [
      3,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(sort_asc(input),-3)),40),10)"
  },
  {
    "input": "input : list = [1, 2, 3, -5, 4]\noutput : list = [5, -1, -2, -3, -4]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(sort_des([1, 2, 3, -5, 4])),-1)),39)",
    "io_inp": [
      1,
      2,
      3,
      -5,
      4
    ],
    "io_out": [
      5,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(sort_des(input)),-1)),39)"
  },
  {
    "input": "input : list = [1, 4, 5, 5, -4]\noutput : list = [4, 7, 8, 8, -1]",
    "output": "generated_output : list = sub_n([1, 4, 5, 5, -4],-3)",
    "io_inp": [
      1,
      4,
      5,
      5,
      -4
    ],
    "io_out": [
      4,
      7,
      8,
      8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 4, -4, -4, -1, 3]\noutput : list = [-4, -4, -3, -1, 3, 4]",
    "output": "generated_output : list = sort_asc([-3, 4, -4, -4, -1, 3])",
    "io_inp": [
      -3,
      4,
      -4,
      -4,
      -1,
      3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 2, 1, 3, -5]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(take([1, 2, 1, 3, -5],3)))),1)",
    "io_inp": [
      1,
      2,
      1,
      3,
      -5
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(take(input,3)))),1)"
  },
  {
    "input": "input : list = [5, 5, 4, -1, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(take([5, 5, 4, -1, 4],2))),37))",
    "io_inp": [
      5,
      5,
      4,
      -1,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(take(input,2))),37))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [10, -14]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(reverse([3, -5]),3)),1),26)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      10,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(reverse(input),3)),1),26)"
  },
  {
    "input": "input : list = [4, 4, 0, -4, 4, 5]\noutput : list = [12, 8, 8, 8, -8, -24]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(sub_n([4, 4, 0, -4, 4, 5],2),4))),30)",
    "io_inp": [
      4,
      4,
      0,
      -4,
      4,
      5
    ],
    "io_out": [
      12,
      8,
      8,
      8,
      -8,
      -24
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(sub_n(input,2),4))),30)"
  },
  {
    "input": "input : list = [2, 1, -4, -3, -5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(reverse(take([2, 1, -4, -3, -5],1)))",
    "io_inp": [
      2,
      1,
      -4,
      -3,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [36, 9, 9]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(mul_n([-1, -4, -1],3))),-3))",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      36,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(mul_n(input,3))),-3))"
  },
  {
    "input": "input : list = [4, -4, 3]\noutput : list = [4, 3, -4]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse([4, -4, 3])),4))",
    "io_inp": [
      4,
      -4,
      3
    ],
    "io_out": [
      4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(input)),4))"
  },
  {
    "input": "input : list = [-5, -3, -5]\noutput : list = [-3, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, -3, -5]))",
    "io_inp": [
      -5,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 3, -3]\noutput : list = [-5, 1, 1]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des([3, 3, -3]),-2)))",
    "io_inp": [
      3,
      3,
      -3
    ],
    "io_out": [
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(input),-2)))"
  },
  {
    "input": "input : list = [-4, 0, -3, -4, -2, 1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take(sub_n(drop([-4, 0, -3, -4, -2, 1],4),-1),22)",
    "io_inp": [
      -4,
      0,
      -3,
      -4,
      -2,
      1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,4),-1),22)"
  },
  {
    "input": "input : list = [0, 3, 3, -2]\noutput : list = [3, 3, 0, -2]",
    "output": "generated_output : list = sort_des([0, 3, 3, -2])",
    "io_inp": [
      0,
      3,
      3,
      -2
    ],
    "io_out": [
      3,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-6, -5]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(sub_n([2, 1],1)),2),1),-5)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(sub_n(input,1)),2),1),-5)"
  },
  {
    "input": "input : list = [-4, -2, -4, -5]\noutput : list = [-5, -4, -4, -2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n([-4, -2, -4, -5],4))),-4))",
    "io_inp": [
      -4,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n(input,4))),-4))"
  },
  {
    "input": "input : list = [-3, 2, 5, -1]\noutput : list = [-3, 3, 0, -5]",
    "output": "generated_output : list = reverse(add_n([-3, 2, 5, -1],-2))",
    "io_inp": [
      -3,
      2,
      5,
      -1
    ],
    "io_out": [
      -3,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = reverse([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-6, -6, -8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(sort_des([-1, -3, -1]),1)),1),5)",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(sort_des(input),1)),1),5)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [-8, -8, -8]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc([5, 5, 5]),4)),-1),-4)",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc(input),4)),-1),-4)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(reverse([-2, 1])),-2),5))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(reverse(input)),-2),5))"
  },
  {
    "input": "input : list = [5, -5, 0, 3, -5]\noutput : list = [-20]",
    "output": "generated_output : list = reverse(reverse(drop(mul_n([5, -5, 0, 3, -5],4),4)))",
    "io_inp": [
      5,
      -5,
      0,
      3,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(mul_n(input,4),4)))"
  },
  {
    "input": "input : list = [-3, -2, 1, 3, 1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_asc(take([-3, -2, 1, 3, 1],1)),2)",
    "io_inp": [
      -3,
      -2,
      1,
      3,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),2)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [1, -29, -39]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(sort_asc([-1, 5, -3])),-4),5),-4)",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      1,
      -29,
      -39
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(sort_asc(input)),-4),5),-4)"
  },
  {
    "input": "input : list = [-1, 2, -1, 3]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(take([-1, 2, -1, 3],2))",
    "io_inp": [
      -1,
      2,
      -1,
      3
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [3, 4, 1, 3, 0, -2]\noutput : list = [4, 3, 3, 1, 0, -2]",
    "output": "generated_output : list = sort_des([3, 4, 1, 3, 0, -2])",
    "io_inp": [
      3,
      4,
      1,
      3,
      0,
      -2
    ],
    "io_out": [
      4,
      3,
      3,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, -4, 0]\noutput : list = [0, 0, -3, -4]",
    "output": "generated_output : list = sort_des([0, -3, -4, 0])",
    "io_inp": [
      0,
      -3,
      -4,
      0
    ],
    "io_out": [
      0,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(sub_n([1, -5],1),4),-1)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(sub_n(input,1),4),-1)))"
  },
  {
    "input": "input : list = [5, -5, 3, -4, -1]\noutput : list = [-5, 3, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take([5, -5, 3, -4, -1],3))),24)",
    "io_inp": [
      5,
      -5,
      3,
      -4,
      -1
    ],
    "io_out": [
      -5,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(input,3))),24)"
  },
  {
    "input": "input : list = [-4, 4, -3, -3]\noutput : list = [9, 2, 2, 1]",
    "output": "generated_output : list = take(sort_des(take(sub_n(add_n([-4, 4, -3, -3],3),-2),23)),47)",
    "io_inp": [
      -4,
      4,
      -3,
      -3
    ],
    "io_out": [
      9,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(add_n(input,3),-2),23)),47)"
  },
  {
    "input": "input : list = [0, 0, 0, 1, 0]\noutput : list = [4, 3, 3, 3, 3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sub_n([0, 0, 0, 1, 0],2)),-2),-3))",
    "io_inp": [
      0,
      0,
      0,
      1,
      0
    ],
    "io_out": [
      4,
      3,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sub_n(input,2)),-2),-3))"
  },
  {
    "input": "input : list = [-3, 2, -1, 5]\noutput : list = [-3, 2, -1, 5]",
    "output": "generated_output : list = mul_n([-3, 2, -1, 5],1)",
    "io_inp": [
      -3,
      2,
      -1,
      5
    ],
    "io_out": [
      -3,
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -5, 0, -5, 0, -4]\noutput : list = [1, 0, 0, -4, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse([1, -5, 0, -5, 0, -4])))",
    "io_inp": [
      1,
      -5,
      0,
      -5,
      0,
      -4
    ],
    "io_out": [
      1,
      0,
      0,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [4, -2, -2, 0, -5]\noutput : list = [-8, -3, -5, -5, 1]",
    "output": "generated_output : list = reverse(sub_n([4, -2, -2, 0, -5],3))",
    "io_inp": [
      4,
      -2,
      -2,
      0,
      -5
    ],
    "io_out": [
      -8,
      -3,
      -5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-5, -5, -2]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take([-5, -5, -2],1))))",
    "io_inp": [
      -5,
      -5,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(input,1))))"
  },
  {
    "input": "input : list = [0, 3, -1, -2, -4, 2]\noutput : list = [0, 3, -1, -2]",
    "output": "generated_output : list = take([0, 3, -1, -2, -4, 2],4)",
    "io_inp": [
      0,
      3,
      -1,
      -2,
      -4,
      2
    ],
    "io_out": [
      0,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-2, -3, 0, 1, -2]\noutput : list = [-8, -7, -7, -5, -4]",
    "output": "generated_output : list = take(add_n(take(reverse(sort_des([-2, -3, 0, 1, -2])),31),-5),38)",
    "io_inp": [
      -2,
      -3,
      0,
      1,
      -2
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(sort_des(input)),31),-5),38)"
  },
  {
    "input": "input : list = [4, -3, 0]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc([4, -3, 0]))))",
    "io_inp": [
      4,
      -3,
      0
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [2, 2, -2, -4]\noutput : list = [1, 1, -3, -5]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_asc([2, 2, -2, -4])),-2)),-1)",
    "io_inp": [
      2,
      2,
      -2,
      -4
    ],
    "io_out": [
      1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_asc(input)),-2)),-1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_asc([-1, 0]),1),-1),1),-1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_asc(input),1),-1),1),-1)"
  },
  {
    "input": "input : list = [4, 0, -3, -4, -5]\noutput : list = [-5, -4, -3, 0, 4]",
    "output": "generated_output : list = sort_asc([4, 0, -3, -4, -5])",
    "io_inp": [
      4,
      0,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 2, 2],1)",
    "io_inp": [
      -5,
      2,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [2, -5]",
    "output": "generated_output : list = add_n(add_n(take(add_n(reverse([-5, -4, 3]),-4),2),-2),5)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(reverse(input),-4),2),-2),5)"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [-18, -10, 22]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sort_asc([-3, 5, -5])),4)),2)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      -18,
      -10,
      22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sort_asc(input)),4)),2)"
  },
  {
    "input": "input : list = [1, -5, 5, -3, 3]\noutput : list = [-21, -11, -1, 19, 29]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(mul_n([1, -5, 5, -3, 3],-5),4))))",
    "io_inp": [
      1,
      -5,
      5,
      -3,
      3
    ],
    "io_out": [
      -21,
      -11,
      -1,
      19,
      29
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(mul_n(input,-5),4))))"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = sort_asc(reverse([2, -1, -2]))",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, 4, -4, 1, 5]\noutput : list = [-20, -4, 16, -16, -8]",
    "output": "generated_output : list = take(reverse(reverse(reverse(mul_n([2, 4, -4, 1, 5],-4)))),16)",
    "io_inp": [
      2,
      4,
      -4,
      1,
      5
    ],
    "io_out": [
      -20,
      -4,
      16,
      -16,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(mul_n(input,-4)))),16)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 5, 0],1)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -4, 3]\noutput : list = [8, -6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(reverse([3, -4, 3]),12),15)),-2)",
    "io_inp": [
      3,
      -4,
      3
    ],
    "io_out": [
      8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(reverse(input),12),15)),-2)"
  },
  {
    "input": "input : list = [0, 4, -2, -3, -5, 5]\noutput : list = [19, 18, 14, 12, 11, 9]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n(sub_n([0, 4, -2, -3, -5, 5],-4),-4),4)),2)",
    "io_inp": [
      0,
      4,
      -2,
      -3,
      -5,
      5
    ],
    "io_out": [
      19,
      18,
      14,
      12,
      11,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(sub_n(input,-4),-4),4)),2)"
  },
  {
    "input": "input : list = [-2, -5, 4]\noutput : list = [-10, -19, 8]",
    "output": "generated_output : list = sub_n(mul_n([-2, -5, 4],3),4)",
    "io_inp": [
      -2,
      -5,
      4
    ],
    "io_out": [
      -10,
      -19,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),4)"
  },
  {
    "input": "input : list = [0, -1, -3, 1, 5, 3]\noutput : list = [-20, 0, 10, 20, 40, 60]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(sub_n([0, -1, -3, 1, 5, 3],-1),-5)),-2),44)",
    "io_inp": [
      0,
      -1,
      -3,
      1,
      5,
      3
    ],
    "io_out": [
      -20,
      0,
      10,
      20,
      40,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(sub_n(input,-1),-5)),-2),44)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(take([-2, 5, -2],1),3)),3),-2)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(take(input,1),3)),3),-2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse([-1, -5]),2)))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(input),2)))"
  },
  {
    "input": "input : list = [-5, -4, 1, -4, 5]\noutput : list = [-6, -5, 0, -5, 4]",
    "output": "generated_output : list = sub_n([-5, -4, 1, -4, 5],1)",
    "io_inp": [
      -5,
      -4,
      1,
      -4,
      5
    ],
    "io_out": [
      -6,
      -5,
      0,
      -5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-7, -11]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(mul_n([-2, -3],4),8),5)),-4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(mul_n(input,4),8),5)),-4)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-12, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(mul_n([-2, 3],-3),3),9)))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(mul_n(input,-3),3),9)))"
  },
  {
    "input": "input : list = [4, -1, -1, -3, -1]\noutput : list = [2, 4, 4, 4, 9]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(sub_n([4, -1, -1, -3, -1],-1),25))),-4)",
    "io_inp": [
      4,
      -1,
      -1,
      -3,
      -1
    ],
    "io_out": [
      2,
      4,
      4,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(sub_n(input,-1),25))),-4)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n([-2, 0],4)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 2, 0, 1, -2, 4]\noutput : list = [9, 7, 7, 6, 5, 3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse([2, 2, 0, 1, -2, 4]),5)))",
    "io_inp": [
      2,
      2,
      0,
      1,
      -2,
      4
    ],
    "io_out": [
      9,
      7,
      7,
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(input),5)))"
  },
  {
    "input": "input : list = [5, -2, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des(reverse(drop([5, -2, -3, -3],2)))",
    "io_inp": [
      5,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [-10, -10, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(sub_n([2, -1, -1],4),10)),2))",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      -10,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(sub_n(input,4),10)),2))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-8, -2]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_asc([-3, 3])),18),5))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_asc(input)),18),5))"
  },
  {
    "input": "input : list = [-3, 2, -1, -1, 4, 3]\noutput : list = [3, 4, -1, -1, 2, -3]",
    "output": "generated_output : list = reverse(reverse(reverse([-3, 2, -1, -1, 4, 3])))",
    "io_inp": [
      -3,
      2,
      -1,
      -1,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      -1,
      -1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [0, 5, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sort_asc([-2, 4, 3]))),1),-2)",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      0,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sort_asc(input))),1),-2)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [10, -6]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(sort_des([-4, 4])),-2)),2)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      10,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(sort_des(input)),-2)),2)"
  },
  {
    "input": "input : list = [5, 3, 1, -1, -1]\noutput : list = [-25, -15, -5, 5, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(mul_n([5, 3, 1, -1, -1],-5)))),7)",
    "io_inp": [
      5,
      3,
      1,
      -1,
      -1
    ],
    "io_out": [
      -25,
      -15,
      -5,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(mul_n(input,-5)))),7)"
  },
  {
    "input": "input : list = [2, 3, -2, 2, 4, -2]\noutput : list = [2, 2, 6, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse([2, 3, -2, 2, 4, -2]),4)))",
    "io_inp": [
      2,
      3,
      -2,
      2,
      4,
      -2
    ],
    "io_out": [
      2,
      2,
      6,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = mul_n(sort_des([2, -3]),1)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(drop([-3, 2, -3],1)),15)))",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(drop(input,1)),15)))"
  },
  {
    "input": "input : list = [5, 0, 1, -5]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(drop([5, 0, 1, -5],2),19))),5)",
    "io_inp": [
      5,
      0,
      1,
      -5
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(drop(input,2),19))),5)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(reverse(drop(sort_asc([-3, 4, -5]),2)),-4)",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(sort_asc(input),2)),-4)"
  },
  {
    "input": "input : list = [-1, 2, 3, 5, 4, -4]\noutput : list = [-4, -1, 2, 3, 4, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des([-1, 2, 3, 5, 4, -4]),2)),2)",
    "io_inp": [
      -1,
      2,
      3,
      5,
      4,
      -4
    ],
    "io_out": [
      -4,
      -1,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(input),2)),2)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [-7, -2, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(add_n([0, 3, -5],-1),-4)),-3),2)",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      -7,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(add_n(input,-1),-4)),-3),2)"
  },
  {
    "input": "input : list = [3, -2, 3, -4, 0, 5]\noutput : list = [5, 0, -4, 3, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, 3, -4, 0, 5])",
    "io_inp": [
      3,
      -2,
      3,
      -4,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -4,
      3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n([1, 3, 0],-3)),4))",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(input,-3)),4))"
  },
  {
    "input": "input : list = [0, -3, 0]\noutput : list = [-10, -16, -10]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(mul_n([0, -3, 0],-1),-5))),-2)",
    "io_inp": [
      0,
      -3,
      0
    ],
    "io_out": [
      -10,
      -16,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(mul_n(input,-1),-5))),-2)"
  },
  {
    "input": "input : list = [0, -2, -2, -5, -3]\noutput : list = [-8, -8, -6]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(add_n([0, -2, -2, -5, -3],-4),3),-2)))",
    "io_inp": [
      0,
      -2,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(add_n(input,-4),3),-2)))"
  },
  {
    "input": "input : list = [0, 0, 4, 1]\noutput : list = [-42, -42, -2, -32]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n([0, 0, 4, 1],-5),-5),-5),1),-2)",
    "io_inp": [
      0,
      0,
      4,
      1
    ],
    "io_out": [
      -42,
      -42,
      -2,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n(input,-5),-5),-5),1),-2)"
  },
  {
    "input": "input : list = [-2, 0, 4, 4]\noutput : list = [-12, -10, -6, -6]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_des([-2, 0, 4, 4]),4),3)),3)",
    "io_inp": [
      -2,
      0,
      4,
      4
    ],
    "io_out": [
      -12,
      -10,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_des(input),4),3)),3)"
  },
  {
    "input": "input : list = [-1, 3, 2, -3, -4, 5]\noutput : list = [-20, -15, 10, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(drop([-1, 3, 2, -3, -4, 5],2),24)),5))",
    "io_inp": [
      -1,
      3,
      2,
      -3,
      -4,
      5
    ],
    "io_out": [
      -20,
      -15,
      10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(drop(input,2),24)),5))"
  },
  {
    "input": "input : list = [4, 4, -3, -2, -5, -3]\noutput : list = [-8, -8, 4, 6, 6, 10]",
    "output": "generated_output : list = sort_asc(mul_n([4, 4, -3, -2, -5, -3],-2))",
    "io_inp": [
      4,
      4,
      -3,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -8,
      4,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [1, -1, 5, -2, 2, -3]\noutput : list = [11, 5, 23, 2, 14, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n([1, -1, 5, -2, 2, -3],-2),3),1),3)",
    "io_inp": [
      1,
      -1,
      5,
      -2,
      2,
      -3
    ],
    "io_out": [
      11,
      5,
      23,
      2,
      14,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(input,-2),3),1),3)"
  },
  {
    "input": "input : list = [5, -5, 2, -2, 1, 5]\noutput : list = [-12, -12, 0, 4, 16, 28]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(sub_n([5, -5, 2, -2, 1, 5],1),-4),-4)))",
    "io_inp": [
      5,
      -5,
      2,
      -2,
      1,
      5
    ],
    "io_out": [
      -12,
      -12,
      0,
      4,
      16,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(sub_n(input,1),-4),-4)))"
  },
  {
    "input": "input : list = [0, 5, -5, 3, -5]\noutput : list = [-10, -2, -10, 0, -5]",
    "output": "generated_output : list = reverse(sub_n([0, 5, -5, 3, -5],5))",
    "io_inp": [
      0,
      5,
      -5,
      3,
      -5
    ],
    "io_out": [
      -10,
      -2,
      -10,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,5))"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [-6, -3, 1]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(sort_asc([3, -1, -4]),2)),6))",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(sort_asc(input),2)),6))"
  },
  {
    "input": "input : list = [0, 5, 0, -3]\noutput : list = [9, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(drop([0, 5, 0, -3],2)),-3)))",
    "io_inp": [
      0,
      5,
      0,
      -3
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(drop(input,2)),-3)))"
  },
  {
    "input": "input : list = [1, 3, -3, -3]\noutput : list = [-1, 1, -5, -5]",
    "output": "generated_output : list = sub_n([1, 3, -3, -3],2)",
    "io_inp": [
      1,
      3,
      -3,
      -3
    ],
    "io_out": [
      -1,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [4, -5, 5, -4, 3]\noutput : list = [-6, 0, 21, 24]",
    "output": "generated_output : list = mul_n(sort_asc(drop(mul_n(add_n([4, -5, 5, -4, 3],-3),-1),1)),3)",
    "io_inp": [
      4,
      -5,
      5,
      -4,
      3
    ],
    "io_out": [
      -6,
      0,
      21,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(mul_n(add_n(input,-3),-1),1)),3)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-6, -6]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(add_n([-1, -1],4),3),-3),3))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(add_n(input,4),3),-3),3))"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [-1, 2, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(mul_n([2, -3, 5],-1),4))))",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      -1,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(mul_n(input,-1),4))))"
  },
  {
    "input": "input : list = [-2, -4, -1, 3, -2, -3]\noutput : list = [-4, -3, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(drop([-2, -4, -1, 3, -2, -3],1),5)),-5))",
    "io_inp": [
      -2,
      -4,
      -1,
      3,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(drop(input,1),5)),-5))"
  },
  {
    "input": "input : list = [1, 3, 5, 1, -4, 5]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(take([1, 3, 5, 1, -4, 5],1),1)",
    "io_inp": [
      1,
      3,
      5,
      1,
      -4,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),1)"
  },
  {
    "input": "input : list = [2, -3, 0, 0]\noutput : list = [0, -5, -2, -2]",
    "output": "generated_output : list = add_n([2, -3, 0, 0],-2)",
    "io_inp": [
      2,
      -3,
      0,
      0
    ],
    "io_out": [
      0,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, 0, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(drop([4, 0, -2],1),-3))))",
    "io_inp": [
      4,
      0,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [4, -3, 1, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = take([4, -3, 1, -3],2)",
    "io_inp": [
      4,
      -3,
      1,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [1, 8]",
    "output": "generated_output : list = sub_n([-4, 3],-5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(add_n([-3, 1],2),-1)),-5),21)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(add_n(input,2),-1)),-5),21)"
  },
  {
    "input": "input : list = [-4, 1, -5, -5, -3]\noutput : list = [-5, -5, -4, -3, 1]",
    "output": "generated_output : list = sort_asc([-4, 1, -5, -5, -3])",
    "io_inp": [
      -4,
      1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0, -4, 0]\noutput : list = [-2, -1, 2, 2]",
    "output": "generated_output : list = take(take(add_n(sort_asc(reverse([-3, 0, -4, 0])),2),31),15)",
    "io_inp": [
      -3,
      0,
      -4,
      0
    ],
    "io_out": [
      -2,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(reverse(input)),2),31),15)"
  },
  {
    "input": "input : list = [-3, -3, 1, -2]\noutput : list = [-3, 1, -2]",
    "output": "generated_output : list = drop([-3, -3, 1, -2],1)",
    "io_inp": [
      -3,
      -3,
      1,
      -2
    ],
    "io_out": [
      -3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 1, -3]\noutput : list = [-20, 20, -60]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(mul_n([-1, 1, -3],5),2),2),32),1)",
    "io_inp": [
      -1,
      1,
      -3
    ],
    "io_out": [
      -20,
      20,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(mul_n(input,5),2),2),32),1)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-12, -30]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_asc([5, 2])),-2),3))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -12,
      -30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_asc(input)),-2),3))"
  },
  {
    "input": "input : list = [5, -5, -4, -3]\noutput : list = [8, -2, -1, 0]",
    "output": "generated_output : list = add_n([5, -5, -4, -3],3)",
    "io_inp": [
      5,
      -5,
      -4,
      -3
    ],
    "io_out": [
      8,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, 2, 1, 2, 5, -3]\noutput : list = [-3, 5, 2, 1, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, 1, 2, 5, -3])",
    "io_inp": [
      1,
      2,
      1,
      2,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      2,
      1,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, -2, 0]\noutput : list = [2, 4, 4, 6]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(sort_des([0, 2, -2, 0])),14),4))",
    "io_inp": [
      0,
      2,
      -2,
      0
    ],
    "io_out": [
      2,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(sort_des(input)),14),4))"
  },
  {
    "input": "input : list = [-5, -1, -5, -1, 4, -3]\noutput : list = [-6, -4, -2, 3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(drop([-5, -1, -5, -1, 4, -3],2)))),-1)",
    "io_inp": [
      -5,
      -1,
      -5,
      -1,
      4,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(drop(input,2)))),-1)"
  },
  {
    "input": "input : list = [-3, -5, 4, 4, -4, 2]\noutput : list = [3, 3, -24, -18]",
    "output": "generated_output : list = reverse(take(mul_n(take(sub_n([-3, -5, 4, 4, -4, 2],3),27),3),4))",
    "io_inp": [
      -3,
      -5,
      4,
      4,
      -4,
      2
    ],
    "io_out": [
      3,
      3,
      -24,
      -18
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(sub_n(input,3),27),3),4))"
  },
  {
    "input": "input : list = [-1, 3, 5, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take([-1, 3, 5, 0],2)",
    "io_inp": [
      -1,
      3,
      5,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -4, -5, -3]\noutput : list = [-3, -3, -4, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sort_asc([-3, -4, -5, -3]),19))))",
    "io_inp": [
      -3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sort_asc(input),19))))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sub_n([-5, 3],-1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, -3, 4, 4, 0, 0]\noutput : list = [-7, -7, -3, -3, -10, -7]",
    "output": "generated_output : list = add_n(take(take(add_n(reverse([0, -3, 4, 4, 0, 0]),-5),23),23),-2)",
    "io_inp": [
      0,
      -3,
      4,
      4,
      0,
      0
    ],
    "io_out": [
      -7,
      -7,
      -3,
      -3,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(reverse(input),-5),23),23),-2)"
  },
  {
    "input": "input : list = [3, -3, -1, -4]\noutput : list = [-5, -2, -4, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(reverse([3, -3, -1, -4]))),-3),-2)",
    "io_inp": [
      3,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(reverse(input))),-3),-2)"
  },
  {
    "input": "input : list = [3, 5, 3, -5, 1, 3]\noutput : list = [24, -6, -16, -16, -16, -26]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(mul_n([3, 5, 3, -5, 1, 3],-5),-4),-5)))",
    "io_inp": [
      3,
      5,
      3,
      -5,
      1,
      3
    ],
    "io_out": [
      24,
      -6,
      -16,
      -16,
      -16,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(mul_n(input,-5),-4),-5)))"
  },
  {
    "input": "input : list = [-2, 0, 1, -5]\noutput : list = [0, -1, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_des([-2, 0, 1, -5])))),1)",
    "io_inp": [
      -2,
      0,
      1,
      -5
    ],
    "io_out": [
      0,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [-4, 4, -4, -1]\noutput : list = [-4, -1, 4]",
    "output": "generated_output : list = sort_asc(drop([-4, 4, -4, -1],1))",
    "io_inp": [
      -4,
      4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n([2, 5],2)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -1, -4],1)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([-2, -5])),4)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [0, 0, 4, -5, 0]\noutput : list = [7, -2, 3]",
    "output": "generated_output : list = sub_n(drop(take(add_n([0, 0, 4, -5, 0],-2),23),2),-5)",
    "io_inp": [
      0,
      0,
      4,
      -5,
      0
    ],
    "io_out": [
      7,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(drop(take(add_n(input,-2),23),2),-5)"
  },
  {
    "input": "input : list = [-2, 2, -3]\noutput : list = [-14, -12, -4]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(sub_n([-2, 2, -3],4),2)),25))",
    "io_inp": [
      -2,
      2,
      -3
    ],
    "io_out": [
      -14,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(sub_n(input,4),2)),25))"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(reverse([-3, 0, -3]),-5))))",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [-5, 1, 3, -5, -4, 4]\noutput : list = [-10, -10, -9, -4, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n([-5, 1, 3, -5, -4, 4],5))",
    "io_inp": [
      -5,
      1,
      3,
      -5,
      -4,
      4
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,5))"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [0]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(take([-3, -4, 2],1),3)),-1),38)",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(take(input,1),3)),-1),38)"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [-17, -8, -11]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(add_n([-4, 5, 2],-2),15),3),4),4)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      -17,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(add_n(input,-2),15),3),4),4)"
  },
  {
    "input": "input : list = [-3, 2, -3, -5]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(add_n(take([-3, 2, -3, -5],1),-1))),3)",
    "io_inp": [
      -3,
      2,
      -3,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(add_n(take(input,1),-1))),3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_des([4, 3]),9)),5),1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_des(input),9)),5),1)"
  },
  {
    "input": "input : list = [0, 5, 5, -2, -2]\noutput : list = [20, 20, 0, -8, -8]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(mul_n([0, 5, 5, -2, -2],4)),1)))",
    "io_inp": [
      0,
      5,
      5,
      -2,
      -2
    ],
    "io_out": [
      20,
      20,
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(mul_n(input,4)),1)))"
  },
  {
    "input": "input : list = [-2, 1, -2]\noutput : list = [-7, -4, -7]",
    "output": "generated_output : list = add_n([-2, 1, -2],-5)",
    "io_inp": [
      -2,
      1,
      -2
    ],
    "io_out": [
      -7,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 5, -1, 5, 3, 3]\noutput : list = [3, 3, 5, -1, 5, -4]",
    "output": "generated_output : list = reverse([-4, 5, -1, 5, 3, 3])",
    "io_inp": [
      -4,
      5,
      -1,
      5,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      5,
      -1,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 1, -5, -5]\noutput : list = [-17, -17, -5, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(mul_n([-1, 1, -5, -5],3)),3)),-1)",
    "io_inp": [
      -1,
      1,
      -5,
      -5
    ],
    "io_out": [
      -17,
      -17,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(mul_n(input,3)),3)),-1)"
  },
  {
    "input": "input : list = [0, 2, -3, 4, 2, 3]\noutput : list = [2, 1, 0, 0, -2, -5]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(sort_asc([0, 2, -3, 4, 2, 3]))),1),-1)",
    "io_inp": [
      0,
      2,
      -3,
      4,
      2,
      3
    ],
    "io_out": [
      2,
      1,
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(sort_asc(input))),1),-1)"
  },
  {
    "input": "input : list = [5, 0, 5, 4, 0]\noutput : list = [6, 6, 3, -9, -9]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([5, 0, 5, 4, 0]),3),3)",
    "io_inp": [
      5,
      0,
      5,
      4,
      0
    ],
    "io_out": [
      6,
      6,
      3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),3),3)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-5, -3, 3]",
    "output": "generated_output : list = reverse(sort_des([-5, -3, 3]))",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [1, 5]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(sort_des([-4, 0])),-1),4),8)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(sort_des(input)),-1),4),8)"
  },
  {
    "input": "input : list = [5, -4, -2, -5, 2]\noutput : list = [-4, -8, -11]",
    "output": "generated_output : list = sub_n(add_n(sort_des(drop([5, -4, -2, -5, 2],2)),-1),5)",
    "io_inp": [
      5,
      -4,
      -2,
      -5,
      2
    ],
    "io_out": [
      -4,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(drop(input,2)),-1),5)"
  },
  {
    "input": "input : list = [-3, 3, 2, -3, -4, 4]\noutput : list = [-1, 0, 0, 5, 6, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sort_asc([-3, 3, 2, -3, -4, 4]))),-3))",
    "io_inp": [
      -3,
      3,
      2,
      -3,
      -4,
      4
    ],
    "io_out": [
      -1,
      0,
      0,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-19, -13]",
    "output": "generated_output : list = take(sub_n(reverse(take(mul_n([3, 5],-3),4)),4),12)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -19,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(mul_n(input,-3),4)),4),12)"
  },
  {
    "input": "input : list = [2, -5, 1, -2]\noutput : list = [-6, -3, -9, -2]",
    "output": "generated_output : list = reverse(add_n([2, -5, 1, -2],-4))",
    "io_inp": [
      2,
      -5,
      1,
      -2
    ],
    "io_out": [
      -6,
      -3,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = take(sort_des([4, -5, -2]),2)",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),2)"
  },
  {
    "input": "input : list = [5, -1, -4, 2, 2, 3]\noutput : list = [-25, 5]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(take([5, -1, -4, 2, 2, 3],2),-5))),24)",
    "io_inp": [
      5,
      -1,
      -4,
      2,
      2,
      3
    ],
    "io_out": [
      -25,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(take(input,2),-5))),24)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [5, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n([1, 2],3),-1)),1))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n(input,3),-1)),1))"
  },
  {
    "input": "input : list = [4, 2, 5]\noutput : list = [9, 8, 6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc([4, 2, 5]))),4)",
    "io_inp": [
      4,
      2,
      5
    ],
    "io_out": [
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(input))),4)"
  },
  {
    "input": "input : list = [-5, -2, 1, 2, 2, -4]\noutput : list = [-4, 2, 2]",
    "output": "generated_output : list = sort_asc(drop([-5, -2, 1, 2, 2, -4],3))",
    "io_inp": [
      -5,
      -2,
      1,
      2,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [3, -2, -5, 2]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(take([3, -2, -5, 2],1),-5)),36))",
    "io_inp": [
      3,
      -2,
      -5,
      2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(take(input,1),-5)),36))"
  },
  {
    "input": "input : list = [1, -4, 2, 3]\noutput : list = [-4, -9, -3, -2]",
    "output": "generated_output : list = add_n(add_n([1, -4, 2, 3],-3),-2)",
    "io_inp": [
      1,
      -4,
      2,
      3
    ],
    "io_out": [
      -4,
      -9,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),-2)"
  },
  {
    "input": "input : list = [-5, -4, -1, 3, -3, 5]\noutput : list = [5, 3, -1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(mul_n([-5, -4, -1, 3, -3, 5],1)),24)))",
    "io_inp": [
      -5,
      -4,
      -1,
      3,
      -3,
      5
    ],
    "io_out": [
      5,
      3,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(mul_n(input,1)),24)))"
  },
  {
    "input": "input : list = [-2, -4, -1, 3, -3]\noutput : list = [-9, 9, -3, -12, -6]",
    "output": "generated_output : list = reverse(mul_n([-2, -4, -1, 3, -3],3))",
    "io_inp": [
      -2,
      -4,
      -1,
      3,
      -3
    ],
    "io_out": [
      -9,
      9,
      -3,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [4, 2, 2, -1, -3, 4]\noutput : list = [0, 2, 5, 7]",
    "output": "generated_output : list = add_n(sort_asc(drop([4, 2, 2, -1, -3, 4],2)),3)",
    "io_inp": [
      4,
      2,
      2,
      -1,
      -3,
      4
    ],
    "io_out": [
      0,
      2,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,2)),3)"
  },
  {
    "input": "input : list = [5, -3, 5, -3, 3, 0]\noutput : list = [0, 3, -3, 5, -3, 5]",
    "output": "generated_output : list = take(reverse([5, -3, 5, -3, 3, 0]),19)",
    "io_inp": [
      5,
      -3,
      5,
      -3,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      -3,
      5,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(input),19)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(sort_des([4, -5])))))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 4, 3, -1, -5]\noutput : list = [4, 3, -1, -2, -5]",
    "output": "generated_output : list = sort_des([-2, 4, 3, -1, -5])",
    "io_inp": [
      -2,
      4,
      3,
      -1,
      -5
    ],
    "io_out": [
      4,
      3,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, 2, 5, 4, 0]\noutput : list = [6, -1, 5, 8, 7, 3]",
    "output": "generated_output : list = sub_n(add_n([3, -4, 2, 5, 4, 0],4),1)",
    "io_inp": [
      3,
      -4,
      2,
      5,
      4,
      0
    ],
    "io_out": [
      6,
      -1,
      5,
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),1)"
  },
  {
    "input": "input : list = [-4, 3, 4, 2, -5]\noutput : list = [4, 3, 2, -4, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n([-4, 3, 4, 2, -5],-3),3)),17))",
    "io_inp": [
      -4,
      3,
      4,
      2,
      -5
    ],
    "io_out": [
      4,
      3,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n(input,-3),3)),17))"
  },
  {
    "input": "input : list = [1, -2, -5, -4, -3, 1]\noutput : list = [-7, -7, -10, -11, -12, -13]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(reverse([1, -2, -5, -4, -3, 1])),16),-4),4)",
    "io_inp": [
      1,
      -2,
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      -7,
      -7,
      -10,
      -11,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(reverse(input)),16),-4),4)"
  },
  {
    "input": "input : list = [-1, 1, 4, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take(sub_n(take(reverse(take([-1, 1, 4, -5],1)),12),4),18)",
    "io_inp": [
      -1,
      1,
      4,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(take(input,1)),12),4),18)"
  },
  {
    "input": "input : list = [-1, -4, 1, -1, 4, 4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(take([-1, -4, 1, -1, 4, 4],1))),11))",
    "io_inp": [
      -1,
      -4,
      1,
      -1,
      4,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(take(input,1))),11))"
  },
  {
    "input": "input : list = [4, -3, 2, 3, -5]\noutput : list = [-5, -45, -40, -15, -50]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(reverse([4, -3, 2, 3, -5]),-5),24),-1),-5)",
    "io_inp": [
      4,
      -3,
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      -45,
      -40,
      -15,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(reverse(input),-5),24),-1),-5)"
  },
  {
    "input": "input : list = [-5, 2, 3, -2, 2, 2]\noutput : list = [-15, -6, 6, 6, 6, 9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sub_n([-5, 2, 3, -2, 2, 2],-5),5))),3)",
    "io_inp": [
      -5,
      2,
      3,
      -2,
      2,
      2
    ],
    "io_out": [
      -15,
      -6,
      6,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sub_n(input,-5),5))),3)"
  },
  {
    "input": "input : list = [1, 0, -2, 2, 5, 4]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 0, -2, 2, 5, 4],1)",
    "io_inp": [
      1,
      0,
      -2,
      2,
      5,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -3, -5, 5]\noutput : list = [6, 7, 5, 15]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n([-4, -3, -5, 5],-4),-2),-3),-5)",
    "io_inp": [
      -4,
      -3,
      -5,
      5
    ],
    "io_out": [
      6,
      7,
      5,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(input,-4),-2),-3),-5)"
  },
  {
    "input": "input : list = [-1, 0, 2, -3]\noutput : list = [-3, -1, 0, 2]",
    "output": "generated_output : list = sort_asc([-1, 0, 2, -3])",
    "io_inp": [
      -1,
      0,
      2,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 2, -1, 1, -4]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc(drop([-1, 2, -1, 1, -4],2))",
    "io_inp": [
      -1,
      2,
      -1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [4, 4, 2]\noutput : list = [6, 8, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(sub_n([4, 4, 2],-1),17)),-3))",
    "io_inp": [
      4,
      4,
      2
    ],
    "io_out": [
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(sub_n(input,-1),17)),-3))"
  },
  {
    "input": "input : list = [-2, -5, -1, -2, 5]\noutput : list = [9, 3]",
    "output": "generated_output : list = add_n(take(sort_des(reverse([-2, -5, -1, -2, 5])),2),4)",
    "io_inp": [
      -2,
      -5,
      -1,
      -2,
      5
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(input)),2),4)"
  },
  {
    "input": "input : list = [5, -3, 4, 3]\noutput : list = [4, -4]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(take([5, -3, 4, 3],2),15),-1),2),2)",
    "io_inp": [
      5,
      -3,
      4,
      3
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(take(input,2),15),-1),2),2)"
  },
  {
    "input": "input : list = [2, 1, 2, -2, 1, 3]\noutput : list = [-2, -3, -3, -4, -4, -7]",
    "output": "generated_output : list = take(take(sub_n(take(sort_des([2, 1, 2, -2, 1, 3]),26),5),28),11)",
    "io_inp": [
      2,
      1,
      2,
      -2,
      1,
      3
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(sort_des(input),26),5),28),11)"
  },
  {
    "input": "input : list = [4, 4, -1, -3]\noutput : list = [20]",
    "output": "generated_output : list = take(sub_n(take(reverse(mul_n([4, 4, -1, -3],-5)),1),-5),5)",
    "io_inp": [
      4,
      4,
      -1,
      -3
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(mul_n(input,-5)),1),-5),5)"
  },
  {
    "input": "input : list = [4, -2, 3, 3, -5, 0]\noutput : list = [9, 8, 8, 5, 3, 0]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(sort_des([4, -2, 3, 3, -5, 0]))),5))",
    "io_inp": [
      4,
      -2,
      3,
      3,
      -5,
      0
    ],
    "io_out": [
      9,
      8,
      8,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(sort_des(input))),5))"
  },
  {
    "input": "input : list = [4, 4, -4, 5, 3, 1]\noutput : list = [5, 4, 4, -4]",
    "output": "generated_output : list = sort_des(take([4, 4, -4, 5, 3, 1],4))",
    "io_inp": [
      4,
      4,
      -4,
      5,
      3,
      1
    ],
    "io_out": [
      5,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [-4, -4, -5, 3]\noutput : list = [12, 12, 8, 40]",
    "output": "generated_output : list = mul_n(sub_n(add_n([-4, -4, -5, 3],4),-3),4)",
    "io_inp": [
      -4,
      -4,
      -5,
      3
    ],
    "io_out": [
      12,
      12,
      8,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,4),-3),4)"
  },
  {
    "input": "input : list = [5, 0, -5, -1, 5]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(take([5, 0, -5, -1, 5],1),16),1),-2))",
    "io_inp": [
      5,
      0,
      -5,
      -1,
      5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(take(input,1),16),1),-2))"
  },
  {
    "input": "input : list = [0, 4, 2, -1, 1, 1]\noutput : list = [5, 3, 2, 2, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n([0, 4, 2, -1, 1, 1],1))),1)",
    "io_inp": [
      0,
      4,
      2,
      -1,
      1,
      1
    ],
    "io_out": [
      5,
      3,
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(input,1))),1)"
  },
  {
    "input": "input : list = [-5, 5, 4, 1, 1, -3]\noutput : list = [-1, 3, 3, 6, 7, -3]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n([-5, 5, 4, 1, 1, -3],-1),-1)),-4)",
    "io_inp": [
      -5,
      5,
      4,
      1,
      1,
      -3
    ],
    "io_out": [
      -1,
      3,
      3,
      6,
      7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(input,-1),-1)),-4)"
  },
  {
    "input": "input : list = [3, 1, -2, 3]\noutput : list = [-1, -6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(drop([3, 1, -2, 3],2),5),4)),5)",
    "io_inp": [
      3,
      1,
      -2,
      3
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(drop(input,2),5),4)),5)"
  },
  {
    "input": "input : list = [-5, 0, 5, -4, -5]\noutput : list = [-16, -6, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(add_n([-5, 0, 5, -4, -5],3))),-2))",
    "io_inp": [
      -5,
      0,
      5,
      -4,
      -5
    ],
    "io_out": [
      -16,
      -6,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(add_n(input,3))),-2))"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [-5, -14, 4]",
    "output": "generated_output : list = take(add_n(add_n(mul_n([-1, -4, 2],3),1),-3),26)",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      -5,
      -14,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(input,3),1),-3),26)"
  },
  {
    "input": "input : list = [2, 3, 4, -5]\noutput : list = [-6]",
    "output": "generated_output : list = take(reverse(take(mul_n(take([2, 3, 4, -5],1),-3),8)),19)",
    "io_inp": [
      2,
      3,
      4,
      -5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(take(input,1),-3),8)),19)"
  },
  {
    "input": "input : list = [4, -2, 3, 4, -5]\noutput : list = [25, -20]",
    "output": "generated_output : list = take(sort_des(mul_n(drop([4, -2, 3, 4, -5],3),-5)),38)",
    "io_inp": [
      4,
      -2,
      3,
      4,
      -5
    ],
    "io_out": [
      25,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(drop(input,3),-5)),38)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sub_n(add_n(mul_n([-2, -4],-1),-5),5)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-1),-5),5)"
  },
  {
    "input": "input : list = [2, 4, 1, -3, -3, -3]\noutput : list = [7, 9, 6, 2, 2, 2]",
    "output": "generated_output : list = sub_n([2, 4, 1, -3, -3, -3],-5)",
    "io_inp": [
      2,
      4,
      1,
      -3,
      -3,
      -3
    ],
    "io_out": [
      7,
      9,
      6,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -5, -4, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take([3, -5, -4, -1],1)),1))",
    "io_inp": [
      3,
      -5,
      -4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(input,1)),1))"
  },
  {
    "input": "input : list = [-2, -1, -1, 1]\noutput : list = [8, 6, 6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(drop([-2, -1, -1, 1],1),-5))),-2)",
    "io_inp": [
      -2,
      -1,
      -1,
      1
    ],
    "io_out": [
      8,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(drop(input,1),-5))),-2)"
  },
  {
    "input": "input : list = [0, 0, 2, -4, 5, 5]\noutput : list = [-5, -9, -9, -11, -14, -14]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(sub_n([0, 0, 2, -4, 5, 5],-5),1),-1)),-3)",
    "io_inp": [
      0,
      0,
      2,
      -4,
      5,
      5
    ],
    "io_out": [
      -5,
      -9,
      -9,
      -11,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(sub_n(input,-5),1),-1)),-3)"
  },
  {
    "input": "input : list = [-5, 1, 4, 2, -3, -5]\noutput : list = [4, 2, 1, -3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse([-5, 1, 4, 2, -3, -5])))",
    "io_inp": [
      -5,
      1,
      4,
      2,
      -3,
      -5
    ],
    "io_out": [
      4,
      2,
      1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-3, -1, 3, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(take([-3, -1, 3, 0],2),18),-2)))",
    "io_inp": [
      -3,
      -1,
      3,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(take(input,2),18),-2)))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [3, -9]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(add_n([-2, 2],1),2),3)))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(add_n(input,1),2),3)))"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [-45, -20, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n([-5, 0, 3],-4),5),10)))",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      -45,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n(input,-4),5),10)))"
  },
  {
    "input": "input : list = [-2, -2, 5]\noutput : list = [-2, -2, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(take(add_n([-2, -2, 5],-1),8),1),23))",
    "io_inp": [
      -2,
      -2,
      5
    ],
    "io_out": [
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(add_n(input,-1),8),1),23))"
  },
  {
    "input": "input : list = [3, -5, 0, -3, 1, -5]\noutput : list = [-2, -4, -5, -8, -10, -10]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(sort_des([3, -5, 0, -3, 1, -5]))),-5))",
    "io_inp": [
      3,
      -5,
      0,
      -3,
      1,
      -5
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-1, -4, -5, 5, 1]\noutput : list = [6, 9, 18, 24, 36]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(sub_n([-1, -4, -5, 5, 1],-5),2),-1)),-3)",
    "io_inp": [
      -1,
      -4,
      -5,
      5,
      1
    ],
    "io_out": [
      6,
      9,
      18,
      24,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(sub_n(input,-5),2),-1)),-3)"
  },
  {
    "input": "input : list = [-2, 3, -2, -5, 3, -4]\noutput : list = [-12, 16, 20]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(drop([-2, 3, -2, -5, 3, -4],3)),-4)))",
    "io_inp": [
      -2,
      3,
      -2,
      -5,
      3,
      -4
    ],
    "io_out": [
      -12,
      16,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(drop(input,3)),-4)))"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-2, 0, 5]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_asc([-4, 3, -2])),2)))",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [5, 5, 5, -2]\noutput : list = [5, -23, -23, -23]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(mul_n([5, 5, 5, -2],-4)),-3)))",
    "io_inp": [
      5,
      5,
      5,
      -2
    ],
    "io_out": [
      5,
      -23,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(mul_n(input,-4)),-3)))"
  },
  {
    "input": "input : list = [-3, 4, 1]\noutput : list = [-675, 900, 225]",
    "output": "generated_output : list = mul_n(mul_n(take(mul_n(mul_n([-3, 4, 1],3),-5),22),-5),3)",
    "io_inp": [
      -3,
      4,
      1
    ],
    "io_out": [
      -675,
      900,
      225
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(mul_n(mul_n(input,3),-5),22),-5),3)"
  },
  {
    "input": "input : list = [-5, 2, 2, 3]\noutput : list = [-12, -8]",
    "output": "generated_output : list = mul_n(take(sort_des(take(drop([-5, 2, 2, 3],2),7)),11),-4)",
    "io_inp": [
      -5,
      2,
      2,
      3
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(drop(input,2),7)),11),-4)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [7, 8, 8]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n([-1, 0, 0],1),-3),-4)))",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n(input,1),-3),-4)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(drop(sub_n([2, -4],-1),1),1),-3))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(drop(sub_n(input,-1),1),1),-3))"
  },
  {
    "input": "input : list = [5, 3, -1, 1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 3, -1, 1],1)",
    "io_inp": [
      5,
      3,
      -1,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 4, -1, 4, 5, -3]\noutput : list = [-3, -1, 1, 6, 6, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(sort_des([-5, 4, -1, 4, 5, -3]),8)),2))",
    "io_inp": [
      -5,
      4,
      -1,
      4,
      5,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(sort_des(input),8)),2))"
  },
  {
    "input": "input : list = [1, 5, -3, 2]\noutput : list = [20, 8, 4, -12]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(sort_asc([1, 5, -3, 2])),4)),36)",
    "io_inp": [
      1,
      5,
      -3,
      2
    ],
    "io_out": [
      20,
      8,
      4,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(sort_asc(input)),4)),36)"
  },
  {
    "input": "input : list = [3, -4, 2]\noutput : list = [12, -16, 8]",
    "output": "generated_output : list = mul_n([3, -4, 2],4)",
    "io_inp": [
      3,
      -4,
      2
    ],
    "io_out": [
      12,
      -16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [-8]",
    "output": "generated_output : list = add_n(sort_des(take([-4, 1, 5],1)),-4)",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-4)"
  },
  {
    "input": "input : list = [0, 2, 0, 5, 0]\noutput : list = [-1, 1, -1, 4, -1]",
    "output": "generated_output : list = sub_n([0, 2, 0, 5, 0],1)",
    "io_inp": [
      0,
      2,
      0,
      5,
      0
    ],
    "io_out": [
      -1,
      1,
      -1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-30, -18]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(mul_n([5, 2],-4),5))),5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -30,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(mul_n(input,-4),5))),5)"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = sort_des([0, -5, 4])",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5, -2, 0]\noutput : list = [7, 2, 0, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des([-2, 5, -2, 0]))),-2)",
    "io_inp": [
      -2,
      5,
      -2,
      0
    ],
    "io_out": [
      7,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [-9, 15, 3]",
    "output": "generated_output : list = mul_n([3, -5, -1],-3)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      -9,
      15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 4, 5]\noutput : list = [-25, -20, 25]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(mul_n([-5, 4, 5],-5)))))",
    "io_inp": [
      -5,
      4,
      5
    ],
    "io_out": [
      -25,
      -20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [6, 0, 0]",
    "output": "generated_output : list = add_n(sub_n(take(take(sub_n([4, -2, -2],-5),19),16),-1),-4)",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      6,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(sub_n(input,-5),19),16),-1),-4)"
  },
  {
    "input": "input : list = [4, 2, 3, 4, -5, 0]\noutput : list = [8, 4, 6, 8, -10, 0]",
    "output": "generated_output : list = take(mul_n([4, 2, 3, 4, -5, 0],2),16)",
    "io_inp": [
      4,
      2,
      3,
      4,
      -5,
      0
    ],
    "io_out": [
      8,
      4,
      6,
      8,
      -10,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),16)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [5, -3, 0]",
    "output": "generated_output : list = reverse([0, -3, 5])",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [3, 2]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse([0, -1])),-2),5)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(input)),-2),5)"
  },
  {
    "input": "input : list = [4, 3, 4]\noutput : list = [19, 19, 14]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(sort_asc([4, 3, 4]),5),15)),1)",
    "io_inp": [
      4,
      3,
      4
    ],
    "io_out": [
      19,
      19,
      14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(sort_asc(input),5),15)),1)"
  },
  {
    "input": "input : list = [-1, -1, 5, -1, -5]\noutput : list = [9, 3, 3, 3, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sort_des([-1, -1, 5, -1, -5]),4))))",
    "io_inp": [
      -1,
      -1,
      5,
      -1,
      -5
    ],
    "io_out": [
      9,
      3,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-3, 1, 5, 1, -5, 3]\noutput : list = [12, 4, -20]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(drop([-3, 1, 5, 1, -5, 3],3)),25),4))",
    "io_inp": [
      -3,
      1,
      5,
      1,
      -5,
      3
    ],
    "io_out": [
      12,
      4,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(drop(input,3)),25),4))"
  },
  {
    "input": "input : list = [5, 3, -2, -3, -2, 3]\noutput : list = [18, 12, 12, -3, -3, -6]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([5, 3, -2, -3, -2, 3],3),-3))",
    "io_inp": [
      5,
      3,
      -2,
      -3,
      -2,
      3
    ],
    "io_out": [
      18,
      12,
      12,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,3),-3))"
  },
  {
    "input": "input : list = [4, 4, -3, 4]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(take([4, 4, -3, 4],1),4),-4),-3))",
    "io_inp": [
      4,
      4,
      -3,
      4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(take(input,1),4),-4),-3))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(take(sub_n([2, 3],-1),14))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-1),14))"
  },
  {
    "input": "input : list = [-1, 1, -2, 2]\noutput : list = [-8, -6, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(mul_n([-1, 1, -2, 2],-2),4))))",
    "io_inp": [
      -1,
      1,
      -2,
      2
    ],
    "io_out": [
      -8,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(mul_n(input,-2),4))))"
  },
  {
    "input": "input : list = [-4, 1, -4, 0, -4, -4]\noutput : list = [-4, -4, -4, -4, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(reverse([-4, 1, -4, 0, -4, -4]))))",
    "io_inp": [
      -4,
      1,
      -4,
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [5, -3, -1, 1]\noutput : list = [15, -15, -45, 75]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(reverse([5, -3, -1, 1]),-1),5),5),-3)",
    "io_inp": [
      5,
      -3,
      -1,
      1
    ],
    "io_out": [
      15,
      -15,
      -45,
      75
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(reverse(input),-1),5),5),-3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-8, 0]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n([-3, 5],4),-1)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(input,4),-1)))"
  },
  {
    "input": "input : list = [4, 2, 5, -1, 2, -1]\noutput : list = [-1, -1, 2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([4, 2, 5, -1, 2, -1]))",
    "io_inp": [
      4,
      2,
      5,
      -1,
      2,
      -1
    ],
    "io_out": [
      -1,
      -1,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, -4, 4, -2, 4]\noutput : list = [9, 3, 9, 1, 5]",
    "output": "generated_output : list = reverse(take(sub_n([0, -4, 4, -2, 4],-5),25))",
    "io_inp": [
      0,
      -4,
      4,
      -2,
      4
    ],
    "io_out": [
      9,
      3,
      9,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-5),25))"
  },
  {
    "input": "input : list = [1, -5, -2, -1]\noutput : list = [42, 30, 26, 18]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(sort_asc([1, -5, -2, -1]),5),-4)),2)",
    "io_inp": [
      1,
      -5,
      -2,
      -1
    ],
    "io_out": [
      42,
      30,
      26,
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(sort_asc(input),5),-4)),2)"
  },
  {
    "input": "input : list = [2, 4, -1]\noutput : list = [-20, -5, 5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sub_n(sort_asc([2, 4, -1]),3),5)))",
    "io_inp": [
      2,
      4,
      -1
    ],
    "io_out": [
      -20,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sub_n(sort_asc(input),3),5)))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [18, 18]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc(mul_n([5, 5],5)),2),-3),-2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      18,
      18
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(mul_n(input,5)),2),-3),-2)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [9, 11, 3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([2, 4, -4],1),-3),-5)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      9,
      11,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,1),-3),-5)"
  },
  {
    "input": "input : list = [2, -1, -1, 1, 0]\noutput : list = [6, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(drop([2, -1, -1, 1, 0],3)))),-5)",
    "io_inp": [
      2,
      -1,
      -1,
      1,
      0
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(drop(input,3)))),-5)"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [6, 4, 2]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(mul_n([-1, 1, 3],1)),5),-3))",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(mul_n(input,1)),5),-3))"
  },
  {
    "input": "input : list = [3, 4, 2, 0, 4, -5]\noutput : list = [7, 7, 6, 5, 3, -2]",
    "output": "generated_output : list = sort_des(add_n([3, 4, 2, 0, 4, -5],3))",
    "io_inp": [
      3,
      4,
      2,
      0,
      4,
      -5
    ],
    "io_out": [
      7,
      7,
      6,
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-9, -9]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(sub_n([-5, -5],-1))),-5),10)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(sub_n(input,-1))),-5),10)"
  },
  {
    "input": "input : list = [-1, 4, -1, -3, -1]\noutput : list = [-1, -6, -1, 1, -1]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(add_n([-1, 4, -1, -3, -1],2),-5),2),-1),3)",
    "io_inp": [
      -1,
      4,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -6,
      -1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(add_n(input,2),-5),2),-1),3)"
  },
  {
    "input": "input : list = [3, 5, 1, 0, -3]\noutput : list = [-1, 2, 3, 5, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(sub_n([3, 5, 1, 0, -3],-1),5),-1)))",
    "io_inp": [
      3,
      5,
      1,
      0,
      -3
    ],
    "io_out": [
      -1,
      2,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(sub_n(input,-1),5),-1)))"
  },
  {
    "input": "input : list = [0, 5, 4, 4]\noutput : list = [0, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 5, 4, 4])",
    "io_inp": [
      0,
      5,
      4,
      4
    ],
    "io_out": [
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(drop([-5, -4, -2],1),4)),-1),3)",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(drop(input,1),4)),-1),3)"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [-4, -8, -8]",
    "output": "generated_output : list = add_n(sort_des(take(add_n([-1, -5, -5],-4),15)),1)",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(input,-4),15)),1)"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [-4, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(sort_asc([1, -3, 2]),-2),3)))",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(sort_asc(input),-2),3)))"
  },
  {
    "input": "input : list = [3, 1, 3, -3, 0, -1]\noutput : list = [-2, 0, 1, 2, 4, 4]",
    "output": "generated_output : list = add_n(take(add_n(add_n(sort_asc([3, 1, 3, -3, 0, -1]),-1),4),25),-2)",
    "io_inp": [
      3,
      1,
      3,
      -3,
      0,
      -1
    ],
    "io_out": [
      -2,
      0,
      1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(sort_asc(input),-1),4),25),-2)"
  },
  {
    "input": "input : list = [1, 5, 2, 1, -2, 0]\noutput : list = [9, 6, 5, 5, 4, 2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sub_n([1, 5, 2, 1, -2, 0],-3))),-1))",
    "io_inp": [
      1,
      5,
      2,
      1,
      -2,
      0
    ],
    "io_out": [
      9,
      6,
      5,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sub_n(input,-3))),-1))"
  },
  {
    "input": "input : list = [-4, -1, -2, -2, -1]\noutput : list = [4, 7, 7, 4, 13]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(mul_n([-4, -1, -2, -2, -1],-3),5)),3),-1)",
    "io_inp": [
      -4,
      -1,
      -2,
      -2,
      -1
    ],
    "io_out": [
      4,
      7,
      7,
      4,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(mul_n(input,-3),5)),3),-1)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-6, 3]",
    "output": "generated_output : list = add_n(take(sub_n(take(mul_n([-2, 1],3),7),-4),9),-4)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(mul_n(input,3),7),-4),9),-4)"
  },
  {
    "input": "input : list = [2, -2, -2, 2]\noutput : list = [-4, -4, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n([2, -2, -2, 2],2),7))))",
    "io_inp": [
      2,
      -2,
      -2,
      2
    ],
    "io_out": [
      -4,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n(input,2),7))))"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [0, -20, -32]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_des([5, 0, -3]),1),3),2),4)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      0,
      -20,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_des(input),1),3),2),4)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(take(take(add_n(drop([5, 5, 3],1),-3),16),24),22)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(drop(input,1),-3),16),24),22)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-120, 20]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(add_n([3, -4],3),14)),-4),5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -120,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(add_n(input,3),14)),-4),5)"
  },
  {
    "input": "input : list = [-2, -3, 0, -3, 4, 0]\noutput : list = [6, 9]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take([-2, -3, 0, -3, 4, 0],2)),-3))",
    "io_inp": [
      -2,
      -3,
      0,
      -3,
      4,
      0
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(input,2)),-3))"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(take([0, -2, -1],1),-1)",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [1, -1, -3, 5, 2]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = sub_n(take([1, -1, -3, 5, 2],3),-1)",
    "io_inp": [
      1,
      -1,
      -3,
      5,
      2
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-1)"
  },
  {
    "input": "input : list = [2, 4, 1, -4, -1, -5]\noutput : list = [7, 1, -2, -8, -17, -20]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc([2, 4, 1, -4, -1, -5]),3))),5)",
    "io_inp": [
      2,
      4,
      1,
      -4,
      -1,
      -5
    ],
    "io_out": [
      7,
      1,
      -2,
      -8,
      -17,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc(input),3))),5)"
  },
  {
    "input": "input : list = [-5, 5, 1, 5]\noutput : list = [-375]",
    "output": "generated_output : list = mul_n(take(mul_n(take(mul_n([-5, 5, 1, 5],5),10),-3),1),-5)",
    "io_inp": [
      -5,
      5,
      1,
      5
    ],
    "io_out": [
      -375
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(mul_n(input,5),10),-3),1),-5)"
  },
  {
    "input": "input : list = [4, 1, 2, 4]\noutput : list = [-16, -16, -12, -10]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(sort_asc([4, 1, 2, 4]),-4),2)),-1)",
    "io_inp": [
      4,
      1,
      2,
      4
    ],
    "io_out": [
      -16,
      -16,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(sort_asc(input),-4),2)),-1)"
  },
  {
    "input": "input : list = [5, 0, 4, 5, 3, 3]\noutput : list = [6, 6, 5, 4, 4, 1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(sort_asc([5, 0, 4, 5, 3, 3])),-1)))",
    "io_inp": [
      5,
      0,
      4,
      5,
      3,
      3
    ],
    "io_out": [
      6,
      6,
      5,
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [3, -4, 2, 0, 1, -5]\noutput : list = [-5, 1, 0, 2, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, 2, 0, 1, -5])",
    "io_inp": [
      3,
      -4,
      2,
      0,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      0,
      2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [-4, 2, 5]",
    "output": "generated_output : list = take(sort_asc([-4, 5, 2]),6)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),6)"
  },
  {
    "input": "input : list = [-5, -5, 4, -4]\noutput : list = [1, -7, -8, -8]",
    "output": "generated_output : list = sort_des(add_n(take(take(reverse([-5, -5, 4, -4]),12),15),-3))",
    "io_inp": [
      -5,
      -5,
      4,
      -4
    ],
    "io_out": [
      1,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(reverse(input),12),15),-3))"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = sort_asc([1, 5, 1])",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sort_des(drop([-5, 1, 0],1)))",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [161, -79, -199]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(mul_n([-4, 2, 5],2),4),-5),-1),17)",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      161,
      -79,
      -199
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(mul_n(input,2),4),-5),-1),17)"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [5, 0, 30]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([-3, -4, 2],-4),-5),-1)",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      5,
      0,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,-4),-5),-1)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [3, 9]",
    "output": "generated_output : list = mul_n([-1, -3],-3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, -2, -4, -5]\noutput : list = [-5, -4, -2, 5]",
    "output": "generated_output : list = reverse([5, -2, -4, -5])",
    "io_inp": [
      5,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0, -3, 5, 2, 4]\noutput : list = [5, 2, -1, 7, 4, 6]",
    "output": "generated_output : list = add_n([3, 0, -3, 5, 2, 4],2)",
    "io_inp": [
      3,
      0,
      -3,
      5,
      2,
      4
    ],
    "io_out": [
      5,
      2,
      -1,
      7,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, 2, 5, -2, -3]\noutput : list = [-5, -6, -13, -10, -7]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(sub_n([-1, 2, 5, -2, -3],-5),-1),-1),-4))",
    "io_inp": [
      -1,
      2,
      5,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -6,
      -13,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(sub_n(input,-5),-1),-1),-4))"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [-8, 4, 10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse([-5, 4, -2]))),-2)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      -8,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(input))),-2)"
  },
  {
    "input": "input : list = [-5, 5, -5, 4, 4]\noutput : list = [-3, -3, 6, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-5, 5, -5, 4, 4])),-2)",
    "io_inp": [
      -5,
      5,
      -5,
      4,
      4
    ],
    "io_out": [
      -3,
      -3,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [2, -5, -2, 3]\noutput : list = [4, 3, -1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([2, -5, -2, 3])),1)",
    "io_inp": [
      2,
      -5,
      -2,
      3
    ],
    "io_out": [
      4,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-2, 5, -2, 3, 0]\noutput : list = [1, 1, 3, 6, 8]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(sort_asc([-2, 5, -2, 3, 0])),1),43),-4)",
    "io_inp": [
      -2,
      5,
      -2,
      3,
      0
    ],
    "io_out": [
      1,
      1,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(sort_asc(input)),1),43),-4)"
  },
  {
    "input": "input : list = [-5, 0, 2, 4, 4, 0]\noutput : list = [2, 2, 0, -2, -2, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(sub_n([-5, 0, 2, 4, 4, 0],2),18))))",
    "io_inp": [
      -5,
      0,
      2,
      4,
      4,
      0
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(sub_n(input,2),18))))"
  },
  {
    "input": "input : list = [-3, -1, -4, -5, -1]\noutput : list = [60, 60, 180, 240, 300]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n([-3, -1, -4, -5, -1],-3),-5),-4))",
    "io_inp": [
      -3,
      -1,
      -4,
      -5,
      -1
    ],
    "io_out": [
      60,
      60,
      180,
      240,
      300
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(input,-3),-5),-4))"
  },
  {
    "input": "input : list = [3, 5, -3, -2]\noutput : list = [3, 5]",
    "output": "generated_output : list = take([3, 5, -3, -2],2)",
    "io_inp": [
      3,
      5,
      -3,
      -2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -3, -2, -5]\noutput : list = [-5, -3, -2, 5]",
    "output": "generated_output : list = sort_asc([5, -3, -2, -5])",
    "io_inp": [
      5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, -2, -1]\noutput : list = [6, 6, 5]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(drop([1, -1, -2, -1],1))),5),2)",
    "io_inp": [
      1,
      -1,
      -2,
      -1
    ],
    "io_out": [
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(drop(input,1))),5),2)"
  },
  {
    "input": "input : list = [-1, -2, 1, -5]\noutput : list = [16, 20, 8, 32]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(reverse([-1, -2, 1, -5]),3),31)),-4)",
    "io_inp": [
      -1,
      -2,
      1,
      -5
    ],
    "io_out": [
      16,
      20,
      8,
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(reverse(input),3),31)),-4)"
  },
  {
    "input": "input : list = [-3, -2, 4, -1, 1]\noutput : list = [1, -1, 4, -2, -3]",
    "output": "generated_output : list = reverse([-3, -2, 4, -1, 1])",
    "io_inp": [
      -3,
      -2,
      4,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse([1, -1])",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, -2, 1, -5]\noutput : list = [-19]",
    "output": "generated_output : list = add_n(sub_n(reverse(drop(mul_n([5, -3, -2, 1, -5],4),4)),3),4)",
    "io_inp": [
      5,
      -3,
      -2,
      1,
      -5
    ],
    "io_out": [
      -19
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(drop(mul_n(input,4),4)),3),4)"
  },
  {
    "input": "input : list = [0, -1, -1, -5, 2, -5]\noutput : list = [0, 0, 4, 7]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(drop([0, -1, -1, -5, 2, -5],2)),16)),5)",
    "io_inp": [
      0,
      -1,
      -1,
      -5,
      2,
      -5
    ],
    "io_out": [
      0,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(drop(input,2)),16)),5)"
  },
  {
    "input": "input : list = [1, 4, 2, 4, 4, -1]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(take([1, 4, 2, 4, 4, -1],3),-3)),7))",
    "io_inp": [
      1,
      4,
      2,
      4,
      4,
      -1
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(take(input,3),-3)),7))"
  },
  {
    "input": "input : list = [-1, 4, 5, -2, 1]\noutput : list = [-3, 2, 3, -4, -1]",
    "output": "generated_output : list = sub_n([-1, 4, 5, -2, 1],2)",
    "io_inp": [
      -1,
      4,
      5,
      -2,
      1
    ],
    "io_out": [
      -3,
      2,
      3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-36, -32]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(add_n([4, 5],4),-4)),9))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -36,
      -32
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(add_n(input,4),-4)),9))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [12, -8]",
    "output": "generated_output : list = reverse(mul_n([2, -3],-4))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [3, 2, -4, 5, 3, -5]\noutput : list = [-26, -22, 2, 6, 6, 14]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(sort_des([3, 2, -4, 5, 3, -5]),4),5),-1))",
    "io_inp": [
      3,
      2,
      -4,
      5,
      3,
      -5
    ],
    "io_out": [
      -26,
      -22,
      2,
      6,
      6,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(sort_des(input),4),5),-1))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [3, 7]",
    "output": "generated_output : list = sort_asc(sub_n([-2, 2],-5))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [1, -4, 5, -5, -5, -5]\noutput : list = [-3, -3, -3, -2, 3, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([1, -4, 5, -5, -5, -5]),-2))",
    "io_inp": [
      1,
      -4,
      5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [4, 4, 0, 0, -1, 2]\noutput : list = [-22, -22]",
    "output": "generated_output : list = sort_des(take(add_n(take(mul_n([4, 4, 0, 0, -1, 2],-5),2),-2),20))",
    "io_inp": [
      4,
      4,
      0,
      0,
      -1,
      2
    ],
    "io_out": [
      -22,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(mul_n(input,-5),2),-2),20))"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [20, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(take(drop([-5, -5, 2],1),11)),-4))",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      20,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(take(drop(input,1),11)),-4))"
  },
  {
    "input": "input : list = [-3, 3, 5, -5, -3, 4]\noutput : list = [2, 8, 10]",
    "output": "generated_output : list = add_n(take([-3, 3, 5, -5, -3, 4],3),5)",
    "io_inp": [
      -3,
      3,
      5,
      -5,
      -3,
      4
    ],
    "io_out": [
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),5)"
  },
  {
    "input": "input : list = [2, 1, -1, -2, 2, 0]\noutput : list = [2, 2, 1, 0, -1, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(sort_des([2, 1, -1, -2, 2, 0])))))",
    "io_inp": [
      2,
      1,
      -1,
      -2,
      2,
      0
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 1, 0, 2]\noutput : list = [13, 10, 9, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(reverse([5, 1, 0, 2]))),5),-3)",
    "io_inp": [
      5,
      1,
      0,
      2
    ],
    "io_out": [
      13,
      10,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(reverse(input))),5),-3)"
  },
  {
    "input": "input : list = [0, 2, 1, -5]\noutput : list = [-5, 0, 1, 2]",
    "output": "generated_output : list = take(take(take(sort_asc(reverse([0, 2, 1, -5])),26),13),40)",
    "io_inp": [
      0,
      2,
      1,
      -5
    ],
    "io_out": [
      -5,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(take(sort_asc(reverse(input)),26),13),40)"
  },
  {
    "input": "input : list = [-3, 4, -3, 0]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(mul_n(take([-3, 4, -3, 0],1),3))",
    "io_inp": [
      -3,
      4,
      -3,
      0
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),3))"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 1, 4],1)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -2, 1, 3, -4]\noutput : list = [4, 3, 2, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(sort_asc([2, -2, 1, 3, -4])),-4),3))",
    "io_inp": [
      2,
      -2,
      1,
      3,
      -4
    ],
    "io_out": [
      4,
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(sort_asc(input)),-4),3))"
  },
  {
    "input": "input : list = [5, -2, -1, 2, -5]\noutput : list = [-2, -1, 2, -5]",
    "output": "generated_output : list = drop([5, -2, -1, 2, -5],1)",
    "io_inp": [
      5,
      -2,
      -1,
      2,
      -5
    ],
    "io_out": [
      -2,
      -1,
      2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 4, -3, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(drop([-2, 4, -3, -3, 4],3))),-2),-2)",
    "io_inp": [
      -2,
      4,
      -3,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(drop(input,3))),-2),-2)"
  },
  {
    "input": "input : list = [-4, 2, 1, 0, 0]\noutput : list = [8, 7, 6, 6]",
    "output": "generated_output : list = sub_n(sub_n(drop([-4, 2, 1, 0, 0],1),-2),-4)",
    "io_inp": [
      -4,
      2,
      1,
      0,
      0
    ],
    "io_out": [
      8,
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),-2),-4)"
  },
  {
    "input": "input : list = [0, -1, 2, -1]\noutput : list = [-6, 6, -6, -2]",
    "output": "generated_output : list = reverse(add_n(mul_n([0, -1, 2, -1],4),-2))",
    "io_inp": [
      0,
      -1,
      2,
      -1
    ],
    "io_out": [
      -6,
      6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,4),-2))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(sub_n([4, 4],-1))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-1, -2, 2, 3]\noutput : list = [3, 2, -2, -1]",
    "output": "generated_output : list = reverse([-1, -2, 2, 3])",
    "io_inp": [
      -1,
      -2,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(sort_asc([-3, 5, -2]))),9),-1)",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(sort_asc(input))),9),-1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(take(add_n([-1, 0],4),7)),-4)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(add_n(input,4),7)),-4)"
  },
  {
    "input": "input : list = [-3, -3, 0]\noutput : list = [0, -48, -48]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(mul_n([-3, -3, 0],4))),4))",
    "io_inp": [
      -3,
      -3,
      0
    ],
    "io_out": [
      0,
      -48,
      -48
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(mul_n(input,4))),4))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des([3, 4])",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, 1, 0]\noutput : list = [-2, 0, 1, 4]",
    "output": "generated_output : list = take(sort_asc(take(take(reverse([4, -2, 1, 0]),8),20)),30)",
    "io_inp": [
      4,
      -2,
      1,
      0
    ],
    "io_out": [
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(take(reverse(input),8),20)),30)"
  },
  {
    "input": "input : list = [-1, -5, -3, -1]\noutput : list = [3, -1, 1, 3]",
    "output": "generated_output : list = sub_n(add_n([-1, -5, -3, -1],3),-1)",
    "io_inp": [
      -1,
      -5,
      -3,
      -1
    ],
    "io_out": [
      3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),-1)"
  },
  {
    "input": "input : list = [1, 0, 0, 4, -4, -1]\noutput : list = [5, 4, 4, 8, 0]",
    "output": "generated_output : list = take(sub_n([1, 0, 0, 4, -4, -1],-4),5)",
    "io_inp": [
      1,
      0,
      0,
      4,
      -4,
      -1
    ],
    "io_out": [
      5,
      4,
      4,
      8,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),5)"
  },
  {
    "input": "input : list = [5, -3, -3, 5, -1]\noutput : list = [5, 5, -1, -3, -3]",
    "output": "generated_output : list = sort_des(reverse([5, -3, -3, 5, -1]))",
    "io_inp": [
      5,
      -3,
      -3,
      5,
      -1
    ],
    "io_out": [
      5,
      5,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, -5, 2, -4, -3]\noutput : list = [-5, -4, -3, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sub_n([3, -5, 2, -4, -3],-2)))),2)",
    "io_inp": [
      3,
      -5,
      2,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sub_n(input,-2)))),2)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(sub_n([-4, -5, 3],3),1))))",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(sub_n(input,3),1))))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-6, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(reverse([5, -3]),14))),3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(reverse(input),14))),3)"
  },
  {
    "input": "input : list = [2, -5, 0, -2, -5]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = sort_des(take([2, -5, 0, -2, -5],3))",
    "io_inp": [
      2,
      -5,
      0,
      -2,
      -5
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-2, -5, -4, -5, 1]\noutput : list = [3, 9, 13, 15, 15]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n([-2, -5, -4, -5, 1],-2)),5))",
    "io_inp": [
      -2,
      -5,
      -4,
      -5,
      1
    ],
    "io_out": [
      3,
      9,
      13,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(input,-2)),5))"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [-40]",
    "output": "generated_output : list = mul_n(reverse(sub_n(take(take([4, -3, -1],1),16),-4)),-5)",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(take(take(input,1),16),-4)),-5)"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [60, 45, 30]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(mul_n([-3, -4, -2],5)),-3)))",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      60,
      45,
      30
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(mul_n(input,5)),-3)))"
  },
  {
    "input": "input : list = [-1, -5, -1, 1]\noutput : list = [3, 15, 3, -3]",
    "output": "generated_output : list = mul_n([-1, -5, -1, 1],-3)",
    "io_inp": [
      -1,
      -5,
      -1,
      1
    ],
    "io_out": [
      3,
      15,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -3, 5, 2, -2]\noutput : list = [-2, 2, 5, -3, -1]",
    "output": "generated_output : list = reverse([-1, -3, 5, 2, -2])",
    "io_inp": [
      -1,
      -3,
      5,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [7, 2, 0]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n([-1, 4, -3],-4))),-1)",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      7,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(input,-4))),-1)"
  },
  {
    "input": "input : list = [-5, 4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = drop([-5, 4, 0],1)",
    "io_inp": [
      -5,
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 5, 3, 3, 3]\noutput : list = [-4, -19, -19, -19, -29]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(mul_n([0, 5, 3, 3, 3],-5)))),4)",
    "io_inp": [
      0,
      5,
      3,
      3,
      3
    ],
    "io_out": [
      -4,
      -19,
      -19,
      -19,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(mul_n(input,-5)))),4)"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [33, -12, -12]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(mul_n([1, 1, -4],3),-3)),-3))",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      33,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(mul_n(input,3),-3)),-3))"
  },
  {
    "input": "input : list = [-5, -2, -3, 2, 2, -3]\noutput : list = [-3, 2, 2, -3, -2, -5]",
    "output": "generated_output : list = take(mul_n(take(take(reverse([-5, -2, -3, 2, 2, -3]),27),34),1),54)",
    "io_inp": [
      -5,
      -2,
      -3,
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      2,
      -3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(reverse(input),27),34),1),54)"
  },
  {
    "input": "input : list = [-4, 2, -3, 5, -4]\noutput : list = [-7, -7, -6, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des(reverse([-4, 2, -3, 5, -4])))),-3)",
    "io_inp": [
      -4,
      2,
      -3,
      5,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-17, -3]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(mul_n([-5, 2],2),4),17),-1),-2)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -17,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(mul_n(input,2),4),17),-1),-2)"
  },
  {
    "input": "input : list = [1, -3, -1, 0, 2, -4]\noutput : list = [-25, -30]",
    "output": "generated_output : list = mul_n(take(drop(add_n(sort_des([1, -3, -1, 0, 2, -4]),-2),4),24),5)",
    "io_inp": [
      1,
      -3,
      -1,
      0,
      2,
      -4
    ],
    "io_out": [
      -25,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(add_n(sort_des(input),-2),4),24),5)"
  },
  {
    "input": "input : list = [-3, 1, -5]\noutput : list = [0, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(drop([-3, 1, -5],1),-5),-4)),35)",
    "io_inp": [
      -3,
      1,
      -5
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(drop(input,1),-5),-4)),35)"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [3, 3, -3]",
    "output": "generated_output : list = reverse(sub_n([-2, 4, 4],1))",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [-4, 5, 1, 0, -2]\noutput : list = [100, 50, 0, -25, -125]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(mul_n([-4, 5, 1, 0, -2],1),-5),8),5))",
    "io_inp": [
      -4,
      5,
      1,
      0,
      -2
    ],
    "io_out": [
      100,
      50,
      0,
      -25,
      -125
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(mul_n(input,1),-5),8),5))"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(take(sub_n(take([-3, -5, 0],1),-5),22),-3)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(input,1),-5),22),-3)"
  },
  {
    "input": "input : list = [3, -3, -3, 5, 4]\noutput : list = [-6, 6, 6, -10, -8]",
    "output": "generated_output : list = mul_n([3, -3, -3, 5, 4],-2)",
    "io_inp": [
      3,
      -3,
      -3,
      5,
      4
    ],
    "io_out": [
      -6,
      6,
      6,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(add_n([5, 2],3)),-3),27))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(add_n(input,3)),-3),27))"
  },
  {
    "input": "input : list = [0, -1, 2, 2]\noutput : list = [4, 0, -8, -8]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sort_asc([0, -1, 2, 2]),5),-4)))",
    "io_inp": [
      0,
      -1,
      2,
      2
    ],
    "io_out": [
      4,
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sort_asc(input),5),-4)))"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [5, 4, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n([-3, 5, 4],1)))))",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(drop(reverse([2, 1, 0]),1)),-4))",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(drop(reverse(input),1)),-4))"
  },
  {
    "input": "input : list = [-1, -4, -1, -5, -3, 0]\noutput : list = [2, -1, 2, -2, 0, 3]",
    "output": "generated_output : list = add_n([-1, -4, -1, -5, -3, 0],3)",
    "io_inp": [
      -1,
      -4,
      -1,
      -5,
      -3,
      0
    ],
    "io_out": [
      2,
      -1,
      2,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [3, 2, -5, -3]\noutput : list = [19, 11, -45, -29]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(sub_n([3, 2, -5, -3],1),-2),-4),21),-3)",
    "io_inp": [
      3,
      2,
      -5,
      -3
    ],
    "io_out": [
      19,
      11,
      -45,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(sub_n(input,1),-2),-4),21),-3)"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [4, -1, -2]",
    "output": "generated_output : list = sort_des([4, -1, -2])",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, -3, 2, -2]\noutput : list = [-1, -3, -6, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des([-1, 4, -3, 2, -2]),5)",
    "io_inp": [
      -1,
      4,
      -3,
      2,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [1, 0, -3, -4, -5]\noutput : list = [-196, -160, -124, -16, 20]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(mul_n([1, 0, -3, -4, -5],-3)),-3),-4),4)",
    "io_inp": [
      1,
      0,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -196,
      -160,
      -124,
      -16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(mul_n(input,-3)),-3),-4),4)"
  },
  {
    "input": "input : list = [3, 2, -3, 3, 0]\noutput : list = [3]",
    "output": "generated_output : list = reverse(reverse(take(take([3, 2, -3, 3, 0],3),1)))",
    "io_inp": [
      3,
      2,
      -3,
      3,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(input,3),1)))"
  },
  {
    "input": "input : list = [5, 2, -3, 3, 0, -5]\noutput : list = [4, -4, -16, -24, -28, -36]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(add_n([5, 2, -3, 3, 0, -5],4)),-1)),4)",
    "io_inp": [
      5,
      2,
      -3,
      3,
      0,
      -5
    ],
    "io_out": [
      4,
      -4,
      -16,
      -24,
      -28,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(add_n(input,4)),-1)),4)"
  },
  {
    "input": "input : list = [-5, 4, 5, 3, -5]\noutput : list = [4, 5, 3, -5]",
    "output": "generated_output : list = drop([-5, 4, 5, 3, -5],1)",
    "io_inp": [
      -5,
      4,
      5,
      3,
      -5
    ],
    "io_out": [
      4,
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -2, 0, 2, 1, -1]\noutput : list = [-21, -18, -15, -12, -9]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(drop([1, -2, 0, 2, 1, -1],1)),-5),3))",
    "io_inp": [
      1,
      -2,
      0,
      2,
      1,
      -1
    ],
    "io_out": [
      -21,
      -18,
      -15,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(drop(input,1)),-5),3))"
  },
  {
    "input": "input : list = [1, 1, 0]\noutput : list = [-4, -4, 0]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse([1, 1, 0]),-4)),1)",
    "io_inp": [
      1,
      1,
      0
    ],
    "io_out": [
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(input),-4)),1)"
  },
  {
    "input": "input : list = [-3, 3, 4]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(add_n(drop(sort_asc([-3, 3, 4]),2),5))",
    "io_inp": [
      -3,
      3,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(sort_asc(input),2),5))"
  },
  {
    "input": "input : list = [1, -5, 2, 1, 2]\noutput : list = [6, 6, 3, 3, -15]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(mul_n([1, -5, 2, 1, 2],3),13),32)))",
    "io_inp": [
      1,
      -5,
      2,
      1,
      2
    ],
    "io_out": [
      6,
      6,
      3,
      3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(mul_n(input,3),13),32)))"
  },
  {
    "input": "input : list = [3, 3, 2, -4, -4, 1]\noutput : list = [0, 0, -1, -2, -7, -7]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(add_n([3, 3, 2, -4, -4, 1],1)))),-4)",
    "io_inp": [
      3,
      3,
      2,
      -4,
      -4,
      1
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(add_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [-4, 5, 5, 4, 2]\noutput : list = [-6, 6]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(sort_des([-4, 5, 5, 4, 2]),1)),2),2)",
    "io_inp": [
      -4,
      5,
      5,
      4,
      2
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(sort_des(input),1)),2),2)"
  },
  {
    "input": "input : list = [0, -4, -1, -1, 1]\noutput : list = [6, -18, 0, 0, 12]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n([0, -4, -1, -1, 1],-1),2),3),20)",
    "io_inp": [
      0,
      -4,
      -1,
      -1,
      1
    ],
    "io_out": [
      6,
      -18,
      0,
      0,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(input,-1),2),3),20)"
  },
  {
    "input": "input : list = [-3, -2, -4, -1, 4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(drop([-3, -2, -4, -1, 4],2)),2),33))",
    "io_inp": [
      -3,
      -2,
      -4,
      -1,
      4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(drop(input,2)),2),33))"
  },
  {
    "input": "input : list = [-4, -2, -2, 0, -2, 3]\noutput : list = [-1, 1, 1, 1, 3]",
    "output": "generated_output : list = add_n(add_n(take(add_n(sort_asc([-4, -2, -2, 0, -2, 3]),2),5),-2),3)",
    "io_inp": [
      -4,
      -2,
      -2,
      0,
      -2,
      3
    ],
    "io_out": [
      -1,
      1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(sort_asc(input),2),5),-2),3)"
  },
  {
    "input": "input : list = [-3, 3, -2, 2, -3]\noutput : list = [30, 15, 27, 12, 30]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(mul_n([-3, 3, -2, 2, -3],1),4)),3),-3)",
    "io_inp": [
      -3,
      3,
      -2,
      2,
      -3
    ],
    "io_out": [
      30,
      15,
      27,
      12,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(mul_n(input,1),4)),3),-3)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(sort_des([1, -2])))),15)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(sort_des(input)))),15)"
  },
  {
    "input": "input : list = [4, -2, 4, 1]\noutput : list = [4, 4, 1, -2]",
    "output": "generated_output : list = sort_des([4, -2, 4, 1])",
    "io_inp": [
      4,
      -2,
      4,
      1
    ],
    "io_out": [
      4,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [-24, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n(drop([-1, 5, 3],1),2)),-4),-4)",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      -24,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(drop(input,1),2)),-4),-4)"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take([4, 4, -4],1),5)",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [20, 20, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(add_n([-2, -1, -2],4),2),5)))",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      20,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(add_n(input,4),2),5)))"
  },
  {
    "input": "input : list = [0, 0, 4, 5]\noutput : list = [0, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 0, 4, 5])",
    "io_inp": [
      0,
      0,
      4,
      5
    ],
    "io_out": [
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, 1, -2]\noutput : list = [4, 3, 0, -3]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des([5, 4, 1, -2])),-1),12))",
    "io_inp": [
      5,
      4,
      1,
      -2
    ],
    "io_out": [
      4,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des(input)),-1),12))"
  },
  {
    "input": "input : list = [5, 5, -5, 2, 0]\noutput : list = [26, 6, -2, -14, -14]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sub_n(mul_n([5, 5, -5, 2, 0],-4),-4),2)))",
    "io_inp": [
      5,
      5,
      -5,
      2,
      0
    ],
    "io_out": [
      26,
      6,
      -2,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sub_n(mul_n(input,-4),-4),2)))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [7, 10]",
    "output": "generated_output : list = sub_n(sort_asc([5, 2]),-5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [5, -2, -5, -3, -3]\noutput : list = [5, -2]",
    "output": "generated_output : list = take([5, -2, -5, -3, -3],2)",
    "io_inp": [
      5,
      -2,
      -5,
      -3,
      -3
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-2, 5, 5]",
    "output": "generated_output : list = sort_asc(sub_n([2, -5, 2],-3))",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-4, -1, -2, -3, 2]\noutput : list = [2, -1, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-4, -1, -2, -3, 2])",
    "io_inp": [
      -4,
      -1,
      -2,
      -3,
      2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(reverse([2, 5]))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [6, 3, 7]",
    "output": "generated_output : list = take(reverse(sub_n(take(reverse([4, 1, 5]),12),-2)),16)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      6,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(reverse(input),12),-2)),16)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(reverse([-2, -3]),3))))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [0, -4, -3, 1]\noutput : list = [0, -4, -5, -1]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(add_n([0, -4, -3, 1],-3),1)),34),-3)",
    "io_inp": [
      0,
      -4,
      -3,
      1
    ],
    "io_out": [
      0,
      -4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(add_n(input,-3),1)),34),-3)"
  },
  {
    "input": "input : list = [-4, -4, -1, 4, -1]\noutput : list = [-2, -7, -7]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des([-4, -4, -1, 4, -1]),3),1),-5)",
    "io_inp": [
      -4,
      -4,
      -1,
      4,
      -1
    ],
    "io_out": [
      -2,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(input),3),1),-5)"
  },
  {
    "input": "input : list = [1, 0, 2, 0, 1]\noutput : list = [-2, -3, -1, -3, -2]",
    "output": "generated_output : list = add_n(reverse([1, 0, 2, 0, 1]),-3)",
    "io_inp": [
      1,
      0,
      2,
      0,
      1
    ],
    "io_out": [
      -2,
      -3,
      -1,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [6, 3, -2]",
    "output": "generated_output : list = reverse(take(sort_asc(take(sub_n([0, 3, -5],-3),6)),26))",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      6,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(sub_n(input,-3),6)),26))"
  },
  {
    "input": "input : list = [1, 2, 2, 4]\noutput : list = [7, 5, 5, 4]",
    "output": "generated_output : list = sub_n(reverse([1, 2, 2, 4]),-3)",
    "io_inp": [
      1,
      2,
      2,
      4
    ],
    "io_out": [
      7,
      5,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [-20]",
    "output": "generated_output : list = take(mul_n(take([4, 1, 4],1),-5),4)",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,1),-5),4)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [1, 2]",
    "output": "generated_output : list = add_n([3, 4],-2)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -1, -3, 1, 4]\noutput : list = [1, -4, -6, -2, 1]",
    "output": "generated_output : list = sub_n([4, -1, -3, 1, 4],3)",
    "io_inp": [
      4,
      -1,
      -3,
      1,
      4
    ],
    "io_out": [
      1,
      -4,
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, 0, -4, -5]\noutput : list = [-15, 0, 12, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(reverse([5, 0, -4, -5]))),-3))",
    "io_inp": [
      5,
      0,
      -4,
      -5
    ],
    "io_out": [
      -15,
      0,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des([-4, -2])",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, 2, -4, -2]\noutput : list = [-3, -5, 1, 0, 4]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n([5, 1, 2, -4, -2],1)),4),-1),4)",
    "io_inp": [
      5,
      1,
      2,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -5,
      1,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(mul_n(input,1)),4),-1),4)"
  },
  {
    "input": "input : list = [3, 1, 4, 2, 2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sub_n(reverse(take([3, 1, 4, 2, 2],2)),2)",
    "io_inp": [
      3,
      1,
      4,
      2,
      2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,2)),2)"
  },
  {
    "input": "input : list = [2, 2, 1, -5, -4]\noutput : list = [-3, -3, -4, -10, -9]",
    "output": "generated_output : list = sub_n([2, 2, 1, -5, -4],5)",
    "io_inp": [
      2,
      2,
      1,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 5, 5, 0]\noutput : list = [0, 20, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(mul_n([5, 5, 5, 0],4),8)),1))",
    "io_inp": [
      5,
      5,
      5,
      0
    ],
    "io_out": [
      0,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(mul_n(input,4),8)),1))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des([5, -5])",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 3, 1, 0, -1]\noutput : list = [-2, -3, -1, 0, 1]",
    "output": "generated_output : list = mul_n([2, 3, 1, 0, -1],-1)",
    "io_inp": [
      2,
      3,
      1,
      0,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-8, -2]",
    "output": "generated_output : list = add_n([-5, 1],-3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [9, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([0, -5]),-5),-4)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-5),-4)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sort_des([3, 1, 1])),5)),27)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sort_des(input)),5)),27)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-11, -7]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(reverse([3, 5]),-2),21),-5),-4)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -11,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(reverse(input),-2),21),-5),-4)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_des([3, 2])),-3)),-2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_des(input)),-3)),-2)"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_des([3, 1, 2]),-2))),2)",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_des(input),-2))),2)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take(sort_asc([-1, 0]),7)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [1, 5, -1, -2, 2, -5]\noutput : list = [12, 9, 6, 5, 2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(drop([1, 5, -1, -2, 2, -5],1),2),-3),2))",
    "io_inp": [
      1,
      5,
      -1,
      -2,
      2,
      -5
    ],
    "io_out": [
      12,
      9,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(drop(input,1),2),-3),2))"
  },
  {
    "input": "input : list = [4, 3, -2, 5, -4]\noutput : list = [10, 9, 8, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc([4, 3, -2, 5, -4]),17))),-5)",
    "io_inp": [
      4,
      3,
      -2,
      5,
      -4
    ],
    "io_out": [
      10,
      9,
      8,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc(input),17))),-5)"
  },
  {
    "input": "input : list = [4, -2, -4, 0]\noutput : list = [-4, -2, 0, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_asc([4, -2, -4, 0])))),28)",
    "io_inp": [
      4,
      -2,
      -4,
      0
    ],
    "io_out": [
      -4,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_asc(input)))),28)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [5, -1]",
    "output": "generated_output : list = add_n(take(sort_des(take(reverse([3, -3]),3)),7),2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(reverse(input),3)),7),2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse([0, 2])",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [14, 9]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des([-2, 3])),-4),5),2)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      14,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des(input)),-4),5),2)"
  },
  {
    "input": "input : list = [0, 4, 4, -4, 4]\noutput : list = [-5, -1, 3, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(sort_des([0, 4, 4, -4, 4])),20),4),-3)",
    "io_inp": [
      0,
      4,
      4,
      -4,
      4
    ],
    "io_out": [
      -5,
      -1,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(sort_des(input)),20),4),-3)"
  },
  {
    "input": "input : list = [0, 2, 1, -4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(drop([0, 2, 1, -4],2))),-3))",
    "io_inp": [
      0,
      2,
      1,
      -4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(drop(input,2))),-3))"
  },
  {
    "input": "input : list = [-5, 3, 0, -1, 3, -4]\noutput : list = [-12, -12, -6, -4, 2, 4]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(sub_n([-5, 3, 0, -1, 3, -4],-3)))),-2)",
    "io_inp": [
      -5,
      3,
      0,
      -1,
      3,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -6,
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(sub_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [-2, -5, -5, 1, 1, 1]\noutput : list = [6, 6, 6, 3, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(sub_n([-2, -5, -5, 1, 1, 1],-5)),1),-1))",
    "io_inp": [
      -2,
      -5,
      -5,
      1,
      1,
      1
    ],
    "io_out": [
      6,
      6,
      6,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(sub_n(input,-5)),1),-1))"
  },
  {
    "input": "input : list = [2, -3, 2, 2, -2, 0]\noutput : list = [15, 20, 30, 40, 40, 40]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(add_n([2, -3, 2, 2, -2, 0],2))),-4),5)",
    "io_inp": [
      2,
      -3,
      2,
      2,
      -2,
      0
    ],
    "io_out": [
      15,
      20,
      30,
      40,
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(add_n(input,2))),-4),5)"
  },
  {
    "input": "input : list = [2, -3, -3, -3, 0]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(add_n(take([2, -3, -3, -3, 0],1),-1),-1)",
    "io_inp": [
      2,
      -3,
      -3,
      -3,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(input,1),-1),-1)"
  },
  {
    "input": "input : list = [1, 1, -4, 1, -3, 4]\noutput : list = [-8, -8, -8, -12, -13]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(sort_asc([1, 1, -4, 1, -3, 4]),5)),-4),5)",
    "io_inp": [
      1,
      1,
      -4,
      1,
      -3,
      4
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(sort_asc(input),5)),-4),5)"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [-20, -36]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(drop([-4, 0, -4],1),5)),4),-4)",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      -20,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(drop(input,1),5)),4),-4)"
  },
  {
    "input": "input : list = [1, -1, 3, 0, -5]\noutput : list = [-6, -2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(add_n([1, -1, 3, 0, -5],-1),13),16)))",
    "io_inp": [
      1,
      -1,
      3,
      0,
      -5
    ],
    "io_out": [
      -6,
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(add_n(input,-1),13),16)))"
  },
  {
    "input": "input : list = [-5, -1, -5, -2, 5]\noutput : list = [-10, -10, -4, -2, 10]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(reverse([-5, -1, -5, -2, 5]),2))))",
    "io_inp": [
      -5,
      -1,
      -5,
      -2,
      5
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -2,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(mul_n([0, 0],-3))),-5))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(mul_n(input,-3))),-5))"
  },
  {
    "input": "input : list = [5, -1, 5]\noutput : list = [9, 9, 3]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(sub_n([5, -1, 5],-4),1)),1),17)",
    "io_inp": [
      5,
      -1,
      5
    ],
    "io_out": [
      9,
      9,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(sub_n(input,-4),1)),1),17)"
  },
  {
    "input": "input : list = [-2, -3, 1, 4]\noutput : list = [-14, -19, 1, 16]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(mul_n([-2, -3, 1, 4],5),1),23),2),5)",
    "io_inp": [
      -2,
      -3,
      1,
      4
    ],
    "io_out": [
      -14,
      -19,
      1,
      16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(mul_n(input,5),1),23),2),5)"
  },
  {
    "input": "input : list = [-2, 3, 1, -3]\noutput : list = [-26, 34, 10, -38]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([-2, 3, 1, -3],4),3),2)",
    "io_inp": [
      -2,
      3,
      1,
      -3
    ],
    "io_out": [
      -26,
      34,
      10,
      -38
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,4),3),2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(reverse([-5, -4])),5),-5),-4)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(reverse(input)),5),-5),-4)"
  },
  {
    "input": "input : list = [-2, 2, -1, 2, -2, -4]\noutput : list = [-4, -2, -2, -1, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, 2, -1, 2, -2, -4]))",
    "io_inp": [
      -2,
      2,
      -1,
      2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2, -1, 4]\noutput : list = [45, -30, 15, -75]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(mul_n([-4, 2, -1, 4],-3),3),29),-5))",
    "io_inp": [
      -4,
      2,
      -1,
      4
    ],
    "io_out": [
      45,
      -30,
      15,
      -75
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(mul_n(input,-3),3),29),-5))"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [1, -5, -4]",
    "output": "generated_output : list = reverse([-4, -5, 1])",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3, -4, -5, 5, -3]\noutput : list = [30, 25, 20, 5, -10, -20]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sub_n([0, 3, -4, -5, 5, -3],1)),-5)))",
    "io_inp": [
      0,
      3,
      -4,
      -5,
      5,
      -3
    ],
    "io_out": [
      30,
      25,
      20,
      5,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sub_n(input,1)),-5)))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -20]",
    "output": "generated_output : list = take(sort_des(mul_n([0, -5],4)),10)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,4)),10)"
  },
  {
    "input": "input : list = [5, -5, -1, 4, -3, -2]\noutput : list = [-5, -3, -2, -1, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(reverse([5, -5, -1, 4, -3, -2])),4)),4)",
    "io_inp": [
      5,
      -5,
      -1,
      4,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(reverse(input)),4)),4)"
  },
  {
    "input": "input : list = [-3, -5, -1, -5]\noutput : list = [4, 0, 4, 2]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(sub_n([-3, -5, -1, -5],-3),-1),30)),-2)",
    "io_inp": [
      -3,
      -5,
      -1,
      -5
    ],
    "io_out": [
      4,
      0,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(sub_n(input,-3),-1),30)),-2)"
  },
  {
    "input": "input : list = [4, 2, -3, 2, 2, -1]\noutput : list = [-2, 0, 3, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_asc([4, 2, -3, 2, 2, -1]),-1))))",
    "io_inp": [
      4,
      2,
      -3,
      2,
      2,
      -1
    ],
    "io_out": [
      -2,
      0,
      3,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [1, 5, 0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = drop([1, 5, 0, -2],2)",
    "io_inp": [
      1,
      5,
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(take([-2, -2, 4],1)),1),-4))",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(take(input,1)),1),-4))"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 1, 5])",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 2, 1, 3, 0, -2]\noutput : list = [24, 12, 0, -6, -12, -18]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(mul_n([-4, 2, 1, 3, 0, -2],-3),2))))",
    "io_inp": [
      -4,
      2,
      1,
      3,
      0,
      -2
    ],
    "io_out": [
      24,
      12,
      0,
      -6,
      -12,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(mul_n(input,-3),2))))"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(mul_n([0, -3, -3],2)))),-5)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(mul_n(input,2)))),-5)"
  },
  {
    "input": "input : list = [1, 1, -1, 3]\noutput : list = [-27]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(take([1, 1, -1, 3],1),19),5),-4),-3)",
    "io_inp": [
      1,
      1,
      -1,
      3
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(take(input,1),19),5),-4),-3)"
  },
  {
    "input": "input : list = [0, 3, 0, -1, 5]\noutput : list = [5, 3, 0, 0, -1]",
    "output": "generated_output : list = sort_des([0, 3, 0, -1, 5])",
    "io_inp": [
      0,
      3,
      0,
      -1,
      5
    ],
    "io_out": [
      5,
      3,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, -2]\noutput : list = [8, 8]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(drop([3, -2, -2],1),6)),-2),-2)",
    "io_inp": [
      3,
      -2,
      -2
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(drop(input,1),6)),-2),-2)"
  },
  {
    "input": "input : list = [4, -5, 5, -3]\noutput : list = [5, 4, -3, -5]",
    "output": "generated_output : list = sort_des([4, -5, 5, -3])",
    "io_inp": [
      4,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, -1, 5]\noutput : list = [-75, 15, -30, -30]",
    "output": "generated_output : list = mul_n(reverse(mul_n([2, 2, -1, 5],3)),-5)",
    "io_inp": [
      2,
      2,
      -1,
      5
    ],
    "io_out": [
      -75,
      15,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,3)),-5)"
  },
  {
    "input": "input : list = [0, -3, 2, 5, 1]\noutput : list = [-3, 1, -2]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(drop([0, -3, 2, 5, 1],2),5),1),1))",
    "io_inp": [
      0,
      -3,
      2,
      5,
      1
    ],
    "io_out": [
      -3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(drop(input,2),5),1),1))"
  },
  {
    "input": "input : list = [-3, 3, 3, -4, 5]\noutput : list = [-12, 12, 12, -16, 20]",
    "output": "generated_output : list = mul_n([-3, 3, 3, -4, 5],4)",
    "io_inp": [
      -3,
      3,
      3,
      -4,
      5
    ],
    "io_out": [
      -12,
      12,
      12,
      -16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sub_n(add_n(drop([-1, -4, 1],1),1),-2)",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(input,1),1),-2)"
  },
  {
    "input": "input : list = [-2, 0, -5, -2]\noutput : list = [-4, -2, -7, -4]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(sub_n([-2, 0, -5, -2],1),-2),-1),1),-2)",
    "io_inp": [
      -2,
      0,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(sub_n(input,1),-2),-1),1),-2)"
  },
  {
    "input": "input : list = [2, 2, -3, 1, 1]\noutput : list = [1, 1, -9, -1, -1]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(mul_n([2, 2, -3, 1, 1],2),-3))),1)",
    "io_inp": [
      2,
      2,
      -3,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -9,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(mul_n(input,2),-3))),1)"
  },
  {
    "input": "input : list = [2, -5, 5, -2, 0, -4]\noutput : list = [-8, -7, -5, -3, -1, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([2, -5, 5, -2, 0, -4]),1),2)",
    "io_inp": [
      2,
      -5,
      5,
      -2,
      0,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),1),2)"
  },
  {
    "input": "input : list = [3, 4, 5, 4]\noutput : list = [6, 7, 7, 8]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(sort_des([3, 4, 5, 4])),18)),-3)",
    "io_inp": [
      3,
      4,
      5,
      4
    ],
    "io_out": [
      6,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(sort_des(input)),18)),-3)"
  },
  {
    "input": "input : list = [-2, 5, -5, -2, -2, 2]\noutput : list = [20, 8, 8, 8, -8, -20]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(mul_n([-2, 5, -5, -2, -2, 2],-4)))),30)",
    "io_inp": [
      -2,
      5,
      -5,
      -2,
      -2,
      2
    ],
    "io_out": [
      20,
      8,
      8,
      8,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(mul_n(input,-4)))),30)"
  },
  {
    "input": "input : list = [-1, 3, 3, -2]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(take([-1, 3, 3, -2],2)))),14)",
    "io_inp": [
      -1,
      3,
      3,
      -2
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(take(input,2)))),14)"
  },
  {
    "input": "input : list = [-5, 3, 2, 3]\noutput : list = [3, 3, 2, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 2, 3])",
    "io_inp": [
      -5,
      3,
      2,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2, 1, -5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(take([-3, 2, 1, -5],1),9),2)))",
    "io_inp": [
      -3,
      2,
      1,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(take(input,1),9),2)))"
  },
  {
    "input": "input : list = [-3, 5, -4, 5]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(add_n(take(add_n(take([-3, 5, -4, 5],1),-2),9),4))",
    "io_inp": [
      -3,
      5,
      -4,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(take(input,1),-2),9),4))"
  },
  {
    "input": "input : list = [1, 1, -4, -1, 1, 1]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = take([1, 1, -4, -1, 1, 1],3)",
    "io_inp": [
      1,
      1,
      -4,
      -1,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, 1, -5, -4, 5]\noutput : list = [6, -3, -4, 2, 1]",
    "output": "generated_output : list = add_n(reverse(sub_n([0, 1, -5, -4, 5],4)),5)",
    "io_inp": [
      0,
      1,
      -5,
      -4,
      5
    ],
    "io_out": [
      6,
      -3,
      -4,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,4)),5)"
  },
  {
    "input": "input : list = [0, -1, 5, -4]\noutput : list = [-1, -2, 4, -5]",
    "output": "generated_output : list = sub_n(add_n([0, -1, 5, -4],2),3)",
    "io_inp": [
      0,
      -1,
      5,
      -4
    ],
    "io_out": [
      -1,
      -2,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),3)"
  },
  {
    "input": "input : list = [-4, -3, -2, 4]\noutput : list = [8, 5, 2, -16]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n([-4, -3, -2, 4],-3)),-4),1)",
    "io_inp": [
      -4,
      -3,
      -2,
      4
    ],
    "io_out": [
      8,
      5,
      2,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(input,-3)),-4),1)"
  },
  {
    "input": "input : list = [-1, -4, -5, 5, 5, 2]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n(take([-1, -4, -5, 5, 5, 2],2),2)",
    "io_inp": [
      -1,
      -4,
      -5,
      5,
      5,
      2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),2)"
  },
  {
    "input": "input : list = [-1, 2, 0, 1, -4]\noutput : list = [11, 17, 13, 15, 5]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(add_n([-1, 2, 0, 1, -4],5),-1),6),-2),-3)",
    "io_inp": [
      -1,
      2,
      0,
      1,
      -4
    ],
    "io_out": [
      11,
      17,
      13,
      15,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(add_n(input,5),-1),6),-2),-3)"
  },
  {
    "input": "input : list = [-4, 1, -3, 2]\noutput : list = [-4, -3, 1, 2]",
    "output": "generated_output : list = sort_asc([-4, 1, -3, 2])",
    "io_inp": [
      -4,
      1,
      -3,
      2
    ],
    "io_out": [
      -4,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 4, 4, -1, -3]\noutput : list = [-7, -5, -5, 0, 0]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n(sort_asc([-1, 4, 4, -1, -3]),-2),2),43))",
    "io_inp": [
      -1,
      4,
      4,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(sort_asc(input),-2),2),43))"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [-16, -12, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(sort_des([2, 1, 0]),-2))),-4)",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      -16,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(sort_des(input),-2))),-4)"
  },
  {
    "input": "input : list = [-4, 1, -2, 3, 5, 4]\noutput : list = [19, 15, 11, 3, -9, -17]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_asc([-4, 1, -2, 3, 5, 4]),4)),-1))",
    "io_inp": [
      -4,
      1,
      -2,
      3,
      5,
      4
    ],
    "io_out": [
      19,
      15,
      11,
      3,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_asc(input),4)),-1))"
  },
  {
    "input": "input : list = [-5, -2, -5, 0, 0]\noutput : list = [12, 6, 12, 2, 2]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n([-5, -2, -5, 0, 0],3),-2),18),4)",
    "io_inp": [
      -5,
      -2,
      -5,
      0,
      0
    ],
    "io_out": [
      12,
      6,
      12,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(input,3),-2),18),4)"
  },
  {
    "input": "input : list = [-3, 3, 1, 1, -3, -1]\noutput : list = [-3, 3, 1, 1, -3, -1]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(sub_n([-3, 3, 1, 1, -3, -1],-4),4),3),-3),19)",
    "io_inp": [
      -3,
      3,
      1,
      1,
      -3,
      -1
    ],
    "io_out": [
      -3,
      3,
      1,
      1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(sub_n(input,-4),4),3),-3),19)"
  },
  {
    "input": "input : list = [4, 1, 3, -1, 4]\noutput : list = [5, 7, 9, 10, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_des([4, 1, 3, -1, 4]),-3)),1),4)",
    "io_inp": [
      4,
      1,
      3,
      -1,
      4
    ],
    "io_out": [
      5,
      7,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_des(input),-3)),1),4)"
  },
  {
    "input": "input : list = [1, -2, 5, 0]\noutput : list = [4, 1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(take([1, -2, 5, 0],2)))),3)",
    "io_inp": [
      1,
      -2,
      5,
      0
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(take(input,2)))),3)"
  },
  {
    "input": "input : list = [-5, 2, 5, -4]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(take([-5, 2, 5, -4],2),3),23),3))",
    "io_inp": [
      -5,
      2,
      5,
      -4
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(take(input,2),3),23),3))"
  },
  {
    "input": "input : list = [1, 5, -4]\noutput : list = [-16, 4, 20]",
    "output": "generated_output : list = take(reverse(take(mul_n(sort_des([1, 5, -4]),4),13)),5)",
    "io_inp": [
      1,
      5,
      -4
    ],
    "io_out": [
      -16,
      4,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(sort_des(input),4),13)),5)"
  },
  {
    "input": "input : list = [5, 0, 4, 4, 4, -5]\noutput : list = [-1, -6, -2, -2, -2, -11]",
    "output": "generated_output : list = sub_n(add_n([5, 0, 4, 4, 4, -5],-1),5)",
    "io_inp": [
      5,
      0,
      4,
      4,
      4,
      -5
    ],
    "io_out": [
      -1,
      -6,
      -2,
      -2,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [17, 11, 8]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(sort_asc([2, 5, 4]),-4),5),-3),-4)",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      17,
      11,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(sort_asc(input),-4),5),-3),-4)"
  },
  {
    "input": "input : list = [5, 2, -3, -4, 0]\noutput : list = [-4, -3, 0, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc([5, 2, -3, -4, 0]),4),4))",
    "io_inp": [
      5,
      2,
      -3,
      -4,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(input),4),4))"
  },
  {
    "input": "input : list = [3, -2, 3, -5, 0]\noutput : list = [6, -19]",
    "output": "generated_output : list = take(reverse(sub_n(take(mul_n([3, -2, 3, -5, 0],-5),2),4)),21)",
    "io_inp": [
      3,
      -2,
      3,
      -5,
      0
    ],
    "io_out": [
      6,
      -19
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(mul_n(input,-5),2),4)),21)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [0, 10]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(add_n([-3, -5],3),-5))),33)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(add_n(input,3),-5))),33)"
  },
  {
    "input": "input : list = [-2, 4, 5, -3]\noutput : list = [-4, 4, 3, -3]",
    "output": "generated_output : list = reverse(take(take(take(add_n([-2, 4, 5, -3],-1),4),19),19))",
    "io_inp": [
      -2,
      4,
      5,
      -3
    ],
    "io_out": [
      -4,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(add_n(input,-1),4),19),19))"
  },
  {
    "input": "input : list = [-4, 3, -5, -2]\noutput : list = [-3, 4, -4, -1]",
    "output": "generated_output : list = add_n([-4, 3, -5, -2],1)",
    "io_inp": [
      -4,
      3,
      -5,
      -2
    ],
    "io_out": [
      -3,
      4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = take(take(reverse(reverse(sort_des([3, -4, -5]))),5),27)",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(sort_des(input))),5),27)"
  },
  {
    "input": "input : list = [4, -1, 4, 3, -1, 0]\noutput : list = [-11, -11, -7, 5, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(sub_n([4, -1, 4, 3, -1, 0],1),-4),-1)))",
    "io_inp": [
      4,
      -1,
      4,
      3,
      -1,
      0
    ],
    "io_out": [
      -11,
      -11,
      -7,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(sub_n(input,1),-4),-1)))"
  },
  {
    "input": "input : list = [4, -4, -4, 5]\noutput : list = [2, -6, -6, 3]",
    "output": "generated_output : list = add_n([4, -4, -4, 5],-2)",
    "io_inp": [
      4,
      -4,
      -4,
      5
    ],
    "io_out": [
      2,
      -6,
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, 2, -1, -3, -4]\noutput : list = [-2, -2, 7, 13, 16]",
    "output": "generated_output : list = sub_n(mul_n([2, 2, -1, -3, -4],-3),-4)",
    "io_inp": [
      2,
      2,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -2,
      7,
      13,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),-4)"
  },
  {
    "input": "input : list = [-3, 5, -5, -3, 0, -5]\noutput : list = [3, -2, -5, -5, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n(reverse([-3, 5, -5, -3, 0, -5]),2))",
    "io_inp": [
      -3,
      5,
      -5,
      -3,
      0,
      -5
    ],
    "io_out": [
      3,
      -2,
      -5,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),2))"
  },
  {
    "input": "input : list = [-3, -1, -3, 0]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(drop([-3, -1, -3, 0],1),-4),1)),-3)",
    "io_inp": [
      -3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(drop(input,1),-4),1)),-3)"
  },
  {
    "input": "input : list = [2, 0, 3, 5]\noutput : list = [8, 6, 5, 3]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(sub_n([2, 0, 3, 5],-5))),-5),3)",
    "io_inp": [
      2,
      0,
      3,
      5
    ],
    "io_out": [
      8,
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(sub_n(input,-5))),-5),3)"
  },
  {
    "input": "input : list = [-2, 2, -1, 2, -4]\noutput : list = [-6, -2, -5, -2, -8]",
    "output": "generated_output : list = sub_n(add_n(add_n([-2, 2, -1, 2, -4],-5),-4),-5)",
    "io_inp": [
      -2,
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -5,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-5),-4),-5)"
  },
  {
    "input": "input : list = [2, 4, 3, 3]\noutput : list = [4, 3, 3, 2]",
    "output": "generated_output : list = sort_des([2, 4, 3, 3])",
    "io_inp": [
      2,
      4,
      3,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, 4]\noutput : list = [12, 12, 9]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_des([5, 5, 4]),3),1),-2))",
    "io_inp": [
      5,
      5,
      4
    ],
    "io_out": [
      12,
      12,
      9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_des(input),3),1),-2))"
  },
  {
    "input": "input : list = [3, -4, 5, 0]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse(take([3, -4, 5, 0],2))",
    "io_inp": [
      3,
      -4,
      5,
      0
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [5, 0, 2, -3]\noutput : list = [11, 8, 6, 3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sub_n(reverse([5, 0, 2, -3]),-1)),-5))",
    "io_inp": [
      5,
      0,
      2,
      -3
    ],
    "io_out": [
      11,
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sub_n(reverse(input),-1)),-5))"
  },
  {
    "input": "input : list = [-3, -1, -4]\noutput : list = [-6, -4, -7]",
    "output": "generated_output : list = sub_n([-3, -1, -4],3)",
    "io_inp": [
      -3,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, 2, 2, 1, 4]\noutput : list = [3, 3, 1, 1, 0]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n([4, 2, 2, 1, 4],5),-4)),13)",
    "io_inp": [
      4,
      2,
      2,
      1,
      4
    ],
    "io_out": [
      3,
      3,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(input,5),-4)),13)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sub_n(take(sub_n(take(sub_n([-2, 3],3),3),2),21),1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(sub_n(input,3),3),2),21),1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(drop(sub_n(add_n([-4, 1],2),-2),1))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(add_n(input,2),-2),1))"
  },
  {
    "input": "input : list = [5, 4, -5, -2, -2]\noutput : list = [-20, -25]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(take([5, 4, -5, -2, -2],2)),-5)),19)",
    "io_inp": [
      5,
      4,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(take(input,2)),-5)),19)"
  },
  {
    "input": "input : list = [5, -5, -1, 2, 3]\noutput : list = [-5, -1, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(take([5, -5, -1, 2, 3],3))),25))",
    "io_inp": [
      5,
      -5,
      -1,
      2,
      3
    ],
    "io_out": [
      -5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(take(input,3))),25))"
  },
  {
    "input": "input : list = [5, 1, 0, 1, 0]\noutput : list = [0, 0, 1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sort_asc([5, 1, 0, 1, 0])))))",
    "io_inp": [
      5,
      1,
      0,
      1,
      0
    ],
    "io_out": [
      0,
      0,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, 4, -1, -5, -1]\noutput : list = [-4, 4]",
    "output": "generated_output : list = mul_n(drop(sub_n(sub_n(mul_n([-5, 4, -1, -5, -1],-2),5),1),3),-1)",
    "io_inp": [
      -5,
      4,
      -1,
      -5,
      -1
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(sub_n(mul_n(input,-2),5),1),3),-1)"
  },
  {
    "input": "input : list = [5, 4, 3]\noutput : list = [3, 4, 5]",
    "output": "generated_output : list = mul_n(reverse([5, 4, 3]),1)",
    "io_inp": [
      5,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [1, 0, 3, 3, 2, 0]\noutput : list = [-3, -4, -1, -1, -2, -4]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(add_n([1, 0, 3, 3, 2, 0],-4),4))),4)",
    "io_inp": [
      1,
      0,
      3,
      3,
      2,
      0
    ],
    "io_out": [
      -3,
      -4,
      -1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(add_n(input,-4),4))),4)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-12, -6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n([1, -5],-2)),-5)),-4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n(input,-2)),-5)),-4)"
  },
  {
    "input": "input : list = [-1, -1, -5, -4]\noutput : list = [-5, -4, -1, -1]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sort_asc([-1, -1, -5, -4])),17)))",
    "io_inp": [
      -1,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sort_asc(input)),17)))"
  },
  {
    "input": "input : list = [3, -3, -3, -2, 5, -5]\noutput : list = [10]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(sort_asc([3, -3, -3, -2, 5, -5]),5))),1)",
    "io_inp": [
      3,
      -3,
      -3,
      -2,
      5,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(sort_asc(input),5))),1)"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = drop([4, -5, 0],1)",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 2, 3, -2, 1, -1]\noutput : list = [-2, -1, 1, 2, 3, 3]",
    "output": "generated_output : list = reverse(sort_des([3, 2, 3, -2, 1, -1]))",
    "io_inp": [
      3,
      2,
      3,
      -2,
      1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [16]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(reverse([-1, -3, 3]),4),1)),-4)",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(reverse(input),4),1)),-4)"
  },
  {
    "input": "input : list = [2, 4, -1, 4, 4, -5]\noutput : list = [0, 4, 7, 9, 9, 9]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(sort_asc([2, 4, -1, 4, 4, -5])),5),36))",
    "io_inp": [
      2,
      4,
      -1,
      4,
      4,
      -5
    ],
    "io_out": [
      0,
      4,
      7,
      9,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(sort_asc(input)),5),36))"
  },
  {
    "input": "input : list = [1, -2, 2, -2]\noutput : list = [-7, -4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(take([1, -2, 2, -2],2)))),-5)",
    "io_inp": [
      1,
      -2,
      2,
      -2
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(take(input,2)))),-5)"
  },
  {
    "input": "input : list = [-4, -3, -3, -5, 3]\noutput : list = [-5, -4, -3, -3, 3]",
    "output": "generated_output : list = sort_asc([-4, -3, -3, -5, 3])",
    "io_inp": [
      -4,
      -3,
      -3,
      -5,
      3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_asc(sort_des([4, 4])),8)),1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_asc(sort_des(input)),8)),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [10, 3]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(add_n([4, -3],4),-2))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      10,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(add_n(input,4),-2))))"
  },
  {
    "input": "input : list = [5, 3, 3, -2, 2, 0]\noutput : list = [-8, -3, -3, -1]",
    "output": "generated_output : list = add_n(reverse(add_n(take([5, 3, 3, -2, 2, 0],4),-5)),-1)",
    "io_inp": [
      5,
      3,
      3,
      -2,
      2,
      0
    ],
    "io_out": [
      -8,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(input,4),-5)),-1)"
  },
  {
    "input": "input : list = [4, -5, -4, 0, 3, 3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sub_n(add_n(take([4, -5, -4, 0, 3, 3],1),-2),5))",
    "io_inp": [
      4,
      -5,
      -4,
      0,
      3,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(input,1),-2),5))"
  },
  {
    "input": "input : list = [0, -5, -4, 4]\noutput : list = [2, -3, -2, 6]",
    "output": "generated_output : list = add_n([0, -5, -4, 4],2)",
    "io_inp": [
      0,
      -5,
      -4,
      4
    ],
    "io_out": [
      2,
      -3,
      -2,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, 4, -3, -3, -4]\noutput : list = [11, 10, 10, 3]",
    "output": "generated_output : list = add_n(take(mul_n(add_n(reverse([-4, 4, -3, -3, -4]),-4),-1),4),3)",
    "io_inp": [
      -4,
      4,
      -3,
      -3,
      -4
    ],
    "io_out": [
      11,
      10,
      10,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(add_n(reverse(input),-4),-1),4),3)"
  },
  {
    "input": "input : list = [1, -1, 4, -3, 3, 3]\noutput : list = [4, 2, 7, 0, 6, 6]",
    "output": "generated_output : list = sub_n([1, -1, 4, -3, 3, 3],-3)",
    "io_inp": [
      1,
      -1,
      4,
      -3,
      3,
      3
    ],
    "io_out": [
      4,
      2,
      7,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 0, 2, -3]\noutput : list = [1, -1, -4, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(reverse([-4, 0, 2, -3]))),-1))",
    "io_inp": [
      -4,
      0,
      2,
      -3
    ],
    "io_out": [
      1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-4, 2, 5, 1]\noutput : list = [28, 16, 12]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(drop([-4, 2, 5, 1],1),4)),4),-4)",
    "io_inp": [
      -4,
      2,
      5,
      1
    ],
    "io_out": [
      28,
      16,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(drop(input,1),4)),4),-4)"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = take(take(sort_asc(take(add_n([1, -1, 2],-4),13)),3),42)",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(add_n(input,-4),13)),3),42)"
  },
  {
    "input": "input : list = [5, 1, 0, 1, -4]\noutput : list = [-2, -12]",
    "output": "generated_output : list = mul_n(add_n(drop([5, 1, 0, 1, -4],3),-2),2)",
    "io_inp": [
      5,
      1,
      0,
      1,
      -4
    ],
    "io_out": [
      -2,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,3),-2),2)"
  },
  {
    "input": "input : list = [-5, -3, -4, -4]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(take([-5, -3, -4, -4],1),8),26)",
    "io_inp": [
      -5,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(take(input,1),8),26)"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [-4, -4, 5]",
    "output": "generated_output : list = sort_asc([-4, -4, 5])",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      -4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, -5]\noutput : list = [0, -4, -5]",
    "output": "generated_output : list = sort_des([0, -4, -5])",
    "io_inp": [
      0,
      -4,
      -5
    ],
    "io_out": [
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, 5, -4]\noutput : list = [9, 6]",
    "output": "generated_output : list = sub_n(mul_n(take([4, 1, 5, -4],2),1),-5)",
    "io_inp": [
      4,
      1,
      5,
      -4
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,2),1),-5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [9, 27]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sort_des([-4, -2]),-5),-3)),-3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      9,
      27
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sort_des(input),-5),-3)),-3)"
  },
  {
    "input": "input : list = [2, -5, 5, 1]\noutput : list = [6, 3, 2, -4]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(sort_des([2, -5, 5, 1]),-4),4),-1),34)",
    "io_inp": [
      2,
      -5,
      5,
      1
    ],
    "io_out": [
      6,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(sort_des(input),-4),4),-1),34)"
  },
  {
    "input": "input : list = [1, 2, -2, 5]\noutput : list = [10, -4, 4, 2]",
    "output": "generated_output : list = reverse(mul_n([1, 2, -2, 5],2))",
    "io_inp": [
      1,
      2,
      -2,
      5
    ],
    "io_out": [
      10,
      -4,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [2, -2, 0, 5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, -2, 0, 5],1))",
    "io_inp": [
      2,
      -2,
      0,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [3, 2, -3]\noutput : list = [-3, 2, 3]",
    "output": "generated_output : list = reverse([3, 2, -3])",
    "io_inp": [
      3,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, 1, 0]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(take([3, 3, 1, 0],1),2))),-4)",
    "io_inp": [
      3,
      3,
      1,
      0
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(take(input,1),2))),-4)"
  },
  {
    "input": "input : list = [3, 1, -4, -5, 4]\noutput : list = [-4, -3, 2, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sub_n([3, 1, -4, -5, 4],-1)))))",
    "io_inp": [
      3,
      1,
      -4,
      -5,
      4
    ],
    "io_out": [
      -4,
      -3,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [5, -5, -2, -3]\noutput : list = [-29, -19, -14]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(drop([5, -5, -2, -3],1),5),7)),4)",
    "io_inp": [
      5,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -29,
      -19,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(drop(input,1),5),7)),4)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(sub_n([-5, 0],-2),2),7)))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(sub_n(input,-2),2),7)))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-18, -3]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(sub_n([-1, 4],2),3),1),3),14)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -18,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(sub_n(input,2),3),1),3),14)"
  },
  {
    "input": "input : list = [2, -1, -2, -5, 3, -1]\noutput : list = [-2, -1, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(sort_des([2, -1, -2, -5, 3, -1]),5)),1))",
    "io_inp": [
      2,
      -1,
      -2,
      -5,
      3,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(sort_des(input),5)),1))"
  },
  {
    "input": "input : list = [-4, 3, -3, 3, 5]\noutput : list = [-4, -3, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([-4, 3, -3, 3, 5])",
    "io_inp": [
      -4,
      3,
      -3,
      3,
      5
    ],
    "io_out": [
      -4,
      -3,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 1, 5, -1, 1, 0]\noutput : list = [-4]",
    "output": "generated_output : list = take(mul_n(reverse(take(take([-4, 1, 5, -1, 1, 0],1),17)),1),8)",
    "io_inp": [
      -4,
      1,
      5,
      -1,
      1,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(take(input,1),17)),1),8)"
  },
  {
    "input": "input : list = [-3, 0, 2, 1, 2, -2]\noutput : list = [-4, -4, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(drop([-3, 0, 2, 1, 2, -2],1),6),-2)))",
    "io_inp": [
      -3,
      0,
      2,
      1,
      2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(drop(input,1),6),-2)))"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [-24, -14, -14]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sort_des([3, 5, 3])),-5)),-1)",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      -24,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sort_des(input)),-5)),-1)"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [3, -15]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(drop([-3, -4, 5],1),-2)),5))",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(drop(input,1),-2)),5))"
  },
  {
    "input": "input : list = [3, 2, 0, -4]\noutput : list = [-9, -6, 0, 12]",
    "output": "generated_output : list = mul_n([3, 2, 0, -4],-3)",
    "io_inp": [
      3,
      2,
      0,
      -4
    ],
    "io_out": [
      -9,
      -6,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, -1, 1, -2, -5, 0]\noutput : list = [4, -4, -8, -12, -16, -28]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(sort_asc([3, -1, 1, -2, -5, 0]),2),4)),55)",
    "io_inp": [
      3,
      -1,
      1,
      -2,
      -5,
      0
    ],
    "io_out": [
      4,
      -4,
      -8,
      -12,
      -16,
      -28
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(sort_asc(input),2),4)),55)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(add_n(reverse([-5, -1]),2)),9))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(add_n(reverse(input),2)),9))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [0, 54]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(mul_n([2, -4],-1),2),-3),9),-3)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      0,
      54
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(mul_n(input,-1),2),-3),9),-3)"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take([0, 3, 5],1))),4)",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(input,1))),4)"
  },
  {
    "input": "input : list = [0, 2, 2]\noutput : list = [6, 6, 4]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(add_n([0, 2, 2],2)),4)),2)",
    "io_inp": [
      0,
      2,
      2
    ],
    "io_out": [
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(add_n(input,2)),4)),2)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [10, 50, 15]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(add_n([-3, 5, -2],5),5),23),2),-2)",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      10,
      50,
      15
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(add_n(input,5),5),23),2),-2)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_des([-2, 4])))),1)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [39, 29, -6]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n([-4, 3, 5],-3)),5),1)",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      39,
      29,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(input,-3)),5),1)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-22, -18]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc([5, 4]),-4),24),2))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -22,
      -18
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc(input),-4),24),2))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des([4, 5])",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2, 0, -4, -3]\noutput : list = [-9]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take([0, -2, 0, -4, -3],1),3),3))",
    "io_inp": [
      0,
      -2,
      0,
      -4,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(input,1),3),3))"
  },
  {
    "input": "input : list = [-4, -5, -4, 0, 4]\noutput : list = [32, 40, 32, 0, -32]",
    "output": "generated_output : list = mul_n(mul_n([-4, -5, -4, 0, 4],2),-4)",
    "io_inp": [
      -4,
      -5,
      -4,
      0,
      4
    ],
    "io_out": [
      32,
      40,
      32,
      0,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),-4)"
  },
  {
    "input": "input : list = [1, 3, -1, -4, -3, 3]\noutput : list = [-5, -5, -11, -17, -23, -26]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sort_asc([1, 3, -1, -4, -3, 3]),4),3)),2)",
    "io_inp": [
      1,
      3,
      -1,
      -4,
      -3,
      3
    ],
    "io_out": [
      -5,
      -5,
      -11,
      -17,
      -23,
      -26
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sort_asc(input),4),3)),2)"
  },
  {
    "input": "input : list = [-1, 3, 2, -5]\noutput : list = [-6, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([-1, 3, 2, -5],-1)))",
    "io_inp": [
      -1,
      3,
      2,
      -5
    ],
    "io_out": [
      -6,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,-1)))"
  },
  {
    "input": "input : list = [5, 2, -2, 1]\noutput : list = [-16, -10, -2, -8]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(sub_n([5, 2, -2, 1],-4)),-2)),2)",
    "io_inp": [
      5,
      2,
      -2,
      1
    ],
    "io_out": [
      -16,
      -10,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(sub_n(input,-4)),-2)),2)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [11, 4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(add_n([-4, 3],3))),-5))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      11,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(add_n(input,3))),-5))"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(drop([4, 2, 3],1)),-1)))",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(drop(input,1)),-1)))"
  },
  {
    "input": "input : list = [-5, 4, 0, 3, 0]\noutput : list = [20, 15, 0, 0, -25]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des([-5, 4, 0, 3, 0])),5)))",
    "io_inp": [
      -5,
      4,
      0,
      3,
      0
    ],
    "io_out": [
      20,
      15,
      0,
      0,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(take(take(take(sort_asc([-4, -5]),16),25),21),36)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(take(sort_asc(input),16),25),21),36)"
  },
  {
    "input": "input : list = [-3, 0, -4, -2, -4]\noutput : list = [-3, -3, -2, -1, 1]",
    "output": "generated_output : list = take(sort_asc(take(reverse(add_n([-3, 0, -4, -2, -4],1)),35)),32)",
    "io_inp": [
      -3,
      0,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(add_n(input,1)),35)),32)"
  },
  {
    "input": "input : list = [-1, -1, 2, -1, 0]\noutput : list = [-1, 2, -1, 0]",
    "output": "generated_output : list = drop([-1, -1, 2, -1, 0],1)",
    "io_inp": [
      -1,
      -1,
      2,
      -1,
      0
    ],
    "io_out": [
      -1,
      2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3, 5, 1, 3]\noutput : list = [0, -2]",
    "output": "generated_output : list = sub_n(take(reverse(take(sub_n([3, 3, 5, 1, 3],4),18)),2),-1)",
    "io_inp": [
      3,
      3,
      5,
      1,
      3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sub_n(input,4),18)),2),-1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-9, -8]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([-3, -4])),5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -9,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),5)"
  },
  {
    "input": "input : list = [-4, -1, 3]\noutput : list = [-5, -2, 2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(add_n([-4, -1, 3],4)),5),9))",
    "io_inp": [
      -4,
      -1,
      3
    ],
    "io_out": [
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(add_n(input,4)),5),9))"
  },
  {
    "input": "input : list = [-3, 0, 3, 0, -5, 4]\noutput : list = [-11, -2, -7, -10, -7, -4]",
    "output": "generated_output : list = add_n(take(add_n(reverse(mul_n([-3, 0, 3, 0, -5, 4],-1)),-5),11),-2)",
    "io_inp": [
      -3,
      0,
      3,
      0,
      -5,
      4
    ],
    "io_out": [
      -11,
      -2,
      -7,
      -10,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(mul_n(input,-1)),-5),11),-2)"
  },
  {
    "input": "input : list = [-2, -1, 4, -5, 5, -4]\noutput : list = [20, -7, -10]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(drop([-2, -1, 4, -5, 5, -4],3)),15),3),-5)",
    "io_inp": [
      -2,
      -1,
      4,
      -5,
      5,
      -4
    ],
    "io_out": [
      20,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(drop(input,3)),15),3),-5)"
  },
  {
    "input": "input : list = [5, 5, -3, 3]\noutput : list = [75, 75]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take(take([5, 5, -3, 3],2),7)),5),3)",
    "io_inp": [
      5,
      5,
      -3,
      3
    ],
    "io_out": [
      75,
      75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(take(input,2),7)),5),3)"
  },
  {
    "input": "input : list = [-3, -5, -5, -1]\noutput : list = [-11, -11, -9, -7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(reverse([-3, -5, -5, -1])),3)),3)",
    "io_inp": [
      -3,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -11,
      -11,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(reverse(input)),3)),3)"
  },
  {
    "input": "input : list = [3, -1, -3, 2]\noutput : list = [12, 7, -8, -18]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(mul_n([3, -1, -3, 2],5),21)),-3))",
    "io_inp": [
      3,
      -1,
      -3,
      2
    ],
    "io_out": [
      12,
      7,
      -8,
      -18
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(mul_n(input,5),21)),-3))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(reverse([0, 4])),5),15))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(reverse(input)),5),15))"
  },
  {
    "input": "input : list = [4, -3, -5, 0]\noutput : list = [-10, -8, -5, -1]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n([4, -3, -5, 0],-5))),32)",
    "io_inp": [
      4,
      -3,
      -5,
      0
    ],
    "io_out": [
      -10,
      -8,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(input,-5))),32)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-12, -12]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(sub_n([-3, -3],1)),3),32))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(sub_n(input,1)),3),32))"
  },
  {
    "input": "input : list = [-3, -5, 2, 0, -3]\noutput : list = [-2, -4, 3, 1, -2]",
    "output": "generated_output : list = add_n([-3, -5, 2, 0, -3],1)",
    "io_inp": [
      -3,
      -5,
      2,
      0,
      -3
    ],
    "io_out": [
      -2,
      -4,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, -3, 2]\noutput : list = [24, -16, -40]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(sort_asc([5, -3, 2]),-2),-2),2),4)",
    "io_inp": [
      5,
      -3,
      2
    ],
    "io_out": [
      24,
      -16,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(sort_asc(input),-2),-2),2),4)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_des(drop([-3, 5, 5],1)))),-2)",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_des(drop(input,1)))),-2)"
  },
  {
    "input": "input : list = [-2, 5, -5, 1, 5, 3]\noutput : list = [-3, -3, -1, 1, 4, 7]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n([-2, 5, -5, 1, 5, 3],-1),2)))",
    "io_inp": [
      -2,
      5,
      -5,
      1,
      5,
      3
    ],
    "io_out": [
      -3,
      -3,
      -1,
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(input,-1),2)))"
  },
  {
    "input": "input : list = [2, -5, 3, 4, 3]\noutput : list = [4, -3, 5, 6, 5]",
    "output": "generated_output : list = take(reverse(add_n(reverse(add_n([2, -5, 3, 4, 3],5)),-3)),21)",
    "io_inp": [
      2,
      -5,
      3,
      4,
      3
    ],
    "io_out": [
      4,
      -3,
      5,
      6,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(add_n(input,5)),-3)),21)"
  },
  {
    "input": "input : list = [1, 4, 4, 1]\noutput : list = [0, 0, -9, -9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(add_n([1, 4, 4, 1],-1)))),-3)",
    "io_inp": [
      1,
      4,
      4,
      1
    ],
    "io_out": [
      0,
      0,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(add_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-20, 4]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(reverse([5, -3]),5),3),13),4)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -20,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(reverse(input),5),3),13),4)"
  },
  {
    "input": "input : list = [-2, 2, -5, -1]\noutput : list = [2, -5, -1]",
    "output": "generated_output : list = take(drop([-2, 2, -5, -1],1),13)",
    "io_inp": [
      -2,
      2,
      -5,
      -1
    ],
    "io_out": [
      2,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),13)"
  },
  {
    "input": "input : list = [1, -4, -1, 5, 5]\noutput : list = [-1]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(sort_des([1, -4, -1, 5, 5])),1),-3),11)",
    "io_inp": [
      1,
      -4,
      -1,
      5,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(sort_des(input)),1),-3),11)"
  },
  {
    "input": "input : list = [-5, 4, -5, 5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(take([-5, 4, -5, 5],1)))))",
    "io_inp": [
      -5,
      4,
      -5,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [3, -3, -3, 3]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(take([3, -3, -3, 3],2),1),-2)))",
    "io_inp": [
      3,
      -3,
      -3,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(take(input,2),1),-2)))"
  },
  {
    "input": "input : list = [-5, -2, -5, -2]\noutput : list = [10, 10, 25, 25]",
    "output": "generated_output : list = mul_n(sort_des([-5, -2, -5, -2]),-5)",
    "io_inp": [
      -5,
      -2,
      -5,
      -2
    ],
    "io_out": [
      10,
      10,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [2, 1, -2, -4]\noutput : list = [-3, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_des(reverse([2, 1, -2, -4]))),1))",
    "io_inp": [
      2,
      1,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [-4, -3, 2]\noutput : list = [-20, -15, 10]",
    "output": "generated_output : list = mul_n([-4, -3, 2],5)",
    "io_inp": [
      -4,
      -3,
      2
    ],
    "io_out": [
      -20,
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 1, 1, 2, 2, 0]\noutput : list = [0, 6, 6, 3, 3, 9]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(reverse([3, 1, 1, 2, 2, 0]))),3),47)",
    "io_inp": [
      3,
      1,
      1,
      2,
      2,
      0
    ],
    "io_out": [
      0,
      6,
      6,
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(reverse(input))),3),47)"
  },
  {
    "input": "input : list = [-5, 0, -2, 1, -4, -5]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n(take(take(take(reverse([-5, 0, -2, 1, -4, -5]),20),29),2),1)",
    "io_inp": [
      -5,
      0,
      -2,
      1,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(take(take(reverse(input),20),29),2),1)"
  },
  {
    "input": "input : list = [3, 4, -2, -5]\noutput : list = [12, 9, -6, -15]",
    "output": "generated_output : list = sort_des(reverse(mul_n([3, 4, -2, -5],3)))",
    "io_inp": [
      3,
      4,
      -2,
      -5
    ],
    "io_out": [
      12,
      9,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,3)))"
  },
  {
    "input": "input : list = [5, -5, 1, 2, -1]\noutput : list = [-15, -3, 3, 6, 15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([5, -5, 1, 2, -1])),3)",
    "io_inp": [
      5,
      -5,
      1,
      2,
      -1
    ],
    "io_out": [
      -15,
      -3,
      3,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [1, 1, -1, 4, 4]\noutput : list = [32, 32, 8, 8, -8]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc([1, 1, -1, 4, 4])),-2),-4)",
    "io_inp": [
      1,
      1,
      -1,
      4,
      4
    ],
    "io_out": [
      32,
      32,
      8,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(input)),-2),-4)"
  },
  {
    "input": "input : list = [-1, 5, 3, -5, -5, -5]\noutput : list = [2, -10, -6, 10, 10, 10]",
    "output": "generated_output : list = mul_n([-1, 5, 3, -5, -5, -5],-2)",
    "io_inp": [
      -1,
      5,
      3,
      -5,
      -5,
      -5
    ],
    "io_out": [
      2,
      -10,
      -6,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 0, 1, 3]\noutput : list = [-1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([-1, 0, 1, 3])",
    "io_inp": [
      -1,
      0,
      1,
      3
    ],
    "io_out": [
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = reverse(sort_des([4, -5]))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [0, 4, -1, -5]\noutput : list = [-3, 9, 12, 24]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(sort_des([0, 4, -1, -5]),-3),-3),25))",
    "io_inp": [
      0,
      4,
      -1,
      -5
    ],
    "io_out": [
      -3,
      9,
      12,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(sort_des(input),-3),-3),25))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc([-3, 1])",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 1, 5, 5, -3]\noutput : list = [5, 5, -3]",
    "output": "generated_output : list = sort_des(drop([-5, 1, 5, 5, -3],2))",
    "io_inp": [
      -5,
      1,
      5,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [4, -4, -3, 5]\noutput : list = [-50, -45, -10, -5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(add_n([4, -4, -3, 5],-1),5)),5))",
    "io_inp": [
      4,
      -4,
      -3,
      5
    ],
    "io_out": [
      -50,
      -45,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(add_n(input,-1),5)),5))"
  },
  {
    "input": "input : list = [5, -1, 0]\noutput : list = [12, 16, 36]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_asc([5, -1, 0])),-4)),4)",
    "io_inp": [
      5,
      -1,
      0
    ],
    "io_out": [
      12,
      16,
      36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_asc(input)),-4)),4)"
  },
  {
    "input": "input : list = [-2, 1, -3, -5, 4, 0]\noutput : list = [-9, -6, -5, -3, -2, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(add_n([-2, 1, -3, -5, 4, 0],5),12))),-1)",
    "io_inp": [
      -2,
      1,
      -3,
      -5,
      4,
      0
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(add_n(input,5),12))),-1)"
  },
  {
    "input": "input : list = [-5, 1, 2, -3, -1, 1]\noutput : list = [2, -3, -1, 1]",
    "output": "generated_output : list = drop([-5, 1, 2, -3, -1, 1],2)",
    "io_inp": [
      -5,
      1,
      2,
      -3,
      -1,
      1
    ],
    "io_out": [
      2,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [-11, 4, 7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(sort_asc([-4, 2, -3]),-3),2),3))",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      -11,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(sort_asc(input),-3),2),3))"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [-25]",
    "output": "generated_output : list = sub_n(mul_n(take([4, -1, -2],1),-5),5)",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,1),-5),5)"
  },
  {
    "input": "input : list = [1, -2, -5, 4, -4]\noutput : list = [-8, -7, -5, -2, 1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_asc([1, -2, -5, 4, -4])),-2)),-5)",
    "io_inp": [
      1,
      -2,
      -5,
      4,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_asc(input)),-2)),-5)"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [1, 0, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sub_n([4, 3, 0],2),-3))),-4)",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sub_n(input,2),-3))),-4)"
  },
  {
    "input": "input : list = [-4, 0, 4, 2, -3, -2]\noutput : list = [21, 11, 1, -9, -14, -19]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n([-4, 0, 4, 2, -3, -2],5),1)))",
    "io_inp": [
      -4,
      0,
      4,
      2,
      -3,
      -2
    ],
    "io_out": [
      21,
      11,
      1,
      -9,
      -14,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(input,5),1)))"
  },
  {
    "input": "input : list = [-1, 0, -3, 5]\noutput : list = [2, 0, 6, -10]",
    "output": "generated_output : list = mul_n([-1, 0, -3, 5],-2)",
    "io_inp": [
      -1,
      0,
      -3,
      5
    ],
    "io_out": [
      2,
      0,
      6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, -3, 3, -5]\noutput : list = [-5, 3, -3, 0]",
    "output": "generated_output : list = reverse([0, -3, 3, -5])",
    "io_inp": [
      0,
      -3,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, -4, -2, -1]\noutput : list = [-6, -4, 0, -18, -2]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(reverse([-3, 5, -4, -2, -1]),5),-1),2),-2)",
    "io_inp": [
      -3,
      5,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -4,
      0,
      -18,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(reverse(input),5),-1),2),-2)"
  },
  {
    "input": "input : list = [-1, 2, -4, -5, -2]\noutput : list = [-50, -5, -20, -110, -65]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n(sub_n([-1, 2, -4, -5, -2],-4),3),-4),-5))",
    "io_inp": [
      -1,
      2,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -50,
      -5,
      -20,
      -110,
      -65
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(sub_n(input,-4),3),-4),-5))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-25, 10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(sub_n([4, -3],-1)))),-5)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(sub_n(input,-1)))),-5)"
  },
  {
    "input": "input : list = [2, -1, 3, 2]\noutput : list = [1, -2, 2, 1]",
    "output": "generated_output : list = take(add_n([2, -1, 3, 2],-1),4)",
    "io_inp": [
      2,
      -1,
      3,
      2
    ],
    "io_out": [
      1,
      -2,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),4)"
  },
  {
    "input": "input : list = [0, -4, 3, 1, -3]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(take([0, -4, 3, 1, -3],2),9)),33))",
    "io_inp": [
      0,
      -4,
      3,
      1,
      -3
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(take(input,2),9)),33))"
  },
  {
    "input": "input : list = [-3, -1, 2, 4, -4]\noutput : list = [0, 1, 3, 6, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(sort_asc([-3, -1, 2, 4, -4])),-4)))",
    "io_inp": [
      -3,
      -1,
      2,
      4,
      -4
    ],
    "io_out": [
      0,
      1,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-5, 2, -1, 4, 4]\noutput : list = [-10, -3, -6, -1, -1]",
    "output": "generated_output : list = sub_n([-5, 2, -1, 4, 4],5)",
    "io_inp": [
      -5,
      2,
      -1,
      4,
      4
    ],
    "io_out": [
      -10,
      -3,
      -6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [2, -2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sort_des([-5, -3])),-2),5),3)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sort_des(input)),-2),5),3)"
  },
  {
    "input": "input : list = [5, 1, 2, 1, 2]\noutput : list = [10, 2, 4, 2, 4]",
    "output": "generated_output : list = mul_n([5, 1, 2, 1, 2],2)",
    "io_inp": [
      5,
      1,
      2,
      1,
      2
    ],
    "io_out": [
      10,
      2,
      4,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(add_n(drop(sort_des(sort_des([5, -1])),1),-1),1)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(sort_des(sort_des(input)),1),-1),1)"
  },
  {
    "input": "input : list = [4, 1, -2]\noutput : list = [-13]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(take([4, 1, -2],1),-4),2),1),-2)",
    "io_inp": [
      4,
      1,
      -2
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(take(input,1),-4),2),1),-2)"
  },
  {
    "input": "input : list = [4, -3, 0, 2, 1, -1]\noutput : list = [24, 12, 6, 0, -6, -18]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(mul_n([4, -3, 0, 2, 1, -1],2),2))),-3)",
    "io_inp": [
      4,
      -3,
      0,
      2,
      1,
      -1
    ],
    "io_out": [
      24,
      12,
      6,
      0,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(mul_n(input,2),2))),-3)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-13, -1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(mul_n([2, -4],-2)),5),3),1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -13,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(mul_n(input,-2)),5),3),1)"
  },
  {
    "input": "input : list = [3, -5, -4, -1, 1]\noutput : list = [-6, -5, -2, 0, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sub_n([3, -5, -4, -1, 1],2)),-3)),2)",
    "io_inp": [
      3,
      -5,
      -4,
      -1,
      1
    ],
    "io_out": [
      -6,
      -5,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sub_n(input,2)),-3)),2)"
  },
  {
    "input": "input : list = [3, 0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = drop([3, 0, 0],1)",
    "io_inp": [
      3,
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 2, -5, -5, 5, 1]\noutput : list = [-9, 3, -27, -27, -6, -27]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(reverse([-5, 2, -5, -5, 5, 1])),-4),3))",
    "io_inp": [
      -5,
      2,
      -5,
      -5,
      5,
      1
    ],
    "io_out": [
      -9,
      3,
      -27,
      -27,
      -6,
      -27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(reverse(input)),-4),3))"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = sort_asc([5, 2, 1])",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, 1, -3, 3, 3]\noutput : list = [-3, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(take(take(reverse(take([0, 2, 1, -3, 3, 3],4)),11),32))",
    "io_inp": [
      0,
      2,
      1,
      -3,
      3,
      3
    ],
    "io_out": [
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(take(input,4)),11),32))"
  },
  {
    "input": "input : list = [1, 1, -4, 5, 3, -2]\noutput : list = [12, 0, -18, -18, -30, -42]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(sub_n([1, 1, -4, 5, 3, -2],-2),-3),2),26))",
    "io_inp": [
      1,
      1,
      -4,
      5,
      3,
      -2
    ],
    "io_out": [
      12,
      0,
      -18,
      -18,
      -30,
      -42
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(sub_n(input,-2),-3),2),26))"
  },
  {
    "input": "input : list = [0, 0, 3, 5, 5, 5]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(drop(sort_asc(take(add_n([0, 0, 3, 5, 5, 5],-4),22)),4))",
    "io_inp": [
      0,
      0,
      3,
      5,
      5,
      5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(take(add_n(input,-4),22)),4))"
  },
  {
    "input": "input : list = [-5, -5, 4, 0, -2, 0]\noutput : list = [-14, -14, -11, -9, -9, -5]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sort_des([-5, -5, 4, 0, -2, 0])),4),5))",
    "io_inp": [
      -5,
      -5,
      4,
      0,
      -2,
      0
    ],
    "io_out": [
      -14,
      -14,
      -11,
      -9,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sort_des(input)),4),5))"
  },
  {
    "input": "input : list = [3, -4, 3, 4]\noutput : list = [0, -7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(take([3, -4, 3, 4],2)),3)))",
    "io_inp": [
      3,
      -4,
      3,
      4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(take(input,2)),3)))"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [0, 10, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sub_n([2, -3, 3],-3),2))))",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      0,
      10,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sub_n(input,-3),2))))"
  },
  {
    "input": "input : list = [0, 4, -1, -2, 5]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(add_n(drop(sort_asc(reverse([0, 4, -1, -2, 5])),4),-4))",
    "io_inp": [
      0,
      4,
      -1,
      -2,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(sort_asc(reverse(input)),4),-4))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-12, -4]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n([-3, 5],5),10),1),5)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -12,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(input,5),10),1),5)"
  },
  {
    "input": "input : list = [-1, 1, -3]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n(take([-1, 1, -3],1),-4))),3)",
    "io_inp": [
      -1,
      1,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(take(input,1),-4))),3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sort_asc([0, 5]),-2))))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, 20]",
    "output": "generated_output : list = mul_n(sort_des([0, -4]),-5)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-4, 2, 0, 5, 1, 4]\noutput : list = [9, 8, 6, 5, 4, 0]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(sort_asc([-4, 2, 0, 5, 1, 4])),4)))",
    "io_inp": [
      -4,
      2,
      0,
      5,
      1,
      4
    ],
    "io_out": [
      9,
      8,
      6,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [1, 3, 2, -4, 2, -4]\noutput : list = [-2, -3, -3, -4, -9, -9]",
    "output": "generated_output : list = sub_n(sort_des([1, 3, 2, -4, 2, -4]),5)",
    "io_inp": [
      1,
      3,
      2,
      -4,
      2,
      -4
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -4,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [1, 2, -1, -1]\noutput : list = [-30, -30, -39, -36]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(add_n([1, 2, -1, -1],3),-4),-4)),-3)",
    "io_inp": [
      1,
      2,
      -1,
      -1
    ],
    "io_out": [
      -30,
      -30,
      -39,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(add_n(input,3),-4),-4)),-3)"
  },
  {
    "input": "input : list = [-4, -1, 3]\noutput : list = [-3, 0, 4]",
    "output": "generated_output : list = take(take(add_n(sort_asc(sub_n([-4, -1, 3],1)),2),33),28)",
    "io_inp": [
      -4,
      -1,
      3
    ],
    "io_out": [
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(sub_n(input,1)),2),33),28)"
  },
  {
    "input": "input : list = [-3, -3, 0, -1]\noutput : list = [-3, 0, -1]",
    "output": "generated_output : list = drop([-3, -3, 0, -1],1)",
    "io_inp": [
      -3,
      -3,
      0,
      -1
    ],
    "io_out": [
      -3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -4, 3, -2, 4]\noutput : list = [0, 2, 7, 8, 9]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(add_n([5, -4, 3, -2, 4],4))),29))",
    "io_inp": [
      5,
      -4,
      3,
      -2,
      4
    ],
    "io_out": [
      0,
      2,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(add_n(input,4))),29))"
  },
  {
    "input": "input : list = [-1, -1, 1]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(mul_n([-1, -1, 1],-1),4)),4))",
    "io_inp": [
      -1,
      -1,
      1
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(mul_n(input,-1),4)),4))"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [3, 9, 4]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(sub_n([-3, 2, -4],-1),11),-2)),4)",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      3,
      9,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(sub_n(input,-1),11),-2)),4)"
  },
  {
    "input": "input : list = [-5, 4, 3, 1]\noutput : list = [11, 10, 8, 2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n([-5, 4, 3, 1],5),-4)),2)",
    "io_inp": [
      -5,
      4,
      3,
      1
    ],
    "io_out": [
      11,
      10,
      8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(input,5),-4)),2)"
  },
  {
    "input": "input : list = [3, 5, 1, 5]\noutput : list = [-6, -10, -2, -10]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n([3, 5, 1, 5],-1),1),2),13)",
    "io_inp": [
      3,
      5,
      1,
      5
    ],
    "io_out": [
      -6,
      -10,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(input,-1),1),2),13)"
  },
  {
    "input": "input : list = [-2, 3, -3, 2, -5]\noutput : list = [3, 2, -2, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_asc([-2, 3, -3, 2, -5])))))",
    "io_inp": [
      -2,
      3,
      -3,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [9, 4, 10]",
    "output": "generated_output : list = sub_n(sub_n([2, -3, 3],-3),-4)",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      9,
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-4)"
  },
  {
    "input": "input : list = [1, 5, -3, -4, 5, -4]\noutput : list = [12, 12, 8, 4, 3, 3]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(sub_n([1, 5, -3, -4, 5, -4],-4))),6),-3)",
    "io_inp": [
      1,
      5,
      -3,
      -4,
      5,
      -4
    ],
    "io_out": [
      12,
      12,
      8,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(sub_n(input,-4))),6),-3)"
  },
  {
    "input": "input : list = [-4, -4, 2]\noutput : list = [4, 4, 10]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(add_n([-4, -4, 2],5))),3)",
    "io_inp": [
      -4,
      -4,
      2
    ],
    "io_out": [
      4,
      4,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(add_n(input,5))),3)"
  },
  {
    "input": "input : list = [-5, -4, 3, 3, -2]\noutput : list = [-15, -12, -6, 9, 9]",
    "output": "generated_output : list = mul_n(take(sort_des(take(mul_n([-5, -4, 3, 3, -2],-3),9)),37),-1)",
    "io_inp": [
      -5,
      -4,
      3,
      3,
      -2
    ],
    "io_out": [
      -15,
      -12,
      -6,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(mul_n(input,-3),9)),37),-1)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [-8, -5]",
    "output": "generated_output : list = add_n(drop([1, -3, 0],1),-5)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(take(add_n(sort_asc(sort_asc([1, 0, 0])),-1),2),43)",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(sort_asc(input)),-1),2),43)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-4, 0]))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 0, -2, -5, 4]\noutput : list = [-34, 6, 16, 26, 56]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(mul_n([-1, 0, -2, -5, 4],-2)),2),5),4)",
    "io_inp": [
      -1,
      0,
      -2,
      -5,
      4
    ],
    "io_out": [
      -34,
      6,
      16,
      26,
      56
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(mul_n(input,-2)),2),5),4)"
  },
  {
    "input": "input : list = [5, -4, -2, -3, 1, -5]\noutput : list = [-6, -5, -4, -3, 0, 4]",
    "output": "generated_output : list = take(sort_asc(sub_n([5, -4, -2, -3, 1, -5],1)),21)",
    "io_inp": [
      5,
      -4,
      -2,
      -3,
      1,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,1)),21)"
  },
  {
    "input": "input : list = [-5, -5, 2, 3, -2, -2]\noutput : list = [1, 1, 6, 5, -2, -2]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n([-5, -5, 2, 3, -2, -2],-3),4)),4)",
    "io_inp": [
      -5,
      -5,
      2,
      3,
      -2,
      -2
    ],
    "io_out": [
      1,
      1,
      6,
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(input,-3),4)),4)"
  },
  {
    "input": "input : list = [-3, 5, 2]\noutput : list = [7, 4]",
    "output": "generated_output : list = sub_n(take(add_n(drop([-3, 5, 2],1),1),5),-1)",
    "io_inp": [
      -3,
      5,
      2
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(drop(input,1),1),5),-1)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n(take(drop([5, 1, 4],1),11),3)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,1),11),3)"
  },
  {
    "input": "input : list = [-5, -2, -2, 0, 2, 3]\noutput : list = [0, -2, -2, -5]",
    "output": "generated_output : list = drop(take(reverse([-5, -2, -2, 0, 2, 3]),26),2)",
    "io_inp": [
      -5,
      -2,
      -2,
      0,
      2,
      3
    ],
    "io_out": [
      0,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(take(reverse(input),26),2)"
  },
  {
    "input": "input : list = [1, 3, 1, 4, -5, 2]\noutput : list = [-5, -6, -7, -8, -8, -14]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(add_n([1, 3, 1, 4, -5, 2],-2),4),3)),47)",
    "io_inp": [
      1,
      3,
      1,
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -8,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(add_n(input,-2),4),3)),47)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(sub_n([-4, -4],1),5)),4))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(sub_n(input,1),5)),4))"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(take([1, 5, -2],1),-4))),4)",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(take(input,1),-4))),4)"
  },
  {
    "input": "input : list = [0, 1, -5, -3]\noutput : list = [0, 12, 30, 36]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc([0, 1, -5, -3]),-5),3),2))",
    "io_inp": [
      0,
      1,
      -5,
      -3
    ],
    "io_out": [
      0,
      12,
      30,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc(input),-5),3),2))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(sub_n([2, -4],-3))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [1, -3, -4]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = reverse([1, -3, -4])",
    "io_inp": [
      1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, 0, 4, -1]\noutput : list = [-1, 0, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([0, 5, 0, 4, -1]))",
    "io_inp": [
      0,
      5,
      0,
      4,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 4, 2, 0, -4]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(sort_des(take([-1, 4, 2, 0, -4],1)),-2)",
    "io_inp": [
      -1,
      4,
      2,
      0,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-2)"
  },
  {
    "input": "input : list = [3, 3, 2]\noutput : list = [-10, -15]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(drop([3, 3, 2],1),-5))))",
    "io_inp": [
      3,
      3,
      2
    ],
    "io_out": [
      -10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(drop(input,1),-5))))"
  },
  {
    "input": "input : list = [-3, 5, -4, -1]\noutput : list = [4, -2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n([-3, 5, -4, -1],1)))",
    "io_inp": [
      -3,
      5,
      -4,
      -1
    ],
    "io_out": [
      4,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,1)))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [15, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(reverse([0, -5])),13),-3))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(reverse(input)),13),-3))"
  },
  {
    "input": "input : list = [-2, 0, -3, -2, 2, -1]\noutput : list = [-12, -9, -9, -6, -3, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([-2, 0, -3, -2, 2, -1],1),3))",
    "io_inp": [
      -2,
      0,
      -3,
      -2,
      2,
      -1
    ],
    "io_out": [
      -12,
      -9,
      -9,
      -6,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,1),3))"
  },
  {
    "input": "input : list = [-4, -3, 2, -3]\noutput : list = [1, -4, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(reverse([-4, -3, 2, -3]),-2),1)))",
    "io_inp": [
      -4,
      -3,
      2,
      -3
    ],
    "io_out": [
      1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(reverse(input),-2),1)))"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [1, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(mul_n([-3, 1, -2],2))),1))",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(mul_n(input,2))),1))"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-4, -4, 0]",
    "output": "generated_output : list = sub_n([-3, -3, 1],1)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -1, 2]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(take([-2, 3, -1, 2],1))),4),-5)",
    "io_inp": [
      -2,
      3,
      -1,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(take(input,1))),4),-5)"
  },
  {
    "input": "input : list = [0, 3, -5, -5, -2]\noutput : list = [20, 5, -5, -20, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(add_n([0, 3, -5, -5, -2],1))),5))",
    "io_inp": [
      0,
      3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      20,
      5,
      -5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(add_n(input,1))),5))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(reverse([4, 3]))),-3),3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(reverse(input))),-3),3)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-15]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(reverse([3, 4]),-5))),1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(reverse(input),-5))),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [2, 9]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(add_n([4, -3],4)),1)))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(add_n(input,4)),1)))"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(reverse(drop([-2, 4, -5],1)))",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take([-1, 5, -1],1),3)",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [9, 3]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(add_n([-1, 5],5)),2),2),1)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(add_n(input,5)),2),2),1)"
  },
  {
    "input": "input : list = [2, 4, -1, -1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(reverse(drop(sort_des(add_n([2, 4, -1, -1],-3)),3)))",
    "io_inp": [
      2,
      4,
      -1,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(sort_des(add_n(input,-3)),3)))"
  },
  {
    "input": "input : list = [-3, 1, -2, -2, 5, -3]\noutput : list = [-3, 5, -2, -2, 1, -3]",
    "output": "generated_output : list = reverse([-3, 1, -2, -2, 5, -3])",
    "io_inp": [
      -3,
      1,
      -2,
      -2,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      -2,
      -2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_des([1, 0]))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [-4, 3, -2]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n([0, -5, 2],-1),-1),-3))",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      -4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(input,-1),-1),-3))"
  },
  {
    "input": "input : list = [1, 1, 1, 5, 5]\noutput : list = [-10, -10, -2, -2, -2]",
    "output": "generated_output : list = mul_n(reverse([1, 1, 1, 5, 5]),-2)",
    "io_inp": [
      1,
      1,
      1,
      5,
      5
    ],
    "io_out": [
      -10,
      -10,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [24, 24]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(add_n([2, 2],-5),12),5)),-3)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(add_n(input,-5),12),5)),-3)"
  },
  {
    "input": "input : list = [-5, 2, -5, -3, -3, -4]\noutput : list = [-5, -5, -4, -3, -3, 2]",
    "output": "generated_output : list = sort_asc([-5, 2, -5, -3, -3, -4])",
    "io_inp": [
      -5,
      2,
      -5,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, -4, 5]\noutput : list = [8, 6, 8, -10]",
    "output": "generated_output : list = mul_n([-4, -3, -4, 5],-2)",
    "io_inp": [
      -4,
      -3,
      -4,
      5
    ],
    "io_out": [
      8,
      6,
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(reverse(add_n([1, 5],-4)),18)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,-4)),18)"
  },
  {
    "input": "input : list = [1, -1, 2, -3, -4, 1]\noutput : list = [-80, 160, -200, 400, 520, -80]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(mul_n([1, -1, 2, -3, -4, 1],3),-1),2),5),-4)",
    "io_inp": [
      1,
      -1,
      2,
      -3,
      -4,
      1
    ],
    "io_out": [
      -80,
      160,
      -200,
      400,
      520,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(mul_n(input,3),-1),2),5),-4)"
  },
  {
    "input": "input : list = [-5, -2, -1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(drop(take(sort_asc(reverse([-5, -2, -1, 3])),30),2))",
    "io_inp": [
      -5,
      -2,
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(take(sort_asc(reverse(input)),30),2))"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(sort_des(take([-1, 3, -2],1)),-2)",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,1)),-2)"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [27, 12, 27]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(add_n([-5, 0, -5],-3),-3),-1),1),4)",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      27,
      12,
      27
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(add_n(input,-3),-3),-1),1),4)"
  },
  {
    "input": "input : list = [3, -1, 0, -2, -3, 3]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc([3, -1, 0, -2, -3, 3])),1),-1)",
    "io_inp": [
      3,
      -1,
      0,
      -2,
      -3,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(input)),1),-1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-16, -16]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(mul_n([4, 4],-3)),2),-2))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(mul_n(input,-3)),2),-2))"
  },
  {
    "input": "input : list = [1, -4, 2, -3]\noutput : list = [-5, -4, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(sub_n([1, -4, 2, -3],4),7),3)))",
    "io_inp": [
      1,
      -4,
      2,
      -3
    ],
    "io_out": [
      -5,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(sub_n(input,4),7),3)))"
  },
  {
    "input": "input : list = [-5, -2, 5, 2, -3, 4]\noutput : list = [-8, -6, -5, -1, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(add_n([-5, -2, 5, 2, -3, 4],-3)))",
    "io_inp": [
      -5,
      -2,
      5,
      2,
      -3,
      4
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,-3)))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-12, -2]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n(add_n([-5, 5],-1),-2),1),16),3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -12,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(add_n(input,-1),-2),1),16),3)"
  },
  {
    "input": "input : list = [5, -5, -1, 3, 3]\noutput : list = [10, 0, 4, 8, 8]",
    "output": "generated_output : list = take(sub_n([5, -5, -1, 3, 3],-5),15)",
    "io_inp": [
      5,
      -5,
      -1,
      3,
      3
    ],
    "io_out": [
      10,
      0,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),15)"
  },
  {
    "input": "input : list = [3, -2, -1, 4, -5]\noutput : list = [-5, 4, -1, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, -1, 4, -5])",
    "io_inp": [
      3,
      -2,
      -1,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      -1,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 4, 5, 5]\noutput : list = [1, 1, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sort_des([5, 4, 5, 5])),4)))",
    "io_inp": [
      5,
      4,
      5,
      5
    ],
    "io_out": [
      1,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [0, 2, -5, 3]\noutput : list = [1, 3, -4, 4]",
    "output": "generated_output : list = take(take(add_n(add_n(add_n([0, 2, -5, 3],3),-5),3),30),28)",
    "io_inp": [
      0,
      2,
      -5,
      3
    ],
    "io_out": [
      1,
      3,
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(add_n(input,3),-5),3),30),28)"
  },
  {
    "input": "input : list = [-2, 1, 4, 1]\noutput : list = [10, -5, -20, -5]",
    "output": "generated_output : list = mul_n([-2, 1, 4, 1],-5)",
    "io_inp": [
      -2,
      1,
      4,
      1
    ],
    "io_out": [
      10,
      -5,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [45, 49, 29]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(sub_n([-3, -4, 1],4),9),-3),-4),5)",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      45,
      49,
      29
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(sub_n(input,4),9),-3),-4),5)"
  },
  {
    "input": "input : list = [-4, 2, 0, -4, 4]\noutput : list = [-4, -4, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([-4, 2, 0, -4, 4])",
    "io_inp": [
      -4,
      2,
      0,
      -4,
      4
    ],
    "io_out": [
      -4,
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [-3, -3, 12]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n([1, -4, 1],-3))))",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      -3,
      -3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(input,-3))))"
  },
  {
    "input": "input : list = [4, 5, 1, 0]\noutput : list = [-20, -15, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n([4, 5, 1, 0],5),-5),-1)))",
    "io_inp": [
      4,
      5,
      1,
      0
    ],
    "io_out": [
      -20,
      -15,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n(input,5),-5),-1)))"
  },
  {
    "input": "input : list = [-2, 0, 4, 0, 5, 0]\noutput : list = [0, 5, 0, 4, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, 4, 0, 5, 0])",
    "io_inp": [
      -2,
      0,
      4,
      0,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      0,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2, 2, 3, 4, 2]\noutput : list = [-1, 5, 5, 5, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-4, 2, 2, 3, 4, 2]),-3))",
    "io_inp": [
      -4,
      2,
      2,
      3,
      4,
      2
    ],
    "io_out": [
      -1,
      5,
      5,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [3, 2, 0, -4, 5, 5]\noutput : list = [0, -8, -12, -14, -18, -18]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(sort_asc([3, 2, 0, -4, 5, 5]),4),-2)))",
    "io_inp": [
      3,
      2,
      0,
      -4,
      5,
      5
    ],
    "io_out": [
      0,
      -8,
      -12,
      -14,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(sort_asc(input),4),-2)))"
  },
  {
    "input": "input : list = [-3, -1, 0, -5]\noutput : list = [6, 2, -2, -4]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(sort_asc([-3, -1, 0, -5]),-5),3),-2),18)",
    "io_inp": [
      -3,
      -1,
      0,
      -5
    ],
    "io_out": [
      6,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(sort_asc(input),-5),3),-2),18)"
  },
  {
    "input": "input : list = [-3, -3, 5, -1]\noutput : list = [7, 7, 5, -1]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(mul_n([-3, -3, 5, -1],-1)),-4),6))",
    "io_inp": [
      -3,
      -3,
      5,
      -1
    ],
    "io_out": [
      7,
      7,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(mul_n(input,-1)),-4),6))"
  },
  {
    "input": "input : list = [4, 4, 4, -2]\noutput : list = [-4, -4, -4, 2]",
    "output": "generated_output : list = take(mul_n([4, 4, 4, -2],-1),17)",
    "io_inp": [
      4,
      4,
      4,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),17)"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [5, 4, 4]",
    "output": "generated_output : list = sort_des([4, 4, 5])",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 0, -5, -2]\noutput : list = [-4, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([-1, 0, -5, -2]),1))",
    "io_inp": [
      -1,
      0,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-3, -4, 3, -1, -2, -1]\noutput : list = [-1, -2, -1, 3, -4, -3]",
    "output": "generated_output : list = take(reverse([-3, -4, 3, -1, -2, -1]),27)",
    "io_inp": [
      -3,
      -4,
      3,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -1,
      3,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),27)"
  },
  {
    "input": "input : list = [0, 3, 4, -2, 0]\noutput : list = [1, 3, 3, 6, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(reverse([0, 3, 4, -2, 0]),-3))))",
    "io_inp": [
      0,
      3,
      4,
      -2,
      0
    ],
    "io_out": [
      1,
      3,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [0, 0, 5, -5, -1, 0]\noutput : list = [-10, -6, -5, -5, -5, 0]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(sort_asc([0, 0, 5, -5, -1, 0]),8),2)),-3)",
    "io_inp": [
      0,
      0,
      5,
      -5,
      -1,
      0
    ],
    "io_out": [
      -10,
      -6,
      -5,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(sort_asc(input),8),2)),-3)"
  },
  {
    "input": "input : list = [-2, -4, 4, 1, 5]\noutput : list = [-10, -2, -8, 8, 4]",
    "output": "generated_output : list = reverse(mul_n(mul_n([-2, -4, 4, 1, 5],-2),1))",
    "io_inp": [
      -2,
      -4,
      4,
      1,
      5
    ],
    "io_out": [
      -10,
      -2,
      -8,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,-2),1))"
  },
  {
    "input": "input : list = [3, 4, -2, -2, 4]\noutput : list = [4, -2, -2, 4]",
    "output": "generated_output : list = drop([3, 4, -2, -2, 4],1)",
    "io_inp": [
      3,
      4,
      -2,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -1, -5, -5, -1]\noutput : list = [16, 0]",
    "output": "generated_output : list = mul_n(add_n(drop([-3, -1, -5, -5, -1],3),1),-4)",
    "io_inp": [
      -3,
      -1,
      -5,
      -5,
      -1
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,3),1),-4)"
  },
  {
    "input": "input : list = [0, 3, -3, 2]\noutput : list = [1, 4, -2, 3]",
    "output": "generated_output : list = add_n([0, 3, -3, 2],1)",
    "io_inp": [
      0,
      3,
      -3,
      2
    ],
    "io_out": [
      1,
      4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [40, 80, 100]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc([2, 5, 4]),13),5),4)",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      40,
      80,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(input),13),5),4)"
  },
  {
    "input": "input : list = [-4, -4, -3, 5, -5, 1]\noutput : list = [-5, -4, -4, -3, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse([-4, -4, -3, 5, -5, 1]),-1))),-1)",
    "io_inp": [
      -4,
      -4,
      -3,
      5,
      -5,
      1
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse(input),-1))),-1)"
  },
  {
    "input": "input : list = [3, 3, 5, 4, 5]\noutput : list = [8, 8, 7, 6, 6]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(add_n([3, 3, 5, 4, 5],3)))))",
    "io_inp": [
      3,
      3,
      5,
      4,
      5
    ],
    "io_out": [
      8,
      8,
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [0, 1, -1, -3]\noutput : list = [5, 6, 4, 2]",
    "output": "generated_output : list = sub_n([0, 1, -1, -3],-5)",
    "io_inp": [
      0,
      1,
      -1,
      -3
    ],
    "io_out": [
      5,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(reverse([-3, -2, 1]))),3))",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(reverse(input))),3))"
  },
  {
    "input": "input : list = [0, -1, -1]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sort_asc([0, -1, -1]),-1),4)),-1)",
    "io_inp": [
      0,
      -1,
      -1
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sort_asc(input),-1),4)),-1)"
  },
  {
    "input": "input : list = [1, -2, 1, 4, 1]\noutput : list = [-1, 2, 2, 2, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse([1, -2, 1, 4, 1]))),-1)",
    "io_inp": [
      1,
      -2,
      1,
      4,
      1
    ],
    "io_out": [
      -1,
      2,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(input))),-1)"
  },
  {
    "input": "input : list = [-4, 0, 1, -5, 2, -2]\noutput : list = [-18, -10, -8, -20, -6, -14]",
    "output": "generated_output : list = mul_n(add_n([-4, 0, 1, -5, 2, -2],-5),2)",
    "io_inp": [
      -4,
      0,
      1,
      -5,
      2,
      -2
    ],
    "io_out": [
      -18,
      -10,
      -8,
      -20,
      -6,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),2)"
  },
  {
    "input": "input : list = [5, 1, 4, -1, 4, -2]\noutput : list = [-76, -60, -72, -52, -72, -48]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(sub_n([5, 1, 4, -1, 4, -2],-1),-5),-3),5),-4)",
    "io_inp": [
      5,
      1,
      4,
      -1,
      4,
      -2
    ],
    "io_out": [
      -76,
      -60,
      -72,
      -52,
      -72,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(sub_n(input,-1),-5),-3),5),-4)"
  },
  {
    "input": "input : list = [-4, -1, -2, 4]\noutput : list = [-16, -8, -4, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(reverse([-4, -1, -2, 4]),4))))",
    "io_inp": [
      -4,
      -1,
      -2,
      4
    ],
    "io_out": [
      -16,
      -8,
      -4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-1, -5, 2, 4, 3]\noutput : list = [-20, -4, 8, 12, 16]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(sort_asc([-1, -5, 2, 4, 3])),34)),4)",
    "io_inp": [
      -1,
      -5,
      2,
      4,
      3
    ],
    "io_out": [
      -20,
      -4,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(sort_asc(input)),34)),4)"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [-12]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(take([-3, 4, 5],1),-2),4),-5),-3)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(take(input,1),-2),4),-5),-3)"
  },
  {
    "input": "input : list = [-4, 2, 2, -2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(take(drop([-4, 2, 2, -2, 0],3),11))))",
    "io_inp": [
      -4,
      2,
      2,
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(drop(input,3),11))))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc([2, 5])",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [11, 12]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sort_des([4, 3]),4),-1),-3))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      11,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sort_des(input),4),-1),-3))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-15, -6]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(add_n([1, -2],1))),-3),-3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -15,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(add_n(input,1))),-3),-3)"
  },
  {
    "input": "input : list = [3, -1, -1, -1, 2, 3]\noutput : list = [-2, -2, -3, -6, -6, -6]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(sort_des([3, -1, -1, -1, 2, 3]),-5))),13)",
    "io_inp": [
      3,
      -1,
      -1,
      -1,
      2,
      3
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(sort_des(input),-5))),13)"
  },
  {
    "input": "input : list = [-4, 2, 2, 1, 1, 2]\noutput : list = [-4, 1, 1, 2, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sort_asc([-4, 2, 2, 1, 1, 2])))))",
    "io_inp": [
      -4,
      2,
      2,
      1,
      1,
      2
    ],
    "io_out": [
      -4,
      1,
      1,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, -1, 5, 0, 3]\noutput : list = [-15, -9, 0, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(drop([-1, -1, 5, 0, 3],1),-3))))",
    "io_inp": [
      -1,
      -1,
      5,
      0,
      3
    ],
    "io_out": [
      -15,
      -9,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 5]))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(reverse([-5, 4, -5]),8),-1)),2)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(reverse(input),8),-1)),2)"
  },
  {
    "input": "input : list = [1, 3, -3, 3, 1, -5]\noutput : list = [8, 8, 6, 6, 2, 0]",
    "output": "generated_output : list = sub_n(add_n(sort_des([1, 3, -3, 3, 1, -5]),3),-2)",
    "io_inp": [
      1,
      3,
      -3,
      3,
      1,
      -5
    ],
    "io_out": [
      8,
      8,
      6,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),3),-2)"
  },
  {
    "input": "input : list = [-1, -4, 5, 0, -1, 3]\noutput : list = [5, 8, -1, 4, 5, 1]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(reverse([-1, -4, 5, 0, -1, 3]),-1),2)),2)",
    "io_inp": [
      -1,
      -4,
      5,
      0,
      -1,
      3
    ],
    "io_out": [
      5,
      8,
      -1,
      4,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(reverse(input),-1),2)),2)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [6, 8]",
    "output": "generated_output : list = mul_n(mul_n([-3, -4],-1),2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),2)"
  },
  {
    "input": "input : list = [5, -4, 1, -5, -4, -2]\noutput : list = [-3, -5, -6]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(drop([5, -4, 1, -5, -4, -2],3))),40),1)",
    "io_inp": [
      5,
      -4,
      1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(drop(input,3))),40),1)"
  },
  {
    "input": "input : list = [2, 2, 0, 1, -5, 5]\noutput : list = [-75, 75]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(drop([2, 2, 0, 1, -5, 5],4),5),-3)))",
    "io_inp": [
      2,
      2,
      0,
      1,
      -5,
      5
    ],
    "io_out": [
      -75,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(drop(input,4),5),-3)))"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([2, -1, -2])),-2)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [2, 11]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(drop([-1, -4, 5],1),6),3),-5),2)",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      2,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(drop(input,1),6),3),-5),2)"
  },
  {
    "input": "input : list = [-4, 4, -5, 1, -3, -5]\noutput : list = [-5, -5, -4, -3, 1, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(mul_n([-4, 4, -5, 1, -3, -5],-1),-1))))",
    "io_inp": [
      -4,
      4,
      -5,
      1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(mul_n(input,-1),-1))))"
  },
  {
    "input": "input : list = [3, -2, -4, -5, -4]\noutput : list = [-4, -5, -4, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, -4, -5, -4])",
    "io_inp": [
      3,
      -2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [-2, 1, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(reverse([-5, -2, 0]),1))),4)",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(reverse(input),1))),4)"
  },
  {
    "input": "input : list = [2, 4, 2, -3]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(take([2, 4, 2, -3],2))",
    "io_inp": [
      2,
      4,
      2,
      -3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [20, 5, 0]",
    "output": "generated_output : list = sort_des(mul_n([-4, -1, 0],-5))",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      20,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-4, -2, -1, -2, 1, 0]\noutput : list = [0, 1, -2, -1, -2, -4]",
    "output": "generated_output : list = take(reverse([-4, -2, -1, -2, 1, 0]),27)",
    "io_inp": [
      -4,
      -2,
      -1,
      -2,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      -2,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),27)"
  },
  {
    "input": "input : list = [4, 0, -4, -2, -1]\noutput : list = [4, 0, -1, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_des([4, 0, -4, -2, -1])))))",
    "io_inp": [
      4,
      0,
      -4,
      -2,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = mul_n(sort_asc([5, 2, 1]),-1)",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-3, 5, 3]\noutput : list = [-4, 2, 4]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des([-3, 5, 3])),19),-1)",
    "io_inp": [
      -3,
      5,
      3
    ],
    "io_out": [
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(input)),19),-1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_des([5, 0]))),-1))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des([3, 2])",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(drop([3, 3, -2],1))",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [5, 2, 4, 4]\noutput : list = [16, 16, 12, 18]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(sub_n([5, 2, 4, 4],-5),-3),2)),2)",
    "io_inp": [
      5,
      2,
      4,
      4
    ],
    "io_out": [
      16,
      16,
      12,
      18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(sub_n(input,-5),-3),2)),2)"
  },
  {
    "input": "input : list = [-1, -1, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = add_n(drop([-1, -1, 2],1),3)",
    "io_inp": [
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [1, 2, 2, -3, 3, -1]\noutput : list = [-3, -6, -6, 9, -9, 3]",
    "output": "generated_output : list = take(mul_n([1, 2, 2, -3, 3, -1],-3),7)",
    "io_inp": [
      1,
      2,
      2,
      -3,
      3,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -6,
      9,
      -9,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),7)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [1, -5, -8]",
    "output": "generated_output : list = sort_des(sub_n([-1, -4, 5],4))",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [-2, -3, -4, -3, -1, -2]\noutput : list = [8]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(take([-2, -3, -4, -3, -1, -2],1),2),2),-2))",
    "io_inp": [
      -2,
      -3,
      -4,
      -3,
      -1,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(take(input,1),2),2),-2))"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sub_n([1, 3, 0],1)),1)))",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sub_n(input,1)),1)))"
  },
  {
    "input": "input : list = [-2, -3, 2, -3, -3]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(drop([-2, -3, 2, -3, -3],2))),-1))",
    "io_inp": [
      -2,
      -3,
      2,
      -3,
      -3
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(drop(input,2))),-1))"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [7, 0, 5]",
    "output": "generated_output : list = add_n([4, -3, 2],3)",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      7,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-3, -8]",
    "output": "generated_output : list = take(take(sort_des(reverse(sub_n([1, -4],4))),32),16)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(sub_n(input,4))),32),16)"
  },
  {
    "input": "input : list = [0, 3, 2, -3, -2]\noutput : list = [0, 3]",
    "output": "generated_output : list = take([0, 3, 2, -3, -2],2)",
    "io_inp": [
      0,
      3,
      2,
      -3,
      -2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -4, -5, 5, -3]\noutput : list = [1, -7, -8, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(sub_n([-4, -4, -5, 5, -3],5),1))",
    "io_inp": [
      -4,
      -4,
      -5,
      5,
      -3
    ],
    "io_out": [
      1,
      -7,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,5),1))"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = drop([-1, 4, 1],1)",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(drop([-5, 1, -3],1),-2)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [-4, -4, -4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(drop([-4, -4, -4, -1],2))",
    "io_inp": [
      -4,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-16, 12]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(reverse([-3, 4]),5)),4),-4)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(reverse(input),5)),4),-4)"
  },
  {
    "input": "input : list = [0, -5, 5, 1, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sort_asc(sub_n(drop([0, -5, 5, 1, -5],3),1))",
    "io_inp": [
      0,
      -5,
      5,
      1,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,3),1))"
  },
  {
    "input": "input : list = [5, 1, 5, 5, 4]\noutput : list = [5, 5, 1]",
    "output": "generated_output : list = take(sort_des(take([5, 1, 5, 5, 4],3)),25)",
    "io_inp": [
      5,
      1,
      5,
      5,
      4
    ],
    "io_out": [
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(input,3)),25)"
  },
  {
    "input": "input : list = [0, -2, 2, 2]\noutput : list = [1, 1, -1, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc([0, -2, 2, 2])),-2),3)",
    "io_inp": [
      0,
      -2,
      2,
      2
    ],
    "io_out": [
      1,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(input)),-2),3)"
  },
  {
    "input": "input : list = [1, -3, -3, -3]\noutput : list = [4, 4, 4, 8]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(reverse([1, -3, -3, -3]),3),4)))",
    "io_inp": [
      1,
      -3,
      -3,
      -3
    ],
    "io_out": [
      4,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(reverse(input),3),4)))"
  },
  {
    "input": "input : list = [-2, -4, 4, -2, 0]\noutput : list = [0, -2, 4, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, 4, -2, 0])",
    "io_inp": [
      -2,
      -4,
      4,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -1, 4, 1, 1]\noutput : list = [-3, 0, 2, 2, 5]",
    "output": "generated_output : list = add_n(sort_asc([-4, -1, 4, 1, 1]),1)",
    "io_inp": [
      -4,
      -1,
      4,
      1,
      1
    ],
    "io_out": [
      -3,
      0,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [1, -5, 3]",
    "output": "generated_output : list = sub_n([3, -3, 5],2)",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-16, -7]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(add_n([0, -3],5),1),-3),3),-1)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -16,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(add_n(input,5),1),-3),3),-1)"
  },
  {
    "input": "input : list = [0, 1, -3, 1]\noutput : list = [1, 1, 0, -3]",
    "output": "generated_output : list = sort_des([0, 1, -3, 1])",
    "io_inp": [
      0,
      1,
      -3,
      1
    ],
    "io_out": [
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, 0, -5, -1]\noutput : list = [1, 0, 0, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(add_n([-2, -1, 0, -5, -1],1),11))))",
    "io_inp": [
      -2,
      -1,
      0,
      -5,
      -1
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(add_n(input,1),11))))"
  },
  {
    "input": "input : list = [-2, 5, -4, -2, -1]\noutput : list = [4, -3, 6, 4, 3]",
    "output": "generated_output : list = sub_n(mul_n([-2, 5, -4, -2, -1],-1),-2)",
    "io_inp": [
      -2,
      5,
      -4,
      -2,
      -1
    ],
    "io_out": [
      4,
      -3,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),-2)"
  },
  {
    "input": "input : list = [0, -4, 2, -3, 2]\noutput : list = [-6, -6, 0, 9, 12]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(sort_des([0, -4, 2, -3, 2]),5))),-3)",
    "io_inp": [
      0,
      -4,
      2,
      -3,
      2
    ],
    "io_out": [
      -6,
      -6,
      0,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(sort_des(input),5))),-3)"
  },
  {
    "input": "input : list = [-5, 4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(take([-5, 4, 2],1))),3))",
    "io_inp": [
      -5,
      4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(take(input,1))),3))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-10, -10]",
    "output": "generated_output : list = add_n(add_n(reverse(take(sort_asc([-5, -5]),4)),-2),-3)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(sort_asc(input),4)),-2),-3)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sort_des([1, -4]))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(take([-5, 4, -2],1),12))",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,1),12))"
  },
  {
    "input": "input : list = [3, -3, 2, 0]\noutput : list = [-1, -7, -2, -4]",
    "output": "generated_output : list = take(add_n([3, -3, 2, 0],-4),20)",
    "io_inp": [
      3,
      -3,
      2,
      0
    ],
    "io_out": [
      -1,
      -7,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),20)"
  },
  {
    "input": "input : list = [-2, 0, -5, 4]\noutput : list = [-5, -2, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des([-2, 0, -5, 4])))",
    "io_inp": [
      -2,
      0,
      -5,
      4
    ],
    "io_out": [
      -5,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, -5, -4, -1, -3, 2]\noutput : list = [-9, -8, -7, -5, -5, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(sort_des([-1, -5, -4, -1, -3, 2]),-3),1)))",
    "io_inp": [
      -1,
      -5,
      -4,
      -1,
      -3,
      2
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(sort_des(input),-3),1)))"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [-8, -2, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(add_n([1, -5, 5],-2),1))))",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      -8,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(add_n(input,-2),1))))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sub_n(take(add_n(add_n([5, -5],-1),2),19),1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(input,-1),2),19),1)"
  },
  {
    "input": "input : list = [-4, -2, -2, -4, -5]\noutput : list = [-2, -2, -4, -4, -5]",
    "output": "generated_output : list = reverse(take(mul_n(take(sort_asc([-4, -2, -2, -4, -5]),11),1),46))",
    "io_inp": [
      -4,
      -2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(sort_asc(input),11),1),46))"
  },
  {
    "input": "input : list = [2, -2, 5, 0, -2]\noutput : list = [10, 7, 5, 3, 3]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(mul_n([2, -2, 5, 0, -2],1)),-5)),1)",
    "io_inp": [
      2,
      -2,
      5,
      0,
      -2
    ],
    "io_out": [
      10,
      7,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(mul_n(input,1)),-5)),1)"
  },
  {
    "input": "input : list = [2, -4, 2, -2, -2]\noutput : list = [0, 0, 4, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sort_asc([2, -4, 2, -2, -2])),-1)),-2)",
    "io_inp": [
      2,
      -4,
      2,
      -2,
      -2
    ],
    "io_out": [
      0,
      0,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sort_asc(input)),-1)),-2)"
  },
  {
    "input": "input : list = [2, -4, 4]\noutput : list = [16, 8, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([2, -4, 4]),4))",
    "io_inp": [
      2,
      -4,
      4
    ],
    "io_out": [
      16,
      8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [0, 2, 3, 4, 5, -3]\noutput : list = [-62, -50, -38, -26, -2, 34]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(mul_n([0, 2, 3, 4, 5, -3],3)),-4)),-2)",
    "io_inp": [
      0,
      2,
      3,
      4,
      5,
      -3
    ],
    "io_out": [
      -62,
      -50,
      -38,
      -26,
      -2,
      34
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(mul_n(input,3)),-4)),-2)"
  },
  {
    "input": "input : list = [5, 2, 3, 5, 4]\noutput : list = [-30, -30, -25, -20, -15]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(add_n([5, 2, 3, 5, 4],5)),-4),-5))",
    "io_inp": [
      5,
      2,
      3,
      5,
      4
    ],
    "io_out": [
      -30,
      -30,
      -25,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(add_n(input,5)),-4),-5))"
  },
  {
    "input": "input : list = [-5, -4, -3, 1]\noutput : list = [-5, 15, 20, 25]",
    "output": "generated_output : list = mul_n(reverse([-5, -4, -3, 1]),-5)",
    "io_inp": [
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      -5,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-5, 5, -3, 1, -2]\noutput : list = [75, 45, 30, -15, -75]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(reverse([-5, 5, -3, 1, -2]))),5),-3)",
    "io_inp": [
      -5,
      5,
      -3,
      1,
      -2
    ],
    "io_out": [
      75,
      45,
      30,
      -15,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(reverse(input))),5),-3)"
  },
  {
    "input": "input : list = [5, 0, 4, -2, -2]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(drop([5, 0, 4, -2, -2],3),-2)",
    "io_inp": [
      5,
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),-2)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [108, 60]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(add_n([0, 4],5),3),7)),4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      108,
      60
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(add_n(input,5),3),7)),4)"
  },
  {
    "input": "input : list = [3, 3, 2, 4, 4]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(take([3, 3, 2, 4, 4],2)),2)),30)",
    "io_inp": [
      3,
      3,
      2,
      4,
      4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(take(input,2)),2)),30)"
  },
  {
    "input": "input : list = [1, -3, 3, 2]\noutput : list = [9, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(drop([1, -3, 3, 2],2))),2),-4)",
    "io_inp": [
      1,
      -3,
      3,
      2
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(drop(input,2))),2),-4)"
  },
  {
    "input": "input : list = [1, -3, 2, 4]\noutput : list = [0, -2, -7]",
    "output": "generated_output : list = take(take(sort_des(drop(add_n([1, -3, 2, 4],-4),1)),29),31)",
    "io_inp": [
      1,
      -3,
      2,
      4
    ],
    "io_out": [
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sort_des(drop(add_n(input,-4),1)),29),31)"
  },
  {
    "input": "input : list = [1, -5, -5, -5, -5, -2]\noutput : list = [-6, 9, 24, 24, 24, 24]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(mul_n([1, -5, -5, -5, -5, -2],-5)),36)),1)",
    "io_inp": [
      1,
      -5,
      -5,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -6,
      9,
      24,
      24,
      24,
      24
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(mul_n(input,-5)),36)),1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [7, 5]",
    "output": "generated_output : list = sort_des(add_n([3, 5],2))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [1, -5, -4, -5, 3]\noutput : list = [-3, -5, -10, -11, -11]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(add_n([1, -5, -4, -5, 3],-2),-4))))",
    "io_inp": [
      1,
      -5,
      -4,
      -5,
      3
    ],
    "io_out": [
      -3,
      -5,
      -10,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(add_n(input,-2),-4))))"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [45, 45, -5]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(sort_des([1, -4, -4]),-5),2),-5))",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      45,
      45,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(sort_des(input),-5),2),-5))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, 6]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(reverse([2, -2])),-4),33),30)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(reverse(input)),-4),33),30)"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [-20, -5, -25]",
    "output": "generated_output : list = mul_n([-4, -1, -5],5)",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      -20,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = reverse(sub_n(add_n([-5, 2, 4],-2),-2))",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-2),-2))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [14, 6]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(sub_n([-5, 3],-5)),5),-1),1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      14,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(sub_n(input,-5)),5),-1),1)"
  },
  {
    "input": "input : list = [-2, 2, -3, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 2, -3, -4],1)",
    "io_inp": [
      -2,
      2,
      -3,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 3, 3, -3, 4]\noutput : list = [0, 5, 5, -1, 6]",
    "output": "generated_output : list = take(add_n([-2, 3, 3, -3, 4],2),5)",
    "io_inp": [
      -2,
      3,
      3,
      -3,
      4
    ],
    "io_out": [
      0,
      5,
      5,
      -1,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),5)"
  },
  {
    "input": "input : list = [-5, 5, 4, 2, -1]\noutput : list = [12, 11, 9, 6]",
    "output": "generated_output : list = add_n(sub_n(drop([-5, 5, 4, 2, -1],1),-4),3)",
    "io_inp": [
      -5,
      5,
      4,
      2,
      -1
    ],
    "io_out": [
      12,
      11,
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),-4),3)"
  },
  {
    "input": "input : list = [-5, -3, 2, -2, 2]\noutput : list = [-6, -4, -3, 1, 1]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(add_n([-5, -3, 2, -2, 2],-4))),1),-3)",
    "io_inp": [
      -5,
      -3,
      2,
      -2,
      2
    ],
    "io_out": [
      -6,
      -4,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(add_n(input,-4))),1),-3)"
  },
  {
    "input": "input : list = [-2, -1, 5, 5, 4]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sub_n(sort_des(take([-2, -1, 5, 5, 4],2)),4)",
    "io_inp": [
      -2,
      -1,
      5,
      5,
      4
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(input,2)),4)"
  },
  {
    "input": "input : list = [-4, 5, -2, 2]\noutput : list = [1, -14, -34, -44]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(mul_n([-4, 5, -2, 2],1),4),5),-4))",
    "io_inp": [
      -4,
      5,
      -2,
      2
    ],
    "io_out": [
      1,
      -14,
      -34,
      -44
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(mul_n(input,1),4),5),-4))"
  },
  {
    "input": "input : list = [-5, 5, 4]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des([-5, 5, 4])",
    "io_inp": [
      -5,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, -3]\noutput : list = [2, 5, 0]",
    "output": "generated_output : list = add_n([-1, 2, -3],3)",
    "io_inp": [
      -1,
      2,
      -3
    ],
    "io_out": [
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, 4, 5]\noutput : list = [50, -70, -100]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(mul_n([0, 4, 5],-3),5),-5),-2),6)",
    "io_inp": [
      0,
      4,
      5
    ],
    "io_out": [
      50,
      -70,
      -100
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(mul_n(input,-3),5),-5),-2),6)"
  },
  {
    "input": "input : list = [1, -5, -1, 3, 4]\noutput : list = [-8, -4, -2, 0, 1]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(sort_des([1, -5, -1, 3, 4])),3),13))",
    "io_inp": [
      1,
      -5,
      -1,
      3,
      4
    ],
    "io_out": [
      -8,
      -4,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(sort_des(input)),3),13))"
  },
  {
    "input": "input : list = [5, -1, 5, -5, -5]\noutput : list = [30, 30, -6, -30, -30]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([5, -1, 5, -5, -5]),3),2)",
    "io_inp": [
      5,
      -1,
      5,
      -5,
      -5
    ],
    "io_out": [
      30,
      30,
      -6,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),3),2)"
  },
  {
    "input": "input : list = [-2, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([-2, 4, -4],1)",
    "io_inp": [
      -2,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -4, 5, 3, -4, 5]\noutput : list = [-9, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(take([1, -4, 5, 3, -4, 5],2),5)),-5),5)",
    "io_inp": [
      1,
      -4,
      5,
      3,
      -4,
      5
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(take(input,2),5)),-5),5)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(reverse([-1, -1]),1))),5)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(reverse(input),1))),5)"
  },
  {
    "input": "input : list = [-4, 2, 3, 1, 0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(drop([-4, 2, 3, 1, 0, 5],4))",
    "io_inp": [
      -4,
      2,
      3,
      1,
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,4))"
  },
  {
    "input": "input : list = [-5, -2, -4, -1]\noutput : list = [-18]",
    "output": "generated_output : list = sub_n(drop(sub_n(mul_n(sort_des([-5, -2, -4, -1]),2),5),3),3)",
    "io_inp": [
      -5,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -18
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(mul_n(sort_des(input),2),5),3),3)"
  },
  {
    "input": "input : list = [-1, 4, -3, 1, -3, -5]\noutput : list = [-4, -7, -9, -11, -11, -13]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n([-1, 4, -3, 1, -3, -5],4)),13),4))",
    "io_inp": [
      -1,
      4,
      -3,
      1,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -7,
      -9,
      -11,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n(input,4)),13),4))"
  },
  {
    "input": "input : list = [-1, 2, -2, 5]\noutput : list = [6, 3, 0, -1]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n([-1, 2, -2, 5],-5)),23),4)",
    "io_inp": [
      -1,
      2,
      -2,
      5
    ],
    "io_out": [
      6,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(input,-5)),23),4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-6, 0]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc([4, -2]),1),-1),-3))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc(input),1),-1),-3))"
  },
  {
    "input": "input : list = [-5, -5, -4, 0, 3]\noutput : list = [-15, -15, -12]",
    "output": "generated_output : list = take(mul_n([-5, -5, -4, 0, 3],3),3)",
    "io_inp": [
      -5,
      -5,
      -4,
      0,
      3
    ],
    "io_out": [
      -15,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),3)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [7, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n([5, -4],2)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,2)))"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [6, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_des([-4, 4, -2]),4))),2)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_des(input),4))),2)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [6, -2]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sub_n([-5, 3],-4),-1),4)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sub_n(input,-4),-1),4)))"
  },
  {
    "input": "input : list = [0, 0, 3, -1]\noutput : list = [-6, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([0, 0, 3, -1],1),-2))",
    "io_inp": [
      0,
      0,
      3,
      -1
    ],
    "io_out": [
      -6,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,1),-2))"
  },
  {
    "input": "input : list = [-4, 2, -1, -2]\noutput : list = [-4, -2, -1, 2]",
    "output": "generated_output : list = sort_asc([-4, 2, -1, -2])",
    "io_inp": [
      -4,
      2,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, 4, -5, -4, 1]\noutput : list = [-2, -1, 4, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(drop([-1, 1, 4, -5, -4, 1],2),-3)),-3),-3)",
    "io_inp": [
      -1,
      1,
      4,
      -5,
      -4,
      1
    ],
    "io_out": [
      -2,
      -1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(drop(input,2),-3)),-3),-3)"
  },
  {
    "input": "input : list = [-3, -1, 3, 1]\noutput : list = [15, 5, -5, -15]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(reverse([-3, -1, 3, 1]),4)),27),-5)",
    "io_inp": [
      -3,
      -1,
      3,
      1
    ],
    "io_out": [
      15,
      5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(reverse(input),4)),27),-5)"
  },
  {
    "input": "input : list = [1, 2, -2, 2, 5, 4]\noutput : list = [0, -12, -36, -84]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(drop([1, 2, -2, 2, 5, 4],2),5),-3),-4))",
    "io_inp": [
      1,
      2,
      -2,
      2,
      5,
      4
    ],
    "io_out": [
      0,
      -12,
      -36,
      -84
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(drop(input,2),5),-3),-4))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [2, 8]",
    "output": "generated_output : list = sort_asc(sub_n([5, -1],-3))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-4, 2, -2, 1]\noutput : list = [1, 3, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sort_asc([-4, 2, -2, 1])))),-5)",
    "io_inp": [
      -4,
      2,
      -2,
      1
    ],
    "io_out": [
      1,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [-3, -10, -8]",
    "output": "generated_output : list = take(add_n([2, -5, -3],-5),5)",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),5)"
  },
  {
    "input": "input : list = [-5, 5, 5, -4, 3]\noutput : list = [7, 7, 5, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(sub_n([-5, 5, 5, -4, 3],-2)),6)))",
    "io_inp": [
      -5,
      5,
      5,
      -4,
      3
    ],
    "io_out": [
      7,
      7,
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(sub_n(input,-2)),6)))"
  },
  {
    "input": "input : list = [3, -2, -3]\noutput : list = [-2, -7, -8]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([3, -2, -3])),5)",
    "io_inp": [
      3,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_des([5, 2]))),-3),-5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_des(input))),-3),-5)"
  },
  {
    "input": "input : list = [-1, -4, -4, -5, 1]\noutput : list = [1, -1, -4, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-1, -4, -4, -5, 1]))",
    "io_inp": [
      -1,
      -4,
      -4,
      -5,
      1
    ],
    "io_out": [
      1,
      -1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-10, -10, -12]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(add_n([1, -1, 1],-4),3),-4)))",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -10,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(add_n(input,-4),3),-4)))"
  },
  {
    "input": "input : list = [3, 4, 2, -1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = drop([3, 4, 2, -1, 3],3)",
    "io_inp": [
      3,
      4,
      2,
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [-9, -9, -18]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(sort_des([2, 1, 1])),-3),19),3)",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      -9,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(sort_des(input)),-3),19),3)"
  },
  {
    "input": "input : list = [1, 0, 2, -2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(take([1, 0, 2, -2],1)),27)),-3)",
    "io_inp": [
      1,
      0,
      2,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(take(input,1)),27)),-3)"
  },
  {
    "input": "input : list = [-4, 1, 2]\noutput : list = [14, -1, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(sort_des([-4, 1, 2]))),-3),-2)",
    "io_inp": [
      -4,
      1,
      2
    ],
    "io_out": [
      14,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(sort_des(input))),-3),-2)"
  },
  {
    "input": "input : list = [0, 5, 3, -4, 5, 5]\noutput : list = [16, 16, 16, 8, -4, -20]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(reverse([0, 5, 3, -4, 5, 5]))),-1),4)",
    "io_inp": [
      0,
      5,
      3,
      -4,
      5,
      5
    ],
    "io_out": [
      16,
      16,
      16,
      8,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(reverse(input))),-1),4)"
  },
  {
    "input": "input : list = [3, -4, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop([3, -4, 1, -1],2)",
    "io_inp": [
      3,
      -4,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2, -3, 2, 1]\noutput : list = [9, 9, 8, 4, 3]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(sort_des([-4, 2, -3, 2, 1]),-4))),-3)",
    "io_inp": [
      -4,
      2,
      -3,
      2,
      1
    ],
    "io_out": [
      9,
      9,
      8,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(sort_des(input),-4))),-3)"
  },
  {
    "input": "input : list = [4, 4, 2, -4]\noutput : list = [10, -14, -22, -22]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n([4, 4, 2, -4],3),-4),3)),-3)",
    "io_inp": [
      4,
      4,
      2,
      -4
    ],
    "io_out": [
      10,
      -14,
      -22,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n(input,3),-4),3)),-3)"
  },
  {
    "input": "input : list = [4, 3, 3]\noutput : list = [-8, -8]",
    "output": "generated_output : list = take(take(mul_n(sub_n(drop([4, 3, 3],1),-5),-1),19),19)",
    "io_inp": [
      4,
      3,
      3
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(drop(input,1),-5),-1),19),19)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [8, 2, -8]",
    "output": "generated_output : list = take(sort_des(take(mul_n(sort_asc([4, -4, -1]),-2),6)),28)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      8,
      2,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(sort_asc(input),-2),6)),28)"
  },
  {
    "input": "input : list = [3, 3, -4, 2]\noutput : list = [-4, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([3, 3, -4, 2])",
    "io_inp": [
      3,
      3,
      -4,
      2
    ],
    "io_out": [
      -4,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, 4, 4]\noutput : list = [6, 7, 7, 7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(add_n([4, 3, 4, 4],4)),-2),3))",
    "io_inp": [
      4,
      3,
      4,
      4
    ],
    "io_out": [
      6,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(add_n(input,4)),-2),3))"
  },
  {
    "input": "input : list = [-1, 3, -4, -4, 2, -1]\noutput : list = [-4, -4, -1, 3]",
    "output": "generated_output : list = take(sort_asc(take([-1, 3, -4, -4, 2, -1],4)),5)",
    "io_inp": [
      -1,
      3,
      -4,
      -4,
      2,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,4)),5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_des([3, -1]),-2))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [-3, 0, -2, -5]\noutput : list = [0, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-3, 0, -2, -5])))",
    "io_inp": [
      -3,
      0,
      -2,
      -5
    ],
    "io_out": [
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, -2],1)",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -3, 4, -2]\noutput : list = [-3, -8, -1, -7]",
    "output": "generated_output : list = add_n([2, -3, 4, -2],-5)",
    "io_inp": [
      2,
      -3,
      4,
      -2
    ],
    "io_out": [
      -3,
      -8,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = sub_n(reverse([-4, 1, 3]),1)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-3, 0, 5, 4, 0, 4]\noutput : list = [-2, 1, 1, 5, 5, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n([-3, 0, 5, 4, 0, 4],-3),1)),1)",
    "io_inp": [
      -3,
      0,
      5,
      4,
      0,
      4
    ],
    "io_out": [
      -2,
      1,
      1,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(input,-3),1)),1)"
  },
  {
    "input": "input : list = [2, 1, 0, 5, -3, 4]\noutput : list = [10, 9, 7, 6, 5, 2]",
    "output": "generated_output : list = sort_des(add_n([2, 1, 0, 5, -3, 4],5))",
    "io_inp": [
      2,
      1,
      0,
      5,
      -3,
      4
    ],
    "io_out": [
      10,
      9,
      7,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [-1, -1, 1]\noutput : list = [4, -4, -4]",
    "output": "generated_output : list = reverse(mul_n([-1, -1, 1],4))",
    "io_inp": [
      -1,
      -1,
      1
    ],
    "io_out": [
      4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [5, 4, 1, -4]\noutput : list = [-18, -8, -2, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([5, 4, 1, -4],-5),2))",
    "io_inp": [
      5,
      4,
      1,
      -4
    ],
    "io_out": [
      -18,
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,-5),2))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [9, 0]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(reverse([-4, 5]))),-3),-1)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(reverse(input))),-3),-1)"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(drop(sort_des([-3, 0, 0]),2))))",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(drop(sort_des(input),2))))"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [0, 0, -10]",
    "output": "generated_output : list = sub_n([5, 5, -5],5)",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      0,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [4, 2]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse([-1, -3]))),4),1)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse(input))),4),1)"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [-1, -2, -8]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(add_n([4, 5, -2],-1),-5),4)))",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(add_n(input,-1),-5),4)))"
  },
  {
    "input": "input : list = [4, -3, 4, 3, -1, 2]\noutput : list = [24, 24, 19, 14, -1, -11]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([4, -3, 4, 3, -1, 2],5)),-4)",
    "io_inp": [
      4,
      -3,
      4,
      3,
      -1,
      2
    ],
    "io_out": [
      24,
      24,
      19,
      14,
      -1,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,5)),-4)"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [30, -10, -10]",
    "output": "generated_output : list = mul_n(reverse(add_n([-4, -4, 4],2)),5)",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      30,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,2)),5)"
  },
  {
    "input": "input : list = [2, 2, 1, -3, -5]\noutput : list = [15, 5, -15, -20, -20]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n([2, 2, 1, -3, -5],2),-5)))",
    "io_inp": [
      2,
      2,
      1,
      -3,
      -5
    ],
    "io_out": [
      15,
      5,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(input,2),-5)))"
  },
  {
    "input": "input : list = [1, -5, -5]\noutput : list = [30]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(take([1, -5, -5],1),1)),4),5)",
    "io_inp": [
      1,
      -5,
      -5
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(take(input,1),1)),4),5)"
  },
  {
    "input": "input : list = [5, 0, 1, -1, 5]\noutput : list = [7, 1]",
    "output": "generated_output : list = reverse(take(add_n(drop([5, 0, 1, -1, 5],3),2),28))",
    "io_inp": [
      5,
      0,
      1,
      -1,
      5
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(drop(input,3),2),28))"
  },
  {
    "input": "input : list = [-1, -5, 5, -4, -4]\noutput : list = [-5, -4, -4, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([-1, -5, 5, -4, -4])))",
    "io_inp": [
      -1,
      -5,
      5,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [1, -4, 0, 1, 4, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(take([1, -4, 0, 1, 4, -3],1)))))",
    "io_inp": [
      1,
      -4,
      0,
      1,
      4,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(add_n([2, 2],-3)))),2)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(add_n(input,-3)))),2)"
  },
  {
    "input": "input : list = [1, -5, 0, -2, 5]\noutput : list = [-45, -18, 0, 9, 45]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(mul_n([1, -5, 0, -2, 5],-3),-3))))",
    "io_inp": [
      1,
      -5,
      0,
      -2,
      5
    ],
    "io_out": [
      -45,
      -18,
      0,
      9,
      45
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(mul_n(input,-3),-3))))"
  },
  {
    "input": "input : list = [-1, -3, 5, 1, 3]\noutput : list = [4, 2, 10, 6, 8]",
    "output": "generated_output : list = add_n(sub_n([-1, -3, 5, 1, 3],-1),4)",
    "io_inp": [
      -1,
      -3,
      5,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      10,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),4)"
  },
  {
    "input": "input : list = [5, -1, 3, -1, 2, -2]\noutput : list = [5, -1, 3]",
    "output": "generated_output : list = take([5, -1, 3, -1, 2, -2],3)",
    "io_inp": [
      5,
      -1,
      3,
      -1,
      2,
      -2
    ],
    "io_out": [
      5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, -4, 1, -2]\noutput : list = [-5, -6, -1, -4]",
    "output": "generated_output : list = sub_n([-3, -4, 1, -2],2)",
    "io_inp": [
      -3,
      -4,
      1,
      -2
    ],
    "io_out": [
      -5,
      -6,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, -5, 1, 2, 1]\noutput : list = [3, -1, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(take([5, -5, 1, 2, 1],3),-3)),-5))",
    "io_inp": [
      5,
      -5,
      1,
      2,
      1
    ],
    "io_out": [
      3,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(take(input,3),-3)),-5))"
  },
  {
    "input": "input : list = [-4, -3, 0, 1, -4]\noutput : list = [1, 0, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-4, -3, 0, 1, -4])",
    "io_inp": [
      -4,
      -3,
      0,
      1,
      -4
    ],
    "io_out": [
      1,
      0,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4, -2, 2, 2, -2]\noutput : list = [28, 32, 24, 8, 8, 24]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-3, -4, -2, 2, 2, -2],-4),2),-2)",
    "io_inp": [
      -3,
      -4,
      -2,
      2,
      2,
      -2
    ],
    "io_out": [
      28,
      32,
      24,
      8,
      8,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-4),2),-2)"
  },
  {
    "input": "input : list = [0, 5, 5, -2, 4, 0]\noutput : list = [-2, 0, 0, 4, 5, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(sort_asc([0, 5, 5, -2, 4, 0])))),50)",
    "io_inp": [
      0,
      5,
      5,
      -2,
      4,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(sort_asc(input)))),50)"
  },
  {
    "input": "input : list = [1, 2, -4, 0, 3]\noutput : list = [32, 0, -8, -16, -24]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(sort_des([1, 2, -4, 0, 3]),-4),2)))",
    "io_inp": [
      1,
      2,
      -4,
      0,
      3
    ],
    "io_out": [
      32,
      0,
      -8,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(sort_des(input),-4),2)))"
  },
  {
    "input": "input : list = [5, -3, 2, -2, -3]\noutput : list = [9, 1, 6, 2, 1]",
    "output": "generated_output : list = add_n([5, -3, 2, -2, -3],4)",
    "io_inp": [
      5,
      -3,
      2,
      -2,
      -3
    ],
    "io_out": [
      9,
      1,
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 4, -2, -2]\noutput : list = [10, 14, 8, 8]",
    "output": "generated_output : list = reverse(sub_n(add_n(reverse(add_n([0, 4, -2, -2],3)),4),-3))",
    "io_inp": [
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      10,
      14,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(reverse(add_n(input,3)),4),-3))"
  },
  {
    "input": "input : list = [0, -1, 2, 2, 0, 1]\noutput : list = [8, 7, 10, 10, 8, 9]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n(add_n([0, -1, 2, 2, 0, 1],-4),3),1),-5),5)",
    "io_inp": [
      0,
      -1,
      2,
      2,
      0,
      1
    ],
    "io_out": [
      8,
      7,
      10,
      10,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(add_n(input,-4),3),1),-5),5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [6, -14]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(sub_n([3, -1],-2)),-3),-5),-4)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      6,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(sub_n(input,-2)),-3),-5),-4)"
  },
  {
    "input": "input : list = [-1, -1, -3, 1, 3, -3]\noutput : list = [6, 4, 4, 2]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(take([-1, -1, -3, 1, 3, -3],4)),-3),-1))",
    "io_inp": [
      -1,
      -1,
      -3,
      1,
      3,
      -3
    ],
    "io_out": [
      6,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(take(input,4)),-3),-1))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(add_n([5, -1],-3),1),13)))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(add_n(input,-3),1),13)))"
  },
  {
    "input": "input : list = [1, -2, -2, -3, 4]\noutput : list = [5, 2, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse([1, -2, -2, -3, 4]),1),-1)))",
    "io_inp": [
      1,
      -2,
      -2,
      -3,
      4
    ],
    "io_out": [
      5,
      2,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse(input),1),-1)))"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [13]",
    "output": "generated_output : list = add_n(add_n(mul_n(drop(sort_asc([-2, -5, -5]),2),-5),5),-2)",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(drop(sort_asc(input),2),-5),5),-2)"
  },
  {
    "input": "input : list = [3, 3, 2, -4, -5, 1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 3, 2, -4, -5, 1],1)",
    "io_inp": [
      3,
      3,
      2,
      -4,
      -5,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -3, -2]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = sort_asc([0, -3, -2])",
    "io_inp": [
      0,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, 0, 0]\noutput : list = [-3, -3, 0, 0]",
    "output": "generated_output : list = sort_asc([-3, -3, 0, 0])",
    "io_inp": [
      -3,
      -3,
      0,
      0
    ],
    "io_out": [
      -3,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1, -2]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(take([-4, -1, -2],1))),-4))",
    "io_inp": [
      -4,
      -1,
      -2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(take(input,1))),-4))"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = reverse(sort_des([0, -2, -3]))",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(reverse([4, 0]),-1),12),-1),2)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(reverse(input),-1),12),-1),2)"
  },
  {
    "input": "input : list = [2, 2, 5, 3, 3, 4]\noutput : list = [3, 2, 2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(drop([2, 2, 5, 3, 3, 4],3),-2),3),-4))",
    "io_inp": [
      2,
      2,
      5,
      3,
      3,
      4
    ],
    "io_out": [
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(drop(input,3),-2),3),-4))"
  },
  {
    "input": "input : list = [0, -5, 5, -4, 1]\noutput : list = [8, 3, 13, 4, 9]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(reverse([0, -5, 5, -4, 1]),3),-3),-2))",
    "io_inp": [
      0,
      -5,
      5,
      -4,
      1
    ],
    "io_out": [
      8,
      3,
      13,
      4,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(reverse(input),3),-3),-2))"
  },
  {
    "input": "input : list = [3, -1, 1, -1]\noutput : list = [12, 12, 20, 28]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(reverse([3, -1, 1, -1]))),4),4)",
    "io_inp": [
      3,
      -1,
      1,
      -1
    ],
    "io_out": [
      12,
      12,
      20,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(reverse(input))),4),4)"
  },
  {
    "input": "input : list = [0, -2, -3, 0]\noutput : list = [16, 8, -8, -8]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n([0, -2, -3, 0],-1),4)),-2),9)",
    "io_inp": [
      0,
      -2,
      -3,
      0
    ],
    "io_out": [
      16,
      8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n(input,-1),4)),-2),9)"
  },
  {
    "input": "input : list = [-1, -2, 2, 2, -5, -5]\noutput : list = [-2, -2, 1, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_des([-1, -2, 2, 2, -5, -5]))),3))",
    "io_inp": [
      -1,
      -2,
      2,
      2,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2,
      1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_des(input))),3))"
  },
  {
    "input": "input : list = [-3, -1, 2, -5]\noutput : list = [-5, -3, -1, 2]",
    "output": "generated_output : list = sort_asc([-3, -1, 2, -5])",
    "io_inp": [
      -3,
      -1,
      2,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(reverse([5, -5])))))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [3, 3, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_asc([3, -3, 3])))))",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -3, -3, -2, 0]\noutput : list = [3, 0, -2, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des([3, -3, -3, -2, 0])))",
    "io_inp": [
      3,
      -3,
      -3,
      -2,
      0
    ],
    "io_out": [
      3,
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, 4, -2, 4, -5]\noutput : list = [-15, -6, -6, 12, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des([-2, 4, -2, 4, -5]))),3)",
    "io_inp": [
      -2,
      4,
      -2,
      4,
      -5
    ],
    "io_out": [
      -15,
      -6,
      -6,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(input))),3)"
  },
  {
    "input": "input : list = [-3, 3, 2, -3]\noutput : list = [-24, 12, 6, -24]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(add_n([-3, 3, 2, -3],-1),2)),3))",
    "io_inp": [
      -3,
      3,
      2,
      -3
    ],
    "io_out": [
      -24,
      12,
      6,
      -24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(add_n(input,-1),2)),3))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-6, 2]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(sort_des([-1, -5])),4),-2))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(sort_des(input)),4),-2))"
  },
  {
    "input": "input : list = [2, 0, 2, -4, -4, -1]\noutput : list = [6, 6, 4, 3, 0, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(add_n([2, 0, 2, -4, -4, -1],5),1)),1),25)",
    "io_inp": [
      2,
      0,
      2,
      -4,
      -4,
      -1
    ],
    "io_out": [
      6,
      6,
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(add_n(input,5),1)),1),25)"
  },
  {
    "input": "input : list = [-2, -5, 5, -5, 0, 4]\noutput : list = [125, 100, 0, -50, -125, -125]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(mul_n([-2, -5, 5, -5, 0, 4],-5)))),-5)",
    "io_inp": [
      -2,
      -5,
      5,
      -5,
      0,
      4
    ],
    "io_out": [
      125,
      100,
      0,
      -50,
      -125,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(mul_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [-1, 4, -4, 4]\noutput : list = [9, 9, 4, 1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc([-1, 4, -4, 4]),10))),-5)",
    "io_inp": [
      -1,
      4,
      -4,
      4
    ],
    "io_out": [
      9,
      9,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc(input),10))),-5)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-6, -7]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-1, -2],3)),2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,3)),2)"
  },
  {
    "input": "input : list = [-1, -4, 0, 1, -1, 1]\noutput : list = [-2, 1, 1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(take(sub_n([-1, -4, 0, 1, -1, 1],-2),14))",
    "io_inp": [
      -1,
      -4,
      0,
      1,
      -1,
      1
    ],
    "io_out": [
      -2,
      1,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,-2),14))"
  },
  {
    "input": "input : list = [1, 0, 1, 3, 2]\noutput : list = [5, 6, 7]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(drop(add_n([1, 0, 1, 3, 2],4),2))))",
    "io_inp": [
      1,
      0,
      1,
      3,
      2
    ],
    "io_out": [
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(drop(add_n(input,4),2))))"
  },
  {
    "input": "input : list = [-5, -3, 4, -5, 5]\noutput : list = [-1, -1, 1, 8, 9]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(sort_asc([-5, -3, 4, -5, 5])))),-4)",
    "io_inp": [
      -5,
      -3,
      4,
      -5,
      5
    ],
    "io_out": [
      -1,
      -1,
      1,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [-4, -3, 1, -1, -2]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(take([-4, -3, 1, -1, -2],1),3))),-5)",
    "io_inp": [
      -4,
      -3,
      1,
      -1,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(take(input,1),3))),-5)"
  },
  {
    "input": "input : list = [-3, 4, 1, 2, -5]\noutput : list = [-5, -3, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([-3, 4, 1, 2, -5])",
    "io_inp": [
      -3,
      4,
      1,
      2,
      -5
    ],
    "io_out": [
      -5,
      -3,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(sub_n([-1, -3, -4],-5)))),-5)",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(sub_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [5, 5, 3, -5]\noutput : list = [8, -24, -32, -32]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(reverse([5, 5, 3, -5]),-4),2),-3),-4)",
    "io_inp": [
      5,
      5,
      3,
      -5
    ],
    "io_out": [
      8,
      -24,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(reverse(input),-4),2),-3),-4)"
  },
  {
    "input": "input : list = [2, -4, -5, -1]\noutput : list = [49, -41, -56, 4]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(mul_n([2, -4, -5, -1],-3),4),-5),1),18)",
    "io_inp": [
      2,
      -4,
      -5,
      -1
    ],
    "io_out": [
      49,
      -41,
      -56,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(mul_n(input,-3),4),-5),1),18)"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [-2, 6, 1]",
    "output": "generated_output : list = add_n([-3, 5, 0],1)",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      -2,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 4, 3, 4, 1, 4]\noutput : list = [4, 4, 4, 4, 3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([4, 4, 3, 4, 1, 4])))",
    "io_inp": [
      4,
      4,
      3,
      4,
      1,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [3, -2, -1, -5, -3, -1]\noutput : list = [3, -2, -1, -5, -3, -1]",
    "output": "generated_output : list = add_n(sub_n([3, -2, -1, -5, -3, -1],4),4)",
    "io_inp": [
      3,
      -2,
      -1,
      -5,
      -3,
      -1
    ],
    "io_out": [
      3,
      -2,
      -1,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),4)"
  },
  {
    "input": "input : list = [2, 5, -5, 2]\noutput : list = [1, -2, -2, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des([2, 5, -5, 2])),4))",
    "io_inp": [
      2,
      5,
      -5,
      2
    ],
    "io_out": [
      1,
      -2,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(input)),4))"
  },
  {
    "input": "input : list = [3, -5, -2, -5]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n(take([3, -5, -2, -5],2),1)",
    "io_inp": [
      3,
      -5,
      -2,
      -5
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),1)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [0, -12]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(mul_n([1, -3],-1)),1),-3))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(mul_n(input,-1)),1),-3))"
  },
  {
    "input": "input : list = [-4, 3, -4, 5, -5, 3]\noutput : list = [-1, 7, -3, 6, -1, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(add_n([-4, 3, -4, 5, -5, 3],5),2),-5),-1))",
    "io_inp": [
      -4,
      3,
      -4,
      5,
      -5,
      3
    ],
    "io_out": [
      -1,
      7,
      -3,
      6,
      -1,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(add_n(input,5),2),-5),-1))"
  },
  {
    "input": "input : list = [-5, 4, -3, 4]\noutput : list = [36, -45]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(take([-5, 4, -3, 4],2),-3),-3)))",
    "io_inp": [
      -5,
      4,
      -3,
      4
    ],
    "io_out": [
      36,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(take(input,2),-3),-3)))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(sort_asc([-4, 0])),20),1))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(sort_asc(input)),20),1))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [10, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n([5, -3],-2)))),-3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sub_n(input,-2)))),-3)"
  },
  {
    "input": "input : list = [-2, 0, -1, 0]\noutput : list = [-4, -4, -5, -6]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(sort_asc([-2, 0, -1, 0])),-2),2),44)",
    "io_inp": [
      -2,
      0,
      -1,
      0
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(sort_asc(input)),-2),2),44)"
  },
  {
    "input": "input : list = [-3, 3, -5, 0]\noutput : list = [25, 13, 1, -7]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(add_n([-3, 3, -5, 0],4),-1),-4)),3)",
    "io_inp": [
      -3,
      3,
      -5,
      0
    ],
    "io_out": [
      25,
      13,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(add_n(input,4),-1),-4)),3)"
  },
  {
    "input": "input : list = [4, 2, -3, 1]\noutput : list = [-3, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([4, 2, -3, 1])",
    "io_inp": [
      4,
      2,
      -3,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, -4, -5, 4]\noutput : list = [5, 4, 3, -4, -5]",
    "output": "generated_output : list = sort_des([3, 5, -4, -5, 4])",
    "io_inp": [
      3,
      5,
      -4,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -3, -2, 5]\noutput : list = [8, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(drop([-2, -3, -2, 5],1)),-1)),-4)",
    "io_inp": [
      -2,
      -3,
      -2,
      5
    ],
    "io_out": [
      8,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(drop(input,1)),-1)),-4)"
  },
  {
    "input": "input : list = [-5, 4, 2, -2]\noutput : list = [-4, 5, 3, -1]",
    "output": "generated_output : list = sub_n([-5, 4, 2, -2],-1)",
    "io_inp": [
      -5,
      4,
      2,
      -2
    ],
    "io_out": [
      -4,
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -5, -3, -1, -3, -1]\noutput : list = [0, -2, -2, -4, -4]",
    "output": "generated_output : list = sort_des(take(add_n(take(sub_n([-5, -5, -3, -1, -3, -1],3),24),4),5))",
    "io_inp": [
      -5,
      -5,
      -3,
      -1,
      -3,
      -1
    ],
    "io_out": [
      0,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(sub_n(input,3),24),4),5))"
  },
  {
    "input": "input : list = [-4, -3, -1]\noutput : list = [-100, -80, -40]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n([-4, -3, -1],-1)),-4),-5))",
    "io_inp": [
      -4,
      -3,
      -1
    ],
    "io_out": [
      -100,
      -80,
      -40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n(input,-1)),-4),-5))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([0, -4]),-1))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sub_n(sort_des([-1, -4]),-5)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [1, -5, 4, -5]\noutput : list = [-5, -5, 1, 4]",
    "output": "generated_output : list = sort_asc([1, -5, 4, -5])",
    "io_inp": [
      1,
      -5,
      4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 4, 1, 5]\noutput : list = [2, 1, -2, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_asc([-3, 4, 1, 5])))),3)",
    "io_inp": [
      -3,
      4,
      1,
      5
    ],
    "io_out": [
      2,
      1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [0, 2, -3, 3, -4]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(take([0, 2, -3, 3, -4],1)),-3),3),3)",
    "io_inp": [
      0,
      2,
      -3,
      3,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(take(input,1)),-3),3),3)"
  },
  {
    "input": "input : list = [2, -5, 4, 3]\noutput : list = [6, -1, 8, 7]",
    "output": "generated_output : list = mul_n(add_n([2, -5, 4, 3],4),1)",
    "io_inp": [
      2,
      -5,
      4,
      3
    ],
    "io_out": [
      6,
      -1,
      8,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),1)"
  },
  {
    "input": "input : list = [-5, -5, 1, 1, 4]\noutput : list = [-4, 2, 2, 14, 14]",
    "output": "generated_output : list = take(reverse(add_n(take(mul_n([-5, -5, 1, 1, 4],-2),6),4)),46)",
    "io_inp": [
      -5,
      -5,
      1,
      1,
      4
    ],
    "io_out": [
      -4,
      2,
      2,
      14,
      14
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(mul_n(input,-2),6),4)),46)"
  },
  {
    "input": "input : list = [-3, 2, 5, 4, -3]\noutput : list = [-2, -2, 3, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc([-3, 2, 5, 4, -3]),1)",
    "io_inp": [
      -3,
      2,
      5,
      4,
      -3
    ],
    "io_out": [
      -2,
      -2,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, 1]))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -3, 2, 5, 2]\noutput : list = [1, 7, 7, 13, 17]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(mul_n([-1, -3, 2, 5, 2],-1),-3)),2),-5)",
    "io_inp": [
      -1,
      -3,
      2,
      5,
      2
    ],
    "io_out": [
      1,
      7,
      7,
      13,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(mul_n(input,-1),-3)),2),-5)"
  },
  {
    "input": "input : list = [-3, -2, 5, -3, 1, -1]\noutput : list = [-11, -11, -7, -3, 5, 21]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des([-3, -2, 5, -3, 1, -1])),4),1)",
    "io_inp": [
      -3,
      -2,
      5,
      -3,
      1,
      -1
    ],
    "io_out": [
      -11,
      -11,
      -7,
      -3,
      5,
      21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(input)),4),1)"
  },
  {
    "input": "input : list = [-1, -1, -5, 0, -4, 0]\noutput : list = [0, 200]",
    "output": "generated_output : list = reverse(mul_n(mul_n(drop(mul_n([-1, -1, -5, 0, -4, 0],5),4),-5),2))",
    "io_inp": [
      -1,
      -1,
      -5,
      0,
      -4,
      0
    ],
    "io_out": [
      0,
      200
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(drop(mul_n(input,5),4),-5),2))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(add_n([-1, -1],-2)))),1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(add_n(input,-2)))),1)"
  },
  {
    "input": "input : list = [-3, 1, 4, 4, 0]\noutput : list = [-18, -18, -12, -10, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n([-3, 1, 4, 4, 0],-5))),-2)",
    "io_inp": [
      -3,
      1,
      4,
      4,
      0
    ],
    "io_out": [
      -18,
      -18,
      -12,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(input,-5))),-2)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(take(sort_asc([-3, -1]),2))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),2))"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [2, 5, -1]",
    "output": "generated_output : list = reverse([-1, 5, 2])",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4, 1, -2, 5, -4]\noutput : list = [350, 475, 100, -275, 600, -525]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(mul_n([3, 4, 1, -2, 5, -4],-5),-1),-5),17),5)",
    "io_inp": [
      3,
      4,
      1,
      -2,
      5,
      -4
    ],
    "io_out": [
      350,
      475,
      100,
      -275,
      600,
      -525
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(mul_n(input,-5),-1),-5),17),5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [15, 15]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(sort_des([-4, -4]),-1)),-5),34)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(sort_des(input),-1)),-5),34)"
  },
  {
    "input": "input : list = [-5, 4, -1, 5, -2]\noutput : list = [-4, 5, 0, 6, -1]",
    "output": "generated_output : list = take(sub_n([-5, 4, -1, 5, -2],-1),11)",
    "io_inp": [
      -5,
      4,
      -1,
      5,
      -2
    ],
    "io_out": [
      -4,
      5,
      0,
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),11)"
  },
  {
    "input": "input : list = [4, 0, 0, -4, 5, -3]\noutput : list = [-3, -8, -11, -12]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(drop([4, 0, 0, -4, 5, -3],2))),-4),4)",
    "io_inp": [
      4,
      0,
      0,
      -4,
      5,
      -3
    ],
    "io_out": [
      -3,
      -8,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(drop(input,2))),-4),4)"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [36, 24, -72]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_asc([3, -5, 4]),-1)),3),4)",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      36,
      24,
      -72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_asc(input),-1)),3),4)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-11, -8, -1]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n([5, -5, 2],1)),-5),-1)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -11,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(input,1)),-5),-1)"
  },
  {
    "input": "input : list = [-4, -3, 4, 2]\noutput : list = [-12, -9, 6, 12]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(reverse([-4, -3, 4, 2]),3))))",
    "io_inp": [
      -4,
      -3,
      4,
      2
    ],
    "io_out": [
      -12,
      -9,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [-4, -2, 2, 3]\noutput : list = [-3, -1, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(add_n([-4, -2, 2, 3],-1)))),2)",
    "io_inp": [
      -4,
      -2,
      2,
      3
    ],
    "io_out": [
      -3,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(add_n(input,-1)))),2)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(sub_n([-4, -4],-3),1),2)))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(sub_n(input,-3),1),2)))"
  },
  {
    "input": "input : list = [5, 0, 0, 2]\noutput : list = [0, 0, -4, -10]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse([5, 0, 0, 2]),7),-2))",
    "io_inp": [
      5,
      0,
      0,
      2
    ],
    "io_out": [
      0,
      0,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(input),7),-2))"
  },
  {
    "input": "input : list = [-5, 2, 5, 2, -4, 0]\noutput : list = [-10]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(take([-5, 2, 5, 2, -4, 0],1),-5))))",
    "io_inp": [
      -5,
      2,
      5,
      2,
      -4,
      0
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(take(input,1),-5))))"
  },
  {
    "input": "input : list = [2, -4, -5, 0, -1]\noutput : list = [-10, 20, 25, 0, 5]",
    "output": "generated_output : list = mul_n([2, -4, -5, 0, -1],-5)",
    "io_inp": [
      2,
      -4,
      -5,
      0,
      -1
    ],
    "io_out": [
      -10,
      20,
      25,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, -2, -3, 5, -3, 0]\noutput : list = [-5, -8, 0, -8, -7, -4]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sub_n([1, -2, -3, 5, -3, 0],3),-5),1),-2))",
    "io_inp": [
      1,
      -2,
      -3,
      5,
      -3,
      0
    ],
    "io_out": [
      -5,
      -8,
      0,
      -8,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sub_n(input,3),-5),1),-2))"
  },
  {
    "input": "input : list = [-2, 2, -3, -2, -2, -5]\noutput : list = [16, 32, 32, 32, 36, 44]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n([-2, 2, -3, -2, -2, -5],2),4)),-4)",
    "io_inp": [
      -2,
      2,
      -3,
      -2,
      -2,
      -5
    ],
    "io_out": [
      16,
      32,
      32,
      32,
      36,
      44
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(input,2),4)),-4)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [4]",
    "output": "generated_output : list = add_n(add_n(reverse(take(add_n([1, -3],-1),1)),2),2)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(add_n(input,-1),1)),2),2)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [2, 8]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse([-3, 3]),-5)))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(input),-5)))"
  },
  {
    "input": "input : list = [-2, -5, -5, -5, -4, 0]\noutput : list = [6, 102, 126, 126, 126, 54]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(reverse([-2, -5, -5, -5, -4, 0]),2),4),-2),-3)",
    "io_inp": [
      -2,
      -5,
      -5,
      -5,
      -4,
      0
    ],
    "io_out": [
      6,
      102,
      126,
      126,
      126,
      54
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(reverse(input),2),4),-2),-3)"
  },
  {
    "input": "input : list = [1, 4, 2, 1]\noutput : list = [-8, -5, -7, -8]",
    "output": "generated_output : list = add_n(add_n([1, 4, 2, 1],-4),-5)",
    "io_inp": [
      1,
      4,
      2,
      1
    ],
    "io_out": [
      -8,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),-5)"
  },
  {
    "input": "input : list = [4, -3, 2, 0]\noutput : list = [2, 5, 7, 9]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(reverse([4, -3, 2, 0]))),5),22)",
    "io_inp": [
      4,
      -3,
      2,
      0
    ],
    "io_out": [
      2,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(reverse(input))),5),22)"
  },
  {
    "input": "input : list = [2, 5, 0, 3]\noutput : list = [-10, -15, -25]",
    "output": "generated_output : list = sort_des(sort_des(drop(sort_des(mul_n([2, 5, 0, 3],-5)),1)))",
    "io_inp": [
      2,
      5,
      0,
      3
    ],
    "io_out": [
      -10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(sort_des(mul_n(input,-5)),1)))"
  },
  {
    "input": "input : list = [-3, -1, -5, 4, -4, 2]\noutput : list = [18, 12, -6]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(drop([-3, -1, -5, 4, -4, 2],3),-2)),3))",
    "io_inp": [
      -3,
      -1,
      -5,
      4,
      -4,
      2
    ],
    "io_out": [
      18,
      12,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(drop(input,3),-2)),3))"
  },
  {
    "input": "input : list = [-1, -4, 3, -1, -3]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = drop([-1, -4, 3, -1, -3],2)",
    "io_inp": [
      -1,
      -4,
      3,
      -1,
      -3
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -3, 3, -3]\noutput : list = [3, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(drop([-1, -3, 3, -3],1)))",
    "io_inp": [
      -1,
      -3,
      3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [0, 5, -5, 1]\noutput : list = [1, 6, -4, 2]",
    "output": "generated_output : list = add_n(sub_n([0, 5, -5, 1],-5),-4)",
    "io_inp": [
      0,
      5,
      -5,
      1
    ],
    "io_out": [
      1,
      6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),-4)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [9, 6]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sort_asc([5, 2])),15),1),-4)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sort_asc(input)),15),1),-4)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-3, 7]",
    "output": "generated_output : list = take(take(sort_asc(add_n(sort_asc([-5, 5]),2)),26),32)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -3,
      7
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(sort_asc(input),2)),26),32)"
  },
  {
    "input": "input : list = [0, 0, 0]\noutput : list = [1, 1, 1]",
    "output": "generated_output : list = sub_n(mul_n([0, 0, 0],5),-1)",
    "io_inp": [
      0,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-1)"
  },
  {
    "input": "input : list = [-3, -3, 4, 0, -5, 5]\noutput : list = [-32, -40, -72, -96, -96, -112]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(sub_n([-3, -3, 4, 0, -5, 5],4),-5)),2),4)",
    "io_inp": [
      -3,
      -3,
      4,
      0,
      -5,
      5
    ],
    "io_out": [
      -32,
      -40,
      -72,
      -96,
      -96,
      -112
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(sub_n(input,4),-5)),2),4)"
  },
  {
    "input": "input : list = [-4, -2, -4, -4]\noutput : list = [-10, -20, -20, -20]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(sort_asc([-4, -2, -4, -4])))),5)",
    "io_inp": [
      -4,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -10,
      -20,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [-3, 3, -2, 1, 0]\noutput : list = [-2, -4, -5, -7, -8]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_asc([-3, 3, -2, 1, 0]),1),-2)),3)",
    "io_inp": [
      -3,
      3,
      -2,
      1,
      0
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_asc(input),1),-2)),3)"
  },
  {
    "input": "input : list = [0, 4, 3, 1]\noutput : list = [4, 3, 1, 0]",
    "output": "generated_output : list = sort_des([0, 4, 3, 1])",
    "io_inp": [
      0,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, 2, -2, -1, 2]\noutput : list = [7, 5, -7, 1, -1, -7]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(mul_n([-5, -4, 2, -2, -1, 2],-2),-2),35),5),1)",
    "io_inp": [
      -5,
      -4,
      2,
      -2,
      -1,
      2
    ],
    "io_out": [
      7,
      5,
      -7,
      1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(mul_n(input,-2),-2),35),5),1)"
  },
  {
    "input": "input : list = [3, -2, 0, -2]\noutput : list = [-180, -180, -60, 120]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_asc([3, -2, 0, -2]),3),3),5),4)",
    "io_inp": [
      3,
      -2,
      0,
      -2
    ],
    "io_out": [
      -180,
      -180,
      -60,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_asc(input),3),3),5),4)"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [-5, -3, 3]",
    "output": "generated_output : list = reverse([3, -3, -5])",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -1, -5, 5]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(take([1, -1, -5, 5],1),6))),-3)",
    "io_inp": [
      1,
      -1,
      -5,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(take(input,1),6))),-3)"
  },
  {
    "input": "input : list = [-3, 2, -2]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = take(sort_asc(reverse(take(sort_des([-3, 2, -2]),14))),21)",
    "io_inp": [
      -3,
      2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(sort_des(input),14))),21)"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [-6, 12, 8]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(sub_n([4, -5, -3],2),-2),3),-1),1)",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      -6,
      12,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(sub_n(input,2),-2),3),-1),1)"
  },
  {
    "input": "input : list = [-1, 5, 4, 3]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = take(sort_des(reverse([-1, 5, 4, 3])),3)",
    "io_inp": [
      -1,
      5,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),3)"
  },
  {
    "input": "input : list = [5, 3, 5]\noutput : list = [-9, -9, -7]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(add_n([5, 3, 5],4)),-1)))",
    "io_inp": [
      5,
      3,
      5
    ],
    "io_out": [
      -9,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(add_n(input,4)),-1)))"
  },
  {
    "input": "input : list = [5, 5, -1, -3, 4, -1]\noutput : list = [5, 5]",
    "output": "generated_output : list = take([5, 5, -1, -3, 4, -1],2)",
    "io_inp": [
      5,
      5,
      -1,
      -3,
      4,
      -1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -5, 5, -2]\noutput : list = [-2, 5, -5, 5]",
    "output": "generated_output : list = reverse([5, -5, 5, -2])",
    "io_inp": [
      5,
      -5,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, -2, 0, -1]\noutput : list = [-3, -4, -5, -5, -6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(reverse([-3, -2, -2, 0, -1]),-3))))",
    "io_inp": [
      -3,
      -2,
      -2,
      0,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [-1, -5, -1, 5, -2, -3]\noutput : list = [-7, -5, -4, -3, -3, 3]",
    "output": "generated_output : list = sort_asc(sub_n([-1, -5, -1, 5, -2, -3],2))",
    "io_inp": [
      -1,
      -5,
      -1,
      5,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [3, 27]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_des(sub_n([-1, -3],-1)),4),-3),3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      3,
      27
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_des(sub_n(input,-1)),4),-3),3)"
  },
  {
    "input": "input : list = [0, 0, -1, -3]\noutput : list = [-3, -1, 0, 0]",
    "output": "generated_output : list = sort_asc([0, 0, -1, -3])",
    "io_inp": [
      0,
      0,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(take(drop([5, 5, 0],1),13))",
    "io_inp": [
      5,
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),13))"
  },
  {
    "input": "input : list = [3, -1, -2, -3]\noutput : list = [0, 4, 5, 6]",
    "output": "generated_output : list = add_n(mul_n(sort_des([3, -1, -2, -3]),-1),3)",
    "io_inp": [
      3,
      -1,
      -2,
      -3
    ],
    "io_out": [
      0,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),-1),3)"
  },
  {
    "input": "input : list = [5, -3, 2, 0, -5]\noutput : list = [80, 32, 0, -48, -80]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(mul_n([5, -3, 2, 0, -5],-4))),-4))",
    "io_inp": [
      5,
      -3,
      2,
      0,
      -5
    ],
    "io_out": [
      80,
      32,
      0,
      -48,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(mul_n(input,-4))),-4))"
  },
  {
    "input": "input : list = [-4, 1, 5, 5]\noutput : list = [15, -5, -5]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(drop([-4, 1, 5, 5],1),9),-1),-5),-5)",
    "io_inp": [
      -4,
      1,
      5,
      5
    ],
    "io_out": [
      15,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(drop(input,1),9),-1),-5),-5)"
  },
  {
    "input": "input : list = [0, -4, -1, -3]\noutput : list = [4, -8, -32, -44]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(mul_n([0, -4, -1, -3],3),4))),4)",
    "io_inp": [
      0,
      -4,
      -1,
      -3
    ],
    "io_out": [
      4,
      -8,
      -32,
      -44
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(mul_n(input,3),4))),4)"
  },
  {
    "input": "input : list = [1, 0, -5, 1, 5]\noutput : list = [-12, -7, -6, -6, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(reverse([1, 0, -5, 1, 5]))),-2),5)",
    "io_inp": [
      1,
      0,
      -5,
      1,
      5
    ],
    "io_out": [
      -12,
      -7,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(reverse(input))),-2),5)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-9, -3]",
    "output": "generated_output : list = add_n(sub_n([-3, 3],4),-2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [1, -8]",
    "output": "generated_output : list = add_n(add_n(add_n([4, -5],2),-2),-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,2),-2),-3)"
  },
  {
    "input": "input : list = [-3, 5, -2, 4]\noutput : list = [-8, -12]",
    "output": "generated_output : list = take(drop(mul_n(mul_n(sort_des([-3, 5, -2, 4]),1),4),2),32)",
    "io_inp": [
      -3,
      5,
      -2,
      4
    ],
    "io_out": [
      -8,
      -12
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(mul_n(sort_des(input),1),4),2),32)"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [-25, 15, 0]",
    "output": "generated_output : list = mul_n([-5, 3, 0],5)",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      -25,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, 3, -1, 5, 4, 1]\noutput : list = [4, -4, -12, -16, -20, -20]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(mul_n([5, 3, -1, 5, 4, 1],-4),12)),18))",
    "io_inp": [
      5,
      3,
      -1,
      5,
      4,
      1
    ],
    "io_out": [
      4,
      -4,
      -12,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(mul_n(input,-4),12)),18))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(reverse([-3, -2]),15)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),15)"
  },
  {
    "input": "input : list = [-5, 3, 0, 5]\noutput : list = [-81, -36, -9, 9]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(add_n([-5, 3, 0, 5],-4),3),3)),42)",
    "io_inp": [
      -5,
      3,
      0,
      5
    ],
    "io_out": [
      -81,
      -36,
      -9,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(add_n(input,-4),3),3)),42)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse(sort_des([-4, -3]))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [12, 28]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([3, -1],-4),4))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      12,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-4),4))"
  },
  {
    "input": "input : list = [0, -5, -1, -5, 3, -5]\noutput : list = [-5, -5, -5, -1, 0, 3]",
    "output": "generated_output : list = sort_asc([0, -5, -1, -5, 3, -5])",
    "io_inp": [
      0,
      -5,
      -1,
      -5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, -2, -3, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -2, -2, -3, -2],1)",
    "io_inp": [
      -1,
      -2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 0, 3, 1, -2, 3]\noutput : list = [35, 10, -5, 5, 20, -5]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(reverse([-5, 0, 3, 1, -2, 3]),-2),-5),34))",
    "io_inp": [
      -5,
      0,
      3,
      1,
      -2,
      3
    ],
    "io_out": [
      35,
      10,
      -5,
      5,
      20,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(reverse(input),-2),-5),34))"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [-9, -6, -4]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(sub_n([-3, 0, 2],1),-2),3)))",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      -9,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(sub_n(input,1),-2),3)))"
  },
  {
    "input": "input : list = [2, 0, 5, -4, 3]\noutput : list = [18, 6, 0, -3, -9]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sub_n([2, 0, 5, -4, 3],-1),-4),-3),-3))",
    "io_inp": [
      2,
      0,
      5,
      -4,
      3
    ],
    "io_out": [
      18,
      6,
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sub_n(input,-1),-4),-3),-3))"
  },
  {
    "input": "input : list = [2, -4, -4, 5, 3]\noutput : list = [-4, -4, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n([2, -4, -4, 5, 3],-4),4))",
    "io_inp": [
      2,
      -4,
      -4,
      5,
      3
    ],
    "io_out": [
      -4,
      -4,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,-4),4))"
  },
  {
    "input": "input : list = [3, 4, 0, -4, -2]\noutput : list = [4, 0, -4, -2]",
    "output": "generated_output : list = drop([3, 4, 0, -4, -2],1)",
    "io_inp": [
      3,
      4,
      0,
      -4,
      -2
    ],
    "io_out": [
      4,
      0,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -4, -1, -3, 3, 3]\noutput : list = [2, 2, -4, -2, -5, -2]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(add_n([-1, -4, -1, -3, 3, 3],-2),-5),34)),-4)",
    "io_inp": [
      -1,
      -4,
      -1,
      -3,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      -4,
      -2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(add_n(input,-2),-5),34)),-4)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(reverse([-2, -4]))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, -4, 0, -4, 1, 0]\noutput : list = [2, -7, -3, -7]",
    "output": "generated_output : list = sub_n(take([5, -4, 0, -4, 1, 0],4),3)",
    "io_inp": [
      5,
      -4,
      0,
      -4,
      1,
      0
    ],
    "io_out": [
      2,
      -7,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,4),3)"
  },
  {
    "input": "input : list = [5, -5, -4, 3]\noutput : list = [22, 18, -10, -18]",
    "output": "generated_output : list = sort_des(add_n(mul_n([5, -5, -4, 3],-4),2))",
    "io_inp": [
      5,
      -5,
      -4,
      3
    ],
    "io_out": [
      22,
      18,
      -10,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,-4),2))"
  },
  {
    "input": "input : list = [1, -3, 1, -2, 0]\noutput : list = [10, 8, 4, 2, 2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(sort_des([1, -3, 1, -2, 0]),18),-2)),-2)",
    "io_inp": [
      1,
      -3,
      1,
      -2,
      0
    ],
    "io_out": [
      10,
      8,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(sort_des(input),18),-2)),-2)"
  },
  {
    "input": "input : list = [-2, 1, -4, 5]\noutput : list = [-11, 1, 10, 16]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(sort_asc([-2, 1, -4, 5])),-3),-4),9)",
    "io_inp": [
      -2,
      1,
      -4,
      5
    ],
    "io_out": [
      -11,
      1,
      10,
      16
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(sort_asc(input)),-3),-4),9)"
  },
  {
    "input": "input : list = [1, 4, -1, 0]\noutput : list = [-3, -12, 3, 0]",
    "output": "generated_output : list = mul_n([1, 4, -1, 0],-3)",
    "io_inp": [
      1,
      4,
      -1,
      0
    ],
    "io_out": [
      -3,
      -12,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-5, 5]",
    "output": "generated_output : list = mul_n([1, -1],-5)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, 3, -1, 4, 4, 0]\noutput : list = [-1, -1, -2, -4, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(add_n([1, 3, -1, 4, 4, 0],-3)),1)),3)",
    "io_inp": [
      1,
      3,
      -1,
      4,
      4,
      0
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(add_n(input,-3)),1)),3)"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(sort_asc([2, -4, -1])))),1)",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [2, -2, -4, 1]\noutput : list = [-3, -7, -9, -4]",
    "output": "generated_output : list = add_n([2, -2, -4, 1],-5)",
    "io_inp": [
      2,
      -2,
      -4,
      1
    ],
    "io_out": [
      -3,
      -7,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 5, -3, 2, -5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sort_des(take([2, 5, -3, 2, -5],1)))",
    "io_inp": [
      2,
      5,
      -3,
      2,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [4, -5, 5]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(take(add_n([4, -5, 5],4),6),4),5))",
    "io_inp": [
      4,
      -5,
      5
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(add_n(input,4),6),4),5))"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(reverse([0, 4, -5])),1)))",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(reverse(input)),1)))"
  },
  {
    "input": "input : list = [-2, -5, -5, 5]\noutput : list = [5, -5, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, -5, 5])",
    "io_inp": [
      -2,
      -5,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2, 1, 3]\noutput : list = [2, 1, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(sort_des([4, -2, 1, 3]))),-2))",
    "io_inp": [
      4,
      -2,
      1,
      3
    ],
    "io_out": [
      2,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [3, -4, 2, -3]\noutput : list = [3, -4]",
    "output": "generated_output : list = take([3, -4, 2, -3],2)",
    "io_inp": [
      3,
      -4,
      2,
      -3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -5, 5, -3]\noutput : list = [-7, 1, -9, -8]",
    "output": "generated_output : list = add_n(reverse(add_n([-4, -5, 5, -3],-5)),1)",
    "io_inp": [
      -4,
      -5,
      5,
      -3
    ],
    "io_out": [
      -7,
      1,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,-5)),1)"
  },
  {
    "input": "input : list = [1, -4, 0, 3, 0, 0]\noutput : list = [0, 0, 3, 0, -4, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n([1, -4, 0, 3, 0, 0],1)),-5),-5)",
    "io_inp": [
      1,
      -4,
      0,
      3,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      3,
      0,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(input,1)),-5),-5)"
  },
  {
    "input": "input : list = [-5, 2, 3, 2, 4, 4]\noutput : list = [25, 25, 20, 15, 15, -20]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(sort_des([-5, 2, 3, 2, 4, 4])),5),40),-5)",
    "io_inp": [
      -5,
      2,
      3,
      2,
      4,
      4
    ],
    "io_out": [
      25,
      25,
      20,
      15,
      15,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(sort_des(input)),5),40),-5)"
  },
  {
    "input": "input : list = [4, -4, -2, 3, 5, 1]\noutput : list = [1, -7, -5]",
    "output": "generated_output : list = sub_n(take([4, -4, -2, 3, 5, 1],3),3)",
    "io_inp": [
      4,
      -4,
      -2,
      3,
      5,
      1
    ],
    "io_out": [
      1,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),3)"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [7, -2, -17]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(mul_n([1, 4, -4],3))),5))",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      7,
      -2,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(mul_n(input,3))),5))"
  },
  {
    "input": "input : list = [-2, 0, 4, -2]\noutput : list = [4, 0, -2, -2]",
    "output": "generated_output : list = sort_des([-2, 0, 4, -2])",
    "io_inp": [
      -2,
      0,
      4,
      -2
    ],
    "io_out": [
      4,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1, -5, 1]\noutput : list = [-6, -3, -3, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(sort_asc([2, 1, -5, 1])),-3)))",
    "io_inp": [
      2,
      1,
      -5,
      1
    ],
    "io_out": [
      -6,
      -3,
      -3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [5, -2, 0, -2, -1, 2]\noutput : list = [2, -1, -2, 0, -2, 5]",
    "output": "generated_output : list = reverse([5, -2, 0, -2, -1, 2])",
    "io_inp": [
      5,
      -2,
      0,
      -2,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      -2,
      0,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 2, 5, 2, -4]\noutput : list = [-8, -6, -5, -5, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n([3, 2, 5, 2, -4],-1),3)))",
    "io_inp": [
      3,
      2,
      5,
      2,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(input,-1),3)))"
  },
  {
    "input": "input : list = [3, -4, 3, 5, 5]\noutput : list = [6, -15, 6, 12, 12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([3, -4, 3, 5, 5],3),-2),3)",
    "io_inp": [
      3,
      -4,
      3,
      5,
      5
    ],
    "io_out": [
      6,
      -15,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,3),-2),3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [3, -1]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(reverse([5, 1]))),2),30)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(reverse(input))),2),30)"
  },
  {
    "input": "input : list = [-3, 2, 3]\noutput : list = [1, 0, -5]",
    "output": "generated_output : list = sub_n(take(sort_des([-3, 2, 3]),5),2)",
    "io_inp": [
      -3,
      2,
      3
    ],
    "io_out": [
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),5),2)"
  },
  {
    "input": "input : list = [-1, 3, -5, 0, 1]\noutput : list = [15, 5, 0, -5, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-1, 3, -5, 0, 1]),5))",
    "io_inp": [
      -1,
      3,
      -5,
      0,
      1
    ],
    "io_out": [
      15,
      5,
      0,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [14, -1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(sub_n([1, 4],3))),-5),-4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      14,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(sub_n(input,3))),-5),-4)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [-6, -1, -2]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(reverse([-1, 0, -5])),-4)),3)",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      -6,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(reverse(input)),-4)),3)"
  },
  {
    "input": "input : list = [3, 2, 0, -1]\noutput : list = [-1, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([3, 2, 0, -1]))",
    "io_inp": [
      3,
      2,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, 5, 1]\noutput : list = [-2, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 5, 1]))",
    "io_inp": [
      -2,
      5,
      1
    ],
    "io_out": [
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 0, 2, -3, -4]\noutput : list = [6, 4, 1, 0, 0]",
    "output": "generated_output : list = add_n(sort_des([-4, 0, 2, -3, -4]),4)",
    "io_inp": [
      -4,
      0,
      2,
      -3,
      -4
    ],
    "io_out": [
      6,
      4,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [3, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(drop([3, 4, -4],1))",
    "io_inp": [
      3,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [1, 3, 2, 1]\noutput : list = [-1, 1, 0, -1]",
    "output": "generated_output : list = add_n([1, 3, 2, 1],-2)",
    "io_inp": [
      1,
      3,
      2,
      1
    ],
    "io_out": [
      -1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, 3, 5, 4]\noutput : list = [4, 0, -8, -4]",
    "output": "generated_output : list = mul_n(sub_n([2, 3, 5, 4],3),-4)",
    "io_inp": [
      2,
      3,
      5,
      4
    ],
    "io_out": [
      4,
      0,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-4)"
  },
  {
    "input": "input : list = [2, 4, 4, -3, -1, -3]\noutput : list = [-24, -48, -48, 36, 12, 36]",
    "output": "generated_output : list = mul_n(mul_n([2, 4, 4, -3, -1, -3],-3),4)",
    "io_inp": [
      2,
      4,
      4,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -24,
      -48,
      -48,
      36,
      12,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),4)"
  },
  {
    "input": "input : list = [-5, 2, 0, -1, -5]\noutput : list = [-1]",
    "output": "generated_output : list = drop(sort_asc(mul_n(drop([-5, 2, 0, -1, -5],3),1)),1)",
    "io_inp": [
      -5,
      2,
      0,
      -1,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(mul_n(drop(input,3),1)),1)"
  },
  {
    "input": "input : list = [-5, -5, 0, -4]\noutput : list = [-16, -16, -12, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(mul_n([-5, -5, 0, -4],4)))),-4)",
    "io_inp": [
      -5,
      -5,
      0,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -12,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(mul_n(input,4)))),-4)"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = drop([-2, 4, -2],1)",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 3, 2, -2, -2]\noutput : list = [12, -20]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(take([-5, 3, 2, -2, -2],2),4))))",
    "io_inp": [
      -5,
      3,
      2,
      -2,
      -2
    ],
    "io_out": [
      12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(take(input,2),4))))"
  },
  {
    "input": "input : list = [1, 5, -5, -4, -5]\noutput : list = [-11, -3, 7, 9, 9]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n([1, 5, -5, -4, -5],-2)),-1))",
    "io_inp": [
      1,
      5,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -11,
      -3,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(input,-2)),-1))"
  },
  {
    "input": "input : list = [3, -5, -2, -4, -3, 4]\noutput : list = [-5, -7, -6, 1]",
    "output": "generated_output : list = add_n(drop([3, -5, -2, -4, -3, 4],2),-3)",
    "io_inp": [
      3,
      -5,
      -2,
      -4,
      -3,
      4
    ],
    "io_out": [
      -5,
      -7,
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-2, -5, -4]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(add_n(reverse(take([-2, -5, -4],1)),-3),7),14)",
    "io_inp": [
      -2,
      -5,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(take(input,1)),-3),7),14)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sort_asc([-3, -2]),-3),3)))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sort_asc(input),-3),3)))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(sort_asc([-1, 0]),5))))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [4, -4, 4, -1]\noutput : list = [4, 7, 12, 12]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_asc(add_n([4, -4, 4, -1],-5)),4),5),-4)",
    "io_inp": [
      4,
      -4,
      4,
      -1
    ],
    "io_out": [
      4,
      7,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_asc(add_n(input,-5)),4),5),-4)"
  },
  {
    "input": "input : list = [-3, 3, 5, -4, 1, 1]\noutput : list = [-6, 0, 2, -7, -2, -2]",
    "output": "generated_output : list = add_n([-3, 3, 5, -4, 1, 1],-3)",
    "io_inp": [
      -3,
      3,
      5,
      -4,
      1,
      1
    ],
    "io_out": [
      -6,
      0,
      2,
      -7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, -2, 5, 2]\noutput : list = [-3, 0, 1, 4]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(sort_des([1, -2, 5, 2])),11)),-1)",
    "io_inp": [
      1,
      -2,
      5,
      2
    ],
    "io_out": [
      -3,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(sort_des(input)),11)),-1)"
  },
  {
    "input": "input : list = [-5, -5, 0, 3, 4]\noutput : list = [-21, -21, -1, 11, 15]",
    "output": "generated_output : list = take(add_n(take(mul_n(mul_n([-5, -5, 0, 3, 4],2),2),7),-1),14)",
    "io_inp": [
      -5,
      -5,
      0,
      3,
      4
    ],
    "io_out": [
      -21,
      -21,
      -1,
      11,
      15
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(mul_n(input,2),2),7),-1),14)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des([-1, 0]))),18)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(input))),18)"
  },
  {
    "input": "input : list = [2, 1, -2, -5, 4, -1]\noutput : list = [-10, 50, -58, -22, 14, 26]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(reverse([2, 1, -2, -5, 4, -1]),-4),-3),4),-2)",
    "io_inp": [
      2,
      1,
      -2,
      -5,
      4,
      -1
    ],
    "io_out": [
      -10,
      50,
      -58,
      -22,
      14,
      26
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(reverse(input),-4),-3),4),-2)"
  },
  {
    "input": "input : list = [-5, 3, 3, -1, -5]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(drop([-5, 3, 3, -1, -5],3),4),29),-5),2)",
    "io_inp": [
      -5,
      3,
      3,
      -1,
      -5
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(drop(input,3),4),29),-5),2)"
  },
  {
    "input": "input : list = [2, 0, -1, -3, 2]\noutput : list = [-9, -7, -6, -4, -4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc([2, 0, -1, -3, 2]),5),-2)),-3)",
    "io_inp": [
      2,
      0,
      -1,
      -3,
      2
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc(input),5),-2)),-3)"
  },
  {
    "input": "input : list = [-1, -3, 4, -4]\noutput : list = [-4, -3, -1, 4]",
    "output": "generated_output : list = sort_asc([-1, -3, 4, -4])",
    "io_inp": [
      -1,
      -3,
      4,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [4, 7, 8]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(sort_asc([1, -2, 2]),-4),28),-3),5)",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(sort_asc(input),-4),28),-3),5)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc([5, -4])",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [0, 10]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(mul_n([-5, 5],1)))),5)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(mul_n(input,1)))),5)"
  },
  {
    "input": "input : list = [-3, 0, -1, -5, 1]\noutput : list = [-5, -3, -1, 0, 1]",
    "output": "generated_output : list = sort_asc([-3, 0, -1, -5, 1])",
    "io_inp": [
      -3,
      0,
      -1,
      -5,
      1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 0, 5]\noutput : list = [2, -3, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(mul_n([-3, -2, 0, 5],1),19)),3))",
    "io_inp": [
      -3,
      -2,
      0,
      5
    ],
    "io_out": [
      2,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(mul_n(input,1),19)),3))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [12, 5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(reverse([-2, 5]),-4),3)))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      12,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(reverse(input),-4),3)))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-9, 0]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des([0, -3]),14),3))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(input),14),3))"
  },
  {
    "input": "input : list = [-2, -1, 1]\noutput : list = [-10, -5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(mul_n([-2, -1, 1],5)),1)))",
    "io_inp": [
      -2,
      -1,
      1
    ],
    "io_out": [
      -10,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(mul_n(input,5)),1)))"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 1, 0],1)",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -5, -4, 2]\noutput : list = [-1, -1, 0, 6]",
    "output": "generated_output : list = take(add_n([-5, -5, -4, 2],4),5)",
    "io_inp": [
      -5,
      -5,
      -4,
      2
    ],
    "io_out": [
      -1,
      -1,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),5)"
  },
  {
    "input": "input : list = [-2, 3, -3, -2, -1, 0]\noutput : list = [-7, -6, -6, -5, -4, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sort_des([-2, 3, -3, -2, -1, 0])))),-4)",
    "io_inp": [
      -2,
      3,
      -3,
      -2,
      -1,
      0
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-5, 2, 5]",
    "output": "generated_output : list = take(sort_asc([5, -5, 2]),17)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),17)"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [20, -8, -16]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n([-5, 4, -3],4),4)),19)",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      20,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(input,4),4)),19)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-6, 14]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([-3, 1],-5)),-1)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -6,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,-5)),-1)"
  },
  {
    "input": "input : list = [2, -2, 0, -1, 4, 2]\noutput : list = [4, 2, 2, 0, -1, -2]",
    "output": "generated_output : list = sort_des([2, -2, 0, -1, 4, 2])",
    "io_inp": [
      2,
      -2,
      0,
      -1,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [-10, -10, -5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([-2, -1, -2]),5))",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [2, -3, 3, 0]\noutput : list = [-13, -10, -8, -7]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des([2, -3, 3, 0]),-5),-5))",
    "io_inp": [
      2,
      -3,
      3,
      0
    ],
    "io_out": [
      -13,
      -10,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(input),-5),-5))"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [-5, 15, 45]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(sort_asc([5, -1, -5]),5),5),-5))",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      -5,
      15,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(sort_asc(input),5),5),-5))"
  },
  {
    "input": "input : list = [-5, -2, -1, -3, 2]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(add_n(drop(reverse(sort_des([-5, -2, -1, -3, 2])),4),-5),2)",
    "io_inp": [
      -5,
      -2,
      -1,
      -3,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(reverse(sort_des(input)),4),-5),2)"
  },
  {
    "input": "input : list = [1, 0, 1, 0, -2]\noutput : list = [4, 6, 7, 6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(drop([1, 0, 1, 0, -2],1)),-4),-2)",
    "io_inp": [
      1,
      0,
      1,
      0,
      -2
    ],
    "io_out": [
      4,
      6,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(drop(input,1)),-4),-2)"
  },
  {
    "input": "input : list = [-2, 2, -2, 5, 3, 2]\noutput : list = [0, 8, 0, 14, 10, 8]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-2, 2, -2, 5, 3, 2],2),-2),-1)",
    "io_inp": [
      -2,
      2,
      -2,
      5,
      3,
      2
    ],
    "io_out": [
      0,
      8,
      0,
      14,
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,2),-2),-1)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = reverse(sub_n(sort_des([5, -1, 1]),3))",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sub_n(take([-5, 5, 3],1),-3))",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,1),-3))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [20, -15]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc([-3, 4]),10)),1),-5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc(input),10)),1),-5)"
  },
  {
    "input": "input : list = [-2, 5, -3, 4]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take([-2, 5, -3, 4],2)",
    "io_inp": [
      -2,
      5,
      -3,
      4
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -2, -3, 0, 4, -5]\noutput : list = [2, -2, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(drop([0, -2, -3, 0, 4, -5],3))),4),-2)",
    "io_inp": [
      0,
      -2,
      -3,
      0,
      4,
      -5
    ],
    "io_out": [
      2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(drop(input,3))),4),-2)"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(sort_asc([-1, 2, 1])))),-4)",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-2, 0]",
    "output": "generated_output : list = add_n([-5, -3],3)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, 0, 3, -2, 5]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(take(take([-1, 0, 3, -2, 5],2),19),2),20))",
    "io_inp": [
      -1,
      0,
      3,
      -2,
      5
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(take(input,2),19),2),20))"
  },
  {
    "input": "input : list = [-2, 0, 2, 2]\noutput : list = [7, 7, 5, 3]",
    "output": "generated_output : list = take(take(take(sub_n(reverse([-2, 0, 2, 2]),-5),9),26),42)",
    "io_inp": [
      -2,
      0,
      2,
      2
    ],
    "io_out": [
      7,
      7,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(reverse(input),-5),9),26),42)"
  },
  {
    "input": "input : list = [0, -1, 5, 0]\noutput : list = [-1, 5, 0]",
    "output": "generated_output : list = reverse(reverse(take(take(drop([0, -1, 5, 0],1),5),10)))",
    "io_inp": [
      0,
      -1,
      5,
      0
    ],
    "io_out": [
      -1,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(drop(input,1),5),10)))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-30, -46]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(sort_asc([5, 3]),-2),-2),-3),-2)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -30,
      -46
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(sort_asc(input),-2),-2),-3),-2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-12, -3]",
    "output": "generated_output : list = add_n(add_n([-4, 5],-3),-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -12,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),-5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [15, 12]",
    "output": "generated_output : list = mul_n([-5, -4],-3)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      15,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(sort_des([2, -1]),3))),26)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(sort_des(input),3))),26)"
  },
  {
    "input": "input : list = [-2, 3, 4, -4, -1, 0]\noutput : list = [0, -20, -24, 8, -4, -8]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(sub_n([-2, 3, 4, -4, -1, 0],-2),14),2),-1),2)",
    "io_inp": [
      -2,
      3,
      4,
      -4,
      -1,
      0
    ],
    "io_out": [
      0,
      -20,
      -24,
      8,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(sub_n(input,-2),14),2),-1),2)"
  },
  {
    "input": "input : list = [-3, -2, 0, -1]\noutput : list = [14, 11, 8, 5]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(reverse([-3, -2, 0, -1])),-3),5))",
    "io_inp": [
      -3,
      -2,
      0,
      -1
    ],
    "io_out": [
      14,
      11,
      8,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(reverse(input)),-3),5))"
  },
  {
    "input": "input : list = [2, 0, 1]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n([2, 0, 1],-2))),-3),1)",
    "io_inp": [
      2,
      0,
      1
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n(input,-2))),-3),1)"
  },
  {
    "input": "input : list = [4, -5, 0, -2]\noutput : list = [4, 0, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([4, -5, 0, -2]))",
    "io_inp": [
      4,
      -5,
      0,
      -2
    ],
    "io_out": [
      4,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -1, -3, 4, 1, 0]\noutput : list = [-1, -3, 4, 1, 0]",
    "output": "generated_output : list = drop([2, -1, -3, 4, 1, 0],1)",
    "io_inp": [
      2,
      -1,
      -3,
      4,
      1,
      0
    ],
    "io_out": [
      -1,
      -3,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(take(add_n([3, 3],3),6))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,3),6))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(reverse([-5, -4]),3)),-4))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(reverse(input),3)),-4))"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(drop([2, -3, -1],1)),-3),23))",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(drop(input,1)),-3),23))"
  },
  {
    "input": "input : list = [-3, 3, -2, 4, 0, -2]\noutput : list = [13, 12, 9, 7, 7, 6]",
    "output": "generated_output : list = add_n(sort_des(take(take(sub_n([-3, 3, -2, 4, 0, -2],-4),7),25)),5)",
    "io_inp": [
      -3,
      3,
      -2,
      4,
      0,
      -2
    ],
    "io_out": [
      13,
      12,
      9,
      7,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sub_n(input,-4),7),25)),5)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [12, -6]",
    "output": "generated_output : list = take(take(take(mul_n([-4, 2],-3),4),23),24)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      12,
      -6
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(input,-3),4),23),24)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(add_n([-1, -3],4)),3)))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(add_n(input,4)),3)))"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [-5, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(sort_des([3, -5, 4]))),26))",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(sort_des(input))),26))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [6, -6]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(reverse([-3, 3]),-2)),2),-2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(reverse(input),-2)),2),-2)"
  },
  {
    "input": "input : list = [2, 3, -5, -1, 0, -2]\noutput : list = [-2, 0, -1, -5, 3, 2]",
    "output": "generated_output : list = reverse([2, 3, -5, -1, 0, -2])",
    "io_inp": [
      2,
      3,
      -5,
      -1,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      -1,
      -5,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [32, 16]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(add_n([-2, -3],4)),-4)),-4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      32,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(add_n(input,4)),-4)),-4)"
  },
  {
    "input": "input : list = [3, -5, -2, 2, 2, -3]\noutput : list = [-1, 1, 2, 6, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_asc([3, -5, -2, 2, 2, -3]),2),4),2))",
    "io_inp": [
      3,
      -5,
      -2,
      2,
      2,
      -3
    ],
    "io_out": [
      -1,
      1,
      2,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_asc(input),2),4),2))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(add_n([1, 1],-4),5)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),5)"
  },
  {
    "input": "input : list = [5, 3, 0, -2]\noutput : list = [-6, -4, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc([5, 3, 0, -2]),4)",
    "io_inp": [
      5,
      3,
      0,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [10, 4]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(sub_n([4, -2],-3),-3),13)))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(sub_n(input,-3),-3),13)))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(reverse([3, 0])),9)))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(reverse(input)),9)))"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(take([1, -2, 5],1),-2),2),-1),-1)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(take(input,1),-2),2),-1),-1)"
  },
  {
    "input": "input : list = [-2, 0, -4, -4, 3, -1]\noutput : list = [-6, -2, -9, -9, -5, -7]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse([-2, 0, -4, -4, 3, -1]))),-5)",
    "io_inp": [
      -2,
      0,
      -4,
      -4,
      3,
      -1
    ],
    "io_out": [
      -6,
      -2,
      -9,
      -9,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(input))),-5)"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sort_des([1, 3, 0])",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3, -4, 2]\noutput : list = [-9, -2, -9, -3]",
    "output": "generated_output : list = sub_n([-4, 3, -4, 2],5)",
    "io_inp": [
      -4,
      3,
      -4,
      2
    ],
    "io_out": [
      -9,
      -2,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [-30]",
    "output": "generated_output : list = mul_n(sub_n(add_n(drop(sort_des([-5, 3, 1]),2),-3),-2),5)",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(drop(sort_des(input),2),-3),-2),5)"
  },
  {
    "input": "input : list = [3, -1, 5, 2]\noutput : list = [9, 5, 11, 8]",
    "output": "generated_output : list = sub_n(add_n([3, -1, 5, 2],4),-2)",
    "io_inp": [
      3,
      -1,
      5,
      2
    ],
    "io_out": [
      9,
      5,
      11,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),-2)"
  },
  {
    "input": "input : list = [-2, 5, 0, 3]\noutput : list = [-1, 1, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sub_n([-2, 5, 0, 3],-1)))))",
    "io_inp": [
      -2,
      5,
      0,
      3
    ],
    "io_out": [
      -1,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [3, 2, 5]\noutput : list = [36]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(take([3, 2, 5],1),3),-3),2),3)",
    "io_inp": [
      3,
      2,
      5
    ],
    "io_out": [
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(take(input,1),3),-3),2),3)"
  },
  {
    "input": "input : list = [-2, -2, -1, -3]\noutput : list = [-1, -2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des([-2, -2, -1, -3]))",
    "io_inp": [
      -2,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(drop([1, -2, 1],1),-3))))",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [7, 10]",
    "output": "generated_output : list = take(take(sub_n(add_n(drop([1, 0, 3],1),4),-3),17),16)",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(drop(input,1),4),-3),17),16)"
  },
  {
    "input": "input : list = [1, -4, -4, -3]\noutput : list = [6, 2, 1, 1]",
    "output": "generated_output : list = take(add_n(sort_des([1, -4, -4, -3]),5),18)",
    "io_inp": [
      1,
      -4,
      -4,
      -3
    ],
    "io_out": [
      6,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),5),18)"
  },
  {
    "input": "input : list = [3, 3, -1]\noutput : list = [1, 1, -19]",
    "output": "generated_output : list = add_n(mul_n(sub_n([3, 3, -1],2),5),-4)",
    "io_inp": [
      3,
      3,
      -1
    ],
    "io_out": [
      1,
      1,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,2),5),-4)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n(sort_asc([-5, 1]),-4)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-3, -3, 5, -2, 2, 0]\noutput : list = [2, -1, -3, -5, -6, -6]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des([-3, -3, 5, -2, 2, 0]),6),-3))",
    "io_inp": [
      -3,
      -3,
      5,
      -2,
      2,
      0
    ],
    "io_out": [
      2,
      -1,
      -3,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(input),6),-3))"
  },
  {
    "input": "input : list = [4, 2, -4, 2, -1]\noutput : list = [-1, 2, -4]",
    "output": "generated_output : list = reverse(drop([4, 2, -4, 2, -1],2))",
    "io_inp": [
      4,
      2,
      -4,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [-2, -2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(mul_n([0, 1, 0],5))),2))",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(mul_n(input,5))),2))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, -16]",
    "output": "generated_output : list = take(mul_n([0, 4],-4),3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),3)"
  },
  {
    "input": "input : list = [-2, 4, 3, -3, 1]\noutput : list = [15, 14, 12, 9, 8]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sub_n([-2, 4, 3, -3, 1],-3),-2),-1),-5))",
    "io_inp": [
      -2,
      4,
      3,
      -3,
      1
    ],
    "io_out": [
      15,
      14,
      12,
      9,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sub_n(input,-3),-2),-1),-5))"
  },
  {
    "input": "input : list = [0, -5, -5, -1, 2]\noutput : list = [3, 1, 0, -4, -4]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(sort_asc([0, -5, -5, -1, 2]),1)),29))",
    "io_inp": [
      0,
      -5,
      -5,
      -1,
      2
    ],
    "io_out": [
      3,
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(sort_asc(input),1)),29))"
  },
  {
    "input": "input : list = [3, -4, 3, 1, 1]\noutput : list = [16, -4, -4, -12, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_asc([3, -4, 3, 1, 1])),-4)))",
    "io_inp": [
      3,
      -4,
      3,
      1,
      1
    ],
    "io_out": [
      16,
      -4,
      -4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-3, -4, 0, 3]\noutput : list = [3, 0, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(sort_asc([-3, -4, 0, 3])))))",
    "io_inp": [
      -3,
      -4,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -2, -1, -5, -3, 2]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = drop([5, -2, -1, -5, -3, 2],3)",
    "io_inp": [
      5,
      -2,
      -1,
      -5,
      -3,
      2
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, -1, 4, 5, 2, 3]\noutput : list = [-12, -10, -5, -4, -7, -6]",
    "output": "generated_output : list = sub_n(sub_n([-3, -1, 4, 5, 2, 3],5),4)",
    "io_inp": [
      -3,
      -1,
      4,
      5,
      2,
      3
    ],
    "io_out": [
      -12,
      -10,
      -5,
      -4,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),4)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = reverse(drop([4, 2, -1],1))",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(drop(sort_asc(mul_n(sub_n([-4, 0],1),5)),1),5)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(mul_n(sub_n(input,1),5)),1),5)"
  },
  {
    "input": "input : list = [-5, -2, 3, 5, 4, -4]\noutput : list = [-6, -4, 0, 10, 12, 14]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(reverse(sort_des([-5, -2, 3, 5, 4, -4])),2)),-4)",
    "io_inp": [
      -5,
      -2,
      3,
      5,
      4,
      -4
    ],
    "io_out": [
      -6,
      -4,
      0,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(reverse(sort_des(input)),2)),-4)"
  },
  {
    "input": "input : list = [0, -5, 4, -3, -4]\noutput : list = [4, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des([0, -5, 4, -3, -4])))",
    "io_inp": [
      0,
      -5,
      4,
      -3,
      -4
    ],
    "io_out": [
      4,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [5, -4, -3, -5]\noutput : list = [18, 10, 14, -22]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(mul_n([5, -4, -3, -5],-4),13)),-5),-3)",
    "io_inp": [
      5,
      -4,
      -3,
      -5
    ],
    "io_out": [
      18,
      10,
      14,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(mul_n(input,-4),13)),-5),-3)"
  },
  {
    "input": "input : list = [5, 0, -5, 0, 1]\noutput : list = [44, 12, 4, 4, -36]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n([5, 0, -5, 0, 1],-2),-4),4))",
    "io_inp": [
      5,
      0,
      -5,
      0,
      1
    ],
    "io_out": [
      44,
      12,
      4,
      4,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(input,-2),-4),4))"
  },
  {
    "input": "input : list = [-4, -4, -1, -4]\noutput : list = [20, 8, 20, 20]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(mul_n([-4, -4, -1, -4],-4),-3),-1)),25)",
    "io_inp": [
      -4,
      -4,
      -1,
      -4
    ],
    "io_out": [
      20,
      8,
      20,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(mul_n(input,-4),-3),-1)),25)"
  },
  {
    "input": "input : list = [1, -3, -2, 4]\noutput : list = [4, 1, -2, -3]",
    "output": "generated_output : list = sort_des([1, -3, -2, 4])",
    "io_inp": [
      1,
      -3,
      -2,
      4
    ],
    "io_out": [
      4,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, 0]\noutput : list = [8, 8, 3]",
    "output": "generated_output : list = add_n([5, 5, 0],3)",
    "io_inp": [
      5,
      5,
      0
    ],
    "io_out": [
      8,
      8,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(reverse([0, 2, 3]),-1),-1)))",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(reverse(input),-1),-1)))"
  },
  {
    "input": "input : list = [-1, 1, 0, 1, 5, -2]\noutput : list = [-50, 20]",
    "output": "generated_output : list = take(mul_n(drop(take(mul_n([-1, 1, 0, 1, 5, -2],-5),10),4),2),10)",
    "io_inp": [
      -1,
      1,
      0,
      1,
      5,
      -2
    ],
    "io_out": [
      -50,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(take(mul_n(input,-5),10),4),2),10)"
  },
  {
    "input": "input : list = [4, -1, -1, -4]\noutput : list = [2, -8]",
    "output": "generated_output : list = sort_des(take(take(mul_n(take([4, -1, -1, -4],2),-2),31),39))",
    "io_inp": [
      4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(take(input,2),-2),31),39))"
  },
  {
    "input": "input : list = [1, 1, -1, 4]\noutput : list = [2, -1, -1, -3]",
    "output": "generated_output : list = take(sort_des(add_n(take(sort_des([1, 1, -1, 4]),11),-2)),26)",
    "io_inp": [
      1,
      1,
      -1,
      4
    ],
    "io_out": [
      2,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(sort_des(input),11),-2)),26)"
  },
  {
    "input": "input : list = [4, 3, -2, 1, -3, 2]\noutput : list = [-22]",
    "output": "generated_output : list = sub_n(drop(add_n(reverse(mul_n([4, 3, -2, 1, -3, 2],-5)),-4),5),-2)",
    "io_inp": [
      4,
      3,
      -2,
      1,
      -3,
      2
    ],
    "io_out": [
      -22
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(reverse(mul_n(input,-5)),-4),5),-2)"
  },
  {
    "input": "input : list = [1, -1, -2, 3, 4, 4]\noutput : list = [11, 11, 10, 8, 6, 5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(add_n([1, -1, -2, 3, 4, 4],5),21)),-2))",
    "io_inp": [
      1,
      -1,
      -2,
      3,
      4,
      4
    ],
    "io_out": [
      11,
      11,
      10,
      8,
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(add_n(input,5),21)),-2))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(sort_des([-2, 1])),16)))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(sort_des(input)),16)))"
  },
  {
    "input": "input : list = [3, -1, 1, -5, -1]\noutput : list = [4, 2, 0, 0, -4]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(add_n([3, -1, 1, -5, -1],4)),31)),-3)",
    "io_inp": [
      3,
      -1,
      1,
      -5,
      -1
    ],
    "io_out": [
      4,
      2,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(add_n(input,4)),31)),-3)"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sub_n(drop(mul_n(drop([4, -5, 0],1),-1),1),-3))",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(mul_n(drop(input,1),-1),1),-3))"
  },
  {
    "input": "input : list = [3, 5, 5, 5, 0]\noutput : list = [0, 0, 0, -2, -5]",
    "output": "generated_output : list = sort_des(sub_n([3, 5, 5, 5, 0],5))",
    "io_inp": [
      3,
      5,
      5,
      5,
      0
    ],
    "io_out": [
      0,
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [2, 4, -4, 4]\noutput : list = [5, 7]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(add_n([2, 4, -4, 4],3),2)),3))",
    "io_inp": [
      2,
      4,
      -4,
      4
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(add_n(input,3),2)),3))"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-1, -1, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(add_n([-1, -5, -1],-1)))),-1)",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(add_n(input,-1)))),-1)"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [4]",
    "output": "generated_output : list = take(take([4, 2, -3],1),2)",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(input,1),2)"
  },
  {
    "input": "input : list = [2, 0, -3, 4, 5]\noutput : list = [0, 3, 5, 7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([2, 0, -3, 4, 5])),-3)",
    "io_inp": [
      2,
      0,
      -3,
      4,
      5
    ],
    "io_out": [
      0,
      3,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [4, 2, 4, -3, -2, -2]\noutput : list = [-5, -5, -6, 1, -1, 1]",
    "output": "generated_output : list = sub_n(sub_n(reverse([4, 2, 4, -3, -2, -2]),5),-2)",
    "io_inp": [
      4,
      2,
      4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -6,
      1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),5),-2)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([4, -2]))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(reverse([-4, -3]),2),3),6))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(reverse(input),2),3),6))"
  },
  {
    "input": "input : list = [1, -2, 4, 3, -1]\noutput : list = [-30, -10, -5, -35, -20]",
    "output": "generated_output : list = take(reverse(mul_n(add_n([1, -2, 4, 3, -1],-5),5)),14)",
    "io_inp": [
      1,
      -2,
      4,
      3,
      -1
    ],
    "io_out": [
      -30,
      -10,
      -5,
      -35,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(input,-5),5)),14)"
  },
  {
    "input": "input : list = [-2, 2, -3, 4, 4, -4]\noutput : list = [-4, 0, -5, 2, 2, -6]",
    "output": "generated_output : list = add_n([-2, 2, -3, 4, 4, -4],-2)",
    "io_inp": [
      -2,
      2,
      -3,
      4,
      4,
      -4
    ],
    "io_out": [
      -4,
      0,
      -5,
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [2, 6, 8]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc([-1, 5, 3]),3)),6)",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(input),3)),6)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des([5, -3]),-1))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),-1))"
  },
  {
    "input": "input : list = [-3, 2, 3, 2, -4]\noutput : list = [-2, -1, 4, 4, 5]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(reverse([-3, 2, 3, 2, -4])),2)),50)",
    "io_inp": [
      -3,
      2,
      3,
      2,
      -4
    ],
    "io_out": [
      -2,
      -1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(reverse(input)),2)),50)"
  },
  {
    "input": "input : list = [-3, 2, 5, -2, -3, -4]\noutput : list = [-14, -10, -10, -6, 10, 22]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(mul_n([-3, 2, 5, -2, -3, -4],4),29))),2)",
    "io_inp": [
      -3,
      2,
      5,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -14,
      -10,
      -10,
      -6,
      10,
      22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(mul_n(input,4),29))),2)"
  },
  {
    "input": "input : list = [-5, 2, 0, -5]\noutput : list = [-11, -4, -6, -11]",
    "output": "generated_output : list = add_n(sub_n([-5, 2, 0, -5],4),-2)",
    "io_inp": [
      -5,
      2,
      0,
      -5
    ],
    "io_out": [
      -11,
      -4,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-2)"
  },
  {
    "input": "input : list = [-1, 1, -3, -5, -1]\noutput : list = [-12, 12, -36, -60, -12]",
    "output": "generated_output : list = mul_n(mul_n([-1, 1, -3, -5, -1],4),3)",
    "io_inp": [
      -1,
      1,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -12,
      12,
      -36,
      -60,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),3)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [0, -10]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_asc([5, -5]),1),5)))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_asc(input),1),5)))"
  },
  {
    "input": "input : list = [2, 3, -5, -4]\noutput : list = [-10, -11, -3, -4]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(reverse([2, 3, -5, -4]),2),27),1),-5)",
    "io_inp": [
      2,
      3,
      -5,
      -4
    ],
    "io_out": [
      -10,
      -11,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(reverse(input),2),27),1),-5)"
  },
  {
    "input": "input : list = [0, 4, -3]\noutput : list = [-8, -1, -5]",
    "output": "generated_output : list = reverse(add_n([0, 4, -3],-5))",
    "io_inp": [
      0,
      4,
      -3
    ],
    "io_out": [
      -8,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [0, 5, 2, -1, 5]\noutput : list = [-7, -1, -4, -7, -2]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n([0, 5, 2, -1, 5],1),-1),-3))",
    "io_inp": [
      0,
      5,
      2,
      -1,
      5
    ],
    "io_out": [
      -7,
      -1,
      -4,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(input,1),-1),-3))"
  },
  {
    "input": "input : list = [-2, 3, -5, 2, -1, 2]\noutput : list = [4, 3, 3, 0, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n([-2, 3, -5, 2, -1, 2],-3),4))",
    "io_inp": [
      -2,
      3,
      -5,
      2,
      -1,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-3),4))"
  },
  {
    "input": "input : list = [5, 0, -4]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sort_asc(take([5, 0, -4],1)))",
    "io_inp": [
      5,
      0,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-3, 4, -2]\noutput : list = [0, 6, -1]",
    "output": "generated_output : list = sub_n(take(reverse([-3, 4, -2]),14),-2)",
    "io_inp": [
      -3,
      4,
      -2
    ],
    "io_out": [
      0,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),14),-2)"
  },
  {
    "input": "input : list = [-4, 2, -4, 1]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take([-4, 2, -4, 1],1)),2)))",
    "io_inp": [
      -4,
      2,
      -4,
      1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take(input,1)),2)))"
  },
  {
    "input": "input : list = [2, -1, 4, 1]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(reverse(take([2, -1, 4, 1],2)))",
    "io_inp": [
      2,
      -1,
      4,
      1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [1, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 1])",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 3]\noutput : list = [-7, -7, 1]",
    "output": "generated_output : list = sort_asc(add_n([-5, -5, 3],-2))",
    "io_inp": [
      -5,
      -5,
      3
    ],
    "io_out": [
      -7,
      -7,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 1, 2, 3, -2, 3]\noutput : list = [-12, -9, -6, -21, -6]",
    "output": "generated_output : list = add_n(drop(add_n(mul_n(add_n([-4, 1, 2, 3, -2, 3],-5),3),-3),1),3)",
    "io_inp": [
      -4,
      1,
      2,
      3,
      -2,
      3
    ],
    "io_out": [
      -12,
      -9,
      -6,
      -21,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(mul_n(add_n(input,-5),3),-3),1),3)"
  },
  {
    "input": "input : list = [-5, 5, 4, 0, 1, -2]\noutput : list = [5, 4, 1, 0, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 5, 4, 0, 1, -2])",
    "io_inp": [
      -5,
      5,
      4,
      0,
      1,
      -2
    ],
    "io_out": [
      5,
      4,
      1,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, 1]\noutput : list = [-15, -24, -12]",
    "output": "generated_output : list = mul_n(add_n([0, -3, 1],-5),3)",
    "io_inp": [
      0,
      -3,
      1
    ],
    "io_out": [
      -15,
      -24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),3)"
  },
  {
    "input": "input : list = [0, 3, 4, -2, -2]\noutput : list = [-2, -8, -8]",
    "output": "generated_output : list = sub_n(drop(sub_n([0, 3, 4, -2, -2],1),2),5)",
    "io_inp": [
      0,
      3,
      4,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(input,1),2),5)"
  },
  {
    "input": "input : list = [2, 2, 3]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = take(add_n(sort_des([2, 2, 3]),-3),11)",
    "io_inp": [
      2,
      2,
      3
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),-3),11)"
  },
  {
    "input": "input : list = [-3, -4, 5, -2]\noutput : list = [12, 96, -12, 0]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(add_n([-3, -4, 5, -2],3)),3),36),4)",
    "io_inp": [
      -3,
      -4,
      5,
      -2
    ],
    "io_out": [
      12,
      96,
      -12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(add_n(input,3)),3),36),4)"
  },
  {
    "input": "input : list = [-4, -2, 5, -3, 3, 1]\noutput : list = [24, 16, 8, -4, -8, -12]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n(mul_n([-4, -2, 5, -3, 3, 1],4),-4),37)))",
    "io_inp": [
      -4,
      -2,
      5,
      -3,
      3,
      1
    ],
    "io_out": [
      24,
      16,
      8,
      -4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(mul_n(input,4),-4),37)))"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [-6, 3, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(mul_n([1, 2, -2],3)))),1)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      -6,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(mul_n(input,3)))),1)"
  },
  {
    "input": "input : list = [-1, 4, -5, 4, 4]\noutput : list = [-145, -45, 80, 80, 80]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(mul_n([-1, 4, -5, 4, 4],-5)),4)),-5)",
    "io_inp": [
      -1,
      4,
      -5,
      4,
      4
    ],
    "io_out": [
      -145,
      -45,
      80,
      80,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(mul_n(input,-5)),4)),-5)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-7, -14]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(add_n([-3, 4],-5)),14),1),-5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -7,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(add_n(input,-5)),14),1),-5)"
  },
  {
    "input": "input : list = [2, 2, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = drop([2, 2, 1, 2],2)",
    "io_inp": [
      2,
      2,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -3, -1, -5]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take([3, -3, -1, -5],2),4)))",
    "io_inp": [
      3,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(input,2),4)))"
  },
  {
    "input": "input : list = [0, -3, 0, 5]\noutput : list = [-49, 1, 1, 31]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_des(mul_n([0, -3, 0, 5],5)),-2),2),3)",
    "io_inp": [
      0,
      -3,
      0,
      5
    ],
    "io_out": [
      -49,
      1,
      1,
      31
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_des(mul_n(input,5)),-2),2),3)"
  },
  {
    "input": "input : list = [-3, 2, 3]\noutput : list = [4, 3, -2]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(sort_des([-3, 2, 3]),8))),1)",
    "io_inp": [
      -3,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(sort_des(input),8))),1)"
  },
  {
    "input": "input : list = [5, 3, -3, -3, 0]\noutput : list = [-24, -48]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(drop([5, 3, -3, -3, 0],3),4),2),4),-2)",
    "io_inp": [
      5,
      3,
      -3,
      -3,
      0
    ],
    "io_out": [
      -24,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(drop(input,3),4),2),4),-2)"
  },
  {
    "input": "input : list = [-2, 4, -1, -1, 1, -5]\noutput : list = [-16, 2, -4, -4, 11, -7]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(mul_n([-2, 4, -1, -1, 1, -5],3),-4),1)),-5)",
    "io_inp": [
      -2,
      4,
      -1,
      -1,
      1,
      -5
    ],
    "io_out": [
      -16,
      2,
      -4,
      -4,
      11,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(mul_n(input,3),-4),1)),-5)"
  },
  {
    "input": "input : list = [3, 3, 0, 1, -2]\noutput : list = [-8, -8, -4, -2, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(mul_n([3, 3, 0, 1, -2],-2),-4),2),27))",
    "io_inp": [
      3,
      3,
      0,
      1,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(mul_n(input,-2),-4),2),27))"
  },
  {
    "input": "input : list = [0, -3, 0, -2, -3, -3]\noutput : list = [15, 15, 15, 10, 0, 0]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(sort_asc([0, -3, 0, -2, -3, -3]),-5))))",
    "io_inp": [
      0,
      -3,
      0,
      -2,
      -3,
      -3
    ],
    "io_out": [
      15,
      15,
      15,
      10,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(sort_asc(input),-5))))"
  },
  {
    "input": "input : list = [-3, -5, -5, 0, -1]\noutput : list = [0, -2, -2, 3, 2]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(reverse([-3, -5, -5, 0, -1]),2)),-1),46)",
    "io_inp": [
      -3,
      -5,
      -5,
      0,
      -1
    ],
    "io_out": [
      0,
      -2,
      -2,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(reverse(input),2)),-1),46)"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(reverse([-5, 3, 4]),-2))),2)",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(reverse(input),-2))),2)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [9, 2]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(reverse([-3, 4]))),-5),33)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(reverse(input))),-5),33)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-1, -10]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(sub_n([5, -4],2),2),4)),1)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -1,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(sub_n(input,2),2),4)),1)"
  },
  {
    "input": "input : list = [1, -3, 3, 4, -5, 1]\noutput : list = [-16]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(drop([1, -3, 3, 4, -5, 1],4),1),4),-4))",
    "io_inp": [
      1,
      -3,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(drop(input,4),1),4),-4))"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [-6, -2, 4]",
    "output": "generated_output : list = sub_n(sort_asc([-5, -1, 5]),1)",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      -6,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [5, 1, -2, -1, -1]\noutput : list = [6, 4, 4, 3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(drop([5, 1, -2, -1, -1],1),-5))))",
    "io_inp": [
      5,
      1,
      -2,
      -1,
      -1
    ],
    "io_out": [
      6,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(drop(input,1),-5))))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc([-2, 5])",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [7, -13]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(drop([-4, -2, 2],1)),-5),-3))",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      7,
      -13
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(drop(input,1)),-5),-3))"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = sort_des([-3, -4, 1])",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-16, -21]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(mul_n([-3, -4],5),1))))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -16,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(mul_n(input,5),1))))"
  },
  {
    "input": "input : list = [-1, 0, 2]\noutput : list = [-7, -4, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(reverse([-1, 0, 2]),3)),4))",
    "io_inp": [
      -1,
      0,
      2
    ],
    "io_out": [
      -7,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(reverse(input),3)),4))"
  },
  {
    "input": "input : list = [2, 5, 4, 3]\noutput : list = [2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(reverse([2, 5, 4, 3]),8)))",
    "io_inp": [
      2,
      5,
      4,
      3
    ],
    "io_out": [
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(reverse(input),8)))"
  },
  {
    "input": "input : list = [-5, -5, -2]\noutput : list = [25, 25, 10]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(sort_des([-5, -5, -2]),17)),22),-5)",
    "io_inp": [
      -5,
      -5,
      -2
    ],
    "io_out": [
      25,
      25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(sort_des(input),17)),22),-5)"
  },
  {
    "input": "input : list = [-5, -5, -3]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des([-5, -5, -3]),4),4),1)",
    "io_inp": [
      -5,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(input),4),4),1)"
  },
  {
    "input": "input : list = [-1, 3, -4, 4, 4, 5]\noutput : list = [16, 4, -12, -16, -16, -20]",
    "output": "generated_output : list = take(reverse(take(sort_asc(mul_n([-1, 3, -4, 4, 4, 5],-4)),12)),30)",
    "io_inp": [
      -1,
      3,
      -4,
      4,
      4,
      5
    ],
    "io_out": [
      16,
      4,
      -12,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(mul_n(input,-4)),12)),30)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(add_n(add_n(sort_des([-4, -5]),5),-1),25)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(input),5),-1),25)"
  },
  {
    "input": "input : list = [-5, 4, 2, 4, 0, -2]\noutput : list = [5, 2, 0, -2, -4, -4]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(mul_n([-5, 4, 2, 4, 0, -2],-1))),46))",
    "io_inp": [
      -5,
      4,
      2,
      4,
      0,
      -2
    ],
    "io_out": [
      5,
      2,
      0,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(mul_n(input,-1))),46))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [4, -4]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(sub_n([-3, 5],-2),1),-4)),1)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(sub_n(input,-2),1),-4)),1)"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(take([-1, -4, 1],1)),-1),5),5)",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(take(input,1)),-1),5),5)"
  },
  {
    "input": "input : list = [3, -1, -5]\noutput : list = [-40, -20, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sort_asc([3, -1, -5]),-5))),-5)",
    "io_inp": [
      3,
      -1,
      -5
    ],
    "io_out": [
      -40,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sort_asc(input),-5))),-5)"
  },
  {
    "input": "input : list = [2, -5, -4, -1, -4]\noutput : list = [3, -4, -3, 0, -3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(add_n([2, -5, -4, -1, -4],-3),16),-3),4),-5)",
    "io_inp": [
      2,
      -5,
      -4,
      -1,
      -4
    ],
    "io_out": [
      3,
      -4,
      -3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(add_n(input,-3),16),-3),4),-5)"
  },
  {
    "input": "input : list = [3, -3, 4, -1]\noutput : list = [-2, -8, -1, -6]",
    "output": "generated_output : list = add_n([3, -3, 4, -1],-5)",
    "io_inp": [
      3,
      -3,
      4,
      -1
    ],
    "io_out": [
      -2,
      -8,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, -3, -3, -5]\noutput : list = [-15, 6, 6, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(sub_n([4, -3, -3, -5],4),13),-3),2),-3)",
    "io_inp": [
      4,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -15,
      6,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(sub_n(input,4),13),-3),2),-3)"
  },
  {
    "input": "input : list = [3, 0, 5, 4]\noutput : list = [-3, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(add_n([3, 0, 5, 4],-3))",
    "io_inp": [
      3,
      0,
      5,
      4
    ],
    "io_out": [
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [3, -5, 5, 4, 4, 3]\noutput : list = [-7, 1, 1, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse(reverse([3, -5, 5, 4, 4, 3])),2)))",
    "io_inp": [
      3,
      -5,
      5,
      4,
      4,
      3
    ],
    "io_out": [
      -7,
      1,
      1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(reverse(input)),2)))"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [-9, -12, -13]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sub_n([1, -3, -2],2),-3)),5))",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      -9,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sub_n(input,2),-3)),5))"
  },
  {
    "input": "input : list = [5, 0, -2, -2]\noutput : list = [-2, -2, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(reverse([5, 0, -2, -2])))))",
    "io_inp": [
      5,
      0,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, -5, 3, 4, -4]\noutput : list = [-6, -4]",
    "output": "generated_output : list = reverse(add_n(add_n(take(take([-3, -5, 3, 4, -4],2),4),1),-2))",
    "io_inp": [
      -3,
      -5,
      3,
      4,
      -4
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(take(input,2),4),1),-2))"
  },
  {
    "input": "input : list = [-2, 4, -1, -3, 5, 1]\noutput : list = [4, 16, 6, 2, 18, 10]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(mul_n([-2, 4, -1, -3, 5, 1],2))),4),4)",
    "io_inp": [
      -2,
      4,
      -1,
      -3,
      5,
      1
    ],
    "io_out": [
      4,
      16,
      6,
      2,
      18,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(mul_n(input,2))),4),4)"
  },
  {
    "input": "input : list = [-2, 3, 4, 4, 2, 1]\noutput : list = [2, 4, 4, 3, -2]",
    "output": "generated_output : list = drop(reverse([-2, 3, 4, 4, 2, 1]),1)",
    "io_inp": [
      -2,
      3,
      4,
      4,
      2,
      1
    ],
    "io_out": [
      2,
      4,
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(reverse(input),1)"
  },
  {
    "input": "input : list = [3, 3, -4, 5, 3]\noutput : list = [-13, -6, -6, -6, -4]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n([3, 3, -4, 5, 3],-5),-1),5)))",
    "io_inp": [
      3,
      3,
      -4,
      5,
      3
    ],
    "io_out": [
      -13,
      -6,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n(input,-5),-1),5)))"
  },
  {
    "input": "input : list = [5, 1, 3, 0]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(take([5, 1, 3, 0],1),-2),2),4),2)",
    "io_inp": [
      5,
      1,
      3,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(take(input,1),-2),2),4),2)"
  },
  {
    "input": "input : list = [-2, 1, -2, -2, -4, 1]\noutput : list = [6, 6, 3, 3, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n(reverse([-2, 1, -2, -2, -4, 1]),-5))",
    "io_inp": [
      -2,
      1,
      -2,
      -2,
      -4,
      1
    ],
    "io_out": [
      6,
      6,
      3,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [4, -1, -1, -4, 4, -4]\noutput : list = [9, 9, 4, 4, 1, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([4, -1, -1, -4, 4, -4]),-5))",
    "io_inp": [
      4,
      -1,
      -1,
      -4,
      4,
      -4
    ],
    "io_out": [
      9,
      9,
      4,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-1, 5, -4, 4]\noutput : list = [-6, 0, -9, -1]",
    "output": "generated_output : list = add_n([-1, 5, -4, 4],-5)",
    "io_inp": [
      -1,
      5,
      -4,
      4
    ],
    "io_out": [
      -6,
      0,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -2, -4, 1, -2, 1]\noutput : list = [-4, -3, -2, -2, 1, 1]",
    "output": "generated_output : list = sort_asc([-3, -2, -4, 1, -2, 1])",
    "io_inp": [
      -3,
      -2,
      -4,
      1,
      -2,
      1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, 5, -3, 5]\noutput : list = [8, 8, 8, 4, 0]",
    "output": "generated_output : list = add_n(sort_des([1, 5, 5, -3, 5]),3)",
    "io_inp": [
      1,
      5,
      5,
      -3,
      5
    ],
    "io_out": [
      8,
      8,
      8,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [3, 0, 3, 0, -3, -2]\noutput : list = [3, 0, -2, -3]",
    "output": "generated_output : list = sort_des(drop([3, 0, 3, 0, -3, -2],2))",
    "io_inp": [
      3,
      0,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [1, -1, -1, -4, 1, 0]\noutput : list = [-45, 55, 55, 205, -45, 5]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(mul_n([1, -1, -1, -4, 1, 0],-2),-5),-5),-5),53)",
    "io_inp": [
      1,
      -1,
      -1,
      -4,
      1,
      0
    ],
    "io_out": [
      -45,
      55,
      55,
      205,
      -45,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(mul_n(input,-2),-5),-5),-5),53)"
  },
  {
    "input": "input : list = [4, 2, -2, -3, -2]\noutput : list = [4, 2, -2, -2, -3]",
    "output": "generated_output : list = sort_des(take(reverse([4, 2, -2, -3, -2]),22))",
    "io_inp": [
      4,
      2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      4,
      2,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),22))"
  },
  {
    "input": "input : list = [-1, -2, -5]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(reverse([-1, -2, -5]),1)),3),46)",
    "io_inp": [
      -1,
      -2,
      -5
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(reverse(input),1)),3),46)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [19, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(mul_n([-4, 1],-3)),-2),4),-1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      19,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(mul_n(input,-3)),-2),4),-1)"
  },
  {
    "input": "input : list = [-4, -4, 0, -3]\noutput : list = [-7, -7, -6, -3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(sub_n([-4, -4, 0, -3],4),1))))",
    "io_inp": [
      -4,
      -4,
      0,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(sub_n(input,4),1))))"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([-2, -4, 5],1)))",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [5, 0, -3, -5]\noutput : list = [5, 0, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([5, 0, -3, -5])))",
    "io_inp": [
      5,
      0,
      -3,
      -5
    ],
    "io_out": [
      5,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [23, 3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_des(sub_n([1, 5],2)),5),-3),5)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      23,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_des(sub_n(input,2)),5),-3),5)"
  },
  {
    "input": "input : list = [-4, 5, 1, -5, 1]\noutput : list = [-25, -20, 5, 5, 25]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(sort_des([-4, 5, 1, -5, 1]),5)),26))",
    "io_inp": [
      -4,
      5,
      1,
      -5,
      1
    ],
    "io_out": [
      -25,
      -20,
      5,
      5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(sort_des(input),5)),26))"
  },
  {
    "input": "input : list = [-3, 2, -1, -2, -3]\noutput : list = [-18, -6, -2, 2, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n([-3, 2, -1, -2, -3],-4),5)),-5))",
    "io_inp": [
      -3,
      2,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -18,
      -6,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n(input,-4),5)),-5))"
  },
  {
    "input": "input : list = [5, -1, 4, -1, 4]\noutput : list = [-1, -1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, -1, 4, -1, 4]))",
    "io_inp": [
      5,
      -1,
      4,
      -1,
      4
    ],
    "io_out": [
      -1,
      -1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [12, 4]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n([5, -3],2)),-5)))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n(input,2)),-5)))"
  },
  {
    "input": "input : list = [-5, -3, -2, 1]\noutput : list = [-8, -6, -5, -2]",
    "output": "generated_output : list = sub_n([-5, -3, -2, 1],3)",
    "io_inp": [
      -5,
      -3,
      -2,
      1
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, -5, 1, -5]\noutput : list = [-5, 1, -5, 0]",
    "output": "generated_output : list = take(reverse([0, -5, 1, -5]),9)",
    "io_inp": [
      0,
      -5,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [-5, -3, 3, 1, 1]\noutput : list = [6, 4, 4, 0, -2]",
    "output": "generated_output : list = add_n(take(sort_des([-5, -3, 3, 1, 1]),8),3)",
    "io_inp": [
      -5,
      -3,
      3,
      1,
      1
    ],
    "io_out": [
      6,
      4,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),8),3)"
  },
  {
    "input": "input : list = [5, -4, -4, -2]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_asc(take([5, -4, -4, -2],1)))",
    "io_inp": [
      5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-4, 2, -4]\noutput : list = [0, 6, 0]",
    "output": "generated_output : list = sub_n([-4, 2, -4],-4)",
    "io_inp": [
      -4,
      2,
      -4
    ],
    "io_out": [
      0,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [2, -3, 0, 1]\noutput : list = [2, 1, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc([2, -3, 0, 1]))",
    "io_inp": [
      2,
      -3,
      0,
      1
    ],
    "io_out": [
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [-12]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take([-5, 4, -3],1),-4),3))",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(input,1),-4),3))"
  },
  {
    "input": "input : list = [5, -4, -3, -2, -2]\noutput : list = [10, -4, -4, -6, -8]",
    "output": "generated_output : list = mul_n(sort_des(take(take(sort_asc([5, -4, -3, -2, -2]),6),6)),2)",
    "io_inp": [
      5,
      -4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      10,
      -4,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(sort_asc(input),6),6)),2)"
  },
  {
    "input": "input : list = [4, -2, -3, 4, -5, 1]\noutput : list = [0, 9, 18, 21, 27]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(add_n([4, -2, -3, 4, -5, 1],-4)),5),-3))",
    "io_inp": [
      4,
      -2,
      -3,
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      9,
      18,
      21,
      27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(add_n(input,-4)),5),-3))"
  },
  {
    "input": "input : list = [-2, 2, 5, -1, 0, 4]\noutput : list = [-1, 0, 3, 6]",
    "output": "generated_output : list = add_n(sort_asc(take([-2, 2, 5, -1, 0, 4],4)),1)",
    "io_inp": [
      -2,
      2,
      5,
      -1,
      0,
      4
    ],
    "io_out": [
      -1,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,4)),1)"
  },
  {
    "input": "input : list = [5, -4, -5, 4, 4, 4]\noutput : list = [1, -8, -9, 0, 0, 0]",
    "output": "generated_output : list = add_n([5, -4, -5, 4, 4, 4],-4)",
    "io_inp": [
      5,
      -4,
      -5,
      4,
      4,
      4
    ],
    "io_out": [
      1,
      -8,
      -9,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [-7, -5, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sort_asc([3, 1, 4]),-2))),1)",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sort_asc(input),-2))),1)"
  },
  {
    "input": "input : list = [0, 4, 5]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(drop([0, 4, 5],1),4))),10)",
    "io_inp": [
      0,
      4,
      5
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(drop(input,1),4))),10)"
  },
  {
    "input": "input : list = [-2, -2, 3, 0]\noutput : list = [0, -3, -5, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des([-2, -2, 3, 0]),3),20))",
    "io_inp": [
      -2,
      -2,
      3,
      0
    ],
    "io_out": [
      0,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(input),3),20))"
  },
  {
    "input": "input : list = [1, -2, 5, -3, 4, 0]\noutput : list = [-2, -3, -6, -7, -9, -10]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(add_n([1, -2, 5, -3, 4, 0],-2))),1),-5)",
    "io_inp": [
      1,
      -2,
      5,
      -3,
      4,
      0
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(add_n(input,-2))),1),-5)"
  },
  {
    "input": "input : list = [1, 5, 1, -2, 3]\noutput : list = [5, 25]",
    "output": "generated_output : list = mul_n(take([1, 5, 1, -2, 3],2),5)",
    "io_inp": [
      1,
      5,
      1,
      -2,
      3
    ],
    "io_out": [
      5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),5)"
  },
  {
    "input": "input : list = [0, 0, 0, -3, -2]\noutput : list = [27, 42, -3, -3, -3]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(mul_n([0, 0, 0, -3, -2],5),1),9)),-3)",
    "io_inp": [
      0,
      0,
      0,
      -3,
      -2
    ],
    "io_out": [
      27,
      42,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(mul_n(input,5),1),9)),-3)"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [5, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(reverse([4, -4, -4]),17),5),4))",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(reverse(input),17),5),4))"
  },
  {
    "input": "input : list = [1, -3, -1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(add_n(take(drop(mul_n([1, -3, -1],-4),2),25),-2))",
    "io_inp": [
      1,
      -3,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(drop(mul_n(input,-4),2),25),-2))"
  },
  {
    "input": "input : list = [1, -4, 2, -3, 0]\noutput : list = [0, -3, 2]",
    "output": "generated_output : list = reverse(drop([1, -4, 2, -3, 0],2))",
    "io_inp": [
      1,
      -4,
      2,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-5, -4, -3, -2, 0, 0]\noutput : list = [2, 2, 0, -1, -2, -3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n([-5, -4, -3, -2, 0, 0],1))),3))",
    "io_inp": [
      -5,
      -4,
      -3,
      -2,
      0,
      0
    ],
    "io_out": [
      2,
      2,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n(input,1))),3))"
  },
  {
    "input": "input : list = [4, 0, 4, 5, 2, 4]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sort_asc(reverse(add_n(drop(sort_asc([4, 0, 4, 5, 2, 4]),3),-5)))",
    "io_inp": [
      4,
      0,
      4,
      5,
      2,
      4
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(drop(sort_asc(input),3),-5)))"
  },
  {
    "input": "input : list = [2, 2, 1, 2, 1]\noutput : list = [-6, -6, -6, -3, -3]",
    "output": "generated_output : list = sort_asc(mul_n([2, 2, 1, 2, 1],-3))",
    "io_inp": [
      2,
      2,
      1,
      2,
      1
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 1, -2]\noutput : list = [-10, -9, -5, -6, -4, -7]",
    "output": "generated_output : list = add_n([-5, -4, 0, -1, 1, -2],-5)",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      1,
      -2
    ],
    "io_out": [
      -10,
      -9,
      -5,
      -6,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = reverse(sort_des([1, 3, -1]))",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 5, -2]\noutput : list = [1, -2, -6]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(add_n([2, 5, -2],1)),5),33))",
    "io_inp": [
      2,
      5,
      -2
    ],
    "io_out": [
      1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(add_n(input,1)),5),33))"
  },
  {
    "input": "input : list = [4, 5, 2, 3, -1, 0]\noutput : list = [-1, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(drop([4, 5, 2, 3, -1, 0],2)))",
    "io_inp": [
      4,
      5,
      2,
      3,
      -1,
      0
    ],
    "io_out": [
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [-4, 1, 5, 2, 5, 3]\noutput : list = [6, -14, -18, -22, -30, -30]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(mul_n(mul_n([-4, 1, 5, 2, 5, 3],-1),4),5),5))",
    "io_inp": [
      -4,
      1,
      5,
      2,
      5,
      3
    ],
    "io_out": [
      6,
      -14,
      -18,
      -22,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(mul_n(mul_n(input,-1),4),5),5))"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [2, -2, -8]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(mul_n([-1, 4, 1],2),-1))),3)",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(mul_n(input,2),-1))),3)"
  },
  {
    "input": "input : list = [5, 5, 5, -4, -3]\noutput : list = [-3, -4, 5, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, 5, -4, -3])",
    "io_inp": [
      5,
      5,
      5,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, -4, -2, -1, 5]\noutput : list = [6, 0, -1, -3, 5, 0]",
    "output": "generated_output : list = reverse(sub_n(sub_n([-1, 4, -4, -2, -1, 5],4),-5))",
    "io_inp": [
      -1,
      4,
      -4,
      -2,
      -1,
      5
    ],
    "io_out": [
      6,
      0,
      -1,
      -3,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,4),-5))"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [18, 2, -2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-5, 0, -1]),-4),2)",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      18,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),-4),2)"
  },
  {
    "input": "input : list = [2, -2, 4, 0, 5]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(take([2, -2, 4, 0, 5],2)),10)))",
    "io_inp": [
      2,
      -2,
      4,
      0,
      5
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(take(input,2)),10)))"
  },
  {
    "input": "input : list = [-4, -2, 1, 4]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(take([-4, -2, 1, 4],2),2),8)))",
    "io_inp": [
      -4,
      -2,
      1,
      4
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(take(input,2),2),8)))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [3, -1]",
    "output": "generated_output : list = sub_n([0, -4],-3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 3, 2, -4]\noutput : list = [2, 7, 8, 9]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(reverse([1, 3, 2, -4]),-5)),1),8)",
    "io_inp": [
      1,
      3,
      2,
      -4
    ],
    "io_out": [
      2,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(reverse(input),-5)),1),8)"
  },
  {
    "input": "input : list = [2, 4, 5, -2]\noutput : list = [-12, -20, -24, 4]",
    "output": "generated_output : list = mul_n(take(take(add_n([2, 4, 5, -2],1),16),14),-4)",
    "io_inp": [
      2,
      4,
      5,
      -2
    ],
    "io_out": [
      -12,
      -20,
      -24,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(input,1),16),14),-4)"
  },
  {
    "input": "input : list = [-1, 0, -5, -1, -5]\noutput : list = [-5, -4, -9, -5, -9]",
    "output": "generated_output : list = add_n(take(sub_n([-1, 0, -5, -1, -5],5),5),1)",
    "io_inp": [
      -1,
      0,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -9,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,5),5),1)"
  },
  {
    "input": "input : list = [1, 3, 3, 2, 1, 4]\noutput : list = [1, 1, 2, 3, 3, 4]",
    "output": "generated_output : list = reverse(sort_des([1, 3, 3, 2, 1, 4]))",
    "io_inp": [
      1,
      3,
      3,
      2,
      1,
      4
    ],
    "io_out": [
      1,
      1,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -4, -4, -1, 1, 0]\noutput : list = [-9, -9, -9, -6, -4, -5]",
    "output": "generated_output : list = sub_n([-4, -4, -4, -1, 1, 0],5)",
    "io_inp": [
      -4,
      -4,
      -4,
      -1,
      1,
      0
    ],
    "io_out": [
      -9,
      -9,
      -9,
      -6,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, -5, -3, 5]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(sub_n([5, -5, -3, 5],2))),2))",
    "io_inp": [
      5,
      -5,
      -3,
      5
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(sub_n(input,2))),2))"
  },
  {
    "input": "input : list = [2, -5, 1, 4]\noutput : list = [-100, 20, 40, 80]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(reverse([2, -5, 1, 4]),-5))),-4)",
    "io_inp": [
      2,
      -5,
      1,
      4
    ],
    "io_out": [
      -100,
      20,
      40,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(reverse(input),-5))),-4)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n([5, -2],-4),5),-4))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(input,-4),5),-4))"
  },
  {
    "input": "input : list = [0, 1, 2]\noutput : list = [0]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(take([0, 1, 2],1)))))",
    "io_inp": [
      0,
      1,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [-2, -3, -4, 2]\noutput : list = [-6, -7, -8, -2]",
    "output": "generated_output : list = take(sub_n(reverse(take(reverse([-2, -3, -4, 2]),8)),4),12)",
    "io_inp": [
      -2,
      -3,
      -4,
      2
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(reverse(input),8)),4),12)"
  },
  {
    "input": "input : list = [1, -5, 4, -5, -4]\noutput : list = [4, 1, -4, -5, -5]",
    "output": "generated_output : list = sort_des([1, -5, 4, -5, -4])",
    "io_inp": [
      1,
      -5,
      4,
      -5,
      -4
    ],
    "io_out": [
      4,
      1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, -4, 5, 3]\noutput : list = [2, 0, -1, -7]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(add_n([3, 2, -4, 5, 3],-3),4))))",
    "io_inp": [
      3,
      2,
      -4,
      5,
      3
    ],
    "io_out": [
      2,
      0,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(add_n(input,-3),4))))"
  },
  {
    "input": "input : list = [4, 0, 5, -3, -5, 1]\noutput : list = [10, -6, -10, 2]",
    "output": "generated_output : list = mul_n(drop([4, 0, 5, -3, -5, 1],2),2)",
    "io_inp": [
      4,
      0,
      5,
      -3,
      -5,
      1
    ],
    "io_out": [
      10,
      -6,
      -10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),2)"
  },
  {
    "input": "input : list = [4, 1, 2, 2, 1, 2]\noutput : list = [4, 2, 2, 2, 1, 1]",
    "output": "generated_output : list = sort_des([4, 1, 2, 2, 1, 2])",
    "io_inp": [
      4,
      1,
      2,
      2,
      1,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 2, 5, -5, 4, 0]\noutput : list = [-7, -2, -2, 0, 2, 3]",
    "output": "generated_output : list = take(take(sort_asc(sub_n([0, 2, 5, -5, 4, 0],2)),36),41)",
    "io_inp": [
      0,
      2,
      5,
      -5,
      4,
      0
    ],
    "io_out": [
      -7,
      -2,
      -2,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(input,2)),36),41)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [24, 16]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse(sub_n([5, 3],-3)),-2)),4)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      24,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(sub_n(input,-3)),-2)),4)"
  },
  {
    "input": "input : list = [-5, 2, 4, 4, -4, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(take([-5, 2, 4, 4, -4, 3],1)))))",
    "io_inp": [
      -5,
      2,
      4,
      4,
      -4,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [3, 5, -5, 3, -2]\noutput : list = [-5, 3, -2]",
    "output": "generated_output : list = drop([3, 5, -5, 3, -2],2)",
    "io_inp": [
      3,
      5,
      -5,
      3,
      -2
    ],
    "io_out": [
      -5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -3, -5, -4, -3, 0]\noutput : list = [0, 1, 2, 2, 5, 8]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(reverse([3, -3, -5, -4, -3, 0]),-5))))",
    "io_inp": [
      3,
      -3,
      -5,
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      1,
      2,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [-2, -1, 1, 0, -5]\noutput : list = [5, 0, -5, -10, -25]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(sub_n([-2, -1, 1, 0, -5],4)),-2),-2),5)",
    "io_inp": [
      -2,
      -1,
      1,
      0,
      -5
    ],
    "io_out": [
      5,
      0,
      -5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(sub_n(input,4)),-2),-2),5)"
  },
  {
    "input": "input : list = [-4, 0, -5, -1, -3, -5]\noutput : list = [6, 8, 12, 14, 16, 16]",
    "output": "generated_output : list = take(mul_n(sort_des(take(sub_n([-4, 0, -5, -1, -3, -5],3),17)),-2),54)",
    "io_inp": [
      -4,
      0,
      -5,
      -1,
      -3,
      -5
    ],
    "io_out": [
      6,
      8,
      12,
      14,
      16,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(sub_n(input,3),17)),-2),54)"
  },
  {
    "input": "input : list = [-2, -2, -4, 5, 0]\noutput : list = [-10, 0, 8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse(drop([-2, -2, -4, 5, 0],2)))),-2)",
    "io_inp": [
      -2,
      -2,
      -4,
      5,
      0
    ],
    "io_out": [
      -10,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(drop(input,2)))),-2)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [2, 5, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(sub_n([4, -4, -1],-3),4)),-4),-1)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      2,
      5,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(sub_n(input,-3),4)),-4),-1)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-27]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(take([-5, -3, 3],1),5))),-2)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(take(input,1),5))),-2)"
  },
  {
    "input": "input : list = [-5, 2, -4, -2, 2, 0]\noutput : list = [2, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(drop([-5, 2, -4, -2, 2, 0],2)),28)))",
    "io_inp": [
      -5,
      2,
      -4,
      -2,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(drop(input,2)),28)))"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [10, -10, -15]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(mul_n([-2, -3, 2],5)),12),-2),2)",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      10,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(mul_n(input,5)),12),-2),2)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-24, -4]",
    "output": "generated_output : list = take(take(mul_n(sub_n(drop([-5, -3, 2],1),3),4),30),11)",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -24,
      -4
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(drop(input,1),3),4),30),11)"
  },
  {
    "input": "input : list = [-3, 4, -4, -2, 0]\noutput : list = [-3, -2, -1, 1, 5]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n([-3, 4, -4, -2, 0],5)),4)))",
    "io_inp": [
      -3,
      4,
      -4,
      -2,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n(input,5)),4)))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [12, 10]",
    "output": "generated_output : list = sub_n(reverse(sub_n([3, 5],-4)),-3)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      12,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,-4)),-3)"
  },
  {
    "input": "input : list = [-4, -4, -5, -4]\noutput : list = [-4, -5, -4, -4]",
    "output": "generated_output : list = take(reverse([-4, -4, -5, -4]),21)",
    "io_inp": [
      -4,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),21)"
  },
  {
    "input": "input : list = [-1, -2, -1, 0, 0, -4]\noutput : list = [-8, -6, -5, -5, -4, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sub_n([-1, -2, -1, 0, 0, -4],4))),2),-2)",
    "io_inp": [
      -1,
      -2,
      -1,
      0,
      0,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sub_n(input,4))),2),-2)"
  },
  {
    "input": "input : list = [5, 2, 2, -4, -2]\noutput : list = [-10, -4, -4, 4, 8]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc([5, 2, 2, -4, -2])),-2)))",
    "io_inp": [
      5,
      2,
      2,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -4,
      -4,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [0, 1, 4, -5, -2]\noutput : list = [15, 18, 27, 0, 9]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(sub_n([0, 1, 4, -5, -2],-4),6),-1),-2),3)",
    "io_inp": [
      0,
      1,
      4,
      -5,
      -2
    ],
    "io_out": [
      15,
      18,
      27,
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(sub_n(input,-4),6),-1),-2),3)"
  },
  {
    "input": "input : list = [-1, -5, -2, -5, 1]\noutput : list = [4, 2, 1, -2, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-1, -5, -2, -5, 1]),1),4)",
    "io_inp": [
      -1,
      -5,
      -2,
      -5,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),1),4)"
  },
  {
    "input": "input : list = [0, 3, 5, 3, 4]\noutput : list = [0, 3, 5, 3, 4]",
    "output": "generated_output : list = reverse(mul_n(reverse([0, 3, 5, 3, 4]),1))",
    "io_inp": [
      0,
      3,
      5,
      3,
      4
    ],
    "io_out": [
      0,
      3,
      5,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),1))"
  },
  {
    "input": "input : list = [-3, 2, 5, 3, 4, 1]\noutput : list = [-10, -8, -6, -4, -2, 6]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 2, 5, 3, 4, 1],-2))",
    "io_inp": [
      -3,
      2,
      5,
      3,
      4,
      1
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -4,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [3, 4, -3, -5, 3]\noutput : list = [19, -16, -11]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(take([3, 4, -3, -5, 3],3),-1),5)),-4)",
    "io_inp": [
      3,
      4,
      -3,
      -5,
      3
    ],
    "io_out": [
      19,
      -16,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(take(input,3),-1),5)),-4)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(add_n([-2, -5],4),8)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),8)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [40]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(mul_n([-2, 4],4)),24),1),-5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      40
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(mul_n(input,4)),24),1),-5)"
  },
  {
    "input": "input : list = [1, -3, -5, 1, -2]\noutput : list = [-6, 2]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(take([1, -3, -5, 1, -2],3),2),-3),-1),-2)",
    "io_inp": [
      1,
      -3,
      -5,
      1,
      -2
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(take(input,3),2),-3),-1),-2)"
  },
  {
    "input": "input : list = [0, 2, 5, 1]\noutput : list = [6, 9, 5]",
    "output": "generated_output : list = sub_n(drop([0, 2, 5, 1],1),-4)",
    "io_inp": [
      0,
      2,
      5,
      1
    ],
    "io_out": [
      6,
      9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-9, 1]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sub_n([5, -5],4))),11))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -9,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sub_n(input,4))),11))"
  },
  {
    "input": "input : list = [2, -2, -2]\noutput : list = [0, -8, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n([2, -2, -2],2)),-4))",
    "io_inp": [
      2,
      -2,
      -2
    ],
    "io_out": [
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(input,2)),-4))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse([-4, -5])))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [3, 1, 1, -1, 3]\noutput : list = [1, 1, -1, -1, -3]",
    "output": "generated_output : list = sort_des(take(sub_n([3, 1, 1, -1, 3],2),23))",
    "io_inp": [
      3,
      1,
      1,
      -1,
      3
    ],
    "io_out": [
      1,
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,2),23))"
  },
  {
    "input": "input : list = [3, -5, 2, -5, 0, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(mul_n([3, -5, 2, -5, 0, 0],-3),1))),-1)",
    "io_inp": [
      3,
      -5,
      2,
      -5,
      0,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(mul_n(input,-3),1))),-1)"
  },
  {
    "input": "input : list = [5, -1, -4, -4, 3]\noutput : list = [-4, -4, -1, 3, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(reverse([5, -1, -4, -4, 3])))))",
    "io_inp": [
      5,
      -1,
      -4,
      -4,
      3
    ],
    "io_out": [
      -4,
      -4,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [2, -3, 4, -4, 1, 4]\noutput : list = [-16, 0, -14, -4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take([2, -3, 4, -4, 1, 4],4)),4),2)",
    "io_inp": [
      2,
      -3,
      4,
      -4,
      1,
      4
    ],
    "io_out": [
      -16,
      0,
      -14,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(input,4)),4),2)"
  },
  {
    "input": "input : list = [-2, 2, 2, 3]\noutput : list = [57]",
    "output": "generated_output : list = mul_n(drop(mul_n(sub_n(mul_n([-2, 2, 2, 3],5),-4),-1),3),-3)",
    "io_inp": [
      -2,
      2,
      2,
      3
    ],
    "io_out": [
      57
    ],
    "output_masked": "generated_output : list = mul_n(drop(mul_n(sub_n(mul_n(input,5),-4),-1),3),-3)"
  },
  {
    "input": "input : list = [1, 2, -3, 5, -1]\noutput : list = [5, 6, 1, 9, 3]",
    "output": "generated_output : list = sub_n([1, 2, -3, 5, -1],-4)",
    "io_inp": [
      1,
      2,
      -3,
      5,
      -1
    ],
    "io_out": [
      5,
      6,
      1,
      9,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-8, -8, -7]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sort_des([-3, -4, -4]),5),7)),-4)",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sort_des(input),5),7)),-4)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [1, -3, -8]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(sort_des([5, -4, 1]),10),1)),-4)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(sort_des(input),10),1)),-4)"
  },
  {
    "input": "input : list = [-5, -2, -5, -1, 5]\noutput : list = [10, 10, 4, 2, -10]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(reverse([-5, -2, -5, -1, 5]),-2),1)),46)",
    "io_inp": [
      -5,
      -2,
      -5,
      -1,
      5
    ],
    "io_out": [
      10,
      10,
      4,
      2,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(reverse(input),-2),1)),46)"
  },
  {
    "input": "input : list = [3, 0, 0]\noutput : list = [12, 3, 3]",
    "output": "generated_output : list = mul_n(add_n([3, 0, 0],1),3)",
    "io_inp": [
      3,
      0,
      0
    ],
    "io_out": [
      12,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),3)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-4, -10]",
    "output": "generated_output : list = reverse(sort_asc(add_n([1, -5],-5)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-5)))"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [50, 50, 50]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n([5, 5, 5],2),-3),1),5))",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      50,
      50,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n(input,2),-3),1),5))"
  },
  {
    "input": "input : list = [-3, 0, -1, 5, 0]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(take([-3, 0, -1, 5, 0],3)))),45)",
    "io_inp": [
      -3,
      0,
      -1,
      5,
      0
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(take(input,3)))),45)"
  },
  {
    "input": "input : list = [5, -4, -1, 5]\noutput : list = [5, 5, -1, -4]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(add_n([5, -4, -1, 5],1)),1)),30)",
    "io_inp": [
      5,
      -4,
      -1,
      5
    ],
    "io_out": [
      5,
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(add_n(input,1)),1)),30)"
  },
  {
    "input": "input : list = [-4, -5, 4, -5]\noutput : list = [-9, -10]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(take([-4, -5, 4, -5],2),-3)),2))",
    "io_inp": [
      -4,
      -5,
      4,
      -5
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(take(input,2),-3)),2))"
  },
  {
    "input": "input : list = [4, 4, 5, 4, 5]\noutput : list = [5, 4, 5, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, 5, 4, 5])",
    "io_inp": [
      4,
      4,
      5,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-2, -4, 2],1)))",
    "io_inp": [
      -2,
      -4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [1, 5, 0, 5, -1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(take([1, 5, 0, 5, -1],2),-4),1)))",
    "io_inp": [
      1,
      5,
      0,
      5,
      -1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(take(input,2),-4),1)))"
  },
  {
    "input": "input : list = [-2, -3, -4, -4]\noutput : list = [-3, -3, -2, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(add_n([-2, -3, -4, -4],-1)),-2)))",
    "io_inp": [
      -2,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(add_n(input,-1)),-2)))"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-12, 0, -9]",
    "output": "generated_output : list = reverse(sub_n(mul_n([2, -1, 3],-3),3))",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -12,
      0,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-3),3))"
  },
  {
    "input": "input : list = [2, 5, -3, -5, -5]\noutput : list = [-7, -7, -5, 3, 0]",
    "output": "generated_output : list = reverse(sub_n([2, 5, -3, -5, -5],2))",
    "io_inp": [
      2,
      5,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -5,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse(add_n(take(reverse([-1, -2]),1),3)),14)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(reverse(input),1),3)),14)"
  },
  {
    "input": "input : list = [-5, -4, 3, -2]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(take(take([-5, -4, 3, -2],2),16))",
    "io_inp": [
      -5,
      -4,
      3,
      -2
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,2),16))"
  },
  {
    "input": "input : list = [0, 0, 5, 3, 1, 0]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(take([0, 0, 5, 3, 1, 0],1)),30)))",
    "io_inp": [
      0,
      0,
      5,
      3,
      1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(take(input,1)),30)))"
  },
  {
    "input": "input : list = [-5, -1, 1, 1, -2, -5]\noutput : list = [24, 24, 12, 8, 0, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sub_n([-5, -1, 1, 1, -2, -5],1))),-4))",
    "io_inp": [
      -5,
      -1,
      1,
      1,
      -2,
      -5
    ],
    "io_out": [
      24,
      24,
      12,
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sub_n(input,1))),-4))"
  },
  {
    "input": "input : list = [-3, 0, 4, 5, 4, 3]\noutput : list = [-12, -6, 0, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(sort_asc([-3, 0, 4, 5, 4, 3]),3)),2))",
    "io_inp": [
      -3,
      0,
      4,
      5,
      4,
      3
    ],
    "io_out": [
      -12,
      -6,
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(sort_asc(input),3)),2))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [12, 3]",
    "output": "generated_output : list = take(sub_n(add_n(take(sort_des([-5, 4]),11),3),-5),10)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      12,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(sort_des(input),11),3),-5),10)"
  },
  {
    "input": "input : list = [0, 5, -2, 1]\noutput : list = [5, 10, 3, 6]",
    "output": "generated_output : list = sub_n([0, 5, -2, 1],-5)",
    "io_inp": [
      0,
      5,
      -2,
      1
    ],
    "io_out": [
      5,
      10,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -4, 3, 0, 1, 1]\noutput : list = [20, 10, 10, 5, -15, -20]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_des([-5, -4, 3, 0, 1, 1]),1),5))",
    "io_inp": [
      -5,
      -4,
      3,
      0,
      1,
      1
    ],
    "io_out": [
      20,
      10,
      10,
      5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_des(input),1),5))"
  },
  {
    "input": "input : list = [1, 2, -2, -2, 5]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take([1, 2, -2, -2, 5],1),2)),1),5)",
    "io_inp": [
      1,
      2,
      -2,
      -2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take(input,1),2)),1),5)"
  },
  {
    "input": "input : list = [-4, -3, 3, 2, -3]\noutput : list = [6, -6, -4, 6]",
    "output": "generated_output : list = mul_n(drop([-4, -3, 3, 2, -3],1),-2)",
    "io_inp": [
      -4,
      -3,
      3,
      2,
      -3
    ],
    "io_out": [
      6,
      -6,
      -4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = reverse(sort_asc([2, -5]))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -4, 5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(take([1, -4, 5],1),-5),4)))",
    "io_inp": [
      1,
      -4,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(take(input,1),-5),4)))"
  },
  {
    "input": "input : list = [-2, 0, 4, -3, -4]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(reverse([-2, 0, 4, -3, -4])),1)),-1)",
    "io_inp": [
      -2,
      0,
      4,
      -3,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(reverse(input)),1)),-1)"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [-48, -12, 48]",
    "output": "generated_output : list = mul_n(take(take(mul_n(sort_des([1, 4, -4]),4),6),29),-3)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      -48,
      -12,
      48
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(sort_des(input),4),6),29),-3)"
  },
  {
    "input": "input : list = [1, -4, -1, 5, 3, -3]\noutput : list = [5, 3, 1, -1, -3, -4]",
    "output": "generated_output : list = sort_des([1, -4, -1, 5, 3, -3])",
    "io_inp": [
      1,
      -4,
      -1,
      5,
      3,
      -3
    ],
    "io_out": [
      5,
      3,
      1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 1, 1]\noutput : list = [-15, 5, 5]",
    "output": "generated_output : list = mul_n([-3, 1, 1],5)",
    "io_inp": [
      -3,
      1,
      1
    ],
    "io_out": [
      -15,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [25, 25, -23]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(mul_n([-1, 3, -1],-4),5),3),-2))",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      25,
      25,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(mul_n(input,-4),5),3),-2))"
  },
  {
    "input": "input : list = [2, -3, 3, 4, 0]\noutput : list = [0, -1, -2, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_asc([2, -3, 3, 4, 0])),-5),1))",
    "io_inp": [
      2,
      -3,
      3,
      4,
      0
    ],
    "io_out": [
      0,
      -1,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_asc(input)),-5),1))"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(add_n([4, 0, -1],2))),2),34)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(add_n(input,2))),2),34)"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [-25]",
    "output": "generated_output : list = sub_n(add_n(drop(mul_n(add_n([5, -1, -5],-2),4),2),-2),-5)",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(mul_n(add_n(input,-2),4),2),-2),-5)"
  },
  {
    "input": "input : list = [1, -5, 5, 4]\noutput : list = [4, 5, -5, 1]",
    "output": "generated_output : list = reverse(reverse(take(reverse([1, -5, 5, 4]),7)))",
    "io_inp": [
      1,
      -5,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(input),7)))"
  },
  {
    "input": "input : list = [-2, 4, -5, -2, 1, -4]\noutput : list = [7, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des(take([-2, 4, -5, -2, 1, -4],2))),3))",
    "io_inp": [
      -2,
      4,
      -5,
      -2,
      1,
      -4
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(take(input,2))),3))"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [-24, 36, -12]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n(add_n([1, 5, 0],-2),-2),-2)),3)",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      -24,
      36,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(add_n(input,-2),-2),-2)),3)"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [4, -12, -12]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-4, -4, 4],2),4))",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,2),4))"
  },
  {
    "input": "input : list = [-3, 4, 4, -1, 2, 4]\noutput : list = [-8, -1, -1, -6, -3, -1]",
    "output": "generated_output : list = sub_n([-3, 4, 4, -1, 2, 4],5)",
    "io_inp": [
      -3,
      4,
      4,
      -1,
      2,
      4
    ],
    "io_out": [
      -8,
      -1,
      -1,
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, -4, -5, -2, -2, -4]\noutput : list = [-18, -14]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(drop([-4, -4, -5, -2, -2, -4],4),5),11)),2)",
    "io_inp": [
      -4,
      -4,
      -5,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -18,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(drop(input,4),5),11)),2)"
  },
  {
    "input": "input : list = [5, 4, 2, -4, -3, 0]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = sub_n(drop(sort_des(add_n(mul_n([5, 4, 2, -4, -3, 0],-2),4)),3),-5)",
    "io_inp": [
      5,
      4,
      2,
      -4,
      -3,
      0
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(add_n(mul_n(input,-2),4)),3),-5)"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(take(sort_des(take([2, 1, -2],1)),13)),12)",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(take(input,1)),13)),12)"
  },
  {
    "input": "input : list = [5, -3, 2, -2, -1, 1]\noutput : list = [22, 10, 6, -2, -6, -10]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(sort_asc([5, -3, 2, -2, -1, 1])),4),-2),17)",
    "io_inp": [
      5,
      -3,
      2,
      -2,
      -1,
      1
    ],
    "io_out": [
      22,
      10,
      6,
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(sort_asc(input)),4),-2),17)"
  },
  {
    "input": "input : list = [-3, -1, -4, -5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -1, -4, -5],1)",
    "io_inp": [
      -3,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -1, 0]\noutput : list = [-4, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(sort_asc([-3, -1, 0]),7))),-1)",
    "io_inp": [
      -3,
      -1,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(sort_asc(input),7))),-1)"
  },
  {
    "input": "input : list = [-4, -3, 5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(drop([-4, -3, 5, 0],2))",
    "io_inp": [
      -4,
      -3,
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [1, 0, -4]",
    "output": "generated_output : list = sort_des(add_n([3, 2, -2],-2))",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -3, 4],1)",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 5, -4, -2]\noutput : list = [4, 5, 7, 14]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(sort_des([-5, 5, -4, -2])),1),-4),5)",
    "io_inp": [
      -5,
      5,
      -4,
      -2
    ],
    "io_out": [
      4,
      5,
      7,
      14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(sort_des(input)),1),-4),5)"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [6, 6, 3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(add_n([0, 0, 1],-3),-3))),3)",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(add_n(input,-3),-3))),3)"
  },
  {
    "input": "input : list = [-4, -3, -5, 4, -2]\noutput : list = [-64, 26, 41, 56, 71]",
    "output": "generated_output : list = add_n(take(sort_asc(mul_n(mul_n([-4, -3, -5, 4, -2],5),-3)),9),-4)",
    "io_inp": [
      -4,
      -3,
      -5,
      4,
      -2
    ],
    "io_out": [
      -64,
      26,
      41,
      56,
      71
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(mul_n(mul_n(input,5),-3)),9),-4)"
  },
  {
    "input": "input : list = [3, -3, -2, 4]\noutput : list = [8, 7, 2, 1]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(add_n([3, -3, -2, 4],4))),31))",
    "io_inp": [
      3,
      -3,
      -2,
      4
    ],
    "io_out": [
      8,
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(add_n(input,4))),31))"
  },
  {
    "input": "input : list = [-3, -5, 5, 5, 3]\noutput : list = [9, 15, -15, -15, -9]",
    "output": "generated_output : list = mul_n([-3, -5, 5, 5, 3],-3)",
    "io_inp": [
      -3,
      -5,
      5,
      5,
      3
    ],
    "io_out": [
      9,
      15,
      -15,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 2, 2]\noutput : list = [1, 1, 11]",
    "output": "generated_output : list = add_n(add_n(take(reverse(mul_n([-3, 2, 2],-2)),14),3),2)",
    "io_inp": [
      -3,
      2,
      2
    ],
    "io_out": [
      1,
      1,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(mul_n(input,-2)),14),3),2)"
  },
  {
    "input": "input : list = [-4, -4, 1, -4, 4]\noutput : list = [-6, -6, -1, -6, 2]",
    "output": "generated_output : list = sub_n(add_n([-4, -4, 1, -4, 4],-4),-2)",
    "io_inp": [
      -4,
      -4,
      1,
      -4,
      4
    ],
    "io_out": [
      -6,
      -6,
      -1,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),-2)"
  },
  {
    "input": "input : list = [-1, 1, -4, 5, 4, 1]\noutput : list = [-20, -16, -4, -4, 4, 16]",
    "output": "generated_output : list = sort_asc(mul_n([-1, 1, -4, 5, 4, 1],-4))",
    "io_inp": [
      -1,
      1,
      -4,
      5,
      4,
      1
    ],
    "io_out": [
      -20,
      -16,
      -4,
      -4,
      4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [4, 4, 0]\noutput : list = [-3, 9, 9]",
    "output": "generated_output : list = add_n(take(mul_n(take(sort_asc([4, 4, 0]),4),3),34),-3)",
    "io_inp": [
      4,
      4,
      0
    ],
    "io_out": [
      -3,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(take(sort_asc(input),4),3),34),-3)"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [23, 19, -9]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(mul_n([3, -4, -5],-4))),6),3)",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      23,
      19,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(mul_n(input,-4))),6),3)"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(take([-1, -4, 2],1),-2),3),35))",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(take(input,1),-2),3),35))"
  },
  {
    "input": "input : list = [0, -4, 0, -4, -3, -4]\noutput : list = [-7, -7, -7, -6, -3, -3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des([0, -4, 0, -4, -3, -4])),5),2))",
    "io_inp": [
      0,
      -4,
      0,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -7,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des(input)),5),2))"
  },
  {
    "input": "input : list = [0, -2, -2, -3, -5]\noutput : list = [-3, -5, -5, -6, -8]",
    "output": "generated_output : list = sub_n(take(sort_des(take(reverse([0, -2, -2, -3, -5]),17)),26),3)",
    "io_inp": [
      0,
      -2,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(reverse(input),17)),26),3)"
  },
  {
    "input": "input : list = [4, 5, 4, 5]\noutput : list = [4, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([4, 5, 4, 5])",
    "io_inp": [
      4,
      5,
      4,
      5
    ],
    "io_out": [
      4,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, -5, 3, 5, -3]\noutput : list = [-5, -3, 2, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([5, 2, -5, 3, 5, -3])))",
    "io_inp": [
      5,
      2,
      -5,
      3,
      5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, -4, -4, -5, 0]\noutput : list = [-12, -72, -60, -60, -36]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(reverse([-2, -4, -4, -5, 0]),18),-1),4),3)",
    "io_inp": [
      -2,
      -4,
      -4,
      -5,
      0
    ],
    "io_out": [
      -12,
      -72,
      -60,
      -60,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(reverse(input),18),-1),4),3)"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [48, -102]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(drop([-2, -2, 4],1),-5),5),2),22)",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      48,
      -102
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(drop(input,1),-5),5),2),22)"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(sort_des(drop([-1, 0, -1],1)),20)",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,1)),20)"
  },
  {
    "input": "input : list = [-2, -1, -1, -2]\noutput : list = [-2, -2, -4, -4]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse(sort_des([-2, -1, -1, -2])),2),14))",
    "io_inp": [
      -2,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(sort_des(input)),2),14))"
  },
  {
    "input": "input : list = [-4, 3, 1, -2, -1]\noutput : list = [160, 80, 40, -40, -120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(sort_asc([-4, 3, 1, -2, -1]),15),5),2),-4)",
    "io_inp": [
      -4,
      3,
      1,
      -2,
      -1
    ],
    "io_out": [
      160,
      80,
      40,
      -40,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(sort_asc(input),15),5),2),-4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-7, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(sort_des([-3, -2]),1)),5),16)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(sort_des(input),1)),5),16)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse([-2, -1])",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc([2, 0, 4]))",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -4, -3, -5, 4]\noutput : list = [-14, -11, -8, 4, 13]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_asc([1, -4, -3, -5, 4]))),3),1)",
    "io_inp": [
      1,
      -4,
      -3,
      -5,
      4
    ],
    "io_out": [
      -14,
      -11,
      -8,
      4,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sort_asc(input))),3),1)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(sort_asc([3, 3])),5),-2))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(sort_asc(input)),5),-2))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [20, -10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-2, 4],5)))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      20,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,5)))"
  },
  {
    "input": "input : list = [-1, -2, -1, 0]\noutput : list = [2, 3, 3, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des([-1, -2, -1, 0])),-4)",
    "io_inp": [
      -1,
      -2,
      -1,
      0
    ],
    "io_out": [
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [-4, -1, -1, 2]\noutput : list = [5, 2, 2, -1]",
    "output": "generated_output : list = add_n(reverse([-4, -1, -1, 2]),3)",
    "io_inp": [
      -4,
      -1,
      -1,
      2
    ],
    "io_out": [
      5,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-4, -1, 5, 5, 1, 1]\noutput : list = [4, 1, -5, -5, -1, -1]",
    "output": "generated_output : list = mul_n([-4, -1, 5, 5, 1, 1],-1)",
    "io_inp": [
      -4,
      -1,
      5,
      5,
      1,
      1
    ],
    "io_out": [
      4,
      1,
      -5,
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(add_n([-5, -3],1),11),4),4))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(add_n(input,1),11),4),4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(sort_asc([2, 5])))))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, -5, -5, 0]\noutput : list = [4, -1, -1, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse([-4, -5, -5, 0]),1),2),-5)",
    "io_inp": [
      -4,
      -5,
      -5,
      0
    ],
    "io_out": [
      4,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(input),1),2),-5)"
  },
  {
    "input": "input : list = [2, -1, 1, 1]\noutput : list = [-1, -2, -2, -4]",
    "output": "generated_output : list = add_n(sort_des([2, -1, 1, 1]),-3)",
    "io_inp": [
      2,
      -1,
      1,
      1
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [2, -2, 1, 3, 0]\noutput : list = [-3, -1, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_des([2, -2, 1, 3, 0]),-1),25)))",
    "io_inp": [
      2,
      -2,
      1,
      3,
      0
    ],
    "io_out": [
      -3,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_des(input),-1),25)))"
  },
  {
    "input": "input : list = [4, 1, 4, -2]\noutput : list = [-2, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 1, 4, -2])",
    "io_inp": [
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      -2,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, -2, -1]\noutput : list = [-6, -5, -4, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(reverse([-3, -4, -2, -1])))),2)",
    "io_inp": [
      -3,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(reverse(input)))),2)"
  },
  {
    "input": "input : list = [-5, -2, -4, -2, 0]\noutput : list = [-3, -5, -5, -7, -8]",
    "output": "generated_output : list = take(take(sort_des(sort_asc(add_n([-5, -2, -4, -2, 0],-3))),41),46)",
    "io_inp": [
      -5,
      -2,
      -4,
      -2,
      0
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(add_n(input,-3))),41),46)"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [15, 0, -3]",
    "output": "generated_output : list = mul_n([5, 0, -1],3)",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      15,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-1, -1, -2, 2]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(mul_n(take([-1, -1, -2, 2],1),-1),1)",
    "io_inp": [
      -1,
      -1,
      -2,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),-1),1)"
  },
  {
    "input": "input : list = [-3, 2, -3, -1]\noutput : list = [7, 4, 2, 2]",
    "output": "generated_output : list = take(add_n(reverse(reverse(sort_des([-3, 2, -3, -1]))),5),28)",
    "io_inp": [
      -3,
      2,
      -3,
      -1
    ],
    "io_out": [
      7,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(sort_des(input))),5),28)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-9, 15]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n(sort_asc([2, -4]),-4)),1),2)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -9,
      15
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(sort_asc(input),-4)),1),2)"
  },
  {
    "input": "input : list = [-3, -1, 0, 0]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(sub_n(drop(sort_asc(sort_des([-3, -1, 0, 0])),3),-2),-3)",
    "io_inp": [
      -3,
      -1,
      0,
      0
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(sort_asc(sort_des(input)),3),-2),-3)"
  },
  {
    "input": "input : list = [0, 3, 4, 4, -1, -2]\noutput : list = [21, 21, 18, 9, 6, 3]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(reverse([0, 3, 4, 4, -1, -2]),-3)),3),22)",
    "io_inp": [
      0,
      3,
      4,
      4,
      -1,
      -2
    ],
    "io_out": [
      21,
      21,
      18,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(reverse(input),-3)),3),22)"
  },
  {
    "input": "input : list = [5, -2, -1, -3, -2, -5]\noutput : list = [-18, -10, -6, -6, -2, 22]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(mul_n([5, -2, -1, -3, -2, -5],-1))),-4),-2)",
    "io_inp": [
      5,
      -2,
      -1,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -18,
      -10,
      -6,
      -6,
      -2,
      22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(mul_n(input,-1))),-4),-2)"
  },
  {
    "input": "input : list = [0, 4, -2]\noutput : list = [-6, 0, -4]",
    "output": "generated_output : list = take(take(sub_n(sub_n(reverse([0, 4, -2]),3),1),23),18)",
    "io_inp": [
      0,
      4,
      -2
    ],
    "io_out": [
      -6,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(reverse(input),3),1),23),18)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(sort_asc([5, -3]))),32),25)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(sort_asc(input))),32),25)"
  },
  {
    "input": "input : list = [2, -1, 0, 3]\noutput : list = [3, 2, 0, -1]",
    "output": "generated_output : list = sort_des([2, -1, 0, 3])",
    "io_inp": [
      2,
      -1,
      0,
      3
    ],
    "io_out": [
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [12, 12]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_asc([4, 4]),3))),42)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_asc(input),3))),42)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [1, 9]",
    "output": "generated_output : list = sub_n([-4, 4],-5)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, 4, 3, -4]\noutput : list = [10, 6]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(take([0, 4, 3, -4],2))),1),5)",
    "io_inp": [
      0,
      4,
      3,
      -4
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(take(input,2))),1),5)"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [32, 47, 62]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(sort_des([2, 4, 3]),5),3)),2)",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      32,
      47,
      62
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(sort_des(input),5),3)),2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [28, 23]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(mul_n([-4, -5],-5),-3)),18))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      28,
      23
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(mul_n(input,-5),-3)),18))"
  },
  {
    "input": "input : list = [0, 0, 2]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, 2])",
    "io_inp": [
      0,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4, -4]\noutput : list = [16]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take([-4, -4, -4],1))),-4)",
    "io_inp": [
      -4,
      -4,
      -4
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(input,1))),-4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [82, 94]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(add_n([3, 5],4),5),3),-5),2)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      82,
      94
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(add_n(input,4),5),3),-5),2)"
  },
  {
    "input": "input : list = [0, -4, -3, 5, 2, -5]\noutput : list = [-5, 2, 5, -3, -4, 0]",
    "output": "generated_output : list = reverse([0, -4, -3, 5, 2, -5])",
    "io_inp": [
      0,
      -4,
      -3,
      5,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      5,
      -3,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -2, 5, 4, -5]\noutput : list = [-2, 5, 4, -5]",
    "output": "generated_output : list = drop([0, -2, 5, 4, -5],1)",
    "io_inp": [
      0,
      -2,
      5,
      4,
      -5
    ],
    "io_out": [
      -2,
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([1, -5])))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [4, 4, 4, 4, 1]\noutput : list = [4, 16, 16, 16, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([4, 4, 4, 4, 1],4)))",
    "io_inp": [
      4,
      4,
      4,
      4,
      1
    ],
    "io_out": [
      4,
      16,
      16,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,4)))"
  },
  {
    "input": "input : list = [0, -4, -2, -3]\noutput : list = [0, -2, -3, -4]",
    "output": "generated_output : list = sort_des([0, -4, -2, -3])",
    "io_inp": [
      0,
      -4,
      -2,
      -3
    ],
    "io_out": [
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, -1, -2, -4]\noutput : list = [-5, -4, -2, -1, 5]",
    "output": "generated_output : list = reverse(sort_des([-5, 5, -1, -2, -4]))",
    "io_inp": [
      -5,
      5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, 0, -4, 2, 2]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(take([3, 0, -4, 2, 2],2))",
    "io_inp": [
      3,
      0,
      -4,
      2,
      2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-4, 2, -4, -2]\noutput : list = [16, 16, 8, -8]",
    "output": "generated_output : list = sort_des(mul_n(reverse([-4, 2, -4, -2]),-4))",
    "io_inp": [
      -4,
      2,
      -4,
      -2
    ],
    "io_out": [
      16,
      16,
      8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [1, -1, -1, 0, 4]\noutput : list = [-2, -4, -4, -3, 1]",
    "output": "generated_output : list = sub_n(take(take(take(sub_n([1, -1, -1, 0, 4],-2),23),9),27),5)",
    "io_inp": [
      1,
      -1,
      -1,
      0,
      4
    ],
    "io_out": [
      -2,
      -4,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(sub_n(input,-2),23),9),27),5)"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [-6, -4, -4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(sort_asc([2, 1, 2]),-1),-5),2))",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(sort_asc(input),-1),-5),2))"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [-15, -10, 0]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc([-1, 1, 2]))),-5),5)",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      -15,
      -10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc(input))),-5),5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [5, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([0, 3],5)))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,5)))"
  },
  {
    "input": "input : list = [4, -5, 0, 2, -3, 5]\noutput : list = [8, -1, 4, 6, 1, 9]",
    "output": "generated_output : list = take(sub_n([4, -5, 0, 2, -3, 5],-4),12)",
    "io_inp": [
      4,
      -5,
      0,
      2,
      -3,
      5
    ],
    "io_out": [
      8,
      -1,
      4,
      6,
      1,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),12)"
  },
  {
    "input": "input : list = [2, -3, 5, 3]\noutput : list = [9, 7, 6, 1]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(sort_asc([2, -3, 5, 3])),4)),16)",
    "io_inp": [
      2,
      -3,
      5,
      3
    ],
    "io_out": [
      9,
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(sort_asc(input)),4)),16)"
  },
  {
    "input": "input : list = [1, 0, -5, -1, 4, -1]\noutput : list = [-6, -2, 3, -2]",
    "output": "generated_output : list = add_n(drop([1, 0, -5, -1, 4, -1],2),-1)",
    "io_inp": [
      1,
      0,
      -5,
      -1,
      4,
      -1
    ],
    "io_out": [
      -6,
      -2,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [1, -2, 1, -1]\noutput : list = [-1, 1, -2, 1]",
    "output": "generated_output : list = reverse([1, -2, 1, -1])",
    "io_inp": [
      1,
      -2,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [12, -9, -12]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des([-3, 4, -4])),3))",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      12,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(input)),3))"
  },
  {
    "input": "input : list = [-2, 4, 2, -1]\noutput : list = [4, 2, -1]",
    "output": "generated_output : list = drop([-2, 4, 2, -1],1)",
    "io_inp": [
      -2,
      4,
      2,
      -1
    ],
    "io_out": [
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [3, 3, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n([0, 0, 4],1),2)),5))",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n(input,1),2)),5))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [5, -15]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(reverse([-3, 1]),-1)),-5))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      5,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(reverse(input),-1)),-5))"
  },
  {
    "input": "input : list = [5, 1, 4, 4]\noutput : list = [11, 10, 10, 7]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(add_n([5, 1, 4, 4],3)))),3)",
    "io_inp": [
      5,
      1,
      4,
      4
    ],
    "io_out": [
      11,
      10,
      10,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(add_n(input,3)))),3)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(reverse([4, -3]))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(add_n([-5, -1],-5)))),3)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(add_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [5, 5, 2, -2, 4, 5]\noutput : list = [18, 18, 9, -3, 15, 18]",
    "output": "generated_output : list = mul_n(add_n([5, 5, 2, -2, 4, 5],1),3)",
    "io_inp": [
      5,
      5,
      2,
      -2,
      4,
      5
    ],
    "io_out": [
      18,
      18,
      9,
      -3,
      15,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),3)"
  },
  {
    "input": "input : list = [2, -1, -1, 4]\noutput : list = [10, 4, 4, 14]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(mul_n([2, -1, -1, 4],2),-4),-2),-4),-4)",
    "io_inp": [
      2,
      -1,
      -1,
      4
    ],
    "io_out": [
      10,
      4,
      4,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(mul_n(input,2),-4),-2),-4),-4)"
  },
  {
    "input": "input : list = [-4, -5, 1, 0]\noutput : list = [-8, -10, 2, 0]",
    "output": "generated_output : list = mul_n([-4, -5, 1, 0],2)",
    "io_inp": [
      -4,
      -5,
      1,
      0
    ],
    "io_out": [
      -8,
      -10,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, -1, -3, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(take([0, -1, -3, 3],1),4))))",
    "io_inp": [
      0,
      -1,
      -3,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(take(input,1),4))))"
  },
  {
    "input": "input : list = [-2, 4, 5, -1]\noutput : list = [-10]",
    "output": "generated_output : list = reverse(take(mul_n(reverse(take([-2, 4, 5, -1],1)),5),19))",
    "io_inp": [
      -2,
      4,
      5,
      -1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(take(input,1)),5),19))"
  },
  {
    "input": "input : list = [-4, -2, -4, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(drop([-4, -2, -4, 2, 0],3))",
    "io_inp": [
      -4,
      -2,
      -4,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [5, -5, 0, -5, 3, -4]\noutput : list = [-15, -9, 0, 12, 15, 15]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sort_des([5, -5, 0, -5, 3, -4]))),-3),16)",
    "io_inp": [
      5,
      -5,
      0,
      -5,
      3,
      -4
    ],
    "io_out": [
      -15,
      -9,
      0,
      12,
      15,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sort_des(input))),-3),16)"
  },
  {
    "input": "input : list = [-4, 0, -5, 5, -5]\noutput : list = [2, -8, -16, -18, -18]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(sort_asc([-4, 0, -5, 5, -5])),4)),2)",
    "io_inp": [
      -4,
      0,
      -5,
      5,
      -5
    ],
    "io_out": [
      2,
      -8,
      -16,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(sort_asc(input)),4)),2)"
  },
  {
    "input": "input : list = [4, 3, 4, 4, 0]\noutput : list = [-4, -4, 0]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(drop([4, 3, 4, 4, 0],2))),26),-1)",
    "io_inp": [
      4,
      3,
      4,
      4,
      0
    ],
    "io_out": [
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(drop(input,2))),26),-1)"
  },
  {
    "input": "input : list = [4, -1, 0, 3, -4]\noutput : list = [-6, 1, -2]",
    "output": "generated_output : list = sub_n(reverse(drop([4, -1, 0, 3, -4],2)),2)",
    "io_inp": [
      4,
      -1,
      0,
      3,
      -4
    ],
    "io_out": [
      -6,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,2)),2)"
  },
  {
    "input": "input : list = [-2, -2, 1, 0]\noutput : list = [-7, -7, -11, -13]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n(sort_asc([-2, -2, 1, 0]),-5),-2),-3),-2)",
    "io_inp": [
      -2,
      -2,
      1,
      0
    ],
    "io_out": [
      -7,
      -7,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(sort_asc(input),-5),-2),-3),-2)"
  },
  {
    "input": "input : list = [4, 1, -3, 0]\noutput : list = [4, 1, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc([4, 1, -3, 0]))",
    "io_inp": [
      4,
      1,
      -3,
      0
    ],
    "io_out": [
      4,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -1, -2]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = take(add_n([2, -1, -2],3),18)",
    "io_inp": [
      2,
      -1,
      -2
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,3),18)"
  },
  {
    "input": "input : list = [-2, 4, -3, -5]\noutput : list = [-4, -2, -1, 5]",
    "output": "generated_output : list = add_n(sort_asc([-2, 4, -3, -5]),1)",
    "io_inp": [
      -2,
      4,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [0, 2, 5]\noutput : list = [3, 13, 28]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([0, 2, 5]),5),3)",
    "io_inp": [
      0,
      2,
      5
    ],
    "io_out": [
      3,
      13,
      28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),5),3)"
  },
  {
    "input": "input : list = [0, 0, -5, 1, -4, -1]\noutput : list = [1, 0, 0, -1, -4, -5]",
    "output": "generated_output : list = sort_des(take(mul_n([0, 0, -5, 1, -4, -1],1),22))",
    "io_inp": [
      0,
      0,
      -5,
      1,
      -4,
      -1
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,1),22))"
  },
  {
    "input": "input : list = [-4, 1, 5, -5]\noutput : list = [-13, -12, -7, -3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sub_n([-4, 1, 5, -5],3),1)),5))",
    "io_inp": [
      -4,
      1,
      5,
      -5
    ],
    "io_out": [
      -13,
      -12,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sub_n(input,3),1)),5))"
  },
  {
    "input": "input : list = [-2, -4, -1, 5, -5]\noutput : list = [5, -1, -2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-2, -4, -1, 5, -5]))",
    "io_inp": [
      -2,
      -4,
      -1,
      5,
      -5
    ],
    "io_out": [
      5,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -1, -5, 2]\noutput : list = [1, -2, -5, -9]",
    "output": "generated_output : list = sort_des(add_n(add_n([5, -1, -5, 2],-5),1))",
    "io_inp": [
      5,
      -1,
      -5,
      2
    ],
    "io_out": [
      1,
      -2,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-5),1))"
  },
  {
    "input": "input : list = [5, 0, -1, -1]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take(add_n([5, 0, -1, -1],-5),1))",
    "io_inp": [
      5,
      0,
      -1,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-5),1))"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [-2, -4, -7]",
    "output": "generated_output : list = reverse(take(reverse(reverse(sub_n([-2, 1, 3],5))),9))",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(sub_n(input,5))),9))"
  },
  {
    "input": "input : list = [-5, -5, -2]\noutput : list = [-9, -9, -6]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(reverse([-5, -5, -2]),-4))))",
    "io_inp": [
      -5,
      -5,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(reverse(input),-4))))"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(drop([-3, 5, -2],1))))",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(drop(input,1))))"
  },
  {
    "input": "input : list = [-2, -1, 0, -4]\noutput : list = [1, 0, -1, -3]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(reverse([-2, -1, 0, -4])),-1),17))",
    "io_inp": [
      -2,
      -1,
      0,
      -4
    ],
    "io_out": [
      1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(reverse(input)),-1),17))"
  },
  {
    "input": "input : list = [3, 2, -3, -1, 3, 2]\noutput : list = [-1, 3, 2]",
    "output": "generated_output : list = take(drop([3, 2, -3, -1, 3, 2],3),17)",
    "io_inp": [
      3,
      2,
      -3,
      -1,
      3,
      2
    ],
    "io_out": [
      -1,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(drop(input,3),17)"
  },
  {
    "input": "input : list = [3, -4, 5, 4, -4, -3]\noutput : list = [5, 4, 3, -3, -4, -4]",
    "output": "generated_output : list = sort_des(reverse([3, -4, 5, 4, -4, -3]))",
    "io_inp": [
      3,
      -4,
      5,
      4,
      -4,
      -3
    ],
    "io_out": [
      5,
      4,
      3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [8, 4, 11]",
    "output": "generated_output : list = sub_n(add_n(sub_n([2, -2, 5],-5),-1),-2)",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      8,
      4,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-5),-1),-2)"
  },
  {
    "input": "input : list = [4, -3, 5, 0, -4]\noutput : list = [-36, -16, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(drop(sub_n(sub_n([4, -3, 5, 0, -4],-3),-1),1),-4))",
    "io_inp": [
      4,
      -3,
      5,
      0,
      -4
    ],
    "io_out": [
      -36,
      -16,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(sub_n(sub_n(input,-3),-1),1),-4))"
  },
  {
    "input": "input : list = [5, -5, -3, 2, -5, 1]\noutput : list = [5, -2, 4]",
    "output": "generated_output : list = add_n(drop([5, -5, -3, 2, -5, 1],3),3)",
    "io_inp": [
      5,
      -5,
      -3,
      2,
      -5,
      1
    ],
    "io_out": [
      5,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),3)"
  },
  {
    "input": "input : list = [3, 1, 2, 5, 3]\noutput : list = [1, -1, -3, -3, -7]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(sort_des([3, 1, 2, 5, 3])),-2)),-3)",
    "io_inp": [
      3,
      1,
      2,
      5,
      3
    ],
    "io_out": [
      1,
      -1,
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(sort_des(input)),-2)),-3)"
  },
  {
    "input": "input : list = [-5, -4, 4, 2]\noutput : list = [-5, -15, -45, -50]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(sort_des([-5, -4, 4, 2])),-5),30),5)",
    "io_inp": [
      -5,
      -4,
      4,
      2
    ],
    "io_out": [
      -5,
      -15,
      -45,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(sort_des(input)),-5),30),5)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des([-5, -3])))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [4, -5, 1, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_des(take([4, -5, 1, 5],1)))",
    "io_inp": [
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-8, 4]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(mul_n([1, -2],-2))),35),-2)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(mul_n(input,-2))),35),-2)"
  },
  {
    "input": "input : list = [-4, 5, 5, 1]\noutput : list = [-4, 5]",
    "output": "generated_output : list = take([-4, 5, 5, 1],2)",
    "io_inp": [
      -4,
      5,
      5,
      1
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -4, -1, 5]\noutput : list = [2, -1, -2, -7]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(reverse([0, -4, -1, 5]))),2),-1)",
    "io_inp": [
      0,
      -4,
      -1,
      5
    ],
    "io_out": [
      2,
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(reverse(input))),2),-1)"
  },
  {
    "input": "input : list = [-5, 4, -5, 0, -3, 3]\noutput : list = [-9]",
    "output": "generated_output : list = reverse(sort_des(drop(sort_des(add_n([-5, 4, -5, 0, -3, 3],-4)),5)))",
    "io_inp": [
      -5,
      4,
      -5,
      0,
      -3,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(sort_des(add_n(input,-4)),5)))"
  },
  {
    "input": "input : list = [-5, -5, -4, 1, 1, 0]\noutput : list = [-100, -80, -80, -180, -200, -200]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse([-5, -5, -4, 1, 1, 0]),5),4),5)",
    "io_inp": [
      -5,
      -5,
      -4,
      1,
      1,
      0
    ],
    "io_out": [
      -100,
      -80,
      -80,
      -180,
      -200,
      -200
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(input),5),4),5)"
  },
  {
    "input": "input : list = [-2, 1, -1, 4, 3, -5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take([-2, 1, -1, 4, 3, -5],1)))))",
    "io_inp": [
      -2,
      1,
      -1,
      4,
      3,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-96, -108]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(add_n([-4, -5],-4),-3),-2),2))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -96,
      -108
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(add_n(input,-4),-3),-2),2))"
  },
  {
    "input": "input : list = [-1, -1, 0, 5]\noutput : list = [-3, -3, 0, 15]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(sort_des([-1, -1, 0, 5])),3),32),18)",
    "io_inp": [
      -1,
      -1,
      0,
      5
    ],
    "io_out": [
      -3,
      -3,
      0,
      15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(sort_des(input)),3),32),18)"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(drop([-2, -5, 0],1),-4)),21))",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(drop(input,1),-4)),21))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-20, 10]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sort_asc([-1, 2]))),5),-2)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sort_asc(input))),5),-2)"
  },
  {
    "input": "input : list = [0, 4, -4, 3, 4]\noutput : list = [4, -4, 3, 4]",
    "output": "generated_output : list = take(drop([0, 4, -4, 3, 4],1),14)",
    "io_inp": [
      0,
      4,
      -4,
      3,
      4
    ],
    "io_out": [
      4,
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(drop(input,1),14)"
  },
  {
    "input": "input : list = [0, -1, 5, -4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = drop([0, -1, 5, -4, -1],3)",
    "io_inp": [
      0,
      -1,
      5,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, -4, -5, -1, -1, 5]\noutput : list = [-5, -4, -4, -1, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -4, -5, -1, -1, 5]))",
    "io_inp": [
      -4,
      -4,
      -5,
      -1,
      -1,
      5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 3, 3, 1]\noutput : list = [2, 0, 0, -2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des([5, 3, 3, 1])),-3),37))",
    "io_inp": [
      5,
      3,
      3,
      1
    ],
    "io_out": [
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des(input)),-3),37))"
  },
  {
    "input": "input : list = [-5, -2, -4, 3]\noutput : list = [-20, -80]",
    "output": "generated_output : list = mul_n(drop(mul_n(sub_n(reverse([-5, -2, -4, 3]),-1),-4),2),-5)",
    "io_inp": [
      -5,
      -2,
      -4,
      3
    ],
    "io_out": [
      -20,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(drop(mul_n(sub_n(reverse(input),-1),-4),2),-5)"
  },
  {
    "input": "input : list = [-4, 2, 0, -2, 3, -1]\noutput : list = [6, 12, 10, 8, 13, 9]",
    "output": "generated_output : list = add_n(add_n([-4, 2, 0, -2, 3, -1],5),5)",
    "io_inp": [
      -4,
      2,
      0,
      -2,
      3,
      -1
    ],
    "io_out": [
      6,
      12,
      10,
      8,
      13,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),5)"
  },
  {
    "input": "input : list = [3, 2, -4]\noutput : list = [3, 2, -4]",
    "output": "generated_output : list = mul_n([3, 2, -4],1)",
    "io_inp": [
      3,
      2,
      -4
    ],
    "io_out": [
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [6, -1]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(drop([-5, -5, 2],1)),4)))",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(drop(input,1)),4)))"
  },
  {
    "input": "input : list = [2, -4, 5, -2]\noutput : list = [-30, -12, 12, 24]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(mul_n([2, -4, 5, -2],-3),22))),2)",
    "io_inp": [
      2,
      -4,
      5,
      -2
    ],
    "io_out": [
      -30,
      -12,
      12,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(mul_n(input,-3),22))),2)"
  },
  {
    "input": "input : list = [3, -2, -5, -5, 1]\noutput : list = [3, 1, -2, -5, -5]",
    "output": "generated_output : list = sort_des([3, -2, -5, -5, 1])",
    "io_inp": [
      3,
      -2,
      -5,
      -5,
      1
    ],
    "io_out": [
      3,
      1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 4, -5, 2, -4]\noutput : list = [-40, 20, -50, 40, 30]",
    "output": "generated_output : list = mul_n(mul_n(reverse([3, 4, -5, 2, -4]),-5),-2)",
    "io_inp": [
      3,
      4,
      -5,
      2,
      -4
    ],
    "io_out": [
      -40,
      20,
      -50,
      40,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),-5),-2)"
  },
  {
    "input": "input : list = [5, -3, -1, 3, -1]\noutput : list = [3, 1, -3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sort_des([5, -3, -1, 3, -1]),-2))))",
    "io_inp": [
      5,
      -3,
      -1,
      3,
      -1
    ],
    "io_out": [
      3,
      1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [-4, 3, 0, -1, 2]\noutput : list = [-10, -3, -6, -7, -4]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(add_n([-4, 3, 0, -1, 2],-1),-3),-3),4),3)",
    "io_inp": [
      -4,
      3,
      0,
      -1,
      2
    ],
    "io_out": [
      -10,
      -3,
      -6,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(add_n(input,-1),-3),-3),4),3)"
  },
  {
    "input": "input : list = [-3, 5, -1, 0]\noutput : list = [-1, 1, 2, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(reverse([-3, 5, -1, 0]),-5))),3)",
    "io_inp": [
      -3,
      5,
      -1,
      0
    ],
    "io_out": [
      -1,
      1,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(reverse(input),-5))),3)"
  },
  {
    "input": "input : list = [-3, -5, 1, 3, -3]\noutput : list = [-24, 24]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(drop([-3, -5, 1, 3, -3],3))),-4),2)",
    "io_inp": [
      -3,
      -5,
      1,
      3,
      -3
    ],
    "io_out": [
      -24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(drop(input,3))),-4),2)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(sub_n([5, 5],4))),-5),-3)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(sub_n(input,4))),-5),-3)"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [-4, -4, -8]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(reverse([-4, -2, -2]),4)),2))",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(reverse(input),4)),2))"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(drop([-2, -2, 2],1),2),-5)))",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(drop(input,1),2),-5)))"
  },
  {
    "input": "input : list = [4, 5, -4, 3, -1, 4]\noutput : list = [1, 4, 8, 9, 9, 10]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(reverse([4, 5, -4, 3, -1, 4])),1),-5))",
    "io_inp": [
      4,
      5,
      -4,
      3,
      -1,
      4
    ],
    "io_out": [
      1,
      4,
      8,
      9,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(reverse(input)),1),-5))"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [22, 14, -14]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(add_n([5, -4, 3],-3),3),4)),2)",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      22,
      14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(add_n(input,-3),3),4)),2)"
  },
  {
    "input": "input : list = [2, -3, 3, 1]\noutput : list = [-3, 1, 2, 3]",
    "output": "generated_output : list = sort_asc([2, -3, 3, 1])",
    "io_inp": [
      2,
      -3,
      3,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, 0, 0, 3]\noutput : list = [3, 1, 2, 2, 5]",
    "output": "generated_output : list = sub_n(sub_n([1, -1, 0, 0, 3],1),-3)",
    "io_inp": [
      1,
      -1,
      0,
      0,
      3
    ],
    "io_out": [
      3,
      1,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-3)"
  },
  {
    "input": "input : list = [-4, -1, -5, -5, 0, -4]\noutput : list = [0, -1, -4, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-4, -1, -5, -5, 0, -4])",
    "io_inp": [
      -4,
      -1,
      -5,
      -5,
      0,
      -4
    ],
    "io_out": [
      0,
      -1,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-1, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, -1])",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4, -4, -3, 2]\noutput : list = [-4, -4, -4, -3, 2]",
    "output": "generated_output : list = reverse(reverse([-4, -4, -4, -3, 2]))",
    "io_inp": [
      -4,
      -4,
      -4,
      -3,
      2
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-2, -5, 2, -5]\noutput : list = [-6, -6, -3, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_des([-2, -5, 2, -5])),-1)))",
    "io_inp": [
      -2,
      -5,
      2,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [5, -4, 1, 4, -2, 1]\noutput : list = [-8, -2, -14, -8]",
    "output": "generated_output : list = mul_n(add_n(drop([5, -4, 1, 4, -2, 1],2),-5),2)",
    "io_inp": [
      5,
      -4,
      1,
      4,
      -2,
      1
    ],
    "io_out": [
      -8,
      -2,
      -14,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,2),-5),2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [7, 1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des([2, -4]),-2),-1),1))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des(input),-2),-1),1))"
  },
  {
    "input": "input : list = [5, 3, 1, 1, 1]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = add_n(take([5, 3, 1, 1, 1],3),-3)",
    "io_inp": [
      5,
      3,
      1,
      1,
      1
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [-1, 3, -1, 1, 0, -3]\noutput : list = [3, 1, 0, -1, -1, -3]",
    "output": "generated_output : list = sort_des([-1, 3, -1, 1, 0, -3])",
    "io_inp": [
      -1,
      3,
      -1,
      1,
      0,
      -3
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 4, 3, 2, -2]\noutput : list = [-5, -3, -1, -1, 0, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(reverse([2, 0, 4, 3, 2, -2]),8)),-2),1)",
    "io_inp": [
      2,
      0,
      4,
      3,
      2,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(reverse(input),8)),-2),1)"
  },
  {
    "input": "input : list = [5, -5, 0, 4, -5]\noutput : list = [-3, -3, 2, 6, 7]",
    "output": "generated_output : list = take(add_n(sort_asc([5, -5, 0, 4, -5]),2),34)",
    "io_inp": [
      5,
      -5,
      0,
      4,
      -5
    ],
    "io_out": [
      -3,
      -3,
      2,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),2),34)"
  },
  {
    "input": "input : list = [2, 1, -1, 3]\noutput : list = [2, 1, 0, -2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_asc([2, 1, -1, 3]),4),1),4))",
    "io_inp": [
      2,
      1,
      -1,
      3
    ],
    "io_out": [
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_asc(input),4),1),4))"
  },
  {
    "input": "input : list = [1, -5, -3, 3, -2]\noutput : list = [-2, 10, 6, -6, 4]",
    "output": "generated_output : list = mul_n([1, -5, -3, 3, -2],-2)",
    "io_inp": [
      1,
      -5,
      -3,
      3,
      -2
    ],
    "io_out": [
      -2,
      10,
      6,
      -6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [-11, -11, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(mul_n([-4, 3, -4],3),-1),6)))",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      -11,
      -11,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(mul_n(input,3),-1),6)))"
  },
  {
    "input": "input : list = [-2, 5, 2, -2]\noutput : list = [-20, -8, 8, 8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sort_asc([-2, 5, 2, -2])))),-4)",
    "io_inp": [
      -2,
      5,
      2,
      -2
    ],
    "io_out": [
      -20,
      -8,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [4, -3, 1, -1, 5]\noutput : list = [-7, -1, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(take([4, -3, 1, -1, 5],3),-2)),2),-3)",
    "io_inp": [
      4,
      -3,
      1,
      -1,
      5
    ],
    "io_out": [
      -7,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(take(input,3),-2)),2),-3)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc([-2, 4])",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des([4, -1])",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-35, -67]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(mul_n([1, 2],-4),-2),-1),-4),1)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -35,
      -67
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(mul_n(input,-4),-2),-1),-4),1)"
  },
  {
    "input": "input : list = [5, 3, -2, -2, 3]\noutput : list = [-84]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(take([5, 3, -2, -2, 3],1),2),3)),-4)",
    "io_inp": [
      5,
      3,
      -2,
      -2,
      3
    ],
    "io_out": [
      -84
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(take(input,1),2),3)),-4)"
  },
  {
    "input": "input : list = [-4, -4, -4, -2, 3]\noutput : list = [-5, -5, -5, -3, 2]",
    "output": "generated_output : list = take(take(add_n([-4, -4, -4, -2, 3],-1),27),18)",
    "io_inp": [
      -4,
      -4,
      -4,
      -2,
      3
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-1),27),18)"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [-13, -13]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(drop([3, -4, -4],1),4)),5))",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      -13,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(drop(input,1),4)),5))"
  },
  {
    "input": "input : list = [-3, -1, 0, -2, 2, -4]\noutput : list = [25, -5, 15, 5, 10, 20]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n(sub_n([-3, -1, 0, -2, 2, -4],3),1),-2),-5))",
    "io_inp": [
      -3,
      -1,
      0,
      -2,
      2,
      -4
    ],
    "io_out": [
      25,
      -5,
      15,
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(sub_n(input,3),1),-2),-5))"
  },
  {
    "input": "input : list = [0, 0, -2, -2, -4, 4]\noutput : list = [-1, -1, -3, -3, -5, 3]",
    "output": "generated_output : list = sub_n([0, 0, -2, -2, -4, 4],1)",
    "io_inp": [
      0,
      0,
      -2,
      -2,
      -4,
      4
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, -2, 1, -5]\noutput : list = [-10, -7, -4, -2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sort_asc([3, -2, 1, -5]),5))))",
    "io_inp": [
      3,
      -2,
      1,
      -5
    ],
    "io_out": [
      -10,
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [0, -1, 2, 3, 0, 4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(drop(sort_asc(add_n([0, -1, 2, 3, 0, 4],-5)),5))",
    "io_inp": [
      0,
      -1,
      2,
      3,
      0,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(add_n(input,-5)),5))"
  },
  {
    "input": "input : list = [-1, 2, 0, 3, 1, 3]\noutput : list = [-1, 0, 1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([-1, 2, 0, 3, 1, 3])",
    "io_inp": [
      -1,
      2,
      0,
      3,
      1,
      3
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, 0, 5]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(take([-1, 1, 0, 5],1)))),-5)",
    "io_inp": [
      -1,
      1,
      0,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(take(input,1)))),-5)"
  },
  {
    "input": "input : list = [-5, -5, 4, -4, -2, 0]\noutput : list = [-2, -6, -10, 6, -12, -12]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(reverse([-5, -5, 4, -4, -2, 0]),29),1),-2),2)",
    "io_inp": [
      -5,
      -5,
      4,
      -4,
      -2,
      0
    ],
    "io_out": [
      -2,
      -6,
      -10,
      6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(reverse(input),29),1),-2),2)"
  },
  {
    "input": "input : list = [-1, 2, -2, 4, -5]\noutput : list = [-100, -50, 25, 50, 125]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([-1, 2, -2, 4, -5],5),-5))",
    "io_inp": [
      -1,
      2,
      -2,
      4,
      -5
    ],
    "io_out": [
      -100,
      -50,
      25,
      50,
      125
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,5),-5))"
  },
  {
    "input": "input : list = [1, 1, -5, 0, -3, 3]\noutput : list = [8, 0, -12, -16, -16]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc([1, 1, -5, 0, -3, 3]),3),5),-4)",
    "io_inp": [
      1,
      1,
      -5,
      0,
      -3,
      3
    ],
    "io_out": [
      8,
      0,
      -12,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(input),3),5),-4)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(sort_asc([2, 3]),-2),3)))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(sort_asc(input),-2),3)))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n(take(sort_des(take(add_n([4, -4],-4),4)),29),-2)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(add_n(input,-4),4)),29),-2)"
  },
  {
    "input": "input : list = [0, 2, -3, 4, -4]\noutput : list = [4, 2, 0, -3, -4]",
    "output": "generated_output : list = sort_des([0, 2, -3, 4, -4])",
    "io_inp": [
      0,
      2,
      -3,
      4,
      -4
    ],
    "io_out": [
      4,
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, -4, 5]\noutput : list = [4, -5, -5, -5]",
    "output": "generated_output : list = add_n(sub_n(reverse([-4, -4, -4, 5]),3),2)",
    "io_inp": [
      -4,
      -4,
      -4,
      5
    ],
    "io_out": [
      4,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),3),2)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [10, 20]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n([2, 4],5)),-3),-3))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n(input,5)),-3),-3))"
  },
  {
    "input": "input : list = [-4, -3, 5, -5, 2]\noutput : list = [-5, 10, 35, 40, 45]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(add_n([-4, -3, 5, -5, 2],-1),-3))),-5)",
    "io_inp": [
      -4,
      -3,
      5,
      -5,
      2
    ],
    "io_out": [
      -5,
      10,
      35,
      40,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(add_n(input,-1),-3))),-5)"
  },
  {
    "input": "input : list = [5, 2, 5, -3, 4]\noutput : list = [0, 0, -1, -3, -8]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(sort_asc([5, 2, 5, -3, 4]),2))),3)",
    "io_inp": [
      5,
      2,
      5,
      -3,
      4
    ],
    "io_out": [
      0,
      0,
      -1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(sort_asc(input),2))),3)"
  },
  {
    "input": "input : list = [2, -3, -2, -1]\noutput : list = [-7, -6, -5, -2]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(sort_asc([2, -3, -2, -1]),-1)),25),-3)",
    "io_inp": [
      2,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(sort_asc(input),-1)),25),-3)"
  },
  {
    "input": "input : list = [-3, 1, -1, -1, 0]\noutput : list = [-2, -3, -3, -1, -5]",
    "output": "generated_output : list = sub_n(reverse([-3, 1, -1, -1, 0]),2)",
    "io_inp": [
      -3,
      1,
      -1,
      -1,
      0
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [3, 2, -2, 4, -3, 4]\noutput : list = [-3, -2, 2, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(reverse([3, 2, -2, 4, -3, 4]),18))))",
    "io_inp": [
      3,
      2,
      -2,
      4,
      -3,
      4
    ],
    "io_out": [
      -3,
      -2,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(reverse(input),18))))"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(take([2, -3, -1],1),2)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),2)"
  },
  {
    "input": "input : list = [-4, 4, 0, -1, -2, 4]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(drop([-4, 4, 0, -1, -2, 4],4),11))))",
    "io_inp": [
      -4,
      4,
      0,
      -1,
      -2,
      4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(drop(input,4),11))))"
  },
  {
    "input": "input : list = [2, 4, 3, -2, -1, -1]\noutput : list = [5, 4, 3, 0, 0, -1]",
    "output": "generated_output : list = add_n(sort_des([2, 4, 3, -2, -1, -1]),1)",
    "io_inp": [
      2,
      4,
      3,
      -2,
      -1,
      -1
    ],
    "io_out": [
      5,
      4,
      3,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-30, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n([0, 5],1),-3)),2))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -30,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(mul_n(input,1),-3)),2))"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(take([0, 1, 0],1),3),2),1))",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(take(input,1),3),2),1))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(take(reverse(reverse(mul_n([1, 0],4))),24),13)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(mul_n(input,4))),24),13)"
  },
  {
    "input": "input : list = [0, 3, -1, 5, -2, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 3, -1, 5, -2, -2],1)",
    "io_inp": [
      0,
      3,
      -1,
      5,
      -2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 4, 2, 3]\noutput : list = [36]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(take([3, 4, 2, 3],1)),-4),-3))",
    "io_inp": [
      3,
      4,
      2,
      3
    ],
    "io_out": [
      36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(take(input,1)),-4),-3))"
  },
  {
    "input": "input : list = [5, 2, 2]\noutput : list = [-24, -9, -9]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n(reverse([5, 2, 2]),-5)),1))",
    "io_inp": [
      5,
      2,
      2
    ],
    "io_out": [
      -24,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(reverse(input),-5)),1))"
  },
  {
    "input": "input : list = [5, 3, -4, 5, -1, -5]\noutput : list = [10, -11, -17, -17]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(take([5, 3, -4, 5, -1, -5],4),-3),-2)))",
    "io_inp": [
      5,
      3,
      -4,
      5,
      -1,
      -5
    ],
    "io_out": [
      10,
      -11,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(take(input,4),-3),-2)))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(sort_des([3, -1]),-2))))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [-3, -3, -5, -3, 2, 3]\noutput : list = [-9, -11]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(drop([-3, -3, -5, -3, 2, 3],4),-2),-4),-1),55)",
    "io_inp": [
      -3,
      -3,
      -5,
      -3,
      2,
      3
    ],
    "io_out": [
      -9,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(drop(input,4),-2),-4),-1),55)"
  },
  {
    "input": "input : list = [3, 4, -4, -1]\noutput : list = [-1, 2, 6, 7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n([3, 4, -4, -1],2))),-4),1)",
    "io_inp": [
      3,
      4,
      -4,
      -1
    ],
    "io_out": [
      -1,
      2,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n(input,2))),-4),1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n([-5, -5],5)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, 0, 1, 5, -4, -4]\noutput : list = [-5, -3, -1, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(sort_asc([3, 0, 1, 5, -4, -4]),1),-1)))",
    "io_inp": [
      3,
      0,
      1,
      5,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(sort_asc(input),1),-1)))"
  },
  {
    "input": "input : list = [-1, -3, -3, -3]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(mul_n(take(take(take([-1, -3, -3, -3],1),2),7),1),2)",
    "io_inp": [
      -1,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(take(take(input,1),2),7),1),2)"
  },
  {
    "input": "input : list = [2, 0, 3, 4]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(take([2, 0, 3, 4],1),3)),3),1)",
    "io_inp": [
      2,
      0,
      3,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(take(input,1),3)),3),1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-29, -11]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(mul_n(sub_n([1, -5],4),3),-2)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -29,
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(mul_n(sub_n(input,4),3),-2)))"
  },
  {
    "input": "input : list = [2, 5, 1, 5]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(drop(sort_des(reverse(reverse([2, 5, 1, 5]))),3))",
    "io_inp": [
      2,
      5,
      1,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(reverse(reverse(input))),3))"
  },
  {
    "input": "input : list = [2, -1, -3, 2, 5, 5]\noutput : list = [6]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(take([2, -1, -3, 2, 5, 5],1)),4)),7)",
    "io_inp": [
      2,
      -1,
      -3,
      2,
      5,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(take(input,1)),4)),7)"
  },
  {
    "input": "input : list = [-4, 1, -4, -2, 1, -3]\noutput : list = [-2, -2, -5, -6, -7, -7]",
    "output": "generated_output : list = take(add_n(sort_des(take(sub_n([-4, 1, -4, -2, 1, -3],-1),7)),-4),19)",
    "io_inp": [
      -4,
      1,
      -4,
      -2,
      1,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(sub_n(input,-1),7)),-4),19)"
  },
  {
    "input": "input : list = [4, 1, 4, -1, 2]\noutput : list = [4, 4, 2, 1, -1]",
    "output": "generated_output : list = sort_des([4, 1, 4, -1, 2])",
    "io_inp": [
      4,
      1,
      4,
      -1,
      2
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 5, 4, 1, 0]\noutput : list = [-5, -5, 0, -1, -4, -5]",
    "output": "generated_output : list = sub_n([0, 0, 5, 4, 1, 0],5)",
    "io_inp": [
      0,
      0,
      5,
      4,
      1,
      0
    ],
    "io_out": [
      -5,
      -5,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, 4, 0, 5, 2, -3]\noutput : list = [10, 9, 9, 7, 5, 2]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(add_n([4, 4, 0, 5, 2, -3],5),1),11)))",
    "io_inp": [
      4,
      4,
      0,
      5,
      2,
      -3
    ],
    "io_out": [
      10,
      9,
      9,
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(add_n(input,5),1),11)))"
  },
  {
    "input": "input : list = [0, 3, 3, 4]\noutput : list = [-3, 0, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n([0, 3, 3, 4],3))",
    "io_inp": [
      0,
      3,
      3,
      4
    ],
    "io_out": [
      -3,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-4, 0, -5, 5]\noutput : list = [7, 2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(mul_n([-4, 0, -5, 5],1),-2))))",
    "io_inp": [
      -4,
      0,
      -5,
      5
    ],
    "io_out": [
      7,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(mul_n(input,1),-2))))"
  },
  {
    "input": "input : list = [0, -1, -5, -2]\noutput : list = [0, -20, -100, -40]",
    "output": "generated_output : list = mul_n(mul_n([0, -1, -5, -2],-4),-5)",
    "io_inp": [
      0,
      -1,
      -5,
      -2
    ],
    "io_out": [
      0,
      -20,
      -100,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),-5)"
  },
  {
    "input": "input : list = [0, 5, 5, 1, 5]\noutput : list = [5, 5, 5, 1, 0]",
    "output": "generated_output : list = sort_des(reverse([0, 5, 5, 1, 5]))",
    "io_inp": [
      0,
      5,
      5,
      1,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 0, 1, 4, -5, 4]\noutput : list = [25, 25, 5, 1, -11, -11]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(mul_n([-5, 0, 1, 4, -5, 4],-4)),22)),5)",
    "io_inp": [
      -5,
      0,
      1,
      4,
      -5,
      4
    ],
    "io_out": [
      25,
      25,
      5,
      1,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(mul_n(input,-4)),22)),5)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -28]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(mul_n([-4, 2],5)),-5),3))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -28
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(mul_n(input,5)),-5),3))"
  },
  {
    "input": "input : list = [4, 1, 2, 4, 4, -2]\noutput : list = [26, 26, 26, 20, 17, 8]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(sub_n([4, 1, 2, 4, 4, -2],-5)),3)),1)",
    "io_inp": [
      4,
      1,
      2,
      4,
      4,
      -2
    ],
    "io_out": [
      26,
      26,
      26,
      20,
      17,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(sub_n(input,-5)),3)),1)"
  },
  {
    "input": "input : list = [5, 5, -3, 2]\noutput : list = [5, 5]",
    "output": "generated_output : list = drop(mul_n(sort_asc(sub_n(reverse([5, 5, -3, 2]),4)),5),2)",
    "io_inp": [
      5,
      5,
      -3,
      2
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_asc(sub_n(reverse(input),4)),5),2)"
  },
  {
    "input": "input : list = [3, 1, -5, 0, 2]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(take(reverse(drop(sort_des([3, 1, -5, 0, 2]),4)),40),-1)",
    "io_inp": [
      3,
      1,
      -5,
      0,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(drop(sort_des(input),4)),40),-1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [12, 7]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(sub_n([4, -1],-1)),2),-5))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      12,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(sub_n(input,-1)),2),-5))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(add_n([-2, 2],1),-4)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),-4)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-12, -10]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(add_n([-5, -3],-2))),-5))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -12,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(add_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [28, 8]",
    "output": "generated_output : list = sub_n(mul_n(reverse(drop([5, -1, -5],1)),-5),-3)",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      28,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(drop(input,1)),-5),-3)"
  },
  {
    "input": "input : list = [-4, -3, -4]\noutput : list = [6, 8, 8]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des([-4, -3, -4])),-2))",
    "io_inp": [
      -4,
      -3,
      -4
    ],
    "io_out": [
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(input)),-2))"
  },
  {
    "input": "input : list = [5, 2, -3, -5, -3, 4]\noutput : list = [20, 12, 12, -8, -16, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des([5, 2, -3, -5, -3, 4])),-4)))",
    "io_inp": [
      5,
      2,
      -3,
      -5,
      -3,
      4
    ],
    "io_out": [
      20,
      12,
      12,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-2, -2, -4]\noutput : list = [15, 11, 11]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(add_n([-2, -2, -4],-1),-2),5)))",
    "io_inp": [
      -2,
      -2,
      -4
    ],
    "io_out": [
      15,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(add_n(input,-1),-2),5)))"
  },
  {
    "input": "input : list = [4, 1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(take(take(sort_des(drop([4, 1, 3],1)),14),21))",
    "io_inp": [
      4,
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(drop(input,1)),14),21))"
  },
  {
    "input": "input : list = [5, -5, 4, 3]\noutput : list = [5, -5, 4, 3]",
    "output": "generated_output : list = add_n(sub_n([5, -5, 4, 3],-5),-5)",
    "io_inp": [
      5,
      -5,
      4,
      3
    ],
    "io_out": [
      5,
      -5,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),-5)"
  },
  {
    "input": "input : list = [-5, 1, -2, -1]\noutput : list = [-2, -4, -5, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sort_des([-5, 1, -2, -1])),3)))",
    "io_inp": [
      -5,
      1,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sort_des(input)),3)))"
  },
  {
    "input": "input : list = [-4, -1, 2, -5, 3]\noutput : list = [-8, -7, -4, -1, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(add_n([-4, -1, 2, -5, 3],-3)),-2)),2)",
    "io_inp": [
      -4,
      -1,
      2,
      -5,
      3
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(add_n(input,-3)),-2)),2)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-15, -30]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(sort_des([-1, 2]),10),4),-5))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -15,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(sort_des(input),10),4),-5))"
  },
  {
    "input": "input : list = [-4, 5, -5, -2]\noutput : list = [5, -4]",
    "output": "generated_output : list = take(reverse(take([-4, 5, -5, -2],2)),15)",
    "io_inp": [
      -4,
      5,
      -5,
      -2
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,2)),15)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n([-3, -2],-3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, 0, -4, -1]\noutput : list = [9, 4, 3, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n([5, 0, -4, -1],-2),3)),-5)",
    "io_inp": [
      5,
      0,
      -4,
      -1
    ],
    "io_out": [
      9,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(input,-2),3)),-5)"
  },
  {
    "input": "input : list = [-5, 2, 2]\noutput : list = [2, 2, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc([-5, 2, 2])))))",
    "io_inp": [
      -5,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, 5, 1, 2]\noutput : list = [-6, 3, 6, 15]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-2, 5, 1, 2],3)))",
    "io_inp": [
      -2,
      5,
      1,
      2
    ],
    "io_out": [
      -6,
      3,
      6,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,3)))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-4, 2]",
    "output": "generated_output : list = mul_n(add_n(sort_des([1, -5]),3),-1)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),3),-1)"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [-1, -5, 5]",
    "output": "generated_output : list = reverse([5, -5, -1])",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [-15, 12, -3]",
    "output": "generated_output : list = mul_n([-5, 4, -1],3)",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      -15,
      12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, -5, -4, 1]\noutput : list = [-100, -100, -80, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(reverse([-5, -5, -4, 1]),5),4)))",
    "io_inp": [
      -5,
      -5,
      -4,
      1
    ],
    "io_out": [
      -100,
      -100,
      -80,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(reverse(input),5),4)))"
  },
  {
    "input": "input : list = [3, -1, 3]\noutput : list = [3, 3, -1]",
    "output": "generated_output : list = sort_des([3, -1, 3])",
    "io_inp": [
      3,
      -1,
      3
    ],
    "io_out": [
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, 4, -5, 1]\noutput : list = [0, 2, 6, 8, 9]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(add_n([-3, 3, 4, -5, 1],3)),-3)),1)",
    "io_inp": [
      -3,
      3,
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      2,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(add_n(input,3)),-3)),1)"
  },
  {
    "input": "input : list = [3, 4, 5, 4]\noutput : list = [1, 2, 3, 2]",
    "output": "generated_output : list = add_n([3, 4, 5, 4],-2)",
    "io_inp": [
      3,
      4,
      5,
      4
    ],
    "io_out": [
      1,
      2,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -1, -2, 2, 5, -1]\noutput : list = [35, 20, 5, 5, 5, 0]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(mul_n([-1, -1, -2, 2, 5, -1],5),24),5),5))",
    "io_inp": [
      -1,
      -1,
      -2,
      2,
      5,
      -1
    ],
    "io_out": [
      35,
      20,
      5,
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(mul_n(input,5),24),5),5))"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [-12, 16, 16]",
    "output": "generated_output : list = mul_n([3, -4, -4],-4)",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      -12,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 0, -5, 3, 2]\noutput : list = [3, -9, -12, -18, -21]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(sort_asc([-1, 0, -5, 3, 2]),-4))),-3)",
    "io_inp": [
      -1,
      0,
      -5,
      3,
      2
    ],
    "io_out": [
      3,
      -9,
      -12,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(sort_asc(input),-4))),-3)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-7]",
    "output": "generated_output : list = take(drop(sub_n(sub_n([-2, -4],-2),5),1),15)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(sub_n(input,-2),5),1),15)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [-5, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, -5, 1]))",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(reverse([-4, 2]),-1))))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [5, -5, -1, -5, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = drop([5, -5, -1, -5, -3, 3],4)",
    "io_inp": [
      5,
      -5,
      -1,
      -5,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [5, -5, 0, -2]\noutput : list = [-15, -5, -1, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(mul_n([5, -5, 0, -2],-2),-5))))",
    "io_inp": [
      5,
      -5,
      0,
      -2
    ],
    "io_out": [
      -15,
      -5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(mul_n(input,-2),-5))))"
  },
  {
    "input": "input : list = [5, 5, 0, 4]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(drop([5, 5, 0, 4],1)))",
    "io_inp": [
      5,
      5,
      0,
      4
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [14, 12, 12]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des([3, 1, 1]),-3),3),5)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      14,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(input),-3),3),5)"
  },
  {
    "input": "input : list = [-1, -3, 1, 0, 3, 2]\noutput : list = [-18, -12, -6, 0, 6, 18]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(mul_n([-1, -3, 1, 0, 3, 2],1),-3)),2))",
    "io_inp": [
      -1,
      -3,
      1,
      0,
      3,
      2
    ],
    "io_out": [
      -18,
      -12,
      -6,
      0,
      6,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(mul_n(input,1),-3)),2))"
  },
  {
    "input": "input : list = [3, -5, 4, 3, -3, 2]\noutput : list = [2, 3, -6, 2]",
    "output": "generated_output : list = reverse(add_n(take([3, -5, 4, 3, -3, 2],4),-1))",
    "io_inp": [
      3,
      -5,
      4,
      3,
      -3,
      2
    ],
    "io_out": [
      2,
      3,
      -6,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(input,4),-1))"
  },
  {
    "input": "input : list = [-5, -5, -1, 5, 1, -4]\noutput : list = [-5, -9, -11, -14, -15, -15]",
    "output": "generated_output : list = add_n(reverse(take(add_n(sort_asc([-5, -5, -1, 5, 1, -4]),-5),22)),-5)",
    "io_inp": [
      -5,
      -5,
      -1,
      5,
      1,
      -4
    ],
    "io_out": [
      -5,
      -9,
      -11,
      -14,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(sort_asc(input),-5),22)),-5)"
  },
  {
    "input": "input : list = [-5, -5, 5, 1, 1, 2]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(sort_des(add_n(drop(reverse([-5, -5, 5, 1, 1, 2]),5),-1)),-1)",
    "io_inp": [
      -5,
      -5,
      5,
      1,
      1,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(drop(reverse(input),5),-1)),-1)"
  },
  {
    "input": "input : list = [-5, -4, 4, -2, -1, -5]\noutput : list = [-3, -2, 6, 0, 1, -3]",
    "output": "generated_output : list = add_n([-5, -4, 4, -2, -1, -5],2)",
    "io_inp": [
      -5,
      -4,
      4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -3,
      -2,
      6,
      0,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, -5, 3, 2]\noutput : list = [2, 3, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, 3, 2])",
    "io_inp": [
      4,
      -5,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, -4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = drop([3, 5, -4, -1],2)",
    "io_inp": [
      3,
      5,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 1, 2, 1]\noutput : list = [-1, 4, 5, 4]",
    "output": "generated_output : list = take(sub_n(mul_n([-4, 1, 2, 1],1),-3),15)",
    "io_inp": [
      -4,
      1,
      2,
      1
    ],
    "io_out": [
      -1,
      4,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,1),-3),15)"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [-5, 25, 25]",
    "output": "generated_output : list = sub_n(mul_n([-2, 4, 4],5),-5)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      -5,
      25,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-5)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4, -1, 3, 0]\noutput : list = [-1, 3, 0]",
    "output": "generated_output : list = drop([-2, -4, -1, 3, 0],2)",
    "io_inp": [
      -2,
      -4,
      -1,
      3,
      0
    ],
    "io_out": [
      -1,
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, -3, -4, 5, 3, 5]\noutput : list = [-4, -3, -1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([-1, -3, -4, 5, 3, 5])",
    "io_inp": [
      -1,
      -3,
      -4,
      5,
      3,
      5
    ],
    "io_out": [
      -4,
      -3,
      -1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, -1, -1, -3]\noutput : list = [1, -1, -5, -5, -7]",
    "output": "generated_output : list = add_n([5, 3, -1, -1, -3],-4)",
    "io_inp": [
      5,
      3,
      -1,
      -1,
      -3
    ],
    "io_out": [
      1,
      -1,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -2, 1, -2, -3, -4]\noutput : list = [-3, -2, -1, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(sub_n([-1, -2, 1, -2, -3, -4],-3),-1),3),4))",
    "io_inp": [
      -1,
      -2,
      1,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(sub_n(input,-3),-1),3),4))"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [-10, -8, -7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_des(add_n([1, -2, 0],-2)),3),-3))",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      -10,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_des(add_n(input,-2)),3),-3))"
  },
  {
    "input": "input : list = [2, 3, 5, -2, -2, 4]\noutput : list = [2, 3, 5, -2, -2, 4]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n([2, 3, 5, -2, -2, 4],4),4)))",
    "io_inp": [
      2,
      3,
      5,
      -2,
      -2,
      4
    ],
    "io_out": [
      2,
      3,
      5,
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(input,4),4)))"
  },
  {
    "input": "input : list = [0, -1, 5]\noutput : list = [5, -1, 0]",
    "output": "generated_output : list = reverse([0, -1, 5])",
    "io_inp": [
      0,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [-56, -68, -8]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n(sub_n([-3, -5, 5],4),3),3),2),2)",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      -56,
      -68,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(sub_n(input,4),3),3),2),2)"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = sort_des([2, -2, -5])",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 3, 2, -4]\noutput : list = [18, 0, -3, -9]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(add_n([5, 3, 2, -4],-2),13),5)),-3)",
    "io_inp": [
      5,
      3,
      2,
      -4
    ],
    "io_out": [
      18,
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(add_n(input,-2),13),5)),-3)"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [4, -5, -4]",
    "output": "generated_output : list = take(reverse(take(sub_n(sub_n([-3, -4, 5],-2),3),19)),17)",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      4,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(sub_n(input,-2),3),19)),17)"
  },
  {
    "input": "input : list = [-1, -4, -2, -1, 5, -3]\noutput : list = [-7, -6, -5, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(drop([-1, -4, -2, -1, 5, -3],2)))),4)",
    "io_inp": [
      -1,
      -4,
      -2,
      -1,
      5,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(drop(input,2)))),4)"
  },
  {
    "input": "input : list = [5, 5, -2, -3, -2]\noutput : list = [8, 8, 1, 0, 1]",
    "output": "generated_output : list = sub_n([5, 5, -2, -3, -2],-3)",
    "io_inp": [
      5,
      5,
      -2,
      -3,
      -2
    ],
    "io_out": [
      8,
      8,
      1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [2, 1, -6]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc([-3, 4, -4]),-1),3),-5)",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(input),-1),3),-5)"
  },
  {
    "input": "input : list = [5, -4, 3, -3, 2, -3]\noutput : list = [-18, -10, 14, 18]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(take([5, -4, 3, -3, 2, -3],4),-4)),-2))",
    "io_inp": [
      5,
      -4,
      3,
      -3,
      2,
      -3
    ],
    "io_out": [
      -18,
      -10,
      14,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(take(input,4),-4)),-2))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, 15]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(sort_des([3, -1])),4),-3))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(sort_des(input)),4),-3))"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(reverse([-5, 2, -3])))))",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, -5, -4, 2]\noutput : list = [-5, -4, -3, 2]",
    "output": "generated_output : list = sort_asc([-3, -5, -4, 2])",
    "io_inp": [
      -3,
      -5,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-36, -24]",
    "output": "generated_output : list = mul_n(take(mul_n([3, 2],-4),14),3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -36,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-4),14),3)"
  },
  {
    "input": "input : list = [3, -3, 5, -4]\noutput : list = [-5, -3, 3, 4]",
    "output": "generated_output : list = sort_asc(mul_n([3, -3, 5, -4],-1))",
    "io_inp": [
      3,
      -3,
      5,
      -4
    ],
    "io_out": [
      -5,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [11, 4]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(add_n([-2, 5],1),5))),5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      11,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(add_n(input,1),5))),5)"
  },
  {
    "input": "input : list = [3, 5, -4, 0, -4]\noutput : list = [-6, -6, -2, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n(reverse([3, 5, -4, 0, -4]),-2))",
    "io_inp": [
      3,
      5,
      -4,
      0,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [2, -2, 2, -3]\noutput : list = [7, 3, 7, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(add_n([2, -2, 2, -3],5),-5),5),-1),1)",
    "io_inp": [
      2,
      -2,
      2,
      -3
    ],
    "io_out": [
      7,
      3,
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(add_n(input,5),-5),5),-1),1)"
  },
  {
    "input": "input : list = [-5, -1, -3, 0, -4]\noutput : list = [-6, -5, -2]",
    "output": "generated_output : list = add_n(sort_asc(drop([-5, -1, -3, 0, -4],2)),-2)",
    "io_inp": [
      -5,
      -1,
      -3,
      0,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,2)),-2)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [14, -2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n([3, 1],2),5)),-4),-2)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      14,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n(input,2),5)),-4),-2)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [-15, -12, 9]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(sort_asc([-4, -5, 3])),9)),3)",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      -15,
      -12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(sort_asc(input)),9)),3)"
  },
  {
    "input": "input : list = [0, 5, -1, -4, -2]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(take([0, 5, -1, -4, -2],1),5),-1),29),-3)",
    "io_inp": [
      0,
      5,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(take(input,1),5),-1),29),-3)"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc([1, 2, -2])",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(add_n(take(add_n(mul_n([-4, -4],-1),-2),17),-3))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(mul_n(input,-1),-2),17),-3))"
  },
  {
    "input": "input : list = [1, -1, 5, -3]\noutput : list = [-3, -1, 1, 5]",
    "output": "generated_output : list = sort_asc([1, -1, 5, -3])",
    "io_inp": [
      1,
      -1,
      5,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0, 1, -2, -4, 5]\noutput : list = [16, 12, 8, 6, 6, -2]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(sort_asc([1, 0, 1, -2, -4, 5]),14),-1),3),-2)",
    "io_inp": [
      1,
      0,
      1,
      -2,
      -4,
      5
    ],
    "io_out": [
      16,
      12,
      8,
      6,
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(sort_asc(input),14),-1),3),-2)"
  },
  {
    "input": "input : list = [3, 4, 3, -3, 4]\noutput : list = [0, 0, -1, -1, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(reverse([3, 4, 3, -3, 4])))),4)",
    "io_inp": [
      3,
      4,
      3,
      -3,
      4
    ],
    "io_out": [
      0,
      0,
      -1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(reverse(input)))),4)"
  },
  {
    "input": "input : list = [4, -4, -5, 4, 3]\noutput : list = [0, -1, -8, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(drop([4, -4, -5, 4, 3],1))),4))",
    "io_inp": [
      4,
      -4,
      -5,
      4,
      3
    ],
    "io_out": [
      0,
      -1,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(drop(input,1))),4))"
  },
  {
    "input": "input : list = [0, 2, 4, 1, -2, -1]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take(sub_n([0, 2, 4, 1, -2, -1],-3),1),-2)",
    "io_inp": [
      0,
      2,
      4,
      1,
      -2,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,-3),1),-2)"
  },
  {
    "input": "input : list = [-1, 2, 0, 3]\noutput : list = [-2, 1, -1, 2]",
    "output": "generated_output : list = add_n(add_n([-1, 2, 0, 3],2),-3)",
    "io_inp": [
      -1,
      2,
      0,
      3
    ],
    "io_out": [
      -2,
      1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-3)"
  },
  {
    "input": "input : list = [0, 2, 1, -3]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(take([0, 2, 1, -3],1),-3),3),15),-2)",
    "io_inp": [
      0,
      2,
      1,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(take(input,1),-3),3),15),-2)"
  },
  {
    "input": "input : list = [3, -2, 3, 0]\noutput : list = [25, 25, -5, -25]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(mul_n([3, -2, 3, 0],-2),19)),-5),5)",
    "io_inp": [
      3,
      -2,
      3,
      0
    ],
    "io_out": [
      25,
      25,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(mul_n(input,-2),19)),-5),5)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [5, 5, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des([3, 1, 1]),-4))",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [2, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(reverse([0, 5]),11))),2)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(reverse(input),11))),2)"
  },
  {
    "input": "input : list = [3, -4, -2, -3, 3]\noutput : list = [-12, -12, 8, 12, 16]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse([3, -4, -2, -3, 3])),14),-4)",
    "io_inp": [
      3,
      -4,
      -2,
      -3,
      3
    ],
    "io_out": [
      -12,
      -12,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(input)),14),-4)"
  },
  {
    "input": "input : list = [2, 2, 3, -4, -4, 1]\noutput : list = [-40, -60, -60, -80, -180, -180]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(sub_n([2, 2, 3, -4, -4, 1],5),4),5),41))",
    "io_inp": [
      2,
      2,
      3,
      -4,
      -4,
      1
    ],
    "io_out": [
      -40,
      -60,
      -60,
      -80,
      -180,
      -180
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(sub_n(input,5),4),5),41))"
  },
  {
    "input": "input : list = [-4, -1, -3, 4, 5, 1]\noutput : list = [4, 7, 5, 12, 13, 9]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n([-4, -1, -3, 4, 5, 1],-3),3),-2),20)",
    "io_inp": [
      -4,
      -1,
      -3,
      4,
      5,
      1
    ],
    "io_out": [
      4,
      7,
      5,
      12,
      13,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(input,-3),3),-2),20)"
  },
  {
    "input": "input : list = [-1, -1, 4]\noutput : list = [4, -1, -1]",
    "output": "generated_output : list = mul_n(reverse([-1, -1, 4]),1)",
    "io_inp": [
      -1,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n(sort_asc([3, 2]),2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [4, 3, 2, -5, 1, -1]\noutput : list = [-60, -45, -30, 75]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(take([4, 3, 2, -5, 1, -1],4),-5)),3))",
    "io_inp": [
      4,
      3,
      2,
      -5,
      1,
      -1
    ],
    "io_out": [
      -60,
      -45,
      -30,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(take(input,4),-5)),3))"
  },
  {
    "input": "input : list = [2, -3, -3, 1]\noutput : list = [-152, -52, -52, -132]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(add_n([2, -3, -3, 1],5),5),-3),2),-2)",
    "io_inp": [
      2,
      -3,
      -3,
      1
    ],
    "io_out": [
      -152,
      -52,
      -52,
      -132
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(add_n(input,5),5),-3),2),-2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-3, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([-1, -5])),2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),2)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [-17, 23]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(drop([5, -5, 5],1)),13),-4),3)",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      -17,
      23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(drop(input,1)),13),-4),3)"
  },
  {
    "input": "input : list = [-2, -5, 5, 0, 1]\noutput : list = [25, 85, -115, -15, -35]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-2, -5, 5, 0, 1],4),3),-5)",
    "io_inp": [
      -2,
      -5,
      5,
      0,
      1
    ],
    "io_out": [
      25,
      85,
      -115,
      -15,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,4),3),-5)"
  },
  {
    "input": "input : list = [-5, -5, -1, -4, 4, -3]\noutput : list = [5, 0, -2, -3, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_des([-5, -5, -1, -4, 4, -3])))),-1)",
    "io_inp": [
      -5,
      -5,
      -1,
      -4,
      4,
      -3
    ],
    "io_out": [
      5,
      0,
      -2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [1, 1, 2, 5, 2, -2]\noutput : list = [6, 3, 3, 2, 2, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n([1, 1, 2, 5, 2, -2],-1))),2)",
    "io_inp": [
      1,
      1,
      2,
      5,
      2,
      -2
    ],
    "io_out": [
      6,
      3,
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(input,-1))),2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc([3, 2]))),12)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(input))),12)"
  },
  {
    "input": "input : list = [2, 2, -4, 1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(take([2, 2, -4, 1],1)),1),-1))",
    "io_inp": [
      2,
      2,
      -4,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(take(input,1)),1),-1))"
  },
  {
    "input": "input : list = [2, -3, -3, -4, -1, 0]\noutput : list = [-9, -6, -6, 0, 3, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(mul_n([2, -3, -3, -4, -1, 0],3),1)),3))",
    "io_inp": [
      2,
      -3,
      -3,
      -4,
      -1,
      0
    ],
    "io_out": [
      -9,
      -6,
      -6,
      0,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(mul_n(input,3),1)),3))"
  },
  {
    "input": "input : list = [1, -2, 1, 0]\noutput : list = [-2, 4, -2, 0]",
    "output": "generated_output : list = mul_n([1, -2, 1, 0],-2)",
    "io_inp": [
      1,
      -2,
      1,
      0
    ],
    "io_out": [
      -2,
      4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = sub_n(take(mul_n(take(sort_asc([3, -4]),7),-1),23),1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(sort_asc(input),7),-1),23),1)"
  },
  {
    "input": "input : list = [-5, -3, -2, 3, -1, 1]\noutput : list = [-8, -6, -5, -4, -2, 0]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(reverse([-5, -3, -2, 3, -1, 1])),3),47))",
    "io_inp": [
      -5,
      -3,
      -2,
      3,
      -1,
      1
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(reverse(input)),3),47))"
  },
  {
    "input": "input : list = [-2, -3, -2, 4, -3]\noutput : list = [4, 10, 10, 11, 11]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(reverse([-2, -3, -2, 4, -3]),4)),-1),4)",
    "io_inp": [
      -2,
      -3,
      -2,
      4,
      -3
    ],
    "io_out": [
      4,
      10,
      10,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(reverse(input),4)),-1),4)"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [-6, -6, -8]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(mul_n([1, 2, 1],-2)),-2),-2),12)",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(mul_n(input,-2)),-2),-2),12)"
  },
  {
    "input": "input : list = [-1, -2, 2, 1, -4, -4]\noutput : list = [0, -1, 3, 2, -3, -3]",
    "output": "generated_output : list = sub_n([-1, -2, 2, 1, -4, -4],-1)",
    "io_inp": [
      -1,
      -2,
      2,
      1,
      -4,
      -4
    ],
    "io_out": [
      0,
      -1,
      3,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 0, 4, 1]\noutput : list = [-16, -4, 0, 8]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(sort_asc([-2, 0, 4, 1])),1),-4))",
    "io_inp": [
      -2,
      0,
      4,
      1
    ],
    "io_out": [
      -16,
      -4,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [5, 3, 4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(drop([5, 3, 4, -5],2))",
    "io_inp": [
      5,
      3,
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [7, 4]",
    "output": "generated_output : list = add_n([4, 1],3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [3, -3, -5, -3, 3]\noutput : list = [1, -5, -7, -5, 1]",
    "output": "generated_output : list = sub_n([3, -3, -5, -3, 3],2)",
    "io_inp": [
      3,
      -3,
      -5,
      -3,
      3
    ],
    "io_out": [
      1,
      -5,
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, -2, 4, 2, 4, 3]\noutput : list = [2, 3, 6, 7, 8, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(add_n([-1, -2, 4, 2, 4, 3],4)))))",
    "io_inp": [
      -1,
      -2,
      4,
      2,
      4,
      3
    ],
    "io_out": [
      2,
      3,
      6,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(add_n(input,4)))))"
  },
  {
    "input": "input : list = [4, 5, -4, -5, -1]\noutput : list = [-5, -4, -1, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([4, 5, -4, -5, -1]))",
    "io_inp": [
      4,
      5,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, 3, 4, 3, 5]\noutput : list = [9, 7, 8, 7, 8]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(add_n([4, 3, 4, 3, 5],3)))),1)",
    "io_inp": [
      4,
      3,
      4,
      3,
      5
    ],
    "io_out": [
      9,
      7,
      8,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(add_n(input,3)))),1)"
  },
  {
    "input": "input : list = [0, -2, -4, 0, 0]\noutput : list = [45, 45, 45, 63, 81]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sub_n([0, -2, -4, 0, 0],5),3))),-3)",
    "io_inp": [
      0,
      -2,
      -4,
      0,
      0
    ],
    "io_out": [
      45,
      45,
      45,
      63,
      81
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sub_n(input,5),3))),-3)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-4, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sub_n([-5, 2],-5)))),-4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sub_n(input,-5)))),-4)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sub_n([-5, -5],-1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-76, 68]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(mul_n([-5, 4],-4))),-4),4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -76,
      68
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(mul_n(input,-4))),-4),4)"
  },
  {
    "input": "input : list = [-1, -5, 1, -1, -3, 3]\noutput : list = [0, 40, 80, 80, 120, 160]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(add_n([-1, -5, 1, -1, -3, 3],5))),4),5)",
    "io_inp": [
      -1,
      -5,
      1,
      -1,
      -3,
      3
    ],
    "io_out": [
      0,
      40,
      80,
      80,
      120,
      160
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(add_n(input,5))),4),5)"
  },
  {
    "input": "input : list = [1, 0, 0, 2]\noutput : list = [1, 0]",
    "output": "generated_output : list = take([1, 0, 0, 2],2)",
    "io_inp": [
      1,
      0,
      0,
      2
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 1, 3, -3, 3, 1]\noutput : list = [0, 4, 4, 4, 6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([1, 1, 3, -3, 3, 1],4),1))",
    "io_inp": [
      1,
      1,
      3,
      -3,
      3,
      1
    ],
    "io_out": [
      0,
      4,
      4,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,4),1))"
  },
  {
    "input": "input : list = [2, 2, -5, 5, -5, 1]\noutput : list = [-6, -6, 0, 1, 1, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des([2, 2, -5, 5, -5, 1]))),-1)",
    "io_inp": [
      2,
      2,
      -5,
      5,
      -5,
      1
    ],
    "io_out": [
      -6,
      -6,
      0,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(input))),-1)"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [24]",
    "output": "generated_output : list = sort_des(drop(sub_n(sub_n(mul_n([-5, 2, 4],5),1),-5),2))",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(sub_n(mul_n(input,5),1),-5),2))"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [5, -2, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc([5, -4, -2])),1),1))",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc(input)),1),1))"
  },
  {
    "input": "input : list = [-3, 1, -2, 3]\noutput : list = [4, 5, 8, 10]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_asc(sort_asc([-3, 1, -2, 3])),-1),-3),5)",
    "io_inp": [
      -3,
      1,
      -2,
      3
    ],
    "io_out": [
      4,
      5,
      8,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_asc(sort_asc(input)),-1),-3),5)"
  },
  {
    "input": "input : list = [1, 4, -2, -2, 4]\noutput : list = [4, 4, 1, -2, -2]",
    "output": "generated_output : list = sort_des([1, 4, -2, -2, 4])",
    "io_inp": [
      1,
      4,
      -2,
      -2,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [2, 4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(add_n([-3, -5],-5),-1),2),1),-4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(add_n(input,-5),-1),2),1),-4)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-7, -1]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n([-2, 0],-1),-3),3),5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(input,-1),-3),3),5)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([-1, 5],1),-1))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,1),-1))"
  },
  {
    "input": "input : list = [5, -4, -3, 5]\noutput : list = [-3, -2, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(drop([5, -4, -3, 5],1)),1))",
    "io_inp": [
      5,
      -4,
      -3,
      5
    ],
    "io_out": [
      -3,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(drop(input,1)),1))"
  },
  {
    "input": "input : list = [-4, -2, 5, 1, 0, -5]\noutput : list = [-8, -24, -28, -36, -44, -48]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(sub_n([-4, -2, 5, 1, 0, -5],4))),3),4)",
    "io_inp": [
      -4,
      -2,
      5,
      1,
      0,
      -5
    ],
    "io_out": [
      -8,
      -24,
      -28,
      -36,
      -44,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(sub_n(input,4))),3),4)"
  },
  {
    "input": "input : list = [3, 2, 4, -4]\noutput : list = [7, 6, 8, 0]",
    "output": "generated_output : list = add_n([3, 2, 4, -4],4)",
    "io_inp": [
      3,
      2,
      4,
      -4
    ],
    "io_out": [
      7,
      6,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [20, 5]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse([-4, -1])),-5))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      20,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(input)),-5))"
  },
  {
    "input": "input : list = [-4, -5, 1, -1, -2, -2]\noutput : list = [-6, 4, 9, 9, 19, 24]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(mul_n([-4, -5, 1, -1, -2, -2],-5),4)),33),-5)",
    "io_inp": [
      -4,
      -5,
      1,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -6,
      4,
      9,
      9,
      19,
      24
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(mul_n(input,-5),4)),33),-5)"
  },
  {
    "input": "input : list = [-1, 1, 3, -1, -5]\noutput : list = [-5, -1, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 1, 3, -1, -5]))",
    "io_inp": [
      -1,
      1,
      3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -1, 1, 4, 0]\noutput : list = [-11, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(drop([-2, -1, 1, 4, 0],3),-2))),3)",
    "io_inp": [
      -2,
      -1,
      1,
      4,
      0
    ],
    "io_out": [
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(drop(input,3),-2))),3)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 6]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(add_n([2, 0],-2),13),-3)),21)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(add_n(input,-2),13),-3)),21)"
  },
  {
    "input": "input : list = [-1, 2, -5, 4, -2, 1]\noutput : list = [-1, 2, -5, 4, -2, 1]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-1, 2, -5, 4, -2, 1],2),-5),-3)",
    "io_inp": [
      -1,
      2,
      -5,
      4,
      -2,
      1
    ],
    "io_out": [
      -1,
      2,
      -5,
      4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,2),-5),-3)"
  },
  {
    "input": "input : list = [-4, 1, -5, -4, -2]\noutput : list = [-16, -4]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(add_n([-4, 1, -5, -4, -2],3)),2),-4))",
    "io_inp": [
      -4,
      1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(add_n(input,3)),2),-4))"
  },
  {
    "input": "input : list = [-3, -3, 3, 5, 4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse(take(drop([-3, -3, 3, 5, 4, 1],4),24))",
    "io_inp": [
      -3,
      -3,
      3,
      5,
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,4),24))"
  },
  {
    "input": "input : list = [1, 3, -2]\noutput : list = [-2, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(take(reverse([1, 3, -2]),15),15)))",
    "io_inp": [
      1,
      3,
      -2
    ],
    "io_out": [
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(reverse(input),15),15)))"
  },
  {
    "input": "input : list = [-3, -3, 3, 1]\noutput : list = [9, 3, 21, 21]",
    "output": "generated_output : list = reverse(mul_n(take(add_n([-3, -3, 3, 1],-4),15),-3))",
    "io_inp": [
      -3,
      -3,
      3,
      1
    ],
    "io_out": [
      9,
      3,
      21,
      21
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(input,-4),15),-3))"
  },
  {
    "input": "input : list = [4, -1, -3, -4, 2]\noutput : list = [3]",
    "output": "generated_output : list = drop(add_n([4, -1, -3, -4, 2],1),4)",
    "io_inp": [
      4,
      -1,
      -3,
      -4,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(add_n(input,1),4)"
  },
  {
    "input": "input : list = [0, 0, 5, -1]\noutput : list = [-1, 0, 0, 5]",
    "output": "generated_output : list = sort_asc([0, 0, 5, -1])",
    "io_inp": [
      0,
      0,
      5,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, 3, -4, 0, 5]\noutput : list = [-4, 1, -3, 4, 0, -5]",
    "output": "generated_output : list = mul_n([4, -1, 3, -4, 0, 5],-1)",
    "io_inp": [
      4,
      -1,
      3,
      -4,
      0,
      5
    ],
    "io_out": [
      -4,
      1,
      -3,
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(take([0, 0, 4],1),5))))",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(take(input,1),5))))"
  },
  {
    "input": "input : list = [3, 1, -4, 4, 4, 0]\noutput : list = [-40, 0, 10, 30, 40, 40]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sort_des([3, 1, -4, 4, 4, 0])),2)),5)",
    "io_inp": [
      3,
      1,
      -4,
      4,
      4,
      0
    ],
    "io_out": [
      -40,
      0,
      10,
      30,
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sort_des(input)),2)),5)"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [-9, -10, -7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n([2, 1, 4],3),-5),1),2)",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      -9,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(input,3),-5),1),2)"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [3, -7, -7]",
    "output": "generated_output : list = sub_n([5, -5, -5],2)",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, 0, -3, -4, -3]\noutput : list = [-8, -7, -7, -4, -1]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n([3, 0, -3, -4, -3],5),-4))),-3)",
    "io_inp": [
      3,
      0,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n(input,5),-4))),-3)"
  },
  {
    "input": "input : list = [-5, 2, -5, 3, 2, -3]\noutput : list = [-4, -1, -1, 14, 20, 20]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(sort_des([-5, 2, -5, 3, 2, -3]),19),-3),-5))",
    "io_inp": [
      -5,
      2,
      -5,
      3,
      2,
      -3
    ],
    "io_out": [
      -4,
      -1,
      -1,
      14,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(sort_des(input),19),-3),-5))"
  },
  {
    "input": "input : list = [4, 4, 1, 0, 0, -1]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(take([4, 4, 1, 0, 0, -1],1)))))",
    "io_inp": [
      4,
      4,
      1,
      0,
      0,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(sort_des([3, 1]))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-6, -8, -10]",
    "output": "generated_output : list = add_n([-1, -3, -5],-5)",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [7, 4, 4]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(add_n([2, 1, 2],-2)),-3),-1),3)",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      7,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(add_n(input,-2)),-3),-1),3)"
  },
  {
    "input": "input : list = [-4, -3, 2, -1, 4]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(drop([-4, -3, 2, -1, 4],2)),4)),-4)",
    "io_inp": [
      -4,
      -3,
      2,
      -1,
      4
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(drop(input,2)),4)),-4)"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = sort_asc([-1, 4, 5])",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [15, -9]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 3]),-3)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [2, 5, -4, 4, 3]\noutput : list = [3, 6, -3, 5, 4]",
    "output": "generated_output : list = sub_n([2, 5, -4, 4, 3],-1)",
    "io_inp": [
      2,
      5,
      -4,
      4,
      3
    ],
    "io_out": [
      3,
      6,
      -3,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, 2, -3, 5, 1]\noutput : list = [5, 2, 1, 0, -3]",
    "output": "generated_output : list = sort_des([0, 2, -3, 5, 1])",
    "io_inp": [
      0,
      2,
      -3,
      5,
      1
    ],
    "io_out": [
      5,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, 0, -3, 2, 5]\noutput : list = [-12, -8, -6, -2, 4, 6]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_des([3, -4, 0, -3, 2, 5]),-2),32),2),38)",
    "io_inp": [
      3,
      -4,
      0,
      -3,
      2,
      5
    ],
    "io_out": [
      -12,
      -8,
      -6,
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_des(input),-2),32),2),38)"
  },
  {
    "input": "input : list = [2, 4, 1]\noutput : list = [-2, 0, -3]",
    "output": "generated_output : list = add_n([2, 4, 1],-4)",
    "io_inp": [
      2,
      4,
      1
    ],
    "io_out": [
      -2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, -1, -1, 0, 5, -4]\noutput : list = [-13, -4, -9, -10, -10, -8]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(sub_n([1, -1, -1, 0, 5, -4],1),-1)),4),5)",
    "io_inp": [
      1,
      -1,
      -1,
      0,
      5,
      -4
    ],
    "io_out": [
      -13,
      -4,
      -9,
      -10,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(sub_n(input,1),-1)),4),5)"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [-36, 4, 20]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(reverse([4, -1, -3])),-2),4),4)",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      -36,
      4,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(reverse(input)),-2),4),4)"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(take([1, 5, 1],1)),1)),-5)",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(take(input,1)),1)),-5)"
  },
  {
    "input": "input : list = [3, 3, 1, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take([3, 3, 1, 3],2)))",
    "io_inp": [
      3,
      3,
      1,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-20, -25]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(reverse([4, 5]))),13),-5)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(reverse(input))),13),-5)"
  },
  {
    "input": "input : list = [3, 3, 1, 5]\noutput : list = [-4, 0]",
    "output": "generated_output : list = add_n(sub_n(drop([3, 3, 1, 5],2),3),-2)",
    "io_inp": [
      3,
      3,
      1,
      5
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,2),3),-2)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [1, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(add_n([0, 5],3))),-2)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(add_n(input,3))),-2)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-24]",
    "output": "generated_output : list = take(sort_des(take(mul_n(sub_n([5, -3],-3),-3),1)),36)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(sub_n(input,-3),-3),1)),36)"
  },
  {
    "input": "input : list = [-2, -2, 0, -1, -3]\noutput : list = [-8, -7, -7, -6, -5]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_des([-2, -2, 0, -1, -3])),5),1))",
    "io_inp": [
      -2,
      -2,
      0,
      -1,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_des(input)),5),1))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [181, 181]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(mul_n([4, 4],-3),5),-3),1))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      181,
      181
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(mul_n(input,-3),5),-3),1))"
  },
  {
    "input": "input : list = [-1, -5, 4, 1, -3, -5]\noutput : list = [15, -5]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(take([-1, -5, 4, 1, -3, -5],2)),4),5),42)",
    "io_inp": [
      -1,
      -5,
      4,
      1,
      -3,
      -5
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(take(input,2)),4),5),42)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [6, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(drop([0, 4, 2],1),-4))),-3)",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(drop(input,1),-4))),-3)"
  },
  {
    "input": "input : list = [-4, 5, -3, 5, -2, 5]\noutput : list = [7, 7, 0]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(drop([-4, 5, -3, 5, -2, 5],3))),-1),-3)",
    "io_inp": [
      -4,
      5,
      -3,
      5,
      -2,
      5
    ],
    "io_out": [
      7,
      7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(drop(input,3))),-1),-3)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = reverse([-5, -1])",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3, -5, 2]\noutput : list = [-4, -5, -7, -12]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n(add_n([0, 3, -5, 2],-4),-4))),-1)",
    "io_inp": [
      0,
      3,
      -5,
      2
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(add_n(input,-4),-4))),-1)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-2, -10]",
    "output": "generated_output : list = sort_des(reverse(add_n([-5, 3],-5)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,-5)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-3, -2],2)))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [2, 2, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des([-1, 4, 4])),-2)",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [0, 4, -2, 4, 4]\noutput : list = [35, 35, 35, 15, 5]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(reverse([0, 4, -2, 4, 4]))),3),5)",
    "io_inp": [
      0,
      4,
      -2,
      4,
      4
    ],
    "io_out": [
      35,
      35,
      35,
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(reverse(input))),3),5)"
  },
  {
    "input": "input : list = [3, -5, 1, -2, -4]\noutput : list = [-1, 1, 7]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take([3, -5, 1, -2, -4],3),2),-1))",
    "io_inp": [
      3,
      -5,
      1,
      -2,
      -4
    ],
    "io_out": [
      -1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(input,3),2),-1))"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [2, -3, -1]",
    "output": "generated_output : list = reverse(add_n([2, 0, 5],-3))",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [-8, 0, -6]",
    "output": "generated_output : list = sub_n([-4, 4, -2],4)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      -8,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, 3, 0, -2]\noutput : list = [12, 0, -8, -12]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n([-3, 3, 0, -2],-4)),-4),4))",
    "io_inp": [
      -3,
      3,
      0,
      -2
    ],
    "io_out": [
      12,
      0,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n(input,-4)),-4),4))"
  },
  {
    "input": "input : list = [-1, 0, 5, 1]\noutput : list = [-4, -3, 2, -2]",
    "output": "generated_output : list = add_n(sub_n([-1, 0, 5, 1],-2),-5)",
    "io_inp": [
      -1,
      0,
      5,
      1
    ],
    "io_out": [
      -4,
      -3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),-5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = reverse([2, -2])",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, 0, -5]\noutput : list = [-9, -6, -18, -3]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(sub_n([-3, -4, 0, -5],-3),-3),-4),5),50)",
    "io_inp": [
      -3,
      -4,
      0,
      -5
    ],
    "io_out": [
      -9,
      -6,
      -18,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(sub_n(input,-3),-3),-4),5),50)"
  },
  {
    "input": "input : list = [0, 1, -1, 2, 2, -1]\noutput : list = [4, 4, 3, 2, 1, 1]",
    "output": "generated_output : list = take(take(add_n(sort_des(sort_asc([0, 1, -1, 2, 2, -1])),2),26),26)",
    "io_inp": [
      0,
      1,
      -1,
      2,
      2,
      -1
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(sort_asc(input)),2),26),26)"
  },
  {
    "input": "input : list = [2, 4, -5, 0, 1, -1]\noutput : list = [25, 35, -10, 15, 20, 10]",
    "output": "generated_output : list = take(take(take(mul_n(add_n([2, 4, -5, 0, 1, -1],3),5),13),21),24)",
    "io_inp": [
      2,
      4,
      -5,
      0,
      1,
      -1
    ],
    "io_out": [
      25,
      35,
      -10,
      15,
      20,
      10
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(add_n(input,3),5),13),21),24)"
  },
  {
    "input": "input : list = [-4, -4, 1, 2, -4]\noutput : list = [-5, -5, -5, 0, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_des([-4, -4, 1, 2, -4])),2)),3)",
    "io_inp": [
      -4,
      -4,
      1,
      2,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_des(input)),2)),3)"
  },
  {
    "input": "input : list = [-5, -4, -4, 1, 5]\noutput : list = [28, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(drop([-5, -4, -4, 1, 5],3),-1),3),-4),-4)",
    "io_inp": [
      -5,
      -4,
      -4,
      1,
      5
    ],
    "io_out": [
      28,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(drop(input,3),-1),3),-4),-4)"
  },
  {
    "input": "input : list = [-2, 2, 2, -3]\noutput : list = [-4, -3, 1, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(add_n(sort_asc([-2, 2, 2, -3]),3))),-4)",
    "io_inp": [
      -2,
      2,
      2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(add_n(sort_asc(input),3))),-4)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-10, 8]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_des([-1, 5])),-3),5))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -10,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_des(input)),-3),5))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-12, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n([1, -1],5))),-2)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(input,5))),-2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n(sort_asc(take(add_n(sort_des([3, 2]),-4),6)),4)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(add_n(sort_des(input),-4),6)),4)"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [-2, 0, -2]",
    "output": "generated_output : list = add_n([-1, 1, -1],-1)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      -2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [7, -9]",
    "output": "generated_output : list = sort_des(sub_n(add_n(drop(mul_n([1, -2, 2],4),1),-2),-1))",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(drop(mul_n(input,4),1),-2),-1))"
  },
  {
    "input": "input : list = [4, -2, 3, -5]\noutput : list = [-7, -4, 1, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(add_n([4, -2, 3, -5],-3))),-1),9)",
    "io_inp": [
      4,
      -2,
      3,
      -5
    ],
    "io_out": [
      -7,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(add_n(input,-3))),-1),9)"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [-16, -24, 8]",
    "output": "generated_output : list = mul_n(reverse(mul_n([1, -3, -2],2)),4)",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      -16,
      -24,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,2)),4)"
  },
  {
    "input": "input : list = [5, 0, 2]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(drop([5, 0, 2],1)))),1)",
    "io_inp": [
      5,
      0,
      2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = drop([-4, 2, 4],1)",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -5, -1],1)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -2, -3, -1, 3, 3]\noutput : list = [20, 20, 4, -4, 0, -4]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(sub_n([-3, -2, -3, -1, 3, 3],-4),-2),26)),4)",
    "io_inp": [
      -3,
      -2,
      -3,
      -1,
      3,
      3
    ],
    "io_out": [
      20,
      20,
      4,
      -4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(sub_n(input,-4),-2),26)),4)"
  },
  {
    "input": "input : list = [4, 2, -5, -2, 0, 2]\noutput : list = [10, 0, -35, -20, -10, 0]",
    "output": "generated_output : list = take(mul_n(sub_n([4, 2, -5, -2, 0, 2],2),5),12)",
    "io_inp": [
      4,
      2,
      -5,
      -2,
      0,
      2
    ],
    "io_out": [
      10,
      0,
      -35,
      -20,
      -10,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,2),5),12)"
  },
  {
    "input": "input : list = [3, 4, 4, -3, -2, -4]\noutput : list = [2]",
    "output": "generated_output : list = take(add_n([3, 4, 4, -3, -2, -4],-1),1)",
    "io_inp": [
      3,
      4,
      4,
      -3,
      -2,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),1)"
  },
  {
    "input": "input : list = [5, 0, 5, 5, -4]\noutput : list = [11]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(take([5, 0, 5, 5, -4],1),1),23),-5))",
    "io_inp": [
      5,
      0,
      5,
      5,
      -4
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(take(input,1),1),23),-5))"
  },
  {
    "input": "input : list = [5, -3, 1]\noutput : list = [-8, -4, 0]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(sort_des([5, -3, 1])),28),-4),1)",
    "io_inp": [
      5,
      -3,
      1
    ],
    "io_out": [
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(sort_des(input)),28),-4),1)"
  },
  {
    "input": "input : list = [2, -4, 5, -2, -4]\noutput : list = [-9, -9, -7, -3, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sort_asc([2, -4, 5, -2, -4])))),5)",
    "io_inp": [
      2,
      -4,
      5,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [-4, 2, 5, -2]\noutput : list = [-2, 5, 2, -4]",
    "output": "generated_output : list = reverse([-4, 2, 5, -2])",
    "io_inp": [
      -4,
      2,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, -4, -5, 5, 4]\noutput : list = [30, 27, 24, 18, 3, 0]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n(sort_asc([1, 3, -4, -5, 5, 4]),5),3)))",
    "io_inp": [
      1,
      3,
      -4,
      -5,
      5,
      4
    ],
    "io_out": [
      30,
      27,
      24,
      18,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(sort_asc(input),5),3)))"
  },
  {
    "input": "input : list = [-4, -1, -3]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take([-4, -1, -3],1))",
    "io_inp": [
      -4,
      -1,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [4, -2, 5, 1, 5]\noutput : list = [-19, -7, -19, 2, -16]",
    "output": "generated_output : list = reverse(add_n(reverse(reverse(mul_n([4, -2, 5, 1, 5],-3))),-4))",
    "io_inp": [
      4,
      -2,
      5,
      1,
      5
    ],
    "io_out": [
      -19,
      -7,
      -19,
      2,
      -16
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(reverse(mul_n(input,-3))),-4))"
  },
  {
    "input": "input : list = [-4, -2, -3, -5, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(drop([-4, -2, -3, -5, 4, 5],4),-2),3)),2)",
    "io_inp": [
      -4,
      -2,
      -3,
      -5,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(drop(input,4),-2),3)),2)"
  },
  {
    "input": "input : list = [-3, -5, -1, -1]\noutput : list = [-15, -25, -5, -5]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([-3, -5, -1, -1],4),-4),5)",
    "io_inp": [
      -3,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -15,
      -25,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,4),-4),5)"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = sort_asc([2, -3, 1])",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 4, 1, 5]\noutput : list = [1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 4, 1, 5])",
    "io_inp": [
      4,
      4,
      1,
      5
    ],
    "io_out": [
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [-2, 4, 6]",
    "output": "generated_output : list = add_n(add_n([-3, 3, 5],-1),2)",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),2)"
  },
  {
    "input": "input : list = [5, -2, 0, 4, 4, -2]\noutput : list = [1, -6, -4, 0, 0, -6]",
    "output": "generated_output : list = add_n(mul_n([5, -2, 0, 4, 4, -2],1),-4)",
    "io_inp": [
      5,
      -2,
      0,
      4,
      4,
      -2
    ],
    "io_out": [
      1,
      -6,
      -4,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),-4)"
  },
  {
    "input": "input : list = [-5, -4, -4, -1]\noutput : list = [0, -3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sort_des([-5, -4, -4, -1])),-1)))",
    "io_inp": [
      -5,
      -4,
      -4,
      -1
    ],
    "io_out": [
      0,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-5, 0, 4]\noutput : list = [-25, 0, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([-5, 0, 4]),5))",
    "io_inp": [
      -5,
      0,
      4
    ],
    "io_out": [
      -25,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [4, -1, -4, 1]\noutput : list = [4, -1]",
    "output": "generated_output : list = take([4, -1, -4, 1],2)",
    "io_inp": [
      4,
      -1,
      -4,
      1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([-1, 0],1)))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [6, 2]",
    "output": "generated_output : list = add_n(take(add_n(add_n(mul_n([-5, -1],-1),-1),1),3),1)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(mul_n(input,-1),-1),1),3),1)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-6, -5, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(reverse([-4, -3, 5]),-2))))",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -6,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [5, 1, 4, 1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(drop(add_n([5, 1, 4, 1],-5),2))))",
    "io_inp": [
      5,
      1,
      4,
      1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(drop(add_n(input,-5),2))))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [3, 3]",
    "output": "generated_output : list = mul_n(sort_des([-3, -3]),-1)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [5, -4, 1, 1, -1, -1]\noutput : list = [-6, -10, -10, -12, -12, -15]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n([5, -4, 1, 1, -1, -1],-2)),5),-4)",
    "io_inp": [
      5,
      -4,
      1,
      1,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -10,
      -10,
      -12,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(input,-2)),5),-4)"
  },
  {
    "input": "input : list = [-1, -3, -1, -2]\noutput : list = [11, 7, 3, 3]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(mul_n([-1, -3, -1, -2],-4),3),12),2))",
    "io_inp": [
      -1,
      -3,
      -1,
      -2
    ],
    "io_out": [
      11,
      7,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(mul_n(input,-4),3),12),2))"
  },
  {
    "input": "input : list = [3, 3, 5, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(take([3, 3, 5, 2],2),1),8),3))",
    "io_inp": [
      3,
      3,
      5,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(take(input,2),1),8),3))"
  },
  {
    "input": "input : list = [-5, -3, 4, -1]\noutput : list = [-5, -3, -1, 4]",
    "output": "generated_output : list = sort_asc([-5, -3, 4, -1])",
    "io_inp": [
      -5,
      -3,
      4,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 1, -5, 4]\noutput : list = [1, -2, -7, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des([-4, 1, -5, 4]),-1),4),27))",
    "io_inp": [
      -4,
      1,
      -5,
      4
    ],
    "io_out": [
      1,
      -2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des(input),-1),4),27))"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [10, 10, 5]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_des([-5, -5, -4]),-3),-5),1))",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      10,
      10,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_des(input),-3),-5),1))"
  },
  {
    "input": "input : list = [-5, 4, 5, -1, -4]\noutput : list = [-9, -8, -5, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sub_n([-5, 4, 5, -1, -4],4),16))))",
    "io_inp": [
      -5,
      4,
      5,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sub_n(input,4),16))))"
  },
  {
    "input": "input : list = [-5, -1, -1, 2, -3]\noutput : list = [3, 6, 6, 8, 10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n([-5, -1, -1, 2, -3],-5))),-1)",
    "io_inp": [
      -5,
      -1,
      -1,
      2,
      -3
    ],
    "io_out": [
      3,
      6,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(input,-5))),-1)"
  },
  {
    "input": "input : list = [-3, -4, 2, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(take([-3, -4, 2, 2],2),3),-2)))",
    "io_inp": [
      -3,
      -4,
      2,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(take(input,2),3),-2)))"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [4, -21, -21]",
    "output": "generated_output : list = add_n(reverse(take(reverse(mul_n([0, -5, -5],5)),18)),4)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      4,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(mul_n(input,5)),18)),4)"
  },
  {
    "input": "input : list = [-2, -3, -1, -3, -2, 2]\noutput : list = [2, 2, 3, 3, 4, 7]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(sort_asc([-2, -3, -1, -3, -2, 2])),5),24))",
    "io_inp": [
      -2,
      -3,
      -1,
      -3,
      -2,
      2
    ],
    "io_out": [
      2,
      2,
      3,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(sort_asc(input)),5),24))"
  },
  {
    "input": "input : list = [-4, -5, 4, 3, -2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(take([-4, -5, 4, 3, -2, 2],1),3))))",
    "io_inp": [
      -4,
      -5,
      4,
      3,
      -2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(take(input,1),3))))"
  },
  {
    "input": "input : list = [3, 2, -5, 2]\noutput : list = [-2, 5, 5, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc([3, 2, -5, 2])),1),-2)",
    "io_inp": [
      3,
      2,
      -5,
      2
    ],
    "io_out": [
      -2,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(input)),1),-2)"
  },
  {
    "input": "input : list = [0, 3, 1, -3, -4]\noutput : list = [10, 11]",
    "output": "generated_output : list = mul_n(drop(add_n(add_n(add_n([0, 3, 1, -3, -4],-3),-5),1),3),-1)",
    "io_inp": [
      0,
      3,
      1,
      -3,
      -4
    ],
    "io_out": [
      10,
      11
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(add_n(add_n(input,-3),-5),1),3),-1)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des([5, -5])",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, 1, 1, 5, -3]\noutput : list = [4, -1, 1, 1, 5, -3]",
    "output": "generated_output : list = mul_n([4, -1, 1, 1, 5, -3],1)",
    "io_inp": [
      4,
      -1,
      1,
      1,
      5,
      -3
    ],
    "io_out": [
      4,
      -1,
      1,
      1,
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, 3, -3, -1, -4, -5]\noutput : list = [-4, -6, 0, 1]",
    "output": "generated_output : list = take(add_n(reverse(take(take([4, 3, -3, -1, -4, -5],4),20)),-3),25)",
    "io_inp": [
      4,
      3,
      -3,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -6,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(take(input,4),20)),-3),25)"
  },
  {
    "input": "input : list = [4, -3, 4, -1]\noutput : list = [3, 8, 1]",
    "output": "generated_output : list = add_n(reverse(take(take(drop([4, -3, 4, -1],1),13),5)),4)",
    "io_inp": [
      4,
      -3,
      4,
      -1
    ],
    "io_out": [
      3,
      8,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(drop(input,1),13),5)),4)"
  },
  {
    "input": "input : list = [0, 4, -5, 5]\noutput : list = [-7, 3]",
    "output": "generated_output : list = sub_n(take(drop([0, 4, -5, 5],2),11),2)",
    "io_inp": [
      0,
      4,
      -5,
      5
    ],
    "io_out": [
      -7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,2),11),2)"
  },
  {
    "input": "input : list = [4, -2, 2, -2, 4]\noutput : list = [4, 0, 6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(drop([4, -2, 2, -2, 4],2),6),2),-5),1)",
    "io_inp": [
      4,
      -2,
      2,
      -2,
      4
    ],
    "io_out": [
      4,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(drop(input,2),6),2),-5),1)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take(add_n([2, -5],-1),1))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-1),1))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-21, -12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sub_n([3, 0],2)),5),3))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -21,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sub_n(input,2)),5),3))"
  },
  {
    "input": "input : list = [-3, 5, 0, 3, 4]\noutput : list = [-15, 0, 25]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(take([-3, 5, 0, 3, 4],3)),10),27),5)",
    "io_inp": [
      -3,
      5,
      0,
      3,
      4
    ],
    "io_out": [
      -15,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(take(input,3)),10),27),5)"
  },
  {
    "input": "input : list = [-4, 2, 3, -3, 0, -1]\noutput : list = [-1, 0, 2, 3, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n([-4, 2, 3, -3, 0, -1],-3))))",
    "io_inp": [
      -4,
      2,
      3,
      -3,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(input,-3))))"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [17, 17, 11]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(sort_asc([3, -3, 3]),5),-4),5))",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      17,
      17,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(sort_asc(input),5),-4),5))"
  },
  {
    "input": "input : list = [0, -1, 5, -5]\noutput : list = [2, -4, -8]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n(drop([0, -1, 5, -5],1),3)),5),-1)",
    "io_inp": [
      0,
      -1,
      5,
      -5
    ],
    "io_out": [
      2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(drop(input,1),3)),5),-1)"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [9, 7, 4]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_des([-3, 0, 2])),3)),-4)",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      9,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_des(input)),3)),-4)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-36, -16]",
    "output": "generated_output : list = mul_n(sub_n([-5, 0],4),4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -36,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,4),4)"
  },
  {
    "input": "input : list = [5, 3, -2, -3, -5, -5]\noutput : list = [0, -2]",
    "output": "generated_output : list = add_n(sub_n(take([5, 3, -2, -3, -5, -5],2),2),-3)",
    "io_inp": [
      5,
      3,
      -2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,2),2),-3)"
  },
  {
    "input": "input : list = [-1, 3, -4, -1]\noutput : list = [-1, -4, 3, -1]",
    "output": "generated_output : list = reverse([-1, 3, -4, -1])",
    "io_inp": [
      -1,
      3,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, -5, 3]\noutput : list = [3, -3, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, -3, -5, 3]))",
    "io_inp": [
      -5,
      -3,
      -5,
      3
    ],
    "io_out": [
      3,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -4, 4, -5]\noutput : list = [-7, -6, 2, 2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n([4, -4, 4, -5],-3),-4)),-1)",
    "io_inp": [
      4,
      -4,
      4,
      -5
    ],
    "io_out": [
      -7,
      -6,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(input,-3),-4)),-1)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [24, 8]",
    "output": "generated_output : list = mul_n(sort_des(add_n([5, 1],1)),4)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      24,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,1)),4)"
  },
  {
    "input": "input : list = [-4, 1, -1, 3]\noutput : list = [25, -75]",
    "output": "generated_output : list = mul_n(mul_n(drop([-4, 1, -1, 3],2),-5),5)",
    "io_inp": [
      -4,
      1,
      -1,
      3
    ],
    "io_out": [
      25,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(input,2),-5),5)"
  },
  {
    "input": "input : list = [-4, 3, -2, 2]\noutput : list = [-9, 12]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(take([-4, 3, -2, 2],2))),-3))",
    "io_inp": [
      -4,
      3,
      -2,
      2
    ],
    "io_out": [
      -9,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(take(input,2))),-3))"
  },
  {
    "input": "input : list = [-4, 2, -1, -3, -5]\noutput : list = [9, 6, 4, 3, 2]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(reverse([-4, 2, -1, -3, -5])),3)),-4)",
    "io_inp": [
      -4,
      2,
      -1,
      -3,
      -5
    ],
    "io_out": [
      9,
      6,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(reverse(input)),3)),-4)"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [16, 6, 1]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(mul_n([3, 1, 0],-5),-1))),1)",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      16,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(mul_n(input,-5),-1))),1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([2, 5]))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 2, 4, 4, -2]\noutput : list = [3, 3, 5, 5, -1]",
    "output": "generated_output : list = add_n([2, 2, 4, 4, -2],1)",
    "io_inp": [
      2,
      2,
      4,
      4,
      -2
    ],
    "io_out": [
      3,
      3,
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 2, -3, -3]\noutput : list = [-6, -5, 0, 0]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(add_n([3, 2, -3, -3],-1),5),-1),1),47)",
    "io_inp": [
      3,
      2,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(add_n(input,-1),5),-1),1),47)"
  },
  {
    "input": "input : list = [-2, 4, -1, -3, 1]\noutput : list = [-1, -3, 1]",
    "output": "generated_output : list = take(drop([-2, 4, -1, -3, 1],2),12)",
    "io_inp": [
      -2,
      4,
      -1,
      -3,
      1
    ],
    "io_out": [
      -1,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,2),12)"
  },
  {
    "input": "input : list = [-1, -5, 2, 0]\noutput : list = [-5, -1, 0, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sort_des([-1, -5, 2, 0])))))",
    "io_inp": [
      -1,
      -5,
      2,
      0
    ],
    "io_out": [
      -5,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, 5, -5, -2, -4]\noutput : list = [3, -2, -4, -6, -7]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(reverse([0, 5, -5, -2, -4]),25))),-2)",
    "io_inp": [
      0,
      5,
      -5,
      -2,
      -4
    ],
    "io_out": [
      3,
      -2,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(reverse(input),25))),-2)"
  },
  {
    "input": "input : list = [4, -2, 5, -5, 0]\noutput : list = [2, -4, 3, -7, -2]",
    "output": "generated_output : list = mul_n(add_n([4, -2, 5, -5, 0],-2),1)",
    "io_inp": [
      4,
      -2,
      5,
      -5,
      0
    ],
    "io_out": [
      2,
      -4,
      3,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-7, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-5, -3],-4)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-1, -1, 2, -2]\noutput : list = [-2, 4, 4, 6]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(mul_n([-1, -1, 2, -2],-2),2))))",
    "io_inp": [
      -1,
      -1,
      2,
      -2
    ],
    "io_out": [
      -2,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(mul_n(input,-2),2))))"
  },
  {
    "input": "input : list = [-3, -4, 4, 4, -5]\noutput : list = [-90]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(take([-3, -4, 4, 4, -5],1),-2),3),-5))",
    "io_inp": [
      -3,
      -4,
      4,
      4,
      -5
    ],
    "io_out": [
      -90
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(take(input,1),-2),3),-5))"
  },
  {
    "input": "input : list = [5, -1, -2, 5, 2, 1]\noutput : list = [3, 4, 6, 7, 10]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(drop([5, -1, -2, 5, 2, 1],1),3)),-2))",
    "io_inp": [
      5,
      -1,
      -2,
      5,
      2,
      1
    ],
    "io_out": [
      3,
      4,
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(drop(input,1),3)),-2))"
  },
  {
    "input": "input : list = [-4, -3, -5, 3]\noutput : list = [-5, -4, -6, 2]",
    "output": "generated_output : list = sub_n([-4, -3, -5, 3],1)",
    "io_inp": [
      -4,
      -3,
      -5,
      3
    ],
    "io_out": [
      -5,
      -4,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -4, 3]\noutput : list = [2, 0, -4, -7]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(reverse([-1, 5, -4, 3]),2)),5))",
    "io_inp": [
      -1,
      5,
      -4,
      3
    ],
    "io_out": [
      2,
      0,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(reverse(input),2)),5))"
  },
  {
    "input": "input : list = [0, 5, 0, 3]\noutput : list = [40, 0, -60, -60]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(sort_des([0, 5, 0, 3]),-3),-5),38),-4)",
    "io_inp": [
      0,
      5,
      0,
      3
    ],
    "io_out": [
      40,
      0,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(sort_des(input),-3),-5),38),-4)"
  },
  {
    "input": "input : list = [-1, -1, 3, -5]\noutput : list = [3, -1, -1, -5]",
    "output": "generated_output : list = sort_des([-1, -1, 3, -5])",
    "io_inp": [
      -1,
      -1,
      3,
      -5
    ],
    "io_out": [
      3,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2, 4, -1, -1]\noutput : list = [0, 1, 3, -2, -2]",
    "output": "generated_output : list = add_n([1, 2, 4, -1, -1],-1)",
    "io_inp": [
      1,
      2,
      4,
      -1,
      -1
    ],
    "io_out": [
      0,
      1,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 5, 5, -4, 5]\noutput : list = [2, 5, 5, -4, 5]",
    "output": "generated_output : list = add_n(add_n([2, 5, 5, -4, 5],5),-5)",
    "io_inp": [
      2,
      5,
      5,
      -4,
      5
    ],
    "io_out": [
      2,
      5,
      5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-5)"
  },
  {
    "input": "input : list = [2, -4, 0, 5, 0]\noutput : list = [10, 15, 10]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(drop([2, -4, 0, 5, 0],2),1),-4),-5),51)",
    "io_inp": [
      2,
      -4,
      0,
      5,
      0
    ],
    "io_out": [
      10,
      15,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(drop(input,2),1),-4),-5),51)"
  },
  {
    "input": "input : list = [3, -5, 2, 0, -1]\noutput : list = [11, 10, 8, 7, 3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(add_n([3, -5, 2, 0, -1],4),-4))),35)",
    "io_inp": [
      3,
      -5,
      2,
      0,
      -1
    ],
    "io_out": [
      11,
      10,
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(add_n(input,4),-4))),35)"
  },
  {
    "input": "input : list = [1, 0, -1, -3]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(mul_n(take(take([1, 0, -1, -3],1),2),2),17))",
    "io_inp": [
      1,
      0,
      -1,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(take(input,1),2),2),17))"
  },
  {
    "input": "input : list = [-3, 3, -4, -2, 3, 3]\noutput : list = [16, 12, 8, -12, -12, -12]",
    "output": "generated_output : list = mul_n(sort_asc([-3, 3, -4, -2, 3, 3]),-4)",
    "io_inp": [
      -3,
      3,
      -4,
      -2,
      3,
      3
    ],
    "io_out": [
      16,
      12,
      8,
      -12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [5, 2, -3, -2, 2, 1]\noutput : list = [11, 8, -1, -4, -4]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(drop([5, 2, -3, -2, 2, 1],1),-3),2)),1)",
    "io_inp": [
      5,
      2,
      -3,
      -2,
      2,
      1
    ],
    "io_out": [
      11,
      8,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(drop(input,1),-3),2)),1)"
  },
  {
    "input": "input : list = [2, 3, 4, 4]\noutput : list = [-1, 0, 1, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(sort_asc([2, 3, 4, 4]),4)),3))",
    "io_inp": [
      2,
      3,
      4,
      4
    ],
    "io_out": [
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(sort_asc(input),4)),3))"
  },
  {
    "input": "input : list = [3, 1, 4, -1]\noutput : list = [6, 18, 0, 30]",
    "output": "generated_output : list = mul_n(mul_n(add_n([3, 1, 4, -1],-4),-3),2)",
    "io_inp": [
      3,
      1,
      4,
      -1
    ],
    "io_out": [
      6,
      18,
      0,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-4),-3),2)"
  },
  {
    "input": "input : list = [-4, -4, -1, -2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take(take([-4, -4, -1, -2, 4],1),1)",
    "io_inp": [
      -4,
      -4,
      -1,
      -2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,1),1)"
  },
  {
    "input": "input : list = [2, 5, -4, 1]\noutput : list = [2, 8, 10, 20]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des(add_n([2, 5, -4, 1],-1)),5),-2),50)",
    "io_inp": [
      2,
      5,
      -4,
      1
    ],
    "io_out": [
      2,
      8,
      10,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(add_n(input,-1)),5),-2),50)"
  },
  {
    "input": "input : list = [1, 4, 4, 1, 2]\noutput : list = [-1, -1, -2, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des([1, 4, 4, 1, 2]),-1))))",
    "io_inp": [
      1,
      4,
      4,
      1,
      2
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 11]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(mul_n([3, 1],4)),20),3),-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(mul_n(input,4)),20),3),-4)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([0, -2],5)))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,5)))"
  },
  {
    "input": "input : list = [2, 5, -4]\noutput : list = [20, -10, -25]",
    "output": "generated_output : list = sort_des(mul_n([2, 5, -4],-5))",
    "io_inp": [
      2,
      5,
      -4
    ],
    "io_out": [
      20,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [0, -1, 5, -4, -5]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sub_n(mul_n(take([0, -1, 5, -4, -5],2),4),2)",
    "io_inp": [
      0,
      -1,
      5,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,2),4),2)"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [6, -18]",
    "output": "generated_output : list = sort_des(take(sub_n(drop(mul_n([3, -5, 3],3),1),3),34))",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      6,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(drop(mul_n(input,3),1),3),34))"
  },
  {
    "input": "input : list = [-4, -5, -2, 1, 5]\noutput : list = [-10]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(take([-4, -5, -2, 1, 5],1)),4),-2),6)",
    "io_inp": [
      -4,
      -5,
      -2,
      1,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(take(input,1)),4),-2),6)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [16, -4, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([-3, 3, 2]),-1),-4)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      16,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),-1),-4)"
  },
  {
    "input": "input : list = [4, 5, 0, -3, -4, 3]\noutput : list = [7, 6, 5, 2, -1, -2]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse([4, 5, 0, -3, -4, 3]),-2),15))",
    "io_inp": [
      4,
      5,
      0,
      -3,
      -4,
      3
    ],
    "io_out": [
      7,
      6,
      5,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(input),-2),15))"
  },
  {
    "input": "input : list = [-1, 1, 3, -3, 1, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(mul_n(take([-1, 1, 3, -3, 1, -2],1),-2))",
    "io_inp": [
      -1,
      1,
      3,
      -3,
      1,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),-2))"
  },
  {
    "input": "input : list = [-3, -3, 4, -1]\noutput : list = [0, -15, -21, -21]",
    "output": "generated_output : list = take(mul_n(take(sort_des(sub_n([-3, -3, 4, -1],4)),24),3),20)",
    "io_inp": [
      -3,
      -3,
      4,
      -1
    ],
    "io_out": [
      0,
      -15,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(sub_n(input,4)),24),3),20)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_des([-3, -4]))),20))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_des(input))),20))"
  },
  {
    "input": "input : list = [-2, 0, 4, -1, 0, 4]\noutput : list = [-8, -4, 0, 0, 16, 16]",
    "output": "generated_output : list = mul_n(sort_asc([-2, 0, 4, -1, 0, 4]),4)",
    "io_inp": [
      -2,
      0,
      4,
      -1,
      0,
      4
    ],
    "io_out": [
      -8,
      -4,
      0,
      0,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [1, 2, -3, 1]\noutput : list = [-3, 1, 1, 2]",
    "output": "generated_output : list = sort_asc([1, 2, -3, 1])",
    "io_inp": [
      1,
      2,
      -3,
      1
    ],
    "io_out": [
      -3,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, -4, 4]\noutput : list = [0, -6]",
    "output": "generated_output : list = drop(add_n(sub_n(sub_n(reverse([-3, 3, -4, 4]),3),2),2),2)",
    "io_inp": [
      -3,
      3,
      -4,
      4
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(sub_n(reverse(input),3),2),2),2)"
  },
  {
    "input": "input : list = [2, -4, 5, 1]\noutput : list = [3, 0, -1, -6]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_des([2, -4, 5, 1]))),2),4)",
    "io_inp": [
      2,
      -4,
      5,
      1
    ],
    "io_out": [
      3,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_des(input))),2),4)"
  },
  {
    "input": "input : list = [-4, 0, 5, -2, 3]\noutput : list = [-4, 0]",
    "output": "generated_output : list = take([-4, 0, 5, -2, 3],2)",
    "io_inp": [
      -4,
      0,
      5,
      -2,
      3
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 2, -5, -4, 0, -1]\noutput : list = [-32, -32, -28, -16, -12, -4]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n([-5, 2, -5, -4, 0, -1],-3))),4)",
    "io_inp": [
      -5,
      2,
      -5,
      -4,
      0,
      -1
    ],
    "io_out": [
      -32,
      -32,
      -28,
      -16,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(input,-3))),4)"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [-7, -3, 2]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(sub_n([-1, 4, -5],4),1)),3))",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      -7,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(sub_n(input,4),1)),3))"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take([3, 1, 2],1))),-1)",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(input,1))),-1)"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [-6, -1, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(sort_des([3, 5, -2]),16)),2),2)",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      -6,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(sort_des(input),16)),2),2)"
  },
  {
    "input": "input : list = [-5, -3, -4, -3]\noutput : list = [-1, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(sub_n([-5, -3, -4, -3],-1)),-3),38))",
    "io_inp": [
      -5,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(sub_n(input,-1)),-3),38))"
  },
  {
    "input": "input : list = [-2, 3, -3, 0, -3]\noutput : list = [16, -4, 20, 8, 20]",
    "output": "generated_output : list = mul_n(sub_n([-2, 3, -3, 0, -3],2),-4)",
    "io_inp": [
      -2,
      3,
      -3,
      0,
      -3
    ],
    "io_out": [
      16,
      -4,
      20,
      8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),-4)"
  },
  {
    "input": "input : list = [1, 3, 5, -4]\noutput : list = [7, 5, 3, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(add_n([1, 3, 5, -4],-5)),-4),-3))",
    "io_inp": [
      1,
      3,
      5,
      -4
    ],
    "io_out": [
      7,
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(add_n(input,-5)),-4),-3))"
  },
  {
    "input": "input : list = [3, 4, 0, 1, 4]\noutput : list = [0, 1, 3, 4, 4]",
    "output": "generated_output : list = reverse(sort_des([3, 4, 0, 1, 4]))",
    "io_inp": [
      3,
      4,
      0,
      1,
      4
    ],
    "io_out": [
      0,
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 5, -5, 3, 3]\noutput : list = [6, 4, 4, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(reverse([-3, 5, -5, 3, 3]),1))))",
    "io_inp": [
      -3,
      5,
      -5,
      3,
      3
    ],
    "io_out": [
      6,
      4,
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = mul_n([-2, -1],4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [3, 5]",
    "output": "generated_output : list = reverse([5, 3])",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, 5, 4, 0]\noutput : list = [2, 2, 10, 12, 12]",
    "output": "generated_output : list = take(take(sub_n(mul_n(sort_asc([0, 5, 5, 4, 0]),2),-2),34),13)",
    "io_inp": [
      0,
      5,
      5,
      4,
      0
    ],
    "io_out": [
      2,
      2,
      10,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(sort_asc(input),2),-2),34),13)"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [16, 0, 8]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(sub_n([3, -1, 1],-2),4),3),25),-1)",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      16,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(sub_n(input,-2),4),3),25),-1)"
  },
  {
    "input": "input : list = [-3, -1, 3, 4, 4]\noutput : list = [-3, -1, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse([-3, -1, 3, 4, 4]))))",
    "io_inp": [
      -3,
      -1,
      3,
      4,
      4
    ],
    "io_out": [
      -3,
      -1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [2, -2, -4, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = take([2, -2, -4, -2],2)",
    "io_inp": [
      2,
      -2,
      -4,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 3, -4, 2, -2, -2]\noutput : list = [-1, 1, 1, 5, 6, 7]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(add_n([4, 3, -4, 2, -2, -2],-1)),17),-1),3)",
    "io_inp": [
      4,
      3,
      -4,
      2,
      -2,
      -2
    ],
    "io_out": [
      -1,
      1,
      1,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(add_n(input,-1)),17),-1),3)"
  },
  {
    "input": "input : list = [0, -5, -2, -5, 3, -2]\noutput : list = [6, -9, 15, 6, 15, 0]",
    "output": "generated_output : list = take(mul_n(take(reverse([0, -5, -2, -5, 3, -2]),23),-3),23)",
    "io_inp": [
      0,
      -5,
      -2,
      -5,
      3,
      -2
    ],
    "io_out": [
      6,
      -9,
      15,
      6,
      15,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(input),23),-3),23)"
  },
  {
    "input": "input : list = [-5, -5, 5, 0, 1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = drop(sort_des(add_n(take(reverse([-5, -5, 5, 0, 1, -1]),18),4)),4)",
    "io_inp": [
      -5,
      -5,
      5,
      0,
      1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(take(reverse(input),18),4)),4)"
  },
  {
    "input": "input : list = [3, 5, 4, 0, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take([3, 5, 4, 0, 5],2)))",
    "io_inp": [
      3,
      5,
      4,
      0,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-100, -200]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(mul_n([-1, -2],-4),-5))),5)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -100,
      -200
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(mul_n(input,-4),-5))),5)"
  },
  {
    "input": "input : list = [-3, -3, 1, 1]\noutput : list = [7, 7, -9, -9]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n([-3, -3, 1, 1],-4),3))),-2)",
    "io_inp": [
      -3,
      -3,
      1,
      1
    ],
    "io_out": [
      7,
      7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n(input,-4),3))),-2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sort_des(reverse([-4, 1])),9)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),9)"
  },
  {
    "input": "input : list = [5, -4, -4, 4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, -4, 4],1)",
    "io_inp": [
      5,
      -4,
      -4,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 1, -1, -4, 4]\noutput : list = [3, 0, -1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_des([0, 1, -1, -4, 4]),-5),-4)))",
    "io_inp": [
      0,
      1,
      -1,
      -4,
      4
    ],
    "io_out": [
      3,
      0,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_des(input),-5),-4)))"
  },
  {
    "input": "input : list = [0, 4, 1, -4, 5, 2]\noutput : list = [0, 4, 5, 6, 8, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(mul_n([0, 4, 1, -4, 5, 2],1),-1)),-5))",
    "io_inp": [
      0,
      4,
      1,
      -4,
      5,
      2
    ],
    "io_out": [
      0,
      4,
      5,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(mul_n(input,1),-1)),-5))"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = sub_n(add_n([-1, 1, 3],-1),3)",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),3)"
  },
  {
    "input": "input : list = [3, -2, 2, 0, 5, 4]\noutput : list = [5, 4, 3, 2, 0, -2]",
    "output": "generated_output : list = mul_n(sort_des([3, -2, 2, 0, 5, 4]),1)",
    "io_inp": [
      3,
      -2,
      2,
      0,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [3, -4, -1, -2]\noutput : list = [-15, 20]",
    "output": "generated_output : list = mul_n(take([3, -4, -1, -2],2),-5)",
    "io_inp": [
      3,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-5)"
  },
  {
    "input": "input : list = [-5, 3, 1, -4]\noutput : list = [2, -2, -12]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(mul_n([-5, 3, 1, -4],2)),3)),4)",
    "io_inp": [
      -5,
      3,
      1,
      -4
    ],
    "io_out": [
      2,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(mul_n(input,2)),3)),4)"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [74, 44, -16]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(mul_n([5, 3, -1],5),3))),-1)",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      74,
      44,
      -16
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(mul_n(input,5),3))),-1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(sort_asc([-1, -1]),5),21),-4))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(sort_asc(input),5),21),-4))"
  },
  {
    "input": "input : list = [5, 1, -3, -1]\noutput : list = [-3, -1, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 1, -3, -1])",
    "io_inp": [
      5,
      1,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, 4, -5]\noutput : list = [-5, -4, 3, -6]",
    "output": "generated_output : list = add_n(sub_n([-4, -3, 4, -5],-1),-2)",
    "io_inp": [
      -4,
      -3,
      4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),-2)"
  },
  {
    "input": "input : list = [5, 4, 5, -4, 3]\noutput : list = [12, 9, 12]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(take([5, 4, 5, -4, 3],3)),-2),-1),3)",
    "io_inp": [
      5,
      4,
      5,
      -4,
      3
    ],
    "io_out": [
      12,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(take(input,3)),-2),-1),3)"
  },
  {
    "input": "input : list = [-5, 4, 3, 2, 2, -1]\noutput : list = [-9, 0, -1, -2, -2, -5]",
    "output": "generated_output : list = sub_n([-5, 4, 3, 2, 2, -1],4)",
    "io_inp": [
      -5,
      4,
      3,
      2,
      2,
      -1
    ],
    "io_out": [
      -9,
      0,
      -1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, -2, 3, 2, 4, -2]\noutput : list = [-4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(drop(sort_des([-4, -2, 3, 2, 4, -2]),5))),6)",
    "io_inp": [
      -4,
      -2,
      3,
      2,
      4,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(drop(sort_des(input),5))),6)"
  },
  {
    "input": "input : list = [-5, 0, 5, 3]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(reverse(drop([-5, 0, 5, 3],2)))",
    "io_inp": [
      -5,
      0,
      5,
      3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [4, 3, 0, -1]\noutput : list = [1, 0, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n([4, 3, 0, -1],3))",
    "io_inp": [
      4,
      3,
      0,
      -1
    ],
    "io_out": [
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [4, 2, 4, -4, 3]\noutput : list = [4, 2, 4, -4, 3]",
    "output": "generated_output : list = reverse(reverse([4, 2, 4, -4, 3]))",
    "io_inp": [
      4,
      2,
      4,
      -4,
      3
    ],
    "io_out": [
      4,
      2,
      4,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([1, -1]),-4))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [5, 2, 3, -1, 2, 2]\noutput : list = [0, 2, 3, 3, 3, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(reverse([5, 2, 3, -1, 2, 2]),5),-1)))",
    "io_inp": [
      5,
      2,
      3,
      -1,
      2,
      2
    ],
    "io_out": [
      0,
      2,
      3,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(reverse(input),5),-1)))"
  },
  {
    "input": "input : list = [-1, -5, 3, 5]\noutput : list = [-45, -35, -15, 5]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n([-1, -5, 3, 5],-1)),3),-5))",
    "io_inp": [
      -1,
      -5,
      3,
      5
    ],
    "io_out": [
      -45,
      -35,
      -15,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n(input,-1)),3),-5))"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [-3, 4, 5]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_asc([4, 5, -3]),14),25),26))",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      -3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_asc(input),14),25),26))"
  },
  {
    "input": "input : list = [-3, 1, 3, -4, 2]\noutput : list = [-4, -3, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_asc([-3, 1, 3, -4, 2]),13),25),17))",
    "io_inp": [
      -3,
      1,
      3,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_asc(input),13),25),17))"
  },
  {
    "input": "input : list = [1, 1, 1, -2, -5, 2]\noutput : list = [11, 4, 7, 10, 10, 10]",
    "output": "generated_output : list = add_n(reverse(sub_n([1, 1, 1, -2, -5, 2],-4)),5)",
    "io_inp": [
      1,
      1,
      1,
      -2,
      -5,
      2
    ],
    "io_out": [
      11,
      4,
      7,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-4)),5)"
  },
  {
    "input": "input : list = [5, 3, 5, 1, 0, 2]\noutput : list = [18, 18, 12, 9, 6, 3]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_asc([5, 3, 5, 1, 0, 2]),5),4),3))",
    "io_inp": [
      5,
      3,
      5,
      1,
      0,
      2
    ],
    "io_out": [
      18,
      18,
      12,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(sort_asc(input),5),4),3))"
  },
  {
    "input": "input : list = [2, 0, 3, 2, 1]\noutput : list = [6, 4, 4, 2, 0]",
    "output": "generated_output : list = mul_n(sort_des([2, 0, 3, 2, 1]),2)",
    "io_inp": [
      2,
      0,
      3,
      2,
      1
    ],
    "io_out": [
      6,
      4,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [8, 9, 10]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([4, 5, 3]),1),-4)",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),1),-4)"
  },
  {
    "input": "input : list = [5, -1, -2, 4, -4]\noutput : list = [8, -8]",
    "output": "generated_output : list = mul_n(sort_asc(drop([5, -1, -2, 4, -4],3)),-2)",
    "io_inp": [
      5,
      -1,
      -2,
      4,
      -4
    ],
    "io_out": [
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,3)),-2)"
  },
  {
    "input": "input : list = [-3, 5, -1, -2]\noutput : list = [-6, -5, -4, 2]",
    "output": "generated_output : list = sub_n(sort_asc([-3, 5, -1, -2]),3)",
    "io_inp": [
      -3,
      5,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [0, 0, -3, 1, -4]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(take([0, 0, -3, 1, -4],2),-4),-1)))",
    "io_inp": [
      0,
      0,
      -3,
      1,
      -4
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(take(input,2),-4),-1)))"
  },
  {
    "input": "input : list = [-2, -3, 5, -4, -4]\noutput : list = [-29, -44]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take([-2, -3, 5, -4, -4],2),-5),-3),1)",
    "io_inp": [
      -2,
      -3,
      5,
      -4,
      -4
    ],
    "io_out": [
      -29,
      -44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(input,2),-5),-3),1)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -12]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(mul_n([-4, 4],-2),-4),5)))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(mul_n(input,-2),-4),5)))"
  },
  {
    "input": "input : list = [5, -4, -2, 0]\noutput : list = [0, 2, 4, 9]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc([5, -4, -2, 0]),-4)))",
    "io_inp": [
      5,
      -4,
      -2,
      0
    ],
    "io_out": [
      0,
      2,
      4,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(input),-4)))"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [0, -2, -5]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(sort_asc([0, 5, 3])),18),5))",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(sort_asc(input)),18),5))"
  },
  {
    "input": "input : list = [4, 4, 3, 2, -5, -3]\noutput : list = [100, 100, 75, 50, -75, -125]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n([4, 4, 3, 2, -5, -3],5))),5)",
    "io_inp": [
      4,
      4,
      3,
      2,
      -5,
      -3
    ],
    "io_out": [
      100,
      100,
      75,
      50,
      -75,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(input,5))),5)"
  },
  {
    "input": "input : list = [5, 2, 0, 2, 0]\noutput : list = [5, 2, 2, 0, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse([5, 2, 0, 2, 0]))))",
    "io_inp": [
      5,
      2,
      0,
      2,
      0
    ],
    "io_out": [
      5,
      2,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(input))))"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [32]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(take([-2, 4, -3],1),4),-4)))",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      32
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(take(input,1),4),-4)))"
  },
  {
    "input": "input : list = [1, -2, -5]\noutput : list = [-6, -3, 0]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sort_asc([1, -2, -5])),4)),-5)",
    "io_inp": [
      1,
      -2,
      -5
    ],
    "io_out": [
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sort_asc(input)),4)),-5)"
  },
  {
    "input": "input : list = [4, 3, -3, -3, 4]\noutput : list = [4, 4, 3, -3, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(sort_des([4, 3, -3, -3, 4]))),1))",
    "io_inp": [
      4,
      3,
      -3,
      -3,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(add_n([5, -1],-3)),13)),4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(add_n(input,-3)),13)),4)"
  },
  {
    "input": "input : list = [4, 0, 4, 5]\noutput : list = [0, 4, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse([4, 0, 4, 5])))",
    "io_inp": [
      4,
      0,
      4,
      5
    ],
    "io_out": [
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [4, 4, -5]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_des([4, -5, 4])),3)),3)",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_des(input)),3)),3)"
  },
  {
    "input": "input : list = [5, 0, -5, -2]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(take([5, 0, -5, -2],2)))))",
    "io_inp": [
      5,
      0,
      -5,
      -2
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(take(input,2)))))"
  },
  {
    "input": "input : list = [-3, -1, 3, 2, 4, 0]\noutput : list = [-7, -5, -4, -2, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(reverse([-3, -1, 3, 2, 4, 0]),4))))",
    "io_inp": [
      -3,
      -1,
      3,
      2,
      4,
      0
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-3, 4, 4, -2, 5, -3]\noutput : list = [64, -96, 44, -76, -76, 64]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n([-3, 4, 4, -2, 5, -3],5),4),-3)),-4)",
    "io_inp": [
      -3,
      4,
      4,
      -2,
      5,
      -3
    ],
    "io_out": [
      64,
      -96,
      44,
      -76,
      -76,
      64
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n(input,5),4),-3)),-4)"
  },
  {
    "input": "input : list = [5, 2, 2, -1]\noutput : list = [9, 27, 27, 45]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(sort_asc([5, 2, 2, -1]),-2),5),-3),34)",
    "io_inp": [
      5,
      2,
      2,
      -1
    ],
    "io_out": [
      9,
      27,
      27,
      45
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(sort_asc(input),-2),5),-3),34)"
  },
  {
    "input": "input : list = [2, 5, -1, 3, 0, 0]\noutput : list = [5, 0, 0, -10, -15, -25]",
    "output": "generated_output : list = mul_n(sort_asc([2, 5, -1, 3, 0, 0]),-5)",
    "io_inp": [
      2,
      5,
      -1,
      3,
      0,
      0
    ],
    "io_out": [
      5,
      0,
      0,
      -10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-1, 4, -1]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(take([-1, 4, -1],1),4),-2),-1),2)",
    "io_inp": [
      -1,
      4,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(take(input,1),4),-2),-1),2)"
  },
  {
    "input": "input : list = [-1, -1, 3, -3, 0, -5]\noutput : list = [7, 4, 3, 3, 1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse([-1, -1, 3, -3, 0, -5]),-4)))",
    "io_inp": [
      -1,
      -1,
      3,
      -3,
      0,
      -5
    ],
    "io_out": [
      7,
      4,
      3,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(input),-4)))"
  },
  {
    "input": "input : list = [-3, -1, -1, -2]\noutput : list = [7, 7, 2, -3]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n([-3, -1, -1, -2],2),5)),2)",
    "io_inp": [
      -3,
      -1,
      -1,
      -2
    ],
    "io_out": [
      7,
      7,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(input,2),5)),2)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(add_n([-2, 3],-2)),-4),24))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(add_n(input,-2)),-4),24))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [10, -4]",
    "output": "generated_output : list = mul_n(take(sort_des(take(reverse([5, -2]),13)),16),2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(reverse(input),13)),16),2)"
  },
  {
    "input": "input : list = [2, 2, 0, 5]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n(take([2, 2, 0, 5],2),-1)",
    "io_inp": [
      2,
      2,
      0,
      5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [2, 5, 1, 5, -2, -5]\noutput : list = [6, 6, 3, 2, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n([2, 5, 1, 5, -2, -5],1))))",
    "io_inp": [
      2,
      5,
      1,
      5,
      -2,
      -5
    ],
    "io_out": [
      6,
      6,
      3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(input,1))))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-5, 0]))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -1, -2, -2, -2]\noutput : list = [-19, -34, -34, -34, -79]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(mul_n([-5, -1, -2, -2, -2],3)),5)),4)",
    "io_inp": [
      -5,
      -1,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -19,
      -34,
      -34,
      -34,
      -79
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(mul_n(input,3)),5)),4)"
  },
  {
    "input": "input : list = [-5, -5, 0, 2, 3]\noutput : list = [3, 2, 0, -5, -5]",
    "output": "generated_output : list = reverse([-5, -5, 0, 2, 3])",
    "io_inp": [
      -5,
      -5,
      0,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [3, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(sub_n([-3, -1],2),-1))))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(sub_n(input,2),-1))))"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [256, -128, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([4, -2, 0],4),4),4)",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      256,
      -128,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,4),4),4)"
  },
  {
    "input": "input : list = [2, 3, -2, -5]\noutput : list = [-6, -5, -1, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n([2, 3, -2, -5],-1)))),3)",
    "io_inp": [
      2,
      3,
      -2,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n(input,-1)))),3)"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(drop([-5, 2, 4],1))",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n([1, -4, -3],-4)),-2)),2)",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n(input,-4)),-2)),2)"
  },
  {
    "input": "input : list = [-4, -5, -2]\noutput : list = [-26, -32, -35]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(add_n([-4, -5, -2],-5)),3)),-5)",
    "io_inp": [
      -4,
      -5,
      -2
    ],
    "io_out": [
      -26,
      -32,
      -35
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(add_n(input,-5)),3)),-5)"
  },
  {
    "input": "input : list = [-1, -2, -1, 0, 5]\noutput : list = [3, 0, -15]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(drop([-1, -2, -1, 0, 5],2),-3),8)))",
    "io_inp": [
      -1,
      -2,
      -1,
      0,
      5
    ],
    "io_out": [
      3,
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(drop(input,2),-3),8)))"
  },
  {
    "input": "input : list = [-5, 3, -3]\noutput : list = [3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, 3, -3]))",
    "io_inp": [
      -5,
      3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -1, -2, -5, 2]\noutput : list = [-5, -2, -1, 2, 4]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(reverse([4, -1, -2, -5, 2])))),17)",
    "io_inp": [
      4,
      -1,
      -2,
      -5,
      2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(reverse(input)))),17)"
  },
  {
    "input": "input : list = [-3, 4, -5, 0, 2, 2]\noutput : list = [-1, 6, -3, 2, 4, 4]",
    "output": "generated_output : list = add_n([-3, 4, -5, 0, 2, 2],2)",
    "io_inp": [
      -3,
      4,
      -5,
      0,
      2,
      2
    ],
    "io_out": [
      -1,
      6,
      -3,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, -1, 4]\noutput : list = [10]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(take([-5, -1, 4],1)),-3)),-5)",
    "io_inp": [
      -5,
      -1,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(take(input,1)),-3)),-5)"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [4, 4, 5]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(reverse([4, 4, 5])),22)),4)",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(reverse(input)),22)),4)"
  },
  {
    "input": "input : list = [-4, 4, 5, 2]\noutput : list = [7, 6, 4, -2]",
    "output": "generated_output : list = sort_des(take(add_n([-4, 4, 5, 2],2),16))",
    "io_inp": [
      -4,
      4,
      5,
      2
    ],
    "io_out": [
      7,
      6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,2),16))"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [18, 15, 12]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(sort_asc([-3, -2, -1])),2),-5),3)",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      18,
      15,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(sort_asc(input)),2),-5),3)"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [-10, -4, -4]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(add_n([1, -5, 1],-2))),-3))",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      -10,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(add_n(input,-2))),-3))"
  },
  {
    "input": "input : list = [5, -1, 2, -2, 0]\noutput : list = [-29, -19, -39, -24, -54]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(reverse([5, -1, 2, -2, 0]),-5),21),-5),-4)",
    "io_inp": [
      5,
      -1,
      2,
      -2,
      0
    ],
    "io_out": [
      -29,
      -19,
      -39,
      -24,
      -54
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(reverse(input),-5),21),-5),-4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [20, 8]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sort_asc([4, 1]),6)),-1),4)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sort_asc(input),6)),-1),4)"
  },
  {
    "input": "input : list = [1, 3, 3, -3, 0, 0]\noutput : list = [2, 2]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(drop([1, 3, 3, -3, 0, 0],4),1)),6),-3)",
    "io_inp": [
      1,
      3,
      3,
      -3,
      0,
      0
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(drop(input,4),1)),6),-3)"
  },
  {
    "input": "input : list = [4, -4, 5, 2]\noutput : list = [16, -8, -16]",
    "output": "generated_output : list = take(reverse(drop(mul_n(sort_des([4, -4, 5, 2]),-4),1)),37)",
    "io_inp": [
      4,
      -4,
      5,
      2
    ],
    "io_out": [
      16,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(drop(mul_n(sort_des(input),-4),1)),37)"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [11, 8]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(drop([2, -2, -3],1)),-3),-2)",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      11,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(drop(input,1)),-3),-2)"
  },
  {
    "input": "input : list = [3, -1, 1, -4]\noutput : list = [12, 3, -3, -9]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(sort_asc([3, -1, 1, -4])))),-3)",
    "io_inp": [
      3,
      -1,
      1,
      -4
    ],
    "io_out": [
      12,
      3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(sort_asc(input)))),-3)"
  },
  {
    "input": "input : list = [5, -4, -3, 2, -2, -5]\noutput : list = [10, 1, 2, 7, 3, 0]",
    "output": "generated_output : list = sub_n([5, -4, -3, 2, -2, -5],-5)",
    "io_inp": [
      5,
      -4,
      -3,
      2,
      -2,
      -5
    ],
    "io_out": [
      10,
      1,
      2,
      7,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [4, 8]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des(sort_asc([1, 3])),5),-2),39)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(sort_asc(input)),5),-2),39)"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(take(sub_n(take([0, 2, -5],1),4),17),14))",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(take(input,1),4),17),14))"
  },
  {
    "input": "input : list = [4, 0, 0, -5, 1]\noutput : list = [-1, -5, -5, -10, -4]",
    "output": "generated_output : list = mul_n(sub_n([4, 0, 0, -5, 1],5),1)",
    "io_inp": [
      4,
      0,
      0,
      -5,
      1
    ],
    "io_out": [
      -1,
      -5,
      -5,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),1)"
  },
  {
    "input": "input : list = [-4, -3, -3, 5, 1]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(take([-4, -3, -3, 5, 1],3),2),1),4),2)",
    "io_inp": [
      -4,
      -3,
      -3,
      5,
      1
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(take(input,3),2),1),4),2)"
  },
  {
    "input": "input : list = [4, 2, 2]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = reverse(mul_n(take(take(sub_n([4, 2, 2],5),13),19),1))",
    "io_inp": [
      4,
      2,
      2
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sub_n(input,5),13),19),1))"
  },
  {
    "input": "input : list = [2, 4, 1, -5, 2, 0]\noutput : list = [-1, 1, -2, -8, -1, -3]",
    "output": "generated_output : list = sub_n(take(take(add_n([2, 4, 1, -5, 2, 0],-4),22),35),-1)",
    "io_inp": [
      2,
      4,
      1,
      -5,
      2,
      0
    ],
    "io_out": [
      -1,
      1,
      -2,
      -8,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(input,-4),22),35),-1)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-5, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(sort_asc([-2, -4]),3),-1),2))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(sort_asc(input),3),-1),2))"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(sort_asc([4, 1, 5]),-5),4),-2))",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(sort_asc(input),-5),4),-2))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [9, 7]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sub_n([3, 5],-2),-2))))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sub_n(input,-2),-2))))"
  },
  {
    "input": "input : list = [0, 5, 2, -4, 3, 5]\noutput : list = [-5, 10, 1, -17, 4, 10]",
    "output": "generated_output : list = take(sub_n(take(take(mul_n([0, 5, 2, -4, 3, 5],3),18),10),5),36)",
    "io_inp": [
      0,
      5,
      2,
      -4,
      3,
      5
    ],
    "io_out": [
      -5,
      10,
      1,
      -17,
      4,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(mul_n(input,3),18),10),5),36)"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [0, -1, -4]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(sub_n([2, -1, 3],3),5)),-5),36)",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(sub_n(input,3),5)),-5),36)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n([4, 1],1),6),-1),-1)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(input,1),6),-1),-1)"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [-5, 9, 13]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sort_des([5, -4, -2]),10),-3),-2),1)",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      -5,
      9,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sort_des(input),10),-3),-2),1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-23, -23]",
    "output": "generated_output : list = take(reverse(add_n(reverse(mul_n([-4, -4],5)),-3)),10)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -23,
      -23
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(mul_n(input,5)),-3)),10)"
  },
  {
    "input": "input : list = [5, 5, 5, -2, 2, -5]\noutput : list = [2, 2, 2, -1, -5, -8]",
    "output": "generated_output : list = take(add_n(take(sort_des(reverse([5, 5, 5, -2, 2, -5])),8),-3),15)",
    "io_inp": [
      5,
      5,
      5,
      -2,
      2,
      -5
    ],
    "io_out": [
      2,
      2,
      2,
      -1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(reverse(input)),8),-3),15)"
  },
  {
    "input": "input : list = [4, -4, 4]\noutput : list = [-6, -6, -30]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(add_n([4, -4, 4],-5),5)),-4),3)",
    "io_inp": [
      4,
      -4,
      4
    ],
    "io_out": [
      -6,
      -6,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(add_n(input,-5),5)),-4),3)"
  },
  {
    "input": "input : list = [-2, -3, -1, 1]\noutput : list = [2, 1, 3, 5]",
    "output": "generated_output : list = add_n(add_n([-2, -3, -1, 1],2),2)",
    "io_inp": [
      -2,
      -3,
      -1,
      1
    ],
    "io_out": [
      2,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),2)"
  },
  {
    "input": "input : list = [-2, 2, -4, -1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(take(take(mul_n(reverse([-2, 2, -4, -1]),-1),2),40))",
    "io_inp": [
      -2,
      2,
      -4,
      -1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(reverse(input),-1),2),40))"
  },
  {
    "input": "input : list = [-1, -2, 2, -1, 4]\noutput : list = [112, 12, 72, -8, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(reverse([-1, -2, 2, -1, 4]),-5),3),-5),-4)",
    "io_inp": [
      -1,
      -2,
      2,
      -1,
      4
    ],
    "io_out": [
      112,
      12,
      72,
      -8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(reverse(input),-5),3),-5),-4)"
  },
  {
    "input": "input : list = [3, 1, -2, -5, 5]\noutput : list = [-2, 1, 4, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_asc([3, 1, -2, -5, 5]),8)),3))",
    "io_inp": [
      3,
      1,
      -2,
      -5,
      5
    ],
    "io_out": [
      -2,
      1,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_asc(input),8)),3))"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [-1, 3, 6]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sub_n([1, -3, 4],-4)),-1),1),1)",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sub_n(input,-4)),-1),1),1)"
  },
  {
    "input": "input : list = [-4, -3, 0, 2, -5, 1]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = take(take([-4, -3, 0, 2, -5, 1],3),21)",
    "io_inp": [
      -4,
      -3,
      0,
      2,
      -5,
      1
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(take(input,3),21)"
  },
  {
    "input": "input : list = [4, 5, 4, 1, -3]\noutput : list = [1, 2, 1]",
    "output": "generated_output : list = add_n(add_n(take([4, 5, 4, 1, -3],3),-1),-2)",
    "io_inp": [
      4,
      5,
      4,
      1,
      -3
    ],
    "io_out": [
      1,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,3),-1),-2)"
  },
  {
    "input": "input : list = [-4, 0, 2, -4, -3]\noutput : list = [-9, -5, -3, -9, -8]",
    "output": "generated_output : list = sub_n([-4, 0, 2, -4, -3],5)",
    "io_inp": [
      -4,
      0,
      2,
      -4,
      -3
    ],
    "io_out": [
      -9,
      -5,
      -3,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, 3, -1, 1]\noutput : list = [-13, -10, -7, -1]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(mul_n([2, 3, -1, 1],-3))),4),40)",
    "io_inp": [
      2,
      3,
      -1,
      1
    ],
    "io_out": [
      -13,
      -10,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(mul_n(input,-3))),4),40)"
  },
  {
    "input": "input : list = [-1, 3, -4, -2, 3, -1]\noutput : list = [3]",
    "output": "generated_output : list = drop(sort_asc([-1, 3, -4, -2, 3, -1]),5)",
    "io_inp": [
      -1,
      3,
      -4,
      -2,
      3,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-3, -1, 5, 3, 1]\noutput : list = [10, -2, -6]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(take([-3, -1, 5, 3, 1],3))),10),2)",
    "io_inp": [
      -3,
      -1,
      5,
      3,
      1
    ],
    "io_out": [
      10,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(take(input,3))),10),2)"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = sort_asc([0, -5, 1])",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-95, 5]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(mul_n([5, 0],-2),2),5),12),-5)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -95,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(mul_n(input,-2),2),5),12),-5)"
  },
  {
    "input": "input : list = [2, 2, -1, -3]\noutput : list = [-2, 0, 3, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc([2, 2, -1, -3]))),1)",
    "io_inp": [
      2,
      2,
      -1,
      -3
    ],
    "io_out": [
      -2,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(input))),1)"
  },
  {
    "input": "input : list = [3, -4, -4, 2]\noutput : list = [12, -6, -6, 15]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n([3, -4, -4, 2],2),4)),3)",
    "io_inp": [
      3,
      -4,
      -4,
      2
    ],
    "io_out": [
      12,
      -6,
      -6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(input,2),4)),3)"
  },
  {
    "input": "input : list = [-5, -2, -3]\noutput : list = [25]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(take([-5, -2, -3],1))),1),-5)",
    "io_inp": [
      -5,
      -2,
      -3
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(take(input,1))),1),-5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [1, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(sort_des([3, -4]),-3),5)))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(sort_des(input),-3),5)))"
  },
  {
    "input": "input : list = [4, -3, 4, -4, 5, -3]\noutput : list = [5, 4, 4, -3, -3, -4]",
    "output": "generated_output : list = take(sort_des([4, -3, 4, -4, 5, -3]),6)",
    "io_inp": [
      4,
      -3,
      4,
      -4,
      5,
      -3
    ],
    "io_out": [
      5,
      4,
      4,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),6)"
  },
  {
    "input": "input : list = [5, -4, -3, -4, 3, 5]\noutput : list = [-4, -3, -4, 3, 5]",
    "output": "generated_output : list = drop([5, -4, -3, -4, 3, 5],1)",
    "io_inp": [
      5,
      -4,
      -3,
      -4,
      3,
      5
    ],
    "io_out": [
      -4,
      -3,
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 0, 2, -5]\noutput : list = [-5, 0, 1, 2]",
    "output": "generated_output : list = mul_n(reverse(sort_des([1, 0, 2, -5])),1)",
    "io_inp": [
      1,
      0,
      2,
      -5
    ],
    "io_out": [
      -5,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [-11, -5, -3]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n([0, 4, 3],3),2),-4)),-1)",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      -11,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n(input,3),2),-4)),-1)"
  },
  {
    "input": "input : list = [-5, 0, 0, 0]\noutput : list = [20, 0, 0, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc([-5, 0, 0, 0]),-4)))",
    "io_inp": [
      -5,
      0,
      0,
      0
    ],
    "io_out": [
      20,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(input),-4)))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(sort_asc([0, 0]))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 5, 4, 4, 0]\noutput : list = [7, 6, 1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take([-1, 5, 4, 4, 0],3))),2)",
    "io_inp": [
      -1,
      5,
      4,
      4,
      0
    ],
    "io_out": [
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(input,3))),2)"
  },
  {
    "input": "input : list = [1, -5, -4, -2]\noutput : list = [4, 1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(reverse([1, -5, -4, -2]),-3))))",
    "io_inp": [
      1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [-2, -4, 1, 5, 2, 2]\noutput : list = [-3, -6, -6, -7, -10, -12]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(add_n([-2, -4, 1, 5, 2, 2],-5),-2)),-1))",
    "io_inp": [
      -2,
      -4,
      1,
      5,
      2,
      2
    ],
    "io_out": [
      -3,
      -6,
      -6,
      -7,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(add_n(input,-5),-2)),-1))"
  },
  {
    "input": "input : list = [2, 0, 3, -4, -3]\noutput : list = [7, 5, 8, 1, 2]",
    "output": "generated_output : list = take(add_n([2, 0, 3, -4, -3],5),10)",
    "io_inp": [
      2,
      0,
      3,
      -4,
      -3
    ],
    "io_out": [
      7,
      5,
      8,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),10)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(sub_n([-5, 3],2),2),-3)),-2)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(sub_n(input,2),2),-3)),-2)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse([-2, -1]),-2)))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(input),-2)))"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [-5]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(take([-2, -4, 0],1),4),-4),5),40)",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(take(input,1),4),-4),5),40)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [21, 11]",
    "output": "generated_output : list = take(take(sort_des(sub_n(mul_n([-2, -4],-5),-1)),16),2)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      21,
      11
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(mul_n(input,-5),-1)),16),2)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [5, 3, 3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(mul_n([-3, -3, -1],1),-5),-1)))",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(mul_n(input,1),-5),-1)))"
  },
  {
    "input": "input : list = [4, 4, -5, 0, 5]\noutput : list = [0, 5, 9, 9, 10]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(reverse([4, 4, -5, 0, 5])),14),-5),24)",
    "io_inp": [
      4,
      4,
      -5,
      0,
      5
    ],
    "io_out": [
      0,
      5,
      9,
      9,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(reverse(input)),14),-5),24)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(take(sort_des(reverse(add_n([-3, -4],4))),16),39)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(add_n(input,4))),16),39)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-68, 76]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n([-4, 5],4))),1),4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -68,
      76
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n(input,4))),1),4)"
  },
  {
    "input": "input : list = [-2, -3, -2, -1]\noutput : list = [0, 1, 0, -1]",
    "output": "generated_output : list = sub_n(mul_n([-2, -3, -2, -1],-1),2)",
    "io_inp": [
      -2,
      -3,
      -2,
      -1
    ],
    "io_out": [
      0,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),2)"
  },
  {
    "input": "input : list = [-5, 4, -4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(drop([-5, 4, -4, 4],2))))",
    "io_inp": [
      -5,
      4,
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(drop(input,2))))"
  },
  {
    "input": "input : list = [2, 0, 3, 2, -4]\noutput : list = [-11, -7, -5, -5, -4]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(sort_des([2, 0, 3, 2, -4]),-4),3)))",
    "io_inp": [
      2,
      0,
      3,
      2,
      -4
    ],
    "io_out": [
      -11,
      -7,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(sort_des(input),-4),3)))"
  },
  {
    "input": "input : list = [-2, 5, 4, 5]\noutput : list = [5, 5, 4, -2]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(sub_n([-2, 5, 4, 5],5)),2),5),2)",
    "io_inp": [
      -2,
      5,
      4,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(sub_n(input,5)),2),5),2)"
  },
  {
    "input": "input : list = [3, -5, -5, -2]\noutput : list = [-13, 2, 11, 11]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des([3, -5, -5, -2]),-3)),4)",
    "io_inp": [
      3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -13,
      2,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(input),-3)),4)"
  },
  {
    "input": "input : list = [3, 5, 4, 5, 0]\noutput : list = [8, 10, 9, 10, 5]",
    "output": "generated_output : list = reverse(add_n(reverse([3, 5, 4, 5, 0]),5))",
    "io_inp": [
      3,
      5,
      4,
      5,
      0
    ],
    "io_out": [
      8,
      10,
      9,
      10,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),5))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(sort_des([-2, -3])),1),17))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(sort_des(input)),1),17))"
  },
  {
    "input": "input : list = [3, 5, 1, 4]\noutput : list = [1, -1, -2, -3]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sub_n([3, 5, 1, 4],2)))),-1)",
    "io_inp": [
      3,
      5,
      1,
      4
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sub_n(input,2)))),-1)"
  },
  {
    "input": "input : list = [0, -1, 4, -3]\noutput : list = [3, 2, 7, 0]",
    "output": "generated_output : list = add_n([0, -1, 4, -3],3)",
    "io_inp": [
      0,
      -1,
      4,
      -3
    ],
    "io_out": [
      3,
      2,
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, -1, -2, 4, -2, -5]\noutput : list = [0, -5, -6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(take([4, -1, -2, 4, -2, -5],3),3)),-3),-2)",
    "io_inp": [
      4,
      -1,
      -2,
      4,
      -2,
      -5
    ],
    "io_out": [
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(take(input,3),3)),-3),-2)"
  },
  {
    "input": "input : list = [-1, -4, -5, -3, 0]\noutput : list = [8, 2]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take([-1, -4, -5, -3, 0],2),-2)))",
    "io_inp": [
      -1,
      -4,
      -5,
      -3,
      0
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(input,2),-2)))"
  },
  {
    "input": "input : list = [-5, 1, -1, 2, 5]\noutput : list = [-11, -8, -5]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(drop([-5, 1, -1, 2, 5],2),1),2),4),4)",
    "io_inp": [
      -5,
      1,
      -1,
      2,
      5
    ],
    "io_out": [
      -11,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(drop(input,2),1),2),4),4)"
  },
  {
    "input": "input : list = [2, -5, -4, -2, -3, 1]\noutput : list = [-6, -3, 6, 9, 12, 15]",
    "output": "generated_output : list = take(take(mul_n(sort_des([2, -5, -4, -2, -3, 1]),-3),38),38)",
    "io_inp": [
      2,
      -5,
      -4,
      -2,
      -3,
      1
    ],
    "io_out": [
      -6,
      -3,
      6,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(input),-3),38),38)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse(take(reverse([2, 0]),12))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),12))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [7, 15]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(sort_des([-5, -1])),-2)),-5)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      7,
      15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(sort_des(input)),-2)),-5)"
  },
  {
    "input": "input : list = [-4, 5, 0, -2, -5, 3]\noutput : list = [-6, 12, 2, -2, -8, 8]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n([-4, 5, 0, -2, -5, 3],-3),-5),-4),-3),2)",
    "io_inp": [
      -4,
      5,
      0,
      -2,
      -5,
      3
    ],
    "io_out": [
      -6,
      12,
      2,
      -2,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n(input,-3),-5),-4),-3),2)"
  },
  {
    "input": "input : list = [-4, 1, 0]\noutput : list = [-4, 1, 0]",
    "output": "generated_output : list = reverse(reverse([-4, 1, 0]))",
    "io_inp": [
      -4,
      1,
      0
    ],
    "io_out": [
      -4,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, 5, 2, -3, 0]\noutput : list = [-15, -15, -6, 0, 9]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sort_asc([5, 5, 2, -3, 0]),-3))))",
    "io_inp": [
      5,
      5,
      2,
      -3,
      0
    ],
    "io_out": [
      -15,
      -15,
      -6,
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [-4, 0, 1, 2, 3]\noutput : list = [5, 4, 3, 2, -2]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse([-4, 0, 1, 2, 3])),2),1)",
    "io_inp": [
      -4,
      0,
      1,
      2,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(input)),2),1)"
  },
  {
    "input": "input : list = [0, 2, 3, -2]\noutput : list = [-2, 0, 2, 3]",
    "output": "generated_output : list = sort_asc([0, 2, 3, -2])",
    "io_inp": [
      0,
      2,
      3,
      -2
    ],
    "io_out": [
      -2,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3, -4, -5, 5, -4]\noutput : list = [5, 3, 1, -4, -4, -5]",
    "output": "generated_output : list = sort_des([1, 3, -4, -5, 5, -4])",
    "io_inp": [
      1,
      3,
      -4,
      -5,
      5,
      -4
    ],
    "io_out": [
      5,
      3,
      1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-5, 1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(sort_asc([3, -3])),3)),-5)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(sort_asc(input)),3)),-5)"
  },
  {
    "input": "input : list = [0, 4, 4, 0]\noutput : list = [40, 20, 20, 40]",
    "output": "generated_output : list = mul_n(add_n(sub_n([0, 4, 4, 0],3),-5),-5)",
    "io_inp": [
      0,
      4,
      4,
      0
    ],
    "io_out": [
      40,
      20,
      20,
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,3),-5),-5)"
  },
  {
    "input": "input : list = [-1, 0, -4]\noutput : list = [2, -1, -10]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n([-1, 0, -4],-1)),3),5))",
    "io_inp": [
      -1,
      0,
      -4
    ],
    "io_out": [
      2,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n(input,-1)),3),5))"
  },
  {
    "input": "input : list = [0, -5, 4, 0]\noutput : list = [-5, 4, 0]",
    "output": "generated_output : list = drop([0, -5, 4, 0],1)",
    "io_inp": [
      0,
      -5,
      4,
      0
    ],
    "io_out": [
      -5,
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -5, -1, -3, -3]\noutput : list = [-2, 0, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(reverse([-2, -5, -1, -3, -3])),36),-3))",
    "io_inp": [
      -2,
      -5,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -2,
      0,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(reverse(input)),36),-3))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(sub_n([1, -1],1)),2),2))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(sub_n(input,1)),2),2))"
  },
  {
    "input": "input : list = [3, 2, -4, -2, 1]\noutput : list = [-5, -3, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(add_n([3, 2, -4, -2, 1],2),1),1),-5))",
    "io_inp": [
      3,
      2,
      -4,
      -2,
      1
    ],
    "io_out": [
      -5,
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(add_n(input,2),1),1),-5))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [18, -9]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(add_n([4, -5],-1)),-3)))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      18,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(add_n(input,-1)),-3)))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(reverse([4, 5]))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, -2, 5, -5, -1, -3]\noutput : list = [-78, -48, -33, -18, -3, 72]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des([0, -2, 5, -5, -1, -3]),5),3)),-3)",
    "io_inp": [
      0,
      -2,
      5,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -78,
      -48,
      -33,
      -18,
      -3,
      72
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des(input),5),3)),-3)"
  },
  {
    "input": "input : list = [1, 0, -2, -5]\noutput : list = [6, 5, 3, 0]",
    "output": "generated_output : list = sort_des(add_n([1, 0, -2, -5],5))",
    "io_inp": [
      1,
      0,
      -2,
      -5
    ],
    "io_out": [
      6,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [-5, -1, 1, -2, -3]\noutput : list = [-20, -12, -8, -4, 4]",
    "output": "generated_output : list = mul_n(sort_asc([-5, -1, 1, -2, -3]),4)",
    "io_inp": [
      -5,
      -1,
      1,
      -2,
      -3
    ],
    "io_out": [
      -20,
      -12,
      -8,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-3, 0, 2, -5, -5, 4]\noutput : list = [-4, -1, 1, -6, -6, 3]",
    "output": "generated_output : list = reverse(reverse(take(take(add_n([-3, 0, 2, -5, -5, 4],-1),24),13)))",
    "io_inp": [
      -3,
      0,
      2,
      -5,
      -5,
      4
    ],
    "io_out": [
      -4,
      -1,
      1,
      -6,
      -6,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(add_n(input,-1),24),13)))"
  },
  {
    "input": "input : list = [-2, 0, -4, -1]\noutput : list = [-7, -4, -3]",
    "output": "generated_output : list = sort_asc(add_n(take(drop([-2, 0, -4, -1],1),3),-3))",
    "io_inp": [
      -2,
      0,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(drop(input,1),3),-3))"
  },
  {
    "input": "input : list = [-4, -5, -1]\noutput : list = [-13, -10, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(mul_n([-4, -5, -1],3)),-2)),37)",
    "io_inp": [
      -4,
      -5,
      -1
    ],
    "io_out": [
      -13,
      -10,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(mul_n(input,3)),-2)),37)"
  },
  {
    "input": "input : list = [-3, 3, -5, 1, 1]\noutput : list = [3, 1, 1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-3, 3, -5, 1, 1])))",
    "io_inp": [
      -3,
      3,
      -5,
      1,
      1
    ],
    "io_out": [
      3,
      1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-7, -4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse([3, 0]),4),-1))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(input),4),-1))"
  },
  {
    "input": "input : list = [-2, -4, 0, -5]\noutput : list = [0, -2, -4, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(sort_asc([-2, -4, 0, -5])))),26)",
    "io_inp": [
      -2,
      -4,
      0,
      -5
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(sort_asc(input)))),26)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(mul_n(reverse([1, 0]),-4),18)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),-4),18)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(sort_asc([1, -2]),8)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),8)"
  },
  {
    "input": "input : list = [1, 0, 2, -4]\noutput : list = [-6, -2, -1, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_des([1, 0, 2, -4]))),-5),3)",
    "io_inp": [
      1,
      0,
      2,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_des(input))),-5),3)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [20, 14]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(sub_n([3, 0],-5),14),1),3),2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      20,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(sub_n(input,-5),14),1),3),2)"
  },
  {
    "input": "input : list = [-2, 1, -3, -2, 5, 2]\noutput : list = [-3, -2, 5, 2]",
    "output": "generated_output : list = drop([-2, 1, -3, -2, 5, 2],2)",
    "io_inp": [
      -2,
      1,
      -3,
      -2,
      5,
      2
    ],
    "io_out": [
      -3,
      -2,
      5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [-6, -2, -2]",
    "output": "generated_output : list = mul_n([3, 1, 1],-2)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      -6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 5, 0, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(sort_asc([-1, 5, 0, -1]),-3),1),34))",
    "io_inp": [
      -1,
      5,
      0,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(sort_asc(input),-3),1),34))"
  },
  {
    "input": "input : list = [-2, 5, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = drop([-2, 5, 3, 2],2)",
    "io_inp": [
      -2,
      5,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-6, 1]",
    "output": "generated_output : list = sub_n([-4, 3],2)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -5, -5, 5]\noutput : list = [-3, -4, -4, 6]",
    "output": "generated_output : list = take(sub_n([-4, -5, -5, 5],-1),7)",
    "io_inp": [
      -4,
      -5,
      -5,
      5
    ],
    "io_out": [
      -3,
      -4,
      -4,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),7)"
  },
  {
    "input": "input : list = [2, 2, -3, 3, -4, -4]\noutput : list = [4, 3, 3, -2, -3, -3]",
    "output": "generated_output : list = add_n(sort_des([2, 2, -3, 3, -4, -4]),1)",
    "io_inp": [
      2,
      2,
      -3,
      3,
      -4,
      -4
    ],
    "io_out": [
      4,
      3,
      3,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [1, -5, 4, 4, -3]\noutput : list = [-1, -25, 11, 11, -17]",
    "output": "generated_output : list = add_n(take(add_n(take(mul_n([1, -5, 4, 4, -3],4),22),-2),25),-3)",
    "io_inp": [
      1,
      -5,
      4,
      4,
      -3
    ],
    "io_out": [
      -1,
      -25,
      11,
      11,
      -17
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(mul_n(input,4),22),-2),25),-3)"
  },
  {
    "input": "input : list = [5, 4, -2, 2]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(drop([5, 4, -2, 2],2),8)),1),-1)",
    "io_inp": [
      5,
      4,
      -2,
      2
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(drop(input,2),8)),1),-1)"
  },
  {
    "input": "input : list = [-3, 5, 1]\noutput : list = [-5, -1, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(add_n([-3, 5, 1],-2)))))",
    "io_inp": [
      -3,
      5,
      1
    ],
    "io_out": [
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-1, 4, -2, -5]\noutput : list = [10, -5, -8, -17]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse([-1, 4, -2, -5]))),3),-2)",
    "io_inp": [
      -1,
      4,
      -2,
      -5
    ],
    "io_out": [
      10,
      -5,
      -8,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse(input))),3),-2)"
  },
  {
    "input": "input : list = [2, 1, -4, -5, -5]\noutput : list = [-60, -60, -48, 12]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(drop([2, 1, -4, -5, -5],1),-4),-3),1))",
    "io_inp": [
      2,
      1,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -60,
      -60,
      -48,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(drop(input,1),-4),-3),1))"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [-8, 1, -3]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(sub_n([-4, 5, 1],3),2),-5),5),1)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      -8,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(sub_n(input,3),2),-5),5),1)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([4, 5]))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [1, 2, 9]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(sub_n([-4, 3, -5],-2)),18),4))",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      1,
      2,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(sub_n(input,-2)),18),4))"
  },
  {
    "input": "input : list = [-1, -2, 0, -1, -1]\noutput : list = [-4, -5, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(drop([-1, -2, 0, -1, -1],1),-4))",
    "io_inp": [
      -1,
      -2,
      0,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),-4))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-5, -10]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(sort_des([-3, 2]),-5),-1),-1))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(sort_des(input),-5),-1),-1))"
  },
  {
    "input": "input : list = [-4, 2, -1, 5, -2]\noutput : list = [-4, -2, -1, 2, 5]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(reverse([-4, 2, -1, 5, -2])))),28)",
    "io_inp": [
      -4,
      2,
      -1,
      5,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(reverse(input)))),28)"
  },
  {
    "input": "input : list = [-2, -1, 0, -3]\noutput : list = [-5, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([-2, -1, 0, -3],-2)))",
    "io_inp": [
      -2,
      -1,
      0,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,-2)))"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [-40, -16, -32]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(add_n([-3, 0, -2],-2))),4),2)",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      -40,
      -16,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(add_n(input,-2))),4),2)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse([-3, -4])),-2),2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(input)),-2),2)"
  },
  {
    "input": "input : list = [4, 5, 5]\noutput : list = [-17, -17, -14]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(mul_n([4, 5, 5],-1)),3)),-2)",
    "io_inp": [
      4,
      5,
      5
    ],
    "io_out": [
      -17,
      -17,
      -14
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(mul_n(input,-1)),3)),-2)"
  },
  {
    "input": "input : list = [-2, 1, -3, 3]\noutput : list = [-32, 16, -48, 48]",
    "output": "generated_output : list = mul_n(mul_n([-2, 1, -3, 3],4),4)",
    "io_inp": [
      -2,
      1,
      -3,
      3
    ],
    "io_out": [
      -32,
      16,
      -48,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),4)"
  },
  {
    "input": "input : list = [2, 5, 2]\noutput : list = [2, 2, 5]",
    "output": "generated_output : list = sort_asc([2, 5, 2])",
    "io_inp": [
      2,
      5,
      2
    ],
    "io_out": [
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, 1, 1, -3]\noutput : list = [10, 2, 2, 0, 14]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(add_n([-5, 2, 1, 1, -3],-1),6),1),-2))",
    "io_inp": [
      -5,
      2,
      1,
      1,
      -3
    ],
    "io_out": [
      10,
      2,
      2,
      0,
      14
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(add_n(input,-1),6),1),-2))"
  },
  {
    "input": "input : list = [-2, 0, -4, -5, -4, -4]\noutput : list = [-200, -160, -160, -160, -80, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sort_asc([-2, 0, -4, -5, -4, -4]),-5)),-4),2)",
    "io_inp": [
      -2,
      0,
      -4,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -200,
      -160,
      -160,
      -160,
      -80,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sort_asc(input),-5)),-4),2)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(sort_des([0, -5])),1)))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [4, 3]",
    "output": "generated_output : list = mul_n(take(mul_n([-4, -3],1),3),-1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,1),3),-1)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-7, -7, -5]",
    "output": "generated_output : list = reverse(reverse(take(add_n(sort_asc([-4, -4, -2]),-3),13)))",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(sort_asc(input),-3),13)))"
  },
  {
    "input": "input : list = [0, -1, 2]\noutput : list = [6, 4, 3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([0, -1, 2],-4)))",
    "io_inp": [
      0,
      -1,
      2
    ],
    "io_out": [
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [4, 2, 2, 4, -2, 2]\noutput : list = [-16, -8, -8, -8, -4, -4]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_des([4, 2, 2, 4, -2, 2]),4),2),-4))",
    "io_inp": [
      4,
      2,
      2,
      4,
      -2,
      2
    ],
    "io_out": [
      -16,
      -8,
      -8,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_des(input),4),2),-4))"
  },
  {
    "input": "input : list = [-5, 2, -2, -1, 3, 2]\noutput : list = [3, 2, 2, -1, -2, -5]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(sub_n([-5, 2, -2, -1, 3, 2],-3))),3),31)",
    "io_inp": [
      -5,
      2,
      -2,
      -1,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(sub_n(input,-3))),3),31)"
  },
  {
    "input": "input : list = [5, 2, 0]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = sort_des(add_n([5, 2, 0],-1))",
    "io_inp": [
      5,
      2,
      0
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [4, -4, 3]\noutput : list = [1, -7, 0]",
    "output": "generated_output : list = sub_n(add_n([4, -4, 3],-5),-2)",
    "io_inp": [
      4,
      -4,
      3
    ],
    "io_out": [
      1,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),-2)"
  },
  {
    "input": "input : list = [-5, -5, 0, 4, 0]\noutput : list = [-2, -2, 3, 7, 3]",
    "output": "generated_output : list = sub_n([-5, -5, 0, 4, 0],-3)",
    "io_inp": [
      -5,
      -5,
      0,
      4,
      0
    ],
    "io_out": [
      -2,
      -2,
      3,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, -3, -4]\noutput : list = [4, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([4, -1, -3, -4]))",
    "io_inp": [
      4,
      -1,
      -3,
      -4
    ],
    "io_out": [
      4,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, 5, 4, -5]\noutput : list = [5, 4, 4, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 4, 5, 4, -5])",
    "io_inp": [
      -5,
      4,
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, 9]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse([1, -3])))),-3)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [3, 6, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(reverse([-3, -2, 0]),4),3),3))",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(reverse(input),4),3),3))"
  },
  {
    "input": "input : list = [-5, 0, -2, -5]\noutput : list = [-3, 2, 0, -3]",
    "output": "generated_output : list = sub_n([-5, 0, -2, -5],-2)",
    "io_inp": [
      -5,
      0,
      -2,
      -5
    ],
    "io_out": [
      -3,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, 3, -4, 1, -2]\noutput : list = [-20, -10, 5, 5, 15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sort_des([1, 3, -4, 1, -2])))),5)",
    "io_inp": [
      1,
      3,
      -4,
      1,
      -2
    ],
    "io_out": [
      -20,
      -10,
      5,
      5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-5, 2, 2, 4, 1, 4]\noutput : list = [19, -2, -2, -8, 1, -8]",
    "output": "generated_output : list = add_n(sub_n(mul_n([-5, 2, 2, 4, 1, 4],-3),1),5)",
    "io_inp": [
      -5,
      2,
      2,
      4,
      1,
      4
    ],
    "io_out": [
      19,
      -2,
      -2,
      -8,
      1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-3),1),5)"
  },
  {
    "input": "input : list = [-3, 5, -5, 4]\noutput : list = [25, -20, -25]",
    "output": "generated_output : list = take(sort_des(take(mul_n(drop([-3, 5, -5, 4],1),-5),26)),6)",
    "io_inp": [
      -3,
      5,
      -5,
      4
    ],
    "io_out": [
      25,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(drop(input,1),-5),26)),6)"
  },
  {
    "input": "input : list = [2, 2, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = drop([2, 2, 5, 5],2)",
    "io_inp": [
      2,
      2,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -3, -1, -3, -4]\noutput : list = [0, 0, 2, 6]",
    "output": "generated_output : list = take(drop(add_n(take(sort_asc([3, -3, -1, -3, -4]),7),3),1),11)",
    "io_inp": [
      3,
      -3,
      -1,
      -3,
      -4
    ],
    "io_out": [
      0,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = take(drop(add_n(take(sort_asc(input),7),3),1),11)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [4, -20]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(mul_n([3, -5],3),1)),-4),32)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      4,
      -20
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(mul_n(input,3),1)),-4),32)"
  },
  {
    "input": "input : list = [4, 0, 0, -5, 4]\noutput : list = [25, 0, 0, -20, -20]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(sort_des([4, 0, 0, -5, 4])),33)),-5)",
    "io_inp": [
      4,
      0,
      0,
      -5,
      4
    ],
    "io_out": [
      25,
      0,
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(sort_des(input)),33)),-5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(sort_asc([0, -1]),-3))))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [4, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n([-1, -2, 3],-1))",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-3, 4, -4, 3]\noutput : list = [-1, -2, -8, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-3, 4, -4, 3],-5)))",
    "io_inp": [
      -3,
      4,
      -4,
      3
    ],
    "io_out": [
      -1,
      -2,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-5)))"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(take(drop([4, 2, 1],1),15))",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,1),15))"
  },
  {
    "input": "input : list = [-2, -1, -2, 1, -1]\noutput : list = [10, 10, 7, 7, 1]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_des([-2, -1, -2, 1, -1]),3)),-1),-4)",
    "io_inp": [
      -2,
      -1,
      -2,
      1,
      -1
    ],
    "io_out": [
      10,
      10,
      7,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_des(input),3)),-1),-4)"
  },
  {
    "input": "input : list = [0, -4, -3, 4, -2, 3]\noutput : list = [9, 8, 5, 3, 2, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse([0, -4, -3, 4, -2, 3])),23),-5)",
    "io_inp": [
      0,
      -4,
      -3,
      4,
      -2,
      3
    ],
    "io_out": [
      9,
      8,
      5,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(input)),23),-5)"
  },
  {
    "input": "input : list = [-3, 0, 0, -3, -4]\noutput : list = [6]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(sort_des([-3, 0, 0, -3, -4]),1),-1)),5)",
    "io_inp": [
      -3,
      0,
      0,
      -3,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(sort_des(input),1),-1)),5)"
  },
  {
    "input": "input : list = [0, -4, -2, -1, 3, -2]\noutput : list = [0, -1, -2, -4]",
    "output": "generated_output : list = sort_des(take([0, -4, -2, -1, 3, -2],4))",
    "io_inp": [
      0,
      -4,
      -2,
      -1,
      3,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [-5, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, -5])",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, 1, 1, -5]\noutput : list = [-5, -1, 1, 1]",
    "output": "generated_output : list = take(sort_asc(reverse(drop([4, -1, 1, 1, -5],1))),4)",
    "io_inp": [
      4,
      -1,
      1,
      1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(drop(input,1))),4)"
  },
  {
    "input": "input : list = [4, 2, 3, -3, 3]\noutput : list = [-32, -24, -24, -16, 24]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(mul_n([4, 2, 3, -3, 3],2),-4))),24)",
    "io_inp": [
      4,
      2,
      3,
      -3,
      3
    ],
    "io_out": [
      -32,
      -24,
      -24,
      -16,
      24
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(mul_n(input,2),-4))),24)"
  },
  {
    "input": "input : list = [-5, 1, 2, 3, -5, 4]\noutput : list = [-19, -16, -13, -10, 8, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(mul_n([-5, 1, 2, 3, -5, 4],-3),3))),-4)",
    "io_inp": [
      -5,
      1,
      2,
      3,
      -5,
      4
    ],
    "io_out": [
      -19,
      -16,
      -13,
      -10,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(mul_n(input,-3),3))),-4)"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [-2, -1, -7]",
    "output": "generated_output : list = take(take(mul_n(add_n(reverse([-2, 4, 3]),-5),1),33),42)",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      -2,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(reverse(input),-5),1),33),42)"
  },
  {
    "input": "input : list = [4, -1, -4, -3, 3, 5]\noutput : list = [-4, -3, -1, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_des(drop([4, -1, -4, -3, 3, 5],1)))))",
    "io_inp": [
      4,
      -1,
      -4,
      -3,
      3,
      5
    ],
    "io_out": [
      -4,
      -3,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-5, 4, 2, 3, 4]\noutput : list = [4, 4, 3, 2, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, 4, 2, 3, 4]))",
    "io_inp": [
      -5,
      4,
      2,
      3,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, 0, -5, -5]\noutput : list = [-2, -7, -7]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(drop([-2, 0, -5, -5],1))),18),-2)",
    "io_inp": [
      -2,
      0,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(drop(input,1))),18),-2)"
  },
  {
    "input": "input : list = [-4, 3, 1, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = add_n(take([-4, 3, 1, 4],2),1)",
    "io_inp": [
      -4,
      3,
      1,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),1)"
  },
  {
    "input": "input : list = [-4, 4, 3, 4]\noutput : list = [4, 4, 3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([-4, 4, 3, 4])))",
    "io_inp": [
      -4,
      4,
      3,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, 5, 0, 3, 3, 1]\noutput : list = [-12, 6, -4, 2, 2, -2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(mul_n([-4, 5, 0, 3, 3, 1],2),5),3),3),-1)",
    "io_inp": [
      -4,
      5,
      0,
      3,
      3,
      1
    ],
    "io_out": [
      -12,
      6,
      -4,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(mul_n(input,2),5),3),3),-1)"
  },
  {
    "input": "input : list = [0, -5, -4, 5, 4, -5]\noutput : list = [-5, -5, -4, 0, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(sort_asc([0, -5, -4, 5, 4, -5])),1)))",
    "io_inp": [
      0,
      -5,
      -4,
      5,
      4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [20, 4, 32]",
    "output": "generated_output : list = take(mul_n(add_n([2, -2, 5],3),4),16)",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      20,
      4,
      32
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,3),4),16)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(reverse([-1, 1]),3))))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(sort_des([-1, 3])))))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, 4, 1, -1]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = drop([4, 4, 1, -1],1)",
    "io_inp": [
      4,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 1, 3, -3, 5]\noutput : list = [0, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(drop([-2, 1, 3, -3, 5],2),3))",
    "io_inp": [
      -2,
      1,
      3,
      -3,
      5
    ],
    "io_out": [
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,2),3))"
  },
  {
    "input": "input : list = [-1, -2, -3, -4, 2, 0]\noutput : list = [-18, -12, -6, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(take([-1, -2, -3, -4, 2, 0],4),3)),3),2)",
    "io_inp": [
      -1,
      -2,
      -3,
      -4,
      2,
      0
    ],
    "io_out": [
      -18,
      -12,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(take(input,4),3)),3),2)"
  },
  {
    "input": "input : list = [4, -2, 1]\noutput : list = [-14, -17, -20]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(sub_n([4, -2, 1],3),-5),-5)),5)",
    "io_inp": [
      4,
      -2,
      1
    ],
    "io_out": [
      -14,
      -17,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(sub_n(input,3),-5),-5)),5)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse([5, 4])",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 5, 0]\noutput : list = [2, 7, 1]",
    "output": "generated_output : list = reverse(take(reverse(reverse(sub_n([-1, 5, 0],-2))),3))",
    "io_inp": [
      -1,
      5,
      0
    ],
    "io_out": [
      2,
      7,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(sub_n(input,-2))),3))"
  },
  {
    "input": "input : list = [1, -1, -2, 5, 2, -2]\noutput : list = [-1, 0, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(take([1, -1, -2, 5, 2, -2],3)),21),1))",
    "io_inp": [
      1,
      -1,
      -2,
      5,
      2,
      -2
    ],
    "io_out": [
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(take(input,3)),21),1))"
  },
  {
    "input": "input : list = [5, -1, 3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take([5, -1, 3],1))))",
    "io_inp": [
      5,
      -1,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(input,1))))"
  },
  {
    "input": "input : list = [5, 3, -1, 3, -3]\noutput : list = [-3, -1, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 3, -1, 3, -3])",
    "io_inp": [
      5,
      3,
      -1,
      3,
      -3
    ],
    "io_out": [
      -3,
      -1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, 0, -1, -4, 2]\noutput : list = [-2, 1, 2, 2, 4, 6]",
    "output": "generated_output : list = sort_asc(reverse(add_n([0, 4, 0, -1, -4, 2],2)))",
    "io_inp": [
      0,
      4,
      0,
      -1,
      -4,
      2
    ],
    "io_out": [
      -2,
      1,
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,2)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-5, -10]",
    "output": "generated_output : list = sort_des(sort_des(take(take(mul_n([-1, -2],5),9),2)))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(mul_n(input,5),9),2)))"
  },
  {
    "input": "input : list = [-1, 4, 1, -5, 3, 0]\noutput : list = [16, 14, 10, 8, 6, -2]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(sub_n([-1, 4, 1, -5, 3, 0],-3),-2),-1)),2)",
    "io_inp": [
      -1,
      4,
      1,
      -5,
      3,
      0
    ],
    "io_out": [
      16,
      14,
      10,
      8,
      6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(sub_n(input,-3),-2),-1)),2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sub_n(sub_n([5, 2],3),3)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [-5, 5, 3, 0, 3]\noutput : list = [7, 5, 5, 2, -3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_des([-5, 5, 3, 0, 3])),5)),3)",
    "io_inp": [
      -5,
      5,
      3,
      0,
      3
    ],
    "io_out": [
      7,
      5,
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_des(input)),5)),3)"
  },
  {
    "input": "input : list = [4, 4, -4, -2]\noutput : list = [-8, -6, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(drop([4, 4, -4, -2],1),3)),1),20)",
    "io_inp": [
      4,
      4,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -6,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(drop(input,1),3)),1),20)"
  },
  {
    "input": "input : list = [-4, 4, -3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(drop([-4, 4, -3, -2],2))",
    "io_inp": [
      -4,
      4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-5, -2, -2, -2, -2, 4]\noutput : list = [-2, -2, -2]",
    "output": "generated_output : list = sort_des(drop(sort_des(drop([-5, -2, -2, -2, -2, 4],2)),1))",
    "io_inp": [
      -5,
      -2,
      -2,
      -2,
      -2,
      4
    ],
    "io_out": [
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(drop(input,2)),1))"
  },
  {
    "input": "input : list = [3, -2, -2]\noutput : list = [15, 15]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(drop([3, -2, -2],1),1),4),1),5)",
    "io_inp": [
      3,
      -2,
      -2
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(drop(input,1),1),4),1),5)"
  },
  {
    "input": "input : list = [-4, -4, 0, -4]\noutput : list = [4, 0, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n([-4, -4, 0, -4],1),-3))),-2)",
    "io_inp": [
      -4,
      -4,
      0,
      -4
    ],
    "io_out": [
      4,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n(input,1),-3))),-2)"
  },
  {
    "input": "input : list = [1, 5, 1, -5, 2, 5]\noutput : list = [-45, -30, 5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(drop([1, 5, 1, -5, 2, 5],3),3),-5)),-5)",
    "io_inp": [
      1,
      5,
      1,
      -5,
      2,
      5
    ],
    "io_out": [
      -45,
      -30,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(drop(input,3),3),-5)),-5)"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [2, 2, -6]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(add_n([3, 3, -5],5),-1))),-5)",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(add_n(input,5),-1))),-5)"
  },
  {
    "input": "input : list = [3, 0, 0, -2]\noutput : list = [1, 3, 3, 6]",
    "output": "generated_output : list = sort_asc(sub_n([3, 0, 0, -2],-3))",
    "io_inp": [
      3,
      0,
      0,
      -2
    ],
    "io_out": [
      1,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-3))"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [-44, -44, -24]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(add_n([2, 2, -3],2),5),-1),-4),4)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      -44,
      -44,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(add_n(input,2),5),-1),-4),4)"
  },
  {
    "input": "input : list = [5, 2, 1, 3, -4]\noutput : list = [5, 3, 2, 1, -4]",
    "output": "generated_output : list = sort_des([5, 2, 1, 3, -4])",
    "io_inp": [
      5,
      2,
      1,
      3,
      -4
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, -2, -4, -5, -3]\noutput : list = [0, -4, -8, -12, -20, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(mul_n([0, 0, -2, -4, -5, -3],1),5))),-4)",
    "io_inp": [
      0,
      0,
      -2,
      -4,
      -5,
      -3
    ],
    "io_out": [
      0,
      -4,
      -8,
      -12,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(mul_n(input,1),5))),-4)"
  },
  {
    "input": "input : list = [2, 1, 3, 3, -4, -3]\noutput : list = [-3, -4, 3]",
    "output": "generated_output : list = reverse(drop([2, 1, 3, 3, -4, -3],3))",
    "io_inp": [
      2,
      1,
      3,
      3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [2, 2, 4, 4, -5]\noutput : list = [1, 1, 3, 3, -6]",
    "output": "generated_output : list = take(sub_n([2, 2, 4, 4, -5],1),19)",
    "io_inp": [
      2,
      2,
      4,
      4,
      -5
    ],
    "io_out": [
      1,
      1,
      3,
      3,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),19)"
  },
  {
    "input": "input : list = [3, 5, 5, -1, 1]\noutput : list = [1, 1, -1, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n([3, 5, 5, -1, 1],-1))),-3))",
    "io_inp": [
      3,
      5,
      5,
      -1,
      1
    ],
    "io_out": [
      1,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n(input,-1))),-3))"
  },
  {
    "input": "input : list = [4, -2, -5, 0]\noutput : list = [-16, 0, 8, 20]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc([4, -2, -5, 0])),-4),28)",
    "io_inp": [
      4,
      -2,
      -5,
      0
    ],
    "io_out": [
      -16,
      0,
      8,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(input)),-4),28)"
  },
  {
    "input": "input : list = [-5, -2, -3, -1, -4, 3]\noutput : list = [3, -1, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, -2, -3, -1, -4, 3]))",
    "io_inp": [
      -5,
      -2,
      -3,
      -1,
      -4,
      3
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n([5, -1],5),2),4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,5),2),4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-25, 0]",
    "output": "generated_output : list = sort_asc(mul_n([5, 0],-5))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -25,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-5, 20]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(mul_n([-4, 1],-5)))))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -5,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(sort_des([0, 0]),2)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(input),2)"
  },
  {
    "input": "input : list = [3, -2, 0, -2, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(reverse(reverse(add_n(take([3, -2, 0, -2, 0],2),-3))),45)",
    "io_inp": [
      3,
      -2,
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(add_n(take(input,2),-3))),45)"
  },
  {
    "input": "input : list = [-2, 3, 3]\noutput : list = [-2, -2, 3]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(add_n([-2, 3, 3],-1))),-1),26)",
    "io_inp": [
      -2,
      3,
      3
    ],
    "io_out": [
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(add_n(input,-1))),-1),26)"
  },
  {
    "input": "input : list = [0, -2, 4, 3, 1]\noutput : list = [3, 1, 7, 6, 4]",
    "output": "generated_output : list = add_n([0, -2, 4, 3, 1],3)",
    "io_inp": [
      0,
      -2,
      4,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, 0, -1, 2, 0]\noutput : list = [2, 0, 0, -1, -2]",
    "output": "generated_output : list = sort_des([-2, 0, -1, 2, 0])",
    "io_inp": [
      -2,
      0,
      -1,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, 4, 0, -5]\noutput : list = [-5, 0, 4, 0, -3]",
    "output": "generated_output : list = reverse([-3, 0, 4, 0, -5])",
    "io_inp": [
      -3,
      0,
      4,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 3, -2, 3, 2]\noutput : list = [4, 3, 3, 2, -2]",
    "output": "generated_output : list = sort_des([4, 3, -2, 3, 2])",
    "io_inp": [
      4,
      3,
      -2,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, 0, -1, -4, 2]\noutput : list = [4, -14, -4, -2, 4, -8]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n([-4, 5, 0, -1, -4, 2],2),-4),2),-1)",
    "io_inp": [
      -4,
      5,
      0,
      -1,
      -4,
      2
    ],
    "io_out": [
      4,
      -14,
      -4,
      -2,
      4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(input,2),-4),2),-1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = reverse(add_n([3, 1],-3))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [3, -5, 2, -3, 4, 3]\noutput : list = [-1, -2, -2, -3, -8, -10]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(reverse([3, -5, 2, -3, 4, 3]),-4),1)))",
    "io_inp": [
      3,
      -5,
      2,
      -3,
      4,
      3
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -3,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(reverse(input),-4),1)))"
  },
  {
    "input": "input : list = [3, 3, 0, -2]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(drop([3, 3, 0, -2],1)),5)),4)",
    "io_inp": [
      3,
      3,
      0,
      -2
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(drop(input,1)),5)),4)"
  },
  {
    "input": "input : list = [1, 5, -5, 4]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(drop([1, 5, -5, 4],1)),-1),5),1)",
    "io_inp": [
      1,
      5,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(drop(input,1)),-1),5),1)"
  },
  {
    "input": "input : list = [-2, -5, 0, 4, -3]\noutput : list = [-12, 9, -3, -18, -9]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-2, -5, 0, 4, -3],1)),3)",
    "io_inp": [
      -2,
      -5,
      0,
      4,
      -3
    ],
    "io_out": [
      -12,
      9,
      -3,
      -18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,1)),3)"
  },
  {
    "input": "input : list = [2, 3, -2, 2, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(take([2, 3, -2, 2, 2],2))",
    "io_inp": [
      2,
      3,
      -2,
      2,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [2, -5, 2, 5]\noutput : list = [4, 1, 1, -6]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(reverse([2, -5, 2, 5]))),-5),4)",
    "io_inp": [
      2,
      -5,
      2,
      5
    ],
    "io_out": [
      4,
      1,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(reverse(input))),-5),4)"
  },
  {
    "input": "input : list = [-2, 4, 5, 1]\noutput : list = [-4, -1, 2, 3]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(reverse([-2, 4, 5, 1]),-5)),3))",
    "io_inp": [
      -2,
      4,
      5,
      1
    ],
    "io_out": [
      -4,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(reverse(input),-5)),3))"
  },
  {
    "input": "input : list = [0, -1, -4, 4, 5]\noutput : list = [20, 15]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(take([0, -1, -4, 4, 5],2),-4),5)),21)",
    "io_inp": [
      0,
      -1,
      -4,
      4,
      5
    ],
    "io_out": [
      20,
      15
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(take(input,2),-4),5)),21)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-7, -2]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(sort_asc([-2, 3])),4),2),-1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(sort_asc(input)),4),2),-1)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse([2, 5, -3]))",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [28, 4, 40]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(reverse([-2, 4, -5]),5),22)),-4)",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      28,
      4,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(reverse(input),5),22)),-4)"
  },
  {
    "input": "input : list = [-2, 2, 3, 5]\noutput : list = [25, 15, 10, -10]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n([-2, 2, 3, 5],5))))",
    "io_inp": [
      -2,
      2,
      3,
      5
    ],
    "io_out": [
      25,
      15,
      10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(input,5))))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-5, -9]",
    "output": "generated_output : list = sub_n([0, -4],5)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(drop(add_n(sort_asc(reverse([3, -3, 5])),-5),1),-1)",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(sort_asc(reverse(input)),-5),1),-1)"
  },
  {
    "input": "input : list = [0, -5, 3, -3, 1, 1]\noutput : list = [-5, -3, 0, 1, 1, 3]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(reverse([0, -5, 3, -3, 1, 1])))),20)",
    "io_inp": [
      0,
      -5,
      3,
      -3,
      1,
      1
    ],
    "io_out": [
      -5,
      -3,
      0,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(reverse(input)))),20)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(reverse([-4, -3]),5),5),3))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(reverse(input),5),5),3))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n(sort_asc([1, -2]),-1))))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(sort_asc([5, 1]))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [-19, -9, 1]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(sub_n([0, 5, -5],-1)),-5),2),1)",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      -19,
      -9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(sub_n(input,-1)),-5),2),1)"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = drop([-2, 5, 4],1)",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -3, 2, -5, -5, 0]\noutput : list = [-4, -6, -8, -11, -13]",
    "output": "generated_output : list = add_n(reverse(sub_n(drop(sort_asc([4, -3, 2, -5, -5, 0]),1),5)),-3)",
    "io_inp": [
      4,
      -3,
      2,
      -5,
      -5,
      0
    ],
    "io_out": [
      -4,
      -6,
      -8,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(drop(sort_asc(input),1),5)),-3)"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [20, -4, -8]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n([-2, -3, 4],1)),26),4)",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      20,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(input,1)),26),4)"
  },
  {
    "input": "input : list = [-3, 3, -1, 2, 0, -1]\noutput : list = [65, 35, 55, 40, 50, 55]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(sub_n([-3, 3, -1, 2, 0, -1],5)),-5),-5))",
    "io_inp": [
      -3,
      3,
      -1,
      2,
      0,
      -1
    ],
    "io_out": [
      65,
      35,
      55,
      40,
      50,
      55
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(sub_n(input,5)),-5),-5))"
  },
  {
    "input": "input : list = [4, -5, -4, -2, 3, -5]\noutput : list = [-35, -30, -5, 5, 10, 10]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(add_n([4, -5, -4, -2, 3, -5],3),-1)),5),49)",
    "io_inp": [
      4,
      -5,
      -4,
      -2,
      3,
      -5
    ],
    "io_out": [
      -35,
      -30,
      -5,
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(add_n(input,3),-1)),5),49)"
  },
  {
    "input": "input : list = [-5, -4, -2, -1, 3, 0]\noutput : list = [-5, -4, -2, -1, 0, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc([-5, -4, -2, -1, 3, 0]),21))))",
    "io_inp": [
      -5,
      -4,
      -2,
      -1,
      3,
      0
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc(input),21))))"
  },
  {
    "input": "input : list = [4, 2, 4, -2, 0, -3]\noutput : list = [-3, 0, -2, 4, 2, 4]",
    "output": "generated_output : list = reverse([4, 2, 4, -2, 0, -3])",
    "io_inp": [
      4,
      2,
      4,
      -2,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      -2,
      4,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(mul_n([0, -3],2),4),-1),1))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(mul_n(input,2),4),-1),1))"
  },
  {
    "input": "input : list = [4, 0, 2, -4, 2, 1]\noutput : list = [-27, -21, -21, -18, -15, -3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sub_n([4, 0, 2, -4, 2, 1],-5))),-3))",
    "io_inp": [
      4,
      0,
      2,
      -4,
      2,
      1
    ],
    "io_out": [
      -27,
      -21,
      -21,
      -18,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sub_n(input,-5))),-3))"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(sub_n(drop(sub_n(add_n([-4, 1, 1],1),1),2),5))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(sub_n(add_n(input,1),1),2),5))"
  },
  {
    "input": "input : list = [5, 2, 2, 4]\noutput : list = [-20, -10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(drop([5, 2, 2, 4],2),3))),-5)",
    "io_inp": [
      5,
      2,
      2,
      4
    ],
    "io_out": [
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(drop(input,2),3))),-5)"
  },
  {
    "input": "input : list = [-5, 5, -4, -5, 0, -3]\noutput : list = [2, -3, -6, -7, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des([-5, 5, -4, -5, 0, -3]),3)",
    "io_inp": [
      -5,
      5,
      -4,
      -5,
      0,
      -3
    ],
    "io_out": [
      2,
      -3,
      -6,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-5, 0, 3, 3, -1]\noutput : list = [-5, -1, 0, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([-5, 0, 3, 3, -1])))",
    "io_inp": [
      -5,
      0,
      3,
      3,
      -1
    ],
    "io_out": [
      -5,
      -1,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [0, -1, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([-1, 4, 5]),5))",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [2, -1, 2, -5, 2]\noutput : list = [-1, 2, -5, 2]",
    "output": "generated_output : list = drop([2, -1, 2, -5, 2],1)",
    "io_inp": [
      2,
      -1,
      2,
      -5,
      2
    ],
    "io_out": [
      -1,
      2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-6, -4]",
    "output": "generated_output : list = take(take(sub_n(reverse(add_n([-2, -4],-1)),1),24),10)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(add_n(input,-1)),1),24),10)"
  },
  {
    "input": "input : list = [-3, -4, 5, 2, 4]\noutput : list = [-5, -4, 1, 3, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(reverse([-3, -4, 5, 2, 4]),-5)),5),-1)",
    "io_inp": [
      -3,
      -4,
      5,
      2,
      4
    ],
    "io_out": [
      -5,
      -4,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(reverse(input),-5)),5),-1)"
  },
  {
    "input": "input : list = [1, 2, 2]\noutput : list = [3, 3, 2]",
    "output": "generated_output : list = take(reverse(add_n(reverse(sort_des([1, 2, 2])),1)),44)",
    "io_inp": [
      1,
      2,
      2
    ],
    "io_out": [
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(sort_des(input)),1)),44)"
  },
  {
    "input": "input : list = [-2, -3, -4, 2, 4]\noutput : list = [-14, -10, -2, 0, 2]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse([-2, -3, -4, 2, 4]),3)),-2)",
    "io_inp": [
      -2,
      -3,
      -4,
      2,
      4
    ],
    "io_out": [
      -14,
      -10,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(input),3)),-2)"
  },
  {
    "input": "input : list = [-1, -3, 5, -1]\noutput : list = [-1, 5, -3, -1]",
    "output": "generated_output : list = take(reverse([-1, -3, 5, -1]),18)",
    "io_inp": [
      -1,
      -3,
      5,
      -1
    ],
    "io_out": [
      -1,
      5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),18)"
  },
  {
    "input": "input : list = [-4, -5, 5, 5, -4]\noutput : list = [-2, -1, -1, 8]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(sub_n([-4, -5, 5, 5, -4],-4)),5),4),-4)",
    "io_inp": [
      -4,
      -5,
      5,
      5,
      -4
    ],
    "io_out": [
      -2,
      -1,
      -1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(sub_n(input,-4)),5),4),-4)"
  },
  {
    "input": "input : list = [2, -2, 0, 4]\noutput : list = [-1, -5, -3, 1]",
    "output": "generated_output : list = sub_n([2, -2, 0, 4],3)",
    "io_inp": [
      2,
      -2,
      0,
      4
    ],
    "io_out": [
      -1,
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, -2, -4, 3, 4, -3]\noutput : list = [-15, -11, -3, 9, 13, 17]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(sort_des([1, -2, -4, 3, 4, -3]))),-4),1)",
    "io_inp": [
      1,
      -2,
      -4,
      3,
      4,
      -3
    ],
    "io_out": [
      -15,
      -11,
      -3,
      9,
      13,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(sort_des(input))),-4),1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-4, -9]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n([1, 0],1),1),5),-4)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(input,1),1),5),-4)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(take(sort_des([1, 3]),1),12)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),1),12)"
  },
  {
    "input": "input : list = [3, 3, -3, 3, 2]\noutput : list = [-3, 3, 3]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(take([3, 3, -3, 3, 2],3)))),50)",
    "io_inp": [
      3,
      3,
      -3,
      3,
      2
    ],
    "io_out": [
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(take(input,3)))),50)"
  },
  {
    "input": "input : list = [-5, 1, -1, 0, -2]\noutput : list = [0, -30, -20, -25, -15]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(mul_n([-5, 1, -1, 0, -2],-1),-5),5)))",
    "io_inp": [
      -5,
      1,
      -1,
      0,
      -2
    ],
    "io_out": [
      0,
      -30,
      -20,
      -25,
      -15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(mul_n(input,-1),-5),5)))"
  },
  {
    "input": "input : list = [1, 3, 4, -3, 2]\noutput : list = [-1, -6, 1, 0, -2]",
    "output": "generated_output : list = take(reverse(sub_n([1, 3, 4, -3, 2],3)),16)",
    "io_inp": [
      1,
      3,
      4,
      -3,
      2
    ],
    "io_out": [
      -1,
      -6,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,3)),16)"
  },
  {
    "input": "input : list = [3, -1, 2]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = sort_asc([3, -1, 2])",
    "io_inp": [
      3,
      -1,
      2
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [10, -6, 10]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(sub_n([4, 0, 4],1)),4),-1),-1)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      10,
      -6,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(sub_n(input,1)),4),-1),-1)"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [-2, -6, 10]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(add_n([2, 3, -1],-5),3),6),-4),2)",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      -2,
      -6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(add_n(input,-5),3),6),-4),2)"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [-4, -6, -5]",
    "output": "generated_output : list = add_n([-2, -4, -3],-2)",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [-1, 0, 7]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(add_n([5, -3, -2],2))),1),3)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0,
      7
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(add_n(input,2))),1),3)"
  },
  {
    "input": "input : list = [-5, -2, -4, 4, 0]\noutput : list = [-2, 1, -1, 7, 3]",
    "output": "generated_output : list = sub_n(add_n([-5, -2, -4, 4, 0],-2),-5)",
    "io_inp": [
      -5,
      -2,
      -4,
      4,
      0
    ],
    "io_out": [
      -2,
      1,
      -1,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),-5)"
  },
  {
    "input": "input : list = [3, -2, -1, 1, 1, -1]\noutput : list = [-6, -9, -9, -15, -15, -21]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(reverse([3, -2, -1, 1, 1, -1]),4)),-3))",
    "io_inp": [
      3,
      -2,
      -1,
      1,
      1,
      -1
    ],
    "io_out": [
      -6,
      -9,
      -9,
      -15,
      -15,
      -21
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(reverse(input),4)),-3))"
  },
  {
    "input": "input : list = [-4, -3, 1, 5, 2, -2]\noutput : list = [0, -3, -4, -7, -8, -9]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(sort_asc([-4, -3, 1, 5, 2, -2])),5),19))",
    "io_inp": [
      -4,
      -3,
      1,
      5,
      2,
      -2
    ],
    "io_out": [
      0,
      -3,
      -4,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(sort_asc(input)),5),19))"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [10, -10, -14]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(reverse([-4, 2, -3]),2),2),2))",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      10,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(reverse(input),2),2),2))"
  },
  {
    "input": "input : list = [4, -2, -1, -4]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(take([4, -2, -1, -4],1)),-3),-3))",
    "io_inp": [
      4,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(take(input,1)),-3),-3))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-17, -13]",
    "output": "generated_output : list = add_n(add_n(add_n(take(mul_n([3, 2],-4),13),1),-4),-2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -17,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(mul_n(input,-4),13),1),-4),-2)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1, 8]",
    "output": "generated_output : list = add_n([-2, 5],3)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [3, -4, 1, -3, 4, -1]\noutput : list = [7, 6, 4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([3, -4, 1, -3, 4, -1]),-3))",
    "io_inp": [
      3,
      -4,
      1,
      -3,
      4,
      -1
    ],
    "io_out": [
      7,
      6,
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [4, -4, -1, 0]\noutput : list = [-23, 17, 2, -3]",
    "output": "generated_output : list = sub_n(mul_n([4, -4, -1, 0],-5),3)",
    "io_inp": [
      4,
      -4,
      -1,
      0
    ],
    "io_out": [
      -23,
      17,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-5),3)"
  },
  {
    "input": "input : list = [2, -3, 5, -5, 0]\noutput : list = [-25, -15, 0, 10, 25]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc([2, -3, 5, -5, 0])),5)))",
    "io_inp": [
      2,
      -3,
      5,
      -5,
      0
    ],
    "io_out": [
      -25,
      -15,
      0,
      10,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [-3, 4, 0, -3, 5]\noutput : list = [-8, 20, 4, -8, 24]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n([-3, 4, 0, -3, 5],4))),1),-4)",
    "io_inp": [
      -3,
      4,
      0,
      -3,
      5
    ],
    "io_out": [
      -8,
      20,
      4,
      -8,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n(input,4))),1),-4)"
  },
  {
    "input": "input : list = [0, 0, -5, -4, 3]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(drop(add_n(sort_asc(sub_n([0, 0, -5, -4, 3],1)),1),4),3)",
    "io_inp": [
      0,
      0,
      -5,
      -4,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(sort_asc(sub_n(input,1)),1),4),3)"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [4, 12]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(drop([-4, 5, -3],1),-1),-4)),4)",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      4,
      12
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(drop(input,1),-1),-4)),4)"
  },
  {
    "input": "input : list = [-1, 3, -3, -5, 5, -3]\noutput : list = [5, 3, -1, -3, -3, -5]",
    "output": "generated_output : list = sort_des(reverse([-1, 3, -3, -5, 5, -3]))",
    "io_inp": [
      -1,
      3,
      -3,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [-15, -3, -9]",
    "output": "generated_output : list = mul_n([-5, -1, -3],3)",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      -15,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, 1, 3, -1, 0]\noutput : list = [-2, 2, 3, 4, 6]",
    "output": "generated_output : list = take(sort_asc(add_n([-5, 1, 3, -1, 0],3)),9)",
    "io_inp": [
      -5,
      1,
      3,
      -1,
      0
    ],
    "io_out": [
      -2,
      2,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,3)),9)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -1],4))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n([-2, -2],-1)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, -4, -1, -2, 3]\noutput : list = [-13, -17]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(sort_des([2, -4, -1, -2, 3]),-4),2),-5))",
    "io_inp": [
      2,
      -4,
      -1,
      -2,
      3
    ],
    "io_out": [
      -13,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(sort_des(input),-4),2),-5))"
  },
  {
    "input": "input : list = [5, 3, 5, -4, 0, -2]\noutput : list = [-3, -1, 1, 4, 6, 6]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(sort_asc([5, 3, 5, -4, 0, -2])),-1)),47)",
    "io_inp": [
      5,
      3,
      5,
      -4,
      0,
      -2
    ],
    "io_out": [
      -3,
      -1,
      1,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(sort_asc(input)),-1)),47)"
  },
  {
    "input": "input : list = [1, 3, 1, 1, 2]\noutput : list = [-4, -2, -4, -4, -3]",
    "output": "generated_output : list = add_n([1, 3, 1, 1, 2],-5)",
    "io_inp": [
      1,
      3,
      1,
      1,
      2
    ],
    "io_out": [
      -4,
      -2,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -3, 1, -1]\noutput : list = [-1, 0, 4, 2]",
    "output": "generated_output : list = sub_n([-4, -3, 1, -1],-3)",
    "io_inp": [
      -4,
      -3,
      1,
      -1
    ],
    "io_out": [
      -1,
      0,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, -3, -5, -3, -4, 5]\noutput : list = [-3, -5, -3, -4, 5]",
    "output": "generated_output : list = sub_n(add_n(drop([1, -3, -5, -3, -4, 5],1),5),5)",
    "io_inp": [
      1,
      -3,
      -5,
      -3,
      -4,
      5
    ],
    "io_out": [
      -3,
      -5,
      -3,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(input,1),5),5)"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [0, 5, -15]",
    "output": "generated_output : list = mul_n([0, -1, 3],-5)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      0,
      5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, -5]\noutput : list = [5, -1, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_des([-1, 5, -5]),7)),15)",
    "io_inp": [
      -1,
      5,
      -5
    ],
    "io_out": [
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(input),7)),15)"
  },
  {
    "input": "input : list = [-2, -5, 1, 1, 1, 2]\noutput : list = [0, -1, -1, -1, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(sort_asc([-2, -5, 1, 1, 1, 2]),-3)),-5))",
    "io_inp": [
      -2,
      -5,
      1,
      1,
      1,
      2
    ],
    "io_out": [
      0,
      -1,
      -1,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(sort_asc(input),-3)),-5))"
  },
  {
    "input": "input : list = [-4, -1, 2, 4, 2]\noutput : list = [-8, 4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(take([-4, -1, 2, 4, 2],2)),-3)),-4)",
    "io_inp": [
      -4,
      -1,
      2,
      4,
      2
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(take(input,2)),-3)),-4)"
  },
  {
    "input": "input : list = [5, -1, 2, 5, 1]\noutput : list = [7, 3]",
    "output": "generated_output : list = add_n(drop([5, -1, 2, 5, 1],3),2)",
    "io_inp": [
      5,
      -1,
      2,
      5,
      1
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),2)"
  },
  {
    "input": "input : list = [1, 0, 0, -1]\noutput : list = [-1, 0, 0, 1]",
    "output": "generated_output : list = sort_asc([1, 0, 0, -1])",
    "io_inp": [
      1,
      0,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [9, 1]",
    "output": "generated_output : list = reverse(take(sub_n(add_n(sort_asc([5, -3]),3),-1),6))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(add_n(sort_asc(input),3),-1),6))"
  },
  {
    "input": "input : list = [2, -4, 2, -4, 3]\noutput : list = [-12, 6, 6]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(take([2, -4, 2, -4, 3],3)),3),17))",
    "io_inp": [
      2,
      -4,
      2,
      -4,
      3
    ],
    "io_out": [
      -12,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(take(input,3)),3),17))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-3, -8]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_asc([0, 5])),5),-5),-2)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_asc(input)),5),-5),-2)"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [-5, -1, -3]",
    "output": "generated_output : list = take(reverse(reverse([-5, -1, -3])),8)",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),8)"
  },
  {
    "input": "input : list = [-1, -2, 2, -5]\noutput : list = [-5, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sort_des([-1, -2, 2, -5])))))",
    "io_inp": [
      -1,
      -2,
      2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 1, -3, -2]\noutput : list = [20, 4, -8, -12]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sub_n(mul_n([5, 1, -3, -2],4),-3)),3))",
    "io_inp": [
      5,
      1,
      -3,
      -2
    ],
    "io_out": [
      20,
      4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sub_n(mul_n(input,4),-3)),3))"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(add_n(take([-4, 5, -3],1),5))",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(input,1),5))"
  },
  {
    "input": "input : list = [0, 3, -3, 2, -1]\noutput : list = [0, 3]",
    "output": "generated_output : list = take([0, 3, -3, 2, -1],2)",
    "io_inp": [
      0,
      3,
      -3,
      2,
      -1
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -4, 2]\noutput : list = [-5, -5, 1]",
    "output": "generated_output : list = take(sub_n([-4, -4, 2],1),16)",
    "io_inp": [
      -4,
      -4,
      2
    ],
    "io_out": [
      -5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),16)"
  },
  {
    "input": "input : list = [5, -5, 4, 0, 0, 1]\noutput : list = [-5, 0, 0, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sort_des([5, -5, 4, 0, 0, 1])))))",
    "io_inp": [
      5,
      -5,
      4,
      0,
      0,
      1
    ],
    "io_out": [
      -5,
      0,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = add_n(drop([0, 4, 3],1),2)",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [1, 4, 5, -4]\noutput : list = [20, -5, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n([1, 4, 5, -4],-1),5)))",
    "io_inp": [
      1,
      4,
      5,
      -4
    ],
    "io_out": [
      20,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(input,-1),5)))"
  },
  {
    "input": "input : list = [0, -3, -5, 1, -1]\noutput : list = [-4, -5, -6, -8, -10]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(reverse([0, -3, -5, 1, -1]))),-5),31)",
    "io_inp": [
      0,
      -3,
      -5,
      1,
      -1
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(reverse(input))),-5),31)"
  },
  {
    "input": "input : list = [2, 3, -2, -5, 0]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(take(add_n([2, 3, -2, -5, 0],1),2),-2)",
    "io_inp": [
      2,
      3,
      -2,
      -5,
      0
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,1),2),-2)"
  },
  {
    "input": "input : list = [-1, 1, 5, -2]\noutput : list = [-6, -20, -12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(take(drop([-1, 1, 5, -2],1),9),-5)),-2)",
    "io_inp": [
      -1,
      1,
      5,
      -2
    ],
    "io_out": [
      -6,
      -20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(take(drop(input,1),9),-5)),-2)"
  },
  {
    "input": "input : list = [0, -5, 5, -3, -5, -1]\noutput : list = [1, -5, -7, -9, -9]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(drop([0, -5, 5, -3, -5, -1],1),-1),4),-1))",
    "io_inp": [
      0,
      -5,
      5,
      -3,
      -5,
      -1
    ],
    "io_out": [
      1,
      -5,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(drop(input,1),-1),4),-1))"
  },
  {
    "input": "input : list = [2, -1, 1, 5, 1]\noutput : list = [-6, 3, -3, -15, -3]",
    "output": "generated_output : list = mul_n([2, -1, 1, 5, 1],-3)",
    "io_inp": [
      2,
      -1,
      1,
      5,
      1
    ],
    "io_out": [
      -6,
      3,
      -3,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(add_n([-2, -1],2),8),-4)))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(add_n(input,2),8),-4)))"
  },
  {
    "input": "input : list = [2, -4, 2, -1, -4]\noutput : list = [4, 4, 1, -2, -2]",
    "output": "generated_output : list = mul_n(sort_asc([2, -4, 2, -1, -4]),-1)",
    "io_inp": [
      2,
      -4,
      2,
      -1,
      -4
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-3, -5, 4, 2]\noutput : list = [61, 101, -79, -39]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n([-3, -5, 4, 2],-4))),5),-1)",
    "io_inp": [
      -3,
      -5,
      4,
      2
    ],
    "io_out": [
      61,
      101,
      -79,
      -39
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(mul_n(input,-4))),5),-1)"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [3, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([-2, 3, -4]))",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 3, -3, -4, -4]\noutput : list = [-4, -4, -3, 3, -1]",
    "output": "generated_output : list = reverse([-1, 3, -3, -4, -4])",
    "io_inp": [
      -1,
      3,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, 1, -5]\noutput : list = [-10, 2, 2, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n([1, 1, 1, -5],2))),27))",
    "io_inp": [
      1,
      1,
      1,
      -5
    ],
    "io_out": [
      -10,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n(input,2))),27))"
  },
  {
    "input": "input : list = [3, 1, 4, 5]\noutput : list = [5, 15, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des([3, 1, 4, 5])),5))",
    "io_inp": [
      3,
      1,
      4,
      5
    ],
    "io_out": [
      5,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(input)),5))"
  },
  {
    "input": "input : list = [1, 1, -2, -5, 4, 2]\noutput : list = [-5, -2, 1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des([1, 1, -2, -5, 4, 2]))",
    "io_inp": [
      1,
      1,
      -2,
      -5,
      4,
      2
    ],
    "io_out": [
      -5,
      -2,
      1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -2, 3, -4]\noutput : list = [3, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -2, 3, -4])",
    "io_inp": [
      -5,
      -2,
      3,
      -4
    ],
    "io_out": [
      3,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, 3]\noutput : list = [4, 1, -2]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des([-3, 0, 3])),-2),-2),1)",
    "io_inp": [
      -3,
      0,
      3
    ],
    "io_out": [
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des(input)),-2),-2),1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 32]",
    "output": "generated_output : list = mul_n(take(mul_n([0, 4],-4),10),-2)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      32
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-4),10),-2)"
  },
  {
    "input": "input : list = [3, -5, 5]\noutput : list = [0, 8, 10]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(reverse([3, -5, 5])),16)),-5)",
    "io_inp": [
      3,
      -5,
      5
    ],
    "io_out": [
      0,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(reverse(input)),16)),-5)"
  },
  {
    "input": "input : list = [4, -4, -2, 4, -4]\noutput : list = [-5, -5, -3, 3, 3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sort_asc([4, -4, -2, 4, -4]))),-1),-2)",
    "io_inp": [
      4,
      -4,
      -2,
      4,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sort_asc(input))),-1),-2)"
  },
  {
    "input": "input : list = [0, 1, -5, 4, 2]\noutput : list = [1, 3, 4, 5, 10]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(sort_asc([0, 1, -5, 4, 2]),-5),12)),-1)",
    "io_inp": [
      0,
      1,
      -5,
      4,
      2
    ],
    "io_out": [
      1,
      3,
      4,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(sort_asc(input),-5),12)),-1)"
  },
  {
    "input": "input : list = [-2, -4, -3, -4]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(take([-2, -4, -3, -4],1),1),-4)),-5)",
    "io_inp": [
      -2,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(take(input,1),1),-4)),-5)"
  },
  {
    "input": "input : list = [-4, -4, 3, -3]\noutput : list = [-7, -7, 7, -5]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(mul_n([-4, -4, 3, -3],-1),6),-3),-2),5)",
    "io_inp": [
      -4,
      -4,
      3,
      -3
    ],
    "io_out": [
      -7,
      -7,
      7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(mul_n(input,-1),6),-3),-2),5)"
  },
  {
    "input": "input : list = [-3, 4, -4, -5]\noutput : list = [7, 0, -1, -2]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(sort_des([-3, 4, -4, -5])),-2),5))",
    "io_inp": [
      -3,
      4,
      -4,
      -5
    ],
    "io_out": [
      7,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(sort_des(input)),-2),5))"
  },
  {
    "input": "input : list = [-1, -5, -5, 0, 0, 5]\noutput : list = [4, 0, 0, 5, 5, 10]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(add_n([-1, -5, -5, 0, 0, 5],1),9)),-4))",
    "io_inp": [
      -1,
      -5,
      -5,
      0,
      0,
      5
    ],
    "io_out": [
      4,
      0,
      0,
      5,
      5,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(add_n(input,1),9)),-4))"
  },
  {
    "input": "input : list = [-4, -1, 1, 2, -4, -3]\noutput : list = [6, 5, 3, 1, 0, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des([-4, -1, 1, 2, -4, -3]))),-4)",
    "io_inp": [
      -4,
      -1,
      1,
      2,
      -4,
      -3
    ],
    "io_out": [
      6,
      5,
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(input))),-4)"
  },
  {
    "input": "input : list = [-3, -4, -4, -5, 1, 2]\noutput : list = [14, 12]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(drop([-3, -4, -4, -5, 1, 2],4),-5)),2))",
    "io_inp": [
      -3,
      -4,
      -4,
      -5,
      1,
      2
    ],
    "io_out": [
      14,
      12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(drop(input,4),-5)),2))"
  },
  {
    "input": "input : list = [-4, -4, 4, -3, 2, 5]\noutput : list = [-6, -6, 2, -5, 0, 3]",
    "output": "generated_output : list = sub_n([-4, -4, 4, -3, 2, 5],2)",
    "io_inp": [
      -4,
      -4,
      4,
      -3,
      2,
      5
    ],
    "io_out": [
      -6,
      -6,
      2,
      -5,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -5, -3, 2, 1, 2]\noutput : list = [3, 2, 2, 1, -3, -5]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(reverse([3, -5, -3, 2, 1, 2])))),48)",
    "io_inp": [
      3,
      -5,
      -3,
      2,
      1,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(reverse(input)))),48)"
  },
  {
    "input": "input : list = [-5, 5, 0, 2, -5, 1]\noutput : list = [7, 4, 3, 2, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(drop([-5, 5, 0, 2, -5, 1],1),3)),-1))",
    "io_inp": [
      -5,
      5,
      0,
      2,
      -5,
      1
    ],
    "io_out": [
      7,
      4,
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(drop(input,1),3)),-1))"
  },
  {
    "input": "input : list = [1, -2, -4, -5, 0, 2]\noutput : list = [-11, -10, -8, -6, -5, -4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(mul_n([1, -2, -4, -5, 0, 2],1),-4),-3),-1))",
    "io_inp": [
      1,
      -2,
      -4,
      -5,
      0,
      2
    ],
    "io_out": [
      -11,
      -10,
      -8,
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(mul_n(input,1),-4),-3),-1))"
  },
  {
    "input": "input : list = [2, 5, 5, 0]\noutput : list = [5, 8, 8, 3]",
    "output": "generated_output : list = sub_n([2, 5, 5, 0],-3)",
    "io_inp": [
      2,
      5,
      5,
      0
    ],
    "io_out": [
      5,
      8,
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, -2, -5, 5]\noutput : list = [3, -4, -7]",
    "output": "generated_output : list = take(sub_n(take(sort_des(drop([2, -2, -5, 5],1)),29),2),3)",
    "io_inp": [
      2,
      -2,
      -5,
      5
    ],
    "io_out": [
      3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(drop(input,1)),29),2),3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sub_n([-5, -2],-4)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, -2, 2, 5]\noutput : list = [11, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(take([5, -2, 2, 5],2),2),7),-1))",
    "io_inp": [
      5,
      -2,
      2,
      5
    ],
    "io_out": [
      11,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(take(input,2),2),7),-1))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-9, -5]",
    "output": "generated_output : list = take(take(mul_n(sort_des(add_n([0, 4],5)),-1),21),33)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(add_n(input,5)),-1),21),33)"
  },
  {
    "input": "input : list = [-1, -5, -4, -1, -4]\noutput : list = [-16, -12, -12, 0, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(mul_n([-1, -5, -4, -1, -4],-4))),-4),-1)",
    "io_inp": [
      -1,
      -5,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -16,
      -12,
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(mul_n(input,-4))),-4),-1)"
  },
  {
    "input": "input : list = [0, 3, 3, 2]\noutput : list = [-6, -9, -9, 0]",
    "output": "generated_output : list = mul_n(reverse([0, 3, 3, 2]),-3)",
    "io_inp": [
      0,
      3,
      3,
      2
    ],
    "io_out": [
      -6,
      -9,
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [2, 1, -2, 0, 4, 1]\noutput : list = [3, 5, 6, 6, 7, 9]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sort_asc([2, 1, -2, 0, 4, 1]),-2)),2),-1)",
    "io_inp": [
      2,
      1,
      -2,
      0,
      4,
      1
    ],
    "io_out": [
      3,
      5,
      6,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sort_asc(input),-2)),2),-1)"
  },
  {
    "input": "input : list = [-1, 2, 3, 3, -2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take([-1, 2, 3, 3, -2],2)",
    "io_inp": [
      -1,
      2,
      3,
      3,
      -2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 1, -5, 5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = drop([4, 1, -5, 5, -3],3)",
    "io_inp": [
      4,
      1,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n([-2, 1],2)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(add_n(reverse([2, -3]),-2)),3))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(add_n(reverse(input),-2)),3))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-1, 1],5)))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,5)))"
  },
  {
    "input": "input : list = [-4, 1, 0, -4, -3]\noutput : list = [-1, -2, -5, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(drop([-4, 1, 0, -4, -3],1)))),2)",
    "io_inp": [
      -4,
      1,
      0,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [-1, 5, -2, -5, -1, -2]\noutput : list = [5, -1, -1, -2, -2, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc([-1, 5, -2, -5, -1, -2])),25)",
    "io_inp": [
      -1,
      5,
      -2,
      -5,
      -1,
      -2
    ],
    "io_out": [
      5,
      -1,
      -1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),25)"
  },
  {
    "input": "input : list = [1, 4, -4, -5, -1]\noutput : list = [500, 400, 100, -100, -400]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(mul_n([1, 4, -4, -5, -1],-5),-4))),-5)",
    "io_inp": [
      1,
      4,
      -4,
      -5,
      -1
    ],
    "io_out": [
      500,
      400,
      100,
      -100,
      -400
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(mul_n(input,-5),-4))),-5)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse([-2, -3])",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, -2, -2]\noutput : list = [10, 10, 10, 5]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(sub_n([-3, -2, -2, -2],-4),5),18)))",
    "io_inp": [
      -3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      10,
      10,
      10,
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(sub_n(input,-4),5),18)))"
  },
  {
    "input": "input : list = [-1, 0, 0, -4]\noutput : list = [-9, -9, -10, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc([-1, 0, 0, -4])),5),-4)",
    "io_inp": [
      -1,
      0,
      0,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(input)),5),-4)"
  },
  {
    "input": "input : list = [-1, -3, -3, -5]\noutput : list = [-5, -3, -3, -1]",
    "output": "generated_output : list = sort_asc([-1, -3, -3, -5])",
    "io_inp": [
      -1,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, 4, 5, -5]\noutput : list = [-21, -23, -7, -5, -25]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(add_n([-3, -4, 4, 5, -5],-5),18),2),-2),3)",
    "io_inp": [
      -3,
      -4,
      4,
      5,
      -5
    ],
    "io_out": [
      -21,
      -23,
      -7,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(add_n(input,-5),18),2),-2),3)"
  },
  {
    "input": "input : list = [5, -1, 5]\noutput : list = [0, 0, -6]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(sort_des([5, -1, 5])),5)),20)",
    "io_inp": [
      5,
      -1,
      5
    ],
    "io_out": [
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(sort_des(input)),5)),20)"
  },
  {
    "input": "input : list = [-4, -4, 3, 4, -4, 2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(take([-4, -4, 3, 4, -4, 2],2)),1),-1))",
    "io_inp": [
      -4,
      -4,
      3,
      4,
      -4,
      2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(take(input,2)),1),-1))"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [1]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(take([2, -2, 1],1))),-1))",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(take(input,1))),-1))"
  },
  {
    "input": "input : list = [-3, 5, -2, 2, 5, 0]\noutput : list = [-16, -14, -10, -6, 0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse([-3, 5, -2, 2, 5, 0])),-5)),2)",
    "io_inp": [
      -3,
      5,
      -2,
      2,
      5,
      0
    ],
    "io_out": [
      -16,
      -14,
      -10,
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse(input)),-5)),2)"
  },
  {
    "input": "input : list = [-5, -5, 5, -4, -2]\noutput : list = [-10, 4, 8, 10, 10]",
    "output": "generated_output : list = reverse(take(sort_des(take(mul_n([-5, -5, 5, -4, -2],-2),18)),18))",
    "io_inp": [
      -5,
      -5,
      5,
      -4,
      -2
    ],
    "io_out": [
      -10,
      4,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(mul_n(input,-2),18)),18))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-750, -1050]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(add_n([0, -2],-5),-5),-2),5),3)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -750,
      -1050
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(add_n(input,-5),-5),-2),5),3)"
  },
  {
    "input": "input : list = [-5, -4, -5, -3]\noutput : list = [-4, -3, -4, -2]",
    "output": "generated_output : list = sub_n([-5, -4, -5, -3],-1)",
    "io_inp": [
      -5,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, 3, -5, -5, 5, -2]\noutput : list = [-6, -6, -3, 0, 2, 4]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc([1, 3, -5, -5, 5, -2]),4),24),5)",
    "io_inp": [
      1,
      3,
      -5,
      -5,
      5,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(input),4),24),5)"
  },
  {
    "input": "input : list = [-5, 0, 2, -4, -1, -4]\noutput : list = [1, -1, -2, -5, -5, -6]",
    "output": "generated_output : list = add_n(reverse(sort_asc([-5, 0, 2, -4, -1, -4])),-1)",
    "io_inp": [
      -5,
      0,
      2,
      -4,
      -1,
      -4
    ],
    "io_out": [
      1,
      -1,
      -2,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [24, 8]",
    "output": "generated_output : list = take(mul_n(take(mul_n([3, 1],2),9),4),28)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      24,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(input,2),9),4),28)"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(drop([-2, -1, 0],1),15)),2))",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(drop(input,1),15)),2))"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(take([-1, -3, -5],1)),-1),20))",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(take(input,1)),-1),20))"
  },
  {
    "input": "input : list = [-4, -2, 3, -1, 4]\noutput : list = [0, -2, -3, -7, -8]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(sub_n([-4, -2, 3, -1, 4],-4))),-1),24)",
    "io_inp": [
      -4,
      -2,
      3,
      -1,
      4
    ],
    "io_out": [
      0,
      -2,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(sub_n(input,-4))),-1),24)"
  },
  {
    "input": "input : list = [0, 3, 4, 2]\noutput : list = [6, 5, 4, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n([0, 3, 4, 2],-1)),1)",
    "io_inp": [
      0,
      3,
      4,
      2
    ],
    "io_out": [
      6,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,-1)),1)"
  },
  {
    "input": "input : list = [1, -1, -3, -4, 1, -5]\noutput : list = [20, 28, -12, 36]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n(drop([1, -1, -3, -4, 1, -5],2),4),6),-2),-4)",
    "io_inp": [
      1,
      -1,
      -3,
      -4,
      1,
      -5
    ],
    "io_out": [
      20,
      28,
      -12,
      36
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(drop(input,2),4),6),-2),-4)"
  },
  {
    "input": "input : list = [-5, -1, 4, -1, -4]\noutput : list = [18, 14, 2, 2, -18]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(mul_n([-5, -1, 4, -1, -4],-4)),9),-1),-1)",
    "io_inp": [
      -5,
      -1,
      4,
      -1,
      -4
    ],
    "io_out": [
      18,
      14,
      2,
      2,
      -18
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(mul_n(input,-4)),9),-1),-1)"
  },
  {
    "input": "input : list = [5, -3, -5, 1, -5]\noutput : list = [17, 17, 11, -1, -13]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(sort_des([5, -3, -5, 1, -5])),-3),2),-4)",
    "io_inp": [
      5,
      -3,
      -5,
      1,
      -5
    ],
    "io_out": [
      17,
      17,
      11,
      -1,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(sort_des(input)),-3),2),-4)"
  },
  {
    "input": "input : list = [0, 5, 2, 5]\noutput : list = [-6, -1, -4, -1]",
    "output": "generated_output : list = sub_n(sub_n([0, 5, 2, 5],3),3)",
    "io_inp": [
      0,
      5,
      2,
      5
    ],
    "io_out": [
      -6,
      -1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [-6, -6, -9]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse([3, 2, 2])),-3)))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [1, 3, 0, -5]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(mul_n(take([1, 3, 0, -5],1),5))",
    "io_inp": [
      1,
      3,
      0,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),5))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(sort_asc([2, 0]),8)),-5))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(sort_asc(input),8)),-5))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-11, 7]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(sort_asc([4, -5]),-2)),3),37)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -11,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(sort_asc(input),-2)),3),37)"
  },
  {
    "input": "input : list = [-4, 0, 1, 2]\noutput : list = [-4, -1, 2, 14]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(mul_n([-4, 0, 1, 2],-3)),-2),35))",
    "io_inp": [
      -4,
      0,
      1,
      2
    ],
    "io_out": [
      -4,
      -1,
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(mul_n(input,-3)),-2),35))"
  },
  {
    "input": "input : list = [4, -4, 5, -1]\noutput : list = [13, 11, 1, -5]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_des([4, -4, 5, -1]),2),-1)),4)",
    "io_inp": [
      4,
      -4,
      5,
      -1
    ],
    "io_out": [
      13,
      11,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_des(input),2),-1)),4)"
  },
  {
    "input": "input : list = [-1, -4, 5, -5, 0, 2]\noutput : list = [18, 0, -9]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(take([-1, -4, 5, -5, 0, 2],3),-2),3),-3))",
    "io_inp": [
      -1,
      -4,
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      18,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(take(input,3),-2),3),-3))"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [10, 6, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(sort_asc([1, -1, -4])),-4),2))",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      10,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(sort_asc(input)),-4),2))"
  },
  {
    "input": "input : list = [2, -3, 1, 1, -1, 3]\noutput : list = [6, 6, 7, 8]",
    "output": "generated_output : list = drop(sub_n(add_n(sort_asc(sub_n([2, -3, 1, 1, -1, 3],3)),5),-3),2)",
    "io_inp": [
      2,
      -3,
      1,
      1,
      -1,
      3
    ],
    "io_out": [
      6,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = drop(sub_n(add_n(sort_asc(sub_n(input,3)),5),-3),2)"
  },
  {
    "input": "input : list = [3, -2, 2, 4, 1, 3]\noutput : list = [5, 4, 4, 3, 2, -1]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(sort_asc([3, -2, 2, 4, 1, 3]),1))),42)",
    "io_inp": [
      3,
      -2,
      2,
      4,
      1,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(sort_asc(input),1))),42)"
  },
  {
    "input": "input : list = [2, 5, 2, -5]\noutput : list = [5, 2, 2, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse([2, 5, 2, -5])))",
    "io_inp": [
      2,
      5,
      2,
      -5
    ],
    "io_out": [
      5,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [10, 8, 10]",
    "output": "generated_output : list = sub_n(mul_n(add_n([5, 4, 5],2),2),4)",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      10,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,2),2),4)"
  },
  {
    "input": "input : list = [4, 4, 0, 3, 0, -5]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(reverse([4, 4, 0, 3, 0, -5]),1),1),2))",
    "io_inp": [
      4,
      4,
      0,
      3,
      0,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(reverse(input),1),1),2))"
  },
  {
    "input": "input : list = [-1, -3, -3, 2, 5, 2]\noutput : list = [-11, -2, -2, 7, 13, 13]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(sort_asc([-1, -3, -3, 2, 5, 2]),26)),-3),-4)",
    "io_inp": [
      -1,
      -3,
      -3,
      2,
      5,
      2
    ],
    "io_out": [
      -11,
      -2,
      -2,
      7,
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(sort_asc(input),26)),-3),-4)"
  },
  {
    "input": "input : list = [-4, -3, 5, 5, -1, 1]\noutput : list = [-1, 0, 2, 4, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n([-4, -3, 5, 5, -1, 1],3),25)))",
    "io_inp": [
      -4,
      -3,
      5,
      5,
      -1,
      1
    ],
    "io_out": [
      -1,
      0,
      2,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(input,3),25)))"
  },
  {
    "input": "input : list = [-3, -1, -4, -3, -2, -2]\noutput : list = [-1, 3, 3, 7, 7, 11]",
    "output": "generated_output : list = add_n(mul_n(sort_des([-3, -1, -4, -3, -2, -2]),-4),-5)",
    "io_inp": [
      -3,
      -1,
      -4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -1,
      3,
      3,
      7,
      7,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),-4),-5)"
  },
  {
    "input": "input : list = [3, 5, 3, 1]\noutput : list = [5, 3, 3, 1]",
    "output": "generated_output : list = sort_des([3, 5, 3, 1])",
    "io_inp": [
      3,
      5,
      3,
      1
    ],
    "io_out": [
      5,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, -4, 5]\noutput : list = [-18, -18, -18, 54]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(add_n([5, 5, -4, 5],-3),4)),-1),-2)",
    "io_inp": [
      5,
      5,
      -4,
      5
    ],
    "io_out": [
      -18,
      -18,
      -18,
      54
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(add_n(input,-3),4)),-1),-2)"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = drop([-4, 4, -2],1)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -2, -5, -4]\noutput : list = [12, 15, 6, 6]",
    "output": "generated_output : list = mul_n(reverse([-2, -2, -5, -4]),-3)",
    "io_inp": [
      -2,
      -2,
      -5,
      -4
    ],
    "io_out": [
      12,
      15,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [1, -5, 4]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(take([1, -5, 4],1),-3))))",
    "io_inp": [
      1,
      -5,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(take(input,1),-3))))"
  },
  {
    "input": "input : list = [3, -5, -1, 0, 0, 3]\noutput : list = [7, 7, 4, 4, 3, -1]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des([3, -5, -1, 0, 0, 3]),2),-5),-3)",
    "io_inp": [
      3,
      -5,
      -1,
      0,
      0,
      3
    ],
    "io_out": [
      7,
      7,
      4,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(input),2),-5),-3)"
  },
  {
    "input": "input : list = [2, -5, -2, 1, -2]\noutput : list = [-5, -2, 2]",
    "output": "generated_output : list = sort_asc(take([2, -5, -2, 1, -2],3))",
    "io_inp": [
      2,
      -5,
      -2,
      1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(take([-4, 0, 0],1),-2)",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [4, -1, -1, 4, -3, -4]\noutput : list = [4, 4, -1, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des([4, -1, -1, 4, -3, -4]))",
    "io_inp": [
      4,
      -1,
      -1,
      4,
      -3,
      -4
    ],
    "io_out": [
      4,
      4,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc(sub_n([4, -4],-5))),-5))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(sub_n(input,-5))),-5))"
  },
  {
    "input": "input : list = [-1, -4, -4, 4]\noutput : list = [5, -11, -11, -5]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-1, -4, -4, 4]),2),3)",
    "io_inp": [
      -1,
      -4,
      -4,
      4
    ],
    "io_out": [
      5,
      -11,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),2),3)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-20, -12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(reverse([-3, -5])),4)))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -20,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [-1, 3, 1, 4, -5]\noutput : list = [-5, 4, 1, 3, -1]",
    "output": "generated_output : list = take(reverse([-1, 3, 1, 4, -5]),9)",
    "io_inp": [
      -1,
      3,
      1,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      1,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(sub_n([5, 2],5),3)),10))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(sub_n(input,5),3)),10))"
  },
  {
    "input": "input : list = [3, -3, -4]\noutput : list = [-8, -7, -1]",
    "output": "generated_output : list = sub_n(sort_asc([3, -3, -4]),4)",
    "io_inp": [
      3,
      -3,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-5, 2, 2, -4]\noutput : list = [0, 0, -6, -7]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(mul_n([-5, 2, 2, -4],1)),2)),25)",
    "io_inp": [
      -5,
      2,
      2,
      -4
    ],
    "io_out": [
      0,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(mul_n(input,1)),2)),25)"
  },
  {
    "input": "input : list = [-1, 4, 1, 0]\noutput : list = [-4, -3, -2, 1]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sub_n([-1, 4, 1, 0],2),7),23)),-1)",
    "io_inp": [
      -1,
      4,
      1,
      0
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sub_n(input,2),7),23)),-1)"
  },
  {
    "input": "input : list = [-2, 2, 3, 4, -5]\noutput : list = [1, 5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(take([-2, 2, 3, 4, -5],2),4)),-5),-2)",
    "io_inp": [
      -2,
      2,
      3,
      4,
      -5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(take(input,2),4)),-5),-2)"
  },
  {
    "input": "input : list = [3, 4, -1, 3, -3, 2]\noutput : list = [7, 6, 6, 5, 2, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse([3, 4, -1, 3, -3, 2]),-3)))",
    "io_inp": [
      3,
      4,
      -1,
      3,
      -3,
      2
    ],
    "io_out": [
      7,
      6,
      6,
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(input),-3)))"
  },
  {
    "input": "input : list = [1, -5, -2, 2]\noutput : list = [50, 80, 65, 45]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(sub_n([1, -5, -2, 2],3),-1),-5),2),-5)",
    "io_inp": [
      1,
      -5,
      -2,
      2
    ],
    "io_out": [
      50,
      80,
      65,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(sub_n(input,3),-1),-5),2),-5)"
  },
  {
    "input": "input : list = [-1, -2, -2, -5, 1, 1]\noutput : list = [80, 32, 32, 16]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(take([-1, -2, -2, -5, 1, 1],4))),-4),4)",
    "io_inp": [
      -1,
      -2,
      -2,
      -5,
      1,
      1
    ],
    "io_out": [
      80,
      32,
      32,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(take(input,4))),-4),4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(mul_n([0, 0],-4))),21),-4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(mul_n(input,-4))),21),-4)"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [1, 2, 9]",
    "output": "generated_output : list = sort_asc(add_n([-3, 4, -4],5))",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      1,
      2,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [1, 3, 5, -1, 0]\noutput : list = [4, 6, 8, 2, 3]",
    "output": "generated_output : list = add_n([1, 3, 5, -1, 0],3)",
    "io_inp": [
      1,
      3,
      5,
      -1,
      0
    ],
    "io_out": [
      4,
      6,
      8,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, -2, 4, 1, 3]\noutput : list = [5, 4, 3, 2, -1]",
    "output": "generated_output : list = take(take(add_n(sort_des([2, -2, 4, 1, 3]),1),18),14)",
    "io_inp": [
      2,
      -2,
      4,
      1,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(input),1),18),14)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-7, -6, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(mul_n([-1, 5, 4],-1))),-2))",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -7,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(mul_n(input,-1))),-2))"
  },
  {
    "input": "input : list = [3, 0, 0, -4, 2, -3]\noutput : list = [0, 4, 4, 7]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(take([3, 0, 0, -4, 2, -3],4),-4))),35)",
    "io_inp": [
      3,
      0,
      0,
      -4,
      2,
      -3
    ],
    "io_out": [
      0,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(take(input,4),-4))),35)"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [10, 5, -25]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse([2, -5, 1]),5)))",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      10,
      5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(input),5)))"
  },
  {
    "input": "input : list = [-1, 0, -1, -4, -2]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take([-1, 0, -1, -4, -2],1))),4)",
    "io_inp": [
      -1,
      0,
      -1,
      -4,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(input,1))),4)"
  },
  {
    "input": "input : list = [0, -1, -1, 2, -3, 5]\noutput : list = [9, 6, 4, 3, 3, 1]",
    "output": "generated_output : list = sort_des(take(take(reverse(add_n([0, -1, -1, 2, -3, 5],4)),16),22))",
    "io_inp": [
      0,
      -1,
      -1,
      2,
      -3,
      5
    ],
    "io_out": [
      9,
      6,
      4,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(add_n(input,4)),16),22))"
  },
  {
    "input": "input : list = [2, 1, -1]\noutput : list = [8, -8, -16]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(mul_n([2, 1, -1],2),2),-2)))",
    "io_inp": [
      2,
      1,
      -1
    ],
    "io_out": [
      8,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(mul_n(input,2),2),-2)))"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [-20, 25]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(drop([2, -5, 4],1),-2),5),7),5)",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      -20,
      25
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(drop(input,1),-2),5),7),5)"
  },
  {
    "input": "input : list = [4, -4, 1, -2, 0, 4]\noutput : list = [-4, -2, 0, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([4, -4, 1, -2, 0, 4]))",
    "io_inp": [
      4,
      -4,
      1,
      -2,
      0,
      4
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [6, 6, 6]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(reverse([5, 5, 5]),3)),-4),3)",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(reverse(input),3)),-4),3)"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = sort_asc([-3, -3, -5])",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take(take([-4, -2, 4],1),14)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,1),14)"
  },
  {
    "input": "input : list = [-4, 3, 5, -3, 3, 3]\noutput : list = [2, 2, -4, 4, 2, -5]",
    "output": "generated_output : list = reverse(reverse(take(add_n(reverse([-4, 3, 5, -3, 3, 3]),-1),12)))",
    "io_inp": [
      -4,
      3,
      5,
      -3,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      -4,
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(reverse(input),-1),12)))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [8]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sort_des([-1, 3, 3]),1),13)),5)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sort_des(input),1),13)),5)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(mul_n([0, 4],1))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-4, 3, 5, 2, -5]\noutput : list = [-5, -4, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([-4, 3, 5, 2, -5])",
    "io_inp": [
      -4,
      3,
      5,
      2,
      -5
    ],
    "io_out": [
      -5,
      -4,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2, -3, -5, -2, 5]\noutput : list = [6, -2, -4, -8, -2, 12]",
    "output": "generated_output : list = sub_n(mul_n([2, -2, -3, -5, -2, 5],2),-2)",
    "io_inp": [
      2,
      -2,
      -3,
      -5,
      -2,
      5
    ],
    "io_out": [
      6,
      -2,
      -4,
      -8,
      -2,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),-2)"
  },
  {
    "input": "input : list = [-3, 2, 5, -5, 2, -1]\noutput : list = [-1, 2, -5, 5, 2, -3]",
    "output": "generated_output : list = reverse([-3, 2, 5, -5, 2, -1])",
    "io_inp": [
      -3,
      2,
      5,
      -5,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      -5,
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 3, 3]\noutput : list = [0, 0, -7]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sub_n([-4, 3, 3],-2)),-5)))",
    "io_inp": [
      -4,
      3,
      3
    ],
    "io_out": [
      0,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sub_n(input,-2)),-5)))"
  },
  {
    "input": "input : list = [0, 2, -3, 1]\noutput : list = [-7, -11]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(take([0, 2, -3, 1],2),1),-5),-2),-1)",
    "io_inp": [
      0,
      2,
      -3,
      1
    ],
    "io_out": [
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(take(input,2),1),-5),-2),-1)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = reverse(sub_n([-2, -2],4))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-2, 4, -4, 5, 2, -3]\noutput : list = [5, 4, 2, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des([-2, 4, -4, 5, 2, -3]))",
    "io_inp": [
      -2,
      4,
      -4,
      5,
      2,
      -3
    ],
    "io_out": [
      5,
      4,
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, -1, -3, 5]\noutput : list = [11, 3, 5]",
    "output": "generated_output : list = take(sub_n(take(reverse(sub_n([0, -1, -3, 5],-5)),27),-1),3)",
    "io_inp": [
      0,
      -1,
      -3,
      5
    ],
    "io_out": [
      11,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(sub_n(input,-5)),27),-1),3)"
  },
  {
    "input": "input : list = [-4, -4, 1]\noutput : list = [9, -16, -16]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(sort_des([-4, -4, 1]),5))),-4)",
    "io_inp": [
      -4,
      -4,
      1
    ],
    "io_out": [
      9,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(sort_des(input),5))),-4)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [2, 2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(reverse([3, 2, 2])))),25)",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(reverse(input)))),25)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(mul_n([2, 1],-2)))))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(mul_n(input,-2)))))"
  },
  {
    "input": "input : list = [4, 3, -4]\noutput : list = [20, 15, -20]",
    "output": "generated_output : list = mul_n([4, 3, -4],5)",
    "io_inp": [
      4,
      3,
      -4
    ],
    "io_out": [
      20,
      15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, -5, -3, 4, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n([1, -5, -3, 4, -1],-2),1)))",
    "io_inp": [
      1,
      -5,
      -3,
      4,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(input,-2),1)))"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(take([-3, 5, 4],1)),1)))",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(take(input,1)),1)))"
  },
  {
    "input": "input : list = [-2, 2, -4, 1, 3, -5]\noutput : list = [2, 0, -6]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(drop([-2, 2, -4, 1, 3, -5],3)),1)),23)",
    "io_inp": [
      -2,
      2,
      -4,
      1,
      3,
      -5
    ],
    "io_out": [
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(drop(input,3)),1)),23)"
  },
  {
    "input": "input : list = [-3, 4, -4, 1, 2]\noutput : list = [1, 0, -5, 3, -4]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(sub_n([-3, 4, -4, 1, 2],-3),-1)),3),13)",
    "io_inp": [
      -3,
      4,
      -4,
      1,
      2
    ],
    "io_out": [
      1,
      0,
      -5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(sub_n(input,-3),-1)),3),13)"
  },
  {
    "input": "input : list = [1, 4, 1, 5, -2, 3]\noutput : list = [-3, 0, 0, 2, 3, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des([1, 4, 1, 5, -2, 3])),-1)",
    "io_inp": [
      1,
      4,
      1,
      5,
      -2,
      3
    ],
    "io_out": [
      -3,
      0,
      0,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [-3, -3, -5, 3, 5]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(sub_n([-3, -3, -5, 3, 5],1),-4),2)),-3)",
    "io_inp": [
      -3,
      -3,
      -5,
      3,
      5
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(sub_n(input,1),-4),2)),-3)"
  },
  {
    "input": "input : list = [-2, -1, 5]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(sort_asc([-2, -1, 5]),2),-2),-2))",
    "io_inp": [
      -2,
      -1,
      5
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(sort_asc(input),2),-2),-2))"
  },
  {
    "input": "input : list = [5, 4, -3, 3, 5, -1]\noutput : list = [0, 8, 24, 32]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(reverse([5, 4, -3, 3, 5, -1]),5),4)),-4)",
    "io_inp": [
      5,
      4,
      -3,
      3,
      5,
      -1
    ],
    "io_out": [
      0,
      8,
      24,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(reverse(input),5),4)),-4)"
  },
  {
    "input": "input : list = [-1, -4, -4, 1, -5, 2]\noutput : list = [-4, -7, -7, -2, -8, -1]",
    "output": "generated_output : list = add_n([-1, -4, -4, 1, -5, 2],-3)",
    "io_inp": [
      -1,
      -4,
      -4,
      1,
      -5,
      2
    ],
    "io_out": [
      -4,
      -7,
      -7,
      -2,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [-120, 120, 240]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(mul_n([3, -3, -1],4),4)),5),-3)",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      -120,
      120,
      240
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(mul_n(input,4),4)),5),-3)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [35, 5]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(sub_n([-2, 4],-1)),2),2),5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      35,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(sub_n(input,-1)),2),2),5)"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [24, 20, 8]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_asc([4, 1, 5]),4)),-5),1)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      24,
      20,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_asc(input),4)),-5),1)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [15, 6, -3]",
    "output": "generated_output : list = mul_n(sort_asc([1, -5, -2]),-3)",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      15,
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-3, -5, -1, 2]\noutput : list = [-9, -7, -5, -2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(add_n([-3, -5, -1, 2],2),3)),3))",
    "io_inp": [
      -3,
      -5,
      -1,
      2
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(add_n(input,2),3)),3))"
  },
  {
    "input": "input : list = [4, -4, -1, -3, 0, 1]\noutput : list = [1, 2, 4, 5, 6, 9]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(add_n([4, -4, -1, -3, 0, 1],4),-1)),2),45)",
    "io_inp": [
      4,
      -4,
      -1,
      -3,
      0,
      1
    ],
    "io_out": [
      1,
      2,
      4,
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(add_n(input,4),-1)),2),45)"
  },
  {
    "input": "input : list = [-1, 0, 1, -3, 3]\noutput : list = [90, -90, 30, 0, -30]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(reverse([-1, 0, 1, -3, 3]),-2),5),-3),9)",
    "io_inp": [
      -1,
      0,
      1,
      -3,
      3
    ],
    "io_out": [
      90,
      -90,
      30,
      0,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(reverse(input),-2),5),-3),9)"
  },
  {
    "input": "input : list = [-1, -2, 0, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take([-1, -2, 0, -2],2)",
    "io_inp": [
      -1,
      -2,
      0,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -2, -1, 2]\noutput : list = [9, 3, 1, -1]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(mul_n([-3, -2, -1, 2],2)),-1),-4),39)",
    "io_inp": [
      -3,
      -2,
      -1,
      2
    ],
    "io_out": [
      9,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(mul_n(input,2)),-1),-4),39)"
  },
  {
    "input": "input : list = [0, -1, 0, -1, 2]\noutput : list = [7, 10]",
    "output": "generated_output : list = add_n(sub_n(drop([0, -1, 0, -1, 2],3),-4),4)",
    "io_inp": [
      0,
      -1,
      0,
      -1,
      2
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,3),-4),4)"
  },
  {
    "input": "input : list = [-4, 0, 3, 4, 0, 3]\noutput : list = [8, 5, 1]",
    "output": "generated_output : list = take(take(sort_des(sub_n(take([-4, 0, 3, 4, 0, 3],3),-5)),29),53)",
    "io_inp": [
      -4,
      0,
      3,
      4,
      0,
      3
    ],
    "io_out": [
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(take(input,3),-5)),29),53)"
  },
  {
    "input": "input : list = [2, 2, 0, 1, 5]\noutput : list = [-60, -24, -24, -12, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc([2, 2, 0, 1, 5]),3)),-4)",
    "io_inp": [
      2,
      2,
      0,
      1,
      5
    ],
    "io_out": [
      -60,
      -24,
      -24,
      -12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(input),3)),-4)"
  },
  {
    "input": "input : list = [0, 1, -5, -5, 2]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(take([0, 1, -5, -5, 2],1),16))))",
    "io_inp": [
      0,
      1,
      -5,
      -5,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(take(input,1),16))))"
  },
  {
    "input": "input : list = [-1, 3, 3, -2, 0, -1]\noutput : list = [4, 5, 5, 6, 9, 9]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([-1, 3, 3, -2, 0, -1]),-1),-5)",
    "io_inp": [
      -1,
      3,
      3,
      -2,
      0,
      -1
    ],
    "io_out": [
      4,
      5,
      5,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),-1),-5)"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [-16, -16, 12]",
    "output": "generated_output : list = mul_n([-4, -4, 3],4)",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      -16,
      -16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, 3, -4, 4, -5, -4]\noutput : list = [-3]",
    "output": "generated_output : list = take(take(mul_n(sort_des(take([-1, 3, -4, 4, -5, -4],1)),3),47),28)",
    "io_inp": [
      -1,
      3,
      -4,
      4,
      -5,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(take(input,1)),3),47),28)"
  },
  {
    "input": "input : list = [-1, -2, 2, 5]\noutput : list = [-1, 3, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(drop(sub_n([-1, -2, 2, 5],-1),1))))",
    "io_inp": [
      -1,
      -2,
      2,
      5
    ],
    "io_out": [
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(drop(sub_n(input,-1),1))))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(sort_des([-1, -3]),-1),-2)),1)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(sort_des(input),-1),-2)),1)"
  },
  {
    "input": "input : list = [-5, -5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -5, 3],1)",
    "io_inp": [
      -5,
      -5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 2, -1, 2, 5]\noutput : list = [13, 4, 4, 1, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(mul_n([1, 2, -1, 2, 5],3),2),-3)),1)",
    "io_inp": [
      1,
      2,
      -1,
      2,
      5
    ],
    "io_out": [
      13,
      4,
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(mul_n(input,3),2),-3)),1)"
  },
  {
    "input": "input : list = [-3, 4, 2, 2, -1, 3]\noutput : list = [2, -2, -8, -8, -10, -12]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(sub_n([-3, 4, 2, 2, -1, 3],-2),-2))))",
    "io_inp": [
      -3,
      4,
      2,
      2,
      -1,
      3
    ],
    "io_out": [
      2,
      -2,
      -8,
      -8,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(sub_n(input,-2),-2))))"
  },
  {
    "input": "input : list = [-5, -2, 5]\noutput : list = [-12, 23]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(drop([-5, -2, 5],1),-2),-2),5),-2)",
    "io_inp": [
      -5,
      -2,
      5
    ],
    "io_out": [
      -12,
      23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(drop(input,1),-2),-2),5),-2)"
  },
  {
    "input": "input : list = [0, -3, 3]\noutput : list = [10, -5, -20]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc([0, -3, 3]))),5),5)",
    "io_inp": [
      0,
      -3,
      3
    ],
    "io_out": [
      10,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc(input))),5),5)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(add_n([-1, -1],4),2)),4))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(add_n(input,4),2)),4))"
  },
  {
    "input": "input : list = [0, -5, -5, 3]\noutput : list = [9, 0, -15, -15]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(reverse([0, -5, -5, 3])),3),20))",
    "io_inp": [
      0,
      -5,
      -5,
      3
    ],
    "io_out": [
      9,
      0,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(reverse(input)),3),20))"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -5, -4],1)",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -5, 3, -1, 0, 3]\noutput : list = [-5, -25]",
    "output": "generated_output : list = mul_n(take([-1, -5, 3, -1, 0, 3],2),5)",
    "io_inp": [
      -1,
      -5,
      3,
      -1,
      0,
      3
    ],
    "io_out": [
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),5)"
  },
  {
    "input": "input : list = [-4, 3, -3, -1, -5, 3]\noutput : list = [1, 8, 2, 4, 0, 8]",
    "output": "generated_output : list = sub_n([-4, 3, -3, -1, -5, 3],-5)",
    "io_inp": [
      -4,
      3,
      -3,
      -1,
      -5,
      3
    ],
    "io_out": [
      1,
      8,
      2,
      4,
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, -4, -3, -1, 2]\noutput : list = [12, -3, 0, 6, 15]",
    "output": "generated_output : list = mul_n(sub_n([1, -4, -3, -1, 2],-3),3)",
    "io_inp": [
      1,
      -4,
      -3,
      -1,
      2
    ],
    "io_out": [
      12,
      -3,
      0,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),3)"
  },
  {
    "input": "input : list = [0, 4, 5, -2, -5]\noutput : list = [4, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(take([0, 4, 5, -2, -5],3)),4)",
    "io_inp": [
      0,
      4,
      5,
      -2,
      -5
    ],
    "io_out": [
      4,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,3)),4)"
  },
  {
    "input": "input : list = [0, 2, -5, -2]\noutput : list = [-12, -15, -8, -10]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse([0, 2, -5, -2]),5),-2),-3)",
    "io_inp": [
      0,
      2,
      -5,
      -2
    ],
    "io_out": [
      -12,
      -15,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(input),5),-2),-3)"
  },
  {
    "input": "input : list = [-2, 2, 2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(take([-2, 2, 2],1)),15)))",
    "io_inp": [
      -2,
      2,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(take(input,1)),15)))"
  },
  {
    "input": "input : list = [3, 2, -5, -5, 3, 0]\noutput : list = [5, 5, 4, 2, -3, -3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(sub_n([3, 2, -5, -5, 3, 0],-1)),-4)),-3)",
    "io_inp": [
      3,
      2,
      -5,
      -5,
      3,
      0
    ],
    "io_out": [
      5,
      5,
      4,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(sub_n(input,-1)),-4)),-3)"
  },
  {
    "input": "input : list = [-2, 5, 1]\noutput : list = [-16, -4, 12]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(sort_asc([-2, 5, 1]),-1),5),-1),4)",
    "io_inp": [
      -2,
      5,
      1
    ],
    "io_out": [
      -16,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(sort_asc(input),-1),5),-1),4)"
  },
  {
    "input": "input : list = [0, 4, -2, -2, 2, -3]\noutput : list = [-1, 0, 0, 2, 4, 6]",
    "output": "generated_output : list = take(add_n(add_n(reverse(sort_des([0, 4, -2, -2, 2, -3])),1),1),6)",
    "io_inp": [
      0,
      4,
      -2,
      -2,
      2,
      -3
    ],
    "io_out": [
      -1,
      0,
      0,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(sort_des(input)),1),1),6)"
  },
  {
    "input": "input : list = [-5, 0, 5, -4, -5, -3]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(take([-5, 0, 5, -4, -5, -3],1),-1))),52)",
    "io_inp": [
      -5,
      0,
      5,
      -4,
      -5,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(take(input,1),-1))),52)"
  },
  {
    "input": "input : list = [0, 2, 1, -1, -3, 5]\noutput : list = [-42, -12, 3, 18, 33, 78]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n([0, 2, 1, -1, -3, 5],-5),-3)),3)",
    "io_inp": [
      0,
      2,
      1,
      -1,
      -3,
      5
    ],
    "io_out": [
      -42,
      -12,
      3,
      18,
      33,
      78
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(input,-5),-3)),3)"
  },
  {
    "input": "input : list = [-1, -5, -1, -4, -2, -5]\noutput : list = [-2, -6, -2, -5, -3, -6]",
    "output": "generated_output : list = add_n(sub_n([-1, -5, -1, -4, -2, -5],3),2)",
    "io_inp": [
      -1,
      -5,
      -1,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -6,
      -2,
      -5,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),2)"
  },
  {
    "input": "input : list = [-5, -3, -1, -3, 5]\noutput : list = [-25, -15, -15, -5, 25]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(mul_n([-5, -3, -1, -3, 5],-5)),-1)))",
    "io_inp": [
      -5,
      -3,
      -1,
      -3,
      5
    ],
    "io_out": [
      -25,
      -15,
      -15,
      -5,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(mul_n(input,-5)),-1)))"
  },
  {
    "input": "input : list = [-3, 0, -3, -5, 0, -3]\noutput : list = [-4, -1, -6, -4, -1, -4]",
    "output": "generated_output : list = add_n(reverse(add_n([-3, 0, -3, -5, 0, -3],-5)),4)",
    "io_inp": [
      -3,
      0,
      -3,
      -5,
      0,
      -3
    ],
    "io_out": [
      -4,
      -1,
      -6,
      -4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,-5)),4)"
  },
  {
    "input": "input : list = [3, -2, -5, 3]\noutput : list = [3, 3, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc([3, -2, -5, 3]))",
    "io_inp": [
      3,
      -2,
      -5,
      3
    ],
    "io_out": [
      3,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -2, -2, 0, -2]\noutput : list = [20, 20, 20, -20, -60]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(add_n([2, -2, -2, 0, -2],1),5)),-4))",
    "io_inp": [
      2,
      -2,
      -2,
      0,
      -2
    ],
    "io_out": [
      20,
      20,
      20,
      -20,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(add_n(input,1),5)),-4))"
  },
  {
    "input": "input : list = [4, 5, -1, -4, -5]\noutput : list = [9, 8, 3, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sub_n([4, 5, -1, -4, -5],-5)),1)))",
    "io_inp": [
      4,
      5,
      -1,
      -4,
      -5
    ],
    "io_out": [
      9,
      8,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sub_n(input,-5)),1)))"
  },
  {
    "input": "input : list = [-4, -3, -4, 1, -5, 4]\noutput : list = [4, 1, -3, -4, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-4, -3, -4, 1, -5, 4]))",
    "io_inp": [
      -4,
      -3,
      -4,
      1,
      -5,
      4
    ],
    "io_out": [
      4,
      1,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 2, -1, -3, -4, 1]\noutput : list = [-2, -1, -1, 1, 3, 4]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(sub_n([-3, 2, -1, -3, -4, 1],-5))),-3))",
    "io_inp": [
      -3,
      2,
      -1,
      -3,
      -4,
      1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(sub_n(input,-5))),-3))"
  },
  {
    "input": "input : list = [5, 0, 2]\noutput : list = [0, -8, -20]",
    "output": "generated_output : list = sort_des(reverse(reverse(mul_n(mul_n([5, 0, 2],4),-1))))",
    "io_inp": [
      5,
      0,
      2
    ],
    "io_out": [
      0,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(mul_n(mul_n(input,4),-1))))"
  },
  {
    "input": "input : list = [-1, -3, -5, -3]\noutput : list = [-4, 0, 0, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sub_n([-1, -3, -5, -3],-2),2))),2)",
    "io_inp": [
      -1,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -4,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sub_n(input,-2),2))),2)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take(reverse(add_n(take(add_n([2, 1],3),8),-5)),2)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(add_n(input,3),8),-5)),2)"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [24]",
    "output": "generated_output : list = mul_n(sub_n(take(take(take([4, 4, 5],1),5),19),-2),4)",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(take(input,1),5),19),-2),4)"
  },
  {
    "input": "input : list = [2, 3, -1, -1, -1, 5]\noutput : list = [6, 7, 3, 3, 3, 9]",
    "output": "generated_output : list = add_n([2, 3, -1, -1, -1, 5],4)",
    "io_inp": [
      2,
      3,
      -1,
      -1,
      -1,
      5
    ],
    "io_out": [
      6,
      7,
      3,
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -5, 0, 0, 5]\noutput : list = [0, -5, -5, -5, -10]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_des([0, -5, 0, 0, 5]))),-5))",
    "io_inp": [
      0,
      -5,
      0,
      0,
      5
    ],
    "io_out": [
      0,
      -5,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-2, -5, -1, 4, 5, 3]\noutput : list = [-4, -2, -3, -8, -12, -9]",
    "output": "generated_output : list = take(add_n(sub_n(reverse([-2, -5, -1, 4, 5, 3]),4),-3),36)",
    "io_inp": [
      -2,
      -5,
      -1,
      4,
      5,
      3
    ],
    "io_out": [
      -4,
      -2,
      -3,
      -8,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(input),4),-3),36)"
  },
  {
    "input": "input : list = [1, 2, -5, -3]\noutput : list = [3, -4, -2]",
    "output": "generated_output : list = add_n(sub_n(drop([1, 2, -5, -3],1),3),4)",
    "io_inp": [
      1,
      2,
      -5,
      -3
    ],
    "io_out": [
      3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),3),4)"
  },
  {
    "input": "input : list = [-4, -2, 2, -3, -3]\noutput : list = [8, 6, 6, 4, -4]",
    "output": "generated_output : list = mul_n(sort_asc([-4, -2, 2, -3, -3]),-2)",
    "io_inp": [
      -4,
      -2,
      2,
      -3,
      -3
    ],
    "io_out": [
      8,
      6,
      6,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-5, -5, 2, -3]\noutput : list = [9, 14, 7, 7]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(sub_n([-5, -5, 2, -3],-1),-5),-5)),1)",
    "io_inp": [
      -5,
      -5,
      2,
      -3
    ],
    "io_out": [
      9,
      14,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(sub_n(input,-1),-5),-5)),1)"
  },
  {
    "input": "input : list = [-1, 2, -1, 2, 1]\noutput : list = [4, 4, -4, -8, -8]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(sort_asc([-1, 2, -1, 2, 1])),-4),12),36)",
    "io_inp": [
      -1,
      2,
      -1,
      2,
      1
    ],
    "io_out": [
      4,
      4,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(sort_asc(input)),-4),12),36)"
  },
  {
    "input": "input : list = [5, 1, -3, -3, 4]\noutput : list = [-1, 3, 7, 7, 0]",
    "output": "generated_output : list = sub_n(mul_n([5, 1, -3, -3, 4],-1),-4)",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      4
    ],
    "io_out": [
      -1,
      3,
      7,
      7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),-4)"
  },
  {
    "input": "input : list = [-2, -2, 4, -1, -3]\noutput : list = [-11, -11, -5, -10, -12]",
    "output": "generated_output : list = add_n(sub_n([-2, -2, 4, -1, -3],4),-5)",
    "io_inp": [
      -2,
      -2,
      4,
      -1,
      -3
    ],
    "io_out": [
      -11,
      -11,
      -5,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-5)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-30, -40]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(reverse([-3, -4]),5),2)))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -30,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(reverse(input),5),2)))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-15, 9]",
    "output": "generated_output : list = mul_n([-5, 3],3)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -15,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_des(take([-5, 2, 0],1)))",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-4, 0, -2, 3]\noutput : list = [4, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(drop([-4, 0, -2, 3],2),13))),-1)",
    "io_inp": [
      -4,
      0,
      -2,
      3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(drop(input,2),13))),-1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [10, -6]",
    "output": "generated_output : list = mul_n(sort_des([5, -3]),2)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [1, -5, -1, 1]\noutput : list = [18, 138, 58, 18]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(sub_n([1, -5, -1, 1],2),5),-4),38),-2)",
    "io_inp": [
      1,
      -5,
      -1,
      1
    ],
    "io_out": [
      18,
      138,
      58,
      18
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(sub_n(input,2),5),-4),38),-2)"
  },
  {
    "input": "input : list = [-4, -3, -1, 0]\noutput : list = [0, -1, -3, -4]",
    "output": "generated_output : list = reverse(reverse(reverse([-4, -3, -1, 0])))",
    "io_inp": [
      -4,
      -3,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [4, 2, -4, 4, 1, 3]\noutput : list = [16, -4, -8, -12, -16, -16]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(mul_n([4, 2, -4, 4, 1, 3],-4)))))",
    "io_inp": [
      4,
      2,
      -4,
      4,
      1,
      3
    ],
    "io_out": [
      16,
      -4,
      -8,
      -12,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(mul_n(input,-4)))))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [4, 16]",
    "output": "generated_output : list = add_n(reverse(mul_n([-4, 0],-3)),4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,-3)),4)"
  },
  {
    "input": "input : list = [-1, 4, -2, 3]\noutput : list = [3, -2, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, -2, 3])",
    "io_inp": [
      -1,
      4,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [100, 80]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(reverse([5, 4]))),4),5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      100,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(reverse(input))),4),5)"
  },
  {
    "input": "input : list = [0, -5, -3, -5, 4, 3]\noutput : list = [11, 71, 47, 71, -37, -25]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n([0, -5, -3, -5, 4, 3],3),-1),3),-4),3)",
    "io_inp": [
      0,
      -5,
      -3,
      -5,
      4,
      3
    ],
    "io_out": [
      11,
      71,
      47,
      71,
      -37,
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n(input,3),-1),3),-4),3)"
  },
  {
    "input": "input : list = [-4, -3, 5, 0]\noutput : list = [-4]",
    "output": "generated_output : list = take(mul_n(sort_asc(drop(reverse([-4, -3, 5, 0]),3)),1),30)",
    "io_inp": [
      -4,
      -3,
      5,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(drop(reverse(input),3)),1),30)"
  },
  {
    "input": "input : list = [5, 0, -5, 5, 4, -3]\noutput : list = [9]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(sort_des([5, 0, -5, 5, 4, -3]),1)),-4))",
    "io_inp": [
      5,
      0,
      -5,
      5,
      4,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(sort_des(input),1)),-4))"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(take([-5, -4, -4],1),2)),1),4)",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(take(input,1),2)),1),4)"
  },
  {
    "input": "input : list = [2, -3, 1, 4]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(drop(sort_asc(sort_des([2, -3, 1, 4])),1)))",
    "io_inp": [
      2,
      -3,
      1,
      4
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(sort_asc(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [-7, -5, 0]",
    "output": "generated_output : list = sort_asc(add_n([5, 0, -2],-5))",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      -7,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 5, 2, -5, 0]\noutput : list = [8, 5, 3, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(take(take(reverse([-3, 5, 2, -5, 0]),18),24),-3))",
    "io_inp": [
      -3,
      5,
      2,
      -5,
      0
    ],
    "io_out": [
      8,
      5,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(reverse(input),18),24),-3))"
  },
  {
    "input": "input : list = [1, -3, 0, 2, -3, 1]\noutput : list = [-12, 36, 0]",
    "output": "generated_output : list = reverse(mul_n(drop(reverse(mul_n([1, -3, 0, 2, -3, 1],-4)),3),3))",
    "io_inp": [
      1,
      -3,
      0,
      2,
      -3,
      1
    ],
    "io_out": [
      -12,
      36,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(reverse(mul_n(input,-4)),3),3))"
  },
  {
    "input": "input : list = [-3, -1, 1, 0]\noutput : list = [1, 0, -1, -3]",
    "output": "generated_output : list = sort_des([-3, -1, 1, 0])",
    "io_inp": [
      -3,
      -1,
      1,
      0
    ],
    "io_out": [
      1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 5, 2, 1, -1, -4]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(drop([-3, 5, 2, 1, -1, -4],4)),-5),7))",
    "io_inp": [
      -3,
      5,
      2,
      1,
      -1,
      -4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(drop(input,4)),-5),7))"
  },
  {
    "input": "input : list = [5, -1, -1, -3, 1]\noutput : list = [-4, -2, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_des([5, -1, -1, -3, 1]),-5),-2),2))",
    "io_inp": [
      5,
      -1,
      -1,
      -3,
      1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_des(input),-5),-2),2))"
  },
  {
    "input": "input : list = [-4, 0, 2, 2, 0, 5]\noutput : list = [1, 5, 7, 7]",
    "output": "generated_output : list = sub_n(take([-4, 0, 2, 2, 0, 5],4),-5)",
    "io_inp": [
      -4,
      0,
      2,
      2,
      0,
      5
    ],
    "io_out": [
      1,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,4),-5)"
  },
  {
    "input": "input : list = [-1, -3, -4, -2, 0, -3]\noutput : list = [12, 15, 18, 21, 21, 24]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([-1, -3, -4, -2, 0, -3],4),-3))",
    "io_inp": [
      -1,
      -3,
      -4,
      -2,
      0,
      -3
    ],
    "io_out": [
      12,
      15,
      18,
      21,
      21,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,4),-3))"
  },
  {
    "input": "input : list = [4, 3, -5, 0, 0, 3]\noutput : list = [-5, 0, 0, 3]",
    "output": "generated_output : list = drop([4, 3, -5, 0, 0, 3],2)",
    "io_inp": [
      4,
      3,
      -5,
      0,
      0,
      3
    ],
    "io_out": [
      -5,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2, 1, 1, 3]\noutput : list = [-4, 1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc([-4, 2, 1, 1, 3])",
    "io_inp": [
      -4,
      2,
      1,
      1,
      3
    ],
    "io_out": [
      -4,
      1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -5, 1, -4]\noutput : list = [15, 12, -3, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(sort_des([1, -5, 1, -4]),13))),-3)",
    "io_inp": [
      1,
      -5,
      1,
      -4
    ],
    "io_out": [
      15,
      12,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(sort_des(input),13))),-3)"
  },
  {
    "input": "input : list = [-4, -5, -3, 2]\noutput : list = [1, -4, -5, -6]",
    "output": "generated_output : list = add_n(sort_des(take(take(sort_des([-4, -5, -3, 2]),6),21)),-1)",
    "io_inp": [
      -4,
      -5,
      -3,
      2
    ],
    "io_out": [
      1,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sort_des(input),6),21)),-1)"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(drop([0, 2, 4],1))",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 3, -4, 4, -3, -2]\noutput : list = [-4, -5, 2, -6, 1, -4]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sub_n([-2, 3, -4, 4, -3, -2],4),7)),1),-1)",
    "io_inp": [
      -2,
      3,
      -4,
      4,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -5,
      2,
      -6,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sub_n(input,4),7)),1),-1)"
  },
  {
    "input": "input : list = [5, 1, -4, 3]\noutput : list = [8, 6, 4, -1]",
    "output": "generated_output : list = sub_n(sort_des([5, 1, -4, 3]),-3)",
    "io_inp": [
      5,
      1,
      -4,
      3
    ],
    "io_out": [
      8,
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-3, 1, 5, 2, -4, -1]\noutput : list = [8, 5, 4, 2, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(sort_asc([-3, 1, 5, 2, -4, -1])),1)),-2)",
    "io_inp": [
      -3,
      1,
      5,
      2,
      -4,
      -1
    ],
    "io_out": [
      8,
      5,
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(sort_asc(input)),1)),-2)"
  },
  {
    "input": "input : list = [-1, -4, -1, -3, 3, -2]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(drop([-1, -4, -1, -3, 3, -2],3)),39),4),4)",
    "io_inp": [
      -1,
      -4,
      -1,
      -3,
      3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(drop(input,3)),39),4),4)"
  },
  {
    "input": "input : list = [-1, -1, 0, -2, -1]\noutput : list = [0, 2, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(reverse([-1, -1, 0, -2, -1]))),-2))",
    "io_inp": [
      -1,
      -1,
      0,
      -2,
      -1
    ],
    "io_out": [
      0,
      2,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(reverse(input))),-2))"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [0, 5, 6]",
    "output": "generated_output : list = sub_n(reverse([2, 1, -4]),-4)",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      0,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-3, 4, -2, -5, 4]\noutput : list = [-3, -3, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(add_n([-3, 4, -2, -5, 4],-1),-1))))",
    "io_inp": [
      -3,
      4,
      -2,
      -5,
      4
    ],
    "io_out": [
      -3,
      -3,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(add_n(input,-1),-1))))"
  },
  {
    "input": "input : list = [-3, 1, -5]\noutput : list = [16, -48, -80]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(mul_n([-3, 1, -5],4),4)),3))",
    "io_inp": [
      -3,
      1,
      -5
    ],
    "io_out": [
      16,
      -48,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(mul_n(input,4),4)),3))"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [-32, 24, 32]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(add_n([3, -5, -4],1))),-2),4)",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      -32,
      24,
      32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(add_n(input,1))),-2),4)"
  },
  {
    "input": "input : list = [-4, -1, -2, -1, 2]\noutput : list = [4, 1, 1, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des([-4, -1, -2, -1, 2]),-2)",
    "io_inp": [
      -4,
      -1,
      -2,
      -1,
      2
    ],
    "io_out": [
      4,
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-5, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n([-4, -3],1)),-3),2)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(input,1)),-3),2)"
  },
  {
    "input": "input : list = [4, 4, 2, 3, -4, -3]\noutput : list = [80, 60, -40, -60, -80, -80]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(sort_des([4, 4, 2, 3, -4, -3]),12),-4),5))",
    "io_inp": [
      4,
      4,
      2,
      3,
      -4,
      -3
    ],
    "io_out": [
      80,
      60,
      -40,
      -60,
      -80,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(sort_des(input),12),-4),5))"
  },
  {
    "input": "input : list = [5, -1, 4, -2, 1, -1]\noutput : list = [-1, 1, -2, 4, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, 4, -2, 1, -1])",
    "io_inp": [
      5,
      -1,
      4,
      -2,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      -2,
      4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [-6, -3, -3]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(mul_n([2, 1, 1],-3))),3))",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(mul_n(input,-3))),3))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-10, -5]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(add_n([2, -3],-5))),33),-2)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(add_n(input,-5))),33),-2)"
  },
  {
    "input": "input : list = [2, 4, 3, -5, 1]\noutput : list = [-4, -2, -3, -11, -5]",
    "output": "generated_output : list = add_n(sub_n([2, 4, 3, -5, 1],5),-1)",
    "io_inp": [
      2,
      4,
      3,
      -5,
      1
    ],
    "io_out": [
      -4,
      -2,
      -3,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-1)"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [4, -1, 4]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(reverse([3, -2, 3]),-2),-5),2))",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(reverse(input),-2),-5),2))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-15, -15]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(reverse([1, 1])),3),-4),3)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(reverse(input)),3),-4),3)"
  },
  {
    "input": "input : list = [3, -2, -4, 4, 2, -2]\noutput : list = [5, 0, -5, -25, -25, -35]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(sub_n([3, -2, -4, 4, 2, -2],5),10)),2),5)",
    "io_inp": [
      3,
      -2,
      -4,
      4,
      2,
      -2
    ],
    "io_out": [
      5,
      0,
      -5,
      -25,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(sub_n(input,5),10)),2),5)"
  },
  {
    "input": "input : list = [2, 2, 1, -1, -2]\noutput : list = [-2, -1, 1, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, 1, -1, -2])",
    "io_inp": [
      2,
      2,
      1,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, -2, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(take([-5, 4, -2, -3],1),-2),-5)),31)",
    "io_inp": [
      -5,
      4,
      -2,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(take(input,1),-2),-5)),31)"
  },
  {
    "input": "input : list = [2, 1, -4, 0, -1]\noutput : list = [-3, -4, -9, -5, -6]",
    "output": "generated_output : list = sub_n([2, 1, -4, 0, -1],5)",
    "io_inp": [
      2,
      1,
      -4,
      0,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -9,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, -1, -1, 2]\noutput : list = [2, 1, 1, -2]",
    "output": "generated_output : list = mul_n([-2, -1, -1, 2],-1)",
    "io_inp": [
      -2,
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [4, 0, -4]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(add_n([0, -2, -4],2))),2))",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(add_n(input,2))),2))"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [-4, 1, 21]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(mul_n([0, -4, 1],-5),3),3),1))",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      -4,
      1,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(mul_n(input,-5),3),3),1))"
  },
  {
    "input": "input : list = [2, -3, -3, -2]\noutput : list = [2]",
    "output": "generated_output : list = take(take([2, -3, -3, -2],1),11)",
    "io_inp": [
      2,
      -3,
      -3,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(input,1),11)"
  },
  {
    "input": "input : list = [-4, -5, -1, 5, 5]\noutput : list = [-20, -20, 4, 20]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(drop([-4, -5, -1, 5, 5],1),-4),32)))",
    "io_inp": [
      -4,
      -5,
      -1,
      5,
      5
    ],
    "io_out": [
      -20,
      -20,
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(drop(input,1),-4),32)))"
  },
  {
    "input": "input : list = [-1, 3, -4, -5, 1, 3]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(take([-1, 3, -4, -5, 1, 3],2),-4)",
    "io_inp": [
      -1,
      3,
      -4,
      -5,
      1,
      3
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [-2, 2, 4, 0, 4, -4]\noutput : list = [-20, 20, 0, 20, 10, -10]",
    "output": "generated_output : list = take(mul_n(reverse([-2, 2, 4, 0, 4, -4]),5),22)",
    "io_inp": [
      -2,
      2,
      4,
      0,
      4,
      -4
    ],
    "io_out": [
      -20,
      20,
      0,
      20,
      10,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),5),22)"
  },
  {
    "input": "input : list = [2, 2, 2, 1, 1]\noutput : list = [1, 1, 2, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([2, 2, 2, 1, 1]))",
    "io_inp": [
      2,
      2,
      2,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [12, 6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sort_asc([-4, -2, -2])))),-3)",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      12,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sort_asc(input)))),-3)"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(take([5, 0, -5],1))),-1),3)",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(take(input,1))),-1),3)"
  },
  {
    "input": "input : list = [-1, 5, 3, 2, 1, 3]\noutput : list = [0, 8, 12, 16, 16, 24]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(mul_n([-1, 5, 3, 2, 1, 3],4),9),-4)))",
    "io_inp": [
      -1,
      5,
      3,
      2,
      1,
      3
    ],
    "io_out": [
      0,
      8,
      12,
      16,
      16,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(mul_n(input,4),9),-4)))"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [3, 3, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([5, 1, 5],4)),-2)",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,4)),-2)"
  },
  {
    "input": "input : list = [0, -1, 1, 2, -1, 5]\noutput : list = [20, -20, -40, 20, -100]",
    "output": "generated_output : list = drop(mul_n(mul_n([0, -1, 1, 2, -1, 5],-5),4),1)",
    "io_inp": [
      0,
      -1,
      1,
      2,
      -1,
      5
    ],
    "io_out": [
      20,
      -20,
      -40,
      20,
      -100
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(input,-5),4),1)"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [-5, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, -5])",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(drop(reverse(add_n(mul_n([0, 3],1),4)),1),1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(add_n(mul_n(input,1),4)),1),1)"
  },
  {
    "input": "input : list = [-4, -5, -3, -2, 3]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = take(take(drop([-4, -5, -3, -2, 3],2),21),30)",
    "io_inp": [
      -4,
      -5,
      -3,
      -2,
      3
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(take(drop(input,2),21),30)"
  },
  {
    "input": "input : list = [5, 0, 0, 3]\noutput : list = [7, -5, -5]",
    "output": "generated_output : list = sub_n(mul_n(reverse(drop([5, 0, 0, 3],1)),4),5)",
    "io_inp": [
      5,
      0,
      0,
      3
    ],
    "io_out": [
      7,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(drop(input,1)),4),5)"
  },
  {
    "input": "input : list = [-1, 5, -1, 2, -2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(drop(sort_des(take(add_n([-1, 5, -1, 2, -2],5),22)),3))",
    "io_inp": [
      -1,
      5,
      -1,
      2,
      -2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_des(take(add_n(input,5),22)),3))"
  },
  {
    "input": "input : list = [-5, 3, -3, 0, -4]\noutput : list = [-1, -7, -9]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(take([-5, 3, -3, 0, -4],3)),-5),-1),28)",
    "io_inp": [
      -5,
      3,
      -3,
      0,
      -4
    ],
    "io_out": [
      -1,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(take(input,3)),-5),-1),28)"
  },
  {
    "input": "input : list = [-2, -3, -3, 3, 5, -1]\noutput : list = [-5, -7, -11, -12, -13, -13]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sub_n([-2, -3, -3, 3, 5, -1],5)),5)))",
    "io_inp": [
      -2,
      -3,
      -3,
      3,
      5,
      -1
    ],
    "io_out": [
      -5,
      -7,
      -11,
      -12,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sub_n(input,5)),5)))"
  },
  {
    "input": "input : list = [-4, -4, -5, 1]\noutput : list = [-5, -4, -4, 1]",
    "output": "generated_output : list = sort_asc([-4, -4, -5, 1])",
    "io_inp": [
      -4,
      -4,
      -5,
      1
    ],
    "io_out": [
      -5,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, -5, -1]\noutput : list = [-9, -6, 3, 21]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sub_n([5, -4, -5, -1],1),2)),-5),3)",
    "io_inp": [
      5,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -6,
      3,
      21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sub_n(input,1),2)),-5),3)"
  },
  {
    "input": "input : list = [-5, -2, 3]\noutput : list = [-8, -5, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sort_asc([-5, -2, 3])),3)))",
    "io_inp": [
      -5,
      -2,
      3
    ],
    "io_out": [
      -8,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [3, 4, -4, 1, 0, -3]\noutput : list = [-9, -7, -1, 1, 5, 7]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(add_n([3, 4, -4, 1, 0, -3],2)),4),2),-3)",
    "io_inp": [
      3,
      4,
      -4,
      1,
      0,
      -3
    ],
    "io_out": [
      -9,
      -7,
      -1,
      1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(add_n(input,2)),4),2),-3)"
  },
  {
    "input": "input : list = [2, -1, 2, -5, 5, 0]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(add_n([2, -1, 2, -5, 5, 0],1),1),-1)))",
    "io_inp": [
      2,
      -1,
      2,
      -5,
      5,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(add_n(input,1),1),-1)))"
  },
  {
    "input": "input : list = [0, -2, 1, 2, -5]\noutput : list = [-13]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(take([0, -2, 1, 2, -5],1),-5),3),5))",
    "io_inp": [
      0,
      -2,
      1,
      2,
      -5
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(take(input,1),-5),3),5))"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [4, -44, 16]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n([2, -3, 1],-4),-2)),-3),2)",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      4,
      -44,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n(input,-4),-2)),-3),2)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [0, 0, -20]",
    "output": "generated_output : list = mul_n([0, 0, -4],5)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 0, 0, 5, 0, 0]\noutput : list = [-5, -5, 0]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(drop([3, 0, 0, 5, 0, 0],3)),3)),-2)",
    "io_inp": [
      3,
      0,
      0,
      5,
      0,
      0
    ],
    "io_out": [
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(drop(input,3)),3)),-2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [3, 9]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_asc([5, -1])))),4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take([-4, -1, 5],1))",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-5, -2, 3, 2, 2]\noutput : list = [-3, -3, -2, -7, -10]",
    "output": "generated_output : list = take(take(mul_n(sub_n(reverse([-5, -2, 3, 2, 2]),5),1),18),37)",
    "io_inp": [
      -5,
      -2,
      3,
      2,
      2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(reverse(input),5),1),18),37)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sub_n(sort_des([0, -2]),1)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [0, -2, 2, -5, -1, -2]\noutput : list = [10, 30, 40, 50, 50, 80]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_asc([0, -2, 2, -5, -1, -2]),-3)),5),-2)",
    "io_inp": [
      0,
      -2,
      2,
      -5,
      -1,
      -2
    ],
    "io_out": [
      10,
      30,
      40,
      50,
      50,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_asc(input),-3)),5),-2)"
  },
  {
    "input": "input : list = [-1, 1, -4, 0, 5, 4]\noutput : list = [6, 5, 2, 1, 0, -3]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc([-1, 1, -4, 0, 5, 4])),-1),42)",
    "io_inp": [
      -1,
      1,
      -4,
      0,
      5,
      4
    ],
    "io_out": [
      6,
      5,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(input)),-1),42)"
  },
  {
    "input": "input : list = [0, -5, 4, 0, 3]\noutput : list = [4, 3, 0, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(add_n([0, -5, 4, 0, 3],-2),22),2)))",
    "io_inp": [
      0,
      -5,
      4,
      0,
      3
    ],
    "io_out": [
      4,
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(add_n(input,-2),22),2)))"
  },
  {
    "input": "input : list = [2, 5, -1, 1, -3, 2]\noutput : list = [2, 5, -1, 1]",
    "output": "generated_output : list = take([2, 5, -1, 1, -3, 2],4)",
    "io_inp": [
      2,
      5,
      -1,
      1,
      -3,
      2
    ],
    "io_out": [
      2,
      5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [4, 0, -5, -5, -3, -4]\noutput : list = [-11, -10, -9]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_asc(drop([4, 0, -5, -5, -3, -4],3)),3),5),-4)",
    "io_inp": [
      4,
      0,
      -5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -11,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_asc(drop(input,3)),3),5),-4)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(take(add_n(mul_n([-4, 1],-1),1),4))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(input,-1),1),4))"
  },
  {
    "input": "input : list = [-3, 2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = drop([-3, 2, 1],1)",
    "io_inp": [
      -3,
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-15, -5, 35]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(sort_asc([4, 0, -1]),-2),1)),-5)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -15,
      -5,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(sort_asc(input),-2),1)),-5)"
  },
  {
    "input": "input : list = [2, 3, -2]\noutput : list = [-2, 2, 3]",
    "output": "generated_output : list = take(take(take(reverse(sort_des([2, 3, -2])),10),5),8)",
    "io_inp": [
      2,
      3,
      -2
    ],
    "io_out": [
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(sort_des(input)),10),5),8)"
  },
  {
    "input": "input : list = [5, 3, -2, 5, -3, -1]\noutput : list = [-2, 5, -3, -1]",
    "output": "generated_output : list = drop([5, 3, -2, 5, -3, -1],2)",
    "io_inp": [
      5,
      3,
      -2,
      5,
      -3,
      -1
    ],
    "io_out": [
      -2,
      5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [12, 12, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(sort_des([-3, 0, -3]))),-4))",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      12,
      12,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [0, 0, 5, 1]\noutput : list = [1, -3, -4, -4]",
    "output": "generated_output : list = sort_des(sub_n(reverse([0, 0, 5, 1]),4))",
    "io_inp": [
      0,
      0,
      5,
      1
    ],
    "io_out": [
      1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),4))"
  },
  {
    "input": "input : list = [-2, 0, -5, 0]\noutput : list = [-5, -2, 0, 0]",
    "output": "generated_output : list = sort_asc([-2, 0, -5, 0])",
    "io_inp": [
      -2,
      0,
      -5,
      0
    ],
    "io_out": [
      -5,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, 1, 4]\noutput : list = [8, 5, 4, 6]",
    "output": "generated_output : list = take(take(add_n(reverse(add_n([2, 0, 1, 4],3)),1),24),22)",
    "io_inp": [
      2,
      0,
      1,
      4
    ],
    "io_out": [
      8,
      5,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(add_n(input,3)),1),24),22)"
  },
  {
    "input": "input : list = [-3, -2, 3, -2, -2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n(take(reverse([-3, -2, 3, -2, -2]),2),-1)",
    "io_inp": [
      -3,
      -2,
      3,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),2),-1)"
  },
  {
    "input": "input : list = [-3, -5, -3, -2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_asc(drop(add_n(take([-3, -5, -3, -2],2),-1),1)),4)",
    "io_inp": [
      -3,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(add_n(take(input,2),-1),1)),4)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n([2, -1],-1)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, -1, -4, -2, 1]\noutput : list = [-6, 0, 4, 6, 10]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(sort_asc([4, -1, -4, -2, 1]),-1),-2),6))",
    "io_inp": [
      4,
      -1,
      -4,
      -2,
      1
    ],
    "io_out": [
      -6,
      0,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(sort_asc(input),-1),-2),6))"
  },
  {
    "input": "input : list = [5, 4, -1, -1, 1, -1]\noutput : list = [-2, 2, -2, -2, 8, 10]",
    "output": "generated_output : list = reverse(mul_n([5, 4, -1, -1, 1, -1],2))",
    "io_inp": [
      5,
      4,
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      -2,
      2,
      -2,
      -2,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-28, -20]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(add_n(add_n([1, -1],2),5),-4)),-4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -28,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(add_n(add_n(input,2),5),-4)),-4)"
  },
  {
    "input": "input : list = [0, -1, -4, 5, -2, 5]\noutput : list = [1, -6, 1, -8]",
    "output": "generated_output : list = take(take(add_n(take(reverse([0, -1, -4, 5, -2, 5]),23),-4),4),24)",
    "io_inp": [
      0,
      -1,
      -4,
      5,
      -2,
      5
    ],
    "io_out": [
      1,
      -6,
      1,
      -8
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(reverse(input),23),-4),4),24)"
  },
  {
    "input": "input : list = [-2, -3, -3, 1, -2, -5]\noutput : list = [-16]",
    "output": "generated_output : list = mul_n(mul_n(take([-2, -3, -3, 1, -2, -5],1),4),2)",
    "io_inp": [
      -2,
      -3,
      -3,
      1,
      -2,
      -5
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),4),2)"
  },
  {
    "input": "input : list = [-1, 5, -4, 4, 5]\noutput : list = [2, -10]",
    "output": "generated_output : list = mul_n(take([-1, 5, -4, 4, 5],2),-2)",
    "io_inp": [
      -1,
      5,
      -4,
      4,
      5
    ],
    "io_out": [
      2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-2)"
  },
  {
    "input": "input : list = [3, -1, 3, -3, -5]\noutput : list = [3, -1, 3]",
    "output": "generated_output : list = take([3, -1, 3, -3, -5],3)",
    "io_inp": [
      3,
      -1,
      3,
      -3,
      -5
    ],
    "io_out": [
      3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -3, 0, -5]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(take([-5, -3, 0, -5],1),-3)",
    "io_inp": [
      -5,
      -3,
      0,
      -5
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [5, 3, 3, -2, 1]\noutput : list = [-30, -20, -20, -10, 5]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sub_n(mul_n([5, 3, 3, -2, 1],-5),1),-3)),1)",
    "io_inp": [
      5,
      3,
      3,
      -2,
      1
    ],
    "io_out": [
      -30,
      -20,
      -20,
      -10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sub_n(mul_n(input,-5),1),-3)),1)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(reverse([0, 4, 2])),19)))",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(reverse(input)),19)))"
  },
  {
    "input": "input : list = [3, 1, 0, 1]\noutput : list = [11]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(sort_des([3, 1, 0, 1]),2),-3),1),-2)",
    "io_inp": [
      3,
      1,
      0,
      1
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(sort_des(input),2),-3),1),-2)"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [-10, -5, 25]",
    "output": "generated_output : list = mul_n(sort_des(take(reverse(sort_asc([-5, 1, 2])),10)),-5)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      -10,
      -5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(reverse(sort_asc(input)),10)),-5)"
  },
  {
    "input": "input : list = [-3, -5, -4, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(take([-3, -5, -4, -4],1))),3),-5)",
    "io_inp": [
      -3,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(take(input,1))),3),-5)"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(sub_n(drop([3, -2, 0],1),5))",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,1),5))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-18, 10]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_asc([-3, 4]),-4),-1),1))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -18,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_asc(input),-4),-1),1))"
  },
  {
    "input": "input : list = [-1, 2, 1, 5, -1]\noutput : list = [2]",
    "output": "generated_output : list = add_n(take([-1, 2, 1, 5, -1],1),3)",
    "io_inp": [
      -1,
      2,
      1,
      5,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),3)"
  },
  {
    "input": "input : list = [1, 0, -1, 3, 1, -1]\noutput : list = [20, 10, 0]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(drop([1, 0, -1, 3, 1, -1],3),5),4)),-1)",
    "io_inp": [
      1,
      0,
      -1,
      3,
      1,
      -1
    ],
    "io_out": [
      20,
      10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(drop(input,3),5),4)),-1)"
  },
  {
    "input": "input : list = [-4, 4, 2, 5, -2]\noutput : list = [-21, -18, -12, 0, 6]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sort_asc([-4, 4, 2, 5, -2]),19)),-2),-3)",
    "io_inp": [
      -4,
      4,
      2,
      5,
      -2
    ],
    "io_out": [
      -21,
      -18,
      -12,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sort_asc(input),19)),-2),-3)"
  },
  {
    "input": "input : list = [5, 3, -5, 4, -4, 4]\noutput : list = [100, 80, 80, 60, -80, -100]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([5, 3, -5, 4, -4, 4]),4),5)",
    "io_inp": [
      5,
      3,
      -5,
      4,
      -4,
      4
    ],
    "io_out": [
      100,
      80,
      80,
      60,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),4),5)"
  },
  {
    "input": "input : list = [2, -4, 3]\noutput : list = [6, -8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(drop([2, -4, 3],1)))),2)",
    "io_inp": [
      2,
      -4,
      3
    ],
    "io_out": [
      6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [-4, 5, -5, 3, -4, 2]\noutput : list = [-20, -25, -25, -55, -60, -70]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(reverse([-4, 5, -5, 3, -4, 2])),-5),4),-5)",
    "io_inp": [
      -4,
      5,
      -5,
      3,
      -4,
      2
    ],
    "io_out": [
      -20,
      -25,
      -25,
      -55,
      -60,
      -70
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(reverse(input)),-5),4),-5)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse([-1, -3, -5]))),24)",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(input))),24)"
  },
  {
    "input": "input : list = [-2, -4, -2, 0]\noutput : list = [-3]",
    "output": "generated_output : list = drop(reverse(add_n(mul_n(add_n([-2, -4, -2, 0],2),2),-3)),3)",
    "io_inp": [
      -2,
      -4,
      -2,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(mul_n(add_n(input,2),2),-3)),3)"
  },
  {
    "input": "input : list = [-5, -3, -5, -4]\noutput : list = [10, 6, 10, 8]",
    "output": "generated_output : list = mul_n([-5, -3, -5, -4],-2)",
    "io_inp": [
      -5,
      -3,
      -5,
      -4
    ],
    "io_out": [
      10,
      6,
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [13, 5, -15]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_asc([0, 5, -2])),-4)),-5)",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      13,
      5,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_asc(input)),-4)),-5)"
  },
  {
    "input": "input : list = [-1, -5, 3, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(add_n(take(take(take([-1, -5, 3, 3],1),19),21),-3))",
    "io_inp": [
      -1,
      -5,
      3,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(take(input,1),19),21),-3))"
  },
  {
    "input": "input : list = [-2, -5, 0, -5, 3, -1]\noutput : list = [8, 5, 4, 3, 0, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-2, -5, 0, -5, 3, -1]),-4),1)",
    "io_inp": [
      -2,
      -5,
      0,
      -5,
      3,
      -1
    ],
    "io_out": [
      8,
      5,
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),-4),1)"
  },
  {
    "input": "input : list = [1, -5, -1, 2, -4, 3]\noutput : list = [-5, -4, -1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([1, -5, -1, 2, -4, 3]))",
    "io_inp": [
      1,
      -5,
      -1,
      2,
      -4,
      3
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, -1, -5]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take([1, -1, -5],1)),4))",
    "io_inp": [
      1,
      -1,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(input,1)),4))"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [8]",
    "output": "generated_output : list = take(mul_n(take([-4, 1, -1],1),-2),5)",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,1),-2),5)"
  },
  {
    "input": "input : list = [-3, 1, 2, 5]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sort_asc(add_n(take([-3, 1, 2, 5],2),-3))",
    "io_inp": [
      -3,
      1,
      2,
      5
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,2),-3))"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [-8, -5, -2]",
    "output": "generated_output : list = add_n(sort_asc([0, 3, -3]),-5)",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [5, 5, 4, 5, 4, 1]\noutput : list = [7, 7, 7, 6, 6, 3]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_des([5, 5, 4, 5, 4, 1]),1)),4),-2)",
    "io_inp": [
      5,
      5,
      4,
      5,
      4,
      1
    ],
    "io_out": [
      7,
      7,
      7,
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_des(input),1)),4),-2)"
  },
  {
    "input": "input : list = [-3, 0, -3, -1, -5]\noutput : list = [-5, -3, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(reverse([-3, 0, -3, -1, -5]))",
    "io_inp": [
      -3,
      0,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-5, 5, -5, 3]\noutput : list = [-20, 0, 80]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(drop([-5, 5, -5, 3],1),3)),2),-5)",
    "io_inp": [
      -5,
      5,
      -5,
      3
    ],
    "io_out": [
      -20,
      0,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(drop(input,1),3)),2),-5)"
  },
  {
    "input": "input : list = [-1, -3, -4, -1]\noutput : list = [-3, -3, -5, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([-1, -3, -4, -1]),-2),4)",
    "io_inp": [
      -1,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-2),4)"
  },
  {
    "input": "input : list = [0, -5, 0, 4]\noutput : list = [-1, -5, -5, -10]",
    "output": "generated_output : list = add_n(sort_des([0, -5, 0, 4]),-5)",
    "io_inp": [
      0,
      -5,
      0,
      4
    ],
    "io_out": [
      -1,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [1, -1, -3, 0, 3]\noutput : list = [1, 3, 4, 5, 7]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_des([1, -1, -3, 0, 3]),4))))",
    "io_inp": [
      1,
      -1,
      -3,
      0,
      3
    ],
    "io_out": [
      1,
      3,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-2, 0, 5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_asc(take(take([-2, 0, 5],1),11)),2)",
    "io_inp": [
      -2,
      0,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(input,1),11)),2)"
  },
  {
    "input": "input : list = [3, 0, 4, -1, 5, 1]\noutput : list = [5, 4, 3, 1, 0, -1]",
    "output": "generated_output : list = sort_des(reverse([3, 0, 4, -1, 5, 1]))",
    "io_inp": [
      3,
      0,
      4,
      -1,
      5,
      1
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, 4, -3, 4, 3]\noutput : list = [-8, -2, -2, -1, -1]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(sub_n([3, 4, -3, 4, 3],5)),12)),22)",
    "io_inp": [
      3,
      4,
      -3,
      4,
      3
    ],
    "io_out": [
      -8,
      -2,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(sub_n(input,5)),12)),22)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(sort_des([1, -5]),14),2),-2))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(sort_des(input),14),2),-2))"
  },
  {
    "input": "input : list = [-4, -2, 0, -3]\noutput : list = [-48, -36, -24, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sort_asc([-4, -2, 0, -3]),-3))),-4)",
    "io_inp": [
      -4,
      -2,
      0,
      -3
    ],
    "io_out": [
      -48,
      -36,
      -24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sort_asc(input),-3))),-4)"
  },
  {
    "input": "input : list = [0, 0, -4, -2, 0, 5]\noutput : list = [-5, -3, -1, -1, -1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sub_n([0, 0, -4, -2, 0, 5],-1))),2))",
    "io_inp": [
      0,
      0,
      -4,
      -2,
      0,
      5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sub_n(input,-1))),2))"
  },
  {
    "input": "input : list = [-3, 0, 1, 1, 0]\noutput : list = [1, 4, 5, 5, 4]",
    "output": "generated_output : list = sub_n([-3, 0, 1, 1, 0],-4)",
    "io_inp": [
      -3,
      0,
      1,
      1,
      0
    ],
    "io_out": [
      1,
      4,
      5,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [-3, 4, -5]",
    "output": "generated_output : list = add_n([-2, 5, -4],-1)",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      -3,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, -8]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(sub_n([0, -4],-4)),-3),5))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(sub_n(input,-4)),-3),5))"
  },
  {
    "input": "input : list = [5, 0, -2, 3, -5]\noutput : list = [-15, 0, 6]",
    "output": "generated_output : list = mul_n(take([5, 0, -2, 3, -5],3),-3)",
    "io_inp": [
      5,
      0,
      -2,
      3,
      -5
    ],
    "io_out": [
      -15,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [0, -1, 3, 1, -5, 2]\noutput : list = [0, -7, -1, 1, -3, -2]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(sub_n([0, -1, 3, 1, -5, 2],2)),3),-1),-2)",
    "io_inp": [
      0,
      -1,
      3,
      1,
      -5,
      2
    ],
    "io_out": [
      0,
      -7,
      -1,
      1,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(sub_n(input,2)),3),-1),-2)"
  },
  {
    "input": "input : list = [-5, 3, -4, 1]\noutput : list = [4, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(take([-5, 3, -4, 1],2))),-1))",
    "io_inp": [
      -5,
      3,
      -4,
      1
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(take(input,2))),-1))"
  },
  {
    "input": "input : list = [1, 1, 5, 3]\noutput : list = [-9, -15]",
    "output": "generated_output : list = sort_des(mul_n(take(take(drop([1, 1, 5, 3],2),2),18),-3))",
    "io_inp": [
      1,
      1,
      5,
      3
    ],
    "io_out": [
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(drop(input,2),2),18),-3))"
  },
  {
    "input": "input : list = [-5, -2, -1, 5, -1]\noutput : list = [-7, -4]",
    "output": "generated_output : list = take(take(sort_asc(add_n(sort_des([-5, -2, -1, 5, -1]),-2)),2),42)",
    "io_inp": [
      -5,
      -2,
      -1,
      5,
      -1
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(sort_des(input),-2)),2),42)"
  },
  {
    "input": "input : list = [2, 0, 4, 2, -4]\noutput : list = [-12, -4, -20, -12, 12]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n([2, 0, 4, 2, -4],-4),-4)))",
    "io_inp": [
      2,
      0,
      4,
      2,
      -4
    ],
    "io_out": [
      -12,
      -4,
      -20,
      -12,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(input,-4),-4)))"
  },
  {
    "input": "input : list = [3, -1, -5, 5]\noutput : list = [9, 7, 3, -1]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(sort_des([3, -1, -5, 5]),4),22),3),5)",
    "io_inp": [
      3,
      -1,
      -5,
      5
    ],
    "io_out": [
      9,
      7,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(sort_des(input),4),22),3),5)"
  },
  {
    "input": "input : list = [1, -4, -5, 1, -5, 5]\noutput : list = [4, -1, -2, 4, -2, 8]",
    "output": "generated_output : list = take(sub_n([1, -4, -5, 1, -5, 5],-3),17)",
    "io_inp": [
      1,
      -4,
      -5,
      1,
      -5,
      5
    ],
    "io_out": [
      4,
      -1,
      -2,
      4,
      -2,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),17)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sub_n(take(sort_asc(drop([-5, 1, -3],1)),12),3)",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(drop(input,1)),12),3)"
  },
  {
    "input": "input : list = [5, -4, 0, 0]\noutput : list = [6, 1, 1, -3]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sort_asc([5, -4, 0, 0])),17)),1)",
    "io_inp": [
      5,
      -4,
      0,
      0
    ],
    "io_out": [
      6,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sort_asc(input)),17)),1)"
  },
  {
    "input": "input : list = [-4, -3, 3, 2, 4, 4]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(take(take(sub_n([-4, -3, 3, 2, 4, 4],-5),5),32),2)",
    "io_inp": [
      -4,
      -3,
      3,
      2,
      4,
      4
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(input,-5),5),32),2)"
  },
  {
    "input": "input : list = [-4, 4, -1, 1, -4]\noutput : list = [40, 28, 20, 8, 8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(sub_n([-4, 4, -1, 1, -4],1),5),2)),4)",
    "io_inp": [
      -4,
      4,
      -1,
      1,
      -4
    ],
    "io_out": [
      40,
      28,
      20,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(sub_n(input,1),5),2)),4)"
  },
  {
    "input": "input : list = [-3, -5, 3, -4, -2, 0]\noutput : list = [0, -2, -4, 3, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, 3, -4, -2, 0])",
    "io_inp": [
      -3,
      -5,
      3,
      -4,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      -4,
      3,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 5, -2, -3]\noutput : list = [1, -3, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(add_n([1, 5, -2, -3],-4),1))))",
    "io_inp": [
      1,
      5,
      -2,
      -3
    ],
    "io_out": [
      1,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(add_n(input,-4),1))))"
  },
  {
    "input": "input : list = [3, -4, -4, -5]\noutput : list = [-7, -6, -6, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(sort_des([3, -4, -4, -5]))),3),5)",
    "io_inp": [
      3,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(sort_des(input))),3),5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [8, -13]",
    "output": "generated_output : list = reverse(sub_n(add_n(reverse(mul_n([-5, 2],-3)),-2),5))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      8,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(reverse(mul_n(input,-3)),-2),5))"
  },
  {
    "input": "input : list = [-2, -1, 0, 0]\noutput : list = [-2, -1, 0, 0]",
    "output": "generated_output : list = sort_asc([-2, -1, 0, 0])",
    "io_inp": [
      -2,
      -1,
      0,
      0
    ],
    "io_out": [
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, -3, 5, -3]\noutput : list = [10, 8, 3, 2, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(sort_asc([-2, 3, -3, 5, -3]),5))))",
    "io_inp": [
      -2,
      3,
      -3,
      5,
      -3
    ],
    "io_out": [
      10,
      8,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [0, -1, -3, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse(take([0, -1, -3, 0],2))",
    "io_inp": [
      0,
      -1,
      -3,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-3, -3, -2, 1]\noutput : list = [8, 5, 4, 4]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(mul_n([-3, -3, -2, 1],1),2)),-3),2)",
    "io_inp": [
      -3,
      -3,
      -2,
      1
    ],
    "io_out": [
      8,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(mul_n(input,1),2)),-3),2)"
  },
  {
    "input": "input : list = [1, 3, 3, 5, 2, 3]\noutput : list = [6, 5, 8, 6, 6, 4]",
    "output": "generated_output : list = add_n(reverse([1, 3, 3, 5, 2, 3]),3)",
    "io_inp": [
      1,
      3,
      3,
      5,
      2,
      3
    ],
    "io_out": [
      6,
      5,
      8,
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -4, 4],1)",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 2, 0, -5, -1, 5]\noutput : list = [2, 0, -5, -1, 5]",
    "output": "generated_output : list = drop([5, 2, 0, -5, -1, 5],1)",
    "io_inp": [
      5,
      2,
      0,
      -5,
      -1,
      5
    ],
    "io_out": [
      2,
      0,
      -5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 2, 2, -5, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse(take(drop([-3, 2, 2, -5, -3, -3],4),11))",
    "io_inp": [
      -3,
      2,
      2,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,4),11))"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [-3, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des([3, 1, 5]),-4)))",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(input),-4)))"
  },
  {
    "input": "input : list = [1, -4, -3, 3]\noutput : list = [-2, -1, 3, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(reverse([1, -4, -3, 3]),2)),-4))",
    "io_inp": [
      1,
      -4,
      -3,
      3
    ],
    "io_out": [
      -2,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(reverse(input),2)),-4))"
  },
  {
    "input": "input : list = [3, 1, -2, 1, 4, -2]\noutput : list = [-28, -24, -16, -16, -4, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(reverse([3, 1, -2, 1, 4, -2])),-3),-4))",
    "io_inp": [
      3,
      1,
      -2,
      1,
      4,
      -2
    ],
    "io_out": [
      -28,
      -24,
      -16,
      -16,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(reverse(input)),-3),-4))"
  },
  {
    "input": "input : list = [-2, -5, 3, -5, -1, 4]\noutput : list = [-16, -34]",
    "output": "generated_output : list = sub_n(take(take(mul_n(mul_n([-2, -5, 3, -5, -1, 4],-3),-2),2),13),4)",
    "io_inp": [
      -2,
      -5,
      3,
      -5,
      -1,
      4
    ],
    "io_out": [
      -16,
      -34
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(mul_n(input,-3),-2),2),13),4)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(add_n([4, -5],2)))),12)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(add_n(input,2)))),12)"
  },
  {
    "input": "input : list = [3, -2, -4, 0, -2]\noutput : list = [-19, 6, 16]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(take([3, -2, -4, 0, -2],3),-1),-5),4),1)",
    "io_inp": [
      3,
      -2,
      -4,
      0,
      -2
    ],
    "io_out": [
      -19,
      6,
      16
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(take(input,3),-1),-5),4),1)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-11, 17]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([3, -4],4),5))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -11,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,4),5))"
  },
  {
    "input": "input : list = [3, 1, 3, 3]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n(take([3, 1, 3, 3],2),-1)",
    "io_inp": [
      3,
      1,
      3,
      3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [4, 3, 7]",
    "output": "generated_output : list = add_n([2, 1, 5],2)",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      4,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, -3, -2, -3, -2, 0]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(take([-4, -3, -2, -3, -2, 0],1),5))",
    "io_inp": [
      -4,
      -3,
      -2,
      -3,
      -2,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,1),5))"
  },
  {
    "input": "input : list = [-5, 4, -4, 4, -4, -4]\noutput : list = [4, 4, -4, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 4, -4, 4, -4, -4])",
    "io_inp": [
      -5,
      4,
      -4,
      4,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      -4,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-9, -9]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(add_n([0, 0],-2),3)),23),-3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(add_n(input,-2),3)),23),-3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(sort_des([-3, 2]),5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),5)"
  },
  {
    "input": "input : list = [1, 3, 1, 5]\noutput : list = [18, 20, 18, 22]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(sub_n([1, 3, 1, 5],-3),-4),5),38),-5)",
    "io_inp": [
      1,
      3,
      1,
      5
    ],
    "io_out": [
      18,
      20,
      18,
      22
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(sub_n(input,-3),-4),5),38),-5)"
  },
  {
    "input": "input : list = [5, 4, 3, -3, 0]\noutput : list = [0, 15, -15, -20, -25]",
    "output": "generated_output : list = mul_n(reverse([5, 4, 3, -3, 0]),-5)",
    "io_inp": [
      5,
      4,
      3,
      -3,
      0
    ],
    "io_out": [
      0,
      15,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [0, -2, -1, -1, 3, -1]\noutput : list = [15, 0, -5, -5, -5, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([0, -2, -1, -1, 3, -1])),5)",
    "io_inp": [
      0,
      -2,
      -1,
      -1,
      3,
      -1
    ],
    "io_out": [
      15,
      0,
      -5,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [-1, -15, -5]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(mul_n([-2, 5, 0],-2)),5)),7)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      -1,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(mul_n(input,-2)),5)),7)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [2, 4]",
    "output": "generated_output : list = add_n(sort_asc([1, 3]),1)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [5, 5, 1, 0, 4]\noutput : list = [-24, 0, 72, 96, 96]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(add_n([5, 5, 1, 0, 4],-1),-4),-2)),3)",
    "io_inp": [
      5,
      5,
      1,
      0,
      4
    ],
    "io_out": [
      -24,
      0,
      72,
      96,
      96
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(add_n(input,-1),-4),-2)),3)"
  },
  {
    "input": "input : list = [-3, -1, 1, -4, -1, -3]\noutput : list = [1, -1, -1, -3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-3, -1, 1, -4, -1, -3]))",
    "io_inp": [
      -3,
      -1,
      1,
      -4,
      -1,
      -3
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-8, -8, -4]",
    "output": "generated_output : list = mul_n([-4, -4, -2],2)",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, -4, -1, 0, 2, 4]\noutput : list = [3, 1, 0, -1, -2, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([1, -4, -1, 0, 2, 4]),1))",
    "io_inp": [
      1,
      -4,
      -1,
      0,
      2,
      4
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [-3, -5, -5, 1, 3]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(take([-3, -5, -5, 1, 3],3)),-5)))",
    "io_inp": [
      -3,
      -5,
      -5,
      1,
      3
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(take(input,3)),-5)))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [0, 1, 8]",
    "output": "generated_output : list = sub_n([-4, -3, 4],-4)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      0,
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [12, 16]",
    "output": "generated_output : list = take(mul_n([3, 4],4),3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      12,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),3)"
  },
  {
    "input": "input : list = [0, 1, -4, -2]\noutput : list = [40, 80, -20, 0]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(mul_n([0, 1, -4, -2],5),-4),15)),1)",
    "io_inp": [
      0,
      1,
      -4,
      -2
    ],
    "io_out": [
      40,
      80,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(mul_n(input,5),-4),15)),1)"
  },
  {
    "input": "input : list = [5, -2, 5, -4]\noutput : list = [-4, -2, 5, 5]",
    "output": "generated_output : list = take(sort_asc([5, -2, 5, -4]),13)",
    "io_inp": [
      5,
      -2,
      5,
      -4
    ],
    "io_out": [
      -4,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),13)"
  },
  {
    "input": "input : list = [0, 5, -1]\noutput : list = [9, 4, 3]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(sort_des([0, 5, -1]))),12),4)",
    "io_inp": [
      0,
      5,
      -1
    ],
    "io_out": [
      9,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(sort_des(input))),12),4)"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(add_n([-2, 0, 4],-3)),1)),2)",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(add_n(input,-3)),1)),2)"
  },
  {
    "input": "input : list = [3, 2, -2, 5, 5]\noutput : list = [-1, 1, 1]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(sort_des([3, 2, -2, 5, 5]),1),4),3))",
    "io_inp": [
      3,
      2,
      -2,
      5,
      5
    ],
    "io_out": [
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(sort_des(input),1),4),3))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-2, -9]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(reverse([-4, 3]),1),-4),3),4)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(reverse(input),1),-4),3),4)"
  },
  {
    "input": "input : list = [-4, 2, -3, -2, 3]\noutput : list = [-5, -4, -3, 1, 2]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sort_des([-4, 2, -3, -2, 3]),-3)),-1),3)",
    "io_inp": [
      -4,
      2,
      -3,
      -2,
      3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sort_des(input),-3)),-1),3)"
  },
  {
    "input": "input : list = [1, 3, 0, -3]\noutput : list = [15, 0]",
    "output": "generated_output : list = mul_n(take(reverse(take(drop([1, 3, 0, -3],2),3)),23),-5)",
    "io_inp": [
      1,
      3,
      0,
      -3
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(drop(input,2),3)),23),-5)"
  },
  {
    "input": "input : list = [-3, 4, -5, 4, -3]\noutput : list = [-5, -3, -3, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sub_n([-3, 4, -5, 4, -3],-2)))),2)",
    "io_inp": [
      -3,
      4,
      -5,
      4,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sub_n(input,-2)))),2)"
  },
  {
    "input": "input : list = [2, -4, 4, 0, -2]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = sort_asc(drop(drop([2, -4, 4, 0, -2],1),1))",
    "io_inp": [
      2,
      -4,
      4,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(drop(input,1),1))"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [-18, 22]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(drop([3, -5, 3],1),-5)),1),-2)",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      -18,
      22
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(drop(input,1),-5)),1),-2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-16, -10]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(sort_des([3, -3])),-4),5),-4)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -16,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(sort_des(input)),-4),5),-4)"
  },
  {
    "input": "input : list = [-2, 1, -1, 0, 5, -5]\noutput : list = [7, 3, 2, 1, 0, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(reverse([-2, 1, -1, 0, 5, -5])))),2)",
    "io_inp": [
      -2,
      1,
      -1,
      0,
      5,
      -5
    ],
    "io_out": [
      7,
      3,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(reverse(input)))),2)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [-8, -8, -6]",
    "output": "generated_output : list = add_n([-3, -3, -1],-5)",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 3, 3, 5, 4, -1]\noutput : list = [-10, -16, -16, -28, -22, 8]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(mul_n([2, 3, 3, 5, 4, -1],3),1),7),-2),-2)",
    "io_inp": [
      2,
      3,
      3,
      5,
      4,
      -1
    ],
    "io_out": [
      -10,
      -16,
      -16,
      -28,
      -22,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(mul_n(input,3),1),7),-2),-2)"
  },
  {
    "input": "input : list = [-4, 0, -1, 5, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take(sort_asc(take(drop(reverse([-4, 0, -1, 5, 1]),4),10)),11)",
    "io_inp": [
      -4,
      0,
      -1,
      5,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(drop(reverse(input),4),10)),11)"
  },
  {
    "input": "input : list = [5, 0, -4, 1, 3, -3]\noutput : list = [5, 0, -4, 1, 3, -3]",
    "output": "generated_output : list = reverse(reverse([5, 0, -4, 1, 3, -3]))",
    "io_inp": [
      5,
      0,
      -4,
      1,
      3,
      -3
    ],
    "io_out": [
      5,
      0,
      -4,
      1,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, 5, 0, -5]\noutput : list = [-22, -2, 14, 18]",
    "output": "generated_output : list = take(sort_asc(sort_asc(add_n(mul_n([-4, 5, 0, -5],-4),-2))),13)",
    "io_inp": [
      -4,
      5,
      0,
      -5
    ],
    "io_out": [
      -22,
      -2,
      14,
      18
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(add_n(mul_n(input,-4),-2))),13)"
  },
  {
    "input": "input : list = [-4, -1, 1]\noutput : list = [0, 3, 5]",
    "output": "generated_output : list = add_n([-4, -1, 1],4)",
    "io_inp": [
      -4,
      -1,
      1
    ],
    "io_out": [
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, 1, 5, 3]\noutput : list = [1, -1, 3, 1]",
    "output": "generated_output : list = add_n([3, 1, 5, 3],-2)",
    "io_inp": [
      3,
      1,
      5,
      3
    ],
    "io_out": [
      1,
      -1,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 2, 0, 2, -1]\noutput : list = [4, 7, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(drop([-1, 2, 0, 2, -1],2),-2)),1),-2)",
    "io_inp": [
      -1,
      2,
      0,
      2,
      -1
    ],
    "io_out": [
      4,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(drop(input,2),-2)),1),-2)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_asc([-2, 1])),-1),1))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(sort_asc(input)),-1),1))"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [-90, -117, -90]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(add_n([1, 2, 1],1),3),-4),3),-3)",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      -90,
      -117,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(add_n(input,1),3),-4),3),-3)"
  },
  {
    "input": "input : list = [-1, 1, 1, 4, -3, -2]\noutput : list = [4, 1, 1, -1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc([-1, 1, 1, 4, -3, -2]))",
    "io_inp": [
      -1,
      1,
      1,
      4,
      -3,
      -2
    ],
    "io_out": [
      4,
      1,
      1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -3, -2, 5, 1, 0]\noutput : list = [5, 1, 0, -1, -2, -3]",
    "output": "generated_output : list = take(take(take(sort_des(sort_des([-1, -3, -2, 5, 1, 0])),23),16),16)",
    "io_inp": [
      -1,
      -3,
      -2,
      5,
      1,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(take(sort_des(sort_des(input)),23),16),16)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(drop([-3, 0, -5],1),1)),2))",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(drop(input,1),1)),2))"
  },
  {
    "input": "input : list = [1, -3, -3, 3, 4]\noutput : list = [-28, -28, -12, -4, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sub_n([1, -3, -3, 3, 4],4),4))))",
    "io_inp": [
      1,
      -3,
      -3,
      3,
      4
    ],
    "io_out": [
      -28,
      -28,
      -12,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sub_n(input,4),4))))"
  },
  {
    "input": "input : list = [0, 1, -1, 1, 3]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(drop([0, 1, -1, 1, 3],2)),1),10))",
    "io_inp": [
      0,
      1,
      -1,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(drop(input,2)),1),10))"
  },
  {
    "input": "input : list = [3, -1, -4, 1, 1]\noutput : list = [-4, -1, 1, 1, 3]",
    "output": "generated_output : list = sort_asc([3, -1, -4, 1, 1])",
    "io_inp": [
      3,
      -1,
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      -1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, -1, -5]\noutput : list = [7, 1, 3, -1]",
    "output": "generated_output : list = add_n([3, -3, -1, -5],4)",
    "io_inp": [
      3,
      -3,
      -1,
      -5
    ],
    "io_out": [
      7,
      1,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [-9, -3, 9]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(add_n([-2, 0, 4],-5),-4))),3)",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      -9,
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(add_n(input,-5),-4))),3)"
  },
  {
    "input": "input : list = [2, 1, -1, 0, 3]\noutput : list = [-3, 0, 3, 6, 9]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(sort_des([2, 1, -1, 0, 3]))),14),3)",
    "io_inp": [
      2,
      1,
      -1,
      0,
      3
    ],
    "io_out": [
      -3,
      0,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(sort_des(input))),14),3)"
  },
  {
    "input": "input : list = [5, -4, 0, -1, 5]\noutput : list = [0, 4, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(take([5, -4, 0, -1, 5],3)),4)))",
    "io_inp": [
      5,
      -4,
      0,
      -1,
      5
    ],
    "io_out": [
      0,
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(take(input,3)),4)))"
  },
  {
    "input": "input : list = [5, 3, 2, -4]\noutput : list = [5, 3, 2, -4]",
    "output": "generated_output : list = take(sort_des([5, 3, 2, -4]),11)",
    "io_inp": [
      5,
      3,
      2,
      -4
    ],
    "io_out": [
      5,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),11)"
  },
  {
    "input": "input : list = [-4, 4, 2, -2, 5, -5]\noutput : list = [6, 4, 0, -8, -12, -14]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(mul_n([-4, 4, 2, -2, 5, -5],-2)),1),1),5)",
    "io_inp": [
      -4,
      4,
      2,
      -2,
      5,
      -5
    ],
    "io_out": [
      6,
      4,
      0,
      -8,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(mul_n(input,-2)),1),1),5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(add_n([0, 1],5),-5),-1),-2))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(add_n(input,5),-5),-1),-2))"
  },
  {
    "input": "input : list = [2, 0, -5, 4, 3, 1]\noutput : list = [-3, -1, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(drop([2, 0, -5, 4, 3, 1],3)))),4)",
    "io_inp": [
      2,
      0,
      -5,
      4,
      3,
      1
    ],
    "io_out": [
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(drop(input,3)))),4)"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [2, -3]",
    "output": "generated_output : list = sub_n(drop([-4, 5, 0],1),3)",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [-1, 2, 4, 0, 2, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(sort_asc(take([-1, 2, 4, 0, 2, 0],4)),1),25)",
    "io_inp": [
      -1,
      2,
      4,
      0,
      2,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(input,4)),1),25)"
  },
  {
    "input": "input : list = [-5, -1, -4, 0, 1]\noutput : list = [2, -6, -8]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(drop([-5, -1, -4, 0, 1],2)),3),-2))",
    "io_inp": [
      -5,
      -1,
      -4,
      0,
      1
    ],
    "io_out": [
      2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(drop(input,2)),3),-2))"
  },
  {
    "input": "input : list = [0, -5, 1, 0]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(take([0, -5, 1, 0],2)))),2)",
    "io_inp": [
      0,
      -5,
      1,
      0
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(take(input,2)))),2)"
  },
  {
    "input": "input : list = [1, 0, 2, 4, -4, -1]\noutput : list = [6, 3]",
    "output": "generated_output : list = add_n(reverse(drop(sub_n(add_n([1, 0, 2, 4, -4, -1],1),-2),4)),4)",
    "io_inp": [
      1,
      0,
      2,
      4,
      -4,
      -1
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(sub_n(add_n(input,1),-2),4)),4)"
  },
  {
    "input": "input : list = [-5, 2, 3]\noutput : list = [5, -2, -3]",
    "output": "generated_output : list = mul_n([-5, 2, 3],-1)",
    "io_inp": [
      -5,
      2,
      3
    ],
    "io_out": [
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, -5, 3, -3, -3, 0]\noutput : list = [-6, -4, -4, -1, 2]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(drop([1, -5, 3, -3, -3, 0],1)),-5),4))",
    "io_inp": [
      1,
      -5,
      3,
      -3,
      -3,
      0
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(drop(input,1)),-5),4))"
  },
  {
    "input": "input : list = [2, -3, -4]\noutput : list = [-8, 12, 16]",
    "output": "generated_output : list = mul_n([2, -3, -4],-4)",
    "io_inp": [
      2,
      -3,
      -4
    ],
    "io_out": [
      -8,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, 2]))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [25, 35, 50]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(add_n([-2, -5, 0],-1)),4),-5))",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      25,
      35,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(add_n(input,-1)),4),-5))"
  },
  {
    "input": "input : list = [1, -3, 2, -4]\noutput : list = [-2, -1, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n([1, -3, 2, -4],-2))",
    "io_inp": [
      1,
      -3,
      2,
      -4
    ],
    "io_out": [
      -2,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(mul_n([-2, -2],-1),16),1)),-3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(mul_n(input,-1),16),1)),-3)"
  },
  {
    "input": "input : list = [-1, 3, 0, 4, 4, 2]\noutput : list = [5, 0, -15]",
    "output": "generated_output : list = mul_n(sort_asc(take([-1, 3, 0, 4, 4, 2],3)),-5)",
    "io_inp": [
      -1,
      3,
      0,
      4,
      4,
      2
    ],
    "io_out": [
      5,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,3)),-5)"
  },
  {
    "input": "input : list = [-5, -1, 2, -3, 4]\noutput : list = [-1, 3, 6, 1, 8]",
    "output": "generated_output : list = sub_n(add_n([-5, -1, 2, -3, 4],5),1)",
    "io_inp": [
      -5,
      -1,
      2,
      -3,
      4
    ],
    "io_out": [
      -1,
      3,
      6,
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),1)"
  },
  {
    "input": "input : list = [5, -3, 4, 3]\noutput : list = [-3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -3, 4, 3])",
    "io_inp": [
      5,
      -3,
      4,
      3
    ],
    "io_out": [
      -3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4, 0, -3]\noutput : list = [-9, -8, -5, -1]",
    "output": "generated_output : list = sort_asc(add_n([4, -4, 0, -3],-5))",
    "io_inp": [
      4,
      -4,
      0,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [1, 5, 4]\noutput : list = [5, -4, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_des(add_n(mul_n([1, 5, 4],-3),4))),4)",
    "io_inp": [
      1,
      5,
      4
    ],
    "io_out": [
      5,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(add_n(mul_n(input,-3),4))),4)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des([1, 4])),1))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(input)),1))"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(add_n([-2, -3, 2],-5)))),-5)",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(add_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [2, 0, -2, 3, 4]\noutput : list = [0, -2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(take([2, 0, -2, 3, 4],2),4),-1)),1)",
    "io_inp": [
      2,
      0,
      -2,
      3,
      4
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(take(input,2),4),-1)),1)"
  },
  {
    "input": "input : list = [-1, -3, 3, 2]\noutput : list = [-13, -21, 3, -1]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n([-1, -3, 3, 2],-4),5),-1),4)",
    "io_inp": [
      -1,
      -3,
      3,
      2
    ],
    "io_out": [
      -13,
      -21,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(input,-4),5),-1),4)"
  },
  {
    "input": "input : list = [0, 2, -1, -4]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(sort_des(add_n(take([0, 2, -1, -4],1),-1)),5),20)",
    "io_inp": [
      0,
      2,
      -1,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(take(input,1),-1)),5),20)"
  },
  {
    "input": "input : list = [-1, -2, 3, -1, -2]\noutput : list = [1, 2, -3, 1, 2]",
    "output": "generated_output : list = take(take(add_n(mul_n(add_n([-1, -2, 3, -1, -2],2),-1),2),40),42)",
    "io_inp": [
      -1,
      -2,
      3,
      -1,
      -2
    ],
    "io_out": [
      1,
      2,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(add_n(input,2),-1),2),40),42)"
  },
  {
    "input": "input : list = [-4, -3, 1, -2, 1, -4]\noutput : list = [-1, -1, -4, -5, -6, -6]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(sort_asc([-4, -3, 1, -2, 1, -4]))),-2),8)",
    "io_inp": [
      -4,
      -3,
      1,
      -2,
      1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -4,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(sort_asc(input))),-2),8)"
  },
  {
    "input": "input : list = [-3, 1, 1, -3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(take(reverse([-3, 1, 1, -3, 3]),2))",
    "io_inp": [
      -3,
      1,
      1,
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),2))"
  },
  {
    "input": "input : list = [-5, -1, 1, 2, 2, -4]\noutput : list = [-7, -3, -1, 0, 0, -6]",
    "output": "generated_output : list = mul_n(add_n([-5, -1, 1, 2, 2, -4],-2),1)",
    "io_inp": [
      -5,
      -1,
      1,
      2,
      2,
      -4
    ],
    "io_out": [
      -7,
      -3,
      -1,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [8, 4]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(sort_des([-1, -2])),15)),-4)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(sort_des(input)),15)),-4)"
  },
  {
    "input": "input : list = [-5, 0, -3, -5]\noutput : list = [10, 6, 0, 10]",
    "output": "generated_output : list = reverse(mul_n([-5, 0, -3, -5],-2))",
    "io_inp": [
      -5,
      0,
      -3,
      -5
    ],
    "io_out": [
      10,
      6,
      0,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [0, -3, 1, 5]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sort_des(add_n(take(take(sub_n([0, -3, 1, 5],1),2),16),-5))",
    "io_inp": [
      0,
      -3,
      1,
      5
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(sub_n(input,1),2),16),-5))"
  },
  {
    "input": "input : list = [1, -3, -4]\noutput : list = [-1, -5, -6]",
    "output": "generated_output : list = reverse(sub_n(reverse([1, -3, -4]),2))",
    "io_inp": [
      1,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),2))"
  },
  {
    "input": "input : list = [-4, 2, 4, -2, 4]\noutput : list = [-16, 8, -16, -8, 16]",
    "output": "generated_output : list = reverse(mul_n([-4, 2, 4, -2, 4],-4))",
    "io_inp": [
      -4,
      2,
      4,
      -2,
      4
    ],
    "io_out": [
      -16,
      8,
      -16,
      -8,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [4, -3, 3, -3, -1, -1]\noutput : list = [4, 3, -1, -1, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sort_asc([4, -3, 3, -3, -1, -1])))))",
    "io_inp": [
      4,
      -3,
      3,
      -3,
      -1,
      -1
    ],
    "io_out": [
      4,
      3,
      -1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, -5, -3, 1, 1, -5]\noutput : list = [0, -6, -4, 0, 0, -6]",
    "output": "generated_output : list = sub_n([1, -5, -3, 1, 1, -5],1)",
    "io_inp": [
      1,
      -5,
      -3,
      1,
      1,
      -5
    ],
    "io_out": [
      0,
      -6,
      -4,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 0, -5, 1]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(take([4, 0, -5, 1],1),4)),1))",
    "io_inp": [
      4,
      0,
      -5,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(take(input,1),4)),1))"
  },
  {
    "input": "input : list = [4, 5, -4, 5, -1, -1]\noutput : list = [5, 5, 4, -1, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(reverse([4, 5, -4, 5, -1, -1])))))",
    "io_inp": [
      4,
      5,
      -4,
      5,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      4,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, -3, 3, -2, 0, -1]\noutput : list = [1, 1, 3, 5, 7, 13]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sub_n([-3, -3, 3, -2, 0, -1],-4),2))),-1)",
    "io_inp": [
      -3,
      -3,
      3,
      -2,
      0,
      -1
    ],
    "io_out": [
      1,
      1,
      3,
      5,
      7,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sub_n(input,-4),2))),-1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-10, 5]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc([0, -5])),3),-5)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(input)),3),-5)"
  },
  {
    "input": "input : list = [0, 3, -2, 4, 0, 2]\noutput : list = [1, -1, -1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(sub_n([0, 3, -2, 4, 0, 2],4),-1),34),-5))",
    "io_inp": [
      0,
      3,
      -2,
      4,
      0,
      2
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(sub_n(input,4),-1),34),-5))"
  },
  {
    "input": "input : list = [4, -3, 1, 0, 1, 4]\noutput : list = [-6, -6, 0, 0, 2, 8]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_des([4, -3, 1, 0, 1, 4]),1),-2),2))",
    "io_inp": [
      4,
      -3,
      1,
      0,
      1,
      4
    ],
    "io_out": [
      -6,
      -6,
      0,
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_des(input),1),-2),2))"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [24, 36, 24]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n([1, -1, 1],5),-3),8),2)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      24,
      36,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(input,5),-3),8),2)"
  },
  {
    "input": "input : list = [1, 2, -4, -1, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(add_n(take(mul_n(take([1, 2, -4, -1, -1, 0],1),4),3),-4),-5)",
    "io_inp": [
      1,
      2,
      -4,
      -1,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(mul_n(take(input,1),4),3),-4),-5)"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(mul_n(take([4, 2, 1],1),1))",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),1))"
  },
  {
    "input": "input : list = [0, -4, -3, -1, 0, -5]\noutput : list = [0]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_asc([0, -4, -3, -1, 0, -5]))),5),1)",
    "io_inp": [
      0,
      -4,
      -3,
      -1,
      0,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_asc(input))),5),1)"
  },
  {
    "input": "input : list = [3, 5, 2, -2]\noutput : list = [3, 5]",
    "output": "generated_output : list = take([3, 5, 2, -2],2)",
    "io_inp": [
      3,
      5,
      2,
      -2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 1, 0, 5, 1]\noutput : list = [9, 10, 10, 14, 14]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des([5, 1, 0, 5, 1]),-4)),5)",
    "io_inp": [
      5,
      1,
      0,
      5,
      1
    ],
    "io_out": [
      9,
      10,
      10,
      14,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(input),-4)),5)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(add_n([-4, -1],-4),2),21),5))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(add_n(input,-4),2),21),5))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [6, 12]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(mul_n([3, -3],1)),-5),-4),22)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(mul_n(input,1)),-5),-4),22)"
  },
  {
    "input": "input : list = [4, -3, -1, -2]\noutput : list = [-2, -1, -3, 4]",
    "output": "generated_output : list = reverse([4, -3, -1, -2])",
    "io_inp": [
      4,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [12, 6, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n([-5, -3, -1],-3),-4)),-3)",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      12,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(input,-3),-4)),-3)"
  },
  {
    "input": "input : list = [-4, 3, -1, 4, 5]\noutput : list = [-24, 18, -6, 24, 30]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(mul_n([-4, 3, -1, 4, 5],1),-2),-3),1),49)",
    "io_inp": [
      -4,
      3,
      -1,
      4,
      5
    ],
    "io_out": [
      -24,
      18,
      -6,
      24,
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(mul_n(input,1),-2),-3),1),49)"
  },
  {
    "input": "input : list = [-1, 1, 0, 1, -3, -1]\noutput : list = [-2, -2, -3, -4, -4, -6]",
    "output": "generated_output : list = sort_des(add_n([-1, 1, 0, 1, -3, -1],-3))",
    "io_inp": [
      -1,
      1,
      0,
      1,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [5, -5, 3, 4]\noutput : list = [5, -3, -5]",
    "output": "generated_output : list = sort_des(mul_n(reverse(drop(reverse([5, -5, 3, 4]),1)),-1))",
    "io_inp": [
      5,
      -5,
      3,
      4
    ],
    "io_out": [
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(drop(reverse(input),1)),-1))"
  },
  {
    "input": "input : list = [4, 5, -4, -4, -2, 2]\noutput : list = [1, 2, -7, -7, -5, -1]",
    "output": "generated_output : list = add_n([4, 5, -4, -4, -2, 2],-3)",
    "io_inp": [
      4,
      5,
      -4,
      -4,
      -2,
      2
    ],
    "io_out": [
      1,
      2,
      -7,
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-4, -16]",
    "output": "generated_output : list = mul_n([1, 4],-4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse([4, -3]))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [2, 3, 2, -2, 2]\noutput : list = [3, 2, 2, 2]",
    "output": "generated_output : list = sort_des(reverse(take(take(sort_des([2, 3, 2, -2, 2]),4),23)))",
    "io_inp": [
      2,
      3,
      2,
      -2,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sort_des(input),4),23)))"
  },
  {
    "input": "input : list = [-1, 2, 2, 2]\noutput : list = [-1, -1, -1, -4]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(sub_n([-1, 2, 2, 2],-2),1),29)),5)",
    "io_inp": [
      -1,
      2,
      2,
      2
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(sub_n(input,-2),1),29)),5)"
  },
  {
    "input": "input : list = [0, -2, 3, -5, 5]\noutput : list = [10, 6, 0, -4, -10]",
    "output": "generated_output : list = mul_n(sort_des([0, -2, 3, -5, 5]),2)",
    "io_inp": [
      0,
      -2,
      3,
      -5,
      5
    ],
    "io_out": [
      10,
      6,
      0,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-4, -4, -1, -3, -1, -5]\noutput : list = [10, 8, 8, 6, 2, 2]",
    "output": "generated_output : list = sort_des(mul_n([-4, -4, -1, -3, -1, -5],-2))",
    "io_inp": [
      -4,
      -4,
      -1,
      -3,
      -1,
      -5
    ],
    "io_out": [
      10,
      8,
      8,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [1, 1, 5, 2]\noutput : list = [10, 10, 11, 14]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n([1, 1, 5, 2],-4),5)))",
    "io_inp": [
      1,
      1,
      5,
      2
    ],
    "io_out": [
      10,
      10,
      11,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(input,-4),5)))"
  },
  {
    "input": "input : list = [-4, -3, 2, 4]\noutput : list = [-9, -8, -3, -1]",
    "output": "generated_output : list = sub_n([-4, -3, 2, 4],5)",
    "io_inp": [
      -4,
      -3,
      2,
      4
    ],
    "io_out": [
      -9,
      -8,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, -2, 1, 4, -2, 3]\noutput : list = [-4, -4, 2, 6, 8, 8]",
    "output": "generated_output : list = mul_n(sort_asc([4, -2, 1, 4, -2, 3]),2)",
    "io_inp": [
      4,
      -2,
      1,
      4,
      -2,
      3
    ],
    "io_out": [
      -4,
      -4,
      2,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(take(take(reverse(sub_n([2, -1],2)),19),25))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(sub_n(input,2)),19),25))"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [-85, -69, -21]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(mul_n([1, 4, 5],-4),4),5)))",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      -85,
      -69,
      -21
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(mul_n(input,-4),4),5)))"
  },
  {
    "input": "input : list = [2, -1, 5, 3, 2]\noutput : list = [1, -1, -2, -2, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(mul_n([2, -1, 5, 3, 2],1)))),4)",
    "io_inp": [
      2,
      -1,
      5,
      3,
      2
    ],
    "io_out": [
      1,
      -1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(mul_n(input,1)))),4)"
  },
  {
    "input": "input : list = [-1, 5, 3, 2]\noutput : list = [-4, -8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des([-1, 5, 3, 2]),2),3),4),2)",
    "io_inp": [
      -1,
      5,
      3,
      2
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des(input),2),3),4),2)"
  },
  {
    "input": "input : list = [0, -1, 0, -4]\noutput : list = [12, 0, 3]",
    "output": "generated_output : list = take(take(mul_n(reverse(drop([0, -1, 0, -4],1)),-3),33),7)",
    "io_inp": [
      0,
      -1,
      0,
      -4
    ],
    "io_out": [
      12,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(drop(input,1)),-3),33),7)"
  },
  {
    "input": "input : list = [5, -1, -2, -5, -1, 5]\noutput : list = [-17, -17, 7, 7, 11, 23]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_des([5, -1, -2, -5, -1, 5]),-4)),-3))",
    "io_inp": [
      5,
      -1,
      -2,
      -5,
      -1,
      5
    ],
    "io_out": [
      -17,
      -17,
      7,
      7,
      11,
      23
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_des(input),-4)),-3))"
  },
  {
    "input": "input : list = [-5, -2, -5, 0]\noutput : list = [8, -16]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(take([-5, -2, -5, 0],2)),3),4),2)",
    "io_inp": [
      -5,
      -2,
      -5,
      0
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(take(input,2)),3),4),2)"
  },
  {
    "input": "input : list = [5, 0, 0, 1, -2, 2]\noutput : list = [5, 0]",
    "output": "generated_output : list = take([5, 0, 0, 1, -2, 2],2)",
    "io_inp": [
      5,
      0,
      0,
      1,
      -2,
      2
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 4, 5, -3, -3]\noutput : list = [-21, -17, -17, 11, 11]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sort_asc([4, 4, 5, -3, -3]),-4))),-1)",
    "io_inp": [
      4,
      4,
      5,
      -3,
      -3
    ],
    "io_out": [
      -21,
      -17,
      -17,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sort_asc(input),-4))),-1)"
  },
  {
    "input": "input : list = [-3, 5, -5, -3, 1]\noutput : list = [15, -25, 25, 15, -5]",
    "output": "generated_output : list = mul_n(reverse(take(reverse([-3, 5, -5, -3, 1]),5)),-5)",
    "io_inp": [
      -3,
      5,
      -5,
      -3,
      1
    ],
    "io_out": [
      15,
      -25,
      25,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(input),5)),-5)"
  },
  {
    "input": "input : list = [2, -3, -1, -3, -1, 2]\noutput : list = [-5, -5, 1, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sub_n([2, -3, -1, -3, -1, 2],-3)),-2),-5))",
    "io_inp": [
      2,
      -3,
      -1,
      -3,
      -1,
      2
    ],
    "io_out": [
      -5,
      -5,
      1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sub_n(input,-3)),-2),-5))"
  },
  {
    "input": "input : list = [-2, 5, -2, -5, 0]\noutput : list = [-5, -2, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_des(drop([-2, 5, -2, -5, 0],1)))",
    "io_inp": [
      -2,
      5,
      -2,
      -5,
      0
    ],
    "io_out": [
      -5,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, -5, 4, -4]\noutput : list = [-6, 10, 10, 12]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n([-4, -5, 4, -4],-2),-2)))",
    "io_inp": [
      -4,
      -5,
      4,
      -4
    ],
    "io_out": [
      -6,
      10,
      10,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(input,-2),-2)))"
  },
  {
    "input": "input : list = [2, 0, -3, 1]\noutput : list = [1, 0, -1, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(reverse([2, 0, -3, 1]),6))),1)",
    "io_inp": [
      2,
      0,
      -3,
      1
    ],
    "io_out": [
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(reverse(input),6))),1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(mul_n([0, 5],2),2))),1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(mul_n(input,2),2))),1)"
  },
  {
    "input": "input : list = [2, -5, -5]\noutput : list = [-1, -8, -8]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sort_des([2, -5, -5]),18),-2),5),47)",
    "io_inp": [
      2,
      -5,
      -5
    ],
    "io_out": [
      -1,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sort_des(input),18),-2),5),47)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [8, 6]",
    "output": "generated_output : list = sub_n(sort_des([2, 4]),-4)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([0, 5])))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [4, 4, -5]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(reverse([5, 5, -4])),9)),1)",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(reverse(input)),9)),1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = mul_n([5, -3],-1)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, -2, 4, -4, -2]\noutput : list = [-5, -3, -3, 1, 3]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(add_n([2, -2, 4, -4, -2],-2))),1),48)",
    "io_inp": [
      2,
      -2,
      4,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(add_n(input,-2))),1),48)"
  },
  {
    "input": "input : list = [0, -5, 0, -3, -3]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(take([0, -5, 0, -3, -3],2)),10)),3)",
    "io_inp": [
      0,
      -5,
      0,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(take(input,2)),10)),3)"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [-5, -1, -1]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc([-1, -1, -5]),6)))",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(input),6)))"
  },
  {
    "input": "input : list = [1, -2, -4, -4, -1, 1]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_asc(drop(sort_asc(sort_asc([1, -2, -4, -4, -1, 1])),5)),1)",
    "io_inp": [
      1,
      -2,
      -4,
      -4,
      -1,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(sort_asc(sort_asc(input)),5)),1)"
  },
  {
    "input": "input : list = [-3, 5, 4, 0, 3, -3]\noutput : list = [7, 6, 5, 2, -1, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(sub_n([-3, 5, 4, 0, 3, -3],3)))),5)",
    "io_inp": [
      -3,
      5,
      4,
      0,
      3,
      -3
    ],
    "io_out": [
      7,
      6,
      5,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(sub_n(input,3)))),5)"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(sub_n([1, 1, -4],1),1))),5)",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(sub_n(input,1),1))),5)"
  },
  {
    "input": "input : list = [-4, -1, 5, -1, 3, 2]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(take([-4, -1, 5, -1, 3, 2],2),4),3),5))",
    "io_inp": [
      -4,
      -1,
      5,
      -1,
      3,
      2
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(take(input,2),4),3),5))"
  },
  {
    "input": "input : list = [2, 0, -2, 2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(drop([2, 0, -2, 2],2)),-4)),2)",
    "io_inp": [
      2,
      0,
      -2,
      2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(drop(input,2)),-4)),2)"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [3, 8, 11]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(reverse([-4, 1, 4]),-1),5),-3))",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      3,
      8,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(reverse(input),-1),5),-3))"
  },
  {
    "input": "input : list = [-2, 2, -4, 2, -3]\noutput : list = [12, -8]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(drop([-2, 2, -4, 2, -3],3))),-4),50)",
    "io_inp": [
      -2,
      2,
      -4,
      2,
      -3
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(drop(input,3))),-4),50)"
  },
  {
    "input": "input : list = [-1, 0, -2, 1, 1]\noutput : list = [-1, 0, 1, 2, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des([-1, 0, -2, 1, 1])),1)",
    "io_inp": [
      -1,
      0,
      -2,
      1,
      1
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [-9, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_des([4, 3, -1]),-4),2)),1)",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      -9,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(sort_des(input),-4),2)),1)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n([-2, 3, -1],-2),1)))",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(input,-2),1)))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n([2, 5],5)),2),5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(input,5)),2),5)"
  },
  {
    "input": "input : list = [-3, 4, -1, -1, -5, 2]\noutput : list = [-13, -11, -9, -9, -6, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n([-3, 4, -1, -1, -5, 2],-4))),4)",
    "io_inp": [
      -3,
      4,
      -1,
      -1,
      -5,
      2
    ],
    "io_out": [
      -13,
      -11,
      -9,
      -9,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(input,-4))),4)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-7, -7]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(mul_n([2, 2],-3),-1))))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(mul_n(input,-3),-1))))"
  },
  {
    "input": "input : list = [1, 4, -5, 4]\noutput : list = [11, 2]",
    "output": "generated_output : list = sub_n(take(take(reverse(add_n([1, 4, -5, 4],5)),2),14),-2)",
    "io_inp": [
      1,
      4,
      -5,
      4
    ],
    "io_out": [
      11,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(add_n(input,5)),2),14),-2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, 8]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sub_n([-5, -4],-5),4),3),4))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sub_n(input,-5),4),3),4))"
  },
  {
    "input": "input : list = [4, 4, 3, 5]\noutput : list = [-9, -9, -6, -12]",
    "output": "generated_output : list = take(mul_n(take(take(sub_n([4, 4, 3, 5],1),18),10),-3),45)",
    "io_inp": [
      4,
      4,
      3,
      5
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(sub_n(input,1),18),10),-3),45)"
  },
  {
    "input": "input : list = [3, -5, -3, 1, 5, 1]\noutput : list = [2, 6, 10, 6]",
    "output": "generated_output : list = drop(sub_n([3, -5, -3, 1, 5, 1],-5),2)",
    "io_inp": [
      3,
      -5,
      -3,
      1,
      5,
      1
    ],
    "io_out": [
      2,
      6,
      10,
      6
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [1, -1, -6]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(sub_n([-4, 3, 1],2))),14))",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(sub_n(input,2))),14))"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = sort_des([3, -5, -4])",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 2, 0, -5, 1, 5]\noutput : list = [-12]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(take([-2, 2, 0, -5, 1, 5],1),-4)),2))",
    "io_inp": [
      -2,
      2,
      0,
      -5,
      1,
      5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(take(input,1),-4)),2))"
  },
  {
    "input": "input : list = [-5, -1, -5, -5, -1]\noutput : list = [24, 24, 24, 8, 8]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(add_n([-5, -1, -5, -5, -1],-1)),2),-2),56)",
    "io_inp": [
      -5,
      -1,
      -5,
      -5,
      -1
    ],
    "io_out": [
      24,
      24,
      24,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(add_n(input,-1)),2),-2),56)"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [-5, -5, -6]",
    "output": "generated_output : list = add_n(sort_des([-1, -1, -2]),-4)",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-3, 0, -3, 2, 5, -3]\noutput : list = [17, 5, 17, -3, -15, 17]",
    "output": "generated_output : list = add_n(mul_n([-3, 0, -3, 2, 5, -3],-4),5)",
    "io_inp": [
      -3,
      0,
      -3,
      2,
      5,
      -3
    ],
    "io_out": [
      17,
      5,
      17,
      -3,
      -15,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),5)"
  },
  {
    "input": "input : list = [4, 4, 3, 3, -2]\noutput : list = [-2, 3, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc([4, 4, 3, 3, -2])),14)))",
    "io_inp": [
      4,
      4,
      3,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc(input)),14)))"
  },
  {
    "input": "input : list = [5, -4, -5]\noutput : list = [-32, -28, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc([5, -4, -5]),3)),4)",
    "io_inp": [
      5,
      -4,
      -5
    ],
    "io_out": [
      -32,
      -28,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(input),3)),4)"
  },
  {
    "input": "input : list = [1, -4, -2, 4, -3, 1]\noutput : list = [7, 2, 4, 10, 3, 7]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(add_n([1, -4, -2, 4, -3, 1],3),2),-4),-3),27)",
    "io_inp": [
      1,
      -4,
      -2,
      4,
      -3,
      1
    ],
    "io_out": [
      7,
      2,
      4,
      10,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(add_n(input,3),2),-4),-3),27)"
  },
  {
    "input": "input : list = [-2, 3, -3, -4]\noutput : list = [3, 4, 5, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_asc([-2, 3, -3, -4])),-2)),-5)",
    "io_inp": [
      -2,
      3,
      -3,
      -4
    ],
    "io_out": [
      3,
      4,
      5,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_asc(input)),-2)),-5)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(sub_n([3, -2],3)),17)))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(sub_n(input,3)),17)))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-15, -24]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(add_n([1, 4],4),-3))))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -15,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(add_n(input,4),-3))))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-6, -24]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(sub_n([-4, 5],-4),-3)),-2))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -6,
      -24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(sub_n(input,-4),-3)),-2))"
  },
  {
    "input": "input : list = [3, -2, -1, -5]\noutput : list = [4, 0]",
    "output": "generated_output : list = add_n(mul_n(drop([3, -2, -1, -5],2),1),5)",
    "io_inp": [
      3,
      -2,
      -1,
      -5
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,2),1),5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(add_n(mul_n([0, -1],4),-1))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,4),-1))"
  },
  {
    "input": "input : list = [2, -5, 2, -1]\noutput : list = [45, -18, 9]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(drop([2, -5, 2, -1],1),-1),3),3)",
    "io_inp": [
      2,
      -5,
      2,
      -1
    ],
    "io_out": [
      45,
      -18,
      9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(drop(input,1),-1),3),3)"
  },
  {
    "input": "input : list = [5, -3, -2, -3]\noutput : list = [-8, -7, -8, 0]",
    "output": "generated_output : list = sub_n(reverse([5, -3, -2, -3]),5)",
    "io_inp": [
      5,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-5, -4, -3, 1, 5]\noutput : list = [2, -2, -6, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(reverse([-5, -4, -3, 1, 5])))),-3)",
    "io_inp": [
      -5,
      -4,
      -3,
      1,
      5
    ],
    "io_out": [
      2,
      -2,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [4, -2, 2, -1]\noutput : list = [9, 7, 4, 3]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n([4, -2, 2, -1],-5)))))",
    "io_inp": [
      4,
      -2,
      2,
      -1
    ],
    "io_out": [
      9,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [3, 1, 2, -1]\noutput : list = [-1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(mul_n([3, 1, 2, -1],1),15))))",
    "io_inp": [
      3,
      1,
      2,
      -1
    ],
    "io_out": [
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(mul_n(input,1),15))))"
  },
  {
    "input": "input : list = [-4, 2, 2, -4, -5]\noutput : list = [-44, 28, 28, -44, -56]",
    "output": "generated_output : list = mul_n(add_n(take(mul_n(mul_n([-4, 2, 2, -4, -5],-4),3),22),-4),-1)",
    "io_inp": [
      -4,
      2,
      2,
      -4,
      -5
    ],
    "io_out": [
      -44,
      28,
      28,
      -44,
      -56
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(mul_n(mul_n(input,-4),3),22),-4),-1)"
  },
  {
    "input": "input : list = [2, 5, -4, -4, 1, -2]\noutput : list = [-8, -8, -6, -3, -2, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sub_n([2, 5, -4, -4, 1, -2],4)))),29)",
    "io_inp": [
      2,
      5,
      -4,
      -4,
      1,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sub_n(input,4)))),29)"
  },
  {
    "input": "input : list = [1, -5, -5]\noutput : list = [1, -5, -5]",
    "output": "generated_output : list = sort_des([1, -5, -5])",
    "io_inp": [
      1,
      -5,
      -5
    ],
    "io_out": [
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-6, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([3, -5],5),-4))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,5),-4))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [14, 9]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des([4, -1]),-5)),5)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      14,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(input),-5)),5)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-46, 14]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_asc([-4, 1]),3),4)),2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -46,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_asc(input),3),4)),2)"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [-1, -3, -3]",
    "output": "generated_output : list = mul_n([-1, -3, -3],1)",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [2, 2, 3, 0, -3, -1]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(drop([2, 2, 3, 0, -3, -1],3)),-1),-4))",
    "io_inp": [
      2,
      2,
      3,
      0,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(drop(input,3)),-1),-4))"
  },
  {
    "input": "input : list = [-5, 3, 5, 3]\noutput : list = [-9, -9, 23]",
    "output": "generated_output : list = drop(sort_asc(sub_n(mul_n(sort_asc([-5, 3, 5, 3]),-4),-3)),1)",
    "io_inp": [
      -5,
      3,
      5,
      3
    ],
    "io_out": [
      -9,
      -9,
      23
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sub_n(mul_n(sort_asc(input),-4),-3)),1)"
  },
  {
    "input": "input : list = [2, 3, 4, 4, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = take([2, 3, 4, 4, -2],2)",
    "io_inp": [
      2,
      3,
      4,
      4,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 2, -3, 3, 1, -1]\noutput : list = [1, 3, 5, 6, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc([4, 2, -3, 3, 1, -1]),4)",
    "io_inp": [
      4,
      2,
      -3,
      3,
      1,
      -1
    ],
    "io_out": [
      1,
      3,
      5,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [1, -2, 4, 0, -3]\noutput : list = [-3, -2, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([1, -2, 4, 0, -3])",
    "io_inp": [
      1,
      -2,
      4,
      0,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4, 5, 5, -3, 3]\noutput : list = [7, 1, 10, 10, 2, 8]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(sub_n([2, -4, 5, 5, -3, 3],-2),17),-5),5),-3)",
    "io_inp": [
      2,
      -4,
      5,
      5,
      -3,
      3
    ],
    "io_out": [
      7,
      1,
      10,
      10,
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(sub_n(input,-2),17),-5),5),-3)"
  },
  {
    "input": "input : list = [3, 4, 2, -5, 5, 5]\noutput : list = [-6, 1, 2, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n([3, 4, 2, -5, 5, 5],-1))",
    "io_inp": [
      3,
      4,
      2,
      -5,
      5,
      5
    ],
    "io_out": [
      -6,
      1,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-18, -12]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(add_n([-3, 3],-5),3),24),-4),3)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -18,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(add_n(input,-5),3),24),-4),3)"
  },
  {
    "input": "input : list = [1, -5, 5, -1]\noutput : list = [-20, -4, 4, 20]",
    "output": "generated_output : list = reverse(mul_n(sort_des([1, -5, 5, -1]),4))",
    "io_inp": [
      1,
      -5,
      5,
      -1
    ],
    "io_out": [
      -20,
      -4,
      4,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-2, 3, -5, 4, 2]\noutput : list = [-7, -4, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_asc([-2, 3, -5, 4, 2]),2),-5),-1))",
    "io_inp": [
      -2,
      3,
      -5,
      4,
      2
    ],
    "io_out": [
      -7,
      -4,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(sort_asc(input),2),-5),-1))"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [8, 2]",
    "output": "generated_output : list = take(sub_n(reverse(take(drop([3, -1, 5],1),11)),-3),42)",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(drop(input,1),11)),-3),42)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [10, 15]",
    "output": "generated_output : list = mul_n([2, 3],5)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_des([2, -1])))))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 4, 1, -2, 1]\noutput : list = [-4, -4, -1, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(sort_des([-2, 4, 1, -2, 1]),1))),-3)",
    "io_inp": [
      -2,
      4,
      1,
      -2,
      1
    ],
    "io_out": [
      -4,
      -4,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(sort_des(input),1))),-3)"
  },
  {
    "input": "input : list = [3, -3, -5, -3, 0]\noutput : list = [-5, -3, -3, 0, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_asc([3, -3, -5, -3, 0]),-5))),-5)",
    "io_inp": [
      3,
      -3,
      -5,
      -3,
      0
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_asc(input),-5))),-5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [15, -9]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(sort_asc([-3, 5]))),3),3)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(sort_asc(input))),3),3)"
  },
  {
    "input": "input : list = [2, -2, 1, 0]\noutput : list = [-2, 0, 1, 2]",
    "output": "generated_output : list = take(sort_asc([2, -2, 1, 0]),5)",
    "io_inp": [
      2,
      -2,
      1,
      0
    ],
    "io_out": [
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(add_n([-1, -5],-2)))))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-2, -4, 0, 4, 4]\noutput : list = [-4, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(drop([-2, -4, 0, 4, 4],1)),23))",
    "io_inp": [
      -2,
      -4,
      0,
      4,
      4
    ],
    "io_out": [
      -4,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(drop(input,1)),23))"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [-2, -1, 6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(add_n([-3, 4, -4],5),14),4),1))",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      -2,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(add_n(input,5),14),4),1))"
  },
  {
    "input": "input : list = [0, 3, -3, -3, -3, -2]\noutput : list = [9, 9, 9, 6, 0, -9]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(sort_asc([0, 3, -3, -3, -3, -2])),10),-3))",
    "io_inp": [
      0,
      3,
      -3,
      -3,
      -3,
      -2
    ],
    "io_out": [
      9,
      9,
      9,
      6,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(sort_asc(input)),10),-3))"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [1, 4, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc([1, -2, 3]),-1)),4))",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc(input),-1)),4))"
  },
  {
    "input": "input : list = [-1, -4, 1, -5]\noutput : list = [-8, -4, 8, 16]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse([-1, -4, 1, -5])),3)),4)",
    "io_inp": [
      -1,
      -4,
      1,
      -5
    ],
    "io_out": [
      -8,
      -4,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse(input)),3)),4)"
  },
  {
    "input": "input : list = [3, 1, -5, 3]\noutput : list = [8, 8, 6, 0]",
    "output": "generated_output : list = sort_des(sub_n([3, 1, -5, 3],-5))",
    "io_inp": [
      3,
      1,
      -5,
      3
    ],
    "io_out": [
      8,
      8,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-4, 5, 2, 1, -4]\noutput : list = [96, 36, 24, -12, 96]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(add_n([-4, 5, 2, 1, -4],-3)),4),4),-3)",
    "io_inp": [
      -4,
      5,
      2,
      1,
      -4
    ],
    "io_out": [
      96,
      36,
      24,
      -12,
      96
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(add_n(input,-3)),4),4),-3)"
  },
  {
    "input": "input : list = [2, 4, 1, 3, -1]\noutput : list = [0, -1, -2, -3, -5]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(reverse([2, 4, 1, 3, -1]))),-4),37)",
    "io_inp": [
      2,
      4,
      1,
      3,
      -1
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(reverse(input))),-4),37)"
  },
  {
    "input": "input : list = [-3, -5, 0, -5, 0]\noutput : list = [9, 15, 0, 15, 0]",
    "output": "generated_output : list = mul_n([-3, -5, 0, -5, 0],-3)",
    "io_inp": [
      -3,
      -5,
      0,
      -5,
      0
    ],
    "io_out": [
      9,
      15,
      0,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 1, -4, 4]\noutput : list = [-2, 0, -5, 3]",
    "output": "generated_output : list = sub_n([-1, 1, -4, 4],1)",
    "io_inp": [
      -1,
      1,
      -4,
      4
    ],
    "io_out": [
      -2,
      0,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [-15, -13, -8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(sort_des([-2, 5, 0]),-5)),-3),5)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      -15,
      -13,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(sort_des(input),-5)),-3),5)"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [3, 2, -3]",
    "output": "generated_output : list = sort_des(add_n([-5, 0, 1],2))",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [2, -5, 4, -5, -5]\noutput : list = [-5, -5, 4, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 4, -5, -5])",
    "io_inp": [
      2,
      -5,
      4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, 4, 2, -5]\noutput : list = [-25, 3, 11, -25, -21]",
    "output": "generated_output : list = reverse(reverse(reverse(add_n(mul_n([-4, -5, 4, 2, -5],4),-5))))",
    "io_inp": [
      -4,
      -5,
      4,
      2,
      -5
    ],
    "io_out": [
      -25,
      3,
      11,
      -25,
      -21
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(add_n(mul_n(input,4),-5))))"
  },
  {
    "input": "input : list = [-5, -2, -5, 1, -5]\noutput : list = [1, -2, -5, -5, -5]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(reverse([-5, -2, -5, 1, -5])))),31)",
    "io_inp": [
      -5,
      -2,
      -5,
      1,
      -5
    ],
    "io_out": [
      1,
      -2,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(reverse(input)))),31)"
  },
  {
    "input": "input : list = [-5, -1, -4, -2, 0, -3]\noutput : list = [-1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n(drop([-5, -1, -4, -2, 0, -3],2),3))",
    "io_inp": [
      -5,
      -1,
      -4,
      -2,
      0,
      -3
    ],
    "io_out": [
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,2),3))"
  },
  {
    "input": "input : list = [-4, 0, 3, 0, -4]\noutput : list = [-7, -3, 0]",
    "output": "generated_output : list = take(add_n(add_n([-4, 0, 3, 0, -4],-4),1),3)",
    "io_inp": [
      -4,
      0,
      3,
      0,
      -4
    ],
    "io_out": [
      -7,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,-4),1),3)"
  },
  {
    "input": "input : list = [3, 1, -2, 1, -5, -5]\noutput : list = [-6, 2, 2, 14, 26, 26]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sub_n([3, 1, -2, 1, -5, -5],2),-4),2)))",
    "io_inp": [
      3,
      1,
      -2,
      1,
      -5,
      -5
    ],
    "io_out": [
      -6,
      2,
      2,
      14,
      26,
      26
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sub_n(input,2),-4),2)))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 0, -5, -5, -3]\noutput : list = [0, -1, -1, -3, -5, -5]",
    "output": "generated_output : list = sort_des([-1, -1, 0, -5, -5, -3])",
    "io_inp": [
      -1,
      -1,
      0,
      -5,
      -5,
      -3
    ],
    "io_out": [
      0,
      -1,
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, -4, -1]\noutput : list = [2, 5, 1, 4]",
    "output": "generated_output : list = add_n([-3, 0, -4, -1],5)",
    "io_inp": [
      -3,
      0,
      -4,
      -1
    ],
    "io_out": [
      2,
      5,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-30, -30]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n([-3, -3],2)),5),25)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -30,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(input,2)),5),25)"
  },
  {
    "input": "input : list = [-5, 2, -4, 0, -2]\noutput : list = [-2, -4, -6, -8, -9]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(sort_asc([-5, 2, -4, 0, -2]),5)),43),-1)",
    "io_inp": [
      -5,
      2,
      -4,
      0,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(sort_asc(input),5)),43),-1)"
  },
  {
    "input": "input : list = [-2, -5, 5, -2, 1, 3]\noutput : list = [-11, -8, -8, -5, -3, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(sub_n([-2, -5, 5, -2, 1, 3],-5)),-3),-4),-4)",
    "io_inp": [
      -2,
      -5,
      5,
      -2,
      1,
      3
    ],
    "io_out": [
      -11,
      -8,
      -8,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(sub_n(input,-5)),-3),-4),-4)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [9, 7, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(reverse([-4, 4, 2]),16)),2),-3)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      9,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(reverse(input),16)),2),-3)"
  },
  {
    "input": "input : list = [5, -5, -1, -3, -1]\noutput : list = [-16, 24]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(take([5, -5, -1, -3, -1],2),-1)),-4))",
    "io_inp": [
      5,
      -5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -16,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(take(input,2),-1)),-4))"
  },
  {
    "input": "input : list = [-2, 5, 2, 2]\noutput : list = [-4, 3, 0, 0]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(add_n([-2, 5, 2, 2],-4)),-2),30))",
    "io_inp": [
      -2,
      5,
      2,
      2
    ],
    "io_out": [
      -4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(add_n(input,-4)),-2),30))"
  },
  {
    "input": "input : list = [-5, 4, 3]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = take(sort_des(take(take(reverse([-5, 4, 3]),15),9)),41)",
    "io_inp": [
      -5,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(reverse(input),15),9)),41)"
  },
  {
    "input": "input : list = [2, 4, -2, 4]\noutput : list = [3, 7, 9, 9]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(sort_des([2, 4, -2, 4]),-5)),1))",
    "io_inp": [
      2,
      4,
      -2,
      4
    ],
    "io_out": [
      3,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(sort_des(input),-5)),1))"
  },
  {
    "input": "input : list = [-2, 5, 4, 3, -4]\noutput : list = [0, 2, 7, 8, 9]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(sort_des([-2, 5, 4, 3, -4])),-4)),44)",
    "io_inp": [
      -2,
      5,
      4,
      3,
      -4
    ],
    "io_out": [
      0,
      2,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(sort_des(input)),-4)),44)"
  },
  {
    "input": "input : list = [-5, 4, 4, -5]\noutput : list = [12, 12, 3, 3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sub_n([-5, 4, 4, -5],-5),3))))",
    "io_inp": [
      -5,
      4,
      4,
      -5
    ],
    "io_out": [
      12,
      12,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sub_n(input,-5),3))))"
  },
  {
    "input": "input : list = [1, 3, -5]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = sort_des([1, 3, -5])",
    "io_inp": [
      1,
      3,
      -5
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -5, -4, -5]\noutput : list = [-12, -12, -11, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(reverse([4, -5, -4, -5])),4),3))",
    "io_inp": [
      4,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -12,
      -12,
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(reverse(input)),4),3))"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [-4, -5, -7]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_des([-1, 0, -3]))),-1),-5)",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_des(input))),-1),-5)"
  },
  {
    "input": "input : list = [-1, -2, 5, 5, 4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(reverse([-1, -2, 5, 5, 4])),2),-2))",
    "io_inp": [
      -1,
      -2,
      5,
      5,
      4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(reverse(input)),2),-2))"
  },
  {
    "input": "input : list = [-4, 2, 5, -5, -2, 5]\noutput : list = [8, -16]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(take([-4, 2, 5, -5, -2, 5],2)),4)))",
    "io_inp": [
      -4,
      2,
      5,
      -5,
      -2,
      5
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(take(input,2)),4)))"
  },
  {
    "input": "input : list = [3, -3, -2, -4, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(drop(drop([3, -3, -2, -4, -3],1),3),-2)",
    "io_inp": [
      3,
      -3,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(drop(input,1),3),-2)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [-2, -3, -9]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(reverse([-2, 4, 5]),-2)),-5))",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      -2,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(reverse(input),-2)),-5))"
  },
  {
    "input": "input : list = [-1, 2, 0, -1, -2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(drop(sort_des(sub_n(sub_n([-1, 2, 0, -1, -2],-2),-1)),3))",
    "io_inp": [
      -1,
      2,
      0,
      -1,
      -2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_des(sub_n(sub_n(input,-2),-1)),3))"
  },
  {
    "input": "input : list = [1, 0, 1, -1, 1, -1]\noutput : list = [-2, -3, -2, -4, -2, -4]",
    "output": "generated_output : list = sub_n([1, 0, 1, -1, 1, -1],3)",
    "io_inp": [
      1,
      0,
      1,
      -1,
      1,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -2,
      -4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, -1, 0, 1, 3, -5]\noutput : list = [-5, -4, -3, -1, -9]",
    "output": "generated_output : list = add_n(sub_n(drop([0, -1, 0, 1, 3, -5],1),2),-2)",
    "io_inp": [
      0,
      -1,
      0,
      1,
      3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),2),-2)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-6, -10, -11]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(sub_n([-2, -3, 2],4)),-4)))",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -6,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(sub_n(input,4)),-4)))"
  },
  {
    "input": "input : list = [5, -3, 3, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc(take([5, -3, 3, -3],2))",
    "io_inp": [
      5,
      -3,
      3,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [2, 5, -1, -1, -1]\noutput : list = [-10, -10]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(drop([2, 5, -1, -1, -1],3)),4),2))",
    "io_inp": [
      2,
      5,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(drop(input,3)),4),2))"
  },
  {
    "input": "input : list = [2, -1, -5, 5, 0]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(drop([2, -1, -5, 5, 0],3),-4)",
    "io_inp": [
      2,
      -1,
      -5,
      5,
      0
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-4)"
  },
  {
    "input": "input : list = [-4, -1, -3, 1]\noutput : list = [-4, -3, -1, 1]",
    "output": "generated_output : list = sort_asc([-4, -1, -3, 1])",
    "io_inp": [
      -4,
      -1,
      -3,
      1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [7, 2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(sub_n([-4, 1],-5),2)),1))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(sub_n(input,-5),2)),1))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-9, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(sort_des([1, -5]),4))),4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(sort_des(input),4))),4)"
  },
  {
    "input": "input : list = [-4, -4, -4, 3, 0]\noutput : list = [-4, -4, -4, 0, 3]",
    "output": "generated_output : list = sort_asc([-4, -4, -4, 3, 0])",
    "io_inp": [
      -4,
      -4,
      -4,
      3,
      0
    ],
    "io_out": [
      -4,
      -4,
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-17, 3]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(add_n([5, 1],-1),1),-5),-3),22)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -17,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(add_n(input,-1),1),-5),-3),22)"
  },
  {
    "input": "input : list = [2, 4, 0, -3, 2]\noutput : list = [0, -6, 6, 15, 0]",
    "output": "generated_output : list = sub_n(add_n(take(take(mul_n([2, 4, 0, -3, 2],-3),16),24),3),-3)",
    "io_inp": [
      2,
      4,
      0,
      -3,
      2
    ],
    "io_out": [
      0,
      -6,
      6,
      15,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(mul_n(input,-3),16),24),3),-3)"
  },
  {
    "input": "input : list = [5, -1, -2, 2]\noutput : list = [-19, -10, -1, 2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(reverse([5, -1, -2, 2]),-3),2),-2))",
    "io_inp": [
      5,
      -1,
      -2,
      2
    ],
    "io_out": [
      -19,
      -10,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(reverse(input),-3),2),-2))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [5, -2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(sub_n([4, -3],-4),9),1),2),1)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(sub_n(input,-4),9),1),2),1)"
  },
  {
    "input": "input : list = [4, -5, -1, -2, -4, 5]\noutput : list = [-1, -10, -6, -7, -9, 0]",
    "output": "generated_output : list = add_n([4, -5, -1, -2, -4, 5],-5)",
    "io_inp": [
      4,
      -5,
      -1,
      -2,
      -4,
      5
    ],
    "io_out": [
      -1,
      -10,
      -6,
      -7,
      -9,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sub_n([-4, -3],1)))))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [4, 3, 4]\noutput : list = [8, 9, 9]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(sort_des([4, 3, 4]),-1),4),33))",
    "io_inp": [
      4,
      3,
      4
    ],
    "io_out": [
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(sort_des(input),-1),4),33))"
  },
  {
    "input": "input : list = [0, -4, 5, -3, 2, -3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(reverse(take([0, -4, 5, -3, 2, -3],1)))",
    "io_inp": [
      0,
      -4,
      5,
      -3,
      2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take([-5, -3, 4],1))),-5)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(input,1))),-5)"
  },
  {
    "input": "input : list = [5, -4, -4, -3]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(drop([5, -4, -4, -3],2),3)",
    "io_inp": [
      5,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [-5, 3, 0, -4, -4]\noutput : list = [-6, -5, -5, -1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(reverse([-5, 3, 0, -4, -4])),14),1))",
    "io_inp": [
      -5,
      3,
      0,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(reverse(input)),14),1))"
  },
  {
    "input": "input : list = [3, -4, -3, 2, 0]\noutput : list = [2, 1, -1, -4, -5]",
    "output": "generated_output : list = sort_des(sub_n(take(take(add_n([3, -4, -3, 2, 0],-5),8),9),-4))",
    "io_inp": [
      3,
      -4,
      -3,
      2,
      0
    ],
    "io_out": [
      2,
      1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(add_n(input,-5),8),9),-4))"
  },
  {
    "input": "input : list = [4, -5, -1, -3, 1]\noutput : list = [0, 2, 4, 6, 9]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([4, -5, -1, -3, 1])),-5)",
    "io_inp": [
      4,
      -5,
      -1,
      -3,
      1
    ],
    "io_out": [
      0,
      2,
      4,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),-5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(sort_des([2, -2]),3)),-3),-1)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(sort_des(input),3)),-3),-1)"
  },
  {
    "input": "input : list = [1, -5, -2, -1]\noutput : list = [0, -8, -12, -24]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(sort_des([1, -5, -2, -1]),-5),4),4))",
    "io_inp": [
      1,
      -5,
      -2,
      -1
    ],
    "io_out": [
      0,
      -8,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(sort_des(input),-5),4),4))"
  },
  {
    "input": "input : list = [4, -3, -3, 2, 3, 3]\noutput : list = [1, -6, -6, -1, 0, 0]",
    "output": "generated_output : list = add_n([4, -3, -3, 2, 3, 3],-3)",
    "io_inp": [
      4,
      -3,
      -3,
      2,
      3,
      3
    ],
    "io_out": [
      1,
      -6,
      -6,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 2, 4, 1]\noutput : list = [3, 1, 0, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n([-3, 2, 4, 1],-1),5)),-3)",
    "io_inp": [
      -3,
      2,
      4,
      1
    ],
    "io_out": [
      3,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(input,-1),5)),-3)"
  },
  {
    "input": "input : list = [-5, -2, 3, 0, 4]\noutput : list = [-36, -33, -24, -18, -9]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(sub_n([-5, -2, 3, 0, 4],-5),3))),-3)",
    "io_inp": [
      -5,
      -2,
      3,
      0,
      4
    ],
    "io_out": [
      -36,
      -33,
      -24,
      -18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(sub_n(input,-5),3))),-3)"
  },
  {
    "input": "input : list = [2, -2, 4, -5]\noutput : list = [-2, 2, -4, 5]",
    "output": "generated_output : list = mul_n([2, -2, 4, -5],-1)",
    "io_inp": [
      2,
      -2,
      4,
      -5
    ],
    "io_out": [
      -2,
      2,
      -4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 5, 3, -4]\noutput : list = [5, 3, -4, -4]",
    "output": "generated_output : list = sort_des([-4, 5, 3, -4])",
    "io_inp": [
      -4,
      5,
      3,
      -4
    ],
    "io_out": [
      5,
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 2, -2, -4]\noutput : list = [1, 7, 3, 1]",
    "output": "generated_output : list = take(take(add_n([-4, 2, -2, -4],5),7),23)",
    "io_inp": [
      -4,
      2,
      -2,
      -4
    ],
    "io_out": [
      1,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,5),7),23)"
  },
  {
    "input": "input : list = [-1, 1, -3, 5]\noutput : list = [5, -3, 1, -1]",
    "output": "generated_output : list = reverse([-1, 1, -3, 5])",
    "io_inp": [
      -1,
      1,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [-20, -10, -5]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sub_n([0, -2, 1],-1))),-3),5)",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      -20,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sub_n(input,-1))),-3),5)"
  },
  {
    "input": "input : list = [-3, -3, 0, -5, 4, 3]\noutput : list = [7, 6, 3, 0]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(reverse([-3, -3, 0, -5, 4, 3]))),4),-3)",
    "io_inp": [
      -3,
      -3,
      0,
      -5,
      4,
      3
    ],
    "io_out": [
      7,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(reverse(input))),4),-3)"
  },
  {
    "input": "input : list = [5, 5, -3, -4, 5, 2]\noutput : list = [1, 1, 1, -2]",
    "output": "generated_output : list = reverse(take(sub_n(drop(sort_asc([5, 5, -3, -4, 5, 2]),2),4),34))",
    "io_inp": [
      5,
      5,
      -3,
      -4,
      5,
      2
    ],
    "io_out": [
      1,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(drop(sort_asc(input),2),4),34))"
  },
  {
    "input": "input : list = [-1, 0, -2]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_des(mul_n([-1, 0, -2],2)))))",
    "io_inp": [
      -1,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_des(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [-5, 0, -1, 0, 5]\noutput : list = [-4, 0, 1, 1, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sub_n([-5, 0, -1, 0, 5],-1),-2)),-4),-2)",
    "io_inp": [
      -5,
      0,
      -1,
      0,
      5
    ],
    "io_out": [
      -4,
      0,
      1,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sub_n(input,-1),-2)),-4),-2)"
  },
  {
    "input": "input : list = [-2, 3, -3]\noutput : list = [29, 19, 17]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(add_n([-2, 3, -3],5),5),2)),-3)",
    "io_inp": [
      -2,
      3,
      -3
    ],
    "io_out": [
      29,
      19,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(add_n(input,5),5),2)),-3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-8, -5]",
    "output": "generated_output : list = reverse(sub_n([-2, -5],3))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [0, 3, 2, 4, -3, -5]\noutput : list = [-6, -4, -1, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_asc([0, 3, 2, 4, -3, -5])),-1)))",
    "io_inp": [
      0,
      3,
      2,
      4,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sort_des(take(drop(sub_n([-3, -4, 0],-5),2),21)))",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(drop(sub_n(input,-5),2),21)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-7, -6]",
    "output": "generated_output : list = reverse(add_n([-1, -2],-5))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [5, 5, -1]\noutput : list = [-4, 2, 2]",
    "output": "generated_output : list = add_n(reverse([5, 5, -1]),-3)",
    "io_inp": [
      5,
      5,
      -1
    ],
    "io_out": [
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sort_des(add_n([-5, -2],-2))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 3, -5, 0, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = drop(sort_asc([-4, 3, -5, 0, 5]),3)",
    "io_inp": [
      -4,
      3,
      -5,
      0,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),3)"
  },
  {
    "input": "input : list = [4, -3, 4, 3, 1]\noutput : list = [4, 12, 16, -12, 16]",
    "output": "generated_output : list = reverse(mul_n(add_n(take(add_n([4, -3, 4, 3, 1],1),7),-1),4))",
    "io_inp": [
      4,
      -3,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      12,
      16,
      -12,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(add_n(input,1),7),-1),4))"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [0, -8, -10]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_des([4, 0, 5])),-2)))",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      0,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [-2, 5, -5, -4, 4, 5]\noutput : list = [5, 5, 4, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-2, 5, -5, -4, 4, 5])",
    "io_inp": [
      -2,
      5,
      -5,
      -4,
      4,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n([-1, 4],-1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 4, 3, -1, -5]\noutput : list = [-5, -1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(mul_n([1, 4, 3, -1, -5],1))",
    "io_inp": [
      1,
      4,
      3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-5, 5, -4, 4, -2]\noutput : list = [-1, -7, -9]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(drop([-5, 5, -4, 4, -2],2)),5)))",
    "io_inp": [
      -5,
      5,
      -4,
      4,
      -2
    ],
    "io_out": [
      -1,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(drop(input,2)),5)))"
  },
  {
    "input": "input : list = [-5, -3, -1, -3, 5, 3]\noutput : list = [-5, -3, 1, 3, 3, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(mul_n([-5, -3, -1, -3, 5, 3],-1)))))",
    "io_inp": [
      -5,
      -3,
      -1,
      -3,
      5,
      3
    ],
    "io_out": [
      -5,
      -3,
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [5, -1, -1, -5, 0, 0]\noutput : list = [-5, -1, -1, 0, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(sub_n([5, -1, -1, -5, 0, 0],5),-2),-3)))",
    "io_inp": [
      5,
      -1,
      -1,
      -5,
      0,
      0
    ],
    "io_out": [
      -5,
      -1,
      -1,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(sub_n(input,5),-2),-3)))"
  },
  {
    "input": "input : list = [1, 0, 1, -3, -2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(sub_n([1, 0, 1, -3, -2],-3))),2),-5)",
    "io_inp": [
      1,
      0,
      1,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(sub_n(input,-3))),2),-5)"
  },
  {
    "input": "input : list = [-5, -5, -2, -2]\noutput : list = [-7, -7, -4, -4]",
    "output": "generated_output : list = take(reverse(sort_des(take(add_n([-5, -5, -2, -2],-2),4))),39)",
    "io_inp": [
      -5,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(add_n(input,-2),4))),39)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [5, 4]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(reverse([-4, -5]),8),13)),-1)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(reverse(input),8),13)),-1)"
  },
  {
    "input": "input : list = [5, 3, 2, -5, -3, -1]\noutput : list = [25, 15, 5, -10, -15, -25]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n([5, 3, 2, -5, -3, -1],-5)),15)))",
    "io_inp": [
      5,
      3,
      2,
      -5,
      -3,
      -1
    ],
    "io_out": [
      25,
      15,
      5,
      -10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n(input,-5)),15)))"
  },
  {
    "input": "input : list = [-4, 2, 1, 3]\noutput : list = [-5, 1, 0, 2]",
    "output": "generated_output : list = add_n([-4, 2, 1, 3],-1)",
    "io_inp": [
      -4,
      2,
      1,
      3
    ],
    "io_out": [
      -5,
      1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des([5, 1]),-4)),-3),-2)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des(input),-4)),-3),-2)"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [-30, -10, -10]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(add_n([-1, 3, 3],-3)),-2),5))",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      -30,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(add_n(input,-3)),-2),5))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take(take(reverse(take(sort_asc([-2, -5]),4)),28),1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(sort_asc(input),4)),28),1)"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(take([3, 5, 3],1),10),2)),-1)",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(take(input,1),10),2)),-1)"
  },
  {
    "input": "input : list = [-4, -2, 5, -4, 5, 5]\noutput : list = [-5, -5, -3, 4, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(reverse([-4, -2, 5, -4, 5, 5])),1)))",
    "io_inp": [
      -4,
      -2,
      5,
      -4,
      5,
      5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(reverse(input)),1)))"
  },
  {
    "input": "input : list = [0, -2, 3, 0]\noutput : list = [2, -1]",
    "output": "generated_output : list = drop(sub_n(add_n([0, -2, 3, 0],-5),-4),2)",
    "io_inp": [
      0,
      -2,
      3,
      0
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = drop(sub_n(add_n(input,-5),-4),2)"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [-6, -3]",
    "output": "generated_output : list = add_n(take(add_n(reverse(drop([1, -1, -4],1)),-3),6),1)",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(drop(input,1)),-3),6),1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4, 16]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([-4, 1],-2),2))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,-2),2))"
  },
  {
    "input": "input : list = [5, -5, 2, -5, 4, 1]\noutput : list = [12, 11, 9, 8, 2, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sub_n([5, -5, 2, -5, 4, 1],-4),22),-2)),1)",
    "io_inp": [
      5,
      -5,
      2,
      -5,
      4,
      1
    ],
    "io_out": [
      12,
      11,
      9,
      8,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sub_n(input,-4),22),-2)),1)"
  },
  {
    "input": "input : list = [4, -2, 1, 2]\noutput : list = [4, -2]",
    "output": "generated_output : list = mul_n(take([4, -2, 1, 2],2),1)",
    "io_inp": [
      4,
      -2,
      1,
      2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(drop(add_n(sort_des(sub_n([-1, 0],3)),3),1))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(sort_des(sub_n(input,3)),3),1))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([0, -3])),3)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-2, -5, -3, -5, 1]\noutput : list = [9, -45, -27, -45, -18]",
    "output": "generated_output : list = reverse(mul_n(mul_n([-2, -5, -3, -5, 1],-3),-3))",
    "io_inp": [
      -2,
      -5,
      -3,
      -5,
      1
    ],
    "io_out": [
      9,
      -45,
      -27,
      -45,
      -18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,-3),-3))"
  },
  {
    "input": "input : list = [2, 1, 2, -4, -3]\noutput : list = [-1, 0, 4, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(reverse([2, 1, 2, -4, -3])))),3)",
    "io_inp": [
      2,
      1,
      2,
      -4,
      -3
    ],
    "io_out": [
      -1,
      0,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [9, 12]",
    "output": "generated_output : list = mul_n(take(sort_des([-3, -4]),16),-3)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),16),-3)"
  },
  {
    "input": "input : list = [1, 4, 0, -5, -2, 1]\noutput : list = [-1, -4, -6, -7, -7, -10]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(mul_n([1, 4, 0, -5, -2, 1],-1),20),-5),-1))",
    "io_inp": [
      1,
      4,
      0,
      -5,
      -2,
      1
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(mul_n(input,-1),20),-5),-1))"
  },
  {
    "input": "input : list = [5, 3, -5, 2, -2]\noutput : list = [5, 3]",
    "output": "generated_output : list = take([5, 3, -5, 2, -2],2)",
    "io_inp": [
      5,
      3,
      -5,
      2,
      -2
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [15, -15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(add_n([4, -2],-1),7))),-5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(add_n(input,-1),7))),-5)"
  },
  {
    "input": "input : list = [-1, 2, -5, -1]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(take([-1, 2, -5, -1],1))",
    "io_inp": [
      -1,
      2,
      -5,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-1, 2, -1, -5, -2, -1]\noutput : list = [5, 4, 1, 5, 8, 5]",
    "output": "generated_output : list = reverse(take(take(sub_n(add_n([-1, 2, -1, -5, -2, -1],5),-1),39),22))",
    "io_inp": [
      -1,
      2,
      -1,
      -5,
      -2,
      -1
    ],
    "io_out": [
      5,
      4,
      1,
      5,
      8,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(add_n(input,5),-1),39),22))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [16, 0]",
    "output": "generated_output : list = mul_n([4, 0],4)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, 3, 5]\noutput : list = [7, 7, 5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sort_des([5, 3, 5])),2)))",
    "io_inp": [
      5,
      3,
      5
    ],
    "io_out": [
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [13, 7, -17]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([-3, -5, 5],-3),2))",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      13,
      7,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,-3),2))"
  },
  {
    "input": "input : list = [-1, -4, 5, 5, -2, -1]\noutput : list = [0, 2, 3, 3, 9, 9]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n([-1, -4, 5, 5, -2, -1],1)),5),32)",
    "io_inp": [
      -1,
      -4,
      5,
      5,
      -2,
      -1
    ],
    "io_out": [
      0,
      2,
      3,
      3,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(input,1)),5),32)"
  },
  {
    "input": "input : list = [-4, -2, -2, -5, 2, -5]\noutput : list = [2, -2, -5, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(drop([-4, -2, -2, -5, 2, -5],2)))),28)",
    "io_inp": [
      -4,
      -2,
      -2,
      -5,
      2,
      -5
    ],
    "io_out": [
      2,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(drop(input,2)))),28)"
  },
  {
    "input": "input : list = [3, -2, 0, 5, 5]\noutput : list = [4, 4, 2, -1, -3]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(sub_n([3, -2, 0, 5, 5],1)))),33)",
    "io_inp": [
      3,
      -2,
      0,
      5,
      5
    ],
    "io_out": [
      4,
      4,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(sub_n(input,1)))),33)"
  },
  {
    "input": "input : list = [2, 1, -5, -3, 3]\noutput : list = [-4, -2, 0, 8, 12]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(mul_n([2, 1, -5, -3, 3],-2),2)),5),-1)",
    "io_inp": [
      2,
      1,
      -5,
      -3,
      3
    ],
    "io_out": [
      -4,
      -2,
      0,
      8,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(mul_n(input,-2),2)),5),-1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n([0, 0],-3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, 5, 0, -3, -3]\noutput : list = [-3, -3, 0, 3, 3, 5]",
    "output": "generated_output : list = take(sort_asc([3, 3, 5, 0, -3, -3]),14)",
    "io_inp": [
      3,
      3,
      5,
      0,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(sub_n([2, -2],1)))),20)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(sub_n(input,1)))),20)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n([-3, 0],1))))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(input,1))))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [7, 6]",
    "output": "generated_output : list = add_n(sub_n([1, 0],-5),1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-26, -26]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n([-5, -5],5),1)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -26,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(input,5),1)))"
  },
  {
    "input": "input : list = [-5, 2, 3, 5, -1, -2]\noutput : list = [24, 14, 9, -6, -11, -26]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_des([-5, 2, 3, 5, -1, -2]),5),-1)))",
    "io_inp": [
      -5,
      2,
      3,
      5,
      -1,
      -2
    ],
    "io_out": [
      24,
      14,
      9,
      -6,
      -11,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_des(input),5),-1)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-19, -19]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(add_n([-3, -3],-2)),4)),1)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -19,
      -19
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(add_n(input,-2)),4)),1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(reverse([4, -5]))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 5, 1, 5]\noutput : list = [2, 6, 6]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(drop([-5, 5, 1, 5],1))),1),43)",
    "io_inp": [
      -5,
      5,
      1,
      5
    ],
    "io_out": [
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(drop(input,1))),1),43)"
  },
  {
    "input": "input : list = [-4, -2, 0, 3, 0]\noutput : list = [3, 5, 7, 10, 7]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(sub_n([-4, -2, 0, 3, 0],2),-2),3),4),52)",
    "io_inp": [
      -4,
      -2,
      0,
      3,
      0
    ],
    "io_out": [
      3,
      5,
      7,
      10,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(sub_n(input,2),-2),3),4),52)"
  },
  {
    "input": "input : list = [-1, 2, -2, -4, 2, 3]\noutput : list = [-1, 1, 2, 5, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des([-1, 2, -2, -4, 2, 3]))),3)",
    "io_inp": [
      -1,
      2,
      -2,
      -4,
      2,
      3
    ],
    "io_out": [
      -1,
      1,
      2,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(input))),3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = mul_n([-1, 4],1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-5, -4, -1, -5]\noutput : list = [-6, -26]",
    "output": "generated_output : list = add_n(drop(mul_n([-5, -4, -1, -5],5),2),-1)",
    "io_inp": [
      -5,
      -4,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -26
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(input,5),2),-1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [12, 48]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sub_n([-5, 4],-4),-4),24),3),4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      12,
      48
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sub_n(input,-4),-4),24),3),4)"
  },
  {
    "input": "input : list = [-1, 4, -5, 2]\noutput : list = [-5, -1, 2, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(reverse([-1, 4, -5, 2])))),31)",
    "io_inp": [
      -1,
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(reverse(input)))),31)"
  },
  {
    "input": "input : list = [1, 1, 5, 0, 0, -2]\noutput : list = [-27, -3, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(drop([1, 1, 5, 0, 0, -2],3),-4)),-3),-3)",
    "io_inp": [
      1,
      1,
      5,
      0,
      0,
      -2
    ],
    "io_out": [
      -27,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(drop(input,3),-4)),-3),-3)"
  },
  {
    "input": "input : list = [4, -4, 4, 2, -3]\noutput : list = [-3, 2, 4, -4, 4]",
    "output": "generated_output : list = reverse([4, -4, 4, 2, -3])",
    "io_inp": [
      4,
      -4,
      4,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0, 0, -5, 0, 1]\noutput : list = [-3, -3, -7, -8]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(take([-4, 0, 0, -5, 0, 1],4)),3)))",
    "io_inp": [
      -4,
      0,
      0,
      -5,
      0,
      1
    ],
    "io_out": [
      -3,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(take(input,4)),3)))"
  },
  {
    "input": "input : list = [-4, -4, 4, 2, -5, -1]\noutput : list = [-10, -8, -8, -2, 4, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc([-4, -4, 4, 2, -5, -1]))),2)",
    "io_inp": [
      -4,
      -4,
      4,
      2,
      -5,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -2,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(input))),2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [44, 44]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_asc([4, 4]),-3),3),-5),-1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      44,
      44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_asc(input),-3),3),-5),-1)"
  },
  {
    "input": "input : list = [2, -5, 3, 5]\noutput : list = [3, -4, -5, -7]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(sort_asc([2, -5, 3, 5])),2)),-1)",
    "io_inp": [
      2,
      -5,
      3,
      5
    ],
    "io_out": [
      3,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(sort_asc(input)),2)),-1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(add_n(sort_asc([-1, 0]),1)),-2),1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(add_n(sort_asc(input),1)),-2),1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-18, -9]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n([-5, 4],2),-1),5),-5)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -18,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(input,2),-1),5),-5)"
  },
  {
    "input": "input : list = [-3, -4, -1, -5, 5, -1]\noutput : list = [2, -4, -4, -6, -7, -8]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(sort_asc([-3, -4, -1, -5, 5, -1]),-2),-1)))",
    "io_inp": [
      -3,
      -4,
      -1,
      -5,
      5,
      -1
    ],
    "io_out": [
      2,
      -4,
      -4,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(sort_asc(input),-2),-1)))"
  },
  {
    "input": "input : list = [-1, -4, 1, -1, -1, -1]\noutput : list = [3, -3, -3, -12]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(take([-1, -4, 1, -1, -1, -1],4)))),3)",
    "io_inp": [
      -1,
      -4,
      1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      3,
      -3,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(take(input,4)))),3)"
  },
  {
    "input": "input : list = [0, 2, 5]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = reverse([0, 2, 5])",
    "io_inp": [
      0,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, -3, 3, -2, -2]\noutput : list = [7, 10, 2, 8, 3, 3]",
    "output": "generated_output : list = add_n([2, 5, -3, 3, -2, -2],5)",
    "io_inp": [
      2,
      5,
      -3,
      3,
      -2,
      -2
    ],
    "io_out": [
      7,
      10,
      2,
      8,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, -4, -1, -4, 1, 5]\noutput : list = [3, -1, -3, -4, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n([-2, -4, -1, -4, 1, 5],-2),5)),1)",
    "io_inp": [
      -2,
      -4,
      -1,
      -4,
      1,
      5
    ],
    "io_out": [
      3,
      -1,
      -3,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(input,-2),5)),1)"
  },
  {
    "input": "input : list = [0, -3, 4, 3, 3, 1]\noutput : list = [33, 21]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(add_n([0, -3, 4, 3, 3, 1],-5),-4),1),2))",
    "io_inp": [
      0,
      -3,
      4,
      3,
      3,
      1
    ],
    "io_out": [
      33,
      21
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(add_n(input,-5),-4),1),2))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n(add_n(take(reverse(reverse([4, 5])),18),2),-4)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(reverse(input)),18),2),-4)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(mul_n([4, 2],-1),5),-3)),3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(mul_n(input,-1),5),-3)),3)"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [2, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 4, 2])",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4, 2]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sort_des([3, 4, 2])",
    "io_inp": [
      3,
      4,
      2
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, 1, 3]\noutput : list = [6, 4, 8, 1, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(reverse([-3, -2, 5, 1, 3]),24),3),-1),5)",
    "io_inp": [
      -3,
      -2,
      5,
      1,
      3
    ],
    "io_out": [
      6,
      4,
      8,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(reverse(input),24),3),-1),5)"
  },
  {
    "input": "input : list = [-5, -4, 1, -3, -1]\noutput : list = [-4, -3, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(drop([-5, -4, 1, -3, -1],1)))",
    "io_inp": [
      -5,
      -4,
      1,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-2, -2, 1, 4]\noutput : list = [-2, 1, 4]",
    "output": "generated_output : list = mul_n(drop([-2, -2, 1, 4],1),1)",
    "io_inp": [
      -2,
      -2,
      1,
      4
    ],
    "io_out": [
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [5, 4, -3, 0, -5]\noutput : list = [5, 4, 0, -3, -5]",
    "output": "generated_output : list = sort_des(reverse([5, 4, -3, 0, -5]))",
    "io_inp": [
      5,
      4,
      -3,
      0,
      -5
    ],
    "io_out": [
      5,
      4,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, 4, -5, -4, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(drop([2, 4, -5, -4, -3],3)),4)),3)",
    "io_inp": [
      2,
      4,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(drop(input,3)),4)),3)"
  },
  {
    "input": "input : list = [0, 3, -5, -3, 2]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sub_n(take([0, 3, -5, -3, 2],1),-4),-3)",
    "io_inp": [
      0,
      3,
      -5,
      -3,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,1),-4),-3)"
  },
  {
    "input": "input : list = [-3, -3, -3, 3]\noutput : list = [5, -1, -1, -1]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sort_asc([-3, -3, -3, 3]),8),-4),-2))",
    "io_inp": [
      -3,
      -3,
      -3,
      3
    ],
    "io_out": [
      5,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sort_asc(input),8),-4),-2))"
  },
  {
    "input": "input : list = [2, -2, 3, -4]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(reverse(take([2, -2, 3, -4],1)),-5)",
    "io_inp": [
      2,
      -2,
      3,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,1)),-5)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(take([1, 0, 0],1)),-4)))",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(take(input,1)),-4)))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-3, -5]",
    "output": "generated_output : list = add_n(sort_des([-1, 1]),-4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-2, 4, 1, -1, -4, -3]\noutput : list = [4, 1, -1, -2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc([-2, 4, 1, -1, -4, -3]))",
    "io_inp": [
      -2,
      4,
      1,
      -1,
      -4,
      -3
    ],
    "io_out": [
      4,
      1,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -2, -5, 0, -2]\noutput : list = [-30, -20, -15, -15, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(sub_n([-3, -2, -5, 0, -2],1),21))),5)",
    "io_inp": [
      -3,
      -2,
      -5,
      0,
      -2
    ],
    "io_out": [
      -30,
      -20,
      -15,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(sub_n(input,1),21))),5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-10, 30]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sort_asc([-5, 3]),3))),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sort_asc(input),3))),5)"
  },
  {
    "input": "input : list = [3, 0, -1, 1, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = take([3, 0, -1, 1, 0],2)",
    "io_inp": [
      3,
      0,
      -1,
      1,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -2, -3, -4, -1, 1]\noutput : list = [-1, 0, 1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sort_des([-5, -2, -3, -4, -1, 1])),-4)))",
    "io_inp": [
      -5,
      -2,
      -3,
      -4,
      -1,
      1
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-1, 5, 0, -2, 5, -2]\noutput : list = [2, 2, 4, 6, 16, 16]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(add_n([-1, 5, 0, -2, 5, -2],1),2))),-4)",
    "io_inp": [
      -1,
      5,
      0,
      -2,
      5,
      -2
    ],
    "io_out": [
      2,
      2,
      4,
      6,
      16,
      16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(add_n(input,1),2))),-4)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [12, 36]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(mul_n([-3, -1],-3))),-2),-2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      12,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(mul_n(input,-3))),-2),-2)"
  },
  {
    "input": "input : list = [-4, 0, 4, 5, -4, -4]\noutput : list = [-6, -2, 2]",
    "output": "generated_output : list = sub_n(take(take([-4, 0, 4, 5, -4, -4],3),17),2)",
    "io_inp": [
      -4,
      0,
      4,
      5,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,3),17),2)"
  },
  {
    "input": "input : list = [-4, -2, -3, 1, -2, -4]\noutput : list = [-2, -2, -1, 0, 0, 3]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(reverse([-4, -2, -3, 1, -2, -4])),1),27),3)",
    "io_inp": [
      -4,
      -2,
      -3,
      1,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(reverse(input)),1),27),3)"
  },
  {
    "input": "input : list = [0, -5, -4, -2, -4]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(drop([0, -5, -4, -2, -4],2)),31)))",
    "io_inp": [
      0,
      -5,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(drop(input,2)),31)))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-24, -4]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(mul_n([0, 4],-5),-1)),5),19)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -24,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(mul_n(input,-5),-1)),5),19)"
  },
  {
    "input": "input : list = [5, 0, 1, 5, -2]\noutput : list = [5, 5, 1, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(reverse([5, 0, 1, 5, -2])),10)))",
    "io_inp": [
      5,
      0,
      1,
      5,
      -2
    ],
    "io_out": [
      5,
      5,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(reverse(input)),10)))"
  },
  {
    "input": "input : list = [-3, 4, 3, 1]\noutput : list = [-23, -18, -8]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(drop([-3, 4, 3, 1],1))),-5),3)",
    "io_inp": [
      -3,
      4,
      3,
      1
    ],
    "io_out": [
      -23,
      -18,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(drop(input,1))),-5),3)"
  },
  {
    "input": "input : list = [-2, -4, 1, 2]\noutput : list = [-2, -3, -6, -8]",
    "output": "generated_output : list = sort_des(add_n([-2, -4, 1, 2],-4))",
    "io_inp": [
      -2,
      -4,
      1,
      2
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [5, 4, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = take(take(sort_des(sort_des(drop([5, 4, 5, -5],2))),20),32)",
    "io_inp": [
      5,
      4,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_des(drop(input,2))),20),32)"
  },
  {
    "input": "input : list = [4, 5, 1, -4]\noutput : list = [12, -48]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(drop([4, 5, 1, -4],2)),-3)),-4)",
    "io_inp": [
      4,
      5,
      1,
      -4
    ],
    "io_out": [
      12,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(drop(input,2)),-3)),-4)"
  },
  {
    "input": "input : list = [0, -5, -1, 5, 2]\noutput : list = [0, -3, 3, 7, 2]",
    "output": "generated_output : list = sub_n(mul_n(take(take(reverse([0, -5, -1, 5, 2]),17),21),-1),-2)",
    "io_inp": [
      0,
      -5,
      -1,
      5,
      2
    ],
    "io_out": [
      0,
      -3,
      3,
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(take(reverse(input),17),21),-1),-2)"
  },
  {
    "input": "input : list = [1, -3, 3, -3, -2]\noutput : list = [3, -1, 5, -1, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n([1, -3, 3, -3, -2],-4),-1),5),2)",
    "io_inp": [
      1,
      -3,
      3,
      -3,
      -2
    ],
    "io_out": [
      3,
      -1,
      5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(input,-4),-1),5),2)"
  },
  {
    "input": "input : list = [-3, 1, 5, 0, -5, -2]\noutput : list = [-8, -6, -5, -3, -2, 2]",
    "output": "generated_output : list = add_n(sort_asc([-3, 1, 5, 0, -5, -2]),-3)",
    "io_inp": [
      -3,
      1,
      5,
      0,
      -5,
      -2
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-2, 2, -5, -2, -4]\noutput : list = [12, 0, 21, 12, 18]",
    "output": "generated_output : list = mul_n(add_n([-2, 2, -5, -2, -4],-2),-3)",
    "io_inp": [
      -2,
      2,
      -5,
      -2,
      -4
    ],
    "io_out": [
      12,
      0,
      21,
      12,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-3)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(sort_asc([3, 1])),2)))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [5, 4, 5, 3]\noutput : list = [2, 1, 2, 0]",
    "output": "generated_output : list = add_n([5, 4, 5, 3],-3)",
    "io_inp": [
      5,
      4,
      5,
      3
    ],
    "io_out": [
      2,
      1,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [9, 9, 6]",
    "output": "generated_output : list = add_n(add_n(sort_des(reverse(sort_asc([1, 1, -2]))),5),3)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      9,
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(reverse(sort_asc(input))),5),3)"
  },
  {
    "input": "input : list = [-2, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-2, 3, 2],1)))",
    "io_inp": [
      -2,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [0, 3, -3, 2, -3]\noutput : list = [12, 24]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(take([0, 3, -3, 2, -3],2),-1),4),-4),4)",
    "io_inp": [
      0,
      3,
      -3,
      2,
      -3
    ],
    "io_out": [
      12,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(take(input,2),-1),4),-4),4)"
  },
  {
    "input": "input : list = [2, 2, 5, -5, 5]\noutput : list = [5, 5, 2, 2, -5]",
    "output": "generated_output : list = sort_des([2, 2, 5, -5, 5])",
    "io_inp": [
      2,
      2,
      5,
      -5,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, -5, -2]\noutput : list = [3, 7, -3, 0]",
    "output": "generated_output : list = sub_n([1, 5, -5, -2],-2)",
    "io_inp": [
      1,
      5,
      -5,
      -2
    ],
    "io_out": [
      3,
      7,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_des([-3, 1])),2)))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [4, 3, 1, 3]\noutput : list = [4, 3, 3, 1]",
    "output": "generated_output : list = sort_des([4, 3, 1, 3])",
    "io_inp": [
      4,
      3,
      1,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, -5]\noutput : list = [-8, 16, 24]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(reverse([-3, 3, -5]),-4),1)),-5)",
    "io_inp": [
      -3,
      3,
      -5
    ],
    "io_out": [
      -8,
      16,
      24
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(reverse(input),-4),1)),-5)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = reverse(sort_des([-5, -3, -1]))",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [2, 5, 1]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n([2, 5, 1],-2),-3),11),-1)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      2,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(input,-2),-3),11),-1)"
  },
  {
    "input": "input : list = [3, -2, -5, -1]\noutput : list = [-5, -9, -10, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(reverse([3, -2, -5, -1]),17)),5),-3)",
    "io_inp": [
      3,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -9,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(reverse(input),17)),5),-3)"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take([-1, 4, 2],1),-3)",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-3, -2, -2, 5]\noutput : list = [-2, -2, 5]",
    "output": "generated_output : list = drop([-3, -2, -2, 5],1)",
    "io_inp": [
      -3,
      -2,
      -2,
      5
    ],
    "io_out": [
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 5, 0, -4, -3]\noutput : list = [-1, -2, 2, 7, -2]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(add_n([-4, 5, 0, -4, -3],-2),1),-5),44))",
    "io_inp": [
      -4,
      5,
      0,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -2,
      2,
      7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(add_n(input,-2),1),-5),44))"
  },
  {
    "input": "input : list = [0, -3, 2, 2, 2, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take([0, -3, 2, 2, 2, -5],2))),2)",
    "io_inp": [
      0,
      -3,
      2,
      2,
      2,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(input,2))),2)"
  },
  {
    "input": "input : list = [-3, -1, -1, 4, 0, 0]\noutput : list = [0, 10, 10, 35, 15, 15]",
    "output": "generated_output : list = mul_n(add_n([-3, -1, -1, 4, 0, 0],3),5)",
    "io_inp": [
      -3,
      -1,
      -1,
      4,
      0,
      0
    ],
    "io_out": [
      0,
      10,
      10,
      35,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),5)"
  },
  {
    "input": "input : list = [-5, -4, -3]\noutput : list = [97, 77, 57]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(mul_n([-5, -4, -3],5),2)),-2),3)",
    "io_inp": [
      -5,
      -4,
      -3
    ],
    "io_out": [
      97,
      77,
      57
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(mul_n(input,5),2)),-2),3)"
  },
  {
    "input": "input : list = [-1, 1, -1, -4, 0]\noutput : list = [-4, -5, -6, -6, -9]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(add_n([-1, 1, -1, -4, 0],-3)),1),-1))",
    "io_inp": [
      -1,
      1,
      -1,
      -4,
      0
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(add_n(input,-3)),1),-1))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-1, 6]",
    "output": "generated_output : list = take(reverse(take(sub_n(sort_des([4, -3]),-2),22)),43)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(sort_des(input),-2),22)),43)"
  },
  {
    "input": "input : list = [5, -5, 3, 5, -3]\noutput : list = [8, 8, 6, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_des([5, -5, 3, 5, -3])),1),-2))",
    "io_inp": [
      5,
      -5,
      3,
      5,
      -3
    ],
    "io_out": [
      8,
      8,
      6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_des(input)),1),-2))"
  },
  {
    "input": "input : list = [-4, -2, 5, -3, -2]\noutput : list = [9, 12, 15, 15, 36]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(add_n([-4, -2, 5, -3, -2],3),-4)),3),28)",
    "io_inp": [
      -4,
      -2,
      5,
      -3,
      -2
    ],
    "io_out": [
      9,
      12,
      15,
      15,
      36
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(add_n(input,3),-4)),3),28)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [3, 15]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n([0, 4],3))),3))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n(input,3))),3))"
  },
  {
    "input": "input : list = [3, -3, -4, -2, 5, 4]\noutput : list = [-10, -9, -8, -3, -2, -1]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n(reverse([3, -3, -4, -2, 5, 4]),-2)),14),4)",
    "io_inp": [
      3,
      -3,
      -4,
      -2,
      5,
      4
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(reverse(input),-2)),14),4)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [12, 9]",
    "output": "generated_output : list = mul_n([4, 3],3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, -1, 4, -4, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(take([5, -1, 4, -4, -4],2),-2),-1)),-1)",
    "io_inp": [
      5,
      -1,
      4,
      -4,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(take(input,2),-2),-1)),-1)"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(take(drop([3, -3, 1],1),14))",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,1),14))"
  },
  {
    "input": "input : list = [-5, 1, 3, 4, -1, 1]\noutput : list = [-7, -1, 1, 2, -3, -1]",
    "output": "generated_output : list = add_n([-5, 1, 3, 4, -1, 1],-2)",
    "io_inp": [
      -5,
      1,
      3,
      4,
      -1,
      1
    ],
    "io_out": [
      -7,
      -1,
      1,
      2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, 3, 4, 5]\noutput : list = [-10, -8, -6, -8]",
    "output": "generated_output : list = mul_n(mul_n(reverse([4, 3, 4, 5]),-1),2)",
    "io_inp": [
      4,
      3,
      4,
      5
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),-1),2)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [-25, 25, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(sort_asc([5, -5, 5]),5),14)))",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      -25,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(sort_asc(input),5),14)))"
  },
  {
    "input": "input : list = [1, 4, 2, 0, -1, -1]\noutput : list = [4, 16]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(take([1, 4, 2, 0, -1, -1],2))),4))",
    "io_inp": [
      1,
      4,
      2,
      0,
      -1,
      -1
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(take(input,2))),4))"
  },
  {
    "input": "input : list = [-4, -1, -2, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -1, -2, 1],1)",
    "io_inp": [
      -4,
      -1,
      -2,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -2, 5, 5, 3]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(take([3, -2, 5, 5, 3],3))),1),5)",
    "io_inp": [
      3,
      -2,
      5,
      5,
      3
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(take(input,3))),1),5)"
  },
  {
    "input": "input : list = [5, 5, 0, -1]\noutput : list = [6, 1, -24, -24]",
    "output": "generated_output : list = sort_des(add_n(reverse(mul_n(reverse([5, 5, 0, -1]),-5)),1))",
    "io_inp": [
      5,
      5,
      0,
      -1
    ],
    "io_out": [
      6,
      1,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(mul_n(reverse(input),-5)),1))"
  },
  {
    "input": "input : list = [-5, -3, -3, 3, -2]\noutput : list = [-6, -4, -4, -3, 2]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(sub_n([-5, -3, -3, 3, -2],-2)),13)),3)",
    "io_inp": [
      -5,
      -3,
      -3,
      3,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(sub_n(input,-2)),13)),3)"
  },
  {
    "input": "input : list = [-4, 4, 4, 3]\noutput : list = [-2, 6, 6, 5]",
    "output": "generated_output : list = add_n([-4, 4, 4, 3],2)",
    "io_inp": [
      -4,
      4,
      4,
      3
    ],
    "io_out": [
      -2,
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [3, -1, 2]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(take([3, -1, 2],1)),2),3))",
    "io_inp": [
      3,
      -1,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(take(input,1)),2),3))"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = take(sort_des(reverse([2, 0, 3])),19)",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),19)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n([-5, 2],-1),3)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(input,-1),3)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-6, -8]",
    "output": "generated_output : list = add_n(sort_des([-3, -1]),-5)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [1, 4, -2, -3, -4]\noutput : list = [-3, -2, -1, 2, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(sort_des([1, 4, -2, -3, -4]),5),-1)),5)",
    "io_inp": [
      1,
      4,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(sort_des(input),5),-1)),5)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-6, -10]",
    "output": "generated_output : list = take(mul_n([-3, -5],2),7)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),7)"
  },
  {
    "input": "input : list = [4, -3, 4, -4]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -3, 4, -4],1)",
    "io_inp": [
      4,
      -3,
      4,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -2, -4, -4, -3, -3]\noutput : list = [-4, -4, -3, -3, -2, 5]",
    "output": "generated_output : list = mul_n(sort_asc([5, -2, -4, -4, -3, -3]),1)",
    "io_inp": [
      5,
      -2,
      -4,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [5, -2, 0, 3, -1, 1]\noutput : list = [0, 1, 2, 3, 5]",
    "output": "generated_output : list = reverse(drop(sort_des(take(sub_n([5, -2, 0, 3, -1, 1],-2),11)),1))",
    "io_inp": [
      5,
      -2,
      0,
      3,
      -1,
      1
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(take(sub_n(input,-2),11)),1))"
  },
  {
    "input": "input : list = [-2, 2, 1, -3, 0]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(add_n(add_n(take(reverse([-2, 2, 1, -3, 0]),1),-5),1),-1)",
    "io_inp": [
      -2,
      2,
      1,
      -3,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(reverse(input),1),-5),1),-1)"
  },
  {
    "input": "input : list = [1, -2, 1, 1, 5]\noutput : list = [0, -12]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(take([1, -2, 1, 1, 5],2)),-1)),4)",
    "io_inp": [
      1,
      -2,
      1,
      1,
      5
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(take(input,2)),-1)),4)"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [-2, -10, -16]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(sort_des([-4, 3, 0]),5)),-2))",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      -2,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(sort_des(input),5)),-2))"
  },
  {
    "input": "input : list = [-2, 5, 0, 1, 3, 5]\noutput : list = [5, 0, -2]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(take([-2, 5, 0, 1, 3, 5],3),5),-5),38))",
    "io_inp": [
      -2,
      5,
      0,
      1,
      3,
      5
    ],
    "io_out": [
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(take(input,3),5),-5),38))"
  },
  {
    "input": "input : list = [-1, 5, -2, 5, -5, 0]\noutput : list = [-9, 21, -14, 21, -29, -4]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n(mul_n([-1, 5, -2, 5, -5, 0],5),3),20),-4),-5)",
    "io_inp": [
      -1,
      5,
      -2,
      5,
      -5,
      0
    ],
    "io_out": [
      -9,
      21,
      -14,
      21,
      -29,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(mul_n(input,5),3),20),-4),-5)"
  },
  {
    "input": "input : list = [-5, 1, -5]\noutput : list = [-26, 4, -26]",
    "output": "generated_output : list = add_n(mul_n([-5, 1, -5],5),-1)",
    "io_inp": [
      -5,
      1,
      -5
    ],
    "io_out": [
      -26,
      4,
      -26
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),-1)"
  },
  {
    "input": "input : list = [5, 4, 0]\noutput : list = [21, 18, 6]",
    "output": "generated_output : list = mul_n(sub_n([5, 4, 0],-2),3)",
    "io_inp": [
      5,
      4,
      0
    ],
    "io_out": [
      21,
      18,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [5, 15]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc([-1, -3])),-5)))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      5,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-9, -1]",
    "output": "generated_output : list = add_n([-4, 4],-5)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -1, 4, 4, -2]\noutput : list = [4, 4, -1, -1, -2]",
    "output": "generated_output : list = sort_des([-1, -1, 4, 4, -2])",
    "io_inp": [
      -1,
      -1,
      4,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-2, 3, -3]",
    "output": "generated_output : list = reverse([-3, 3, -2])",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0, -2, -1]\noutput : list = [-4, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_des([-4, 0, -2, -1])))))",
    "io_inp": [
      -4,
      0,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, -5, -4, -4, -3, 3]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = sort_asc(take([1, -5, -4, -4, -3, 3],3))",
    "io_inp": [
      1,
      -5,
      -4,
      -4,
      -3,
      3
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [2, -4, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = drop([2, -4, 1, -2],2)",
    "io_inp": [
      2,
      -4,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -1, 0, -1, 1, -3]\noutput : list = [1, 0, 2, -2]",
    "output": "generated_output : list = take(sub_n(drop([-3, -1, 0, -1, 1, -3],2),-1),31)",
    "io_inp": [
      -3,
      -1,
      0,
      -1,
      1,
      -3
    ],
    "io_out": [
      1,
      0,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,2),-1),31)"
  },
  {
    "input": "input : list = [3, 4, -3, -3]\noutput : list = [-3, 0, 18, 18]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n([3, 4, -3, -3],2),-3)),3))",
    "io_inp": [
      3,
      4,
      -3,
      -3
    ],
    "io_out": [
      -3,
      0,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n(input,2),-3)),3))"
  },
  {
    "input": "input : list = [4, 1, -5, -1, 5]\noutput : list = [-5, -1, 1, 4, 5]",
    "output": "generated_output : list = take(sort_asc([4, 1, -5, -1, 5]),22)",
    "io_inp": [
      4,
      1,
      -5,
      -1,
      5
    ],
    "io_out": [
      -5,
      -1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),22)"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [-10, -9, -7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_asc([2, 1, 4]),-4),4),-3))",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      -10,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_asc(input),-4),4),-3))"
  },
  {
    "input": "input : list = [3, 2, 2, -3]\noutput : list = [2, 1, 1, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse([3, 2, 2, -3])),1)",
    "io_inp": [
      3,
      2,
      2,
      -3
    ],
    "io_out": [
      2,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [-3, 5, 1, 4, -3]\noutput : list = [-1, -1, -5, -8, -9]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(sort_asc([-3, 5, 1, 4, -3])),4),-1))",
    "io_inp": [
      -3,
      5,
      1,
      4,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(sort_asc(input)),4),-1))"
  },
  {
    "input": "input : list = [2, -2, -5, 2, -4, 3]\noutput : list = [-2, -5, 2, -4, 3]",
    "output": "generated_output : list = take(drop([2, -2, -5, 2, -4, 3],1),11)",
    "io_inp": [
      2,
      -2,
      -5,
      2,
      -4,
      3
    ],
    "io_out": [
      -2,
      -5,
      2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),11)"
  },
  {
    "input": "input : list = [-1, -3, -4, 4, 0, 5]\noutput : list = [3, 6, 18, 21, 27, 30]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(add_n([-1, -3, -4, 4, 0, 5],3),5)),4),-3)",
    "io_inp": [
      -1,
      -3,
      -4,
      4,
      0,
      5
    ],
    "io_out": [
      3,
      6,
      18,
      21,
      27,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(add_n(input,3),5)),4),-3)"
  },
  {
    "input": "input : list = [1, -2, 2, -2, -5]\noutput : list = [-24, -12, -12, 0, 4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(reverse([1, -2, 2, -2, -5]))),1),4)",
    "io_inp": [
      1,
      -2,
      2,
      -2,
      -5
    ],
    "io_out": [
      -24,
      -12,
      -12,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(reverse(input))),1),4)"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [-7, -3, 0]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse([-4, 3, 0]),16),-3))",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      -7,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(input),16),-3))"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = sort_des(reverse([3, -2, -1]))",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, 5, -3, 3, 2, -4]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(take([0, 5, -3, 3, 2, -4],1)))))",
    "io_inp": [
      0,
      5,
      -3,
      3,
      2,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, 3, 4, -5, -5]\noutput : list = [-4, 3, 4, -5, -5]",
    "output": "generated_output : list = mul_n([-4, 3, 4, -5, -5],1)",
    "io_inp": [
      -4,
      3,
      4,
      -5,
      -5
    ],
    "io_out": [
      -4,
      3,
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, -5, 5, 1]\noutput : list = [-2, -10, 10, -6]",
    "output": "generated_output : list = mul_n(reverse([3, -5, 5, 1]),-2)",
    "io_inp": [
      3,
      -5,
      5,
      1
    ],
    "io_out": [
      -2,
      -10,
      10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-4, -5, -3]\noutput : list = [-9, -7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(drop([-4, -5, -3],1))),-4))",
    "io_inp": [
      -4,
      -5,
      -3
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(drop(input,1))),-4))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(add_n([-5, -3],-1)),4),1))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(add_n(input,-1)),4),1))"
  },
  {
    "input": "input : list = [5, 5, 3, 2, 3, -5]\noutput : list = [5, 5, 3, 3, 2, -5]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(reverse([5, 5, 3, 2, 3, -5])))),22)",
    "io_inp": [
      5,
      5,
      3,
      2,
      3,
      -5
    ],
    "io_out": [
      5,
      5,
      3,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(reverse(input)))),22)"
  },
  {
    "input": "input : list = [5, 1, -4, 0, -1]\noutput : list = [3, -9, -12, -15, -24]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n([5, 1, -4, 0, -1],4)))),3)",
    "io_inp": [
      5,
      1,
      -4,
      0,
      -1
    ],
    "io_out": [
      3,
      -9,
      -12,
      -15,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n(input,4)))),3)"
  },
  {
    "input": "input : list = [-5, -3, -4, 3]\noutput : list = [-5, -11, -12, -13]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(mul_n([-5, -3, -4, 3],1)),5),-3))",
    "io_inp": [
      -5,
      -3,
      -4,
      3
    ],
    "io_out": [
      -5,
      -11,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(mul_n(input,1)),5),-3))"
  },
  {
    "input": "input : list = [-3, 4, 1, -3, 3]\noutput : list = [-30, -30, 10, 30, 40]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(mul_n([-3, 4, 1, -3, 3],5)),2)),1)",
    "io_inp": [
      -3,
      4,
      1,
      -3,
      3
    ],
    "io_out": [
      -30,
      -30,
      10,
      30,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(mul_n(input,5)),2)),1)"
  },
  {
    "input": "input : list = [-2, -2, 3, 0, 5]\noutput : list = [9, 7, 4, 2]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse([-2, -2, 3, 0, 5])),-4),4)",
    "io_inp": [
      -2,
      -2,
      3,
      0,
      5
    ],
    "io_out": [
      9,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(input)),-4),4)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sort_des([-5, -3])),-2)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [-4, 2, 5, 1]\noutput : list = [8, 40, 16]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(drop([-4, 2, 5, 1],1),-2),7),-4))",
    "io_inp": [
      -4,
      2,
      5,
      1
    ],
    "io_out": [
      8,
      40,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(drop(input,1),-2),7),-4))"
  },
  {
    "input": "input : list = [0, 0, 1, 3]\noutput : list = [-85, -35, -10, -10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(mul_n([0, 0, 1, 3],-5),-2)),5))",
    "io_inp": [
      0,
      0,
      1,
      3
    ],
    "io_out": [
      -85,
      -35,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(mul_n(input,-5),-2)),5))"
  },
  {
    "input": "input : list = [4, 2, 5, 5]\noutput : list = [2, 0, 3, 3]",
    "output": "generated_output : list = sub_n([4, 2, 5, 5],2)",
    "io_inp": [
      4,
      2,
      5,
      5
    ],
    "io_out": [
      2,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sub_n([-3, 3],1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n([4, -1],3)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [-144, -64, -32]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(add_n([-3, 2, 4],-5),1),-4),-4),1)",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      -144,
      -64,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(add_n(input,-5),1),-4),-4),1)"
  },
  {
    "input": "input : list = [0, -1, 5, -3, -4]\noutput : list = [-4, -5, 1, -7, -8]",
    "output": "generated_output : list = sub_n([0, -1, 5, -3, -4],4)",
    "io_inp": [
      0,
      -1,
      5,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -5,
      1,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, 0, -5, 5, 2, 5]\noutput : list = [-2, 0, -5]",
    "output": "generated_output : list = take(reverse(reverse([-2, 0, -5, 5, 2, 5])),3)",
    "io_inp": [
      -2,
      0,
      -5,
      5,
      2,
      5
    ],
    "io_out": [
      -2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),3)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-13, -23, -16]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(sub_n([5, -5, 2],4),-3),2),4),5)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -13,
      -23,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(sub_n(input,4),-3),2),4),5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [6, 7]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(sub_n([0, -1],-2))),5),42)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(sub_n(input,-2))),5),42)"
  },
  {
    "input": "input : list = [5, 4, 0, 2, -2]\noutput : list = [9, 1]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(drop([5, 4, 0, 2, -2],3),-2),-5),37))",
    "io_inp": [
      5,
      4,
      0,
      2,
      -2
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(drop(input,3),-2),-5),37))"
  },
  {
    "input": "input : list = [5, -1, -5, -4, 1]\noutput : list = [16, 8, -4]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_des(take([5, -1, -5, -4, 1],3)),-3),-2))",
    "io_inp": [
      5,
      -1,
      -5,
      -4,
      1
    ],
    "io_out": [
      16,
      8,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_des(take(input,3)),-3),-2))"
  },
  {
    "input": "input : list = [-1, -3, 4, -5]\noutput : list = [10, 1]",
    "output": "generated_output : list = sort_des(sort_des(drop(sub_n(sub_n([-1, -3, 4, -5],-1),-5),2)))",
    "io_inp": [
      -1,
      -3,
      4,
      -5
    ],
    "io_out": [
      10,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(sub_n(sub_n(input,-1),-5),2)))"
  },
  {
    "input": "input : list = [3, 1, 4, 1, 0, -5]\noutput : list = [50, 34, 58, 34]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(take([3, 1, 4, 1, 0, -5],4),4),4),3),2)",
    "io_inp": [
      3,
      1,
      4,
      1,
      0,
      -5
    ],
    "io_out": [
      50,
      34,
      58,
      34
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(take(input,4),4),4),3),2)"
  },
  {
    "input": "input : list = [1, 2, 1, -1, 5, -5]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(reverse(take([1, 2, 1, -1, 5, -5],1)))",
    "io_inp": [
      1,
      2,
      1,
      -1,
      5,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-1, -3, 2, -4, -2, -5]\noutput : list = [-8, 4, 8, 12, 16, 20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_des([-1, -3, 2, -4, -2, -5])))),-4)",
    "io_inp": [
      -1,
      -3,
      2,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -8,
      4,
      8,
      12,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [4, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(take(sub_n([2, -5, -3],-2),14),13)))",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(sub_n(input,-2),14),13)))"
  },
  {
    "input": "input : list = [5, 2, 3, 2, 1]\noutput : list = [11, 8, 9, 8, 7]",
    "output": "generated_output : list = sub_n(sub_n([5, 2, 3, 2, 1],-3),-3)",
    "io_inp": [
      5,
      2,
      3,
      2,
      1
    ],
    "io_out": [
      11,
      8,
      9,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-3)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(reverse([-4, 4]))),20))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(reverse(input))),20))"
  },
  {
    "input": "input : list = [-4, 2, 3, -3, 1]\noutput : list = [-1, 0, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([-4, 2, 3, -3, 1]),3))",
    "io_inp": [
      -4,
      2,
      3,
      -3,
      1
    ],
    "io_out": [
      -1,
      0,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [4, 1, 1, 1, 4, 4]\noutput : list = [-4, -4, -4, -19, -19, -19]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(mul_n([4, 1, 1, 1, 4, 4],-5),11),-1),2))",
    "io_inp": [
      4,
      1,
      1,
      1,
      4,
      4
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -19,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(mul_n(input,-5),11),-1),2))"
  },
  {
    "input": "input : list = [4, -2, -1, 1, -1]\noutput : list = [4, 1, -1, -1, -2]",
    "output": "generated_output : list = sort_des([4, -2, -1, 1, -1])",
    "io_inp": [
      4,
      -2,
      -1,
      1,
      -1
    ],
    "io_out": [
      4,
      1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, 0, 1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 2, 0, 1],1)",
    "io_inp": [
      -1,
      2,
      0,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -5, 4, 0, -1]\noutput : list = [3, 0, -12, 15, -12]",
    "output": "generated_output : list = take(mul_n(reverse([4, -5, 4, 0, -1]),-3),30)",
    "io_inp": [
      4,
      -5,
      4,
      0,
      -1
    ],
    "io_out": [
      3,
      0,
      -12,
      15,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),-3),30)"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [5, -3, 5]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(sub_n([4, 0, 4],-3),2),-5),4),6)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      5,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(sub_n(input,-3),2),-5),4),6)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -11]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n([-3, 5],-2),-2)),3)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(input,-2),-2)),3)"
  },
  {
    "input": "input : list = [0, -3, 4, -2, 3, 2]\noutput : list = [0, 9, -12, 6]",
    "output": "generated_output : list = mul_n(take([0, -3, 4, -2, 3, 2],4),-3)",
    "io_inp": [
      0,
      -3,
      4,
      -2,
      3,
      2
    ],
    "io_out": [
      0,
      9,
      -12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),-3)"
  },
  {
    "input": "input : list = [0, 2, -2, -1]\noutput : list = [-2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc([0, 2, -2, -1])",
    "io_inp": [
      0,
      2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [-9, -5, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sort_asc([-1, -5, 3])))),-4)",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      -9,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [4, 4, -4, 3, 3, 0]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(take([4, 4, -4, 3, 3, 0],2))),40))",
    "io_inp": [
      4,
      4,
      -4,
      3,
      3,
      0
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(take(input,2))),40))"
  },
  {
    "input": "input : list = [1, -1, -1, -1]\noutput : list = [-5, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n([1, -1, -1, -1],-5))))",
    "io_inp": [
      1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -5,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(input,-5))))"
  },
  {
    "input": "input : list = [-1, -5, -5, -5]\noutput : list = [-9, -9, -9, -5]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(sort_asc([-1, -5, -5, -5]),-2),3),3),-4)",
    "io_inp": [
      -1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(sort_asc(input),-2),3),3),-4)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(sort_asc(take(drop(reverse([2, -3]),1),22)),-1)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(drop(reverse(input),1),22)),-1)"
  },
  {
    "input": "input : list = [0, -2, 0, -2, 2, 1]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sort_des(reverse(drop(mul_n([0, -2, 0, -2, 2, 1],-3),5))))",
    "io_inp": [
      0,
      -2,
      0,
      -2,
      2,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(drop(mul_n(input,-3),5))))"
  },
  {
    "input": "input : list = [-5, -2, -2, 4, 2, 3]\noutput : list = [32, 17, 17, -13, -3, -8]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n([-5, -2, -2, 4, 2, 3],-4),3),-5),-2)",
    "io_inp": [
      -5,
      -2,
      -2,
      4,
      2,
      3
    ],
    "io_out": [
      32,
      17,
      17,
      -13,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(input,-4),3),-5),-2)"
  },
  {
    "input": "input : list = [-4, 0, 1, -5]\noutput : list = [1, 3, 11, 13]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(add_n([-4, 0, 1, -5],4))),2),-3)",
    "io_inp": [
      -4,
      0,
      1,
      -5
    ],
    "io_out": [
      1,
      3,
      11,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(add_n(input,4))),2),-3)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(sort_des([0, 2]))),-3),-2)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(sort_des(input))),-3),-2)"
  },
  {
    "input": "input : list = [3, -1, 1, -2]\noutput : list = [-6, -2, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(reverse([3, -1, 1, -2]),-2))))",
    "io_inp": [
      3,
      -1,
      1,
      -2
    ],
    "io_out": [
      -6,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [-5, -4, -3, -4]\noutput : list = [-21, -16, -16, -11]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(mul_n([-5, -4, -3, -4],5)),4)))",
    "io_inp": [
      -5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -21,
      -16,
      -16,
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(mul_n(input,5)),4)))"
  },
  {
    "input": "input : list = [1, 5, 2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = drop([1, 5, 2, -4],2)",
    "io_inp": [
      1,
      5,
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -5, 4, -3, 4, -1]\noutput : list = [-5, -3, -2, -1, 4, 4]",
    "output": "generated_output : list = sort_asc([-2, -5, 4, -3, 4, -1])",
    "io_inp": [
      -2,
      -5,
      4,
      -3,
      4,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -2, -3, -5, 3]\noutput : list = [3, 2, 7, 8, 10, 2]",
    "output": "generated_output : list = sub_n(mul_n([2, 3, -2, -3, -5, 3],-1),-5)",
    "io_inp": [
      2,
      3,
      -2,
      -3,
      -5,
      3
    ],
    "io_out": [
      3,
      2,
      7,
      8,
      10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),-5)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [1, 5, 7]",
    "output": "generated_output : list = sub_n([-3, 1, 3],-4)",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 4, 1]\noutput : list = [4, 1, -2]",
    "output": "generated_output : list = sort_des([-2, 4, 1])",
    "io_inp": [
      -2,
      4,
      1
    ],
    "io_out": [
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, 2, -1]\noutput : list = [3, 12]",
    "output": "generated_output : list = take(mul_n(take(take(take([1, 4, 2, -1],2),12),19),3),17)",
    "io_inp": [
      1,
      4,
      2,
      -1
    ],
    "io_out": [
      3,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(take(input,2),12),19),3),17)"
  },
  {
    "input": "input : list = [3, -1, 2, 3]\noutput : list = [-18, -9, -6, -6]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sort_asc([3, -1, 2, 3])),-5),3))",
    "io_inp": [
      3,
      -1,
      2,
      3
    ],
    "io_out": [
      -18,
      -9,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sort_asc(input)),-5),3))"
  },
  {
    "input": "input : list = [4, 2, -3, 3, 3]\noutput : list = [0, -2]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(take([4, 2, -3, 3, 3],2),-4),5),10),3)",
    "io_inp": [
      4,
      2,
      -3,
      3,
      3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(take(input,2),-4),5),10),3)"
  },
  {
    "input": "input : list = [-3, -1, -4, 2, -5]\noutput : list = [5, 2, 0, -1, -2]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_asc([-3, -1, -4, 2, -5])),-3)))",
    "io_inp": [
      -3,
      -1,
      -4,
      2,
      -5
    ],
    "io_out": [
      5,
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [-1, 3, 4, 4]\noutput : list = [4, 4, 3, -1]",
    "output": "generated_output : list = sort_des([-1, 3, 4, 4])",
    "io_inp": [
      -1,
      3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, 4, 0]\noutput : list = [-60, -60, 60, 0]",
    "output": "generated_output : list = mul_n(mul_n([-4, -4, 4, 0],-5),-3)",
    "io_inp": [
      -4,
      -4,
      4,
      0
    ],
    "io_out": [
      -60,
      -60,
      60,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-1, 1, -2, -5, 3]\noutput : list = [30, 20, 10, 5, -10]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc([-1, 1, -2, -5, 3]),1),3),5))",
    "io_inp": [
      -1,
      1,
      -2,
      -5,
      3
    ],
    "io_out": [
      30,
      20,
      10,
      5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc(input),1),3),5))"
  },
  {
    "input": "input : list = [2, -3, -5, 2]\noutput : list = [-1, -1, -11, -15]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(sub_n([2, -3, -5, 2],1),13),2),3))",
    "io_inp": [
      2,
      -3,
      -5,
      2
    ],
    "io_out": [
      -1,
      -1,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(sub_n(input,1),13),2),3))"
  },
  {
    "input": "input : list = [4, 2, -2, -3, 4]\noutput : list = [-2, -1, 3, 5, 5]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(sort_asc([4, 2, -2, -3, 4])),1)),9)",
    "io_inp": [
      4,
      2,
      -2,
      -3,
      4
    ],
    "io_out": [
      -2,
      -1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(sort_asc(input)),1)),9)"
  },
  {
    "input": "input : list = [-3, -5, -5, -5, 4, -1]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(take(add_n([-3, -5, -5, -5, 4, -1],2),1),-2)",
    "io_inp": [
      -3,
      -5,
      -5,
      -5,
      4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,2),1),-2)"
  },
  {
    "input": "input : list = [3, -1, 3, 0, 0]\noutput : list = [-10, -10, -4, -4, -2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(mul_n([3, -1, 3, 0, 0],-2),4))))",
    "io_inp": [
      3,
      -1,
      3,
      0,
      0
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(mul_n(input,-2),4))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc([-4, 4])),13))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(input)),13))"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [7, 5, -1]",
    "output": "generated_output : list = sub_n([3, 1, -5],-4)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      7,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 0, 4, -5]\noutput : list = [0, -4, -9]",
    "output": "generated_output : list = reverse(take(sort_asc(add_n(drop([-4, 0, 4, -5],1),-4)),17))",
    "io_inp": [
      -4,
      0,
      4,
      -5
    ],
    "io_out": [
      0,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(add_n(drop(input,1),-4)),17))"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [-26, -6, -1]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(mul_n([-5, -1, 0],5)),-2)),1)",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      -26,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(mul_n(input,5)),-2)),1)"
  },
  {
    "input": "input : list = [2, -1, 0, -5, 0, 5]\noutput : list = [5, 0, -5]",
    "output": "generated_output : list = sort_des(reverse(drop(add_n(sub_n([2, -1, 0, -5, 0, 5],-3),-3),3)))",
    "io_inp": [
      2,
      -1,
      0,
      -5,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(add_n(sub_n(input,-3),-3),3)))"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(take([-2, -4, -3],1),9)),-5))",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(take(input,1),9)),-5))"
  },
  {
    "input": "input : list = [-2, 3, -5, 5, 2, -1]\noutput : list = [3, -5, 5, 2, -1]",
    "output": "generated_output : list = drop([-2, 3, -5, 5, 2, -1],1)",
    "io_inp": [
      -2,
      3,
      -5,
      5,
      2,
      -1
    ],
    "io_out": [
      3,
      -5,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 0, -3, -2]\noutput : list = [3, 1, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_asc([-4, 0, -3, -2])),-1),-2))",
    "io_inp": [
      -4,
      0,
      -3,
      -2
    ],
    "io_out": [
      3,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_asc(input)),-1),-2))"
  },
  {
    "input": "input : list = [-2, -5, -2, -4]\noutput : list = [-3, 0, -2]",
    "output": "generated_output : list = sub_n(drop([-2, -5, -2, -4],1),-2)",
    "io_inp": [
      -2,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(mul_n([-1, -1],-5),-2),-2),-2),3)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(mul_n(input,-5),-2),-2),-2),3)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [1, -1, -1]",
    "output": "generated_output : list = take(sub_n(mul_n([3, 5, 5],-1),-4),22)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,-1),-4),22)"
  },
  {
    "input": "input : list = [-5, 3, 3, -5, 4]\noutput : list = [-20, 12, 12, -20, 16]",
    "output": "generated_output : list = mul_n([-5, 3, 3, -5, 4],4)",
    "io_inp": [
      -5,
      3,
      3,
      -5,
      4
    ],
    "io_out": [
      -20,
      12,
      12,
      -20,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, -2, 0, 1, 0, -4]\noutput : list = [-4, -4, -2, 0, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc([-4, -2, 0, 1, 0, -4]))))",
    "io_inp": [
      -4,
      -2,
      0,
      1,
      0,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [-5, -3, 3, -5, 5, -5]\noutput : list = [-1, 1, 7, 9, 9, 9]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(add_n([-5, -3, 3, -5, 5, -5],-2),2)),-1))",
    "io_inp": [
      -5,
      -3,
      3,
      -5,
      5,
      -5
    ],
    "io_out": [
      -1,
      1,
      7,
      9,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(add_n(input,-2),2)),-1))"
  },
  {
    "input": "input : list = [-4, 3, -1]\noutput : list = [11, 7, 4]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(reverse([-4, 3, -1])),5),3),15)",
    "io_inp": [
      -4,
      3,
      -1
    ],
    "io_out": [
      11,
      7,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(reverse(input)),5),3),15)"
  },
  {
    "input": "input : list = [-4, -4, -1, 0]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(drop([-4, -4, -1, 0],2),-2)",
    "io_inp": [
      -4,
      -4,
      -1,
      0
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [1, 4, -1, 4, 5, -5]\noutput : list = [-375, -300, -300, -75, 75, 375]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(reverse([1, 4, -1, 4, 5, -5]),5)),3),-5)",
    "io_inp": [
      1,
      4,
      -1,
      4,
      5,
      -5
    ],
    "io_out": [
      -375,
      -300,
      -300,
      -75,
      75,
      375
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(reverse(input),5)),3),-5)"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [-1, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([2, -1, -1]))",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [-11, -16, -17]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(sub_n([2, -4, -3],3),5)),-5))",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      -11,
      -16,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(sub_n(input,3),5)),-5))"
  },
  {
    "input": "input : list = [1, -5, 4, 0, 5, -4]\noutput : list = [7, 6, 3, 2, -2, -3]",
    "output": "generated_output : list = add_n(sort_des([1, -5, 4, 0, 5, -4]),2)",
    "io_inp": [
      1,
      -5,
      4,
      0,
      5,
      -4
    ],
    "io_out": [
      7,
      6,
      3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [3, 5, -2, 1, -5]\noutput : list = [5, 3, 1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc([3, 5, -2, 1, -5]))",
    "io_inp": [
      3,
      5,
      -2,
      1,
      -5
    ],
    "io_out": [
      5,
      3,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 5, 0, 0, 5, 2]\noutput : list = [6, 6, 6, 3, 1, 1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(sub_n([5, 5, 0, 0, 5, 2],-5),6),4)))",
    "io_inp": [
      5,
      5,
      0,
      0,
      5,
      2
    ],
    "io_out": [
      6,
      6,
      6,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(sub_n(input,-5),6),4)))"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [-6, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(add_n([-1, 3, 4],-2),18),-2),-5))",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(add_n(input,-2),18),-2),-5))"
  },
  {
    "input": "input : list = [2, 0, -2, -5]\noutput : list = [-4, 0, 4, 10]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(reverse([2, 0, -2, -5]),2),-2),4))",
    "io_inp": [
      2,
      0,
      -2,
      -5
    ],
    "io_out": [
      -4,
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(reverse(input),2),-2),4))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse([-2, -3])",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, 3, 2, 1, -2]\noutput : list = [-2, -1, 2, 1, 0, -3]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse([-1, 0, 3, 2, 1, -2])),3),-4)",
    "io_inp": [
      -1,
      0,
      3,
      2,
      1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(input)),3),-4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sort_des([1, 1]),1))),5)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sort_des(input),1))),5)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n(mul_n(take(take(add_n([0, 2],-2),13),22),-2),-1)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(add_n(input,-2),13),22),-2),-1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(reverse([-3, -5])),1))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(reverse(input)),1))"
  },
  {
    "input": "input : list = [-2, -4, -2, 4]\noutput : list = [-5, -7, -5, 1]",
    "output": "generated_output : list = sub_n([-2, -4, -2, 4],3)",
    "io_inp": [
      -2,
      -4,
      -2,
      4
    ],
    "io_out": [
      -5,
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 5, 4, -4, 4]\noutput : list = [1, 0, 0, -3, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(sort_asc([1, 5, 4, -4, 4]))),-4))",
    "io_inp": [
      1,
      5,
      4,
      -4,
      4
    ],
    "io_out": [
      1,
      0,
      0,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [2, -5, 2, 2, 3, -2]\noutput : list = [-5, -2, 2, 2, 2, 3]",
    "output": "generated_output : list = reverse(take(sort_des(take(sort_asc([2, -5, 2, 2, 3, -2]),14)),25))",
    "io_inp": [
      2,
      -5,
      2,
      2,
      3,
      -2
    ],
    "io_out": [
      -5,
      -2,
      2,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(sort_asc(input),14)),25))"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [-3, 15]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(sort_des([2, -5, 1]),-3)),2))",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      -3,
      15
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(sort_des(input),-3)),2))"
  },
  {
    "input": "input : list = [-1, 1, 4, 0, 2, 2]\noutput : list = [5, 6, 7, 8, 8, 10]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(sub_n([-1, 1, 4, 0, 2, 2],-2))),4))",
    "io_inp": [
      -1,
      1,
      4,
      0,
      2,
      2
    ],
    "io_out": [
      5,
      6,
      7,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(sub_n(input,-2))),4))"
  },
  {
    "input": "input : list = [-1, 4, -1, -1]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(take([-1, 4, -1, -1],2)),10),-1),-2)",
    "io_inp": [
      -1,
      4,
      -1,
      -1
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(take(input,2)),10),-1),-2)"
  },
  {
    "input": "input : list = [2, 1, -3]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_des(take([2, 1, -3],1)),-3)",
    "io_inp": [
      2,
      1,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-3)"
  },
  {
    "input": "input : list = [-5, -3, -4, 3]\noutput : list = [1, -5, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sub_n([-5, -3, -4, 3],5))),-3))",
    "io_inp": [
      -5,
      -3,
      -4,
      3
    ],
    "io_out": [
      1,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sub_n(input,5))),-3))"
  },
  {
    "input": "input : list = [5, -1, 3, -2, -2, 0]\noutput : list = [5, -1, 3, -2]",
    "output": "generated_output : list = take([5, -1, 3, -2, -2, 0],4)",
    "io_inp": [
      5,
      -1,
      3,
      -2,
      -2,
      0
    ],
    "io_out": [
      5,
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [1, -2, 3, 5, -1, -1]\noutput : list = [-2, -1, -1, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_des(drop([1, -2, 3, 5, -1, -1],1)))))",
    "io_inp": [
      1,
      -2,
      3,
      5,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(take([2, -1, 3],1),-3)",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [4, -5, -2, -3]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(add_n(take([4, -5, -2, -3],1),5))",
    "io_inp": [
      4,
      -5,
      -2,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,1),5))"
  },
  {
    "input": "input : list = [1, -3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(drop([1, -3, 1],1))",
    "io_inp": [
      1,
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [3, -4, 1, -2]\noutput : list = [19, 9, -6, -16]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sort_des([3, -4, 1, -2])),1),5),-4)",
    "io_inp": [
      3,
      -4,
      1,
      -2
    ],
    "io_out": [
      19,
      9,
      -6,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sort_des(input)),1),5),-4)"
  },
  {
    "input": "input : list = [-5, 4, 0, -3, 0, -5]\noutput : list = [-10, -5, -8, -5, -1, -10]",
    "output": "generated_output : list = reverse(mul_n(take(add_n([-5, 4, 0, -3, 0, -5],-5),9),1))",
    "io_inp": [
      -5,
      4,
      0,
      -3,
      0,
      -5
    ],
    "io_out": [
      -10,
      -5,
      -8,
      -5,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(input,-5),9),1))"
  },
  {
    "input": "input : list = [1, 2, -1, 0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = drop([1, 2, -1, 0, 5],3)",
    "io_inp": [
      1,
      2,
      -1,
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, -5, 5, -3, 3, -4]\noutput : list = [0, -5, 5, -3]",
    "output": "generated_output : list = take([0, -5, 5, -3, 3, -4],4)",
    "io_inp": [
      0,
      -5,
      5,
      -3,
      3,
      -4
    ],
    "io_out": [
      0,
      -5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-1, -2, -1, -2, -4, 4]\noutput : list = [-40, -20, -20, -10, -10, 40]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(reverse([-1, -2, -1, -2, -4, 4]),9),-2),-5))",
    "io_inp": [
      -1,
      -2,
      -1,
      -2,
      -4,
      4
    ],
    "io_out": [
      -40,
      -20,
      -20,
      -10,
      -10,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(reverse(input),9),-2),-5))"
  },
  {
    "input": "input : list = [-4, 1, -1, -1, 1]\noutput : list = [13, 7, 7, 3, 3]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n(sort_asc([-4, 1, -1, -1, 1]),-2),3),3),-5)",
    "io_inp": [
      -4,
      1,
      -1,
      -1,
      1
    ],
    "io_out": [
      13,
      7,
      7,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(sort_asc(input),-2),3),3),-5)"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-3, -8, -6]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(reverse([-3, -5, 0])),-1)),-4)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -3,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(reverse(input)),-1)),-4)"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = drop([1, 2, -5],1)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -2, -4, -4, 2, -2]\noutput : list = [-4, -4, -2, -2, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(drop([4, -2, -4, -4, 2, -2],1)))))",
    "io_inp": [
      4,
      -2,
      -4,
      -4,
      2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [5, -3, -2, 2, -2]\noutput : list = [-8, 24]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(drop(reverse([5, -3, -2, 2, -2]),3)),4),-4)",
    "io_inp": [
      5,
      -3,
      -2,
      2,
      -2
    ],
    "io_out": [
      -8,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(drop(reverse(input),3)),4),-4)"
  },
  {
    "input": "input : list = [4, 3, -5, 2, -2, 3]\noutput : list = [-8, 8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(drop([4, 3, -5, 2, -2, 3],3))),4))",
    "io_inp": [
      4,
      3,
      -5,
      2,
      -2,
      3
    ],
    "io_out": [
      -8,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(drop(input,3))),4))"
  },
  {
    "input": "input : list = [3, 3, 5]\noutput : list = [5, 3, 3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_asc([3, 3, 5])))))",
    "io_inp": [
      3,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -2, -2, -4, 4, -5]\noutput : list = [7, 3, 3, 1, 9, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(add_n([2, -2, -2, -4, 4, -5],3),20),-4),4),2)",
    "io_inp": [
      2,
      -2,
      -2,
      -4,
      4,
      -5
    ],
    "io_out": [
      7,
      3,
      3,
      1,
      9,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(add_n(input,3),20),-4),4),2)"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [10, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(drop([3, -5, 2],1))),-2))",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      10,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(drop(input,1))),-2))"
  },
  {
    "input": "input : list = [3, 5, -4]\noutput : list = [2, -7]",
    "output": "generated_output : list = add_n(add_n(sort_des(drop([3, 5, -4],1)),-4),1)",
    "io_inp": [
      3,
      5,
      -4
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(drop(input,1)),-4),1)"
  },
  {
    "input": "input : list = [5, -5, 1, 0]\noutput : list = [-6, -1, 0, 4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(sort_asc([5, -5, 1, 0]),-3))),-2)",
    "io_inp": [
      5,
      -5,
      1,
      0
    ],
    "io_out": [
      -6,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(sort_asc(input),-3))),-2)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, -8]",
    "output": "generated_output : list = add_n(reverse([-3, 2]),-5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [7, 4]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(sort_asc([2, 5])))),2)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [-4, 1, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(sort_des(take(drop(sort_des([-4, 1, -4]),1),21)),-4)",
    "io_inp": [
      -4,
      1,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(drop(sort_des(input),1),21)),-4)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [3, -4]",
    "output": "generated_output : list = take(reverse(mul_n(add_n([-5, 2],1),1)),10)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(input,1),1)),10)"
  },
  {
    "input": "input : list = [5, -5, 3]\noutput : list = [4, -28, 12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(mul_n([5, -5, 3],-2),14),-4),-2))",
    "io_inp": [
      5,
      -5,
      3
    ],
    "io_out": [
      4,
      -28,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(mul_n(input,-2),14),-4),-2))"
  },
  {
    "input": "input : list = [4, -5, 0, 3, -2]\noutput : list = [-8, 10, 0, -6, 4]",
    "output": "generated_output : list = mul_n([4, -5, 0, 3, -2],-2)",
    "io_inp": [
      4,
      -5,
      0,
      3,
      -2
    ],
    "io_out": [
      -8,
      10,
      0,
      -6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, -2, -4, 1]\noutput : list = [-4, -2, 1]",
    "output": "generated_output : list = sort_asc(drop([4, -2, -4, 1],1))",
    "io_inp": [
      4,
      -2,
      -4,
      1
    ],
    "io_out": [
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-2, -1, -5, -1, 1]\noutput : list = [8, 4, 4, 2, -4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(sort_des([-2, -1, -5, -1, 1]),3))),2)",
    "io_inp": [
      -2,
      -1,
      -5,
      -1,
      1
    ],
    "io_out": [
      8,
      4,
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(sort_des(input),3))),2)"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [1, -4, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(reverse([5, -2, 0])),4)))",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(reverse(input)),4)))"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [-3, 3, 5]",
    "output": "generated_output : list = reverse(sort_des([3, -3, 5]))",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -1, 1, -1]\noutput : list = [-4, -6, -6]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(drop([-1, -1, 1, -1],1),5),25)))",
    "io_inp": [
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(drop(input,1),5),25)))"
  },
  {
    "input": "input : list = [2, -4, -1, 1, -5, -4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -4, -1, 1, -5, -4],1)",
    "io_inp": [
      2,
      -4,
      -1,
      1,
      -5,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -3, -3, -2, -2, -3]\noutput : list = [10, 15, 15, 15]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(take([-3, -3, -3, -2, -2, -3],4)))),-5)",
    "io_inp": [
      -3,
      -3,
      -3,
      -2,
      -2,
      -3
    ],
    "io_out": [
      10,
      15,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(take(input,4)))),-5)"
  },
  {
    "input": "input : list = [2, 4, 0, 1, 4]\noutput : list = [-3, -1, -5, -4, -1]",
    "output": "generated_output : list = sub_n(add_n([2, 4, 0, 1, 4],-4),1)",
    "io_inp": [
      2,
      4,
      0,
      1,
      4
    ],
    "io_out": [
      -3,
      -1,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),1)"
  },
  {
    "input": "input : list = [4, -1, -4, -4, 1]\noutput : list = [5, 0, -3, -3, 2]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(reverse([4, -1, -4, -4, 1]),2),3),25))",
    "io_inp": [
      4,
      -1,
      -4,
      -4,
      1
    ],
    "io_out": [
      5,
      0,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(reverse(input),2),3),25))"
  },
  {
    "input": "input : list = [4, 4, -5, -2, 0, 4]\noutput : list = [0, 4, 4, 4]",
    "output": "generated_output : list = reverse(reverse(drop(sort_asc(sort_des([4, 4, -5, -2, 0, 4])),2)))",
    "io_inp": [
      4,
      4,
      -5,
      -2,
      0,
      4
    ],
    "io_out": [
      0,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(sort_asc(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = reverse([4, -5])",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = add_n(take(add_n([-4, 0],2),5),-2)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,2),5),-2)"
  },
  {
    "input": "input : list = [5, 1, -5, -5]\noutput : list = [-25, -5, 25, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse([5, 1, -5, -5]),9)),-5))",
    "io_inp": [
      5,
      1,
      -5,
      -5
    ],
    "io_out": [
      -25,
      -5,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse(input),9)),-5))"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [7, 8, 8]",
    "output": "generated_output : list = sort_asc(add_n([3, 4, 4],4))",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [2, 2, 4, 4, -4]\noutput : list = [-20, 20, 20, 10, 10]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n([2, 2, 4, 4, -4],5),-5)),5)",
    "io_inp": [
      2,
      2,
      4,
      4,
      -4
    ],
    "io_out": [
      -20,
      20,
      20,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(input,5),-5)),5)"
  },
  {
    "input": "input : list = [-2, 5, -4, -4]\noutput : list = [-300, 120, 240, 240]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(reverse([-2, 5, -4, -4]),-4),3)),5)",
    "io_inp": [
      -2,
      5,
      -4,
      -4
    ],
    "io_out": [
      -300,
      120,
      240,
      240
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(reverse(input),-4),3)),5)"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [3]",
    "output": "generated_output : list = reverse(mul_n(add_n(take([-4, -4, -5],1),5),3))",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(input,1),5),3))"
  },
  {
    "input": "input : list = [-3, 1, -4, -2, 5, -1]\noutput : list = [8, 4, 2, 1, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des([-3, 1, -4, -2, 5, -1]),-3)",
    "io_inp": [
      -3,
      1,
      -4,
      -2,
      5,
      -1
    ],
    "io_out": [
      8,
      4,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(reverse([5, 3, 1])),5),21))",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(reverse(input)),5),21))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([1, -3]),-2))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-4, 1, 4, 2]\noutput : list = [-12, -7, -4, -6]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(reverse([-4, 1, 4, 2]),11)),5),-3)",
    "io_inp": [
      -4,
      1,
      4,
      2
    ],
    "io_out": [
      -12,
      -7,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(reverse(input),11)),5),-3)"
  },
  {
    "input": "input : list = [4, 5, 2, -5, 3]\noutput : list = [4, 5]",
    "output": "generated_output : list = take([4, 5, 2, -5, 3],2)",
    "io_inp": [
      4,
      5,
      2,
      -5,
      3
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 4, 0, 3, 5, 2]\noutput : list = [6, -1, 3, 0, -2, 1]",
    "output": "generated_output : list = mul_n(sub_n([-3, 4, 0, 3, 5, 2],3),-1)",
    "io_inp": [
      -3,
      4,
      0,
      3,
      5,
      2
    ],
    "io_out": [
      6,
      -1,
      3,
      0,
      -2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-1)"
  },
  {
    "input": "input : list = [5, -2, -3, -2, 3]\noutput : list = [7, 4, 4, -11, -17]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(reverse([5, -2, -3, -2, 3]),-3)),2))",
    "io_inp": [
      5,
      -2,
      -3,
      -2,
      3
    ],
    "io_out": [
      7,
      4,
      4,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(reverse(input),-3)),2))"
  },
  {
    "input": "input : list = [1, -2, 3, 2]\noutput : list = [-2, 1, 2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(sort_des([1, -2, 3, 2]),12))),35)",
    "io_inp": [
      1,
      -2,
      3,
      2
    ],
    "io_out": [
      -2,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(sort_des(input),12))),35)"
  },
  {
    "input": "input : list = [0, 3, -5, -3, -1, -5]\noutput : list = [-4, -1, -9, -7, -5, -9]",
    "output": "generated_output : list = add_n([0, 3, -5, -3, -1, -5],-4)",
    "io_inp": [
      0,
      3,
      -5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -4,
      -1,
      -9,
      -7,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -1, 2, -2]\noutput : list = [-2, 2, -1, -3]",
    "output": "generated_output : list = take(reverse(reverse(reverse([-3, -1, 2, -2]))),6)",
    "io_inp": [
      -3,
      -1,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(input))),6)"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [-64, 71, 26]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(reverse([-4, 5, 2])),5),3),4)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      -64,
      71,
      26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(reverse(input)),5),3),4)"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [0, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(sub_n([0, -1, -4],3),-3),15)))",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(sub_n(input,3),-3),15)))"
  },
  {
    "input": "input : list = [-5, -5, -5, -4]\noutput : list = [10, 8]",
    "output": "generated_output : list = mul_n(drop([-5, -5, -5, -4],2),-2)",
    "io_inp": [
      -5,
      -5,
      -5,
      -4
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [10, 10]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(mul_n([2, 2],5)))))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [6, 10, 0]",
    "output": "generated_output : list = take(add_n([1, 5, -5],5),9)",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      6,
      10,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),9)"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 0, 2],1)",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -1, 0, -2, -2]\noutput : list = [8, 0, -4, -8, -8]",
    "output": "generated_output : list = reverse(sort_asc(take(take(mul_n([2, -1, 0, -2, -2],4),24),9)))",
    "io_inp": [
      2,
      -1,
      0,
      -2,
      -2
    ],
    "io_out": [
      8,
      0,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(mul_n(input,4),24),9)))"
  },
  {
    "input": "input : list = [-1, -3, 1, 4]\noutput : list = [-1, -3, 1, 4]",
    "output": "generated_output : list = reverse(reverse([-1, -3, 1, 4]))",
    "io_inp": [
      -1,
      -3,
      1,
      4
    ],
    "io_out": [
      -1,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sub_n([0, -2, -3],-3)",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 3, 2, 5]\noutput : list = [-4, -2, 0, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(sort_des([1, 3, 2, 5]),-3),2)),37)",
    "io_inp": [
      1,
      3,
      2,
      5
    ],
    "io_out": [
      -4,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(sort_des(input),-3),2)),37)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(sort_asc([-3, 5]))),9),1)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(sort_asc(input))),9),1)"
  },
  {
    "input": "input : list = [-4, 3, -3, 2, 0, -5]\noutput : list = [41, 36, 31, 16, 6, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(sub_n([-4, 3, -3, 2, 0, -5],3),-5)),5),4)",
    "io_inp": [
      -4,
      3,
      -3,
      2,
      0,
      -5
    ],
    "io_out": [
      41,
      36,
      31,
      16,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(sub_n(input,3),-5)),5),4)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [7, -11]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sub_n([3, -3],3),3),21),3),4)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sub_n(input,3),3),21),3),4)"
  },
  {
    "input": "input : list = [-4, -3, 2]\noutput : list = [45, 20, 15]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(sort_des([-4, -3, 2]),15),4),3),5)",
    "io_inp": [
      -4,
      -3,
      2
    ],
    "io_out": [
      45,
      20,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(sort_des(input),15),4),3),5)"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [-3, -4, 2]",
    "output": "generated_output : list = add_n([-4, -5, 1],1)",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      -3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -3, -1, 1, 2]\noutput : list = [12, 8, 4, -4, -8]",
    "output": "generated_output : list = take(sort_des(mul_n([-2, -3, -1, 1, 2],-4)),31)",
    "io_inp": [
      -2,
      -3,
      -1,
      1,
      2
    ],
    "io_out": [
      12,
      8,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,-4)),31)"
  },
  {
    "input": "input : list = [-5, -5, -5, 0, -2]\noutput : list = [15, 9, 0, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_des([-5, -5, -5, 0, -2]),-5))),3)",
    "io_inp": [
      -5,
      -5,
      -5,
      0,
      -2
    ],
    "io_out": [
      15,
      9,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_des(input),-5))),3)"
  },
  {
    "input": "input : list = [3, 5, 4, -5, -4, -2]\noutput : list = [11, 13, 12, 3, 4, 6]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(add_n([3, 5, 4, -5, -4, -2],3),23))),-5)",
    "io_inp": [
      3,
      5,
      4,
      -5,
      -4,
      -2
    ],
    "io_out": [
      11,
      13,
      12,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(add_n(input,3),23))),-5)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(add_n([-2, -3],-2),4))),-3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(add_n(input,-2),4))),-3)"
  },
  {
    "input": "input : list = [4, 4, 5, 1, 5]\noutput : list = [15, 15, 20, 0, 20]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(mul_n([4, 4, 5, 1, 5],5))),-4),1)",
    "io_inp": [
      4,
      4,
      5,
      1,
      5
    ],
    "io_out": [
      15,
      15,
      20,
      0,
      20
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(mul_n(input,5))),-4),1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-7, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([4, -4])),-3)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [2, 2, -2, 4, 5]\noutput : list = [4, 3, -3, 1, 1]",
    "output": "generated_output : list = add_n(reverse([2, 2, -2, 4, 5]),-1)",
    "io_inp": [
      2,
      2,
      -2,
      4,
      5
    ],
    "io_out": [
      4,
      3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sub_n([4, 3],4),10),15),-1))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sub_n(input,4),10),15),-1))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(take(take(add_n(reverse([-2, 0]),-2),10),12))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(reverse(input),-2),10),12))"
  },
  {
    "input": "input : list = [-2, 5, 3]\noutput : list = [-32, -24, -4]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(sort_asc([-2, 5, 3]),2)),-4),-4)",
    "io_inp": [
      -2,
      5,
      3
    ],
    "io_out": [
      -32,
      -24,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(sort_asc(input),2)),-4),-4)"
  },
  {
    "input": "input : list = [4, 0, -3, 4, -1, 3]\noutput : list = [-2, -2, -1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([4, 0, -3, 4, -1, 3],-2),-1))",
    "io_inp": [
      4,
      0,
      -3,
      4,
      -1,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,-2),-1))"
  },
  {
    "input": "input : list = [-4, -5, 5, 4, 2]\noutput : list = [40]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(take([-4, -5, 5, 4, 2],1),-2),5),-1),-1)",
    "io_inp": [
      -4,
      -5,
      5,
      4,
      2
    ],
    "io_out": [
      40
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(take(input,1),-2),5),-1),-1)"
  },
  {
    "input": "input : list = [4, -5, -4, 3, 1, -5]\noutput : list = [14, 14, 10, -10, -18]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(drop([4, -5, -4, 3, 1, -5],1)),2),-4),-2)",
    "io_inp": [
      4,
      -5,
      -4,
      3,
      1,
      -5
    ],
    "io_out": [
      14,
      14,
      10,
      -10,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(drop(input,1)),2),-4),-2)"
  },
  {
    "input": "input : list = [5, 3, -5, 0]\noutput : list = [-4, 1, 4, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([5, 3, -5, 0]),1),1)",
    "io_inp": [
      5,
      3,
      -5,
      0
    ],
    "io_out": [
      -4,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),1),1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sort_asc([1, -5])),23)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sort_asc(input)),23)))"
  },
  {
    "input": "input : list = [-5, -5, 3, -2, -1, 4]\noutput : list = [-4, -4, 20]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n(take([-5, -5, 3, -2, -1, 4],3),3),3),-2))",
    "io_inp": [
      -5,
      -5,
      3,
      -2,
      -1,
      4
    ],
    "io_out": [
      -4,
      -4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(take(input,3),3),3),-2))"
  },
  {
    "input": "input : list = [-5, -2, -2]\noutput : list = [-9, -6]",
    "output": "generated_output : list = reverse(add_n(drop(sort_des(sub_n([-5, -2, -2],-1)),1),-5))",
    "io_inp": [
      -5,
      -2,
      -2
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(sort_des(sub_n(input,-1)),1),-5))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-8, -7]",
    "output": "generated_output : list = add_n([-5, -4],-3)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, -2, -1, 3, -1]\noutput : list = [-2, -1, -1, 3, 3]",
    "output": "generated_output : list = sort_asc([3, -2, -1, 3, -1])",
    "io_inp": [
      3,
      -2,
      -1,
      3,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [9, 7]",
    "output": "generated_output : list = reverse(add_n(sort_asc([5, 3]),4))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-2, 2, 5, 0, -4]\noutput : list = [8]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(take([-2, 2, 5, 0, -4],1))),-4))",
    "io_inp": [
      -2,
      2,
      5,
      0,
      -4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(take(input,1))),-4))"
  },
  {
    "input": "input : list = [-4, 1, -3, -1]\noutput : list = [-4, -12, 4, -16]",
    "output": "generated_output : list = take(take(reverse(mul_n([-4, 1, -3, -1],4)),31),15)",
    "io_inp": [
      -4,
      1,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -12,
      4,
      -16
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(input,4)),31),15)"
  },
  {
    "input": "input : list = [5, 0, 5, 1, 0]\noutput : list = [-3, -3, -7, -23, -23]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(mul_n([5, 0, 5, 1, 0],-4)),3)))",
    "io_inp": [
      5,
      0,
      5,
      1,
      0
    ],
    "io_out": [
      -3,
      -3,
      -7,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(mul_n(input,-4)),3)))"
  },
  {
    "input": "input : list = [4, 0, 4, 0, -5, 3]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(take([4, 0, 4, 0, -5, 3],2))",
    "io_inp": [
      4,
      0,
      4,
      0,
      -5,
      3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [0, -4, -4, 5]\noutput : list = [-3, -3, 1, 6]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_asc(sub_n([0, -4, -4, 5],5)),-3),5),-4)",
    "io_inp": [
      0,
      -4,
      -4,
      5
    ],
    "io_out": [
      -3,
      -3,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_asc(sub_n(input,5)),-3),5),-4)"
  },
  {
    "input": "input : list = [3, -1, -1, -5, -1, -2]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(add_n(drop(take(take([3, -1, -1, -5, -1, -2],3),4),2),5),1)",
    "io_inp": [
      3,
      -1,
      -1,
      -5,
      -1,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(take(take(input,3),4),2),5),1)"
  },
  {
    "input": "input : list = [-4, -1, 4, -3]\noutput : list = [1, 4, 9, 2]",
    "output": "generated_output : list = add_n([-4, -1, 4, -3],5)",
    "io_inp": [
      -4,
      -1,
      4,
      -3
    ],
    "io_out": [
      1,
      4,
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, -5, -5, -1, 2, -3]\noutput : list = [-5, -3, -1, 2]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(drop([-2, -5, -5, -1, 2, -3],2)),-2),-2),27)",
    "io_inp": [
      -2,
      -5,
      -5,
      -1,
      2,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(drop(input,2)),-2),-2),27)"
  },
  {
    "input": "input : list = [-5, 2, -2, 2, -3, 4]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(reverse(take([-5, 2, -2, 2, -3, 4],2)))",
    "io_inp": [
      -5,
      2,
      -2,
      2,
      -3,
      4
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [-3, 9, 9]",
    "output": "generated_output : list = mul_n([-1, 3, 3],3)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      -3,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 1, -3, 2, 5]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = take(drop(sort_des(sort_asc(sort_des([-4, 1, -3, 2, 5]))),2),28)",
    "io_inp": [
      -4,
      1,
      -3,
      2,
      5
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(sort_des(sort_asc(sort_des(input))),2),28)"
  },
  {
    "input": "input : list = [5, 3, -5, -2, 0, 3]\noutput : list = [-6, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(mul_n([5, 3, -5, -2, 0, 3],1),-1),3)))",
    "io_inp": [
      5,
      3,
      -5,
      -2,
      0,
      3
    ],
    "io_out": [
      -6,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(mul_n(input,1),-1),3)))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 5, 4, 5, 2]\noutput : list = [0]",
    "output": "generated_output : list = drop(sort_des(take(sort_asc([0, 4, 5, 4, 5, 2]),13)),5)",
    "io_inp": [
      0,
      4,
      5,
      4,
      5,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(sort_des(take(sort_asc(input),13)),5)"
  },
  {
    "input": "input : list = [-2, 4, 2, -5]\noutput : list = [24, 12, -12, -30]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc([-2, 4, 2, -5]),3),2))",
    "io_inp": [
      -2,
      4,
      2,
      -5
    ],
    "io_out": [
      24,
      12,
      -12,
      -30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(input),3),2))"
  },
  {
    "input": "input : list = [-2, 3, -2, 2, -5, -3]\noutput : list = [-3, -1, 0, 0, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des(reverse([-2, 3, -2, 2, -5, -3])),33)),2)",
    "io_inp": [
      -2,
      3,
      -2,
      2,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(reverse(input)),33)),2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(mul_n([-1, -2],2)),5),-5),22)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(mul_n(input,2)),5),-5),22)"
  },
  {
    "input": "input : list = [0, 5, -5, -1]\noutput : list = [5, 0, -1, -5]",
    "output": "generated_output : list = take(add_n(take(add_n(sort_des([0, 5, -5, -1]),5),22),-5),37)",
    "io_inp": [
      0,
      5,
      -5,
      -1
    ],
    "io_out": [
      5,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(sort_des(input),5),22),-5),37)"
  },
  {
    "input": "input : list = [4, -2, -4, 5, 1]\noutput : list = [3, 7, -2, 0, 6]",
    "output": "generated_output : list = reverse(add_n([4, -2, -4, 5, 1],2))",
    "io_inp": [
      4,
      -2,
      -4,
      5,
      1
    ],
    "io_out": [
      3,
      7,
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [-5, 5, -5, 3, 5, 3]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take(take([-5, 5, -5, 3, 5, 3],2),19)",
    "io_inp": [
      -5,
      5,
      -5,
      3,
      5,
      3
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(take(input,2),19)"
  },
  {
    "input": "input : list = [-5, -3, -4, -1]\noutput : list = [-3, -5]",
    "output": "generated_output : list = reverse(take([-5, -3, -4, -1],2))",
    "io_inp": [
      -5,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [0, 4, 2, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 4, 2, -2],1)",
    "io_inp": [
      0,
      4,
      2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-12, -11]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(reverse([-3, -4]),-3),21),5),1)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -12,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(reverse(input),-3),21),5),1)"
  },
  {
    "input": "input : list = [5, -4, 5, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(take(take([5, -4, 5, 5],2),2))",
    "io_inp": [
      5,
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,2),2))"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = sort_asc([4, 0, -1])",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, -1, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -3, -1, -5],1)",
    "io_inp": [
      -5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(sort_asc([-5, -5]),-2),19),1))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(sort_asc(input),-2),19),1))"
  },
  {
    "input": "input : list = [-1, 3, 0, -4, -1, 1]\noutput : list = [0, -4, -1, 1]",
    "output": "generated_output : list = drop([-1, 3, 0, -4, -1, 1],2)",
    "io_inp": [
      -1,
      3,
      0,
      -4,
      -1,
      1
    ],
    "io_out": [
      0,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -4, 0, -5, 4, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(drop([4, -4, 0, -5, 4, -5],1),-1),-1)),1)",
    "io_inp": [
      4,
      -4,
      0,
      -5,
      4,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(drop(input,1),-1),-1)),1)"
  },
  {
    "input": "input : list = [2, 3, -3, 2, 0, 2]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop([2, 3, -3, 2, 0, 2],3)))),5)",
    "io_inp": [
      2,
      3,
      -3,
      2,
      0,
      2
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop(input,3)))),5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sub_n([-3, -3],4)),-4)))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sub_n(input,4)),-4)))"
  },
  {
    "input": "input : list = [1, 4, 4]\noutput : list = [11, 14, 14]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(reverse([1, 4, 4]),-5),-3)),-2)",
    "io_inp": [
      1,
      4,
      4
    ],
    "io_out": [
      11,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(reverse(input),-5),-3)),-2)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des([0, 4]),-4)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(input),-4)))"
  },
  {
    "input": "input : list = [-3, -5, -4, 4, -4]\noutput : list = [-20]",
    "output": "generated_output : list = take(mul_n(reverse(take(sort_asc([-3, -5, -4, 4, -4]),7)),-5),1)",
    "io_inp": [
      -3,
      -5,
      -4,
      4,
      -4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(sort_asc(input),7)),-5),1)"
  },
  {
    "input": "input : list = [-5, 0, 0, 2, -5]\noutput : list = [-15, 0, 0]",
    "output": "generated_output : list = mul_n(take([-5, 0, 0, 2, -5],3),3)",
    "io_inp": [
      -5,
      0,
      0,
      2,
      -5
    ],
    "io_out": [
      -15,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),3)"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc([4, -1, 3])),12))",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(input)),12))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [3, -4]",
    "output": "generated_output : list = mul_n(sort_asc([-3, 4]),-1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-9, -11]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(sub_n([-3, -5],-2))),-3),-5)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -9,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(sub_n(input,-2))),-3),-5)"
  },
  {
    "input": "input : list = [4, -1, -4, 3]\noutput : list = [3, -2, -5, 2]",
    "output": "generated_output : list = sub_n([4, -1, -4, 3],1)",
    "io_inp": [
      4,
      -1,
      -4,
      3
    ],
    "io_out": [
      3,
      -2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, 4, -1, -2, -5]\noutput : list = [5, 3, 0, -1, -4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(reverse([2, 4, -1, -2, -5])),-2),1))",
    "io_inp": [
      2,
      4,
      -1,
      -2,
      -5
    ],
    "io_out": [
      5,
      3,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(reverse(input)),-2),1))"
  },
  {
    "input": "input : list = [-1, -3, -2, -5, 2]\noutput : list = [7, 4, 3, 2, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(reverse([-1, -3, -2, -5, 2]))),-5),29)",
    "io_inp": [
      -1,
      -3,
      -2,
      -5,
      2
    ],
    "io_out": [
      7,
      4,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(reverse(input))),-5),29)"
  },
  {
    "input": "input : list = [-1, 2, 5, 2, -1]\noutput : list = [-50, -50, 25, 25, 100]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(mul_n([-1, 2, 5, 2, -1],-5)),5),31),-5)",
    "io_inp": [
      -1,
      2,
      5,
      2,
      -1
    ],
    "io_out": [
      -50,
      -50,
      25,
      25,
      100
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(mul_n(input,-5)),5),31),-5)"
  },
  {
    "input": "input : list = [0, 3, 0, -3]\noutput : list = [0, 15, 0, -15]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse(reverse([0, 3, 0, -3])),-1),5),5)",
    "io_inp": [
      0,
      3,
      0,
      -3
    ],
    "io_out": [
      0,
      15,
      0,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(reverse(input)),-1),5),5)"
  },
  {
    "input": "input : list = [3, -2, 2, -3, 1]\noutput : list = [-1, 0, 3, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(reverse([3, -2, 2, -3, 1])),8)),2)",
    "io_inp": [
      3,
      -2,
      2,
      -3,
      1
    ],
    "io_out": [
      -1,
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(reverse(input)),8)),2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [8, 7]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(add_n([3, 2],4),4),3)),-4)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(add_n(input,4),4),3)),-4)"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(take([-2, -3, 4],1),4),5),5))",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(take(input,1),4),5),5))"
  },
  {
    "input": "input : list = [-4, -2, 0, 0]\noutput : list = [0, 0, 4, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(reverse([-4, -2, 0, 0]),-2),26)))",
    "io_inp": [
      -4,
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(reverse(input),-2),26)))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sub_n([2, 4],-3),12),1),4))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sub_n(input,-3),12),1),4))"
  },
  {
    "input": "input : list = [-2, 1, -1]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n([-2, 1, -1],1)),3))",
    "io_inp": [
      -2,
      1,
      -1
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(input,1)),3))"
  },
  {
    "input": "input : list = [4, 3, -3, 4, 4]\noutput : list = [4, 4, 4, 3, -3]",
    "output": "generated_output : list = sort_des([4, 3, -3, 4, 4])",
    "io_inp": [
      4,
      3,
      -3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4, -1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(reverse(take(reverse(reverse([2, 4, -1])),1)))",
    "io_inp": [
      2,
      4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(reverse(input)),1)))"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [1, 3, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(take(sort_des([1, -1, 4]),6)),2),7)",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      1,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(sort_des(input),6)),2),7)"
  },
  {
    "input": "input : list = [2, 2, -4, -4, -4]\noutput : list = [5]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(take([2, 2, -4, -4, -4],1)),-2)),1)",
    "io_inp": [
      2,
      2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(take(input,1)),-2)),1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [2, 7]",
    "output": "generated_output : list = sub_n(reverse([5, 0]),-2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [2, -4, 1]\noutput : list = [-1, 3, 23]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(sub_n([2, -4, 1],2)),-4),-1),19)",
    "io_inp": [
      2,
      -4,
      1
    ],
    "io_out": [
      -1,
      3,
      23
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(sub_n(input,2)),-4),-1),19)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [5, 2]",
    "output": "generated_output : list = add_n([3, 0],2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-8, 4]",
    "output": "generated_output : list = mul_n([4, -2],-2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 1, 1, -3, -4]\noutput : list = [-7, -6, -2]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(drop([4, 1, 1, -3, -4],1))),-3),3)",
    "io_inp": [
      4,
      1,
      1,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(drop(input,1))),-3),3)"
  },
  {
    "input": "input : list = [1, -1, 5, 2]\noutput : list = [5, 2, 1, -1]",
    "output": "generated_output : list = sort_des([1, -1, 5, 2])",
    "io_inp": [
      1,
      -1,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -3, -2, -4, 4]\noutput : list = [18, 14, 10, -2, -14]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_asc([1, -3, -2, -4, 4]),-4)),-3),5)",
    "io_inp": [
      1,
      -3,
      -2,
      -4,
      4
    ],
    "io_out": [
      18,
      14,
      10,
      -2,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_asc(input),-4)),-3),5)"
  },
  {
    "input": "input : list = [5, -2, -3, -3, 4]\noutput : list = [0, -1, -7, -8, -8]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(sub_n([5, -2, -3, -3, 4],2),-3))))",
    "io_inp": [
      5,
      -2,
      -3,
      -3,
      4
    ],
    "io_out": [
      0,
      -1,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(sub_n(input,2),-3))))"
  },
  {
    "input": "input : list = [4, 2, 0, -3, 0, 5]\noutput : list = [-3, 0, 0, 2, 4, 5]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(reverse([4, 2, 0, -3, 0, 5])),1)),29)",
    "io_inp": [
      4,
      2,
      0,
      -3,
      0,
      5
    ],
    "io_out": [
      -3,
      0,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(reverse(input)),1)),29)"
  },
  {
    "input": "input : list = [-4, -1, -5, 0]\noutput : list = [-1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_asc([-4, -1, -5, 0]),4)),18))",
    "io_inp": [
      -4,
      -1,
      -5,
      0
    ],
    "io_out": [
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_asc(input),4)),18))"
  },
  {
    "input": "input : list = [-4, -2, 2, 5, -5, -2]\noutput : list = [18, 9, -3, -3, -9, -12]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(mul_n([-4, -2, 2, 5, -5, -2],3),-1),2)))",
    "io_inp": [
      -4,
      -2,
      2,
      5,
      -5,
      -2
    ],
    "io_out": [
      18,
      9,
      -3,
      -3,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(mul_n(input,3),-1),2)))"
  },
  {
    "input": "input : list = [-3, -3, 2, 5]\noutput : list = [9, 9, 4, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(sort_asc([-3, -3, 2, 5])),-2),-1),4)",
    "io_inp": [
      -3,
      -3,
      2,
      5
    ],
    "io_out": [
      9,
      9,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(sort_asc(input)),-2),-1),4)"
  },
  {
    "input": "input : list = [3, 3, 2, 4, -5, -5]\noutput : list = [2, 0, 9, 9]",
    "output": "generated_output : list = drop(take(sub_n(mul_n(sub_n([3, 3, 2, 4, -5, -5],3),-1),-1),31),2)",
    "io_inp": [
      3,
      3,
      2,
      4,
      -5,
      -5
    ],
    "io_out": [
      2,
      0,
      9,
      9
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(mul_n(sub_n(input,3),-1),-1),31),2)"
  },
  {
    "input": "input : list = [-5, -5, 1, 4]\noutput : list = [-24, -12, 12, 12]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(add_n([-5, -5, 1, 4],2))),28),-4)",
    "io_inp": [
      -5,
      -5,
      1,
      4
    ],
    "io_out": [
      -24,
      -12,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(add_n(input,2))),28),-4)"
  },
  {
    "input": "input : list = [-3, -4, -2, 3]\noutput : list = [-1, 1, 6]",
    "output": "generated_output : list = sort_asc(add_n(take(drop([-3, -4, -2, 3],1),9),3))",
    "io_inp": [
      -3,
      -4,
      -2,
      3
    ],
    "io_out": [
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(drop(input,1),9),3))"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = drop([-2, -2, -2],1)",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -4, 1, 4]\noutput : list = [4, 1, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc([-3, -4, 1, 4]))))",
    "io_inp": [
      -3,
      -4,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [0, 3, -3, 4]\noutput : list = [4, 10, -2, 12]",
    "output": "generated_output : list = mul_n(add_n([0, 3, -3, 4],2),2)",
    "io_inp": [
      0,
      3,
      -3,
      4
    ],
    "io_out": [
      4,
      10,
      -2,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),2)"
  },
  {
    "input": "input : list = [1, 1, -4, -2, 0, 4]\noutput : list = [-3, -3, -8, -6, -4, 0]",
    "output": "generated_output : list = add_n([1, 1, -4, -2, 0, 4],-4)",
    "io_inp": [
      1,
      1,
      -4,
      -2,
      0,
      4
    ],
    "io_out": [
      -3,
      -3,
      -8,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, -2, 5, 0, 1, 2]\noutput : list = [75, 0, -25, -50, -100]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(drop([0, -2, 5, 0, 1, 2],1),2),-5),-5))",
    "io_inp": [
      0,
      -2,
      5,
      0,
      1,
      2
    ],
    "io_out": [
      75,
      0,
      -25,
      -50,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(drop(input,1),2),-5),-5))"
  },
  {
    "input": "input : list = [1, 4, 5, 0, -4, 3]\noutput : list = [15, 12, 9, 3, 0, -12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_des([1, 4, 5, 0, -4, 3])))),3)",
    "io_inp": [
      1,
      4,
      5,
      0,
      -4,
      3
    ],
    "io_out": [
      15,
      12,
      9,
      3,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-4, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-3, 4, -3],-1)))",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [3, -3, -3, 0, 4, -3]\noutput : list = [4, 3, 0, -3, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc([3, -3, -3, 0, 4, -3]))",
    "io_inp": [
      3,
      -3,
      -3,
      0,
      4,
      -3
    ],
    "io_out": [
      4,
      3,
      0,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -3, -2]\noutput : list = [-2, -2, -3]",
    "output": "generated_output : list = sort_des([-2, -3, -2])",
    "io_inp": [
      -2,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [7]",
    "output": "generated_output : list = add_n(sort_des(take([4, -4, -1],1)),3)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),3)"
  },
  {
    "input": "input : list = [-3, 4, -5, 5, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 4, -5, 5, -3],1)",
    "io_inp": [
      -3,
      4,
      -5,
      5,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [2, 1, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc([-1, 3, 4]),-2)))",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(input),-2)))"
  },
  {
    "input": "input : list = [2, 3, 1, -4, -3, -4]\noutput : list = [12, 14, 14]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(drop([2, 3, 1, -4, -3, -4],3))),-3),-2)",
    "io_inp": [
      2,
      3,
      1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      12,
      14,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(drop(input,3))),-3),-2)"
  },
  {
    "input": "input : list = [4, 1, -2, 5, 3]\noutput : list = [2, 5, 8]",
    "output": "generated_output : list = sub_n(take(reverse(take([4, 1, -2, 5, 3],3)),20),-4)",
    "io_inp": [
      4,
      1,
      -2,
      5,
      3
    ],
    "io_out": [
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(input,3)),20),-4)"
  },
  {
    "input": "input : list = [4, -4, 0, 3, -4]\noutput : list = [-8, 8, 0, -6, 8]",
    "output": "generated_output : list = mul_n([4, -4, 0, 3, -4],-2)",
    "io_inp": [
      4,
      -4,
      0,
      3,
      -4
    ],
    "io_out": [
      -8,
      8,
      0,
      -6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, -3, 2, -4, -1, -2]\noutput : list = [2, -4, -1, -2]",
    "output": "generated_output : list = drop([2, -3, 2, -4, -1, -2],2)",
    "io_inp": [
      2,
      -3,
      2,
      -4,
      -1,
      -2
    ],
    "io_out": [
      2,
      -4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 1, 1, 2, -1]\noutput : list = [8, 5, 4, 4, 2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(reverse([5, 1, 1, 2, -1])))),3)",
    "io_inp": [
      5,
      1,
      1,
      2,
      -1
    ],
    "io_out": [
      8,
      5,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [2, 8, 12]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(sub_n([-5, 1, 5],-2))),-5))",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      2,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(sub_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [2, 3, -2, 0, 3, 1]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(take([2, 3, -2, 0, 3, 1],2)),-1)))",
    "io_inp": [
      2,
      3,
      -2,
      0,
      3,
      1
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(take(input,2)),-1)))"
  },
  {
    "input": "input : list = [-3, -3, -4, -5, -5, -5]\noutput : list = [-8, -8, -8, -7, -6, -6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n([-3, -3, -4, -5, -5, -5],1))),4)",
    "io_inp": [
      -3,
      -3,
      -4,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(input,1))),4)"
  },
  {
    "input": "input : list = [-4, 5, -2, 0, -4, -5]\noutput : list = [8, 3, 1, -1, -1, -2]",
    "output": "generated_output : list = add_n(sort_des(take(add_n([-4, 5, -2, 0, -4, -5],-1),15)),4)",
    "io_inp": [
      -4,
      5,
      -2,
      0,
      -4,
      -5
    ],
    "io_out": [
      8,
      3,
      1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(input,-1),15)),4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-3, 6]",
    "output": "generated_output : list = mul_n(take(add_n([-5, 4],2),9),1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,2),9),1)"
  },
  {
    "input": "input : list = [3, -2, -4, 2, 3, 1]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(drop(mul_n(sub_n(add_n([3, -2, -4, 2, 3, 1],-3),-5),-2),5))",
    "io_inp": [
      3,
      -2,
      -4,
      2,
      3,
      1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(sub_n(add_n(input,-3),-5),-2),5))"
  },
  {
    "input": "input : list = [2, -2, 2, -1]\noutput : list = [-7, -7, -10, -11]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(add_n([2, -2, 2, -1],-2))),-3),4)",
    "io_inp": [
      2,
      -2,
      2,
      -1
    ],
    "io_out": [
      -7,
      -7,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(add_n(input,-2))),-3),4)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [40, 60]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(drop([2, 3, 2],1),5)),4))",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      40,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(drop(input,1),5)),4))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, 4]",
    "output": "generated_output : list = mul_n([0, -1],-4)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 4, 5, -4]\noutput : list = [2, 1, -7, -7]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([-4, 4, 5, -4],3)))",
    "io_inp": [
      -4,
      4,
      5,
      -4
    ],
    "io_out": [
      2,
      1,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,3)))"
  },
  {
    "input": "input : list = [5, -1, 5, 1]\noutput : list = [-1, 5, 1]",
    "output": "generated_output : list = drop([5, -1, 5, 1],1)",
    "io_inp": [
      5,
      -1,
      5,
      1
    ],
    "io_out": [
      -1,
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 1, -2, 2, 0, -4]\noutput : list = [25, 25, 15, 5, 0, -5]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_asc([-4, 1, -2, 2, 0, -4])),-5),5))",
    "io_inp": [
      -4,
      1,
      -2,
      2,
      0,
      -4
    ],
    "io_out": [
      25,
      25,
      15,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_asc(input)),-5),5))"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-2, 1, -8]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sub_n([-2, -3, 0],-3),-3),12),-1),34)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -2,
      1,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sub_n(input,-3),-3),12),-1),34)"
  },
  {
    "input": "input : list = [-5, 2, 0, -2, -5, -1]\noutput : list = [-11, -11, -8, -7, -6, -4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(add_n([-5, 2, 0, -2, -5, -1],-5),-5),2)),-4)",
    "io_inp": [
      -5,
      2,
      0,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -11,
      -11,
      -8,
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(add_n(input,-5),-5),2)),-4)"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [-2, 2, 3]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n([-2, 2, 3],1)),6),-1)",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(input,1)),6),-1)"
  },
  {
    "input": "input : list = [-2, 4, -3, -3, 4, 4]\noutput : list = [4, -3, -3, 4, 4]",
    "output": "generated_output : list = drop([-2, 4, -3, -3, 4, 4],1)",
    "io_inp": [
      -2,
      4,
      -3,
      -3,
      4,
      4
    ],
    "io_out": [
      4,
      -3,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -2, -3, 3]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = sort_des(drop([-1, -5, -2, -3, 3],2))",
    "io_inp": [
      -1,
      -5,
      -2,
      -3,
      3
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [1, 0]",
    "output": "generated_output : list = add_n([5, 4],-4)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(reverse(reverse(take(drop([4, 0, 0],1),10))))",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(drop(input,1),10))))"
  },
  {
    "input": "input : list = [-3, -3, -3, 3]\noutput : list = [4, -2, -2, -2]",
    "output": "generated_output : list = add_n(reverse([-3, -3, -3, 3]),1)",
    "io_inp": [
      -3,
      -3,
      -3,
      3
    ],
    "io_out": [
      4,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [5, -5, 1, 3, -2, -4]\noutput : list = [-15, 10, 20]",
    "output": "generated_output : list = mul_n(drop([5, -5, 1, 3, -2, -4],3),-5)",
    "io_inp": [
      5,
      -5,
      1,
      3,
      -2,
      -4
    ],
    "io_out": [
      -15,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-5)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [25, 5, -25]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(sort_asc([5, 1, -5]),5))),18)",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      25,
      5,
      -25
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(sort_asc(input),5))),18)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [39, 84]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_des([1, -4]),-4),3),-4),-3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      39,
      84
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_des(input),-4),3),-4),-3)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [24, 20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(sub_n([2, 3],-3),12)),4))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      24,
      20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(sub_n(input,-3),12)),4))"
  },
  {
    "input": "input : list = [-5, 4, -1, 5]\noutput : list = [5, 4, -1, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_des([-5, 4, -1, 5])),11)),51)",
    "io_inp": [
      -5,
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_des(input)),11)),51)"
  },
  {
    "input": "input : list = [5, 4, -1, 4, -5, 4]\noutput : list = [-4, 0, 5, 5, 5, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(reverse([5, 4, -1, 4, -5, 4]),14))),1)",
    "io_inp": [
      5,
      4,
      -1,
      4,
      -5,
      4
    ],
    "io_out": [
      -4,
      0,
      5,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(reverse(input),14))),1)"
  },
  {
    "input": "input : list = [-2, -2, 1]\noutput : list = [10, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(drop([-2, -2, 1],1),2)),5))",
    "io_inp": [
      -2,
      -2,
      1
    ],
    "io_out": [
      10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(drop(input,1),2)),5))"
  },
  {
    "input": "input : list = [-3, -1, 2, -3]\noutput : list = [-5, -3, 0, -5]",
    "output": "generated_output : list = add_n([-3, -1, 2, -3],-2)",
    "io_inp": [
      -3,
      -1,
      2,
      -3
    ],
    "io_out": [
      -5,
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -5, -3, -5, 3, 5]\noutput : list = [-29]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(take([-1, -5, -3, -5, 3, 5],1),3),-3),4),5)",
    "io_inp": [
      -1,
      -5,
      -3,
      -5,
      3,
      5
    ],
    "io_out": [
      -29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(take(input,1),3),-3),4),5)"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [-5, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(add_n([0, -2, -1],-4))),1))",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(add_n(input,-4))),1))"
  },
  {
    "input": "input : list = [3, 5, -4, 5]\noutput : list = [75, 75, 45, -60]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(mul_n([3, 5, -4, 5],-3),-5))))",
    "io_inp": [
      3,
      5,
      -4,
      5
    ],
    "io_out": [
      75,
      75,
      45,
      -60
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(mul_n(input,-3),-5))))"
  },
  {
    "input": "input : list = [-2, -3, 0, -5, -1, -4]\noutput : list = [-5, -4, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc([-2, -3, 0, -5, -1, -4])",
    "io_inp": [
      -2,
      -3,
      0,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(sort_des([-2, 5]),15),-2)))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(sort_des(input),15),-2)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-28, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n([-4, 4],1)),-2),-4))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -28,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n(input,1)),-2),-4))"
  },
  {
    "input": "input : list = [0, 5, 4, -2]\noutput : list = [2, -4]",
    "output": "generated_output : list = sub_n(sort_des(add_n(take(drop([0, 5, 4, -2],2),6),-1)),1)",
    "io_inp": [
      0,
      5,
      4,
      -2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(take(drop(input,2),6),-1)),1)"
  },
  {
    "input": "input : list = [1, 4, -3, -4, 0]\noutput : list = [-60, -15, 0, 45, 60]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_des([1, 4, -3, -4, 0]),-5),-4),4),3)",
    "io_inp": [
      1,
      4,
      -3,
      -4,
      0
    ],
    "io_out": [
      -60,
      -15,
      0,
      45,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_des(input),-5),-4),4),3)"
  },
  {
    "input": "input : list = [0, -2, -4, 3, -2]\noutput : list = [-8, -4, -4, 0, 6]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(sort_des([0, -2, -4, 3, -2]),14))),2)",
    "io_inp": [
      0,
      -2,
      -4,
      3,
      -2
    ],
    "io_out": [
      -8,
      -4,
      -4,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(sort_des(input),14))),2)"
  },
  {
    "input": "input : list = [-3, -2, -5, -1, -3, 0]\noutput : list = [-4, -7, -5, -9, -6, -7]",
    "output": "generated_output : list = add_n(take(mul_n(take(reverse([-3, -2, -5, -1, -3, 0]),18),1),33),-4)",
    "io_inp": [
      -3,
      -2,
      -5,
      -1,
      -3,
      0
    ],
    "io_out": [
      -4,
      -7,
      -5,
      -9,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(take(reverse(input),18),1),33),-4)"
  },
  {
    "input": "input : list = [-3, -2, -3, -3, -1]\noutput : list = [-6, -5, -6, -6, -4]",
    "output": "generated_output : list = add_n([-3, -2, -3, -3, -1],-3)",
    "io_inp": [
      -3,
      -2,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, 3, 0, 4, 3, -5]\noutput : list = [-5, 0, 2, 3, 3, 4]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sort_des([2, 3, 0, 4, 3, -5]))),23),37)",
    "io_inp": [
      2,
      3,
      0,
      4,
      3,
      -5
    ],
    "io_out": [
      -5,
      0,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sort_des(input))),23),37)"
  },
  {
    "input": "input : list = [1, 0, -4, -1, -3, -2]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(drop([1, 0, -4, -1, -3, -2],4)),36),18),-2)",
    "io_inp": [
      1,
      0,
      -4,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(drop(input,4)),36),18),-2)"
  },
  {
    "input": "input : list = [-3, 2, 2, -3, 2]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(drop(sort_asc(sort_des(reverse([-3, 2, 2, -3, 2]))),4),3)",
    "io_inp": [
      -3,
      2,
      2,
      -3,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(sort_des(reverse(input))),4),3)"
  },
  {
    "input": "input : list = [5, 4, -3, 4, 3, -4]\noutput : list = [0, 1, 7, 8, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(drop([5, 4, -3, 4, 3, -4],1)),4),17))",
    "io_inp": [
      5,
      4,
      -3,
      4,
      3,
      -4
    ],
    "io_out": [
      0,
      1,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(drop(input,1)),4),17))"
  },
  {
    "input": "input : list = [0, 3, 4, 5, 2]\noutput : list = [-9, -27, -36, -45, -54]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(mul_n([0, 3, 4, 5, 2],3)),23),3),-3)",
    "io_inp": [
      0,
      3,
      4,
      5,
      2
    ],
    "io_out": [
      -9,
      -27,
      -36,
      -45,
      -54
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(mul_n(input,3)),23),3),-3)"
  },
  {
    "input": "input : list = [0, 2, 3, -1, -2, -4]\noutput : list = [-9, -6, 0, 3, 6, 12]",
    "output": "generated_output : list = sort_asc(mul_n([0, 2, 3, -1, -2, -4],-3))",
    "io_inp": [
      0,
      2,
      3,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -6,
      0,
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [5, -4, 1, -3, 4, -4]\noutput : list = [96, 96, 84, 36, 0, -12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(sub_n([5, -4, 1, -3, 4, -4],4))),-3),4)",
    "io_inp": [
      5,
      -4,
      1,
      -3,
      4,
      -4
    ],
    "io_out": [
      96,
      96,
      84,
      36,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(sub_n(input,4))),-3),4)"
  },
  {
    "input": "input : list = [2, 0, 2, -2]\noutput : list = [0, 2, 4, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(add_n([2, 0, 2, -2],1)))),1)",
    "io_inp": [
      2,
      0,
      2,
      -2
    ],
    "io_out": [
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(add_n(input,1)))),1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [6, -1]",
    "output": "generated_output : list = add_n([5, -2],1)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -1, 5, 4, 1, 0]\noutput : list = [5, 4, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-2, -1, 5, 4, 1, 0])))",
    "io_inp": [
      -2,
      -1,
      5,
      4,
      1,
      0
    ],
    "io_out": [
      5,
      4,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, -5, 3, -5, 5]\noutput : list = [-5, -5, -1, 3, 5]",
    "output": "generated_output : list = sort_asc([-1, -5, 3, -5, 5])",
    "io_inp": [
      -1,
      -5,
      3,
      -5,
      5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1, -2, 1]\noutput : list = [3, 6, 6, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_asc([2, 1, -2, 1]))),5))",
    "io_inp": [
      2,
      1,
      -2,
      1
    ],
    "io_out": [
      3,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [9, 5, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(reverse([-2, 2, -2]),9)),-4),-3)",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      9,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(reverse(input),9)),-4),-3)"
  },
  {
    "input": "input : list = [0, -2, -1, -5, 1, 2]\noutput : list = [3, 5, 4, 8, 2, 1]",
    "output": "generated_output : list = mul_n(add_n(sub_n([0, -2, -1, -5, 1, 2],2),-1),-1)",
    "io_inp": [
      0,
      -2,
      -1,
      -5,
      1,
      2
    ],
    "io_out": [
      3,
      5,
      4,
      8,
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,2),-1),-1)"
  },
  {
    "input": "input : list = [-2, 4, -5, -5, -5, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(drop(sort_des([-2, 4, -5, -5, -5, -1]),5),-1),-2))",
    "io_inp": [
      -2,
      4,
      -5,
      -5,
      -5,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(drop(sort_des(input),5),-1),-2))"
  },
  {
    "input": "input : list = [4, -2, -1, 1]\noutput : list = [13, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(take([4, -2, -1, 1],2))),-5),-4)",
    "io_inp": [
      4,
      -2,
      -1,
      1
    ],
    "io_out": [
      13,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(take(input,2))),-5),-4)"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, 0, -1],1))",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [-1, 3, 3]",
    "output": "generated_output : list = reverse(reverse([-1, 3, 3]))",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse(sort_asc([-2, -5]))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 8]",
    "output": "generated_output : list = mul_n(reverse([-4, 2]),-2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse(drop([2, 0, -3],1)),3)))",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(drop(input,1)),3)))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sort_des([-5, 5])),-1)))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sub_n(take(add_n(take(sort_des([-4, 2]),9),1),10),5)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sort_des(input),9),1),10),5)"
  },
  {
    "input": "input : list = [3, 5, 3, -3]\noutput : list = [7, 13, 15, 13]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(add_n([3, 5, 3, -3],4),14)),-4),2)",
    "io_inp": [
      3,
      5,
      3,
      -3
    ],
    "io_out": [
      7,
      13,
      15,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(add_n(input,4),14)),-4),2)"
  },
  {
    "input": "input : list = [-5, 4, 2, -3]\noutput : list = [-21, 24, 14, -11]",
    "output": "generated_output : list = sub_n(take(take(take(mul_n([-5, 4, 2, -3],5),17),15),26),-4)",
    "io_inp": [
      -5,
      4,
      2,
      -3
    ],
    "io_out": [
      -21,
      24,
      14,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(mul_n(input,5),17),15),26),-4)"
  },
  {
    "input": "input : list = [2, 0, -3, -2, -2]\noutput : list = [2, 0, -3]",
    "output": "generated_output : list = take([2, 0, -3, -2, -2],3)",
    "io_inp": [
      2,
      0,
      -3,
      -2,
      -2
    ],
    "io_out": [
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [4, 16, 28]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(sub_n([-1, -4, 2],3)),-4)))",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      4,
      16,
      28
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(sub_n(input,3)),-4)))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [55, 55]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n([-4, -4],3),-4),2),-5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      55,
      55
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(input,3),-4),2),-5)"
  },
  {
    "input": "input : list = [-3, 3, -2, -3, -5, 0]\noutput : list = [-5, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(drop([-3, 3, -2, -3, -5, 0],2)),6)))",
    "io_inp": [
      -3,
      3,
      -2,
      -3,
      -5,
      0
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(drop(input,2)),6)))"
  },
  {
    "input": "input : list = [3, -2, -1, 2, 1]\noutput : list = [3, 4, 6, 7, 8]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse([3, -2, -1, 2, 1])),5),5)",
    "io_inp": [
      3,
      -2,
      -1,
      2,
      1
    ],
    "io_out": [
      3,
      4,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(input)),5),5)"
  },
  {
    "input": "input : list = [-3, 0, 5, 5, 4, 0]\noutput : list = [-8, -5, 0, 0, -1, -5]",
    "output": "generated_output : list = reverse(sub_n(reverse([-3, 0, 5, 5, 4, 0]),5))",
    "io_inp": [
      -3,
      0,
      5,
      5,
      4,
      0
    ],
    "io_out": [
      -8,
      -5,
      0,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),5))"
  },
  {
    "input": "input : list = [4, -1, -4, -1, 1]\noutput : list = [-10, -7, -7, -5, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(add_n([4, -1, -4, -1, 1],-2)),4)))",
    "io_inp": [
      4,
      -1,
      -4,
      -1,
      1
    ],
    "io_out": [
      -10,
      -7,
      -7,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(add_n(input,-2)),4)))"
  },
  {
    "input": "input : list = [5, -4, 3, -4, 2]\noutput : list = [3, -6, 1]",
    "output": "generated_output : list = sub_n(take([5, -4, 3, -4, 2],3),2)",
    "io_inp": [
      5,
      -4,
      3,
      -4,
      2
    ],
    "io_out": [
      3,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),2)"
  },
  {
    "input": "input : list = [-5, 3, 4, 5, -3, -3]\noutput : list = [-104, -84, -64, 56, 56, 96]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(mul_n([-5, 3, 4, 5, -3, -3],5),-1)),1),4)",
    "io_inp": [
      -5,
      3,
      4,
      5,
      -3,
      -3
    ],
    "io_out": [
      -104,
      -84,
      -64,
      56,
      56,
      96
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(mul_n(input,5),-1)),1),4)"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [28, 20, 12]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(sub_n([1, -1, 3],-4),4)),21))",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      28,
      20,
      12
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(sub_n(input,-4),4)),21))"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [-1, 1, -5]",
    "output": "generated_output : list = add_n([1, 3, -3],-2)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      -1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -5, 2, 3, 0]\noutput : list = [-1, 0, 4, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc([-4, -5, 2, 3, 0]),-4)",
    "io_inp": [
      -4,
      -5,
      2,
      3,
      0
    ],
    "io_out": [
      -1,
      0,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [5, -2, 3, 0, 4, -2]\noutput : list = [1, 2, 3, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n([5, -2, 3, 0, 4, -2],-1),-1)),5))",
    "io_inp": [
      5,
      -2,
      3,
      0,
      4,
      -2
    ],
    "io_out": [
      1,
      2,
      3,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n(input,-1),-1)),5))"
  },
  {
    "input": "input : list = [5, 4, 3, 1, 2, 1]\noutput : list = [4, 4, 8, 12, 16]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(drop([5, 4, 3, 1, 2, 1],1))),4),9)",
    "io_inp": [
      5,
      4,
      3,
      1,
      2,
      1
    ],
    "io_out": [
      4,
      4,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(drop(input,1))),4),9)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [6, -8, 8]",
    "output": "generated_output : list = mul_n([3, -4, 4],2)",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      6,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [-1, -4, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc([-3, 3, 0]),5),1)))",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc(input),5),1)))"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(drop([-1, -1, 3],1)))))",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, 3, -2, -3, 0]\noutput : list = [-9, -8, -3]",
    "output": "generated_output : list = drop(sub_n(take(add_n(reverse([2, 3, -2, -3, 0]),-2),4),4),1)",
    "io_inp": [
      2,
      3,
      -2,
      -3,
      0
    ],
    "io_out": [
      -9,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = drop(sub_n(take(add_n(reverse(input),-2),4),4),1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [8, -10]",
    "output": "generated_output : list = mul_n([-4, 5],-2)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, -2, 2, 0]\noutput : list = [5, 3, 7, 5]",
    "output": "generated_output : list = sub_n(take(take(add_n(sub_n([0, -2, 2, 0],4),4),13),18),-5)",
    "io_inp": [
      0,
      -2,
      2,
      0
    ],
    "io_out": [
      5,
      3,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(sub_n(input,4),4),13),18),-5)"
  },
  {
    "input": "input : list = [-1, 2, -1, -4, 1, -3]\noutput : list = [-6, -5, -3, -1]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(drop([-1, 2, -1, -4, 1, -3],2)),-2),17))",
    "io_inp": [
      -1,
      2,
      -1,
      -4,
      1,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(drop(input,2)),-2),17))"
  },
  {
    "input": "input : list = [-2, -3, 2, 0, 3]\noutput : list = [-5, -7]",
    "output": "generated_output : list = sub_n(sub_n(take(take(drop([-2, -3, 2, 0, 3],2),21),2),4),3)",
    "io_inp": [
      -2,
      -3,
      2,
      0,
      3
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(drop(input,2),21),2),4),3)"
  },
  {
    "input": "input : list = [3, 5, 3, 5, -3, 4]\noutput : list = [5, 5, 4, 3, 3, -3]",
    "output": "generated_output : list = sort_des([3, 5, 3, 5, -3, 4])",
    "io_inp": [
      3,
      5,
      3,
      5,
      -3,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-20, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(mul_n([4, 2],2),1),-5),-5))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(mul_n(input,2),1),-5),-5))"
  },
  {
    "input": "input : list = [5, 5, -2, 0, 1]\noutput : list = [2, 1, -1, 6, 6]",
    "output": "generated_output : list = reverse(add_n([5, 5, -2, 0, 1],1))",
    "io_inp": [
      5,
      5,
      -2,
      0,
      1
    ],
    "io_out": [
      2,
      1,
      -1,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [2, -2, -2, -1, -3, -4]\noutput : list = [7, 4, 3, 3, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n([2, -2, -2, -1, -3, -4],-5))",
    "io_inp": [
      2,
      -2,
      -2,
      -1,
      -3,
      -4
    ],
    "io_out": [
      7,
      4,
      3,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [-5, -14, -15]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(add_n([5, -5, -4],-2),17)),3),5)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -14,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(add_n(input,-2),17)),3),5)"
  },
  {
    "input": "input : list = [3, 4, -2, 1, -3, 3]\noutput : list = [-3, -2, 1, 3]",
    "output": "generated_output : list = sort_asc(drop([3, 4, -2, 1, -3, 3],2))",
    "io_inp": [
      3,
      4,
      -2,
      1,
      -3,
      3
    ],
    "io_out": [
      -3,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-2, -5, -2, -4, -1, 0]\noutput : list = [21, 17, 9, 9, 5, 1]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(sort_asc([-2, -5, -2, -4, -1, 0]),-4)),1),48)",
    "io_inp": [
      -2,
      -5,
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      21,
      17,
      9,
      9,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(sort_asc(input),-4)),1),48)"
  },
  {
    "input": "input : list = [-3, 3, -4, -1]\noutput : list = [2, -4, 3]",
    "output": "generated_output : list = take(add_n(reverse(reverse(mul_n([-3, 3, -4, -1],-1))),-1),3)",
    "io_inp": [
      -3,
      3,
      -4,
      -1
    ],
    "io_out": [
      2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(mul_n(input,-1))),-1),3)"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [3, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(add_n([0, -4, 4],2),3),21)))",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(add_n(input,2),3),21)))"
  },
  {
    "input": "input : list = [-3, 5, -4, 2, -2]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = sort_des(drop([-3, 5, -4, 2, -2],2))",
    "io_inp": [
      -3,
      5,
      -4,
      2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [5, -2, -2, -2, 3, -3]\noutput : list = [-12, -8, -8, -8, 12, 20]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(mul_n([5, -2, -2, -2, 3, -3],4)))))",
    "io_inp": [
      5,
      -2,
      -2,
      -2,
      3,
      -3
    ],
    "io_out": [
      -12,
      -8,
      -8,
      -8,
      12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(add_n(reverse([2, -2]),-2))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [3, 2, 3, 0]\noutput : list = [1, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_asc([3, 2, 3, 0])),-1)),49)",
    "io_inp": [
      3,
      2,
      3,
      0
    ],
    "io_out": [
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_asc(input)),-1)),49)"
  },
  {
    "input": "input : list = [0, 1, 3, -4, -1]\noutput : list = [-3, -5, -6, -7, -10]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(sub_n([0, 1, 3, -4, -1],4),-2),19)))",
    "io_inp": [
      0,
      1,
      3,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(sub_n(input,4),-2),19)))"
  },
  {
    "input": "input : list = [-2, -5, -4, 4, 4, -1]\noutput : list = [-33, -33, -13, -9, -1, 3]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(sub_n([-2, -5, -4, 4, 4, -1],-4))),-4),-1)",
    "io_inp": [
      -2,
      -5,
      -4,
      4,
      4,
      -1
    ],
    "io_out": [
      -33,
      -33,
      -13,
      -9,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(sub_n(input,-4))),-4),-1)"
  },
  {
    "input": "input : list = [-4, -1, 2, 4, -5, 4]\noutput : list = [-5, -4, -1, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -1, 2, 4, -5, 4]))",
    "io_inp": [
      -4,
      -1,
      2,
      4,
      -5,
      4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [-3, 5, 6]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(sub_n([-5, 3, 4],-2)))))",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      -3,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n([-4, 1],-1),1)),-1),-1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n(input,-1),1)),-1),-1)"
  },
  {
    "input": "input : list = [5, 2, -4]\noutput : list = [25]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(take([5, 2, -4],1),5)),5))",
    "io_inp": [
      5,
      2,
      -4
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(take(input,1),5)),5))"
  },
  {
    "input": "input : list = [-1, -2, 2]\noutput : list = [-12, -8, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(add_n([-1, -2, 2],-1)))),4)",
    "io_inp": [
      -1,
      -2,
      2
    ],
    "io_out": [
      -12,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(add_n(input,-1)))),4)"
  },
  {
    "input": "input : list = [-1, -4, 2, 5, 2]\noutput : list = [2, 5, 2, -4, -1]",
    "output": "generated_output : list = reverse([-1, -4, 2, 5, 2])",
    "io_inp": [
      -1,
      -4,
      2,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      2,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 4, 2, 0]\noutput : list = [-7, -6, -4, -2, 3]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(add_n([-5, 5, 4, 2, 0],-1),-1),-3),44))",
    "io_inp": [
      -5,
      5,
      4,
      2,
      0
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(add_n(input,-1),-1),-3),44))"
  },
  {
    "input": "input : list = [-4, -1, 3, -2, -5]\noutput : list = [-8, -7, -5, -4, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(add_n([-4, -1, 3, -2, -5],-3)))))",
    "io_inp": [
      -4,
      -1,
      3,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [0, 4, -3]\noutput : list = [32, 0, -24]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(sort_asc([0, 4, -3]),6),2),4))",
    "io_inp": [
      0,
      4,
      -3
    ],
    "io_out": [
      32,
      0,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(sort_asc(input),6),2),4))"
  },
  {
    "input": "input : list = [5, -5, 1, -2, -5, 1]\noutput : list = [-5, 25, -25]",
    "output": "generated_output : list = reverse(mul_n(take([5, -5, 1, -2, -5, 1],3),-5))",
    "io_inp": [
      5,
      -5,
      1,
      -2,
      -5,
      1
    ],
    "io_out": [
      -5,
      25,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,3),-5))"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [-7, -4, -2]",
    "output": "generated_output : list = add_n(take(add_n([-3, 0, 2],-3),9),-1)",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-3),9),-1)"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [2, 4, 8]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(add_n([-4, -2, 2],2),4),26)))",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(add_n(input,2),4),26)))"
  },
  {
    "input": "input : list = [5, -4, -5]\noutput : list = [8, -1, -2]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sub_n([5, -4, -5],-4)),1),31),23)",
    "io_inp": [
      5,
      -4,
      -5
    ],
    "io_out": [
      8,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sub_n(input,-4)),1),31),23)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n([-1, -1],-4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-20, 4]",
    "output": "generated_output : list = mul_n([-5, 1],4)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [10, 20, 15]",
    "output": "generated_output : list = mul_n([-2, -4, -3],-5)",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      10,
      20,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, 3, -4, -4, -2]\noutput : list = [-4, -4, -2, 0, 3]",
    "output": "generated_output : list = sort_asc([0, 3, -4, -4, -2])",
    "io_inp": [
      0,
      3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 0, -1, 4]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take([-2, 0, -1, 4],2)",
    "io_inp": [
      -2,
      0,
      -1,
      4
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [10, 0, 25]",
    "output": "generated_output : list = mul_n(add_n(add_n([0, 2, -3],-1),-1),-5)",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      10,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-1),-1),-5)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [16, -8]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(sort_des([-2, 1]),2),-3),-2),-4)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(sort_des(input),2),-3),-2),-4)"
  },
  {
    "input": "input : list = [1, -3, 5, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(take(take([1, -3, 5, 0],2),3),-3)",
    "io_inp": [
      1,
      -3,
      5,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,2),3),-3)"
  },
  {
    "input": "input : list = [-4, -5, -5, 1]\noutput : list = [-24, 16, 24, 24]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n(sort_des([-4, -5, -5, 1]),-3),-5),4),-2)",
    "io_inp": [
      -4,
      -5,
      -5,
      1
    ],
    "io_out": [
      -24,
      16,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(sort_des(input),-3),-5),4),-2)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [-12, -2, -3]",
    "output": "generated_output : list = sub_n(take(reverse(add_n([4, 5, -5],-3)),15),4)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      -12,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(input,-3)),15),4)"
  },
  {
    "input": "input : list = [1, 3, 0, -3, -1, 2]\noutput : list = [6, 5, 4, 3, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse([1, 3, 0, -3, -1, 2]),5)),2)",
    "io_inp": [
      1,
      3,
      0,
      -3,
      -1,
      2
    ],
    "io_out": [
      6,
      5,
      4,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(input),5)),2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2, 4]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n(reverse([2, 0]),-4),-2)))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(reverse(input),-4),-2)))"
  },
  {
    "input": "input : list = [-2, -5, -3, 0]\noutput : list = [5, 3, 2, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse([-2, -5, -3, 0])),-5))",
    "io_inp": [
      -2,
      -5,
      -3,
      0
    ],
    "io_out": [
      5,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(input)),-5))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-9, -4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(reverse([0, -5])))),-4)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [-1, -5, -8]",
    "output": "generated_output : list = add_n(reverse(add_n([-5, -2, 2],-2)),-1)",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      -1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,-2)),-1)"
  },
  {
    "input": "input : list = [0, -4, 2, 2, 2, -4]\noutput : list = [1, 1, 5, 7, 7, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(add_n([0, -4, 2, 2, 2, -4],-5))),-5),-5)",
    "io_inp": [
      0,
      -4,
      2,
      2,
      2,
      -4
    ],
    "io_out": [
      1,
      1,
      5,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(add_n(input,-5))),-5),-5)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [25, -25]",
    "output": "generated_output : list = mul_n([-5, 5],-5)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -1, 4, 3, 3, -5]\noutput : list = [-10, -6]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(sub_n([2, -1, 4, 3, 3, -5],3)),3),2),-5)",
    "io_inp": [
      2,
      -1,
      4,
      3,
      3,
      -5
    ],
    "io_out": [
      -10,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(sub_n(input,3)),3),2),-5)"
  },
  {
    "input": "input : list = [-1, -4, 1, 5]\noutput : list = [13, 7, 3, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(mul_n([-1, -4, 1, 5],-2),4),-1)))",
    "io_inp": [
      -1,
      -4,
      1,
      5
    ],
    "io_out": [
      13,
      7,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(mul_n(input,-2),4),-1)))"
  },
  {
    "input": "input : list = [1, -4, 2, 0, 2, -2]\noutput : list = [-6, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(take([1, -4, 2, 0, 2, -2],4))),2))",
    "io_inp": [
      1,
      -4,
      2,
      0,
      2,
      -2
    ],
    "io_out": [
      -6,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(take(input,4))),2))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc([0, -3])",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, 4, 1, -2]\noutput : list = [-8, 6, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(take([4, -3, 4, 1, -2],3))),-1),2)",
    "io_inp": [
      4,
      -3,
      4,
      1,
      -2
    ],
    "io_out": [
      -8,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(take(input,3))),-1),2)"
  },
  {
    "input": "input : list = [-2, 2, 0, 4, -4]\noutput : list = [9, 7, 5, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des([-2, 2, 0, 4, -4]))),-5)",
    "io_inp": [
      -2,
      2,
      0,
      4,
      -4
    ],
    "io_out": [
      9,
      7,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(input))),-5)"
  },
  {
    "input": "input : list = [4, -4, 1, -3, 3]\noutput : list = [4, 3, 1, -3, -4]",
    "output": "generated_output : list = take(take(sort_des(mul_n(sort_des([4, -4, 1, -3, 3]),1)),32),22)",
    "io_inp": [
      4,
      -4,
      1,
      -3,
      3
    ],
    "io_out": [
      4,
      3,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(mul_n(sort_des(input),1)),32),22)"
  },
  {
    "input": "input : list = [-5, -2, -5, 3, -4, -4]\noutput : list = [-3, 0, -3, 5, -2, -2]",
    "output": "generated_output : list = add_n([-5, -2, -5, 3, -4, -4],2)",
    "io_inp": [
      -5,
      -2,
      -5,
      3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      0,
      -3,
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [-12, -20, -20]",
    "output": "generated_output : list = mul_n(sort_asc([3, 5, 5]),-4)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      -12,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-5, 4, -1, -2, -5]\noutput : list = [157, -43, -83, -203, -203]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(mul_n([-5, 4, -1, -2, -5],4),-2),-5)),3)",
    "io_inp": [
      -5,
      4,
      -1,
      -2,
      -5
    ],
    "io_out": [
      157,
      -43,
      -83,
      -203,
      -203
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(mul_n(input,4),-2),-5)),3)"
  },
  {
    "input": "input : list = [0, -3, -1, 5]\noutput : list = [2, 4, 5, 10]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(sort_des([0, -3, -1, 5])),-5)),33)",
    "io_inp": [
      0,
      -3,
      -1,
      5
    ],
    "io_out": [
      2,
      4,
      5,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(sort_des(input)),-5)),33)"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [-45, -65, -65]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(sort_asc([-5, -5, -1])),-4),-4),5)",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      -45,
      -65,
      -65
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(sort_asc(input)),-4),-4),5)"
  },
  {
    "input": "input : list = [1, -1, 3, -4, 3]\noutput : list = [2, -2, 6, -8, 6]",
    "output": "generated_output : list = mul_n([1, -1, 3, -4, 3],2)",
    "io_inp": [
      1,
      -1,
      3,
      -4,
      3
    ],
    "io_out": [
      2,
      -2,
      6,
      -8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [7, 3, 2]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(sub_n([5, 1, 0],-2),2),2),9))",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(sub_n(input,-2),2),2),9))"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [30, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(drop([2, 0, 3],1)),5),2),19)",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      30,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(drop(input,1)),5),2),19)"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [1, 6, -4]",
    "output": "generated_output : list = add_n([0, 5, -5],1)",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      1,
      6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, -2, -3, 0, -3, 4]\noutput : list = [-8, -8, -7, -5, -4, -1]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(add_n([1, -2, -3, 0, -3, 4],-5)),1),9),26)",
    "io_inp": [
      1,
      -2,
      -3,
      0,
      -3,
      4
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(add_n(input,-5)),1),9),26)"
  },
  {
    "input": "input : list = [-3, -1, -3, -3, -4]\noutput : list = [24, 18, 18, 6, 18]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-3, -1, -3, -3, -4],-2)),3)",
    "io_inp": [
      -3,
      -1,
      -3,
      -3,
      -4
    ],
    "io_out": [
      24,
      18,
      18,
      6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-2)),3)"
  },
  {
    "input": "input : list = [-4, 0, -5, 1, 0, -2]\noutput : list = [1, 0, 0, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-4, 0, -5, 1, 0, -2])",
    "io_inp": [
      -4,
      0,
      -5,
      1,
      0,
      -2
    ],
    "io_out": [
      1,
      0,
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-16, -6]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(reverse([0, -5]),-3)),1),2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -16,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(reverse(input),-3)),1),2)"
  },
  {
    "input": "input : list = [-1, -4, 5, -4, 3]\noutput : list = [0, 0, 6, 14, 18]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sort_des([-1, -4, 5, -4, 3]),2)),-5),-3)",
    "io_inp": [
      -1,
      -4,
      5,
      -4,
      3
    ],
    "io_out": [
      0,
      0,
      6,
      14,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sort_des(input),2)),-5),-3)"
  },
  {
    "input": "input : list = [2, 2, -3, -5, -5]\noutput : list = [0, 0, -5, -7, -7]",
    "output": "generated_output : list = add_n(sort_des([2, 2, -3, -5, -5]),-2)",
    "io_inp": [
      2,
      2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-2, -4, 5, -2, -3, 3]\noutput : list = [20, 15, 10, 10, -15, -25]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(sort_des([-2, -4, 5, -2, -3, 3]))),41),-5)",
    "io_inp": [
      -2,
      -4,
      5,
      -2,
      -3,
      3
    ],
    "io_out": [
      20,
      15,
      10,
      10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(sort_des(input))),41),-5)"
  },
  {
    "input": "input : list = [1, 2, -4, -2]\noutput : list = [240, 200, 80, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(add_n([1, 2, -4, -2],4)),2),-5),-4)",
    "io_inp": [
      1,
      2,
      -4,
      -2
    ],
    "io_out": [
      240,
      200,
      80,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(add_n(input,4)),2),-5),-4)"
  },
  {
    "input": "input : list = [-2, 5, 2, 3]\noutput : list = [-20, -10, -5, 15]",
    "output": "generated_output : list = take(sort_asc(mul_n(reverse(sub_n([-2, 5, 2, 3],1)),-5)),40)",
    "io_inp": [
      -2,
      5,
      2,
      3
    ],
    "io_out": [
      -20,
      -10,
      -5,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(reverse(sub_n(input,1)),-5)),40)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-19, 13]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(mul_n([-5, 3],4)),-4),5))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -19,
      13
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(mul_n(input,4)),-4),5))"
  },
  {
    "input": "input : list = [-1, -4, -4, 5]\noutput : list = [16, 16, 4, -20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_des([-1, -4, -4, 5])),-4)))",
    "io_inp": [
      -1,
      -4,
      -4,
      5
    ],
    "io_out": [
      16,
      16,
      4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-1, 4, 2, 1]\noutput : list = [4, -4, -8, -16]",
    "output": "generated_output : list = sort_des(mul_n([-1, 4, 2, 1],-4))",
    "io_inp": [
      -1,
      4,
      2,
      1
    ],
    "io_out": [
      4,
      -4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-4))"
  },
  {
    "input": "input : list = [1, 4, 0, 1]\noutput : list = [30, 75, 15]",
    "output": "generated_output : list = mul_n(mul_n(take(take(add_n([1, 4, 0, 1],1),5),3),3),5)",
    "io_inp": [
      1,
      4,
      0,
      1
    ],
    "io_out": [
      30,
      75,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(add_n(input,1),5),3),3),5)"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [8, 2, -10]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(sort_asc([-4, -1, 5]),-1),2),9))",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      8,
      2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(sort_asc(input),-1),2),9))"
  },
  {
    "input": "input : list = [-2, 3, 1, 2, 1, -2]\noutput : list = [-4, -1, 0, -1, 1, -4]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(sub_n([-2, 3, 1, 2, 1, -2],2)),5),20),-5)",
    "io_inp": [
      -2,
      3,
      1,
      2,
      1,
      -2
    ],
    "io_out": [
      -4,
      -1,
      0,
      -1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(sub_n(input,2)),5),20),-5)"
  },
  {
    "input": "input : list = [-2, -1, 2, -5]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_des([-2, -1, 2, -5]),9),4),3))",
    "io_inp": [
      -2,
      -1,
      2,
      -5
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_des(input),9),4),3))"
  },
  {
    "input": "input : list = [1, 4, 0, 1]\noutput : list = [5, 6, 9]",
    "output": "generated_output : list = take(sub_n(sort_asc(drop([1, 4, 0, 1],1)),-5),26)",
    "io_inp": [
      1,
      4,
      0,
      1
    ],
    "io_out": [
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(drop(input,1)),-5),26)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(sort_des([4, 5])),3)))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(sort_des(input)),3)))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc([5, -3]),-5),-5)))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(sort_asc(input),-5),-5)))"
  },
  {
    "input": "input : list = [-3, 2, 5, 1, -3, 5]\noutput : list = [-6, -6, 2, 4, 10, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sub_n([-3, 2, 5, 1, -3, 5],-5),-2)),3),2)",
    "io_inp": [
      -3,
      2,
      5,
      1,
      -3,
      5
    ],
    "io_out": [
      -6,
      -6,
      2,
      4,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sub_n(input,-5),-2)),3),2)"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sub_n(reverse(mul_n(drop([-2, -5, 0],1),1)),1)",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(drop(input,1),1)),1)"
  },
  {
    "input": "input : list = [1, 2, 3, -2]\noutput : list = [5, -7, -11, -15]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(mul_n([1, 2, 3, -2],-4),-4),-1),40))",
    "io_inp": [
      1,
      2,
      3,
      -2
    ],
    "io_out": [
      5,
      -7,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(mul_n(input,-4),-4),-1),40))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-20, -25]",
    "output": "generated_output : list = mul_n([4, 5],-5)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 4, 0, 3, 5, 4]\noutput : list = [1, 3, 4, 5, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(add_n([2, 4, 0, 3, 5, 4],4),16)),3))",
    "io_inp": [
      2,
      4,
      0,
      3,
      5,
      4
    ],
    "io_out": [
      1,
      3,
      4,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(add_n(input,4),16)),3))"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [1, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse([1, 3, 1]))",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, -5, 3, 4]\noutput : list = [-1, -2, -10]",
    "output": "generated_output : list = sort_des(sub_n(drop([-3, -5, 3, 4],1),5))",
    "io_inp": [
      -3,
      -5,
      3,
      4
    ],
    "io_out": [
      -1,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),5))"
  },
  {
    "input": "input : list = [5, 4, -3]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 4, -3],1)",
    "io_inp": [
      5,
      4,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-3, 13, 25]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(sub_n([1, -2, 5],4)),-4),1),36)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -3,
      13,
      25
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(sub_n(input,4)),-4),1),36)"
  },
  {
    "input": "input : list = [3, -5, -3, 0]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -5, -3, 0],1)",
    "io_inp": [
      3,
      -5,
      -3,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -3, -3, -3, -2, -2]\noutput : list = [2, -5, -5, -6, -6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sort_des([5, -3, -3, -3, -2, -2]),-3))))",
    "io_inp": [
      5,
      -3,
      -3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      2,
      -5,
      -5,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sub_n([-1, 0],-2)),-1),2))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sub_n(input,-2)),-1),2))"
  },
  {
    "input": "input : list = [-2, 1, -4, 5]\noutput : list = [-10, 0, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(drop([-2, 1, -4, 5],1),2),2)))",
    "io_inp": [
      -2,
      1,
      -4,
      5
    ],
    "io_out": [
      -10,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(drop(input,1),2),2)))"
  },
  {
    "input": "input : list = [2, -4, -2, 1, -2]\noutput : list = [-7, 23, 13, -2, 13]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(reverse([2, -4, -2, 1, -2]),-5),2),-1))",
    "io_inp": [
      2,
      -4,
      -2,
      1,
      -2
    ],
    "io_out": [
      -7,
      23,
      13,
      -2,
      13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(reverse(input),-5),2),-1))"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [25, -25]",
    "output": "generated_output : list = take(mul_n(reverse([1, -5, 5]),5),2)",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      25,
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),5),2)"
  },
  {
    "input": "input : list = [1, -3, -5, 3, -3]\noutput : list = [1, -1, -5, -5, -7]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n([1, -3, -5, 3, -3],2),5)))",
    "io_inp": [
      1,
      -3,
      -5,
      3,
      -3
    ],
    "io_out": [
      1,
      -1,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(input,2),5)))"
  },
  {
    "input": "input : list = [-1, 0, 2]\noutput : list = [2, 0, -1]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(add_n([-1, 0, 2],5),3),1)),-3)",
    "io_inp": [
      -1,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(add_n(input,5),3),1)),-3)"
  },
  {
    "input": "input : list = [3, -4, 0]\noutput : list = [30, -75, -15]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(mul_n([3, -4, 0],-3),1),1),2),-5)",
    "io_inp": [
      3,
      -4,
      0
    ],
    "io_out": [
      30,
      -75,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(mul_n(input,-3),1),1),2),-5)"
  },
  {
    "input": "input : list = [-5, 4, -3, 4]\noutput : list = [3, 3, -4, -6]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(sort_asc([-5, 4, -3, 4])),-1)))",
    "io_inp": [
      -5,
      4,
      -3,
      4
    ],
    "io_out": [
      3,
      3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [0, 4, -3, -4, 1]\noutput : list = [8]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(take([0, 4, -3, -4, 1],1),5),-3)))",
    "io_inp": [
      0,
      4,
      -3,
      -4,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(take(input,1),5),-3)))"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [-15, -9, 0]",
    "output": "generated_output : list = mul_n([5, 3, 0],-3)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      -15,
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, -2, 1, -2, -3, 1]\noutput : list = [-6, -4, -4, 2, 2, 10]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(mul_n([5, -2, 1, -2, -3, 1],-1))),38),-2)",
    "io_inp": [
      5,
      -2,
      1,
      -2,
      -3,
      1
    ],
    "io_out": [
      -6,
      -4,
      -4,
      2,
      2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(mul_n(input,-1))),38),-2)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(add_n([-2, -3, 2],3),1)),1))",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(add_n(input,3),1)),1))"
  },
  {
    "input": "input : list = [3, -2, 4, 1, -1]\noutput : list = [-2, 2, 8, -4]",
    "output": "generated_output : list = reverse(drop(mul_n([3, -2, 4, 1, -1],2),1))",
    "io_inp": [
      3,
      -2,
      4,
      1,
      -1
    ],
    "io_out": [
      -2,
      2,
      8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(mul_n(input,2),1))"
  },
  {
    "input": "input : list = [4, -1, -4, -3, -3, 3]\noutput : list = [16, -4, -16, -12, -12, 12]",
    "output": "generated_output : list = mul_n([4, -1, -4, -3, -3, 3],4)",
    "io_inp": [
      4,
      -1,
      -4,
      -3,
      -3,
      3
    ],
    "io_out": [
      16,
      -4,
      -16,
      -12,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [3, -2, 1, 5, -2, -3]\noutput : list = [3, 4, 4, 7, 9, 11]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([3, -2, 1, 5, -2, -3],-4)),2)",
    "io_inp": [
      3,
      -2,
      1,
      5,
      -2,
      -3
    ],
    "io_out": [
      3,
      4,
      4,
      7,
      9,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-4)),2)"
  },
  {
    "input": "input : list = [-5, 4, 3, -1, -2]\noutput : list = [-15, 5, 10]",
    "output": "generated_output : list = mul_n(drop([-5, 4, 3, -1, -2],2),-5)",
    "io_inp": [
      -5,
      4,
      3,
      -1,
      -2
    ],
    "io_out": [
      -15,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(take([0, 3, 5],1),-4),1)))",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(take(input,1),-4),1)))"
  },
  {
    "input": "input : list = [4, -2, -2, 1, 3]\noutput : list = [-2, 4]",
    "output": "generated_output : list = take(sort_asc(take([4, -2, -2, 1, 3],2)),19)",
    "io_inp": [
      4,
      -2,
      -2,
      1,
      3
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,2)),19)"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [8, 4, 9]",
    "output": "generated_output : list = mul_n(add_n([-4, 0, -5],-4),-1)",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      8,
      4,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),-1)"
  },
  {
    "input": "input : list = [5, -2, 4, 1]\noutput : list = [4, -3, 3, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse([5, -2, 4, 1]),1))",
    "io_inp": [
      5,
      -2,
      4,
      1
    ],
    "io_out": [
      4,
      -3,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),1))"
  },
  {
    "input": "input : list = [1, 2, -5, -3, -1, 1]\noutput : list = [5, -5, -15, -25, 10, 5]",
    "output": "generated_output : list = reverse(take(mul_n([1, 2, -5, -3, -1, 1],5),10))",
    "io_inp": [
      1,
      2,
      -5,
      -3,
      -1,
      1
    ],
    "io_out": [
      5,
      -5,
      -15,
      -25,
      10,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,5),10))"
  },
  {
    "input": "input : list = [-2, 1, -5, 3]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(take(sub_n(add_n(take([-2, 1, -5, 3],2),-4),-2),40),48)",
    "io_inp": [
      -2,
      1,
      -5,
      3
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(take(input,2),-4),-2),40),48)"
  },
  {
    "input": "input : list = [-2, 0, 5, -4, -3]\noutput : list = [1, 2, 3, 5, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(add_n([-2, 0, 5, -4, -3],5))),1))",
    "io_inp": [
      -2,
      0,
      5,
      -4,
      -3
    ],
    "io_out": [
      1,
      2,
      3,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(add_n(input,5))),1))"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [-4, -13, -11]",
    "output": "generated_output : list = add_n(take(add_n(add_n(sub_n([4, -5, -3],5),-3),4),20),-4)",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -13,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(sub_n(input,5),-3),4),20),-4)"
  },
  {
    "input": "input : list = [4, 5, 1, -5]\noutput : list = [2, 3, -1, -7]",
    "output": "generated_output : list = add_n(sub_n([4, 5, 1, -5],-2),-4)",
    "io_inp": [
      4,
      5,
      1,
      -5
    ],
    "io_out": [
      2,
      3,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),-4)"
  },
  {
    "input": "input : list = [-1, -2, 2, 1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(drop([-1, -2, 2, 1],2),10),4),-1))",
    "io_inp": [
      -1,
      -2,
      2,
      1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(drop(input,2),10),4),-1))"
  },
  {
    "input": "input : list = [-3, -5, -3, 4]\noutput : list = [-12, 16, 16, 24]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(sort_des([-3, -5, -3, 4]),4),-1),5),1)",
    "io_inp": [
      -3,
      -5,
      -3,
      4
    ],
    "io_out": [
      -12,
      16,
      16,
      24
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(sort_des(input),4),-1),5),1)"
  },
  {
    "input": "input : list = [1, 0, 0, 3, 1, 5]\noutput : list = [4, 2, 0, 0, -1, -1]",
    "output": "generated_output : list = sub_n(sort_des(add_n([1, 0, 0, 3, 1, 5],4)),5)",
    "io_inp": [
      1,
      0,
      0,
      3,
      1,
      5
    ],
    "io_out": [
      4,
      2,
      0,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,4)),5)"
  },
  {
    "input": "input : list = [-5, -3, -3, -2, -5]\noutput : list = [-11, -7, -7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(take([-5, -3, -3, -2, -5],3),2)),3),2)",
    "io_inp": [
      -5,
      -3,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -11,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(take(input,3),2)),3),2)"
  },
  {
    "input": "input : list = [-2, 3, -4, 2, -5, 2]\noutput : list = [1, 7, 0]",
    "output": "generated_output : list = take(add_n(drop([-2, 3, -4, 2, -5, 2],2),5),3)",
    "io_inp": [
      -2,
      3,
      -4,
      2,
      -5,
      2
    ],
    "io_out": [
      1,
      7,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,2),5),3)"
  },
  {
    "input": "input : list = [5, -3, -5, 3]\noutput : list = [15, 11, -1, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(mul_n([5, -3, -5, 3],-2))),-5))",
    "io_inp": [
      5,
      -3,
      -5,
      3
    ],
    "io_out": [
      15,
      11,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(mul_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [2, 10, 0]",
    "output": "generated_output : list = add_n(take(reverse([-5, 5, -3]),16),5)",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      2,
      10,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),16),5)"
  },
  {
    "input": "input : list = [-3, 4, -2, 3]\noutput : list = [-14, -13, -8, -7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(sort_asc([-3, 4, -2, 3]),-4),3)),4)",
    "io_inp": [
      -3,
      4,
      -2,
      3
    ],
    "io_out": [
      -14,
      -13,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(sort_asc(input),-4),3)),4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-13, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sub_n([1, 1],5),5)),3),-1)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sub_n(input,5),5)),3),-1)"
  },
  {
    "input": "input : list = [3, -1, 3]\noutput : list = [-1, 3, 3]",
    "output": "generated_output : list = sort_asc([3, -1, 3])",
    "io_inp": [
      3,
      -1,
      3
    ],
    "io_out": [
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, -2, -2]\noutput : list = [9, 8, 2, 2]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sub_n([5, 4, -2, -2],-3)),-1)),43)",
    "io_inp": [
      5,
      4,
      -2,
      -2
    ],
    "io_out": [
      9,
      8,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sub_n(input,-3)),-1)),43)"
  },
  {
    "input": "input : list = [-4, 5, -4, 3, -3, -3]\noutput : list = [-4, -4, -3, -3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des([-4, 5, -4, 3, -3, -3]),8))))",
    "io_inp": [
      -4,
      5,
      -4,
      3,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des(input),8))))"
  },
  {
    "input": "input : list = [5, 0, 1, -5, -4]\noutput : list = [10, 6, 5, 1, 0]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n([5, 0, 1, -5, -4],5)))))",
    "io_inp": [
      5,
      0,
      1,
      -5,
      -4
    ],
    "io_out": [
      10,
      6,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n(input,5)))))"
  },
  {
    "input": "input : list = [5, -4, 0, -5, 1, -5]\noutput : list = [17, 17, 15, 7, 5, -3]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(sub_n([5, -4, 0, -5, 1, -5],3),-2),1),41))",
    "io_inp": [
      5,
      -4,
      0,
      -5,
      1,
      -5
    ],
    "io_out": [
      17,
      17,
      15,
      7,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(sub_n(input,3),-2),1),41))"
  },
  {
    "input": "input : list = [-4, 1, 0, -4]\noutput : list = [-1, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-4, 1, 0, -4],-1))",
    "io_inp": [
      -4,
      1,
      0,
      -4
    ],
    "io_out": [
      -1,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [1, 2, 0]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = sort_des(add_n([1, 2, 0],-1))",
    "io_inp": [
      1,
      2,
      0
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-6, -5]",
    "output": "generated_output : list = add_n([-2, -1],-4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, 4, 5, -3]\noutput : list = [8, 7, 8, 0]",
    "output": "generated_output : list = sub_n([5, 4, 5, -3],-3)",
    "io_inp": [
      5,
      4,
      5,
      -3
    ],
    "io_out": [
      8,
      7,
      8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -2, 0, 2]\noutput : list = [2, 0, -2, -2]",
    "output": "generated_output : list = reverse([-2, -2, 0, 2])",
    "io_inp": [
      -2,
      -2,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, 3, 5, 0, 5]\noutput : list = [5, 5, 3, 3, 0, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, 3, 3, 5, 0, 5]))",
    "io_inp": [
      -5,
      3,
      3,
      5,
      0,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [-9, -8, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sort_des([-3, -4, 0]),5))))",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      -9,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = add_n(sort_asc([4, -2]),-2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [8, 4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(drop([5, 5, 1],1),8),-3)))",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(drop(input,1),8),-3)))"
  },
  {
    "input": "input : list = [4, -1, -5, 5]\noutput : list = [5, -1, -5]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_des(drop([4, -1, -5, 5],1))),7))",
    "io_inp": [
      4,
      -1,
      -5,
      5
    ],
    "io_out": [
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_des(drop(input,1))),7))"
  },
  {
    "input": "input : list = [0, 4, -2, 1]\noutput : list = [-1, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(reverse([0, 4, -2, 1]))),-1))",
    "io_inp": [
      0,
      4,
      -2,
      1
    ],
    "io_out": [
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-60, -15]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(mul_n([-2, -5],-5)),5)),-3)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -60,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(mul_n(input,-5)),5)),-3)"
  },
  {
    "input": "input : list = [-5, 0, 5, -5, 2]\noutput : list = [-6, -1, 4, -6, 1]",
    "output": "generated_output : list = sub_n([-5, 0, 5, -5, 2],1)",
    "io_inp": [
      -5,
      0,
      5,
      -5,
      2
    ],
    "io_out": [
      -6,
      -1,
      4,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, -3, -4, -2, -3]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = mul_n(take([5, -3, -4, -2, -3],3),1)",
    "io_inp": [
      5,
      -3,
      -4,
      -2,
      -3
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),1)"
  },
  {
    "input": "input : list = [1, -4, 4]\noutput : list = [-1, -6, 2]",
    "output": "generated_output : list = sub_n([1, -4, 4],2)",
    "io_inp": [
      1,
      -4,
      4
    ],
    "io_out": [
      -1,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, -3, 4, -2, 3]\noutput : list = [-3, -2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(reverse([2, -3, 4, -2, 3]))),41))",
    "io_inp": [
      2,
      -3,
      4,
      -2,
      3
    ],
    "io_out": [
      -3,
      -2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(reverse(input))),41))"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [1, -3, -5]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(sort_asc([4, -2, 0]),-3)),1),12)",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(sort_asc(input),-3)),1),12)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [10, 1]",
    "output": "generated_output : list = add_n(reverse(sub_n(mul_n([0, 3],3),3)),4)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      10,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(mul_n(input,3),3)),4)"
  },
  {
    "input": "input : list = [0, -3, 0, 4, -1]\noutput : list = [0, 2, 6]",
    "output": "generated_output : list = mul_n(drop(sort_des(sort_asc([0, -3, 0, 4, -1])),2),-2)",
    "io_inp": [
      0,
      -3,
      0,
      4,
      -1
    ],
    "io_out": [
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_des(sort_asc(input)),2),-2)"
  },
  {
    "input": "input : list = [1, 0, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(take([1, 0, -4],1),5),2),4))",
    "io_inp": [
      1,
      0,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(take(input,1),5),2),4))"
  },
  {
    "input": "input : list = [0, -4, -1, 3, -2, -3]\noutput : list = [-3, -7, -4, 0, -5, -6]",
    "output": "generated_output : list = sub_n([0, -4, -1, 3, -2, -3],3)",
    "io_inp": [
      0,
      -4,
      -1,
      3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -7,
      -4,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, -1, -5, -5, -1, -4]\noutput : list = [-36, -40, -40]",
    "output": "generated_output : list = mul_n(sub_n(drop(sub_n(sort_des([-2, -1, -5, -5, -1, -4]),2),3),3),4)",
    "io_inp": [
      -2,
      -1,
      -5,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -36,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(sub_n(sort_des(input),2),3),3),4)"
  },
  {
    "input": "input : list = [3, 4, 1, 2, -5]\noutput : list = [-13, -18, -3, -8, 27]",
    "output": "generated_output : list = take(sub_n(mul_n([3, 4, 1, 2, -5],-5),-2),30)",
    "io_inp": [
      3,
      4,
      1,
      2,
      -5
    ],
    "io_out": [
      -13,
      -18,
      -3,
      -8,
      27
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,-5),-2),30)"
  },
  {
    "input": "input : list = [-3, -1, -5, 4, 3]\noutput : list = [-2, 2, 18, 26, 34]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n(sort_asc([-3, -1, -5, 4, 3]),-4),-4)),2)",
    "io_inp": [
      -3,
      -1,
      -5,
      4,
      3
    ],
    "io_out": [
      -2,
      2,
      18,
      26,
      34
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(sort_asc(input),-4),-4)),2)"
  },
  {
    "input": "input : list = [0, 0, 2, 2, -4]\noutput : list = [-8, -2, -2, -4, -4]",
    "output": "generated_output : list = sub_n(reverse([0, 0, 2, 2, -4]),4)",
    "io_inp": [
      0,
      0,
      2,
      2,
      -4
    ],
    "io_out": [
      -8,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-3, -1, -2, -5, -3]\noutput : list = [6, 5, 4, 4, 2]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(sort_des([-3, -1, -2, -5, -3]),5),-4),2),53)",
    "io_inp": [
      -3,
      -1,
      -2,
      -5,
      -3
    ],
    "io_out": [
      6,
      5,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(sort_des(input),5),-4),2),53)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-40, -50]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(sub_n([-2, 0],4),13)),-4),5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -40,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(sub_n(input,4),13)),-4),5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sub_n([-5, -4],-2)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [-3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([3, -3, 5]))",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 1, 5]\noutput : list = [-3, 1, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(mul_n([-1, 1, 5],2))),5),4)",
    "io_inp": [
      -1,
      1,
      5
    ],
    "io_out": [
      -3,
      1,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(mul_n(input,2))),5),4)"
  },
  {
    "input": "input : list = [3, -5, -5, 4]\noutput : list = [-75, -75, 45, 60]",
    "output": "generated_output : list = take(mul_n(take(mul_n(sort_asc([3, -5, -5, 4]),5),25),3),25)",
    "io_inp": [
      3,
      -5,
      -5,
      4
    ],
    "io_out": [
      -75,
      -75,
      45,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(sort_asc(input),5),25),3),25)"
  },
  {
    "input": "input : list = [2, 0, -2, -1]\noutput : list = [-7, -3, 1, 9]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(reverse([2, 0, -2, -1])),1),4),3)",
    "io_inp": [
      2,
      0,
      -2,
      -1
    ],
    "io_out": [
      -7,
      -3,
      1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(reverse(input)),1),4),3)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(sub_n([2, 3],4))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [-4, 0, -2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(sort_asc(drop([-4, 0, -2],1)),-1)",
    "io_inp": [
      -4,
      0,
      -2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [0, -1, 3, -4]\noutput : list = [3, 0, -1, -4]",
    "output": "generated_output : list = sort_des([0, -1, 3, -4])",
    "io_inp": [
      0,
      -1,
      3,
      -4
    ],
    "io_out": [
      3,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [25, 20, -25]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 5, -4]),-5)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      25,
      20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([2, 4]),1))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [3, 0, 4]\noutput : list = [0, -1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n([3, 0, 4],4)))))",
    "io_inp": [
      3,
      0,
      4
    ],
    "io_out": [
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [2, 1, -2, 3, -2, 5]\noutput : list = [5, -2, 3, -2, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, -2, 3, -2, 5])",
    "io_inp": [
      2,
      1,
      -2,
      3,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [48]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n([3, 0],4),4),1)))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      48
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n(input,4),4),1)))"
  },
  {
    "input": "input : list = [5, -3, 2, -3]\noutput : list = [-10, -10, -35, -50]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(sort_asc([5, -3, 2, -3]))),5),-5)",
    "io_inp": [
      5,
      -3,
      2,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -35,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(sort_asc(input))),5),-5)"
  },
  {
    "input": "input : list = [0, 5, -5, -4, -2]\noutput : list = [-5, 0, -10, -9, -7]",
    "output": "generated_output : list = add_n([0, 5, -5, -4, -2],-5)",
    "io_inp": [
      0,
      5,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -5,
      0,
      -10,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [1, -1, -5, -2, -1, -4]\noutput : list = [-4, -8, -16, -10, -8, -14]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(sub_n([1, -1, -5, -2, -1, -4],3),-2),-2),2),41)",
    "io_inp": [
      1,
      -1,
      -5,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -8,
      -16,
      -10,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(sub_n(input,3),-2),-2),2),41)"
  },
  {
    "input": "input : list = [2, -1, -4, 0, 1, -4]\noutput : list = [-4, -24, -20, -4, -16, -28]",
    "output": "generated_output : list = mul_n(reverse(sub_n([2, -1, -4, 0, 1, -4],-5)),-4)",
    "io_inp": [
      2,
      -1,
      -4,
      0,
      1,
      -4
    ],
    "io_out": [
      -4,
      -24,
      -20,
      -4,
      -16,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-5)),-4)"
  },
  {
    "input": "input : list = [-5, -2, 0, -4]\noutput : list = [-10, -8, -4, 0]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(sort_des([-5, -2, 0, -4])),11)),2)",
    "io_inp": [
      -5,
      -2,
      0,
      -4
    ],
    "io_out": [
      -10,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(sort_des(input)),11)),2)"
  },
  {
    "input": "input : list = [5, -2, -3, 2, 2, -4]\noutput : list = [-3, -2, -1, 3, 3, 6]",
    "output": "generated_output : list = sub_n(sort_asc([5, -2, -3, 2, 2, -4]),-1)",
    "io_inp": [
      5,
      -2,
      -3,
      2,
      2,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, -6]",
    "output": "generated_output : list = mul_n(sort_des(take(take(sort_asc([0, -3]),11),7)),2)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(sort_asc(input),11),7)),2)"
  },
  {
    "input": "input : list = [-3, 0, 0, 3, -1, 3]\noutput : list = [-3, -1, 0]",
    "output": "generated_output : list = sort_asc(take(reverse(take(sort_asc([-3, 0, 0, 3, -1, 3]),3)),33))",
    "io_inp": [
      -3,
      0,
      0,
      3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(sort_asc(input),3)),33))"
  },
  {
    "input": "input : list = [5, -4, -4, 3, 4]\noutput : list = [-3, -3, 4, 5]",
    "output": "generated_output : list = add_n(drop([5, -4, -4, 3, 4],1),1)",
    "io_inp": [
      5,
      -4,
      -4,
      3,
      4
    ],
    "io_out": [
      -3,
      -3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [9, 6, 4]",
    "output": "generated_output : list = take(add_n(sort_des([1, -1, 4]),5),13)",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      9,
      6,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),5),13)"
  },
  {
    "input": "input : list = [3, 0, -5, 5]\noutput : list = [0, -3, -8, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n([3, 0, -5, 5],-3),-4),5),-1)",
    "io_inp": [
      3,
      0,
      -5,
      5
    ],
    "io_out": [
      0,
      -3,
      -8,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(input,-3),-4),5),-1)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [-1, -1, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sort_asc([-2, 2, -2]),2))),1)",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sort_asc(input),2))),1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [6, 0]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(sort_des([5, -1]))),1),11)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(sort_des(input))),1),11)"
  },
  {
    "input": "input : list = [4, 2, 3, -4, -1]\noutput : list = [9, 7, 8, 1, 4]",
    "output": "generated_output : list = sub_n([4, 2, 3, -4, -1],-5)",
    "io_inp": [
      4,
      2,
      3,
      -4,
      -1
    ],
    "io_out": [
      9,
      7,
      8,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -2, -3, -2, -2, -2]\noutput : list = [-6, -4, -6, -4, -4, -4]",
    "output": "generated_output : list = mul_n([-3, -2, -3, -2, -2, -2],2)",
    "io_inp": [
      -3,
      -2,
      -3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -6,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [4, 4, -1, -5]\noutput : list = [6]",
    "output": "generated_output : list = add_n(add_n(take([4, 4, -1, -5],1),5),-3)",
    "io_inp": [
      4,
      4,
      -1,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),5),-3)"
  },
  {
    "input": "input : list = [-1, 1, -4, -2]\noutput : list = [4, 2, 1, -1]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(add_n([-1, 1, -4, -2],3))),18))",
    "io_inp": [
      -1,
      1,
      -4,
      -2
    ],
    "io_out": [
      4,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(add_n(input,3))),18))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-9, -12]",
    "output": "generated_output : list = reverse(mul_n(sort_des([4, 3]),-3))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [-5, 2, 4, -1]\noutput : list = [-3, 17, 9, -19]",
    "output": "generated_output : list = reverse(add_n(mul_n([-5, 2, 4, -1],4),1))",
    "io_inp": [
      -5,
      2,
      4,
      -1
    ],
    "io_out": [
      -3,
      17,
      9,
      -19
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,4),1))"
  },
  {
    "input": "input : list = [2, -2, -5, 5, 1, 2]\noutput : list = [-5, 5, 1, 2]",
    "output": "generated_output : list = drop([2, -2, -5, 5, 1, 2],2)",
    "io_inp": [
      2,
      -2,
      -5,
      5,
      1,
      2
    ],
    "io_out": [
      -5,
      5,
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(add_n(drop(take(sort_des([4, -5]),15),1),-1),-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(take(sort_des(input),15),1),-1),-3)"
  },
  {
    "input": "input : list = [-2, -4, -3, 4]\noutput : list = [-11, -17, -14, 7]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse(reverse([-2, -4, -3, 4])),-2),3),1)",
    "io_inp": [
      -2,
      -4,
      -3,
      4
    ],
    "io_out": [
      -11,
      -17,
      -14,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(reverse(input)),-2),3),1)"
  },
  {
    "input": "input : list = [-5, -1, -1, -5, 1, -3]\noutput : list = [-5, -1]",
    "output": "generated_output : list = take([-5, -1, -1, -5, 1, -3],2)",
    "io_inp": [
      -5,
      -1,
      -1,
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(reverse(take(reverse(sort_des([-2, -3])),2)),20)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(sort_des(input)),2)),20)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(reverse([-2, -4]))),27),-1)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(reverse(input))),27),-1)"
  },
  {
    "input": "input : list = [-2, -3, 2, -5, 3, -5]\noutput : list = [-10, -15, 10, -25, 15, -25]",
    "output": "generated_output : list = mul_n([-2, -3, 2, -5, 3, -5],5)",
    "io_inp": [
      -2,
      -3,
      2,
      -5,
      3,
      -5
    ],
    "io_out": [
      -10,
      -15,
      10,
      -25,
      15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -3, 4, -5]\noutput : list = [-3, -5, -10, -12]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n([2, -3, 4, -5],2))),5)",
    "io_inp": [
      2,
      -3,
      4,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(input,2))),5)"
  },
  {
    "input": "input : list = [1, -4, 5, 5]\noutput : list = [1, 1, -3, -8]",
    "output": "generated_output : list = sub_n(sort_des([1, -4, 5, 5]),4)",
    "io_inp": [
      1,
      -4,
      5,
      5
    ],
    "io_out": [
      1,
      1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-3, 2, 1, 4]\noutput : list = [6, 4, 3, -1]",
    "output": "generated_output : list = sort_des(take(add_n([-3, 2, 1, 4],2),20))",
    "io_inp": [
      -3,
      2,
      1,
      4
    ],
    "io_out": [
      6,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,2),20))"
  },
  {
    "input": "input : list = [-3, -5, 1, -4]\noutput : list = [1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(mul_n([-3, -5, 1, -4],1),21)),9))",
    "io_inp": [
      -3,
      -5,
      1,
      -4
    ],
    "io_out": [
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(mul_n(input,1),21)),9))"
  },
  {
    "input": "input : list = [4, 4, 3, 2, 2]\noutput : list = [-6, -6, -4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(take([4, 4, 3, 2, 2],3),-1),1)),2)",
    "io_inp": [
      4,
      4,
      3,
      2,
      2
    ],
    "io_out": [
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(take(input,3),-1),1)),2)"
  },
  {
    "input": "input : list = [-5, 1, 0, -5, 2]\noutput : list = [2, -10, -8, 2, -12]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(mul_n([-5, 1, 0, -5, 2],-1),16),1),4),2)",
    "io_inp": [
      -5,
      1,
      0,
      -5,
      2
    ],
    "io_out": [
      2,
      -10,
      -8,
      2,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(mul_n(input,-1),16),1),4),2)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([-3, -1],-1)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [5, 2, 3, 1, -5, -2]\noutput : list = [6, 7]",
    "output": "generated_output : list = sort_asc(take(take(drop(add_n([5, 2, 3, 1, -5, -2],4),1),2),40))",
    "io_inp": [
      5,
      2,
      3,
      1,
      -5,
      -2
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(drop(add_n(input,4),1),2),40))"
  },
  {
    "input": "input : list = [4, 1, -2, 3, 4, -4]\noutput : list = [2, 4, 7, 9, 10, 10]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(sort_des([4, 1, -2, 3, 4, -4])),-3),3),28)",
    "io_inp": [
      4,
      1,
      -2,
      3,
      4,
      -4
    ],
    "io_out": [
      2,
      4,
      7,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(sort_des(input)),-3),3),28)"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(sort_asc([0, 3, -2])),2)),-2)",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(sort_asc(input)),2)),-2)"
  },
  {
    "input": "input : list = [2, -2, -4, 5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = drop([2, -2, -4, 5, 0],3)",
    "io_inp": [
      2,
      -2,
      -4,
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, -2, -5]\noutput : list = [-5, -5, -8]",
    "output": "generated_output : list = sub_n(add_n([-2, -2, -5],2),5)",
    "io_inp": [
      -2,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),5)"
  },
  {
    "input": "input : list = [1, 4, 0]\noutput : list = [0, 5, 20]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(mul_n([1, 4, 0],5)))))",
    "io_inp": [
      1,
      4,
      0
    ],
    "io_out": [
      0,
      5,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-1, -1, 3, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(drop([-1, -1, 3, -1],2),18),1)),3)",
    "io_inp": [
      -1,
      -1,
      3,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(drop(input,2),18),1)),3)"
  },
  {
    "input": "input : list = [5, -2, -3, -2]\noutput : list = [5, -2, -2, -3]",
    "output": "generated_output : list = sort_des([5, -2, -3, -2])",
    "io_inp": [
      5,
      -2,
      -3,
      -2
    ],
    "io_out": [
      5,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(add_n([3, -1],1),-3))),-1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(add_n(input,1),-3))),-1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-39, -39]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(sort_des([-4, -4]),-2),-5),4),5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -39,
      -39
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(sort_des(input),-2),-5),4),5)"
  },
  {
    "input": "input : list = [0, -2, 0, -3]\noutput : list = [-7, -6, -4, -4]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_des([0, -2, 0, -3])),-4)))",
    "io_inp": [
      0,
      -2,
      0,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-1, 1, -4, 0, 0, -4]\noutput : list = [90, -10, 240, 40, 40, 240]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(mul_n([-1, 1, -4, 0, 0, -4],-5),1),4),5),2)",
    "io_inp": [
      -1,
      1,
      -4,
      0,
      0,
      -4
    ],
    "io_out": [
      90,
      -10,
      240,
      40,
      40,
      240
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(mul_n(input,-5),1),4),5),2)"
  },
  {
    "input": "input : list = [2, -1, 2, 0, -4]\noutput : list = [-16, -7, -16, -10, 2]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(sub_n([2, -1, 2, 0, -4],-5),16),1),-3),-2)",
    "io_inp": [
      2,
      -1,
      2,
      0,
      -4
    ],
    "io_out": [
      -16,
      -7,
      -16,
      -10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(sub_n(input,-5),16),1),-3),-2)"
  },
  {
    "input": "input : list = [1, 0, 3, 2, 1, 0]\noutput : list = [7, 7, 8, 8, 9, 10]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(add_n([1, 0, 3, 2, 1, 0],3))),4),40)",
    "io_inp": [
      1,
      0,
      3,
      2,
      1,
      0
    ],
    "io_out": [
      7,
      7,
      8,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(add_n(input,3))),4),40)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(sub_n(take(sort_des([1, 1]),1),1)),10)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(sort_des(input),1),1)),10)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-64, 80]",
    "output": "generated_output : list = mul_n(mul_n([4, -5],4),-4)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -64,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),-4)"
  },
  {
    "input": "input : list = [-5, 4, -1, -4, 2]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take([-5, 4, -1, -4, 2],2)",
    "io_inp": [
      -5,
      4,
      -1,
      -4,
      2
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 1, 2, 1, -5, 3]\noutput : list = [12, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(drop([-4, 1, 2, 1, -5, 3],4),20))),4)",
    "io_inp": [
      -4,
      1,
      2,
      1,
      -5,
      3
    ],
    "io_out": [
      12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(drop(input,4),20))),4)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [8, -8]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(sub_n([5, 1],-1),4),3)),-4)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(sub_n(input,-1),4),3)),-4)"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [6, -6, -12]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(mul_n([1, -2, -1],2)))),3)",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(mul_n(input,2)))),3)"
  },
  {
    "input": "input : list = [2, -1, 1, -4, -4]\noutput : list = [5, 4, 2, -1]",
    "output": "generated_output : list = sort_des(take(drop(reverse(sub_n([2, -1, 1, -4, -4],-3)),1),12))",
    "io_inp": [
      2,
      -1,
      1,
      -4,
      -4
    ],
    "io_out": [
      5,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(reverse(sub_n(input,-3)),1),12))"
  },
  {
    "input": "input : list = [5, 0, -5, 1, -2, 4]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(sort_asc([5, 0, -5, 1, -2, 4]),10),1)",
    "io_inp": [
      5,
      0,
      -5,
      1,
      -2,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),10),1)"
  },
  {
    "input": "input : list = [3, 3, -5, 5, 1, -1]\noutput : list = [14, 12, 12, 10, 8, 4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sub_n([3, 3, -5, 5, 1, -1],-4)))),5)",
    "io_inp": [
      3,
      3,
      -5,
      5,
      1,
      -1
    ],
    "io_out": [
      14,
      12,
      12,
      10,
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sub_n(input,-4)))),5)"
  },
  {
    "input": "input : list = [1, -2, 5, -5, -1]\noutput : list = [4, -32, 52, -68, -20]",
    "output": "generated_output : list = mul_n(add_n(take(mul_n(mul_n([1, -2, 5, -5, -1],-3),-2),11),-4),2)",
    "io_inp": [
      1,
      -2,
      5,
      -5,
      -1
    ],
    "io_out": [
      4,
      -32,
      52,
      -68,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(mul_n(mul_n(input,-3),-2),11),-4),2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [24, 8]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des([2, -2]),4),4)))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      24,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_des(input),4),4)))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [0]",
    "output": "generated_output : list = take(take(mul_n(sub_n(sub_n([-1, 3, 3],-4),3),2),15),1)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(sub_n(input,-4),3),2),15),1)"
  },
  {
    "input": "input : list = [-5, 3, -1, 4]\noutput : list = [30, 25, 5, -15]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(add_n([-5, 3, -1, 4],-2)),4),5))",
    "io_inp": [
      -5,
      3,
      -1,
      4
    ],
    "io_out": [
      30,
      25,
      5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(add_n(input,-2)),4),5))"
  },
  {
    "input": "input : list = [-2, 0, 3, 3]\noutput : list = [-9, -9, 0, 6]",
    "output": "generated_output : list = reverse(mul_n([-2, 0, 3, 3],-3))",
    "io_inp": [
      -2,
      0,
      3,
      3
    ],
    "io_out": [
      -9,
      -9,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-3, -2, -4, -5]\noutput : list = [13, 12, 10, 11]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(add_n([-3, -2, -4, -5],-3),-4),-1),-1))",
    "io_inp": [
      -3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      13,
      12,
      10,
      11
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(add_n(input,-3),-4),-1),-1))"
  },
  {
    "input": "input : list = [-1, -5, -5, 4, -2]\noutput : list = [0, 8, 8, -10, 2]",
    "output": "generated_output : list = add_n(mul_n([-1, -5, -5, 4, -2],-2),-2)",
    "io_inp": [
      -1,
      -5,
      -5,
      4,
      -2
    ],
    "io_out": [
      0,
      8,
      8,
      -10,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),-2)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(reverse([2, 0, 3]),-2))),2)",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(reverse(input),-2))),2)"
  },
  {
    "input": "input : list = [5, 0, -5, -4, 2]\noutput : list = [0, -3, -5, -9, -10]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_asc([5, 0, -5, -4, 2]),-3)),3),5)",
    "io_inp": [
      5,
      0,
      -5,
      -4,
      2
    ],
    "io_out": [
      0,
      -3,
      -5,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_asc(input),-3)),3),5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [8, 1]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n([4, -3],-5))),-1)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(input,-5))),-1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-2, -6]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([1, 5],2),-3),-1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,2),-3),-1)"
  },
  {
    "input": "input : list = [-2, -4, -3, 2, -3]\noutput : list = [-1, 0, 0, 1, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(reverse([-2, -4, -3, 2, -3]),25)),-3))",
    "io_inp": [
      -2,
      -4,
      -3,
      2,
      -3
    ],
    "io_out": [
      -1,
      0,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(reverse(input),25)),-3))"
  },
  {
    "input": "input : list = [-4, 5, 2, 4, 2, -4]\noutput : list = [-4, 2, 2, 4]",
    "output": "generated_output : list = take(sort_asc(take(take(drop([-4, 5, 2, 4, 2, -4],2),12),25)),27)",
    "io_inp": [
      -4,
      5,
      2,
      4,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(take(drop(input,2),12),25)),27)"
  },
  {
    "input": "input : list = [3, 5, -5, 1, 4, 1]\noutput : list = [-5, 1, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([3, 5, -5, 1, 4, 1]))",
    "io_inp": [
      3,
      5,
      -5,
      1,
      4,
      1
    ],
    "io_out": [
      -5,
      1,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(take([2, 0, 4],1),2)),22),4)",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(take(input,1),2)),22),4)"
  },
  {
    "input": "input : list = [3, -5, 3, -4, 4]\noutput : list = [0, 2, 16, 16, 18]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(sort_des([3, -5, 3, -4, 4])),5)),2)",
    "io_inp": [
      3,
      -5,
      3,
      -4,
      4
    ],
    "io_out": [
      0,
      2,
      16,
      16,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(sort_des(input)),5)),2)"
  },
  {
    "input": "input : list = [1, 1, -1, -5]\noutput : list = [-3, 1, 3, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(add_n([1, 1, -1, -5],-3),-2))),-3)",
    "io_inp": [
      1,
      1,
      -1,
      -5
    ],
    "io_out": [
      -3,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(add_n(input,-3),-2))),-3)"
  },
  {
    "input": "input : list = [1, 3, 1, -4, 5, -3]\noutput : list = [3, 1, -1, -1, -5, -6]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(add_n([1, 3, 1, -4, 5, -3],-1)),4),-1),2)",
    "io_inp": [
      1,
      3,
      1,
      -4,
      5,
      -3
    ],
    "io_out": [
      3,
      1,
      -1,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(add_n(input,-1)),4),-1),2)"
  },
  {
    "input": "input : list = [-3, -5, -3, -1, 2]\noutput : list = [-3, -1, -1, 1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(sort_des([-3, -5, -3, -1, 2]),-2))),5)",
    "io_inp": [
      -3,
      -5,
      -3,
      -1,
      2
    ],
    "io_out": [
      -3,
      -1,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(sort_des(input),-2))),5)"
  },
  {
    "input": "input : list = [3, -3, 1, -3]\noutput : list = [22, 2, 22, -8]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(add_n([3, -3, 1, -3],-1),-5),1),2))",
    "io_inp": [
      3,
      -3,
      1,
      -3
    ],
    "io_out": [
      22,
      2,
      22,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(add_n(input,-1),-5),1),2))"
  },
  {
    "input": "input : list = [1, -4, 1, 0, -5]\noutput : list = [-7, -2, -1, -6, -1]",
    "output": "generated_output : list = add_n(reverse([1, -4, 1, 0, -5]),-2)",
    "io_inp": [
      1,
      -4,
      1,
      0,
      -5
    ],
    "io_out": [
      -7,
      -2,
      -1,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [3, 4, -3]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sort_des([3, 4, -3])",
    "io_inp": [
      3,
      4,
      -3
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [23, 8]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n([-2, -5],-5)),-2))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      23,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(input,-5)),-2))"
  },
  {
    "input": "input : list = [1, 5, -2, -4, -1, -2]\noutput : list = [1, 5, -2]",
    "output": "generated_output : list = take([1, 5, -2, -4, -1, -2],3)",
    "io_inp": [
      1,
      5,
      -2,
      -4,
      -1,
      -2
    ],
    "io_out": [
      1,
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, -5, 3, 1, 4, 3]\noutput : list = [6, 5, 3]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(drop([-2, -5, 3, 1, 4, 3],3)),2)),51)",
    "io_inp": [
      -2,
      -5,
      3,
      1,
      4,
      3
    ],
    "io_out": [
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(drop(input,3)),2)),51)"
  },
  {
    "input": "input : list = [1, -1, 2, -2]\noutput : list = [-25, -5, -20, -10]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n([1, -1, 2, -2],3)),5),7)",
    "io_inp": [
      1,
      -1,
      2,
      -2
    ],
    "io_out": [
      -25,
      -5,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(input,3)),5),7)"
  },
  {
    "input": "input : list = [-5, 5, -2, -1, -1, -5]\noutput : list = [30, 21, 18, 18, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(drop([-5, 5, -2, -1, -1, -5],1),5))),-3)",
    "io_inp": [
      -5,
      5,
      -2,
      -1,
      -1,
      -5
    ],
    "io_out": [
      30,
      21,
      18,
      18,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(drop(input,1),5))),-3)"
  },
  {
    "input": "input : list = [-1, -4, 0, 2]\noutput : list = [28, 64, 16, -8]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(sub_n([-1, -4, 0, 2],1),-4),31),3),-4)",
    "io_inp": [
      -1,
      -4,
      0,
      2
    ],
    "io_out": [
      28,
      64,
      16,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(sub_n(input,1),-4),31),3),-4)"
  },
  {
    "input": "input : list = [-3, -2, -1, 1, -2]\noutput : list = [2, 3, 3, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc([-3, -2, -1, 1, -2]),-5)",
    "io_inp": [
      -3,
      -2,
      -1,
      1,
      -2
    ],
    "io_out": [
      2,
      3,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-2, -2, -4, 4, 3, 2]\noutput : list = [-4, -2, -2, 2, 3, 4]",
    "output": "generated_output : list = take(reverse(sort_des([-2, -2, -4, 4, 3, 2])),10)",
    "io_inp": [
      -2,
      -2,
      -4,
      4,
      3,
      2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),10)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-4, -12]",
    "output": "generated_output : list = add_n(sub_n([4, -4],4),-4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-4)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(take([3, 4, 1],1),2),-4)),-3)",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(take(input,1),2),-4)),-3)"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [-2, -5, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(sort_des([5, 2, 5]),-1))),1)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(sort_des(input),-1))),1)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-1, -8]",
    "output": "generated_output : list = add_n(reverse([-5, 2]),-3)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [101, 76]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(add_n([1, 0],3),5),5),5),1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      101,
      76
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(add_n(input,3),5),5),5),1)"
  },
  {
    "input": "input : list = [5, 0, 3, 3]\noutput : list = [0, 3, 3]",
    "output": "generated_output : list = sort_asc(drop([5, 0, 3, 3],1))",
    "io_inp": [
      5,
      0,
      3,
      3
    ],
    "io_out": [
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = drop([5, 1, 0],1)",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [0, 2, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(sort_asc([-2, 0, 4])),3)),1)",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(sort_asc(input)),3)),1)"
  },
  {
    "input": "input : list = [1, 5, 2, 1, 5, -2]\noutput : list = [-60, -24, -12, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take([1, 5, 2, 1, 5, -2],4),-4))),3)",
    "io_inp": [
      1,
      5,
      2,
      1,
      5,
      -2
    ],
    "io_out": [
      -60,
      -24,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take(input,4),-4))),3)"
  },
  {
    "input": "input : list = [0, 2, -4, 2, -5, 2]\noutput : list = [0, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(drop([0, 2, -4, 2, -5, 2],3))),5))",
    "io_inp": [
      0,
      2,
      -4,
      2,
      -5,
      2
    ],
    "io_out": [
      0,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(drop(input,3))),5))"
  },
  {
    "input": "input : list = [4, 2, 3, 1, 1]\noutput : list = [3, 3, 5, 4, 6]",
    "output": "generated_output : list = reverse(sub_n([4, 2, 3, 1, 1],-2))",
    "io_inp": [
      4,
      2,
      3,
      1,
      1
    ],
    "io_out": [
      3,
      3,
      5,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 3]))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 4, -3, 5, -4, -4]\noutput : list = [-2, -2, 7, -1, 6, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(reverse([-1, 4, -3, 5, -4, -4])),4)),2)",
    "io_inp": [
      -1,
      4,
      -3,
      5,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2,
      7,
      -1,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(reverse(input)),4)),2)"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [15, -5, -10]",
    "output": "generated_output : list = mul_n(sort_asc([2, -3, 1]),-5)",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      15,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-2, 4, -2, 4, 2]\noutput : list = [-12, -12, -4, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(sort_asc([-2, 4, -2, 4, 2]),3),-1),2))",
    "io_inp": [
      -2,
      4,
      -2,
      4,
      2
    ],
    "io_out": [
      -12,
      -12,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(sort_asc(input),3),-1),2))"
  },
  {
    "input": "input : list = [-4, 3, 2, 4]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(drop([-4, 3, 2, 4],1),-4),9),-4))",
    "io_inp": [
      -4,
      3,
      2,
      4
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(drop(input,1),-4),9),-4))"
  },
  {
    "input": "input : list = [4, 4, -3, -2]\noutput : list = [5, 5, -2, -1]",
    "output": "generated_output : list = add_n(add_n([4, 4, -3, -2],4),-3)",
    "io_inp": [
      4,
      4,
      -3,
      -2
    ],
    "io_out": [
      5,
      5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),-3)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(sort_asc([5, 4]),1),17),1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(sort_asc(input),1),17),1))"
  },
  {
    "input": "input : list = [3, 3, -3, -3, 3]\noutput : list = [-3, -3, 3, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(reverse([3, 3, -3, -3, 3])))",
    "io_inp": [
      3,
      3,
      -3,
      -3,
      3
    ],
    "io_out": [
      -3,
      -3,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [3, 1, -1, -1, -2]\noutput : list = [-6, -5, -5, -3, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(sub_n([3, 1, -1, -1, -2],3),-2)),3),26)",
    "io_inp": [
      3,
      1,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(sub_n(input,3),-2)),3),26)"
  },
  {
    "input": "input : list = [1, -5, 5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = drop([1, -5, 5, 1],2)",
    "io_inp": [
      1,
      -5,
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -1, 2, 0]\noutput : list = [4, 5, 7, 10]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_asc([5, -1, 2, 0])),4)),-1)",
    "io_inp": [
      5,
      -1,
      2,
      0
    ],
    "io_out": [
      4,
      5,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_asc(input)),4)),-1)"
  },
  {
    "input": "input : list = [4, 3, -1, -3, 2]\noutput : list = [2, 1, -3, -5, 0]",
    "output": "generated_output : list = sub_n(sub_n([4, 3, -1, -3, 2],-3),5)",
    "io_inp": [
      4,
      3,
      -1,
      -3,
      2
    ],
    "io_out": [
      2,
      1,
      -3,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),5)"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-2, -6, -8]",
    "output": "generated_output : list = mul_n([-1, -3, -4],2)",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, 4, -2, 3]\noutput : list = [3, -3, -12, -15]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(sub_n([0, 4, -2, 3],-1)),-3)),47)",
    "io_inp": [
      0,
      4,
      -2,
      3
    ],
    "io_out": [
      3,
      -3,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(sub_n(input,-1)),-3)),47)"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [-6, -5, 2]",
    "output": "generated_output : list = sub_n(take(sort_asc([-5, 3, -4]),16),1)",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),16),1)"
  },
  {
    "input": "input : list = [-5, 3, -2]\noutput : list = [-12, 6, 36]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_des([-5, 3, -2]),-3)),-2),-3)",
    "io_inp": [
      -5,
      3,
      -2
    ],
    "io_out": [
      -12,
      6,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_des(input),-3)),-2),-3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [1, -23]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-1, 5],-4)),3)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      1,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,-4)),3)"
  },
  {
    "input": "input : list = [-1, -2, 1, 0]\noutput : list = [-8, -4, 0, 4]",
    "output": "generated_output : list = mul_n(sort_asc([-1, -2, 1, 0]),4)",
    "io_inp": [
      -1,
      -2,
      1,
      0
    ],
    "io_out": [
      -8,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-4, -4, 0, 0, 5]\noutput : list = [-8, -8, -4, -4, 1]",
    "output": "generated_output : list = sub_n([-4, -4, 0, 0, 5],4)",
    "io_inp": [
      -4,
      -4,
      0,
      0,
      5
    ],
    "io_out": [
      -8,
      -8,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sub_n([-2, -4, 1],1),18))))",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sub_n(input,1),18))))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-11, 1]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(reverse([2, -2]),3),-5)),30)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -11,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(reverse(input),3),-5)),30)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [10, 35]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(reverse([2, -3]),-4)),-5))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      10,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(reverse(input),-4)),-5))"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [-9, -3, -2]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(sort_asc([4, 3, -3]),-1),-4),-1),-2)",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      -9,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(sort_asc(input),-1),-4),-1),-2)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [-8, -24, -32]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(add_n([0, 2, 3],-1),-2),11),4),-2)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      -8,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(add_n(input,-1),-2),11),4),-2)"
  },
  {
    "input": "input : list = [-1, 3, -3, -1, 0]\noutput : list = [4, 8, 2, 4, 5]",
    "output": "generated_output : list = sub_n([-1, 3, -3, -1, 0],-5)",
    "io_inp": [
      -1,
      3,
      -3,
      -1,
      0
    ],
    "io_out": [
      4,
      8,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-8, -8, -6]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(reverse([-4, -4, -2]))),-4))",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(reverse(input))),-4))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n([4, 2],-5),-1))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-5),-1))"
  },
  {
    "input": "input : list = [-3, -3, 0, 3, 2]\noutput : list = [2, 1, -1, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n([-3, -3, 0, 3, 2],3),3))),-5)",
    "io_inp": [
      -3,
      -3,
      0,
      3,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n(input,3),3))),-5)"
  },
  {
    "input": "input : list = [3, 2, -2, 4]\noutput : list = [4, -2, 2, 3]",
    "output": "generated_output : list = reverse([3, 2, -2, 4])",
    "io_inp": [
      3,
      2,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(add_n([1, 0],-2)))),2)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(add_n(input,-2)))),2)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [2, 4, 6]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(add_n([-4, -2, 0],5))),-5),-4)",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(add_n(input,5))),-5),-4)"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [0, 15]",
    "output": "generated_output : list = mul_n(drop([5, 0, -3],1),-5)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [1, 2, 4, 1, 1]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = drop([1, 2, 4, 1, 1],2)",
    "io_inp": [
      1,
      2,
      4,
      1,
      1
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [4, 4, -4]",
    "output": "generated_output : list = sort_des([4, 4, -4])",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, -6]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(sub_n([-4, 1],-5),-1)),22))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(sub_n(input,-5),-1)),22))"
  },
  {
    "input": "input : list = [-4, -3, 3, -3]\noutput : list = [-4, -3, -3, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_des([-4, -3, 3, -3]))),2),2)",
    "io_inp": [
      -4,
      -3,
      3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_des(input))),2),2)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [8, -6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(reverse([4, -3]))),2))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      8,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(reverse(input))),2))"
  },
  {
    "input": "input : list = [-2, 1, 5, 2, 5, -1]\noutput : list = [8, 4, 1]",
    "output": "generated_output : list = sort_des(sub_n(take([-2, 1, 5, 2, 5, -1],3),-3))",
    "io_inp": [
      -2,
      1,
      5,
      2,
      5,
      -1
    ],
    "io_out": [
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(input,3),-3))"
  },
  {
    "input": "input : list = [-2, 5, 0, -4, 2, -2]\noutput : list = [-4, -2, -2, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([-2, 5, 0, -4, 2, -2])",
    "io_inp": [
      -2,
      5,
      0,
      -4,
      2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(take([-3, -2, 3],1),-2)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [1, -5, -5, 2, 4, 5]\noutput : list = [6, 5, 3, 2, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(sub_n([1, -5, -5, 2, 4, 5],-1),24))))",
    "io_inp": [
      1,
      -5,
      -5,
      2,
      4,
      5
    ],
    "io_out": [
      6,
      5,
      3,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(sub_n(input,-1),24))))"
  },
  {
    "input": "input : list = [-2, -2, 3, -1, 3, 0]\noutput : list = [-5, -5, 0, -4, 0, -3]",
    "output": "generated_output : list = add_n([-2, -2, 3, -1, 3, 0],-3)",
    "io_inp": [
      -2,
      -2,
      3,
      -1,
      3,
      0
    ],
    "io_out": [
      -5,
      -5,
      0,
      -4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [0, -5, -5]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse([-2, -2, -3]),-3),-5))",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(input),-3),-5))"
  },
  {
    "input": "input : list = [4, 3, 4, 1, 0, 2]\noutput : list = [0, -2, -1, 2, 1, 2]",
    "output": "generated_output : list = sub_n(sub_n(reverse([4, 3, 4, 1, 0, 2]),-2),4)",
    "io_inp": [
      4,
      3,
      4,
      1,
      0,
      2
    ],
    "io_out": [
      0,
      -2,
      -1,
      2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-2),4)"
  },
  {
    "input": "input : list = [5, 1, 0, -2, -1]\noutput : list = [-11, -6, -1, 4, 24]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_des([5, 1, 0, -2, -1]),5)),1))",
    "io_inp": [
      5,
      1,
      0,
      -2,
      -1
    ],
    "io_out": [
      -11,
      -6,
      -1,
      4,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(sort_des(input),5)),1))"
  },
  {
    "input": "input : list = [1, 2, 0, -5, -5]\noutput : list = [-5, -6, -7, -12, -12]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n(add_n([1, 2, 0, -5, -5],-2),-3),-4)),-4)",
    "io_inp": [
      1,
      2,
      0,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(add_n(input,-2),-3),-4)),-4)"
  },
  {
    "input": "input : list = [-4, 5, 1, -5, 5, -5]\noutput : list = [8, 8, 4, -1, -2, -2]",
    "output": "generated_output : list = sort_des(add_n([-4, 5, 1, -5, 5, -5],3))",
    "io_inp": [
      -4,
      5,
      1,
      -5,
      5,
      -5
    ],
    "io_out": [
      8,
      8,
      4,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, -3, -2, 3]\noutput : list = [-10, -1, -1, 5, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(reverse([0, 0, -3, -2, 3]),-3),-1),19))",
    "io_inp": [
      0,
      0,
      -3,
      -2,
      3
    ],
    "io_out": [
      -10,
      -1,
      -1,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(reverse(input),-3),-1),19))"
  },
  {
    "input": "input : list = [-1, 0, 2, -2, -3, 5]\noutput : list = [-1, 0, 1, 2, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n([-1, 0, 2, -2, -3, 5],5),3)))",
    "io_inp": [
      -1,
      0,
      2,
      -2,
      -3,
      5
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(input,5),3)))"
  },
  {
    "input": "input : list = [1, -1, -2, 1, 5, 0]\noutput : list = [5, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des(drop([1, -1, -2, 1, 5, 0],1))",
    "io_inp": [
      1,
      -1,
      -2,
      1,
      5,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [0, -7]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n([3, -4],4),-1),1),-1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(input,4),-1),1),-1)"
  },
  {
    "input": "input : list = [5, 0, -3, -5]\noutput : list = [3, -2, -5, -7]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(sort_des([5, 0, -3, -5]))),2),12)",
    "io_inp": [
      5,
      0,
      -3,
      -5
    ],
    "io_out": [
      3,
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(sort_des(input))),2),12)"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [-7, -3, -2]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(reverse([3, 2, -2])),-5)))",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [-3, -4, 0, -5, 5]\noutput : list = [-6, -8, 0, -10, 10]",
    "output": "generated_output : list = take(mul_n([-3, -4, 0, -5, 5],2),20)",
    "io_inp": [
      -3,
      -4,
      0,
      -5,
      5
    ],
    "io_out": [
      -6,
      -8,
      0,
      -10,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),20)"
  },
  {
    "input": "input : list = [-2, -5, 0, -1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take(take(take(take(drop([-2, -5, 0, -1, 0],3),22),26),33),11)",
    "io_inp": [
      -2,
      -5,
      0,
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(take(drop(input,3),22),26),33),11)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [3, 3, -2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(sub_n([-4, 1, 1],1),12),2),5))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(sub_n(input,1),12),2),5))"
  },
  {
    "input": "input : list = [-3, 2, -5, -2, -2, 4]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(take([-3, 2, -5, -2, -2, 4],1))),-5))",
    "io_inp": [
      -3,
      2,
      -5,
      -2,
      -2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(take(input,1))),-5))"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [1, -5, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(reverse([-1, 5, -2]),2),2)))",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(reverse(input),2),2)))"
  },
  {
    "input": "input : list = [-4, 2, 5, -3, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([-4, 2, 5, -3, 4, -4],4)",
    "io_inp": [
      -4,
      2,
      5,
      -3,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = reverse(reverse([0, 4]))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des(add_n([-3, -5],4)),-3)),2)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(add_n(input,4)),-3)),2)"
  },
  {
    "input": "input : list = [-5, 3, 5, 3, -5]\noutput : list = [-12]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take([-5, 3, 5, 3, -5],1)),4),-3)",
    "io_inp": [
      -5,
      3,
      5,
      3,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(input,1)),4),-3)"
  },
  {
    "input": "input : list = [-1, 5, 1, -5, 4, 1]\noutput : list = [3, 6, -3, 3, 7, 1]",
    "output": "generated_output : list = reverse(sub_n([-1, 5, 1, -5, 4, 1],-2))",
    "io_inp": [
      -1,
      5,
      1,
      -5,
      4,
      1
    ],
    "io_out": [
      3,
      6,
      -3,
      3,
      7,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [1, 5, -4, 5, -1]\noutput : list = [8, 14]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(drop([1, 5, -4, 5, -1],3),-4)),3),-2)",
    "io_inp": [
      1,
      5,
      -4,
      5,
      -1
    ],
    "io_out": [
      8,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(drop(input,3),-4)),3),-2)"
  },
  {
    "input": "input : list = [5, 3, -3, 4, 5, 5]\noutput : list = [-7, 5, 7, 9, 9, 9]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(sort_asc([5, 3, -3, 4, 5, 5]),2),1)))",
    "io_inp": [
      5,
      3,
      -3,
      4,
      5,
      5
    ],
    "io_out": [
      -7,
      5,
      7,
      9,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(sort_asc(input),2),1)))"
  },
  {
    "input": "input : list = [2, 2, -4, -5, -1, -1]\noutput : list = [2, 2, -1, -1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc([2, 2, -4, -5, -1, -1]))",
    "io_inp": [
      2,
      2,
      -4,
      -5,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -3, 2, 2, 3, -1]\noutput : list = [9, 6]",
    "output": "generated_output : list = take(sort_des(mul_n([0, -3, 2, 2, 3, -1],3)),2)",
    "io_inp": [
      0,
      -3,
      2,
      2,
      3,
      -1
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,3)),2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [2, 2]",
    "output": "generated_output : list = sub_n([1, 1],-1)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 2, 3, -5, -2]\noutput : list = [3, 2, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-4, 2, 3, -5, -2])",
    "io_inp": [
      -4,
      2,
      3,
      -5,
      -2
    ],
    "io_out": [
      3,
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1, 2, -4]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(take([-1, -1, 2, -4],1)),5)))",
    "io_inp": [
      -1,
      -1,
      2,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(take(input,1)),5)))"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [-25, -20, 20]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n([5, -4, 4],-5))))",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      -25,
      -20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(input,-5))))"
  },
  {
    "input": "input : list = [-4, 1, 2]\noutput : list = [-6, -3, 12]",
    "output": "generated_output : list = reverse(mul_n([-4, 1, 2],-3))",
    "io_inp": [
      -4,
      1,
      2
    ],
    "io_out": [
      -6,
      -3,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [0, 6]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(reverse([4, -2])),3),-1))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(reverse(input)),3),-1))"
  },
  {
    "input": "input : list = [-2, -1, -2, 0]\noutput : list = [0, -1, -2, -2]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(sort_asc([-2, -1, -2, 0]))),1))",
    "io_inp": [
      -2,
      -1,
      -2,
      0
    ],
    "io_out": [
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse(add_n(reverse(take(mul_n([2, 1, 2],2),2)),-2))",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(mul_n(input,2),2)),-2))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-8, -5]",
    "output": "generated_output : list = sub_n([-4, -1],4)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-6, -2, 2]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([-1, -3, -5]),-2),2)",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),-2),2)"
  },
  {
    "input": "input : list = [-1, -2, -3]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -2, -3],1)",
    "io_inp": [
      -1,
      -2,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = drop([-3, 3, 1],1)",
    "io_inp": [
      -3,
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 1, 1, -2]\noutput : list = [6, 4, 4, 1]",
    "output": "generated_output : list = sub_n([3, 1, 1, -2],-3)",
    "io_inp": [
      3,
      1,
      1,
      -2
    ],
    "io_out": [
      6,
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, 2, -2, 3, -3, 5]\noutput : list = [13, 9, -7, -7, -11, -19]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n(sort_des([2, 2, -2, 3, -3, 5]),-4),-3)),-2)",
    "io_inp": [
      2,
      2,
      -2,
      3,
      -3,
      5
    ],
    "io_out": [
      13,
      9,
      -7,
      -7,
      -11,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(sort_des(input),-4),-3)),-2)"
  },
  {
    "input": "input : list = [0, -2, -2, -5]\noutput : list = [-6, -3, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(add_n([0, -2, -2, -5],1))),-2))",
    "io_inp": [
      0,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(add_n(input,1))),-2))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-10, -35]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sub_n([-5, 0],2))),5),9)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -10,
      -35
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sub_n(input,2))),5),9)"
  },
  {
    "input": "input : list = [1, -3, 2, 4]\noutput : list = [-35, 45, -55, -95]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n([1, -3, 2, 4],4),-2),-5),5)",
    "io_inp": [
      1,
      -3,
      2,
      4
    ],
    "io_out": [
      -35,
      45,
      -55,
      -95
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(input,4),-2),-5),5)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-8, -24]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(add_n([1, 5],1))),-4))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -8,
      -24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(add_n(input,1))),-4))"
  },
  {
    "input": "input : list = [3, 3, 5, -3, 1, 3]\noutput : list = [0, -2, -4, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(drop([3, 3, 5, -3, 1, 3],2)),5),5))",
    "io_inp": [
      3,
      3,
      5,
      -3,
      1,
      3
    ],
    "io_out": [
      0,
      -2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(drop(input,2)),5),5))"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [-40, 100, 140]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(sort_asc([-4, 3, 5]),2),5),36),4)",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      -40,
      100,
      140
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(sort_asc(input),2),5),36),4)"
  },
  {
    "input": "input : list = [-1, 3, 3, -2, -4]\noutput : list = [-2, -2, -6, -7, -9]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(sort_asc([-1, 3, 3, -2, -4])),5)))",
    "io_inp": [
      -1,
      3,
      3,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [1]",
    "output": "generated_output : list = drop(sort_asc(mul_n(sub_n(sort_des([-2, -2]),-1),-1)),1)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(mul_n(sub_n(sort_des(input),-1),-1)),1)"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [20, 16, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(reverse([5, 4, -5])))),4)",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      20,
      16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(reverse(input)))),4)"
  },
  {
    "input": "input : list = [5, 2, 1, -1, 1, -3]\noutput : list = [-12, -2, 8, 8, 13, 28]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(mul_n([5, 2, 1, -1, 1, -3],5),3),15)),1)",
    "io_inp": [
      5,
      2,
      1,
      -1,
      1,
      -3
    ],
    "io_out": [
      -12,
      -2,
      8,
      8,
      13,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(mul_n(input,5),3),15)),1)"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 4, 1],1)",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -5, -5, -5, 2, 5]\noutput : list = [30, 12, 6, -30]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc(mul_n([1, -5, -5, -5, 2, 5],3))),2),4)",
    "io_inp": [
      1,
      -5,
      -5,
      -5,
      2,
      5
    ],
    "io_out": [
      30,
      12,
      6,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(mul_n(input,3))),2),4)"
  },
  {
    "input": "input : list = [4, -5, 3, -4, 2, -2]\noutput : list = [-2, 2, -4, 3, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, 3, -4, 2, -2])",
    "io_inp": [
      4,
      -5,
      3,
      -4,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -4,
      3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = reverse([1, 1, 4])",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -2, 2, 1, 3]\noutput : list = [2, 5, 5, 6, 7]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(sort_asc([1, -2, 2, 1, 3]),-4))),48)",
    "io_inp": [
      1,
      -2,
      2,
      1,
      3
    ],
    "io_out": [
      2,
      5,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(sort_asc(input),-4))),48)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [-5, -6, -1]",
    "output": "generated_output : list = mul_n(reverse(sub_n([0, 5, 4],-1)),-1)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      -5,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-1)),-1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -1],5))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [4, 3, -2, 1]\noutput : list = [5, 4, 2, -1]",
    "output": "generated_output : list = sort_des(add_n([4, 3, -2, 1],1))",
    "io_inp": [
      4,
      3,
      -2,
      1
    ],
    "io_out": [
      5,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [3, 0, 5]\noutput : list = [5, 3, 0]",
    "output": "generated_output : list = sort_des([3, 0, 5])",
    "io_inp": [
      3,
      0,
      5
    ],
    "io_out": [
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, 1, 1, -5]\noutput : list = [-5, -5, 15, 15, 45]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(sort_des([5, 5, 1, 1, -5]),5),5),4),-5)",
    "io_inp": [
      5,
      5,
      1,
      1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      15,
      15,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(sort_des(input),5),5),4),-5)"
  },
  {
    "input": "input : list = [-1, -4, -5, 2, -5, -2]\noutput : list = [-50, 25, -150, 25, 0, -75]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(reverse([-1, -4, -5, 2, -5, -2]),-1),3),-5),5)",
    "io_inp": [
      -1,
      -4,
      -5,
      2,
      -5,
      -2
    ],
    "io_out": [
      -50,
      25,
      -150,
      25,
      0,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(reverse(input),-1),3),-5),5)"
  },
  {
    "input": "input : list = [-1, 2, -2, 4, 2, 4]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(reverse(drop(sub_n(sort_des([-1, 2, -2, 4, 2, 4]),-2),4)))",
    "io_inp": [
      -1,
      2,
      -2,
      4,
      2,
      4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(sub_n(sort_des(input),-2),4)))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(mul_n([0, 0],5),3))),-3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(mul_n(input,5),3))),-3)"
  },
  {
    "input": "input : list = [5, 0, -5, -5, -5, 2]\noutput : list = [2, -5, -5, -5, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, -5, -5, -5, 2])",
    "io_inp": [
      5,
      0,
      -5,
      -5,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -5,
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 0, -4, 4, -2, 0]\noutput : list = [-60, 0, 0, 30, 30, 60]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(mul_n([-2, 0, -4, 4, -2, 0],-5))),43),3)",
    "io_inp": [
      -2,
      0,
      -4,
      4,
      -2,
      0
    ],
    "io_out": [
      -60,
      0,
      0,
      30,
      30,
      60
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(mul_n(input,-5))),43),3)"
  },
  {
    "input": "input : list = [1, -4, 2, 3]\noutput : list = [1]",
    "output": "generated_output : list = take(take(take([1, -4, 2, 3],1),14),25)",
    "io_inp": [
      1,
      -4,
      2,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(take(input,1),14),25)"
  },
  {
    "input": "input : list = [-4, 0, -2]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(take([-4, 0, -2],1))),5),40)",
    "io_inp": [
      -4,
      0,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(take(input,1))),5),40)"
  },
  {
    "input": "input : list = [0, 1, 0, -4, -5]\noutput : list = [4, 0, 0, -16, -20]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(sort_des([0, 1, 0, -4, -5]),4))),45)",
    "io_inp": [
      0,
      1,
      0,
      -4,
      -5
    ],
    "io_out": [
      4,
      0,
      0,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(sort_des(input),4))),45)"
  },
  {
    "input": "input : list = [4, 4, -1, 1, -4, 1]\noutput : list = [8, 2, -2, -2, -8, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sort_des([4, 4, -1, 1, -4, 1]))),-2))",
    "io_inp": [
      4,
      4,
      -1,
      1,
      -4,
      1
    ],
    "io_out": [
      8,
      2,
      -2,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [-5, 4, 3, 3]\noutput : list = [-7, 2, 1, 1]",
    "output": "generated_output : list = take(sub_n([-5, 4, 3, 3],2),13)",
    "io_inp": [
      -5,
      4,
      3,
      3
    ],
    "io_out": [
      -7,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,2),13)"
  },
  {
    "input": "input : list = [3, -4, 0]\noutput : list = [0, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, 0])",
    "io_inp": [
      3,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, 1, 1, -4]\noutput : list = [-4, -2, 1, 1, 3]",
    "output": "generated_output : list = take(take(reverse(take(sort_des([3, -2, 1, 1, -4]),7)),18),30)",
    "io_inp": [
      3,
      -2,
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -2,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(sort_des(input),7)),18),30)"
  },
  {
    "input": "input : list = [3, -3, -3, 4]\noutput : list = [30, 9, 9, 27]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n([3, -3, -3, 4],5),3),4),1))",
    "io_inp": [
      3,
      -3,
      -3,
      4
    ],
    "io_out": [
      30,
      9,
      9,
      27
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n(input,5),3),4),1))"
  },
  {
    "input": "input : list = [-3, 0, 4, 2, -2, 2]\noutput : list = [8, 9, 11, 13, 13, 15]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(add_n([-3, 0, 4, 2, -2, 2],2))),4),-5)",
    "io_inp": [
      -3,
      0,
      4,
      2,
      -2,
      2
    ],
    "io_out": [
      8,
      9,
      11,
      13,
      13,
      15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(add_n(input,2))),4),-5)"
  },
  {
    "input": "input : list = [-4, 5, 5, -1, 2]\noutput : list = [-105, -45, 15, 75, 75]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(mul_n([-4, 5, 5, -1, 2],4))),-5),5)",
    "io_inp": [
      -4,
      5,
      5,
      -1,
      2
    ],
    "io_out": [
      -105,
      -45,
      15,
      75,
      75
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(mul_n(input,4))),-5),5)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-18, 0]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(sort_asc([-5, 4])),5),-2))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -18,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(sort_asc(input)),5),-2))"
  },
  {
    "input": "input : list = [4, -5, -4, 5, 4, 3]\noutput : list = [4, -5]",
    "output": "generated_output : list = take([4, -5, -4, 5, 4, 3],2)",
    "io_inp": [
      4,
      -5,
      -4,
      5,
      4,
      3
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -1, 4, 3, -1]\noutput : list = [-1, -1, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse([3, -1, 4, 3, -1]))",
    "io_inp": [
      3,
      -1,
      4,
      3,
      -1
    ],
    "io_out": [
      -1,
      -1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des([2, 2])",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, 5, 5, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(drop(sort_asc(add_n(sort_des([2, -2, 5, 5, 3]),-5)),3),6)",
    "io_inp": [
      2,
      -2,
      5,
      5,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(add_n(sort_des(input),-5)),3),6)"
  },
  {
    "input": "input : list = [2, 0, 2, -5, -5]\noutput : list = [0, 0, 5, 7, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des([2, 0, 2, -5, -5]),5)))",
    "io_inp": [
      2,
      0,
      2,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(input),5)))"
  },
  {
    "input": "input : list = [4, 5, 2, -3, -3, -4]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(take([4, 5, 2, -3, -3, -4],1)),-4)),-2)",
    "io_inp": [
      4,
      5,
      2,
      -3,
      -3,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(take(input,1)),-4)),-2)"
  },
  {
    "input": "input : list = [2, 2, 5, 1, 0, 2]\noutput : list = [-21, -21, -30, -18, -15, -21]",
    "output": "generated_output : list = mul_n(add_n([2, 2, 5, 1, 0, 2],5),-3)",
    "io_inp": [
      2,
      2,
      5,
      1,
      0,
      2
    ],
    "io_out": [
      -21,
      -21,
      -30,
      -18,
      -15,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [-5, 5, 2, 5, -4]\noutput : list = [5, 5, 2, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 5, 2, 5, -4])",
    "io_inp": [
      -5,
      5,
      2,
      5,
      -4
    ],
    "io_out": [
      5,
      5,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, -3, -2, -2, 0]\noutput : list = [18, 2, -2, -10, -10, -14]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n([5, 1, -3, -2, -2, 0],4)),34),2)",
    "io_inp": [
      5,
      1,
      -3,
      -2,
      -2,
      0
    ],
    "io_out": [
      18,
      2,
      -2,
      -10,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(input,4)),34),2)"
  },
  {
    "input": "input : list = [5, -1, -4, -4]\noutput : list = [5, -1, -4, -4]",
    "output": "generated_output : list = reverse(reverse([5, -1, -4, -4]))",
    "io_inp": [
      5,
      -1,
      -4,
      -4
    ],
    "io_out": [
      5,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-2, -2, 3, -1, -4, -3]\noutput : list = [-4, -4, 1, -3, -6, -5]",
    "output": "generated_output : list = add_n([-2, -2, 3, -1, -4, -3],-2)",
    "io_inp": [
      -2,
      -2,
      3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -4,
      1,
      -3,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, 1, 2, -3]\noutput : list = [2, 2]",
    "output": "generated_output : list = mul_n(take([1, 1, 2, -3],2),2)",
    "io_inp": [
      1,
      1,
      2,
      -3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),2)"
  },
  {
    "input": "input : list = [2, -2, 3, -3, 0, 1]\noutput : list = [-22, -20, -16, -14, -12, -10]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sub_n([2, -2, 3, -3, 0, 1],5),2)),5),2)",
    "io_inp": [
      2,
      -2,
      3,
      -3,
      0,
      1
    ],
    "io_out": [
      -22,
      -20,
      -16,
      -14,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sub_n(input,5),2)),5),2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(sort_des([2, 0]),-4)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [3, 3, 4, -3, 1, -3]\noutput : list = [5, 4, 4, 2, -2, -2]",
    "output": "generated_output : list = take(sort_des(take(take(sub_n([3, 3, 4, -3, 1, -3],-1),23),12)),49)",
    "io_inp": [
      3,
      3,
      4,
      -3,
      1,
      -3
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(sub_n(input,-1),23),12)),49)"
  },
  {
    "input": "input : list = [-4, 0, 4]\noutput : list = [0, 4, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(add_n([-4, 0, 4],4)))))",
    "io_inp": [
      -4,
      0,
      4
    ],
    "io_out": [
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(add_n(input,4)))))"
  },
  {
    "input": "input : list = [5, 3, 5, 3, 2]\noutput : list = [-8, -12, -12, -20, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([5, 3, 5, 3, 2]),-4))",
    "io_inp": [
      5,
      3,
      5,
      3,
      2
    ],
    "io_out": [
      -8,
      -12,
      -12,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [2, 10]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(sort_asc([-4, 4])),5),1))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      2,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(sort_asc(input)),5),1))"
  },
  {
    "input": "input : list = [-5, -1, 0, 5, 2]\noutput : list = [50, 30, 25, 15, 0]",
    "output": "generated_output : list = take(mul_n(take(sort_asc(add_n([-5, -1, 0, 5, 2],-5)),11),-5),27)",
    "io_inp": [
      -5,
      -1,
      0,
      5,
      2
    ],
    "io_out": [
      50,
      30,
      25,
      15,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_asc(add_n(input,-5)),11),-5),27)"
  },
  {
    "input": "input : list = [-4, 5, 4, -4, -4, -1]\noutput : list = [5, 4, -1, -4, -4, -4]",
    "output": "generated_output : list = sort_des([-4, 5, 4, -4, -4, -1])",
    "io_inp": [
      -4,
      5,
      4,
      -4,
      -4,
      -1
    ],
    "io_out": [
      5,
      4,
      -1,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, 0]\noutput : list = [0, -15, -5]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(mul_n([-1, -3, 0],5)),4),-4),1)",
    "io_inp": [
      -1,
      -3,
      0
    ],
    "io_out": [
      0,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(mul_n(input,5)),4),-4),1)"
  },
  {
    "input": "input : list = [1, 1, -4, -5]\noutput : list = [-5, -4, 1, 1]",
    "output": "generated_output : list = sort_asc([1, 1, -4, -5])",
    "io_inp": [
      1,
      1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -1, 4, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = drop([-2, 1, -1, 4, -5, -4],4)",
    "io_inp": [
      -2,
      1,
      -1,
      4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = reverse([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(drop([2, -3, 0],1),-3))),1)",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(drop(input,1),-3))),1)"
  },
  {
    "input": "input : list = [-3, 5, -4, 2, -4]\noutput : list = [-15, -9, -15, -6]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(drop([-3, 5, -4, 2, -4],1),5)),-4),-2)",
    "io_inp": [
      -3,
      5,
      -4,
      2,
      -4
    ],
    "io_out": [
      -15,
      -9,
      -15,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(drop(input,1),5)),-4),-2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-7, -7]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(reverse([-3, -3]))),12),-4)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(reverse(input))),12),-4)"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(add_n([4, 2, 3],4),3)),19))",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(add_n(input,4),3)),19))"
  },
  {
    "input": "input : list = [-2, 0, 1, 1]\noutput : list = [2, 4, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc([-2, 0, 1, 1]),4)",
    "io_inp": [
      -2,
      0,
      1,
      1
    ],
    "io_out": [
      2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [0, -4, 4, -5, 0, 5]\noutput : list = [2, 1, -3, -3, -7, -8]",
    "output": "generated_output : list = add_n(sort_des([0, -4, 4, -5, 0, 5]),-3)",
    "io_inp": [
      0,
      -4,
      4,
      -5,
      0,
      5
    ],
    "io_out": [
      2,
      1,
      -3,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [4, 2, 3, 2]\noutput : list = [5, 4, 3, 3]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(reverse([4, 2, 3, 2]),1),-1),1))",
    "io_inp": [
      4,
      2,
      3,
      2
    ],
    "io_out": [
      5,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(reverse(input),1),-1),1))"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [-3, 4, -2]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(add_n([-2, 4, -3],4)),1),-3),1)",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      -3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(add_n(input,4)),1),-3),1)"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [0, 2, -3]",
    "output": "generated_output : list = add_n(reverse([0, 5, 3]),-3)",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      0,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [4, -5, -4, -1, -4, -1]\noutput : list = [-2, -1, -1, 2, 2, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des([4, -5, -4, -1, -4, -1]),-3)))",
    "io_inp": [
      4,
      -5,
      -4,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(input),-3)))"
  },
  {
    "input": "input : list = [2, -1, 4, 2, 1, -1]\noutput : list = [6, 0, 0, -3, -9, -9]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(mul_n([2, -1, 4, 2, 1, -1],1)),2)),3)",
    "io_inp": [
      2,
      -1,
      4,
      2,
      1,
      -1
    ],
    "io_out": [
      6,
      0,
      0,
      -3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(mul_n(input,1)),2)),3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [12, 3]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(reverse([2, -1]),3),-3),6))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      12,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(reverse(input),3),-3),6))"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, -1],1)",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = take(reverse([-4, -4, -2]),13)",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),13)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(sub_n([3, 3],-2)))))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [-1, -1, -1, -4]\noutput : list = [-9, -6, -6, -6]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(reverse([-1, -1, -1, -4]),3)),10),2)",
    "io_inp": [
      -1,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(reverse(input),3)),10),2)"
  },
  {
    "input": "input : list = [3, 1, 0, 3, 4, 1]\noutput : list = [5, 4, 2, 2, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(drop([3, 1, 0, 3, 4, 1],1))),-1),-2)",
    "io_inp": [
      3,
      1,
      0,
      3,
      4,
      1
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(drop(input,1))),-1),-2)"
  },
  {
    "input": "input : list = [-5, 3, -3, 2, 2]\noutput : list = [-24, -16, 4, 4, 8]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc([-5, 3, -3, 2, 2]),21),-1)),4)",
    "io_inp": [
      -5,
      3,
      -3,
      2,
      2
    ],
    "io_out": [
      -24,
      -16,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc(input),21),-1)),4)"
  },
  {
    "input": "input : list = [-1, -1, 1]\noutput : list = [-12, -12, -4]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(add_n([-1, -1, 1],-1)),4),-4))",
    "io_inp": [
      -1,
      -1,
      1
    ],
    "io_out": [
      -12,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(add_n(input,-1)),4),-4))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([-1, 3]),4))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-4, -1, 1, 4, 2, -1]\noutput : list = [3, 1, 0, -2, -2, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sub_n([-4, -1, 1, 4, 2, -1],3),-4),2),15))",
    "io_inp": [
      -4,
      -1,
      1,
      4,
      2,
      -1
    ],
    "io_out": [
      3,
      1,
      0,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sub_n(input,3),-4),2),15))"
  },
  {
    "input": "input : list = [4, -1, 1, 4]\noutput : list = [4, 12, 24]",
    "output": "generated_output : list = sort_asc(mul_n(drop(sub_n(sub_n([4, -1, 1, 4],-3),1),1),4))",
    "io_inp": [
      4,
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      12,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(sub_n(sub_n(input,-3),1),1),4))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take(sub_n(take(take(sort_asc([5, -2]),14),10),2),35)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(sort_asc(input),14),10),2),35)"
  },
  {
    "input": "input : list = [-4, 2, -5, 1, 2]\noutput : list = [-2, -8]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(take([-4, 2, -5, 1, 2],2),2)),-4),-2)",
    "io_inp": [
      -4,
      2,
      -5,
      1,
      2
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(take(input,2),2)),-4),-2)"
  },
  {
    "input": "input : list = [-5, -3, 2, 3, -2]\noutput : list = [15, 10, -10, -15, -25]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-5, -3, 2, 3, -2])),5)",
    "io_inp": [
      -5,
      -3,
      2,
      3,
      -2
    ],
    "io_out": [
      15,
      10,
      -10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [-4, 0, 0, 2, -1, 1]\noutput : list = [7, 6, 4]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(drop([-4, 0, 0, 2, -1, 1],3),-5),17)),1)",
    "io_inp": [
      -4,
      0,
      0,
      2,
      -1,
      1
    ],
    "io_out": [
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(drop(input,3),-5),17)),1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-11, 4]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sort_asc([0, -5])),3)),4)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -11,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sort_asc(input)),3)),4)"
  },
  {
    "input": "input : list = [-5, -4, -4, 2, -1, -1]\noutput : list = [-4, -3, -3, 3, 0, 0]",
    "output": "generated_output : list = sub_n([-5, -4, -4, 2, -1, -1],-1)",
    "io_inp": [
      -5,
      -4,
      -4,
      2,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -3,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 5, -2, -1]\noutput : list = [10, -10, 4, 2]",
    "output": "generated_output : list = mul_n([-5, 5, -2, -1],-2)",
    "io_inp": [
      -5,
      5,
      -2,
      -1
    ],
    "io_out": [
      10,
      -10,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-6, -7]",
    "output": "generated_output : list = take(add_n(sub_n(add_n([-2, -3],-5),-5),-4),9)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(input,-5),-5),-4),9)"
  },
  {
    "input": "input : list = [-3, 0, 5, -4, -3]\noutput : list = [-7, -4, 1, -8, -7]",
    "output": "generated_output : list = sub_n([-3, 0, 5, -4, -3],4)",
    "io_inp": [
      -3,
      0,
      5,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -4,
      1,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [5, -2, 5, -1, 1]\noutput : list = [-15, 6, -15, 3, -3]",
    "output": "generated_output : list = mul_n([5, -2, 5, -1, 1],-3)",
    "io_inp": [
      5,
      -2,
      5,
      -1,
      1
    ],
    "io_out": [
      -15,
      6,
      -15,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 5, -2, 3, -3]\noutput : list = [-4, 2, -3, 4]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(drop([3, 5, -2, 3, -3],1),1)),5),-3)",
    "io_inp": [
      3,
      5,
      -2,
      3,
      -3
    ],
    "io_out": [
      -4,
      2,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(drop(input,1),1)),5),-3)"
  },
  {
    "input": "input : list = [2, -3, 0, -1, 2, 4]\noutput : list = [-4, -2, -1, 1, 1, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(add_n([2, -3, 0, -1, 2, 4],-2))),-1),-2)",
    "io_inp": [
      2,
      -3,
      0,
      -1,
      2,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(add_n(input,-2))),-1),-2)"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [-2, -10]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(drop([-5, 3, -5],1))),-5),6)",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(drop(input,1))),-5),6)"
  },
  {
    "input": "input : list = [5, 3, 4, 4]\noutput : list = [-8, -5, -5, -2]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des([5, 3, 4, 4])),-3),3),4)",
    "io_inp": [
      5,
      3,
      4,
      4
    ],
    "io_out": [
      -8,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des(input)),-3),3),4)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [-12, -8, -4]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(reverse([-1, 3, -5]),3),-4)))",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      -12,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(reverse(input),3),-4)))"
  },
  {
    "input": "input : list = [4, 5, 5, -3]\noutput : list = [3, 4, 4, -4]",
    "output": "generated_output : list = sub_n([4, 5, 5, -3],1)",
    "io_inp": [
      4,
      5,
      5,
      -3
    ],
    "io_out": [
      3,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-4, 4, -5, -3, 3, -1]\noutput : list = [3, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(drop([-4, 4, -5, -3, 3, -1],2),6))))",
    "io_inp": [
      -4,
      4,
      -5,
      -3,
      3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(drop(input,2),6))))"
  },
  {
    "input": "input : list = [-3, -4, 4, -2]\noutput : list = [20, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(take([-3, -4, 4, -2],2),3),-4)),5)",
    "io_inp": [
      -3,
      -4,
      4,
      -2
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(take(input,2),3),-4)),5)"
  },
  {
    "input": "input : list = [-1, -5, 5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(drop([-1, -5, 5, 2],2))",
    "io_inp": [
      -1,
      -5,
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-1, 5, -4, 3, -2, 5]\noutput : list = [-15, 3, -24, -3, -18, 3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(sub_n([-1, 5, -4, 3, -2, 5],5),3),3),3),-3)",
    "io_inp": [
      -1,
      5,
      -4,
      3,
      -2,
      5
    ],
    "io_out": [
      -15,
      3,
      -24,
      -3,
      -18,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(sub_n(input,5),3),3),3),-3)"
  },
  {
    "input": "input : list = [-2, -1, 1, 0]\noutput : list = [-1, 1, 0]",
    "output": "generated_output : list = drop([-2, -1, 1, 0],1)",
    "io_inp": [
      -2,
      -1,
      1,
      0
    ],
    "io_out": [
      -1,
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 5, 1, -2]\noutput : list = [2, -2, -3, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc([0, 5, 1, -2])))),-3)",
    "io_inp": [
      0,
      5,
      1,
      -2
    ],
    "io_out": [
      2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc(input)))),-3)"
  },
  {
    "input": "input : list = [1, 4, -3, -5, 5]\noutput : list = [-3, -1, 3, 6, 7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([1, 4, -3, -5, 5]),-4),-2)",
    "io_inp": [
      1,
      4,
      -3,
      -5,
      5
    ],
    "io_out": [
      -3,
      -1,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-4),-2)"
  },
  {
    "input": "input : list = [0, -3, 5, -5, 4]\noutput : list = [0, 15, -25, 25, -20]",
    "output": "generated_output : list = mul_n([0, -3, 5, -5, 4],-5)",
    "io_inp": [
      0,
      -3,
      5,
      -5,
      4
    ],
    "io_out": [
      0,
      15,
      -25,
      25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -2, -2],1)",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -5, -3, 3, 0]\noutput : list = [-20, -10, 5, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(drop([1, -5, -3, 3, 0],1),1),5),37))",
    "io_inp": [
      1,
      -5,
      -3,
      3,
      0
    ],
    "io_out": [
      -20,
      -10,
      5,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(drop(input,1),1),5),37))"
  },
  {
    "input": "input : list = [5, 5, -2, 3]\noutput : list = [3, 3, -4, 1]",
    "output": "generated_output : list = add_n([5, 5, -2, 3],-2)",
    "io_inp": [
      5,
      5,
      -2,
      3
    ],
    "io_out": [
      3,
      3,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -4, 3, 5, 0]\noutput : list = [-15, -9, 0, 12, 12]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n([-4, -4, 3, 5, 0],-3))),19)",
    "io_inp": [
      -4,
      -4,
      3,
      5,
      0
    ],
    "io_out": [
      -15,
      -9,
      0,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(input,-3))),19)"
  },
  {
    "input": "input : list = [0, -1, -1, 2]\noutput : list = [-20, -8, -8, -12]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(add_n([0, -1, -1, 2],2),3)),2),-4)",
    "io_inp": [
      0,
      -1,
      -1,
      2
    ],
    "io_out": [
      -20,
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(add_n(input,2),3)),2),-4)"
  },
  {
    "input": "input : list = [-1, 4, 0, 5]\noutput : list = [14, 4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(drop([-1, 4, 0, 5],2),2)),-4),1)",
    "io_inp": [
      -1,
      4,
      0,
      5
    ],
    "io_out": [
      14,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(drop(input,2),2)),-4),1)"
  },
  {
    "input": "input : list = [5, 1, 4, -2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 1, 4, -2],1)",
    "io_inp": [
      5,
      1,
      4,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [6, -1]",
    "output": "generated_output : list = take(take(add_n(drop(add_n([4, 4, -3],4),1),-2),7),5)",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(drop(add_n(input,4),1),-2),7),5)"
  },
  {
    "input": "input : list = [1, -4, 5, 1, -2, 0]\noutput : list = [-8, -6, -4, -3, -3, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([1, -4, 5, 1, -2, 0]),4))",
    "io_inp": [
      1,
      -4,
      5,
      1,
      -2,
      0
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [6, 4]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(add_n([-2, -4],5),-3),25)))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(add_n(input,5),-3),25)))"
  },
  {
    "input": "input : list = [5, 3, 3, 4]\noutput : list = [1, -1, -1, 0]",
    "output": "generated_output : list = sub_n([5, 3, 3, 4],4)",
    "io_inp": [
      5,
      3,
      3,
      4
    ],
    "io_out": [
      1,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, -5, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = drop([-1, -5, -5, 5],2)",
    "io_inp": [
      -1,
      -5,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -5, -5, 4, 3, -4]\noutput : list = [3, -2]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(take([0, -5, -5, 4, 3, -4],2))),45),3)",
    "io_inp": [
      0,
      -5,
      -5,
      4,
      3,
      -4
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(take(input,2))),45),3)"
  },
  {
    "input": "input : list = [-1, -5, 3, 1, -5]\noutput : list = [-7, -5, -3, 1, 1]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc([-1, -5, 3, 1, -5]),-4)),-1)",
    "io_inp": [
      -1,
      -5,
      3,
      1,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(input),-4)),-1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-80, 100]",
    "output": "generated_output : list = mul_n(mul_n([-4, 5],-5),-4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -80,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-4)"
  },
  {
    "input": "input : list = [-2, 3, 3, 2]\noutput : list = [6, 2, 1, 1]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse([-2, 3, 3, 2]),-4),-1))",
    "io_inp": [
      -2,
      3,
      3,
      2
    ],
    "io_out": [
      6,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(input),-4),-1))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-7, -6]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n([2, 1],5),6),3))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(input,5),6),3))"
  },
  {
    "input": "input : list = [-3, 4, -2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take([-3, 4, -2, -3],1))",
    "io_inp": [
      -3,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [4, 4, -2]",
    "output": "generated_output : list = sort_des(reverse([4, 4, -2]))",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -5, -1, 2, -3, -2]\noutput : list = [-5, -3, -2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(sort_des([0, -5, -1, 2, -3, -2])))))",
    "io_inp": [
      0,
      -5,
      -1,
      2,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 1, -3, 0]\noutput : list = [4, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(take([-5, 1, -3, 0],2)))),-3)",
    "io_inp": [
      -5,
      1,
      -3,
      0
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(take(input,2)))),-3)"
  },
  {
    "input": "input : list = [3, 4, 1, -2, 2, 5]\noutput : list = [28, 32, 20, 8, 24, 36]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(add_n([3, 4, 1, -2, 2, 5],4),4),5),4),-1)",
    "io_inp": [
      3,
      4,
      1,
      -2,
      2,
      5
    ],
    "io_out": [
      28,
      32,
      20,
      8,
      24,
      36
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(add_n(input,4),4),5),4),-1)"
  },
  {
    "input": "input : list = [3, -3, -2, 5, -5]\noutput : list = [5, 2, -5]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(drop([3, -3, -2, 5, -5],2))),-1))",
    "io_inp": [
      3,
      -3,
      -2,
      5,
      -5
    ],
    "io_out": [
      5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(drop(input,2))),-1))"
  },
  {
    "input": "input : list = [2, 2, 4, 0, 5, 5]\noutput : list = [-20, 12, 12, 44, 60, 60]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(sort_asc([2, 2, 4, 0, 5, 5]),1),4),-5),4)",
    "io_inp": [
      2,
      2,
      4,
      0,
      5,
      5
    ],
    "io_out": [
      -20,
      12,
      12,
      44,
      60,
      60
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(sort_asc(input),1),4),-5),4)"
  },
  {
    "input": "input : list = [5, 2, 3, 2, -4, -5]\noutput : list = [-1, 0, 6, 6, 7, 9]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc([5, 2, 3, 2, -4, -5])),2),2)",
    "io_inp": [
      5,
      2,
      3,
      2,
      -4,
      -5
    ],
    "io_out": [
      -1,
      0,
      6,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(input)),2),2)"
  },
  {
    "input": "input : list = [-4, 2, 4, 4]\noutput : list = [18, -36]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(take([-4, 2, 4, 4],2),-3)),-3))",
    "io_inp": [
      -4,
      2,
      4,
      4
    ],
    "io_out": [
      18,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(take(input,2),-3)),-3))"
  },
  {
    "input": "input : list = [2, -2, 4]\noutput : list = [0, 4, 6]",
    "output": "generated_output : list = reverse(take(sort_des(add_n([2, -2, 4],2)),22))",
    "io_inp": [
      2,
      -2,
      4
    ],
    "io_out": [
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(input,2)),22))"
  },
  {
    "input": "input : list = [-5, -1, -2, -4]\noutput : list = [-37, -29, -13, -5]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(mul_n([-5, -1, -2, -4],4)),2),3))",
    "io_inp": [
      -5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -37,
      -29,
      -13,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(mul_n(input,4)),2),3))"
  },
  {
    "input": "input : list = [-5, 0, -2, 3, -1, -5]\noutput : list = [2, -2, 8, 0, -8]",
    "output": "generated_output : list = take(add_n(mul_n(take(drop([-5, 0, -2, 3, -1, -5],1),11),2),2),54)",
    "io_inp": [
      -5,
      0,
      -2,
      3,
      -1,
      -5
    ],
    "io_out": [
      2,
      -2,
      8,
      0,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(drop(input,1),11),2),2),54)"
  },
  {
    "input": "input : list = [3, 2, -1, -3]\noutput : list = [2, 0, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(sub_n([3, 2, -1, -3],-1),-1))))",
    "io_inp": [
      3,
      2,
      -1,
      -3
    ],
    "io_out": [
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(sub_n(input,-1),-1))))"
  },
  {
    "input": "input : list = [-3, -3, 0, -2, -4, -4]\noutput : list = [-1, 23, 35, 35, 47, 47]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(mul_n([-3, -3, 0, -2, -4, -4],3))),-4),1)",
    "io_inp": [
      -3,
      -3,
      0,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -1,
      23,
      35,
      35,
      47,
      47
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(mul_n(input,3))),-4),1)"
  },
  {
    "input": "input : list = [0, -3, -5]\noutput : list = [34]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(drop(add_n([0, -3, -5],-3),2),-4)),-2)",
    "io_inp": [
      0,
      -3,
      -5
    ],
    "io_out": [
      34
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(drop(add_n(input,-3),2),-4)),-2)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [10, 7]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(add_n([-2, -5],3),-5))),4)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      10,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(add_n(input,3),-5))),4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(take(sort_des(sub_n([4, -2],1)),19),3)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sub_n(input,1)),19),3)"
  },
  {
    "input": "input : list = [-1, 3, -3, -1]\noutput : list = [-1, -1, 3]",
    "output": "generated_output : list = take(take(reverse(take(sort_des([-1, 3, -3, -1]),3)),10),33)",
    "io_inp": [
      -1,
      3,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(sort_des(input),3)),10),33)"
  },
  {
    "input": "input : list = [3, 0, -4, 5, 1, -5]\noutput : list = [4, 2, 0, -1, -5, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n([3, 0, -4, 5, 1, -5],1))))",
    "io_inp": [
      3,
      0,
      -4,
      5,
      1,
      -5
    ],
    "io_out": [
      4,
      2,
      0,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(input,1))))"
  },
  {
    "input": "input : list = [-4, -4, -4, -2, -5]\noutput : list = [0, -2, -2, -2, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(add_n([-4, -4, -4, -2, -5],-2),4)),3),-5)",
    "io_inp": [
      -4,
      -4,
      -4,
      -2,
      -5
    ],
    "io_out": [
      0,
      -2,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(add_n(input,-2),4)),3),-5)"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [4, -3, -4]",
    "output": "generated_output : list = add_n([3, -4, -5],1)",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 5, 0, 4]\noutput : list = [-20, -25, 0, -20]",
    "output": "generated_output : list = mul_n([4, 5, 0, 4],-5)",
    "io_inp": [
      4,
      5,
      0,
      4
    ],
    "io_out": [
      -20,
      -25,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -5, 5, 2]\noutput : list = [-5, -2, 2, 5]",
    "output": "generated_output : list = sort_asc([-2, -5, 5, 2])",
    "io_inp": [
      -2,
      -5,
      5,
      2
    ],
    "io_out": [
      -5,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 3, 5]\noutput : list = [5, 1, -13]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(drop([-1, -4, 3, 5],1),2))),-5)",
    "io_inp": [
      -1,
      -4,
      3,
      5
    ],
    "io_out": [
      5,
      1,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(drop(input,1),2))),-5)"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_asc(drop([4, -1, -1],1))",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [2, 5, 2]",
    "output": "generated_output : list = reverse(sub_n([1, 4, 1],-1))",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      2,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [1, 1, 0, -5, 2]\noutput : list = [-2, -1, -1, 0, 5]",
    "output": "generated_output : list = mul_n(sort_des([1, 1, 0, -5, 2]),-1)",
    "io_inp": [
      1,
      1,
      0,
      -5,
      2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [2, -5, 5, 5, -5, -2]\noutput : list = [0, 3, -7, -7, 3, -4]",
    "output": "generated_output : list = take(mul_n(take(reverse(add_n([2, -5, 5, 5, -5, -2],2)),37),-1),11)",
    "io_inp": [
      2,
      -5,
      5,
      5,
      -5,
      -2
    ],
    "io_out": [
      0,
      3,
      -7,
      -7,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(add_n(input,2)),37),-1),11)"
  },
  {
    "input": "input : list = [-2, -2, -2, -1, -5, -2]\noutput : list = [-5, -10, -10, -10, -10, -25]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-2, -2, -2, -1, -5, -2])),5)",
    "io_inp": [
      -2,
      -2,
      -2,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -10,
      -10,
      -10,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-5, 3, 0, 2]\noutput : list = [15, 10, 0, -25]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(mul_n([-5, 3, 0, 2],5)))),1)",
    "io_inp": [
      -5,
      3,
      0,
      2
    ],
    "io_out": [
      15,
      10,
      0,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(mul_n(input,5)))),1)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [3, 9]",
    "output": "generated_output : list = sub_n([-1, 5],-4)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 2, 4, 4]\noutput : list = [20, 15, 25, 25]",
    "output": "generated_output : list = sub_n(mul_n([3, 2, 4, 4],5),-5)",
    "io_inp": [
      3,
      2,
      4,
      4
    ],
    "io_out": [
      20,
      15,
      25,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-5)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [16, 4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sort_asc([1, 4]),4))))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      16,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [2, 4, 2]",
    "output": "generated_output : list = add_n([3, 5, 3],-1)",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      2,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 5, -3, -2, -2, 4]\noutput : list = [0, 1, 1, 5, 7, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n(add_n([2, 5, -3, -2, -2, 4],-3),3)),18),-3)",
    "io_inp": [
      2,
      5,
      -3,
      -2,
      -2,
      4
    ],
    "io_out": [
      0,
      1,
      1,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(add_n(input,-3),3)),18),-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [7, 9]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(reverse([4, 2]))),-5),23)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(reverse(input))),-5),23)"
  },
  {
    "input": "input : list = [-1, 4, 2, -5, 5]\noutput : list = [1, 5, 8, 10, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n([-1, 4, 2, -5, 5],-1),3),2))",
    "io_inp": [
      -1,
      4,
      2,
      -5,
      5
    ],
    "io_out": [
      1,
      5,
      8,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(input,-1),3),2))"
  },
  {
    "input": "input : list = [2, -3, -4, 4, 5]\noutput : list = [-4, -3, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(add_n([2, -3, -4, 4, 5],-2),-1),-3),-4))",
    "io_inp": [
      2,
      -3,
      -4,
      4,
      5
    ],
    "io_out": [
      -4,
      -3,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(add_n(input,-2),-1),-3),-4))"
  },
  {
    "input": "input : list = [-4, -1, -2, 3, -3, 4]\noutput : list = [1, -3, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(take([-4, -1, -2, 3, -3, 4],4)))),2)",
    "io_inp": [
      -4,
      -1,
      -2,
      3,
      -3,
      4
    ],
    "io_out": [
      1,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(take(input,4)))),2)"
  },
  {
    "input": "input : list = [2, 2, 4, -2]\noutput : list = [104, -136, -136, -256]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(sort_asc([2, 2, 4, -2]),-3),5),4),4)",
    "io_inp": [
      2,
      2,
      4,
      -2
    ],
    "io_out": [
      104,
      -136,
      -136,
      -256
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(sort_asc(input),-3),5),4),4)"
  },
  {
    "input": "input : list = [-2, 4, -5, -5]\noutput : list = [7, -2, -2]",
    "output": "generated_output : list = sub_n(add_n(add_n(drop([-2, 4, -5, -5],1),1),-1),-3)",
    "io_inp": [
      -2,
      4,
      -5,
      -5
    ],
    "io_out": [
      7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(drop(input,1),1),-1),-3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [7, -1]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_asc([-3, 5]),7)),11),-2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_asc(input),7)),11),-2)"
  },
  {
    "input": "input : list = [-4, -3, 4, 2, 4, 4]\noutput : list = [4, 4, 2, 4, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 4, 2, 4, 4])",
    "io_inp": [
      -4,
      -3,
      4,
      2,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      2,
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2, 0, 3, -5, 3]\noutput : list = [3, 3, 2, 0, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([-4, 2, 0, 3, -5, 3]))",
    "io_inp": [
      -4,
      2,
      0,
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, 4, 4, 5]\noutput : list = [100, 75, 75, 100]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(mul_n([5, 4, 4, 5],-5),1),4),-5),-5)",
    "io_inp": [
      5,
      4,
      4,
      5
    ],
    "io_out": [
      100,
      75,
      75,
      100
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(mul_n(input,-5),1),4),-5),-5)"
  },
  {
    "input": "input : list = [2, 5, -3, -2, -3, 5]\noutput : list = [-5, -5, -4, 0, 3, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des([2, 5, -3, -2, -3, 5])),-2))",
    "io_inp": [
      2,
      5,
      -3,
      -2,
      -3,
      5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(input)),-2))"
  },
  {
    "input": "input : list = [-5, 3, 5, 2, 3, -4]\noutput : list = [4, 5, 11, 12, 12, 14]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-5, 3, 5, 2, 3, -4],5),-4))",
    "io_inp": [
      -5,
      3,
      5,
      2,
      3,
      -4
    ],
    "io_out": [
      4,
      5,
      11,
      12,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,5),-4))"
  },
  {
    "input": "input : list = [-3, -3, 3, -1, 4]\noutput : list = [-8, -3, -7, -1, -1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(mul_n([-3, -3, 3, -1, 4],-1),-3)),3),4)",
    "io_inp": [
      -3,
      -3,
      3,
      -1,
      4
    ],
    "io_out": [
      -8,
      -3,
      -7,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(mul_n(input,-1),-3)),3),4)"
  },
  {
    "input": "input : list = [2, -3, -1, 0, -3]\noutput : list = [10, 8, 7, 5, 5]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(sort_asc([2, -3, -1, 0, -3]),5),2)),1)",
    "io_inp": [
      2,
      -3,
      -1,
      0,
      -3
    ],
    "io_out": [
      10,
      8,
      7,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(sort_asc(input),5),2)),1)"
  },
  {
    "input": "input : list = [0, 5, -3, 1, 5, 3]\noutput : list = [-4, -8, -9, -12]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(take([0, 5, -3, 1, 5, 3],4))),-4),-5)",
    "io_inp": [
      0,
      5,
      -3,
      1,
      5,
      3
    ],
    "io_out": [
      -4,
      -8,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(take(input,4))),-4),-5)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = sort_des(add_n([2, 3, 2],-4))",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 10]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(add_n([4, 1],-5),-2)),4),2)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(add_n(input,-5),-2)),4),2)"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [-6, -2, -6]",
    "output": "generated_output : list = add_n([-4, 0, -4],-2)",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [6, -1]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(sub_n([4, -3],-2)),1),32))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(sub_n(input,-2)),1),32))"
  },
  {
    "input": "input : list = [3, -2, -1, -1, 1, 3]\noutput : list = [3, 3, -3, -9, -9, -12]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(add_n([3, -2, -1, -1, 1, 3],-2)),25)),3)",
    "io_inp": [
      3,
      -2,
      -1,
      -1,
      1,
      3
    ],
    "io_out": [
      3,
      3,
      -3,
      -9,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(add_n(input,-2)),25)),3)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sub_n([0, 2],-3)),-2),4),-2)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sub_n(input,-3)),-2),4),-2)"
  },
  {
    "input": "input : list = [3, 0, -3]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_asc(take(add_n([3, 0, -3],5),17)),1)",
    "io_inp": [
      3,
      0,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(input,5),17)),1)"
  },
  {
    "input": "input : list = [-3, -2, -2, 1, 4]\noutput : list = [2, 3, 3, 6, 9]",
    "output": "generated_output : list = add_n([-3, -2, -2, 1, 4],5)",
    "io_inp": [
      -3,
      -2,
      -2,
      1,
      4
    ],
    "io_out": [
      2,
      3,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [1, 4, -5, 0, 2]\noutput : list = [-8, 0, 20]",
    "output": "generated_output : list = sort_asc(mul_n(drop([1, 4, -5, 0, 2],2),-4))",
    "io_inp": [
      1,
      4,
      -5,
      0,
      2
    ],
    "io_out": [
      -8,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,2),-4))"
  },
  {
    "input": "input : list = [4, -5, -3, -4, 4, 4]\noutput : list = [-1, -1, -9, -8, -10]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(drop([4, -5, -3, -4, 4, 4],1),5))))",
    "io_inp": [
      4,
      -5,
      -3,
      -4,
      4,
      4
    ],
    "io_out": [
      -1,
      -1,
      -9,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(drop(input,1),5))))"
  },
  {
    "input": "input : list = [3, 4, 1, -1, 5, 2]\noutput : list = [-2, -3, -4, -5, -6, -8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_des([3, 4, 1, -1, 5, 2])),4)),3)",
    "io_inp": [
      3,
      4,
      1,
      -1,
      5,
      2
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_des(input)),4)),3)"
  },
  {
    "input": "input : list = [2, 5, 3, -3, 4, -1]\noutput : list = [-6, -2, 4, 6, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(mul_n([2, 5, 3, -3, 4, -1],2),9)),1))",
    "io_inp": [
      2,
      5,
      3,
      -3,
      4,
      -1
    ],
    "io_out": [
      -6,
      -2,
      4,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(mul_n(input,2),9)),1))"
  },
  {
    "input": "input : list = [-5, -2, 1, 1, 5]\noutput : list = [0, -4, -4, -7, -10]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(sub_n([-5, -2, 1, 1, 5],3),-2))))",
    "io_inp": [
      -5,
      -2,
      1,
      1,
      5
    ],
    "io_out": [
      0,
      -4,
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(sub_n(input,3),-2))))"
  },
  {
    "input": "input : list = [-3, 3, -5, 5]\noutput : list = [-3, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(drop([-3, 3, -5, 5],2)),2)))",
    "io_inp": [
      -3,
      3,
      -5,
      5
    ],
    "io_out": [
      -3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(drop(input,2)),2)))"
  },
  {
    "input": "input : list = [-3, 2, 5, 4, 5]\noutput : list = [1, 6, 8, 9, 9]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(sort_asc([-3, 2, 5, 4, 5])),20)),-4)",
    "io_inp": [
      -3,
      2,
      5,
      4,
      5
    ],
    "io_out": [
      1,
      6,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(sort_asc(input)),20)),-4)"
  },
  {
    "input": "input : list = [-5, -5, 2, 3, 4, 5]\noutput : list = [0, 0, 7, 8, 9, 10]",
    "output": "generated_output : list = sub_n([-5, -5, 2, 3, 4, 5],-5)",
    "io_inp": [
      -5,
      -5,
      2,
      3,
      4,
      5
    ],
    "io_out": [
      0,
      0,
      7,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, 1, 4, -1, -1, 3]\noutput : list = [-5, -5, 5, 10, 15, 20]",
    "output": "generated_output : list = mul_n(sort_asc([2, 1, 4, -1, -1, 3]),5)",
    "io_inp": [
      2,
      1,
      4,
      -1,
      -1,
      3
    ],
    "io_out": [
      -5,
      -5,
      5,
      10,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [4, 1, -5, 1]\noutput : list = [-1, 23, -1, -13]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n([4, 1, -5, 1],-1),-4),4),5))",
    "io_inp": [
      4,
      1,
      -5,
      1
    ],
    "io_out": [
      -1,
      23,
      -1,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n(input,-1),-4),4),5))"
  },
  {
    "input": "input : list = [5, 4, 3]\noutput : list = [3, 4, 5]",
    "output": "generated_output : list = reverse([5, 4, 3])",
    "io_inp": [
      5,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [-9, -3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n([-1, 3, 1],-2),3),3)))",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      -9,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n(input,-2),3),3)))"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = drop(sort_asc(sort_des(sort_des(add_n([1, 3, 1],-4)))),1)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_des(sort_des(add_n(input,-4)))),1)"
  },
  {
    "input": "input : list = [3, 4, -1, 1, -2]\noutput : list = [-19, -15, -7, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(mul_n([3, 4, -1, 1, -2],-4)),25)),3)",
    "io_inp": [
      3,
      4,
      -1,
      1,
      -2
    ],
    "io_out": [
      -19,
      -15,
      -7,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(mul_n(input,-4)),25)),3)"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [3, 39]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(drop([5, 0, 3],1),12),3),4),3)",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      3,
      39
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(drop(input,1),12),3),4),3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(take(sort_des([3, -4]),14))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),14))"
  },
  {
    "input": "input : list = [3, 3, 3, 4]\noutput : list = [4, 3, 3, 3]",
    "output": "generated_output : list = reverse([3, 3, 3, 4])",
    "io_inp": [
      3,
      3,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, 2, 1, -3, 2]\noutput : list = [2, 1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(take([-2, -3, 2, 1, -3, 2],4)))",
    "io_inp": [
      -2,
      -3,
      2,
      1,
      -3,
      2
    ],
    "io_out": [
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,4)))"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [-20, 8, 0]",
    "output": "generated_output : list = reverse(mul_n([0, 2, -5],4))",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      -20,
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [-2, -5, -1, -3, 5]\noutput : list = [11, -1, -3, -5, -9]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(mul_n([-2, -5, -1, -3, 5],2),21),1)))",
    "io_inp": [
      -2,
      -5,
      -1,
      -3,
      5
    ],
    "io_out": [
      11,
      -1,
      -3,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(mul_n(input,2),21),1)))"
  },
  {
    "input": "input : list = [4, -5, -4, -2]\noutput : list = [-5, -4, -2]",
    "output": "generated_output : list = drop([4, -5, -4, -2],1)",
    "io_inp": [
      4,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([-1, -1]),3))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [4, -4, 4, 4]\noutput : list = [12, 12, 4, 12]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n([4, -4, 4, 4],-4)),-3),-2),1)",
    "io_inp": [
      4,
      -4,
      4,
      4
    ],
    "io_out": [
      12,
      12,
      4,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n(input,-4)),-3),-2),1)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-15, 0]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n([0, -3],3),-5),12))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -15,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(input,3),-5),12))"
  },
  {
    "input": "input : list = [-3, 5, 3, 0, -3, 1]\noutput : list = [5, 3, 1, 0, -3, -3]",
    "output": "generated_output : list = sort_des([-3, 5, 3, 0, -3, 1])",
    "io_inp": [
      -3,
      5,
      3,
      0,
      -3,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [15, -30]",
    "output": "generated_output : list = mul_n(add_n([4, -5],-1),5)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [0, 3, -5, -2, -3, 1]\noutput : list = [-6, -2, 0, 4, 6, 10]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([0, 3, -5, -2, -3, 1],-2)))",
    "io_inp": [
      0,
      3,
      -5,
      -2,
      -3,
      1
    ],
    "io_out": [
      -6,
      -2,
      0,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-5, 0, -1, -4, 2]\noutput : list = [45, 15]",
    "output": "generated_output : list = take(mul_n(sub_n(take(drop([-5, 0, -1, -4, 2],3),13),5),-5),31)",
    "io_inp": [
      -5,
      0,
      -1,
      -4,
      2
    ],
    "io_out": [
      45,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(drop(input,3),13),5),-5),31)"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take([1, 5, 0],1))",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [5, -5, 3, 2, 5]\noutput : list = [-120, -48, -72, 120, -120]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n([5, -5, 3, 2, 5],3)),-2),4)",
    "io_inp": [
      5,
      -5,
      3,
      2,
      5
    ],
    "io_out": [
      -120,
      -48,
      -72,
      120,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(input,3)),-2),4)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [-15, 15]",
    "output": "generated_output : list = mul_n(sort_asc(drop([-4, -3, 3],1)),5)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,1)),5)"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [-7, -12, -12]",
    "output": "generated_output : list = take(add_n(take(add_n(sub_n([4, -1, -1],5),-4),25),-2),28)",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      -7,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(sub_n(input,5),-4),25),-2),28)"
  },
  {
    "input": "input : list = [4, 0, 4, -2, -2]\noutput : list = [-4, -4, 0, 8, 8]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_asc([4, 0, 4, -2, -2])))),2)",
    "io_inp": [
      4,
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      0,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_asc([3, 3])))))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, -5, 1, 5]\noutput : list = [6, 5, 2, -4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(reverse([4, -5, 1, 5]),-2),-4),-1))",
    "io_inp": [
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      6,
      5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(reverse(input),-2),-4),-1))"
  },
  {
    "input": "input : list = [-3, 4, 0, 2]\noutput : list = [4, 2, 0, -3]",
    "output": "generated_output : list = sort_des([-3, 4, 0, 2])",
    "io_inp": [
      -3,
      4,
      0,
      2
    ],
    "io_out": [
      4,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, 1, 3, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(reverse(take(take(sort_asc([1, 3, 1, 3, -2, -2]),2),3)))",
    "io_inp": [
      1,
      3,
      1,
      3,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(sort_asc(input),2),3)))"
  },
  {
    "input": "input : list = [-5, -1, -4, 4]\noutput : list = [35, 25, -5, -55]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(sort_asc([-5, -1, -4, 4]),2),-3),-5),27)",
    "io_inp": [
      -5,
      -1,
      -4,
      4
    ],
    "io_out": [
      35,
      25,
      -5,
      -55
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(sort_asc(input),2),-3),-5),27)"
  },
  {
    "input": "input : list = [1, 5, -1, 2, 2, 3]\noutput : list = [10, 6, 4, 4, 2, -2]",
    "output": "generated_output : list = take(mul_n(sort_des([1, 5, -1, 2, 2, 3]),2),32)",
    "io_inp": [
      1,
      5,
      -1,
      2,
      2,
      3
    ],
    "io_out": [
      10,
      6,
      4,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),2),32)"
  },
  {
    "input": "input : list = [0, -2, -5, 0, 2, 2]\noutput : list = [-3, -3, -5, -5, -7, -10]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(sort_asc([0, -2, -5, 0, 2, 2]),1)),10),4)",
    "io_inp": [
      0,
      -2,
      -5,
      0,
      2,
      2
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -5,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(sort_asc(input),1)),10),4)"
  },
  {
    "input": "input : list = [-4, -4, 4, -1, 1, 5]\noutput : list = [-2, 2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(drop([-4, -4, 4, -1, 1, 5],4),5),4),-3),-2)",
    "io_inp": [
      -4,
      -4,
      4,
      -1,
      1,
      5
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(drop(input,4),5),4),-3),-2)"
  },
  {
    "input": "input : list = [-1, 0, 1, 4, -1]\noutput : list = [12, 0, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(drop([-1, 0, 1, 4, -1],2),4)),-4))",
    "io_inp": [
      -1,
      0,
      1,
      4,
      -1
    ],
    "io_out": [
      12,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(drop(input,2),4)),-4))"
  },
  {
    "input": "input : list = [0, -1, 3, 5, -3]\noutput : list = [-3, 3, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(drop([0, -1, 3, 5, -3],2)))),16)",
    "io_inp": [
      0,
      -1,
      3,
      5,
      -3
    ],
    "io_out": [
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(drop(input,2)))),16)"
  },
  {
    "input": "input : list = [5, 2, -4, 0, 3]\noutput : list = [-5, -1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(sub_n([5, 2, -4, 0, 3],2),1)),1))",
    "io_inp": [
      5,
      2,
      -4,
      0,
      3
    ],
    "io_out": [
      -5,
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(sub_n(input,2),1)),1))"
  },
  {
    "input": "input : list = [1, 5, -5, 4, 3]\noutput : list = [-18, -2, 0, 2]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(drop([1, 5, -5, 4, 3],1),4))),2)",
    "io_inp": [
      1,
      5,
      -5,
      4,
      3
    ],
    "io_out": [
      -18,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(drop(input,1),4))),2)"
  },
  {
    "input": "input : list = [2, -4, 1, 3]\noutput : list = [3, -3, 2, 4]",
    "output": "generated_output : list = sub_n(take(take(sub_n(sub_n([2, -4, 1, 3],1),3),23),32),-5)",
    "io_inp": [
      2,
      -4,
      1,
      3
    ],
    "io_out": [
      3,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(sub_n(input,1),3),23),32),-5)"
  },
  {
    "input": "input : list = [4, 4, 3, 5, 3, -4]\noutput : list = [5, 4, 4, 3, 3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(sort_des([4, 4, 3, 5, 3, -4])))))",
    "io_inp": [
      4,
      4,
      3,
      5,
      3,
      -4
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, 1, 2]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(drop([-4, 1, 2],1),-4)",
    "io_inp": [
      -4,
      1,
      2
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [4, 5, 4]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = add_n(sort_des([4, 5, 4]),-4)",
    "io_inp": [
      4,
      5,
      4
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(take([-5, 2, -2],1),1),-2),8),1)",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(take(input,1),1),-2),8),1)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(add_n([-4, -5],1)),-1)),-4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(add_n(input,1)),-1)),-4)"
  },
  {
    "input": "input : list = [-2, -1, -4, 5, 4]\noutput : list = [-4, -2, -1, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([-2, -1, -4, 5, 4]))",
    "io_inp": [
      -2,
      -1,
      -4,
      5,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -1, 0, -3]\noutput : list = [-10, -8, -6, -5]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(sort_asc([-5, -1, 0, -3]))),-5))",
    "io_inp": [
      -5,
      -1,
      0,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [-1, -2, 3, -5]\noutput : list = [-4, 4, -1, 0]",
    "output": "generated_output : list = add_n(reverse([-1, -2, 3, -5]),1)",
    "io_inp": [
      -1,
      -2,
      3,
      -5
    ],
    "io_out": [
      -4,
      4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [5, 2, -4, -2]\noutput : list = [10, 7, 1, 3]",
    "output": "generated_output : list = add_n([5, 2, -4, -2],5)",
    "io_inp": [
      5,
      2,
      -4,
      -2
    ],
    "io_out": [
      10,
      7,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [-5, -5, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-2, -4, -4],-4),5))",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-4),5))"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [-12, -26, -26]",
    "output": "generated_output : list = reverse(mul_n(add_n(take(add_n([5, 5, -2],4),14),4),-2))",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      -12,
      -26,
      -26
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(add_n(input,4),14),4),-2))"
  },
  {
    "input": "input : list = [1, -2, -1, -2]\noutput : list = [21, 21, 18, 12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_des([1, -2, -1, -2])),5)),-3)",
    "io_inp": [
      1,
      -2,
      -1,
      -2
    ],
    "io_out": [
      21,
      21,
      18,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_des(input)),5)),-3)"
  },
  {
    "input": "input : list = [-4, 1, -4, -1, 0]\noutput : list = [0, -1, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(take(drop([-4, 1, -4, -1, 0],2),13))),10)",
    "io_inp": [
      -4,
      1,
      -4,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(drop(input,2),13))),10)"
  },
  {
    "input": "input : list = [2, 3, 5, 0, 4]\noutput : list = [0, 6, 9, 12, 15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_asc([2, 3, 5, 0, 4])))),3)",
    "io_inp": [
      2,
      3,
      5,
      0,
      4
    ],
    "io_out": [
      0,
      6,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [0, -3, -3, 5, 3]\noutput : list = [9, 0]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(mul_n([0, -3, -3, 5, 3],-3),2))))",
    "io_inp": [
      0,
      -3,
      -3,
      5,
      3
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(mul_n(input,-3),2))))"
  },
  {
    "input": "input : list = [-1, -5, 2, 0, 1]\noutput : list = [1, -3, 4, 2, 3]",
    "output": "generated_output : list = sub_n([-1, -5, 2, 0, 1],-2)",
    "io_inp": [
      -1,
      -5,
      2,
      0,
      1
    ],
    "io_out": [
      1,
      -3,
      4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -1, 5, -2, 5, -1]\noutput : list = [6, 18, 4, 18, 6, 2]",
    "output": "generated_output : list = add_n(add_n(reverse(take(mul_n([-3, -1, 5, -2, 5, -1],2),10)),4),4)",
    "io_inp": [
      -3,
      -1,
      5,
      -2,
      5,
      -1
    ],
    "io_out": [
      6,
      18,
      4,
      18,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(mul_n(input,2),10)),4),4)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [0, -32]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_des([-4, -2]),-4)),-4),4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      0,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_des(input),-4)),-4),4)"
  },
  {
    "input": "input : list = [-3, 3, 5, 5, 4]\noutput : list = [11, -13, -17, -21, -21]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(mul_n([-3, 3, 5, 5, 4],-4),15),-1)))",
    "io_inp": [
      -3,
      3,
      5,
      5,
      4
    ],
    "io_out": [
      11,
      -13,
      -17,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(mul_n(input,-4),15),-1)))"
  },
  {
    "input": "input : list = [4, 4, 2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n([4, 4, 2],-2))),1))",
    "io_inp": [
      4,
      4,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n(input,-2))),1))"
  },
  {
    "input": "input : list = [0, -3, 2, 4]\noutput : list = [6, 4, 2, -1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n([0, -3, 2, 4],-5))),-3))",
    "io_inp": [
      0,
      -3,
      2,
      4
    ],
    "io_out": [
      6,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n(input,-5))),-3))"
  },
  {
    "input": "input : list = [-2, 4, -3, -4, -3, 3]\noutput : list = [-5, -6, -11, -12, -12, -13]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(sort_asc([-2, 4, -3, -4, -3, 3])),5),5),1)",
    "io_inp": [
      -2,
      4,
      -3,
      -4,
      -3,
      3
    ],
    "io_out": [
      -5,
      -6,
      -11,
      -12,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(sort_asc(input)),5),5),1)"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [-1, -1, 8]",
    "output": "generated_output : list = sort_asc(add_n([-5, -5, 4],4))",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      -1,
      -1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [6, 13]",
    "output": "generated_output : list = sub_n(sub_n([-4, 3],-5),-5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      6,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),-5)"
  },
  {
    "input": "input : list = [0, -1, 5, 4, 2]\noutput : list = [-1, 1, -11]",
    "output": "generated_output : list = reverse(sub_n(drop(mul_n(reverse([0, -1, 5, 4, 2]),-2),2),1))",
    "io_inp": [
      0,
      -1,
      5,
      4,
      2
    ],
    "io_out": [
      -1,
      1,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(mul_n(reverse(input),-2),2),1))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [50, 25]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(add_n([3, -2],3),-3),1),5))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      50,
      25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(add_n(input,3),-3),1),5))"
  },
  {
    "input": "input : list = [1, 5, 1, 5, 0]\noutput : list = [3, 8, 4]",
    "output": "generated_output : list = take(reverse(add_n(add_n(drop([1, 5, 1, 5, 0],2),-1),4)),5)",
    "io_inp": [
      1,
      5,
      1,
      5,
      0
    ],
    "io_out": [
      3,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(drop(input,2),-1),4)),5)"
  },
  {
    "input": "input : list = [-3, 0, -5, -3, 4, 0]\noutput : list = [-12, 0, 0, 9, 9, 15]",
    "output": "generated_output : list = take(take(reverse(sort_des(mul_n([-3, 0, -5, -3, 4, 0],-3))),41),53)",
    "io_inp": [
      -3,
      0,
      -5,
      -3,
      4,
      0
    ],
    "io_out": [
      -12,
      0,
      0,
      9,
      9,
      15
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(mul_n(input,-3))),41),53)"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [-10, -25, -5]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(add_n([-3, 1, -2],-3),4),-3),-5))",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      -10,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(add_n(input,-3),4),-3),-5))"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = drop([2, -4, 0],1)",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5, 5, 5, -2]\noutput : list = [-23, -23, 7, 12, 27]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sort_des([-1, -5, 5, 5, -2]),-5),11),4),-2)",
    "io_inp": [
      -1,
      -5,
      5,
      5,
      -2
    ],
    "io_out": [
      -23,
      -23,
      7,
      12,
      27
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sort_des(input),-5),11),4),-2)"
  },
  {
    "input": "input : list = [-3, 3, 0, 0, 2, 5]\noutput : list = [-12, 0, 0, 8, 12, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sort_asc([-3, 3, 0, 0, 2, 5])))),4)",
    "io_inp": [
      -3,
      3,
      0,
      0,
      2,
      5
    ],
    "io_out": [
      -12,
      0,
      0,
      8,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [-3, 2, 0, -4, 5, -1]\noutput : list = [11, 8, 2, -1, -7, -16]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sort_asc([-3, 2, 0, -4, 5, -1]),-3),9),2),-3)",
    "io_inp": [
      -3,
      2,
      0,
      -4,
      5,
      -1
    ],
    "io_out": [
      11,
      8,
      2,
      -1,
      -7,
      -16
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sort_asc(input),-3),9),2),-3)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-2, -4, -8]",
    "output": "generated_output : list = reverse(add_n(sort_asc([-5, -1, 1]),-3))",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(input),-3))"
  },
  {
    "input": "input : list = [1, 0, 3, -2]\noutput : list = [3, 5, 6, 8]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_asc([1, 0, 3, -2]),-1)),2),4)",
    "io_inp": [
      1,
      0,
      3,
      -2
    ],
    "io_out": [
      3,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_asc(input),-1)),2),4)"
  },
  {
    "input": "input : list = [-2, 3, -1, -1]\noutput : list = [-4, -2, -2, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(mul_n([-2, 3, -1, -1],2)))))",
    "io_inp": [
      -2,
      3,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [3, -3, -2, 2, 1, -3]\noutput : list = [6, 0, 1, 5, 4, 0]",
    "output": "generated_output : list = sub_n([3, -3, -2, 2, 1, -3],-3)",
    "io_inp": [
      3,
      -3,
      -2,
      2,
      1,
      -3
    ],
    "io_out": [
      6,
      0,
      1,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, 5, 5, 3, 5, 1]\noutput : list = [-7, -17, -22, -27, -27, -27]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(mul_n([4, 5, 5, 3, 5, 1],-5),1))),-2)",
    "io_inp": [
      4,
      5,
      5,
      3,
      5,
      1
    ],
    "io_out": [
      -7,
      -17,
      -22,
      -27,
      -27,
      -27
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(mul_n(input,-5),1))),-2)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, -2]",
    "output": "generated_output : list = sub_n(add_n(add_n(reverse(mul_n([-1, 1],1)),-1),2),2)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(reverse(mul_n(input,1)),-1),2),2)"
  },
  {
    "input": "input : list = [0, -3, -4, -5, 5]\noutput : list = [-15, -30, -35, -40, 10]",
    "output": "generated_output : list = mul_n(take(add_n([0, -3, -4, -5, 5],-3),22),5)",
    "io_inp": [
      0,
      -3,
      -4,
      -5,
      5
    ],
    "io_out": [
      -15,
      -30,
      -35,
      -40,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,-3),22),5)"
  },
  {
    "input": "input : list = [0, 5, -3, 1, -3, 2]\noutput : list = [5, -3, 1, -3, 2]",
    "output": "generated_output : list = drop([0, 5, -3, 1, -3, 2],1)",
    "io_inp": [
      0,
      5,
      -3,
      1,
      -3,
      2
    ],
    "io_out": [
      5,
      -3,
      1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [12, 12, 9]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([3, 4, 4])),3)",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      12,
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [12, 8, -24]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(add_n([4, -4, 5],-1),15)),4),4)",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      12,
      8,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(add_n(input,-1),15)),4),4)"
  },
  {
    "input": "input : list = [-2, 3, -2, 1]\noutput : list = [3, 8, 3, 6]",
    "output": "generated_output : list = sub_n([-2, 3, -2, 1],-5)",
    "io_inp": [
      -2,
      3,
      -2,
      1
    ],
    "io_out": [
      3,
      8,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, -1, -4, 3]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(take([1, -1, -4, 3],2))",
    "io_inp": [
      1,
      -1,
      -4,
      3
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(sort_des([4, 0]),4),14)))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(sort_des(input),4),14)))"
  },
  {
    "input": "input : list = [-4, 3, 5, -4]\noutput : list = [-25, -200, -250, -25]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([-4, 3, 5, -4],-5),5),-5)",
    "io_inp": [
      -4,
      3,
      5,
      -4
    ],
    "io_out": [
      -25,
      -200,
      -250,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,-5),5),-5)"
  },
  {
    "input": "input : list = [3, -5, -4, -4]\noutput : list = [-1, -8, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc([3, -5, -4, -4])),-4))",
    "io_inp": [
      3,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(input)),-4))"
  },
  {
    "input": "input : list = [-1, -3, -1, 5]\noutput : list = [4]",
    "output": "generated_output : list = add_n(take(sort_des([-1, -3, -1, 5]),1),-1)",
    "io_inp": [
      -1,
      -3,
      -1,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),1),-1)"
  },
  {
    "input": "input : list = [5, 4, -3, -1]\noutput : list = [-15, -12, 9, 3]",
    "output": "generated_output : list = mul_n(reverse(reverse([5, 4, -3, -1])),-3)",
    "io_inp": [
      5,
      4,
      -3,
      -1
    ],
    "io_out": [
      -15,
      -12,
      9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-10, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n([-1, 5],2))),-1)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(input,2))),-1)"
  },
  {
    "input": "input : list = [0, -1, -4, 5, 0]\noutput : list = [-5, -6, -9, 0, -5]",
    "output": "generated_output : list = sub_n([0, -1, -4, 5, 0],5)",
    "io_inp": [
      0,
      -1,
      -4,
      5,
      0
    ],
    "io_out": [
      -5,
      -6,
      -9,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [9, 7]",
    "output": "generated_output : list = sub_n(reverse(sub_n([1, 3],-2)),-4)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,-2)),-4)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [20, -8, -20]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(reverse([5, -5, -2])),4)))",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      20,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(reverse(input)),4)))"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = drop([-5, 1, -2],1)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n([-1, 2],-3)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5, -5]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sort_asc(add_n(reverse(drop([1, -5, -5],1)),-4))",
    "io_inp": [
      1,
      -5,
      -5
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(drop(input,1)),-4))"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [-3, -7, -10]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(reverse([3, -4, -1]),-5),1)),1)",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(reverse(input),-5),1)),1)"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(drop([3, 4, 4],1),3)",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [-4, 1, 1, 1, -1, 1]\noutput : list = [4, 4, 4, 4, 2, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-4, 1, 1, 1, -1, 1])),-3)",
    "io_inp": [
      -4,
      1,
      1,
      1,
      -1,
      1
    ],
    "io_out": [
      4,
      4,
      4,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop([2, 2, 5],1)",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -3, -2, -1, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take([5, -3, -2, -1, -3],2))))",
    "io_inp": [
      5,
      -3,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(input,2))))"
  },
  {
    "input": "input : list = [-2, -4, 2]\noutput : list = [-2, -4, 2]",
    "output": "generated_output : list = add_n(add_n([-2, -4, 2],3),-3)",
    "io_inp": [
      -2,
      -4,
      2
    ],
    "io_out": [
      -2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-3)"
  },
  {
    "input": "input : list = [-5, 0, 2, 5, -1]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(take(drop([-5, 0, 2, 5, -1],2),1),5)",
    "io_inp": [
      -5,
      0,
      2,
      5,
      -1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(input,2),1),5)"
  },
  {
    "input": "input : list = [-4, -1, 4, -1]\noutput : list = [12, 6, 6, -4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([-4, -1, 4, -1],2),-2))",
    "io_inp": [
      -4,
      -1,
      4,
      -1
    ],
    "io_out": [
      12,
      6,
      6,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,2),-2))"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [13, 12, 4]",
    "output": "generated_output : list = reverse(sub_n(take(add_n([-5, 3, 4],5),15),-4))",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      13,
      12,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(input,5),15),-4))"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [1]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(take([-1, -2, -1],1),13))),2)",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(take(input,1),13))),2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-6, 2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n([2, -2],-2),-2),5),-1)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(input,-2),-2),5),-1)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [3, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(take(reverse([-2, 3]),12),5),31))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(reverse(input),12),5),31))"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(reverse([0, -4, -2])))))",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [2, 8]",
    "output": "generated_output : list = mul_n(sort_des(take(take(drop([3, -1, -4],1),10),6)),-2)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(drop(input,1),10),6)),-2)"
  },
  {
    "input": "input : list = [4, -4, 4, -3, 0]\noutput : list = [-67, -67, -7, 38, 53]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des([4, -4, 4, -3, 0]),5),-1),-3),4)",
    "io_inp": [
      4,
      -4,
      4,
      -3,
      0
    ],
    "io_out": [
      -67,
      -67,
      -7,
      38,
      53
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des(input),5),-1),-3),4)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(take([2, -5, -3],1),3)),1),3)",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(take(input,1),3)),1),3)"
  },
  {
    "input": "input : list = [3, 2, -1]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([3, 2, -1]))",
    "io_inp": [
      3,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, 4, -5, 5, 5, -4]\noutput : list = [-20, -20]",
    "output": "generated_output : list = mul_n(take([4, 4, -5, 5, 5, -4],2),-5)",
    "io_inp": [
      4,
      4,
      -5,
      5,
      5,
      -4
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-5)"
  },
  {
    "input": "input : list = [-3, -3, 0, -2]\noutput : list = [-7, -5, -8, -8]",
    "output": "generated_output : list = reverse(take(add_n([-3, -3, 0, -2],-5),16))",
    "io_inp": [
      -3,
      -3,
      0,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-5),16))"
  },
  {
    "input": "input : list = [0, 0, 3, 2, 1, 4]\noutput : list = [3, 0, 1, 2, -1, -1]",
    "output": "generated_output : list = reverse(add_n([0, 0, 3, 2, 1, 4],-1))",
    "io_inp": [
      0,
      0,
      3,
      2,
      1,
      4
    ],
    "io_out": [
      3,
      0,
      1,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc([-3, 4])",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -1, 2, 5, 1]\noutput : list = [2, -1]",
    "output": "generated_output : list = take([2, -1, 2, 5, 1],2)",
    "io_inp": [
      2,
      -1,
      2,
      5,
      1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -4, 0, -2, 0, 2]\noutput : list = [8, 8, 4, 0, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n([-4, -4, 0, -2, 0, 2],-2))",
    "io_inp": [
      -4,
      -4,
      0,
      -2,
      0,
      2
    ],
    "io_out": [
      8,
      8,
      4,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-5, 2, -1, 4, 0, -3]\noutput : list = [3, 6, 10, 5, 8, 1]",
    "output": "generated_output : list = add_n(add_n(reverse([-5, 2, -1, 4, 0, -3]),3),3)",
    "io_inp": [
      -5,
      2,
      -1,
      4,
      0,
      -3
    ],
    "io_out": [
      3,
      6,
      10,
      5,
      8,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),3),3)"
  },
  {
    "input": "input : list = [-3, 4, -2, -3, -2]\noutput : list = [-18, 6, 6, 10, 10]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_des([-3, 4, -2, -3, -2])),-4)),2)",
    "io_inp": [
      -3,
      4,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -18,
      6,
      6,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_des(input)),-4)),2)"
  },
  {
    "input": "input : list = [1, 5, -5, -5]\noutput : list = [1, 5, -5, -5]",
    "output": "generated_output : list = mul_n(take(take(sub_n(add_n([1, 5, -5, -5],-2),-2),15),14),1)",
    "io_inp": [
      1,
      5,
      -5,
      -5
    ],
    "io_out": [
      1,
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(add_n(input,-2),-2),15),14),1)"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [4, 32, 32]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sub_n([-3, 4, 4],-4)),4)))",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      4,
      32,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sub_n(input,-4)),4)))"
  },
  {
    "input": "input : list = [-4, 1, -5, -2, 0, 1]\noutput : list = [-126, -102, -54, -6, 18, 18]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(mul_n([-4, 1, -5, -2, 0, 1],4),3)),3),2)",
    "io_inp": [
      -4,
      1,
      -5,
      -2,
      0,
      1
    ],
    "io_out": [
      -126,
      -102,
      -54,
      -6,
      18,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(mul_n(input,4),3)),3),2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des([1, 1])",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des([2, -5, -3]),2),2))",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(input),2),2))"
  },
  {
    "input": "input : list = [-4, -3, -5, 3]\noutput : list = [15, 12, 9, -9]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(sort_des([-4, -3, -5, 3])),-3)),19)",
    "io_inp": [
      -4,
      -3,
      -5,
      3
    ],
    "io_out": [
      15,
      12,
      9,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(sort_des(input)),-3)),19)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [5, -7]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(sort_asc([3, -3])),12),2),-1)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(sort_asc(input)),12),2),-1)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 5])",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, -5, -3, 2]\noutput : list = [0, 6, -15, -9, 6]",
    "output": "generated_output : list = mul_n([0, 2, -5, -3, 2],3)",
    "io_inp": [
      0,
      2,
      -5,
      -3,
      2
    ],
    "io_out": [
      0,
      6,
      -15,
      -9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, -5, 1, -2, 1]\noutput : list = [103, 63, 43, -17, -17]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(mul_n([-3, -5, 1, -2, 1],5),1),-4),-1))",
    "io_inp": [
      -3,
      -5,
      1,
      -2,
      1
    ],
    "io_out": [
      103,
      63,
      43,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(mul_n(input,5),1),-4),-1))"
  },
  {
    "input": "input : list = [0, -5, -2, 3, -3]\noutput : list = [-7, -12, -9, -4, -10]",
    "output": "generated_output : list = take(add_n(add_n([0, -5, -2, 3, -3],-5),-2),27)",
    "io_inp": [
      0,
      -5,
      -2,
      3,
      -3
    ],
    "io_out": [
      -7,
      -12,
      -9,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,-5),-2),27)"
  },
  {
    "input": "input : list = [5, -1, 2, -4, -1, -4]\noutput : list = [8, 2, 5, -1, 2, -1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([5, -1, 2, -4, -1, -4],-1),-4),2)",
    "io_inp": [
      5,
      -1,
      2,
      -4,
      -1,
      -4
    ],
    "io_out": [
      8,
      2,
      5,
      -1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,-1),-4),2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(sort_asc([4, 5]),8)),-5))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(sort_asc(input),8)),-5))"
  },
  {
    "input": "input : list = [2, 3, 2, -1, -2, -5]\noutput : list = [-5, -2, -1, 2, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(sub_n([2, 3, 2, -1, -2, -5],4),22))),4)",
    "io_inp": [
      2,
      3,
      2,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(sub_n(input,4),22))),4)"
  },
  {
    "input": "input : list = [-3, 0, -1, 2]\noutput : list = [0, -2, 4]",
    "output": "generated_output : list = mul_n(drop([-3, 0, -1, 2],1),2)",
    "io_inp": [
      -3,
      0,
      -1,
      2
    ],
    "io_out": [
      0,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-5, 1, 3, 5, 3, -1]\noutput : list = [-5, -1, 1, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([-5, 1, 3, 5, 3, -1])",
    "io_inp": [
      -5,
      1,
      3,
      5,
      3,
      -1
    ],
    "io_out": [
      -5,
      -1,
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 4, -4, 5, -4]\noutput : list = [5, 4, -2, -4, -4]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(sub_n([-2, 4, -4, 5, -4],5)),33)),5)",
    "io_inp": [
      -2,
      4,
      -4,
      5,
      -4
    ],
    "io_out": [
      5,
      4,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(sub_n(input,5)),33)),5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(reverse([-5, 2]),-5)),-1),4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(reverse(input),-5)),-1),4)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(mul_n([0, -1],4)),1)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(mul_n(input,4)),1)))"
  },
  {
    "input": "input : list = [4, 1, 5, 2, -1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take([4, 1, 5, 2, -1],2)),3))",
    "io_inp": [
      4,
      1,
      5,
      2,
      -1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(input,2)),3))"
  },
  {
    "input": "input : list = [5, -2, -3, 2, 3]\noutput : list = [13, 11, 10, 6]",
    "output": "generated_output : list = take(add_n(sort_des(take(sub_n([5, -2, -3, 2, 3],-3),11)),5),4)",
    "io_inp": [
      5,
      -2,
      -3,
      2,
      3
    ],
    "io_out": [
      13,
      11,
      10,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(sub_n(input,-3),11)),5),4)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(sort_des([1, -2]),7)),-4),-5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(sort_des(input),7)),-4),-5)"
  },
  {
    "input": "input : list = [4, 0, 2, -1, -5]\noutput : list = [-1, 5, 13]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des(drop([4, 0, 2, -1, -5],2)),-2),3))",
    "io_inp": [
      4,
      0,
      2,
      -1,
      -5
    ],
    "io_out": [
      -1,
      5,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(drop(input,2)),-2),3))"
  },
  {
    "input": "input : list = [1, 2, -4, -2, 2]\noutput : list = [20, 10, -10]",
    "output": "generated_output : list = sort_des(take(mul_n(drop([1, 2, -4, -2, 2],2),-5),14))",
    "io_inp": [
      1,
      2,
      -4,
      -2,
      2
    ],
    "io_out": [
      20,
      10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(drop(input,2),-5),14))"
  },
  {
    "input": "input : list = [-5, 4, 0, 5, 4, -3]\noutput : list = [-2, 0, 3, 7, 7, 8]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(sub_n([-5, 4, 0, 5, 4, -3],1),21))),-4)",
    "io_inp": [
      -5,
      4,
      0,
      5,
      4,
      -3
    ],
    "io_out": [
      -2,
      0,
      3,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(sub_n(input,1),21))),-4)"
  },
  {
    "input": "input : list = [1, 1, -3, -5]\noutput : list = [3, 3, -9, -15]",
    "output": "generated_output : list = mul_n([1, 1, -3, -5],3)",
    "io_inp": [
      1,
      1,
      -3,
      -5
    ],
    "io_out": [
      3,
      3,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, 3, 2]\noutput : list = [4, 3, -1]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(reverse([-2, 3, 2]),-1),1)),1)",
    "io_inp": [
      -2,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(reverse(input),-1),1)),1)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [40, -10, 60]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(mul_n([-3, 2, -5],2),-2),-5),-1),-5)",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      40,
      -10,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(mul_n(input,2),-2),-5),-1),-5)"
  },
  {
    "input": "input : list = [4, 0, 1, 1]\noutput : list = [4, 1, 1, 0]",
    "output": "generated_output : list = sort_des(reverse([4, 0, 1, 1]))",
    "io_inp": [
      4,
      0,
      1,
      1
    ],
    "io_out": [
      4,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 0, 1, -4]\noutput : list = [20, 15, -5, -10]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(sub_n([-5, 0, 1, -4],-3),2)),31),-5)",
    "io_inp": [
      -5,
      0,
      1,
      -4
    ],
    "io_out": [
      20,
      15,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(sub_n(input,-3),2)),31),-5)"
  },
  {
    "input": "input : list = [1, -4, 0, 4, 2]\noutput : list = [24, 0, -6, -12, -24]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(mul_n([1, -4, 0, 4, 2],2),6),-3)))",
    "io_inp": [
      1,
      -4,
      0,
      4,
      2
    ],
    "io_out": [
      24,
      0,
      -6,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(mul_n(input,2),6),-3)))"
  },
  {
    "input": "input : list = [0, 4, 3, 2]\noutput : list = [1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(reverse([0, 4, 3, 2])),4),5))",
    "io_inp": [
      0,
      4,
      3,
      2
    ],
    "io_out": [
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(reverse(input)),4),5))"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [-4, 2, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, 2])",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, -4, 0, -5, -3]\noutput : list = [3, 5, -4, 0]",
    "output": "generated_output : list = take([3, 5, -4, 0, -5, -3],4)",
    "io_inp": [
      3,
      5,
      -4,
      0,
      -5,
      -3
    ],
    "io_out": [
      3,
      5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-2, 0, -4, 4, 2]\noutput : list = [4, 2, 0, -2, -4]",
    "output": "generated_output : list = sort_des([-2, 0, -4, 4, 2])",
    "io_inp": [
      -2,
      0,
      -4,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [-9, -2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sub_n(drop([-2, -3, 4],1),1),5)))",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sub_n(drop(input,1),1),5)))"
  },
  {
    "input": "input : list = [-4, 4, -5, -5]\noutput : list = [-15, -15, -13, 3]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(mul_n([-4, 4, -5, -5],-2),5)),5),-1)",
    "io_inp": [
      -4,
      4,
      -5,
      -5
    ],
    "io_out": [
      -15,
      -15,
      -13,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(mul_n(input,-2),5)),5),-1)"
  },
  {
    "input": "input : list = [-2, 0, 5, 4]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_des([-2, 0, 5, 4])),1)),2)",
    "io_inp": [
      -2,
      0,
      5,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_des(input)),1)),2)"
  },
  {
    "input": "input : list = [1, -2, -2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = drop([1, -2, -2, 0],2)",
    "io_inp": [
      1,
      -2,
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 0, 3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(take([-1, 0, 3, 2],2),3),17)))",
    "io_inp": [
      -1,
      0,
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(take(input,2),3),17)))"
  },
  {
    "input": "input : list = [2, 5, -4]\noutput : list = [-5, 1, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sort_des([2, 5, -4]),3)),-4))",
    "io_inp": [
      2,
      5,
      -4
    ],
    "io_out": [
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sort_des(input),3)),-4))"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [0, 0, -16]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_des([4, 0, 0]),-1),24)),4)",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_des(input),-1),24)),4)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [6, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sort_asc([2, -4])),4)))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-5, -8]",
    "output": "generated_output : list = mul_n(add_n([0, 3],5),-1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),-1)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(sub_n([-3, -2],-4),5)),3),-5)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(sub_n(input,-4),5)),3),-5)"
  },
  {
    "input": "input : list = [5, -5, 3, -5, -4]\noutput : list = [9, 7, 0, -1, -1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n([5, -5, 3, -5, -4],2)),-2),-3),3)",
    "io_inp": [
      5,
      -5,
      3,
      -5,
      -4
    ],
    "io_out": [
      9,
      7,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n(input,2)),-2),-3),3)"
  },
  {
    "input": "input : list = [2, -2, -4, -2, 3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(take([2, -2, -4, -2, 3],3),1))),3)",
    "io_inp": [
      2,
      -2,
      -4,
      -2,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(take(input,3),1))),3)"
  },
  {
    "input": "input : list = [5, -2, -2, -5]\noutput : list = [-45, 18, 18, 45]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(sort_asc([5, -2, -2, -5]),21),3),-3))",
    "io_inp": [
      5,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -45,
      18,
      18,
      45
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(sort_asc(input),21),3),-3))"
  },
  {
    "input": "input : list = [5, -1, 1, 1]\noutput : list = [-3, 3, 3]",
    "output": "generated_output : list = mul_n(drop([5, -1, 1, 1],1),3)",
    "io_inp": [
      5,
      -1,
      1,
      1
    ],
    "io_out": [
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [5, -25, -5]",
    "output": "generated_output : list = mul_n([1, -5, -1],5)",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      5,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [9, 9]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(add_n([5, 5],4))),7))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(add_n(input,4))),7))"
  },
  {
    "input": "input : list = [5, -4, -2, -5, 4, 4]\noutput : list = [1, -5, -7, -8]",
    "output": "generated_output : list = take(reverse(add_n(take(sort_asc([5, -4, -2, -5, 4, 4]),4),-3)),18)",
    "io_inp": [
      5,
      -4,
      -2,
      -5,
      4,
      4
    ],
    "io_out": [
      1,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sort_asc(input),4),-3)),18)"
  },
  {
    "input": "input : list = [5, -4, -4, -2, 2, 2]\noutput : list = [6, 0, 0, -8, -12, -12]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(sort_asc([5, -4, -4, -2, 2, 2])),1),2),2)",
    "io_inp": [
      5,
      -4,
      -4,
      -2,
      2,
      2
    ],
    "io_out": [
      6,
      0,
      0,
      -8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(sort_asc(input)),1),2),2)"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(sort_asc(take([-2, 2, -1],1)),-3)",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,1)),-3)"
  },
  {
    "input": "input : list = [4, 1, 4, 4, -4]\noutput : list = [-14, -14, -14, -29, -54]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(sort_des([4, 1, 4, 4, -4]),-5),2),5),1)",
    "io_inp": [
      4,
      1,
      4,
      4,
      -4
    ],
    "io_out": [
      -14,
      -14,
      -14,
      -29,
      -54
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(sort_des(input),-5),2),5),1)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [3, -6, -6]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(sort_des([-4, 5, -4])),13),-2),1)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(sort_des(input)),13),-2),1)"
  },
  {
    "input": "input : list = [-4, 5, -2, -5, 4, -3]\noutput : list = [32, 28, 24, 20, -4, -8]",
    "output": "generated_output : list = take(mul_n(sub_n(take(sort_asc([-4, 5, -2, -5, 4, -3]),27),3),-4),27)",
    "io_inp": [
      -4,
      5,
      -2,
      -5,
      4,
      -3
    ],
    "io_out": [
      32,
      28,
      24,
      20,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(sort_asc(input),27),3),-4),27)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_asc([-3, -4])))))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(take(take(reverse(add_n([-4, 1],-1)),7),28),19)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(add_n(input,-1)),7),28),19)"
  },
  {
    "input": "input : list = [-1, 3, -5, 0, 5]\noutput : list = [-11]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(take([-1, 3, -5, 0, 5],1),5)),1),5)",
    "io_inp": [
      -1,
      3,
      -5,
      0,
      5
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(take(input,1),5)),1),5)"
  },
  {
    "input": "input : list = [-3, 4, 0, -1, 5, -4]\noutput : list = [13, -23, 1, -3, -19, 9]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(mul_n([-3, 4, 0, -1, 5, -4],-4),29),1),3))",
    "io_inp": [
      -3,
      4,
      0,
      -1,
      5,
      -4
    ],
    "io_out": [
      13,
      -23,
      1,
      -3,
      -19,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(mul_n(input,-4),29),1),3))"
  },
  {
    "input": "input : list = [-5, -2, -2, -3, 3, -5]\noutput : list = [-2, -3, 3, -5]",
    "output": "generated_output : list = reverse(take(reverse(take(drop([-5, -2, -2, -3, 3, -5],2),23)),11))",
    "io_inp": [
      -5,
      -2,
      -2,
      -3,
      3,
      -5
    ],
    "io_out": [
      -2,
      -3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(drop(input,2),23)),11))"
  },
  {
    "input": "input : list = [1, 3, 4, -3, 2]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(mul_n([1, 3, 4, -3, 2],-4),1),3)))",
    "io_inp": [
      1,
      3,
      4,
      -3,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(mul_n(input,-4),1),3)))"
  },
  {
    "input": "input : list = [-1, 2, -5, 2, 5, 0]\noutput : list = [3, 6, -1, 6, 9, 4]",
    "output": "generated_output : list = sub_n([-1, 2, -5, 2, 5, 0],-4)",
    "io_inp": [
      -1,
      2,
      -5,
      2,
      5,
      0
    ],
    "io_out": [
      3,
      6,
      -1,
      6,
      9,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-4, 6]",
    "output": "generated_output : list = add_n(sort_asc([-5, 5]),1)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [2, -1, 0]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(sort_asc([2, -1, 0]),6),-1)))",
    "io_inp": [
      2,
      -1,
      0
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(sort_asc(input),6),-1)))"
  },
  {
    "input": "input : list = [1, 3, 4, 1, 5]\noutput : list = [-3, -3, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n([1, 3, 4, 1, 5],-4))))",
    "io_inp": [
      1,
      3,
      4,
      1,
      5
    ],
    "io_out": [
      -3,
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(input,-4))))"
  },
  {
    "input": "input : list = [4, 0, -4, 4, 5]\noutput : list = [-8, -8, -4, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(sort_asc([4, 0, -4, 4, 5]),4),4)),-1)",
    "io_inp": [
      4,
      0,
      -4,
      4,
      5
    ],
    "io_out": [
      -8,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(sort_asc(input),4),4)),-1)"
  },
  {
    "input": "input : list = [0, 0, -5, -3, -3, 4]\noutput : list = [-9, -9, 6, 0, 0, -21]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(sub_n([0, 0, -5, -3, -3, 4],-4),1),28),3),-1)",
    "io_inp": [
      0,
      0,
      -5,
      -3,
      -3,
      4
    ],
    "io_out": [
      -9,
      -9,
      6,
      0,
      0,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(sub_n(input,-4),1),28),3),-1)"
  },
  {
    "input": "input : list = [-1, 1, 0, -4, -2]\noutput : list = [-7, -5, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n(reverse([-1, 1, 0, -4, -2]),-3))))",
    "io_inp": [
      -1,
      1,
      0,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take(sort_asc(take(sort_des([-4, 3]),4)),26)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(input),4)),26)"
  },
  {
    "input": "input : list = [-2, -4, -1, 3, -4]\noutput : list = [-24, -8, -4, 4, 4]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(sort_asc([-2, -4, -1, 3, -4]),3)),-4),1)",
    "io_inp": [
      -2,
      -4,
      -1,
      3,
      -4
    ],
    "io_out": [
      -24,
      -8,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(sort_asc(input),3)),-4),1)"
  },
  {
    "input": "input : list = [-5, -2, -5, 5, 4]\noutput : list = [-200, -160, 80, 200, 200]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(mul_n([-5, -2, -5, 5, 4],-5)),4),2))",
    "io_inp": [
      -5,
      -2,
      -5,
      5,
      4
    ],
    "io_out": [
      -200,
      -160,
      80,
      200,
      200
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(mul_n(input,-5)),4),2))"
  },
  {
    "input": "input : list = [2, 5, -2, -4, 5]\noutput : list = [5, 5, 2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([2, 5, -2, -4, 5]))",
    "io_inp": [
      2,
      5,
      -2,
      -4,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 3, 1, -4]\noutput : list = [-6, 10]",
    "output": "generated_output : list = mul_n(take(take(sort_des(take([-5, 3, 1, -4],2)),5),14),-2)",
    "io_inp": [
      -5,
      3,
      1,
      -4
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(take(input,2)),5),14),-2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [20, -16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des([4, -5]))),-4)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(input))),-4)"
  },
  {
    "input": "input : list = [4, -3, -3, 2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(take([4, -3, -3, 2],2))",
    "io_inp": [
      4,
      -3,
      -3,
      2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des(add_n([5, -1],-2))),-1),40)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(add_n(input,-2))),-1),40)"
  },
  {
    "input": "input : list = [0, 1, -4, -2]\noutput : list = [-3, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(drop([0, 1, -4, -2],1),2))),3)",
    "io_inp": [
      0,
      1,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(drop(input,1),2))),3)"
  },
  {
    "input": "input : list = [-5, 4, -1, 4]\noutput : list = [17, 17, 2, -10]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(mul_n([-5, 4, -1, 4],3)),-5),20))",
    "io_inp": [
      -5,
      4,
      -1,
      4
    ],
    "io_out": [
      17,
      17,
      2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(mul_n(input,3)),-5),20))"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_asc([0, -5, 2]))),-3))",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [2, -3, -4, -3]\noutput : list = [10, 5, 4, 5]",
    "output": "generated_output : list = add_n(add_n(sub_n([2, -3, -4, -3],-1),3),4)",
    "io_inp": [
      2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      10,
      5,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,-1),3),4)"
  },
  {
    "input": "input : list = [-5, -2, 1, -2]\noutput : list = [-5, -5, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(drop([-5, -2, 1, -2],1),4)),-3))",
    "io_inp": [
      -5,
      -2,
      1,
      -2
    ],
    "io_out": [
      -5,
      -5,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(drop(input,1),4)),-3))"
  },
  {
    "input": "input : list = [1, -5, -5, -1, 0, -5]\noutput : list = [-1, 5, 5, 1, 0, 5]",
    "output": "generated_output : list = mul_n([1, -5, -5, -1, 0, -5],-1)",
    "io_inp": [
      1,
      -5,
      -5,
      -1,
      0,
      -5
    ],
    "io_out": [
      -1,
      5,
      5,
      1,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, -1, -3, 2, 3]\noutput : list = [7]",
    "output": "generated_output : list = add_n(mul_n(drop(take(drop([2, -1, -3, 2, 3],2),9),2),2),1)",
    "io_inp": [
      2,
      -1,
      -3,
      2,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(take(drop(input,2),9),2),2),1)"
  },
  {
    "input": "input : list = [5, 2, -5, 2, 2]\noutput : list = [-11, 3, 3, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(drop([5, 2, -5, 2, 2],1),2)),30),1)",
    "io_inp": [
      5,
      2,
      -5,
      2,
      2
    ],
    "io_out": [
      -11,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(drop(input,1),2)),30),1)"
  },
  {
    "input": "input : list = [-4, 1, -4, 5]\noutput : list = [-9, -9, 6, 18]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(reverse([-4, 1, -4, 5]),2)),-1),3)",
    "io_inp": [
      -4,
      1,
      -4,
      5
    ],
    "io_out": [
      -9,
      -9,
      6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(reverse(input),2)),-1),3)"
  },
  {
    "input": "input : list = [1, 2, 2, -2, 1]\noutput : list = [-24, -24, -12, -12, 24]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sort_des([1, 2, 2, -2, 1]),-4))),3)",
    "io_inp": [
      1,
      2,
      2,
      -2,
      1
    ],
    "io_out": [
      -24,
      -24,
      -12,
      -12,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sort_des(input),-4))),3)"
  },
  {
    "input": "input : list = [-3, 2, -5, -3]\noutput : list = [-5, -3, -3, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-3, 2, -5, -3])),31)",
    "io_inp": [
      -3,
      2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),31)"
  },
  {
    "input": "input : list = [3, 5, -5, -1, 1]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(drop([3, 5, -5, -1, 1],3)),3)))",
    "io_inp": [
      3,
      5,
      -5,
      -1,
      1
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(drop(input,3)),3)))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse([-2, 1])))),-2)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [1, -1, 1, -1]\noutput : list = [1, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(drop([1, -1, 1, -1],1)))",
    "io_inp": [
      1,
      -1,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [5, 2, -1, 1, -4]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sort_des(take([5, 2, -1, 1, -4],1)))",
    "io_inp": [
      5,
      2,
      -1,
      1,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-3, -8]",
    "output": "generated_output : list = sub_n(sub_n([3, -2],3),3)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [5, -3, -1, -1]\noutput : list = [-1, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(drop([5, -3, -1, -1],1)))))",
    "io_inp": [
      5,
      -3,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(drop([0, 5, 0],1)),-5)),-5)",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(drop(input,1)),-5)),-5)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 9]",
    "output": "generated_output : list = mul_n(add_n([3, 1],-4),-3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),-3)"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [-11, -31, -36]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(sub_n([3, -1, -2],4),10),5),-2),4)",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      -11,
      -31,
      -36
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(sub_n(input,4),10),5),-2),4)"
  },
  {
    "input": "input : list = [5, -2, 1, -4, 5, -1]\noutput : list = [16, 16, 0, -8, -12, -20]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(reverse([5, -2, 1, -4, 5, -1]),-1))),4)",
    "io_inp": [
      5,
      -2,
      1,
      -4,
      5,
      -1
    ],
    "io_out": [
      16,
      16,
      0,
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(reverse(input),-1))),4)"
  },
  {
    "input": "input : list = [1, -2, -2, -4]\noutput : list = [9, 0, 0, -6]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(mul_n([1, -2, -2, -4],3)),1)),-5)",
    "io_inp": [
      1,
      -2,
      -2,
      -4
    ],
    "io_out": [
      9,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(mul_n(input,3)),1)),-5)"
  },
  {
    "input": "input : list = [5, 2, 1, -4, 4, -4]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(take([5, 2, 1, -4, 4, -4],2),6)",
    "io_inp": [
      5,
      2,
      1,
      -4,
      4,
      -4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(take(input,2),6)"
  },
  {
    "input": "input : list = [-3, 0, 0, -2]\noutput : list = [-4, -4, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([-3, 0, 0, -2]),4))",
    "io_inp": [
      -3,
      0,
      0,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-7, -7]",
    "output": "generated_output : list = reverse(reverse(sub_n([-5, -5],2)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_des([-1, -3, 5])),-1)))",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sub_n([-1, -1],-1)))))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [5, -5, -2, -3, 5, -3]\noutput : list = [5, 5, -2, -3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([5, -5, -2, -3, 5, -3]))",
    "io_inp": [
      5,
      -5,
      -2,
      -3,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      -2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 2, -2, 5]\noutput : list = [5, 3, 2, -2]",
    "output": "generated_output : list = sort_des([3, 2, -2, 5])",
    "io_inp": [
      3,
      2,
      -2,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [5, 5]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc([0, 0])),4),-5)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(input)),4),-5)"
  },
  {
    "input": "input : list = [-1, -2, 3, 4, 2, 2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(drop([-1, -2, 3, 4, 2, 2],4),4),-4),5),-1)",
    "io_inp": [
      -1,
      -2,
      3,
      4,
      2,
      2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(drop(input,4),4),-4),5),-1)"
  },
  {
    "input": "input : list = [-4, -2, 1, -5]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sort_des(take([-4, -2, 1, -5],1)))",
    "io_inp": [
      -4,
      -2,
      1,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-2, -4, -2, 4, 3, 2]\noutput : list = [-12, 0, 0, 30, 36]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take(sub_n([-2, -4, -2, 4, 3, 2],-2),5)),-2),-3)",
    "io_inp": [
      -2,
      -4,
      -2,
      4,
      3,
      2
    ],
    "io_out": [
      -12,
      0,
      0,
      30,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(sub_n(input,-2),5)),-2),-3)"
  },
  {
    "input": "input : list = [4, -4, 1, -2, -1]\noutput : list = [10, 7, 5, 4, 2]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(reverse([4, -4, 1, -2, -1])),3),-1),-4)",
    "io_inp": [
      4,
      -4,
      1,
      -2,
      -1
    ],
    "io_out": [
      10,
      7,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(reverse(input)),3),-1),-4)"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [-19, 17]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des(drop([-4, -4, 5],1)),-4),-1),8)",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      -19,
      17
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(drop(input,1)),-4),-1),8)"
  },
  {
    "input": "input : list = [-3, -5, -3, -4, -4]\noutput : list = [-9, -9, -8]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(drop([-3, -5, -3, -4, -4],2),1),-3)),-3)",
    "io_inp": [
      -3,
      -5,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(drop(input,2),1),-3)),-3)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [12, 32]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(add_n([-2, 2],-4)),-5)),2)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      12,
      32
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(add_n(input,-4)),-5)),2)"
  },
  {
    "input": "input : list = [2, -2, -3, -4]\noutput : list = [-5, -4, -3, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n([2, -2, -3, -4],-1)))",
    "io_inp": [
      2,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-1)))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = take(reverse([4, -1]),10)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),10)"
  },
  {
    "input": "input : list = [5, 1, -2, -4, -2]\noutput : list = [24, 8, -4, -4, -12]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(sort_des([5, 1, -2, -4, -2])),-1),4))",
    "io_inp": [
      5,
      1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      24,
      8,
      -4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(sort_des(input)),-1),4))"
  },
  {
    "input": "input : list = [3, -5, -3, 2, -1]\noutput : list = [-1, -2, -5, -7, -9]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(add_n([3, -5, -3, 2, -1],-2),25),2)))",
    "io_inp": [
      3,
      -5,
      -3,
      2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(add_n(input,-2),25),2)))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [14, 0]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(sub_n([4, -3],3),1),1)),-2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      14,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(sub_n(input,3),1),1)),-2)"
  },
  {
    "input": "input : list = [1, 5, -2, 1]\noutput : list = [12, 24, 3, 12]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n([1, 5, -2, 1],3))),3)",
    "io_inp": [
      1,
      5,
      -2,
      1
    ],
    "io_out": [
      12,
      24,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(input,3))),3)"
  },
  {
    "input": "input : list = [-2, 5, -4, 0, 1]\noutput : list = [-8, 6, -12, -4, -2]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(sub_n([-2, 5, -4, 0, 1],4),-2),2),5),5)",
    "io_inp": [
      -2,
      5,
      -4,
      0,
      1
    ],
    "io_out": [
      -8,
      6,
      -12,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(sub_n(input,4),-2),2),5),5)"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 2, -1],1)",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [-11, -14, -7]",
    "output": "generated_output : list = add_n(sub_n(add_n([-2, -5, 2],-3),5),-1)",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      -11,
      -14,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,-3),5),-1)"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [0, 2, 8]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(add_n([-4, 0, -3],-1),1)),5),2)",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(add_n(input,-1),1)),5),2)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-6, -5, -2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([-1, -5, -4],4)),3)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,4)),3)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [-17, -15, -10]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(sort_asc([-3, 2, -5]),1),-5),-5),3)",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      -17,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(sort_asc(input),1),-5),-5),3)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [48, -48]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sort_asc([3, -3]),-4)),-4),1)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sort_asc(input),-4)),-4),1)"
  },
  {
    "input": "input : list = [-1, -3, 5, -3, -3, 2]\noutput : list = [7, 4, 1, -1, -1, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sub_n([-1, -3, 5, -3, -3, 2],5),-2)),-5))",
    "io_inp": [
      -1,
      -3,
      5,
      -3,
      -3,
      2
    ],
    "io_out": [
      7,
      4,
      1,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sub_n(input,5),-2)),-5))"
  },
  {
    "input": "input : list = [0, -5, -3, -2, 4, 3]\noutput : list = [0, 10, 15, 25]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(take([0, -5, -3, -2, 4, 3],4))),-5))",
    "io_inp": [
      0,
      -5,
      -3,
      -2,
      4,
      3
    ],
    "io_out": [
      0,
      10,
      15,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(take(input,4))),-5))"
  },
  {
    "input": "input : list = [-1, 2, -4, 0, 4, -1]\noutput : list = [1, 4, -2, 2, 6, 1]",
    "output": "generated_output : list = add_n([-1, 2, -4, 0, 4, -1],2)",
    "io_inp": [
      -1,
      2,
      -4,
      0,
      4,
      -1
    ],
    "io_out": [
      1,
      4,
      -2,
      2,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 5, 1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 5, 1],1)",
    "io_inp": [
      4,
      5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 5, 5, 1, -1, 3]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(add_n([0, 5, 5, 1, -1, 3],-2),3))),1)",
    "io_inp": [
      0,
      5,
      5,
      1,
      -1,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(add_n(input,-2),3))),1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(sub_n([1, 0],-3)))),-5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(sub_n(input,-3)))),-5)"
  },
  {
    "input": "input : list = [-2, 3, 3]\noutput : list = [-4, -4, 16]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n([-2, 3, 3],-2))),-4)",
    "io_inp": [
      -2,
      3,
      3
    ],
    "io_out": [
      -4,
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(input,-2))),-4)"
  },
  {
    "input": "input : list = [5, 1, -5, 2, -1, 1]\noutput : list = [0, -3, -4, -4, -6, -10]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_asc(add_n([5, 1, -5, 2, -1, 1],-5)))),44)",
    "io_inp": [
      5,
      1,
      -5,
      2,
      -1,
      1
    ],
    "io_out": [
      0,
      -3,
      -4,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_asc(add_n(input,-5)))),44)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(take(add_n([-3, -3],5),8))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,5),8))"
  },
  {
    "input": "input : list = [4, -5, -3, -1, 3]\noutput : list = [5, -4, -2, 0, 4]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(add_n([4, -5, -3, -1, 3],4),3),20)))",
    "io_inp": [
      4,
      -5,
      -3,
      -1,
      3
    ],
    "io_out": [
      5,
      -4,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(add_n(input,4),3),20)))"
  },
  {
    "input": "input : list = [-2, -2, 1]\noutput : list = [-25, -25, -10]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse(reverse([-2, -2, 1]))),3),5)",
    "io_inp": [
      -2,
      -2,
      1
    ],
    "io_out": [
      -25,
      -25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(reverse(input))),3),5)"
  },
  {
    "input": "input : list = [-4, -3, -1, 3, 1]\noutput : list = [5, 15]",
    "output": "generated_output : list = reverse(sort_des(mul_n(drop(sort_asc([-4, -3, -1, 3, 1]),3),5)))",
    "io_inp": [
      -4,
      -3,
      -1,
      3,
      1
    ],
    "io_out": [
      5,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(drop(sort_asc(input),3),5)))"
  },
  {
    "input": "input : list = [-5, 4, -3, -3, 4]\noutput : list = [50, 15, 15, 50, 5]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n([-5, 4, -3, -3, 4],5),5),-5))",
    "io_inp": [
      -5,
      4,
      -3,
      -3,
      4
    ],
    "io_out": [
      50,
      15,
      15,
      50,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(input,5),5),-5))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_asc([-3, 0]),12))),3)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_asc(input),12))),3)"
  },
  {
    "input": "input : list = [-1, 1, -5, 4]\noutput : list = [-7, -13, 5, -22]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(sub_n([-1, 1, -5, 4],-4),-4),-5),-3),-5)",
    "io_inp": [
      -1,
      1,
      -5,
      4
    ],
    "io_out": [
      -7,
      -13,
      5,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(sub_n(input,-4),-4),-5),-3),-5)"
  },
  {
    "input": "input : list = [-3, 1, 2, 1, -5]\noutput : list = [-5, 1, 2, 1, -3]",
    "output": "generated_output : list = reverse([-3, 1, 2, 1, -5])",
    "io_inp": [
      -3,
      1,
      2,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [12, 22, -3]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n([-2, -4, 1],-5),1),11),-1)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      12,
      22,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(input,-5),1),11),-1)"
  },
  {
    "input": "input : list = [0, -3, 3, -5, 3, -2]\noutput : list = [-2, 3, -5, 3, -3, 0]",
    "output": "generated_output : list = reverse([0, -3, 3, -5, 3, -2])",
    "io_inp": [
      0,
      -3,
      3,
      -5,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      -5,
      3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, -2]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = reverse([0, -1, -2])",
    "io_inp": [
      0,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -3, -1, 5, -3]\noutput : list = [0, 18]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(mul_n([3, -3, -1, 5, -3],-3),5),4),2))",
    "io_inp": [
      3,
      -3,
      -1,
      5,
      -3
    ],
    "io_out": [
      0,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(mul_n(input,-3),5),4),2))"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [5, -2, -5]",
    "output": "generated_output : list = sort_des([-2, -5, 5])",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [-2, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(reverse([2, 0, 4]),1))),5)",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(reverse(input),1))),5)"
  },
  {
    "input": "input : list = [3, 1, -5, -3, -3]\noutput : list = [30, 10, -50, -30, -30]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(reverse([3, 1, -5, -3, -3]),-2)),43),-5)",
    "io_inp": [
      3,
      1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      30,
      10,
      -50,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(reverse(input),-2)),43),-5)"
  },
  {
    "input": "input : list = [-4, 5, -5, -5, 5, 5]\noutput : list = [10, -17, 13, 13, -17, -17]",
    "output": "generated_output : list = sub_n(mul_n([-4, 5, -5, -5, 5, 5],-3),2)",
    "io_inp": [
      -4,
      5,
      -5,
      -5,
      5,
      5
    ],
    "io_out": [
      10,
      -17,
      13,
      13,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),2)"
  },
  {
    "input": "input : list = [-3, 0, -1, -1, -4]\noutput : list = [3, 2, 2, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(sort_des([-3, 0, -1, -1, -4])),-3)))",
    "io_inp": [
      -3,
      0,
      -1,
      -1,
      -4
    ],
    "io_out": [
      3,
      2,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [5, -4, 2, 4, -4, 0]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(drop(reverse(reverse(sort_des([5, -4, 2, 4, -4, 0]))),5),1)",
    "io_inp": [
      5,
      -4,
      2,
      4,
      -4,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(reverse(reverse(sort_des(input))),5),1)"
  },
  {
    "input": "input : list = [-4, 1, 4, 1]\noutput : list = [-1, -1, 11]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(drop([-4, 1, 4, 1],1),4)),5),5)",
    "io_inp": [
      -4,
      1,
      4,
      1
    ],
    "io_out": [
      -1,
      -1,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(drop(input,1),4)),5),5)"
  },
  {
    "input": "input : list = [3, -1, -5, 1]\noutput : list = [-9, -1, 3, 7]",
    "output": "generated_output : list = take(sort_asc(sub_n(mul_n(sort_asc([3, -1, -5, 1]),2),-1)),18)",
    "io_inp": [
      3,
      -1,
      -5,
      1
    ],
    "io_out": [
      -9,
      -1,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(mul_n(sort_asc(input),2),-1)),18)"
  },
  {
    "input": "input : list = [-1, -1, -2, 5, -5]\noutput : list = [45, 45, 50, 15, 65]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse(add_n([-1, -1, -2, 5, -5],-4))),-4),-5)",
    "io_inp": [
      -1,
      -1,
      -2,
      5,
      -5
    ],
    "io_out": [
      45,
      45,
      50,
      15,
      65
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(add_n(input,-4))),-4),-5)"
  },
  {
    "input": "input : list = [5, 4, 2, 0, 4, -5]\noutput : list = [5, 4, 4, 2, 0, -5]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(reverse([5, 4, 2, 0, 4, -5])),-1),-1))",
    "io_inp": [
      5,
      4,
      2,
      0,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(reverse(input)),-1),-1))"
  },
  {
    "input": "input : list = [1, -1, 3, -4]\noutput : list = [-14, -11, -9, -7]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([1, -1, 3, -4],5)),-5)",
    "io_inp": [
      1,
      -1,
      3,
      -4
    ],
    "io_out": [
      -14,
      -11,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,5)),-5)"
  },
  {
    "input": "input : list = [3, -1, -2, -5, 4, -5]\noutput : list = [-16, -15, -11]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(sub_n([3, -1, -2, -5, 4, -5],5),4),3),-5))",
    "io_inp": [
      3,
      -1,
      -2,
      -5,
      4,
      -5
    ],
    "io_out": [
      -16,
      -15,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(sub_n(input,5),4),3),-5))"
  },
  {
    "input": "input : list = [-4, -5, 4, 3, 5]\noutput : list = [6, 5, 4, -3, -4]",
    "output": "generated_output : list = take(sort_des(take(add_n(sub_n([-4, -5, 4, 3, 5],-5),-4),12)),37)",
    "io_inp": [
      -4,
      -5,
      4,
      3,
      5
    ],
    "io_out": [
      6,
      5,
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(sub_n(input,-5),-4),12)),37)"
  },
  {
    "input": "input : list = [-1, -1, 3, 4]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = drop([-1, -1, 3, 4],1)",
    "io_inp": [
      -1,
      -1,
      3,
      4
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -3, 2, 0, 3, -2]\noutput : list = [5, -1, 4, 2]",
    "output": "generated_output : list = take(take(add_n(add_n(take([3, -3, 2, 0, 3, -2],4),-2),4),34),17)",
    "io_inp": [
      3,
      -3,
      2,
      0,
      3,
      -2
    ],
    "io_out": [
      5,
      -1,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(take(input,4),-2),4),34),17)"
  },
  {
    "input": "input : list = [3, 1, 5, -5]\noutput : list = [30, 20, 40, -10]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sub_n([3, 1, 5, -5],-4),-1),-5),1),4)",
    "io_inp": [
      3,
      1,
      5,
      -5
    ],
    "io_out": [
      30,
      20,
      40,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sub_n(input,-4),-1),-5),1),4)"
  },
  {
    "input": "input : list = [2, 2, -4, 4]\noutput : list = [1, 7, 7, 9]",
    "output": "generated_output : list = add_n(sort_asc([2, 2, -4, 4]),5)",
    "io_inp": [
      2,
      2,
      -4,
      4
    ],
    "io_out": [
      1,
      7,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [2, 0, -5, 0]\noutput : list = [-25, -50, -25, -15]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(add_n([2, 0, -5, 0],3),-5),-3)),5)",
    "io_inp": [
      2,
      0,
      -5,
      0
    ],
    "io_out": [
      -25,
      -50,
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(add_n(input,3),-5),-3)),5)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [4, 16]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(mul_n([5, 1],3)),-1)),20)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(mul_n(input,3)),-1)),20)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-160, -160]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(sort_asc([4, 4]),10),5),-4),2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -160,
      -160
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(sort_asc(input),10),5),-4),2)"
  },
  {
    "input": "input : list = [-1, 0, -5, 2, -3]\noutput : list = [-3, 2, -5, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, -5, 2, -3])",
    "io_inp": [
      -1,
      0,
      -5,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      -5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, -4, -5, 2, -5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(take([-1, 4, -4, -5, 2, -5],2)),28)),-1)",
    "io_inp": [
      -1,
      4,
      -4,
      -5,
      2,
      -5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(take(input,2)),28)),-1)"
  },
  {
    "input": "input : list = [-1, 2, -4, 0, 3, 0]\noutput : list = [5, 2, 8, 4, 1, 4]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(mul_n([-1, 2, -4, 0, 3, 0],-1))),25),-4)",
    "io_inp": [
      -1,
      2,
      -4,
      0,
      3,
      0
    ],
    "io_out": [
      5,
      2,
      8,
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(mul_n(input,-1))),25),-4)"
  },
  {
    "input": "input : list = [-2, -4, -5, -5, 4]\noutput : list = [37, -11, -27, -35, -35]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n([-2, -4, -5, -5, 4],4),2)),-5),53)",
    "io_inp": [
      -2,
      -4,
      -5,
      -5,
      4
    ],
    "io_out": [
      37,
      -11,
      -27,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(mul_n(input,4),2)),-5),53)"
  },
  {
    "input": "input : list = [4, 1, 3, -2, 2]\noutput : list = [2, -2, 3, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 3, -2, 2])",
    "io_inp": [
      4,
      1,
      3,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, 1, 2, -2]\noutput : list = [-12, -9, -9, 0, 3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(sort_asc([-2, -3, 1, 2, -2])),3),4),1)",
    "io_inp": [
      -2,
      -3,
      1,
      2,
      -2
    ],
    "io_out": [
      -12,
      -9,
      -9,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(sort_asc(input)),3),4),1)"
  },
  {
    "input": "input : list = [-3, -4, 5, 2, 2]\noutput : list = [8, 5, 5, 0, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n([-3, -4, 5, 2, 2],1),5))),3)",
    "io_inp": [
      -3,
      -4,
      5,
      2,
      2
    ],
    "io_out": [
      8,
      5,
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n(input,1),5))),3)"
  },
  {
    "input": "input : list = [-4, -2, 3, -2, -2]\noutput : list = [-6, 4, 4, 4, 8]",
    "output": "generated_output : list = take(mul_n(mul_n(take(sort_des([-4, -2, 3, -2, -2]),5),2),-1),15)",
    "io_inp": [
      -4,
      -2,
      3,
      -2,
      -2
    ],
    "io_out": [
      -6,
      4,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(sort_des(input),5),2),-1),15)"
  },
  {
    "input": "input : list = [-3, 3, 3, -2, -4]\noutput : list = [-3, 3, 3, -2, -4]",
    "output": "generated_output : list = mul_n([-3, 3, 3, -2, -4],1)",
    "io_inp": [
      -3,
      3,
      3,
      -2,
      -4
    ],
    "io_out": [
      -3,
      3,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, -3, -3, 4]\noutput : list = [4, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(drop([3, -3, -3, 4],1),7),3)))",
    "io_inp": [
      3,
      -3,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(drop(input,1),7),3)))"
  },
  {
    "input": "input : list = [-3, 1, -5, -3, 1]\noutput : list = [0, 12, -6, 0, 12]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n([-3, 1, -5, -3, 1],3)),3))",
    "io_inp": [
      -3,
      1,
      -5,
      -3,
      1
    ],
    "io_out": [
      0,
      12,
      -6,
      0,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(input,3)),3))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-11, -3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(mul_n([4, 2],-4),2)),3))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(mul_n(input,-4),2)),3))"
  },
  {
    "input": "input : list = [5, 5, 1, -1]\noutput : list = [8, 8]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(take([5, 5, 1, -1],2))),-2),1)",
    "io_inp": [
      5,
      5,
      1,
      -1
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(take(input,2))),-2),1)"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [-7, -4, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_des([-4, 1, -1])),-2),5))",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_des(input)),-2),5))"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = sort_asc([1, 0, -1])",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 2, 5, 3]\noutput : list = [10, 6]",
    "output": "generated_output : list = mul_n(take(drop([-3, -2, 2, 5, 3],3),10),2)",
    "io_inp": [
      -3,
      -2,
      2,
      5,
      3
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(input,3),10),2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sub_n([3, -1],-2),-2),-1),-4))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sub_n(input,-2),-2),-1),-4))"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [5, -1, -1]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n([-1, -1, 5],-4)),1),5)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(input,-4)),1),5)"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [7, 5, 7]",
    "output": "generated_output : list = sub_n(reverse([2, 0, 2]),-5)",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      7,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [2, 5, -4, -5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(take([2, 5, -4, -5],1)))",
    "io_inp": [
      2,
      5,
      -4,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-2, -5, 5, -3]\noutput : list = [5, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-2, -5, 5, -3])",
    "io_inp": [
      -2,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, 4, -2]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(sub_n([0, 3, 4, -2],4))),2))",
    "io_inp": [
      0,
      3,
      4,
      -2
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(sub_n(input,4))),2))"
  },
  {
    "input": "input : list = [-2, -4, 4, 2, 3, -1]\noutput : list = [0, 2, 3, 6, 7, 8]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_asc([-2, -4, 4, 2, 3, -1])))),4)",
    "io_inp": [
      -2,
      -4,
      4,
      2,
      3,
      -1
    ],
    "io_out": [
      0,
      2,
      3,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [2, 5, 5, -2, -1]\noutput : list = [5, 5, 2, -1, -2]",
    "output": "generated_output : list = sort_des([2, 5, 5, -2, -1])",
    "io_inp": [
      2,
      5,
      5,
      -2,
      -1
    ],
    "io_out": [
      5,
      5,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, 4, 1]\noutput : list = [4, 4, 1, 1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(sort_des([4, 1, 4, 1]),13))))",
    "io_inp": [
      4,
      1,
      4,
      1
    ],
    "io_out": [
      4,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(sort_des(input),13))))"
  },
  {
    "input": "input : list = [0, 0, 2, 5, 4, -1]\noutput : list = [15, 0, -3, 6, 12]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(drop([0, 0, 2, 5, 4, -1],1),4)),9),-3)",
    "io_inp": [
      0,
      0,
      2,
      5,
      4,
      -1
    ],
    "io_out": [
      15,
      0,
      -3,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(drop(input,1),4)),9),-3)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(sub_n(take(drop(sort_des([1, 5]),1),2),2),-2)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(drop(sort_des(input),1),2),2),-2)"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [7, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(drop([3, 4, -5],1),2)),2),-3)",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(drop(input,1),2)),2),-3)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [1, 0, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(reverse([3, -3, 2]),1),-2)),-1)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(reverse(input),1),-2)),-1)"
  },
  {
    "input": "input : list = [-3, -1, -1, 5, -5, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(take([-3, -1, -1, 5, -5, 2],2))",
    "io_inp": [
      -3,
      -1,
      -1,
      5,
      -5,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-3, 4, -1, 5]\noutput : list = [5, 4, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n([-3, 4, -1, 5],-4),-1)),-3)",
    "io_inp": [
      -3,
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(input,-4),-1)),-3)"
  },
  {
    "input": "input : list = [3, -5, -3]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sort_asc([3, -5, -3]),1),4)),-5)",
    "io_inp": [
      3,
      -5,
      -3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sort_asc(input),1),4)),-5)"
  },
  {
    "input": "input : list = [0, 5, 5, 0, -5, 5]\noutput : list = [0, 5, 5, 0, -5, 5]",
    "output": "generated_output : list = reverse(reverse([0, 5, 5, 0, -5, 5]))",
    "io_inp": [
      0,
      5,
      5,
      0,
      -5,
      5
    ],
    "io_out": [
      0,
      5,
      5,
      0,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [-4, 2, 3]",
    "output": "generated_output : list = take(sort_asc([2, 3, -4]),5)",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),5)"
  },
  {
    "input": "input : list = [5, 5, -3, -2]\noutput : list = [48, 32, -80, -80]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(sort_asc([5, 5, -3, -2])),4),-4))",
    "io_inp": [
      5,
      5,
      -3,
      -2
    ],
    "io_out": [
      48,
      32,
      -80,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(sort_asc(input)),4),-4))"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-28, -53, -53]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n(sort_des([1, -4, -4]),4),-3),5),-2)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -28,
      -53,
      -53
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(sort_des(input),4),-3),5),-2)"
  },
  {
    "input": "input : list = [0, 2, 2]\noutput : list = [8, 8, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sort_asc([0, 2, 2]),4))))",
    "io_inp": [
      0,
      2,
      2
    ],
    "io_out": [
      8,
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [-2, -5, 3, 0, 3, -1]\noutput : list = [-25, -10, -5, 0, 15, 15]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(mul_n([-2, -5, 3, 0, 3, -1],5)))))",
    "io_inp": [
      -2,
      -5,
      3,
      0,
      3,
      -1
    ],
    "io_out": [
      -25,
      -10,
      -5,
      0,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [7, 2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(reverse([-5, 0]),3),-4)))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(reverse(input),3),-4)))"
  },
  {
    "input": "input : list = [-2, 0, -2, -1, -5]\noutput : list = [0, -16]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(drop([-2, 0, -2, -1, -5],3),1))),4)",
    "io_inp": [
      -2,
      0,
      -2,
      -1,
      -5
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(drop(input,3),1))),4)"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [-75, 0, 30]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n([0, 2, -5],3)),5))",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      -75,
      0,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(input,3)),5))"
  },
  {
    "input": "input : list = [4, 1, 2, 1, 0]\noutput : list = [-2, -1, 0, -1, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n([4, 1, 2, 1, 0],5)),-3)",
    "io_inp": [
      4,
      1,
      2,
      1,
      0
    ],
    "io_out": [
      -2,
      -1,
      0,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,5)),-3)"
  },
  {
    "input": "input : list = [4, 2, 0, 0, 4]\noutput : list = [1, 1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n([4, 2, 0, 0, 4],1))",
    "io_inp": [
      4,
      2,
      0,
      0,
      4
    ],
    "io_out": [
      1,
      1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [4, -5, 1]",
    "output": "generated_output : list = add_n([5, -4, 2],-1)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      4,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 5, 5, 1]\noutput : list = [-2, -2, -10, -10]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(mul_n([1, 5, 5, 1],-2)),-1)),1)",
    "io_inp": [
      1,
      5,
      5,
      1
    ],
    "io_out": [
      -2,
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(mul_n(input,-2)),-1)),1)"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [7, 6, -1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc([3, 2, -5]),1)),-4)",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      7,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(input),1)),-4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-1, 7]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(add_n([-4, 4],3)))),12)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(add_n(input,3)))),12)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse([3, 1])",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -4, 2, -5]\noutput : list = [9, 8, 6, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(sort_des([4, 5, -4, 2, -5])),-4)))",
    "io_inp": [
      4,
      5,
      -4,
      2,
      -5
    ],
    "io_out": [
      9,
      8,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [1, 2, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc([-1, -2, 3]),1)),1),3)",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc(input),1)),1),3)"
  },
  {
    "input": "input : list = [-4, 2, -2, 2, 0]\noutput : list = [2, 2, 0, -2, -4]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(sort_des([-4, 2, -2, 2, 0]),-1),1)))",
    "io_inp": [
      -4,
      2,
      -2,
      2,
      0
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(sort_des(input),-1),1)))"
  },
  {
    "input": "input : list = [5, 5, 0, 0, 5, -4]\noutput : list = [-20, -20, -20, 0, 0, 16]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des(sort_asc([5, 5, 0, 0, 5, -4]))),-4),23)",
    "io_inp": [
      5,
      5,
      0,
      0,
      5,
      -4
    ],
    "io_out": [
      -20,
      -20,
      -20,
      0,
      0,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(sort_asc(input))),-4),23)"
  },
  {
    "input": "input : list = [3, -2, -1, -3, -1, -5]\noutput : list = [-5, -3, -2, -1, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([3, -2, -1, -3, -1, -5])))",
    "io_inp": [
      3,
      -2,
      -1,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, -5, 4, -3, -2]\noutput : list = [-8, -9]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(take([-4, -5, 4, -3, -2],2))),4))",
    "io_inp": [
      -4,
      -5,
      4,
      -3,
      -2
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(take(input,2))),4))"
  },
  {
    "input": "input : list = [-1, 0, 0, -3]\noutput : list = [-10, -5, -5, -20]",
    "output": "generated_output : list = add_n(mul_n([-1, 0, 0, -3],5),-5)",
    "io_inp": [
      -1,
      0,
      0,
      -3
    ],
    "io_out": [
      -10,
      -5,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),-5)"
  },
  {
    "input": "input : list = [5, 5, 5, -3, -1, -5]\noutput : list = [5, 5, 5, -3, -1, -5]",
    "output": "generated_output : list = mul_n([5, 5, 5, -3, -1, -5],1)",
    "io_inp": [
      5,
      5,
      5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      5,
      5,
      5,
      -3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-2, 0, 2]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sub_n(sort_asc([-2, 0, 2]),2)",
    "io_inp": [
      -2,
      0,
      2
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-5, 2, -1, 2, 4, -3]\noutput : list = [-24, 32, 16, -8, 16, -40]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-5, 2, -1, 2, 4, -3],4)),2)",
    "io_inp": [
      -5,
      2,
      -1,
      2,
      4,
      -3
    ],
    "io_out": [
      -24,
      32,
      16,
      -8,
      16,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,4)),2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = mul_n([-1, -1],-4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [16, -32, 64]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(mul_n([0, -4, 4],4),-5),3),-1),5)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      16,
      -32,
      64
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(mul_n(input,4),-5),3),-1),5)"
  },
  {
    "input": "input : list = [1, -2, 5, -3, -4, -3]\noutput : list = [-2, -6, -9, -10, -10, -11]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_asc([1, -2, 5, -3, -4, -3]),2)),5),4)",
    "io_inp": [
      1,
      -2,
      5,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -6,
      -9,
      -10,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_asc(input),2)),5),4)"
  },
  {
    "input": "input : list = [2, -3, 1, -4, -5]\noutput : list = [-2, -7, -3, -8, -9]",
    "output": "generated_output : list = add_n(add_n([2, -3, 1, -4, -5],-1),-3)",
    "io_inp": [
      2,
      -3,
      1,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -7,
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),-3)"
  },
  {
    "input": "input : list = [0, -2, -5, 4, -1, 5]\noutput : list = [2, -4, 1, -8, -5, -3]",
    "output": "generated_output : list = reverse(add_n([0, -2, -5, 4, -1, 5],-3))",
    "io_inp": [
      0,
      -2,
      -5,
      4,
      -1,
      5
    ],
    "io_out": [
      2,
      -4,
      1,
      -8,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [-3, -3, 1, 2]\noutput : list = [-4, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(drop(sub_n([-3, -3, 1, 2],-3),2))),-1)",
    "io_inp": [
      -3,
      -3,
      1,
      2
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(drop(sub_n(input,-3),2))),-1)"
  },
  {
    "input": "input : list = [0, -1, 5]\noutput : list = [14, 9, 8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(sort_des([0, -1, 5]),3),-2)),4)",
    "io_inp": [
      0,
      -1,
      5
    ],
    "io_out": [
      14,
      9,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(sort_des(input),3),-2)),4)"
  },
  {
    "input": "input : list = [5, -1, 2, 5, -1, -1]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = sort_asc(take(drop([5, -1, 2, 5, -1, -1],3),8))",
    "io_inp": [
      5,
      -1,
      2,
      5,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,3),8))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([-5, -2])))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 3, 5, 3, 0]\noutput : list = [-1, 0, 3, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(reverse([-1, 3, 5, 3, 0])))))",
    "io_inp": [
      -1,
      3,
      5,
      3,
      0
    ],
    "io_out": [
      -1,
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [5, 1, 2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc(add_n([5, 1, 2],-1))),1))",
    "io_inp": [
      5,
      1,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(add_n(input,-1))),1))"
  },
  {
    "input": "input : list = [3, -2, 5, -5, 1, -4]\noutput : list = [10, -10, 18, -22, 2, -18]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([3, -2, 5, -5, 1, -4],1),4),-2)",
    "io_inp": [
      3,
      -2,
      5,
      -5,
      1,
      -4
    ],
    "io_out": [
      10,
      -10,
      18,
      -22,
      2,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,1),4),-2)"
  },
  {
    "input": "input : list = [-5, -5, -2, 4, 2]\noutput : list = [-15, -15, -6, 12, 6]",
    "output": "generated_output : list = mul_n([-5, -5, -2, 4, 2],3)",
    "io_inp": [
      -5,
      -5,
      -2,
      4,
      2
    ],
    "io_out": [
      -15,
      -15,
      -6,
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(sort_asc([5, 1, 0]),-5),-1),-5))",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(sort_asc(input),-5),-1),-5))"
  },
  {
    "input": "input : list = [1, 3, 1, 2, 1]\noutput : list = [1, 1, 1, 3, 5]",
    "output": "generated_output : list = add_n(take(sort_asc(mul_n(sub_n([1, 3, 1, 2, 1],-2),2)),24),-5)",
    "io_inp": [
      1,
      3,
      1,
      2,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(mul_n(sub_n(input,-2),2)),24),-5)"
  },
  {
    "input": "input : list = [2, -2, 0, -4, 0, -4]\noutput : list = [2, 0, 0, -2, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc([2, -2, 0, -4, 0, -4]))",
    "io_inp": [
      2,
      -2,
      0,
      -4,
      0,
      -4
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(add_n([0, 1],2),-1))),3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(add_n(input,2),-1))),3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc([-3, 2])",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-28, -32]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(add_n([2, 3],1)),-4),-4))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -28,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(add_n(input,1)),-4),-4))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 8]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(sub_n([3, 4],5)),-4)))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(sub_n(input,5)),-4)))"
  },
  {
    "input": "input : list = [1, 0, 3, 0, -3, 4]\noutput : list = [-3, -4, -1, -4, -7, 0]",
    "output": "generated_output : list = add_n(add_n([1, 0, 3, 0, -3, 4],-1),-3)",
    "io_inp": [
      1,
      0,
      3,
      0,
      -3,
      4
    ],
    "io_out": [
      -3,
      -4,
      -1,
      -4,
      -7,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),-3)"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [-35, -15, -10]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(sub_n([-5, -1, 0],2)),20),5))",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      -35,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(sub_n(input,2)),20),5))"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [-1, 5, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, 5])",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-8, 2]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(reverse([0, 2]),-5),-5),3),28)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(reverse(input),-5),-5),3),28)"
  },
  {
    "input": "input : list = [1, -4, 1, 5, -2]\noutput : list = [-8, -6, -3, -3, 1]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sort_asc([1, -4, 1, 5, -2])),-1)),-5)",
    "io_inp": [
      1,
      -4,
      1,
      5,
      -2
    ],
    "io_out": [
      -8,
      -6,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sort_asc(input)),-1)),-5)"
  },
  {
    "input": "input : list = [-2, 5, -2, -4, -4]\noutput : list = [5, -2, -4, -4]",
    "output": "generated_output : list = sort_des(take(drop([-2, 5, -2, -4, -4],1),20))",
    "io_inp": [
      -2,
      5,
      -2,
      -4,
      -4
    ],
    "io_out": [
      5,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,1),20))"
  },
  {
    "input": "input : list = [5, 0, 4, -3]\noutput : list = [-28, -16, 0, 4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sub_n([5, 0, 4, -3],4)))),4)",
    "io_inp": [
      5,
      0,
      4,
      -3
    ],
    "io_out": [
      -28,
      -16,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sub_n(input,4)))),4)"
  },
  {
    "input": "input : list = [2, 1, 4, -3]\noutput : list = [3, 2, 5, -2]",
    "output": "generated_output : list = sub_n(add_n([2, 1, 4, -3],-1),-2)",
    "io_inp": [
      2,
      1,
      4,
      -3
    ],
    "io_out": [
      3,
      2,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),-2)"
  },
  {
    "input": "input : list = [5, 3, 1, -5, -4]\noutput : list = [2, 0, -2, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des([5, 3, 1, -5, -4]),3)",
    "io_inp": [
      5,
      3,
      1,
      -5,
      -4
    ],
    "io_out": [
      2,
      0,
      -2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [3, -2, -5, 0, -4, -1]\noutput : list = [16, 4, -4, -16]",
    "output": "generated_output : list = take(sort_des(sub_n(take(mul_n([3, -2, -5, 0, -4, -1],-4),4),4)),8)",
    "io_inp": [
      3,
      -2,
      -5,
      0,
      -4,
      -1
    ],
    "io_out": [
      16,
      4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(mul_n(input,-4),4),4)),8)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [4, 0]",
    "output": "generated_output : list = add_n(take(sort_des(take(add_n([-2, 2],-3),15)),9),5)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(add_n(input,-3),15)),9),5)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [9, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(sub_n([5, -5],-5),4)),1))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      9,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(sub_n(input,-5),4)),1))"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [4, -2, 0]",
    "output": "generated_output : list = add_n([2, -4, -2],2)",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [-4, -1, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse([-3, 5, 0])),-3),-2)",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(input)),-3),-2)"
  },
  {
    "input": "input : list = [-4, 4, -2, -5, -5]\noutput : list = [-10, -10, 5, 35]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(drop([-4, 4, -2, -5, -5],1),2),5)),5)",
    "io_inp": [
      -4,
      4,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -10,
      -10,
      5,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(drop(input,1),2),5)),5)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = drop([5, 0, 5],1)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 1, -3, -4, 3, 1]\noutput : list = [-15, 5, 5, 15, 15]",
    "output": "generated_output : list = sort_asc(mul_n(take(drop(sort_asc([3, 1, -3, -4, 3, 1]),1),36),5))",
    "io_inp": [
      3,
      1,
      -3,
      -4,
      3,
      1
    ],
    "io_out": [
      -15,
      5,
      5,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(drop(sort_asc(input),1),36),5))"
  },
  {
    "input": "input : list = [-3, -3, -5, -4]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([-3, -3, -5, -4],1)))",
    "io_inp": [
      -3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-38, -2]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n(sub_n([-5, 1],-2),4),3),2),4)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -38,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(sub_n(input,-2),4),3),2),4)"
  },
  {
    "input": "input : list = [-3, -3, 2, -1, -5]\noutput : list = [-11, -11, -6, -9, -13]",
    "output": "generated_output : list = sub_n(sub_n([-3, -3, 2, -1, -5],4),4)",
    "io_inp": [
      -3,
      -3,
      2,
      -1,
      -5
    ],
    "io_out": [
      -11,
      -11,
      -6,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),4)"
  },
  {
    "input": "input : list = [-2, 2, -2, 5, -2, -4]\noutput : list = [-4, -2, 5, -2, 2, -2]",
    "output": "generated_output : list = reverse([-2, 2, -2, 5, -2, -4])",
    "io_inp": [
      -2,
      2,
      -2,
      5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      5,
      -2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, 0, -2]\noutput : list = [-2, 0, 4, 4]",
    "output": "generated_output : list = take(reverse(sort_des(take(reverse([4, 4, 0, -2]),19))),9)",
    "io_inp": [
      4,
      4,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(reverse(input),19))),9)"
  },
  {
    "input": "input : list = [-1, 0, 1, 3, 2, 3]\noutput : list = [3, 2, 3, 1, 0, -1]",
    "output": "generated_output : list = take(reverse(mul_n([-1, 0, 1, 3, 2, 3],1)),34)",
    "io_inp": [
      -1,
      0,
      1,
      3,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      3,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,1)),34)"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(take([-2, -4, 4],1)),5),-5))",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(take(input,1)),5),-5))"
  },
  {
    "input": "input : list = [4, -4, -2, -4, 3]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(drop([4, -4, -2, -4, 3],2))),1))",
    "io_inp": [
      4,
      -4,
      -2,
      -4,
      3
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(drop(input,2))),1))"
  },
  {
    "input": "input : list = [1, 5, 5, 1, 2, 2]\noutput : list = [-3, 1, 1, -3, -2, -2]",
    "output": "generated_output : list = sub_n([1, 5, 5, 1, 2, 2],4)",
    "io_inp": [
      1,
      5,
      5,
      1,
      2,
      2
    ],
    "io_out": [
      -3,
      1,
      1,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, 1, -1, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(drop(sub_n(sub_n([-3, 1, -1, -4],-5),4),3),2)",
    "io_inp": [
      -3,
      1,
      -1,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(sub_n(input,-5),4),3),2)"
  },
  {
    "input": "input : list = [0, -5, -2, 4]\noutput : list = [7, 3, 1, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([0, -5, -2, 4]),-3))",
    "io_inp": [
      0,
      -5,
      -2,
      4
    ],
    "io_out": [
      7,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [1, -2, -3, -4, -2, 4]\noutput : list = [4, 1, 0, -1, 1, 7]",
    "output": "generated_output : list = reverse(reverse(add_n([1, -2, -3, -4, -2, 4],3)))",
    "io_inp": [
      1,
      -2,
      -3,
      -4,
      -2,
      4
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      1,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(input,3)))"
  },
  {
    "input": "input : list = [2, 2, 0, -2, -2]\noutput : list = [-2, -2, 0, 2, 2]",
    "output": "generated_output : list = mul_n([2, 2, 0, -2, -2],-1)",
    "io_inp": [
      2,
      2,
      0,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [3, 1, -5, -4]\noutput : list = [4, 2, -3, -4]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sort_des([3, 1, -5, -4]),-2),-1)),35)",
    "io_inp": [
      3,
      1,
      -5,
      -4
    ],
    "io_out": [
      4,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sort_des(input),-2),-1)),35)"
  },
  {
    "input": "input : list = [-1, 4, -1, 5]\noutput : list = [-3, -8, -3, -9]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([-1, 4, -1, 5],-2),-2),-1)",
    "io_inp": [
      -1,
      4,
      -1,
      5
    ],
    "io_out": [
      -3,
      -8,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,-2),-2),-1)"
  },
  {
    "input": "input : list = [0, 5, 2, -4, 5]\noutput : list = [8, 8, 5, 3, -1]",
    "output": "generated_output : list = take(sub_n(sort_des(take(sort_asc([0, 5, 2, -4, 5]),11)),-3),5)",
    "io_inp": [
      0,
      5,
      2,
      -4,
      5
    ],
    "io_out": [
      8,
      8,
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(sort_asc(input),11)),-3),5)"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [-5, 2, 0]",
    "output": "generated_output : list = add_n([-4, 3, 1],-1)",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      -5,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 0, 5, 2, 3, -3]\noutput : list = [15, 0, -15, -6, -9, 9]",
    "output": "generated_output : list = mul_n([-5, 0, 5, 2, 3, -3],-3)",
    "io_inp": [
      -5,
      0,
      5,
      2,
      3,
      -3
    ],
    "io_out": [
      15,
      0,
      -15,
      -6,
      -9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 4, -3, 0, 3]\noutput : list = [7, 6, 3, 0, -1]",
    "output": "generated_output : list = take(add_n(take(sort_des([-4, 4, -3, 0, 3]),6),3),39)",
    "io_inp": [
      -4,
      4,
      -3,
      0,
      3
    ],
    "io_out": [
      7,
      6,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(input),6),3),39)"
  },
  {
    "input": "input : list = [-2, 2, 3, -5, -1, -4]\noutput : list = [-7, -6, -4, -3, 0, 1]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(sort_des([-2, 2, 3, -5, -1, -4])),2),41))",
    "io_inp": [
      -2,
      2,
      3,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(sort_des(input)),2),41))"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [-10, -10, 17]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(mul_n([-5, 4, -5],3)))),-5)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      -10,
      -10,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(mul_n(input,3)))),-5)"
  },
  {
    "input": "input : list = [2, -3, 1, -4]\noutput : list = [13, 5, 15]",
    "output": "generated_output : list = drop(sub_n(sub_n(take(mul_n([2, -3, 1, -4],-2),21),-2),-5),1)",
    "io_inp": [
      2,
      -3,
      1,
      -4
    ],
    "io_out": [
      13,
      5,
      15
    ],
    "output_masked": "generated_output : list = drop(sub_n(sub_n(take(mul_n(input,-2),21),-2),-5),1)"
  },
  {
    "input": "input : list = [1, 2, -4, 2, -3, -1]\noutput : list = [7, 8, 2, 8, 3, 5]",
    "output": "generated_output : list = add_n(sub_n([1, 2, -4, 2, -3, -1],-1),5)",
    "io_inp": [
      1,
      2,
      -4,
      2,
      -3,
      -1
    ],
    "io_out": [
      7,
      8,
      2,
      8,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),5)"
  },
  {
    "input": "input : list = [3, -5, 2, 1]\noutput : list = [3, 12, -51, 21]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(mul_n([3, -5, 2, 1],-3)),1),3),-3)",
    "io_inp": [
      3,
      -5,
      2,
      1
    ],
    "io_out": [
      3,
      12,
      -51,
      21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(mul_n(input,-3)),1),3),-3)"
  },
  {
    "input": "input : list = [-4, -4, -2, 5, 3, -5]\noutput : list = [-9, -8, -8, -6, -1, 1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(reverse([-4, -4, -2, 5, 3, -5]),1),2),-3))",
    "io_inp": [
      -4,
      -4,
      -2,
      5,
      3,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -6,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(reverse(input),1),2),-3))"
  },
  {
    "input": "input : list = [-5, -1, 3, 1, 0, 5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = take([-5, -1, 3, 1, 0, 5],2)",
    "io_inp": [
      -5,
      -1,
      3,
      1,
      0,
      5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, -9]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_asc([1, -4]),5))))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [4, -1, 1, 5, -3]\noutput : list = [-11, -1, 9, 24, 29]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(mul_n([4, -1, 1, 5, -3],5)),-4)))",
    "io_inp": [
      4,
      -1,
      1,
      5,
      -3
    ],
    "io_out": [
      -11,
      -1,
      9,
      24,
      29
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(mul_n(input,5)),-4)))"
  },
  {
    "input": "input : list = [4, 3, -4, -3, 0]\noutput : list = [1, 2, 5, 8, 9]",
    "output": "generated_output : list = take(reverse(add_n(reverse(sort_asc([4, 3, -4, -3, 0])),5)),20)",
    "io_inp": [
      4,
      3,
      -4,
      -3,
      0
    ],
    "io_out": [
      1,
      2,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(sort_asc(input)),5)),20)"
  },
  {
    "input": "input : list = [-4, -1, 1]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = reverse([-4, -1, 1])",
    "io_inp": [
      -4,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3, -3, 1]\noutput : list = [12, -12, 4]",
    "output": "generated_output : list = mul_n(drop([-1, 3, -3, 1],1),4)",
    "io_inp": [
      -1,
      3,
      -3,
      1
    ],
    "io_out": [
      12,
      -12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [1, -3, 3, 0, 2, -1]\noutput : list = [-5, -3, -2, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(add_n(sort_des([1, -3, 3, 0, 2, -1]),-2))))",
    "io_inp": [
      1,
      -3,
      3,
      0,
      2,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sub_n([0, 4],1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, -3, -2, -1]\noutput : list = [-3, -4, -5, 0]",
    "output": "generated_output : list = reverse(sub_n([2, -3, -2, -1],2))",
    "io_inp": [
      2,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [-2, 4, 4, 2]\noutput : list = [1, 7, 7, 5]",
    "output": "generated_output : list = add_n([-2, 4, 4, 2],3)",
    "io_inp": [
      -2,
      4,
      4,
      2
    ],
    "io_out": [
      1,
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, 5, 2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sort_des(take([-3, 5, 2],1)))",
    "io_inp": [
      -3,
      5,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse([-3, -1]))))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [1, 0, -2, -4, -3, -3]\noutput : list = [-5, 0]",
    "output": "generated_output : list = mul_n(take([1, 0, -2, -4, -3, -3],2),-5)",
    "io_inp": [
      1,
      0,
      -2,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-5)"
  },
  {
    "input": "input : list = [1, 0, 1, 1]\noutput : list = [4, 4, 4, -4]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(sort_asc([1, 0, 1, 1]),-2),-4),-4))",
    "io_inp": [
      1,
      0,
      1,
      1
    ],
    "io_out": [
      4,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(sort_asc(input),-2),-4),-4))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-15, -7]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(sort_asc([-1, -3]),-5)),-4),-1)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -15,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(sort_asc(input),-5)),-4),-1)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-5, -3, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, 1, -3]))",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 1, 0, -4, -4]\noutput : list = [5, 1, 0, -4, -4]",
    "output": "generated_output : list = sort_des([5, 1, 0, -4, -4])",
    "io_inp": [
      5,
      1,
      0,
      -4,
      -4
    ],
    "io_out": [
      5,
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, 1]))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 3, -1, -4, -3, 0]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(drop([-1, 3, -1, -4, -3, 0],3)),1),21),5)",
    "io_inp": [
      -1,
      3,
      -1,
      -4,
      -3,
      0
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(drop(input,3)),1),21),5)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(mul_n([1, -1],-3))),31))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(mul_n(input,-3))),31))"
  },
  {
    "input": "input : list = [1, -2, 2, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = drop(reverse(reverse([1, -2, 2, 0, -1])),3)",
    "io_inp": [
      1,
      -2,
      2,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(reverse(reverse(input)),3)"
  },
  {
    "input": "input : list = [2, 4, 4, -5, 1, 4]\noutput : list = [0, 6, 7, 9, 9, 9]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(sort_asc([2, 4, 4, -5, 1, 4]),10))),-5)",
    "io_inp": [
      2,
      4,
      4,
      -5,
      1,
      4
    ],
    "io_out": [
      0,
      6,
      7,
      9,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(sort_asc(input),10))),-5)"
  },
  {
    "input": "input : list = [5, -4, 4, -2, -4, 0]\noutput : list = [7, 6, 2, 0, -2, -2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(sort_des([5, -4, 4, -2, -4, 0]),7),-1)),-1)",
    "io_inp": [
      5,
      -4,
      4,
      -2,
      -4,
      0
    ],
    "io_out": [
      7,
      6,
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(sort_des(input),7),-1)),-1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [15, 5]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(reverse([3, 1])),-4)),-5)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(reverse(input)),-4)),-5)"
  },
  {
    "input": "input : list = [-1, 0, 5, -4]\noutput : list = [-5, -2, -1, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n([-1, 0, 5, -4],1)))",
    "io_inp": [
      -1,
      0,
      5,
      -4
    ],
    "io_out": [
      -5,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-5, -3, -4, -5]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take([-5, -3, -4, -5],2)),2))",
    "io_inp": [
      -5,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(input,2)),2))"
  },
  {
    "input": "input : list = [-2, -5, -1, -5, -3, 4]\noutput : list = [-13, -6]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(drop([-2, -5, -1, -5, -3, 4],4),5),34),-2),-3)",
    "io_inp": [
      -2,
      -5,
      -1,
      -5,
      -3,
      4
    ],
    "io_out": [
      -13,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(drop(input,4),5),34),-2),-3)"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [-2, 4, 6]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(add_n([-1, 3, 0],3),5),-2),30))",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(add_n(input,3),5),-2),30))"
  },
  {
    "input": "input : list = [-1, -2, 1, 4, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(take([-1, -2, 1, 4, -2],2),-3),23)))",
    "io_inp": [
      -1,
      -2,
      1,
      4,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(take(input,2),-3),23)))"
  },
  {
    "input": "input : list = [0, 2, -3, 1]\noutput : list = [5, 8, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(add_n([0, 2, -3, 1],4),14),-4)))",
    "io_inp": [
      0,
      2,
      -3,
      1
    ],
    "io_out": [
      5,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(add_n(input,4),14),-4)))"
  },
  {
    "input": "input : list = [-3, 1, 4, 4]\noutput : list = [-20, -20, -8, 8]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(sort_asc([-3, 1, 4, 4])),1),37),-4)",
    "io_inp": [
      -3,
      1,
      4,
      4
    ],
    "io_out": [
      -20,
      -20,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(sort_asc(input)),1),37),-4)"
  },
  {
    "input": "input : list = [-5, 2, -1, 0, -2]\noutput : list = [11, 6, 1]",
    "output": "generated_output : list = add_n(sort_des(mul_n(drop([-5, 2, -1, 0, -2],2),-5)),1)",
    "io_inp": [
      -5,
      2,
      -1,
      0,
      -2
    ],
    "io_out": [
      11,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(drop(input,2),-5)),1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_asc([4, 4]),-2)),-4),-2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_asc(input),-2)),-4),-2)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(mul_n([-2, -5],1)),-1)))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(mul_n(input,1)),-1)))"
  },
  {
    "input": "input : list = [-3, 2, -4, 0, 2]\noutput : list = [9, 8, 5, 3, 3]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(sort_asc([-3, 2, -4, 0, 2]),-1),-1),30),-4)",
    "io_inp": [
      -3,
      2,
      -4,
      0,
      2
    ],
    "io_out": [
      9,
      8,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(sort_asc(input),-1),-1),30),-4)"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(sort_des([-1, 3, 3]),1))),1)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(sort_des(input),1))),1)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(add_n([-3, 3],-2))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [1, 5]",
    "output": "generated_output : list = mul_n(reverse(sub_n([0, 4],5)),-1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,5)),-1)"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [-20, -8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n([-5, 0, 3],2)),-4))",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      -20,
      -8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(input,2)),-4))"
  },
  {
    "input": "input : list = [2, -4, 3, 4]\noutput : list = [42, -6, -14, -22]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(mul_n([2, -4, 3, 4],-4)),5),9),2)",
    "io_inp": [
      2,
      -4,
      3,
      4
    ],
    "io_out": [
      42,
      -6,
      -14,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(mul_n(input,-4)),5),9),2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(sort_des([1, 2]),2)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-1, -2, 0, -2]\noutput : list = [22, 22, 17, 12]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(add_n([-1, -2, 0, -2],-3),-5))),3)",
    "io_inp": [
      -1,
      -2,
      0,
      -2
    ],
    "io_out": [
      22,
      22,
      17,
      12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(add_n(input,-3),-5))),3)"
  },
  {
    "input": "input : list = [4, -3, -2, -3]\noutput : list = [-8, -8, -7, -1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(reverse([4, -3, -2, -3])),1)),5)",
    "io_inp": [
      4,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(reverse(input)),1)),5)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse([2, -1]),-1))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des([-2, 4])",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_asc([4, 1]))),-3),-3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_asc(input))),-3),-3)"
  },
  {
    "input": "input : list = [-3, 4, -5, -1]\noutput : list = [0, 5, 7, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(mul_n([-3, 4, -5, -1],-1)))),4)",
    "io_inp": [
      -3,
      4,
      -5,
      -1
    ],
    "io_out": [
      0,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(mul_n(input,-1)))),4)"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [-3, 0, 5]",
    "output": "generated_output : list = reverse(sort_des([-3, 0, 5]))",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -5, 1, -2, 1, 3]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(take(take([-2, -5, 1, -2, 1, 3],2),2))",
    "io_inp": [
      -2,
      -5,
      1,
      -2,
      1,
      3
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,2),2))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-4, 0]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(add_n([1, -3],2),-3))),22)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(add_n(input,2),-3))),22)"
  },
  {
    "input": "input : list = [4, 4, -4, -1, -4, 0]\noutput : list = [6, 6, 2, 1, -2, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_asc([4, 4, -4, -1, -4, 0])))),2)",
    "io_inp": [
      4,
      4,
      -4,
      -1,
      -4,
      0
    ],
    "io_out": [
      6,
      6,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_des([-4, -2])))),2)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [5, 2, 4, -2, 0]\noutput : list = [-4, 0, -12, -8, -14]",
    "output": "generated_output : list = add_n(mul_n(reverse([5, 2, 4, -2, 0]),-2),-4)",
    "io_inp": [
      5,
      2,
      4,
      -2,
      0
    ],
    "io_out": [
      -4,
      0,
      -12,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),-2),-4)"
  },
  {
    "input": "input : list = [-1, 0, -2, -2]\noutput : list = [-4, -4, -3, -2]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(sort_asc([-1, 0, -2, -2]),19)),2))",
    "io_inp": [
      -1,
      0,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(sort_asc(input),19)),2))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [12, -8]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(sort_asc([-3, 2]))),2),-2)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(sort_asc(input))),2),-2)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [1, -5]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n([-2, 4],-5),-2)),5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(input,-5),-2)),5)"
  },
  {
    "input": "input : list = [-2, 0, 4, 5]\noutput : list = [8, 7, 3, 1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(add_n([-2, 0, 4, 5],1),14),-2)))",
    "io_inp": [
      -2,
      0,
      4,
      5
    ],
    "io_out": [
      8,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(add_n(input,1),14),-2)))"
  },
  {
    "input": "input : list = [4, 5, 2, -4]\noutput : list = [12, 10, 6, -6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(sort_asc([4, 5, 2, -4]),3)),4),2)",
    "io_inp": [
      4,
      5,
      2,
      -4
    ],
    "io_out": [
      12,
      10,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(sort_asc(input),3)),4),2)"
  },
  {
    "input": "input : list = [4, 3, 0, 3, -5, 2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(take([4, 3, 0, 3, -5, 2],1),4),-4),5),-2)",
    "io_inp": [
      4,
      3,
      0,
      3,
      -5,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(take(input,1),4),-4),5),-2)"
  },
  {
    "input": "input : list = [1, 5, 1, 0, 2, 0]\noutput : list = [15, 15, 12, 9]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(drop([1, 5, 1, 0, 2, 0],2),-4),1),-3))",
    "io_inp": [
      1,
      5,
      1,
      0,
      2,
      0
    ],
    "io_out": [
      15,
      15,
      12,
      9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(drop(input,2),-4),1),-3))"
  },
  {
    "input": "input : list = [0, 3, -4, 3, -4]\noutput : list = [14, 14, 5, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(mul_n([0, 3, -4, 3, -4],3)))),-5)",
    "io_inp": [
      0,
      3,
      -4,
      3,
      -4
    ],
    "io_out": [
      14,
      14,
      5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(mul_n(input,3)))),-5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [0, -1]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(sub_n([2, 3],3),1))))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(sub_n(input,3),1))))"
  },
  {
    "input": "input : list = [-3, -3, 1, -1]\noutput : list = [-4, -6, -8, -8]",
    "output": "generated_output : list = sort_des(add_n([-3, -3, 1, -1],-5))",
    "io_inp": [
      -3,
      -3,
      1,
      -1
    ],
    "io_out": [
      -4,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [0, 1, -4, 5, -5]\noutput : list = [-5, -4, 0, 1, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(sort_asc([0, 1, -4, 5, -5])),20)))",
    "io_inp": [
      0,
      1,
      -4,
      5,
      -5
    ],
    "io_out": [
      -5,
      -4,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(sort_asc(input)),20)))"
  },
  {
    "input": "input : list = [-5, -3, 2, -5, 4]\noutput : list = [4, 2, -3, -5, -5]",
    "output": "generated_output : list = sub_n(take(take(sub_n(sort_des([-5, -3, 2, -5, 4]),2),14),26),-2)",
    "io_inp": [
      -5,
      -3,
      2,
      -5,
      4
    ],
    "io_out": [
      4,
      2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(sort_des(input),2),14),26),-2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([2, -2]),-1),-2)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),-1),-2)"
  },
  {
    "input": "input : list = [1, 3, -5, -3]\noutput : list = [10]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(drop([1, 3, -5, -3],1),-2))),1)",
    "io_inp": [
      1,
      3,
      -5,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(drop(input,1),-2))),1)"
  },
  {
    "input": "input : list = [5, 4, -5, -1, -2]\noutput : list = [0, 4, 3]",
    "output": "generated_output : list = add_n(drop([5, 4, -5, -1, -2],2),5)",
    "io_inp": [
      5,
      4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      0,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [4, -2, 4, 2]\noutput : list = [-2, 2, 4, 4]",
    "output": "generated_output : list = take(reverse(sort_des([4, -2, 4, 2])),30)",
    "io_inp": [
      4,
      -2,
      4,
      2
    ],
    "io_out": [
      -2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),30)"
  },
  {
    "input": "input : list = [2, -3, 5, 2]\noutput : list = [6, 3, 3, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(add_n([2, -3, 5, 2],1)))))",
    "io_inp": [
      2,
      -3,
      5,
      2
    ],
    "io_out": [
      6,
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(add_n(input,1)))))"
  },
  {
    "input": "input : list = [4, 2, 3, 2, -1, 3]\noutput : list = [-1, 2, 2, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des([4, 2, 3, 2, -1, 3]),8))",
    "io_inp": [
      4,
      2,
      3,
      2,
      -1,
      3
    ],
    "io_out": [
      -1,
      2,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),8))"
  },
  {
    "input": "input : list = [4, 0, 2]\noutput : list = [14]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(take([4, 0, 2],1),6),-5)),5)",
    "io_inp": [
      4,
      0,
      2
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(take(input,1),6),-5)),5)"
  },
  {
    "input": "input : list = [-3, 0, 0, 3, 0, 2]\noutput : list = [-7, -4, -4, -4, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([-3, 0, 0, 3, 0, 2]),-4))",
    "io_inp": [
      -3,
      0,
      0,
      3,
      0,
      2
    ],
    "io_out": [
      -7,
      -4,
      -4,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [4, 1, 1, 0, -4, 4]\noutput : list = [-16, 0, 4, 4, 16, 16]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(reverse([4, 1, 1, 0, -4, 4])),4),42),16)",
    "io_inp": [
      4,
      1,
      1,
      0,
      -4,
      4
    ],
    "io_out": [
      -16,
      0,
      4,
      4,
      16,
      16
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(reverse(input)),4),42),16)"
  },
  {
    "input": "input : list = [2, -5, -3, -1]\noutput : list = [20, 12, 4, -8]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sort_asc([2, -5, -3, -1]),16)),-4))",
    "io_inp": [
      2,
      -5,
      -3,
      -1
    ],
    "io_out": [
      20,
      12,
      4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sort_asc(input),16)),-4))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-7, -6]",
    "output": "generated_output : list = add_n([-2, -1],-5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, -5, 2, -3, -5, -2]\noutput : list = [3, 1, -3, -4, -6, -6]",
    "output": "generated_output : list = take(add_n(sub_n(take(sort_des([4, -5, 2, -3, -5, -2]),14),-2),-3),58)",
    "io_inp": [
      4,
      -5,
      2,
      -3,
      -5,
      -2
    ],
    "io_out": [
      3,
      1,
      -3,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(take(sort_des(input),14),-2),-3),58)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [20, 40]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(sub_n([1, 0],-2)),-5),5),-4)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      20,
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(sub_n(input,-2)),-5),5),-4)"
  },
  {
    "input": "input : list = [5, -1, -2, -3, 2, 3]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(take([5, -1, -2, -3, 2, 3],1)),-3),1),2)",
    "io_inp": [
      5,
      -1,
      -2,
      -3,
      2,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(take(input,1)),-3),1),2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(drop(add_n([4, -5],-3),1))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(input,-3),1))"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [81, 51, -69]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n([5, 3, -5],1)),5),-3),3)",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      81,
      51,
      -69
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n(input,1)),5),-3),3)"
  },
  {
    "input": "input : list = [0, 3, -5, 0, 2]\noutput : list = [4, -16]",
    "output": "generated_output : list = drop(sort_des(sort_des(mul_n(sub_n([0, 3, -5, 0, 2],-1),4))),3)",
    "io_inp": [
      0,
      3,
      -5,
      0,
      2
    ],
    "io_out": [
      4,
      -16
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(mul_n(sub_n(input,-1),4))),3)"
  },
  {
    "input": "input : list = [4, 3, -5, 1, 3]\noutput : list = [-5, 25, 35, 35, 40]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse(sort_asc([4, 3, -5, 1, 3]))),4),5)",
    "io_inp": [
      4,
      3,
      -5,
      1,
      3
    ],
    "io_out": [
      -5,
      25,
      35,
      35,
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(sort_asc(input))),4),5)"
  },
  {
    "input": "input : list = [4, -3, 0, -1, 5]\noutput : list = [5, 4, 0, -1, -3]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(add_n([4, -3, 0, -1, 5],-1)),1)),-1)",
    "io_inp": [
      4,
      -3,
      0,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(add_n(input,-1)),1)),-1)"
  },
  {
    "input": "input : list = [3, 3, 2, -4]\noutput : list = [3, 9, 10, 10]",
    "output": "generated_output : list = reverse(add_n(take(take(add_n([3, 3, 2, -4],2),17),29),5))",
    "io_inp": [
      3,
      3,
      2,
      -4
    ],
    "io_out": [
      3,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(add_n(input,2),17),29),5))"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [-1, -3, -8]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(reverse([4, -3, 2])),-5)))",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      -1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [-2, 5, 1, 1]\noutput : list = [1, 1, 5, -2]",
    "output": "generated_output : list = add_n(reverse(add_n([-2, 5, 1, 1],-3)),3)",
    "io_inp": [
      -2,
      5,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,-3)),3)"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [-8, -8, -23]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sub_n([-3, 2, -3],-5))),-3),2)",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(sub_n(input,-5))),-3),2)"
  },
  {
    "input": "input : list = [-4, -2, -5, 5, -5, -3]\noutput : list = [18, 18, 15, 12, 9, -12]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sort_des([-4, -2, -5, 5, -5, -3]),-1),3)),-3)",
    "io_inp": [
      -4,
      -2,
      -5,
      5,
      -5,
      -3
    ],
    "io_out": [
      18,
      18,
      15,
      12,
      9,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sort_des(input),-1),3)),-3)"
  },
  {
    "input": "input : list = [-4, -1, -3, 0]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take([-4, -1, -3, 0],2)",
    "io_inp": [
      -4,
      -1,
      -3,
      0
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 2, 1, 2]\noutput : list = [-1, 14, 11, 14]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(mul_n([-3, 2, 1, 2],3),-5),-1),1),3)",
    "io_inp": [
      -3,
      2,
      1,
      2
    ],
    "io_out": [
      -1,
      14,
      11,
      14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(mul_n(input,3),-5),-1),1),3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = mul_n(take(take(take(sort_asc([-3, -1]),13),7),7),2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(sort_asc(input),13),7),7),2)"
  },
  {
    "input": "input : list = [-3, 0, -4, 0, 4]\noutput : list = [-4, -3, 0, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([-3, 0, -4, 0, 4])))",
    "io_inp": [
      -3,
      0,
      -4,
      0,
      4
    ],
    "io_out": [
      -4,
      -3,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, -1, 0, 2, -4]\noutput : list = [2, 0, -1, -1, -4]",
    "output": "generated_output : list = sort_des(reverse([-1, -1, 0, 2, -4]))",
    "io_inp": [
      -1,
      -1,
      0,
      2,
      -4
    ],
    "io_out": [
      2,
      0,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 2, 2, -5]\noutput : list = [-8, -1, -1, -4]",
    "output": "generated_output : list = take(add_n(add_n(take(reverse([-1, 2, 2, -5]),10),-1),-2),48)",
    "io_inp": [
      -1,
      2,
      2,
      -5
    ],
    "io_out": [
      -8,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(reverse(input),10),-1),-2),48)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, 1, 0, -4, -4]\noutput : list = [2, 0]",
    "output": "generated_output : list = take([2, 0, 1, 0, -4, -4],2)",
    "io_inp": [
      2,
      0,
      1,
      0,
      -4,
      -4
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(drop([5, 2, 5],1)),16)))",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(drop(input,1)),16)))"
  },
  {
    "input": "input : list = [-3, 3, 4, 1, 3]\noutput : list = [8, -4, -10, -10, -13]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(mul_n([-3, 3, 4, 1, 3],-3),-2),-2)),1)",
    "io_inp": [
      -3,
      3,
      4,
      1,
      3
    ],
    "io_out": [
      8,
      -4,
      -10,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(mul_n(input,-3),-2),-2)),1)"
  },
  {
    "input": "input : list = [2, 5, 1, 2, 5, -3]\noutput : list = [0, 4, 5, 8, 8]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(drop([2, 5, 1, 2, 5, -3],1)),8),3))",
    "io_inp": [
      2,
      5,
      1,
      2,
      5,
      -3
    ],
    "io_out": [
      0,
      4,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(drop(input,1)),8),3))"
  },
  {
    "input": "input : list = [-4, -2, -5, -1]\noutput : list = [-18, -15, -9, -6]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(sort_des([-4, -2, -5, -1]),3),-3)))",
    "io_inp": [
      -4,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -18,
      -15,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(sort_des(input),3),-3)))"
  },
  {
    "input": "input : list = [0, 4, -4, 5, 1, -2]\noutput : list = [-5, -3, -1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n([0, 4, -4, 5, 1, -2],1))",
    "io_inp": [
      0,
      4,
      -4,
      5,
      1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-2, 1, 3, 4]\noutput : list = [5, 8, 10, 11]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sort_des([-2, 1, 3, 4]),1)),2),4)",
    "io_inp": [
      -2,
      1,
      3,
      4
    ],
    "io_out": [
      5,
      8,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sort_des(input),1)),2),4)"
  },
  {
    "input": "input : list = [0, 1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(drop([0, 1, 2],1))",
    "io_inp": [
      0,
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 5, -4, -5, 4]\noutput : list = [40, 36, 4, 0, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(sort_asc([-5, 5, -4, -5, 4]),-5))),4)",
    "io_inp": [
      -5,
      5,
      -4,
      -5,
      4
    ],
    "io_out": [
      40,
      36,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(sort_asc(input),-5))),4)"
  },
  {
    "input": "input : list = [1, -1, -4, 4, 1, 1]\noutput : list = [48, 80, 128, 0, 48, 48]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(add_n([1, -1, -4, 4, 1, 1],-4),4),-4)))",
    "io_inp": [
      1,
      -1,
      -4,
      4,
      1,
      1
    ],
    "io_out": [
      48,
      80,
      128,
      0,
      48,
      48
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(add_n(input,-4),4),-4)))"
  },
  {
    "input": "input : list = [1, 0, 2, 1, -4]\noutput : list = [10]",
    "output": "generated_output : list = drop(add_n(sub_n(sort_asc(mul_n([1, 0, 2, 1, -4],-1)),-1),5),4)",
    "io_inp": [
      1,
      0,
      2,
      1,
      -4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(sort_asc(mul_n(input,-1)),-1),5),4)"
  },
  {
    "input": "input : list = [3, -1, -1, 0]\noutput : list = [3, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(take([3, -1, -1, 0],2),-1))),5)",
    "io_inp": [
      3,
      -1,
      -1,
      0
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(take(input,2),-1))),5)"
  },
  {
    "input": "input : list = [2, 4, -2, 3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 4, -2, 3],1)",
    "io_inp": [
      2,
      4,
      -2,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 1, 1, 4]\noutput : list = [-5, -8, -8, -12]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(sort_des([-3, 1, 1, 4]),5),-1),-2),-1)",
    "io_inp": [
      -3,
      1,
      1,
      4
    ],
    "io_out": [
      -5,
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(sort_des(input),5),-1),-2),-1)"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [-1, 2, -7]",
    "output": "generated_output : list = take(add_n([1, 4, -5],-2),12)",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      -1,
      2,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),12)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [15, -6]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(mul_n([-5, 2],3))),-1))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      15,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(mul_n(input,3))),-1))"
  },
  {
    "input": "input : list = [-3, 4, 1, 5, -1]\noutput : list = [7, 6, 3, 1]",
    "output": "generated_output : list = take(sub_n(sort_des(take(drop([-3, 4, 1, 5, -1],1),11)),-2),7)",
    "io_inp": [
      -3,
      4,
      1,
      5,
      -1
    ],
    "io_out": [
      7,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(drop(input,1),11)),-2),7)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(mul_n([0, 2, -2],1),7))))",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(mul_n(input,1),7))))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = reverse(add_n(reverse([-1, 2]),-2))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [-4, -3, 4]",
    "output": "generated_output : list = sort_asc(reverse([-4, -3, 4]))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [4, -4]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_des([1, -1])))),-4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [4, 3, 1, -1, 0]\noutput : list = [9, 6, 12, 18]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(drop([4, 3, 1, -1, 0],1),-3),3)),11)",
    "io_inp": [
      4,
      3,
      1,
      -1,
      0
    ],
    "io_out": [
      9,
      6,
      12,
      18
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(drop(input,1),-3),3)),11)"
  },
  {
    "input": "input : list = [-4, 5, -2, 2, 1]\noutput : list = [100, -80]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(take([-4, 5, -2, 2, 1],2)),5)),4)",
    "io_inp": [
      -4,
      5,
      -2,
      2,
      1
    ],
    "io_out": [
      100,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(take(input,2)),5)),4)"
  },
  {
    "input": "input : list = [0, 0, -2]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = sub_n([0, 0, -2],-1)",
    "io_inp": [
      0,
      0,
      -2
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, 5, 2, 5, -5]\noutput : list = [-5, 5, 2, 5, 0]",
    "output": "generated_output : list = reverse([0, 5, 2, 5, -5])",
    "io_inp": [
      0,
      5,
      2,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, 0, 1, -3]\noutput : list = [12, 4, 0, -4, -16]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(reverse([4, -1, 0, 1, -3])),14)),-4)",
    "io_inp": [
      4,
      -1,
      0,
      1,
      -3
    ],
    "io_out": [
      12,
      4,
      0,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(reverse(input)),14)),-4)"
  },
  {
    "input": "input : list = [2, 5, -1, -5]\noutput : list = [6, 2, -4, -1]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(reverse([2, 5, -1, -5])),-1),1))",
    "io_inp": [
      2,
      5,
      -1,
      -5
    ],
    "io_out": [
      6,
      2,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(reverse(input)),-1),1))"
  },
  {
    "input": "input : list = [2, -4, 1, 2, -4]\noutput : list = [1, 6, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(take([2, -4, 1, 2, -4],3),21))),5)",
    "io_inp": [
      2,
      -4,
      1,
      2,
      -4
    ],
    "io_out": [
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(take(input,3),21))),5)"
  },
  {
    "input": "input : list = [-4, -4, -3, -3, 1, -3]\noutput : list = [-22, 78, 78, 78, 103, 103]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(mul_n([-4, -4, -3, -3, 1, -3],-5))),5),-3)",
    "io_inp": [
      -4,
      -4,
      -3,
      -3,
      1,
      -3
    ],
    "io_out": [
      -22,
      78,
      78,
      78,
      103,
      103
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(mul_n(input,-5))),5),-3)"
  },
  {
    "input": "input : list = [0, 3, 3, 0]\noutput : list = [-4, -4, -1, -1]",
    "output": "generated_output : list = add_n(sort_asc([0, 3, 3, 0]),-4)",
    "io_inp": [
      0,
      3,
      3,
      0
    ],
    "io_out": [
      -4,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [-1, 6, 6]",
    "output": "generated_output : list = take(sub_n([-2, 5, 5],-1),17)",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      -1,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),17)"
  },
  {
    "input": "input : list = [-2, -3, -2, 3, -5]\noutput : list = [-7, -6, -1, -9]",
    "output": "generated_output : list = sub_n(take(sub_n(take(drop([-2, -3, -2, 3, -5],1),16),1),7),3)",
    "io_inp": [
      -2,
      -3,
      -2,
      3,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(drop(input,1),16),1),7),3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des([-4, 0])",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [-7, -8, -11]",
    "output": "generated_output : list = sub_n(sort_des(add_n([-4, -1, 0],-2)),5)",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      -7,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-2)),5)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [32, -8]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(sort_des([2, -3]),-1),-2)),4)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      32,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(sort_des(input),-1),-2)),4)"
  },
  {
    "input": "input : list = [2, -5, 1, 4, 3]\noutput : list = [-5, 1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse([2, -5, 1, 4, 3]))",
    "io_inp": [
      2,
      -5,
      1,
      4,
      3
    ],
    "io_out": [
      -5,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, -4, 2, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sort_des(drop(sort_asc(take([-3, -4, 2, -5],2)),1)))",
    "io_inp": [
      -3,
      -4,
      2,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(sort_asc(take(input,2)),1)))"
  },
  {
    "input": "input : list = [5, -1, -2]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(take([5, -1, -2],1))),-4),1)",
    "io_inp": [
      5,
      -1,
      -2
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(take(input,1))),-4),1)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [6, 3, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n([2, 5, 1],-4)),-5)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-4)),-5)"
  },
  {
    "input": "input : list = [-3, 3, -3, -1, -4, -5]\noutput : list = [-8, -4, -2, -2, -1, 0]",
    "output": "generated_output : list = add_n(take(take(sort_asc(mul_n([-3, 3, -3, -1, -4, -5],-1)),38),30),-5)",
    "io_inp": [
      -3,
      3,
      -3,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -4,
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(mul_n(input,-1)),38),30),-5)"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(add_n([1, -1, 4],4))),3))",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(add_n(input,4))),3))"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [-9, -4, -1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(sort_des([2, -3, 5]),-5),3)),2)",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      -9,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(sort_des(input),-5),3)),2)"
  },
  {
    "input": "input : list = [1, 2, -1, 2]\noutput : list = [-1, 1, 2, 2]",
    "output": "generated_output : list = sort_asc([1, 2, -1, 2])",
    "io_inp": [
      1,
      2,
      -1,
      2
    ],
    "io_out": [
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([-5, 4])))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [0, 0, -5, -1, 3]\noutput : list = [16, 16, -4, 12, 28]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sub_n([0, 0, -5, -1, 3],-4),10)),4))",
    "io_inp": [
      0,
      0,
      -5,
      -1,
      3
    ],
    "io_out": [
      16,
      16,
      -4,
      12,
      28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sub_n(input,-4),10)),4))"
  },
  {
    "input": "input : list = [4, -4, -4, 4]\noutput : list = [1, 1, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sort_asc([4, -4, -4, 4])),-5)))",
    "io_inp": [
      4,
      -4,
      -4,
      4
    ],
    "io_out": [
      1,
      1,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-15, -6]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(sub_n([1, 4],-1)),-3)),34)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -15,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(sub_n(input,-1)),-3)),34)"
  },
  {
    "input": "input : list = [-5, -5, -3, -4]\noutput : list = [-13, -13, -11]",
    "output": "generated_output : list = reverse(add_n(sub_n(drop(reverse([-5, -5, -3, -4]),1),5),-3))",
    "io_inp": [
      -5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -13,
      -13,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(drop(reverse(input),1),5),-3))"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [1, -7, 1]",
    "output": "generated_output : list = sub_n(reverse(mul_n([3, -5, 3],1)),2)",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      1,
      -7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,1)),2)"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [-5, -4, -2]",
    "output": "generated_output : list = sort_asc([-4, -2, -5])",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, 1, 5, -1, -3]\noutput : list = [-4, -4, -3, -1, 1, 5]",
    "output": "generated_output : list = sort_asc([-4, -4, 1, 5, -1, -3])",
    "io_inp": [
      -4,
      -4,
      1,
      5,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 4, -4, 2, 1, -4]\noutput : list = [0, 9, 1, 7, 6, 1]",
    "output": "generated_output : list = take(add_n(add_n([-5, 4, -4, 2, 1, -4],1),4),9)",
    "io_inp": [
      -5,
      4,
      -4,
      2,
      1,
      -4
    ],
    "io_out": [
      0,
      9,
      1,
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,1),4),9)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(add_n([4, 4],-4),1),14),1))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(add_n(input,-4),1),14),1))"
  },
  {
    "input": "input : list = [3, -2, -3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, -3],1)",
    "io_inp": [
      3,
      -2,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 3, -1, 1, 4, -3]\noutput : list = [3, 1, -1, -4]",
    "output": "generated_output : list = take(take(sort_des(take([-4, 3, -1, 1, 4, -3],4)),6),45)",
    "io_inp": [
      -4,
      3,
      -1,
      1,
      4,
      -3
    ],
    "io_out": [
      3,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(input,4)),6),45)"
  },
  {
    "input": "input : list = [-2, -2, -2, -2, -3]\noutput : list = [-29, -21, -21, -21, -21]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(mul_n([-2, -2, -2, -2, -3],4)),2),-5))",
    "io_inp": [
      -2,
      -2,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -29,
      -21,
      -21,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(mul_n(input,4)),2),-5))"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [-1, -5, -6]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(sub_n([-4, -3, 1],3)),1)),1)",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(sub_n(input,3)),1)),1)"
  },
  {
    "input": "input : list = [5, 0, -4, -2, 5, -2]\noutput : list = [-8, -4, 1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(take([5, 0, -4, -2, 5, -2],3),13),-3)),1)",
    "io_inp": [
      5,
      0,
      -4,
      -2,
      5,
      -2
    ],
    "io_out": [
      -8,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(take(input,3),13),-3)),1)"
  },
  {
    "input": "input : list = [3, 0, 1, -5]\noutput : list = [-53, 27, 43, 75]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sub_n([3, 0, 1, -5],-2),4)),4),5)",
    "io_inp": [
      3,
      0,
      1,
      -5
    ],
    "io_out": [
      -53,
      27,
      43,
      75
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sub_n(input,-2),4)),4),5)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-1, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(add_n([-1, -4],2),2))),-1)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(add_n(input,2),2))),-1)"
  },
  {
    "input": "input : list = [3, -5, -1, -4, -4, -2]\noutput : list = [-1, -2, -4, -4]",
    "output": "generated_output : list = sort_des(drop([3, -5, -1, -4, -4, -2],2))",
    "io_inp": [
      3,
      -5,
      -1,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-4, -4, 5, -2, -2]\noutput : list = [-6, -6, 0, 0, 21]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n([-4, -4, 5, -2, -2],3),-2)),4))",
    "io_inp": [
      -4,
      -4,
      5,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      0,
      0,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n(input,3),-2)),4))"
  },
  {
    "input": "input : list = [0, -4, 2, 4, -3, 2]\noutput : list = [-11, -10, -7, -5, -5, -3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(sort_des([0, -4, 2, 4, -3, 2])),5)),2)",
    "io_inp": [
      0,
      -4,
      2,
      4,
      -3,
      2
    ],
    "io_out": [
      -11,
      -10,
      -7,
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(sort_des(input)),5)),2)"
  },
  {
    "input": "input : list = [4, -4, 0, -3, -1]\noutput : list = [-29, 19, -5]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(take([4, -4, 0, -3, -1],3),4),-2),3),5)",
    "io_inp": [
      4,
      -4,
      0,
      -3,
      -1
    ],
    "io_out": [
      -29,
      19,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(take(input,3),4),-2),3),5)"
  },
  {
    "input": "input : list = [-1, 2, -2, -3, -4, -2]\noutput : list = [15, 0, -5, -5, -10, -15]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(mul_n([-1, 2, -2, -3, -4, -2],1)),5),5))",
    "io_inp": [
      -1,
      2,
      -2,
      -3,
      -4,
      -2
    ],
    "io_out": [
      15,
      0,
      -5,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(mul_n(input,1)),5),5))"
  },
  {
    "input": "input : list = [3, 0, 4, -5, -2]\noutput : list = [4, 3, 0, -2, -5]",
    "output": "generated_output : list = sort_des([3, 0, 4, -5, -2])",
    "io_inp": [
      3,
      0,
      4,
      -5,
      -2
    ],
    "io_out": [
      4,
      3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, 5, 4, -5, -2]\noutput : list = [17, 11, -13, -10, 17, 8]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse([-5, -3, 5, 4, -5, -2]),-3)),1),-3)",
    "io_inp": [
      -5,
      -3,
      5,
      4,
      -5,
      -2
    ],
    "io_out": [
      17,
      11,
      -13,
      -10,
      17,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse(input),-3)),1),-3)"
  },
  {
    "input": "input : list = [1, 4, -4, 2, -1, 0]\noutput : list = [1, 4, -4, 2]",
    "output": "generated_output : list = take([1, 4, -4, 2, -1, 0],4)",
    "io_inp": [
      1,
      4,
      -4,
      2,
      -1,
      0
    ],
    "io_out": [
      1,
      4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [5, 2, 5, 2, 4, 5]\noutput : list = [-8, -8, -14, -17, -17, -17]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(sort_asc([5, 2, 5, 2, 4, 5]),-3),30)),-2)",
    "io_inp": [
      5,
      2,
      5,
      2,
      4,
      5
    ],
    "io_out": [
      -8,
      -8,
      -14,
      -17,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(sort_asc(input),-3),30)),-2)"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sub_n([2, 3, 5],5),1),22)),-1)",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sub_n(input,5),1),22)),-1)"
  },
  {
    "input": "input : list = [5, 3, 1, 2, -3]\noutput : list = [-1, 3, 4, 5, 7]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(reverse([5, 3, 1, 2, -3]),2)),15))",
    "io_inp": [
      5,
      3,
      1,
      2,
      -3
    ],
    "io_out": [
      -1,
      3,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(reverse(input),2)),15))"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-15, -24, -27]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(reverse([-5, -4, -1]))),-4),3)",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -15,
      -24,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(reverse(input))),-4),3)"
  },
  {
    "input": "input : list = [0, 2, 1, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take([0, 2, 1, -2],1))",
    "io_inp": [
      0,
      2,
      1,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, -1, 4]\noutput : list = [3, 8, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n([4, -1, 4],3)),-1),-2)",
    "io_inp": [
      4,
      -1,
      4
    ],
    "io_out": [
      3,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(input,3)),-1),-2)"
  },
  {
    "input": "input : list = [4, 3, 2, 4, 2]\noutput : list = [-1, -1, -2, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sort_des([4, 3, 2, 4, 2])),5)))",
    "io_inp": [
      4,
      3,
      2,
      4,
      2
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [-60, 0, 90]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n([5, -5, -1],1),5),3))",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      -60,
      0,
      90
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(input,1),5),3))"
  },
  {
    "input": "input : list = [2, -4, -5, 3]\noutput : list = [10, 8, -4, -6]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(mul_n([2, -4, -5, 3],-2)))),48)",
    "io_inp": [
      2,
      -4,
      -5,
      3
    ],
    "io_out": [
      10,
      8,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(mul_n(input,-2)))),48)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-15, 17]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(mul_n(mul_n([-3, 5],-4),-1),-3)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -15,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(mul_n(mul_n(input,-4),-1),-3)))"
  },
  {
    "input": "input : list = [3, -4, -5, -2]\noutput : list = [-4, 1, 3, 4]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(reverse([3, -4, -5, -2])),-1),-1),52)",
    "io_inp": [
      3,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -4,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(reverse(input)),-1),-1),52)"
  },
  {
    "input": "input : list = [-2, 4, -1, -5, 1]\noutput : list = [-3, 3, -2, -6, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(reverse([-2, 4, -1, -5, 1]),13),-5)),-4)",
    "io_inp": [
      -2,
      4,
      -1,
      -5,
      1
    ],
    "io_out": [
      -3,
      3,
      -2,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(reverse(input),13),-5)),-4)"
  },
  {
    "input": "input : list = [0, 1, 1, 3]\noutput : list = [-8, -16]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(drop([0, 1, 1, 3],2)),-4)),-4)",
    "io_inp": [
      0,
      1,
      1,
      3
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(drop(input,2)),-4)),-4)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [-3, -2, -4]",
    "output": "generated_output : list = take(add_n([2, 3, 1],-5),15)",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      -3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),15)"
  },
  {
    "input": "input : list = [-5, -4, -3, -5]\noutput : list = [27, 22, 17, 27]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(mul_n([-5, -4, -3, -5],-5),4),4),-2),14)",
    "io_inp": [
      -5,
      -4,
      -3,
      -5
    ],
    "io_out": [
      27,
      22,
      17,
      27
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(mul_n(input,-5),4),4),-2),14)"
  },
  {
    "input": "input : list = [-1, -4, -5, 3, -3]\noutput : list = [1, -3, -5, -6, -7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_des([-1, -4, -5, 3, -3])),3),1))",
    "io_inp": [
      -1,
      -4,
      -5,
      3,
      -3
    ],
    "io_out": [
      1,
      -3,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_des(input)),3),1))"
  },
  {
    "input": "input : list = [2, 4, -1, -5]\noutput : list = [6, 4, 1, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(add_n([2, 4, -1, -5],-1))),1),4)",
    "io_inp": [
      2,
      4,
      -1,
      -5
    ],
    "io_out": [
      6,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(add_n(input,-1))),1),4)"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(drop([0, -5, -2],1),-1)),17))",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(drop(input,1),-1)),17))"
  },
  {
    "input": "input : list = [1, 2, 4, 5, -1]\noutput : list = [7, 6, 4, 3]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(sub_n([1, 2, 4, 5, -1],-1))),1),4)",
    "io_inp": [
      1,
      2,
      4,
      5,
      -1
    ],
    "io_out": [
      7,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(sub_n(input,-1))),1),4)"
  },
  {
    "input": "input : list = [-1, -5, 5, -2]\noutput : list = [-4, -8, 2, -5]",
    "output": "generated_output : list = sub_n(add_n([-1, -5, 5, -2],-4),-1)",
    "io_inp": [
      -1,
      -5,
      5,
      -2
    ],
    "io_out": [
      -4,
      -8,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-5, -1, -5]\noutput : list = [-1, -5, -5]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_asc([-5, -1, -5]))),5),5)",
    "io_inp": [
      -5,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_asc(input))),5),5)"
  },
  {
    "input": "input : list = [1, -3, 3, 5, 1]\noutput : list = [-81, -49, -17, -17, 47]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(mul_n([1, -3, 3, 5, 1],4),-4)),1))",
    "io_inp": [
      1,
      -3,
      3,
      5,
      1
    ],
    "io_out": [
      -81,
      -49,
      -17,
      -17,
      47
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(mul_n(input,4),-4)),1))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(add_n([-1, 4],-2))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-4, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, 1, 1]))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, -1, 1],1))",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-2, 0, 3, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(sort_asc([-2, 0, 3, 2]),1),1),1),-2)",
    "io_inp": [
      -2,
      0,
      3,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(sort_asc(input),1),1),1),-2)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n([-2, -2],-3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, -3, -2, -4, 2]\noutput : list = [0, -6, -4, -5, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse([1, -3, -2, -4, 2]),1),3),1)",
    "io_inp": [
      1,
      -3,
      -2,
      -4,
      2
    ],
    "io_out": [
      0,
      -6,
      -4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(input),1),3),1)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-8, -8]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(mul_n([1, 1],-3)),-2),-5),2)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(mul_n(input,-3)),-2),-5),2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, 1, 3, -2]\noutput : list = [1, 6, 4, 7, -2]",
    "output": "generated_output : list = reverse(add_n([-5, 4, 1, 3, -2],3))",
    "io_inp": [
      -5,
      4,
      1,
      3,
      -2
    ],
    "io_out": [
      1,
      6,
      4,
      7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([3, 2])),-2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [4, -3, 0, -2]\noutput : list = [13, 7, 16, -5]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(sub_n([4, -3, 0, -2],1),-3),-4)),25)",
    "io_inp": [
      4,
      -3,
      0,
      -2
    ],
    "io_out": [
      13,
      7,
      16,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(sub_n(input,1),-3),-4)),25)"
  },
  {
    "input": "input : list = [2, 5, -3, -1]\noutput : list = [5, 2, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc([2, 5, -3, -1]))",
    "io_inp": [
      2,
      5,
      -3,
      -1
    ],
    "io_out": [
      5,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 5, -2, -2]\noutput : list = [0, 0, 2, 7]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(add_n([0, 5, -2, -2],2)),17)))",
    "io_inp": [
      0,
      5,
      -2,
      -2
    ],
    "io_out": [
      0,
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(add_n(input,2)),17)))"
  },
  {
    "input": "input : list = [-1, 1, 2, -4]\noutput : list = [5, 10, -20]",
    "output": "generated_output : list = take(mul_n(drop([-1, 1, 2, -4],1),5),7)",
    "io_inp": [
      -1,
      1,
      2,
      -4
    ],
    "io_out": [
      5,
      10,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,1),5),7)"
  },
  {
    "input": "input : list = [-3, 2, 1, 4]\noutput : list = [-8, 8, 12, 20]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(add_n([-3, 2, 1, 4],5),-4)),4),28)",
    "io_inp": [
      -3,
      2,
      1,
      4
    ],
    "io_out": [
      -8,
      8,
      12,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(add_n(input,5),-4)),4),28)"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = sort_asc([-2, -4, -3])",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, -3, -1, -5, 5]\noutput : list = [-12, 12]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(sort_des([-1, -3, -3, -1, -5, 5]),-3),2),-4),-4)",
    "io_inp": [
      -1,
      -3,
      -3,
      -1,
      -5,
      5
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(sort_des(input),-3),2),-4),-4)"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [0, -3, -3]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(add_n([1, 1, 2],-2)),1)),3)",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(add_n(input,-2)),1)),3)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [4, -10, 10]",
    "output": "generated_output : list = mul_n([-2, 5, -5],-2)",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      4,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [-1, -1, 7]",
    "output": "generated_output : list = sub_n(add_n([-4, -4, 4],-2),-5)",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      -1,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),-5)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [12, 4]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(mul_n([-2, 0],-4),4),-1),-1),9)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(mul_n(input,-4),4),-1),-1),9)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-6, -6, -3]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_des([0, -3, -3])))),-3)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [5, -1, 3, 3, 0]\noutput : list = [-1, 0, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_des([5, -1, 3, 3, 0])))))",
    "io_inp": [
      5,
      -1,
      3,
      3,
      0
    ],
    "io_out": [
      -1,
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 3, -4, 1]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 3, -4, 1],1)",
    "io_inp": [
      -2,
      3,
      -4,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 5, 2, -2, 5, 4]\noutput : list = [9, 5]",
    "output": "generated_output : list = add_n(reverse(take([1, 5, 2, -2, 5, 4],2)),4)",
    "io_inp": [
      1,
      5,
      2,
      -2,
      5,
      4
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,2)),4)"
  },
  {
    "input": "input : list = [1, 4, 0, 3, 4, -5]\noutput : list = [-10, -14, 22]",
    "output": "generated_output : list = add_n(sub_n(mul_n(drop([1, 4, 0, 3, 4, -5],3),-4),2),4)",
    "io_inp": [
      1,
      4,
      0,
      3,
      4,
      -5
    ],
    "io_out": [
      -10,
      -14,
      22
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(drop(input,3),-4),2),4)"
  },
  {
    "input": "input : list = [5, -3, 1]\noutput : list = [-25, 15, -5]",
    "output": "generated_output : list = mul_n([5, -3, 1],-5)",
    "io_inp": [
      5,
      -3,
      1
    ],
    "io_out": [
      -25,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 3, 2, 3, 5, -3]\noutput : list = [-3, -3, 2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-3, 3, 2, 3, 5, -3],4),4))",
    "io_inp": [
      -3,
      3,
      2,
      3,
      5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,4),4))"
  },
  {
    "input": "input : list = [-5, 0, 0, 2, -3, -5]\noutput : list = [-4, 1, 1, 3, -2, -4]",
    "output": "generated_output : list = reverse(take(add_n(reverse([-5, 0, 0, 2, -3, -5]),1),37))",
    "io_inp": [
      -5,
      0,
      0,
      2,
      -3,
      -5
    ],
    "io_out": [
      -4,
      1,
      1,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(input),1),37))"
  },
  {
    "input": "input : list = [-2, 3, 4, 4, -1]\noutput : list = [2, 7, 8, 8, 3]",
    "output": "generated_output : list = add_n([-2, 3, 4, 4, -1],4)",
    "io_inp": [
      -2,
      3,
      4,
      4,
      -1
    ],
    "io_out": [
      2,
      7,
      8,
      8,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, -1, 1, 5, -3]\noutput : list = [1, -3, -1, 3, -5]",
    "output": "generated_output : list = sub_n([3, -1, 1, 5, -3],2)",
    "io_inp": [
      3,
      -1,
      1,
      5,
      -3
    ],
    "io_out": [
      1,
      -3,
      -1,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, -4, 4]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -4, 4],1)",
    "io_inp": [
      1,
      -4,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(drop([3, -5, -5],1)))",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [3, -1, 2, 2, 2, 2]\noutput : list = [4, -8, -8, -8, -8, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([3, -1, 2, 2, 2, 2],-4)))",
    "io_inp": [
      3,
      -1,
      2,
      2,
      2,
      2
    ],
    "io_out": [
      4,
      -8,
      -8,
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [4]",
    "output": "generated_output : list = reverse(mul_n(take([2, 3, 2],1),2))",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,1),2))"
  },
  {
    "input": "input : list = [-3, 1, 2, 1, -1, 0]\noutput : list = [-3, -1, 0, 1, 1, 2]",
    "output": "generated_output : list = sort_asc([-3, 1, 2, 1, -1, 0])",
    "io_inp": [
      -3,
      1,
      2,
      1,
      -1,
      0
    ],
    "io_out": [
      -3,
      -1,
      0,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse([5, 1]))),-4)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(input))),-4)"
  },
  {
    "input": "input : list = [-3, -1, 5, -1, -5]\noutput : list = [9, 3, 3, -1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(drop([-3, -1, 5, -1, -5],1)),4)))",
    "io_inp": [
      -3,
      -1,
      5,
      -1,
      -5
    ],
    "io_out": [
      9,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(drop(input,1)),4)))"
  },
  {
    "input": "input : list = [-2, 5, -3, -2, 4, -3]\noutput : list = [-3, -3, -4, -4, -10, -11]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(sort_asc([-2, 5, -3, -2, 4, -3]),2),-1),42),4)",
    "io_inp": [
      -2,
      5,
      -3,
      -2,
      4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -4,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(sort_asc(input),2),-1),42),4)"
  },
  {
    "input": "input : list = [-1, 1, 1, 3, 0]\noutput : list = [0, 3, 1, 1, -1]",
    "output": "generated_output : list = reverse([-1, 1, 1, 3, 0])",
    "io_inp": [
      -1,
      1,
      1,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, 5, 3, -1, -4]\noutput : list = [25, 20, 15, -5, -15]",
    "output": "generated_output : list = sort_des(take(mul_n([4, -3, 5, 3, -1, -4],5),5))",
    "io_inp": [
      4,
      -3,
      5,
      3,
      -1,
      -4
    ],
    "io_out": [
      25,
      20,
      15,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,5),5))"
  },
  {
    "input": "input : list = [-5, 0, 4]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = sort_des(take(sort_des(take(sort_des([-5, 0, 4]),16)),21))",
    "io_inp": [
      -5,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(sort_des(input),16)),21))"
  },
  {
    "input": "input : list = [4, -4, 1]\noutput : list = [-12, -2, -18]",
    "output": "generated_output : list = mul_n(reverse(sub_n([4, -4, 1],-5)),-2)",
    "io_inp": [
      4,
      -4,
      1
    ],
    "io_out": [
      -12,
      -2,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-5)),-2)"
  },
  {
    "input": "input : list = [-5, -3, -2, 3, 0]\noutput : list = [-4, -7, -9, -10, -12]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc(sub_n([-5, -3, -2, 3, 0],3))),-4))",
    "io_inp": [
      -5,
      -3,
      -2,
      3,
      0
    ],
    "io_out": [
      -4,
      -7,
      -9,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(sub_n(input,3))),-4))"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [9, -15, 0]",
    "output": "generated_output : list = mul_n([-3, 5, 0],-3)",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      9,
      -15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [10, -4, -10]",
    "output": "generated_output : list = take(mul_n(sort_des([-2, -5, 5]),2),4)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      10,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),2),4)"
  },
  {
    "input": "input : list = [-3, 0, -3, 3, -3]\noutput : list = [-6, 0, 6, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(mul_n([-3, 0, -3, 3, -3],-1),26),2)))",
    "io_inp": [
      -3,
      0,
      -3,
      3,
      -3
    ],
    "io_out": [
      -6,
      0,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(mul_n(input,-1),26),2)))"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [9, 2, 7]",
    "output": "generated_output : list = add_n([4, -3, 2],5)",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      9,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [2, 1, 4, -2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take(take(reverse([2, 1, 4, -2, -3]),3),2)",
    "io_inp": [
      2,
      1,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),3),2)"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 2, -3],1)",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [-12, 4, -16]",
    "output": "generated_output : list = reverse(take(reverse(reverse(mul_n([4, -1, 3],-4))),3))",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      -12,
      4,
      -16
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(mul_n(input,-4))),3))"
  },
  {
    "input": "input : list = [-3, -4, 3, 0, 3]\noutput : list = [-16, -12, 0, 12, 12]",
    "output": "generated_output : list = sort_asc(mul_n([-3, -4, 3, 0, 3],4))",
    "io_inp": [
      -3,
      -4,
      3,
      0,
      3
    ],
    "io_out": [
      -16,
      -12,
      0,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [-1, -2, -5]\noutput : list = [40, 16, 8]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-1, -2, -5],4)),-2)",
    "io_inp": [
      -1,
      -2,
      -5
    ],
    "io_out": [
      40,
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,4)),-2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, 20]",
    "output": "generated_output : list = mul_n([0, -4],-5)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [12, 11]",
    "output": "generated_output : list = add_n(take(take(add_n(add_n([4, 3],5),2),18),12),1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      12,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(add_n(input,5),2),18),12),1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(mul_n([3, 4],-1),1))))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(mul_n(input,-1),1))))"
  },
  {
    "input": "input : list = [0, 2, 2, -1, -1]\noutput : list = [-2, -2, 1, 1, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n([0, 2, 2, -1, -1],2)),-1)",
    "io_inp": [
      0,
      2,
      2,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,2)),-1)"
  },
  {
    "input": "input : list = [5, 0, 5, 4]\noutput : list = [0, 5, 4]",
    "output": "generated_output : list = drop([5, 0, 5, 4],1)",
    "io_inp": [
      5,
      0,
      5,
      4
    ],
    "io_out": [
      0,
      5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 2, -5, 2]\noutput : list = [-3, -3, 4, 4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sub_n([-5, 2, -5, 2],-5),4),2)),3)",
    "io_inp": [
      -5,
      2,
      -5,
      2
    ],
    "io_out": [
      -3,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sub_n(input,-5),4),2)),3)"
  },
  {
    "input": "input : list = [-1, 4, 3, -4, 2, -4]\noutput : list = [-6, 9, 6, -15, 3, -15]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(reverse([-1, 4, 3, -4, 2, -4]),9),-1)),3)",
    "io_inp": [
      -1,
      4,
      3,
      -4,
      2,
      -4
    ],
    "io_out": [
      -6,
      9,
      6,
      -15,
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(reverse(input),9),-1)),3)"
  },
  {
    "input": "input : list = [2, 5, 5, 0, -4, 2]\noutput : list = [0, -24]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(drop([2, 5, 5, 0, -4, 2],4),4),4),4))",
    "io_inp": [
      2,
      5,
      5,
      0,
      -4,
      2
    ],
    "io_out": [
      0,
      -24
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(drop(input,4),4),4),4))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-2, 1]))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 1, 1, 1, 5]\noutput : list = [5, 2, 2, 2, 6]",
    "output": "generated_output : list = add_n([4, 1, 1, 1, 5],1)",
    "io_inp": [
      4,
      1,
      1,
      1,
      5
    ],
    "io_out": [
      5,
      2,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, 2, 0, -4, 5]\noutput : list = [-25, 5, 15, 35, 65]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(mul_n([-1, 2, 0, -4, 5],2)),3),5))",
    "io_inp": [
      -1,
      2,
      0,
      -4,
      5
    ],
    "io_out": [
      -25,
      5,
      15,
      35,
      65
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(mul_n(input,2)),3),5))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(mul_n([3, 5],1)))),25)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(mul_n(input,1)))),25)"
  },
  {
    "input": "input : list = [-3, 1, -3, 0, -1]\noutput : list = [-1, 0, -3]",
    "output": "generated_output : list = reverse(drop([-3, 1, -3, 0, -1],2))",
    "io_inp": [
      -3,
      1,
      -3,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [12, 12, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(sort_des([-2, 4, 4])),4),3))",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      12,
      12,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(sort_des(input)),4),3))"
  },
  {
    "input": "input : list = [-2, 1, -2]\noutput : list = [-1, -1]",
    "output": "generated_output : list = drop(add_n(sub_n(sort_des(reverse([-2, 1, -2])),-4),-3),1)",
    "io_inp": [
      -2,
      1,
      -2
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(sort_des(reverse(input)),-4),-3),1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des([4, -5])",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, -1, -4, -5]\noutput : list = [-8, -7, -6, -4, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des([2, -3, -1, -4, -5])),2),5)",
    "io_inp": [
      2,
      -3,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(input)),2),5)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(take([-4, -3, 5],1)),7),1),-5)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(take(input,1)),7),1),-5)"
  },
  {
    "input": "input : list = [4, -1, -3, -5]\noutput : list = [4, -1]",
    "output": "generated_output : list = take([4, -1, -3, -5],2)",
    "io_inp": [
      4,
      -1,
      -3,
      -5
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -5, -2]\noutput : list = [0, -5, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(add_n([3, -5, -2],1),13)),-4))",
    "io_inp": [
      3,
      -5,
      -2
    ],
    "io_out": [
      0,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(add_n(input,1),13)),-4))"
  },
  {
    "input": "input : list = [-5, 0, 1, 2]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(reverse(reverse(take([-5, 0, 1, 2],2))))",
    "io_inp": [
      -5,
      0,
      1,
      2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(input,2))))"
  },
  {
    "input": "input : list = [5, -4, 0, 5]\noutput : list = [-4, 0, 5, 5]",
    "output": "generated_output : list = sort_asc([5, -4, 0, 5])",
    "io_inp": [
      5,
      -4,
      0,
      5
    ],
    "io_out": [
      -4,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(reverse([5, 4]),3))))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [4, 2, -5, 2, -1, 3]\noutput : list = [-5, -1, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(take(reverse(drop(sort_des([4, 2, -5, 2, -1, 3]),1)),13))",
    "io_inp": [
      4,
      2,
      -5,
      2,
      -1,
      3
    ],
    "io_out": [
      -5,
      -1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(drop(sort_des(input),1)),13))"
  },
  {
    "input": "input : list = [3, -3, -2, 0]\noutput : list = [30]",
    "output": "generated_output : list = mul_n(sub_n(add_n(drop(add_n([3, -3, -2, 0],5),3),3),-2),3)",
    "io_inp": [
      3,
      -3,
      -2,
      0
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(drop(add_n(input,5),3),3),-2),3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = mul_n([1, 0],1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, -2, 4, 3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(sort_des([-1, -2, 4, 3])),1)))",
    "io_inp": [
      -1,
      -2,
      4,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [3, 5, -4, 0]\noutput : list = [5, 3, 0, -4]",
    "output": "generated_output : list = sort_des([3, 5, -4, 0])",
    "io_inp": [
      3,
      5,
      -4,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3, 5, 0, -3, -3]\noutput : list = [-2, 6, 8, 3, 0, 0]",
    "output": "generated_output : list = sub_n([-5, 3, 5, 0, -3, -3],-3)",
    "io_inp": [
      -5,
      3,
      5,
      0,
      -3,
      -3
    ],
    "io_out": [
      -2,
      6,
      8,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 4, -1, 2, 2]\noutput : list = [-2, 0, 1, 1, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([1, 4, -1, 2, 2])),-1)",
    "io_inp": [
      1,
      4,
      -1,
      2,
      2
    ],
    "io_out": [
      -2,
      0,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [1, 3, 4, 2, -1]\noutput : list = [12, 6, -3]",
    "output": "generated_output : list = sort_des(mul_n(take(take(reverse([1, 3, 4, 2, -1]),3),11),3))",
    "io_inp": [
      1,
      3,
      4,
      2,
      -1
    ],
    "io_out": [
      12,
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(reverse(input),3),11),3))"
  },
  {
    "input": "input : list = [-2, -1, -1, 5, -5, 0]\noutput : list = [10, -5, -10, -10, -15, -40]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(sub_n([-2, -1, -1, 5, -5, 0],-4),1),-5)))",
    "io_inp": [
      -2,
      -1,
      -1,
      5,
      -5,
      0
    ],
    "io_out": [
      10,
      -5,
      -10,
      -10,
      -15,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(sub_n(input,-4),1),-5)))"
  },
  {
    "input": "input : list = [-2, 2, 2, 1]\noutput : list = [-10, 50, 50, 35]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-2, 2, 2, 1],-3),-4),-5)",
    "io_inp": [
      -2,
      2,
      2,
      1
    ],
    "io_out": [
      -10,
      50,
      50,
      35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,-3),-4),-5)"
  },
  {
    "input": "input : list = [1, 0, -4, 3]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(take([1, 0, -4, 3],1),-2)),5))",
    "io_inp": [
      1,
      0,
      -4,
      3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(take(input,1),-2)),5))"
  },
  {
    "input": "input : list = [-3, -1, -5, 4, 0, -2]\noutput : list = [-5, -3, -2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([-3, -1, -5, 4, 0, -2])",
    "io_inp": [
      -3,
      -1,
      -5,
      4,
      0,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 4, -5, 1]\noutput : list = [12, 9, 6, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(sort_des([-2, 4, -5, 1])),4)),4)",
    "io_inp": [
      -2,
      4,
      -5,
      1
    ],
    "io_out": [
      12,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(sort_des(input)),4)),4)"
  },
  {
    "input": "input : list = [5, -1, -5, -2, 2]\noutput : list = [1, -3, -9]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(take([5, -1, -5, -2, 2],3)),4),-1))",
    "io_inp": [
      5,
      -1,
      -5,
      -2,
      2
    ],
    "io_out": [
      1,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(take(input,3)),4),-1))"
  },
  {
    "input": "input : list = [-5, 0, -3, 4]\noutput : list = [4, 6, 9, 13]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(sub_n([-5, 0, -3, 4],-3)),14),2),4)",
    "io_inp": [
      -5,
      0,
      -3,
      4
    ],
    "io_out": [
      4,
      6,
      9,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(sub_n(input,-3)),14),2),4)"
  },
  {
    "input": "input : list = [5, -4, 4, 2, -1, 0]\noutput : list = [32, 20, 16, 8, 0, -4]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(add_n([5, -4, 4, 2, -1, 0],-4),-1),4),42))",
    "io_inp": [
      5,
      -4,
      4,
      2,
      -1,
      0
    ],
    "io_out": [
      32,
      20,
      16,
      8,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(add_n(input,-4),-1),4),42))"
  },
  {
    "input": "input : list = [3, -4, -1, 4]\noutput : list = [-3, -18]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(drop([3, -4, -1, 4],2),-3)),-3),-3)",
    "io_inp": [
      3,
      -4,
      -1,
      4
    ],
    "io_out": [
      -3,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sub_n(drop(input,2),-3)),-3),-3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-6, -7]",
    "output": "generated_output : list = sub_n(add_n(add_n([-3, -4],-4),-3),-4)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-4),-3),-4)"
  },
  {
    "input": "input : list = [4, -1, -3, 1]\noutput : list = [5, 1, 3, 8]",
    "output": "generated_output : list = reverse(add_n([4, -1, -3, 1],4))",
    "io_inp": [
      4,
      -1,
      -3,
      1
    ],
    "io_out": [
      5,
      1,
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [-1, 1, 0, -4, 5, -5]\noutput : list = [-5, -4, -1, 0, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(sort_asc([-1, 1, 0, -4, 5, -5]),13))))",
    "io_inp": [
      -1,
      1,
      0,
      -4,
      5,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(sort_asc(input),13))))"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [-64, -16, 32]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(mul_n([-4, -1, 2],4)))),4)",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      -64,
      -16,
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(mul_n(input,4)))),4)"
  },
  {
    "input": "input : list = [4, -1, 3, 3]\noutput : list = [5, 4, 4, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(sort_des([4, -1, 3, 3])),5)),4)",
    "io_inp": [
      4,
      -1,
      3,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(sort_des(input)),5)),4)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des([-2, -3]),1)),-3),-1)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des(input),1)),-3),-1)"
  },
  {
    "input": "input : list = [0, -5, 1, 3, 3]\noutput : list = [3, 3, 1, 0, -5]",
    "output": "generated_output : list = sort_des(reverse([0, -5, 1, 3, 3]))",
    "io_inp": [
      0,
      -5,
      1,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -2, 4, 0, 4, 0]\noutput : list = [2, 6, 2, 6, 0, 6]",
    "output": "generated_output : list = sub_n(reverse([4, -2, 4, 0, 4, 0]),-2)",
    "io_inp": [
      4,
      -2,
      4,
      0,
      4,
      0
    ],
    "io_out": [
      2,
      6,
      2,
      6,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-2, -5, 5, -4]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_des(drop([-2, -5, 5, -4],2)),1)",
    "io_inp": [
      -2,
      -5,
      5,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,2)),1)"
  },
  {
    "input": "input : list = [-3, -4, -5, 5, 4]\noutput : list = [-4, -5, 5, 4]",
    "output": "generated_output : list = drop([-3, -4, -5, 5, 4],1)",
    "io_inp": [
      -3,
      -4,
      -5,
      5,
      4
    ],
    "io_out": [
      -4,
      -5,
      5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 2, -1, 3, -3, -3]\noutput : list = [-4, -3, -3, -1, 2, 3]",
    "output": "generated_output : list = sort_asc([-4, 2, -1, 3, -3, -3])",
    "io_inp": [
      -4,
      2,
      -1,
      3,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, -3, -1]\noutput : list = [-2]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(take([1, 4, -3, -1],1))),-3),6)",
    "io_inp": [
      1,
      4,
      -3,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(take(input,1))),-3),6)"
  },
  {
    "input": "input : list = [-5, 0, -3, -2]\noutput : list = [24, 36, 0, 60]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-5, 0, -3, -2]),-3),4)",
    "io_inp": [
      -5,
      0,
      -3,
      -2
    ],
    "io_out": [
      24,
      36,
      0,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),-3),4)"
  },
  {
    "input": "input : list = [1, 4, -2, -1, -5]\noutput : list = [-5, -2, -1, 1, 4]",
    "output": "generated_output : list = reverse(sort_des([1, 4, -2, -1, -5]))",
    "io_inp": [
      1,
      4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [-12, -10]",
    "output": "generated_output : list = take(take(add_n(sub_n(drop([5, -5, -3],1),4),-3),18),34)",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      -12,
      -10
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(drop(input,1),4),-3),18),34)"
  },
  {
    "input": "input : list = [0, 5, -4, 5]\noutput : list = [-14, -5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(drop(sub_n([0, 5, -4, 5],4),2)),-1),5)",
    "io_inp": [
      0,
      5,
      -4,
      5
    ],
    "io_out": [
      -14,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(drop(sub_n(input,4),2)),-1),5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(take(sort_des([-2, -1]),6))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),6))"
  },
  {
    "input": "input : list = [3, 4, -2, -1]\noutput : list = [5, 6, 10, 11]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(add_n([3, 4, -2, -1],3),5))),-1)",
    "io_inp": [
      3,
      4,
      -2,
      -1
    ],
    "io_out": [
      5,
      6,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(add_n(input,3),5))),-1)"
  },
  {
    "input": "input : list = [2, -3, -1, 2]\noutput : list = [6, 6, -3, -9]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(mul_n([2, -3, -1, 2],-3)),-1)),1)",
    "io_inp": [
      2,
      -3,
      -1,
      2
    ],
    "io_out": [
      6,
      6,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(mul_n(input,-3)),-1)),1)"
  },
  {
    "input": "input : list = [-3, 1, 3, -5, 3]\noutput : list = [-9, -7, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n([-3, 1, 3, -5, 3],4),19))",
    "io_inp": [
      -3,
      1,
      3,
      -5,
      3
    ],
    "io_out": [
      -9,
      -7,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,4),19))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-9, -10]",
    "output": "generated_output : list = add_n(sub_n(reverse([-2, -1]),4),-4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),4),-4)"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [7, 6, 4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n([1, -2, 0],-5),-4)),5))",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n(input,-5),-4)),5))"
  },
  {
    "input": "input : list = [4, 3, 2]\noutput : list = [-24, -16]",
    "output": "generated_output : list = take(mul_n(take(mul_n(drop([4, 3, 2],1),2),18),-4),34)",
    "io_inp": [
      4,
      3,
      2
    ],
    "io_out": [
      -24,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(drop(input,1),2),18),-4),34)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-6, -4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(take(reverse([-2, -3]),6),-5)),-2)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(take(reverse(input),6),-5)),-2)"
  },
  {
    "input": "input : list = [3, -2, -2, 1, 3, -5]\noutput : list = [9, 3, -6, -6, -15]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(drop([3, -2, -2, 1, 3, -5],1))),3))",
    "io_inp": [
      3,
      -2,
      -2,
      1,
      3,
      -5
    ],
    "io_out": [
      9,
      3,
      -6,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(drop(input,1))),3))"
  },
  {
    "input": "input : list = [-5, 1, -4, 0]\noutput : list = [2, 0, -8, -10]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n([-5, 1, -4, 0],2)),6))",
    "io_inp": [
      -5,
      1,
      -4,
      0
    ],
    "io_out": [
      2,
      0,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(input,2)),6))"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [5, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, 5])",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2, -3, -5, 5, -4]\noutput : list = [-3, -2, -1, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(take([-4, -2, -3, -5, 5, -4],4))),-1),1)",
    "io_inp": [
      -4,
      -2,
      -3,
      -5,
      5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(take(input,4))),-1),1)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [-100]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(reverse([1, 0, -5])),4),5),1)",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      -100
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(reverse(input)),4),5),1)"
  },
  {
    "input": "input : list = [-3, 5, -4, 0, 2]\noutput : list = [8, -4, -12, -24, -28]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(sub_n([-3, 5, -4, 0, 2],3),16)),4))",
    "io_inp": [
      -3,
      5,
      -4,
      0,
      2
    ],
    "io_out": [
      8,
      -4,
      -12,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(sub_n(input,3),16)),4))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-5, -7]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(mul_n([-3, -1],1),3)),-1),-2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(mul_n(input,1),3)),-1),-2)"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [2, 2, -4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(reverse([-1, 5, 5])),3)))",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(reverse(input)),3)))"
  },
  {
    "input": "input : list = [-3, 3, -5]\noutput : list = [-2, 4, -4]",
    "output": "generated_output : list = sub_n([-3, 3, -5],-1)",
    "io_inp": [
      -3,
      3,
      -5
    ],
    "io_out": [
      -2,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 5, 3, 5, -5, 4]\noutput : list = [-6, 2, 0, 2, -8, 1]",
    "output": "generated_output : list = sub_n([-3, 5, 3, 5, -5, 4],3)",
    "io_inp": [
      -3,
      5,
      3,
      5,
      -5,
      4
    ],
    "io_out": [
      -6,
      2,
      0,
      2,
      -8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(sub_n([-1, -3],2),6))),2)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(sub_n(input,2),6))),2)"
  },
  {
    "input": "input : list = [-4, 4, -1, 0, -3, -4]\noutput : list = [-5, 15, 20, 30, 35, 35]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(reverse([-4, 4, -1, 0, -3, -4])),3)),-5)",
    "io_inp": [
      -4,
      4,
      -1,
      0,
      -3,
      -4
    ],
    "io_out": [
      -5,
      15,
      20,
      30,
      35,
      35
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(reverse(input)),3)),-5)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-31, -23]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_des([0, 2]),5),4),3),-1)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -31,
      -23
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(sort_des(input),5),4),3),-1)"
  },
  {
    "input": "input : list = [-3, 1, -4, 1, -2, 2]\noutput : list = [8, 4, 4, -8, -12, -16]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(sort_asc([-3, 1, -4, 1, -2, 2])))),4)",
    "io_inp": [
      -3,
      1,
      -4,
      1,
      -2,
      2
    ],
    "io_out": [
      8,
      4,
      4,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [3, -4, 5, 1]\noutput : list = [12, -3, -9, -15]",
    "output": "generated_output : list = sort_des(take(take(sort_des(mul_n([3, -4, 5, 1],-3)),23),8))",
    "io_inp": [
      3,
      -4,
      5,
      1
    ],
    "io_out": [
      12,
      -3,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(mul_n(input,-3)),23),8))"
  },
  {
    "input": "input : list = [0, 1, -1, 1]\noutput : list = [-1, 1, 1]",
    "output": "generated_output : list = sort_asc(drop([0, 1, -1, 1],1))",
    "io_inp": [
      0,
      1,
      -1,
      1
    ],
    "io_out": [
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [3, 0, 4, -5, -1, 4]\noutput : list = [4, 4, 3, 0, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_asc([3, 0, 4, -5, -1, 4])))))",
    "io_inp": [
      3,
      0,
      4,
      -5,
      -1,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, 5, 1]\noutput : list = [4, 5, 9]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(sort_asc([0, 5, 1]))),4),10)",
    "io_inp": [
      0,
      5,
      1
    ],
    "io_out": [
      4,
      5,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(sort_asc(input))),4),10)"
  },
  {
    "input": "input : list = [0, 5, -2, -5, 5, 1]\noutput : list = [1, 4, 6, 7, 11, 11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(add_n([0, 5, -2, -5, 5, 1],-1),11),5),2))",
    "io_inp": [
      0,
      5,
      -2,
      -5,
      5,
      1
    ],
    "io_out": [
      1,
      4,
      6,
      7,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(add_n(input,-1),11),5),2))"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [-3, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-5, 1, 0]),-2)",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [3, -2, -4, -5]\noutput : list = [-2, -4, -5]",
    "output": "generated_output : list = drop([3, -2, -4, -5],1)",
    "io_inp": [
      3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(take([-1, 5, -3],1),7)),2))",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(take(input,1),7)),2))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = take(take(sort_des(sort_des(sort_des([-1, 4]))),28),24)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_des(sort_des(input))),28),24)"
  },
  {
    "input": "input : list = [-3, -4, -2, -1, -3, -1]\noutput : list = [-8, -7, -7, -6, -5, -5]",
    "output": "generated_output : list = sort_asc(sub_n([-3, -4, -2, -1, -3, -1],4))",
    "io_inp": [
      -3,
      -4,
      -2,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [4, 5, 5, 1]\noutput : list = [1, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(take(take(drop([4, 5, 5, 1],1),4),12)))",
    "io_inp": [
      4,
      5,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(drop(input,1),4),12)))"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [4, 2, -1]",
    "output": "generated_output : list = sort_des([-1, 2, 4])",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(take([4, -2, 2],1))",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-1, -2, -4, 0]\noutput : list = [2, 1, -1, 3]",
    "output": "generated_output : list = add_n(reverse(take(reverse([-1, -2, -4, 0]),4)),3)",
    "io_inp": [
      -1,
      -2,
      -4,
      0
    ],
    "io_out": [
      2,
      1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(input),4)),3)"
  },
  {
    "input": "input : list = [3, 2, 0]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = take(sub_n([3, 2, 0],4),10)",
    "io_inp": [
      3,
      2,
      0
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),10)"
  },
  {
    "input": "input : list = [-1, 2, -4, -4]\noutput : list = [5, -10, 20, 20]",
    "output": "generated_output : list = mul_n([-1, 2, -4, -4],-5)",
    "io_inp": [
      -1,
      2,
      -4,
      -4
    ],
    "io_out": [
      5,
      -10,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, -80]",
    "output": "generated_output : list = mul_n(mul_n([0, -4],5),4)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,5),4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-200, -160]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc([3, 5]),-5),-5),4))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -200,
      -160
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sort_asc(input),-5),-5),4))"
  },
  {
    "input": "input : list = [-2, -5, 3, -4]\noutput : list = [12, 0, 32, 4]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n([-2, -5, 3, -4],3),-3),5),4)",
    "io_inp": [
      -2,
      -5,
      3,
      -4
    ],
    "io_out": [
      12,
      0,
      32,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(input,3),-3),5),4)"
  },
  {
    "input": "input : list = [-4, 5, -4, -4, 1, 0]\noutput : list = [6, 2, 1, -3, -3, -3]",
    "output": "generated_output : list = sub_n(sort_des([-4, 5, -4, -4, 1, 0]),-1)",
    "io_inp": [
      -4,
      5,
      -4,
      -4,
      1,
      0
    ],
    "io_out": [
      6,
      2,
      1,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [1, 4, 5, 1, -5]\noutput : list = [-15, -12, -3, -3, 15]",
    "output": "generated_output : list = take(sort_asc(mul_n(reverse([1, 4, 5, 1, -5]),-3)),25)",
    "io_inp": [
      1,
      4,
      5,
      1,
      -5
    ],
    "io_out": [
      -15,
      -12,
      -3,
      -3,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(reverse(input),-3)),25)"
  },
  {
    "input": "input : list = [2, -1, 0, 1]\noutput : list = [9, 6, 3]",
    "output": "generated_output : list = sort_des(take(mul_n(drop(sub_n([2, -1, 0, 1],2),1),-3),33))",
    "io_inp": [
      2,
      -1,
      0,
      1
    ],
    "io_out": [
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(drop(sub_n(input,2),1),-3),33))"
  },
  {
    "input": "input : list = [1, 5, -2, -4, 5]\noutput : list = [-16, -6, 9, 29, 29]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(mul_n([1, 5, -2, -4, 5],5),4))))",
    "io_inp": [
      1,
      5,
      -2,
      -4,
      5
    ],
    "io_out": [
      -16,
      -6,
      9,
      29,
      29
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(mul_n(input,5),4))))"
  },
  {
    "input": "input : list = [1, 5, 1, 0, -3, 2]\noutput : list = [-3, 0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(drop([1, 5, 1, 0, -3, 2],1))",
    "io_inp": [
      1,
      5,
      1,
      0,
      -3,
      2
    ],
    "io_out": [
      -3,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [4, -5, 1, -1]\noutput : list = [-9, -5, -3, 0]",
    "output": "generated_output : list = take(add_n(sort_asc([4, -5, 1, -1]),-4),10)",
    "io_inp": [
      4,
      -5,
      1,
      -1
    ],
    "io_out": [
      -9,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),-4),10)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [0, 3, -2]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n([-3, 0, -5],-2)),1)),-5)",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      0,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n(input,-2)),1)),-5)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-21, -21]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(mul_n([3, 3],4),3),-2)),3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -21,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(mul_n(input,4),3),-2)),3)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = sort_des([1, -2, 2])",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -1, 0, 0, 5, 1]\noutput : list = [-3, -1, 0]",
    "output": "generated_output : list = take([-3, -1, 0, 0, 5, 1],3)",
    "io_inp": [
      -3,
      -1,
      0,
      0,
      5,
      1
    ],
    "io_out": [
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, -3, -5, 4, 4]\noutput : list = [-5, 4, 4]",
    "output": "generated_output : list = drop([-3, -3, -5, 4, 4],2)",
    "io_inp": [
      -3,
      -3,
      -5,
      4,
      4
    ],
    "io_out": [
      -5,
      4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [-18, 30, 30]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse([5, 5, -3]),3)),2)",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      -18,
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(input),3)),2)"
  },
  {
    "input": "input : list = [4, 1, 0, 3, 5, 1]\noutput : list = [10, 26, 18, 6, 10, 22]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(mul_n([4, 1, 0, 3, 5, 1],4),-1),7),5))",
    "io_inp": [
      4,
      1,
      0,
      3,
      5,
      1
    ],
    "io_out": [
      10,
      26,
      18,
      6,
      10,
      22
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(mul_n(input,4),-1),7),5))"
  },
  {
    "input": "input : list = [0, -4, 0, 3, -5]\noutput : list = [11, 8, 8, 4, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sub_n([0, -4, 0, 3, -5],-4)))),4)",
    "io_inp": [
      0,
      -4,
      0,
      3,
      -5
    ],
    "io_out": [
      11,
      8,
      8,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sub_n(input,-4)))),4)"
  },
  {
    "input": "input : list = [5, -3, 3, 0, 4]\noutput : list = [-2, 1, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(add_n([5, -3, 3, 0, 4],-2)),28),-3))",
    "io_inp": [
      5,
      -3,
      3,
      0,
      4
    ],
    "io_out": [
      -2,
      1,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(add_n(input,-2)),28),-3))"
  },
  {
    "input": "input : list = [-2, -2, 0, -4, 4, 4]\noutput : list = [-2, -2, 0, -4, 4, 4]",
    "output": "generated_output : list = reverse(reverse([-2, -2, 0, -4, 4, 4]))",
    "io_inp": [
      -2,
      -2,
      0,
      -4,
      4,
      4
    ],
    "io_out": [
      -2,
      -2,
      0,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, 1, 1, -5, -3, 0]\noutput : list = [4, -4, -16, -16, -20, -20]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(reverse([0, 1, 1, -5, -3, 0])),4)),-4)",
    "io_inp": [
      0,
      1,
      1,
      -5,
      -3,
      0
    ],
    "io_out": [
      4,
      -4,
      -16,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(reverse(input)),4)),-4)"
  },
  {
    "input": "input : list = [5, -2, 3, -4]\noutput : list = [2, -5, 0, -7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n([5, -2, 3, -4],1),-1),2),-1)",
    "io_inp": [
      5,
      -2,
      3,
      -4
    ],
    "io_out": [
      2,
      -5,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(input,1),-1),2),-1)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-10, 20]",
    "output": "generated_output : list = reverse(mul_n(take(take(sort_des([-2, 4]),7),6),5))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -10,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sort_des(input),7),6),5))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [4, 10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(reverse(add_n([-2, 4],5))),-5),4)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(reverse(add_n(input,5))),-5),4)"
  },
  {
    "input": "input : list = [4, -2, 3, 4, -2, -2]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -2, 3, 4, -2, -2],1)",
    "io_inp": [
      4,
      -2,
      3,
      4,
      -2,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [6]",
    "output": "generated_output : list = add_n(take([2, -2, -5],1),4)",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse([0, -4])),5))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(input)),5))"
  },
  {
    "input": "input : list = [4, 1, -2, -5]\noutput : list = [-1, -4, -7, -10]",
    "output": "generated_output : list = sort_des(sub_n([4, 1, -2, -5],5))",
    "io_inp": [
      4,
      1,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [1, 4, 2, 4, 0, 0]\noutput : list = [6, 6, 7, 8, 10, 10]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(sort_asc([1, 4, 2, 4, 0, 0]),-2),5),-2),-1)",
    "io_inp": [
      1,
      4,
      2,
      4,
      0,
      0
    ],
    "io_out": [
      6,
      6,
      7,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(sort_asc(input),-2),5),-2),-1)"
  },
  {
    "input": "input : list = [3, 5, -3, -4, 3]\noutput : list = [-4, -3, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([3, 5, -3, -4, 3])))",
    "io_inp": [
      3,
      5,
      -3,
      -4,
      3
    ],
    "io_out": [
      -4,
      -3,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [2, -1, -4, -5]\noutput : list = [-3, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(reverse([2, -1, -4, -5])),3),1))",
    "io_inp": [
      2,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(reverse(input)),3),1))"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [5, 1, -13]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(mul_n([4, 2, -5],2),3),-1),2),3)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      5,
      1,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(mul_n(input,2),3),-1),2),3)"
  },
  {
    "input": "input : list = [-1, -5, -5, 0, 3, 5]\noutput : list = [-4, -8, -8, -3, 0, 2]",
    "output": "generated_output : list = sub_n(add_n([-1, -5, -5, 0, 3, 5],-2),1)",
    "io_inp": [
      -1,
      -5,
      -5,
      0,
      3,
      5
    ],
    "io_out": [
      -4,
      -8,
      -8,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),1)"
  },
  {
    "input": "input : list = [1, -1, 0, 3]\noutput : list = [11, 3, -5, -21]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(mul_n([1, -1, 0, 3],-4),2),3)))",
    "io_inp": [
      1,
      -1,
      0,
      3
    ],
    "io_out": [
      11,
      3,
      -5,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(mul_n(input,-4),2),3)))"
  },
  {
    "input": "input : list = [5, 5, 1, -4, 5]\noutput : list = [7, 7, 3, -2, 7]",
    "output": "generated_output : list = add_n(add_n([5, 5, 1, -4, 5],5),-3)",
    "io_inp": [
      5,
      5,
      1,
      -4,
      5
    ],
    "io_out": [
      7,
      7,
      3,
      -2,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [-2, 5, -1]\noutput : list = [-6, -5, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sort_des([-2, 5, -1]))),-1),-5)",
    "io_inp": [
      -2,
      5,
      -1
    ],
    "io_out": [
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sort_des(input))),-1),-5)"
  },
  {
    "input": "input : list = [3, -2, 1, 5]\noutput : list = [40, 8, -16, 24]",
    "output": "generated_output : list = mul_n(take(take(mul_n(reverse([3, -2, 1, 5]),4),12),30),2)",
    "io_inp": [
      3,
      -2,
      1,
      5
    ],
    "io_out": [
      40,
      8,
      -16,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(reverse(input),4),12),30),2)"
  },
  {
    "input": "input : list = [-4, 4, 3, 5, -5, 5]\noutput : list = [3, 5, -5, 5]",
    "output": "generated_output : list = add_n(add_n(take(drop([-4, 4, 3, 5, -5, 5],2),5),2),-2)",
    "io_inp": [
      -4,
      4,
      3,
      5,
      -5,
      5
    ],
    "io_out": [
      3,
      5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(drop(input,2),5),2),-2)"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [0, 15, 15]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(mul_n([2, -3, 2],3),4)),4),1)",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      0,
      15,
      15
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(mul_n(input,3),4)),4),1)"
  },
  {
    "input": "input : list = [-5, 0, 0, 5, 0, 0]\noutput : list = [-20, 60, 60, 60, 60, 140]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(add_n([-5, 0, 0, 5, 0, 0],-4),4)),-4),-4)",
    "io_inp": [
      -5,
      0,
      0,
      5,
      0,
      0
    ],
    "io_out": [
      -20,
      60,
      60,
      60,
      60,
      140
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(add_n(input,-4),4)),-4),-4)"
  },
  {
    "input": "input : list = [4, -3, -1, 5]\noutput : list = [-10, 18]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(add_n([4, -3, -1, 5],-1),2),-4),2))",
    "io_inp": [
      4,
      -3,
      -1,
      5
    ],
    "io_out": [
      -10,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(add_n(input,-1),2),-4),2))"
  },
  {
    "input": "input : list = [-1, -4, 4, -3, -5, -2]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(take([-1, -4, 4, -3, -5, -2],1),-5)",
    "io_inp": [
      -1,
      -4,
      4,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [-5, -5, -12]",
    "output": "generated_output : list = sort_des(add_n(take(take(add_n([5, 5, -2],-5),11),7),-5))",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(add_n(input,-5),11),7),-5))"
  },
  {
    "input": "input : list = [-1, 5, 3, -2, 5]\noutput : list = [-4, -3, 1, 3, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_asc([-1, 5, 3, -2, 5]),20))),2)",
    "io_inp": [
      -1,
      5,
      3,
      -2,
      5
    ],
    "io_out": [
      -4,
      -3,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_asc(input),20))),2)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des(add_n([3, 4],-4)),17)),5)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(add_n(input,-4)),17)),5)"
  },
  {
    "input": "input : list = [1, -3, -1]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc([1, -3, -1]))",
    "io_inp": [
      1,
      -3,
      -1
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 2, 1, -4]\noutput : list = [0, 5, 6, -1]",
    "output": "generated_output : list = take(take(sub_n(reverse(sub_n([-5, 2, 1, -4],-2)),-2),22),11)",
    "io_inp": [
      -5,
      2,
      1,
      -4
    ],
    "io_out": [
      0,
      5,
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(sub_n(input,-2)),-2),22),11)"
  },
  {
    "input": "input : list = [5, 2, -5, 3, 5]\noutput : list = [-5, 3, 5]",
    "output": "generated_output : list = drop([5, 2, -5, 3, 5],2)",
    "io_inp": [
      5,
      2,
      -5,
      3,
      5
    ],
    "io_out": [
      -5,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, -1, -2, 2]\noutput : list = [8, -4, -8, -20]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(reverse([-5, -1, -2, 2])))),4)",
    "io_inp": [
      -5,
      -1,
      -2,
      2
    ],
    "io_out": [
      8,
      -4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(reverse(input)))),4)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des([1, -4])))))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, 1, -4, -4]\noutput : list = [-18, 7, -18, -18]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n([-4, 1, -4, -4],5),5),2),-5)",
    "io_inp": [
      -4,
      1,
      -4,
      -4
    ],
    "io_out": [
      -18,
      7,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(input,5),5),2),-5)"
  },
  {
    "input": "input : list = [-3, 5, -2, 2]\noutput : list = [5, 2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-3, 5, -2, 2])))",
    "io_inp": [
      -3,
      5,
      -2,
      2
    ],
    "io_out": [
      5,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, -2, -1, 4, 5]\noutput : list = [10, 10, 8, -2, -4]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(reverse([5, -2, -1, 4, 5]),24))),2)",
    "io_inp": [
      5,
      -2,
      -1,
      4,
      5
    ],
    "io_out": [
      10,
      10,
      8,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(reverse(input),24))),2)"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [-90, -105, -120]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n(sort_des([-3, -1, -2]),-5),5),3))",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      -90,
      -105,
      -120
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(sort_des(input),-5),5),3))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([1, -1])),-1)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [3, -5, -1, 1]\noutput : list = [0, 4, 6, 8]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(reverse([3, -5, -1, 1]))),-5))",
    "io_inp": [
      3,
      -5,
      -1,
      1
    ],
    "io_out": [
      0,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(reverse(input))),-5))"
  },
  {
    "input": "input : list = [2, 0, -4, -5]\noutput : list = [2, 0, -4, -5]",
    "output": "generated_output : list = take(sort_des([2, 0, -4, -5]),8)",
    "io_inp": [
      2,
      0,
      -4,
      -5
    ],
    "io_out": [
      2,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),8)"
  },
  {
    "input": "input : list = [5, -4, -4]\noutput : list = [0, -9, -9]",
    "output": "generated_output : list = sub_n([5, -4, -4],5)",
    "io_inp": [
      5,
      -4,
      -4
    ],
    "io_out": [
      0,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des([5, 2])",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4, 4, -4, -2, -2]\noutput : list = [-4, -4, -3, 4]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des(take([-3, -4, 4, -4, -2, -2],4)))),35)",
    "io_inp": [
      -3,
      -4,
      4,
      -4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(take(input,4)))),35)"
  },
  {
    "input": "input : list = [1, -4, -4, 1]\noutput : list = [2, -3, -3, 2]",
    "output": "generated_output : list = sub_n([1, -4, -4, 1],-1)",
    "io_inp": [
      1,
      -4,
      -4,
      1
    ],
    "io_out": [
      2,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, 5, -3, -1, -4, 0]\noutput : list = [8, 4, 3, 2, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_des([1, 5, -3, -1, -4, 0])))),-3)",
    "io_inp": [
      1,
      5,
      -3,
      -1,
      -4,
      0
    ],
    "io_out": [
      8,
      4,
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [-1, -5, 2]\noutput : list = [0, -4, 3]",
    "output": "generated_output : list = add_n(add_n([-1, -5, 2],5),-4)",
    "io_inp": [
      -1,
      -5,
      2
    ],
    "io_out": [
      0,
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-4)"
  },
  {
    "input": "input : list = [3, -1, 1, 2, -1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = take([3, -1, 1, 2, -1, 3],2)",
    "io_inp": [
      3,
      -1,
      1,
      2,
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [1, 5, 10]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(sub_n([-4, 0, 5],-5),12)),22),1)",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      1,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(sub_n(input,-5),12)),22),1)"
  },
  {
    "input": "input : list = [1, 4, -4, -3, -1, 4]\noutput : list = [-2, -1, 1, 3, 6, 6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(mul_n([1, 4, -4, -3, -1, 4],1)),-2),1),1)",
    "io_inp": [
      1,
      4,
      -4,
      -3,
      -1,
      4
    ],
    "io_out": [
      -2,
      -1,
      1,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(mul_n(input,1)),-2),1),1)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [-2, -8, -4]",
    "output": "generated_output : list = add_n(reverse([0, -4, 2]),-4)",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      -2,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-3, 3, 4, 0]\noutput : list = [6, 5, 2, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(reverse([-3, 3, 4, 0])),-2)))",
    "io_inp": [
      -3,
      3,
      4,
      0
    ],
    "io_out": [
      6,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [-5, -5, -3, -3, -1, 4]\noutput : list = [-5, -5, -3, -3, -1, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([-5, -5, -3, -3, -1, 4])))",
    "io_inp": [
      -5,
      -5,
      -3,
      -3,
      -1,
      4
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, 4, 4, -2, -5, 2]\noutput : list = [25, 10, -10, -10, -20, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([2, 4, 4, -2, -5, 2]),-5))",
    "io_inp": [
      2,
      4,
      4,
      -2,
      -5,
      2
    ],
    "io_out": [
      25,
      10,
      -10,
      -10,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [1, 0, 3, 1, 1]\noutput : list = [0, 0, -10]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(drop([1, 0, 3, 1, 1],2),6),1),-5))",
    "io_inp": [
      1,
      0,
      3,
      1,
      1
    ],
    "io_out": [
      0,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(drop(input,2),6),1),-5))"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(sort_asc([-1, 1, -4]),1)),31))",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(sort_asc(input),1)),31))"
  },
  {
    "input": "input : list = [-4, 2, -1, -1]\noutput : list = [-3, 0, 0, 3]",
    "output": "generated_output : list = add_n(sort_asc([-4, 2, -1, -1]),1)",
    "io_inp": [
      -4,
      2,
      -1,
      -1
    ],
    "io_out": [
      -3,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [-6, 4, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([-3, 0, 5]),2),-2)",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      -6,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),2),-2)"
  },
  {
    "input": "input : list = [-4, 0, -1, -2, -2]\noutput : list = [11, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(drop([-4, 0, -1, -2, -2],3),-5),3),4))",
    "io_inp": [
      -4,
      0,
      -1,
      -2,
      -2
    ],
    "io_out": [
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(drop(input,3),-5),3),4))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n([1, 4],1)),23)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,1)),23)"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [9, 3, -3]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(sort_asc([1, -1, -3]),-3),3)))",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      9,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(sort_asc(input),-3),3)))"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [-5, 2, 4]",
    "output": "generated_output : list = sort_asc([-5, 2, 4])",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 3, 5, -4, 2]\noutput : list = [2, 6, 8, -1, 5]",
    "output": "generated_output : list = sub_n([-1, 3, 5, -4, 2],-3)",
    "io_inp": [
      -1,
      3,
      5,
      -4,
      2
    ],
    "io_out": [
      2,
      6,
      8,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -3, -3, -2, 3, -4]\noutput : list = [-4, 3, -2, -3, -3, -5]",
    "output": "generated_output : list = take(take(reverse([-5, -3, -3, -2, 3, -4]),13),37)",
    "io_inp": [
      -5,
      -3,
      -3,
      -2,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      -2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),13),37)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(add_n([2, 3, 2],-4))),-1))",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(add_n(input,-4))),-1))"
  },
  {
    "input": "input : list = [3, 0, 1, -5, 4]\noutput : list = [11, 8, 9, 3, 12]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(reverse([3, 0, 1, -5, 4]),-1)),-5),2)",
    "io_inp": [
      3,
      0,
      1,
      -5,
      4
    ],
    "io_out": [
      11,
      8,
      9,
      3,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(reverse(input),-1)),-5),2)"
  },
  {
    "input": "input : list = [-2, -2, -4, 1]\noutput : list = [-2, 8, 4, 4]",
    "output": "generated_output : list = reverse(mul_n([-2, -2, -4, 1],-2))",
    "io_inp": [
      -2,
      -2,
      -4,
      1
    ],
    "io_out": [
      -2,
      8,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [4, -2, 4, -1, 2, 4]\noutput : list = [4, 4, 4, 2, -1, -2]",
    "output": "generated_output : list = sort_des([4, -2, 4, -1, 2, 4])",
    "io_inp": [
      4,
      -2,
      4,
      -1,
      2,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, -2, -5, -5]\noutput : list = [-36, -36, -12, 4, 28]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(mul_n([3, 0, -2, -5, -5],-2),1)),-4))",
    "io_inp": [
      3,
      0,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -36,
      -36,
      -12,
      4,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(mul_n(input,-2),1)),-4))"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [-5, -5, -2]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(sort_asc([-2, -5, -5])),4),38),4)",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(sort_asc(input)),4),38),4)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-6, -12]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(add_n([-1, 2],-5),2)),4))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(add_n(input,-5),2)),4))"
  },
  {
    "input": "input : list = [-1, -4, 5, 5, 3, -4]\noutput : list = [-32]",
    "output": "generated_output : list = sub_n(sort_des(drop(mul_n(sub_n([-1, -4, 5, 5, 3, -4],2),5),5)),2)",
    "io_inp": [
      -1,
      -4,
      5,
      5,
      3,
      -4
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(mul_n(sub_n(input,2),5),5)),2)"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [-1, 5, 1]",
    "output": "generated_output : list = reverse([1, 5, -1])",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      -1,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, -4, 3, 3, 0]\noutput : list = [-4, 3, 3, 0]",
    "output": "generated_output : list = drop([5, -3, -4, 3, 3, 0],2)",
    "io_inp": [
      5,
      -3,
      -4,
      3,
      3,
      0
    ],
    "io_out": [
      -4,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, 5, -2, 4]\noutput : list = [2, 6, -1, 5]",
    "output": "generated_output : list = add_n([1, 5, -2, 4],1)",
    "io_inp": [
      1,
      5,
      -2,
      4
    ],
    "io_out": [
      2,
      6,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [5, -4]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(mul_n([4, 1],3),-3),-5),22),-5)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(mul_n(input,3),-3),-5),22),-5)"
  },
  {
    "input": "input : list = [-4, -5, 5, -4, 2, -2]\noutput : list = [-3, -2, -2, 0, 4, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sort_asc([-4, -5, 5, -4, 2, -2]))),2))",
    "io_inp": [
      -4,
      -5,
      5,
      -4,
      2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = reverse([4, -5])",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [8, 8, 8]",
    "output": "generated_output : list = sort_des(sub_n([5, 5, 5],-3))",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-3, 0, 2, 3, 0]\noutput : list = [3, 2, 0, 0, -3]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_asc([-3, 0, 2, 3, 0])),29)),46)",
    "io_inp": [
      -3,
      0,
      2,
      3,
      0
    ],
    "io_out": [
      3,
      2,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_asc(input)),29)),46)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n([-2, 0],-2),-5)))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(input,-2),-5)))"
  },
  {
    "input": "input : list = [3, -2, 0, -4, 4]\noutput : list = [11, -5]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(drop([3, -2, 0, -4, 4],3),5),2),-3))",
    "io_inp": [
      3,
      -2,
      0,
      -4,
      4
    ],
    "io_out": [
      11,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(drop(input,3),5),2),-3))"
  },
  {
    "input": "input : list = [-2, -1, 1, 0, 4, 2]\noutput : list = [2]",
    "output": "generated_output : list = take(sub_n(sort_asc(drop(sub_n([-2, -1, 1, 0, 4, 2],3),5)),-3),38)",
    "io_inp": [
      -2,
      -1,
      1,
      0,
      4,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(drop(sub_n(input,3),5)),-3),38)"
  },
  {
    "input": "input : list = [2, 2, 3]\noutput : list = [-13, -13, -5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(add_n([2, 2, 3],-4),-4)),-2),3)",
    "io_inp": [
      2,
      2,
      3
    ],
    "io_out": [
      -13,
      -13,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(add_n(input,-4),-4)),-2),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(sort_des([-3, -4]))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, -2, 4, 5, 2, 4]\noutput : list = [10, 16, 14, 2, 8]",
    "output": "generated_output : list = mul_n(add_n(drop(take(reverse([1, -2, 4, 5, 2, 4]),8),1),3),2)",
    "io_inp": [
      1,
      -2,
      4,
      5,
      2,
      4
    ],
    "io_out": [
      10,
      16,
      14,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(take(reverse(input),8),1),3),2)"
  },
  {
    "input": "input : list = [0, 5, -1, 0, 4]\noutput : list = [20, 15, -5, -5, -10]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n([0, 5, -1, 0, 4],5),-5)))",
    "io_inp": [
      0,
      5,
      -1,
      0,
      4
    ],
    "io_out": [
      20,
      15,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(input,5),-5)))"
  },
  {
    "input": "input : list = [-2, 0, 3]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(reverse([-2, 0, 3]),1)),32))",
    "io_inp": [
      -2,
      0,
      3
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(reverse(input),1)),32))"
  },
  {
    "input": "input : list = [-4, -3, -2, -3]\noutput : list = [-2, -3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(reverse([-4, -3, -2, -3])))))",
    "io_inp": [
      -4,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, 3, 5, -3, 4, -2]\noutput : list = [27, 6, 0, 24, 3, 21]",
    "output": "generated_output : list = mul_n(add_n([-4, 3, 5, -3, 4, -2],-5),-3)",
    "io_inp": [
      -4,
      3,
      5,
      -3,
      4,
      -2
    ],
    "io_out": [
      27,
      6,
      0,
      24,
      3,
      21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-4, -10]",
    "output": "generated_output : list = sort_des(mul_n([-5, -2],2))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse([1, 0])),-1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),-1)"
  },
  {
    "input": "input : list = [3, 3, 4, 3, -2, -5]\noutput : list = [-5, -2, 3, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([3, 3, 4, 3, -2, -5])))",
    "io_inp": [
      3,
      3,
      4,
      3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      3,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [1, 5, -3, 3, -1, -3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(sort_des(drop(sort_asc([1, 5, -3, 3, -1, -3]),5)))",
    "io_inp": [
      1,
      5,
      -3,
      3,
      -1,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [3, -1, 5, 3, 2]\noutput : list = [-250, -325, -475, -25, -325]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(mul_n([3, -1, 5, 3, 2],-3),4)),-5),-5)",
    "io_inp": [
      3,
      -1,
      5,
      3,
      2
    ],
    "io_out": [
      -250,
      -325,
      -475,
      -25,
      -325
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(mul_n(input,-3),4)),-5),-5)"
  },
  {
    "input": "input : list = [-4, -2, -4, -5]\noutput : list = [25, 21, 21, 13]",
    "output": "generated_output : list = take(sub_n(sort_des(take(mul_n([-4, -2, -4, -5],-4),22)),-5),28)",
    "io_inp": [
      -4,
      -2,
      -4,
      -5
    ],
    "io_out": [
      25,
      21,
      21,
      13
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(mul_n(input,-4),22)),-5),28)"
  },
  {
    "input": "input : list = [0, 3, 5, -5, 0]\noutput : list = [5, 3, 0, 0, -5]",
    "output": "generated_output : list = sort_des([0, 3, 5, -5, 0])",
    "io_inp": [
      0,
      3,
      5,
      -5,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, -1, 5, 1]\noutput : list = [-3, 4, 1, -5, -1]",
    "output": "generated_output : list = take(mul_n([3, -4, -1, 5, 1],-1),11)",
    "io_inp": [
      3,
      -4,
      -1,
      5,
      1
    ],
    "io_out": [
      -3,
      4,
      1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),11)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [13, -3]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_des([-5, 3]),-2),-5),-2))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      13,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_des(input),-2),-5),-2))"
  },
  {
    "input": "input : list = [1, -3, 5, 3, 0]\noutput : list = [2, -1, -2, -4, -6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sort_des([1, -3, 5, 3, 0]),-1))),-1)",
    "io_inp": [
      1,
      -3,
      5,
      3,
      0
    ],
    "io_out": [
      2,
      -1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sort_des(input),-1))),-1)"
  },
  {
    "input": "input : list = [2, -1, -5, -5, -4, -5]\noutput : list = [2, -1, -4, -5, -5, -5]",
    "output": "generated_output : list = sort_des([2, -1, -5, -5, -4, -5])",
    "io_inp": [
      2,
      -1,
      -5,
      -5,
      -4,
      -5
    ],
    "io_out": [
      2,
      -1,
      -4,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5, -3, -1, -5, 0]\noutput : list = [-3, -5, -3, -1, -5, 0]",
    "output": "generated_output : list = reverse(reverse([-3, -5, -3, -1, -5, 0]))",
    "io_inp": [
      -3,
      -5,
      -3,
      -1,
      -5,
      0
    ],
    "io_out": [
      -3,
      -5,
      -3,
      -1,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, 3, 3, 4]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sort_asc(drop(sort_des(reverse([2, 3, 3, 4])),3)),3)",
    "io_inp": [
      2,
      3,
      3,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(sort_des(reverse(input)),3)),3)"
  },
  {
    "input": "input : list = [4, -5, -4, 4, -5]\noutput : list = [-10, -10, -8, 8, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([4, -5, -4, 4, -5])),2)",
    "io_inp": [
      4,
      -5,
      -4,
      4,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -8,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [10, 25]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(add_n([-4, -1],-1)),-5),1),-1)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      10,
      25
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(add_n(input,-1)),-5),1),-1)"
  },
  {
    "input": "input : list = [2, -1, -5]\noutput : list = [7, 4, 0]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n([2, -1, -5],3),2)))",
    "io_inp": [
      2,
      -1,
      -5
    ],
    "io_out": [
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(input,3),2)))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(drop(take(sub_n([5, 1],-3),4),1)),34)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(take(sub_n(input,-3),4),1)),34)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-3, 9]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(add_n([0, -4],3),1),3),6),-3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(add_n(input,3),1),3),6),-3)"
  },
  {
    "input": "input : list = [-3, -1, 4, 2]\noutput : list = [15, 5, -10, -20]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n([-3, -1, 4, 2],-5)),14))",
    "io_inp": [
      -3,
      -1,
      4,
      2
    ],
    "io_out": [
      15,
      5,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(input,-5)),14))"
  },
  {
    "input": "input : list = [2, 5, 3, -5]\noutput : list = [7, 10, 8, 0]",
    "output": "generated_output : list = add_n([2, 5, 3, -5],5)",
    "io_inp": [
      2,
      5,
      3,
      -5
    ],
    "io_out": [
      7,
      10,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [1, -2, 4, -5, -2]\noutput : list = [0, -3, 3, -6, -3]",
    "output": "generated_output : list = take(add_n([1, -2, 4, -5, -2],-1),19)",
    "io_inp": [
      1,
      -2,
      4,
      -5,
      -2
    ],
    "io_out": [
      0,
      -3,
      3,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),19)"
  },
  {
    "input": "input : list = [3, -4, -1, -4, 3, 5]\noutput : list = [-16, -16, -1, 19, 19, 29]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc([3, -4, -1, -4, 3, 5]),5))),-4)",
    "io_inp": [
      3,
      -4,
      -1,
      -4,
      3,
      5
    ],
    "io_out": [
      -16,
      -16,
      -1,
      19,
      19,
      29
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc(input),5))),-4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, -25]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n([0, 5],-5),1),7))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(input,-5),1),7))"
  },
  {
    "input": "input : list = [-2, -4, 5, -5, 1, 0]\noutput : list = [0, 3, 9, 15, 18, 30]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(mul_n([-2, -4, 5, -5, 1, 0],-1)),39),-5),-3)",
    "io_inp": [
      -2,
      -4,
      5,
      -5,
      1,
      0
    ],
    "io_out": [
      0,
      3,
      9,
      15,
      18,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(mul_n(input,-1)),39),-5),-3)"
  },
  {
    "input": "input : list = [1, 2, -3, -1]\noutput : list = [-8, -6, -4, -3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_des(add_n([1, 2, -3, -1],-4)))),1)",
    "io_inp": [
      1,
      2,
      -3,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_des(add_n(input,-4)))),1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [11]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(sort_des([2, 5]),1),1),-5))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(sort_des(input),1),1),-5))"
  },
  {
    "input": "input : list = [-3, -2, 1, -2]\noutput : list = [-12, -3, -3, 0]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(sub_n([-3, -2, 1, -2],-3)),-3),1))",
    "io_inp": [
      -3,
      -2,
      1,
      -2
    ],
    "io_out": [
      -12,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(sub_n(input,-3)),-3),1))"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [0, 0, -3]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(sort_asc([2, 2, 1]),3),-5)),3)",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(sort_asc(input),3),-5)),3)"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [5, -2, -2]",
    "output": "generated_output : list = sort_des([5, -2, -2])",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-12, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-3, 0],4)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,4)))"
  },
  {
    "input": "input : list = [2, -2, 3, 5, -3]\noutput : list = [6, 4, 3, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(sort_des([2, -2, 3, 5, -3]),-1))))",
    "io_inp": [
      2,
      -2,
      3,
      5,
      -3
    ],
    "io_out": [
      6,
      4,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [1, -1, -1, -5]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take(take([1, -1, -1, -5],1),11))",
    "io_inp": [
      1,
      -1,
      -1,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,1),11))"
  },
  {
    "input": "input : list = [-5, 2, 0, 3, 0]\noutput : list = [4, 9, 9, 11, 12]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(sub_n([-5, 2, 0, 3, 0],-4),1),4)))",
    "io_inp": [
      -5,
      2,
      0,
      3,
      0
    ],
    "io_out": [
      4,
      9,
      9,
      11,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(sub_n(input,-4),1),4)))"
  },
  {
    "input": "input : list = [1, 2, 4, -1]\noutput : list = [2, 4, -1]",
    "output": "generated_output : list = drop([1, 2, 4, -1],1)",
    "io_inp": [
      1,
      2,
      4,
      -1
    ],
    "io_out": [
      2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 2, 1, -3, 5, -1]\noutput : list = [-10, -10, -4, -2, 2, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(sort_des([5, 2, 1, -3, 5, -1])),-2)))",
    "io_inp": [
      5,
      2,
      1,
      -3,
      5,
      -1
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [6, 3]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(sub_n([-4, -1],-4),-5),14),-2))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(sub_n(input,-4),-5),14),-2))"
  },
  {
    "input": "input : list = [5, 3, -5, -4]\noutput : list = [9, 7, -1, 0]",
    "output": "generated_output : list = take(add_n([5, 3, -5, -4],4),17)",
    "io_inp": [
      5,
      3,
      -5,
      -4
    ],
    "io_out": [
      9,
      7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),17)"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [-8, 2, 6]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(reverse([3, 1, -4])),25),-1),-2)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      -8,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(reverse(input)),25),-1),-2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [7, 4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([5, 2]),-2))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [5, 0]",
    "output": "generated_output : list = sub_n(sort_des(take(drop([5, 3, -2],1),3)),-2)",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(drop(input,1),3)),-2)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(take([-1, 2, -4],1)))))",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [4, 2, 0, -1]\noutput : list = [-13, -7, -1, 2]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(add_n([4, 2, 0, -1],4),6),2),-3),-5)",
    "io_inp": [
      4,
      2,
      0,
      -1
    ],
    "io_out": [
      -13,
      -7,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(add_n(input,4),6),2),-3),-5)"
  },
  {
    "input": "input : list = [-3, -3, 5, -5, 0]\noutput : list = [5, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sub_n(take([-3, -3, 5, -5, 0],3),5)),-5))",
    "io_inp": [
      -3,
      -3,
      5,
      -5,
      0
    ],
    "io_out": [
      5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sub_n(take(input,3),5)),-5))"
  },
  {
    "input": "input : list = [-5, 0, -1, 5, -2, 1]\noutput : list = [-14, 16, -19, -4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(drop([-5, 0, -1, 5, -2, 1],2),23),2),5),1)",
    "io_inp": [
      -5,
      0,
      -1,
      5,
      -2,
      1
    ],
    "io_out": [
      -14,
      16,
      -19,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(drop(input,2),23),2),5),1)"
  },
  {
    "input": "input : list = [5, -1, -1, 4, 1, -3]\noutput : list = [7, 5, 5, 3, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(mul_n([5, -1, -1, 4, 1, -3],-1)),4)))",
    "io_inp": [
      5,
      -1,
      -1,
      4,
      1,
      -3
    ],
    "io_out": [
      7,
      5,
      5,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(mul_n(input,-1)),4)))"
  },
  {
    "input": "input : list = [1, 4, -4, -2, 5]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n([1, 4, -4, -2, 5],-1),1)",
    "io_inp": [
      1,
      4,
      -4,
      -2,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),1)"
  },
  {
    "input": "input : list = [-3, 5, -1, 3, 4, 4]\noutput : list = [6, -2, 4, 0, -1, -1]",
    "output": "generated_output : list = sub_n(mul_n([-3, 5, -1, 3, 4, 4],-1),-3)",
    "io_inp": [
      -3,
      5,
      -1,
      3,
      4,
      4
    ],
    "io_out": [
      6,
      -2,
      4,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),-3)"
  },
  {
    "input": "input : list = [-4, -2, 1]\noutput : list = [22, 14, 2]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc([-4, -2, 1]),2),-4),-2)",
    "io_inp": [
      -4,
      -2,
      1
    ],
    "io_out": [
      22,
      14,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(input),2),-4),-2)"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [9, 6, 9]",
    "output": "generated_output : list = take(sub_n([5, 2, 5],-4),14)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      9,
      6,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),14)"
  },
  {
    "input": "input : list = [4, -4, 1, -4, 0, -3]\noutput : list = [-4, -3, 0, 1]",
    "output": "generated_output : list = sort_asc(drop([4, -4, 1, -4, 0, -3],2))",
    "io_inp": [
      4,
      -4,
      1,
      -4,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [0, 5, -5, 3, -1, 1]\noutput : list = [-6, -2, 2, 10]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop([0, 5, -5, 3, -1, 1],2)),-2)))",
    "io_inp": [
      0,
      5,
      -5,
      3,
      -1,
      1
    ],
    "io_out": [
      -6,
      -2,
      2,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop(input,2)),-2)))"
  },
  {
    "input": "input : list = [-2, -4, 2, -5]\noutput : list = [3, 4, 6, 10]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(reverse([-2, -4, 2, -5]),4))),4)",
    "io_inp": [
      -2,
      -4,
      2,
      -5
    ],
    "io_out": [
      3,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(reverse(input),4))),4)"
  },
  {
    "input": "input : list = [5, 0, -2, 0, -1]\noutput : list = [-2, 0, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(take([5, 0, -2, 0, -1],3),8)),24))",
    "io_inp": [
      5,
      0,
      -2,
      0,
      -1
    ],
    "io_out": [
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(take(input,3),8)),24))"
  },
  {
    "input": "input : list = [1, -3, -4, 4]\noutput : list = [4, 7, 11, 12]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sub_n([1, -3, -4, 4],4),-1)),1),5)",
    "io_inp": [
      1,
      -3,
      -4,
      4
    ],
    "io_out": [
      4,
      7,
      11,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sub_n(input,4),-1)),1),5)"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [4, 1, -5]",
    "output": "generated_output : list = sort_des([4, -5, 1])",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -1, -4, -4, -5, -2]\noutput : list = [-1, 2, 5, 8, 8, 11]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(sort_asc([-3, -1, -4, -4, -5, -2]),-3),-4)),8)",
    "io_inp": [
      -3,
      -1,
      -4,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -1,
      2,
      5,
      8,
      8,
      11
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(sort_asc(input),-3),-4)),8)"
  },
  {
    "input": "input : list = [2, 5, 4, 5, 2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sort_asc(drop(sort_des(sort_asc([2, 5, 4, 5, 2])),4)))",
    "io_inp": [
      2,
      5,
      4,
      5,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(sort_des(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-4, -3, -2, -1, -5]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_des(drop([-4, -3, -2, -1, -5],2)),1)",
    "io_inp": [
      -4,
      -3,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,2)),1)"
  },
  {
    "input": "input : list = [4, -3, 4, -4, 3]\noutput : list = [29, -6, 29, -11, 24]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n([4, -3, 4, -4, 3],3),2),5),-1),3)",
    "io_inp": [
      4,
      -3,
      4,
      -4,
      3
    ],
    "io_out": [
      29,
      -6,
      29,
      -11,
      24
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n(input,3),2),5),-1),3)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-5, -7]",
    "output": "generated_output : list = add_n(reverse([-4, -2]),-3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [5, 0, 5, 2]\noutput : list = [-7, -2, -7, -4]",
    "output": "generated_output : list = take(mul_n(sub_n([5, 0, 5, 2],-2),-1),19)",
    "io_inp": [
      5,
      0,
      5,
      2
    ],
    "io_out": [
      -7,
      -2,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,-2),-1),19)"
  },
  {
    "input": "input : list = [-3, 0, 1, -5, 2, -1]\noutput : list = [7, 3, -1, -3, -5, -7]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(mul_n([-3, 0, 1, -5, 2, -1],-2),-3))))",
    "io_inp": [
      -3,
      0,
      1,
      -5,
      2,
      -1
    ],
    "io_out": [
      7,
      3,
      -1,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(mul_n(input,-2),-3))))"
  },
  {
    "input": "input : list = [3, 3, 4, 4]\noutput : list = [9, 9, 12, 12]",
    "output": "generated_output : list = sort_asc(mul_n([3, 3, 4, 4],3))",
    "io_inp": [
      3,
      3,
      4,
      4
    ],
    "io_out": [
      9,
      9,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,3))"
  },
  {
    "input": "input : list = [2, -2, 1, 3, 3, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take(drop(take(sort_des(drop([2, -2, 1, 3, 3, -4],4)),13),1),21)",
    "io_inp": [
      2,
      -2,
      1,
      3,
      3,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(drop(take(sort_des(drop(input,4)),13),1),21)"
  },
  {
    "input": "input : list = [2, 1, 5, -1, 4, -5]\noutput : list = [-27, -7, 3, 8, 18, 23]",
    "output": "generated_output : list = add_n(sort_asc(take(take(mul_n([2, 1, 5, -1, 4, -5],5),19),20)),-2)",
    "io_inp": [
      2,
      1,
      5,
      -1,
      4,
      -5
    ],
    "io_out": [
      -27,
      -7,
      3,
      8,
      18,
      23
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(mul_n(input,5),19),20)),-2)"
  },
  {
    "input": "input : list = [-1, -2, -3, 3, 1, -5]\noutput : list = [-2, -3, -4, 2, 0, -6]",
    "output": "generated_output : list = take(sub_n(add_n([-1, -2, -3, 3, 1, -5],4),5),20)",
    "io_inp": [
      -1,
      -2,
      -3,
      3,
      1,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -4,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,4),5),20)"
  },
  {
    "input": "input : list = [2, 1, -2, -4]\noutput : list = [3, 2, -1, -3]",
    "output": "generated_output : list = sub_n(add_n([2, 1, -2, -4],-1),-2)",
    "io_inp": [
      2,
      1,
      -2,
      -4
    ],
    "io_out": [
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),-2)"
  },
  {
    "input": "input : list = [-2, -4, 3, -4, 0]\noutput : list = [3, -2, -4]",
    "output": "generated_output : list = sort_des(take([-2, -4, 3, -4, 0],3))",
    "io_inp": [
      -2,
      -4,
      3,
      -4,
      0
    ],
    "io_out": [
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-5, -2, -2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_des(sort_des(drop(take(sub_n([-5, -2, -2],4),18),1)))",
    "io_inp": [
      -5,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(take(sub_n(input,4),18),1)))"
  },
  {
    "input": "input : list = [0, 4, 5, 0, 5]\noutput : list = [6, 1, 6, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(drop([0, 4, 5, 0, 5],1),1)),5),5)",
    "io_inp": [
      0,
      4,
      5,
      0,
      5
    ],
    "io_out": [
      6,
      1,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(drop(input,1),1)),5),5)"
  },
  {
    "input": "input : list = [-3, -4, -3, -2, 4, 5]\noutput : list = [-3, -4, -3, -2, 4, 5]",
    "output": "generated_output : list = reverse(reverse([-3, -4, -3, -2, 4, 5]))",
    "io_inp": [
      -3,
      -4,
      -3,
      -2,
      4,
      5
    ],
    "io_out": [
      -3,
      -4,
      -3,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, -3, 4, 2]\noutput : list = [6, 5, 4, -1]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(reverse([3, -3, 4, 2]))),2),33)",
    "io_inp": [
      3,
      -3,
      4,
      2
    ],
    "io_out": [
      6,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(reverse(input))),2),33)"
  },
  {
    "input": "input : list = [5, -5, -5, 0]\noutput : list = [-7, -7, 3]",
    "output": "generated_output : list = drop(add_n(sub_n(add_n(reverse([5, -5, -5, 0]),-3),3),4),1)",
    "io_inp": [
      5,
      -5,
      -5,
      0
    ],
    "io_out": [
      -7,
      -7,
      3
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(add_n(reverse(input),-3),3),4),1)"
  },
  {
    "input": "input : list = [2, -2, -2]\noutput : list = [3, 3, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(sort_asc([2, -2, -2]),13),-5)))",
    "io_inp": [
      2,
      -2,
      -2
    ],
    "io_out": [
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(sort_asc(input),13),-5)))"
  },
  {
    "input": "input : list = [-5, -5, 4, 2]\noutput : list = [0, 0, 7, 9]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(add_n([-5, -5, 4, 2],2))),-3))",
    "io_inp": [
      -5,
      -5,
      4,
      2
    ],
    "io_out": [
      0,
      0,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(add_n(input,2))),-3))"
  },
  {
    "input": "input : list = [-4, 5, 3, 4, -1]\noutput : list = [-2, 1, 5, 6, 7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(sort_asc([-4, 5, 3, 4, -1])),-3)),1)",
    "io_inp": [
      -4,
      5,
      3,
      4,
      -1
    ],
    "io_out": [
      -2,
      1,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(sort_asc(input)),-3)),1)"
  },
  {
    "input": "input : list = [4, -2, -5, 2, -5]\noutput : list = [-10, -10, -7, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n([4, -2, -5, 2, -5],-5))",
    "io_inp": [
      4,
      -2,
      -5,
      2,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [12, 3]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(drop([-2, -4, -1],1)),-3)),36)",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      12,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(drop(input,1)),-3)),36)"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [5, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, 5])",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, 1, 1]\noutput : list = [7, 9, 9, 13]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(add_n([5, -1, 1, 1],-2),5),-2),3))",
    "io_inp": [
      5,
      -1,
      1,
      1
    ],
    "io_out": [
      7,
      9,
      9,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(add_n(input,-2),5),-2),3))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(sort_des([-4, 1])))),36)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(sort_des(input)))),36)"
  },
  {
    "input": "input : list = [5, 5, 0, -2]\noutput : list = [2, 2, -3, -5]",
    "output": "generated_output : list = take(take(sort_des(add_n(reverse([5, 5, 0, -2]),-3)),20),41)",
    "io_inp": [
      5,
      5,
      0,
      -2
    ],
    "io_out": [
      2,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(reverse(input),-3)),20),41)"
  },
  {
    "input": "input : list = [3, -2, -2, 2, 0]\noutput : list = [0, -6, 6, 6, -9]",
    "output": "generated_output : list = mul_n(reverse([3, -2, -2, 2, 0]),-3)",
    "io_inp": [
      3,
      -2,
      -2,
      2,
      0
    ],
    "io_out": [
      0,
      -6,
      6,
      6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = take(sub_n(take(reverse(reverse([0, 2])),18),-2),26)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(reverse(input)),18),-2),26)"
  },
  {
    "input": "input : list = [-3, -4, 5, 1, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(take([-3, -4, 5, 1, -3],2)))),1)",
    "io_inp": [
      -3,
      -4,
      5,
      1,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(take(input,2)))),1)"
  },
  {
    "input": "input : list = [3, -1, -4, 0]\noutput : list = [4, 7, 8, 11]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(sub_n([3, -1, -4, 0],-5),-1),4),2))",
    "io_inp": [
      3,
      -1,
      -4,
      0
    ],
    "io_out": [
      4,
      7,
      8,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(sub_n(input,-5),-1),4),2))"
  },
  {
    "input": "input : list = [-5, -1, 3, 4, -4, 1]\noutput : list = [-4, 0, 4, 5, -3, 2]",
    "output": "generated_output : list = add_n([-5, -1, 3, 4, -4, 1],1)",
    "io_inp": [
      -5,
      -1,
      3,
      4,
      -4,
      1
    ],
    "io_out": [
      -4,
      0,
      4,
      5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, -5, 5, -4]\noutput : list = [-2, 26, -14, 22]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(add_n([2, -5, 5, -4],-3),-4),4),-4),-2)",
    "io_inp": [
      2,
      -5,
      5,
      -4
    ],
    "io_out": [
      -2,
      26,
      -14,
      22
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(add_n(input,-3),-4),4),-4),-2)"
  },
  {
    "input": "input : list = [-5, -5, 5]\noutput : list = [3, 3, 13]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(add_n([-5, -5, 5],-3),15),2),-4),5)",
    "io_inp": [
      -5,
      -5,
      5
    ],
    "io_out": [
      3,
      3,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(add_n(input,-3),15),2),-4),5)"
  },
  {
    "input": "input : list = [-5, -4, 5, 2]\noutput : list = [-8, -7, 2, -1]",
    "output": "generated_output : list = sub_n([-5, -4, 5, 2],3)",
    "io_inp": [
      -5,
      -4,
      5,
      2
    ],
    "io_out": [
      -8,
      -7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take([-1, -2, -2],1))",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, -3, -1, -1, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(take(drop([-1, -3, -1, -1, 0, -4],4),16),29)",
    "io_inp": [
      -1,
      -3,
      -1,
      -1,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(take(drop(input,4),16),29)"
  },
  {
    "input": "input : list = [5, 3, 3, 5]\noutput : list = [13, 13, 15, 15]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(add_n([5, 3, 3, 5],5))),-5))",
    "io_inp": [
      5,
      3,
      3,
      5
    ],
    "io_out": [
      13,
      13,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(add_n(input,5))),-5))"
  },
  {
    "input": "input : list = [-4, 1, -2, 3, -1, -3]\noutput : list = [5, 3, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(reverse([-4, 1, -2, 3, -1, -3]),2)),45))",
    "io_inp": [
      -4,
      1,
      -2,
      3,
      -1,
      -3
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(reverse(input),2)),45))"
  },
  {
    "input": "input : list = [3, -4, 2]\noutput : list = [4, -3, 3]",
    "output": "generated_output : list = add_n([3, -4, 2],1)",
    "io_inp": [
      3,
      -4,
      2
    ],
    "io_out": [
      4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, 2, 1, -3, 0]\noutput : list = [-6, -4, 0, 2, 4]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(sort_asc([-2, 2, 1, -3, 0]),2),23)))",
    "io_inp": [
      -2,
      2,
      1,
      -3,
      0
    ],
    "io_out": [
      -6,
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(sort_asc(input),2),23)))"
  },
  {
    "input": "input : list = [5, 2, -4, 4, -3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take(drop([5, 2, -4, 4, -3, 1],4),11)",
    "io_inp": [
      5,
      2,
      -4,
      4,
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,4),11)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(reverse([2, 5])),1)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(reverse(input)),1)))"
  },
  {
    "input": "input : list = [5, -3, -3, 4, 3]\noutput : list = [-48, 16]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n(take([5, -3, -3, 4, 3],2),2)),2),-4)",
    "io_inp": [
      5,
      -3,
      -3,
      4,
      3
    ],
    "io_out": [
      -48,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(take(input,2),2)),2),-4)"
  },
  {
    "input": "input : list = [-5, 1, 3, -1]\noutput : list = [-2, 4, 6, 2]",
    "output": "generated_output : list = sub_n([-5, 1, 3, -1],-3)",
    "io_inp": [
      -5,
      1,
      3,
      -1
    ],
    "io_out": [
      -2,
      4,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take([-1, 5, -3],1),-3)",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-5, -4, 2]\noutput : list = [-73, -58, 32]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(mul_n([-5, -4, 2],-3),-5),2)),4)",
    "io_inp": [
      -5,
      -4,
      2
    ],
    "io_out": [
      -73,
      -58,
      32
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(mul_n(input,-3),-5),2)),4)"
  },
  {
    "input": "input : list = [-1, -1, 2]\noutput : list = [-13, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(mul_n([-1, -1, 2],-3),8),2)),1)",
    "io_inp": [
      -1,
      -1,
      2
    ],
    "io_out": [
      -13,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(mul_n(input,-3),8),2)),1)"
  },
  {
    "input": "input : list = [5, 4, -4, -1, 1, 3]\noutput : list = [-1, -3, -5, -8, 0, 1]",
    "output": "generated_output : list = take(add_n(take(sub_n(reverse([5, 4, -4, -1, 1, 3]),1),24),-3),9)",
    "io_inp": [
      5,
      4,
      -4,
      -1,
      1,
      3
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -8,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(reverse(input),1),24),-3),9)"
  },
  {
    "input": "input : list = [5, -1, 3, -4, 4, 5]\noutput : list = [-16, -10, -2, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(add_n([5, -1, 3, -4, 4, 5],-4),7)),2))",
    "io_inp": [
      5,
      -1,
      3,
      -4,
      4,
      5
    ],
    "io_out": [
      -16,
      -10,
      -2,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(add_n(input,-4),7)),2))"
  },
  {
    "input": "input : list = [-3, 0, 5, 5]\noutput : list = [5, 5, 0, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc([-3, 0, 5, 5])),22)))",
    "io_inp": [
      -3,
      0,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc(input)),22)))"
  },
  {
    "input": "input : list = [-3, -1, -4, 4, -1, -2]\noutput : list = [-5, -3, -6, 2, -3, -4]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(reverse([-3, -1, -4, 4, -1, -2]),17),-1),1))",
    "io_inp": [
      -3,
      -1,
      -4,
      4,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -6,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(reverse(input),17),-1),1))"
  },
  {
    "input": "input : list = [-1, -4, -4]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-1, -4, -4]),-4)",
    "io_inp": [
      -1,
      -4,
      -4
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-18, 10]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(mul_n([4, -3],-4),-2)),9))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -18,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(mul_n(input,-4),-2)),9))"
  },
  {
    "input": "input : list = [3, 3, 5, -1]\noutput : list = [4, 6, 0]",
    "output": "generated_output : list = sub_n(drop([3, 3, 5, -1],1),-1)",
    "io_inp": [
      3,
      3,
      5,
      -1
    ],
    "io_out": [
      4,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [21, 5, 1]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(mul_n([5, 1, 0],4),3))),-4)",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      21,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(mul_n(input,4),3))),-4)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([3, 0, -2])))",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [5, 2, -2, -5, -4]\noutput : list = [-5, -4, -2, 2, 5]",
    "output": "generated_output : list = sort_asc([5, 2, -2, -5, -4])",
    "io_inp": [
      5,
      2,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, 0, 3]\noutput : list = [-5, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_asc([-1, -5, 0, 3])))))",
    "io_inp": [
      -1,
      -5,
      0,
      3
    ],
    "io_out": [
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -3, 4, -4, 4]\noutput : list = [3, -3]",
    "output": "generated_output : list = take([3, -3, 4, -4, 4],2)",
    "io_inp": [
      3,
      -3,
      4,
      -4,
      4
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 4, -2, 3]\noutput : list = [24, 18, 3, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(add_n([-4, 4, -2, 3],-4),5)),-3))",
    "io_inp": [
      -4,
      4,
      -2,
      3
    ],
    "io_out": [
      24,
      18,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(add_n(input,-4),5)),-3))"
  },
  {
    "input": "input : list = [-3, 0, -3, 0, 1, 3]\noutput : list = [-5, -5, -2, -2, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc([-3, 0, -3, 0, 1, 3]),-2)",
    "io_inp": [
      -3,
      0,
      -3,
      0,
      1,
      3
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_asc([-4, -4, -2])))))",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -3, -1, 5, 2]\noutput : list = [-2, 0, 3, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(drop([2, -3, -1, 5, 2],1))),1))",
    "io_inp": [
      2,
      -3,
      -1,
      5,
      2
    ],
    "io_out": [
      -2,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(drop(input,1))),1))"
  },
  {
    "input": "input : list = [-3, -3, -4, 2, -2]\noutput : list = [13, 9, 9, 5, -11]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(sort_des([-3, -3, -4, 2, -2]),-4),-2),1))",
    "io_inp": [
      -3,
      -3,
      -4,
      2,
      -2
    ],
    "io_out": [
      13,
      9,
      9,
      5,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(sort_des(input),-4),-2),1))"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [-2, 5, -1]",
    "output": "generated_output : list = reverse([-1, 5, -2])",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [7, -1]",
    "output": "generated_output : list = take(take(take(take(sub_n([5, -3],-2),10),3),4),32)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(take(sub_n(input,-2),10),3),4),32)"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [-8, -8, -4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(add_n([-1, -5, -5],-3),1),3),3))",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(add_n(input,-3),1),3),3))"
  },
  {
    "input": "input : list = [5, 5, 0, -5, 5]\noutput : list = [-5, 0, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, 5, 0, -5, 5]))",
    "io_inp": [
      5,
      5,
      0,
      -5,
      5
    ],
    "io_out": [
      -5,
      0,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -5, 4, -2, 1]\noutput : list = [-17, -21, 15, -9, 3]",
    "output": "generated_output : list = add_n(mul_n([-4, -5, 4, -2, 1],4),-1)",
    "io_inp": [
      -4,
      -5,
      4,
      -2,
      1
    ],
    "io_out": [
      -17,
      -21,
      15,
      -9,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),-1)"
  },
  {
    "input": "input : list = [-5, -2, -2, -3, -1]\noutput : list = [-9, -6, -6, -7, -5]",
    "output": "generated_output : list = take(sub_n([-5, -2, -2, -3, -1],4),8)",
    "io_inp": [
      -5,
      -2,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),8)"
  },
  {
    "input": "input : list = [-1, 3, 1, 5, 4, -1]\noutput : list = [75, 60, 45, 15, -15, -15]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-1, 3, 1, 5, 4, -1]),5),3)",
    "io_inp": [
      -1,
      3,
      1,
      5,
      4,
      -1
    ],
    "io_out": [
      75,
      60,
      45,
      15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),5),3)"
  },
  {
    "input": "input : list = [-3, -1, -4, -5, -5, -4]\noutput : list = [-5, -5, -4, -4, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_asc([-3, -1, -4, -5, -5, -4])))))",
    "io_inp": [
      -3,
      -1,
      -4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -2, 1, -1, -4]\noutput : list = [25, 10, -5, 5, 20]",
    "output": "generated_output : list = mul_n([-5, -2, 1, -1, -4],-5)",
    "io_inp": [
      -5,
      -2,
      1,
      -1,
      -4
    ],
    "io_out": [
      25,
      10,
      -5,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 2, -2, 3]\noutput : list = [-6, -1, -5, 0]",
    "output": "generated_output : list = sub_n([-3, 2, -2, 3],3)",
    "io_inp": [
      -3,
      2,
      -2,
      3
    ],
    "io_out": [
      -6,
      -1,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 0, -3, 5, 2, 0]\noutput : list = [-3, 0, 0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([1, 0, -3, 5, 2, 0])",
    "io_inp": [
      1,
      0,
      -3,
      5,
      2,
      0
    ],
    "io_out": [
      -3,
      0,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2, -4, 2]\noutput : list = [7, 7, -1, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n([2, -2, -4, 2],2)),-3)))",
    "io_inp": [
      2,
      -2,
      -4,
      2
    ],
    "io_out": [
      7,
      7,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n(input,2)),-3)))"
  },
  {
    "input": "input : list = [5, 2, 2, -3, -2, -1]\noutput : list = [-1, -4, -4, -9, -8, -7]",
    "output": "generated_output : list = sub_n(add_n(add_n([5, 2, 2, -3, -2, -1],-3),2),5)",
    "io_inp": [
      5,
      2,
      2,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -9,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-3),2),5)"
  },
  {
    "input": "input : list = [-5, -5, -3, 2, -1]\noutput : list = [-2, -2, 0, 5, 2]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(reverse([-5, -5, -3, 2, -1]),7),2)),5)",
    "io_inp": [
      -5,
      -5,
      -3,
      2,
      -1
    ],
    "io_out": [
      -2,
      -2,
      0,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(reverse(input),7),2)),5)"
  },
  {
    "input": "input : list = [0, -5, -2, 5]\noutput : list = [-6]",
    "output": "generated_output : list = take(reverse(sub_n(take(drop([0, -5, -2, 5],2),1),4)),28)",
    "io_inp": [
      0,
      -5,
      -2,
      5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(drop(input,2),1),4)),28)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-8, 4]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc([-4, 2]))),2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(input))),2)"
  },
  {
    "input": "input : list = [-2, 5, -5, 0]\noutput : list = [-6, 15, -15, 0]",
    "output": "generated_output : list = mul_n(mul_n([-2, 5, -5, 0],3),1)",
    "io_inp": [
      -2,
      5,
      -5,
      0
    ],
    "io_out": [
      -6,
      15,
      -15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),1)"
  },
  {
    "input": "input : list = [2, -4, 2, -4, -1]\noutput : list = [-6, -6, -3, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(drop([2, -4, 2, -4, -1],1),-1)),-4),-5)",
    "io_inp": [
      2,
      -4,
      2,
      -4,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(drop(input,1),-1)),-4),-5)"
  },
  {
    "input": "input : list = [1, -1, -5, -1, 3]\noutput : list = [1, -1, -5, -1, 3]",
    "output": "generated_output : list = reverse(take(mul_n(take(reverse([1, -1, -5, -1, 3]),11),1),24))",
    "io_inp": [
      1,
      -1,
      -5,
      -1,
      3
    ],
    "io_out": [
      1,
      -1,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(reverse(input),11),1),24))"
  },
  {
    "input": "input : list = [1, 4, -1, -2, -3, 4]\noutput : list = [4]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(take([1, 4, -1, -2, -3, 4],1),4))),16)",
    "io_inp": [
      1,
      4,
      -1,
      -2,
      -3,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(take(input,1),4))),16)"
  },
  {
    "input": "input : list = [-2, 2, 5]\noutput : list = [4, 8, 11]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(sub_n([-2, 2, 5],-1),4)),-1))",
    "io_inp": [
      -2,
      2,
      5
    ],
    "io_out": [
      4,
      8,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(sub_n(input,-1),4)),-1))"
  },
  {
    "input": "input : list = [5, -3, 2, -5, 5, 1]\noutput : list = [-18, -12, 0, 3, 12, 12]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(sort_asc([5, -3, 2, -5, 5, 1]),3),-2)),-5)",
    "io_inp": [
      5,
      -3,
      2,
      -5,
      5,
      1
    ],
    "io_out": [
      -18,
      -12,
      0,
      3,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(sort_asc(input),3),-2)),-5)"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take([-2, -1, -2],1))",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(drop([4, 4, 1],1))),9))",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(drop(input,1))),9))"
  },
  {
    "input": "input : list = [0, 5, 4, 0, 5, -4]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = sort_asc(take(drop(sort_asc(mul_n([0, 5, 4, 0, 5, -4],-1)),3),30))",
    "io_inp": [
      0,
      5,
      4,
      0,
      5,
      -4
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(sort_asc(mul_n(input,-1)),3),30))"
  },
  {
    "input": "input : list = [-4, 2, 3, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sub_n(take([-4, 2, 3, -5],2),1)",
    "io_inp": [
      -4,
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),1)"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [0, -3, -1]",
    "output": "generated_output : list = add_n(sub_n([-1, -4, -2],1),2)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      0,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),2)"
  },
  {
    "input": "input : list = [5, -1, -2, 5, -5]\noutput : list = [-10, 2, 4, -10, 10]",
    "output": "generated_output : list = mul_n([5, -1, -2, 5, -5],-2)",
    "io_inp": [
      5,
      -1,
      -2,
      5,
      -5
    ],
    "io_out": [
      -10,
      2,
      4,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, 5, -3, -4]\noutput : list = [5, 5]",
    "output": "generated_output : list = take([5, 5, -3, -4],2)",
    "io_inp": [
      5,
      5,
      -3,
      -4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-2, 8]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(mul_n([-2, 3],-2),1)),-3))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(mul_n(input,-2),1)),-3))"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [5, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n([5, 1, 5],1),-3))))",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n(input,1),-3))))"
  },
  {
    "input": "input : list = [0, 5, 1, 2, 5]\noutput : list = [5, 5, 2, 1, 0]",
    "output": "generated_output : list = sort_des(reverse([0, 5, 1, 2, 5]))",
    "io_inp": [
      0,
      5,
      1,
      2,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [5, 2, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_asc([5, -5, 2])))),1)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(drop(sub_n([0, -2, -5],-3),2),2)),3)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(drop(sub_n(input,-3),2),2)),3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-10, -4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sort_des([-2, -5])))),2)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(add_n([-4, -5],3),-1))))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(add_n(input,3),-1))))"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [-12, 8, 16]",
    "output": "generated_output : list = mul_n([-3, 2, 4],4)",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      -12,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [3, 3, -4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(drop([3, 3, -4],1)))),-1)",
    "io_inp": [
      3,
      3,
      -4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(drop(input,1)))),-1)"
  },
  {
    "input": "input : list = [2, -1, 2]\noutput : list = [-9, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n(sort_des([2, -1, 2]),5)),-4))",
    "io_inp": [
      2,
      -1,
      2
    ],
    "io_out": [
      -9,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(sort_des(input),5)),-4))"
  },
  {
    "input": "input : list = [-3, 5, 4, -3, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(take([-3, 5, 4, -3, -5],1))",
    "io_inp": [
      -3,
      5,
      4,
      -3,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [3, 2, 2, -5]\noutput : list = [3, 2, 2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([3, 2, 2, -5])))",
    "io_inp": [
      3,
      2,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, 5, 0, 1, 1]\noutput : list = [23, 23, 7, 7, 3]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(sort_asc([5, 5, 0, 1, 1]),1)),4),-1)",
    "io_inp": [
      5,
      5,
      0,
      1,
      1
    ],
    "io_out": [
      23,
      23,
      7,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(sort_asc(input),1)),4),-1)"
  },
  {
    "input": "input : list = [2, -5, -1, 5, 5, -5]\noutput : list = [3, -4, 0, 6, 6, -4]",
    "output": "generated_output : list = add_n([2, -5, -1, 5, 5, -5],1)",
    "io_inp": [
      2,
      -5,
      -1,
      5,
      5,
      -5
    ],
    "io_out": [
      3,
      -4,
      0,
      6,
      6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [45, -5]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc([0, -2]),5),-5),5)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      45,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(input),5),-5),5)"
  },
  {
    "input": "input : list = [-3, -3, 4, 3, -2]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(mul_n([-3, -3, 4, 3, -2],-1))),2),2)",
    "io_inp": [
      -3,
      -3,
      4,
      3,
      -2
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(mul_n(input,-1))),2),2)"
  },
  {
    "input": "input : list = [-5, -3, -3, 5, 0, 3]\noutput : list = [13, 9, 3, -3, -3, -7]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(add_n([-5, -3, -3, 5, 0, 3],4),2),-5)))",
    "io_inp": [
      -5,
      -3,
      -3,
      5,
      0,
      3
    ],
    "io_out": [
      13,
      9,
      3,
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(add_n(input,4),2),-5)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-1, 6]",
    "output": "generated_output : list = add_n(sub_n(add_n([-2, 5],3),-3),-5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,3),-3),-5)"
  },
  {
    "input": "input : list = [4, 1, -4, 1, -5]\noutput : list = [-9, -8, -3, -3, 0]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(sub_n([4, 1, -4, 1, -5],4)),31)))",
    "io_inp": [
      4,
      1,
      -4,
      1,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(sub_n(input,4)),31)))"
  },
  {
    "input": "input : list = [-1, 2, -2, -2]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(take([-1, 2, -2, -2],1),-2),-3)))",
    "io_inp": [
      -1,
      2,
      -2,
      -2
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(take(input,1),-2),-3)))"
  },
  {
    "input": "input : list = [1, 3, -2, 3]\noutput : list = [10, 10, 8, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(sub_n([1, 3, -2, 3],-2)))),-5)",
    "io_inp": [
      1,
      3,
      -2,
      3
    ],
    "io_out": [
      10,
      10,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(sub_n(input,-2)))),-5)"
  },
  {
    "input": "input : list = [5, 2, -3, -5, -1, -5]\noutput : list = [-15, -15, -13, -11, -8, -5]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(sub_n([5, 2, -3, -5, -1, -5],5)),5),33),35)",
    "io_inp": [
      5,
      2,
      -3,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -15,
      -15,
      -13,
      -11,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(sub_n(input,5)),5),33),35)"
  },
  {
    "input": "input : list = [-1, -1, 5, -2, 3]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(drop(sort_asc([-1, -1, 5, -2, 3]),3),10)",
    "io_inp": [
      -1,
      -1,
      5,
      -2,
      3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(input),3),10)"
  },
  {
    "input": "input : list = [2, -4, -5, -3]\noutput : list = [4, -1, -2, -3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc([2, -4, -5, -3])),-3)),-5)",
    "io_inp": [
      2,
      -4,
      -5,
      -3
    ],
    "io_out": [
      4,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc(input)),-3)),-5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-6, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(take(add_n([4, -3],-3),15),5)))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(add_n(input,-3),15),5)))"
  },
  {
    "input": "input : list = [2, 5, -3, -1, 1]\noutput : list = [1, 3, 5, 6, 9]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([2, 5, -3, -1, 1],4)))",
    "io_inp": [
      2,
      5,
      -3,
      -1,
      1
    ],
    "io_out": [
      1,
      3,
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,4)))"
  },
  {
    "input": "input : list = [-4, 5, -3, -2, 1]\noutput : list = [0, 1, 2, 5, 9]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(mul_n([-4, 5, -3, -2, 1],1)))),-4)",
    "io_inp": [
      -4,
      5,
      -3,
      -2,
      1
    ],
    "io_out": [
      0,
      1,
      2,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(mul_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [1, 5, 3]\noutput : list = [6, 8, 10]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sort_asc([1, 5, 3]),16),5),13))",
    "io_inp": [
      1,
      5,
      3
    ],
    "io_out": [
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sort_asc(input),16),5),13))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [12, 15]",
    "output": "generated_output : list = mul_n(sort_des([-5, -4]),-3)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-5, 2, -2, 0]\noutput : list = [-5, -8]",
    "output": "generated_output : list = drop(sub_n(sort_des(take(reverse([-5, 2, -2, 0]),10)),3),2)",
    "io_inp": [
      -5,
      2,
      -2,
      0
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = drop(sub_n(sort_des(take(reverse(input),10)),3),2)"
  },
  {
    "input": "input : list = [0, -4, -1, -4, -2]\noutput : list = [-1, -5, -2, -5, -3]",
    "output": "generated_output : list = add_n([0, -4, -1, -4, -2],-1)",
    "io_inp": [
      0,
      -4,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -5,
      -2,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 4, -1, -1, 0, -4]\noutput : list = [-15, -6, -6, -3, 0, 9]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(sub_n([1, 4, -1, -1, 0, -4],1),6),26),3))",
    "io_inp": [
      1,
      4,
      -1,
      -1,
      0,
      -4
    ],
    "io_out": [
      -15,
      -6,
      -6,
      -3,
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(sub_n(input,1),6),26),3))"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(take([0, 2, -2],1),2),22),3),2)",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(take(input,1),2),22),3),2)"
  },
  {
    "input": "input : list = [-4, -2, -4, -5, -3, -3]\noutput : list = [-2, 0, -2, -3, -1, -1]",
    "output": "generated_output : list = sub_n([-4, -2, -4, -5, -3, -3],-2)",
    "io_inp": [
      -4,
      -2,
      -4,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -2,
      0,
      -2,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, 5, -1, -2, 3]\noutput : list = [-4, -3, 0, 1, 3]",
    "output": "generated_output : list = sub_n(sort_asc([2, 5, -1, -2, 3]),2)",
    "io_inp": [
      2,
      5,
      -1,
      -2,
      3
    ],
    "io_out": [
      -4,
      -3,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [0, 2]",
    "output": "generated_output : list = add_n([3, 5],-3)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -4, -3, 5, -5]\noutput : list = [-5, -4, -3, -3, 5]",
    "output": "generated_output : list = reverse(take(take(reverse(sort_asc([-3, -4, -3, 5, -5])),32),21))",
    "io_inp": [
      -3,
      -4,
      -3,
      5,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(sort_asc(input)),32),21))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [9, -12]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(reverse([-3, 4])),-3)),11)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      9,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(reverse(input)),-3)),11)"
  },
  {
    "input": "input : list = [2, 1, 4, -1, 2]\noutput : list = [1, 3, 4, 4, 6]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc([2, 1, 4, -1, 2]),1),21),-1)",
    "io_inp": [
      2,
      1,
      4,
      -1,
      2
    ],
    "io_out": [
      1,
      3,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(input),1),21),-1)"
  },
  {
    "input": "input : list = [-4, 1, 5, 3, -3]\noutput : list = [6, 2, 1]",
    "output": "generated_output : list = sub_n(drop(take(drop(sort_des([-4, 1, 5, 3, -3]),1),6),1),-5)",
    "io_inp": [
      -4,
      1,
      5,
      3,
      -3
    ],
    "io_out": [
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(take(drop(sort_des(input),1),6),1),-5)"
  },
  {
    "input": "input : list = [2, -1, 4, 5]\noutput : list = [-15, -12, -6, 3]",
    "output": "generated_output : list = sort_asc(mul_n([2, -1, 4, 5],-3))",
    "io_inp": [
      2,
      -1,
      4,
      5
    ],
    "io_out": [
      -15,
      -12,
      -6,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [50, 10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(mul_n([-5, -1],-5),11),2)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      50,
      10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(mul_n(input,-5),11),2)))"
  },
  {
    "input": "input : list = [4, 2, 4, 0, 0, 2]\noutput : list = [-12, -8, -12, -4, -4, -8]",
    "output": "generated_output : list = add_n(add_n(mul_n([4, 2, 4, 0, 0, 2],-2),-1),-3)",
    "io_inp": [
      4,
      2,
      4,
      0,
      0,
      2
    ],
    "io_out": [
      -12,
      -8,
      -12,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,-2),-1),-3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [6, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(sub_n([-2, 1],-5),1)),-3))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(sub_n(input,-5),1)),-3))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse([1, 1]),-1)))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(input),-1)))"
  },
  {
    "input": "input : list = [-5, 4, 5, 2, 5]\noutput : list = [-14, -5]",
    "output": "generated_output : list = add_n(add_n(take(reverse(mul_n([-5, 4, 5, 2, 5],-3)),2),-3),4)",
    "io_inp": [
      -5,
      4,
      5,
      2,
      5
    ],
    "io_out": [
      -14,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(mul_n(input,-3)),2),-3),4)"
  },
  {
    "input": "input : list = [5, -2, 1, 4, -3, -4]\noutput : list = [20, 16, 4, -8, -12, -16]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([5, -2, 1, 4, -3, -4],4)))",
    "io_inp": [
      5,
      -2,
      1,
      4,
      -3,
      -4
    ],
    "io_out": [
      20,
      16,
      4,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,4)))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = mul_n(sort_asc([2, 0]),-2)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [3, -3, -4]\noutput : list = [9, 3, 2]",
    "output": "generated_output : list = add_n(sub_n(add_n([3, -3, -4],-3),-4),5)",
    "io_inp": [
      3,
      -3,
      -4
    ],
    "io_out": [
      9,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,-3),-4),5)"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [1, -2]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(drop([5, 0, -3],1)),1),19))",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(drop(input,1)),1),19))"
  },
  {
    "input": "input : list = [2, -2, -4, 4, 1, 1]\noutput : list = [-6, 2, 6, -10, -4, -4]",
    "output": "generated_output : list = add_n(add_n(mul_n([2, -2, -4, 4, 1, 1],-2),-4),2)",
    "io_inp": [
      2,
      -2,
      -4,
      4,
      1,
      1
    ],
    "io_out": [
      -6,
      2,
      6,
      -10,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,-2),-4),2)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-30, -15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sub_n([0, -5],5),1))),3)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sub_n(input,5),1))),3)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-1, 8]",
    "output": "generated_output : list = add_n(take(add_n(add_n([-5, 4],5),-5),6),4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -1,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(input,5),-5),6),4)"
  },
  {
    "input": "input : list = [-1, -1, -1, 2, 5, 1]\noutput : list = [10, 7, 6, 4, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(drop([-1, -1, -1, 2, 5, 1],1),4)),-1))",
    "io_inp": [
      -1,
      -1,
      -1,
      2,
      5,
      1
    ],
    "io_out": [
      10,
      7,
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(drop(input,1),4)),-1))"
  },
  {
    "input": "input : list = [0, -2, -3, -5]\noutput : list = [-1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des(sort_asc([0, -2, -3, -5])),-4)))",
    "io_inp": [
      0,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-1, -9]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(sort_asc([-3, 5])),4),2),-4)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(sort_asc(input)),4),2),-4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_asc([1, 1]),-4),5),1))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_asc(input),-4),5),1))"
  },
  {
    "input": "input : list = [-3, 0, 2, 3]\noutput : list = [-7, -4]",
    "output": "generated_output : list = take(take(sub_n([-3, 0, 2, 3],4),15),2)",
    "io_inp": [
      -3,
      0,
      2,
      3
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,4),15),2)"
  },
  {
    "input": "input : list = [0, -5, -3, -5]\noutput : list = [3, 3, 9, 18]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sort_des([0, -5, -3, -5])),-5),1),3)",
    "io_inp": [
      0,
      -5,
      -3,
      -5
    ],
    "io_out": [
      3,
      3,
      9,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sort_des(input)),-5),1),3)"
  },
  {
    "input": "input : list = [2, -4, 5, -3]\noutput : list = [-2, 6, -3]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(drop([2, -4, 5, -3],1),1),-5),-5))",
    "io_inp": [
      2,
      -4,
      5,
      -3
    ],
    "io_out": [
      -2,
      6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(drop(input,1),1),-5),-5))"
  },
  {
    "input": "input : list = [0, 1, 3, 3, -5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(drop(sort_asc(mul_n(add_n([0, 1, 3, 3, -5],2),1)),4),-4)",
    "io_inp": [
      0,
      1,
      3,
      3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_asc(mul_n(add_n(input,2),1)),4),-4)"
  },
  {
    "input": "input : list = [2, -3, -2, -5, -1, 2]\noutput : list = [-2, -5, -9, -6, -7, -2]",
    "output": "generated_output : list = add_n(reverse(take(sub_n([2, -3, -2, -5, -1, 2],3),20)),-1)",
    "io_inp": [
      2,
      -3,
      -2,
      -5,
      -1,
      2
    ],
    "io_out": [
      -2,
      -5,
      -9,
      -6,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(input,3),20)),-1)"
  },
  {
    "input": "input : list = [-5, -3, 0, 4, -2, 0]\noutput : list = [8, 4, 4, 2, 1, -1]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(sort_des([-5, -3, 0, 4, -2, 0])),4)),18)",
    "io_inp": [
      -5,
      -3,
      0,
      4,
      -2,
      0
    ],
    "io_out": [
      8,
      4,
      4,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(sort_des(input)),4)),18)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [-20, 20]",
    "output": "generated_output : list = mul_n(drop([-1, -5, 5],1),4)",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [0, -3, -1, 5, -1]\noutput : list = [-6, -16]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(add_n([0, -3, -1, 5, -1],3)),-2),2))",
    "io_inp": [
      0,
      -3,
      -1,
      5,
      -1
    ],
    "io_out": [
      -6,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(add_n(input,3)),-2),2))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des([-3, 0])),5)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [4, 4, 0, -2]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take([4, 4, 0, -2],2),1)))",
    "io_inp": [
      4,
      4,
      0,
      -2
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(input,2),1)))"
  },
  {
    "input": "input : list = [-2, -1, 4, 0, 5]\noutput : list = [8, 7, 3, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(sort_asc([-2, -1, 4, 0, 5]),1)),-3))",
    "io_inp": [
      -2,
      -1,
      4,
      0,
      5
    ],
    "io_out": [
      8,
      7,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(sort_asc(input),1)),-3))"
  },
  {
    "input": "input : list = [-5, -2, -3, 2, 5]\noutput : list = [5, 2, -2, -3]",
    "output": "generated_output : list = sort_des(drop([-5, -2, -3, 2, 5],1))",
    "io_inp": [
      -5,
      -2,
      -3,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-1, -9]",
    "output": "generated_output : list = reverse(reverse(sub_n([4, -4],5)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -1,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,5)))"
  },
  {
    "input": "input : list = [4, 5, -4, 4, 1]\noutput : list = [7, 8, -1, 7, 4]",
    "output": "generated_output : list = sub_n([4, 5, -4, 4, 1],-3)",
    "io_inp": [
      4,
      5,
      -4,
      4,
      1
    ],
    "io_out": [
      7,
      8,
      -1,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, -5, -3, 4]\noutput : list = [-10, -2, -4, -11]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([3, -5, -3, 4],-1),5),2)",
    "io_inp": [
      3,
      -5,
      -3,
      4
    ],
    "io_out": [
      -10,
      -2,
      -4,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,-1),5),2)"
  },
  {
    "input": "input : list = [-1, -1, -1, 0, 4]\noutput : list = [4, 0, -1, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_des([-1, -1, -1, 0, 4])))))",
    "io_inp": [
      -1,
      -1,
      -1,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, 2, -1, 4, 4]\noutput : list = [-24, 16, -8, 32, 32]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(mul_n([-3, 2, -1, 4, 4],4),4),-4),20),2)",
    "io_inp": [
      -3,
      2,
      -1,
      4,
      4
    ],
    "io_out": [
      -24,
      16,
      -8,
      32,
      32
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(mul_n(input,4),4),-4),20),2)"
  },
  {
    "input": "input : list = [2, 1, -5, 5]\noutput : list = [10, 7, 6, 0]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(sub_n([2, 1, -5, 5],3),-5)),3),29)",
    "io_inp": [
      2,
      1,
      -5,
      5
    ],
    "io_out": [
      10,
      7,
      6,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(sub_n(input,3),-5)),3),29)"
  },
  {
    "input": "input : list = [-1, 2, -1, 1]\noutput : list = [-4, -8, -2, -8]",
    "output": "generated_output : list = add_n(add_n(reverse(take(mul_n([-1, 2, -1, 1],2),16)),-2),-4)",
    "io_inp": [
      -1,
      2,
      -1,
      1
    ],
    "io_out": [
      -4,
      -8,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(mul_n(input,2),16)),-2),-4)"
  },
  {
    "input": "input : list = [-2, -1, -2, -4]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(take([-2, -1, -2, -4],1)),4)))",
    "io_inp": [
      -2,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(take(input,1)),4)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n([-3, -1],3)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [-5, 2, 1]",
    "output": "generated_output : list = take(sub_n([-2, 5, 4],3),10)",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      -5,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),10)"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [12, -12, -12]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(sort_des([-5, 3, -5]),5),-3),3),-3)",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(sort_des(input),5),-3),3),-3)"
  },
  {
    "input": "input : list = [3, -1, -2, -4, -3]\noutput : list = [21, 17, 13, 9, -7]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse([3, -1, -2, -4, -3])),-4),32),-5)",
    "io_inp": [
      3,
      -1,
      -2,
      -4,
      -3
    ],
    "io_out": [
      21,
      17,
      13,
      9,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse(input)),-4),32),-5)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [11, 20]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(add_n([-4, 5],3),4),1),-3),-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      11,
      20
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(add_n(input,3),4),1),-3),-5)"
  },
  {
    "input": "input : list = [4, -2, 4, 3, 5]\noutput : list = [15, -60, -75, -75, -90]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(reverse([4, -2, 4, 3, 5]),3)),-3),-5)",
    "io_inp": [
      4,
      -2,
      4,
      3,
      5
    ],
    "io_out": [
      15,
      -60,
      -75,
      -75,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(reverse(input),3)),-3),-5)"
  },
  {
    "input": "input : list = [0, 0, 2, 0, 4, 5]\noutput : list = [0, 0, 0, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([0, 0, 2, 0, 4, 5])))",
    "io_inp": [
      0,
      0,
      2,
      0,
      4,
      5
    ],
    "io_out": [
      0,
      0,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [2, -2, -5, -3]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = sort_des(drop([2, -2, -5, -3],1))",
    "io_inp": [
      2,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [4, 5, -2, -1, 0, -3]\noutput : list = [-1, 0, 1, -2]",
    "output": "generated_output : list = sub_n(drop([4, 5, -2, -1, 0, -3],2),-1)",
    "io_inp": [
      4,
      5,
      -2,
      -1,
      0,
      -3
    ],
    "io_out": [
      -1,
      0,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [6, 9]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc([5, 2]),-1),1),1),-3)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc(input),-1),1),1),-3)"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [0, -4, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([-3, 0, -1],4)))",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      0,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,4)))"
  },
  {
    "input": "input : list = [1, 4, 2, 2, -1, 2]\noutput : list = [-2, -8, -4, -4, 2, -4]",
    "output": "generated_output : list = take(take(reverse(mul_n(reverse([1, 4, 2, 2, -1, 2]),-2)),29),17)",
    "io_inp": [
      1,
      4,
      2,
      2,
      -1,
      2
    ],
    "io_out": [
      -2,
      -8,
      -4,
      -4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(reverse(input),-2)),29),17)"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [-9, -9, 3]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse([-1, -1, -5])),-4),-3)",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(input)),-4),-3)"
  },
  {
    "input": "input : list = [2, 5, 0, 0, 1]\noutput : list = [-20, -8, -4, 0, 0]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(mul_n([2, 5, 0, 0, 1],-4)))),24)",
    "io_inp": [
      2,
      5,
      0,
      0,
      1
    ],
    "io_out": [
      -20,
      -8,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(mul_n(input,-4)))),24)"
  },
  {
    "input": "input : list = [2, 5, 2, 5]\noutput : list = [0, 9, 0, 9]",
    "output": "generated_output : list = take(mul_n(add_n([2, 5, 2, 5],-2),3),26)",
    "io_inp": [
      2,
      5,
      2,
      5
    ],
    "io_out": [
      0,
      9,
      0,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-2),3),26)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [-3, -6, -9]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(sort_des([1, -5, -2]),-4))))",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [-1, 2, 1, 0, 4]\noutput : list = [4, 2, 1, 0, -1]",
    "output": "generated_output : list = sort_des([-1, 2, 1, 0, 4])",
    "io_inp": [
      -1,
      2,
      1,
      0,
      4
    ],
    "io_out": [
      4,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, 1]\noutput : list = [-32, -24, -8]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(sort_des([-2, -1, 1])),-2),-4),-4)",
    "io_inp": [
      -2,
      -1,
      1
    ],
    "io_out": [
      -32,
      -24,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(sort_des(input)),-2),-4),-4)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [7, 6]",
    "output": "generated_output : list = sort_des(sub_n(drop([-1, 5, 4],1),-2))",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),-2))"
  },
  {
    "input": "input : list = [-3, 0, -4, 2, -3]\noutput : list = [9, 8, 8, 5, 3]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(sort_des([-3, 0, -4, 2, -3]),-1)),5))",
    "io_inp": [
      -3,
      0,
      -4,
      2,
      -3
    ],
    "io_out": [
      9,
      8,
      8,
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(sort_des(input),-1)),5))"
  },
  {
    "input": "input : list = [-1, -1, 0, -3, 2, -4]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_des(take(sort_des(take([-1, -1, 0, -3, 2, -4],1)),29)),2)",
    "io_inp": [
      -1,
      -1,
      0,
      -3,
      2,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(take(input,1)),29)),2)"
  },
  {
    "input": "input : list = [-4, -2, 4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = drop([-4, -2, 4, -1],2)",
    "io_inp": [
      -4,
      -2,
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [6, 2]",
    "output": "generated_output : list = sub_n(sort_des([-3, 1]),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-3, 4, -2, -1]\noutput : list = [-9, 12, -6, -3]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(mul_n([-3, 4, -2, -1],1),8)),3))",
    "io_inp": [
      -3,
      4,
      -2,
      -1
    ],
    "io_out": [
      -9,
      12,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(mul_n(input,1),8)),3))"
  },
  {
    "input": "input : list = [-2, 4, 3, 1, -5]\noutput : list = [4, 3, 1, -5]",
    "output": "generated_output : list = drop([-2, 4, 3, 1, -5],1)",
    "io_inp": [
      -2,
      4,
      3,
      1,
      -5
    ],
    "io_out": [
      4,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -3, -5, -4]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(take([-5, -3, -5, -4],2))",
    "io_inp": [
      -5,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [3, 2, 3, 0, -3]\noutput : list = [5, 4, 5, 2, -1]",
    "output": "generated_output : list = add_n(reverse(reverse([3, 2, 3, 0, -3])),2)",
    "io_inp": [
      3,
      2,
      3,
      0,
      -3
    ],
    "io_out": [
      5,
      4,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),2)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-9, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-1, -4]),5))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [-4, -5, 5, -1, -3]\noutput : list = [-15, -20, 30, 0, -10]",
    "output": "generated_output : list = mul_n(take(add_n([-4, -5, 5, -1, -3],1),18),5)",
    "io_inp": [
      -4,
      -5,
      5,
      -1,
      -3
    ],
    "io_out": [
      -15,
      -20,
      30,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,1),18),5)"
  },
  {
    "input": "input : list = [-2, 4, -3, 2]\noutput : list = [-20, 10]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(take([-2, 4, -3, 2],2),-5),5)))",
    "io_inp": [
      -2,
      4,
      -3,
      2
    ],
    "io_out": [
      -20,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(take(input,2),-5),5)))"
  },
  {
    "input": "input : list = [2, -4, -5, -5]\noutput : list = [-9, -9, -8, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(sub_n([2, -4, -5, -5],5)))),-1)",
    "io_inp": [
      2,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(sub_n(input,5)))),-1)"
  },
  {
    "input": "input : list = [5, 0, 5, 3, 0, 2]\noutput : list = [20, 20, 14, 11, 5, 5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(mul_n([5, 0, 5, 3, 0, 2],3),5))))",
    "io_inp": [
      5,
      0,
      5,
      3,
      0,
      2
    ],
    "io_out": [
      20,
      20,
      14,
      11,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(mul_n(input,3),5))))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-10, 20]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(sub_n([3, -3],-1),12),-5),-1))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -10,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(sub_n(input,-1),12),-5),-1))"
  },
  {
    "input": "input : list = [1, 4, -1, 1]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 4, -1, 1],1)",
    "io_inp": [
      1,
      4,
      -1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [4, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n([-2, 3, -1],-1))",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-2, -5, 3, 5, 2]\noutput : list = [5, 3, 2, -2, -5]",
    "output": "generated_output : list = sort_des([-2, -5, 3, 5, 2])",
    "io_inp": [
      -2,
      -5,
      3,
      5,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 4, 4, 0, 2, 4]\noutput : list = [5, 9, 9, 8]",
    "output": "generated_output : list = sub_n(reverse(take([3, 4, 4, 0, 2, 4],4)),-5)",
    "io_inp": [
      3,
      4,
      4,
      0,
      2,
      4
    ],
    "io_out": [
      5,
      9,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,4)),-5)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [-9, -9, -5]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des([-2, 0, -2]),2)),-5)",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(input),2)),-5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(add_n([2, 2],-1)),5)))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(add_n(input,-1)),5)))"
  },
  {
    "input": "input : list = [1, 3, 2, 3, 5, -4]\noutput : list = [-2, 0, -1, 0, 2, -7]",
    "output": "generated_output : list = add_n(take(mul_n([1, 3, 2, 3, 5, -4],1),14),-3)",
    "io_inp": [
      1,
      3,
      2,
      3,
      5,
      -4
    ],
    "io_out": [
      -2,
      0,
      -1,
      0,
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,1),14),-3)"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = sub_n(reverse([-2, 0, 0]),-1)",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [9, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(drop([-2, -5, 5],1),-5)),-5),-4)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      9,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(drop(input,1),-5)),-5),-4)"
  },
  {
    "input": "input : list = [-5, -5, 0, -1]\noutput : list = [4, 0, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n([-5, -5, 0, -1],1)),4))",
    "io_inp": [
      -5,
      -5,
      0,
      -1
    ],
    "io_out": [
      4,
      0,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(input,1)),4))"
  },
  {
    "input": "input : list = [3, -1, -5]\noutput : list = [3, -1, -5]",
    "output": "generated_output : list = sort_des(sort_asc([3, -1, -5]))",
    "io_inp": [
      3,
      -1,
      -5
    ],
    "io_out": [
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 4, -3, -2]\noutput : list = [5, 0, -1, -2]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sub_n([-1, 4, -3, -2],-3))),1),2)",
    "io_inp": [
      -1,
      4,
      -3,
      -2
    ],
    "io_out": [
      5,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sub_n(input,-3))),1),2)"
  },
  {
    "input": "input : list = [-4, 0, -2, 1]\noutput : list = [-4, -2, 0, 1]",
    "output": "generated_output : list = mul_n(take(sort_des(take(mul_n([-4, 0, -2, 1],-1),9)),11),-1)",
    "io_inp": [
      -4,
      0,
      -2,
      1
    ],
    "io_out": [
      -4,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(mul_n(input,-1),9)),11),-1)"
  },
  {
    "input": "input : list = [3, 5, 3, 5, -3]\noutput : list = [5, 5, 3, 3, -3]",
    "output": "generated_output : list = sort_des([3, 5, 3, 5, -3])",
    "io_inp": [
      3,
      5,
      3,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5, -4, -2, -4, -4]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(reverse(take(take([0, 5, -4, -2, -4, -4],1),6)),-2)",
    "io_inp": [
      0,
      5,
      -4,
      -2,
      -4,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(input,1),6)),-2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_asc([2, 2]),-4)),-1))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_asc(input),-4)),-1))"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [-5, 1, 1]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc([-2, 4, 4]),-5),-3),-5)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(input),-5),-3),-5)"
  },
  {
    "input": "input : list = [1, 3, 3]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = sub_n(sub_n(reverse([1, 3, 3]),3),-1)",
    "io_inp": [
      1,
      3,
      3
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),3),-1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = reverse([3, 0])",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, 0, 0, -3]\noutput : list = [20, 0, 0, -15, -20]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse([4, -4, 0, 0, -3]),5)),22)",
    "io_inp": [
      4,
      -4,
      0,
      0,
      -3
    ],
    "io_out": [
      20,
      0,
      0,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(input),5)),22)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [0, 25, 20]",
    "output": "generated_output : list = mul_n([0, 5, 4],5)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      0,
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, -5, -2, -1]\noutput : list = [-14, -11, -10, -4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(reverse([5, -5, -2, -1]),22),4),5))",
    "io_inp": [
      5,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -14,
      -11,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(reverse(input),22),4),5))"
  },
  {
    "input": "input : list = [3, -4, 2, 5]\noutput : list = [6, 4, 3, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des([3, -4, 2, 5])),-1))",
    "io_inp": [
      3,
      -4,
      2,
      5
    ],
    "io_out": [
      6,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(input)),-1))"
  },
  {
    "input": "input : list = [2, 2, -3, 1, 2]\noutput : list = [5, 5, 5, 4, 0]",
    "output": "generated_output : list = sort_des(add_n([2, 2, -3, 1, 2],3))",
    "io_inp": [
      2,
      2,
      -3,
      1,
      2
    ],
    "io_out": [
      5,
      5,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, 1, 3, -5, -3]\noutput : list = [-7, -1, 1]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(take([-5, 1, 3, -5, -3],3)),3),-5))",
    "io_inp": [
      -5,
      1,
      3,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(take(input,3)),3),-5))"
  },
  {
    "input": "input : list = [0, -1, -2, -1]\noutput : list = [-12, -3, 6, -3]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(mul_n([0, -1, -2, -1],-3),-4),5),5),3)",
    "io_inp": [
      0,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -12,
      -3,
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(mul_n(input,-3),-4),5),5),3)"
  },
  {
    "input": "input : list = [-4, -3, 4, 1, 4, -4]\noutput : list = [5, -3, 0, -3, 4, 5]",
    "output": "generated_output : list = reverse(add_n(take(take(mul_n([-4, -3, 4, 1, 4, -4],-1),27),10),1))",
    "io_inp": [
      -4,
      -3,
      4,
      1,
      4,
      -4
    ],
    "io_out": [
      5,
      -3,
      0,
      -3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(mul_n(input,-1),27),10),1))"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse(drop([0, -1, 3],1))",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [2, -5, -3, 5, 3]\noutput : list = [25, 15, 10, -15, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_asc([2, -5, -3, 5, 3]))),5))",
    "io_inp": [
      2,
      -5,
      -3,
      5,
      3
    ],
    "io_out": [
      25,
      15,
      10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [0, 0, -5, -1, -3]\noutput : list = [15, 9, 3, 0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([0, 0, -5, -1, -3])),-3)",
    "io_inp": [
      0,
      0,
      -5,
      -1,
      -3
    ],
    "io_out": [
      15,
      9,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-1, -4, -2, -2]\noutput : list = [0, 0, -16]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(drop([-1, -4, -2, -2],1),-2)),-4),-2)",
    "io_inp": [
      -1,
      -4,
      -2,
      -2
    ],
    "io_out": [
      0,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(drop(input,1),-2)),-4),-2)"
  },
  {
    "input": "input : list = [1, -3, 1, 2, -5, -3]\noutput : list = [-7, -3, -3, 5, 5, 7]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_asc(mul_n([1, -3, 1, 2, -5, -3],2)),3),-3),-3)",
    "io_inp": [
      1,
      -3,
      1,
      2,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -3,
      -3,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_asc(mul_n(input,2)),3),-3),-3)"
  },
  {
    "input": "input : list = [2, -4, 0, 3, 2, -3]\noutput : list = [-12, -11, -8, -6, -6, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([2, -4, 0, 3, 2, -3]),4),4)",
    "io_inp": [
      2,
      -4,
      0,
      3,
      2,
      -3
    ],
    "io_out": [
      -12,
      -11,
      -8,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),4),4)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-3, -13]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(sub_n([-5, 5],5)))),-3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -3,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(sub_n(input,5)))),-3)"
  },
  {
    "input": "input : list = [5, 1, -3, 3, 1]\noutput : list = [8, 4]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(take([5, 1, -3, 3, 1],2)),-3),24))",
    "io_inp": [
      5,
      1,
      -3,
      3,
      1
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(take(input,2)),-3),24))"
  },
  {
    "input": "input : list = [-2, -1, -1, 1, -5, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n(take([-2, -1, -1, 1, -5, -2],1),2),-3),-2))",
    "io_inp": [
      -2,
      -1,
      -1,
      1,
      -5,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(take(input,1),2),-3),-2))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([0, 0]),-4),4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-4),4)"
  },
  {
    "input": "input : list = [-2, 0, -3, 3]\noutput : list = [-14, -11, -5, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(sort_asc([-2, 0, -3, 3]),3))),-5)",
    "io_inp": [
      -2,
      0,
      -3,
      3
    ],
    "io_out": [
      -14,
      -11,
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(sort_asc(input),3))),-5)"
  },
  {
    "input": "input : list = [2, -2, -5, -3]\noutput : list = [-5, -3, -2, 2]",
    "output": "generated_output : list = sort_asc([2, -2, -5, -3])",
    "io_inp": [
      2,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [6, 4, 2]",
    "output": "generated_output : list = add_n([2, 0, -2],4)",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, -2, 1, -3]\noutput : list = [-3, 1, -2]",
    "output": "generated_output : list = reverse(drop([4, -2, 1, -3],1))",
    "io_inp": [
      4,
      -2,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, -5, -1, -5, 5]\noutput : list = [-16, 2, 14, 14, 14]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(mul_n([-5, -5, -1, -5, 5],-3),1))),1)",
    "io_inp": [
      -5,
      -5,
      -1,
      -5,
      5
    ],
    "io_out": [
      -16,
      2,
      14,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(mul_n(input,-3),1))),1)"
  },
  {
    "input": "input : list = [3, 0, 1, 0, 0]\noutput : list = [-4, -4, -4, -7, -13]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(mul_n([3, 0, 1, 0, 0],-3),4),26)))",
    "io_inp": [
      3,
      0,
      1,
      0,
      0
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(mul_n(input,-3),4),26)))"
  },
  {
    "input": "input : list = [0, 5, 0, -3, 3, 3]\noutput : list = [0, -30]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(mul_n([0, 5, 0, -3, 3, 3],3),-2),2)))",
    "io_inp": [
      0,
      5,
      0,
      -3,
      3,
      3
    ],
    "io_out": [
      0,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(mul_n(input,3),-2),2)))"
  },
  {
    "input": "input : list = [-2, 1, 5, 2]\noutput : list = [2, -7, -10, -19]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(mul_n([-2, 1, 5, 2],-3)),13),4))",
    "io_inp": [
      -2,
      1,
      5,
      2
    ],
    "io_out": [
      2,
      -7,
      -10,
      -19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(mul_n(input,-3)),13),4))"
  },
  {
    "input": "input : list = [-1, -2, -4, 4, -5, -3]\noutput : list = [-3, 9, 11, 13, 15]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(drop([-1, -2, -4, 4, -5, -3],1))),-2),5)",
    "io_inp": [
      -1,
      -2,
      -4,
      4,
      -5,
      -3
    ],
    "io_out": [
      -3,
      9,
      11,
      13,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(drop(input,1))),-2),5)"
  },
  {
    "input": "input : list = [-5, -5, -1, -3]\noutput : list = [-1, -3, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -5, -1, -3])",
    "io_inp": [
      -5,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, 3, 1]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(drop(take(reverse(sort_des([-4, 4, 3, 1])),5),2))",
    "io_inp": [
      -4,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(take(reverse(sort_des(input)),5),2))"
  },
  {
    "input": "input : list = [-1, -2, -4, -2, 5]\noutput : list = [-7, -9, -13, -9, 5]",
    "output": "generated_output : list = sub_n(mul_n([-1, -2, -4, -2, 5],2),5)",
    "io_inp": [
      -1,
      -2,
      -4,
      -2,
      5
    ],
    "io_out": [
      -7,
      -9,
      -13,
      -9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),5)"
  },
  {
    "input": "input : list = [-5, -5, 3, 0, 3, -2]\noutput : list = [6, 1, 4, 1, 9, 9]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(add_n([-5, -5, 3, 0, 3, -2],-3)),36),-1),-1)",
    "io_inp": [
      -5,
      -5,
      3,
      0,
      3,
      -2
    ],
    "io_out": [
      6,
      1,
      4,
      1,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(add_n(input,-3)),36),-1),-1)"
  },
  {
    "input": "input : list = [5, -5, 1, 1, 0, 4]\noutput : list = [36, -4, -12, -12, -36, -44]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(sort_des([5, -5, 1, 1, 0, 4]),-4),-2)),2)",
    "io_inp": [
      5,
      -5,
      1,
      1,
      0,
      4
    ],
    "io_out": [
      36,
      -4,
      -12,
      -12,
      -36,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(sort_des(input),-4),-2)),2)"
  },
  {
    "input": "input : list = [2, 4, 4, 4]\noutput : list = [-1, 1, 1, 1]",
    "output": "generated_output : list = sub_n([2, 4, 4, 4],3)",
    "io_inp": [
      2,
      4,
      4,
      4
    ],
    "io_out": [
      -1,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, 3, -5, 5, 1]\noutput : list = [20, 20, -20]",
    "output": "generated_output : list = sub_n(sort_des(drop(mul_n(reverse([-5, 3, -5, 5, 1]),-5),2)),5)",
    "io_inp": [
      -5,
      3,
      -5,
      5,
      1
    ],
    "io_out": [
      20,
      20,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(mul_n(reverse(input),-5),2)),5)"
  },
  {
    "input": "input : list = [5, -3, 4, -4, -4, -2]\noutput : list = [-4, -4, -3, 4, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(add_n([5, -3, 4, -4, -4, -2],3),5)),3))",
    "io_inp": [
      5,
      -3,
      4,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(add_n(input,3),5)),3))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [10, -6]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(reverse([-3, 5]))),-2),-2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(reverse(input))),-2),-2)"
  },
  {
    "input": "input : list = [1, 1, -3, 1, -4, -5]\noutput : list = [2, 2, 2, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n([1, 1, -3, 1, -4, -5],-1))",
    "io_inp": [
      1,
      1,
      -3,
      1,
      -4,
      -5
    ],
    "io_out": [
      2,
      2,
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-1))"
  },
  {
    "input": "input : list = [2, 3, 4, -3]\noutput : list = [2]",
    "output": "generated_output : list = take(take([2, 3, 4, -3],1),19)",
    "io_inp": [
      2,
      3,
      4,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(input,1),19)"
  },
  {
    "input": "input : list = [0, 0, 5, 0, 2, -2]\noutput : list = [-11, -5, -5, -5, 1, 10]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n([0, 0, 5, 0, 2, -2],3))),-5))",
    "io_inp": [
      0,
      0,
      5,
      0,
      2,
      -2
    ],
    "io_out": [
      -11,
      -5,
      -5,
      -5,
      1,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n(input,3))),-5))"
  },
  {
    "input": "input : list = [3, -4, 5, -1, 1]\noutput : list = [3, 1, -1, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des([3, -4, 5, -1, 1]),2)",
    "io_inp": [
      3,
      -4,
      5,
      -1,
      1
    ],
    "io_out": [
      3,
      1,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-3, 3, -4, 3, -2, -3]\noutput : list = [-3, -2, -2, -1, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(sort_asc([-3, 3, -4, 3, -2, -3]),6),1)))",
    "io_inp": [
      -3,
      3,
      -4,
      3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(sort_asc(input),6),1)))"
  },
  {
    "input": "input : list = [5, -5, -1, -1, 4, 4]\noutput : list = [6, -4, 0, 0, 5, 5]",
    "output": "generated_output : list = take(sub_n([5, -5, -1, -1, 4, 4],-1),6)",
    "io_inp": [
      5,
      -5,
      -1,
      -1,
      4,
      4
    ],
    "io_out": [
      6,
      -4,
      0,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),6)"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(drop([-2, 1, -3],1),-5),15)))",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(drop(input,1),-5),15)))"
  },
  {
    "input": "input : list = [0, -3, 0, 1, 1, 4]\noutput : list = [12, 3, 3, 0, 0, -9]",
    "output": "generated_output : list = sort_des(mul_n([0, -3, 0, 1, 1, 4],3))",
    "io_inp": [
      0,
      -3,
      0,
      1,
      1,
      4
    ],
    "io_out": [
      12,
      3,
      3,
      0,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [-5, 2, -1]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(take([-5, 2, -1],1))),4),-1)",
    "io_inp": [
      -5,
      2,
      -1
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(take(input,1))),4),-1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [63, 63]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(reverse([4, 4]),5),3),-1),4)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      63,
      63
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(reverse(input),5),3),-1),4)"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(sort_des([-3, -1, -2]),5)),1))",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(sort_des(input),5)),1))"
  },
  {
    "input": "input : list = [0, 4, -5, 2, -3]\noutput : list = [-5, -3, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([0, 4, -5, 2, -3])",
    "io_inp": [
      0,
      4,
      -5,
      2,
      -3
    ],
    "io_out": [
      -5,
      -3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -4, 2, -5, 3, 0]\noutput : list = [-4, -3, 1, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des([3, -4, 2, -5, 3, 0]),-2),1)),42)",
    "io_inp": [
      3,
      -4,
      2,
      -5,
      3,
      0
    ],
    "io_out": [
      -4,
      -3,
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des(input),-2),1)),42)"
  },
  {
    "input": "input : list = [1, 0, -4]\noutput : list = [4, 3, -1]",
    "output": "generated_output : list = add_n(add_n([1, 0, -4],-2),5)",
    "io_inp": [
      1,
      0,
      -4
    ],
    "io_out": [
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sort_des([3, -1])),9)),-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sort_des(input)),9)),-3)"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [-5, 0, 10]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sort_des([1, 0, -2]),1)),-1),5)",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      -5,
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sort_des(input),1)),-1),5)"
  },
  {
    "input": "input : list = [4, -3, 1, -4, -2]\noutput : list = [4, 1, -2, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(reverse([4, -3, 1, -4, -2]),21),-1)),1)",
    "io_inp": [
      4,
      -3,
      1,
      -4,
      -2
    ],
    "io_out": [
      4,
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(reverse(input),21),-1)),1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-16, 0]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(add_n([-1, -5],5),7),-4),-4),-4)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(add_n(input,5),7),-4),-4),-4)"
  },
  {
    "input": "input : list = [-5, -5, 3, -1, -4]\noutput : list = [0, 0, -3, -12, -24]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(sort_asc([-5, -5, 3, -1, -4]),-5))),-3)",
    "io_inp": [
      -5,
      -5,
      3,
      -1,
      -4
    ],
    "io_out": [
      0,
      0,
      -3,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(sort_asc(input),-5))),-3)"
  },
  {
    "input": "input : list = [5, -1, 4, 2, -1]\noutput : list = [90, 60, 0, -90, -90]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(add_n([5, -1, 4, 2, -1],-2),5)),-3),-2)",
    "io_inp": [
      5,
      -1,
      4,
      2,
      -1
    ],
    "io_out": [
      90,
      60,
      0,
      -90,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(add_n(input,-2),5)),-3),-2)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(sub_n([0, 3],-5),2)),-1),-5)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(sub_n(input,-5),2)),-1),-5)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(sub_n([-5, -1],4),1),1),9),-3)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(sub_n(input,4),1),1),9),-3)"
  },
  {
    "input": "input : list = [3, 1, -5, -5, -5]\noutput : list = [-14, -14]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(drop([3, 1, -5, -5, -5],3)),2),-4))",
    "io_inp": [
      3,
      1,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -14,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(drop(input,3)),2),-4))"
  },
  {
    "input": "input : list = [-3, 4, -3, 4]\noutput : list = [4, 32]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take([-3, 4, -3, 4],2),5),-4))",
    "io_inp": [
      -3,
      4,
      -3,
      4
    ],
    "io_out": [
      4,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(input,2),5),-4))"
  },
  {
    "input": "input : list = [-3, 2, 5, -1, 3, -5]\noutput : list = [7, 5, 1, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(drop([-3, 2, 5, -1, 3, -5],2),4)),-2))",
    "io_inp": [
      -3,
      2,
      5,
      -1,
      3,
      -5
    ],
    "io_out": [
      7,
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(drop(input,2),4)),-2))"
  },
  {
    "input": "input : list = [-3, 0, -5, 5]\noutput : list = [29, 4, -11, -21]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(mul_n([-3, 0, -5, 5],5),4))))",
    "io_inp": [
      -3,
      0,
      -5,
      5
    ],
    "io_out": [
      29,
      4,
      -11,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(mul_n(input,5),4))))"
  },
  {
    "input": "input : list = [0, -4, 1, -3, 2, -5]\noutput : list = [3, -9, 6, -6, 9, -12]",
    "output": "generated_output : list = mul_n(add_n([0, -4, 1, -3, 2, -5],1),3)",
    "io_inp": [
      0,
      -4,
      1,
      -3,
      2,
      -5
    ],
    "io_out": [
      3,
      -9,
      6,
      -6,
      9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),3)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-21]",
    "output": "generated_output : list = mul_n(sort_asc(drop(sub_n([-2, 3],-4),1)),-3)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(sub_n(input,-4),1)),-3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n([-4, 0],4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, 3, 2, -4, 4]\noutput : list = [20, 5, -10, -15, -20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc([-1, 3, 2, -4, 4]),-5)))",
    "io_inp": [
      -1,
      3,
      2,
      -4,
      4
    ],
    "io_out": [
      20,
      5,
      -10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(input),-5)))"
  },
  {
    "input": "input : list = [1, 3, 2, 3, 2, 5]\noutput : list = [2, -1, 0, -1, 0, -2]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(reverse([1, 3, 2, 3, 2, 5])),3),43))",
    "io_inp": [
      1,
      3,
      2,
      3,
      2,
      5
    ],
    "io_out": [
      2,
      -1,
      0,
      -1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(reverse(input)),3),43))"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(drop([-4, -4, -2],1))",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 0, 4, -1]\noutput : list = [2, -2, -3, -4]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(sub_n([-2, 0, 4, -1],-1)),3)),18)",
    "io_inp": [
      -2,
      0,
      4,
      -1
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(sub_n(input,-1)),3)),18)"
  },
  {
    "input": "input : list = [-1, 4, -3, -4, -3, -3]\noutput : list = [-15]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(reverse([-1, 4, -3, -4, -3, -3])),4),1),1)",
    "io_inp": [
      -1,
      4,
      -3,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(reverse(input)),4),1),1)"
  },
  {
    "input": "input : list = [3, -4, 2, -4, -2]\noutput : list = [5, 4, 0, -2, -2]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(add_n([3, -4, 2, -4, -2],5))),-3),5)",
    "io_inp": [
      3,
      -4,
      2,
      -4,
      -2
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(add_n(input,5))),-3),5)"
  },
  {
    "input": "input : list = [4, -1, 2, 0, -4]\noutput : list = [9, 7, 5, 4, 1]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des([4, -1, 2, 0, -4])),-5),31))",
    "io_inp": [
      4,
      -1,
      2,
      0,
      -4
    ],
    "io_out": [
      9,
      7,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des(input)),-5),31))"
  },
  {
    "input": "input : list = [-3, 2, -5, -1, 1, -2]\noutput : list = [2, 1, -1, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, 2, -5, -1, 1, -2])",
    "io_inp": [
      -3,
      2,
      -5,
      -1,
      1,
      -2
    ],
    "io_out": [
      2,
      1,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1, -5, 1, 0, 1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sort_des(drop(add_n(drop([3, -1, -5, 1, 0, 1],2),-2),3)),-2)",
    "io_inp": [
      3,
      -1,
      -5,
      1,
      0,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(add_n(drop(input,2),-2),3)),-2)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [-1, 31, 47]",
    "output": "generated_output : list = take(take(sub_n(mul_n(mul_n([0, 2, 3],-4),-4),1),3),28)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      -1,
      31,
      47
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(mul_n(input,-4),-4),1),3),28)"
  },
  {
    "input": "input : list = [-5, 4, 2, 0]\noutput : list = [10, 0, -4, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(sort_asc([-5, 4, 2, 0]))),-2))",
    "io_inp": [
      -5,
      4,
      2,
      0
    ],
    "io_out": [
      10,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [4, -1, -3, 5, 0]\noutput : list = [2, 7, -1, 1, 6]",
    "output": "generated_output : list = reverse(sub_n([4, -1, -3, 5, 0],-2))",
    "io_inp": [
      4,
      -1,
      -3,
      5,
      0
    ],
    "io_out": [
      2,
      7,
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-5, 1, 4, 1]\noutput : list = [14, 5, 5, -13]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(add_n([-5, 1, 4, 1],-1)),13),3),5)",
    "io_inp": [
      -5,
      1,
      4,
      1
    ],
    "io_out": [
      14,
      5,
      5,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(add_n(input,-1)),13),3),5)"
  },
  {
    "input": "input : list = [2, 3, 3, -2, 3, -1]\noutput : list = [-2, -1, 2, 3, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(sort_asc([2, 3, 3, -2, 3, -1])),18)))",
    "io_inp": [
      2,
      3,
      3,
      -2,
      3,
      -1
    ],
    "io_out": [
      -2,
      -1,
      2,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(sort_asc(input)),18)))"
  },
  {
    "input": "input : list = [4, -4, -5, 0, -5]\noutput : list = [8]",
    "output": "generated_output : list = add_n(take(take(sort_des(take([4, -4, -5, 0, -5],2)),1),24),4)",
    "io_inp": [
      4,
      -4,
      -5,
      0,
      -5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(take(input,2)),1),24),4)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sub_n([3, 2],1)))),-2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sub_n(input,1)))),-2)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [15, -3, -12]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(mul_n([5, -4, -1],3))),18))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      15,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(mul_n(input,3))),18))"
  },
  {
    "input": "input : list = [3, -3, 3, -4, 4]\noutput : list = [-5, -4, 2, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n([3, -3, 3, -4, 4],2),-3)))",
    "io_inp": [
      3,
      -3,
      3,
      -4,
      4
    ],
    "io_out": [
      -5,
      -4,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(input,2),-3)))"
  },
  {
    "input": "input : list = [2, -3, 0, 0, -2]\noutput : list = [-3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(drop([2, -3, 0, 0, -2],2)),3)))",
    "io_inp": [
      2,
      -3,
      0,
      0,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(drop(input,2)),3)))"
  },
  {
    "input": "input : list = [-1, 0, -5, -3, 1, 3]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(take([-1, 0, -5, -3, 1, 3],3)))",
    "io_inp": [
      -1,
      0,
      -5,
      -3,
      1,
      3
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,3)))"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [3, 6, 8]",
    "output": "generated_output : list = add_n(reverse(reverse([-2, 1, 3])),5)",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),5)"
  },
  {
    "input": "input : list = [1, 4, 2, 0, 0, 5]\noutput : list = [5, 4, 2, 1, 0, 0]",
    "output": "generated_output : list = sort_des([1, 4, 2, 0, 0, 5])",
    "io_inp": [
      1,
      4,
      2,
      0,
      0,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [25, 0, 20]",
    "output": "generated_output : list = mul_n(take(reverse([-4, 0, -5]),6),-5)",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      25,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),6),-5)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse([2, -5]),4))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),4))"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [-14, -4, -14]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(add_n([-3, 2, -3],-3),3),2),-2))",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      -14,
      -4,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(add_n(input,-3),3),2),-2))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-4, 12]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([1, -3]),-4))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -4,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [3, -3, 1, 4, 5]\noutput : list = [-3, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take([3, -3, 1, 4, 5],3)))",
    "io_inp": [
      3,
      -3,
      1,
      4,
      5
    ],
    "io_out": [
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,3)))"
  },
  {
    "input": "input : list = [-2, -1, -1, -5]\noutput : list = [-6, -5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n(take([-2, -1, -1, -5],2),-4))))",
    "io_inp": [
      -2,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(take(input,2),-4))))"
  },
  {
    "input": "input : list = [-4, 4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = drop([-4, 4, 3],1)",
    "io_inp": [
      -4,
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des([2, -2])",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, 5]\noutput : list = [-8, -11, -17]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n(sort_asc([3, 2, 5]),-3),4)),2)",
    "io_inp": [
      3,
      2,
      5
    ],
    "io_out": [
      -8,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(sort_asc(input),-3),4)),2)"
  },
  {
    "input": "input : list = [-2, 2, 3, -5, -2]\noutput : list = [9, 12, -12, -3]",
    "output": "generated_output : list = mul_n(take(take(sub_n(drop([-2, 2, 3, -5, -2],1),-1),16),26),3)",
    "io_inp": [
      -2,
      2,
      3,
      -5,
      -2
    ],
    "io_out": [
      9,
      12,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(drop(input,1),-1),16),26),3)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-38, -8]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(mul_n([5, 0],3),-4)),-2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -38,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(mul_n(input,3),-4)),-2)"
  },
  {
    "input": "input : list = [-3, 4, -1, 0, 3]\noutput : list = [-3, -1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_des([-3, 4, -1, 0, 3])))))",
    "io_inp": [
      -3,
      4,
      -1,
      0,
      3
    ],
    "io_out": [
      -3,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-4, 1, -2],1)),-4)",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,1)),-4)"
  },
  {
    "input": "input : list = [4, -4, -4, 3, -5, 0]\noutput : list = [-50, -40, -40, 0, 30, 40]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(mul_n([4, -4, -4, 3, -5, 0],-5)),-2)))",
    "io_inp": [
      4,
      -4,
      -4,
      3,
      -5,
      0
    ],
    "io_out": [
      -50,
      -40,
      -40,
      0,
      30,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(mul_n(input,-5)),-2)))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-16, 4]",
    "output": "generated_output : list = mul_n([-4, 1],4)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take(sort_asc(take(add_n(reverse([-1, -1]),-3),17)),32)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(reverse(input),-3),17)),32)"
  },
  {
    "input": "input : list = [3, 0, -1, 5]\noutput : list = [6, 3, 2, 8]",
    "output": "generated_output : list = add_n([3, 0, -1, 5],3)",
    "io_inp": [
      3,
      0,
      -1,
      5
    ],
    "io_out": [
      6,
      3,
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, -4, 2, -3, 4]\noutput : list = [13, 5, -11, -15, -19]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(mul_n([-2, -4, 2, -3, 4],4)),31),-3))",
    "io_inp": [
      -2,
      -4,
      2,
      -3,
      4
    ],
    "io_out": [
      13,
      5,
      -11,
      -15,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(mul_n(input,4)),31),-3))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [15, 15]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sort_des([-4, -4])),-4)),1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sort_des(input)),-4)),1)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-20]",
    "output": "generated_output : list = drop(mul_n([-4, 4],-5),1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,-5),1)"
  },
  {
    "input": "input : list = [1, 5, 1, 0]\noutput : list = [15, -25, 15, 25]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(mul_n([1, 5, 1, 0],2),5),-1),5),5)",
    "io_inp": [
      1,
      5,
      1,
      0
    ],
    "io_out": [
      15,
      -25,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(mul_n(input,2),5),-1),5),5)"
  },
  {
    "input": "input : list = [-2, 1, 5, -2]\noutput : list = [-10, 5, 25, -10]",
    "output": "generated_output : list = mul_n([-2, 1, 5, -2],5)",
    "io_inp": [
      -2,
      1,
      5,
      -2
    ],
    "io_out": [
      -10,
      5,
      25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [0, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des([-3, 2]))),-2)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [-1, 4, 4, 4, 3, 3]\noutput : list = [8, 8, 8, 3]",
    "output": "generated_output : list = take(sort_des(add_n(take([-1, 4, 4, 4, 3, 3],4),4)),44)",
    "io_inp": [
      -1,
      4,
      4,
      4,
      3,
      3
    ],
    "io_out": [
      8,
      8,
      8,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(input,4),4)),44)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [-3, 3, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse([5, 1, -5]),4),2)))",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      -3,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse(input),4),2)))"
  },
  {
    "input": "input : list = [5, 4, -4]\noutput : list = [0, -32, -36]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n(add_n([5, 4, -4],2),-4),3)),-5)",
    "io_inp": [
      5,
      4,
      -4
    ],
    "io_out": [
      0,
      -32,
      -36
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(add_n(input,2),-4),3)),-5)"
  },
  {
    "input": "input : list = [-1, 2, 5, 2, 5]\noutput : list = [-25, -10, -25, -10, 5]",
    "output": "generated_output : list = reverse(take(mul_n([-1, 2, 5, 2, 5],-5),5))",
    "io_inp": [
      -1,
      2,
      5,
      2,
      5
    ],
    "io_out": [
      -25,
      -10,
      -25,
      -10,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,-5),5))"
  },
  {
    "input": "input : list = [2, 4, 3, -5]\noutput : list = [-3, 29, 33, 25]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(add_n([2, 4, 3, -5],4)),1),4),-1)",
    "io_inp": [
      2,
      4,
      3,
      -5
    ],
    "io_out": [
      -3,
      29,
      33,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(add_n(input,4)),1),4),-1)"
  },
  {
    "input": "input : list = [-5, -4, -5]\noutput : list = [-60, -60, -48]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n(mul_n([-5, -4, -5],4),3))))",
    "io_inp": [
      -5,
      -4,
      -5
    ],
    "io_out": [
      -60,
      -60,
      -48
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(mul_n(input,4),3))))"
  },
  {
    "input": "input : list = [4, -1, 2, -2, 5]\noutput : list = [5, -2, 2, -1, 4]",
    "output": "generated_output : list = reverse([4, -1, 2, -2, 5])",
    "io_inp": [
      4,
      -1,
      2,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [-15, 6, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(reverse([-2, 5, -5])),-3)))",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      -15,
      6,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sort_asc([1, 5, 2]))),5))",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [4, -5, 2, 2, 3]\noutput : list = [-13, -8, -3, -3, 32]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(mul_n([4, -5, 2, 2, 3],-5),4))),-3)",
    "io_inp": [
      4,
      -5,
      2,
      2,
      3
    ],
    "io_out": [
      -13,
      -8,
      -3,
      -3,
      32
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(mul_n(input,-5),4))),-3)"
  },
  {
    "input": "input : list = [-2, 3, -5, -3, -5, 0]\noutput : list = [0, 25]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(drop([-2, 3, -5, -3, -5, 0],4)))),-5)",
    "io_inp": [
      -2,
      3,
      -5,
      -3,
      -5,
      0
    ],
    "io_out": [
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(drop(input,4)))),-5)"
  },
  {
    "input": "input : list = [-5, 4, -4, -2]\noutput : list = [0, -6, -8, -9]",
    "output": "generated_output : list = sub_n(sort_des([-5, 4, -4, -2]),4)",
    "io_inp": [
      -5,
      4,
      -4,
      -2
    ],
    "io_out": [
      0,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [4, -3, -2, 4, -1, 1]\noutput : list = [2]",
    "output": "generated_output : list = drop(mul_n(sub_n(take([4, -3, -2, 4, -1, 1],4),5),-2),3)",
    "io_inp": [
      4,
      -3,
      -2,
      4,
      -1,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(mul_n(sub_n(take(input,4),5),-2),3)"
  },
  {
    "input": "input : list = [3, -3, -2, -2]\noutput : list = [-9, 9, 6, 6]",
    "output": "generated_output : list = mul_n([3, -3, -2, -2],-3)",
    "io_inp": [
      3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -9,
      9,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, 5, 2, 2, 1]\noutput : list = [-10, -10, -4, -4, -2]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([5, 5, 2, 2, 1])),-2)",
    "io_inp": [
      5,
      5,
      2,
      2,
      1
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(take(mul_n(drop([-5, 2, -2],1),-1),27))",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(drop(input,1),-1),27))"
  },
  {
    "input": "input : list = [2, -5, 2, 4]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(take([2, -5, 2, 4],1),7))),-3)",
    "io_inp": [
      2,
      -5,
      2,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(take(input,1),7))),-3)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [36, 32]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n([-4, -5],-4))),-4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      36,
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(input,-4))),-4)"
  },
  {
    "input": "input : list = [5, -4, -3, -5, 3, 3]\noutput : list = [7, 6, 5, -1, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(mul_n([5, -4, -3, -5, 3, 3],-1)))),2)",
    "io_inp": [
      5,
      -4,
      -3,
      -5,
      3,
      3
    ],
    "io_out": [
      7,
      6,
      5,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(mul_n(input,-1)))),2)"
  },
  {
    "input": "input : list = [1, -1, -5, 4, -5, 0]\noutput : list = [4, -1, 8, -1, 3]",
    "output": "generated_output : list = sub_n(reverse(drop([1, -1, -5, 4, -5, 0],1)),-4)",
    "io_inp": [
      1,
      -1,
      -5,
      4,
      -5,
      0
    ],
    "io_out": [
      4,
      -1,
      8,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,1)),-4)"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [40, 32, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_des([-5, 2, -4]),4)),-2))",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      40,
      32,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_des(input),4)),-2))"
  },
  {
    "input": "input : list = [4, 2, 2, -4, -4, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n([4, 2, 2, -4, -4, 4],-4),1)",
    "io_inp": [
      4,
      2,
      2,
      -4,
      -4,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),1)"
  },
  {
    "input": "input : list = [-1, 5, -1, 0]\noutput : list = [9, 10]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(drop([-1, 5, -1, 0],2),-5))),5)",
    "io_inp": [
      -1,
      5,
      -1,
      0
    ],
    "io_out": [
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(drop(input,2),-5))),5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sub_n([-5, 2],-4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, 2, 4, -2, -4]\noutput : list = [-9, -7, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sub_n([5, 2, 4, -2, -4],3))),2))",
    "io_inp": [
      5,
      2,
      4,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sub_n(input,3))),2))"
  },
  {
    "input": "input : list = [4, -5, 0, 4]\noutput : list = [36, -45, 0, 36]",
    "output": "generated_output : list = mul_n(mul_n([4, -5, 0, 4],-3),-3)",
    "io_inp": [
      4,
      -5,
      0,
      4
    ],
    "io_out": [
      36,
      -45,
      0,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),-3)"
  },
  {
    "input": "input : list = [2, 0, 1, 4, 1, 1]\noutput : list = [1, 1, 4, 1, 0, 2]",
    "output": "generated_output : list = take(reverse([2, 0, 1, 4, 1, 1]),25)",
    "io_inp": [
      2,
      0,
      1,
      4,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      4,
      1,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),25)"
  },
  {
    "input": "input : list = [5, -5, 3, -1, 3, 0]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(take([5, -5, 3, -1, 3, 0],1),2))))",
    "io_inp": [
      5,
      -5,
      3,
      -1,
      3,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(take(input,1),2))))"
  },
  {
    "input": "input : list = [-1, 0, -2]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = sort_des(mul_n([-1, 0, -2],-2))",
    "io_inp": [
      -1,
      0,
      -2
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [1, 0, -1, 0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(drop([1, 0, -1, 0, -4],3))",
    "io_inp": [
      1,
      0,
      -1,
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [0, 2, 2]\noutput : list = [-9, -9, 3]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sort_asc([0, 2, 2]),2),-3),-3))",
    "io_inp": [
      0,
      2,
      2
    ],
    "io_out": [
      -9,
      -9,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sort_asc(input),2),-3),-3))"
  },
  {
    "input": "input : list = [5, 4, 4, 4]\noutput : list = [16, 16, 16, 18]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(sort_des([5, 4, 4, 4])),2),-5),3)",
    "io_inp": [
      5,
      4,
      4,
      4
    ],
    "io_out": [
      16,
      16,
      16,
      18
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(sort_des(input)),2),-5),3)"
  },
  {
    "input": "input : list = [-2, -5, 1, 3, 5]\noutput : list = [29, 19, 9, -6, -21]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc([-2, -5, 1, 3, 5]),5),34),-4))",
    "io_inp": [
      -2,
      -5,
      1,
      3,
      5
    ],
    "io_out": [
      29,
      19,
      9,
      -6,
      -21
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc(input),5),34),-4))"
  },
  {
    "input": "input : list = [1, -3, -5, 1, 2, 0]\noutput : list = [7, 3, 1, 7, 8, 6]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n([1, -3, -5, 1, 2, 0],-5),-3),-4),26)",
    "io_inp": [
      1,
      -3,
      -5,
      1,
      2,
      0
    ],
    "io_out": [
      7,
      3,
      1,
      7,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(input,-5),-3),-4),26)"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [-4, -6, -9]",
    "output": "generated_output : list = take(sort_des(sub_n([-4, 1, -1],5)),20)",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      -4,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,5)),20)"
  },
  {
    "input": "input : list = [4, -5, -1, 1, -3]\noutput : list = [-4, -2, 0, 2, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(add_n([4, -5, -1, 1, -3],-3))),4)",
    "io_inp": [
      4,
      -5,
      -1,
      1,
      -3
    ],
    "io_out": [
      -4,
      -2,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(add_n(input,-3))),4)"
  },
  {
    "input": "input : list = [-5, 4, -1, -3]\noutput : list = [-60]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(sort_asc([-5, 4, -1, -3]),3),1)),4)",
    "io_inp": [
      -5,
      4,
      -1,
      -3
    ],
    "io_out": [
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(sort_asc(input),3),1)),4)"
  },
  {
    "input": "input : list = [1, 0, -4, -4, 2]\noutput : list = [-8, -8, 0, 2, 4]",
    "output": "generated_output : list = mul_n(sort_asc([1, 0, -4, -4, 2]),2)",
    "io_inp": [
      1,
      0,
      -4,
      -4,
      2
    ],
    "io_out": [
      -8,
      -8,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-2, -3, 3, -4]\noutput : list = [-1, -2, 4, -3]",
    "output": "generated_output : list = add_n([-2, -3, 3, -4],1)",
    "io_inp": [
      -2,
      -3,
      3,
      -4
    ],
    "io_out": [
      -1,
      -2,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -2, 4],1)",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -4, -4, 5]\noutput : list = [3, 0, -6, -6]",
    "output": "generated_output : list = sub_n(sort_des([2, -4, -4, 5]),2)",
    "io_inp": [
      2,
      -4,
      -4,
      5
    ],
    "io_out": [
      3,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-5, 3, 3, -3]\noutput : list = [10, 0, -30, -30]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([-5, 3, 3, -3],-3),-5))",
    "io_inp": [
      -5,
      3,
      3,
      -3
    ],
    "io_out": [
      10,
      0,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,-3),-5))"
  },
  {
    "input": "input : list = [-5, -1, -5, 3]\noutput : list = [2, 2, 6, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n([-5, -1, -5, 3],-2),-5)))",
    "io_inp": [
      -5,
      -1,
      -5,
      3
    ],
    "io_out": [
      2,
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(input,-2),-5)))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des([4, 2])",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 3, -4, 4]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(take([0, 0, 3, -4, 4],3)),26)))",
    "io_inp": [
      0,
      0,
      3,
      -4,
      4
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(take(input,3)),26)))"
  },
  {
    "input": "input : list = [0, 3, -5, 3, -5, 1]\noutput : list = [6, 6, 4, 3, -2, -2]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(add_n([0, 3, -5, 3, -5, 1],3)))),51)",
    "io_inp": [
      0,
      3,
      -5,
      3,
      -5,
      1
    ],
    "io_out": [
      6,
      6,
      4,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(add_n(input,3)))),51)"
  },
  {
    "input": "input : list = [-1, -3, 1, 4, 5]\noutput : list = [-8, -6, -4, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sub_n([-1, -3, 1, 4, 5],2)))),-3)",
    "io_inp": [
      -1,
      -3,
      1,
      4,
      5
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sub_n(input,2)))),-3)"
  },
  {
    "input": "input : list = [4, -1, -4, 5, 5, 5]\noutput : list = [7, 7, 7, 1, -2]",
    "output": "generated_output : list = reverse(sort_asc(drop(take(add_n([4, -1, -4, 5, 5, 5],2),7),1)))",
    "io_inp": [
      4,
      -1,
      -4,
      5,
      5,
      5
    ],
    "io_out": [
      7,
      7,
      7,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(take(add_n(input,2),7),1)))"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [3, -7, -37]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(add_n([4, -4, 2],-3),5))),2)",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      3,
      -7,
      -37
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(add_n(input,-3),5))),2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(add_n([1, 1],-1))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [-4, -3, -4, -1, 2, 2]\noutput : list = [-12, -12, -24, -32, -36, -36]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(sub_n([-4, -3, -4, -1, 2, 2],5)),8),4))",
    "io_inp": [
      -4,
      -3,
      -4,
      -1,
      2,
      2
    ],
    "io_out": [
      -12,
      -12,
      -24,
      -32,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(sub_n(input,5)),8),4))"
  },
  {
    "input": "input : list = [-2, -4, -5, 0]\noutput : list = [-3, -5, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n([-2, -4, -5, 0],3))",
    "io_inp": [
      -2,
      -4,
      -5,
      0
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [4, -4, 5, 3, 2, 3]\noutput : list = [5, 4, 3, 3, 2, -4]",
    "output": "generated_output : list = reverse(sort_asc([4, -4, 5, 3, 2, 3]))",
    "io_inp": [
      4,
      -4,
      5,
      3,
      2,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -1, -3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(take([0, -1, -3],1)))),2)",
    "io_inp": [
      0,
      -1,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(take(input,1)))),2)"
  },
  {
    "input": "input : list = [2, 1, 2, -2]\noutput : list = [57, 57, 37, -23]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(mul_n([2, 1, 2, -2],-5),-5),-4),-3))",
    "io_inp": [
      2,
      1,
      2,
      -2
    ],
    "io_out": [
      57,
      57,
      37,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(mul_n(input,-5),-5),-4),-3))"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [0, 3, 5]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(mul_n([-4, 1, -2],-1))),1))",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(mul_n(input,-1))),1))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [9, 5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(sort_asc([5, 1]),7)),1),4)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(sort_asc(input),7)),1),4)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [8, 7, 5]",
    "output": "generated_output : list = sort_des(sub_n([2, 0, 3],-5))",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      8,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [1, -4, -2, -5]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take([1, -4, -2, -5],1))",
    "io_inp": [
      1,
      -4,
      -2,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-3, 3, 0, 4, 0]\noutput : list = [4, 3, 0, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des([-3, 3, 0, 4, 0]))",
    "io_inp": [
      -3,
      3,
      0,
      4,
      0
    ],
    "io_out": [
      4,
      3,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, 4, -4, -4, 3, 0]\noutput : list = [0, 15, -20, -20, 20, 25]",
    "output": "generated_output : list = reverse(mul_n([5, 4, -4, -4, 3, 0],5))",
    "io_inp": [
      5,
      4,
      -4,
      -4,
      3,
      0
    ],
    "io_out": [
      0,
      15,
      -20,
      -20,
      20,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [-5, -4, -1, -1, -4, 1]\noutput : list = [5, 3, 3, 0, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sub_n([-5, -4, -1, -1, -4, 1],1)),4)),1)",
    "io_inp": [
      -5,
      -4,
      -1,
      -1,
      -4,
      1
    ],
    "io_out": [
      5,
      3,
      3,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sub_n(input,1)),4)),1)"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [2, -6, -10]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(sub_n([-2, 4, 2],-5)),4)),-2)",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(sub_n(input,-5)),4)),-2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sub_n(reverse(take(add_n(sub_n([2, -5],-1),-1),12)),-1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(sub_n(input,-1),-1),12)),-1)"
  },
  {
    "input": "input : list = [2, 4, 1, 3, 5]\noutput : list = [5, -3, 9, 1, -7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n([2, 4, 1, 3, 5],3),-4),-3),2)",
    "io_inp": [
      2,
      4,
      1,
      3,
      5
    ],
    "io_out": [
      5,
      -3,
      9,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(input,3),-4),-3),2)"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [3, 1, 1]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(sort_asc([1, 3, 1])),1)))",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [4, -4, 1, 5]\noutput : list = [1, -7, -2, 2]",
    "output": "generated_output : list = add_n([4, -4, 1, 5],-3)",
    "io_inp": [
      4,
      -4,
      1,
      5
    ],
    "io_out": [
      1,
      -7,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sub_n([-2, 3],-1),-1)),4),5)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sub_n(input,-1),-1)),4),5)"
  },
  {
    "input": "input : list = [3, -2, 2, 1, 0]\noutput : list = [-8, -6, -5, -4, -3]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(sub_n([3, -2, 2, 1, 0],2)),15),4),37)",
    "io_inp": [
      3,
      -2,
      2,
      1,
      0
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(sub_n(input,2)),15),4),37)"
  },
  {
    "input": "input : list = [5, 1, -5, 4, 4]\noutput : list = [4, 3, 3, 0, -6]",
    "output": "generated_output : list = sort_des(add_n([5, 1, -5, 4, 4],-1))",
    "io_inp": [
      5,
      1,
      -5,
      4,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [1, 1, 4, 0, 1]\noutput : list = [3, -1, 0]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(drop([1, 1, 4, 0, 1],2)),2),-1))",
    "io_inp": [
      1,
      1,
      4,
      0,
      1
    ],
    "io_out": [
      3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(drop(input,2)),2),-1))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des([-2, 0])",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 15]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(mul_n([0, 1],-1))),-5),3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(mul_n(input,-1))),-5),3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [2, -23]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(reverse([-5, 0]),5),2)),6)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      2,
      -23
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(reverse(input),5),2)),6)"
  },
  {
    "input": "input : list = [4, -3, -5, -4]\noutput : list = [33, 39, 27]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(drop([4, -3, -5, -4],1),-2),-3)),3)",
    "io_inp": [
      4,
      -3,
      -5,
      -4
    ],
    "io_out": [
      33,
      39,
      27
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(drop(input,1),-2),-3)),3)"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [5, 2, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(sort_asc([-1, 5, 2]),6)),18))",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(sort_asc(input),6)),18))"
  },
  {
    "input": "input : list = [-3, -1, -5, 5, -3]\noutput : list = [-5, -9, -1, -21, -5]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(sub_n([-3, -1, -5, 5, -3],-2),-1),-2),47),5)",
    "io_inp": [
      -3,
      -1,
      -5,
      5,
      -3
    ],
    "io_out": [
      -5,
      -9,
      -1,
      -21,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(sub_n(input,-2),-1),-2),47),5)"
  },
  {
    "input": "input : list = [0, 1, -5]\noutput : list = [-4, -3, -9]",
    "output": "generated_output : list = sub_n([0, 1, -5],4)",
    "io_inp": [
      0,
      1,
      -5
    ],
    "io_out": [
      -4,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, -2, 2, 1, -3, 2]\noutput : list = [-1, -1, 1, 7, 9, 11]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(mul_n([-4, -2, 2, 1, -3, 2],-2),23),5)),2)",
    "io_inp": [
      -4,
      -2,
      2,
      1,
      -3,
      2
    ],
    "io_out": [
      -1,
      -1,
      1,
      7,
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(mul_n(input,-2),23),5)),2)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_asc([-2, -1])),5),4),-2)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_asc(input)),5),4),-2)"
  },
  {
    "input": "input : list = [1, 3, 4, -1, 5]\noutput : list = [3, 2, 1, -1, -3]",
    "output": "generated_output : list = sort_des(add_n([1, 3, 4, -1, 5],-2))",
    "io_inp": [
      1,
      3,
      4,
      -1,
      5
    ],
    "io_out": [
      3,
      2,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [4, -2, -4, 4]\noutput : list = [1, 9]",
    "output": "generated_output : list = add_n(drop([4, -2, -4, 4],2),5)",
    "io_inp": [
      4,
      -2,
      -4,
      4
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [-5, 1, 5]",
    "output": "generated_output : list = sort_asc([1, -5, 5])",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 4, 1, 1, -2]\noutput : list = [-3, -12, 15]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(take([-5, 4, 1, 1, -2],3),-3))))",
    "io_inp": [
      -5,
      4,
      1,
      1,
      -2
    ],
    "io_out": [
      -3,
      -12,
      15
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(take(input,3),-3))))"
  },
  {
    "input": "input : list = [3, 1, 1, 4, 5, -5]\noutput : list = [-9, -3, -3, -12, -15, 15]",
    "output": "generated_output : list = mul_n(mul_n([3, 1, 1, 4, 5, -5],1),-3)",
    "io_inp": [
      3,
      1,
      1,
      4,
      5,
      -5
    ],
    "io_out": [
      -9,
      -3,
      -3,
      -12,
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-3)"
  },
  {
    "input": "input : list = [1, -5, 0]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(sort_asc([1, -5, 0])),12)),15)",
    "io_inp": [
      1,
      -5,
      0
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(sort_asc(input)),12)),15)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(take(sort_asc([0, 2]),12))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),12))"
  },
  {
    "input": "input : list = [-4, -3, 5, 1, -5, -3]\noutput : list = [6, 2, -2, -4]",
    "output": "generated_output : list = take(sort_des(take(add_n(drop([-4, -3, 5, 1, -5, -3],2),1),25)),48)",
    "io_inp": [
      -4,
      -3,
      5,
      1,
      -5,
      -3
    ],
    "io_out": [
      6,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(drop(input,2),1),25)),48)"
  },
  {
    "input": "input : list = [5, 4, 3]\noutput : list = [2, 1]",
    "output": "generated_output : list = add_n(drop([5, 4, 3],1),-2)",
    "io_inp": [
      5,
      4,
      3
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [-4, -3, 1, 2, 4]\noutput : list = [20, 12, 8, -8, -12]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sort_des([-4, -3, 1, 2, 4]),4))),4)",
    "io_inp": [
      -4,
      -3,
      1,
      2,
      4
    ],
    "io_out": [
      20,
      12,
      8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sort_des(input),4))),4)"
  },
  {
    "input": "input : list = [3, -2, -2, 3]\noutput : list = [-16, -16, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(sort_asc([3, -2, -2, 3]),-4)),-4))",
    "io_inp": [
      3,
      -2,
      -2,
      3
    ],
    "io_out": [
      -16,
      -16,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(sort_asc(input),-4)),-4))"
  },
  {
    "input": "input : list = [2, 4, 5, -1]\noutput : list = [-39, -35, -27, -15]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(reverse([2, 4, 5, -1]),4)),-4),-3)",
    "io_inp": [
      2,
      4,
      5,
      -1
    ],
    "io_out": [
      -39,
      -35,
      -27,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(reverse(input),4)),-4),-3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [6, 3]",
    "output": "generated_output : list = mul_n(add_n([-2, 1],-4),-1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),-1)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-11]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(take([2, 0, -2],1),-1),5),-1))",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(take(input,1),-1),5),-1))"
  },
  {
    "input": "input : list = [5, -2, -2, -5]\noutput : list = [4, 7, 7, 14]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(reverse([5, -2, -2, -5]),-2),28),-5),-2)",
    "io_inp": [
      5,
      -2,
      -2,
      -5
    ],
    "io_out": [
      4,
      7,
      7,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(reverse(input),-2),28),-5),-2)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [24, 18, -6]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sort_asc([4, 3, -1]))),-2),-3)",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      24,
      18,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sort_asc(input))),-2),-3)"
  },
  {
    "input": "input : list = [0, -3, -1, 4]\noutput : list = [4, 0, -1, -3]",
    "output": "generated_output : list = sort_des([0, -3, -1, 4])",
    "io_inp": [
      0,
      -3,
      -1,
      4
    ],
    "io_out": [
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2, 4, 4, -4, 0]\noutput : list = [4, 1, 3, 3, -5, -1]",
    "output": "generated_output : list = add_n([5, 2, 4, 4, -4, 0],-1)",
    "io_inp": [
      5,
      2,
      4,
      4,
      -4,
      0
    ],
    "io_out": [
      4,
      1,
      3,
      3,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -3, 5, 5, -3]\noutput : list = [-6, 18, 18, 114, 114]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(add_n([-5, -3, 5, 5, -3],4)),-4),-2),-3)",
    "io_inp": [
      -5,
      -3,
      5,
      5,
      -3
    ],
    "io_out": [
      -6,
      18,
      18,
      114,
      114
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(add_n(input,4)),-4),-2),-3)"
  },
  {
    "input": "input : list = [3, 0, 5, -5]\noutput : list = [15, 0, -15]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(reverse([3, 0, 5, -5]),3),9)),-3)",
    "io_inp": [
      3,
      0,
      5,
      -5
    ],
    "io_out": [
      15,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(reverse(input),3),9)),-3)"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = sort_des([1, 3, -3])",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, 0]\noutput : list = [5, 4, 9]",
    "output": "generated_output : list = reverse(add_n([4, -1, 0],5))",
    "io_inp": [
      4,
      -1,
      0
    ],
    "io_out": [
      5,
      4,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-10, 10]",
    "output": "generated_output : list = reverse(take(mul_n(take(mul_n([2, -2],-1),7),-5),13))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(mul_n(input,-1),7),-5),13))"
  },
  {
    "input": "input : list = [-4, 1, 2]\noutput : list = [8, 4]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(drop([-4, 1, 2],1))),4))",
    "io_inp": [
      -4,
      1,
      2
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(drop(input,1))),4))"
  },
  {
    "input": "input : list = [-4, -1, -3, -1]\noutput : list = [0, 0, -4, -6]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(sort_des([-4, -1, -3, -1]),-4),-4),2),2)",
    "io_inp": [
      -4,
      -1,
      -3,
      -1
    ],
    "io_out": [
      0,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(sort_des(input),-4),-4),2),2)"
  },
  {
    "input": "input : list = [-4, -5, -1, 0]\noutput : list = [0, 1, 4, 5]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(reverse([-4, -5, -1, 0]))),-5),27)",
    "io_inp": [
      -4,
      -5,
      -1,
      0
    ],
    "io_out": [
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(reverse(input))),-5),27)"
  },
  {
    "input": "input : list = [4, -3, 1]\noutput : list = [12, -9, 3]",
    "output": "generated_output : list = mul_n([4, -3, 1],3)",
    "io_inp": [
      4,
      -3,
      1
    ],
    "io_out": [
      12,
      -9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, 2, 4, -1, -3, -4]\noutput : list = [25, 20, 10, -5, -15, -20]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(mul_n([5, 2, 4, -1, -3, -4],-5),-5))),1)",
    "io_inp": [
      5,
      2,
      4,
      -1,
      -3,
      -4
    ],
    "io_out": [
      25,
      20,
      10,
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(mul_n(input,-5),-5))),1)"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(drop([-5, 2, -5],1)))),-1)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(drop(input,1)))),-1)"
  },
  {
    "input": "input : list = [0, 5, -4, -5, -1]\noutput : list = [8, 40, 32, -40, 0]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse([0, 5, -4, -5, -1]),4),25),-2)",
    "io_inp": [
      0,
      5,
      -4,
      -5,
      -1
    ],
    "io_out": [
      8,
      40,
      32,
      -40,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(input),4),25),-2)"
  },
  {
    "input": "input : list = [-2, 4, 2, 2]\noutput : list = [-6, 0, -2, -2]",
    "output": "generated_output : list = add_n([-2, 4, 2, 2],-4)",
    "io_inp": [
      -2,
      4,
      2,
      2
    ],
    "io_out": [
      -6,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 2, 3, -1, 4]\noutput : list = [-1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(drop([-5, 2, 3, -1, 4],1))",
    "io_inp": [
      -5,
      2,
      3,
      -1,
      4
    ],
    "io_out": [
      -1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [5, 2, -1, -2, -3]\noutput : list = [-12, -8, -4, 8, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([5, 2, -1, -2, -3],4)))",
    "io_inp": [
      5,
      2,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -12,
      -8,
      -4,
      8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [4, -5, -2, -5]\noutput : list = [15, 15, 3, -21]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(mul_n([4, -5, -2, -5],-4)),16),5))",
    "io_inp": [
      4,
      -5,
      -2,
      -5
    ],
    "io_out": [
      15,
      15,
      3,
      -21
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(mul_n(input,-4)),16),5))"
  },
  {
    "input": "input : list = [-2, 3, -2, 2, -1]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sub_n(drop([-2, 3, -2, 2, -1],3),5)",
    "io_inp": [
      -2,
      3,
      -2,
      2,
      -1
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),5)"
  },
  {
    "input": "input : list = [5, -3, -1, -5, -3]\noutput : list = [-5, -3, -3, -1, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des([5, -3, -1, -5, -3])),9))",
    "io_inp": [
      5,
      -3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(input)),9))"
  },
  {
    "input": "input : list = [-2, 2, -2, 3, -1]\noutput : list = [0, 1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(mul_n([-2, 2, -2, 3, -1],-1),1),-2)))",
    "io_inp": [
      -2,
      2,
      -2,
      3,
      -1
    ],
    "io_out": [
      0,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(mul_n(input,-1),1),-2)))"
  },
  {
    "input": "input : list = [1, -5, 4]\noutput : list = [55, 40, 10]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des([1, -5, 4]),-4),3),5)",
    "io_inp": [
      1,
      -5,
      4
    ],
    "io_out": [
      55,
      40,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(input),-4),3),5)"
  },
  {
    "input": "input : list = [3, 4, -3, 0]\noutput : list = [2, 1, -2, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des([3, 4, -3, 0]),19))),2)",
    "io_inp": [
      3,
      4,
      -3,
      0
    ],
    "io_out": [
      2,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des(input),19))),2)"
  },
  {
    "input": "input : list = [-2, 0, -3]\noutput : list = [1]",
    "output": "generated_output : list = add_n(take([-2, 0, -3],1),3)",
    "io_inp": [
      -2,
      0,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),3)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(reverse([2, 4])))))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, -2, -5, -3]\noutput : list = [-8, 0, 4, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_des([-2, -2, -5, -3]),-3),4)),27)",
    "io_inp": [
      -2,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -8,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_des(input),-3),4)),27)"
  },
  {
    "input": "input : list = [5, -2, 4, -2]\noutput : list = [9, 2, 8, 2]",
    "output": "generated_output : list = add_n([5, -2, 4, -2],4)",
    "io_inp": [
      5,
      -2,
      4,
      -2
    ],
    "io_out": [
      9,
      2,
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, 0, 5, -1]\noutput : list = [-1, -6, -7, -7]",
    "output": "generated_output : list = add_n(sort_des(sub_n([-1, 0, 5, -1],3)),-3)",
    "io_inp": [
      -1,
      0,
      5,
      -1
    ],
    "io_out": [
      -1,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,3)),-3)"
  },
  {
    "input": "input : list = [-3, 2, 4, 5, 1]\noutput : list = [1, 0, -2, -3, -7]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-3, 2, 4, 5, 1],-4)))",
    "io_inp": [
      -3,
      2,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      0,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, 5, 0, -3, 3]\noutput : list = [5, 3, 2, 0, -3, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc([2, -5, 5, 0, -3, 3]),26))",
    "io_inp": [
      2,
      -5,
      5,
      0,
      -3,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),26))"
  },
  {
    "input": "input : list = [5, -1, 2, -5, 1, 0]\noutput : list = [4, -2, 1, -6, 0, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(sub_n([5, -1, 2, -5, 1, 0],4),2),-5)))",
    "io_inp": [
      5,
      -1,
      2,
      -5,
      1,
      0
    ],
    "io_out": [
      4,
      -2,
      1,
      -6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(sub_n(input,4),2),-5)))"
  },
  {
    "input": "input : list = [1, 2, 5, 5, 0, 5]\noutput : list = [-2, -1, 2, 2, -3, 2]",
    "output": "generated_output : list = sub_n([1, 2, 5, 5, 0, 5],3)",
    "io_inp": [
      1,
      2,
      5,
      5,
      0,
      5
    ],
    "io_out": [
      -2,
      -1,
      2,
      2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [8, 6, 3]",
    "output": "generated_output : list = sub_n([5, 3, 0],-3)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(reverse([4, 0]),5)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [0, -1, 1, -2]\noutput : list = [0]",
    "output": "generated_output : list = take(take(reverse(reverse(take([0, -1, 1, -2],1))),10),41)",
    "io_inp": [
      0,
      -1,
      1,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(take(input,1))),10),41)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [32, 64]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(sort_des([2, 4]),-4),-4)),30)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      32,
      64
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(sort_des(input),-4),-4)),30)"
  },
  {
    "input": "input : list = [3, -2, 2, 1]\noutput : list = [-3, 2, -2, -1]",
    "output": "generated_output : list = mul_n([3, -2, 2, 1],-1)",
    "io_inp": [
      3,
      -2,
      2,
      1
    ],
    "io_out": [
      -3,
      2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 3, -2, 0, -4, -5]\noutput : list = [28, 23, 3, 13, -12, 23]",
    "output": "generated_output : list = add_n(take(take(reverse(mul_n([-4, 3, -2, 0, -4, -5],-5)),37),31),3)",
    "io_inp": [
      -4,
      3,
      -2,
      0,
      -4,
      -5
    ],
    "io_out": [
      28,
      23,
      3,
      13,
      -12,
      23
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(mul_n(input,-5)),37),31),3)"
  },
  {
    "input": "input : list = [-3, -1, -2, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take([-3, -1, -2, -3],2)",
    "io_inp": [
      -3,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 0, 2]\noutput : list = [23, 13, 3]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(reverse([4, 0, 2]),5)),-3),29)",
    "io_inp": [
      4,
      0,
      2
    ],
    "io_out": [
      23,
      13,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(reverse(input),5)),-3),29)"
  },
  {
    "input": "input : list = [-4, 0, -2, -1, -4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(take([-4, 0, -2, -1, -4],2)),4),1))",
    "io_inp": [
      -4,
      0,
      -2,
      -1,
      -4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(take(input,2)),4),1))"
  },
  {
    "input": "input : list = [-3, -2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse(drop([-3, -2, -3],1))",
    "io_inp": [
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 5, -5, -4]\noutput : list = [-9, 0, -10, -9]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(add_n([-4, 5, -5, -4],1)),3),3))",
    "io_inp": [
      -4,
      5,
      -5,
      -4
    ],
    "io_out": [
      -9,
      0,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(add_n(input,1)),3),3))"
  },
  {
    "input": "input : list = [0, 4, 4, -1, -2]\noutput : list = [5, 10]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(drop([0, 4, 4, -1, -2],3),-5))),33)",
    "io_inp": [
      0,
      4,
      4,
      -1,
      -2
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(drop(input,3),-5))),33)"
  },
  {
    "input": "input : list = [-3, -3, -2, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(take([-3, -3, -2, 1],1))),2),33)",
    "io_inp": [
      -3,
      -3,
      -2,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(take(input,1))),2),33)"
  },
  {
    "input": "input : list = [-5, -5, 4, 3, 2, -5]\noutput : list = [-54, -54]",
    "output": "generated_output : list = drop(sub_n(reverse(mul_n(mul_n([-5, -5, 4, 3, 2, -5],-2),-5)),4),4)",
    "io_inp": [
      -5,
      -5,
      4,
      3,
      2,
      -5
    ],
    "io_out": [
      -54,
      -54
    ],
    "output_masked": "generated_output : list = drop(sub_n(reverse(mul_n(mul_n(input,-2),-5)),4),4)"
  },
  {
    "input": "input : list = [0, -1, 1, 2, -4, -1]\noutput : list = [1, 0, -1, -2, -2, -5]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(add_n([0, -1, 1, 2, -4, -1],1)),-2)),1)",
    "io_inp": [
      0,
      -1,
      1,
      2,
      -4,
      -1
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(add_n(input,1)),-2)),1)"
  },
  {
    "input": "input : list = [2, 0, -1, 1, -3]\noutput : list = [2, 4, 0]",
    "output": "generated_output : list = sub_n(drop([2, 0, -1, 1, -3],2),-3)",
    "io_inp": [
      2,
      0,
      -1,
      1,
      -3
    ],
    "io_out": [
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [24, -36, -60]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_asc([-3, 2, -5])),-4),-3))",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      24,
      -36,
      -60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_asc(input)),-4),-3))"
  },
  {
    "input": "input : list = [-3, -3, -2, 2]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take([-3, -3, -2, 2],1),-1)",
    "io_inp": [
      -3,
      -3,
      -2,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [0, 5, -5, 4, -4]\noutput : list = [0, -5, -10]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(take([0, 5, -5, 4, -4],3),5))))",
    "io_inp": [
      0,
      5,
      -5,
      4,
      -4
    ],
    "io_out": [
      0,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(take(input,3),5))))"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [-1, -3, 2]",
    "output": "generated_output : list = sub_n([0, -2, 3],1)",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      -1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, -5, -3]\noutput : list = [10, 0, 30]",
    "output": "generated_output : list = mul_n(take(sub_n(take(reverse([1, -5, -3]),6),-5),6),5)",
    "io_inp": [
      1,
      -5,
      -3
    ],
    "io_out": [
      10,
      0,
      30
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(reverse(input),6),-5),6),5)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-3]",
    "output": "generated_output : list = take(reverse(take([-3, -4, -4],1)),4)",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),4)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n([1, -1],-2)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-2, 0, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_asc([4, -2, -4]))),-2))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-5, 5, 2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take([-5, 5, 2],1),-2)))",
    "io_inp": [
      -5,
      5,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(input,1),-2)))"
  },
  {
    "input": "input : list = [-2, 5, 5, -5, -5, 3]\noutput : list = [0, 7, 7, -3, -3, 5]",
    "output": "generated_output : list = add_n([-2, 5, 5, -5, -5, 3],2)",
    "io_inp": [
      -2,
      5,
      5,
      -5,
      -5,
      3
    ],
    "io_out": [
      0,
      7,
      7,
      -3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [0, 5, -2, 2, -2]\noutput : list = [0, -2, -2]",
    "output": "generated_output : list = take(take(drop(reverse(sort_asc([0, 5, -2, 2, -2])),2),10),50)",
    "io_inp": [
      0,
      5,
      -2,
      2,
      -2
    ],
    "io_out": [
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(take(drop(reverse(sort_asc(input)),2),10),50)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take([-1, -3, -5],1),-1)",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [1, 1, 5, -5, 4, 4]\noutput : list = [-3, -3, -15, 15, -12, -12]",
    "output": "generated_output : list = mul_n([1, 1, 5, -5, 4, 4],-3)",
    "io_inp": [
      1,
      1,
      5,
      -5,
      4,
      4
    ],
    "io_out": [
      -3,
      -3,
      -15,
      15,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -3, -1, 5, -4]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sort_asc([-4, -3, -1, 5, -4]),2),-3),10))",
    "io_inp": [
      -4,
      -3,
      -1,
      5,
      -4
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sort_asc(input),2),-3),10))"
  },
  {
    "input": "input : list = [1, 2, -4, -5, 2]\noutput : list = [2, 2, -4, -5]",
    "output": "generated_output : list = sort_des(take(drop([1, 2, -4, -5, 2],1),22))",
    "io_inp": [
      1,
      2,
      -4,
      -5,
      2
    ],
    "io_out": [
      2,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,1),22))"
  },
  {
    "input": "input : list = [2, 0, -3, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n(take([2, 0, -3, -3],1),3)),-5))",
    "io_inp": [
      2,
      0,
      -3,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(take(input,1),3)),-5))"
  },
  {
    "input": "input : list = [-5, 4, -1, 2]\noutput : list = [-144, 180, 0, 108]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n([-5, 4, -1, 2],-1),3),3),4)",
    "io_inp": [
      -5,
      4,
      -1,
      2
    ],
    "io_out": [
      -144,
      180,
      0,
      108
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(input,-1),3),3),4)"
  },
  {
    "input": "input : list = [-1, 4, 0, 4, 2]\noutput : list = [4, 5, 7, 9, 9]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(sort_des([-1, 4, 0, 4, 2]))),-5))",
    "io_inp": [
      -1,
      4,
      0,
      4,
      2
    ],
    "io_out": [
      4,
      5,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(drop(sort_asc(drop([-5, -2, 2],1)),1)),43)",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(sort_asc(drop(input,1)),1)),43)"
  },
  {
    "input": "input : list = [-4, -3, -2, -3, -2, 1]\noutput : list = [8, 12, 12, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take([-4, -3, -2, -3, -2, 1],4))),-4))",
    "io_inp": [
      -4,
      -3,
      -2,
      -3,
      -2,
      1
    ],
    "io_out": [
      8,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take(input,4))),-4))"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take([-3, -2, 1],1))",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-5, 0, 0, -1, 4]\noutput : list = [16, 0, 0, -4, -20]",
    "output": "generated_output : list = take(sort_des(take(mul_n(reverse([-5, 0, 0, -1, 4]),4),20)),46)",
    "io_inp": [
      -5,
      0,
      0,
      -1,
      4
    ],
    "io_out": [
      16,
      0,
      0,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(reverse(input),4),20)),46)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([0, 2, 3]))",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, -4, 2, 1, 4]\noutput : list = [4, 2, 1, -3, -4]",
    "output": "generated_output : list = sort_des(reverse([-3, -4, 2, 1, 4]))",
    "io_inp": [
      -3,
      -4,
      2,
      1,
      4
    ],
    "io_out": [
      4,
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, -4, -3, 0, 4]\noutput : list = [4, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-5, -4, -3, 0, 4]))",
    "io_inp": [
      -5,
      -4,
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -2, 3, -3, -4]\noutput : list = [-4, -5, 0, -6, -7]",
    "output": "generated_output : list = add_n(sub_n([-1, -2, 3, -3, -4],2),-1)",
    "io_inp": [
      -1,
      -2,
      3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -5,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-1)"
  },
  {
    "input": "input : list = [5, 2, -4, -2, -2]\noutput : list = [-6, -3, 1, 1, 3]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(sort_des([5, 2, -4, -2, -2]),-1),-2),-1),25)",
    "io_inp": [
      5,
      2,
      -4,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -3,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(sort_des(input),-1),-2),-1),25)"
  },
  {
    "input": "input : list = [1, 3, -2, -3]\noutput : list = [-18, -10, 2, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n(reverse([1, 3, -2, -3]),-2)),-4),-2)",
    "io_inp": [
      1,
      3,
      -2,
      -3
    ],
    "io_out": [
      -18,
      -10,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(reverse(input),-2)),-4),-2)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(take([2, -5, -3],1),2))))",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(take(input,1),2))))"
  },
  {
    "input": "input : list = [-1, -4, -1, 5]\noutput : list = [-2, 1, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(drop(sub_n([-1, -4, -1, 5],-1),1))),-1)",
    "io_inp": [
      -1,
      -4,
      -1,
      5
    ],
    "io_out": [
      -2,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(drop(sub_n(input,-1),1))),-1)"
  },
  {
    "input": "input : list = [2, 3, 2, 1, 5]\noutput : list = [7, 5, 4, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n([2, 3, 2, 1, 5],3)),-3)),-2)",
    "io_inp": [
      2,
      3,
      2,
      1,
      5
    ],
    "io_out": [
      7,
      5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(sub_n(input,3)),-3)),-2)"
  },
  {
    "input": "input : list = [0, 3, 4, 1, 5]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(drop(sort_des([0, 3, 4, 1, 5]),2),-4)),3)",
    "io_inp": [
      0,
      3,
      4,
      1,
      5
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(drop(sort_des(input),2),-4)),3)"
  },
  {
    "input": "input : list = [-5, 4, 5, 4, 0]\noutput : list = [4, 9, 13, 13, 14]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(add_n([-5, 4, 5, 4, 0],5),5),-4),30))",
    "io_inp": [
      -5,
      4,
      5,
      4,
      0
    ],
    "io_out": [
      4,
      9,
      13,
      13,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(add_n(input,5),5),-4),30))"
  },
  {
    "input": "input : list = [2, 5, 1, -3]\noutput : list = [10, -6, -10, -22]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(mul_n([2, 5, 1, -3],-1),4)),-2))",
    "io_inp": [
      2,
      5,
      1,
      -3
    ],
    "io_out": [
      10,
      -6,
      -10,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(mul_n(input,-1),4)),-2))"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [12, 8, 4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(sort_des([0, 2, 1])),-3)),-4)",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      12,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(sort_des(input)),-3)),-4)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [11, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(mul_n([3, 4],-2),-2)),5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      11,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(mul_n(input,-2),-2)),5))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(mul_n([4, 4],-1)),3)),3)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(mul_n(input,-1)),3)),3)"
  },
  {
    "input": "input : list = [4, -3, 0, 0, -4]\noutput : list = [9, 5, 5, 2, 1]",
    "output": "generated_output : list = sort_des(add_n([4, -3, 0, 0, -4],5))",
    "io_inp": [
      4,
      -3,
      0,
      0,
      -4
    ],
    "io_out": [
      9,
      5,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [-3, -1, -2, 5, 0, -1]\noutput : list = [-25, 10, -15, -20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(drop([-3, -1, -2, 5, 0, -1],2),1),4),-1),5)",
    "io_inp": [
      -3,
      -1,
      -2,
      5,
      0,
      -1
    ],
    "io_out": [
      -25,
      10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(drop(input,2),1),4),-1),5)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-24, -12, -4]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(sub_n([0, -2, -5],1),17),1),4))",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -24,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(sub_n(input,1),17),1),4))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(sort_des([-5, -3]))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, -3, -1, -2, 5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take([1, -3, -1, -2, 5],1),-1)))",
    "io_inp": [
      1,
      -3,
      -1,
      -2,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(input,1),-1)))"
  },
  {
    "input": "input : list = [3, -1, 4, -4, -5]\noutput : list = [6, -2, 8, -8, -10]",
    "output": "generated_output : list = mul_n([3, -1, 4, -4, -5],2)",
    "io_inp": [
      3,
      -1,
      4,
      -4,
      -5
    ],
    "io_out": [
      6,
      -2,
      8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [1, 2, -4]",
    "output": "generated_output : list = add_n(reverse(sub_n([-3, 3, 2],-3)),-4)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-3)),-4)"
  },
  {
    "input": "input : list = [-4, 3, 1, 1, -3]\noutput : list = [-12]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(take([-4, 3, 1, 1, -3],1),1),4)))",
    "io_inp": [
      -4,
      3,
      1,
      1,
      -3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(take(input,1),1),4)))"
  },
  {
    "input": "input : list = [-2, 1, -3, 3, 4]\noutput : list = [-3, -2, 1, 3, 4]",
    "output": "generated_output : list = sort_asc([-2, 1, -3, 3, 4])",
    "io_inp": [
      -2,
      1,
      -3,
      3,
      4
    ],
    "io_out": [
      -3,
      -2,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, 4, 2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = drop([0, 0, 4, 2, -4],3)",
    "io_inp": [
      0,
      0,
      4,
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 5, -2, 0]\noutput : list = [-9, -3, 12, 12]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(sort_asc([5, 5, -2, 0]),6),3),-3))",
    "io_inp": [
      5,
      5,
      -2,
      0
    ],
    "io_out": [
      -9,
      -3,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(sort_asc(input),6),3),-3))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(sort_des(take(take(mul_n([-4, -4],2),1),14)),2)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(mul_n(input,2),1),14)),2)"
  },
  {
    "input": "input : list = [-5, 1, 4, -3, 0, -5]\noutput : list = [-9, -6, -5, -2, 0, 0]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_asc([-5, 1, 4, -3, 0, -5]),-4),1),-1))",
    "io_inp": [
      -5,
      1,
      4,
      -3,
      0,
      -5
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_asc(input),-4),1),-1))"
  },
  {
    "input": "input : list = [4, 1, 0, -3, 5, -1]\noutput : list = [7, 5, 4, 3, 0, -1]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(mul_n([4, 1, 0, -3, 5, -1],-1)),23),3),-1)",
    "io_inp": [
      4,
      1,
      0,
      -3,
      5,
      -1
    ],
    "io_out": [
      7,
      5,
      4,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(mul_n(input,-1)),23),3),-1)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(sort_des(take(take(sort_asc([0, -1]),5),12)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(sort_asc(input),5),12)))"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [-20, -15, -5]",
    "output": "generated_output : list = take(mul_n(take(sort_des(sort_asc([3, 4, 1])),3),-5),7)",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      -20,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(sort_asc(input)),3),-5),7)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3, 2, -3, -2, -5]\noutput : list = [-1, 1, 1, 2, 2, 6]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(reverse([-2, -3, 2, -3, -2, -5])),-3)),-1)",
    "io_inp": [
      -2,
      -3,
      2,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -1,
      1,
      1,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(reverse(input)),-3)),-1)"
  },
  {
    "input": "input : list = [1, -2, 4, 0, -4]\noutput : list = [-6, -4, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([1, -2, 4, 0, -4],-2)))",
    "io_inp": [
      1,
      -2,
      4,
      0,
      -4
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-2)))"
  },
  {
    "input": "input : list = [-1, -3, 3, 4, 4, 4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(take([-1, -3, 3, 4, 4, 4],2)),-1)),21)",
    "io_inp": [
      -1,
      -3,
      3,
      4,
      4,
      4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(take(input,2)),-1)),21)"
  },
  {
    "input": "input : list = [3, -4, 4, 1]\noutput : list = [-1, 2, -6, 1]",
    "output": "generated_output : list = reverse(add_n([3, -4, 4, 1],-2))",
    "io_inp": [
      3,
      -4,
      4,
      1
    ],
    "io_out": [
      -1,
      2,
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [1, -5, -2, -4]\noutput : list = [1, -11]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n([1, -5, -2, -4],-2),-1),2),1)",
    "io_inp": [
      1,
      -5,
      -2,
      -4
    ],
    "io_out": [
      1,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(input,-2),-1),2),1)"
  },
  {
    "input": "input : list = [5, 1, -3, -1, -3]\noutput : list = [-5, -3, -5, -1, 3]",
    "output": "generated_output : list = reverse(sub_n([5, 1, -3, -1, -3],2))",
    "io_inp": [
      5,
      1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [-4, 1, -3, -3, 5]\noutput : list = [-11, -8, -8, 4, 16]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(sort_asc([-4, 1, -3, -3, 5]),3))),1)",
    "io_inp": [
      -4,
      1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -11,
      -8,
      -8,
      4,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(sort_asc(input),3))),1)"
  },
  {
    "input": "input : list = [-1, 5, 4, 5]\noutput : list = [-3, 3, 2, 3]",
    "output": "generated_output : list = add_n([-1, 5, 4, 5],-2)",
    "io_inp": [
      -1,
      5,
      4,
      5
    ],
    "io_out": [
      -3,
      3,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -5, 2, -5]\noutput : list = [-4, -4, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(sub_n([-2, -5, 2, -5],-1),16))))",
    "io_inp": [
      -2,
      -5,
      2,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(sub_n(input,-1),16))))"
  },
  {
    "input": "input : list = [-4, -2, 2, 4, -4, -1]\noutput : list = [-7, -5, -1, 1, -7, -4]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n([-4, -2, 2, 4, -4, -1],4),1),13),-1)",
    "io_inp": [
      -4,
      -2,
      2,
      4,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -1,
      1,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(input,4),1),13),-1)"
  },
  {
    "input": "input : list = [0, -4, -5]\noutput : list = [-9, -10]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(sort_asc([0, -4, -5]),2))),-5)",
    "io_inp": [
      0,
      -4,
      -5
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(sort_asc(input),2))),-5)"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [32, 8, -8]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([-1, 4, 1],2),4))",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      32,
      8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,2),4))"
  },
  {
    "input": "input : list = [-1, 4, -5, -3, -1, 4]\noutput : list = [-5, -3, -1, -1, 4, 4]",
    "output": "generated_output : list = reverse(sort_des([-1, 4, -5, -3, -1, 4]))",
    "io_inp": [
      -1,
      4,
      -5,
      -3,
      -1,
      4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc([3, -3])),15)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),15)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-40, -35]",
    "output": "generated_output : list = mul_n(add_n([3, 2],5),-5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -40,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),-5)"
  },
  {
    "input": "input : list = [2, 0, 5, -3]\noutput : list = [10, -30, -5, -15]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(sub_n([2, 0, 5, -3],4)),-5),18),-5)",
    "io_inp": [
      2,
      0,
      5,
      -3
    ],
    "io_out": [
      10,
      -30,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(sub_n(input,4)),-5),18),-5)"
  },
  {
    "input": "input : list = [-5, -3, -4, 4, -5, 4]\noutput : list = [4, 4, -3, -4, -5, -5]",
    "output": "generated_output : list = take(take(reverse(sort_asc(reverse([-5, -3, -4, 4, -5, 4]))),19),14)",
    "io_inp": [
      -5,
      -3,
      -4,
      4,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(reverse(input))),19),14)"
  },
  {
    "input": "input : list = [-5, 2, 3, -3, 0, 4]\noutput : list = [-5, 2, 3]",
    "output": "generated_output : list = take(take(take(take([-5, 2, 3, -3, 0, 4],3),21),33),40)",
    "io_inp": [
      -5,
      2,
      3,
      -3,
      0,
      4
    ],
    "io_out": [
      -5,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(take(input,3),21),33),40)"
  },
  {
    "input": "input : list = [-2, -3, 3, -1, 1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(take([-2, -3, 3, -1, 1],2),-3),-3),2))",
    "io_inp": [
      -2,
      -3,
      3,
      -1,
      1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(take(input,2),-3),-3),2))"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [1, -3, -3]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(add_n([1, 5, 1],-3)),1)),1)",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(add_n(input,-3)),1)),1)"
  },
  {
    "input": "input : list = [-3, 0, 1, 3]\noutput : list = [-8, -5, -4, -2]",
    "output": "generated_output : list = add_n([-3, 0, 1, 3],-5)",
    "io_inp": [
      -3,
      0,
      1,
      3
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-6, -4, -3]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(reverse([-2, -5, -3]),1)),37),36)",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(reverse(input),1)),37),36)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [9, 3, -15]",
    "output": "generated_output : list = reverse(mul_n(sort_des([-1, 5, -3]),-3))",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      9,
      3,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [0, -5, -4]\noutput : list = [-4, -5, 0]",
    "output": "generated_output : list = reverse([0, -5, -4])",
    "io_inp": [
      0,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc([-5, 0, -2]),1),1),1)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(input),1),1),1)"
  },
  {
    "input": "input : list = [5, -1, -4, 1, -3]\noutput : list = [4, 0, -2, -4, -5]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(sort_des([5, -1, -4, 1, -3])),-1),11))",
    "io_inp": [
      5,
      -1,
      -4,
      1,
      -3
    ],
    "io_out": [
      4,
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(sort_des(input)),-1),11))"
  },
  {
    "input": "input : list = [4, 2, -2, -2, -5, 5]\noutput : list = [4, 2]",
    "output": "generated_output : list = take(take(take([4, 2, -2, -2, -5, 5],2),22),10)",
    "io_inp": [
      4,
      2,
      -2,
      -2,
      -5,
      5
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = take(take(take(input,2),22),10)"
  },
  {
    "input": "input : list = [-5, 2, 3, 4, -5]\noutput : list = [2, 2, 9, 10, 11]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(reverse([-5, 2, 3, 4, -5]),-4),3)))",
    "io_inp": [
      -5,
      2,
      3,
      4,
      -5
    ],
    "io_out": [
      2,
      2,
      9,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(reverse(input),-4),3)))"
  },
  {
    "input": "input : list = [-5, -4, 3, 2, 2, 4]\noutput : list = [-5, -4, 3]",
    "output": "generated_output : list = sort_asc(take([-5, -4, 3, 2, 2, 4],3))",
    "io_inp": [
      -5,
      -4,
      3,
      2,
      2,
      4
    ],
    "io_out": [
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [4, -1, 4, -4, 5]\noutput : list = [-8, -2, 8, 8, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(reverse([4, -1, 4, -4, 5])),2)))",
    "io_inp": [
      4,
      -1,
      4,
      -4,
      5
    ],
    "io_out": [
      -8,
      -2,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(reverse(input)),2)))"
  },
  {
    "input": "input : list = [3, 1, -5, -3, -4]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(take([3, 1, -5, -3, -4],2)),3)))",
    "io_inp": [
      3,
      1,
      -5,
      -3,
      -4
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(take(input,2)),3)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-4, -12]",
    "output": "generated_output : list = take(reverse(take(reverse(mul_n([-1, -3],4)),3)),19)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(mul_n(input,4)),3)),19)"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [6, 4, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(sub_n([-2, 1, 3],-3)))))",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [-1, 2, -5]\noutput : list = [0, -3, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(add_n([-1, 2, -5],-1),1))))",
    "io_inp": [
      -1,
      2,
      -5
    ],
    "io_out": [
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(add_n(input,-1),1))))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n([4, -2],-2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des([-3, 4, 0]))))",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [2, -2, -2, -2, -5, 3]\noutput : list = [-8, -24, -24, -24]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take([2, -2, -2, -2, -5, 3],4)),4)),4)",
    "io_inp": [
      2,
      -2,
      -2,
      -2,
      -5,
      3
    ],
    "io_out": [
      -8,
      -24,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take(input,4)),4)),4)"
  },
  {
    "input": "input : list = [-4, -1, -2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(drop([-4, -1, -2, 3],2))),29)",
    "io_inp": [
      -4,
      -1,
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(drop(input,2))),29)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(reverse([-4, -2]))),-5))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(reverse(input))),-5))"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [3, 3, 9]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(sub_n([1, -1, -1],-3),2),-3),3))",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(sub_n(input,-3),2),-3),3))"
  },
  {
    "input": "input : list = [1, 0, 1, 4, 0, 1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(sort_des([1, 0, 1, 4, 0, 1])),1)))",
    "io_inp": [
      1,
      0,
      1,
      4,
      0,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [5, 3, -2, 3, 3]\noutput : list = [-35]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(sub_n([5, 3, -2, 3, 3],-1),1),1),-5))",
    "io_inp": [
      5,
      3,
      -2,
      3,
      3
    ],
    "io_out": [
      -35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(sub_n(input,-1),1),1),-5))"
  },
  {
    "input": "input : list = [2, -2, -3, -4, -1]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = take(sort_asc(add_n(sub_n(take([2, -2, -3, -4, -1],3),5),5)),12)",
    "io_inp": [
      2,
      -2,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sub_n(take(input,3),5),5)),12)"
  },
  {
    "input": "input : list = [5, 2, 4, 3, 0, -1]\noutput : list = [-10, -12, -16, -18, -20, -22]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n([5, 2, 4, 3, 0, -1],3),-3),-2))",
    "io_inp": [
      5,
      2,
      4,
      3,
      0,
      -1
    ],
    "io_out": [
      -10,
      -12,
      -16,
      -18,
      -20,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(input,3),-3),-2))"
  },
  {
    "input": "input : list = [5, 0, -2, 1, 0]\noutput : list = [9, 4, 2, 5, 4]",
    "output": "generated_output : list = reverse(reverse(add_n([5, 0, -2, 1, 0],4)))",
    "io_inp": [
      5,
      0,
      -2,
      1,
      0
    ],
    "io_out": [
      9,
      4,
      2,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(input,4)))"
  },
  {
    "input": "input : list = [-3, -1, -1, 2, -5, 2]\noutput : list = [-4, -11, -4]",
    "output": "generated_output : list = sub_n(sub_n(drop([-3, -1, -1, 2, -5, 2],3),5),1)",
    "io_inp": [
      -3,
      -1,
      -1,
      2,
      -5,
      2
    ],
    "io_out": [
      -4,
      -11,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,3),5),1)"
  },
  {
    "input": "input : list = [-2, -2, -1, 4]\noutput : list = [-4, -4, -3, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(add_n([-2, -2, -1, 4],-2)),-5)),5)",
    "io_inp": [
      -2,
      -2,
      -1,
      4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(add_n(input,-2)),-5)),5)"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [10, 5, 20]",
    "output": "generated_output : list = mul_n([-2, -1, -4],-5)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      10,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, -4, -3, -3, -1]\noutput : list = [36, 44, 44, 48, 28]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(add_n([1, -4, -3, -3, -1],-1)),4),-3),-4)",
    "io_inp": [
      1,
      -4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      36,
      44,
      44,
      48,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(add_n(input,-1)),4),-3),-4)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take([5, 1, -5],1))),4)",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(input,1))),4)"
  },
  {
    "input": "input : list = [1, 0, 1, 5]\noutput : list = [3, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_asc([1, 0, 1, 5]))),2))",
    "io_inp": [
      1,
      0,
      1,
      5
    ],
    "io_out": [
      3,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [-3, 0, 3, -4, -5, -3]\noutput : list = [3, 0, -3, 4, 5, 3]",
    "output": "generated_output : list = mul_n([-3, 0, 3, -4, -5, -3],-1)",
    "io_inp": [
      -3,
      0,
      3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      3,
      0,
      -3,
      4,
      5,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 4, 4, -1, -2, -2]\noutput : list = [5, -20, -20, 5, 10, 10]",
    "output": "generated_output : list = mul_n([-1, 4, 4, -1, -2, -2],-5)",
    "io_inp": [
      -1,
      4,
      4,
      -1,
      -2,
      -2
    ],
    "io_out": [
      5,
      -20,
      -20,
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -1, 5, 0, -1]\noutput : list = [25, 0, -5, -5, -15]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(sort_asc([-3, -1, 5, 0, -1])),-5),-1))",
    "io_inp": [
      -3,
      -1,
      5,
      0,
      -1
    ],
    "io_out": [
      25,
      0,
      -5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(sort_asc(input)),-5),-1))"
  },
  {
    "input": "input : list = [-3, -1, -1, -1, -1]\noutput : list = [16, 12, 12, 12, 12]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n(add_n([-3, -1, -1, -1, -1],-5),-2)),9))",
    "io_inp": [
      -3,
      -1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      16,
      12,
      12,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(add_n(input,-5),-2)),9))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des([0, -3])",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [12, 14, 5]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n([-4, 5, 3],1),1),-5)),-4)",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      12,
      14,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n(input,1),1),-5)),-4)"
  },
  {
    "input": "input : list = [2, 5, 2, -2, -4, -5]\noutput : list = [-6, -15, -6, 6, 12, 15]",
    "output": "generated_output : list = mul_n([2, 5, 2, -2, -4, -5],-3)",
    "io_inp": [
      2,
      5,
      2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -15,
      -6,
      6,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 5, -3, -2, -5]\noutput : list = [-5, -3, -2, 5]",
    "output": "generated_output : list = sort_asc(drop([-5, 5, -3, -2, -5],1))",
    "io_inp": [
      -5,
      5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [-4, -2, 5]",
    "output": "generated_output : list = reverse([5, -2, -4])",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des([3, 1])",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 0, -2, 3, -4]\noutput : list = [-18, -8, -18, 7, -28]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(mul_n([-2, 0, -2, 3, -4],5),-5)),-3))",
    "io_inp": [
      -2,
      0,
      -2,
      3,
      -4
    ],
    "io_out": [
      -18,
      -8,
      -18,
      7,
      -28
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(mul_n(input,5),-5)),-3))"
  },
  {
    "input": "input : list = [3, -5, 0, 0, 3, -1]\noutput : list = [-1, 3, 0, 0, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 0, 0, 3, -1])",
    "io_inp": [
      3,
      -5,
      0,
      0,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      0,
      0,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -1, 2, 5, 4, 4]\noutput : list = [-2, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(sort_des([3, -1, 2, 5, 4, 4]),-1),3),5))",
    "io_inp": [
      3,
      -1,
      2,
      5,
      4,
      4
    ],
    "io_out": [
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(sort_des(input),-1),3),5))"
  },
  {
    "input": "input : list = [2, -1, -3, 1]\noutput : list = [-4, -8, -6, -3]",
    "output": "generated_output : list = take(take(reverse(add_n([2, -1, -3, 1],-5)),10),22)",
    "io_inp": [
      2,
      -1,
      -3,
      1
    ],
    "io_out": [
      -4,
      -8,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(input,-5)),10),22)"
  },
  {
    "input": "input : list = [2, -3, -1, 4]\noutput : list = [0, 6, 15, 21]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sub_n([2, -3, -1, 4],-3)),3)))",
    "io_inp": [
      2,
      -3,
      -1,
      4
    ],
    "io_out": [
      0,
      6,
      15,
      21
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sub_n(input,-3)),3)))"
  },
  {
    "input": "input : list = [-4, 2, 5, 1, -3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(drop([-4, 2, 5, 1, -3, -1],4))",
    "io_inp": [
      -4,
      2,
      5,
      1,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,4))"
  },
  {
    "input": "input : list = [-4, -5, 1, 3, 3, 2]\noutput : list = [1, -1, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_des(drop(take([-4, -5, 1, 3, 3, 2],4),1))),-2)",
    "io_inp": [
      -4,
      -5,
      1,
      3,
      3,
      2
    ],
    "io_out": [
      1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(drop(take(input,4),1))),-2)"
  },
  {
    "input": "input : list = [-2, 3, 2, 4]\noutput : list = [-2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([-2, 3, 2, 4])",
    "io_inp": [
      -2,
      3,
      2,
      4
    ],
    "io_out": [
      -2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 2, -1, 2, -4]\noutput : list = [5, 5, 2, 2, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n([-1, 2, -1, 2, -4],3)),5))",
    "io_inp": [
      -1,
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      5,
      5,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(input,3)),5))"
  },
  {
    "input": "input : list = [-2, 0, -2, 0, -5]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(take([-2, 0, -2, 0, -5],1),4)",
    "io_inp": [
      -2,
      0,
      -2,
      0,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),4)"
  },
  {
    "input": "input : list = [-4, 2, 4, -3, -1]\noutput : list = [2, 0, -3, -5, -6]",
    "output": "generated_output : list = add_n(add_n(sort_des([-4, 2, 4, -3, -1]),-1),-1)",
    "io_inp": [
      -4,
      2,
      4,
      -3,
      -1
    ],
    "io_out": [
      2,
      0,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-1),-1)"
  },
  {
    "input": "input : list = [1, -5, 3, 4, 1]\noutput : list = [3, 2, 0, 0, -6]",
    "output": "generated_output : list = sort_des(add_n(add_n([1, -5, 3, 4, 1],4),-5))",
    "io_inp": [
      1,
      -5,
      3,
      4,
      1
    ],
    "io_out": [
      3,
      2,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,4),-5))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(add_n([1, -3],-4)),15),-1),-5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(add_n(input,-4)),15),-1),-5)"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [25, 5, -25]",
    "output": "generated_output : list = sort_des(reverse(reverse(mul_n(reverse([-5, 5, -1]),-5))))",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      25,
      5,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(mul_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(drop([1, -2, -1],1))),10))",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(drop(input,1))),10))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [9, -6]",
    "output": "generated_output : list = mul_n([-3, 2],-3)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [-6, -4, -4]",
    "output": "generated_output : list = take(mul_n([-3, -2, -2],2),17)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),17)"
  },
  {
    "input": "input : list = [4, 2, 3, -3, 3, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(take([4, 2, 3, -3, 3, 4],2))",
    "io_inp": [
      4,
      2,
      3,
      -3,
      3,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n([1, -1, 3],5)),2),-3)",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(input,5)),2),-3)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n(sort_des([0, 0]),1)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [0, -2, 3, 1, -4, -4]\noutput : list = [16, 16, 8, 0, -4, -12]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n([0, -2, 3, 1, -4, -4],-4),27)))",
    "io_inp": [
      0,
      -2,
      3,
      1,
      -4,
      -4
    ],
    "io_out": [
      16,
      16,
      8,
      0,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(input,-4),27)))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [22, 12]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des([5, 3]),-1),5),2))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      22,
      12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des(input),-1),5),2))"
  },
  {
    "input": "input : list = [4, 4, 1, 0, -2]\noutput : list = [9, 9, 6, 5, 3]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(reverse([4, 4, 1, 0, -2]),-5))))",
    "io_inp": [
      4,
      4,
      1,
      0,
      -2
    ],
    "io_out": [
      9,
      9,
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(reverse(input),-5))))"
  },
  {
    "input": "input : list = [-5, -3, 2, 1, 2, 3]\noutput : list = [8, 6, 6, 4, -4, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(mul_n([-5, -3, 2, 1, 2, 3],2)),-2),20))",
    "io_inp": [
      -5,
      -3,
      2,
      1,
      2,
      3
    ],
    "io_out": [
      8,
      6,
      6,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(mul_n(input,2)),-2),20))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n(take(add_n([-2, 2],-4),9),-1)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-4),9),-1)"
  },
  {
    "input": "input : list = [4, 4, 4, -4, 3]\noutput : list = [3, -4, 4, 4, 4]",
    "output": "generated_output : list = take(reverse([4, 4, 4, -4, 3]),9)",
    "io_inp": [
      4,
      4,
      4,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [-3, 1, 3, -4]\noutput : list = [8, -6, -2]",
    "output": "generated_output : list = reverse(mul_n(drop([-3, 1, 3, -4],1),-2))",
    "io_inp": [
      -3,
      1,
      3,
      -4
    ],
    "io_out": [
      8,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,1),-2))"
  },
  {
    "input": "input : list = [-4, 0, 1, 4]\noutput : list = [75, -5, -25, -85]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(sort_des([-4, 0, 1, 4]),-5)),4),-5)",
    "io_inp": [
      -4,
      0,
      1,
      4
    ],
    "io_out": [
      75,
      -5,
      -25,
      -85
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(sort_des(input),-5)),4),-5)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-114, 156]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(mul_n([-5, 4],-5),-2),-2),-3))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -114,
      156
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(mul_n(input,-5),-2),-2),-3))"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [-20, -16, -10]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(sub_n([5, 0, 3],-5)),-2),8))",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      -20,
      -16,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(sub_n(input,-5)),-2),8))"
  },
  {
    "input": "input : list = [-2, -1, 0, -4, -4]\noutput : list = [-4, -4, -2, -1, 0]",
    "output": "generated_output : list = take(sort_asc([-2, -1, 0, -4, -4]),11)",
    "io_inp": [
      -2,
      -1,
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [5, 5, 4, -3, 2, 3]\noutput : list = [4, -6, -8, -10, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([5, 5, 4, -3, 2, 3],-1),-2))",
    "io_inp": [
      5,
      5,
      4,
      -3,
      2,
      3
    ],
    "io_out": [
      4,
      -6,
      -8,
      -10,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,-1),-2))"
  },
  {
    "input": "input : list = [-5, 4, -4, -4, -1, -4]\noutput : list = [-12]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(take([-5, 4, -4, -4, -1, -4],1),4),4),3),54)",
    "io_inp": [
      -5,
      4,
      -4,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(take(input,1),4),4),3),54)"
  },
  {
    "input": "input : list = [5, 5, -2, -2, 3]\noutput : list = [1, -4, -4, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(reverse([5, 5, -2, -2, 3]),2),3),-4),1)",
    "io_inp": [
      5,
      5,
      -2,
      -2,
      3
    ],
    "io_out": [
      1,
      -4,
      -4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(reverse(input),2),3),-4),1)"
  },
  {
    "input": "input : list = [-5, 1, -1, -4]\noutput : list = [-4, -3, 0, 2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sub_n([-5, 1, -1, -4],3)),-2),2))",
    "io_inp": [
      -5,
      1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sub_n(input,3)),-2),2))"
  },
  {
    "input": "input : list = [5, 4, 2, -4, -3]\noutput : list = [5, 4, 2, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_des([5, 4, 2, -4, -3])))))",
    "io_inp": [
      5,
      4,
      2,
      -4,
      -3
    ],
    "io_out": [
      5,
      4,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, -5, -5, 4, 1, -2]\noutput : list = [-1, -4, -7, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des([-2, -5, -5, 4, 1, -2]),4))),5)",
    "io_inp": [
      -2,
      -5,
      -5,
      4,
      1,
      -2
    ],
    "io_out": [
      -1,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des(input),4))),5)"
  },
  {
    "input": "input : list = [0, 0, -5, -4, -5]\noutput : list = [20, 20, 40, 36, 40]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(sub_n([0, 0, -5, -4, -5],3),-4),2),4),-1)",
    "io_inp": [
      0,
      0,
      -5,
      -4,
      -5
    ],
    "io_out": [
      20,
      20,
      40,
      36,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(sub_n(input,3),-4),2),4),-1)"
  },
  {
    "input": "input : list = [-3, 3, 5, -2]\noutput : list = [-8, -2]",
    "output": "generated_output : list = add_n(take([-3, 3, 5, -2],2),-5)",
    "io_inp": [
      -3,
      3,
      5,
      -2
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-5)"
  },
  {
    "input": "input : list = [3, 0, 4]\noutput : list = [4, 1, 5]",
    "output": "generated_output : list = take(add_n(take(add_n([3, 0, 4],-4),9),5),25)",
    "io_inp": [
      3,
      0,
      4
    ],
    "io_out": [
      4,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(input,-4),9),5),25)"
  },
  {
    "input": "input : list = [4, 5, 3, 0, 3]\noutput : list = [0, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 5, 3, 0, 3])",
    "io_inp": [
      4,
      5,
      3,
      0,
      3
    ],
    "io_out": [
      0,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 1, -1, 1, 4, -4]\noutput : list = [27, 9, 15, 9, 0, 24]",
    "output": "generated_output : list = sub_n(mul_n(add_n([-5, 1, -1, 1, 4, -4],-5),-3),3)",
    "io_inp": [
      -5,
      1,
      -1,
      1,
      4,
      -4
    ],
    "io_out": [
      27,
      9,
      15,
      9,
      0,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,-5),-3),3)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-3, 0],1)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,1)))"
  },
  {
    "input": "input : list = [-3, -3, 1, -4, -2, -1]\noutput : list = [0, 1, 1, 2, 3, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sort_asc([-3, -3, 1, -4, -2, -1])))),4)",
    "io_inp": [
      -3,
      -3,
      1,
      -4,
      -2,
      -1
    ],
    "io_out": [
      0,
      1,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [5, -4, 3, 2, -3, -1]\noutput : list = [8, 6, 5, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(reverse([5, -4, 3, 2, -3, -1]),-3))))",
    "io_inp": [
      5,
      -4,
      3,
      2,
      -3,
      -1
    ],
    "io_out": [
      8,
      6,
      5,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [1, 1, 1, -4]\noutput : list = [1, 1, 1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([1, 1, 1, -4])))",
    "io_inp": [
      1,
      1,
      1,
      -4
    ],
    "io_out": [
      1,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [1, -5, 5, 1, -3]\noutput : list = [5, 1, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(drop([1, -5, 5, 1, -3],2)),32)))",
    "io_inp": [
      1,
      -5,
      5,
      1,
      -3
    ],
    "io_out": [
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(drop(input,2)),32)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(sort_des([-3, -2]),3),4)),1)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(sort_des(input),3),4)),1)"
  },
  {
    "input": "input : list = [0, 0, 0]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(sort_des([0, 0, 0]),1)),35))",
    "io_inp": [
      0,
      0,
      0
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(sort_des(input),1)),35))"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [-9, -6, 1]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(add_n([-2, 5, -5],-4)))))",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      -9,
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([-4, 3]),-1))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-1))"
  },
  {
    "input": "input : list = [4, -5, -3, 4, -2]\noutput : list = [4, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(take([4, -5, -3, 4, -2],2)),14)),14)",
    "io_inp": [
      4,
      -5,
      -3,
      4,
      -2
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(take(input,2)),14)),14)"
  },
  {
    "input": "input : list = [0, -1, -1, 3, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(take([0, -1, -1, 3, 0],1),4),2),1),38)",
    "io_inp": [
      0,
      -1,
      -1,
      3,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(take(input,1),4),2),1),38)"
  },
  {
    "input": "input : list = [3, 0, -3, -4, 0, 1]\noutput : list = [8, 6, 5, 5, 2, 1]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(sort_des([3, 0, -3, -4, 0, 1])),-5)),28)",
    "io_inp": [
      3,
      0,
      -3,
      -4,
      0,
      1
    ],
    "io_out": [
      8,
      6,
      5,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(sort_des(input)),-5)),28)"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [12, 9]",
    "output": "generated_output : list = take(mul_n(take(sort_asc(sub_n([-3, 1, -2],1)),2),-3),14)",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_asc(sub_n(input,1)),2),-3),14)"
  },
  {
    "input": "input : list = [-2, -2, 2, -2, 1, 2]\noutput : list = [1, 1, 1, 4, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc([-2, -2, 2, -2, 1, 2]),-3)",
    "io_inp": [
      -2,
      -2,
      2,
      -2,
      1,
      2
    ],
    "io_out": [
      1,
      1,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-3, -4, -1, -1, 2, 2]\noutput : list = [5, 5, -10, -10]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(drop([-3, -4, -1, -1, 2, 2],2),-5)),48))",
    "io_inp": [
      -3,
      -4,
      -1,
      -1,
      2,
      2
    ],
    "io_out": [
      5,
      5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(drop(input,2),-5)),48))"
  },
  {
    "input": "input : list = [-2, 3, 2, -1, 4, -2]\noutput : list = [-2, -2, -3, -6, -7, -8]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(add_n([-2, 3, 2, -1, 4, -2],4),-1))),7)",
    "io_inp": [
      -2,
      3,
      2,
      -1,
      4,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(add_n(input,4),-1))),7)"
  },
  {
    "input": "input : list = [-5, 2, 5, 0, -1, -3]\noutput : list = [8, 3, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n(drop([-5, 2, 5, 0, -1, -3],2),-3),35)))",
    "io_inp": [
      -5,
      2,
      5,
      0,
      -1,
      -3
    ],
    "io_out": [
      8,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(drop(input,2),-3),35)))"
  },
  {
    "input": "input : list = [1, -2, -2, 5, 4]\noutput : list = [-1, -2, -5, -8, -8]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(add_n([1, -2, -2, 5, 4],-5),4),5)),-5)",
    "io_inp": [
      1,
      -2,
      -2,
      5,
      4
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(add_n(input,-5),4),5)),-5)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des([-5, 0])",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1, 2, -4, 2, 3]\noutput : list = [5, 20, 20, 35, 35, 40]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(add_n([-1, -1, 2, -4, 2, 3],5)),27),-5),-1)",
    "io_inp": [
      -1,
      -1,
      2,
      -4,
      2,
      3
    ],
    "io_out": [
      5,
      20,
      20,
      35,
      35,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(add_n(input,5)),27),-5),-1)"
  },
  {
    "input": "input : list = [-3, -1, 4]\noutput : list = [-16, 4, 12]",
    "output": "generated_output : list = take(mul_n(reverse([-3, -1, 4]),-4),23)",
    "io_inp": [
      -3,
      -1,
      4
    ],
    "io_out": [
      -16,
      4,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),-4),23)"
  },
  {
    "input": "input : list = [-5, 5, -1, 3, -3, 0]\noutput : list = [-20, 4, 20]",
    "output": "generated_output : list = sort_asc(reverse(take(take(mul_n([-5, 5, -1, 3, -3, 0],-4),14),3)))",
    "io_inp": [
      -5,
      5,
      -1,
      3,
      -3,
      0
    ],
    "io_out": [
      -20,
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(mul_n(input,-4),14),3)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(sort_asc([-1, -2]),5),4),4),5)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(sort_asc(input),5),4),4),5)"
  },
  {
    "input": "input : list = [4, -5, -3, 2]\noutput : list = [-1, 1, 6, 8]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(reverse([4, -5, -3, 2])),4),17))",
    "io_inp": [
      4,
      -5,
      -3,
      2
    ],
    "io_out": [
      -1,
      1,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(reverse(input)),4),17))"
  },
  {
    "input": "input : list = [4, 3, -2, -5, -3, -4]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(take([4, 3, -2, -5, -3, -4],1),1)",
    "io_inp": [
      4,
      3,
      -2,
      -5,
      -3,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),1)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(reverse([-3, -3])),2),31))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(reverse(input)),2),31))"
  },
  {
    "input": "input : list = [4, -3, -3, 2]\noutput : list = [-8, 12, 12]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(sort_des([4, -3, -3, 2]),-4)),3))",
    "io_inp": [
      4,
      -3,
      -3,
      2
    ],
    "io_out": [
      -8,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(sort_des(input),-4)),3))"
  },
  {
    "input": "input : list = [-2, -5, -3, 0, -1]\noutput : list = [60, 36, 24, 12, 0]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(mul_n([-2, -5, -3, 0, -1],3)),4)),-1)",
    "io_inp": [
      -2,
      -5,
      -3,
      0,
      -1
    ],
    "io_out": [
      60,
      36,
      24,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(mul_n(input,3)),4)),-1)"
  },
  {
    "input": "input : list = [1, 0, 3, 2, -1]\noutput : list = [-16, -1, -6]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(take([1, 0, 3, 2, -1],3),-5),21),-1))",
    "io_inp": [
      1,
      0,
      3,
      2,
      -1
    ],
    "io_out": [
      -16,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(take(input,3),-5),21),-1))"
  },
  {
    "input": "input : list = [5, 2, 1, -3, 3, -5]\noutput : list = [12, 6, 3, 0, -12, -18]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(mul_n([5, 2, 1, -3, 3, -5],3))),3))",
    "io_inp": [
      5,
      2,
      1,
      -3,
      3,
      -5
    ],
    "io_out": [
      12,
      6,
      3,
      0,
      -12,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(mul_n(input,3))),3))"
  },
  {
    "input": "input : list = [0, 5, 5, 0, 2]\noutput : list = [-15, -15, -6, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n([0, 5, 5, 0, 2],-3))",
    "io_inp": [
      0,
      5,
      5,
      0,
      2
    ],
    "io_out": [
      -15,
      -15,
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-2, -4, 1, 4, 5]\noutput : list = [7, 6, 3, 0, -2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc(sort_asc([-2, -4, 1, 4, 5]))),2))",
    "io_inp": [
      -2,
      -4,
      1,
      4,
      5
    ],
    "io_out": [
      7,
      6,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [4, 5, -3, -5, -3]\noutput : list = [-7, 0, 1]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(take([4, 5, -3, -5, -3],3),4)),32),24)",
    "io_inp": [
      4,
      5,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -7,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(take(input,3),4)),32),24)"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [12, 6, 2]",
    "output": "generated_output : list = reverse(add_n(add_n(take(sub_n([-5, -1, 5],-1),15),5),1))",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      12,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(sub_n(input,-1),15),5),1))"
  },
  {
    "input": "input : list = [-3, 4, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(drop([-3, 4, 4, -4],2))",
    "io_inp": [
      -3,
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [4, 5, 5, 1, -3]\noutput : list = [-13, -1, 11, 11, 8]",
    "output": "generated_output : list = sub_n(mul_n(reverse([4, 5, 5, 1, -3]),3),4)",
    "io_inp": [
      4,
      5,
      5,
      1,
      -3
    ],
    "io_out": [
      -13,
      -1,
      11,
      11,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),3),4)"
  },
  {
    "input": "input : list = [-1, -5, -4, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(take([-1, -5, -4, 0],1),2))))",
    "io_inp": [
      -1,
      -5,
      -4,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(take(input,1),2))))"
  },
  {
    "input": "input : list = [-1, 5, -1, -4, -5, -3]\noutput : list = [2, 8, 2, -1, -2, 0]",
    "output": "generated_output : list = sub_n([-1, 5, -1, -4, -5, -3],-3)",
    "io_inp": [
      -1,
      5,
      -1,
      -4,
      -5,
      -3
    ],
    "io_out": [
      2,
      8,
      2,
      -1,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, -2, 2, -2, -1, 5]\noutput : list = [14, 2, 14, 2, 5, 23]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n([2, -2, 2, -2, -1, 5],3)),3)),1)",
    "io_inp": [
      2,
      -2,
      2,
      -2,
      -1,
      5
    ],
    "io_out": [
      14,
      2,
      14,
      2,
      5,
      23
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n(input,3)),3)),1)"
  },
  {
    "input": "input : list = [-4, -2, 3, -1, 4]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(take([-4, -2, 3, -1, 4],1)),29)))",
    "io_inp": [
      -4,
      -2,
      3,
      -1,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(take(input,1)),29)))"
  },
  {
    "input": "input : list = [1, -4, -5, -4]\noutput : list = [-7, -7, -8]",
    "output": "generated_output : list = take(add_n(take(sort_des(drop([1, -4, -5, -4],1)),22),-3),48)",
    "io_inp": [
      1,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(drop(input,1)),22),-3),48)"
  },
  {
    "input": "input : list = [3, -3, 2, 1, -5]\noutput : list = [-7, -5, -1, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc([3, -3, 2, 1, -5]),-2)",
    "io_inp": [
      3,
      -3,
      2,
      1,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc([0, 5])",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [20, -30]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(mul_n([-5, 5],-5))),-5),16)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      20,
      -30
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(mul_n(input,-5))),-5),16)"
  },
  {
    "input": "input : list = [-5, 2, -5, -2]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(mul_n(drop(add_n(sort_asc([-5, 2, -5, -2]),-4),3),3),-5)",
    "io_inp": [
      -5,
      2,
      -5,
      -2
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(add_n(sort_asc(input),-4),3),3),-5)"
  },
  {
    "input": "input : list = [3, -4, -1, -2, -3]\noutput : list = [6, 7, 8, 9, 13]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(reverse([3, -4, -1, -2, -3])),-5)),-5)",
    "io_inp": [
      3,
      -4,
      -1,
      -2,
      -3
    ],
    "io_out": [
      6,
      7,
      8,
      9,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(reverse(input)),-5)),-5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [14, 6]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(add_n([-3, 5],1)),3)),5)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      14,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(add_n(input,1)),3)),5)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 75]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(sort_des([3, 0])),19),-5),-5)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(sort_des(input)),19),-5),-5)"
  },
  {
    "input": "input : list = [-3, 0, -4, -3, -1]\noutput : list = [0, -1, -3, -3, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(take(sort_asc([-3, 0, -4, -3, -1]),16))),38)",
    "io_inp": [
      -3,
      0,
      -4,
      -3,
      -1
    ],
    "io_out": [
      0,
      -1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(sort_asc(input),16))),38)"
  },
  {
    "input": "input : list = [-2, -2, 1, 5, -2, 5]\noutput : list = [-26, -5, -26, -14, -5, -5]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(reverse([-2, -2, 1, 5, -2, 5]),-5),-3),4),43)",
    "io_inp": [
      -2,
      -2,
      1,
      5,
      -2,
      5
    ],
    "io_out": [
      -26,
      -5,
      -26,
      -14,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(reverse(input),-5),-3),4),43)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = take(sort_des([3, 3]),5)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),5)"
  },
  {
    "input": "input : list = [5, -5, -4, -4, 3, -3]\noutput : list = [-10, -9, -9, -8, -2, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([5, -5, -4, -4, 3, -3])),5)",
    "io_inp": [
      5,
      -5,
      -4,
      -4,
      3,
      -3
    ],
    "io_out": [
      -10,
      -9,
      -9,
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),5)"
  },
  {
    "input": "input : list = [3, -4, 4, 0, 0, 0]\noutput : list = [18, 13, -2, -2, -2, -22]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n([3, -4, 4, 0, 0, 0],5),-2)))",
    "io_inp": [
      3,
      -4,
      4,
      0,
      0,
      0
    ],
    "io_out": [
      18,
      13,
      -2,
      -2,
      -2,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(input,5),-2)))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [8, 6]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n(add_n([-4, -3],-5),5),-2)))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(add_n(input,-5),5),-2)))"
  },
  {
    "input": "input : list = [-5, 3, -5, 5, -3, -2]\noutput : list = [1, -7, 1, -9, -1, -2]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(reverse([-5, 3, -5, 5, -3, -2]),14),-1)),-4)",
    "io_inp": [
      -5,
      3,
      -5,
      5,
      -3,
      -2
    ],
    "io_out": [
      1,
      -7,
      1,
      -9,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(reverse(input),14),-1)),-4)"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [0, 2, -5]",
    "output": "generated_output : list = take(add_n(add_n(take(add_n([1, 3, -4],1),17),-1),-1),16)",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(add_n(input,1),17),-1),-1),16)"
  },
  {
    "input": "input : list = [5, 1, 1, -5, -2]\noutput : list = [3, 3, -6, -15]",
    "output": "generated_output : list = sort_des(mul_n(take(take(reverse([5, 1, 1, -5, -2]),4),28),3))",
    "io_inp": [
      5,
      1,
      1,
      -5,
      -2
    ],
    "io_out": [
      3,
      3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(reverse(input),4),28),3))"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [44, 20, 12]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(mul_n([1, -3, 0],-2)),3),-5),4)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      44,
      20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(mul_n(input,-2)),3),-5),4)"
  },
  {
    "input": "input : list = [-1, 1, -3, -5, -2]\noutput : list = [7, 5]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(take([-1, 1, -3, -5, -2],2),11),-3),-3))",
    "io_inp": [
      -1,
      1,
      -3,
      -5,
      -2
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(take(input,2),11),-3),-3))"
  },
  {
    "input": "input : list = [-3, 5, 1, 5]\noutput : list = [4, 4, 0, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des([-3, 5, 1, 5])),1),12))",
    "io_inp": [
      -3,
      5,
      1,
      5
    ],
    "io_out": [
      4,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des(input)),1),12))"
  },
  {
    "input": "input : list = [3, 2, 3, 3]\noutput : list = [-6, -9, -9, -9]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(mul_n([3, 2, 3, 3],-3))),32))",
    "io_inp": [
      3,
      2,
      3,
      3
    ],
    "io_out": [
      -6,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(mul_n(input,-3))),32))"
  },
  {
    "input": "input : list = [2, 3, -5, -3]\noutput : list = [1, 0, -5, -7]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n([2, 3, -5, -3],-4))),2))",
    "io_inp": [
      2,
      3,
      -5,
      -3
    ],
    "io_out": [
      1,
      0,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n(input,-4))),2))"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = sort_des([-3, -2, 3])",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, 1, 2]\noutput : list = [-1, 0, 4, -1]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(reverse([2, -3, 1, 2]),1),8),-1),2)",
    "io_inp": [
      2,
      -3,
      1,
      2
    ],
    "io_out": [
      -1,
      0,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(reverse(input),1),8),-1),2)"
  },
  {
    "input": "input : list = [-5, -4, 2, 4]\noutput : list = [6, 4, -2, -3]",
    "output": "generated_output : list = reverse(add_n([-5, -4, 2, 4],2))",
    "io_inp": [
      -5,
      -4,
      2,
      4
    ],
    "io_out": [
      6,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [-3, 0, -1, 2, 0]\noutput : list = [4, 0, 0, -2, -6]",
    "output": "generated_output : list = take(take(take(sort_des(mul_n([-3, 0, -1, 2, 0],2)),34),16),44)",
    "io_inp": [
      -3,
      0,
      -1,
      2,
      0
    ],
    "io_out": [
      4,
      0,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(take(take(sort_des(mul_n(input,2)),34),16),44)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = mul_n([0, 5],1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [2, -2, 5, 5, 2]\noutput : list = [24, 8, -4, -4]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(drop([2, -2, 5, 5, 2],1),-4)),-1),4)",
    "io_inp": [
      2,
      -2,
      5,
      5,
      2
    ],
    "io_out": [
      24,
      8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(drop(input,1),-4)),-1),4)"
  },
  {
    "input": "input : list = [-4, -3, 3, 5]\noutput : list = [7, 5, -7, -11]",
    "output": "generated_output : list = add_n(mul_n([-4, -3, 3, 5],-2),-1)",
    "io_inp": [
      -4,
      -3,
      3,
      5
    ],
    "io_out": [
      7,
      5,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),-1)"
  },
  {
    "input": "input : list = [-5, -5, 0, -1]\noutput : list = [-6, -7, -11, -11]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_des([-5, -5, 0, -1]),-2),4)))",
    "io_inp": [
      -5,
      -5,
      0,
      -1
    ],
    "io_out": [
      -6,
      -7,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_des(input),-2),4)))"
  },
  {
    "input": "input : list = [1, 0, -1, 2, 3, 5]\noutput : list = [7, 8, 9, 10, 11, 13]",
    "output": "generated_output : list = add_n(add_n(sort_asc([1, 0, -1, 2, 3, 5]),3),5)",
    "io_inp": [
      1,
      0,
      -1,
      2,
      3,
      5
    ],
    "io_out": [
      7,
      8,
      9,
      10,
      11,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),3),5)"
  },
  {
    "input": "input : list = [2, -4, -3, 5, 2, 1]\noutput : list = [3, 6, 15, -9]",
    "output": "generated_output : list = reverse(mul_n(drop([2, -4, -3, 5, 2, 1],2),3))",
    "io_inp": [
      2,
      -4,
      -3,
      5,
      2,
      1
    ],
    "io_out": [
      3,
      6,
      15,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,2),3))"
  },
  {
    "input": "input : list = [4, 2, 1, -3, -1]\noutput : list = [-1, -3, 1, 2, 4]",
    "output": "generated_output : list = take(take(reverse([4, 2, 1, -3, -1]),18),7)",
    "io_inp": [
      4,
      2,
      1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),18),7)"
  },
  {
    "input": "input : list = [-4, 2, 3, -4, 1, 2]\noutput : list = [-5, -5, 0, 1, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(reverse([-4, 2, 3, -4, 1, 2])),1)))",
    "io_inp": [
      -4,
      2,
      3,
      -4,
      1,
      2
    ],
    "io_out": [
      -5,
      -5,
      0,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(reverse(input)),1)))"
  },
  {
    "input": "input : list = [3, -3, 1, -2]\noutput : list = [11, 9, 3, -1]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(mul_n([3, -3, 1, -2],-2))),33),5)",
    "io_inp": [
      3,
      -3,
      1,
      -2
    ],
    "io_out": [
      11,
      9,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(mul_n(input,-2))),33),5)"
  },
  {
    "input": "input : list = [1, -3, -3, -5, 0]\noutput : list = [4, 0, 0, -2, 3]",
    "output": "generated_output : list = sub_n([1, -3, -3, -5, 0],-3)",
    "io_inp": [
      1,
      -3,
      -3,
      -5,
      0
    ],
    "io_out": [
      4,
      0,
      0,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 1, 2, 3, -4]\noutput : list = [10, 3, 4, 5, 11]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n([-5, 1, 2, 3, -4],5),-1)),-1)",
    "io_inp": [
      -5,
      1,
      2,
      3,
      -4
    ],
    "io_out": [
      10,
      3,
      4,
      5,
      11
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(input,5),-1)),-1)"
  },
  {
    "input": "input : list = [2, -3, -2, 1]\noutput : list = [-112, -32]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(take([2, -3, -2, 1],2),-4),4),4))",
    "io_inp": [
      2,
      -3,
      -2,
      1
    ],
    "io_out": [
      -112,
      -32
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(take(input,2),-4),4),4))"
  },
  {
    "input": "input : list = [-5, 1, -1, 3]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(take(sort_asc(take([-5, 1, -1, 3],1)),6),-3)",
    "io_inp": [
      -5,
      1,
      -1,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(input,1)),6),-3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n(add_n([1, 2],2),-1)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-1)"
  },
  {
    "input": "input : list = [-3, 1, 2, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(take([-3, 1, 2, 0],1)),4),-1),-4)",
    "io_inp": [
      -3,
      1,
      2,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(take(input,1)),4),-1),-4)"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [3, -2, 0]",
    "output": "generated_output : list = sub_n([4, -1, 1],1)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 4, 3, 2]\noutput : list = [-10, -15, -20, -25]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(mul_n([5, 4, 3, 2],-5))),14))",
    "io_inp": [
      5,
      4,
      3,
      2
    ],
    "io_out": [
      -10,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(mul_n(input,-5))),14))"
  },
  {
    "input": "input : list = [5, -2, -1, 3, 0]\noutput : list = [10, -2, -4]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(take([5, -2, -1, 3, 0],3))),1),2)",
    "io_inp": [
      5,
      -2,
      -1,
      3,
      0
    ],
    "io_out": [
      10,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(take(input,3))),1),2)"
  },
  {
    "input": "input : list = [-4, 5, -3, 0, 4, 0]\noutput : list = [20, 15, 0, 0, -20, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(reverse([-4, 5, -3, 0, 4, 0]),5))),-1)",
    "io_inp": [
      -4,
      5,
      -3,
      0,
      4,
      0
    ],
    "io_out": [
      20,
      15,
      0,
      0,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(reverse(input),5))),-1)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = reverse([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, 3, 3, 3]\noutput : list = [4, 4, 4, -3, -4]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(sort_asc([-4, -5, 3, 3, 3]),19)),1))",
    "io_inp": [
      -4,
      -5,
      3,
      3,
      3
    ],
    "io_out": [
      4,
      4,
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(sort_asc(input),19)),1))"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [0, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc([-2, 0, 0]))",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -1, 2, -2, -5]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(add_n(add_n(take(take([2, -1, 2, -2, -5],3),3),1),-2),2)",
    "io_inp": [
      2,
      -1,
      2,
      -2,
      -5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(take(input,3),3),1),-2),2)"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [-1, -1, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des([4, 4, -4]),-5))",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-1, 3, -1, -5]\noutput : list = [-3, 1, 1, 5]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(sort_asc([-1, 3, -1, -5])),-2),26))",
    "io_inp": [
      -1,
      3,
      -1,
      -5
    ],
    "io_out": [
      -3,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(sort_asc(input)),-2),26))"
  },
  {
    "input": "input : list = [3, 0, -4, 4, 4, 2]\noutput : list = [-1, 7, 7, 5]",
    "output": "generated_output : list = add_n(drop(take(sub_n(sub_n([3, 0, -4, 4, 4, 2],-2),4),10),2),5)",
    "io_inp": [
      3,
      0,
      -4,
      4,
      4,
      2
    ],
    "io_out": [
      -1,
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(take(sub_n(sub_n(input,-2),4),10),2),5)"
  },
  {
    "input": "input : list = [4, -4, -3, -2]\noutput : list = [0, -8]",
    "output": "generated_output : list = sub_n(take([4, -4, -3, -2],2),4)",
    "io_inp": [
      4,
      -4,
      -3,
      -2
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),4)"
  },
  {
    "input": "input : list = [-2, 1, -3, 3, 3, -4]\noutput : list = [0, 4, 1]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(take([-2, 1, -3, 3, 3, -4],3),-5)),-2),1)",
    "io_inp": [
      -2,
      1,
      -3,
      3,
      3,
      -4
    ],
    "io_out": [
      0,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(take(input,3),-5)),-2),1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(sub_n([3, 4],3),-1),-1)),21)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(sub_n(input,3),-1),-1)),21)"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [4, -1, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sub_n([-5, 4, -1],-5),2),3),28))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sub_n(input,-5),2),3),28))"
  },
  {
    "input": "input : list = [-2, 2, -5, 4]\noutput : list = [-60, -24, 24, 48]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(mul_n([-2, 2, -5, 4],4)))),3)",
    "io_inp": [
      -2,
      2,
      -5,
      4
    ],
    "io_out": [
      -60,
      -24,
      24,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(mul_n(input,4)))),3)"
  },
  {
    "input": "input : list = [-1, -4, 0, -2, 0]\noutput : list = [-12, -6, -3, 0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(reverse([-1, -4, 0, -2, 0])))),3)",
    "io_inp": [
      -1,
      -4,
      0,
      -2,
      0
    ],
    "io_out": [
      -12,
      -6,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-1, 1, 3, -4]\noutput : list = [-4, 0, 4, -10]",
    "output": "generated_output : list = add_n(mul_n([-1, 1, 3, -4],2),-2)",
    "io_inp": [
      -1,
      1,
      3,
      -4
    ],
    "io_out": [
      -4,
      0,
      4,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),-2)"
  },
  {
    "input": "input : list = [-3, -2, -5, 0, -2, 2]\noutput : list = [2, -2, 0, -5, -2, -3]",
    "output": "generated_output : list = reverse(take(reverse(take(reverse([-3, -2, -5, 0, -2, 2]),11)),28))",
    "io_inp": [
      -3,
      -2,
      -5,
      0,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      0,
      -5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(reverse(input),11)),28))"
  },
  {
    "input": "input : list = [4, -5, -4]\noutput : list = [-20, 20, 25]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(mul_n([4, -5, -4],-1))),5))",
    "io_inp": [
      4,
      -5,
      -4
    ],
    "io_out": [
      -20,
      20,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(mul_n(input,-1))),5))"
  },
  {
    "input": "input : list = [1, 2, -5, -5, 1, -5]\noutput : list = [4, 4, 4, -2, -2, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n([1, 2, -5, -5, 1, -5],-1))),-3),4)",
    "io_inp": [
      1,
      2,
      -5,
      -5,
      1,
      -5
    ],
    "io_out": [
      4,
      4,
      4,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n(input,-1))),-3),4)"
  },
  {
    "input": "input : list = [-4, 0, 0, -2, 1]\noutput : list = [20, 0, 0]",
    "output": "generated_output : list = mul_n(take([-4, 0, 0, -2, 1],3),-5)",
    "io_inp": [
      -4,
      0,
      0,
      -2,
      1
    ],
    "io_out": [
      20,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-5)"
  },
  {
    "input": "input : list = [4, -5, 2, 3]\noutput : list = [4, 3, -4, 5]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(reverse([4, -5, 2, 3]),-2),-2),1),1)",
    "io_inp": [
      4,
      -5,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(reverse(input),-2),-2),1),1)"
  },
  {
    "input": "input : list = [5, 4, 4, -2, -2, 3]\noutput : list = [5, 4]",
    "output": "generated_output : list = take([5, 4, 4, -2, -2, 3],2)",
    "io_inp": [
      5,
      4,
      4,
      -2,
      -2,
      3
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 2, -5, 1, -5, 1]\noutput : list = [100, -20]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(drop([5, 2, -5, 1, -5, 1],4),5),-5)),4)",
    "io_inp": [
      5,
      2,
      -5,
      1,
      -5,
      1
    ],
    "io_out": [
      100,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(drop(input,4),5),-5)),4)"
  },
  {
    "input": "input : list = [-3, -1, 5, -5, 2, 3]\noutput : list = [9, 7, 6, 3, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(mul_n([-3, -1, 5, -5, 2, 3],1),4))",
    "io_inp": [
      -3,
      -1,
      5,
      -5,
      2,
      3
    ],
    "io_out": [
      9,
      7,
      6,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,1),4))"
  },
  {
    "input": "input : list = [-2, -5, -4, -2, 0]\noutput : list = [2, 0, -2, -3, 0]",
    "output": "generated_output : list = add_n(reverse(take(reverse(reverse([-2, -5, -4, -2, 0])),16)),2)",
    "io_inp": [
      -2,
      -5,
      -4,
      -2,
      0
    ],
    "io_out": [
      2,
      0,
      -2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(reverse(input)),16)),2)"
  },
  {
    "input": "input : list = [-4, -4, -1, 1, -5, 2]\noutput : list = [16, 16, 4, -4, 20, -8]",
    "output": "generated_output : list = mul_n([-4, -4, -1, 1, -5, 2],-4)",
    "io_inp": [
      -4,
      -4,
      -1,
      1,
      -5,
      2
    ],
    "io_out": [
      16,
      16,
      4,
      -4,
      20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, -4, 1, -5, 1]\noutput : list = [10, -6, 14, -10, 14]",
    "output": "generated_output : list = sub_n(mul_n(add_n([0, -4, 1, -5, 1],2),4),-2)",
    "io_inp": [
      0,
      -4,
      1,
      -5,
      1
    ],
    "io_out": [
      10,
      -6,
      14,
      -10,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,2),4),-2)"
  },
  {
    "input": "input : list = [-4, 5, 5, -2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = take(take(sort_asc(add_n(drop([-4, 5, 5, -2],2),-3)),28),4)",
    "io_inp": [
      -4,
      5,
      5,
      -2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(drop(input,2),-3)),28),4)"
  },
  {
    "input": "input : list = [2, 1, -4, 2, 5, 4]\noutput : list = [-20, 5, 10, 10, 20, 25]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(mul_n([2, 1, -4, 2, 5, 4],5),8))))",
    "io_inp": [
      2,
      1,
      -4,
      2,
      5,
      4
    ],
    "io_out": [
      -20,
      5,
      10,
      10,
      20,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(mul_n(input,5),8))))"
  },
  {
    "input": "input : list = [-3, -3, 3, -4, 2, -2]\noutput : list = [-2, 2, -4, 3, -3, -3]",
    "output": "generated_output : list = reverse([-3, -3, 3, -4, 2, -2])",
    "io_inp": [
      -3,
      -3,
      3,
      -4,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -4,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, 1, 0, -1]\noutput : list = [-10, -20, 5, 0, -5]",
    "output": "generated_output : list = mul_n([-2, -4, 1, 0, -1],5)",
    "io_inp": [
      -2,
      -4,
      1,
      0,
      -1
    ],
    "io_out": [
      -10,
      -20,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [10, 10]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(reverse([5, 5]),3)),5),11)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(reverse(input),3)),5),11)"
  },
  {
    "input": "input : list = [-1, 1, -4, -2, 5, 1]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(take([-1, 1, -4, -2, 5, 1],3),-3)),3))",
    "io_inp": [
      -1,
      1,
      -4,
      -2,
      5,
      1
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(take(input,3),-3)),3))"
  },
  {
    "input": "input : list = [-5, 1, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(take([-5, 1, -4],1),7),4)))",
    "io_inp": [
      -5,
      1,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(take(input,1),7),4)))"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [-2, -2, -7]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(sort_asc([3, -2, 3]),-5),18)))",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(sort_asc(input),-5),18)))"
  },
  {
    "input": "input : list = [4, -3, 4, 1]\noutput : list = [-8, 6, -8, -2]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n(reverse([4, -3, 4, 1]),2)),-2),-4)",
    "io_inp": [
      4,
      -3,
      4,
      1
    ],
    "io_out": [
      -8,
      6,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(reverse(input),2)),-2),-4)"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(take([2, -5, 2],1)))))",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, -1, -1, -4, 0]\noutput : list = [0, -6, -24]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(drop([-4, -1, -1, -4, 0],2),2)),3),21)",
    "io_inp": [
      -4,
      -1,
      -1,
      -4,
      0
    ],
    "io_out": [
      0,
      -6,
      -24
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(drop(input,2),2)),3),21)"
  },
  {
    "input": "input : list = [-3, -5, -1, 4, -3]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(drop(add_n([-3, -5, -1, 4, -3],3),4),-1)),1)",
    "io_inp": [
      -3,
      -5,
      -1,
      4,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(drop(add_n(input,3),4),-1)),1)"
  },
  {
    "input": "input : list = [1, 2, -1, 4, 2, 0]\noutput : list = [8, 12, 20, 20, 28]",
    "output": "generated_output : list = sort_asc(take(mul_n(drop(sub_n([1, 2, -1, 4, 2, 0],-3),1),4),8))",
    "io_inp": [
      1,
      2,
      -1,
      4,
      2,
      0
    ],
    "io_out": [
      8,
      12,
      20,
      20,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(drop(sub_n(input,-3),1),4),8))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(sort_des([2, 2])),3),-5),5)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(sort_des(input)),3),-5),5)"
  },
  {
    "input": "input : list = [3, 5, 2, -2]\noutput : list = [11, 13, 10, 6]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(reverse([3, 5, 2, -2])),4),-5),3)",
    "io_inp": [
      3,
      5,
      2,
      -2
    ],
    "io_out": [
      11,
      13,
      10,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(reverse(input)),4),-5),3)"
  },
  {
    "input": "input : list = [0, -3, 0]\noutput : list = [-3, -6, -3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(sub_n([0, -3, 0],1),-1),5),-4))",
    "io_inp": [
      0,
      -3,
      0
    ],
    "io_out": [
      -3,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(sub_n(input,1),-1),5),-4))"
  },
  {
    "input": "input : list = [3, 3, -2, -5]\noutput : list = [15, 15, 10, 7]",
    "output": "generated_output : list = add_n(sub_n(sub_n([3, 3, -2, -5],-4),-3),5)",
    "io_inp": [
      3,
      3,
      -2,
      -5
    ],
    "io_out": [
      15,
      15,
      10,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,-4),-3),5)"
  },
  {
    "input": "input : list = [5, 0, 4, -2, 4, -1]\noutput : list = [-1, -6, -2, -8, -2, -7]",
    "output": "generated_output : list = sub_n(add_n([5, 0, 4, -2, 4, -1],-1),5)",
    "io_inp": [
      5,
      0,
      4,
      -2,
      4,
      -1
    ],
    "io_out": [
      -1,
      -6,
      -2,
      -8,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [0, -4, -4, -1, -5, -3]\noutput : list = [-28, -23, -23, -18, -8, -3]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(mul_n([0, -4, -4, -1, -5, -3],5),1),1),-5))",
    "io_inp": [
      0,
      -4,
      -4,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -28,
      -23,
      -23,
      -18,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(mul_n(input,5),1),1),-5))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [8]",
    "output": "generated_output : list = take(take(add_n([3, 0],5),5),1)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,5),5),1)"
  },
  {
    "input": "input : list = [2, 4, -2, 3, 5, 1]\noutput : list = [2, 8, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(take([2, 4, -2, 3, 5, 1],3),-5),2),-1))",
    "io_inp": [
      2,
      4,
      -2,
      3,
      5,
      1
    ],
    "io_out": [
      2,
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(take(input,3),-5),2),-1))"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [9, 9, 8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(add_n([0, -1, 0],4)))),-5)",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      9,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(add_n(input,4)))),-5)"
  },
  {
    "input": "input : list = [1, -4, 0]\noutput : list = [-30, -6, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(reverse([1, -4, 0]),1)),-3),-2)",
    "io_inp": [
      1,
      -4,
      0
    ],
    "io_out": [
      -30,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(reverse(input),1)),-3),-2)"
  },
  {
    "input": "input : list = [-2, -5, 4]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(take(sub_n([-2, -5, 4],2),1),-2)",
    "io_inp": [
      -2,
      -5,
      4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,2),1),-2)"
  },
  {
    "input": "input : list = [-4, -5, -3, -1, -2]\noutput : list = [14, 17, 11]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(take([-4, -5, -3, -1, -2],3),-3))),-2)",
    "io_inp": [
      -4,
      -5,
      -3,
      -1,
      -2
    ],
    "io_out": [
      14,
      17,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(take(input,3),-3))),-2)"
  },
  {
    "input": "input : list = [3, -2, -2, 0, 4, 5]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, -2, 0, 4, 5],1)",
    "io_inp": [
      3,
      -2,
      -2,
      0,
      4,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -5, -2, -4]\noutput : list = [1, -1, -1, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_des([-4, -5, -2, -4]),-1))),2)",
    "io_inp": [
      -4,
      -5,
      -2,
      -4
    ],
    "io_out": [
      1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_des(input),-1))),2)"
  },
  {
    "input": "input : list = [-4, -2, 2, -5]\noutput : list = [-33, 2, -18, -28]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n([-4, -2, 2, -5],2)),5),-2)",
    "io_inp": [
      -4,
      -2,
      2,
      -5
    ],
    "io_out": [
      -33,
      2,
      -18,
      -28
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(input,2)),5),-2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_asc([3, 3]),4),-3)),3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_asc(input),4),-3)),3)"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [-2, 6, 6]",
    "output": "generated_output : list = mul_n(sort_des([-3, 1, -3]),-2)",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      -2,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [1, 1, 2, 2]\noutput : list = [5, 5, 4, 4]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(sub_n([1, 1, 2, 2],-3)),17)))",
    "io_inp": [
      1,
      1,
      2,
      2
    ],
    "io_out": [
      5,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(sub_n(input,-3)),17)))"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [-10, -15, -16]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n([-4, -5, 1],-5),5)),-1)",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      -10,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(input,-5),5)),-1)"
  },
  {
    "input": "input : list = [-2, -3, -2, -3]\noutput : list = [-2, -2, -4, -4]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des([-2, -3, -2, -3]),2),-3),-5)",
    "io_inp": [
      -2,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(input),2),-3),-5)"
  },
  {
    "input": "input : list = [-3, 4, 5, -4, 5, -4]\noutput : list = [1, 37, 1]",
    "output": "generated_output : list = add_n(add_n(drop(mul_n(add_n([-3, 4, 5, -4, 5, -4],2),4),3),5),4)",
    "io_inp": [
      -3,
      4,
      5,
      -4,
      5,
      -4
    ],
    "io_out": [
      1,
      37,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(mul_n(add_n(input,2),4),3),5),4)"
  },
  {
    "input": "input : list = [-2, -1, -3, 4]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = add_n(take(reverse(reverse(sort_asc([-2, -1, -3, 4]))),3),-1)",
    "io_inp": [
      -2,
      -1,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(sort_asc(input))),3),-1)"
  },
  {
    "input": "input : list = [4, 3, 4]\noutput : list = [7, 8]",
    "output": "generated_output : list = add_n(drop([4, 3, 4],1),4)",
    "io_inp": [
      4,
      3,
      4
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [-3, 3, 3, -5]\noutput : list = [3, -3, -5]",
    "output": "generated_output : list = drop(reverse(mul_n(sort_asc(sort_asc([-3, 3, 3, -5])),1)),1)",
    "io_inp": [
      -3,
      3,
      3,
      -5
    ],
    "io_out": [
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(sort_asc(sort_asc(input)),1)),1)"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [-8, -8, -9]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(add_n([0, 1, 1],-4),5))),1)",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(add_n(input,-4),5))),1)"
  },
  {
    "input": "input : list = [3, -1, 2, 3]\noutput : list = [3, 2, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, 2, 3])",
    "io_inp": [
      3,
      -1,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -1, -5, -5, -5, 4]\noutput : list = [4, -5, -5, -5, -1, -2]",
    "output": "generated_output : list = reverse([-2, -1, -5, -5, -5, 4])",
    "io_inp": [
      -2,
      -1,
      -5,
      -5,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      -5,
      -5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 1, -3, -5]\noutput : list = [-1, 1, -3, -5]",
    "output": "generated_output : list = mul_n([-1, 1, -3, -5],1)",
    "io_inp": [
      -1,
      1,
      -3,
      -5
    ],
    "io_out": [
      -1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-3, -5, -1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(drop([-3, -5, -1],1),-4))),3)",
    "io_inp": [
      -3,
      -5,
      -1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(drop(input,1),-4))),3)"
  },
  {
    "input": "input : list = [2, 3, 5, 5, -4]\noutput : list = [44, 20, 16, 8, 8]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_asc([2, 3, 5, 5, -4]),-5),-2)),-4)",
    "io_inp": [
      2,
      3,
      5,
      5,
      -4
    ],
    "io_out": [
      44,
      20,
      16,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_asc(input),-5),-2)),-4)"
  },
  {
    "input": "input : list = [-4, 5, -1, -3]\noutput : list = [2, 1, -1, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc([-4, 5, -1, -3]),-1)),-2))",
    "io_inp": [
      -4,
      5,
      -1,
      -3
    ],
    "io_out": [
      2,
      1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc(input),-1)),-2))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [8, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(sort_des([5, 2]))),4))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(sort_des(input))),4))"
  },
  {
    "input": "input : list = [-4, 1, -4, 2, 5, -2]\noutput : list = [5, 2, 1, -2, -4, -4]",
    "output": "generated_output : list = take(sort_des(take(mul_n(sort_asc([-4, 1, -4, 2, 5, -2]),1),36)),30)",
    "io_inp": [
      -4,
      1,
      -4,
      2,
      5,
      -2
    ],
    "io_out": [
      5,
      2,
      1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(sort_asc(input),1),36)),30)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-3, -15]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(add_n([0, 3],-1)),-3),-4),-5)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(add_n(input,-1)),-3),-4),-5)"
  },
  {
    "input": "input : list = [4, -3, 5, 5]\noutput : list = [5, 5, -3, 4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(reverse([4, -3, 5, 5]),11),3),-5),-2)",
    "io_inp": [
      4,
      -3,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(reverse(input),11),3),-5),-2)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n([0, 0],-3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = drop([-5, 0, -2],1)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -4, 1, -5, -3, 3]\noutput : list = [2, 0, -4, -5, -5, -6]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-4, -4, 1, -5, -3, 3]),1),2)",
    "io_inp": [
      -4,
      -4,
      1,
      -5,
      -3,
      3
    ],
    "io_out": [
      2,
      0,
      -4,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),1),2)"
  },
  {
    "input": "input : list = [-2, -4, 3]\noutput : list = [1, -4, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([-2, -4, 3],2)))",
    "io_inp": [
      -2,
      -4,
      3
    ],
    "io_out": [
      1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,2)))"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(reverse([0, -3, -1]),-2))))",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [-4, 0, -4, -2]\noutput : list = [-60, -100, -140, -140]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(add_n([-4, 0, -4, -2],-1),-2),-5)),-4)",
    "io_inp": [
      -4,
      0,
      -4,
      -2
    ],
    "io_out": [
      -60,
      -100,
      -140,
      -140
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(add_n(input,-1),-2),-5)),-4)"
  },
  {
    "input": "input : list = [-4, 3, -3, -2]\noutput : list = [-2, 8, 10, 12]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sub_n([-4, 3, -3, -2],2),2),-2)),4)",
    "io_inp": [
      -4,
      3,
      -3,
      -2
    ],
    "io_out": [
      -2,
      8,
      10,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sub_n(input,2),2),-2)),4)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [6, 2]",
    "output": "generated_output : list = add_n([2, -2],4)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -1, -2]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = sort_des([0, -1, -2])",
    "io_inp": [
      0,
      -1,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop([0, -2, 4],1)",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, 5, -1, 3]\noutput : list = [-60, -60, 24]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(mul_n([5, -2, 5, -1, 3],3),3),-4)))",
    "io_inp": [
      5,
      -2,
      5,
      -1,
      3
    ],
    "io_out": [
      -60,
      -60,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(mul_n(input,3),3),-4)))"
  },
  {
    "input": "input : list = [0, -1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse(sort_des(drop([0, -1, 4],1)))",
    "io_inp": [
      0,
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [-5, 0, -4, -2, -5, -1]\noutput : list = [15, 0, 12]",
    "output": "generated_output : list = take(take(take(mul_n(take([-5, 0, -4, -2, -5, -1],3),-3),13),13),38)",
    "io_inp": [
      -5,
      0,
      -4,
      -2,
      -5,
      -1
    ],
    "io_out": [
      15,
      0,
      12
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(take(input,3),-3),13),13),38)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [-1, 5, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(reverse([2, 4, -4]))),-1),-2)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(reverse(input))),-1),-2)"
  },
  {
    "input": "input : list = [-1, 1, 1, -4, 3, -2]\noutput : list = [-3, -1, 0, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-1, 1, 1, -4, 3, -2],2),-3))",
    "io_inp": [
      -1,
      1,
      1,
      -4,
      3,
      -2
    ],
    "io_out": [
      -3,
      -1,
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,2),-3))"
  },
  {
    "input": "input : list = [-3, 4, 1, 0, -3, -3]\noutput : list = [-4, -4, -4, -1, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-3, 4, 1, 0, -3, -3]),1)",
    "io_inp": [
      -3,
      4,
      1,
      0,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-1, 5, -5]\noutput : list = [7, 1, -3]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_des([-1, 5, -5])),1)),2)",
    "io_inp": [
      -1,
      5,
      -5
    ],
    "io_out": [
      7,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_des(input)),1)),2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(sort_des([2, -1]),3))),1)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(sort_des(input),3))),1)"
  },
  {
    "input": "input : list = [-2, -1, -2, -3]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(take([-2, -1, -2, -3],1),9))",
    "io_inp": [
      -2,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,1),9))"
  },
  {
    "input": "input : list = [2, 0, 2, 4, 4]\noutput : list = [-4, -2, -2, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([2, 0, 2, 4, 4]),-4))",
    "io_inp": [
      2,
      0,
      2,
      4,
      4
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [-4, -2, -5, -3, 4]\noutput : list = [-15, -13, -11, -9, 3]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(mul_n([-4, -2, -5, -3, 4],2)),27),5))",
    "io_inp": [
      -4,
      -2,
      -5,
      -3,
      4
    ],
    "io_out": [
      -15,
      -13,
      -11,
      -9,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(mul_n(input,2)),27),5))"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = drop([5, -4, 1],1)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [14, 24, 24]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(mul_n([-4, -4, -2],-5),4)),-3),1)",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      14,
      24,
      24
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(mul_n(input,-5),4)),-3),1)"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(mul_n([-4, -2, -2],1),1)),-5))",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(mul_n(input,1),1)),-5))"
  },
  {
    "input": "input : list = [0, -1, -5]\noutput : list = [-2, -3, -7]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(add_n([0, -1, -5],-2)))))",
    "io_inp": [
      0,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 3, 1],1)",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 0, 3, 2, 0]\noutput : list = [3, 3, 6, 5, 3]",
    "output": "generated_output : list = add_n([0, 0, 3, 2, 0],3)",
    "io_inp": [
      0,
      0,
      3,
      2,
      0
    ],
    "io_out": [
      3,
      3,
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, 0, 4, 5, 3, 4]\noutput : list = [-1, -2, 0, -1, -5, -3]",
    "output": "generated_output : list = reverse(add_n([2, 0, 4, 5, 3, 4],-5))",
    "io_inp": [
      2,
      0,
      4,
      5,
      3,
      4
    ],
    "io_out": [
      -1,
      -2,
      0,
      -1,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [-2, 1, 0, 4, -3]\noutput : list = [0, 4, -3]",
    "output": "generated_output : list = drop(drop([-2, 1, 0, 4, -3],1),1)",
    "io_inp": [
      -2,
      1,
      0,
      4,
      -3
    ],
    "io_out": [
      0,
      4,
      -3
    ],
    "output_masked": "generated_output : list = drop(drop(input,1),1)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [31, 31, 11]",
    "output": "generated_output : list = add_n(take(take(mul_n(mul_n([-3, -3, -1],2),-5),12),6),1)",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      31,
      31,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(mul_n(input,2),-5),12),6),1)"
  },
  {
    "input": "input : list = [4, -5, -4, 2]\noutput : list = [-2, -8, -9]",
    "output": "generated_output : list = sub_n(reverse(drop([4, -5, -4, 2],1)),4)",
    "io_inp": [
      4,
      -5,
      -4,
      2
    ],
    "io_out": [
      -2,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,1)),4)"
  },
  {
    "input": "input : list = [-5, -4, 3, 1, 2, 0]\noutput : list = [15, 10, 5, 0, -20, -25]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(sort_asc([-5, -4, 3, 1, 2, 0])),5)))",
    "io_inp": [
      -5,
      -4,
      3,
      1,
      2,
      0
    ],
    "io_out": [
      15,
      10,
      5,
      0,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [-5, -4, -3, 1, 1]\noutput : list = [-5, -4, -3, 1, 1]",
    "output": "generated_output : list = sort_asc([-5, -4, -3, 1, 1])",
    "io_inp": [
      -5,
      -4,
      -3,
      1,
      1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, 5, -1]\noutput : list = [5, -1, -3, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(take(sort_asc([-3, -5, 5, -1]),16))),51)",
    "io_inp": [
      -3,
      -5,
      5,
      -1
    ],
    "io_out": [
      5,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(sort_asc(input),16))),51)"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc([1, 3, -3]),-3),3),-1)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(input),-3),3),-1)"
  },
  {
    "input": "input : list = [-5, -1, 5, 2, 5, 5]\noutput : list = [5, 2, -1, -5]",
    "output": "generated_output : list = sort_des(take([-5, -1, 5, 2, 5, 5],4))",
    "io_inp": [
      -5,
      -1,
      5,
      2,
      5,
      5
    ],
    "io_out": [
      5,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [2, 0, -4, 1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 0, -4, 1],1)",
    "io_inp": [
      2,
      0,
      -4,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse([3, 2, 4]),-3))",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [16, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n(reverse([5, -3]),3)),2))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(reverse(input),3)),2))"
  },
  {
    "input": "input : list = [-3, 2, -1, 3, -3]\noutput : list = [8, 7, 4, 2, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([-3, 2, -1, 3, -3])),-5)",
    "io_inp": [
      -3,
      2,
      -1,
      3,
      -3
    ],
    "io_out": [
      8,
      7,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 4, 5, 3, -4]\noutput : list = [3, 5, 6, 4, -3]",
    "output": "generated_output : list = add_n([2, 4, 5, 3, -4],1)",
    "io_inp": [
      2,
      4,
      5,
      3,
      -4
    ],
    "io_out": [
      3,
      5,
      6,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-5, -3, -4, 3, 1, -3]\noutput : list = [40, 30, 35, 0]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(take([-5, -3, -4, 3, 1, -3],4),1),-1),4),5)",
    "io_inp": [
      -5,
      -3,
      -4,
      3,
      1,
      -3
    ],
    "io_out": [
      40,
      30,
      35,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(take(input,4),1),-1),4),5)"
  },
  {
    "input": "input : list = [-3, -5, -5]\noutput : list = [100, 100, 60]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des(mul_n([-3, -5, -5],-1)),5)),4)",
    "io_inp": [
      -3,
      -5,
      -5
    ],
    "io_out": [
      100,
      100,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(mul_n(input,-1)),5)),4)"
  },
  {
    "input": "input : list = [3, -1, -2, 4]\noutput : list = [-12, -9, 3, 6]",
    "output": "generated_output : list = sort_asc(mul_n([3, -1, -2, 4],-3))",
    "io_inp": [
      3,
      -1,
      -2,
      4
    ],
    "io_out": [
      -12,
      -9,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [5, -3, 1, 0]\noutput : list = [-6, -4, -12, 4]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(mul_n([5, -3, 1, 0],2),2),8)),4)",
    "io_inp": [
      5,
      -3,
      1,
      0
    ],
    "io_out": [
      -6,
      -4,
      -12,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(mul_n(input,2),2),8)),4)"
  },
  {
    "input": "input : list = [2, 5, 2, 4]\noutput : list = [0, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n([2, 5, 2, 4],-4)),2))",
    "io_inp": [
      2,
      5,
      2,
      4
    ],
    "io_out": [
      0,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(input,-4)),2))"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-5, 10, 20]",
    "output": "generated_output : list = mul_n([-1, 2, 4],5)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -5,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [22, 28]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(add_n([2, 4],4))),3),4)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      22,
      28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(add_n(input,4))),3),4)"
  },
  {
    "input": "input : list = [5, -1, 1, 3, 2, 2]\noutput : list = [4, 2, 2, 0, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(drop([5, -1, 1, 3, 2, 2],1)),2),2)",
    "io_inp": [
      5,
      -1,
      1,
      3,
      2,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(drop(input,1)),2),2)"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [0, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 0, 1]))",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -2, -3, 1, -2]\noutput : list = [0, 1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse([-1, -2, -3, 1, -2]),-3)))",
    "io_inp": [
      -1,
      -2,
      -3,
      1,
      -2
    ],
    "io_out": [
      0,
      1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(input),-3)))"
  },
  {
    "input": "input : list = [1, 5, 5]\noutput : list = [1, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(reverse([1, 5, 5])))))",
    "io_inp": [
      1,
      5,
      5
    ],
    "io_out": [
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, -2, 3, 1, -5]\noutput : list = [10, 4, 2, -2, -6]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([-1, -2, 3, 1, -5],-2)))",
    "io_inp": [
      -1,
      -2,
      3,
      1,
      -5
    ],
    "io_out": [
      10,
      4,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [1, 6]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(drop([1, 0, -5],1)),-1),-5),10)",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(drop(input,1)),-1),-5),10)"
  },
  {
    "input": "input : list = [4, -5, 1, 3, -5]\noutput : list = [-28, -28, -4, 4, 8]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(sort_des([4, -5, 1, 3, -5]),15),-2)),4)",
    "io_inp": [
      4,
      -5,
      1,
      3,
      -5
    ],
    "io_out": [
      -28,
      -28,
      -4,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(sort_des(input),15),-2)),4)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-16, 12]",
    "output": "generated_output : list = mul_n([4, -3],-4)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, 0, 1, -2, -5]\noutput : list = [0, 8, 10, 14, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sub_n([5, 0, 1, -2, -5],5))),-2))",
    "io_inp": [
      5,
      0,
      1,
      -2,
      -5
    ],
    "io_out": [
      0,
      8,
      10,
      14,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sub_n(input,5))),-2))"
  },
  {
    "input": "input : list = [0, 3, -4, -1, 5, 0]\noutput : list = [-16, -4, 0, 0, 12, 20]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(reverse([0, 3, -4, -1, 5, 0]),4)),29))",
    "io_inp": [
      0,
      3,
      -4,
      -1,
      5,
      0
    ],
    "io_out": [
      -16,
      -4,
      0,
      0,
      12,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(reverse(input),4)),29))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [45, 60]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sort_asc([3, 4])),3),5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      45,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sort_asc(input)),3),5))"
  },
  {
    "input": "input : list = [-5, 3, 2, -2]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sort_des([-5, 3, 2, -2]))),1))",
    "io_inp": [
      -5,
      3,
      2,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-3, 4, -5, 3]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des([-3, 4, -5, 3]),1)",
    "io_inp": [
      -3,
      4,
      -5,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),1)"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [3, -6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_asc([-4, -4, 5]),-3),5)))",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_asc(input),-3),5)))"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([2, 0, -5],1)",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -2, 5]\noutput : list = [-3, -2, 4, 4]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des([-1, 5, -2, 5]),-3),2))",
    "io_inp": [
      -1,
      5,
      -2,
      5
    ],
    "io_out": [
      -3,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(input),-3),2))"
  },
  {
    "input": "input : list = [0, 3, 0, 4, -4]\noutput : list = [8, 7, 4, 4, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc([0, 3, 0, 4, -4]),5),-2),-1))",
    "io_inp": [
      0,
      3,
      0,
      4,
      -4
    ],
    "io_out": [
      8,
      7,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc(input),5),-2),-1))"
  },
  {
    "input": "input : list = [1, -2, 4, 5, -1]\noutput : list = [-5, -4, -2, 1, 2]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_asc([1, -2, 4, 5, -1])),-3)))",
    "io_inp": [
      1,
      -2,
      4,
      5,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [2, 2, -4]\noutput : list = [36, 36, -72]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(mul_n([2, 2, -4],2),-3))),-3)",
    "io_inp": [
      2,
      2,
      -4
    ],
    "io_out": [
      36,
      36,
      -72
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(mul_n(input,2),-3))),-3)"
  },
  {
    "input": "input : list = [-4, 1, 0, 2, -3]\noutput : list = [-9, -7, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(sort_asc([-4, 1, 0, 2, -3]),2),7),1))",
    "io_inp": [
      -4,
      1,
      0,
      2,
      -3
    ],
    "io_out": [
      -9,
      -7,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(sort_asc(input),2),7),1))"
  },
  {
    "input": "input : list = [-2, -4, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = drop([-2, -4, 2, 0],2)",
    "io_inp": [
      -2,
      -4,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -4, 0, -1, -1, 1]\noutput : list = [-4, 6, -2, 0, 0, -4]",
    "output": "generated_output : list = take(mul_n(add_n([1, -4, 0, -1, -1, 1],1),-2),15)",
    "io_inp": [
      1,
      -4,
      0,
      -1,
      -1,
      1
    ],
    "io_out": [
      -4,
      6,
      -2,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,1),-2),15)"
  },
  {
    "input": "input : list = [-2, 5, -2, 0, -1]\noutput : list = [-2, -2, -1, 0, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(reverse([-2, 5, -2, 0, -1])))),44)",
    "io_inp": [
      -2,
      5,
      -2,
      0,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(reverse(input)))),44)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-6, -13]",
    "output": "generated_output : list = add_n(sub_n([2, -5],3),-5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -6,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),-5)"
  },
  {
    "input": "input : list = [2, -3, -4, 0, -5]\noutput : list = [10, 0, -15, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n([2, -3, -4, 0, -5],5))",
    "io_inp": [
      2,
      -3,
      -4,
      0,
      -5
    ],
    "io_out": [
      10,
      0,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = drop([2, -2, 3],1)",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -3, -2, -4, -4, 2]\noutput : list = [-20, 15, 10, 20, 20, -10]",
    "output": "generated_output : list = take(mul_n([4, -3, -2, -4, -4, 2],-5),12)",
    "io_inp": [
      4,
      -3,
      -2,
      -4,
      -4,
      2
    ],
    "io_out": [
      -20,
      15,
      10,
      20,
      20,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),12)"
  },
  {
    "input": "input : list = [-3, 2, -1, -4, 5]\noutput : list = [-3, 2, -1]",
    "output": "generated_output : list = take([-3, 2, -1, -4, 5],3)",
    "io_inp": [
      -3,
      2,
      -1,
      -4,
      5
    ],
    "io_out": [
      -3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 5, -5]\noutput : list = [-5, -5, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(sort_des([-5, 5, -5])))))",
    "io_inp": [
      -5,
      5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 3, 3, 4]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 3, 3, 4],1)",
    "io_inp": [
      -5,
      3,
      3,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-4, -4, -7]",
    "output": "generated_output : list = add_n([-1, -1, -4],-3)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 1, 5, -4]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take([-1, 1, 5, -4],2)",
    "io_inp": [
      -1,
      1,
      5,
      -4
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -3, 2, 1]\noutput : list = [13, 8, -7, -12]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-2, -3, 2, 1],-5)),2)",
    "io_inp": [
      -2,
      -3,
      2,
      1
    ],
    "io_out": [
      13,
      8,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,-5)),2)"
  },
  {
    "input": "input : list = [1, -3, -1, -2, 3, -3]\noutput : list = [4, 2, 0, -1, -2, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(add_n([1, -3, -1, -2, 3, -3],-1)))),-2)",
    "io_inp": [
      1,
      -3,
      -1,
      -2,
      3,
      -3
    ],
    "io_out": [
      4,
      2,
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(add_n(input,-1)))),-2)"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [320, -240, 80]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(mul_n([-1, 3, -4],-5),4),-4),-1))",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      320,
      -240,
      80
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(mul_n(input,-5),4),-4),-1))"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [2, 5, -2]",
    "output": "generated_output : list = reverse([-2, 5, 2])",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [21]",
    "output": "generated_output : list = reverse(mul_n(add_n(drop(add_n([2, -5],1),1),-3),-3))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      21
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(drop(add_n(input,1),1),-3),-3))"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = drop([0, 0, 1],1)",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 4, -3, 1, 1]\noutput : list = [-20, -55, -60]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(take([-4, 4, -3, 1, 1],3)),3),5),5)",
    "io_inp": [
      -4,
      4,
      -3,
      1,
      1
    ],
    "io_out": [
      -20,
      -55,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(take(input,3)),3),5),5)"
  },
  {
    "input": "input : list = [-1, 1, -2, 2, -4]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(sub_n(drop(take(sub_n([-1, 1, -2, 2, -4],-3),25),4),-5),-3)",
    "io_inp": [
      -1,
      1,
      -2,
      2,
      -4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(take(sub_n(input,-3),25),4),-5),-3)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [15, -105, -60]",
    "output": "generated_output : list = take(take(mul_n(mul_n(sub_n([4, -4, -1],3),5),3),18),27)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      15,
      -105,
      -60
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(sub_n(input,3),5),3),18),27)"
  },
  {
    "input": "input : list = [4, 0, 2, -5, -4, -2]\noutput : list = [-1, -3, -5, -7, -9, -10]",
    "output": "generated_output : list = add_n(sort_des([4, 0, 2, -5, -4, -2]),-5)",
    "io_inp": [
      4,
      0,
      2,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [-2, 5, 5]",
    "output": "generated_output : list = sort_asc([-2, 5, 5])",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3, -3, 2, 2, -2]\noutput : list = [3, 3, 2, 2, -2, -2]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(reverse([-2, -3, -3, 2, 2, -2]))),-1))",
    "io_inp": [
      -2,
      -3,
      -3,
      2,
      2,
      -2
    ],
    "io_out": [
      3,
      3,
      2,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [-37, 3, 11]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(reverse([-2, -1, 4]),-4),2),3),2)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      -37,
      3,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(reverse(input),-4),2),3),2)"
  },
  {
    "input": "input : list = [2, 1, -4, 0]\noutput : list = [2, 1, 0, -4]",
    "output": "generated_output : list = sort_des([2, 1, -4, 0])",
    "io_inp": [
      2,
      1,
      -4,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -5, 1, -4, 5, 4]\noutput : list = [-3, 15, -3, 12, -15, -12]",
    "output": "generated_output : list = mul_n([1, -5, 1, -4, 5, 4],-3)",
    "io_inp": [
      1,
      -5,
      1,
      -4,
      5,
      4
    ],
    "io_out": [
      -3,
      15,
      -3,
      12,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [33, 81]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(reverse([2, -2]),4),-4),-3),-3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      33,
      81
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(reverse(input),4),-4),-3),-3)"
  },
  {
    "input": "input : list = [0, -2, 4, 1, -1]\noutput : list = [-2, -5, -6, -7, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(add_n([0, -2, 4, 1, -1],-3))),3))",
    "io_inp": [
      0,
      -2,
      4,
      1,
      -1
    ],
    "io_out": [
      -2,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(add_n(input,-3))),3))"
  },
  {
    "input": "input : list = [2, 0, 4, 5, 3]\noutput : list = [-3, -5, -1, 0, -2]",
    "output": "generated_output : list = sub_n([2, 0, 4, 5, 3],5)",
    "io_inp": [
      2,
      0,
      4,
      5,
      3
    ],
    "io_out": [
      -3,
      -5,
      -1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [7, 11]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(add_n([1, 5],2),4))),1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      7,
      11
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(add_n(input,2),4))),1)"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [-2, -5, 2]",
    "output": "generated_output : list = take(mul_n([-2, -5, 2],1),11)",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      -2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,1),11)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [0, 9, 15]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(sub_n([1, -2, 3],-2),16),13),3))",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      0,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(sub_n(input,-2),16),13),3))"
  },
  {
    "input": "input : list = [1, 2, 4, -3]\noutput : list = [3, 10, 8, 7]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(sub_n([1, 2, 4, -3],-1),5),26)),1)",
    "io_inp": [
      1,
      2,
      4,
      -3
    ],
    "io_out": [
      3,
      10,
      8,
      7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(sub_n(input,-1),5),26)),1)"
  },
  {
    "input": "input : list = [2, 1, -2, 3, 1, -5]\noutput : list = [3, 1, 1, -2, -5]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(drop([2, 1, -2, 3, 1, -5],1),21),4)),-4)",
    "io_inp": [
      2,
      1,
      -2,
      3,
      1,
      -5
    ],
    "io_out": [
      3,
      1,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(drop(input,1),21),4)),-4)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(drop([-5, -1, 3],1))),-4),3)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(drop(input,1))),-4),3)"
  },
  {
    "input": "input : list = [-5, 1, 5, 4, 2, 0]\noutput : list = [-6, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(sort_asc([-5, 1, 5, 4, 2, 0]),1),31),4))",
    "io_inp": [
      -5,
      1,
      5,
      4,
      2,
      0
    ],
    "io_out": [
      -6,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(sort_asc(input),1),31),4))"
  },
  {
    "input": "input : list = [-2, -5, -5, -1, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(take([-2, -5, -5, -1, 3],1),-2),-3)),14)",
    "io_inp": [
      -2,
      -5,
      -5,
      -1,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(take(input,1),-2),-3)),14)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des([2, -5])),11)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),11)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-8, -20]",
    "output": "generated_output : list = mul_n(reverse(add_n([3, 0],2)),-4)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,2)),-4)"
  },
  {
    "input": "input : list = [-4, -4, 4, -5, 0, 5]\noutput : list = [4, 4, 12, 3, 8, 13]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sub_n([-4, -4, 4, -5, 0, 5],-2)),-2)),4)",
    "io_inp": [
      -4,
      -4,
      4,
      -5,
      0,
      5
    ],
    "io_out": [
      4,
      4,
      12,
      3,
      8,
      13
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sub_n(input,-2)),-2)),4)"
  },
  {
    "input": "input : list = [-3, 5, 3, -3]\noutput : list = [-3, -3, 3, 5]",
    "output": "generated_output : list = sort_asc([-3, 5, 3, -3])",
    "io_inp": [
      -3,
      5,
      3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, 4, 1, -1, -2]\noutput : list = [-30, -35]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(drop([-3, -5, 4, 1, -1, -2],4)),5),5)",
    "io_inp": [
      -3,
      -5,
      4,
      1,
      -1,
      -2
    ],
    "io_out": [
      -30,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(drop(input,4)),5),5)"
  },
  {
    "input": "input : list = [0, -4, 3, -5, 5, 5]\noutput : list = [-16, -16]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse(sort_asc([0, -4, 3, -5, 5, 5])),2),-3),-2)",
    "io_inp": [
      0,
      -4,
      3,
      -5,
      5,
      5
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(sort_asc(input)),2),-3),-2)"
  },
  {
    "input": "input : list = [4, 0, -3, 2]\noutput : list = [0, -4, -7, -2]",
    "output": "generated_output : list = add_n(sub_n([4, 0, -3, 2],2),-2)",
    "io_inp": [
      4,
      0,
      -3,
      2
    ],
    "io_out": [
      0,
      -4,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-2)"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(take([-4, 4, -2],1)))),-2)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(take(input,1)))),-2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [12, -15]",
    "output": "generated_output : list = mul_n([4, -5],3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [-6, 2, -8]",
    "output": "generated_output : list = mul_n([-3, 1, -4],2)",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      -6,
      2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [-15, -15, 9]",
    "output": "generated_output : list = mul_n(reverse([-3, 5, 5]),-3)",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      -15,
      -15,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [-7, 1, 17]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(mul_n([-1, 1, -5],-4))),3))",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      -7,
      1,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(mul_n(input,-4))),3))"
  },
  {
    "input": "input : list = [-3, 4, -4, 4]\noutput : list = [16, -16, 16, -12]",
    "output": "generated_output : list = mul_n(reverse([-3, 4, -4, 4]),4)",
    "io_inp": [
      -3,
      4,
      -4,
      4
    ],
    "io_out": [
      16,
      -16,
      16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-5, 0, 1, -1]\noutput : list = [1, 0, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-5, 0, 1, -1])))",
    "io_inp": [
      -5,
      0,
      1,
      -1
    ],
    "io_out": [
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [3, -2, -1, -4, -5, 1]\noutput : list = [-2, -4, -6, -7, -9, -10]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(sort_asc([3, -2, -1, -4, -5, 1])),-5)),25)",
    "io_inp": [
      3,
      -2,
      -1,
      -4,
      -5,
      1
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(sort_asc(input)),-5)),25)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [-10, 2, -4]",
    "output": "generated_output : list = mul_n([5, -1, 2],-2)",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      -10,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, -1, -1, -3, 3]\noutput : list = [5, 5, 15, -15]",
    "output": "generated_output : list = take(mul_n(take(drop([2, -1, -1, -3, 3],1),10),-5),17)",
    "io_inp": [
      2,
      -1,
      -1,
      -3,
      3
    ],
    "io_out": [
      5,
      5,
      15,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(drop(input,1),10),-5),17)"
  },
  {
    "input": "input : list = [-5, -3, 1, -4, 5]\noutput : list = [5, 1, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -3, 1, -4, 5])",
    "io_inp": [
      -5,
      -3,
      1,
      -4,
      5
    ],
    "io_out": [
      5,
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 0, 3]\noutput : list = [0, 12, 16]",
    "output": "generated_output : list = sort_asc(mul_n([4, 0, 3],4))",
    "io_inp": [
      4,
      0,
      3
    ],
    "io_out": [
      0,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [0, -3, -2, 5, 4, 4]\noutput : list = [-20]",
    "output": "generated_output : list = reverse(take(reverse(mul_n([0, -3, -2, 5, 4, 4],-5)),1))",
    "io_inp": [
      0,
      -3,
      -2,
      5,
      4,
      4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(input,-5)),1))"
  },
  {
    "input": "input : list = [0, 1, 0, 4, -5]\noutput : list = [17, 8, 5, 5, -10]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(sort_asc([0, 1, 0, 4, -5]),7),3),5))",
    "io_inp": [
      0,
      1,
      0,
      4,
      -5
    ],
    "io_out": [
      17,
      8,
      5,
      5,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(sort_asc(input),7),3),5))"
  },
  {
    "input": "input : list = [5, -1, 4, 3, 5]\noutput : list = [2, 0, 1, -4, 2]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(sub_n([5, -1, 4, 3, 5],1)),24),-2),4)",
    "io_inp": [
      5,
      -1,
      4,
      3,
      5
    ],
    "io_out": [
      2,
      0,
      1,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(sub_n(input,1)),24),-2),4)"
  },
  {
    "input": "input : list = [0, 0, 2, -1, 2, -3]\noutput : list = [1, 1, 21, -9, 21, -29]",
    "output": "generated_output : list = add_n(mul_n(mul_n([0, 0, 2, -1, 2, -3],2),5),1)",
    "io_inp": [
      0,
      0,
      2,
      -1,
      2,
      -3
    ],
    "io_out": [
      1,
      1,
      21,
      -9,
      21,
      -29
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,2),5),1)"
  },
  {
    "input": "input : list = [2, -4, 3, 2]\noutput : list = [6, 0, 7, 6]",
    "output": "generated_output : list = add_n([2, -4, 3, 2],4)",
    "io_inp": [
      2,
      -4,
      3,
      2
    ],
    "io_out": [
      6,
      0,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, 1, 4, 0, -4, -1]\noutput : list = [-1, -4, 0, 4, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, 4, 0, -4, -1])",
    "io_inp": [
      -2,
      1,
      4,
      0,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4,
      0,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 3, 3, 0, 1, 4]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(take(take(sub_n(take([2, 3, 3, 0, 1, 4],1),1),23),8),-4)",
    "io_inp": [
      2,
      3,
      3,
      0,
      1,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(take(input,1),1),23),8),-4)"
  },
  {
    "input": "input : list = [3, 2, 3, -4, 3, -5]\noutput : list = [1, 0, 1, -6, 1, -7]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n([3, 2, 3, -4, 3, -5],-1),1),37),2)",
    "io_inp": [
      3,
      2,
      3,
      -4,
      3,
      -5
    ],
    "io_out": [
      1,
      0,
      1,
      -6,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(input,-1),1),37),2)"
  },
  {
    "input": "input : list = [-2, 2, 2, 1, 5]\noutput : list = [4, 0, 0, 1, -3]",
    "output": "generated_output : list = sub_n(take(mul_n([-2, 2, 2, 1, 5],-1),21),-2)",
    "io_inp": [
      -2,
      2,
      2,
      1,
      5
    ],
    "io_out": [
      4,
      0,
      0,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,-1),21),-2)"
  },
  {
    "input": "input : list = [-3, -5, 2, 4]\noutput : list = [33]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(take([-3, -5, 2, 4],1),-5),19),4),3)",
    "io_inp": [
      -3,
      -5,
      2,
      4
    ],
    "io_out": [
      33
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(take(input,1),-5),19),4),3)"
  },
  {
    "input": "input : list = [-2, 5, 4, -5, -1, -4]\noutput : list = [-5, -4, -2, -1, 4, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(take(sort_asc([-2, 5, 4, -5, -1, -4]),26))),17)",
    "io_inp": [
      -2,
      5,
      4,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(sort_asc(input),26))),17)"
  },
  {
    "input": "input : list = [3, -2, -3, 4, 3, -2]\noutput : list = [9, 8, 8, 3, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des([3, -2, -3, 4, 3, -2])),5)",
    "io_inp": [
      3,
      -2,
      -3,
      4,
      3,
      -2
    ],
    "io_out": [
      9,
      8,
      8,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),5)"
  },
  {
    "input": "input : list = [5, 1, 4, -1, 2]\noutput : list = [1, 0, -2, -3, -5]",
    "output": "generated_output : list = sort_des(take(sort_des(sub_n([5, 1, 4, -1, 2],4)),24))",
    "io_inp": [
      5,
      1,
      4,
      -1,
      2
    ],
    "io_out": [
      1,
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sub_n(input,4)),24))"
  },
  {
    "input": "input : list = [4, -2, -1, 3, -3]\noutput : list = [12, 9, -3, -6, -9]",
    "output": "generated_output : list = mul_n(sort_des([4, -2, -1, 3, -3]),3)",
    "io_inp": [
      4,
      -2,
      -1,
      3,
      -3
    ],
    "io_out": [
      12,
      9,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-4, -5, -2]\noutput : list = [-8, -10, -11]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(add_n([-4, -5, -2],-5),13),-1)))",
    "io_inp": [
      -4,
      -5,
      -2
    ],
    "io_out": [
      -8,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(add_n(input,-5),13),-1)))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [3, 11]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(sub_n([5, -3],-4))),-2))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      3,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(sub_n(input,-4))),-2))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [9]",
    "output": "generated_output : list = reverse(add_n(sub_n(drop(reverse([-1, 0]),1),-5),5))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(drop(reverse(input),1),-5),5))"
  },
  {
    "input": "input : list = [-4, -4, -3, 3]\noutput : list = [-4, -4, -3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -4, -3, 3]))",
    "io_inp": [
      -4,
      -4,
      -3,
      3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 1, 0, 5]\noutput : list = [-5, -5, -8, -20]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(mul_n([0, 1, 0, 5],-3)),4)),-1)",
    "io_inp": [
      0,
      1,
      0,
      5
    ],
    "io_out": [
      -5,
      -5,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(mul_n(input,-3)),4)),-1)"
  },
  {
    "input": "input : list = [0, 2, 0, 3]\noutput : list = [4, 4, -2, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(mul_n([0, 2, 0, 3],-3),16))),4)",
    "io_inp": [
      0,
      2,
      0,
      3
    ],
    "io_out": [
      4,
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(mul_n(input,-3),16))),4)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [12, 6]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(reverse([3, -3])),5),24),-4)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(reverse(input)),5),24),-4)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [9, 1]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(sub_n([3, -5],-4)),4),5),-3)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(sub_n(input,-4)),4),5),-3)"
  },
  {
    "input": "input : list = [-5, 1, 5, -5]\noutput : list = [16, 8, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n([-5, 1, 5, -5],3)),2))",
    "io_inp": [
      -5,
      1,
      5,
      -5
    ],
    "io_out": [
      16,
      8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(input,3)),2))"
  },
  {
    "input": "input : list = [-2, 0, -1, 5, 3, 0]\noutput : list = [1, -1, -4, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(reverse([-2, 0, -1, 5, 3, 0]),5),4)))",
    "io_inp": [
      -2,
      0,
      -1,
      5,
      3,
      0
    ],
    "io_out": [
      1,
      -1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(reverse(input),5),4)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(mul_n([-3, -3],2))),1),-1)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(mul_n(input,2))),1),-1)"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-2, -2, -2]),2),1)",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),2),1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([-4, -2],-3)),-4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-3)),-4)"
  },
  {
    "input": "input : list = [2, -2, -3, -1, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([2, -2, -3, -1, -3, -3],4)",
    "io_inp": [
      2,
      -2,
      -3,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(add_n([-4, 4],-4),-4)),22),18)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(add_n(input,-4),-4)),22),18)"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sub_n(take([-4, -4, 4],1),3),1)",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,1),3),1)"
  },
  {
    "input": "input : list = [-2, 1, 2, -5]\noutput : list = [25, 10, -5, -10]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(sort_asc([-2, 1, 2, -5])),-5)),5)",
    "io_inp": [
      -2,
      1,
      2,
      -5
    ],
    "io_out": [
      25,
      10,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(sort_asc(input)),-5)),5)"
  },
  {
    "input": "input : list = [-3, 4, 1, -5, -3, 5]\noutput : list = [18, -10, 2, 26, 18, -14]",
    "output": "generated_output : list = add_n(sub_n(mul_n([-3, 4, 1, -5, -3, 5],-4),-5),1)",
    "io_inp": [
      -3,
      4,
      1,
      -5,
      -3,
      5
    ],
    "io_out": [
      18,
      -10,
      2,
      26,
      18,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-4),-5),1)"
  },
  {
    "input": "input : list = [1, -2, 5, -1]\noutput : list = [20, 4, -4, -8]",
    "output": "generated_output : list = sort_des(mul_n([1, -2, 5, -1],4))",
    "io_inp": [
      1,
      -2,
      5,
      -1
    ],
    "io_out": [
      20,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [-20, 0, 12]",
    "output": "generated_output : list = mul_n(sort_asc([3, 0, -5]),4)",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      -20,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-2, 4, 5, -3, 5]\noutput : list = [-3, -2, 4, 5, 5]",
    "output": "generated_output : list = reverse(take(sort_des(take(sort_des([-2, 4, 5, -3, 5]),10)),36))",
    "io_inp": [
      -2,
      4,
      5,
      -3,
      5
    ],
    "io_out": [
      -3,
      -2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(sort_des(input),10)),36))"
  },
  {
    "input": "input : list = [-2, -5, -4, 4]\noutput : list = [24, 20, 12, -12]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(sort_des([-2, -5, -4, 4]),7),-4),4))",
    "io_inp": [
      -2,
      -5,
      -4,
      4
    ],
    "io_out": [
      24,
      20,
      12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(sort_des(input),7),-4),4))"
  },
  {
    "input": "input : list = [5, 4, 4, -5]\noutput : list = [5, 3, 3, -15]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(sort_asc([5, 4, 4, -5]),-3),2)),1)",
    "io_inp": [
      5,
      4,
      4,
      -5
    ],
    "io_out": [
      5,
      3,
      3,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(sort_asc(input),-3),2)),1)"
  },
  {
    "input": "input : list = [0, -3, 1, -2, 5, 1]\noutput : list = [4, 8, 1, 4, 0, 3]",
    "output": "generated_output : list = reverse(add_n(sub_n([0, -3, 1, -2, 5, 1],1),4))",
    "io_inp": [
      0,
      -3,
      1,
      -2,
      5,
      1
    ],
    "io_out": [
      4,
      8,
      1,
      4,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,1),4))"
  },
  {
    "input": "input : list = [4, 2, 1, 4, 4, -4]\noutput : list = [9, 9, 9, 7, 6, 1]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(sub_n([4, 2, 1, 4, 4, -4],-5)))),1)",
    "io_inp": [
      4,
      2,
      1,
      4,
      4,
      -4
    ],
    "io_out": [
      9,
      9,
      9,
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(sub_n(input,-5)))),1)"
  },
  {
    "input": "input : list = [4, -5, -2, 4, 3]\noutput : list = [-27, -12, 13, 18, 18]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc(sort_des([4, -5, -2, 4, 3])),11),5),2)",
    "io_inp": [
      4,
      -5,
      -2,
      4,
      3
    ],
    "io_out": [
      -27,
      -12,
      13,
      18,
      18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(sort_des(input)),11),5),2)"
  },
  {
    "input": "input : list = [2, -2, 5, 3, -4]\noutput : list = [8, 6, 5, 1, -1]",
    "output": "generated_output : list = add_n(sort_des([2, -2, 5, 3, -4]),3)",
    "io_inp": [
      2,
      -2,
      5,
      3,
      -4
    ],
    "io_out": [
      8,
      6,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(take([4, 1, -1],1)),10)))",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(take(input,1)),10)))"
  },
  {
    "input": "input : list = [-2, 1, 5, 3]\noutput : list = [8, 2, -2, -6]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([-2, 1, 5, 3]),2),-2)",
    "io_inp": [
      -2,
      1,
      5,
      3
    ],
    "io_out": [
      8,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),2),-2)"
  },
  {
    "input": "input : list = [-2, 1, -1, 3, 2, -3]\noutput : list = [3, -3, -6, -9]",
    "output": "generated_output : list = drop(mul_n(reverse(take(sort_des([-2, 1, -1, 3, 2, -3]),26)),-3),2)",
    "io_inp": [
      -2,
      1,
      -1,
      3,
      2,
      -3
    ],
    "io_out": [
      3,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(take(sort_des(input),26)),-3),2)"
  },
  {
    "input": "input : list = [1, 5, 0, -1, 2, -3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sort_asc(take([1, 5, 0, -1, 2, -3],1)))",
    "io_inp": [
      1,
      5,
      0,
      -1,
      2,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc([-3, -1]),-3)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(input),-3)))"
  },
  {
    "input": "input : list = [-5, 5, 5, 5]\noutput : list = [-5, -5, -5, 5]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(mul_n([-5, 5, 5, 5],-1)),31)))",
    "io_inp": [
      -5,
      5,
      5,
      5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(mul_n(input,-1)),31)))"
  },
  {
    "input": "input : list = [2, 0, -4, 1]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(drop([2, 0, -4, 1],2))),3)",
    "io_inp": [
      2,
      0,
      -4,
      1
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(drop(input,2))),3)"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [6, 6, 7]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n([-1, 0, -1],3))),-4)",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(input,3))),-4)"
  },
  {
    "input": "input : list = [-3, -2, 1, 3]\noutput : list = [3, 1, -2, -3]",
    "output": "generated_output : list = reverse([-3, -2, 1, 3])",
    "io_inp": [
      -3,
      -2,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, -2]\noutput : list = [-6, -10, -14]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n([-1, -3, -2],4)),1),1)",
    "io_inp": [
      -1,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(input,4)),1),1)"
  },
  {
    "input": "input : list = [-4, 5, -2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(take([-4, 5, -2],1))",
    "io_inp": [
      -4,
      5,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-2, 4, -3, -4, -1]\noutput : list = [16, -4, -8, -12, -16]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(mul_n([-2, 4, -3, -4, -1],4)))))",
    "io_inp": [
      -2,
      4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      16,
      -4,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [3, 4, 5, -2, 2, 5]\noutput : list = [127, 127, 102, 77, 52, -48]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n([3, 4, 5, -2, 2, 5],-5)),-5),2)",
    "io_inp": [
      3,
      4,
      5,
      -2,
      2,
      5
    ],
    "io_out": [
      127,
      127,
      102,
      77,
      52,
      -48
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(input,-5)),-5),2)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(take(add_n([2, 3],-3),9),-1)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-3),9),-1)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [25, 45]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(sort_asc([5, 1]),5),1),5))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      25,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(sort_asc(input),5),1),5))"
  },
  {
    "input": "input : list = [5, 4, 3, -4, 3]\noutput : list = [-4, 3, 3, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([5, 4, 3, -4, 3]))",
    "io_inp": [
      5,
      4,
      3,
      -4,
      3
    ],
    "io_out": [
      -4,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [4, 1]",
    "output": "generated_output : list = sub_n(sub_n(add_n(drop([-2, 5, 2],1),1),-1),3)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(drop(input,1),1),-1),3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 1]))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 1, 2, -4, 4]\noutput : list = [-1, 1, 2, -4, 4]",
    "output": "generated_output : list = reverse(reverse([-1, 1, 2, -4, 4]))",
    "io_inp": [
      -1,
      1,
      2,
      -4,
      4
    ],
    "io_out": [
      -1,
      1,
      2,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, 4, -3, 0, -3]\noutput : list = [2, -2, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(drop([5, 4, -3, 0, -3],1)),-2)))",
    "io_inp": [
      5,
      4,
      -3,
      0,
      -3
    ],
    "io_out": [
      2,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(drop(input,1)),-2)))"
  },
  {
    "input": "input : list = [3, 4, 3, -1]\noutput : list = [23, 18, 18, -2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(sort_des([3, 4, 3, -1]))),5),-3)",
    "io_inp": [
      3,
      4,
      3,
      -1
    ],
    "io_out": [
      23,
      18,
      18,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(sort_des(input))),5),-3)"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [9, 9, 5]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sort_asc([3, 1, 3])),2)),3)",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      9,
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sort_asc(input)),2)),3)"
  },
  {
    "input": "input : list = [4, -1, 0, -1, 4, 2]\noutput : list = [-5, 0, -2]",
    "output": "generated_output : list = add_n(drop([4, -1, 0, -1, 4, 2],3),-4)",
    "io_inp": [
      4,
      -1,
      0,
      -1,
      4,
      2
    ],
    "io_out": [
      -5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-4)"
  },
  {
    "input": "input : list = [5, 0, -1, 3, -1, 2]\noutput : list = [6]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(take([5, 0, -1, 3, -1, 2],1),1))))",
    "io_inp": [
      5,
      0,
      -1,
      3,
      -1,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(take(input,1),1))))"
  },
  {
    "input": "input : list = [4, 5, -4, -4, 3]\noutput : list = [11, 11, -3, -5, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(mul_n([4, 5, -4, -4, 3],-2)),3)))",
    "io_inp": [
      4,
      5,
      -4,
      -4,
      3
    ],
    "io_out": [
      11,
      11,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(mul_n(input,-2)),3)))"
  },
  {
    "input": "input : list = [1, 4, 1, -2, 2, 3]\noutput : list = [4, 3, 2, 1, 1, -2]",
    "output": "generated_output : list = sort_des([1, 4, 1, -2, 2, 3])",
    "io_inp": [
      1,
      4,
      1,
      -2,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-2, 8]",
    "output": "generated_output : list = add_n([-5, 5],3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -2,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [35, 35]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sub_n([1, 1],-3)),-3)),5)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      35,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sub_n(input,-3)),-3)),5)"
  },
  {
    "input": "input : list = [0, -4, -1, -1]\noutput : list = [2, 1, 1, -2]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(reverse([0, -4, -1, -1])),5),3),18)",
    "io_inp": [
      0,
      -4,
      -1,
      -1
    ],
    "io_out": [
      2,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(reverse(input)),5),3),18)"
  },
  {
    "input": "input : list = [-5, -5, 3, -3]\noutput : list = [6, 12, 4, 4]",
    "output": "generated_output : list = add_n(reverse(take(add_n(add_n([-5, -5, 3, -3],4),4),5)),1)",
    "io_inp": [
      -5,
      -5,
      3,
      -3
    ],
    "io_out": [
      6,
      12,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(add_n(input,4),4),5)),1)"
  },
  {
    "input": "input : list = [-3, 5, 4, 5, 3, -3]\noutput : list = [-3, 5, 4]",
    "output": "generated_output : list = take([-3, 5, 4, 5, 3, -3],3)",
    "io_inp": [
      -3,
      5,
      4,
      5,
      3,
      -3
    ],
    "io_out": [
      -3,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 3, 0, -2]\noutput : list = [-6, 2, -1, -3]",
    "output": "generated_output : list = add_n([-5, 3, 0, -2],-1)",
    "io_inp": [
      -5,
      3,
      0,
      -2
    ],
    "io_out": [
      -6,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [8, -1]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(drop([-3, -4, 5],1))),-4),-1)",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      8,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(drop(input,1))),-4),-1)"
  },
  {
    "input": "input : list = [0, -5, 5, 0]\noutput : list = [0, 5, -5, 0]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(add_n([0, -5, 5, 0],5),3)),14),-2)",
    "io_inp": [
      0,
      -5,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(add_n(input,5),3)),14),-2)"
  },
  {
    "input": "input : list = [2, -1, 1, 0, 0, 4]\noutput : list = [12, 8, 6, 4, 4, 2]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(sort_des([2, -1, 1, 0, 0, 4]),4),-2),2),44)",
    "io_inp": [
      2,
      -1,
      1,
      0,
      0,
      4
    ],
    "io_out": [
      12,
      8,
      6,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(sort_des(input),4),-2),2),44)"
  },
  {
    "input": "input : list = [5, -5, 2, -4]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(drop([5, -5, 2, -4],2),19)),-3))",
    "io_inp": [
      5,
      -5,
      2,
      -4
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(drop(input,2),19)),-3))"
  },
  {
    "input": "input : list = [-3, 2, 0, -3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(drop([-3, 2, 0, -3],2),1),-1),-2))",
    "io_inp": [
      -3,
      2,
      0,
      -3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(drop(input,2),1),-1),-2))"
  },
  {
    "input": "input : list = [-3, 1, -2, 2]\noutput : list = [-3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc([-3, 1, -2, 2])",
    "io_inp": [
      -3,
      1,
      -2,
      2
    ],
    "io_out": [
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1, -1, 4, 4]\noutput : list = [9, 4, -6, 19, 19]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([2, 1, -1, 4, 4],5),2),-1)",
    "io_inp": [
      2,
      1,
      -1,
      4,
      4
    ],
    "io_out": [
      9,
      4,
      -6,
      19,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,5),2),-1)"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(take([5, 2, -3],1),-2)),-1),-2)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(take(input,1),-2)),-1),-2)"
  },
  {
    "input": "input : list = [0, 2, 1, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(drop([0, 2, 1, 2, 2],3),14)",
    "io_inp": [
      0,
      2,
      1,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(drop(input,3),14)"
  },
  {
    "input": "input : list = [-2, 3, 1, 3, 4, 2]\noutput : list = [-6, -1, -3, -1, 0, -2]",
    "output": "generated_output : list = take(sub_n([-2, 3, 1, 3, 4, 2],4),17)",
    "io_inp": [
      -2,
      3,
      1,
      3,
      4,
      2
    ],
    "io_out": [
      -6,
      -1,
      -3,
      -1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),17)"
  },
  {
    "input": "input : list = [4, -1, 5, 1, -4, 1]\noutput : list = [0, -1, -4, -4, -6, -9]",
    "output": "generated_output : list = sub_n(take(sort_des([4, -1, 5, 1, -4, 1]),24),5)",
    "io_inp": [
      4,
      -1,
      5,
      1,
      -4,
      1
    ],
    "io_out": [
      0,
      -1,
      -4,
      -4,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),24),5)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = drop([0, 5, 4],1)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = mul_n(mul_n([3, 1, -3],-1),1)",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-2, 4]",
    "output": "generated_output : list = reverse(sort_des(add_n([1, -5],3)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,3)))"
  },
  {
    "input": "input : list = [-4, -3, 2, 0]\noutput : list = [-5, -4, 1, -1]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(add_n([-4, -3, 2, 0],-5),1),2),3),3)",
    "io_inp": [
      -4,
      -3,
      2,
      0
    ],
    "io_out": [
      -5,
      -4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(add_n(input,-5),1),2),3),3)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-4, 4])),2)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [-4, -6, -10]",
    "output": "generated_output : list = take(take(add_n(sub_n(sort_des([4, 2, -2]),3),-5),11),5)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(sort_des(input),3),-5),11),5)"
  },
  {
    "input": "input : list = [-5, 1, 0, 0, 3, 5]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(add_n(take([-5, 1, 0, 0, 3, 5],1),3),5)",
    "io_inp": [
      -5,
      1,
      0,
      0,
      3,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,1),3),5)"
  },
  {
    "input": "input : list = [-1, 2, 5, -3, 1, -4]\noutput : list = [-54, -24, -14, 6, 26, 36]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(mul_n([-1, 2, 5, -3, 1, -4],2),-5))),4)",
    "io_inp": [
      -1,
      2,
      5,
      -3,
      1,
      -4
    ],
    "io_out": [
      -54,
      -24,
      -14,
      6,
      26,
      36
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(mul_n(input,2),-5))),4)"
  },
  {
    "input": "input : list = [0, 0, 4, -2, -5]\noutput : list = [8, 4, 4, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des([0, 0, 4, -2, -5]),-4)",
    "io_inp": [
      0,
      0,
      4,
      -2,
      -5
    ],
    "io_out": [
      8,
      4,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-3, -8, -10]",
    "output": "generated_output : list = sort_des(sub_n([-5, -3, 2],5))",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -3,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [4, -3, 2, -3]\noutput : list = [-3, 2, -3]",
    "output": "generated_output : list = drop([4, -3, 2, -3],1)",
    "io_inp": [
      4,
      -3,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 0, -5, 2]\noutput : list = [2, -5, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, -5, 2])",
    "io_inp": [
      2,
      0,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(add_n(take(take(drop([2, 5, 5],1),15),1),5))",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(drop(input,1),15),1),5))"
  },
  {
    "input": "input : list = [0, -5, 0, 1, 0]\noutput : list = [-20, 0, 0, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(drop([0, -5, 0, 1, 0],1)))),4)",
    "io_inp": [
      0,
      -5,
      0,
      1,
      0
    ],
    "io_out": [
      -20,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(drop(input,1)))),4)"
  },
  {
    "input": "input : list = [0, -2, 2, -2, -4, -1]\noutput : list = [2, 0, -1, -2, -2, -4]",
    "output": "generated_output : list = sort_des(take(sort_des([0, -2, 2, -2, -4, -1]),15))",
    "io_inp": [
      0,
      -2,
      2,
      -2,
      -4,
      -1
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),15))"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 4, 1],1)",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 4, 4]\noutput : list = [20, 20, 20]",
    "output": "generated_output : list = mul_n(sort_des([4, 4, 4]),5)",
    "io_inp": [
      4,
      4,
      4
    ],
    "io_out": [
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-12, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n(add_n([2, -2],2),-3))))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(add_n(input,2),-3))))"
  },
  {
    "input": "input : list = [1, -4, 2, -5, 1, -2]\noutput : list = [-4, 16, -8, 20, -4, 8]",
    "output": "generated_output : list = mul_n([1, -4, 2, -5, 1, -2],-4)",
    "io_inp": [
      1,
      -4,
      2,
      -5,
      1,
      -2
    ],
    "io_out": [
      -4,
      16,
      -8,
      20,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 3, 5, 4]\noutput : list = [9]",
    "output": "generated_output : list = take(reverse(mul_n(take(take([-3, 3, 5, 4],1),6),-3)),6)",
    "io_inp": [
      -3,
      3,
      5,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(take(input,1),6),-3)),6)"
  },
  {
    "input": "input : list = [-5, -1, -3, 1, 4]\noutput : list = [72, 24, -40, -8, -72]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(mul_n([-5, -1, -3, 1, 4],4),1),4)),4)",
    "io_inp": [
      -5,
      -1,
      -3,
      1,
      4
    ],
    "io_out": [
      72,
      24,
      -40,
      -8,
      -72
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(mul_n(input,4),1),4)),4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(add_n([3, -2],4)))))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(add_n(input,4)))))"
  },
  {
    "input": "input : list = [-3, 0, -5, -3]\noutput : list = [-4, -2, -2, 1]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n([-3, 0, -5, -3],2)),22),-3)",
    "io_inp": [
      -3,
      0,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(input,2)),22),-3)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take(sort_asc([1, -5]),1)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-5, -1, -1, -4, 2]\noutput : list = [10, -5, -5, -20, -25]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n([-5, -1, -1, -4, 2],5))))",
    "io_inp": [
      -5,
      -1,
      -1,
      -4,
      2
    ],
    "io_out": [
      10,
      -5,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(input,5))))"
  },
  {
    "input": "input : list = [-1, 3, -1, -5, 5]\noutput : list = [-5, -1, -1, 3, 5]",
    "output": "generated_output : list = sort_asc([-1, 3, -1, -5, 5])",
    "io_inp": [
      -1,
      3,
      -1,
      -5,
      5
    ],
    "io_out": [
      -5,
      -1,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, -5, 4, 3, 3]\noutput : list = [-1, 2, 7, 7, 8, 9]",
    "output": "generated_output : list = sort_asc(sub_n([-2, 5, -5, 4, 3, 3],-4))",
    "io_inp": [
      -2,
      5,
      -5,
      4,
      3,
      3
    ],
    "io_out": [
      -1,
      2,
      7,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [3, -5, -5, -1, 0, 3]\noutput : list = [1, 1, -2, -3, -7, -7]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_des([3, -5, -5, -1, 0, 3]),2))),7)",
    "io_inp": [
      3,
      -5,
      -5,
      -1,
      0,
      3
    ],
    "io_out": [
      1,
      1,
      -2,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_des(input),2))),7)"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(take([3, 1, 3],1),5)",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-5, -1, -3, -4, -4, -2]\noutput : list = [0]",
    "output": "generated_output : list = take(mul_n(sub_n(reverse(take([-5, -1, -3, -4, -4, -2],1)),-5),-1),38)",
    "io_inp": [
      -5,
      -1,
      -3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(reverse(take(input,1)),-5),-1),38)"
  },
  {
    "input": "input : list = [5, -5, 5, -3]\noutput : list = [5, 5, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_des([5, -5, 5, -3])),31)))",
    "io_inp": [
      5,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_des(input)),31)))"
  },
  {
    "input": "input : list = [0, 4, 1, 2, -3, 1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n(drop(drop(take(add_n([0, 4, 1, 2, -3, 1],-3),8),1),3),-1)",
    "io_inp": [
      0,
      4,
      1,
      2,
      -3,
      1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(drop(take(add_n(input,-3),8),1),3),-1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [2, -5]",
    "output": "generated_output : list = mul_n([-2, 5],-1)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 1, -1, -2, 3]\noutput : list = [9, 6, 3, -3, -9]",
    "output": "generated_output : list = sort_des(mul_n([-3, 1, -1, -2, 3],-3))",
    "io_inp": [
      -3,
      1,
      -1,
      -2,
      3
    ],
    "io_out": [
      9,
      6,
      3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-1, 4, 5, -5, 5, 2]\noutput : list = [-1, 3, 6, 8, 9, 9]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(reverse([-1, 4, 5, -5, 5, 2]),-4))),25)",
    "io_inp": [
      -1,
      4,
      5,
      -5,
      5,
      2
    ],
    "io_out": [
      -1,
      3,
      6,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(reverse(input),-4))),25)"
  },
  {
    "input": "input : list = [-2, 1, 4, 4]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(drop(sort_asc([-2, 1, 4, 4]),2),1)",
    "io_inp": [
      -2,
      1,
      4,
      4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(input),2),1)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [-64, 36, 116]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n([5, -4, 1],5))),-4),4)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      -64,
      36,
      116
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n(input,5))),-4),4)"
  },
  {
    "input": "input : list = [2, 1, 0, 5, 2, 2]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(drop([2, 1, 0, 5, 2, 2],4)),-2)))",
    "io_inp": [
      2,
      1,
      0,
      5,
      2,
      2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(drop(input,4)),-2)))"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [16, 8, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n([-3, 1, 5],-5),-2)))",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      16,
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(input,-5),-2)))"
  },
  {
    "input": "input : list = [1, 1, 0, -3, -4]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n(drop([1, 1, 0, -3, -4],2),-1)))",
    "io_inp": [
      1,
      1,
      0,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(drop(input,2),-1)))"
  },
  {
    "input": "input : list = [-4, 1, -4, 4, -1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(take([-4, 1, -4, 4, -1],2)),7)),32)",
    "io_inp": [
      -4,
      1,
      -4,
      4,
      -1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(take(input,2)),7)),32)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(sort_asc([-2, -1]),-1),-1)))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(sort_asc(input),-1),-1)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-11, 5]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(reverse([-1, -5]),-3),4),-3))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -11,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(reverse(input),-3),4),-3))"
  },
  {
    "input": "input : list = [-4, 3, -1, -4, -1]\noutput : list = [-13, -13, 2, 2, 22]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(reverse([-4, 3, -1, -4, -1]),5),5)),-2)",
    "io_inp": [
      -4,
      3,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -13,
      -13,
      2,
      2,
      22
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(reverse(input),5),5)),-2)"
  },
  {
    "input": "input : list = [1, 4, -5, -5]\noutput : list = [-10, -10]",
    "output": "generated_output : list = mul_n(take(drop([1, 4, -5, -5],2),16),2)",
    "io_inp": [
      1,
      4,
      -5,
      -5
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(input,2),16),2)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = add_n([-3, -3, 1],4)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, -1, 3, 2, -2]\noutput : list = [30, 15, 15, -30, -45]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(mul_n([-1, -1, 3, 2, -2],-5),3),16)))",
    "io_inp": [
      -1,
      -1,
      3,
      2,
      -2
    ],
    "io_out": [
      30,
      15,
      15,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(mul_n(input,-5),3),16)))"
  },
  {
    "input": "input : list = [2, 5, -1, -1, 3, -2]\noutput : list = [-3, 6, 15]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(take([2, 5, -1, -1, 3, -2],3)),-1),-3))",
    "io_inp": [
      2,
      5,
      -1,
      -1,
      3,
      -2
    ],
    "io_out": [
      -3,
      6,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(take(input,3)),-1),-3))"
  },
  {
    "input": "input : list = [-4, -2, -3, 3, 2, 3]\noutput : list = [-4, -2, -3, 3]",
    "output": "generated_output : list = take([-4, -2, -3, 3, 2, 3],4)",
    "io_inp": [
      -4,
      -2,
      -3,
      3,
      2,
      3
    ],
    "io_out": [
      -4,
      -2,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [5, -1, -4, -2, 4]\noutput : list = [21, 18, 3, 0, -6]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(reverse([5, -1, -4, -2, 4])),2),22),3)",
    "io_inp": [
      5,
      -1,
      -4,
      -2,
      4
    ],
    "io_out": [
      21,
      18,
      3,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(reverse(input)),2),22),3)"
  },
  {
    "input": "input : list = [3, 5, 0, 0, 1]\noutput : list = [20, 10, 0, -5, -5]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(sort_des([3, 5, 0, 0, 1]),5))),5)",
    "io_inp": [
      3,
      5,
      0,
      0,
      1
    ],
    "io_out": [
      20,
      10,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(sort_des(input),5))),5)"
  },
  {
    "input": "input : list = [2, 3, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(take([2, 3, 0],1)),-2)),-4)",
    "io_inp": [
      2,
      3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(take(input,1)),-2)),-4)"
  },
  {
    "input": "input : list = [-1, -3, 1, 3, 2]\noutput : list = [8, 16, 0, -8, -4]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n([-1, -3, 1, 3, 2],-4),-2),-2),8)",
    "io_inp": [
      -1,
      -3,
      1,
      3,
      2
    ],
    "io_out": [
      8,
      16,
      0,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(input,-4),-2),-2),8)"
  },
  {
    "input": "input : list = [4, -5, 5]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des([4, -5, 5])",
    "io_inp": [
      4,
      -5,
      5
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, 5, -1]\noutput : list = [-8, -3, 2, -4]",
    "output": "generated_output : list = add_n([-5, 0, 5, -1],-3)",
    "io_inp": [
      -5,
      0,
      5,
      -1
    ],
    "io_out": [
      -8,
      -3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -5, -3, -1]\noutput : list = [-9, -9, -7, -5]",
    "output": "generated_output : list = sub_n(sort_asc([-5, -5, -3, -1]),4)",
    "io_inp": [
      -5,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [1, -1, -3, 5, 4, 1]\noutput : list = [4, -4, -12]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(take([1, -1, -3, 5, 4, 1],3),4)),39))",
    "io_inp": [
      1,
      -1,
      -3,
      5,
      4,
      1
    ],
    "io_out": [
      4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(take(input,3),4)),39))"
  },
  {
    "input": "input : list = [4, -4, -4, 1, -3]\noutput : list = [8, 0, 0, 5, 1]",
    "output": "generated_output : list = add_n(add_n([4, -4, -4, 1, -3],3),1)",
    "io_inp": [
      4,
      -4,
      -4,
      1,
      -3
    ],
    "io_out": [
      8,
      0,
      0,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),1)"
  },
  {
    "input": "input : list = [-4, 1, 0, 4, 3]\noutput : list = [3, 8, 7, 11, 10]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n([-4, 1, 0, 4, 3],2),5)))",
    "io_inp": [
      -4,
      1,
      0,
      4,
      3
    ],
    "io_out": [
      3,
      8,
      7,
      11,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(input,2),5)))"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [18, -6, -12]",
    "output": "generated_output : list = mul_n(mul_n([3, -1, -2],2),3)",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      18,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [1, -3, 3, 2, -1]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(take([1, -3, 3, 2, -1],1))),-5),-1)",
    "io_inp": [
      1,
      -3,
      3,
      2,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(take(input,1))),-5),-1)"
  },
  {
    "input": "input : list = [-2, -3, 0, 5]\noutput : list = [7, 2, -1, 0]",
    "output": "generated_output : list = add_n(reverse(take(reverse(reverse([-2, -3, 0, 5])),15)),2)",
    "io_inp": [
      -2,
      -3,
      0,
      5
    ],
    "io_out": [
      7,
      2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(reverse(input)),15)),2)"
  },
  {
    "input": "input : list = [-3, -3, 5, 0, -1, 3]\noutput : list = [-7, -7, -5, -4, -1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(add_n([-3, -3, 5, 0, -1, 3],5),5),18),4))",
    "io_inp": [
      -3,
      -3,
      5,
      0,
      -1,
      3
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(add_n(input,5),5),18),4))"
  },
  {
    "input": "input : list = [-5, -4, -1, 1, 3, -4]\noutput : list = [-7, -6, -3, -1, 1, -6]",
    "output": "generated_output : list = add_n(add_n(sub_n([-5, -4, -1, 1, 3, -4],1),2),-3)",
    "io_inp": [
      -5,
      -4,
      -1,
      1,
      3,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -1,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,1),2),-3)"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = sort_des(sort_des([4, -4, 2]))",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -1, -4, 2, -1]\noutput : list = [0, 4, 1, 7, 4]",
    "output": "generated_output : list = sub_n([-5, -1, -4, 2, -1],-5)",
    "io_inp": [
      -5,
      -1,
      -4,
      2,
      -1
    ],
    "io_out": [
      0,
      4,
      1,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [15, 3]",
    "output": "generated_output : list = mul_n(reverse([1, 5]),3)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-2, 5, -2, -5]\noutput : list = [0, -7, -7, -10]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(add_n([-2, 5, -2, -5],-1))),4))",
    "io_inp": [
      -2,
      5,
      -2,
      -5
    ],
    "io_out": [
      0,
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(add_n(input,-1))),4))"
  },
  {
    "input": "input : list = [1, 0, -5, 1]\noutput : list = [-2, -2, 3, 28]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_asc([1, 0, -5, 1])),-5)),3)",
    "io_inp": [
      1,
      0,
      -5,
      1
    ],
    "io_out": [
      -2,
      -2,
      3,
      28
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(sort_asc(input)),-5)),3)"
  },
  {
    "input": "input : list = [2, 3, -1, -2, -1, 5]\noutput : list = [0, -2, -3, -6, -6, -7]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n([2, 3, -1, -2, -1, 5],-2)),5),-2)",
    "io_inp": [
      2,
      3,
      -1,
      -2,
      -1,
      5
    ],
    "io_out": [
      0,
      -2,
      -3,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(input,-2)),5),-2)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-6, 0]",
    "output": "generated_output : list = add_n([-5, 1],-1)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -4, 0, -1, 1, 5]\noutput : list = [32, 8, 0, -8, -8, -40]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_des([1, -4, 0, -1, 1, 5]),-4)),2))",
    "io_inp": [
      1,
      -4,
      0,
      -1,
      1,
      5
    ],
    "io_out": [
      32,
      8,
      0,
      -8,
      -8,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_des(input),-4)),2))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [6, 5]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(reverse([2, 1])),-1)),5)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(reverse(input)),-1)),5)"
  },
  {
    "input": "input : list = [-2, -4, 2]\noutput : list = [-1, -3, 3]",
    "output": "generated_output : list = add_n([-2, -4, 2],1)",
    "io_inp": [
      -2,
      -4,
      2
    ],
    "io_out": [
      -1,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(reverse(add_n([-2, -3],-3))),2),-1)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(reverse(add_n(input,-3))),2),-1)"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = sort_des([-5, -2, 2])",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -5, 3, -5, 3, -3]\noutput : list = [-4, 3, 4]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(take([2, -5, 3, -5, 3, -3],3),1))),49)",
    "io_inp": [
      2,
      -5,
      3,
      -5,
      3,
      -3
    ],
    "io_out": [
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(take(input,3),1))),49)"
  },
  {
    "input": "input : list = [-4, 5, -3, 5]\noutput : list = [-10, -1, -9, -1]",
    "output": "generated_output : list = sub_n(sub_n([-4, 5, -3, 5],2),4)",
    "io_inp": [
      -4,
      5,
      -3,
      5
    ],
    "io_out": [
      -10,
      -1,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),4)"
  },
  {
    "input": "input : list = [0, 3, 0, 5, -4, 4]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(take(take([0, 3, 0, 5, -4, 4],2),8))",
    "io_inp": [
      0,
      3,
      0,
      5,
      -4,
      4
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,2),8))"
  },
  {
    "input": "input : list = [-3, 2, 5, -4]\noutput : list = [-8, -7, -2, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([-3, 2, 5, -4]),4))",
    "io_inp": [
      -3,
      2,
      5,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-3, -5, -1, -1, -4]\noutput : list = [-1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-3, -5, -1, -1, -4],2)))",
    "io_inp": [
      -3,
      -5,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [1, 5, 2, -3, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse(take([1, 5, 2, -3, -3],2)),4)))",
    "io_inp": [
      1,
      5,
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(take(input,2)),4)))"
  },
  {
    "input": "input : list = [2, 4, 2, -2, -5]\noutput : list = [11, 5, -3, -7, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(mul_n([2, 4, 2, -2, -5],-2)),-5),4),22)",
    "io_inp": [
      2,
      4,
      2,
      -2,
      -5
    ],
    "io_out": [
      11,
      5,
      -3,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(mul_n(input,-2)),-5),4),22)"
  },
  {
    "input": "input : list = [-4, 0, 3, -4, -2]\noutput : list = [3, 0, -2, -4, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc(sort_des([-4, 0, 3, -4, -2])),1),-1))",
    "io_inp": [
      -4,
      0,
      3,
      -4,
      -2
    ],
    "io_out": [
      3,
      0,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(sort_des(input)),1),-1))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [64, 64]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(reverse([4, 4]),4)),4))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      64,
      64
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(reverse(input),4)),4))"
  },
  {
    "input": "input : list = [4, 1, 0, 4, -2]\noutput : list = [-4, -4, 2, 4, 8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(sort_des([4, 1, 0, 4, -2]),1),-3)),-2)",
    "io_inp": [
      4,
      1,
      0,
      4,
      -2
    ],
    "io_out": [
      -4,
      -4,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(sort_des(input),1),-3)),-2)"
  },
  {
    "input": "input : list = [-4, 1, 0, -1]\noutput : list = [-22]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(take([-4, 1, 0, -1],1),5),-1),-1))",
    "io_inp": [
      -4,
      1,
      0,
      -1
    ],
    "io_out": [
      -22
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(take(input,1),5),-1),-1))"
  },
  {
    "input": "input : list = [5, -5, -5, -5]\noutput : list = [7, -3, -3, -3]",
    "output": "generated_output : list = add_n(sort_des([5, -5, -5, -5]),2)",
    "io_inp": [
      5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      7,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, -20]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([0, -1],5),4))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,5),4))"
  },
  {
    "input": "input : list = [-1, 3, 4, -3, 1]\noutput : list = [-8, -4, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(drop([-1, 3, 4, -3, 1],1),1),10)),-5)",
    "io_inp": [
      -1,
      3,
      4,
      -3,
      1
    ],
    "io_out": [
      -8,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(drop(input,1),1),10)),-5)"
  },
  {
    "input": "input : list = [1, -4, 0]\noutput : list = [2, -8, 0]",
    "output": "generated_output : list = mul_n([1, -4, 0],2)",
    "io_inp": [
      1,
      -4,
      0
    ],
    "io_out": [
      2,
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 4, 5, 1]\noutput : list = [10, 10, 8, 2]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n([5, 4, 5, 1],2)),14)))",
    "io_inp": [
      5,
      4,
      5,
      1
    ],
    "io_out": [
      10,
      10,
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n(input,2)),14)))"
  },
  {
    "input": "input : list = [4, -4, 3, -5, 2]\noutput : list = [2, -5, 3, -4, 4]",
    "output": "generated_output : list = reverse([4, -4, 3, -5, 2])",
    "io_inp": [
      4,
      -4,
      3,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      3,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -5, 1, 4, 4]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take([1, -5, 1, 4, 4],1),5)),4),-2)",
    "io_inp": [
      1,
      -5,
      1,
      4,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take(input,1),5)),4),-2)"
  },
  {
    "input": "input : list = [-4, 5, 5, -5]\noutput : list = [5, 5, -5]",
    "output": "generated_output : list = sort_des(drop([-4, 5, 5, -5],1))",
    "io_inp": [
      -4,
      5,
      5,
      -5
    ],
    "io_out": [
      5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [5, 20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(add_n([1, -2],-2),6),5),-5),-5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(add_n(input,-2),6),5),-5),-5)"
  },
  {
    "input": "input : list = [0, -5, 0, -3, -4]\noutput : list = [-4, -2, 0, 6, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(add_n([0, -5, 0, -3, -4],3),2)),3),3)",
    "io_inp": [
      0,
      -5,
      0,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -2,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(add_n(input,3),2)),3),3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [6, -12]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(mul_n([-4, 2],3),2)),16))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(mul_n(input,3),2)),16))"
  },
  {
    "input": "input : list = [-2, 2, 5, 0, -4]\noutput : list = [5, 2, 0, -2, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(add_n([-2, 2, 5, 0, -4],-3))),-1),4)",
    "io_inp": [
      -2,
      2,
      5,
      0,
      -4
    ],
    "io_out": [
      5,
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(add_n(input,-3))),-1),4)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [5, 9, 10]",
    "output": "generated_output : list = sub_n(take(take(reverse(sort_des([0, 5, 4])),25),26),-5)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(sort_des(input)),25),26),-5)"
  },
  {
    "input": "input : list = [4, 4, 2, 3, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(add_n([4, 4, 2, 3, -5],-2),1),-3),3))",
    "io_inp": [
      4,
      4,
      2,
      3,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(add_n(input,-2),1),-3),3))"
  },
  {
    "input": "input : list = [0, -5, 1, 2, -3]\noutput : list = [-3, -4, -9]",
    "output": "generated_output : list = sort_des(sub_n(take([0, -5, 1, 2, -3],3),4))",
    "io_inp": [
      0,
      -5,
      1,
      2,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(input,3),4))"
  },
  {
    "input": "input : list = [4, 5, -3, 0, 0]\noutput : list = [3, 0, 0, -4, -5]",
    "output": "generated_output : list = sort_des(take(mul_n(take(sort_des([4, 5, -3, 0, 0]),21),-1),11))",
    "io_inp": [
      4,
      5,
      -3,
      0,
      0
    ],
    "io_out": [
      3,
      0,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(sort_des(input),21),-1),11))"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = sort_des([4, 1, 2])",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [-1, -13, -17]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(add_n([3, 1, -5],5),-2)),1),1)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      -1,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(add_n(input,5),-2)),1),1)"
  },
  {
    "input": "input : list = [4, 4, 2, 1, -3, -3]\noutput : list = [4, 4, 2, 1, -3, -3]",
    "output": "generated_output : list = sort_des([4, 4, 2, 1, -3, -3])",
    "io_inp": [
      4,
      4,
      2,
      1,
      -3,
      -3
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(reverse([-3, -5])))))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [3]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(take([-1, -2, -1],1),2),18),3))",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(take(input,1),2),18),3))"
  },
  {
    "input": "input : list = [-1, -1, 1, -4]\noutput : list = [-12, -12, 12, -48]",
    "output": "generated_output : list = mul_n(mul_n([-1, -1, 1, -4],3),4)",
    "io_inp": [
      -1,
      -1,
      1,
      -4
    ],
    "io_out": [
      -12,
      -12,
      12,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),4)"
  },
  {
    "input": "input : list = [-1, -3, 3, 3, -4]\noutput : list = [-1, 0, 6, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(drop([-1, -3, 3, 3, -4],1),3))))",
    "io_inp": [
      -1,
      -3,
      3,
      3,
      -4
    ],
    "io_out": [
      -1,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(drop(input,1),3))))"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [4, -12, -4]",
    "output": "generated_output : list = mul_n([-1, 3, 1],-4)",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      4,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 2, 0, -3, -4, -4]\noutput : list = [20, 20]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(sort_asc([3, 2, 0, -3, -4, -4]))),-5),2)",
    "io_inp": [
      3,
      2,
      0,
      -3,
      -4,
      -4
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(sort_asc(input))),-5),2)"
  },
  {
    "input": "input : list = [-1, 0, -4]\noutput : list = [-27, -18, -15]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(sub_n([-1, 0, -4],5),17))),3)",
    "io_inp": [
      -1,
      0,
      -4
    ],
    "io_out": [
      -27,
      -18,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(sub_n(input,5),17))),3)"
  },
  {
    "input": "input : list = [3, 2, 0, -1, -4, 5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take([3, 2, 0, -1, -4, 5],1),-2),-1))",
    "io_inp": [
      3,
      2,
      0,
      -1,
      -4,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(input,1),-2),-1))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(sort_asc([4, 2]))),-4))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [1, -4, -2, 0, 3, 4]\noutput : list = [0, 2, 4, 5]",
    "output": "generated_output : list = take(take(reverse(sort_des(sub_n([1, -4, -2, 0, 3, 4],-4))),22),4)",
    "io_inp": [
      1,
      -4,
      -2,
      0,
      3,
      4
    ],
    "io_out": [
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(sub_n(input,-4))),22),4)"
  },
  {
    "input": "input : list = [-2, 4, 0, 2, -3, 4]\noutput : list = [-2, -1, 1, 3, 5, 5]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(add_n([-2, 4, 0, 2, -3, 4],4)),11),3),50)",
    "io_inp": [
      -2,
      4,
      0,
      2,
      -3,
      4
    ],
    "io_out": [
      -2,
      -1,
      1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(add_n(input,4)),11),3),50)"
  },
  {
    "input": "input : list = [-4, -1, 1, 0, 2, -3]\noutput : list = [6, 3, 1]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(take([-4, -1, 1, 0, 2, -3],3),-1),25),2))",
    "io_inp": [
      -4,
      -1,
      1,
      0,
      2,
      -3
    ],
    "io_out": [
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(take(input,3),-1),25),2))"
  },
  {
    "input": "input : list = [-5, -2, 0, -2, -3]\noutput : list = [-5, -2, 0, -2, -3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([-5, -2, 0, -2, -3],5),-3),-2)",
    "io_inp": [
      -5,
      -2,
      0,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -2,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,5),-3),-2)"
  },
  {
    "input": "input : list = [3, 3, -2, -4, -2]\noutput : list = [3, 3, -3]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des(drop([3, 3, -2, -4, -2],2)),-3),3),5)",
    "io_inp": [
      3,
      3,
      -2,
      -4,
      -2
    ],
    "io_out": [
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(drop(input,2)),-3),3),5)"
  },
  {
    "input": "input : list = [-4, 2, 5, 1]\noutput : list = [0, 20, 5, -25]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse([-4, 2, 5, 1]),5),5),31)",
    "io_inp": [
      -4,
      2,
      5,
      1
    ],
    "io_out": [
      0,
      20,
      5,
      -25
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(input),5),5),31)"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sort_asc(take(take(take([-4, -1, -5],1),5),19)))",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(take(input,1),5),19)))"
  },
  {
    "input": "input : list = [-5, 5, -4, 1]\noutput : list = [-1, -6]",
    "output": "generated_output : list = add_n(add_n(sort_des(drop([-5, 5, -4, 1],2)),-1),-1)",
    "io_inp": [
      -5,
      5,
      -4,
      1
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(drop(input,2)),-1),-1)"
  },
  {
    "input": "input : list = [-3, -3, 0, 2, -4]\noutput : list = [10, 0, -15, -15, -20]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(reverse([-3, -3, 0, 2, -4]),5))),37)",
    "io_inp": [
      -3,
      -3,
      0,
      2,
      -4
    ],
    "io_out": [
      10,
      0,
      -15,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(reverse(input),5))),37)"
  },
  {
    "input": "input : list = [1, -4, 2, -3, 4]\noutput : list = [-4, -3, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([1, -4, 2, -3, 4])",
    "io_inp": [
      1,
      -4,
      2,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = drop([0, -2, 1],1)",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(sort_asc([5, -1]))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [4, -2, -1, 4, 5]\noutput : list = [1, 2, 7, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des([4, -2, -1, 4, 5]),1),-3)))",
    "io_inp": [
      4,
      -2,
      -1,
      4,
      5
    ],
    "io_out": [
      1,
      2,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des(input),1),-3)))"
  },
  {
    "input": "input : list = [-1, 0, 5]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(sort_asc(take(take([-1, 0, 5],1),15)),-4)",
    "io_inp": [
      -1,
      0,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(input,1),15)),-4)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 6]",
    "output": "generated_output : list = sub_n([2, 4],-2)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -1, 2, 2, -4]\noutput : list = [40, 40, -20, -60, -80]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_des([-3, -1, 2, 2, -4]),5),4),1),-1)",
    "io_inp": [
      -3,
      -1,
      2,
      2,
      -4
    ],
    "io_out": [
      40,
      40,
      -20,
      -60,
      -80
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_des(input),5),4),1),-1)"
  },
  {
    "input": "input : list = [4, 0, 3, -3, -2]\noutput : list = [-2, -3, 3, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, 3, -3, -2])",
    "io_inp": [
      4,
      0,
      3,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      3,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, -3, -4, -3, -4]\noutput : list = [-2, -2, -1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(drop([-5, -5, -3, -4, -3, -4],3),2))))",
    "io_inp": [
      -5,
      -5,
      -3,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(drop(input,3),2))))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-30, 45]",
    "output": "generated_output : list = mul_n(mul_n(take(take(reverse([-3, 2]),3),5),-5),3)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -30,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(reverse(input),3),5),-5),3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [16, 4]",
    "output": "generated_output : list = reverse(mul_n([1, 4],4))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      16,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [-1, 2, -4, 3]\noutput : list = [-2, 4, -8, 6]",
    "output": "generated_output : list = mul_n([-1, 2, -4, 3],2)",
    "io_inp": [
      -1,
      2,
      -4,
      3
    ],
    "io_out": [
      -2,
      4,
      -8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [3, -5, -3, -4, -4, 1]\noutput : list = [8, 6, 2, 1, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(sort_des([3, -5, -3, -4, -4, 1]),5),12)))",
    "io_inp": [
      3,
      -5,
      -3,
      -4,
      -4,
      1
    ],
    "io_out": [
      8,
      6,
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(sort_des(input),5),12)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [10, -25]",
    "output": "generated_output : list = mul_n([-2, 5],-5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [7, 9, 2]",
    "output": "generated_output : list = add_n(add_n([1, 3, -4],2),4)",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      7,
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),4)"
  },
  {
    "input": "input : list = [5, 3, -1, 5, 3]\noutput : list = [-10, -10, -4, -4, 8]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(mul_n([5, 3, -1, 5, 3],-3),5))),12)",
    "io_inp": [
      5,
      3,
      -1,
      5,
      3
    ],
    "io_out": [
      -10,
      -10,
      -4,
      -4,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(mul_n(input,-3),5))),12)"
  },
  {
    "input": "input : list = [-5, -4, -4, 5, 0]\noutput : list = [-2, -1, -1, 3, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse([-5, -4, -4, 5, 0]),12),3)))",
    "io_inp": [
      -5,
      -4,
      -4,
      5,
      0
    ],
    "io_out": [
      -2,
      -1,
      -1,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse(input),12),3)))"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [11, 7, 4]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n([5, -2, 2],-5),4)),-1)",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      11,
      7,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(input,-5),4)),-1)"
  },
  {
    "input": "input : list = [0, 4, 5, -1, -1]\noutput : list = [7, 6, 2, 1, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(sort_des([0, 4, 5, -1, -1]))),2))",
    "io_inp": [
      0,
      4,
      5,
      -1,
      -1
    ],
    "io_out": [
      7,
      6,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(sort_des(input))),2))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take([3, 1, -4],1))),-2)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(input,1))),-2)"
  },
  {
    "input": "input : list = [0, 1, 1, -5, 2]\noutput : list = [15, 0, -3, -3, -6]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc([0, 1, 1, -5, 2])),-3))",
    "io_inp": [
      0,
      1,
      1,
      -5,
      2
    ],
    "io_out": [
      15,
      0,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [-4, 2, -2, -1, 1]\noutput : list = [-4, -2, -1, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(add_n([-4, 2, -2, -1, 1],-1)))),-1)",
    "io_inp": [
      -4,
      2,
      -2,
      -1,
      1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(add_n(input,-1)))),-1)"
  },
  {
    "input": "input : list = [-2, 0, -1, -2, 2, 2]\noutput : list = [3, 3, 2, 1, -1, -1]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(sort_des([-2, 0, -1, -2, 2, 2]),9),-1)),1)",
    "io_inp": [
      -2,
      0,
      -1,
      -2,
      2,
      2
    ],
    "io_out": [
      3,
      3,
      2,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(sort_des(input),9),-1)),1)"
  },
  {
    "input": "input : list = [-1, 0, 4, 5, -2, -4]\noutput : list = [-4, -2, -1, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([-1, 0, 4, 5, -2, -4]))",
    "io_inp": [
      -1,
      0,
      4,
      5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, 3, -5, 2, -5]\noutput : list = [-9, -9, -2, -1, 1]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(sort_des([5, 3, -5, 2, -5]))),-4),45)",
    "io_inp": [
      5,
      3,
      -5,
      2,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(sort_des(input))),-4),45)"
  },
  {
    "input": "input : list = [0, 3, -4]\noutput : list = [3, 10, 7]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse([0, 3, -4]),-3),-4),33)",
    "io_inp": [
      0,
      3,
      -4
    ],
    "io_out": [
      3,
      10,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(input),-3),-4),33)"
  },
  {
    "input": "input : list = [-4, -2, 5, 3, 4, 5]\noutput : list = [5, 4, 3, 5, -2]",
    "output": "generated_output : list = take(reverse([-4, -2, 5, 3, 4, 5]),5)",
    "io_inp": [
      -4,
      -2,
      5,
      3,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      3,
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(reverse([5, 3]))),1))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(reverse(input))),1))"
  },
  {
    "input": "input : list = [-3, 2, -3, 1]\noutput : list = [9, 9, -27, -36]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sub_n([-3, 2, -3, 1],-2)),3)),-3)",
    "io_inp": [
      -3,
      2,
      -3,
      1
    ],
    "io_out": [
      9,
      9,
      -27,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sub_n(input,-2)),3)),-3)"
  },
  {
    "input": "input : list = [-5, 3, 1, -1, -4]\noutput : list = [-2, 2, 6, -10]",
    "output": "generated_output : list = take(drop(mul_n(reverse(mul_n([-5, 3, 1, -1, -4],-1)),-2),1),21)",
    "io_inp": [
      -5,
      3,
      1,
      -1,
      -4
    ],
    "io_out": [
      -2,
      2,
      6,
      -10
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(reverse(mul_n(input,-1)),-2),1),21)"
  },
  {
    "input": "input : list = [-5, 4, 5, -2, 5]\noutput : list = [-17, -21, -21]",
    "output": "generated_output : list = drop(sub_n(take(mul_n(sort_asc([-5, 4, 5, -2, 5]),-4),11),1),2)",
    "io_inp": [
      -5,
      4,
      5,
      -2,
      5
    ],
    "io_out": [
      -17,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = drop(sub_n(take(mul_n(sort_asc(input),-4),11),1),2)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [17, 11, -1]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(sort_asc([1, -3, -5])),-3),2),34)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      17,
      11,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(sort_asc(input)),-3),2),34)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(sort_des([1, 4]),-1),-1),1),40)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(sort_des(input),-1),-1),1),40)"
  },
  {
    "input": "input : list = [2, -5, 1, 3, 5, 4]\noutput : list = [16, -8, -12, -16, -20, -24]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_asc([2, -5, 1, 3, 5, 4]),-4),-4)))",
    "io_inp": [
      2,
      -5,
      1,
      3,
      5,
      4
    ],
    "io_out": [
      16,
      -8,
      -12,
      -16,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_asc(input),-4),-4)))"
  },
  {
    "input": "input : list = [1, -1, -1, -2]\noutput : list = [-15]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(take([1, -1, -1, -2],1),-1),4),-4),-3)",
    "io_inp": [
      1,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(take(input,1),-1),4),-4),-3)"
  },
  {
    "input": "input : list = [-3, -3, 1, 5, 4, 2]\noutput : list = [-7, -7, -3, -2]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(sort_asc([-3, -3, 1, 5, 4, 2]),4)),-4))",
    "io_inp": [
      -3,
      -3,
      1,
      5,
      4,
      2
    ],
    "io_out": [
      -7,
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(sort_asc(input),4)),-4))"
  },
  {
    "input": "input : list = [-4, -5, 1, 3, 1, 2]\noutput : list = [-7, -6, -5, -5, 0, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc([-4, -5, 1, 3, 1, 2]),-1))),4)",
    "io_inp": [
      -4,
      -5,
      1,
      3,
      1,
      2
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_asc(input),-1))),4)"
  },
  {
    "input": "input : list = [5, -5, 1, -1, -5]\noutput : list = [2, -2, -4, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(sub_n([5, -5, 1, -1, -5],3)),-4)),-4)",
    "io_inp": [
      5,
      -5,
      1,
      -1,
      -5
    ],
    "io_out": [
      2,
      -2,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(sub_n(input,3)),-4)),-4)"
  },
  {
    "input": "input : list = [2, -4, 4, -5, 1]\noutput : list = [6, -2, -6, -26, -30]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sub_n([2, -4, 4, -5, 1],3))),4),2)",
    "io_inp": [
      2,
      -4,
      4,
      -5,
      1
    ],
    "io_out": [
      6,
      -2,
      -6,
      -26,
      -30
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sub_n(input,3))),4),2)"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 4, -5],1)",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [17, 17]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n(sub_n([1, 1],-5),-3),1),4),-4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      17,
      17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(sub_n(input,-5),-3),1),4),-4)"
  },
  {
    "input": "input : list = [0, 4, -1, -5]\noutput : list = [1, 5, 0, -4]",
    "output": "generated_output : list = sub_n(mul_n([0, 4, -1, -5],1),-1)",
    "io_inp": [
      0,
      4,
      -1,
      -5
    ],
    "io_out": [
      1,
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),-1)"
  },
  {
    "input": "input : list = [1, -1, 3, -5]\noutput : list = [-10, -6, -4, -2]",
    "output": "generated_output : list = sort_asc(add_n([1, -1, 3, -5],-5))",
    "io_inp": [
      1,
      -1,
      3,
      -5
    ],
    "io_out": [
      -10,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [-5, -5, -2, -4, 3]\noutput : list = [15, 15, 12, 6, -9]",
    "output": "generated_output : list = sort_des(take(take(mul_n([-5, -5, -2, -4, 3],-3),27),15))",
    "io_inp": [
      -5,
      -5,
      -2,
      -4,
      3
    ],
    "io_out": [
      15,
      15,
      12,
      6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(input,-3),27),15))"
  },
  {
    "input": "input : list = [-2, 3, -5, 1]\noutput : list = [-6, -12, -4, -9]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(add_n([-2, 3, -5, 1],-2))),5))",
    "io_inp": [
      -2,
      3,
      -5,
      1
    ],
    "io_out": [
      -6,
      -12,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(add_n(input,-2))),5))"
  },
  {
    "input": "input : list = [-4, 1, -1, -1]\noutput : list = [-4]",
    "output": "generated_output : list = take(sort_asc(drop(sort_des(mul_n([-4, 1, -1, -1],-4)),3)),34)",
    "io_inp": [
      -4,
      1,
      -1,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(sort_des(mul_n(input,-4)),3)),34)"
  },
  {
    "input": "input : list = [1, -3, 5, 3]\noutput : list = [-1, -3, -5, -9]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_des([1, -3, 5, 3]),3),5),5),-3)",
    "io_inp": [
      1,
      -3,
      5,
      3
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_des(input),3),5),5),-3)"
  },
  {
    "input": "input : list = [3, 0, -3, 1, -3]\noutput : list = [1, 0, -3, -3]",
    "output": "generated_output : list = take(sort_des(drop([3, 0, -3, 1, -3],1)),11)",
    "io_inp": [
      3,
      0,
      -3,
      1,
      -3
    ],
    "io_out": [
      1,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,1)),11)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(drop(mul_n([3, -1],2),1))))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(drop(mul_n(input,2),1))))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, 5]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([0, -5])),-1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [2, -1, -4]",
    "output": "generated_output : list = sort_des([2, -1, -4])",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [29, -35]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(mul_n([4, -4],-4),-2),3)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      29,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(mul_n(input,-4),-2),3)))"
  },
  {
    "input": "input : list = [5, 0, -4, 1]\noutput : list = [1, -4, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, -4, 1])",
    "io_inp": [
      5,
      0,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [7, 10]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse([5, 2]),-1),-4),5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse(input),-1),-4),5))"
  },
  {
    "input": "input : list = [-2, -5, 2, -4]\noutput : list = [8, 0, -4, -6]",
    "output": "generated_output : list = take(mul_n(sub_n(take(sort_des([-2, -5, 2, -4]),21),-2),2),33)",
    "io_inp": [
      -2,
      -5,
      2,
      -4
    ],
    "io_out": [
      8,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(sort_des(input),21),-2),2),33)"
  },
  {
    "input": "input : list = [-1, -2, 2, -5, 0]\noutput : list = [-2, -3, 1, -6, -1]",
    "output": "generated_output : list = add_n([-1, -2, 2, -5, 0],-1)",
    "io_inp": [
      -1,
      -2,
      2,
      -5,
      0
    ],
    "io_out": [
      -2,
      -3,
      1,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 1, 5, -4, 1, -4]\noutput : list = [1, -3, -3, -5, -8, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([-1, 1, 5, -4, 1, -4]),-4))",
    "io_inp": [
      -1,
      1,
      5,
      -4,
      1,
      -4
    ],
    "io_out": [
      1,
      -3,
      -3,
      -5,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [0, -1, -2, 1, 4, -3]\noutput : list = [-3, -4, -5, -2, 1, -6]",
    "output": "generated_output : list = add_n([0, -1, -2, 1, 4, -3],-3)",
    "io_inp": [
      0,
      -1,
      -2,
      1,
      4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -3, -3, -3]\noutput : list = [-3, -3, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, -3, -3])",
    "io_inp": [
      -5,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(drop(sub_n([3, 5, 0],3),1),2)))",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(drop(sub_n(input,3),1),2)))"
  },
  {
    "input": "input : list = [-5, 0, 3, 3, 4, -5]\noutput : list = [-4, -4, 1, 4, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des(reverse([-5, 0, 3, 3, 4, -5])))),1)",
    "io_inp": [
      -5,
      0,
      3,
      3,
      4,
      -5
    ],
    "io_out": [
      -4,
      -4,
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(reverse(input)))),1)"
  },
  {
    "input": "input : list = [-1, -3, 1, 2, 2, 5]\noutput : list = [6, 3, 3, 2, -2, 0]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(reverse([-1, -3, 1, 2, 2, 5]),-4),23),2),-5)",
    "io_inp": [
      -1,
      -3,
      1,
      2,
      2,
      5
    ],
    "io_out": [
      6,
      3,
      3,
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(reverse(input),-4),23),2),-5)"
  },
  {
    "input": "input : list = [1, 4, 0, -4, -2, -5]\noutput : list = [7, 16]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(take([1, 4, 0, -4, -2, -5],2)),33),3),4)",
    "io_inp": [
      1,
      4,
      0,
      -4,
      -2,
      -5
    ],
    "io_out": [
      7,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(take(input,2)),33),3),4)"
  },
  {
    "input": "input : list = [5, -2, 5, -1, 1, -5]\noutput : list = [-5, 1, -1, 5, -2, 5]",
    "output": "generated_output : list = reverse([5, -2, 5, -1, 1, -5])",
    "io_inp": [
      5,
      -2,
      5,
      -1,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      -1,
      5,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -3, 4, 2, 3, -5]\noutput : list = [8, 2, 9, 7, 8, 0]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(sub_n([3, -3, 4, 2, 3, -5],-2),-1),1),-2),8)",
    "io_inp": [
      3,
      -3,
      4,
      2,
      3,
      -5
    ],
    "io_out": [
      8,
      2,
      9,
      7,
      8,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(sub_n(input,-2),-1),1),-2),8)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [2, 6]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(drop([-1, -3, -1],1),9))),-2)",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(drop(input,1),9))),-2)"
  },
  {
    "input": "input : list = [-1, -5, 5, 2, -4, -3]\noutput : list = [-10, -9, -8, -6, -3, 0]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(sub_n([-1, -5, 5, 2, -4, -3],5),10))),45)",
    "io_inp": [
      -1,
      -5,
      5,
      2,
      -4,
      -3
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(sub_n(input,5),10))),45)"
  },
  {
    "input": "input : list = [1, -5, 4, 3]\noutput : list = [-6, 6, 10, 12]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(mul_n([1, -5, 4, 3],-1),-1)),2),-4)",
    "io_inp": [
      1,
      -5,
      4,
      3
    ],
    "io_out": [
      -6,
      6,
      10,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(mul_n(input,-1),-1)),2),-4)"
  },
  {
    "input": "input : list = [2, -5, 2, 4, -3]\noutput : list = [8, -6]",
    "output": "generated_output : list = add_n(mul_n(take([2, -5, 2, 4, -3],2),2),4)",
    "io_inp": [
      2,
      -5,
      2,
      4,
      -3
    ],
    "io_out": [
      8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,2),2),4)"
  },
  {
    "input": "input : list = [2, 4, -5, -2, -3]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = take(take(sort_asc(reverse(drop([2, 4, -5, -2, -3],2))),10),17)",
    "io_inp": [
      2,
      4,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(drop(input,2))),10),17)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -1, -1],1)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 2, -4, 3, -5, 2]\noutput : list = [20, 0, 24, -4, 28, 0]",
    "output": "generated_output : list = mul_n(add_n([-3, 2, -4, 3, -5, 2],-2),-4)",
    "io_inp": [
      -3,
      2,
      -4,
      3,
      -5,
      2
    ],
    "io_out": [
      20,
      0,
      24,
      -4,
      28,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-4)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-4, -4],-1))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(take([-2, -1, 3],1),-1)",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [-4, 1, -2, -2, 1, 0]\noutput : list = [-4, -2, -2, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n([-4, 1, -2, -2, 1, 0],4)),4)))",
    "io_inp": [
      -4,
      1,
      -2,
      -2,
      1,
      0
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n(input,4)),4)))"
  },
  {
    "input": "input : list = [2, 0, 5, 0, -3]\noutput : list = [5, 2, 0, 0, -3]",
    "output": "generated_output : list = sort_des(take(take(reverse([2, 0, 5, 0, -3]),6),27))",
    "io_inp": [
      2,
      0,
      5,
      0,
      -3
    ],
    "io_out": [
      5,
      2,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(input),6),27))"
  },
  {
    "input": "input : list = [0, 3, -2, 2, -4]\noutput : list = [-13, 17, -3, 22, 7]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n([0, 3, -2, 2, -4],-5),4)),-1),-3)",
    "io_inp": [
      0,
      3,
      -2,
      2,
      -4
    ],
    "io_out": [
      -13,
      17,
      -3,
      22,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n(input,-5),4)),-1),-3)"
  },
  {
    "input": "input : list = [0, 1, 5, 4, 1, 4]\noutput : list = [14, 17, 29, 26, 17, 26]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n([0, 1, 5, 4, 1, 4],4)),3)),-2)",
    "io_inp": [
      0,
      1,
      5,
      4,
      1,
      4
    ],
    "io_out": [
      14,
      17,
      29,
      26,
      17,
      26
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n(input,4)),3)),-2)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-6, 1]",
    "output": "generated_output : list = reverse(take(add_n(add_n(sub_n([4, -3],2),3),-4),16))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(sub_n(input,2),3),-4),16))"
  },
  {
    "input": "input : list = [4, -2, 4, -4, -5, 4]\noutput : list = [3, 3, 3, -3, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_des(reverse(add_n([4, -2, 4, -4, -5, 4],-2))),1))",
    "io_inp": [
      4,
      -2,
      4,
      -4,
      -5,
      4
    ],
    "io_out": [
      3,
      3,
      3,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(reverse(add_n(input,-2))),1))"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [28, 36, 12]",
    "output": "generated_output : list = mul_n(take(mul_n(take(add_n([-3, -5, 1],-4),12),2),10),-2)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      28,
      36,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(add_n(input,-4),12),2),10),-2)"
  },
  {
    "input": "input : list = [4, 4, -2, 1, 5, 0]\noutput : list = [-2, 0, 1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([4, 4, -2, 1, 5, 0]))",
    "io_inp": [
      4,
      4,
      -2,
      1,
      5,
      0
    ],
    "io_out": [
      -2,
      0,
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [89, 101]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(reverse([3, 2]),5),3),4),5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      89,
      101
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(reverse(input),5),3),4),5)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [5, 4]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(sort_des([1, 0])),-5),1))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(sort_des(input)),-5),1))"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(take([-3, -2, -2],1)))),5)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(take(input,1)))),5)"
  },
  {
    "input": "input : list = [4, -3, 5, 2, 4, -5]\noutput : list = [-1, -8, 0, -3, -1, -10]",
    "output": "generated_output : list = take(take(sub_n([4, -3, 5, 2, 4, -5],5),9),20)",
    "io_inp": [
      4,
      -3,
      5,
      2,
      4,
      -5
    ],
    "io_out": [
      -1,
      -8,
      0,
      -3,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,5),9),20)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(drop(mul_n(sub_n(sort_asc([1, 1, -2]),-1),-1),1),-2)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sub_n(sort_asc(input),-1),-1),1),-2)"
  },
  {
    "input": "input : list = [2, -1, -5, -1]\noutput : list = [0, -3, -7, -3]",
    "output": "generated_output : list = sub_n([2, -1, -5, -1],2)",
    "io_inp": [
      2,
      -1,
      -5,
      -1
    ],
    "io_out": [
      0,
      -3,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(sort_asc([0, 4]),13)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),13)"
  },
  {
    "input": "input : list = [1, -1, -4, 4, -5]\noutput : list = [4, 1, -1, -4, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(sort_asc([1, -1, -4, 4, -5]))),8))",
    "io_inp": [
      1,
      -1,
      -4,
      4,
      -5
    ],
    "io_out": [
      4,
      1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(sort_asc(input))),8))"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [4, 1, -4]",
    "output": "generated_output : list = take(add_n(take(reverse([-5, 0, 3]),9),1),17)",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(input),9),1),17)"
  },
  {
    "input": "input : list = [-3, 3, -4, 5]\noutput : list = [-1, 0, 6, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse([-3, 3, -4, 5]),-2)),-1)",
    "io_inp": [
      -3,
      3,
      -4,
      5
    ],
    "io_out": [
      -1,
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(input),-2)),-1)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, -1, -1]\noutput : list = [0, -1, -1, -1, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -4, 0, -1, -1, -1])",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      -1,
      -1
    ],
    "io_out": [
      0,
      -1,
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, 0, -3]\noutput : list = [-13]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(take([5, 4, 0, -3],1),-3),3)),-5)",
    "io_inp": [
      5,
      4,
      0,
      -3
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(take(input,1),-3),3)),-5)"
  },
  {
    "input": "input : list = [-1, 1, -3, -3]\noutput : list = [2, 2, 6, 4]",
    "output": "generated_output : list = sub_n(add_n(reverse([-1, 1, -3, -3]),2),-3)",
    "io_inp": [
      -1,
      1,
      -3,
      -3
    ],
    "io_out": [
      2,
      2,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),2),-3)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [12, 20]",
    "output": "generated_output : list = mul_n([-3, -5],-4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 1, -3, -4]\noutput : list = [-4, -3, -3, 1]",
    "output": "generated_output : list = sort_asc([-3, 1, -3, -4])",
    "io_inp": [
      -3,
      1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, -5, 2, 2]\noutput : list = [5, 9, 12, 12, 14]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(sub_n([4, -1, -5, 2, 2],-5),21),-5)))",
    "io_inp": [
      4,
      -1,
      -5,
      2,
      2
    ],
    "io_out": [
      5,
      9,
      12,
      12,
      14
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(sub_n(input,-5),21),-5)))"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [12, 7, 5]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(add_n([-2, 3, -4],4)),-5),27))",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      12,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(add_n(input,4)),-5),27))"
  },
  {
    "input": "input : list = [-1, -2, -2, 2]\noutput : list = [0, -1, -1, 3]",
    "output": "generated_output : list = add_n([-1, -2, -2, 2],1)",
    "io_inp": [
      -1,
      -2,
      -2,
      2
    ],
    "io_out": [
      0,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-13, -1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n([-4, -1],2)),4)),5)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -13,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n(input,2)),4)),5)"
  },
  {
    "input": "input : list = [5, -5, 4, -1]\noutput : list = [-8, 0, 10, 12]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sub_n([5, -5, 4, -1],-1),2),26)),31)",
    "io_inp": [
      5,
      -5,
      4,
      -1
    ],
    "io_out": [
      -8,
      0,
      10,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sub_n(input,-1),2),26)),31)"
  },
  {
    "input": "input : list = [-1, -5, -4, -4, -2, 4]\noutput : list = [3, 15, 12, 12, 6, -12]",
    "output": "generated_output : list = mul_n(take(reverse(take(reverse([-1, -5, -4, -4, -2, 4]),6)),8),-3)",
    "io_inp": [
      -1,
      -5,
      -4,
      -4,
      -2,
      4
    ],
    "io_out": [
      3,
      15,
      12,
      12,
      6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(reverse(input),6)),8),-3)"
  },
  {
    "input": "input : list = [-1, -2, 4, 3, 3, -5]\noutput : list = [10, 5, 5, -15, -20, -35]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(add_n([-1, -2, 4, 3, 3, -5],-2),5))))",
    "io_inp": [
      -1,
      -2,
      4,
      3,
      3,
      -5
    ],
    "io_out": [
      10,
      5,
      5,
      -15,
      -20,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(add_n(input,-2),5))))"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [-6, -3, -4]",
    "output": "generated_output : list = sub_n([-1, 2, 1],5)",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      -6,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, -5, -3, 1, -5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(drop([3, -5, -3, 1, -5],3)))),-2)",
    "io_inp": [
      3,
      -5,
      -3,
      1,
      -5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(drop(input,3)))),-2)"
  },
  {
    "input": "input : list = [-1, -3, -3, -2]\noutput : list = [-1, -2, -3, -3]",
    "output": "generated_output : list = sort_des([-1, -3, -3, -2])",
    "io_inp": [
      -1,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, 4, -2]\noutput : list = [8, 2, 1, -1]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(sub_n([-5, -3, 4, -2],3)),-4),-1),2)",
    "io_inp": [
      -5,
      -3,
      4,
      -2
    ],
    "io_out": [
      8,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(sub_n(input,3)),-4),-1),2)"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [-4, 3, -4]",
    "output": "generated_output : list = reverse([-4, 3, -4])",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3, -3, 3]\noutput : list = [-18, -10, -10, 14]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(sort_des([5, 3, -3, 3]),-4),-3),-4),1)",
    "io_inp": [
      5,
      3,
      -3,
      3
    ],
    "io_out": [
      -18,
      -10,
      -10,
      14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(sort_des(input),-4),-3),-4),1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-4, 2]",
    "output": "generated_output : list = add_n([-5, 1],1)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 0, 2, 4]\noutput : list = [8, 5, 7, 9]",
    "output": "generated_output : list = mul_n(sub_n([3, 0, 2, 4],-5),1)",
    "io_inp": [
      3,
      0,
      2,
      4
    ],
    "io_out": [
      8,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),1)"
  },
  {
    "input": "input : list = [3, -1, 4, 3, -3]\noutput : list = [8, 10, 14, 14, 15]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(sub_n([3, -1, 4, 3, -3],-5),19),1)),-5)",
    "io_inp": [
      3,
      -1,
      4,
      3,
      -3
    ],
    "io_out": [
      8,
      10,
      14,
      14,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(sub_n(input,-5),19),1)),-5)"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(take([0, 2, 1],1),4),-3),3),-4)",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(take(input,1),4),-3),3),-4)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [2, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([-2, 3])),-1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(take([-5, 4, -3],1),-3),2)),-3)",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(take(input,1),-3),2)),-3)"
  },
  {
    "input": "input : list = [-4, -3, -5, -3, -4]\noutput : list = [-1, 0, -2, 0, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(sub_n([-4, -3, -5, -3, -4],1),10)),-4))",
    "io_inp": [
      -4,
      -3,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -1,
      0,
      -2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(sub_n(input,1),10)),-4))"
  },
  {
    "input": "input : list = [-1, -5, -1, 0, -5, -3]\noutput : list = [4, 3, 3, 1, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([-1, -5, -1, 0, -5, -3]),4))",
    "io_inp": [
      -1,
      -5,
      -1,
      0,
      -5,
      -3
    ],
    "io_out": [
      4,
      3,
      3,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [1, -1, -2, 3, -5, 4]\noutput : list = [4, -5, 3, -2, -1, 1]",
    "output": "generated_output : list = reverse([1, -1, -2, 3, -5, 4])",
    "io_inp": [
      1,
      -1,
      -2,
      3,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2, -2, -2, 0, 4]\noutput : list = [12, 6, 6, 0, -6, -12]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([-4, 2, -2, -2, 0, 4])),-3)",
    "io_inp": [
      -4,
      2,
      -2,
      -2,
      0,
      4
    ],
    "io_out": [
      12,
      6,
      6,
      0,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-4, 2, 4, -1, -2]\noutput : list = [-2, 4, 6, 1, 0]",
    "output": "generated_output : list = take(sub_n([-4, 2, 4, -1, -2],-2),19)",
    "io_inp": [
      -4,
      2,
      4,
      -1,
      -2
    ],
    "io_out": [
      -2,
      4,
      6,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-2),19)"
  },
  {
    "input": "input : list = [-3, -4, 3, -3, -3, 4]\noutput : list = [-4, -3, -3, -3, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc([-3, -4, 3, -3, -3, 4])),19))",
    "io_inp": [
      -3,
      -4,
      3,
      -3,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(input)),19))"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [1, 13, 21]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(sub_n([-5, -1, 5],4),-2),4)),-1)",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      1,
      13,
      21
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(sub_n(input,4),-2),4)),-1)"
  },
  {
    "input": "input : list = [-1, -4, -3, -1, -1]\noutput : list = [4, 16, 12, 4, 4]",
    "output": "generated_output : list = mul_n([-1, -4, -3, -1, -1],-4)",
    "io_inp": [
      -1,
      -4,
      -3,
      -1,
      -1
    ],
    "io_out": [
      4,
      16,
      12,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -2, -2, 5, -2, -4]\noutput : list = [-4, -2, 5, -2, -2, -2]",
    "output": "generated_output : list = reverse([-2, -2, -2, 5, -2, -4])",
    "io_inp": [
      -2,
      -2,
      -2,
      5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      5,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, -3, -4, 5]\noutput : list = [-1, 9, 1, 0, 9]",
    "output": "generated_output : list = take(sub_n([-5, 5, -3, -4, 5],-4),20)",
    "io_inp": [
      -5,
      5,
      -3,
      -4,
      5
    ],
    "io_out": [
      -1,
      9,
      1,
      0,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),20)"
  },
  {
    "input": "input : list = [-3, 3, 2, -3, 4]\noutput : list = [8, 7, 6, 1, 1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(reverse([-3, 3, 2, -3, 4]),-4))))",
    "io_inp": [
      -3,
      3,
      2,
      -3,
      4
    ],
    "io_out": [
      8,
      7,
      6,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(reverse(input),-4))))"
  },
  {
    "input": "input : list = [-2, 1, -3, -1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = drop([-2, 1, -3, -1, -3],3)",
    "io_inp": [
      -2,
      1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, -4, 5]\noutput : list = [5, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(add_n([-5, -4, 5],1),-1))))",
    "io_inp": [
      -5,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(add_n(input,1),-1))))"
  },
  {
    "input": "input : list = [-1, -3, 3, 3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(take([-1, -3, 3, 3],1))),34),3)",
    "io_inp": [
      -1,
      -3,
      3,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(take(input,1))),34),3)"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(take([-4, -2, 5],1),-2)",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [5, -2, 5, -1, -3, 3]\noutput : list = [5, 5, 3, -1, -2, -3]",
    "output": "generated_output : list = sort_des([5, -2, 5, -1, -3, 3])",
    "io_inp": [
      5,
      -2,
      5,
      -1,
      -3,
      3
    ],
    "io_out": [
      5,
      5,
      3,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, 5, -3, 3]\noutput : list = [20, 20, -10, 14, -4]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(mul_n([-5, -5, 5, -3, 3],-3),14),5),-3),-3)",
    "io_inp": [
      -5,
      -5,
      5,
      -3,
      3
    ],
    "io_out": [
      20,
      20,
      -10,
      14,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(mul_n(input,-3),14),5),-3),-3)"
  },
  {
    "input": "input : list = [-5, -1, -4, -5, 5, -3]\noutput : list = [0, -32]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(drop([-5, -1, -4, -5, 5, -3],4),5),32)),4)",
    "io_inp": [
      -5,
      -1,
      -4,
      -5,
      5,
      -3
    ],
    "io_out": [
      0,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(drop(input,4),5),32)),4)"
  },
  {
    "input": "input : list = [4, 3, -1, 0, -1, -4]\noutput : list = [-9, -6, -6, -5, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([4, 3, -1, 0, -1, -4],-5)))",
    "io_inp": [
      4,
      3,
      -1,
      0,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,-5)))"
  },
  {
    "input": "input : list = [4, 3, -1, 1, -1]\noutput : list = [40]",
    "output": "generated_output : list = mul_n(drop(reverse(sort_asc(mul_n([4, 3, -1, 1, -1],-5))),4),-2)",
    "io_inp": [
      4,
      3,
      -1,
      1,
      -1
    ],
    "io_out": [
      40
    ],
    "output_masked": "generated_output : list = mul_n(drop(reverse(sort_asc(mul_n(input,-5))),4),-2)"
  },
  {
    "input": "input : list = [-5, 2, 0, -4]\noutput : list = [-15, 6, 0, -12]",
    "output": "generated_output : list = mul_n([-5, 2, 0, -4],3)",
    "io_inp": [
      -5,
      2,
      0,
      -4
    ],
    "io_out": [
      -15,
      6,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 1, -2, -3]\noutput : list = [1, 2, 5, 0]",
    "output": "generated_output : list = reverse(sub_n([-4, 1, -2, -3],-4))",
    "io_inp": [
      -4,
      1,
      -2,
      -3
    ],
    "io_out": [
      1,
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [4, 2, -5, 5, 1, 3]\noutput : list = [75, 60, 45]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(sort_des([4, 2, -5, 5, 1, 3]),3),3),5))",
    "io_inp": [
      4,
      2,
      -5,
      5,
      1,
      3
    ],
    "io_out": [
      75,
      60,
      45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(sort_des(input),3),3),5))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -5]))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 3, 4, 2, -5, 3]\noutput : list = [-2, -3, -3, -4, -9, -11]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(add_n([-3, 3, 4, 2, -5, 3],-4)),10)),2)",
    "io_inp": [
      -3,
      3,
      4,
      2,
      -5,
      3
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -4,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(add_n(input,-4)),10)),2)"
  },
  {
    "input": "input : list = [-5, 4, 4, 3, 0]\noutput : list = [-20, -20, -15, 0, 25]",
    "output": "generated_output : list = reverse(sort_des(take(take(mul_n([-5, 4, 4, 3, 0],-5),11),14)))",
    "io_inp": [
      -5,
      4,
      4,
      3,
      0
    ],
    "io_out": [
      -20,
      -20,
      -15,
      0,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(mul_n(input,-5),11),14)))"
  },
  {
    "input": "input : list = [-5, -3, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(drop([-5, -3, -1, 1],2))",
    "io_inp": [
      -5,
      -3,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([-4, 4])",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des([-2, -4, -4])))",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_asc([0, 4])))),1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [-72]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(take([-3, -1, 5],1)),-5),3),-4)",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      -72
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(take(input,1)),-5),3),-4)"
  },
  {
    "input": "input : list = [5, -5, 1, 3, -2]\noutput : list = [2, -8, -2, 0, -5]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(reverse([5, -5, 1, 3, -2]),-2),-3),-2))",
    "io_inp": [
      5,
      -5,
      1,
      3,
      -2
    ],
    "io_out": [
      2,
      -8,
      -2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(reverse(input),-2),-3),-2))"
  },
  {
    "input": "input : list = [-3, 5, 3, 3, 1]\noutput : list = [-3, 1, 3, 3, 5]",
    "output": "generated_output : list = reverse(sort_des([-3, 5, 3, 3, 1]))",
    "io_inp": [
      -3,
      5,
      3,
      3,
      1
    ],
    "io_out": [
      -3,
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -1, -1, -4, 2, 3]\noutput : list = [10, 9, 8, 5, 5, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(sort_asc([4, -1, -1, -4, 2, 3]),-4),-1)),-3)",
    "io_inp": [
      4,
      -1,
      -1,
      -4,
      2,
      3
    ],
    "io_out": [
      10,
      9,
      8,
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(sort_asc(input),-4),-1)),-3)"
  },
  {
    "input": "input : list = [4, 1, -2, 2, -3, -3]\noutput : list = [-30, -20, -15, 0, 5, 5]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n([4, 1, -2, 2, -3, -3],2),-4)),-5)",
    "io_inp": [
      4,
      1,
      -2,
      2,
      -3,
      -3
    ],
    "io_out": [
      -30,
      -20,
      -15,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(input,2),-4)),-5)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [21, 27, 27]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc(reverse([5, 5, 3])),4),3),18)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      21,
      27,
      27
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(reverse(input)),4),3),18)"
  },
  {
    "input": "input : list = [0, 2, -3, -4]\noutput : list = [2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(drop([0, 2, -3, -4],1)))))",
    "io_inp": [
      0,
      2,
      -3,
      -4
    ],
    "io_out": [
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [4, -3, -3, -2, 4]\noutput : list = [-3, -3, -2, 4, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(reverse([4, -3, -3, -2, 4])))))",
    "io_inp": [
      4,
      -3,
      -3,
      -2,
      4
    ],
    "io_out": [
      -3,
      -3,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [4, 1, 5, 3, 2]\noutput : list = [20, 16, 12, 8, 4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(mul_n([4, 1, 5, 3, 2],4)))))",
    "io_inp": [
      4,
      1,
      5,
      3,
      2
    ],
    "io_out": [
      20,
      16,
      12,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 24]",
    "output": "generated_output : list = sub_n(mul_n(take(sub_n(mul_n([-1, 4],5),1),14),1),-5)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sub_n(mul_n(input,5),1),14),1),-5)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([0, 4],4)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,4)))"
  },
  {
    "input": "input : list = [-4, -1, 1, -3, 4, 1]\noutput : list = [7, 4, 4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(reverse([-4, -1, 1, -3, 4, 1]),-5),2),4))",
    "io_inp": [
      -4,
      -1,
      1,
      -3,
      4,
      1
    ],
    "io_out": [
      7,
      4,
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(reverse(input),-5),2),4))"
  },
  {
    "input": "input : list = [4, 2, 5, 0, 1]\noutput : list = [5, 6, 7, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse([4, 2, 5, 0, 1]),11),5)))",
    "io_inp": [
      4,
      2,
      5,
      0,
      1
    ],
    "io_out": [
      5,
      6,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse(input),11),5)))"
  },
  {
    "input": "input : list = [-3, 0, 0, -2]\noutput : list = [-2, 0, 0, -3]",
    "output": "generated_output : list = reverse([-3, 0, 0, -2])",
    "io_inp": [
      -3,
      0,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, -4, 1]\noutput : list = [6, 4, 1, 0]",
    "output": "generated_output : list = take(sort_des(take(take(sub_n([-1, -5, -4, 1],-5),7),27)),6)",
    "io_inp": [
      -1,
      -5,
      -4,
      1
    ],
    "io_out": [
      6,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(sub_n(input,-5),7),27)),6)"
  },
  {
    "input": "input : list = [4, 3, 2, 1, -5]\noutput : list = [10, -2, -4, -6, -8]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(sort_des([4, 3, 2, 1, -5])),-2)),23)",
    "io_inp": [
      4,
      3,
      2,
      1,
      -5
    ],
    "io_out": [
      10,
      -2,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(sort_des(input)),-2)),23)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = mul_n([3, -2],1)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [12, -15, 9]",
    "output": "generated_output : list = take(add_n(take(mul_n(sub_n([4, -5, 3],1),3),23),3),3)",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      12,
      -15,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sub_n(input,1),3),23),3),3)"
  },
  {
    "input": "input : list = [-1, -1, 2, 3]\noutput : list = [-1, -1, 2, 3]",
    "output": "generated_output : list = take(take(sort_asc([-1, -1, 2, 3]),5),17)",
    "io_inp": [
      -1,
      -1,
      2,
      3
    ],
    "io_out": [
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),5),17)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [0, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(reverse([3, 4]),-4),1),-3),2)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(reverse(input),-4),1),-3),2)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-7, -7, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(sort_des([-5, -5, 0]))),2))",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -7,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -1, -4],1)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 3, 3, -2, 0, 0]\noutput : list = [-6, -4, -4, -1, -1, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des([4, 3, 3, -2, 0, 0])),4)",
    "io_inp": [
      4,
      3,
      3,
      -2,
      0,
      0
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),4)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([-5, 2])),-4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),-4)"
  },
  {
    "input": "input : list = [2, 5, 1, 0, 0]\noutput : list = [2, 2, 3]",
    "output": "generated_output : list = reverse(drop(sort_des(sort_des(add_n([2, 5, 1, 0, 0],2))),2))",
    "io_inp": [
      2,
      5,
      1,
      0,
      0
    ],
    "io_out": [
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(sort_des(add_n(input,2))),2))"
  },
  {
    "input": "input : list = [4, 0, -3, 3, -1]\noutput : list = [-4, -5, -8, -9, -11]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n(sort_asc([4, 0, -3, 3, -1]),-3),-5)))",
    "io_inp": [
      4,
      0,
      -3,
      3,
      -1
    ],
    "io_out": [
      -4,
      -5,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(sort_asc(input),-3),-5)))"
  },
  {
    "input": "input : list = [2, 3, 4, 2, 0]\noutput : list = [17, 13, 9, 1]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(drop([2, 3, 4, 2, 0],1))),4),1)",
    "io_inp": [
      2,
      3,
      4,
      2,
      0
    ],
    "io_out": [
      17,
      13,
      9,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(drop(input,1))),4),1)"
  },
  {
    "input": "input : list = [-1, 5, -4, 2]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(mul_n(take([-1, 5, -4, 2],1),5),1)",
    "io_inp": [
      -1,
      5,
      -4,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),5),1)"
  },
  {
    "input": "input : list = [-2, -2, -2, -5]\noutput : list = [-2]",
    "output": "generated_output : list = drop(sort_asc(sort_asc(sort_des(take([-2, -2, -2, -5],2)))),1)",
    "io_inp": [
      -2,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_asc(sort_des(take(input,2)))),1)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([-4, 2])))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [7]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(take([0, -5, 0],1),-4),-1)),2)",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(take(input,1),-4),-1)),2)"
  },
  {
    "input": "input : list = [1, 4, 3, 5, -3]\noutput : list = [9, 12, 11, 13, 5]",
    "output": "generated_output : list = add_n(take(sub_n([1, 4, 3, 5, -3],-5),7),3)",
    "io_inp": [
      1,
      4,
      3,
      5,
      -3
    ],
    "io_out": [
      9,
      12,
      11,
      13,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-5),7),3)"
  },
  {
    "input": "input : list = [-5, -2, 1, 0, -2]\noutput : list = [-1, 2, 1, -1]",
    "output": "generated_output : list = reverse(take(add_n(reverse(drop([-5, -2, 1, 0, -2],1)),1),34))",
    "io_inp": [
      -5,
      -2,
      1,
      0,
      -2
    ],
    "io_out": [
      -1,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(drop(input,1)),1),34))"
  },
  {
    "input": "input : list = [4, 2, -3, -2, 0, -4]\noutput : list = [20, 15, 10, 0, -10, -20]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(mul_n([4, 2, -3, -2, 0, -4],-5)),13)),16)",
    "io_inp": [
      4,
      2,
      -3,
      -2,
      0,
      -4
    ],
    "io_out": [
      20,
      15,
      10,
      0,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(mul_n(input,-5)),13)),16)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 2, -5],1)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -5, -2, 3, -2]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(drop([0, -5, -2, 3, -2],2),-1))),26)",
    "io_inp": [
      0,
      -5,
      -2,
      3,
      -2
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(drop(input,2),-1))),26)"
  },
  {
    "input": "input : list = [5, 2, -2, 5]\noutput : list = [16, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(drop([5, 2, -2, 5],2),3),1)))",
    "io_inp": [
      5,
      2,
      -2,
      5
    ],
    "io_out": [
      16,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(drop(input,2),3),1)))"
  },
  {
    "input": "input : list = [3, 3, 5, 1]\noutput : list = [-8, -4, -6, -6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(reverse([3, 3, 5, 1]))),5),4)",
    "io_inp": [
      3,
      3,
      5,
      1
    ],
    "io_out": [
      -8,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(reverse(input))),5),4)"
  },
  {
    "input": "input : list = [0, 2, -2, -5]\noutput : list = [-5, -2, 0, 2]",
    "output": "generated_output : list = take(sort_asc(reverse([0, 2, -2, -5])),5)",
    "io_inp": [
      0,
      2,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(input)),5)"
  },
  {
    "input": "input : list = [4, 3, -5, -5, 2]\noutput : list = [0, 0, 7, 8, 9]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(sort_des([4, 3, -5, -5, 2]),-5)),44))",
    "io_inp": [
      4,
      3,
      -5,
      -5,
      2
    ],
    "io_out": [
      0,
      0,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(sort_des(input),-5)),44))"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [0, 5, 5]",
    "output": "generated_output : list = sub_n(take(take(take(sort_asc([2, -3, 2]),6),13),35),-3)",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(sort_asc(input),6),13),35),-3)"
  },
  {
    "input": "input : list = [-5, -5, -4, -3]\noutput : list = [-3, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -5, -4, -3])",
    "io_inp": [
      -5,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, 3, -3, -1, 3]\noutput : list = [5, 1, -1, 5, 0, 0]",
    "output": "generated_output : list = sub_n(reverse([-2, -2, 3, -3, -1, 3]),-2)",
    "io_inp": [
      -2,
      -2,
      3,
      -3,
      -1,
      3
    ],
    "io_out": [
      5,
      1,
      -1,
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(sub_n([1, -1],-3))),-2),-1)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(sub_n(input,-3))),-2),-1)"
  },
  {
    "input": "input : list = [2, -3, 1, 1]\noutput : list = [4, 8, 8]",
    "output": "generated_output : list = sub_n(sub_n(drop([2, -3, 1, 1],1),-5),-2)",
    "io_inp": [
      2,
      -3,
      1,
      1
    ],
    "io_out": [
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),-5),-2)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(add_n(sort_des(take(reverse([0, -5]),5)),1),24)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(reverse(input),5)),1),24)"
  },
  {
    "input": "input : list = [-3, 3, 3, -1, -3]\noutput : list = [3, 3, -1, -3, -3]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n(sort_des([-3, 3, 3, -1, -3]),-5),25)),-5)",
    "io_inp": [
      -3,
      3,
      3,
      -1,
      -3
    ],
    "io_out": [
      3,
      3,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(sort_des(input),-5),25)),-5)"
  },
  {
    "input": "input : list = [3, -5, 0, -3, 0, 0]\noutput : list = [8, 0, 5, 2, 5, 5]",
    "output": "generated_output : list = sub_n([3, -5, 0, -3, 0, 0],-5)",
    "io_inp": [
      3,
      -5,
      0,
      -3,
      0,
      0
    ],
    "io_out": [
      8,
      0,
      5,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, 3, -5, 4, 5]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(add_n(sub_n(add_n(take([3, 3, -5, 4, 5],1),4),-5),-3),4)",
    "io_inp": [
      3,
      3,
      -5,
      4,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(add_n(take(input,1),4),-5),-3),4)"
  },
  {
    "input": "input : list = [1, 1, -5, 2, 1]\noutput : list = [-2]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(reverse([1, 1, -5, 2, 1]))),4),1)",
    "io_inp": [
      1,
      1,
      -5,
      2,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(reverse(input))),4),1)"
  },
  {
    "input": "input : list = [5, 0, 2, -2, 3, 4]\noutput : list = [5, 0, 2, -2, 3, 4]",
    "output": "generated_output : list = reverse(reverse([5, 0, 2, -2, 3, 4]))",
    "io_inp": [
      5,
      0,
      2,
      -2,
      3,
      4
    ],
    "io_out": [
      5,
      0,
      2,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, -4, 5, 0, -1]\noutput : list = [8, 3, 2, 2, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(sort_asc([-1, -4, 5, 0, -1]),2)),5),4)",
    "io_inp": [
      -1,
      -4,
      5,
      0,
      -1
    ],
    "io_out": [
      8,
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(sort_asc(input),2)),5),4)"
  },
  {
    "input": "input : list = [4, 1, 5, -2, 4]\noutput : list = [5, -10, -25, -25, -30]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(mul_n([4, 1, 5, -2, 4],-5),3),-2)))",
    "io_inp": [
      4,
      1,
      5,
      -2,
      4
    ],
    "io_out": [
      5,
      -10,
      -25,
      -25,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(mul_n(input,-5),3),-2)))"
  },
  {
    "input": "input : list = [2, -2, 1, -3]\noutput : list = [-3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc([2, -2, 1, -3])",
    "io_inp": [
      2,
      -2,
      1,
      -3
    ],
    "io_out": [
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2, 3, -2, -3, 4]\noutput : list = [-29, 6, -19, 6, 11, -24]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([5, -2, 3, -2, -3, 4],-5),1),4)",
    "io_inp": [
      5,
      -2,
      3,
      -2,
      -3,
      4
    ],
    "io_out": [
      -29,
      6,
      -19,
      6,
      11,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,-5),1),4)"
  },
  {
    "input": "input : list = [-1, -2, -4, -5, -1, -3]\noutput : list = [-4, -4, -5, -6, -7, -8]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(sub_n([-1, -2, -4, -5, -1, -3],3)))),37)",
    "io_inp": [
      -1,
      -2,
      -4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(sub_n(input,3)))),37)"
  },
  {
    "input": "input : list = [3, 2, 0, 0, -1, 3]\noutput : list = [-12, -10, -6, -6, -4, -12]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(sub_n([3, 2, 0, 0, -1, 3],-3),-2)),33))",
    "io_inp": [
      3,
      2,
      0,
      0,
      -1,
      3
    ],
    "io_out": [
      -12,
      -10,
      -6,
      -6,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(sub_n(input,-3),-2)),33))"
  },
  {
    "input": "input : list = [2, -2, -3, 3, 2]\noutput : list = [2, -2, -3, 3, 2]",
    "output": "generated_output : list = mul_n(reverse(reverse([2, -2, -3, 3, 2])),1)",
    "io_inp": [
      2,
      -2,
      -3,
      3,
      2
    ],
    "io_out": [
      2,
      -2,
      -3,
      3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(input)),1)"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(reverse(take([0, 1, -1],1)),-5)",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,1)),-5)"
  },
  {
    "input": "input : list = [4, 4, -4, 5, 1]\noutput : list = [4, 3, 0, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(drop([4, 4, -4, 5, 1],1),4))),-3)",
    "io_inp": [
      4,
      4,
      -4,
      5,
      1
    ],
    "io_out": [
      4,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(drop(input,1),4))),-3)"
  },
  {
    "input": "input : list = [-1, -2, -2, 1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(take([-1, -2, -2, 1],2)))),2)",
    "io_inp": [
      -1,
      -2,
      -2,
      1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(take(input,2)))),2)"
  },
  {
    "input": "input : list = [5, 0, -1, 2, -4]\noutput : list = [25]",
    "output": "generated_output : list = mul_n(sort_des(take([5, 0, -1, 2, -4],1)),5)",
    "io_inp": [
      5,
      0,
      -1,
      2,
      -4
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,1)),5)"
  },
  {
    "input": "input : list = [-1, -3, 5, -1, -3, 4]\noutput : list = [-10, -8, 2, 6]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(drop([-1, -3, 5, -1, -3, 4],2))),20),-2)",
    "io_inp": [
      -1,
      -3,
      5,
      -1,
      -3,
      4
    ],
    "io_out": [
      -10,
      -8,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(drop(input,2))),20),-2)"
  },
  {
    "input": "input : list = [-5, 5, 4, 0, -1]\noutput : list = [5, 4, 0, -1, -5]",
    "output": "generated_output : list = sort_des([-5, 5, 4, 0, -1])",
    "io_inp": [
      -5,
      5,
      4,
      0,
      -1
    ],
    "io_out": [
      5,
      4,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [2, -1, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(sort_asc([-5, 3, 0]),-1),2)),27)",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      2,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(sort_asc(input),-1),2)),27)"
  },
  {
    "input": "input : list = [-3, -1, 4]\noutput : list = [9, 4, 2]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(add_n([-3, -1, 4],-1),3)),-5),-2)",
    "io_inp": [
      -3,
      -1,
      4
    ],
    "io_out": [
      9,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(add_n(input,-1),3)),-5),-2)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sort_des([0, -1]),1),3),-4),41)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sort_des(input),1),3),-4),41)"
  },
  {
    "input": "input : list = [-5, -1, 5, 1]\noutput : list = [-5, -1, 1]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(drop([-5, -1, 5, 1],1)))),-1)",
    "io_inp": [
      -5,
      -1,
      5,
      1
    ],
    "io_out": [
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(drop(input,1)))),-1)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sort_asc([-2, 0, 1])))),-2)",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [2, 4, -4, -2, -5]\noutput : list = [-1, -7, -9, -10]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(drop([2, 4, -4, -2, -5],1))),-4),1)",
    "io_inp": [
      2,
      4,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(drop(input,1))),-4),1)"
  },
  {
    "input": "input : list = [-2, 4, -2, 1, 3, -3]\noutput : list = [-8, 16, -8, 4, 12, -12]",
    "output": "generated_output : list = reverse(take(mul_n(reverse([-2, 4, -2, 1, 3, -3]),4),27))",
    "io_inp": [
      -2,
      4,
      -2,
      1,
      3,
      -3
    ],
    "io_out": [
      -8,
      16,
      -8,
      4,
      12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(input),4),27))"
  },
  {
    "input": "input : list = [1, 1, 1, 0, 3, -5]\noutput : list = [0, 0, 0, 5, -10, 30]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(mul_n([1, 1, 1, 0, 3, -5],-5),-2),3),1),1)",
    "io_inp": [
      1,
      1,
      1,
      0,
      3,
      -5
    ],
    "io_out": [
      0,
      0,
      0,
      5,
      -10,
      30
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(mul_n(input,-5),-2),3),1),1)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [-6, -4, 0]",
    "output": "generated_output : list = take(take(sort_asc(reverse(mul_n([0, 2, 3],-2))),15),14)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(mul_n(input,-2))),15),14)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [0, 30]",
    "output": "generated_output : list = mul_n(sub_n(take(drop(mul_n([1, -1, 5],5),1),20),-5),1)",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      0,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(drop(mul_n(input,5),1),20),-5),1)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 7]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n([5, 4],-4)),3),-4)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(input,-4)),3),-4)"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = reverse(reverse([2, 1, 1]))",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, -1, 1, 4]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(drop(reverse([-5, -1, 1, 4]),2))))",
    "io_inp": [
      -5,
      -1,
      1,
      4
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(drop(reverse(input),2))))"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = reverse(sort_asc([1, 5, -1]))",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -2, 3, 5, 1]\noutput : list = [-12]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(mul_n([-4, -2, 3, 5, 1],3)))),1)",
    "io_inp": [
      -4,
      -2,
      3,
      5,
      1
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(mul_n(input,3)))),1)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [36]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(take([4, 2, -2],1)),3)),3)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(take(input,1)),3)),3)"
  },
  {
    "input": "input : list = [-1, -3, 3, 4, 3, 3]\noutput : list = [1, 0, 0, 0, -4, -6]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(reverse([-1, -3, 3, 4, 3, 3]),-3),1)),28)",
    "io_inp": [
      -1,
      -3,
      3,
      4,
      3,
      3
    ],
    "io_out": [
      1,
      0,
      0,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(reverse(input),-3),1)),28)"
  },
  {
    "input": "input : list = [5, -3, -1, 1]\noutput : list = [1, -1, -3, 5]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(mul_n([5, -3, -1, 1],1),-4)),4),32)",
    "io_inp": [
      5,
      -3,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(mul_n(input,1),-4)),4),32)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [35, 10]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n([0, 5],-2),12)),5)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      35,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(input,-2),12)),5)"
  },
  {
    "input": "input : list = [-3, 0, -2, 3]\noutput : list = [0, -6, -10, -12]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(sort_des([-3, 0, -2, 3]),19),-3)),2)",
    "io_inp": [
      -3,
      0,
      -2,
      3
    ],
    "io_out": [
      0,
      -6,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(sort_des(input),19),-3)),2)"
  },
  {
    "input": "input : list = [-2, 5, -2, 5]\noutput : list = [-5, 2, -5]",
    "output": "generated_output : list = mul_n(drop([-2, 5, -2, 5],1),-1)",
    "io_inp": [
      -2,
      5,
      -2,
      5
    ],
    "io_out": [
      -5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -3, 0],1)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(mul_n([1, -2, 2],5)),3),1))",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(mul_n(input,5)),3),1))"
  },
  {
    "input": "input : list = [-1, -4, 3, 2, 3]\noutput : list = [4, 1, 8, 7, 8]",
    "output": "generated_output : list = add_n([-1, -4, 3, 2, 3],5)",
    "io_inp": [
      -1,
      -4,
      3,
      2,
      3
    ],
    "io_out": [
      4,
      1,
      8,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take(reverse(reverse([-1, -2])),23)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),23)"
  },
  {
    "input": "input : list = [-2, 3, -2, 0]\noutput : list = [-1, 4, -1, 1]",
    "output": "generated_output : list = add_n([-2, 3, -2, 0],1)",
    "io_inp": [
      -2,
      3,
      -2,
      0
    ],
    "io_out": [
      -1,
      4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 1, 3, -2]\noutput : list = [12, -4, -28, -44]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(mul_n([-4, 1, 3, -2],-4),-4),-2)),-4)",
    "io_inp": [
      -4,
      1,
      3,
      -2
    ],
    "io_out": [
      12,
      -4,
      -28,
      -44
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(mul_n(input,-4),-4),-2)),-4)"
  },
  {
    "input": "input : list = [4, 3, 5, 3, -2, -2]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(mul_n(drop(mul_n(take([4, 3, 5, 3, -2, -2],3),-1),2),2),3)",
    "io_inp": [
      4,
      3,
      5,
      3,
      -2,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(mul_n(take(input,3),-1),2),2),3)"
  },
  {
    "input": "input : list = [2, 5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(drop([2, 5, 3],1)),-5),5))",
    "io_inp": [
      2,
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(drop(input,1)),-5),5))"
  },
  {
    "input": "input : list = [2, -5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(take(sort_des(mul_n(drop([2, -5, 0],1),1)),9),2)",
    "io_inp": [
      2,
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(mul_n(drop(input,1),1)),9),2)"
  },
  {
    "input": "input : list = [-3, 2, 1, 1, 5, -5]\noutput : list = [-9, -7, -3, -3, -2, 1]",
    "output": "generated_output : list = take(sub_n(reverse(take(sort_des([-3, 2, 1, 1, 5, -5]),9)),4),38)",
    "io_inp": [
      -3,
      2,
      1,
      1,
      5,
      -5
    ],
    "io_out": [
      -9,
      -7,
      -3,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(sort_des(input),9)),4),38)"
  },
  {
    "input": "input : list = [-3, 3, 2, 0, -4, 5]\noutput : list = [-16, -12, 0, 8, 12, 20]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(sort_asc([-3, 3, 2, 0, -4, 5])))),4)",
    "io_inp": [
      -3,
      3,
      2,
      0,
      -4,
      5
    ],
    "io_out": [
      -16,
      -12,
      0,
      8,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [-2, 1, -1, -5, 5, -2]\noutput : list = [-24, -108, 12, -36, -60, -24]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(sub_n([-2, 1, -1, -5, 5, -2],-4),-3),4)),30)",
    "io_inp": [
      -2,
      1,
      -1,
      -5,
      5,
      -2
    ],
    "io_out": [
      -24,
      -108,
      12,
      -36,
      -60,
      -24
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(sub_n(input,-4),-3),4)),30)"
  },
  {
    "input": "input : list = [-2, 5, -3, -1, 1, 3]\noutput : list = [-7, 0, -8, -6, -4, -2]",
    "output": "generated_output : list = sub_n(sub_n([-2, 5, -3, -1, 1, 3],1),4)",
    "io_inp": [
      -2,
      5,
      -3,
      -1,
      1,
      3
    ],
    "io_out": [
      -7,
      0,
      -8,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),4)"
  },
  {
    "input": "input : list = [4, 5, 0]\noutput : list = [11, 8, -4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(mul_n([4, 5, 0],3)),4)))",
    "io_inp": [
      4,
      5,
      0
    ],
    "io_out": [
      11,
      8,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(mul_n(input,3)),4)))"
  },
  {
    "input": "input : list = [1, 0, 5, 2, 3, 1]\noutput : list = [-7, -7, -6, -5, -3]",
    "output": "generated_output : list = add_n(drop(sub_n(sub_n(sort_asc([1, 0, 5, 2, 3, 1]),5),-1),1),-4)",
    "io_inp": [
      1,
      0,
      5,
      2,
      3,
      1
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(sub_n(sub_n(sort_asc(input),5),-1),1),-4)"
  },
  {
    "input": "input : list = [-5, 2, -3, 0, -5, 0]\noutput : list = [0, 75, 0, 45, -30, 75]",
    "output": "generated_output : list = take(mul_n(take(mul_n(reverse([-5, 2, -3, 0, -5, 0]),-5),31),3),21)",
    "io_inp": [
      -5,
      2,
      -3,
      0,
      -5,
      0
    ],
    "io_out": [
      0,
      75,
      0,
      45,
      -30,
      75
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(reverse(input),-5),31),3),21)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-8, -12]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(sub_n([4, 0],5),4),-3),30))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(sub_n(input,5),4),-3),30))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [0, -6]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_asc([-1, 2]),-2)),2))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_asc(input),-2)),2))"
  },
  {
    "input": "input : list = [-3, -1, 2, -4]\noutput : list = [-1, -7]",
    "output": "generated_output : list = take(reverse(add_n(reverse(drop([-3, -1, 2, -4],2)),-3)),19)",
    "io_inp": [
      -3,
      -1,
      2,
      -4
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(drop(input,2)),-3)),19)"
  },
  {
    "input": "input : list = [2, -1, -5, -2, -1, -4]\noutput : list = [8, -4, -4, -8, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n([2, -1, -5, -2, -1, -4],2)),2))",
    "io_inp": [
      2,
      -1,
      -5,
      -2,
      -1,
      -4
    ],
    "io_out": [
      8,
      -4,
      -4,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(input,2)),2))"
  },
  {
    "input": "input : list = [4, -3, -3, 0, 0, 4]\noutput : list = [7, 0, 0, 3, 3, 7]",
    "output": "generated_output : list = sub_n([4, -3, -3, 0, 0, 4],-3)",
    "io_inp": [
      4,
      -3,
      -3,
      0,
      0,
      4
    ],
    "io_out": [
      7,
      0,
      0,
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-1, 15]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sub_n([4, -4],4),-2)),1),2)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -1,
      15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sub_n(input,4),-2)),1),2)"
  },
  {
    "input": "input : list = [5, 0, -4, 5, 5, 2]\noutput : list = [14, 2, -4, -13, -13, -13]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_des([5, 0, -4, 5, 5, 2]),-3)),-3),5)",
    "io_inp": [
      5,
      0,
      -4,
      5,
      5,
      2
    ],
    "io_out": [
      14,
      2,
      -4,
      -13,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_des(input),-3)),-3),5)"
  },
  {
    "input": "input : list = [3, -5, 0, -3, 1, -2]\noutput : list = [-9, -6, -10, -7, -12, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n([3, -5, 0, -3, 1, -2],4),-3))",
    "io_inp": [
      3,
      -5,
      0,
      -3,
      1,
      -2
    ],
    "io_out": [
      -9,
      -6,
      -10,
      -7,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,4),-3))"
  },
  {
    "input": "input : list = [0, 0, 3, -2, -3, 5]\noutput : list = [10, 14, -18]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(drop([0, 0, 3, -2, -3, 5],3),-4),-3),-5),4)",
    "io_inp": [
      0,
      0,
      3,
      -2,
      -3,
      5
    ],
    "io_out": [
      10,
      14,
      -18
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(drop(input,3),-4),-3),-5),4)"
  },
  {
    "input": "input : list = [-4, 2, 5, -1, 0]\noutput : list = [40, 64, 76, 52, 56]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(add_n([-4, 2, 5, -1, 0],3),-5),1),5),4)",
    "io_inp": [
      -4,
      2,
      5,
      -1,
      0
    ],
    "io_out": [
      40,
      64,
      76,
      52,
      56
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(add_n(input,3),-5),1),5),4)"
  },
  {
    "input": "input : list = [-1, -3, -1, -2, -1]\noutput : list = [-16, -16, -16, -22, -28]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(mul_n([-1, -3, -1, -2, -1],-3),-5),-2)))",
    "io_inp": [
      -1,
      -3,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -16,
      -16,
      -16,
      -22,
      -28
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(mul_n(input,-3),-5),-2)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-5, 5]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc([1, -1]),1)),-5)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(input),1)),-5)"
  },
  {
    "input": "input : list = [5, -2, -5, 1, 5, 4]\noutput : list = [36, -34, -64, -4, 36, 26]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n([5, -2, -5, 1, 5, 4],-5),2),5),-2)",
    "io_inp": [
      5,
      -2,
      -5,
      1,
      5,
      4
    ],
    "io_out": [
      36,
      -34,
      -64,
      -4,
      36,
      26
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(input,-5),2),5),-2)"
  },
  {
    "input": "input : list = [-2, -3, -3]\noutput : list = [-24, -24, -21]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sort_asc([-2, -3, -3]),-5))),3)",
    "io_inp": [
      -2,
      -3,
      -3
    ],
    "io_out": [
      -24,
      -24,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sort_asc(input),-5))),3)"
  },
  {
    "input": "input : list = [2, -5, -1, 5, -3]\noutput : list = [-17, -11, -5, 4, 13]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(mul_n([2, -5, -1, 5, -3],-1),-3))),2)",
    "io_inp": [
      2,
      -5,
      -1,
      5,
      -3
    ],
    "io_out": [
      -17,
      -11,
      -5,
      4,
      13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(mul_n(input,-1),-3))),2)"
  },
  {
    "input": "input : list = [-1, 2, 4, 1, 3, -1]\noutput : list = [64, 48, 32, 16, -16, -16]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(sort_des([-1, 2, 4, 1, 3, -1])),4)),4)",
    "io_inp": [
      -1,
      2,
      4,
      1,
      3,
      -1
    ],
    "io_out": [
      64,
      48,
      32,
      16,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(sort_des(input)),4)),4)"
  },
  {
    "input": "input : list = [0, 5, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(reverse(drop(take(add_n([0, 5, -3],4),14),2)))",
    "io_inp": [
      0,
      5,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(take(add_n(input,4),14),2)))"
  },
  {
    "input": "input : list = [-1, -5, 2, 1, 4, -3]\noutput : list = [20, 4, -4, -8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(take([-1, -5, 2, 1, 4, -3],4)),2)),-2)",
    "io_inp": [
      -1,
      -5,
      2,
      1,
      4,
      -3
    ],
    "io_out": [
      20,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(take(input,4)),2)),-2)"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = take(take(add_n([-3, 2, 5],-1),15),15)",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-1),15),15)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sub_n([1, -1],5)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, 1, 0, -4, 4, -1]\noutput : list = [-5, 0, 5, 25, -15, 10]",
    "output": "generated_output : list = add_n(mul_n([2, 1, 0, -4, 4, -1],-5),5)",
    "io_inp": [
      2,
      1,
      0,
      -4,
      4,
      -1
    ],
    "io_out": [
      -5,
      0,
      5,
      25,
      -15,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),5)"
  },
  {
    "input": "input : list = [-4, 1, 1, 3]\noutput : list = [-8, -3, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sub_n([-4, 1, 1, 3],1))),-3))",
    "io_inp": [
      -4,
      1,
      1,
      3
    ],
    "io_out": [
      -8,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sub_n(input,1))),-3))"
  },
  {
    "input": "input : list = [0, -5, 0, 4, 3, 0]\noutput : list = [-7, -2, -2]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(take([0, -5, 0, 4, 3, 0],3),1),-2),3))",
    "io_inp": [
      0,
      -5,
      0,
      4,
      3,
      0
    ],
    "io_out": [
      -7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(take(input,3),1),-2),3))"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_des(drop([1, 1, -4],1)))))",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [0, -4, -5, 0, 2, 5]\noutput : list = [45, 15, -5, -55, -45, -5]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(mul_n([0, -4, -5, 0, 2, 5],-2),-5),32),-5))",
    "io_inp": [
      0,
      -4,
      -5,
      0,
      2,
      5
    ],
    "io_out": [
      45,
      15,
      -5,
      -55,
      -45,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(mul_n(input,-2),-5),32),-5))"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [28]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(take([-4, -4, 5],1),3),1),-5),3)",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(take(input,1),3),1),-5),3)"
  },
  {
    "input": "input : list = [-1, -1, 4]\noutput : list = [-12, -12, 13]",
    "output": "generated_output : list = sub_n(take(take(mul_n(add_n([-1, -1, 4],-1),5),5),22),2)",
    "io_inp": [
      -1,
      -1,
      4
    ],
    "io_out": [
      -12,
      -12,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(add_n(input,-1),5),5),22),2)"
  },
  {
    "input": "input : list = [0, 2, 2, 3, 1]\noutput : list = [-20, -25, -30, -30, -35]",
    "output": "generated_output : list = sort_des(take(take(mul_n(add_n([0, 2, 2, 3, 1],4),-5),25),19))",
    "io_inp": [
      0,
      2,
      2,
      3,
      1
    ],
    "io_out": [
      -20,
      -25,
      -30,
      -30,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(add_n(input,4),-5),25),19))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [16, -29]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(mul_n([1, -2],-3),-5),21),-3),2)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      16,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(mul_n(input,-3),-5),21),-3),2)"
  },
  {
    "input": "input : list = [0, -2, -5, 2, 2]\noutput : list = [0, 0, -2, -4, -7]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(sub_n([0, -2, -5, 2, 2],2),23))))",
    "io_inp": [
      0,
      -2,
      -5,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(sub_n(input,2),23))))"
  },
  {
    "input": "input : list = [3, 2, -3, -1, -5]\noutput : list = [-5, -3, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([3, 2, -3, -1, -5]))",
    "io_inp": [
      3,
      2,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [7, 3, 1]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(sub_n([-4, -2, 2],-5)))))",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-3]",
    "output": "generated_output : list = take(add_n([1, 2],-4),1)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),1)"
  },
  {
    "input": "input : list = [1, 5, -3, 0, 2, -1]\noutput : list = [-12, -8, -6, -4, -2, 4]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_des([1, 5, -3, 0, 2, -1]))),-3),2)",
    "io_inp": [
      1,
      5,
      -3,
      0,
      2,
      -1
    ],
    "io_out": [
      -12,
      -8,
      -6,
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_des(input))),-3),2)"
  },
  {
    "input": "input : list = [3, 2, -1, 1, -1]\noutput : list = [-5, -5, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_des([3, 2, -1, 1, -1]),-4)),45))",
    "io_inp": [
      3,
      2,
      -1,
      1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_des(input),-4)),45))"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(drop([3, -1, -2],1),1),20)),-5)",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(drop(input,1),1),20)),-5)"
  },
  {
    "input": "input : list = [-4, 4, 3, 2]\noutput : list = [-4, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-4, 4, 3, 2],5),-5))",
    "io_inp": [
      -4,
      4,
      3,
      2
    ],
    "io_out": [
      -4,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,5),-5))"
  },
  {
    "input": "input : list = [-4, 0, 3, 5, -2]\noutput : list = [16, 8, 0, -12, -20]",
    "output": "generated_output : list = reverse(mul_n(take(take(sort_des([-4, 0, 3, 5, -2]),17),13),-4))",
    "io_inp": [
      -4,
      0,
      3,
      5,
      -2
    ],
    "io_out": [
      16,
      8,
      0,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sort_des(input),17),13),-4))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(reverse([-1, 3])))))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [0, 1, 1, -5, -4]\noutput : list = [0, 4, 4, -20, -16]",
    "output": "generated_output : list = take(mul_n([0, 1, 1, -5, -4],4),11)",
    "io_inp": [
      0,
      1,
      1,
      -5,
      -4
    ],
    "io_out": [
      0,
      4,
      4,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),11)"
  },
  {
    "input": "input : list = [2, 3, 3, -1]\noutput : list = [-10, 2, 2, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(mul_n([2, 3, 3, -1],3),-5)),3),5)",
    "io_inp": [
      2,
      3,
      3,
      -1
    ],
    "io_out": [
      -10,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(mul_n(input,3),-5)),3),5)"
  },
  {
    "input": "input : list = [2, 5, 2]\noutput : list = [11]",
    "output": "generated_output : list = add_n(take(take(mul_n(drop([2, 5, 2],1),2),1),32),1)",
    "io_inp": [
      2,
      5,
      2
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(drop(input,1),2),1),32),1)"
  },
  {
    "input": "input : list = [2, -3, 3, -4]\noutput : list = [-5, -4, 1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n([2, -3, 3, -4],-1),7))",
    "io_inp": [
      2,
      -3,
      3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-1),7))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-37, 17]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n([-5, 4],-3),-5),-2)),3)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -37,
      17
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n(input,-3),-5),-2)),3)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [4, 4, -5]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(mul_n([0, -3, -3],-3)),-5),38))",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(mul_n(input,-3)),-5),38))"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [-10, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(drop([-3, -2, 0],1))),5))",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(drop(input,1))),5))"
  },
  {
    "input": "input : list = [-4, -2, 2, 5, 5, 2]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(take([-4, -2, 2, 5, 5, 2],1)))))",
    "io_inp": [
      -4,
      -2,
      2,
      5,
      5,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [5, 0, -5, -5, 2, -4]\noutput : list = [10]",
    "output": "generated_output : list = take(add_n(add_n(drop(mul_n([5, 0, -5, -5, 2, -4],-2),5),1),1),12)",
    "io_inp": [
      5,
      0,
      -5,
      -5,
      2,
      -4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(drop(mul_n(input,-2),5),1),1),12)"
  },
  {
    "input": "input : list = [5, 0, -3, 2, 3, 0]\noutput : list = [-12, -21, -21, -27, -30, -36]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(add_n([5, 0, -3, 2, 3, 0],5),2)),35),-3)",
    "io_inp": [
      5,
      0,
      -3,
      2,
      3,
      0
    ],
    "io_out": [
      -12,
      -21,
      -21,
      -27,
      -30,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(add_n(input,5),2)),35),-3)"
  },
  {
    "input": "input : list = [-1, -4, 3, 3, -5]\noutput : list = [3, 3, -5]",
    "output": "generated_output : list = drop([-1, -4, 3, 3, -5],2)",
    "io_inp": [
      -1,
      -4,
      3,
      3,
      -5
    ],
    "io_out": [
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -2, -2, 5, 3, 2]\noutput : list = [5, -2, -2, 1]",
    "output": "generated_output : list = reverse(take([1, -2, -2, 5, 3, 2],4))",
    "io_inp": [
      1,
      -2,
      -2,
      5,
      3,
      2
    ],
    "io_out": [
      5,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,4))"
  },
  {
    "input": "input : list = [1, 1, 5, 3, 2]\noutput : list = [6, 6, 10, 8, 7]",
    "output": "generated_output : list = add_n([1, 1, 5, 3, 2],5)",
    "io_inp": [
      1,
      1,
      5,
      3,
      2
    ],
    "io_out": [
      6,
      6,
      10,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, -3, -4, -4, 5, -5]\noutput : list = [-5, 4, -6]",
    "output": "generated_output : list = add_n(drop([-5, -3, -4, -4, 5, -5],3),-1)",
    "io_inp": [
      -5,
      -3,
      -4,
      -4,
      5,
      -5
    ],
    "io_out": [
      -5,
      4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-1)"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(add_n([4, 4, 5],5)),5),-3),-1)",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(add_n(input,5)),5),-3),-1)"
  },
  {
    "input": "input : list = [1, -4, 0, -4, 2]\noutput : list = [-19]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(take([1, -4, 0, -4, 2],1),4),-4),25),3)",
    "io_inp": [
      1,
      -4,
      0,
      -4,
      2
    ],
    "io_out": [
      -19
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(take(input,1),4),-4),25),3)"
  },
  {
    "input": "input : list = [4, 4, -1, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = drop([4, 4, -1, -1, 1],3)",
    "io_inp": [
      4,
      4,
      -1,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, 3, 3, -1]\noutput : list = [1, 5, 5, 1]",
    "output": "generated_output : list = take(sub_n([-1, 3, 3, -1],-2),7)",
    "io_inp": [
      -1,
      3,
      3,
      -1
    ],
    "io_out": [
      1,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-2),7)"
  },
  {
    "input": "input : list = [-4, 0, 2, 5, 4]\noutput : list = [150, 50, 0, -50, -75]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc([-4, 0, 2, 5, 4]),-2),5),-5)",
    "io_inp": [
      -4,
      0,
      2,
      5,
      4
    ],
    "io_out": [
      150,
      50,
      0,
      -50,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(input),-2),5),-5)"
  },
  {
    "input": "input : list = [-4, 5, -4, 1, -2, -3]\noutput : list = [0, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sub_n(drop([-4, 5, -4, 1, -2, -3],4),-2),-4)))",
    "io_inp": [
      -4,
      5,
      -4,
      1,
      -2,
      -3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sub_n(drop(input,4),-2),-4)))"
  },
  {
    "input": "input : list = [-5, -1, 4, 4]\noutput : list = [-15, -3, 12, 12]",
    "output": "generated_output : list = mul_n([-5, -1, 4, 4],3)",
    "io_inp": [
      -5,
      -1,
      4,
      4
    ],
    "io_out": [
      -15,
      -3,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des([1, 0])",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [2, 1]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse([4, 3]))),-5),-1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse(input))),-5),-1)"
  },
  {
    "input": "input : list = [4, -4, -5, 3, -2]\noutput : list = [8, 7, 5, 0, -1]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(sort_des([4, -4, -5, 3, -2]),-1),3)),30)",
    "io_inp": [
      4,
      -4,
      -5,
      3,
      -2
    ],
    "io_out": [
      8,
      7,
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(sort_des(input),-1),3)),30)"
  },
  {
    "input": "input : list = [2, 4, -3]\noutput : list = [-20, 15]",
    "output": "generated_output : list = mul_n(drop([2, 4, -3],1),-5)",
    "io_inp": [
      2,
      4,
      -3
    ],
    "io_out": [
      -20,
      15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [9, 8]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(sub_n([0, 1],-3)),5)),26)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(sub_n(input,-3)),5)),26)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [9, -15]",
    "output": "generated_output : list = mul_n([-3, 5],-3)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -5, 5, -5]\noutput : list = [-10, -10, -7, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n([-2, -5, 5, -5],5))))",
    "io_inp": [
      -2,
      -5,
      5,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(input,5))))"
  },
  {
    "input": "input : list = [4, 3, -1, -2]\noutput : list = [-1, -5, -6]",
    "output": "generated_output : list = sub_n(drop([4, 3, -1, -2],1),4)",
    "io_inp": [
      4,
      3,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [3, 0, 0, -1, 5, 1]\noutput : list = [-1, 0, 0, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take([3, 0, 0, -1, 5, 1],4))))",
    "io_inp": [
      3,
      0,
      0,
      -1,
      5,
      1
    ],
    "io_out": [
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(input,4))))"
  },
  {
    "input": "input : list = [0, 3, 2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 3, 2],1)",
    "io_inp": [
      0,
      3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -5, -1]\noutput : list = [20, 0, -5, -20]",
    "output": "generated_output : list = reverse(add_n(take(sort_asc(mul_n([-2, 3, -5, -1],5)),5),5))",
    "io_inp": [
      -2,
      3,
      -5,
      -1
    ],
    "io_out": [
      20,
      0,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_asc(mul_n(input,5)),5),5))"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [3, 19, -1]",
    "output": "generated_output : list = sub_n(mul_n([1, 5, 0],4),1)",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      3,
      19,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),1)"
  },
  {
    "input": "input : list = [-4, -3, -4]\noutput : list = [16, 16, 12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des([-4, -3, -4]),-4)))",
    "io_inp": [
      -4,
      -3,
      -4
    ],
    "io_out": [
      16,
      16,
      12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(input),-4)))"
  },
  {
    "input": "input : list = [2, 2, 1, -1]\noutput : list = [2, -2, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(reverse([2, 2, 1, -1]))),-2))",
    "io_inp": [
      2,
      2,
      1,
      -1
    ],
    "io_out": [
      2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(reverse(input))),-2))"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [-5, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sub_n([-5, 4, 1],-3),7))),3)",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sub_n(input,-3),7))),3)"
  },
  {
    "input": "input : list = [5, -3, 3, -5]\noutput : list = [-30, -24, -6, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(reverse([5, -3, 3, -5])),5)),-3)",
    "io_inp": [
      5,
      -3,
      3,
      -5
    ],
    "io_out": [
      -30,
      -24,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(reverse(input)),5)),-3)"
  },
  {
    "input": "input : list = [0, 0, 4, -2, -2]\noutput : list = [11, 7, 7, 5, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n([0, 0, 4, -2, -2],-4),-4))),1)",
    "io_inp": [
      0,
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      11,
      7,
      7,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(sub_n(input,-4),-4))),1)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [0, 3, 9]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sort_des([5, -4, -1]),17),4),20))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      0,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sort_des(input),17),4),20))"
  },
  {
    "input": "input : list = [1, -5, 4, -1]\noutput : list = [6, 3, 1, -3]",
    "output": "generated_output : list = add_n(sort_des([1, -5, 4, -1]),2)",
    "io_inp": [
      1,
      -5,
      4,
      -1
    ],
    "io_out": [
      6,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-4, -4, 0, -2, -1]\noutput : list = [5, 10, 15, 25, 25]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(sort_des([-4, -4, 0, -2, -1])),-1)),-5)",
    "io_inp": [
      -4,
      -4,
      0,
      -2,
      -1
    ],
    "io_out": [
      5,
      10,
      15,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(sort_des(input)),-1)),-5)"
  },
  {
    "input": "input : list = [2, 2, -4, 5, -3, 4]\noutput : list = [4, 4, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take([2, 2, -4, 5, -3, 4],3)),2))",
    "io_inp": [
      2,
      2,
      -4,
      5,
      -3,
      4
    ],
    "io_out": [
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(input,3)),2))"
  },
  {
    "input": "input : list = [4, -4, 2, 2]\noutput : list = [4, 2, 2, -4]",
    "output": "generated_output : list = reverse(sort_asc([4, -4, 2, 2]))",
    "io_inp": [
      4,
      -4,
      2,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -4, -5]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = sort_des([-1, -4, -5])",
    "io_inp": [
      -1,
      -4,
      -5
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, 4]\noutput : list = [-13, -7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(drop([-5, -2, 4],1)),3),4),-4)",
    "io_inp": [
      -5,
      -2,
      4
    ],
    "io_out": [
      -13,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(drop(input,1)),3),4),-4)"
  },
  {
    "input": "input : list = [-4, -4, 0]\noutput : list = [7, -1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(drop([-4, -4, 0],1),-2),-1))",
    "io_inp": [
      -4,
      -4,
      0
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(drop(input,1),-2),-1))"
  },
  {
    "input": "input : list = [-2, 0, -2, 5, 1, 2]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(take([-2, 0, -2, 5, 1, 2],1),-4)",
    "io_inp": [
      -2,
      0,
      -2,
      5,
      1,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [20, 0]",
    "output": "generated_output : list = mul_n(mul_n([-5, 0],-1),4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),4)"
  },
  {
    "input": "input : list = [5, -4, 3, 1]\noutput : list = [5, 7, 0]",
    "output": "generated_output : list = take(sub_n(take(take(reverse([5, -4, 3, 1]),4),7),-4),3)",
    "io_inp": [
      5,
      -4,
      3,
      1
    ],
    "io_out": [
      5,
      7,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(reverse(input),4),7),-4),3)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [5, 5, -3]",
    "output": "generated_output : list = reverse([-3, 5, 5])",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, 4, -3, 3, -5]\noutput : list = [-27, -24, -21, -15, -3, 3]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(sort_asc([5, 1, 4, -3, 3, -5]),4),-3),37))",
    "io_inp": [
      5,
      1,
      4,
      -3,
      3,
      -5
    ],
    "io_out": [
      -27,
      -24,
      -21,
      -15,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(sort_asc(input),4),-3),37))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des([-2, 3])",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, 2, -4, -4]\noutput : list = [-4, -4, 2, 3]",
    "output": "generated_output : list = sub_n(take(add_n(take(reverse([-2, 3, 2, -4, -4]),12),4),4),4)",
    "io_inp": [
      -2,
      3,
      2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(reverse(input),12),4),4),4)"
  },
  {
    "input": "input : list = [-3, -3, 1, 5, -4, 5]\noutput : list = [18, 15, 15, 3, -9, -9]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_des([-3, -3, 1, 5, -4, 5]),-2))),-3)",
    "io_inp": [
      -3,
      -3,
      1,
      5,
      -4,
      5
    ],
    "io_out": [
      18,
      15,
      15,
      3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_des(input),-2))),-3)"
  },
  {
    "input": "input : list = [2, -3, 0, 3, 5]\noutput : list = [-12, -4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(take([2, -3, 0, 3, 5],3),1)),-4))",
    "io_inp": [
      2,
      -3,
      0,
      3,
      5
    ],
    "io_out": [
      -12,
      -4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(take(input,3),1)),-4))"
  },
  {
    "input": "input : list = [4, -2, 5, -3, 5]\noutput : list = [6, 3, -15, -18, -18]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc([4, -2, 5, -3, 5]),22),1)),-3)",
    "io_inp": [
      4,
      -2,
      5,
      -3,
      5
    ],
    "io_out": [
      6,
      3,
      -15,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc(input),22),1)),-3)"
  },
  {
    "input": "input : list = [1, 0, 0, -1, 1]\noutput : list = [5, 10, 10, 15, 5]",
    "output": "generated_output : list = mul_n(sub_n([1, 0, 0, -1, 1],2),-5)",
    "io_inp": [
      1,
      0,
      0,
      -1,
      1
    ],
    "io_out": [
      5,
      10,
      10,
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),-5)"
  },
  {
    "input": "input : list = [4, -3, 4, -3, 1, 5]\noutput : list = [16, 16, 0, -12, -12, -16]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_des([4, -3, 4, -3, 1, 5]),-4))),4)",
    "io_inp": [
      4,
      -3,
      4,
      -3,
      1,
      5
    ],
    "io_out": [
      16,
      16,
      0,
      -12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_des(input),-4))),4)"
  },
  {
    "input": "input : list = [-1, -4, 2, -5]\noutput : list = [7, 4, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des([-1, -4, 2, -5]),5)))",
    "io_inp": [
      -1,
      -4,
      2,
      -5
    ],
    "io_out": [
      7,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(input),5)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sort_asc([3, 4])))))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(sub_n([-5, 3],-4)),1)),-1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(sub_n(input,-4)),1)),-1)"
  },
  {
    "input": "input : list = [0, 4, 2, 5, 4]\noutput : list = [0, -20]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(take([0, 4, 2, 5, 4],2)),-5)),29)",
    "io_inp": [
      0,
      4,
      2,
      5,
      4
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(take(input,2)),-5)),29)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-6, -7]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(reverse([-2, -3]))),-4))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-1, -3, -1, -1, 5, -3]\noutput : list = [-5, -5, -3, -3, -3, 3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([-1, -3, -1, -1, 5, -3],4),2))",
    "io_inp": [
      -1,
      -3,
      -1,
      -1,
      5,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,4),2))"
  },
  {
    "input": "input : list = [-2, -2, -5, 4]\noutput : list = [-10, -4, -4, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(sub_n([-2, -2, -5, 4],1),2),2),16))",
    "io_inp": [
      -2,
      -2,
      -5,
      4
    ],
    "io_out": [
      -10,
      -4,
      -4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(sub_n(input,1),2),2),16))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4]",
    "output": "generated_output : list = take(add_n([2, 2],2),1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),1)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(mul_n([4, 2],-1),-1),8)))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(mul_n(input,-1),-1),8)))"
  },
  {
    "input": "input : list = [4, 1, 1]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(drop(mul_n([4, 1, 1],2),1),21)))",
    "io_inp": [
      4,
      1,
      1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(drop(mul_n(input,2),1),21)))"
  },
  {
    "input": "input : list = [-3, 2, -4, -5, 5]\noutput : list = [-3, 2, -4, -5, 5]",
    "output": "generated_output : list = reverse(reverse([-3, 2, -4, -5, 5]))",
    "io_inp": [
      -3,
      2,
      -4,
      -5,
      5
    ],
    "io_out": [
      -3,
      2,
      -4,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, 0, -3, -3, 4]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(add_n(drop(sub_n(mul_n([3, 0, -3, -3, 4],-1),-5),4),5),-2)",
    "io_inp": [
      3,
      0,
      -3,
      -3,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(sub_n(mul_n(input,-1),-5),4),5),-2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(reverse([-4, 1])),3)),-2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(reverse(input)),3)),-2)"
  },
  {
    "input": "input : list = [3, -5, 0, -2, -5, -5]\noutput : list = [1, -2, -4, -7, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse([3, -5, 0, -2, -5, -5])),2)",
    "io_inp": [
      3,
      -5,
      0,
      -2,
      -5,
      -5
    ],
    "io_out": [
      1,
      -2,
      -4,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),2)"
  },
  {
    "input": "input : list = [-1, 3, 5, -1]\noutput : list = [-6, 0, -2, -6]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(add_n([-1, 3, 5, -1],-1)),-1),23),3)",
    "io_inp": [
      -1,
      3,
      5,
      -1
    ],
    "io_out": [
      -6,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(add_n(input,-1)),-1),23),3)"
  },
  {
    "input": "input : list = [-1, 5, 3, 4]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(drop([-1, 5, 3, 4],1))),22))",
    "io_inp": [
      -1,
      5,
      3,
      4
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(drop(input,1))),22))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-9, -8]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-4, -3],5),3),3)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,5),3),3)"
  },
  {
    "input": "input : list = [1, 3, 3, -3, 2]\noutput : list = [-12, -8, -7, -6, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(sub_n([1, 3, 3, -3, 2],5),4),26)))",
    "io_inp": [
      1,
      3,
      3,
      -3,
      2
    ],
    "io_out": [
      -12,
      -8,
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(sub_n(input,5),4),26)))"
  },
  {
    "input": "input : list = [-1, 3, 2, -3, 0]\noutput : list = [8, 7, 5, 4, 2]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(reverse([-1, 3, 2, -3, 0])),23),-1),4)",
    "io_inp": [
      -1,
      3,
      2,
      -3,
      0
    ],
    "io_out": [
      8,
      7,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(reverse(input)),23),-1),4)"
  },
  {
    "input": "input : list = [1, -4, -3, -4]\noutput : list = [-7, -6, -7, -2]",
    "output": "generated_output : list = take(sub_n(reverse([1, -4, -3, -4]),3),9)",
    "io_inp": [
      1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),3),9)"
  },
  {
    "input": "input : list = [-5, 0, -5, -2, -1]\noutput : list = [-9, -9, -6, -5, -4]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des(sub_n([-5, 0, -5, -2, -1],4))),26))",
    "io_inp": [
      -5,
      0,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(sub_n(input,4))),26))"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [-11, 1]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n(mul_n([4, 1, 2],-4),2),2),-2),5)",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      -11,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(mul_n(input,-4),2),2),-2),5)"
  },
  {
    "input": "input : list = [-5, -5, 5, 5]\noutput : list = [3, 3, -7, -7]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(reverse([-5, -5, 5, 5]),-5))),-3)",
    "io_inp": [
      -5,
      -5,
      5,
      5
    ],
    "io_out": [
      3,
      3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(reverse(input),-5))),-3)"
  },
  {
    "input": "input : list = [5, 5, 3, -1]\noutput : list = [3, 11, 15, 15]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(sort_asc([5, 5, 3, -1]),2)),-5))",
    "io_inp": [
      5,
      5,
      3,
      -1
    ],
    "io_out": [
      3,
      11,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(sort_asc(input),2)),-5))"
  },
  {
    "input": "input : list = [1, 1, 2, -5]\noutput : list = [-10]",
    "output": "generated_output : list = reverse(drop(add_n([1, 1, 2, -5],-5),3))",
    "io_inp": [
      1,
      1,
      2,
      -5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(input,-5),3))"
  },
  {
    "input": "input : list = [-3, 3, 0, 1, 1]\noutput : list = [-4, -1, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(add_n([-3, 3, 0, 1, 1],1),-2))))",
    "io_inp": [
      -3,
      3,
      0,
      1,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(add_n(input,1),-2))))"
  },
  {
    "input": "input : list = [-1, -3, -2, 5, 1]\noutput : list = [-2, 5, 1]",
    "output": "generated_output : list = drop([-1, -3, -2, 5, 1],2)",
    "io_inp": [
      -1,
      -3,
      -2,
      5,
      1
    ],
    "io_out": [
      -2,
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 3, -4, 1, 1, 5]\noutput : list = [5, 5, 25]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(drop([-5, 3, -4, 1, 1, 5],3),-5)),-1)",
    "io_inp": [
      -5,
      3,
      -4,
      1,
      1,
      5
    ],
    "io_out": [
      5,
      5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(drop(input,3),-5)),-1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sub_n([-2, 2],-3)),-3),-1))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sub_n(input,-3)),-3),-1))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [0, -5]",
    "output": "generated_output : list = add_n(sort_des(add_n([2, -3],-4)),2)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(input,-4)),2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [7, 6]",
    "output": "generated_output : list = reverse(take(sub_n(reverse([5, 4]),-2),6))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(input),-2),6))"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [-100]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(take([5, 3, 0],1)),-4),5))",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      -100
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(take(input,1)),-4),5))"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [-7, -7, 0]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(sub_n([5, -2, -2],-1),-5),25),1))",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(sub_n(input,-1),-5),25),1))"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([2, 4, 2],-4),4))",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,-4),4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-28, -16]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(sub_n([2, 5],3),4),15),-2),4)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -28,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(sub_n(input,3),4),15),-2),4)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n([-3, -3],-2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(sort_asc([-1, -5])),2),2))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(sort_asc(input)),2),2))"
  },
  {
    "input": "input : list = [-2, 4, -1]\noutput : list = [11, 8, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(mul_n([-2, 4, -1],-3)))),-5)",
    "io_inp": [
      -2,
      4,
      -1
    ],
    "io_out": [
      11,
      8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(mul_n(input,-3)))),-5)"
  },
  {
    "input": "input : list = [0, -3, 0, 3, -2]\noutput : list = [2, 3, 5, 5, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sort_des([0, -3, 0, 3, -2]))),-5))",
    "io_inp": [
      0,
      -3,
      0,
      3,
      -2
    ],
    "io_out": [
      2,
      3,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-2, -2, -5]\noutput : list = [-112, -52, -52]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(mul_n([-2, -2, -5],-5),2),-4),-4))",
    "io_inp": [
      -2,
      -2,
      -5
    ],
    "io_out": [
      -112,
      -52,
      -52
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(mul_n(input,-5),2),-4),-4))"
  },
  {
    "input": "input : list = [-3, -4, 5, -3, -2]\noutput : list = [0, -1, 8, 0, 1]",
    "output": "generated_output : list = sub_n(sub_n(take(add_n([-3, -4, 5, -3, -2],4),9),4),-3)",
    "io_inp": [
      -3,
      -4,
      5,
      -3,
      -2
    ],
    "io_out": [
      0,
      -1,
      8,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(add_n(input,4),9),4),-3)"
  },
  {
    "input": "input : list = [4, -3, -5, -4, -2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(drop([4, -3, -5, -4, -2],2),-1),20),3),1)",
    "io_inp": [
      4,
      -3,
      -5,
      -4,
      -2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(drop(input,2),-1),20),3),1)"
  },
  {
    "input": "input : list = [1, 0, 0, 3]\noutput : list = [0, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([1, 0, 0, 3])",
    "io_inp": [
      1,
      0,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, -5, 0]\noutput : list = [16, 32, 36, 36]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n([-5, -4, -5, 0],4))),-4)",
    "io_inp": [
      -5,
      -4,
      -5,
      0
    ],
    "io_out": [
      16,
      32,
      36,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(input,4))),-4)"
  },
  {
    "input": "input : list = [5, -1, 0, 3]\noutput : list = [7, 5, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des([5, -1, 0, 3])),3),5))",
    "io_inp": [
      5,
      -1,
      0,
      3
    ],
    "io_out": [
      7,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des(input)),3),5))"
  },
  {
    "input": "input : list = [-1, 4, 4, -4, -5]\noutput : list = [1, 2, 10]",
    "output": "generated_output : list = add_n(sort_asc(add_n(drop([-1, 4, 4, -4, -5],2),4)),2)",
    "io_inp": [
      -1,
      4,
      4,
      -4,
      -5
    ],
    "io_out": [
      1,
      2,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(drop(input,2),4)),2)"
  },
  {
    "input": "input : list = [-5, 0, -4, -2, -3, 0]\noutput : list = [-3, -3, -5, -6, -7, -8]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des(sub_n([-5, 0, -4, -2, -3, 0],1))),4),2)",
    "io_inp": [
      -5,
      0,
      -4,
      -2,
      -3,
      0
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(sub_n(input,1))),4),2)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-39, -30]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(sub_n([4, 1],-5),4),-3)))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -39,
      -30
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(sub_n(input,-5),4),-3)))"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [11, 9, 9]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(sort_des([1, 3, 1]),-1),-5),1),2)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      11,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(sort_des(input),-1),-5),1),2)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = take(sort_asc([2, 5, -3]),7)",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [0, 2, -5, 3, -5, 3]\noutput : list = [6, 6, 5, 3, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(add_n([0, 2, -5, 3, -5, 3],-4),5),-3),-5))",
    "io_inp": [
      0,
      2,
      -5,
      3,
      -5,
      3
    ],
    "io_out": [
      6,
      6,
      5,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(add_n(input,-4),5),-3),-5))"
  },
  {
    "input": "input : list = [4, -2, 3, 3, 3]\noutput : list = [4, 3, 3, 3, -2]",
    "output": "generated_output : list = take(sort_des([4, -2, 3, 3, 3]),16)",
    "io_inp": [
      4,
      -2,
      3,
      3,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),16)"
  },
  {
    "input": "input : list = [0, -1, -1, -4, 3, 1]\noutput : list = [-3, 0, 0, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n([0, -1, -1, -4, 3, 1],1))",
    "io_inp": [
      0,
      -1,
      -1,
      -4,
      3,
      1
    ],
    "io_out": [
      -3,
      0,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [-3, 5, 1, -4]\noutput : list = [-2, 6, 2, -3]",
    "output": "generated_output : list = add_n([-3, 5, 1, -4],1)",
    "io_inp": [
      -3,
      5,
      1,
      -4
    ],
    "io_out": [
      -2,
      6,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, 1, -3, 2, 4, -2]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(take([5, 1, -3, 2, 4, -2],1))),38),2)",
    "io_inp": [
      5,
      1,
      -3,
      2,
      4,
      -2
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(take(input,1))),38),2)"
  },
  {
    "input": "input : list = [1, 3, -4, 4]\noutput : list = [6, 2]",
    "output": "generated_output : list = mul_n(sort_des(take([1, 3, -4, 4],2)),2)",
    "io_inp": [
      1,
      3,
      -4,
      4
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,2)),2)"
  },
  {
    "input": "input : list = [-2, 1, 1, 0, -3, -4]\noutput : list = [-3, -3, 0, 6, 9, 12]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(reverse([-2, 1, 1, 0, -3, -4]))),-1),3)",
    "io_inp": [
      -2,
      1,
      1,
      0,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -3,
      0,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(reverse(input))),-1),3)"
  },
  {
    "input": "input : list = [0, 4, -4, -2, 2]\noutput : list = [-7, -3]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(drop([0, 4, -4, -2, 2],3)),-5),20))",
    "io_inp": [
      0,
      4,
      -4,
      -2,
      2
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(drop(input,3)),-5),20))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([4, 0])))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-5, 2, -2, 5, -5]\noutput : list = [-15, -15, -6, 6, 15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([-5, 2, -2, 5, -5])),3)",
    "io_inp": [
      -5,
      2,
      -2,
      5,
      -5
    ],
    "io_out": [
      -15,
      -15,
      -6,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [3, -3, -3, -1]\noutput : list = [11, -7, -7, -1]",
    "output": "generated_output : list = take(take(sub_n(sub_n(mul_n([3, -3, -3, -1],3),-1),-1),34),12)",
    "io_inp": [
      3,
      -3,
      -3,
      -1
    ],
    "io_out": [
      11,
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(mul_n(input,3),-1),-1),34),12)"
  },
  {
    "input": "input : list = [4, 2, 2, -1, -2]\noutput : list = [-1, -3, -3, -6, -7]",
    "output": "generated_output : list = reverse(reverse(sub_n([4, 2, 2, -1, -2],5)))",
    "io_inp": [
      4,
      2,
      2,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,5)))"
  },
  {
    "input": "input : list = [5, 1, 1, -5]\noutput : list = [-5, 1, 1, 5]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(reverse([5, 1, 1, -5]),7)),1))",
    "io_inp": [
      5,
      1,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(reverse(input),7)),1))"
  },
  {
    "input": "input : list = [5, -4, 0, 2, 0, 3]\noutput : list = [5, 3, 2, 0, 0, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des([5, -4, 0, 2, 0, 3])))",
    "io_inp": [
      5,
      -4,
      0,
      2,
      0,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [2, 1, 4, -4]\noutput : list = [128, -32, -64, -128]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(mul_n([2, 1, 4, -4],-4),-4),-2)))",
    "io_inp": [
      2,
      1,
      4,
      -4
    ],
    "io_out": [
      128,
      -32,
      -64,
      -128
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(mul_n(input,-4),-4),-2)))"
  },
  {
    "input": "input : list = [1, -1, -4, 3, 5, 0]\noutput : list = [2, 5, 6, 7, 9, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(add_n([1, -1, -4, 3, 5, 0],1),2),-1),-2))",
    "io_inp": [
      1,
      -1,
      -4,
      3,
      5,
      0
    ],
    "io_out": [
      2,
      5,
      6,
      7,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(add_n(input,1),2),-1),-2))"
  },
  {
    "input": "input : list = [1, -1, 3, -3]\noutput : list = [-15, -5, 5, 15]",
    "output": "generated_output : list = sort_asc(mul_n([1, -1, 3, -3],-5))",
    "io_inp": [
      1,
      -1,
      3,
      -3
    ],
    "io_out": [
      -15,
      -5,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_des([-4, -3])))),1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [2, 0, 3, 2, -1, 1]\noutput : list = [-18, -12, -12, -6, 0, 6]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(reverse([2, 0, 3, 2, -1, 1]))),-3),2)",
    "io_inp": [
      2,
      0,
      3,
      2,
      -1,
      1
    ],
    "io_out": [
      -18,
      -12,
      -12,
      -6,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(reverse(input))),-3),2)"
  },
  {
    "input": "input : list = [3, 0, 5, -5, -5]\noutput : list = [0, 9]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(take([3, 0, 5, -5, -5],2),3)),37))",
    "io_inp": [
      3,
      0,
      5,
      -5,
      -5
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(take(input,2),3)),37))"
  },
  {
    "input": "input : list = [3, 1, 5, -3, 5, 3]\noutput : list = [21, 21, 13, 13, 5, -11]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(reverse([3, 1, 5, -3, 5, 3])),4)),1)",
    "io_inp": [
      3,
      1,
      5,
      -3,
      5,
      3
    ],
    "io_out": [
      21,
      21,
      13,
      13,
      5,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(reverse(input)),4)),1)"
  },
  {
    "input": "input : list = [3, 4, -4, -1]\noutput : list = [2, 1, -3, -6]",
    "output": "generated_output : list = sort_des(take(add_n(take(sort_des([3, 4, -4, -1]),4),-2),29))",
    "io_inp": [
      3,
      4,
      -4,
      -1
    ],
    "io_out": [
      2,
      1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(sort_des(input),4),-2),29))"
  },
  {
    "input": "input : list = [1, 5, -5, 5]\noutput : list = [-5, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([1, 5, -5, 5])",
    "io_inp": [
      1,
      5,
      -5,
      5
    ],
    "io_out": [
      -5,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(sort_des(drop([2, -2, -4],1)))",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [0, 4, -4]\noutput : list = [80, 20, -40]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(mul_n([0, 4, -4],3),-1),-5)),5)",
    "io_inp": [
      0,
      4,
      -4
    ],
    "io_out": [
      80,
      20,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(mul_n(input,3),-1),-5)),5)"
  },
  {
    "input": "input : list = [4, -3, -5]\noutput : list = [0, 14, 18]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(add_n([4, -3, -5],-3)),1),-2))",
    "io_inp": [
      4,
      -3,
      -5
    ],
    "io_out": [
      0,
      14,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(add_n(input,-3)),1),-2))"
  },
  {
    "input": "input : list = [0, 2, -3, -4]\noutput : list = [-20, -15, 0, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(mul_n([0, 2, -3, -4],5)))))",
    "io_inp": [
      0,
      2,
      -3,
      -4
    ],
    "io_out": [
      -20,
      -15,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-5, 4, -2, 0]\noutput : list = [-7, -4, -2, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(reverse([-5, 4, -2, 0]),1))),-1)",
    "io_inp": [
      -5,
      4,
      -2,
      0
    ],
    "io_out": [
      -7,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(reverse(input),1))),-1)"
  },
  {
    "input": "input : list = [3, 5, -3, -1]\noutput : list = [-17, -7, 13, 23]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(mul_n([3, 5, -3, -1],-5))),-2),-1)",
    "io_inp": [
      3,
      5,
      -3,
      -1
    ],
    "io_out": [
      -17,
      -7,
      13,
      23
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(mul_n(input,-5))),-2),-1)"
  },
  {
    "input": "input : list = [-5, 0, -4]\noutput : list = [-6, -5, -1]",
    "output": "generated_output : list = reverse(take(take(sort_des(add_n([-5, 0, -4],-1)),15),16))",
    "io_inp": [
      -5,
      0,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(add_n(input,-1)),15),16))"
  },
  {
    "input": "input : list = [2, -1, 0, -1, -1]\noutput : list = [2, 0, -1, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc([2, -1, 0, -1, -1]))",
    "io_inp": [
      2,
      -1,
      0,
      -1,
      -1
    ],
    "io_out": [
      2,
      0,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, -4, 1, -3, 0]\noutput : list = [4, -4, 1, -3, 0]",
    "output": "generated_output : list = drop([-5, 4, -4, 1, -3, 0],1)",
    "io_inp": [
      -5,
      4,
      -4,
      1,
      -3,
      0
    ],
    "io_out": [
      4,
      -4,
      1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 2, -3, 5]\noutput : list = [-9, -1]",
    "output": "generated_output : list = add_n(sub_n(reverse(reverse(drop([1, 2, -3, 5],2))),3),-3)",
    "io_inp": [
      1,
      2,
      -3,
      5
    ],
    "io_out": [
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(reverse(drop(input,2))),3),-3)"
  },
  {
    "input": "input : list = [-4, 1, 5, -1, -4]\noutput : list = [5, 1, -1, -4, -4]",
    "output": "generated_output : list = sort_des([-4, 1, 5, -1, -4])",
    "io_inp": [
      -4,
      1,
      5,
      -1,
      -4
    ],
    "io_out": [
      5,
      1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5, -3, -5, 3]\noutput : list = [4, 7, 1, 7, -17]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(add_n([-4, -5, -3, -5, 3],2),-3)),-2))",
    "io_inp": [
      -4,
      -5,
      -3,
      -5,
      3
    ],
    "io_out": [
      4,
      7,
      1,
      7,
      -17
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(add_n(input,2),-3)),-2))"
  },
  {
    "input": "input : list = [-2, -4, -4, 4, 0, 5]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sort_des([-2, -4, -4, 4, 0, 5])),2),2),21)",
    "io_inp": [
      -2,
      -4,
      -4,
      4,
      0,
      5
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sort_des(input)),2),2),21)"
  },
  {
    "input": "input : list = [-1, -3, 3, 0]\noutput : list = [9, -6, -11, -21]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des([-1, -3, 3, 0]),5),-1),-5)",
    "io_inp": [
      -1,
      -3,
      3,
      0
    ],
    "io_out": [
      9,
      -6,
      -11,
      -21
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(input),5),-1),-5)"
  },
  {
    "input": "input : list = [2, 5, 0]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = sort_asc([2, 5, 0])",
    "io_inp": [
      2,
      5,
      0
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, 0, -3]\noutput : list = [-1, -4, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n([-4, -3, 0, -3],1))))",
    "io_inp": [
      -4,
      -3,
      0,
      -3
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(input,1))))"
  },
  {
    "input": "input : list = [0, -1, -5, -3, 5]\noutput : list = [-4, -2, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(drop([0, -1, -5, -3, 5],2)),-5),4))",
    "io_inp": [
      0,
      -1,
      -5,
      -3,
      5
    ],
    "io_out": [
      -4,
      -2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(drop(input,2)),-5),4))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [2, -2]",
    "output": "generated_output : list = take(sort_des(add_n(take(reverse([4, 0]),10),-2)),23)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(reverse(input),10),-2)),23)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-4, -8]",
    "output": "generated_output : list = mul_n([2, 4],-2)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([-1, 4, -5],1)))",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [20, 8]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(mul_n([2, -2],-3)),-4),5),-5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      20,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(mul_n(input,-3)),-4),5),-5)"
  },
  {
    "input": "input : list = [-1, 4, -1, -4, 0, 2]\noutput : list = [12, 6, 0, -3, -3, -12]",
    "output": "generated_output : list = sort_des(take(sort_des(take(mul_n([-1, 4, -1, -4, 0, 2],3),7)),31))",
    "io_inp": [
      -1,
      4,
      -1,
      -4,
      0,
      2
    ],
    "io_out": [
      12,
      6,
      0,
      -3,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(mul_n(input,3),7)),31))"
  },
  {
    "input": "input : list = [4, 5, 5]\noutput : list = [1, 2, 2]",
    "output": "generated_output : list = sort_asc(add_n([4, 5, 5],-3))",
    "io_inp": [
      4,
      5,
      5
    ],
    "io_out": [
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse(sort_asc([2, 2]))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 2, 4, 2, -3]\noutput : list = [40, 24, 24, -16, -16]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(mul_n([-3, 2, 4, 2, -3],-2),2))),-4)",
    "io_inp": [
      -3,
      2,
      4,
      2,
      -3
    ],
    "io_out": [
      40,
      24,
      24,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(mul_n(input,-2),2))),-4)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(sort_des([-1, -1])))),-4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [3, 4, 1, 1]\noutput : list = [5, 5, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(reverse([3, 4, 1, 1]))),4))",
    "io_inp": [
      3,
      4,
      1,
      1
    ],
    "io_out": [
      5,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(reverse(input))),4))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [0, 3]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sort_asc([4, 1]),-4),-1),3),1)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sort_asc(input),-4),-1),3),1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-16, 4]",
    "output": "generated_output : list = sort_asc(mul_n([4, -1],-4))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -16,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [5, 2, -1, 5]\noutput : list = [22, 10, -2]",
    "output": "generated_output : list = sub_n(sort_des(drop(sort_des(mul_n([5, 2, -1, 5],4)),1)),-2)",
    "io_inp": [
      5,
      2,
      -1,
      5
    ],
    "io_out": [
      22,
      10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(sort_des(mul_n(input,4)),1)),-2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [5, 3]",
    "output": "generated_output : list = add_n([1, -1],4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, 3, 5, 1, -1]\noutput : list = [-2, 1, 3, 5, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n([-4, 3, 5, 1, -1],1)),1))",
    "io_inp": [
      -4,
      3,
      5,
      1,
      -1
    ],
    "io_out": [
      -2,
      1,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(input,1)),1))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [6, -6]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sort_asc([2, -2]),3),1)))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sort_asc(input),3),1)))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = mul_n([5, -3],1)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [2, -2, 5, 1, -5]\noutput : list = [-5, -2, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([2, -2, 5, 1, -5])",
    "io_inp": [
      2,
      -2,
      5,
      1,
      -5
    ],
    "io_out": [
      -5,
      -2,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [-15, -15]",
    "output": "generated_output : list = sort_des(take(drop(mul_n(mul_n([3, 5, 5],-3),1),1),26))",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(mul_n(mul_n(input,-3),1),1),26))"
  },
  {
    "input": "input : list = [3, -5, -5, 3, 5, -5]\noutput : list = [1, -1, -1, -9, -9, -9]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(reverse([3, -5, -5, 3, 5, -5]),4)),1))",
    "io_inp": [
      3,
      -5,
      -5,
      3,
      5,
      -5
    ],
    "io_out": [
      1,
      -1,
      -1,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(reverse(input),4)),1))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des([-1, -1]))))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [-5, 3, 1, -5, 1, 2]\noutput : list = [2, 8, 10, 2]",
    "output": "generated_output : list = add_n(drop(add_n(reverse(add_n([-5, 3, 1, -5, 1, 2],5)),-3),2),5)",
    "io_inp": [
      -5,
      3,
      1,
      -5,
      1,
      2
    ],
    "io_out": [
      2,
      8,
      10,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(reverse(add_n(input,5)),-3),2),5)"
  },
  {
    "input": "input : list = [-3, -4, 0, 1]\noutput : list = [16, 8, -24]",
    "output": "generated_output : list = mul_n(add_n(reverse(drop(mul_n([-3, -4, 0, 1],4),1)),4),2)",
    "io_inp": [
      -3,
      -4,
      0,
      1
    ],
    "io_out": [
      16,
      8,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(drop(mul_n(input,4),1)),4),2)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [0, 18]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(drop([-4, -3, 3],1),3)),-3),-3)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      0,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(drop(input,1),3)),-3),-3)"
  },
  {
    "input": "input : list = [5, 3, 1, 2, -5]\noutput : list = [12, 10, 9, 8, 2]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(add_n([5, 3, 1, 2, -5],5),-2))),8)",
    "io_inp": [
      5,
      3,
      1,
      2,
      -5
    ],
    "io_out": [
      12,
      10,
      9,
      8,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(add_n(input,5),-2))),8)"
  },
  {
    "input": "input : list = [-4, -2, -3, -1, -5]\noutput : list = [-1, -2, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(drop([-4, -2, -3, -1, -5],1)))",
    "io_inp": [
      -4,
      -2,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-3, -5, -5]\noutput : list = [-3, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([-3, -5, -5]))",
    "io_inp": [
      -3,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 0, -1, 3]\noutput : list = [-9, -9, -12, -13]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_asc([3, 0, -1, 3])),3),-4),-5)",
    "io_inp": [
      3,
      0,
      -1,
      3
    ],
    "io_out": [
      -9,
      -9,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_asc(input)),3),-4),-5)"
  },
  {
    "input": "input : list = [3, 4, -1, 1]\noutput : list = [0, 1, -4, -2]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sub_n([3, 4, -1, 1],4)),2)),3)",
    "io_inp": [
      3,
      4,
      -1,
      1
    ],
    "io_out": [
      0,
      1,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sub_n(input,4)),2)),3)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [3, 3, 9]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(reverse([0, 2, 0]),3),3)),44)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(reverse(input),3),3)),44)"
  },
  {
    "input": "input : list = [-4, -2, -5, 0, 5, -5]\noutput : list = [7, 2, 0, -2, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(add_n([-4, -2, -5, 0, 5, -5],-1)),3)))",
    "io_inp": [
      -4,
      -2,
      -5,
      0,
      5,
      -5
    ],
    "io_out": [
      7,
      2,
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(add_n(input,-1)),3)))"
  },
  {
    "input": "input : list = [-3, 4, 2, 5, 0]\noutput : list = [0, 7, 5]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(take([-3, 4, 2, 5, 0],3),-2),3),18),4)",
    "io_inp": [
      -3,
      4,
      2,
      5,
      0
    ],
    "io_out": [
      0,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(take(input,3),-2),3),18),4)"
  },
  {
    "input": "input : list = [5, -2, 4, 0, 2]\noutput : list = [3, 5, 7, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(add_n([5, -2, 4, 0, 2],4),1))",
    "io_inp": [
      5,
      -2,
      4,
      0,
      2
    ],
    "io_out": [
      3,
      5,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,4),1))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [18, 18]",
    "output": "generated_output : list = add_n(mul_n([4, 4],4),2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      18,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),2)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [6, 6, 9]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(reverse([-1, 0, 0]),9)),2),-3)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(reverse(input),9)),2),-3)"
  },
  {
    "input": "input : list = [4, 1, 1, 1]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(take([4, 1, 1, 1],1)),1),5))",
    "io_inp": [
      4,
      1,
      1,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(take(input,1)),1),5))"
  },
  {
    "input": "input : list = [-1, -3, 0]\noutput : list = [0, 8, 12]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(add_n([-1, -3, 0],-2),-4)),4),4)",
    "io_inp": [
      -1,
      -3,
      0
    ],
    "io_out": [
      0,
      8,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(add_n(input,-2),-4)),4),4)"
  },
  {
    "input": "input : list = [5, -5, -1, -4]\noutput : list = [0, 1, 4, 10]",
    "output": "generated_output : list = sort_asc(add_n([5, -5, -1, -4],5))",
    "io_inp": [
      5,
      -5,
      -1,
      -4
    ],
    "io_out": [
      0,
      1,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [-5, 2, 0, -3, 2, 0]\noutput : list = [-15, -12, -12, -10, -10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(drop([-5, 2, 0, -3, 2, 0],1),4),3)),5)",
    "io_inp": [
      -5,
      2,
      0,
      -3,
      2,
      0
    ],
    "io_out": [
      -15,
      -12,
      -12,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(drop(input,1),4),3)),5)"
  },
  {
    "input": "input : list = [-4, -5, 2, -1, 3, 3]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(take([-4, -5, 2, -1, 3, 3],3),-1)),7),6)",
    "io_inp": [
      -4,
      -5,
      2,
      -1,
      3,
      3
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(take(input,3),-1)),7),6)"
  },
  {
    "input": "input : list = [-4, -3, 2, -3, -4, 1]\noutput : list = [0, 0, 25, 25, 125, 150]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(add_n([-4, -3, 2, -3, -4, 1],4))),-5),-5)",
    "io_inp": [
      -4,
      -3,
      2,
      -3,
      -4,
      1
    ],
    "io_out": [
      0,
      0,
      25,
      25,
      125,
      150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(add_n(input,4))),-5),-5)"
  },
  {
    "input": "input : list = [-5, 1, -5, -1]\noutput : list = [1, -1, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 1, -5, -1])",
    "io_inp": [
      -5,
      1,
      -5,
      -1
    ],
    "io_out": [
      1,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 5, 3, -1]\noutput : list = [2, 0, -4, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des([-1, 5, 3, -1])),3))",
    "io_inp": [
      -1,
      5,
      3,
      -1
    ],
    "io_out": [
      2,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(input)),3))"
  },
  {
    "input": "input : list = [2, -4, -5, -3, -4]\noutput : list = [-5, -4, -6, -5, 1]",
    "output": "generated_output : list = reverse(take(sub_n([2, -4, -5, -3, -4],1),11))",
    "io_inp": [
      2,
      -4,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,1),11))"
  },
  {
    "input": "input : list = [-4, 0, 5, -3, 3]\noutput : list = [5, -3, 3]",
    "output": "generated_output : list = drop([-4, 0, 5, -3, 3],2)",
    "io_inp": [
      -4,
      0,
      5,
      -3,
      3
    ],
    "io_out": [
      5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_des([-3, 1, -4])),-3),3))",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_des(input)),-3),3))"
  },
  {
    "input": "input : list = [-2, 4, 1, -2, 5, -2]\noutput : list = [-2, 4, 1]",
    "output": "generated_output : list = take(take(take([-2, 4, 1, -2, 5, -2],3),23),31)",
    "io_inp": [
      -2,
      4,
      1,
      -2,
      5,
      -2
    ],
    "io_out": [
      -2,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(take(take(input,3),23),31)"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [-1, 2, -19]",
    "output": "generated_output : list = take(take(sub_n(add_n(mul_n([-1, -2, 5],-3),-2),2),26),13)",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      -1,
      2,
      -19
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(mul_n(input,-3),-2),2),26),13)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [10, 6]",
    "output": "generated_output : list = sort_des(mul_n([-3, -5],-2))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [0, 1, 5, -1]\noutput : list = [4, 2, -6, 6]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(reverse([0, 1, 5, -1])),-2),33),-2)",
    "io_inp": [
      0,
      1,
      5,
      -1
    ],
    "io_out": [
      4,
      2,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(reverse(input)),-2),33),-2)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = sort_des(mul_n(reverse([1, 0, -1]),-1))",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-9, -10]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(add_n([-1, 0],1),9),5)),-5)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(add_n(input,1),9),5)),-5)"
  },
  {
    "input": "input : list = [2, 5, 2, -1, -5]\noutput : list = [140, 60, 0, 0, -60]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(add_n([2, 5, 2, -1, -5],3),5)),5),-4)",
    "io_inp": [
      2,
      5,
      2,
      -1,
      -5
    ],
    "io_out": [
      140,
      60,
      0,
      0,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(add_n(input,3),5)),5),-4)"
  },
  {
    "input": "input : list = [-3, 4, 1]\noutput : list = [3]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(take([-3, 4, 1],1))),-1),24)",
    "io_inp": [
      -3,
      4,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(take(input,1))),-1),24)"
  },
  {
    "input": "input : list = [5, 0, -4, 4, 5, 5]\noutput : list = [5, 5, 5, 4, 0, -4]",
    "output": "generated_output : list = sort_des([5, 0, -4, 4, 5, 5])",
    "io_inp": [
      5,
      0,
      -4,
      4,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-2, -8]",
    "output": "generated_output : list = add_n([2, -4],-4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, 5, 1, 2, -2, -1]\noutput : list = [5, 9, 17, 21, 29, 33]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(reverse([4, 5, 1, 2, -2, -1])),-4),4),-3)",
    "io_inp": [
      4,
      5,
      1,
      2,
      -2,
      -1
    ],
    "io_out": [
      5,
      9,
      17,
      21,
      29,
      33
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(reverse(input)),-4),4),-3)"
  },
  {
    "input": "input : list = [-4, -4, -4, 0]\noutput : list = [-8, -8, -4]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(sort_asc([-4, -4, -4, 0])),3),4))",
    "io_inp": [
      -4,
      -4,
      -4,
      0
    ],
    "io_out": [
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(sort_asc(input)),3),4))"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [-12, -15, -16]",
    "output": "generated_output : list = add_n(add_n(add_n(take(sort_des([0, -4, -3]),9),-4),-4),-4)",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      -12,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(sort_des(input),9),-4),-4),-4)"
  },
  {
    "input": "input : list = [2, 0, -1, 4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n(drop([2, 0, -1, 4],2),2),7)),5)",
    "io_inp": [
      2,
      0,
      -1,
      4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(drop(input,2),2),7)),5)"
  },
  {
    "input": "input : list = [4, 2, -4, 5, 0]\noutput : list = [1, 6, -3, 3, 5]",
    "output": "generated_output : list = sub_n(reverse([4, 2, -4, 5, 0]),-1)",
    "io_inp": [
      4,
      2,
      -4,
      5,
      0
    ],
    "io_out": [
      1,
      6,
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-4, -2, 1]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(reverse([-4, -2, 1])),-3)))",
    "io_inp": [
      -4,
      -2,
      1
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [9, -15]",
    "output": "generated_output : list = mul_n([3, -5],3)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, 3, 4, -1]\noutput : list = [3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(take([0, 3, 4, -1],1))),3))",
    "io_inp": [
      0,
      3,
      4,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(take(input,1))),3))"
  },
  {
    "input": "input : list = [-4, -4, 0]\noutput : list = [8, 20, 20]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(add_n([-4, -4, 0],-3),-3),1)))",
    "io_inp": [
      -4,
      -4,
      0
    ],
    "io_out": [
      8,
      20,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(add_n(input,-3),-3),1)))"
  },
  {
    "input": "input : list = [4, 5, -4]\noutput : list = [-5, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n([4, 5, -4],-1)))",
    "io_inp": [
      4,
      5,
      -4
    ],
    "io_out": [
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-1)))"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = sort_des([2, 4, -4])",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, 2, -5, 1, -3]\noutput : list = [5, 11, 14, 26, 29, 32]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(add_n([-4, 4, 2, -5, 1, -3],-4),-3))),5)",
    "io_inp": [
      -4,
      4,
      2,
      -5,
      1,
      -3
    ],
    "io_out": [
      5,
      11,
      14,
      26,
      29,
      32
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(add_n(input,-4),-3))),5)"
  },
  {
    "input": "input : list = [-2, 4, 1, 0]\noutput : list = [-20, -5, 0, 10]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(reverse([-2, 4, 1, 0]))),-5))",
    "io_inp": [
      -2,
      4,
      1,
      0
    ],
    "io_out": [
      -20,
      -5,
      0,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(reverse(input))),-5))"
  },
  {
    "input": "input : list = [1, 3, -5, -4, -1]\noutput : list = [3, 1, -1, -4, -5]",
    "output": "generated_output : list = sort_des([1, 3, -5, -4, -1])",
    "io_inp": [
      1,
      3,
      -5,
      -4,
      -1
    ],
    "io_out": [
      3,
      1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, 0, 1]\noutput : list = [-4, -4, 0, 1]",
    "output": "generated_output : list = reverse(take(reverse(add_n(sub_n([-4, -4, 0, 1],-4),-4)),21))",
    "io_inp": [
      -4,
      -4,
      0,
      1
    ],
    "io_out": [
      -4,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(sub_n(input,-4),-4)),21))"
  },
  {
    "input": "input : list = [1, -3, -5, -4, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(add_n(reverse(drop(sort_des([1, -3, -5, -4, -4]),4)),-5),-2)",
    "io_inp": [
      1,
      -3,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(drop(sort_des(input),4)),-5),-2)"
  },
  {
    "input": "input : list = [0, -5, 0, 4]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(take([0, -5, 0, 4],2)))),31)",
    "io_inp": [
      0,
      -5,
      0,
      4
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(take(input,2)))),31)"
  },
  {
    "input": "input : list = [-2, 2, -4, -5, -4]\noutput : list = [110, 90, 90, 50, -30]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(mul_n([-2, 2, -4, -5, -4],4)),2),-5))",
    "io_inp": [
      -2,
      2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      110,
      90,
      90,
      50,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(mul_n(input,4)),2),-5))"
  },
  {
    "input": "input : list = [3, 4, 2]\noutput : list = [3, 5, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse([3, 4, 2]))),-1)",
    "io_inp": [
      3,
      4,
      2
    ],
    "io_out": [
      3,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(input))),-1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(reverse([0, 4]),11))),4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(reverse(input),11))),4)"
  },
  {
    "input": "input : list = [5, -1, 3, 4, 1]\noutput : list = [3, 6, 5, 1, 7]",
    "output": "generated_output : list = mul_n(take(add_n(take(reverse([5, -1, 3, 4, 1]),22),2),22),1)",
    "io_inp": [
      5,
      -1,
      3,
      4,
      1
    ],
    "io_out": [
      3,
      6,
      5,
      1,
      7
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(reverse(input),22),2),22),1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [60, 12]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-1, 3],-4),-3),4)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      60,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-4),-3),4)"
  },
  {
    "input": "input : list = [2, 4, -4, -1, -3, 3]\noutput : list = [-6, -5, -3, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n([2, 4, -4, -1, -3, 3],2),15)))",
    "io_inp": [
      2,
      4,
      -4,
      -1,
      -3,
      3
    ],
    "io_out": [
      -6,
      -5,
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(input,2),15)))"
  },
  {
    "input": "input : list = [1, -3, 5, 1, 3]\noutput : list = [-1, 3, -5, -1, -3]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(reverse([1, -3, 5, 1, 3])),-1)))",
    "io_inp": [
      1,
      -3,
      5,
      1,
      3
    ],
    "io_out": [
      -1,
      3,
      -5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-5, 2, -1, 2, 1, 4]\noutput : list = [-5]",
    "output": "generated_output : list = take(take([-5, 2, -1, 2, 1, 4],1),4)",
    "io_inp": [
      -5,
      2,
      -1,
      2,
      1,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,1),4)"
  },
  {
    "input": "input : list = [-5, -4, -5, 5, -3, 1]\noutput : list = [75, 75, 60, 45, -15, -75]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sort_asc([-5, -4, -5, 5, -3, 1]),-3))),5)",
    "io_inp": [
      -5,
      -4,
      -5,
      5,
      -3,
      1
    ],
    "io_out": [
      75,
      75,
      60,
      45,
      -15,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sort_asc(input),-3))),5)"
  },
  {
    "input": "input : list = [0, 5, 1, -1, 4, -3]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(take([0, 5, 1, -1, 4, -3],4),3))))",
    "io_inp": [
      0,
      5,
      1,
      -1,
      4,
      -3
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(take(input,4),3))))"
  },
  {
    "input": "input : list = [1, 5, 4, 0, 2, 5]\noutput : list = [0, 1, 2, 4, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(reverse(add_n([1, 5, 4, 0, 2, 5],-1)))),1)",
    "io_inp": [
      1,
      5,
      4,
      0,
      2,
      5
    ],
    "io_out": [
      0,
      1,
      2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(reverse(add_n(input,-1)))),1)"
  },
  {
    "input": "input : list = [4, 5, -3, 1, -2]\noutput : list = [3, 4, 7, 10, 11]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(sub_n([4, 5, -3, 1, -2],-4))),1),3)",
    "io_inp": [
      4,
      5,
      -3,
      1,
      -2
    ],
    "io_out": [
      3,
      4,
      7,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(sub_n(input,-4))),1),3)"
  },
  {
    "input": "input : list = [0, 3, 4, -4]\noutput : list = [-8, -4, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(sub_n([0, 3, 4, -4],4),4),22),4))",
    "io_inp": [
      0,
      3,
      4,
      -4
    ],
    "io_out": [
      -8,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(sub_n(input,4),4),22),4))"
  },
  {
    "input": "input : list = [2, 5, -4, -4, 5]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 5, -4, -4, 5],1)",
    "io_inp": [
      2,
      5,
      -4,
      -4,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = drop([-2, 3, 3],1)",
    "io_inp": [
      -2,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [16, -2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(reverse([-3, 3]),3),-5)),-2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      16,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(reverse(input),3),-5)),-2)"
  },
  {
    "input": "input : list = [-4, -4, 1, 0, 2, 5]\noutput : list = [-2, -2, 2, 3, 4, 7]",
    "output": "generated_output : list = add_n(sort_asc([-4, -4, 1, 0, 2, 5]),2)",
    "io_inp": [
      -4,
      -4,
      1,
      0,
      2,
      5
    ],
    "io_out": [
      -2,
      -2,
      2,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [1, 3, 2, -1, 5, 2]\noutput : list = [5, -1, -4, -4, -7, -13]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(mul_n([1, 3, 2, -1, 5, 2],-3)),2),-1),-1)",
    "io_inp": [
      1,
      3,
      2,
      -1,
      5,
      2
    ],
    "io_out": [
      5,
      -1,
      -4,
      -4,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(mul_n(input,-3)),2),-1),-1)"
  },
  {
    "input": "input : list = [-5, 2, -3, -3]\noutput : list = [-15, -15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(drop([-5, 2, -3, -3],2)))),5)",
    "io_inp": [
      -5,
      2,
      -3,
      -3
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(drop(input,2)))),5)"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [-19, -19, -83]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n([1, 1, 5],4),5),-4),3)",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      -19,
      -19,
      -83
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(input,4),5),-4),3)"
  },
  {
    "input": "input : list = [-2, -1, 5, 0, 1]\noutput : list = [10, 6, 5, 4, 3]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(sort_des([-2, -1, 5, 0, 1]),3),25),-4),-4)",
    "io_inp": [
      -2,
      -1,
      5,
      0,
      1
    ],
    "io_out": [
      10,
      6,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(sort_des(input),3),25),-4),-4)"
  },
  {
    "input": "input : list = [3, -1, -4, 3, 2]\noutput : list = [8, 4, 1, 8, 7]",
    "output": "generated_output : list = sub_n([3, -1, -4, 3, 2],-5)",
    "io_inp": [
      3,
      -1,
      -4,
      3,
      2
    ],
    "io_out": [
      8,
      4,
      1,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, -3, -1, -1, 5, -5]\noutput : list = [-9, -7, -5, -5, -4, 1]",
    "output": "generated_output : list = add_n(take(sort_asc([0, -3, -1, -1, 5, -5]),7),-4)",
    "io_inp": [
      0,
      -3,
      -1,
      -1,
      5,
      -5
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),7),-4)"
  },
  {
    "input": "input : list = [4, 4, 1, -1]\noutput : list = [4, -4]",
    "output": "generated_output : list = take(mul_n(drop([4, 4, 1, -1],2),4),10)",
    "io_inp": [
      4,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,2),4),10)"
  },
  {
    "input": "input : list = [-4, -1, 2, 3]\noutput : list = [-16, -4, 8, 12]",
    "output": "generated_output : list = mul_n(mul_n([-4, -1, 2, 3],-4),-1)",
    "io_inp": [
      -4,
      -1,
      2,
      3
    ],
    "io_out": [
      -16,
      -4,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),-1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des([5, -2]),1)))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(input),1)))"
  },
  {
    "input": "input : list = [-1, 1, -5, -5, -4]\noutput : list = [-5, -5, -4]",
    "output": "generated_output : list = take(sort_asc(reverse(drop(sort_des([-1, 1, -5, -5, -4]),2))),37)",
    "io_inp": [
      -1,
      1,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(drop(sort_des(input),2))),37)"
  },
  {
    "input": "input : list = [4, 2, 5, -2, -5, 4]\noutput : list = [8, 6, 9, 2, -1, 8]",
    "output": "generated_output : list = add_n([4, 2, 5, -2, -5, 4],4)",
    "io_inp": [
      4,
      2,
      5,
      -2,
      -5,
      4
    ],
    "io_out": [
      8,
      6,
      9,
      2,
      -1,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, -2, 4, 1]\noutput : list = [0]",
    "output": "generated_output : list = take(take(add_n(reverse(sub_n([5, -2, 4, 1],-4)),-5),30),1)",
    "io_inp": [
      5,
      -2,
      4,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(sub_n(input,-4)),-5),30),1)"
  },
  {
    "input": "input : list = [-4, -4, 0, -3]\noutput : list = [-4, -4, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(reverse([-4, -4, 0, -3])),21)))",
    "io_inp": [
      -4,
      -4,
      0,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(reverse(input)),21)))"
  },
  {
    "input": "input : list = [0, 3, -1, 4]\noutput : list = [-1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([0, 3, -1, 4]))",
    "io_inp": [
      0,
      3,
      -1,
      4
    ],
    "io_out": [
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-59, -99]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(drop([5, -3, -5],1),-4),-5),1))",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -59,
      -99
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(drop(input,1),-4),-5),1))"
  },
  {
    "input": "input : list = [1, -2, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse(reverse(drop([1, -2, 2, 2],2)))",
    "io_inp": [
      1,
      -2,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-13, 8]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(mul_n([-2, 5],-3),2)),2),2)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -13,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(mul_n(input,-3),2)),2),2)"
  },
  {
    "input": "input : list = [2, 3, 0, -5, -3]\noutput : list = [9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(take([2, 3, 0, -5, -3],1),3))),-4)",
    "io_inp": [
      2,
      3,
      0,
      -5,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(take(input,1),3))),-4)"
  },
  {
    "input": "input : list = [-5, -1, -4]\noutput : list = [-72, -57, -12]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n([-5, -1, -4],-5),-3),3))",
    "io_inp": [
      -5,
      -1,
      -4
    ],
    "io_out": [
      -72,
      -57,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(input,-5),-3),3))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-4, -6]",
    "output": "generated_output : list = take(sort_des(sub_n([-1, -3],3)),6)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,3)),6)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [5, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_des([-3, 3]),14))),-2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_des(input),14))),-2)"
  },
  {
    "input": "input : list = [5, -3, -3, 1, 2, -1]\noutput : list = [-20, 20, 20, 0, -5, 10]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(add_n([5, -3, -3, 1, 2, -1],-2),-5),-2),3),43)",
    "io_inp": [
      5,
      -3,
      -3,
      1,
      2,
      -1
    ],
    "io_out": [
      -20,
      20,
      20,
      0,
      -5,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(add_n(input,-2),-5),-2),3),43)"
  },
  {
    "input": "input : list = [-5, -3, 4, -1]\noutput : list = [4, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-5, -3, 4, -1]))",
    "io_inp": [
      -5,
      -3,
      4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 3, 1, 1, -3, -5]\noutput : list = [-20, -15, -5, -5, 15, 25]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([4, 3, 1, 1, -3, -5],-1)),5)",
    "io_inp": [
      4,
      3,
      1,
      1,
      -3,
      -5
    ],
    "io_out": [
      -20,
      -15,
      -5,
      -5,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-1)),5)"
  },
  {
    "input": "input : list = [5, 4, -5, 3, 0]\noutput : list = [-3, -2, -1, 2, 7]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n([5, 4, -5, 3, 0],3),-5)),-1)",
    "io_inp": [
      5,
      4,
      -5,
      3,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(input,3),-5)),-1)"
  },
  {
    "input": "input : list = [3, -1, -1, 1, 1]\noutput : list = [-1, -1, 1, 1, 3]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sub_n([3, -1, -1, 1, 1],-2)),-2),26),1)",
    "io_inp": [
      3,
      -1,
      -1,
      1,
      1
    ],
    "io_out": [
      -1,
      -1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sub_n(input,-2)),-2),26),1)"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [22, -8, -28]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_asc(reverse([5, -1, -5])),5),-3))",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      22,
      -8,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_asc(reverse(input)),5),-3))"
  },
  {
    "input": "input : list = [-4, 2, -4, 2]\noutput : list = [0, 0, -6, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(add_n([-4, 2, -4, 2],-4)),-2)),29)",
    "io_inp": [
      -4,
      2,
      -4,
      2
    ],
    "io_out": [
      0,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(add_n(input,-4)),-2)),29)"
  },
  {
    "input": "input : list = [4, -4, 0, 3]\noutput : list = [-21, -9, 0, 3]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(add_n([4, -4, 0, 3],-3),15),12)),3)",
    "io_inp": [
      4,
      -4,
      0,
      3
    ],
    "io_out": [
      -21,
      -9,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(add_n(input,-3),15),12)),3)"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-25, 100, 150]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sub_n([-4, 3, -2],2),5),1),-5))",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -25,
      100,
      150
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sub_n(input,2),5),1),-5))"
  },
  {
    "input": "input : list = [3, -1, -5, 5]\noutput : list = [-2, 2, 6, 8]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_des([3, -1, -5, 5]),3))))",
    "io_inp": [
      3,
      -1,
      -5,
      5
    ],
    "io_out": [
      -2,
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [1, -2, -1, 1, 3, -2]\noutput : list = [2, 0, 0, -2, -3, -3]",
    "output": "generated_output : list = sort_des(add_n([1, -2, -1, 1, 3, -2],-1))",
    "io_inp": [
      1,
      -2,
      -1,
      1,
      3,
      -2
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [5, -4, 1, 4, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(drop([5, -4, 1, 4, -4, -2],4)),-2),-2))",
    "io_inp": [
      5,
      -4,
      1,
      4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(drop(input,4)),-2),-2))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc([4, 3])",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [-10, -15, 20]",
    "output": "generated_output : list = mul_n([2, 3, -4],-5)",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      -10,
      -15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 3, -2, -4, -5]\noutput : list = [-3, -2, -7, -9, -10]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(mul_n([2, 3, -2, -4, -5],1)),-3),-2))",
    "io_inp": [
      2,
      3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(mul_n(input,1)),-3),-2))"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = sort_des([-2, 1, 2])",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, 1, 1, -1, -5]\noutput : list = [-60, 12, 36]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(take([3, -5, 1, 1, -1, -5],3),-3))),-4)",
    "io_inp": [
      3,
      -5,
      1,
      1,
      -1,
      -5
    ],
    "io_out": [
      -60,
      12,
      36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(take(input,3),-3))),-4)"
  },
  {
    "input": "input : list = [2, 1, -5, 1]\noutput : list = [-2, -3, -3, -9]",
    "output": "generated_output : list = add_n(take(take(sort_des(sub_n([2, 1, -5, 1],2)),29),38),-2)",
    "io_inp": [
      2,
      1,
      -5,
      1
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(sub_n(input,2)),29),38),-2)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sub_n(reverse(add_n([-4, -4],-3)),3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,-3)),3)"
  },
  {
    "input": "input : list = [4, -5, 4, -3]\noutput : list = [0, -9, 0, -7]",
    "output": "generated_output : list = sub_n([4, -5, 4, -3],4)",
    "io_inp": [
      4,
      -5,
      4,
      -3
    ],
    "io_out": [
      0,
      -9,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, 5, -3]))",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 2, -4, -1]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(take([-5, 2, -4, -1],1),-2),12)))",
    "io_inp": [
      -5,
      2,
      -4,
      -1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(take(input,1),-2),12)))"
  },
  {
    "input": "input : list = [3, -1, 2, 1, -1]\noutput : list = [-2, 0, 1, -2, 2]",
    "output": "generated_output : list = sub_n(add_n(take(take(reverse([3, -1, 2, 1, -1]),12),33),3),4)",
    "io_inp": [
      3,
      -1,
      2,
      1,
      -1
    ],
    "io_out": [
      -2,
      0,
      1,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(reverse(input),12),33),3),4)"
  },
  {
    "input": "input : list = [1, -4, -2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(add_n(drop([1, -4, -2],1),2))",
    "io_inp": [
      1,
      -4,
      -2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,1),2))"
  },
  {
    "input": "input : list = [-3, 0, 0, -4]\noutput : list = [5, 5, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-3, 0, 0, -4],4),-1))",
    "io_inp": [
      -3,
      0,
      0,
      -4
    ],
    "io_out": [
      5,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,4),-1))"
  },
  {
    "input": "input : list = [-5, 0, -4]\noutput : list = [-20, 0, -16]",
    "output": "generated_output : list = mul_n([-5, 0, -4],4)",
    "io_inp": [
      -5,
      0,
      -4
    ],
    "io_out": [
      -20,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, -1, -1]\noutput : list = [-3, -3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_des([5, -1, -1])),28),2))",
    "io_inp": [
      5,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_des(input)),28),2))"
  },
  {
    "input": "input : list = [-3, -2, 1, -3]\noutput : list = [1, 5, 2, 1]",
    "output": "generated_output : list = add_n(reverse([-3, -2, 1, -3]),4)",
    "io_inp": [
      -3,
      -2,
      1,
      -3
    ],
    "io_out": [
      1,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [3, 0, -5, 0, 3, -1]\noutput : list = [-6, -9, -14, -9, -6, -10]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n([3, 0, -5, 0, 3, -1],-5),-3),4),3)",
    "io_inp": [
      3,
      0,
      -5,
      0,
      3,
      -1
    ],
    "io_out": [
      -6,
      -9,
      -14,
      -9,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(input,-5),-3),4),3)"
  },
  {
    "input": "input : list = [-2, 1, 0, 4, -3]\noutput : list = [9, 6, 5, 3, 2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sub_n([-2, 1, 0, 4, -3],-2)),3),17))",
    "io_inp": [
      -2,
      1,
      0,
      4,
      -3
    ],
    "io_out": [
      9,
      6,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sub_n(input,-2)),3),17))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [7, 10]",
    "output": "generated_output : list = reverse(sub_n([5, 2],-5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [4, 4, -1, -4, -2, 2]\noutput : list = [4, 4, 2, -1, -2, -4]",
    "output": "generated_output : list = sort_des([4, 4, -1, -4, -2, 2])",
    "io_inp": [
      4,
      4,
      -1,
      -4,
      -2,
      2
    ],
    "io_out": [
      4,
      4,
      2,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, 4, 4]\noutput : list = [-5, 4, 4, 4]",
    "output": "generated_output : list = take(sort_asc([-5, 4, 4, 4]),15)",
    "io_inp": [
      -5,
      4,
      4,
      4
    ],
    "io_out": [
      -5,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [-4, -1, -4, 2, -1]\noutput : list = [2, 5, -1, 2, -1]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-4, -1, -4, 2, -1]),1),-3)",
    "io_inp": [
      -4,
      -1,
      -4,
      2,
      -1
    ],
    "io_out": [
      2,
      5,
      -1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),1),-3)"
  },
  {
    "input": "input : list = [-2, 3, 5, -4, -1, 0]\noutput : list = [-4, -2, -1, 0, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(sort_des([-2, 3, 5, -4, -1, 0])))))",
    "io_inp": [
      -2,
      3,
      5,
      -4,
      -1,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 4, 1]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = sub_n([5, 4, 1],2)",
    "io_inp": [
      5,
      4,
      1
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, -5, 5]\noutput : list = [-10, -5, 0]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(sort_asc([0, -5, 5]),13),-5)))",
    "io_inp": [
      0,
      -5,
      5
    ],
    "io_out": [
      -10,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(sort_asc(input),13),-5)))"
  },
  {
    "input": "input : list = [4, -1, 3, 1, 5, -2]\noutput : list = [6, 3, -3, -9, -12, -15]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(mul_n([4, -1, 3, 1, 5, -2],-3)))))",
    "io_inp": [
      4,
      -1,
      3,
      1,
      5,
      -2
    ],
    "io_out": [
      6,
      3,
      -3,
      -9,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [3, -3, 4, -1, 5, 4]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(drop([3, -3, 4, -1, 5, 4],4),4),2),3))",
    "io_inp": [
      3,
      -3,
      4,
      -1,
      5,
      4
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(drop(input,4),4),2),3))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(reverse([5, 4]))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-3, -3, -2, 4]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take(take(sort_des(take([-3, -3, -2, 4],1)),5),35))",
    "io_inp": [
      -3,
      -3,
      -2,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(take(input,1)),5),35))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-35, -10]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(sort_asc([2, -3]),4)),5))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -35,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(sort_asc(input),4)),5))"
  },
  {
    "input": "input : list = [4, 4, 5, 4, -1]\noutput : list = [0, 15, 15, 15, 18]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(add_n([4, 4, 5, 4, -1],1),-3)),-1),49)",
    "io_inp": [
      4,
      4,
      5,
      4,
      -1
    ],
    "io_out": [
      0,
      15,
      15,
      15,
      18
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(add_n(input,1),-3)),-1),49)"
  },
  {
    "input": "input : list = [-1, 1, 4, 0, 0, 3]\noutput : list = [-1, -2, -4, -5, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(reverse([-1, 1, 4, 0, 0, 3]),-3),-3),-5))",
    "io_inp": [
      -1,
      1,
      4,
      0,
      0,
      3
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(reverse(input),-3),-3),-5))"
  },
  {
    "input": "input : list = [-3, -3, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = drop([-3, -3, 0, -4],2)",
    "io_inp": [
      -3,
      -3,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -2, 2, 5, -4]\noutput : list = [7, 4, 2, 0, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_des([0, -2, 2, 5, -4]))),2))",
    "io_inp": [
      0,
      -2,
      2,
      5,
      -4
    ],
    "io_out": [
      7,
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_des(input))),2))"
  },
  {
    "input": "input : list = [1, 0, 4, -4]\noutput : list = [8, -8, 0, -2]",
    "output": "generated_output : list = reverse(mul_n([1, 0, 4, -4],-2))",
    "io_inp": [
      1,
      0,
      4,
      -4
    ],
    "io_out": [
      8,
      -8,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [0, 0, 1, 4, -2, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(sort_des(take([0, 0, 1, 4, -2, 1],2)))",
    "io_inp": [
      0,
      0,
      1,
      4,
      -2,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [0, 3, 5, 5]\noutput : list = [0, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(reverse([0, 3, 5, 5])),3),3))",
    "io_inp": [
      0,
      3,
      5,
      5
    ],
    "io_out": [
      0,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(reverse(input)),3),3))"
  },
  {
    "input": "input : list = [1, 5, 3, 3]\noutput : list = [-1, 1, 1, 3]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sub_n([1, 5, 3, 3],1)),-3),-1))",
    "io_inp": [
      1,
      5,
      3,
      3
    ],
    "io_out": [
      -1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sub_n(input,1)),-3),-1))"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take(take([-1, -3, -4],1),8))",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,1),8))"
  },
  {
    "input": "input : list = [-1, -2, -1, 1, 0, 4]\noutput : list = [-10, 14, 8, 20, 26, 20]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(add_n([-1, -2, -1, 1, 0, 4],-1)),3),-4),-2)",
    "io_inp": [
      -1,
      -2,
      -1,
      1,
      0,
      4
    ],
    "io_out": [
      -10,
      14,
      8,
      20,
      26,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(add_n(input,-1)),3),-4),-2)"
  },
  {
    "input": "input : list = [-4, 1, 0]\noutput : list = [1, 0, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc([-4, 1, 0])),12)))",
    "io_inp": [
      -4,
      1,
      0
    ],
    "io_out": [
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc(input)),12)))"
  },
  {
    "input": "input : list = [2, -4, -2, -3, 5]\noutput : list = [5, 2, -2, -3, -4]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(sort_asc([2, -4, -2, -3, 5]))),25))",
    "io_inp": [
      2,
      -4,
      -2,
      -3,
      5
    ],
    "io_out": [
      5,
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(sort_asc(input))),25))"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [3, 3, 6]",
    "output": "generated_output : list = take(sub_n([2, 2, 5],-1),8)",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),8)"
  },
  {
    "input": "input : list = [3, -1, 0, 3, 5, 3]\noutput : list = [-1, 0, 3, 3, 3, 5]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc([3, -1, 0, 3, 5, 3]))),45)",
    "io_inp": [
      3,
      -1,
      0,
      3,
      5,
      3
    ],
    "io_out": [
      -1,
      0,
      3,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(input))),45)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [5, 5, -5]",
    "output": "generated_output : list = sort_des([-5, 5, 5])",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -4, -2]\noutput : list = [-2, -4, -4, 0]",
    "output": "generated_output : list = reverse(take(take(sub_n(add_n([0, -4, -4, -2],-1),-1),22),10))",
    "io_inp": [
      0,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(add_n(input,-1),-1),22),10))"
  },
  {
    "input": "input : list = [5, 3, 2, 0]\noutput : list = [-12, -8, -6, -2]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(add_n([5, 3, 2, 0],1)),-1)),2)",
    "io_inp": [
      5,
      3,
      2,
      0
    ],
    "io_out": [
      -12,
      -8,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(add_n(input,1)),-1)),2)"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [-25, -20, 10]",
    "output": "generated_output : list = mul_n([5, 4, -2],-5)",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      -25,
      -20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -5, -1, -2]\noutput : list = [-10]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(take([-4, -5, -1, -2],1)),-3)),3)",
    "io_inp": [
      -4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(take(input,1)),-3)),3)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [0, -5, -5]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des([-3, -3, 2])),-2),-4))",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des(input)),-2),-4))"
  },
  {
    "input": "input : list = [2, -3, 2, -5, -3, 3]\noutput : list = [-2, -9, -7, -1]",
    "output": "generated_output : list = add_n(drop([2, -3, 2, -5, -3, 3],2),-4)",
    "io_inp": [
      2,
      -3,
      2,
      -5,
      -3,
      3
    ],
    "io_out": [
      -2,
      -9,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [-4, -2, -3, 2, -1, -2]\noutput : list = [-3, -6, -7, -7, -8, -9]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(add_n([-4, -2, -3, 2, -1, -2],-5)),13)))",
    "io_inp": [
      -4,
      -2,
      -3,
      2,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -6,
      -7,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(add_n(input,-5)),13)))"
  },
  {
    "input": "input : list = [-2, 1, 4, -5]\noutput : list = [27, 12, -3, -18]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(mul_n([-2, 1, 4, -5],-5),19),-1),1))",
    "io_inp": [
      -2,
      1,
      4,
      -5
    ],
    "io_out": [
      27,
      12,
      -3,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(mul_n(input,-5),19),-1),1))"
  },
  {
    "input": "input : list = [-1, -1, 4, -1, 3, -2]\noutput : list = [2, 1, -3, -3, -3, -4]",
    "output": "generated_output : list = sort_des(add_n([-1, -1, 4, -1, 3, -2],-2))",
    "io_inp": [
      -1,
      -1,
      4,
      -1,
      3,
      -2
    ],
    "io_out": [
      2,
      1,
      -3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [12, 12]",
    "output": "generated_output : list = take(take(mul_n(sort_des(sort_des([-4, -4])),-3),20),34)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(sort_des(input)),-3),20),34)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [-6, -6, -11]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sub_n([1, -4, 1],3)),1)),3)",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      -6,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sub_n(input,3)),1)),3)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n([0, 2, 0],3))),1),-2)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n(input,3))),1),-2)"
  },
  {
    "input": "input : list = [-4, -1, -5, 5, -3]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(take([-4, -1, -5, 5, -3],1)),-2)),1)",
    "io_inp": [
      -4,
      -1,
      -5,
      5,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(take(input,1)),-2)),1)"
  },
  {
    "input": "input : list = [3, -5, 1, -1, 2]\noutput : list = [2, -1, 1, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 1, -1, 2])",
    "io_inp": [
      3,
      -5,
      1,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -3, 2, -2, 0, -1]\noutput : list = [6, 5, 3, 2, 1, 0]",
    "output": "generated_output : list = take(sort_des(sub_n([3, -3, 2, -2, 0, -1],-3)),16)",
    "io_inp": [
      3,
      -3,
      2,
      -2,
      0,
      -1
    ],
    "io_out": [
      6,
      5,
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,-3)),16)"
  },
  {
    "input": "input : list = [1, -3, -5, -3]\noutput : list = [-3, -1, -1, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc([1, -3, -5, -3]),15),-2)",
    "io_inp": [
      1,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),15),-2)"
  },
  {
    "input": "input : list = [-2, 1, 4]\noutput : list = [-8, -2, 4]",
    "output": "generated_output : list = reverse(mul_n([-2, 1, 4],-2))",
    "io_inp": [
      -2,
      1,
      4
    ],
    "io_out": [
      -8,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [1, -9, -5]",
    "output": "generated_output : list = sub_n(sub_n([5, -5, -1],5),-1)",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      1,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),-1)"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [5, 11, 11]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([-1, 5, 5]),4),-2)",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      5,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),4),-2)"
  },
  {
    "input": "input : list = [3, -1, 3, 2, -2]\noutput : list = [3, 3, 2, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_des([3, -1, 3, 2, -2]))),26))",
    "io_inp": [
      3,
      -1,
      3,
      2,
      -2
    ],
    "io_out": [
      3,
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_des(input))),26))"
  },
  {
    "input": "input : list = [-1, 2, -4, 3, 0]\noutput : list = [0, 3, -4, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, -4, 3, 0])",
    "io_inp": [
      -1,
      2,
      -4,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      -4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 3, 1]\noutput : list = [0]",
    "output": "generated_output : list = take(take([0, 4, 3, 1],1),10)",
    "io_inp": [
      0,
      4,
      3,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(take(input,1),10)"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [-12, 28, 36]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(reverse([-5, -4, 1]),-4),2)),4)",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      -12,
      28,
      36
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(reverse(input),-4),2)),4)"
  },
  {
    "input": "input : list = [-2, 3, 4]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(take([-2, 3, 4],1),5),3),2))",
    "io_inp": [
      -2,
      3,
      4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(take(input,1),5),3),2))"
  },
  {
    "input": "input : list = [0, -1, -5]\noutput : list = [100, 20, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(sort_asc([0, -1, -5]),15),4),-5))",
    "io_inp": [
      0,
      -1,
      -5
    ],
    "io_out": [
      100,
      20,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(sort_asc(input),15),4),-5))"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [7, 5, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(add_n([2, -5, 4],1),1),-2)))",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      7,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(add_n(input,1),1),-2)))"
  },
  {
    "input": "input : list = [2, -3, -2, -1, 2, -5]\noutput : list = [1, -4, -3, -2, 1, -6]",
    "output": "generated_output : list = take(reverse(add_n(reverse(add_n([2, -3, -2, -1, 2, -5],3)),-4)),26)",
    "io_inp": [
      2,
      -3,
      -2,
      -1,
      2,
      -5
    ],
    "io_out": [
      1,
      -4,
      -3,
      -2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(add_n(input,3)),-4)),26)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(take([-3, 1, 3],1),15),3),4),2)",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(take(input,1),15),3),4),2)"
  },
  {
    "input": "input : list = [3, 1, -5, 2, 2, 3]\noutput : list = [4, 4, 3, 3, 2, -4]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_asc([3, 1, -5, 2, 2, 3]),3)),4))",
    "io_inp": [
      3,
      1,
      -5,
      2,
      2,
      3
    ],
    "io_out": [
      4,
      4,
      3,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_asc(input),3)),4))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-20, 10]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(mul_n([-3, 3],-5),-2)),-3))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -20,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(mul_n(input,-5),-2)),-3))"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [5, 5]",
    "output": "generated_output : list = mul_n(sort_des(drop([0, 1, 1],1)),5)",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,1)),5)"
  },
  {
    "input": "input : list = [-2, 3, -2, 0, -1]\noutput : list = [2, 7, 2, 4, 3]",
    "output": "generated_output : list = take(sub_n([-2, 3, -2, 0, -1],-4),26)",
    "io_inp": [
      -2,
      3,
      -2,
      0,
      -1
    ],
    "io_out": [
      2,
      7,
      2,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),26)"
  },
  {
    "input": "input : list = [5, -5, -4, 1, 3]\noutput : list = [7, 5, 3, -2, -3]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(sub_n([5, -5, -4, 1, 3],-3)),7)),1)",
    "io_inp": [
      5,
      -5,
      -4,
      1,
      3
    ],
    "io_out": [
      7,
      5,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(sub_n(input,-3)),7)),1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [0, -4]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n([-1, 3],4),-5)),-2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(input,4),-5)),-2)"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = sort_asc([-5, -1, 0])",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 0, 3, 2, -4]\noutput : list = [-5, -3, -1, 1, 2]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sub_n([-2, 0, 3, 2, -4],1)))),19)",
    "io_inp": [
      -2,
      0,
      3,
      2,
      -4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sub_n(input,1)))),19)"
  },
  {
    "input": "input : list = [-5, -4, -4, 5, 0, 5]\noutput : list = [-80, -80, 0, 64, 64, 80]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(reverse([-5, -4, -4, 5, 0, 5]),23),-4),4))",
    "io_inp": [
      -5,
      -4,
      -4,
      5,
      0,
      5
    ],
    "io_out": [
      -80,
      -80,
      0,
      64,
      64,
      80
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(reverse(input),23),-4),4))"
  },
  {
    "input": "input : list = [-4, -2, 3, 2, -2]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = reverse(sub_n(drop([-4, -2, 3, 2, -2],2),-2))",
    "io_inp": [
      -4,
      -2,
      3,
      2,
      -2
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,2),-2))"
  },
  {
    "input": "input : list = [-1, 1, -4, 1]\noutput : list = [-1, -1, -3, -6]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des([-1, 1, -4, 1]),7),-2))",
    "io_inp": [
      -1,
      1,
      -4,
      1
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(input),7),-2))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2]",
    "output": "generated_output : list = take(reverse(sort_asc(drop(reverse([2, 0]),1))),34)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(drop(reverse(input),1))),34)"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [-6, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des([2, -3, -3]),-2)),2)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      -6,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(input),-2)),2)"
  },
  {
    "input": "input : list = [5, 3, 5, -1, 0, -3]\noutput : list = [-5, -3, -2, 1, 3, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([5, 3, 5, -1, 0, -3])),-2)",
    "io_inp": [
      5,
      3,
      5,
      -1,
      0,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = sub_n([3, 4],-1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, 5, -3, -3, -4, 1]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(take([4, 5, -3, -3, -4, 1],2),2))),52)",
    "io_inp": [
      4,
      5,
      -3,
      -3,
      -4,
      1
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(take(input,2),2))),52)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [5]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc([-3, 5, 5]),1)),1)",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(input),1)),1)"
  },
  {
    "input": "input : list = [-4, -3, 3, -3]\noutput : list = [-8, -7, -7, -1]",
    "output": "generated_output : list = sort_asc(add_n([-4, -3, 3, -3],-4))",
    "io_inp": [
      -4,
      -3,
      3,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [0, 0, 1, 3, -1, -5]\noutput : list = [-2, -2, -1, 1, -3, -7]",
    "output": "generated_output : list = add_n([0, 0, 1, 3, -1, -5],-2)",
    "io_inp": [
      0,
      0,
      1,
      3,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 5, 1]\noutput : list = [-12, 4, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([-3, 5, 1])),4)",
    "io_inp": [
      -3,
      5,
      1
    ],
    "io_out": [
      -12,
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),4)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des([-5, -5]),-1)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(input),-1)))"
  },
  {
    "input": "input : list = [-4, -2, 4, 5, 3]\noutput : list = [-5, -4, -3, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(mul_n([-4, -2, 4, 5, 3],-1)))))",
    "io_inp": [
      -4,
      -2,
      4,
      5,
      3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [1, 1, -5, 1, -1]\noutput : list = [-12, -12, -12, -6, 6]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(reverse([1, 1, -5, 1, -1]),3)),-3),45)",
    "io_inp": [
      1,
      1,
      -5,
      1,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -12,
      -6,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(reverse(input),3)),-3),45)"
  },
  {
    "input": "input : list = [0, -2, 0, 0, 1]\noutput : list = [-1, 1, 1, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(add_n([0, -2, 0, 0, 1],2))),-1)",
    "io_inp": [
      0,
      -2,
      0,
      0,
      1
    ],
    "io_out": [
      -1,
      1,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(add_n(input,2))),-1)"
  },
  {
    "input": "input : list = [4, 2, -5, 1, -5]\noutput : list = [-1, 5, -1]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(drop([4, 2, -5, 1, -5],2),3),31),2),-5)",
    "io_inp": [
      4,
      2,
      -5,
      1,
      -5
    ],
    "io_out": [
      -1,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(drop(input,2),3),31),2),-5)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc([-1, -2]),1),1),-1),-1)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc(input),1),1),-1),-1)"
  },
  {
    "input": "input : list = [1, -1, -1, -1]\noutput : list = [-1, -1, -1, 1]",
    "output": "generated_output : list = reverse([1, -1, -1, -1])",
    "io_inp": [
      1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, -3, -4, 0]\noutput : list = [-4, -3, -3, 0, 5]",
    "output": "generated_output : list = take(sort_asc(reverse([5, -3, -3, -4, 0])),8)",
    "io_inp": [
      5,
      -3,
      -3,
      -4,
      0
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(input)),8)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [3, 0, -5]",
    "output": "generated_output : list = mul_n(sort_asc([0, -3, 5]),-1)",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [4, 3, -1, -5, 1]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = reverse(take([4, 3, -1, -5, 1],3))",
    "io_inp": [
      4,
      3,
      -1,
      -5,
      1
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-4, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n([3, 0],5)))),2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n(input,5)))),2)"
  },
  {
    "input": "input : list = [3, -3, -4, -3, 2]\noutput : list = [0, 15, 18, 15, -3]",
    "output": "generated_output : list = reverse(mul_n(take(take(add_n([3, -3, -4, -3, 2],-2),24),24),-3))",
    "io_inp": [
      3,
      -3,
      -4,
      -3,
      2
    ],
    "io_out": [
      0,
      15,
      18,
      15,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(add_n(input,-2),24),24),-3))"
  },
  {
    "input": "input : list = [5, 3, 5, -2, 5, -5]\noutput : list = [8, -1, -16, -22, -22, -22]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(mul_n([5, 3, 5, -2, 5, -5],-3)),4)),-3)",
    "io_inp": [
      5,
      3,
      5,
      -2,
      5,
      -5
    ],
    "io_out": [
      8,
      -1,
      -16,
      -22,
      -22,
      -22
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(mul_n(input,-3)),4)),-3)"
  },
  {
    "input": "input : list = [4, 4, -4, -5]\noutput : list = [-4, -4, 4, 5]",
    "output": "generated_output : list = mul_n([4, 4, -4, -5],-1)",
    "io_inp": [
      4,
      4,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -4,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-8, -5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-4, -1]),4))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),4))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(add_n([-1, 4],-5))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [4, -5, -1, -4, 2, 2]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(drop(take(sort_asc([4, -5, -1, -4, 2, 2]),25),5),-1)",
    "io_inp": [
      4,
      -5,
      -1,
      -4,
      2,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(sort_asc(input),25),5),-1)"
  },
  {
    "input": "input : list = [-5, 2, -3, 3]\noutput : list = [-7, -5, 0, 1]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(sort_asc([-5, 2, -3, 3]),-2))),32)",
    "io_inp": [
      -5,
      2,
      -3,
      3
    ],
    "io_out": [
      -7,
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(sort_asc(input),-2))),32)"
  },
  {
    "input": "input : list = [3, -4, 0]\noutput : list = [5, 2, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_des([3, -4, 0])))),2)",
    "io_inp": [
      3,
      -4,
      0
    ],
    "io_out": [
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [3, -3, 1, 2, 2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -3, 1, 2, 2],1)",
    "io_inp": [
      3,
      -3,
      1,
      2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -3, 0, 3]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(take([-1, -5, -3, 0, 3],1))),2),33)",
    "io_inp": [
      -1,
      -5,
      -3,
      0,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(take(input,1))),2),33)"
  },
  {
    "input": "input : list = [1, -5, -3, -5, -2, -4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(drop([1, -5, -3, -5, -2, -4],4),-2)),17),4)",
    "io_inp": [
      1,
      -5,
      -3,
      -5,
      -2,
      -4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(drop(input,4),-2)),17),4)"
  },
  {
    "input": "input : list = [1, 4, -4, -5, 2, -4]\noutput : list = [13, 11, 11, 1, -1, -5]",
    "output": "generated_output : list = add_n(sort_des(mul_n([1, 4, -4, -5, 2, -4],-2)),3)",
    "io_inp": [
      1,
      4,
      -4,
      -5,
      2,
      -4
    ],
    "io_out": [
      13,
      11,
      11,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,-2)),3)"
  },
  {
    "input": "input : list = [-3, -3, -4, -4, 1, -3]\noutput : list = [-4, -8, -8, -8, -9, -9]",
    "output": "generated_output : list = take(sort_des(sub_n([-3, -3, -4, -4, 1, -3],5)),20)",
    "io_inp": [
      -3,
      -3,
      -4,
      -4,
      1,
      -3
    ],
    "io_out": [
      -4,
      -8,
      -8,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,5)),20)"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [3, 0, -4]",
    "output": "generated_output : list = reverse(sort_asc([-4, 0, 3]))",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 0, 5, 2, 4, 0]\noutput : list = [0, 4, 2, 5, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, 5, 2, 4, 0])",
    "io_inp": [
      -5,
      0,
      5,
      2,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      2,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -1, -4, -4, 0, 0]\noutput : list = [-14, -14, 1, 6, 6, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(mul_n([1, -1, -4, -4, 0, 0],5),1),-5),1))",
    "io_inp": [
      1,
      -1,
      -4,
      -4,
      0,
      0
    ],
    "io_out": [
      -14,
      -14,
      1,
      6,
      6,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(mul_n(input,5),1),-5),1))"
  },
  {
    "input": "input : list = [0, 0, 5, -5, -1]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take([0, 0, 5, -5, -1],1))))",
    "io_inp": [
      0,
      0,
      5,
      -5,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(input,1))))"
  },
  {
    "input": "input : list = [2, -3, 5, 3, 5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sort_des(drop([2, -3, 5, 3, 5, 3],4)))",
    "io_inp": [
      2,
      -3,
      5,
      3,
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,4)))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(mul_n([-2, 1],-2))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 3, 0, 1, 3, 2]\noutput : list = [-3, -3, -1, 1, 3, 7]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(add_n([-2, 3, 0, 1, 3, 2],-2),-2),-4),-3))",
    "io_inp": [
      -2,
      3,
      0,
      1,
      3,
      2
    ],
    "io_out": [
      -3,
      -3,
      -1,
      1,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(add_n(input,-2),-2),-4),-3))"
  },
  {
    "input": "input : list = [-3, 2, 5, 4, -4, 0]\noutput : list = [-8, -3, 0, -1, -9, -5]",
    "output": "generated_output : list = sub_n([-3, 2, 5, 4, -4, 0],5)",
    "io_inp": [
      -3,
      2,
      5,
      4,
      -4,
      0
    ],
    "io_out": [
      -8,
      -3,
      0,
      -1,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, -4, -4, -3, 4, -2]\noutput : list = [0, -6, -6, -5, 2, -4]",
    "output": "generated_output : list = take(reverse(reverse(sub_n([2, -4, -4, -3, 4, -2],2))),10)",
    "io_inp": [
      2,
      -4,
      -4,
      -3,
      4,
      -2
    ],
    "io_out": [
      0,
      -6,
      -6,
      -5,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(input,2))),10)"
  },
  {
    "input": "input : list = [4, -1, -1, 0, -5, 1]\noutput : list = [0, 4, 4, 5, 6, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([4, -1, -1, 0, -5, 1])),-5)",
    "io_inp": [
      4,
      -1,
      -1,
      0,
      -5,
      1
    ],
    "io_out": [
      0,
      4,
      4,
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [3, 5, 5, 5]\noutput : list = [4, 8]",
    "output": "generated_output : list = mul_n(sub_n(take([3, 5, 5, 5],2),1),2)",
    "io_inp": [
      3,
      5,
      5,
      5
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,2),1),2)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(reverse([2, 3])),2)),3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(reverse(input)),2)),3)"
  },
  {
    "input": "input : list = [-5, -1, -2, 2, -4, -5]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = sort_asc(take([-5, -1, -2, 2, -4, -5],3))",
    "io_inp": [
      -5,
      -1,
      -2,
      2,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = add_n([-2, 4],-1)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([5, -3])))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [2, -1, 4, 3]\noutput : list = [-8, -11, -6, -7]",
    "output": "generated_output : list = add_n(take(take(sub_n(sub_n([2, -1, 4, 3],4),1),18),21),-5)",
    "io_inp": [
      2,
      -1,
      4,
      3
    ],
    "io_out": [
      -8,
      -11,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(sub_n(input,4),1),18),21),-5)"
  },
  {
    "input": "input : list = [3, -5, 5]\noutput : list = [-14, -10, 6]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([3, -5, 5]),-2),-2)",
    "io_inp": [
      3,
      -5,
      5
    ],
    "io_out": [
      -14,
      -10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),-2),-2)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des([0, -3])",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 1, 1, -2]\noutput : list = [-2, 1, 1, -3]",
    "output": "generated_output : list = take(reverse([-3, 1, 1, -2]),14)",
    "io_inp": [
      -3,
      1,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),14)"
  },
  {
    "input": "input : list = [-5, -4, -2, -5]\noutput : list = [3, 5, 6, 6]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des([-5, -4, -2, -5]),-1),-1),-5),5)",
    "io_inp": [
      -5,
      -4,
      -2,
      -5
    ],
    "io_out": [
      3,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des(input),-1),-1),-5),5)"
  },
  {
    "input": "input : list = [-5, 4, 2, -5, 0, -1]\noutput : list = [12, 6, 0, -3, -15, -15]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(reverse([-5, 4, 2, -5, 0, -1])),30),3))",
    "io_inp": [
      -5,
      4,
      2,
      -5,
      0,
      -1
    ],
    "io_out": [
      12,
      6,
      0,
      -3,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(reverse(input)),30),3))"
  },
  {
    "input": "input : list = [-5, 2, 3, -4]\noutput : list = [3, 2, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 2, 3, -4])",
    "io_inp": [
      -5,
      2,
      3,
      -4
    ],
    "io_out": [
      3,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, -3, 2, 4, -2]\noutput : list = [7, 7, 5, 4, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(reverse([1, 4, -3, 2, 4, -2])),3)))",
    "io_inp": [
      1,
      4,
      -3,
      2,
      4,
      -2
    ],
    "io_out": [
      7,
      7,
      5,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(reverse(input)),3)))"
  },
  {
    "input": "input : list = [3, -2, 0, 0, 4, 4]\noutput : list = [-9, 6, 0, 0, -12, -12]",
    "output": "generated_output : list = mul_n([3, -2, 0, 0, 4, 4],-3)",
    "io_inp": [
      3,
      -2,
      0,
      0,
      4,
      4
    ],
    "io_out": [
      -9,
      6,
      0,
      0,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n([-2, -3],5)),-5)),-2)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n(input,5)),-5)),-2)"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [-1]",
    "output": "generated_output : list = drop(add_n(sub_n(sort_des(reverse([-5, 0, -1])),-1),3),2)",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(sort_des(reverse(input)),-1),3),2)"
  },
  {
    "input": "input : list = [-2, -5, -5, 4, 1]\noutput : list = [-5, -5, -2, 1, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des([-2, -5, -5, 4, 1])),11))",
    "io_inp": [
      -2,
      -5,
      -5,
      4,
      1
    ],
    "io_out": [
      -5,
      -5,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(input)),11))"
  },
  {
    "input": "input : list = [-5, 0, 2, 3]\noutput : list = [-5, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_asc([-5, 0, 2, 3])))))",
    "io_inp": [
      -5,
      0,
      2,
      3
    ],
    "io_out": [
      -5,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-40, -100]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(mul_n([-5, -2],5))),14),4)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -40,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(mul_n(input,5))),14),4)"
  },
  {
    "input": "input : list = [-4, 3, 5, -1, 2]\noutput : list = [0, -2, -3, -6, -9]",
    "output": "generated_output : list = sub_n(sort_des([-4, 3, 5, -1, 2]),5)",
    "io_inp": [
      -4,
      3,
      5,
      -1,
      2
    ],
    "io_out": [
      0,
      -2,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(drop([-3, -4, -4],1),5),-2)),1)",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(drop(input,1),5),-2)),1)"
  },
  {
    "input": "input : list = [-3, 0, 4, -2, -4]\noutput : list = [-9, -8, -7, -5, -1]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(sort_des([-3, 0, 4, -2, -4]))),42),5)",
    "io_inp": [
      -3,
      0,
      4,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(sort_des(input))),42),5)"
  },
  {
    "input": "input : list = [-5, 4, 0]\noutput : list = [-4, 1, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n([-5, 4, 0],1)),8))",
    "io_inp": [
      -5,
      4,
      0
    ],
    "io_out": [
      -4,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(input,1)),8))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [8, 4]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc([-1, -2])),-4)),1)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc(input)),-4)),1)"
  },
  {
    "input": "input : list = [-3, -1, -5, -1]\noutput : list = [-1, -5, -1, -3]",
    "output": "generated_output : list = take(reverse([-3, -1, -5, -1]),4)",
    "io_inp": [
      -3,
      -1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [4, 4, -3, -5]\noutput : list = [-11, -9, -2, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(sort_asc([4, 4, -3, -5]),-3))),3)",
    "io_inp": [
      4,
      4,
      -3,
      -5
    ],
    "io_out": [
      -11,
      -9,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(sort_asc(input),-3))),3)"
  },
  {
    "input": "input : list = [-3, -2, 2, -2, -3, 0]\noutput : list = [2, 2, 4, 4, 8, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n(add_n([-3, -2, 2, -2, -3, 0],4),5)),5),2)",
    "io_inp": [
      -3,
      -2,
      2,
      -2,
      -3,
      0
    ],
    "io_out": [
      2,
      2,
      4,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(add_n(input,4),5)),5),2)"
  },
  {
    "input": "input : list = [1, 4, 2, -3, -1]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse(take(sort_asc(take(take([1, 4, 2, -3, -1],2),10)),30))",
    "io_inp": [
      1,
      4,
      2,
      -3,
      -1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(take(input,2),10)),30))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(add_n([4, 3],1)),13)),-4)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(add_n(input,1)),13)),-4)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [27, 11, 7]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sub_n([-1, 0, -5],1),-4),13)),-3)",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      27,
      11,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sub_n(input,1),-4),13)),-3)"
  },
  {
    "input": "input : list = [-2, -2, -1, -4, 2, -2]\noutput : list = [4, 4, 2, 8, -4, 4]",
    "output": "generated_output : list = take(take(mul_n([-2, -2, -1, -4, 2, -2],-2),27),14)",
    "io_inp": [
      -2,
      -2,
      -1,
      -4,
      2,
      -2
    ],
    "io_out": [
      4,
      4,
      2,
      8,
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-2),27),14)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n([1, 5],-1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(add_n([4, 3],-4))),-1),31)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(add_n(input,-4))),-1),31)"
  },
  {
    "input": "input : list = [-2, -3, 3, 1]\noutput : list = [-7, -8, -2, -4]",
    "output": "generated_output : list = add_n([-2, -3, 3, 1],-5)",
    "io_inp": [
      -2,
      -3,
      3,
      1
    ],
    "io_out": [
      -7,
      -8,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, -4, -1, 5]\noutput : list = [5, 5, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(reverse([5, -4, -1, 5]),8))))",
    "io_inp": [
      5,
      -4,
      -1,
      5
    ],
    "io_out": [
      5,
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(reverse(input),8))))"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-45, -20, -5]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(add_n([4, -1, -4],4),1),-1),-5))",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -45,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(add_n(input,4),1),-1),-5))"
  },
  {
    "input": "input : list = [2, -1, -1, 2, -4, 2]\noutput : list = [7, 1, 7, 4, 4, 7]",
    "output": "generated_output : list = sub_n(add_n(reverse([2, -1, -1, 2, -4, 2]),1),-4)",
    "io_inp": [
      2,
      -1,
      -1,
      2,
      -4,
      2
    ],
    "io_out": [
      7,
      1,
      7,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),1),-4)"
  },
  {
    "input": "input : list = [2, -4, -2, 3, -2]\noutput : list = [-5, 0, -5, -7, -1]",
    "output": "generated_output : list = reverse(add_n([2, -4, -2, 3, -2],-3))",
    "io_inp": [
      2,
      -4,
      -2,
      3,
      -2
    ],
    "io_out": [
      -5,
      0,
      -5,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [-5, -5, 1, 3]\noutput : list = [-1, -1, 5, 7]",
    "output": "generated_output : list = sort_asc(take(add_n([-5, -5, 1, 3],4),5))",
    "io_inp": [
      -5,
      -5,
      1,
      3
    ],
    "io_out": [
      -1,
      -1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,4),5))"
  },
  {
    "input": "input : list = [-4, 5, -4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = take(sort_des(take(take(take([-4, 5, -4, 5],2),6),4)),25)",
    "io_inp": [
      -4,
      5,
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(take(input,2),6),4)),25)"
  },
  {
    "input": "input : list = [-4, -1, 1, -2, 4, 4]\noutput : list = [-4, -2, -1, 1, 4, 4]",
    "output": "generated_output : list = mul_n(sort_asc([-4, -1, 1, -2, 4, 4]),1)",
    "io_inp": [
      -4,
      -1,
      1,
      -2,
      4,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-4, -2, 3, -2]\noutput : list = [6, -14, 6]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(drop([-4, -2, 3, -2],1),9),-4),-2))",
    "io_inp": [
      -4,
      -2,
      3,
      -2
    ],
    "io_out": [
      6,
      -14,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(drop(input,1),9),-4),-2))"
  },
  {
    "input": "input : list = [2, 5, 5, -1, -1]\noutput : list = [8, 8, 5, 2, 2]",
    "output": "generated_output : list = sort_des(add_n([2, 5, 5, -1, -1],3))",
    "io_inp": [
      2,
      5,
      5,
      -1,
      -1
    ],
    "io_out": [
      8,
      8,
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-2, -5, -2, -4, 5]\noutput : list = [-1, -8, -8, -10, -11]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_asc(add_n([-2, -5, -2, -4, 5],-4)),36)),2)",
    "io_inp": [
      -2,
      -5,
      -2,
      -4,
      5
    ],
    "io_out": [
      -1,
      -8,
      -8,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_asc(add_n(input,-4)),36)),2)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-24, -18, -18]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n([-3, -1, -1],5),3)),9)",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -24,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(input,5),3)),9)"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take([0, 0, 5],1),5)),-1)",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(input,1),5)),-1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(add_n([3, 2],-2))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [-5, -4, 3, 2, 5]\noutput : list = [3, 2, 5]",
    "output": "generated_output : list = drop([-5, -4, 3, 2, 5],2)",
    "io_inp": [
      -5,
      -4,
      3,
      2,
      5
    ],
    "io_out": [
      3,
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, -1, 1, 4, -3, -4]\noutput : list = [5, 2, 0, -2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-5, -1, 1, 4, -3, -4],1)))",
    "io_inp": [
      -5,
      -1,
      1,
      4,
      -3,
      -4
    ],
    "io_out": [
      5,
      2,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,1)))"
  },
  {
    "input": "input : list = [5, -2, 3, -5]\noutput : list = [8, 6, 1, -2]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(sort_des([5, -2, 3, -5]),1),7),1),4)",
    "io_inp": [
      5,
      -2,
      3,
      -5
    ],
    "io_out": [
      8,
      6,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(sort_des(input),1),7),1),4)"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [1, 1, -5]",
    "output": "generated_output : list = sort_des([1, 1, -5])",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, 5, 5, 4, 2]\noutput : list = [-5, -2, 5, 5, 4, 2]",
    "output": "generated_output : list = add_n(mul_n(add_n([-5, -2, 5, 5, 4, 2],-2),1),2)",
    "io_inp": [
      -5,
      -2,
      5,
      5,
      4,
      2
    ],
    "io_out": [
      -5,
      -2,
      5,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-2),1),2)"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [-3, -4, -9]",
    "output": "generated_output : list = take(sub_n(sub_n(take(add_n([4, 3, -2],-1),11),3),3),26)",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(add_n(input,-1),11),3),3),26)"
  },
  {
    "input": "input : list = [0, -1, -3, -5, 2, -1]\noutput : list = [3, 2, 0, -2, 5, 2]",
    "output": "generated_output : list = add_n([0, -1, -3, -5, 2, -1],3)",
    "io_inp": [
      0,
      -1,
      -3,
      -5,
      2,
      -1
    ],
    "io_out": [
      3,
      2,
      0,
      -2,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [4, 20]",
    "output": "generated_output : list = mul_n(reverse(reverse([-1, -5])),-4)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(input)),-4)"
  },
  {
    "input": "input : list = [-1, 3, 3, 4]\noutput : list = [-3, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_des([-1, 3, 3, 4]),-2))))",
    "io_inp": [
      -1,
      3,
      3,
      4
    ],
    "io_out": [
      -3,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [-3, 0, -5, -4]\noutput : list = [6, 12, 2, 4]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(add_n([-3, 0, -5, -4],3),-1),13),3),-2)",
    "io_inp": [
      -3,
      0,
      -5,
      -4
    ],
    "io_out": [
      6,
      12,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(add_n(input,3),-1),13),3),-2)"
  },
  {
    "input": "input : list = [1, 2, -3, 4]\noutput : list = [-1, 0, -5, 2]",
    "output": "generated_output : list = sub_n([1, 2, -3, 4],2)",
    "io_inp": [
      1,
      2,
      -3,
      4
    ],
    "io_out": [
      -1,
      0,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, 5, 1, -2, 1, -3]\noutput : list = [5, 3, 1]",
    "output": "generated_output : list = take(sort_des(take([3, 5, 1, -2, 1, -3],3)),9)",
    "io_inp": [
      3,
      5,
      1,
      -2,
      1,
      -3
    ],
    "io_out": [
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(input,3)),9)"
  },
  {
    "input": "input : list = [5, -1, -2, -5, 1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -1, -2, -5, 1],1)",
    "io_inp": [
      5,
      -1,
      -2,
      -5,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(add_n([-4, -3],2),12)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),12)"
  },
  {
    "input": "input : list = [-5, -3, 4, -1, 5, -1]\noutput : list = [5, 4, -1, -1, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, -3, 4, -1, 5, -1]))",
    "io_inp": [
      -5,
      -3,
      4,
      -1,
      5,
      -1
    ],
    "io_out": [
      5,
      4,
      -1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 5, 2, -2, -5, -2]\noutput : list = [20, 14, 14, 6, 4, 0]",
    "output": "generated_output : list = take(sort_des(mul_n(take(sub_n([3, 5, 2, -2, -5, -2],5),17),-2)),54)",
    "io_inp": [
      3,
      5,
      2,
      -2,
      -5,
      -2
    ],
    "io_out": [
      20,
      14,
      14,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(sub_n(input,5),17),-2)),54)"
  },
  {
    "input": "input : list = [-1, 3, 0, 5]\noutput : list = [8, 6, 3, 2]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sort_des([-1, 3, 0, 5])),-3)),37)",
    "io_inp": [
      -1,
      3,
      0,
      5
    ],
    "io_out": [
      8,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sort_des(input)),-3)),37)"
  },
  {
    "input": "input : list = [1, 1, -2, 3, -3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(take([1, 1, -2, 3, -3],2)),3),8))",
    "io_inp": [
      1,
      1,
      -2,
      3,
      -3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(take(input,2)),3),8))"
  },
  {
    "input": "input : list = [4, -5, 0, -2, -5]\noutput : list = [-10, -1]",
    "output": "generated_output : list = reverse(add_n(take(reverse(reverse([4, -5, 0, -2, -5])),2),-5))",
    "io_inp": [
      4,
      -5,
      0,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(reverse(input)),2),-5))"
  },
  {
    "input": "input : list = [5, 3, 4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 3, 4],1)",
    "io_inp": [
      5,
      3,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 2, -2, -3, 1, -5]\noutput : list = [-7, -1, -5]",
    "output": "generated_output : list = sub_n(take([-4, 2, -2, -3, 1, -5],3),3)",
    "io_inp": [
      -4,
      2,
      -2,
      -3,
      1,
      -5
    ],
    "io_out": [
      -7,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse([1, 2])",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -2, -1, 0, 1]\noutput : list = [-4, -5, -5, -6, -7]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(add_n([0, -2, -1, 0, 1],-5)))),35)",
    "io_inp": [
      0,
      -2,
      -1,
      0,
      1
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(add_n(input,-5)))),35)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = sort_asc([0, 0, -4])",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(mul_n([-1, 3],3)),1)))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(mul_n(input,3)),1)))"
  },
  {
    "input": "input : list = [5, 4, -5, -3, -2]\noutput : list = [-25, -30, -75, -65, -60]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n(add_n([5, 4, -5, -3, -2],-3),2),-1),5),-5)",
    "io_inp": [
      5,
      4,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -25,
      -30,
      -75,
      -65,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(add_n(input,-3),2),-1),5),-5)"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [4, 3, -1]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(reverse([4, 0, 5]),15),2)),-3)",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(reverse(input),15),2)),-3)"
  },
  {
    "input": "input : list = [-4, 4, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([-4, 4, -3, -3],2)",
    "io_inp": [
      -4,
      4,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -1, 0, 4, 3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take([-2, -1, 0, 4, 3],1),2)",
    "io_inp": [
      -2,
      -1,
      0,
      4,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),2)"
  },
  {
    "input": "input : list = [-2, 3, -4, 4]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(reverse([-2, 3, -4, 4]),16),1),2))",
    "io_inp": [
      -2,
      3,
      -4,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(reverse(input),16),1),2))"
  },
  {
    "input": "input : list = [1, -2, 3, -1]\noutput : list = [3, 0, 5, 1]",
    "output": "generated_output : list = add_n(add_n(add_n(take(add_n([1, -2, 3, -1],-2),17),-4),5),3)",
    "io_inp": [
      1,
      -2,
      3,
      -1
    ],
    "io_out": [
      3,
      0,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(add_n(input,-2),17),-4),5),3)"
  },
  {
    "input": "input : list = [4, 0, -4, 2, 4]\noutput : list = [15, 5, -25, -5, 15]",
    "output": "generated_output : list = mul_n(take(take(sub_n(reverse([4, 0, -4, 2, 4]),1),27),29),5)",
    "io_inp": [
      4,
      0,
      -4,
      2,
      4
    ],
    "io_out": [
      15,
      5,
      -25,
      -5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(reverse(input),1),27),29),5)"
  },
  {
    "input": "input : list = [5, 3, 3, 2]\noutput : list = [-18, -14, -14, -12]",
    "output": "generated_output : list = mul_n(add_n([5, 3, 3, 2],4),-2)",
    "io_inp": [
      5,
      3,
      3,
      2
    ],
    "io_out": [
      -18,
      -14,
      -14,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),-2)"
  },
  {
    "input": "input : list = [-4, -4, -5, -1, -3]\noutput : list = [-34, -34, -43, -7, -25]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n(mul_n([-4, -4, -5, -1, -3],-3),-3),2),23),1)",
    "io_inp": [
      -4,
      -4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -34,
      -34,
      -43,
      -7,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(mul_n(input,-3),-3),2),23),1)"
  },
  {
    "input": "input : list = [3, -5, 2, 3, 2]\noutput : list = [2, 3, 2]",
    "output": "generated_output : list = drop([3, -5, 2, 3, 2],2)",
    "io_inp": [
      3,
      -5,
      2,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -2, -2, 2, 3, -5]\noutput : list = [-5, -3, -2, -2, 2, 3]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(sort_des([-3, -2, -2, 2, 3, -5]))),40))",
    "io_inp": [
      -3,
      -2,
      -2,
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(sort_des(input))),40))"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse(drop([-3, -4, 1],1))",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 2, -2, 1, 5]\noutput : list = [7, 4, 3, 0, 0]",
    "output": "generated_output : list = sort_des(reverse(take(take(sub_n([-2, 2, -2, 1, 5],-2),17),13)))",
    "io_inp": [
      -2,
      2,
      -2,
      1,
      5
    ],
    "io_out": [
      7,
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sub_n(input,-2),17),13)))"
  },
  {
    "input": "input : list = [-4, -3, 5, -5]\noutput : list = [5, 4, -4, 6]",
    "output": "generated_output : list = add_n(mul_n([-4, -3, 5, -5],-1),1)",
    "io_inp": [
      -4,
      -3,
      5,
      -5
    ],
    "io_out": [
      5,
      4,
      -4,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),1)"
  },
  {
    "input": "input : list = [-2, -1, -1, -2, 0, 4]\noutput : list = [-1, -1, -2, 0, 4]",
    "output": "generated_output : list = drop([-2, -1, -1, -2, 0, 4],1)",
    "io_inp": [
      -2,
      -1,
      -1,
      -2,
      0,
      4
    ],
    "io_out": [
      -1,
      -1,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(add_n(drop(sort_asc(drop([-2, -1, -4],1)),1),4),3)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(sort_asc(drop(input,1)),1),4),3)"
  },
  {
    "input": "input : list = [-3, 0, 0, 3]\noutput : list = [-15, 0, 0, 15]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(sort_asc([-3, 0, 0, 3])),-5)))",
    "io_inp": [
      -3,
      0,
      0,
      3
    ],
    "io_out": [
      -15,
      0,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [4, -2, 4, 0]\noutput : list = [-3, -1, 3, 3]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(sub_n([4, -2, 4, 0],4),-3))),17)",
    "io_inp": [
      4,
      -2,
      4,
      0
    ],
    "io_out": [
      -3,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(sub_n(input,4),-3))),17)"
  },
  {
    "input": "input : list = [4, 3, 3, -3, 4]\noutput : list = [1, 1, 0, 0, -6]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(sub_n([4, 3, 3, -3, 4],4)),1),6))",
    "io_inp": [
      4,
      3,
      3,
      -3,
      4
    ],
    "io_out": [
      1,
      1,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(sub_n(input,4)),1),6))"
  },
  {
    "input": "input : list = [4, 3, 1, -1, -3]\noutput : list = [-3, -1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([4, 3, 1, -1, -3])))",
    "io_inp": [
      4,
      3,
      1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, 2, -4, 1, -2]\noutput : list = [-10, 25]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(take([-5, 2, -4, 1, -2],2)),-5)))",
    "io_inp": [
      -5,
      2,
      -4,
      1,
      -2
    ],
    "io_out": [
      -10,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(take(input,2)),-5)))"
  },
  {
    "input": "input : list = [3, -1, -5, 0]\noutput : list = [3, 7, 8, 11]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([3, -1, -5, 0]),5),-3)",
    "io_inp": [
      3,
      -1,
      -5,
      0
    ],
    "io_out": [
      3,
      7,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),5),-3)"
  },
  {
    "input": "input : list = [-3, 4, -4, -1, -3]\noutput : list = [-3, -2, -2, 0, 5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(sort_des([-3, 4, -4, -1, -3])),-4)),-3)",
    "io_inp": [
      -3,
      4,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(sort_des(input)),-4)),-3)"
  },
  {
    "input": "input : list = [-4, 3, 4, -5]\noutput : list = [6, 15]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(drop([-4, 3, 4, -5],2),5)),-4),-2)",
    "io_inp": [
      -4,
      3,
      4,
      -5
    ],
    "io_out": [
      6,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(drop(input,2),5)),-4),-2)"
  },
  {
    "input": "input : list = [-2, 4, -4, -5]\noutput : list = [5, -1, -3, -4]",
    "output": "generated_output : list = take(sort_des(reverse(take(sub_n([-2, 4, -4, -5],-1),19))),7)",
    "io_inp": [
      -2,
      4,
      -4,
      -5
    ],
    "io_out": [
      5,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(sub_n(input,-1),19))),7)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des([2, 5])),1),3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(input)),1),3)"
  },
  {
    "input": "input : list = [1, -4, -4, -1]\noutput : list = [-2, -2, 1, 3]",
    "output": "generated_output : list = sub_n(sort_asc([1, -4, -4, -1]),-2)",
    "io_inp": [
      1,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [4, 3, 5, 1, -4, 1]\noutput : list = [7, 6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(drop(reverse([4, 3, 5, 1, -4, 1]),4)),-3))",
    "io_inp": [
      4,
      3,
      5,
      1,
      -4,
      1
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(drop(reverse(input),4)),-3))"
  },
  {
    "input": "input : list = [-1, -3, -1, -2, 4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(drop(drop(take(reverse([-1, -3, -1, -2, 4]),14),2),2))",
    "io_inp": [
      -1,
      -3,
      -1,
      -2,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(drop(take(reverse(input),14),2),2))"
  },
  {
    "input": "input : list = [-2, 3, -1, 1, -3, 5]\noutput : list = [-10, 30, -2, 14, -18, 46]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(reverse([-2, 3, -1, 1, -3, 5]),-4),3)),-2)",
    "io_inp": [
      -2,
      3,
      -1,
      1,
      -3,
      5
    ],
    "io_out": [
      -10,
      30,
      -2,
      14,
      -18,
      46
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(reverse(input),-4),3)),-2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc([2, 2]),-5)))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(input),-5)))"
  },
  {
    "input": "input : list = [4, -1, 4]\noutput : list = [6, 1, 6]",
    "output": "generated_output : list = reverse(add_n([4, -1, 4],2))",
    "io_inp": [
      4,
      -1,
      4
    ],
    "io_out": [
      6,
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [-3, -5, 3, 4]\noutput : list = [-10, -8, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([-3, -5, 3, 4])),-5)",
    "io_inp": [
      -3,
      -5,
      3,
      4
    ],
    "io_out": [
      -10,
      -8,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [4, -4, 0, 4, 0]\noutput : list = [8, 0, 0]",
    "output": "generated_output : list = take(reverse(mul_n(drop(sort_des([4, -4, 0, 4, 0]),2),-2)),20)",
    "io_inp": [
      4,
      -4,
      0,
      4,
      0
    ],
    "io_out": [
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(drop(sort_des(input),2),-2)),20)"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = sort_des(take(take(sort_des(sub_n([0, -2, -4],-3)),12),26))",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(sub_n(input,-3)),12),26))"
  },
  {
    "input": "input : list = [-1, -1, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(take([-1, -1, -3],1)),6)))",
    "io_inp": [
      -1,
      -1,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(take(input,1)),6)))"
  },
  {
    "input": "input : list = [0, 1, 5, -1, -1]\noutput : list = [0, 0, 6, 2, 1]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(add_n([0, 1, 5, -1, -1],-3),1),20),5))",
    "io_inp": [
      0,
      1,
      5,
      -1,
      -1
    ],
    "io_out": [
      0,
      0,
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(add_n(input,-3),1),20),5))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(sort_asc([3, 0]),-2),-1),-1))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(sort_asc(input),-2),-1),-1))"
  },
  {
    "input": "input : list = [4, 3, -4, -2]\noutput : list = [5, 4]",
    "output": "generated_output : list = add_n(take([4, 3, -4, -2],2),1)",
    "io_inp": [
      4,
      3,
      -4,
      -2
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),1)"
  },
  {
    "input": "input : list = [2, 2, -1, 3, -2]\noutput : list = [-2, -1, 2, 2, 3]",
    "output": "generated_output : list = sort_asc([2, 2, -1, 3, -2])",
    "io_inp": [
      2,
      2,
      -1,
      3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2, 5, -1]\noutput : list = [-20, -8, 4, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(sort_asc([-2, 2, 5, -1])),-4)),6)",
    "io_inp": [
      -2,
      2,
      5,
      -1
    ],
    "io_out": [
      -20,
      -8,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(sort_asc(input)),-4)),6)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [1, 5, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sub_n([4, 1, -3],-4),1)),1))",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      1,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sub_n(input,-4),1)),1))"
  },
  {
    "input": "input : list = [1, 1, -3, -1, 5, 0]\noutput : list = [-1, 1, 2, 3, 3, 7]",
    "output": "generated_output : list = reverse(add_n(reverse(reverse(sort_des([1, 1, -3, -1, 5, 0]))),2))",
    "io_inp": [
      1,
      1,
      -3,
      -1,
      5,
      0
    ],
    "io_out": [
      -1,
      1,
      2,
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(reverse(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-4, -1, -3, 3]\noutput : list = [10, -20, -10, -25]",
    "output": "generated_output : list = add_n(reverse(take(mul_n([-4, -1, -3, 3],5),10)),-5)",
    "io_inp": [
      -4,
      -1,
      -3,
      3
    ],
    "io_out": [
      10,
      -20,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(input,5),10)),-5)"
  },
  {
    "input": "input : list = [-4, 5, 5, 1]\noutput : list = [12, -8, -24, -24]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_asc([-4, 5, 5, 1]),-4)),5),-1)",
    "io_inp": [
      -4,
      5,
      5,
      1
    ],
    "io_out": [
      12,
      -8,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_asc(input),-4)),5),-1)"
  },
  {
    "input": "input : list = [4, 2, -1, 2, 0, 5]\noutput : list = [1, -1, -4, -1, -3, 2]",
    "output": "generated_output : list = add_n([4, 2, -1, 2, 0, 5],-3)",
    "io_inp": [
      4,
      2,
      -1,
      2,
      0,
      5
    ],
    "io_out": [
      1,
      -1,
      -4,
      -1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [5, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(reverse([5, -1])))),-5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [-4, 1, -4]\noutput : list = [-4, -4, 1]",
    "output": "generated_output : list = sort_asc([-4, 1, -4])",
    "io_inp": [
      -4,
      1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2, 5, 5, 0]\noutput : list = [-1, 4, 7, 7, 2]",
    "output": "generated_output : list = add_n([-3, 2, 5, 5, 0],2)",
    "io_inp": [
      -3,
      2,
      5,
      5,
      0
    ],
    "io_out": [
      -1,
      4,
      7,
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-3, 0, 1]\noutput : list = [6, 5, 2]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(add_n([-3, 0, 1],5)),13)))",
    "io_inp": [
      -3,
      0,
      1
    ],
    "io_out": [
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(add_n(input,5)),13)))"
  },
  {
    "input": "input : list = [-2, 1, -2, -5, -5, 1]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take(sort_des(take(mul_n([-2, 1, -2, -5, -5, 1],-3),1)),6),-1)",
    "io_inp": [
      -2,
      1,
      -2,
      -5,
      -5,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(mul_n(input,-3),1)),6),-1)"
  },
  {
    "input": "input : list = [0, -5, 3, -5]\noutput : list = [-7, -1, 9, 9]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(reverse([0, -5, 3, -5]),-2)),-2),3)",
    "io_inp": [
      0,
      -5,
      3,
      -5
    ],
    "io_out": [
      -7,
      -1,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(reverse(input),-2)),-2),3)"
  },
  {
    "input": "input : list = [2, 0, 0, 1, -3, 5]\noutput : list = [0, -30, -30, -40, -50, -80]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sub_n([2, 0, 0, 1, -3, 5],-3),-5))),2)",
    "io_inp": [
      2,
      0,
      0,
      1,
      -3,
      5
    ],
    "io_out": [
      0,
      -30,
      -30,
      -40,
      -50,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sub_n(input,-3),-5))),2)"
  },
  {
    "input": "input : list = [-3, 4, -2, 2, -1, 1]\noutput : list = [1, -1, 2, -2, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, -2, 2, -1, 1])",
    "io_inp": [
      -3,
      4,
      -2,
      2,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      2,
      -2,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, 0, 5, 1]\noutput : list = [-12, -16]",
    "output": "generated_output : list = mul_n(take([-3, -4, 0, 5, 1],2),4)",
    "io_inp": [
      -3,
      -4,
      0,
      5,
      1
    ],
    "io_out": [
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),4)"
  },
  {
    "input": "input : list = [2, -4, 1, 4, 3]\noutput : list = [12, 16]",
    "output": "generated_output : list = reverse(mul_n(drop([2, -4, 1, 4, 3],3),4))",
    "io_inp": [
      2,
      -4,
      1,
      4,
      3
    ],
    "io_out": [
      12,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,3),4))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-54, -42]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des(sort_des([4, 2])),-5),2),-3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -54,
      -42
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(sort_des(input)),-5),2),-3)"
  },
  {
    "input": "input : list = [2, 5, 3, 3]\noutput : list = [18, 12, 12, 9]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sub_n([2, 5, 3, 3],3),-3),-1)),3)",
    "io_inp": [
      2,
      5,
      3,
      3
    ],
    "io_out": [
      18,
      12,
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sub_n(input,3),-3),-1)),3)"
  },
  {
    "input": "input : list = [3, -1, -1, 0, 1]\noutput : list = [-5, -5, -4, -3, -1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc([3, -1, -1, 0, 1]))),-2),-2)",
    "io_inp": [
      3,
      -1,
      -1,
      0,
      1
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc(input))),-2),-2)"
  },
  {
    "input": "input : list = [5, -1, 4, -3, 5]\noutput : list = [-10, -2, -9, -4, -10]",
    "output": "generated_output : list = sub_n(reverse(mul_n([5, -1, 4, -3, 5],-1)),5)",
    "io_inp": [
      5,
      -1,
      4,
      -3,
      5
    ],
    "io_out": [
      -10,
      -2,
      -9,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,-1)),5)"
  },
  {
    "input": "input : list = [-4, 1, -5, 5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(take(drop([-4, 1, -5, 5, 3],3),22))",
    "io_inp": [
      -4,
      1,
      -5,
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,3),22))"
  },
  {
    "input": "input : list = [2, 2, 1, 3]\noutput : list = [4, 5, 5, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse([2, 2, 1, 3]),3))",
    "io_inp": [
      2,
      2,
      1,
      3
    ],
    "io_out": [
      4,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-2, -1, 3, 4]\noutput : list = [4, 3, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(sort_des([-2, -1, 3, 4])))))",
    "io_inp": [
      -2,
      -1,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 3, -2, -2, 2]\noutput : list = [-2, -2, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(drop([-5, 3, -2, -2, 2],1),15))))",
    "io_inp": [
      -5,
      3,
      -2,
      -2,
      2
    ],
    "io_out": [
      -2,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(drop(input,1),15))))"
  },
  {
    "input": "input : list = [1, 4, 2, -3, -1, -1]\noutput : list = [2, 0, -1, -3, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sub_n([1, 4, 2, -3, -1, -1],-2),-4))))",
    "io_inp": [
      1,
      4,
      2,
      -3,
      -1,
      -1
    ],
    "io_out": [
      2,
      0,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sub_n(input,-2),-4))))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [6, -18]",
    "output": "generated_output : list = add_n(sub_n(mul_n([-3, 5],-3),1),-2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      6,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-3),1),-2)"
  },
  {
    "input": "input : list = [-2, 0, -2, 2, 0, 5]\noutput : list = [-50, -20, 0, 0, 20, 20]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des([-2, 0, -2, 2, 0, 5]),-2)),5)",
    "io_inp": [
      -2,
      0,
      -2,
      2,
      0,
      5
    ],
    "io_out": [
      -50,
      -20,
      0,
      0,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(input),-2)),5)"
  },
  {
    "input": "input : list = [-4, -3, -1, 0]\noutput : list = [-4, -5, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(add_n([-4, -3, -1, 0],-1)))),-3)",
    "io_inp": [
      -4,
      -3,
      -1,
      0
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(add_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [-4, -5, 4, 3, 3, 4]\noutput : list = [-6, -5, 2, 2, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(reverse(sort_asc([-4, -5, 4, 3, 3, 4]))),3),-2)",
    "io_inp": [
      -4,
      -5,
      4,
      3,
      3,
      4
    ],
    "io_out": [
      -6,
      -5,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(reverse(sort_asc(input))),3),-2)"
  },
  {
    "input": "input : list = [0, 2, 5, 0]\noutput : list = [2, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(drop([0, 2, 5, 0],2),2))))",
    "io_inp": [
      0,
      2,
      5,
      0
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(drop(input,2),2))))"
  },
  {
    "input": "input : list = [-1, 4, 3, 0, 0]\noutput : list = [9]",
    "output": "generated_output : list = sub_n(drop(mul_n(sort_des(mul_n([-1, 4, 3, 0, 0],-1)),-3),4),3)",
    "io_inp": [
      -1,
      4,
      3,
      0,
      0
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sub_n(drop(mul_n(sort_des(mul_n(input,-1)),-3),4),3)"
  },
  {
    "input": "input : list = [-3, -3, -2, 2, -5]\noutput : list = [2, -6, -8, -8, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(reverse([-3, -3, -2, 2, -5]),1),2)))",
    "io_inp": [
      -3,
      -3,
      -2,
      2,
      -5
    ],
    "io_out": [
      2,
      -6,
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(reverse(input),1),2)))"
  },
  {
    "input": "input : list = [5, 5, -4, 3, -4]\noutput : list = [12, -30, 12, -42, -42]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n([5, 5, -4, 3, -4],-2),5)),3),-3)",
    "io_inp": [
      5,
      5,
      -4,
      3,
      -4
    ],
    "io_out": [
      12,
      -30,
      12,
      -42,
      -42
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n(input,-2),5)),3),-3)"
  },
  {
    "input": "input : list = [0, 3, 2, -3]\noutput : list = [-12, -7, -6, -9]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(reverse([0, 3, 2, -3]),4)),-5))",
    "io_inp": [
      0,
      3,
      2,
      -3
    ],
    "io_out": [
      -12,
      -7,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(reverse(input),4)),-5))"
  },
  {
    "input": "input : list = [1, 3, 5, -5]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 3, 5, -5],1)",
    "io_inp": [
      1,
      3,
      5,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, 4, 1, -1]\noutput : list = [4, 6, 9, 1, 6]",
    "output": "generated_output : list = mul_n(reverse(sub_n([1, -4, 4, 1, -1],-5)),1)",
    "io_inp": [
      1,
      -4,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      6,
      9,
      1,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-5)),1)"
  },
  {
    "input": "input : list = [-2, -1, -4, -2]\noutput : list = [2, -2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(add_n([-2, -1, -4, -2],3)),-2)))",
    "io_inp": [
      -2,
      -1,
      -4,
      -2
    ],
    "io_out": [
      2,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(add_n(input,3)),-2)))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-12, -19]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(sub_n([2, -5],4),12),1),4),-5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -12,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(sub_n(input,4),12),1),4),-5)"
  },
  {
    "input": "input : list = [-3, 4, 4, 0, -2, -4]\noutput : list = [-5, -4, -3, -1, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(take(take(sub_n([-3, 4, 4, 0, -2, -4],1),27),25)))",
    "io_inp": [
      -3,
      4,
      4,
      0,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(sub_n(input,1),27),25)))"
  },
  {
    "input": "input : list = [1, 4, 4, -3, 5, -5]\noutput : list = [10, 8, 8, 2, -6, -10]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([1, 4, 4, -3, 5, -5],2)))",
    "io_inp": [
      1,
      4,
      4,
      -3,
      5,
      -5
    ],
    "io_out": [
      10,
      8,
      8,
      2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,2)))"
  },
  {
    "input": "input : list = [5, 3, -1, 1, 4, 5]\noutput : list = [4, -4, -12, -16, -20, -20]",
    "output": "generated_output : list = mul_n(sort_asc([5, 3, -1, 1, 4, 5]),-4)",
    "io_inp": [
      5,
      3,
      -1,
      1,
      4,
      5
    ],
    "io_out": [
      4,
      -4,
      -12,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, -2, -1]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = add_n([-2, -2, -1],2)",
    "io_inp": [
      -2,
      -2,
      -1
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, 5, 1, 2]\noutput : list = [40, 25, 20, -10]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sub_n([-5, 5, 1, 2],-2),1),5)))",
    "io_inp": [
      -5,
      5,
      1,
      2
    ],
    "io_out": [
      40,
      25,
      20,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sub_n(input,-2),1),5)))"
  },
  {
    "input": "input : list = [4, 4, -1, 3, -4]\noutput : list = [-4, 3, -1, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, -1, 3, -4])",
    "io_inp": [
      4,
      4,
      -1,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [-10, -12, -12]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n([-3, -3, -1],4)))),5)",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      -10,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n(input,4)))),5)"
  },
  {
    "input": "input : list = [-4, 3, -5, -1]\noutput : list = [0, 7]",
    "output": "generated_output : list = sort_asc(add_n(take([-4, 3, -5, -1],2),4))",
    "io_inp": [
      -4,
      3,
      -5,
      -1
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,2),4))"
  },
  {
    "input": "input : list = [2, 2, -3, 1, -5]\noutput : list = [-5, 1, -3, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, -3, 1, -5])",
    "io_inp": [
      2,
      2,
      -3,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, -1, 0, -1]\noutput : list = [0, 3, 3, 15, 15]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse([-5, -5, -1, 0, -1]),-3),21))",
    "io_inp": [
      -5,
      -5,
      -1,
      0,
      -1
    ],
    "io_out": [
      0,
      3,
      3,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(input),-3),21))"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = sort_des([-3, 0, 4])",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [12, -9]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(reverse([3, -4]),-3))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      12,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [3, 6, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(reverse([4, 2, -1])),4),18))",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(reverse(input)),4),18))"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [1, 1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-2, -4, -4]),-5))",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [0, 0, 4, 5, 0, -1]\noutput : list = [-1, 0, 0, 0, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([0, 0, 4, 5, 0, -1]))",
    "io_inp": [
      0,
      0,
      4,
      5,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [0, 3, -4, 3]\noutput : list = [1, 5, 8, 8]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(sort_asc([0, 3, -4, 3]),18)),-5))",
    "io_inp": [
      0,
      3,
      -4,
      3
    ],
    "io_out": [
      1,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(sort_asc(input),18)),-5))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des([4, 4])",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, 2, -1, -5, -3]\noutput : list = [-22, -14, -10, -6, -6, 6]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(reverse([-2, -1, 2, -1, -5, -3])),4),-2),32)",
    "io_inp": [
      -2,
      -1,
      2,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -22,
      -14,
      -10,
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(reverse(input)),4),-2),32)"
  },
  {
    "input": "input : list = [-5, 1, -3, 4, -3, 3]\noutput : list = [-1, -2, -4, -8, -8, -10]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(reverse([-5, 1, -3, 4, -3, 3]),3)),-2))",
    "io_inp": [
      -5,
      1,
      -3,
      4,
      -3,
      3
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(reverse(input),3)),-2))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = add_n([-5, -2],3)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-100, 20]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(sort_des([-4, 2]),3),-4),5),27)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -100,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(sort_des(input),3),-4),5),27)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(take([5, -5, -2],1),7))))",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(take(input,1),7))))"
  },
  {
    "input": "input : list = [-2, -4, -5]\noutput : list = [-25, -20, -10]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(sub_n([-2, -4, -5],3),14)),3),5)",
    "io_inp": [
      -2,
      -4,
      -5
    ],
    "io_out": [
      -25,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(sub_n(input,3),14)),3),5)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take(sort_asc([3, -3]),2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),2)"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [2, 1, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([2, -3, 1])))",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-14, -4]",
    "output": "generated_output : list = add_n(reverse(take(add_n(mul_n([-2, -4],5),1),8)),5)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -14,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(mul_n(input,5),1),8)),5)"
  },
  {
    "input": "input : list = [4, -5, 1, 0, 2, 4]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = drop([4, -5, 1, 0, 2, 4],3)",
    "io_inp": [
      4,
      -5,
      1,
      0,
      2,
      4
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(drop([-5, 1, 4],1),-3)),1))",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(drop(input,1),-3)),1))"
  },
  {
    "input": "input : list = [5, 5, 1, -5, 3, 1]\noutput : list = [8, 16, -16, 8, 24, 24]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse([5, 5, 1, -5, 3, 1]),4),3),4)",
    "io_inp": [
      5,
      5,
      1,
      -5,
      3,
      1
    ],
    "io_out": [
      8,
      16,
      -16,
      8,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(input),4),3),4)"
  },
  {
    "input": "input : list = [1, 0, -5, 0, 3]\noutput : list = [-5, -4, -2]",
    "output": "generated_output : list = sort_asc(reverse(drop(sort_asc(add_n([1, 0, -5, 0, 3],-5)),2)))",
    "io_inp": [
      1,
      0,
      -5,
      0,
      3
    ],
    "io_out": [
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(sort_asc(add_n(input,-5)),2)))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [4, 8]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(sort_des([-4, -2]),-2),5)))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(sort_des(input),-2),5)))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-4, -6]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(sub_n([0, -2],3))),1),1)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(sub_n(input,3))),1),1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([0, 5]),5))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [-2, 2, 5, 2]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(take([-2, 2, 5, 2],2),-1))),3)",
    "io_inp": [
      -2,
      2,
      5,
      2
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(take(input,2),-1))),3)"
  },
  {
    "input": "input : list = [-5, -1, -4, -5, -3, 4]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(add_n(drop(mul_n(take([-5, -1, -4, -5, -3, 4],2),-1),1),-4))",
    "io_inp": [
      -5,
      -1,
      -4,
      -5,
      -3,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(mul_n(take(input,2),-1),1),-4))"
  },
  {
    "input": "input : list = [-1, 5, 4, -4, 5]\noutput : list = [-4, -1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, 4, -4, 5])",
    "io_inp": [
      -1,
      5,
      4,
      -4,
      5
    ],
    "io_out": [
      -4,
      -1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 2, -5, 4]\noutput : list = [6, 9, 2, 11]",
    "output": "generated_output : list = add_n(sub_n(add_n([-1, 2, -5, 4],-2),-5),4)",
    "io_inp": [
      -1,
      2,
      -5,
      4
    ],
    "io_out": [
      6,
      9,
      2,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,-2),-5),4)"
  },
  {
    "input": "input : list = [4, 0, 4, 2]\noutput : list = [1, 1, -1, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc(sort_asc([4, 0, 4, 2])),-2),-1))",
    "io_inp": [
      4,
      0,
      4,
      2
    ],
    "io_out": [
      1,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(sort_asc(input)),-2),-1))"
  },
  {
    "input": "input : list = [2, -4, 5, -5, 1]\noutput : list = [8, 5, 4, -1, -2]",
    "output": "generated_output : list = take(sort_des(take(take(add_n([2, -4, 5, -5, 1],3),22),27)),19)",
    "io_inp": [
      2,
      -4,
      5,
      -5,
      1
    ],
    "io_out": [
      8,
      5,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(add_n(input,3),22),27)),19)"
  },
  {
    "input": "input : list = [0, -4, -4, 4, -2]\noutput : list = [4, -4, -8, -12, -12]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n(sort_des([0, -4, -4, 4, -2]),2))),-4)",
    "io_inp": [
      0,
      -4,
      -4,
      4,
      -2
    ],
    "io_out": [
      4,
      -4,
      -8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(sort_des(input),2))),-4)"
  },
  {
    "input": "input : list = [5, -5, 1, -5]\noutput : list = [8, 2, 8, -2]",
    "output": "generated_output : list = reverse(mul_n(sub_n([5, -5, 1, -5],3),-1))",
    "io_inp": [
      5,
      -5,
      1,
      -5
    ],
    "io_out": [
      8,
      2,
      8,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,3),-1))"
  },
  {
    "input": "input : list = [-2, 4, 1, 5]\noutput : list = [34, 2, 26, -22]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(mul_n([-2, 4, 1, 5],-1)),4),-3),-2)",
    "io_inp": [
      -2,
      4,
      1,
      5
    ],
    "io_out": [
      34,
      2,
      26,
      -22
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(mul_n(input,-1)),4),-3),-2)"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(take(reverse(take(drop([4, 1, 4],1),9)),26))",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(drop(input,1),9)),26))"
  },
  {
    "input": "input : list = [3, 5, 2, 4, -3, -4]\noutput : list = [-28, -20]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse(take([3, 5, 2, 4, -3, -4],2)),2)),-4)",
    "io_inp": [
      3,
      5,
      2,
      4,
      -3,
      -4
    ],
    "io_out": [
      -28,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(take(input,2)),2)),-4)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-3, -4, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n([-3, -5, -2],-1))),2))",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sub_n(input,-1))),2))"
  },
  {
    "input": "input : list = [-1, -2, 4, -2]\noutput : list = [32, -8, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_asc([-1, -2, 4, -2]),-4)),-2))",
    "io_inp": [
      -1,
      -2,
      4,
      -2
    ],
    "io_out": [
      32,
      -8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_asc(input),-4)),-2))"
  },
  {
    "input": "input : list = [-5, -2, -2, 5, 1, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(reverse(take(take([-5, -2, -2, 5, 1, -3],2),1)))",
    "io_inp": [
      -5,
      -2,
      -2,
      5,
      1,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(input,2),1)))"
  },
  {
    "input": "input : list = [2, -5, 0, 3]\noutput : list = [-28, 0, -20, -32]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(add_n([2, -5, 0, 3],5),-4),-1),1),47)",
    "io_inp": [
      2,
      -5,
      0,
      3
    ],
    "io_out": [
      -28,
      0,
      -20,
      -32
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(add_n(input,5),-4),-1),1),47)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-1, -3]),-4)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-2, 1, 5]",
    "output": "generated_output : list = sort_asc([1, -2, 5])",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, 4]\noutput : list = [0, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n([-1, -2, 4],4))",
    "io_inp": [
      -1,
      -2,
      4
    ],
    "io_out": [
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [-3, 5, -1, -4, 4]\noutput : list = [5, 4, -1, -4]",
    "output": "generated_output : list = sort_des(drop([-3, 5, -1, -4, 4],1))",
    "io_inp": [
      -3,
      5,
      -1,
      -4,
      4
    ],
    "io_out": [
      5,
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 5, -1]\noutput : list = [-8, -5]",
    "output": "generated_output : list = add_n(add_n(take(take(sort_asc([-4, 5, -1]),9),2),-3),-1)",
    "io_inp": [
      -4,
      5,
      -1
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(sort_asc(input),9),2),-3),-1)"
  },
  {
    "input": "input : list = [1, 2, 1]\noutput : list = [8]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(take([1, 2, 1],1)),3),-4),36)",
    "io_inp": [
      1,
      2,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(take(input,1)),3),-4),36)"
  },
  {
    "input": "input : list = [4, 3, 4, 1, 2, 5]\noutput : list = [8, 7, 8, 5, 6, 9]",
    "output": "generated_output : list = add_n([4, 3, 4, 1, 2, 5],4)",
    "io_inp": [
      4,
      3,
      4,
      1,
      2,
      5
    ],
    "io_out": [
      8,
      7,
      8,
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(sort_des([2, 1]),3)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-3, -5, 5, -3]\noutput : list = [-9, -7, -7, 1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([-3, -5, 5, -3],-2)),2)",
    "io_inp": [
      -3,
      -5,
      5,
      -3
    ],
    "io_out": [
      -9,
      -7,
      -7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,-2)),2)"
  },
  {
    "input": "input : list = [4, -3, 5, 3, 5, -4]\noutput : list = [-8, 6, 10, 10]",
    "output": "generated_output : list = mul_n(sort_asc(drop(add_n(add_n([4, -3, 5, 3, 5, -4],-1),1),2)),2)",
    "io_inp": [
      4,
      -3,
      5,
      3,
      5,
      -4
    ],
    "io_out": [
      -8,
      6,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(add_n(add_n(input,-1),1),2)),2)"
  },
  {
    "input": "input : list = [2, -1, 5, -4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(drop([2, -1, 5, -4, 0],3))),35))",
    "io_inp": [
      2,
      -1,
      5,
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(drop(input,3))),35))"
  },
  {
    "input": "input : list = [-5, -3, 4, -4, 5, 3]\noutput : list = [-35]",
    "output": "generated_output : list = mul_n(sort_des(take(take(add_n([-5, -3, 4, -4, 5, 3],-2),11),1)),5)",
    "io_inp": [
      -5,
      -3,
      4,
      -4,
      5,
      3
    ],
    "io_out": [
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(add_n(input,-2),11),1)),5)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-7, 0]",
    "output": "generated_output : list = sub_n([-4, 3],3)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, -2, 1, -1, 0, -3]\noutput : list = [-6, -3, -4]",
    "output": "generated_output : list = reverse(take(take(drop(sub_n([0, -2, 1, -1, 0, -3],3),3),5),11))",
    "io_inp": [
      0,
      -2,
      1,
      -1,
      0,
      -3
    ],
    "io_out": [
      -6,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(drop(sub_n(input,3),3),5),11))"
  },
  {
    "input": "input : list = [-2, 5, 5, 4, -5, 5]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(take([-2, 5, 5, 4, -5, 5],2)),1)))",
    "io_inp": [
      -2,
      5,
      5,
      4,
      -5,
      5
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(take(input,2)),1)))"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [0, 8]",
    "output": "generated_output : list = sub_n(drop([2, -5, 3],1),-5)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(reverse([2, 3, 5])),5)),-1)",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(reverse(input)),5)),-1)"
  },
  {
    "input": "input : list = [4, 4, -4, -2]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 4, -4, -2],1)",
    "io_inp": [
      4,
      4,
      -4,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 2, -1, -3, 0, 5]\noutput : list = [5, -10, -25]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(take([5, 2, -1, -3, 0, 5],3)),-5)))",
    "io_inp": [
      5,
      2,
      -1,
      -3,
      0,
      5
    ],
    "io_out": [
      5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(take(input,3)),-5)))"
  },
  {
    "input": "input : list = [0, 2, 2, 2, 1]\noutput : list = [-3, -3, -3, -4, -5]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sort_asc([0, 2, 2, 2, 1]),-5),1)),49)",
    "io_inp": [
      0,
      2,
      2,
      2,
      1
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sort_asc(input),-5),1)),49)"
  },
  {
    "input": "input : list = [2, -2, -4, 3, -2]\noutput : list = [3, 2, -2, -2, -4]",
    "output": "generated_output : list = sort_des([2, -2, -4, 3, -2])",
    "io_inp": [
      2,
      -2,
      -4,
      3,
      -2
    ],
    "io_out": [
      3,
      2,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sub_n([-5, -4],-5))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-3, -5, 3, 2, 1, 3]\noutput : list = [3, 2, 1, 3]",
    "output": "generated_output : list = take(drop([-3, -5, 3, 2, 1, 3],2),23)",
    "io_inp": [
      -3,
      -5,
      3,
      2,
      1,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),23)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des([5, 0])",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, 3, 5]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take([-1, -2, 3, 5],1),2))),-1)",
    "io_inp": [
      -1,
      -2,
      3,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take(input,1),2))),-1)"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [-15, -3, 9]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(sort_asc([-5, 3, -1]),-1))),-3)",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      -15,
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(sort_asc(input),-1))),-3)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-8, -5]",
    "output": "generated_output : list = reverse(take(sub_n(add_n(sort_des([-3, 0]),-2),3),5))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(add_n(sort_des(input),-2),3),5))"
  },
  {
    "input": "input : list = [-5, 4, -3, -4, 3]\noutput : list = [-4, -3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-5, 4, -3, -4, 3]),-1))",
    "io_inp": [
      -5,
      4,
      -3,
      -4,
      3
    ],
    "io_out": [
      -4,
      -3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [90, -15]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(mul_n([-4, 3],-3),-4),10),2),5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      90,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(mul_n(input,-3),-4),10),2),5)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = mul_n(sub_n([-5, 1],-4),-1)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-1, -1, 3, -4, 1]\noutput : list = [2, -3, 4, 0, 0]",
    "output": "generated_output : list = add_n(add_n(reverse([-1, -1, 3, -4, 1]),2),-1)",
    "io_inp": [
      -1,
      -1,
      3,
      -4,
      1
    ],
    "io_out": [
      2,
      -3,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),2),-1)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [6, 2, 1]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n([-3, -2, 2],-5)),1),-1)",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(input,-5)),1),-1)"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [-30, 10]",
    "output": "generated_output : list = mul_n(mul_n(take(take(drop([-1, 3, -1],1),3),14),2),-5)",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      -30,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(drop(input,1),3),14),2),-5)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [2, 2, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n([-5, -5, 0],4),-3))))",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n(input,4),-3))))"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [-3, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([5, 5, -3]))",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [7, 9, 5]",
    "output": "generated_output : list = add_n([2, 4, 0],5)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      7,
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, 5, -4, -4]\noutput : list = [5, -4, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(sub_n([-5, 5, -4, -4],1),1))))",
    "io_inp": [
      -5,
      5,
      -4,
      -4
    ],
    "io_out": [
      5,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(sub_n(input,1),1))))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-4, 8]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n([-1, 3],-1),8),3),-2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(input,-1),8),3),-2)"
  },
  {
    "input": "input : list = [3, 3, -1, -1]\noutput : list = [-6, -6, 2, 2]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([3, 3, -1, -1])),-2)",
    "io_inp": [
      3,
      3,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -6,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [3, -3, -3, -2]\noutput : list = [-3, -3, -2]",
    "output": "generated_output : list = drop([3, -3, -3, -2],1)",
    "io_inp": [
      3,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -5, 2, -5, 1]\noutput : list = [-20, -10, -5, 25, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sort_asc([4, -5, 2, -5, 1]))),-5))",
    "io_inp": [
      4,
      -5,
      2,
      -5,
      1
    ],
    "io_out": [
      -20,
      -10,
      -5,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = drop([3, -1, 1],1)",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -1, 2, 1]\noutput : list = [-12, -6]",
    "output": "generated_output : list = take(mul_n(mul_n(drop([1, -1, 2, 1],2),-2),3),6)",
    "io_inp": [
      1,
      -1,
      2,
      1
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(drop(input,2),-2),3),6)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [6, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sort_asc([5, -4]))),-1))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sort_asc(input))),-1))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = take(add_n(add_n([-5, -1],3),-5),24)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,3),-5),24)"
  },
  {
    "input": "input : list = [-2, 0, -4, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(mul_n([-2, 0, -4, -3],2),-3),6)),2)",
    "io_inp": [
      -2,
      0,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(mul_n(input,2),-3),6)),2)"
  },
  {
    "input": "input : list = [0, -4, -2, -3]\noutput : list = [1, -1, -2, -3]",
    "output": "generated_output : list = sort_des(sub_n([0, -4, -2, -3],-1))",
    "io_inp": [
      0,
      -4,
      -2,
      -3
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-1))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [17, -10]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(sub_n([5, -4],-1),3),1)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      17,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(sub_n(input,-1),3),1)))"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [7, 3, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(sub_n([4, -5, 0],-5))),-2))",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      7,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(sub_n(input,-5))),-2))"
  },
  {
    "input": "input : list = [0, 1, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(take(mul_n(mul_n(take([0, 1, 4],1),-2),-5),34),25)",
    "io_inp": [
      0,
      1,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(take(input,1),-2),-5),34),25)"
  },
  {
    "input": "input : list = [-1, 2, -4, 4, -1]\noutput : list = [2, 0, -3, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des([-1, 2, -4, 4, -1]),2)",
    "io_inp": [
      -1,
      2,
      -4,
      4,
      -1
    ],
    "io_out": [
      2,
      0,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-16, -16]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(reverse([-3, -3])),1),4))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(reverse(input)),1),4))"
  },
  {
    "input": "input : list = [5, 2, 5, 2, -2, -2]\noutput : list = [-2, -2, 2, 2, 5, 5]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([5, 2, 5, 2, -2, -2],-1)),-1)",
    "io_inp": [
      5,
      2,
      5,
      2,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      2,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,-1)),-1)"
  },
  {
    "input": "input : list = [-1, 3, 0, 1, 2]\noutput : list = [3, 2, 1, 0, -1]",
    "output": "generated_output : list = sort_des([-1, 3, 0, 1, 2])",
    "io_inp": [
      -1,
      3,
      0,
      1,
      2
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(take([0, 3, -1],1)),5),4))",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(take(input,1)),5),4))"
  },
  {
    "input": "input : list = [-1, -4, -2, -4]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(drop([-1, -4, -2, -4],1),14))),31)",
    "io_inp": [
      -1,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(drop(input,1),14))),31)"
  },
  {
    "input": "input : list = [4, 5, 5]\noutput : list = [1, 1, 0]",
    "output": "generated_output : list = reverse(add_n(add_n([4, 5, 5],-3),-1))",
    "io_inp": [
      4,
      5,
      5
    ],
    "io_out": [
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-3),-1))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sort_asc([1, 4]))),-2))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [3, -1, 5, 2, -5]\noutput : list = [16, 0, 24, 12, -16]",
    "output": "generated_output : list = sub_n(mul_n([3, -1, 5, 2, -5],4),-4)",
    "io_inp": [
      3,
      -1,
      5,
      2,
      -5
    ],
    "io_out": [
      16,
      0,
      24,
      12,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),-4)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [-5, 1, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(sort_asc([-5, 5, 1]))),32))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(sort_asc(input))),32))"
  },
  {
    "input": "input : list = [5, -1, -3]\noutput : list = [10, 4, 2]",
    "output": "generated_output : list = take(sub_n([5, -1, -3],-5),9)",
    "io_inp": [
      5,
      -1,
      -3
    ],
    "io_out": [
      10,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),9)"
  },
  {
    "input": "input : list = [-2, 3, 3]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n(sort_des([-2, 3, 3]),4)),-2),1)",
    "io_inp": [
      -2,
      3,
      3
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(sort_des(input),4)),-2),1)"
  },
  {
    "input": "input : list = [-3, 2, -4, -2, 2]\noutput : list = [-3, -7, -9]",
    "output": "generated_output : list = add_n(sub_n(sort_des(drop([-3, 2, -4, -2, 2],2)),3),-2)",
    "io_inp": [
      -3,
      2,
      -4,
      -2,
      2
    ],
    "io_out": [
      -3,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(drop(input,2)),3),-2)"
  },
  {
    "input": "input : list = [3, 3, -4, -2]\noutput : list = [-5, -5, 0, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(sort_asc([3, 3, -4, -2]),2))),-1)",
    "io_inp": [
      3,
      3,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(sort_asc(input),2))),-1)"
  },
  {
    "input": "input : list = [-3, 3, -4, 1, -4]\noutput : list = [-2, 4, -3]",
    "output": "generated_output : list = add_n(take([-3, 3, -4, 1, -4],3),1)",
    "io_inp": [
      -3,
      3,
      -4,
      1,
      -4
    ],
    "io_out": [
      -2,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),1)"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sort_des([3, -2, -4]),12),2),-1))",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sort_des(input),12),2),-1))"
  },
  {
    "input": "input : list = [-1, 1, -3, 2]\noutput : list = [12, 10, 6, 2]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sub_n([-1, 1, -3, 2],-4)))),2)",
    "io_inp": [
      -1,
      1,
      -3,
      2
    ],
    "io_out": [
      12,
      10,
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sub_n(input,-4)))),2)"
  },
  {
    "input": "input : list = [4, 4, 2]\noutput : list = [0, 0, -2]",
    "output": "generated_output : list = add_n([4, 4, 2],-4)",
    "io_inp": [
      4,
      4,
      2
    ],
    "io_out": [
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 1, -5, -5]\noutput : list = [-5, -5, 1, -4]",
    "output": "generated_output : list = reverse([-4, 1, -5, -5])",
    "io_inp": [
      -4,
      1,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, 3, -3, -5]\noutput : list = [-35, -59, -47, 25, 49]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(mul_n([2, 4, 3, -3, -5],-3),4),-4),5),-1)",
    "io_inp": [
      2,
      4,
      3,
      -3,
      -5
    ],
    "io_out": [
      -35,
      -59,
      -47,
      25,
      49
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(mul_n(input,-3),4),-4),5),-1)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [20, 4, 4]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(reverse([3, 1, 1]),-4)),-2),-4)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      20,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(reverse(input),-4)),-2),-4)"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [13]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(take([3, -3, 1],1),3)),4),-3)",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(take(input,1),3)),4),-3)"
  },
  {
    "input": "input : list = [5, 5, 1, -3, 4]\noutput : list = [-3, 1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(sort_asc([5, 5, 1, -3, 4])),14),24))",
    "io_inp": [
      5,
      5,
      1,
      -3,
      4
    ],
    "io_out": [
      -3,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(sort_asc(input)),14),24))"
  },
  {
    "input": "input : list = [-3, 1, 3, 3, -4]\noutput : list = [-7, -2, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(drop([-3, 1, 3, 3, -4],1)),3)))",
    "io_inp": [
      -3,
      1,
      3,
      3,
      -4
    ],
    "io_out": [
      -7,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(drop(input,1)),3)))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [0, 6]",
    "output": "generated_output : list = add_n([-3, 3],3)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(take([-4, 3, 5],1))),4))",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(take(input,1))),4))"
  },
  {
    "input": "input : list = [-4, 3, 2, -3]\noutput : list = [-1, -2, -7, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(add_n([-4, 3, 2, -3],-4))),38))",
    "io_inp": [
      -4,
      3,
      2,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(add_n(input,-4))),38))"
  },
  {
    "input": "input : list = [5, -2, 5, 3]\noutput : list = [-5, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(add_n([5, -2, 5, 3],1),4)),-4))",
    "io_inp": [
      5,
      -2,
      5,
      3
    ],
    "io_out": [
      -5,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(add_n(input,1),4)),-4))"
  },
  {
    "input": "input : list = [-3, 4, 3, 4, -2]\noutput : list = [-1, -1, 0, 5, 6]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n([-3, 4, 3, 4, -2],-2)),5),23),-1)",
    "io_inp": [
      -3,
      4,
      3,
      4,
      -2
    ],
    "io_out": [
      -1,
      -1,
      0,
      5,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n(input,-2)),5),23),-1)"
  },
  {
    "input": "input : list = [-3, -4, 1, -5]\noutput : list = [-15, -20]",
    "output": "generated_output : list = take(mul_n(mul_n(take([-3, -4, 1, -5],2),1),5),6)",
    "io_inp": [
      -3,
      -4,
      1,
      -5
    ],
    "io_out": [
      -15,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(input,2),1),5),6)"
  },
  {
    "input": "input : list = [2, -3, 4, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(take([2, -3, 4, -5],2),-4),2)))",
    "io_inp": [
      2,
      -3,
      4,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(take(input,2),-4),2)))"
  },
  {
    "input": "input : list = [-1, 4, 3, 1, 5, 1]\noutput : list = [-1, 1, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 4, 3, 1, 5, 1]))",
    "io_inp": [
      -1,
      4,
      3,
      1,
      5,
      1
    ],
    "io_out": [
      -1,
      1,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sort_des([2, -2]))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, 5, -1, 1]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(take([5, 5, -1, 1],2),2),27)),-2)",
    "io_inp": [
      5,
      5,
      -1,
      1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(take(input,2),2),27)),-2)"
  },
  {
    "input": "input : list = [-5, -3, -2, -5, -2, -3]\noutput : list = [-3, -2, -5, -2, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, -2, -5, -2, -3])",
    "io_inp": [
      -5,
      -3,
      -2,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -5,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, -4, -4, -5, -1]\noutput : list = [-4]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(take([-4, -3, -4, -4, -5, -1],1)))),48)",
    "io_inp": [
      -4,
      -3,
      -4,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(take(input,1)))),48)"
  },
  {
    "input": "input : list = [1, 4, -3, -2, 3]\noutput : list = [2, 8, -6, -4, 6]",
    "output": "generated_output : list = mul_n([1, 4, -3, -2, 3],2)",
    "io_inp": [
      1,
      4,
      -3,
      -2,
      3
    ],
    "io_out": [
      2,
      8,
      -6,
      -4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, 5, 2, -4, -3]\noutput : list = [3, 7, 4, -2, -1]",
    "output": "generated_output : list = sub_n([1, 5, 2, -4, -3],-2)",
    "io_inp": [
      1,
      5,
      2,
      -4,
      -3
    ],
    "io_out": [
      3,
      7,
      4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(reverse([1, -3]),-2))))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [-3, -3, -4, 4, 0, 0]\noutput : list = [14, 14, 19, -21, -1, -1]",
    "output": "generated_output : list = sub_n(add_n(mul_n([-3, -3, -4, 4, 0, 0],-5),1),2)",
    "io_inp": [
      -3,
      -3,
      -4,
      4,
      0,
      0
    ],
    "io_out": [
      14,
      14,
      19,
      -21,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-5),1),2)"
  },
  {
    "input": "input : list = [3, -5, -2, 2]\noutput : list = [12, 11, 7, 4]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des([3, -5, -2, 2]),-5),23),-4)",
    "io_inp": [
      3,
      -5,
      -2,
      2
    ],
    "io_out": [
      12,
      11,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(input),-5),23),-4)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(mul_n([4, -2, -4],-3),1)),3))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(mul_n(input,-3),1)),3))"
  },
  {
    "input": "input : list = [2, -4, 0, -5, 1]\noutput : list = [2, 1, 0]",
    "output": "generated_output : list = sort_des(drop(sort_asc([2, -4, 0, -5, 1]),2))",
    "io_inp": [
      2,
      -4,
      0,
      -5,
      1
    ],
    "io_out": [
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_asc(input),2))"
  },
  {
    "input": "input : list = [-4, 2, 4, -3]\noutput : list = [-7, -6, -1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sort_asc([-4, 2, 4, -3])),-5),-2))",
    "io_inp": [
      -4,
      2,
      4,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sort_asc(input)),-5),-2))"
  },
  {
    "input": "input : list = [5, 4, -3, -1, 1, 3]\noutput : list = [4, 2, 0, -2, 5, 6]",
    "output": "generated_output : list = reverse(sub_n([5, 4, -3, -1, 1, 3],-1))",
    "io_inp": [
      5,
      4,
      -3,
      -1,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      0,
      -2,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [4, -5, -2, 0]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(take([4, -5, -2, 0],2))",
    "io_inp": [
      4,
      -5,
      -2,
      0
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-4, -1, -4, 4]\noutput : list = [-5, -5, 10, 35]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(add_n([-4, -1, -4, 4],3))),17),5)",
    "io_inp": [
      -4,
      -1,
      -4,
      4
    ],
    "io_out": [
      -5,
      -5,
      10,
      35
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(add_n(input,3))),17),5)"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [1, 25, 29]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_asc([-2, 5, 4]),2),4),-4),-3)",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      1,
      25,
      29
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_asc(input),2),4),-4),-3)"
  },
  {
    "input": "input : list = [-4, -5, 2, -5, -3]\noutput : list = [1, -1, 6, -1, 0]",
    "output": "generated_output : list = reverse(add_n([-4, -5, 2, -5, -3],4))",
    "io_inp": [
      -4,
      -5,
      2,
      -5,
      -3
    ],
    "io_out": [
      1,
      -1,
      6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [-1, 2, 5]\noutput : list = [1, 4, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(add_n([-1, 2, 5],-4))),2),-4)",
    "io_inp": [
      -1,
      2,
      5
    ],
    "io_out": [
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(add_n(input,-4))),2),-4)"
  },
  {
    "input": "input : list = [3, 1, -4, -3, -2]\noutput : list = [14, 12, 9, 8, 7]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(add_n([3, 1, -4, -3, -2],5)),4),4),2)",
    "io_inp": [
      3,
      1,
      -4,
      -3,
      -2
    ],
    "io_out": [
      14,
      12,
      9,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(add_n(input,5)),4),4),2)"
  },
  {
    "input": "input : list = [-4, 2, 5, -4, -4]\noutput : list = [4, 4, 4, -2, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(sort_asc([-4, 2, 5, -4, -4]),-1))),30)",
    "io_inp": [
      -4,
      2,
      5,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(sort_asc(input),-1))),30)"
  },
  {
    "input": "input : list = [3, 2, -4, 0, -3, 5]\noutput : list = [12, 10, 9, 7, 4, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n([3, 2, -4, 0, -3, 5],4)))),3)",
    "io_inp": [
      3,
      2,
      -4,
      0,
      -3,
      5
    ],
    "io_out": [
      12,
      10,
      9,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n(input,4)))),3)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [4, 1]",
    "output": "generated_output : list = sub_n([0, -3],-4)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des([2, -3])",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(sort_des([2, 1]),1)),24))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(sort_des(input),1)),24))"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [9, 12, 14]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([5, 3, 0],-5)),-4)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      9,
      12,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-5)),-4)"
  },
  {
    "input": "input : list = [-4, -1, -2, -2, -5]\noutput : list = [-4]",
    "output": "generated_output : list = take(take([-4, -1, -2, -2, -5],1),8)",
    "io_inp": [
      -4,
      -1,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,1),8)"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = add_n([1, -1, -4],2)",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [3, 4, -4, 3]\noutput : list = [-2, 5, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sort_asc([3, 4, -4, 3])),2),-4))",
    "io_inp": [
      3,
      4,
      -4,
      3
    ],
    "io_out": [
      -2,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sort_asc(input)),2),-4))"
  },
  {
    "input": "input : list = [-1, 1, 4, -3, -1, 5]\noutput : list = [-2, 0, 3, -4, -2, 4]",
    "output": "generated_output : list = add_n([-1, 1, 4, -3, -1, 5],-1)",
    "io_inp": [
      -1,
      1,
      4,
      -3,
      -1,
      5
    ],
    "io_out": [
      -2,
      0,
      3,
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 1, 5, 5, 5, 5]\noutput : list = [15, 11, -5, -5, -5, -5]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(sub_n([0, 1, 5, 5, 5, 5],3),-4))),-3)",
    "io_inp": [
      0,
      1,
      5,
      5,
      5,
      5
    ],
    "io_out": [
      15,
      11,
      -5,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(sub_n(input,3),-4))),-3)"
  },
  {
    "input": "input : list = [-3, -3, 3, -1]\noutput : list = [-16, -16]",
    "output": "generated_output : list = mul_n(sub_n(take(take(sort_asc([-3, -3, 3, -1]),7),2),1),4)",
    "io_inp": [
      -3,
      -3,
      3,
      -1
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(sort_asc(input),7),2),1),4)"
  },
  {
    "input": "input : list = [-3, -4, 0, 3, 5]\noutput : list = [-3, -2, 1, 4, 6]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sub_n([-3, -4, 0, 3, 5],-1)))))",
    "io_inp": [
      -3,
      -4,
      0,
      3,
      5
    ],
    "io_out": [
      -3,
      -2,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc([1, -3])",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 2, -1]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(take([1, 2, -1],1)),-5),1))",
    "io_inp": [
      1,
      2,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(take(input,1)),-5),1))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(add_n([0, 4],-1)),-3)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(add_n(input,-1)),-3)))"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [-3, -4, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(add_n([2, -2, 3],-4),-4),-2)))",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(add_n(input,-4),-4),-2)))"
  },
  {
    "input": "input : list = [-3, -3, -3, -4, -5]\noutput : list = [1, 1, 1, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des([-3, -3, -3, -4, -5]),-4)",
    "io_inp": [
      -3,
      -3,
      -3,
      -4,
      -5
    ],
    "io_out": [
      1,
      1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-3, 2, 0]\noutput : list = [-64, 16, -16]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(mul_n([-3, 2, 0],-1),-4),-3),-1),4)",
    "io_inp": [
      -3,
      2,
      0
    ],
    "io_out": [
      -64,
      16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(mul_n(input,-1),-4),-3),-1),4)"
  },
  {
    "input": "input : list = [3, 3, 0, -3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = drop([3, 3, 0, -3, -5],3)",
    "io_inp": [
      3,
      3,
      0,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 2, -3, 1]\noutput : list = [2, 1, -2, -3]",
    "output": "generated_output : list = take(reverse(reverse(reverse(sort_asc([-2, 2, -3, 1])))),15)",
    "io_inp": [
      -2,
      2,
      -3,
      1
    ],
    "io_out": [
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(sort_asc(input)))),15)"
  },
  {
    "input": "input : list = [1, -2, 0, 4, 0, 0]\noutput : list = [-2, 0, 0, 0, 4]",
    "output": "generated_output : list = take(reverse(sort_des(take(drop([1, -2, 0, 4, 0, 0],1),13))),51)",
    "io_inp": [
      1,
      -2,
      0,
      4,
      0,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(drop(input,1),13))),51)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-40, -10]",
    "output": "generated_output : list = take(take(mul_n(mul_n(sort_des([4, 1]),-2),5),33),6)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -40,
      -10
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(sort_des(input),-2),5),33),6)"
  },
  {
    "input": "input : list = [4, -3, -1, 5]\noutput : list = [5, -2, 0, 6]",
    "output": "generated_output : list = sub_n(sub_n([4, -3, -1, 5],-5),4)",
    "io_inp": [
      4,
      -3,
      -1,
      5
    ],
    "io_out": [
      5,
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),4)"
  },
  {
    "input": "input : list = [-1, 3, 4, 0, 5, -1]\noutput : list = [-6, 24]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(drop([-1, 3, 4, 0, 5, -1],4)),5)),-1)",
    "io_inp": [
      -1,
      3,
      4,
      0,
      5,
      -1
    ],
    "io_out": [
      -6,
      24
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(drop(input,4)),5)),-1)"
  },
  {
    "input": "input : list = [-3, 1, -4, 2, -2, -3]\noutput : list = [-1, -2, -5, -6, -6, -7]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(sub_n([-3, 1, -4, 2, -2, -3],4),1))),2)",
    "io_inp": [
      -3,
      1,
      -4,
      2,
      -2,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(sub_n(input,4),1))),2)"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = sort_des([-3, 5, 0])",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 0, 0]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(take([5, 0, 0],1),1)",
    "io_inp": [
      5,
      0,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),1)"
  },
  {
    "input": "input : list = [-4, 1, 5, -5, -2, -1]\noutput : list = [-3, -6, -15]",
    "output": "generated_output : list = reverse(mul_n(sub_n(drop(sub_n([-4, 1, 5, -5, -2, -1],-2),3),2),3))",
    "io_inp": [
      -4,
      1,
      5,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(drop(sub_n(input,-2),3),2),3))"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take([-2, 2, 3],1)),4)))",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take(input,1)),4)))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [25, -25]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(sort_asc([5, -5]),8),-5)),-1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(sort_asc(input),8),-5)),-1)"
  },
  {
    "input": "input : list = [3, 1, -5, -1]\noutput : list = [2, 10, -2, -6]",
    "output": "generated_output : list = take(take(take(reverse(mul_n([3, 1, -5, -1],-2)),31),33),44)",
    "io_inp": [
      3,
      1,
      -5,
      -1
    ],
    "io_out": [
      2,
      10,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(mul_n(input,-2)),31),33),44)"
  },
  {
    "input": "input : list = [1, -5, 3, -4, 3, 0]\noutput : list = [-20, -16, 0, 4, 12, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(mul_n([1, -5, 3, -4, 3, 0],1),4))))",
    "io_inp": [
      1,
      -5,
      3,
      -4,
      3,
      0
    ],
    "io_out": [
      -20,
      -16,
      0,
      4,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(mul_n(input,1),4))))"
  },
  {
    "input": "input : list = [4, -1, -4, 5, -2]\noutput : list = [-4, -2, -1, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([4, -1, -4, 5, -2]))",
    "io_inp": [
      4,
      -1,
      -4,
      5,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 5, 0, 3, -2, -1]\noutput : list = [1, 4, -1, 2, -3, -2]",
    "output": "generated_output : list = sub_n(sub_n([2, 5, 0, 3, -2, -1],5),-4)",
    "io_inp": [
      2,
      5,
      0,
      3,
      -2,
      -1
    ],
    "io_out": [
      1,
      4,
      -1,
      2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),-4)"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [-2, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(reverse([-1, 2, -1]),-2),-1)))",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(reverse(input),-2),-1)))"
  },
  {
    "input": "input : list = [2, -2, 2, 0, 5, -5]\noutput : list = [3, 0, -2, -4, -7]",
    "output": "generated_output : list = sort_des(sub_n(drop([2, -2, 2, 0, 5, -5],1),2))",
    "io_inp": [
      2,
      -2,
      2,
      0,
      5,
      -5
    ],
    "io_out": [
      3,
      0,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),2))"
  },
  {
    "input": "input : list = [3, -5, -3, -4, 5, -1]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(reverse([3, -5, -3, -4, 5, -1])),1),2),-1)",
    "io_inp": [
      3,
      -5,
      -3,
      -4,
      5,
      -1
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(reverse(input)),1),2),-1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-8, -10]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([-3, -5]),5))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-3, 2, 4, 4, 3]\noutput : list = [12, 12, 9]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(drop([-3, 2, 4, 4, 3],2)))),3)",
    "io_inp": [
      -3,
      2,
      4,
      4,
      3
    ],
    "io_out": [
      12,
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(drop(input,2)))),3)"
  },
  {
    "input": "input : list = [-3, 2, -3, -1, 3, 0]\noutput : list = [3, 2, 0, -1, -3, -3]",
    "output": "generated_output : list = sort_des(reverse([-3, 2, -3, -1, 3, 0]))",
    "io_inp": [
      -3,
      2,
      -3,
      -1,
      3,
      0
    ],
    "io_out": [
      3,
      2,
      0,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [3, -12]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(reverse([0, -5]),4)),-3))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(reverse(input),4)),-3))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n([1, 1],-4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, 5, -4, 2]\noutput : list = [-20, 4, 16]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(add_n([2, 5, -4, 2],-1),3)),4))",
    "io_inp": [
      2,
      5,
      -4,
      2
    ],
    "io_out": [
      -20,
      4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(add_n(input,-1),3)),4))"
  },
  {
    "input": "input : list = [-4, -5, 3, -1]\noutput : list = [-1, 3, -5, -4]",
    "output": "generated_output : list = reverse([-4, -5, 3, -1])",
    "io_inp": [
      -4,
      -5,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 1, 0]\noutput : list = [4, 3, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(sort_des([-4, 1, 0])),-3)))",
    "io_inp": [
      -4,
      1,
      0
    ],
    "io_out": [
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [-7, 3, -11]",
    "output": "generated_output : list = add_n(reverse(take(mul_n([5, -2, 3],-2),18)),-1)",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      -7,
      3,
      -11
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(input,-2),18)),-1)"
  },
  {
    "input": "input : list = [2, -3, 2, -5]\noutput : list = [-5, -3, 2, 2]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(sort_des([2, -3, 2, -5])),24),1))",
    "io_inp": [
      2,
      -3,
      2,
      -5
    ],
    "io_out": [
      -5,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(sort_des(input)),24),1))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(sub_n([-2, 4],-2)),1),1),2)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(sub_n(input,-2)),1),1),2)"
  },
  {
    "input": "input : list = [-5, 2, 5, 2, -2]\noutput : list = [-9, -2, 1, -2, -6]",
    "output": "generated_output : list = add_n([-5, 2, 5, 2, -2],-4)",
    "io_inp": [
      -5,
      2,
      5,
      2,
      -2
    ],
    "io_out": [
      -9,
      -2,
      1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, -4, -4, -4, 4]\noutput : list = [11, 11]",
    "output": "generated_output : list = sort_des(drop(sub_n(sort_asc(mul_n([5, -4, -4, -4, 4],-3)),1),3))",
    "io_inp": [
      5,
      -4,
      -4,
      -4,
      4
    ],
    "io_out": [
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(sort_asc(mul_n(input,-3)),1),3))"
  },
  {
    "input": "input : list = [2, -3, -2, -5, -5, 1]\noutput : list = [2, 1, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des([2, -3, -2, -5, -5, 1])",
    "io_inp": [
      2,
      -3,
      -2,
      -5,
      -5,
      1
    ],
    "io_out": [
      2,
      1,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-20, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(sub_n([-3, -3],2)))),4)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(sub_n(input,2)))),4)"
  },
  {
    "input": "input : list = [-1, -1, -2, 1, -5, -1]\noutput : list = [-20, -8, -4, -4, -4, 4]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n([-1, -1, -2, 1, -5, -1],2)),15),2)",
    "io_inp": [
      -1,
      -1,
      -2,
      1,
      -5,
      -1
    ],
    "io_out": [
      -20,
      -8,
      -4,
      -4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(input,2)),15),2)"
  },
  {
    "input": "input : list = [-1, 3, 1, 1, 4, -5]\noutput : list = [24, 36, 12]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(take([-1, 3, 1, 1, 4, -5],3)),3),-2),-3)",
    "io_inp": [
      -1,
      3,
      1,
      1,
      4,
      -5
    ],
    "io_out": [
      24,
      36,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(take(input,3)),3),-2),-3)"
  },
  {
    "input": "input : list = [3, 4, -3, 0, -1, 1]\noutput : list = [7, 6, 4]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(reverse([3, 4, -3, 0, -1, 1]))),3),3)",
    "io_inp": [
      3,
      4,
      -3,
      0,
      -1,
      1
    ],
    "io_out": [
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(reverse(input))),3),3)"
  },
  {
    "input": "input : list = [1, 5, 2, -2, 5, -4]\noutput : list = [4, 8, 5, 1, 8, -1]",
    "output": "generated_output : list = sub_n([1, 5, 2, -2, 5, -4],-3)",
    "io_inp": [
      1,
      5,
      2,
      -2,
      5,
      -4
    ],
    "io_out": [
      4,
      8,
      5,
      1,
      8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(drop([-5, -4, 3],1))",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [2, -4, -3, 3, 5]\noutput : list = [-8, -7, -2, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([2, -4, -3, 3, 5],-4)))",
    "io_inp": [
      2,
      -4,
      -3,
      3,
      5
    ],
    "io_out": [
      -8,
      -7,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(add_n([-2, -2],4),12)),-3),-1)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(add_n(input,4),12)),-3),-1)"
  },
  {
    "input": "input : list = [2, -2, 5, 0]\noutput : list = [10, 14, 18, 24]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n([2, -2, 5, 0],2),5))),2)",
    "io_inp": [
      2,
      -2,
      5,
      0
    ],
    "io_out": [
      10,
      14,
      18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n(input,2),5))),2)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(take([2, 5, 1],1))),-1),1)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(take(input,1))),-1),1)"
  },
  {
    "input": "input : list = [-3, -5, -4, 4, -4]\noutput : list = [5, -2, -3, -3, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(add_n([-3, -5, -4, 4, -4],-4)),-5),44))",
    "io_inp": [
      -3,
      -5,
      -4,
      4,
      -4
    ],
    "io_out": [
      5,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(add_n(input,-4)),-5),44))"
  },
  {
    "input": "input : list = [3, -1, -2, -5]\noutput : list = [6, -2, -4, -10]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(sort_asc([3, -1, -2, -5]),-1)),-2),6)",
    "io_inp": [
      3,
      -1,
      -2,
      -5
    ],
    "io_out": [
      6,
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(sort_asc(input),-1)),-2),6)"
  },
  {
    "input": "input : list = [-2, 1, 3, 5, 2, -5]\noutput : list = [-15, -6, 3, 6, 9, 15]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(sort_asc([-2, 1, 3, 5, 2, -5]),-3),-1)),51)",
    "io_inp": [
      -2,
      1,
      3,
      5,
      2,
      -5
    ],
    "io_out": [
      -15,
      -6,
      3,
      6,
      9,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(sort_asc(input),-3),-1)),51)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [0, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_des([-4, 5]))),-1),3)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_des(input))),-1),3)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(sub_n([-1, 1],-5))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [7, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(sub_n([5, -3],-3),-1),4)),-4)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(sub_n(input,-3),-1),4)),-4)"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(reverse(take(drop([-1, 4, -5],1),12)))",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(drop(input,1),12)))"
  },
  {
    "input": "input : list = [3, 3, 2, -2, 2, -5]\noutput : list = [6, 6, 4, -4, 4, -10]",
    "output": "generated_output : list = mul_n([3, 3, 2, -2, 2, -5],2)",
    "io_inp": [
      3,
      3,
      2,
      -2,
      2,
      -5
    ],
    "io_out": [
      6,
      6,
      4,
      -4,
      4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, 5, -3, -5]\noutput : list = [8, 4, -12]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(drop([-4, 5, -3, -5],1),-2),4),2))",
    "io_inp": [
      -4,
      5,
      -3,
      -5
    ],
    "io_out": [
      8,
      4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(drop(input,1),-2),4),2))"
  },
  {
    "input": "input : list = [-4, -1, -3, 1]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(drop([-4, -1, -3, 1],1),15),1)))",
    "io_inp": [
      -4,
      -1,
      -3,
      1
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(drop(input,1),15),1)))"
  },
  {
    "input": "input : list = [5, -5, -5, -2, -4, 5]\noutput : list = [-20, -20, 8, 16, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n([5, -5, -5, -2, -4, 5],-4))",
    "io_inp": [
      5,
      -5,
      -5,
      -2,
      -4,
      5
    ],
    "io_out": [
      -20,
      -20,
      8,
      16,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-4, 4, 1, -4]\noutput : list = [-36, 0, 60, 60]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(add_n([-4, 4, 1, -4],-1)),-3),16),4)",
    "io_inp": [
      -4,
      4,
      1,
      -4
    ],
    "io_out": [
      -36,
      0,
      60,
      60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(add_n(input,-1)),-3),16),4)"
  },
  {
    "input": "input : list = [-5, 3, -1, -2]\noutput : list = [-2, 1, 2, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(reverse([-5, 3, -1, -2]))),-2),1)",
    "io_inp": [
      -5,
      3,
      -1,
      -2
    ],
    "io_out": [
      -2,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(reverse(input))),-2),1)"
  },
  {
    "input": "input : list = [3, -1, 1, -4, -3, 5]\noutput : list = [1, 2, 4, 6, 8, 10]",
    "output": "generated_output : list = add_n(reverse(sort_des([3, -1, 1, -4, -3, 5])),5)",
    "io_inp": [
      3,
      -1,
      1,
      -4,
      -3,
      5
    ],
    "io_out": [
      1,
      2,
      4,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-3, 0, 4, 3, 0]\noutput : list = [-6, -3, -3, 0, 1]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_asc(reverse([-3, 0, 4, 3, 0])),1),-5),-1)",
    "io_inp": [
      -3,
      0,
      4,
      3,
      0
    ],
    "io_out": [
      -6,
      -3,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_asc(reverse(input)),1),-5),-1)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(sub_n([-3, -1],-3),-4),-1)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(sub_n(input,-3),-4),-1)))"
  },
  {
    "input": "input : list = [2, -2, 2, -4, 1, -4]\noutput : list = [-7, 8, -7, 11, -1, 11]",
    "output": "generated_output : list = reverse(add_n(add_n(take(mul_n([2, -2, 2, -4, 1, -4],3),15),1),4))",
    "io_inp": [
      2,
      -2,
      2,
      -4,
      1,
      -4
    ],
    "io_out": [
      -7,
      8,
      -7,
      11,
      -1,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(mul_n(input,3),15),1),4))"
  },
  {
    "input": "input : list = [3, 0, -5, -1]\noutput : list = [-8, 4, 8, 24]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(sub_n([3, 0, -5, -1],-3)),4)),-4)",
    "io_inp": [
      3,
      0,
      -5,
      -1
    ],
    "io_out": [
      -8,
      4,
      8,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(sub_n(input,-3)),4)),-4)"
  },
  {
    "input": "input : list = [3, 4, 3, -2, 0]\noutput : list = [6, 7]",
    "output": "generated_output : list = sub_n(sub_n(take([3, 4, 3, -2, 0],2),-5),2)",
    "io_inp": [
      3,
      4,
      3,
      -2,
      0
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,2),-5),2)"
  },
  {
    "input": "input : list = [-3, 3, -4]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(sort_asc([-3, 3, -4]))),25),1)",
    "io_inp": [
      -3,
      3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(sort_asc(input))),25),1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sub_n([3, 2],4),1)),-3))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sub_n(input,4),1)),-3))"
  },
  {
    "input": "input : list = [-4, -1, -4, 1, 5, 2]\noutput : list = [-5, -2, -1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(sort_asc([-4, -1, -4, 1, 5, 2]),-1))))",
    "io_inp": [
      -4,
      -1,
      -4,
      1,
      5,
      2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-1, -1, 4]",
    "output": "generated_output : list = sub_n(take(add_n(take(add_n([-5, -5, 0],1),14),1),21),-2)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(add_n(input,1),14),1),21),-2)"
  },
  {
    "input": "input : list = [-1, 2, 1, 4, 1]\noutput : list = [-3, -1, -1, 0, 2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(sub_n([-1, 2, 1, 4, 1],-2),-3),-3)),-2)",
    "io_inp": [
      -1,
      2,
      1,
      4,
      1
    ],
    "io_out": [
      -3,
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(sub_n(input,-2),-3),-3)),-2)"
  },
  {
    "input": "input : list = [1, -3, 1, 2, 4, 1]\noutput : list = [4, 8, 8, 8, 9, 11]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse([1, -3, 1, 2, 4, 1]),4),-3))",
    "io_inp": [
      1,
      -3,
      1,
      2,
      4,
      1
    ],
    "io_out": [
      4,
      8,
      8,
      8,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(input),4),-3))"
  },
  {
    "input": "input : list = [-4, -1, -1, -5, -4]\noutput : list = [-1, -1, -4]",
    "output": "generated_output : list = sort_des(take([-4, -1, -1, -5, -4],3))",
    "io_inp": [
      -4,
      -1,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [11, 15]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(add_n([-1, -3],-2),-4)),-2),-3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      11,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(add_n(input,-2),-4)),-2),-3)"
  },
  {
    "input": "input : list = [-3, -3, -5, 3]\noutput : list = [-5, -3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(drop([-3, -3, -5, 3],1),17),9)))",
    "io_inp": [
      -3,
      -3,
      -5,
      3
    ],
    "io_out": [
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(drop(input,1),17),9)))"
  },
  {
    "input": "input : list = [0, 2, -1]\noutput : list = [13, 15, 12]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(add_n([0, 2, -1],3),5),-5)))",
    "io_inp": [
      0,
      2,
      -1
    ],
    "io_out": [
      13,
      15,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(add_n(input,3),5),-5)))"
  },
  {
    "input": "input : list = [2, 5, 0, 2, -3, -1]\noutput : list = [-3, -1, 0, 2, 2, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse([2, 5, 0, 2, -3, -1]))))",
    "io_inp": [
      2,
      5,
      0,
      2,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1,
      0,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [7, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n([4, -5],-3),4)))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(input,-3),4)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(add_n([-1, -5],-3))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_des([-3, 3]),5),3),1))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_des(input),5),3),1))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n([-3, -2],-5)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, 2, -5, -4, 0, -4]\noutput : list = [-1, 0, 0, 4, 6, 6]",
    "output": "generated_output : list = take(reverse(add_n(add_n(sort_des([2, 2, -5, -4, 0, -4]),3),1)),25)",
    "io_inp": [
      2,
      2,
      -5,
      -4,
      0,
      -4
    ],
    "io_out": [
      -1,
      0,
      0,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(sort_des(input),3),1)),25)"
  },
  {
    "input": "input : list = [-3, -5, 4, 5, 4, -5]\noutput : list = [-5, -5, -3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(mul_n([-3, -5, 4, 5, 4, -5],1))",
    "io_inp": [
      -3,
      -5,
      4,
      5,
      4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sub_n([-1, -1],-5)),4)),-4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sub_n(input,-5)),4)),-4)"
  },
  {
    "input": "input : list = [0, 2, 5, -3, -5]\noutput : list = [8, 5, 3, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des([0, 2, 5, -3, -5]),-3)",
    "io_inp": [
      0,
      2,
      5,
      -3,
      -5
    ],
    "io_out": [
      8,
      5,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [3, -2, 2, 5, -3]\noutput : list = [-4, 1, -3, -6, 2]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sub_n([3, -2, 2, 5, -3],-1),6)),-1))",
    "io_inp": [
      3,
      -2,
      2,
      5,
      -3
    ],
    "io_out": [
      -4,
      1,
      -3,
      -6,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sub_n(input,-1),6)),-1))"
  },
  {
    "input": "input : list = [0, 3, -5, -5, 5]\noutput : list = [-4, -2, 1, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n([0, 3, -5, -5, 5],-1)),1)))",
    "io_inp": [
      0,
      3,
      -5,
      -5,
      5
    ],
    "io_out": [
      -4,
      -2,
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n(input,-1)),1)))"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sub_n(drop([1, -2, 5],1),1)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [4, 0, 0, 2]\noutput : list = [0, 0, 2, 4]",
    "output": "generated_output : list = reverse(sort_des([4, 0, 0, 2]))",
    "io_inp": [
      4,
      0,
      0,
      2
    ],
    "io_out": [
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [-14, -6, -6]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(mul_n([1, 1, 2],2),-4)),2),5)",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      -14,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(mul_n(input,2),-4)),2),5)"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [-2, -1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-5, -4, 1]),-3))",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [2, 0, -1]\noutput : list = [-32]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(take([2, 0, -1],1)),4),-4))",
    "io_inp": [
      2,
      0,
      -1
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(take(input,1)),4),-4))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, -3]",
    "output": "generated_output : list = mul_n([0, 1],-3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, 5, 4]\noutput : list = [9, 9, 8]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(sort_des([5, 5, 4]))),-4))",
    "io_inp": [
      5,
      5,
      4
    ],
    "io_out": [
      9,
      9,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [-2, 3, 4, 1, 3]\noutput : list = [-7, -2, -1, -4, -2]",
    "output": "generated_output : list = sub_n([-2, 3, 4, 1, 3],5)",
    "io_inp": [
      -2,
      3,
      4,
      1,
      3
    ],
    "io_out": [
      -7,
      -2,
      -1,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, -3, 3, -2, -3, 0]\noutput : list = [-2, -2, -1, 1, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(sub_n([2, -3, 3, -2, -3, 0],-2)),1)))",
    "io_inp": [
      2,
      -3,
      3,
      -2,
      -3,
      0
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(sub_n(input,-2)),1)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse(sub_n([-4, -5],-5))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [7, 9]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(drop([-3, 3, 5],1)),23),-4))",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(drop(input,1)),23),-4))"
  },
  {
    "input": "input : list = [-2, -4, -3, 2, 2]\noutput : list = [50, 50, -50, -75, -100]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sort_asc([-2, -4, -3, 2, 2]),-5),-5)))",
    "io_inp": [
      -2,
      -4,
      -3,
      2,
      2
    ],
    "io_out": [
      50,
      50,
      -50,
      -75,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sort_asc(input),-5),-5)))"
  },
  {
    "input": "input : list = [-5, 5, 2, -2, 3]\noutput : list = [-12, -2, -5, -9, -4]",
    "output": "generated_output : list = add_n(sub_n([-5, 5, 2, -2, 3],5),-2)",
    "io_inp": [
      -5,
      5,
      2,
      -2,
      3
    ],
    "io_out": [
      -12,
      -2,
      -5,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-2)"
  },
  {
    "input": "input : list = [4, 2, -2, -3]\noutput : list = [-27, -23, -7, 1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(reverse(add_n([4, 2, -2, -3],-4)),4)),-1)",
    "io_inp": [
      4,
      2,
      -2,
      -3
    ],
    "io_out": [
      -27,
      -23,
      -7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(reverse(add_n(input,-4)),4)),-1)"
  },
  {
    "input": "input : list = [-4, -2, 5, -3]\noutput : list = [4, -3, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_des([-4, -2, 5, -3]),-4))),-3)",
    "io_inp": [
      -4,
      -2,
      5,
      -3
    ],
    "io_out": [
      4,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_des(input),-4))),-3)"
  },
  {
    "input": "input : list = [3, 4, 3, -1, -4, -3]\noutput : list = [-3, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(take(sub_n([3, 4, 3, -1, -4, -3],2),4))",
    "io_inp": [
      3,
      4,
      3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -3,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,2),4))"
  },
  {
    "input": "input : list = [5, -5, -4, -5, 2, 1]\noutput : list = [5, 5, 0, -25, -30, -45]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(sort_asc([5, -5, -4, -5, 2, 1]),19),-4),-5))",
    "io_inp": [
      5,
      -5,
      -4,
      -5,
      2,
      1
    ],
    "io_out": [
      5,
      5,
      0,
      -25,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(sort_asc(input),19),-4),-5))"
  },
  {
    "input": "input : list = [-3, -4, -5, 2, 1, 0]\noutput : list = [3, 2, 1, 8, 7, 6]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(reverse([-3, -4, -5, 2, 1, 0]),-4)),22),-2)",
    "io_inp": [
      -3,
      -4,
      -5,
      2,
      1,
      0
    ],
    "io_out": [
      3,
      2,
      1,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(reverse(input),-4)),22),-2)"
  },
  {
    "input": "input : list = [-3, 0, -1, 5, -1, -2]\noutput : list = [-9, -8, -7, -7, -6, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_des([-3, 0, -1, 5, -1, -2])),1),-1),4)",
    "io_inp": [
      -3,
      0,
      -1,
      5,
      -1,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -7,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_des(input)),1),-1),4)"
  },
  {
    "input": "input : list = [0, -5, -4, -3, 5, -5]\noutput : list = [-5, 0, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(sort_asc([0, -5, -4, -3, 5, -5])),35),-1))",
    "io_inp": [
      0,
      -5,
      -4,
      -3,
      5,
      -5
    ],
    "io_out": [
      -5,
      0,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(sort_asc(input)),35),-1))"
  },
  {
    "input": "input : list = [4, -1, 2, 4]\noutput : list = [8, 28, 16, 8]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(add_n([4, -1, 2, 4],-4)),2),-4))",
    "io_inp": [
      4,
      -1,
      2,
      4
    ],
    "io_out": [
      8,
      28,
      16,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(add_n(input,-4)),2),-4))"
  },
  {
    "input": "input : list = [-2, -4, 2, 1, 2, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take([-2, -4, 2, 1, 2, -1],2),-5),-1),-5)",
    "io_inp": [
      -2,
      -4,
      2,
      1,
      2,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(input,2),-5),-1),-5)"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [-8, -3, 0]",
    "output": "generated_output : list = sub_n([-4, 1, 4],4)",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      -8,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 4, 2]\noutput : list = [2, 4, -5]",
    "output": "generated_output : list = reverse([-5, 4, 2])",
    "io_inp": [
      -5,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 3, 3, 4]\noutput : list = [12, 18, 12]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(take([3, 5, 3, 3, 4],3),-3),-1),27),-3)",
    "io_inp": [
      3,
      5,
      3,
      3,
      4
    ],
    "io_out": [
      12,
      18,
      12
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(take(input,3),-3),-1),27),-3)"
  },
  {
    "input": "input : list = [2, 0, 5, 1, -5]\noutput : list = [-7, -2, -1, 0, 3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([2, 0, 5, 1, -5]),-3),-5)",
    "io_inp": [
      2,
      0,
      5,
      1,
      -5
    ],
    "io_out": [
      -7,
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-3),-5)"
  },
  {
    "input": "input : list = [1, -3, 5, 3]\noutput : list = [-1]",
    "output": "generated_output : list = drop(add_n([1, -3, 5, 3],-4),3)",
    "io_inp": [
      1,
      -3,
      5,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-4),3)"
  },
  {
    "input": "input : list = [-4, 3, 2, 0, -3]\noutput : list = [3, 0, -18]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take([-4, 3, 2, 0, -3],3),2)),3)",
    "io_inp": [
      -4,
      3,
      2,
      0,
      -3
    ],
    "io_out": [
      3,
      0,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(input,3),2)),3)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = sort_des(add_n([3, 1, -3],1))",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [-3, -1, -1, -5]\noutput : list = [20]",
    "output": "generated_output : list = drop(add_n(sort_asc(mul_n(reverse([-3, -1, -1, -5]),-3)),5),3)",
    "io_inp": [
      -3,
      -1,
      -1,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(mul_n(reverse(input),-3)),5),3)"
  },
  {
    "input": "input : list = [-2, 0, -3]\noutput : list = [-4, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(drop([-2, 0, -3],1))),-1))",
    "io_inp": [
      -2,
      0,
      -3
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(drop(input,1))),-1))"
  },
  {
    "input": "input : list = [-4, 1, 3, -4, -4]\noutput : list = [6, 8, 1, 1]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(drop([-4, 1, 3, -4, -4],1),-1),5),-2),3)",
    "io_inp": [
      -4,
      1,
      3,
      -4,
      -4
    ],
    "io_out": [
      6,
      8,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(drop(input,1),-1),5),-2),3)"
  },
  {
    "input": "input : list = [3, 1, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(drop([3, 1, -3, 4],2))",
    "io_inp": [
      3,
      1,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [5, -1, 2, -4]\noutput : list = [0, 6]",
    "output": "generated_output : list = take(sort_asc(sub_n(take([5, -1, 2, -4],2),-1)),33)",
    "io_inp": [
      5,
      -1,
      2,
      -4
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(input,2),-1)),33)"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [9, 3]",
    "output": "generated_output : list = add_n(mul_n(take(take(reverse([4, 1, 4]),2),3),2),1)",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(reverse(input),2),3),2),1)"
  },
  {
    "input": "input : list = [0, -1, 4, -1]\noutput : list = [1, 1, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n(drop([0, -1, 4, -1],1),-2)))",
    "io_inp": [
      0,
      -1,
      4,
      -1
    ],
    "io_out": [
      1,
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(drop(input,1),-2)))"
  },
  {
    "input": "input : list = [-4, 2, 1, 1, 0]\noutput : list = [-10, -6, -5, -5, -4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([-4, 2, 1, 1, 0],-2)),4)",
    "io_inp": [
      -4,
      2,
      1,
      1,
      0
    ],
    "io_out": [
      -10,
      -6,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,-2)),4)"
  },
  {
    "input": "input : list = [-3, -1, 5, -4, -1, -5]\noutput : list = [4, -2, -2, -4, -5, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(reverse([-3, -1, 5, -4, -1, -5])),1)),39)",
    "io_inp": [
      -3,
      -1,
      5,
      -4,
      -1,
      -5
    ],
    "io_out": [
      4,
      -2,
      -2,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(reverse(input)),1)),39)"
  },
  {
    "input": "input : list = [0, -3, 2, -2]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(take([0, -3, 2, -2],2),19)",
    "io_inp": [
      0,
      -3,
      2,
      -2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(take(input,2),19)"
  },
  {
    "input": "input : list = [-5, 5, 2]\noutput : list = [-4, -13, 17]",
    "output": "generated_output : list = take(reverse(add_n(mul_n([-5, 5, 2],-3),2)),32)",
    "io_inp": [
      -5,
      5,
      2
    ],
    "io_out": [
      -4,
      -13,
      17
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(input,-3),2)),32)"
  },
  {
    "input": "input : list = [-5, 4, 5, 1]\noutput : list = [5, 4, 1, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse([-5, 4, 5, 1])))",
    "io_inp": [
      -5,
      4,
      5,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-2, 0, -5]\noutput : list = [-13, -10, -8]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sort_des([-2, 0, -5])),-3)),-5)",
    "io_inp": [
      -2,
      0,
      -5
    ],
    "io_out": [
      -13,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sort_des(input)),-3)),-5)"
  },
  {
    "input": "input : list = [-2, 4, -4, 5, 5]\noutput : list = [-4, 5, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(drop([-2, 4, -4, 5, 5],2)))),19)",
    "io_inp": [
      -2,
      4,
      -4,
      5,
      5
    ],
    "io_out": [
      -4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(drop(input,2)))),19)"
  },
  {
    "input": "input : list = [3, 5, -1, 5]\noutput : list = [2, 2, 0, -4]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(sort_des([3, 5, -1, 5]))),-3))",
    "io_inp": [
      3,
      5,
      -1,
      5
    ],
    "io_out": [
      2,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [5, -4, -4]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(sort_des([4, -5, 4]))),-1))",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [4, 4, -1, -2, 0]\noutput : list = [3, 3, -1, -2, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(sort_asc([4, 4, -1, -2, 0]),-3))),-2)",
    "io_inp": [
      4,
      4,
      -1,
      -2,
      0
    ],
    "io_out": [
      3,
      3,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(sort_asc(input),-3))),-2)"
  },
  {
    "input": "input : list = [-3, -5, -5, 1, -3, 3]\noutput : list = [-4, -4, 0, 0, 8, 12]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n([-3, -5, -5, 1, -3, 3],-4),2)),2)",
    "io_inp": [
      -3,
      -5,
      -5,
      1,
      -3,
      3
    ],
    "io_out": [
      -4,
      -4,
      0,
      0,
      8,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(input,-4),2)),2)"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(take([-3, -2, -1],1)))),14)",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(take(input,1)))),14)"
  },
  {
    "input": "input : list = [-2, 4, -4, 5, -4, 1]\noutput : list = [2, 8, 0, 9, 0, 5]",
    "output": "generated_output : list = add_n([-2, 4, -4, 5, -4, 1],4)",
    "io_inp": [
      -2,
      4,
      -4,
      5,
      -4,
      1
    ],
    "io_out": [
      2,
      8,
      0,
      9,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [12, 8]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n([5, 1],2)),3),-5),-3)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      12,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n(input,2)),3),-5),-3)"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(mul_n([-4, 0, -3],1),9),1)))",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(mul_n(input,1),9),1)))"
  },
  {
    "input": "input : list = [4, -5, -3, -5, 3]\noutput : list = [-5, -5, -3, 3, 4]",
    "output": "generated_output : list = sort_asc([4, -5, -3, -5, 3])",
    "io_inp": [
      4,
      -5,
      -3,
      -5,
      3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, -3, 5]\noutput : list = [5, -3, 5, 1]",
    "output": "generated_output : list = take(reverse(take(sub_n(sub_n([1, 5, -3, 5],-1),1),17)),31)",
    "io_inp": [
      1,
      5,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(sub_n(input,-1),1),17)),31)"
  },
  {
    "input": "input : list = [-1, -2, 4, 5, 0, -5]\noutput : list = [-8, -7, -3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n([-1, -2, 4, 5, 0, -5],-1),-3)))",
    "io_inp": [
      -1,
      -2,
      4,
      5,
      0,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(input,-1),-3)))"
  },
  {
    "input": "input : list = [-1, 5, 5, -2]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(drop([-1, 5, 5, -2],2)),2)))",
    "io_inp": [
      -1,
      5,
      5,
      -2
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(drop(input,2)),2)))"
  },
  {
    "input": "input : list = [-4, -5, 1, 1, 2]\noutput : list = [7, 6, 6, 1, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(add_n([-4, -5, 1, 1, 2],2)))),-3)",
    "io_inp": [
      -4,
      -5,
      1,
      1,
      2
    ],
    "io_out": [
      7,
      6,
      6,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(add_n(input,2)))),-3)"
  },
  {
    "input": "input : list = [-3, 0, 3]\noutput : list = [-3, 0, 3]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 0, 3],-1))",
    "io_inp": [
      -3,
      0,
      3
    ],
    "io_out": [
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [1, 3, 5, -1, -3]\noutput : list = [8, 6, 4, 2, 0]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(reverse([1, 3, 5, -1, -3]))),-1),-5)",
    "io_inp": [
      1,
      3,
      5,
      -1,
      -3
    ],
    "io_out": [
      8,
      6,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(reverse(input))),-1),-5)"
  },
  {
    "input": "input : list = [3, -1, 2, -5, 2]\noutput : list = [-12, -7, -7, 8, 28]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(reverse([3, -1, 2, -5, 2]),-5))),3)",
    "io_inp": [
      3,
      -1,
      2,
      -5,
      2
    ],
    "io_out": [
      -12,
      -7,
      -7,
      8,
      28
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(reverse(input),-5))),3)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [5]",
    "output": "generated_output : list = drop(reverse(sort_asc(reverse(sort_des([5, 5, 5])))),2)",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_asc(reverse(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [2, -2, 5, -3, -1]\noutput : list = [4, 7]",
    "output": "generated_output : list = take(sort_asc(drop(sort_asc(sub_n([2, -2, 5, -3, -1],-2)),3)),11)",
    "io_inp": [
      2,
      -2,
      5,
      -3,
      -1
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(sort_asc(sub_n(input,-2)),3)),11)"
  },
  {
    "input": "input : list = [-3, 1, -5, 2, -4]\noutput : list = [2, 1, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(take(take(reverse([-3, 1, -5, 2, -4]),10),8)))",
    "io_inp": [
      -3,
      1,
      -5,
      2,
      -4
    ],
    "io_out": [
      2,
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(reverse(input),10),8)))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [60, 60]",
    "output": "generated_output : list = reverse(mul_n(take(take(mul_n([-5, -5],-4),11),3),3))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      60,
      60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(mul_n(input,-4),11),3),3))"
  },
  {
    "input": "input : list = [2, 3, -2, 1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sort_des([2, 3, -2, 1]),3),-1)),2)",
    "io_inp": [
      2,
      3,
      -2,
      1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sort_des(input),3),-1)),2)"
  },
  {
    "input": "input : list = [-1, -5, -3]\noutput : list = [45, 25]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(drop([-1, -5, -3],1),2),-5),5)",
    "io_inp": [
      -1,
      -5,
      -3
    ],
    "io_out": [
      45,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(drop(input,1),2),-5),5)"
  },
  {
    "input": "input : list = [-3, -1, 4, -4, 1, 5]\noutput : list = [-25, -21, -9, 11]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(drop([-3, -1, 4, -4, 1, 5],2),-4),-5)),55)",
    "io_inp": [
      -3,
      -1,
      4,
      -4,
      1,
      5
    ],
    "io_out": [
      -25,
      -21,
      -9,
      11
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(drop(input,2),-4),-5)),55)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [6, 4]",
    "output": "generated_output : list = take(sub_n([4, 2],-2),2)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-2),2)"
  },
  {
    "input": "input : list = [-5, -2, 5, 3, -5]\noutput : list = [5, -3, -5, 2, 5]",
    "output": "generated_output : list = mul_n(reverse([-5, -2, 5, 3, -5]),-1)",
    "io_inp": [
      -5,
      -2,
      5,
      3,
      -5
    ],
    "io_out": [
      5,
      -3,
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-3, -4, -3, -2, 3, 4]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = add_n(add_n(mul_n(drop([-3, -4, -3, -2, 3, 4],3),1),2),-1)",
    "io_inp": [
      -3,
      -4,
      -3,
      -2,
      3,
      4
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(drop(input,3),1),2),-1)"
  },
  {
    "input": "input : list = [0, -4, 4, -4]\noutput : list = [5, 1, 9]",
    "output": "generated_output : list = take(sub_n([0, -4, 4, -4],-5),3)",
    "io_inp": [
      0,
      -4,
      4,
      -4
    ],
    "io_out": [
      5,
      1,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-3, -9]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(sort_des([-4, 2]))),-1),-4)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(sort_des(input))),-1),-4)"
  },
  {
    "input": "input : list = [-1, 5, -1, -3]\noutput : list = [4, 10, 4, 2]",
    "output": "generated_output : list = sub_n([-1, 5, -1, -3],-5)",
    "io_inp": [
      -1,
      5,
      -1,
      -3
    ],
    "io_out": [
      4,
      10,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-15, 6]",
    "output": "generated_output : list = mul_n(sort_des([5, -2]),-3)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [4, -5, -1, -2, 1, 2]\noutput : list = [16, 4, 0, -8, -12, -20]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n([4, -5, -1, -2, 1, 2],-1),11)),-4)",
    "io_inp": [
      4,
      -5,
      -1,
      -2,
      1,
      2
    ],
    "io_out": [
      16,
      4,
      0,
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(input,-1),11)),-4)"
  },
  {
    "input": "input : list = [-5, 2, -2, 3, -1, 5]\noutput : list = [25, -10, 10, -15, 5, -25]",
    "output": "generated_output : list = mul_n([-5, 2, -2, 3, -1, 5],-5)",
    "io_inp": [
      -5,
      2,
      -2,
      3,
      -1,
      5
    ],
    "io_out": [
      25,
      -10,
      10,
      -15,
      5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-20, -20]",
    "output": "generated_output : list = mul_n([-4, -4],5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -2, -3]\noutput : list = [-3, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(add_n([-3, -2, -3],3),-5),1)))",
    "io_inp": [
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(add_n(input,3),-5),1)))"
  },
  {
    "input": "input : list = [-2, -1, -5, 3, -3, 5]\noutput : list = [-5, 3, -3, 5]",
    "output": "generated_output : list = drop([-2, -1, -5, 3, -3, 5],2)",
    "io_inp": [
      -2,
      -1,
      -5,
      3,
      -3,
      5
    ],
    "io_out": [
      -5,
      3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 0, 4, -2]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(take([-2, 0, 4, -2],2)),1),-4),-2)",
    "io_inp": [
      -2,
      0,
      4,
      -2
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(take(input,2)),1),-4),-2)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [16, -12, -16]",
    "output": "generated_output : list = sort_des(take(sort_des(take(mul_n([3, -4, 4],-4),17)),16))",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      16,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(mul_n(input,-4),17)),16))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [2, -8, -18]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n(reverse([5, -5, 0]),4)),-2))",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      2,
      -8,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(reverse(input),4)),-2))"
  },
  {
    "input": "input : list = [4, 4, 0, 1, -5]\noutput : list = [-12, -12, -24, -28, -48]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(sort_des([4, 4, 0, 1, -5]),2),-5),28),4)",
    "io_inp": [
      4,
      4,
      0,
      1,
      -5
    ],
    "io_out": [
      -12,
      -12,
      -24,
      -28,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(sort_des(input),2),-5),28),4)"
  },
  {
    "input": "input : list = [-2, 2, 5]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(sub_n([-2, 2, 5],-4)),1),5),-2)",
    "io_inp": [
      -2,
      2,
      5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(sub_n(input,-4)),1),5),-2)"
  },
  {
    "input": "input : list = [5, 1, -2, -3]\noutput : list = [-3, -2, 1, 5]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(mul_n([5, 1, -2, -3],1)),1),13),41)",
    "io_inp": [
      5,
      1,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(mul_n(input,1)),1),13),41)"
  },
  {
    "input": "input : list = [-1, -2, -5, -1, 5]\noutput : list = [-7, -11, -23, -7, 17]",
    "output": "generated_output : list = add_n(take(take(take(mul_n([-1, -2, -5, -1, 5],4),7),33),39),-3)",
    "io_inp": [
      -1,
      -2,
      -5,
      -1,
      5
    ],
    "io_out": [
      -7,
      -11,
      -23,
      -7,
      17
    ],
    "output_masked": "generated_output : list = add_n(take(take(take(mul_n(input,4),7),33),39),-3)"
  },
  {
    "input": "input : list = [3, -5, 5, -1]\noutput : list = [-10, -6, 2, 10]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n([3, -5, 5, -1],-2))),16)",
    "io_inp": [
      3,
      -5,
      5,
      -1
    ],
    "io_out": [
      -10,
      -6,
      2,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(input,-2))),16)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n(add_n(take(add_n([3, 0],4),7),-5),-1)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(input,4),7),-5),-1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-1, -10]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(add_n([-2, -5],4),8),-1),3),4)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -1,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(add_n(input,4),8),-1),3),4)"
  },
  {
    "input": "input : list = [-2, 0, 3, 3, 5, -4]\noutput : list = [-3, -1, 2, 2, 4, -5]",
    "output": "generated_output : list = add_n([-2, 0, 3, 3, 5, -4],-1)",
    "io_inp": [
      -2,
      0,
      3,
      3,
      5,
      -4
    ],
    "io_out": [
      -3,
      -1,
      2,
      2,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [35, 35, 23]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n([1, -3, -3],-3),4),-3)),5)",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      35,
      35,
      23
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n(input,-3),4),-3)),5)"
  },
  {
    "input": "input : list = [5, -5, -2, 5, 2]\noutput : list = [-5, -2, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(reverse([5, -5, -2, 5, 2]),2),2),34))",
    "io_inp": [
      5,
      -5,
      -2,
      5,
      2
    ],
    "io_out": [
      -5,
      -2,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(reverse(input),2),2),34))"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [-11, 9, 9]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(mul_n([-3, -3, 2],4)),-1),4),-3)",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      -11,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(mul_n(input,4)),-1),4),-3)"
  },
  {
    "input": "input : list = [-1, 3, 4, 1]\noutput : list = [-1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(reverse([-1, 3, 4, 1]),19))))",
    "io_inp": [
      -1,
      3,
      4,
      1
    ],
    "io_out": [
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(reverse(input),19))))"
  },
  {
    "input": "input : list = [-4, -2, 5, -4, 3]\noutput : list = [-6, -6, -4, 1, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse([-4, -2, 5, -4, 3]),1))),3)",
    "io_inp": [
      -4,
      -2,
      5,
      -4,
      3
    ],
    "io_out": [
      -6,
      -6,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse(input),1))),3)"
  },
  {
    "input": "input : list = [-3, 5, 0]\noutput : list = [20, 0, -12]",
    "output": "generated_output : list = mul_n(take(take(sort_des(reverse([-3, 5, 0])),10),15),4)",
    "io_inp": [
      -3,
      5,
      0
    ],
    "io_out": [
      20,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(reverse(input)),10),15),4)"
  },
  {
    "input": "input : list = [4, -4, -3, 2, 1]\noutput : list = [8, 4, 2, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc([4, -4, -3, 2, 1])),2))",
    "io_inp": [
      4,
      -4,
      -3,
      2,
      1
    ],
    "io_out": [
      8,
      4,
      2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(input)),2))"
  },
  {
    "input": "input : list = [-3, -5, 2, -5, 5]\noutput : list = [-4, -6, 1, -6, 4]",
    "output": "generated_output : list = sub_n(add_n([-3, -5, 2, -5, 5],-3),-2)",
    "io_inp": [
      -3,
      -5,
      2,
      -5,
      5
    ],
    "io_out": [
      -4,
      -6,
      1,
      -6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),-2)"
  },
  {
    "input": "input : list = [5, -3, 1, 1]\noutput : list = [4, 0, 0, -4]",
    "output": "generated_output : list = add_n(take(sort_des([5, -3, 1, 1]),6),-1)",
    "io_inp": [
      5,
      -3,
      1,
      1
    ],
    "io_out": [
      4,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),6),-1)"
  },
  {
    "input": "input : list = [-1, 0, -5, 3, 4, 4]\noutput : list = [20, 4, 0, -12, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n([-1, 0, -5, 3, 4, 4],-4))",
    "io_inp": [
      -1,
      0,
      -5,
      3,
      4,
      4
    ],
    "io_out": [
      20,
      4,
      0,
      -12,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [1]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(add_n([-5, -5, 4],3),-3),1)))",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(add_n(input,3),-3),1)))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-7, 2]",
    "output": "generated_output : list = sub_n([-5, 4],2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [8, 0]",
    "output": "generated_output : list = add_n(sub_n([3, -5],-4),1)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),1)"
  },
  {
    "input": "input : list = [3, 4, -3, 5, -4]\noutput : list = [3, 2, 1, -5, -6]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(sort_des([3, 4, -3, 5, -4]),4)),2))",
    "io_inp": [
      3,
      4,
      -3,
      5,
      -4
    ],
    "io_out": [
      3,
      2,
      1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(sort_des(input),4)),2))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [75, 0]",
    "output": "generated_output : list = take(sort_des(take(mul_n(mul_n([0, -3],5),-5),12)),32)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      75,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(mul_n(input,5),-5),12)),32)"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [15, -3]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(drop([-1, 5, -1],1)),6),3))",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      15,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(drop(input,1)),6),3))"
  },
  {
    "input": "input : list = [-5, -2, 0, 2]\noutput : list = [-20, -8, 0, 8]",
    "output": "generated_output : list = sort_asc(take(mul_n([-5, -2, 0, 2],4),5))",
    "io_inp": [
      -5,
      -2,
      0,
      2
    ],
    "io_out": [
      -20,
      -8,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,4),5))"
  },
  {
    "input": "input : list = [1, 0, -1, 2, -4]\noutput : list = [8, 4, 0, -4, -16]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(reverse([1, 0, -1, 2, -4]),4))),25)",
    "io_inp": [
      1,
      0,
      -1,
      2,
      -4
    ],
    "io_out": [
      8,
      4,
      0,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(reverse(input),4))),25)"
  },
  {
    "input": "input : list = [5, -4, 2, 5, -3]\noutput : list = [30, -15, 15, 30, -10]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(reverse([5, -4, 2, 5, -3]),5)),5),12)",
    "io_inp": [
      5,
      -4,
      2,
      5,
      -3
    ],
    "io_out": [
      30,
      -15,
      15,
      30,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(reverse(input),5)),5),12)"
  },
  {
    "input": "input : list = [5, -2, 1, -2, 3, 4]\noutput : list = [-10, -10, 5, 15, 20, 25]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_des([5, -2, 1, -2, 3, 4]),5)),9))",
    "io_inp": [
      5,
      -2,
      1,
      -2,
      3,
      4
    ],
    "io_out": [
      -10,
      -10,
      5,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(sort_des(input),5)),9))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sub_n([0, -1],-3)),3)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sub_n(input,-3)),3)))"
  },
  {
    "input": "input : list = [3, 0, -4, -3, -2, 4]\noutput : list = [0, -1, -4, -6, -7, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(sort_des([3, 0, -4, -3, -2, 4]),-4))))",
    "io_inp": [
      3,
      0,
      -4,
      -3,
      -2,
      4
    ],
    "io_out": [
      0,
      -1,
      -4,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [-5, 0, 3, 2]\noutput : list = [7, 8, 5, 0]",
    "output": "generated_output : list = add_n(take(reverse(add_n(add_n([-5, 0, 3, 2],3),3)),23),-1)",
    "io_inp": [
      -5,
      0,
      3,
      2
    ],
    "io_out": [
      7,
      8,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(add_n(add_n(input,3),3)),23),-1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sub_n([2, -2],4)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, 5, 5, 3]\noutput : list = [35, 25, 5]",
    "output": "generated_output : list = mul_n(sub_n(drop(sort_des(sort_des([-1, 5, 5, 3])),1),-2),5)",
    "io_inp": [
      -1,
      5,
      5,
      3
    ],
    "io_out": [
      35,
      25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(sort_des(sort_des(input)),1),-2),5)"
  },
  {
    "input": "input : list = [3, -1, 5, 0, -2]\noutput : list = [1, 2, 3, 6, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des(sort_des([3, -1, 5, 0, -2])))),3)",
    "io_inp": [
      3,
      -1,
      5,
      0,
      -2
    ],
    "io_out": [
      1,
      2,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [-5, -2, 2, -3, 4]\noutput : list = [8, 4, -4, -6, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(reverse([-5, -2, 2, -3, 4])))),2)",
    "io_inp": [
      -5,
      -2,
      2,
      -3,
      4
    ],
    "io_out": [
      8,
      4,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(reverse(input)))),2)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [5, 5]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_des([-5, -5]),5)),1),-5)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_des(input),5)),1),-5)"
  },
  {
    "input": "input : list = [-2, 5, -2, 4]\noutput : list = [7, 6, 0, 0]",
    "output": "generated_output : list = take(sort_des(add_n([-2, 5, -2, 4],2)),13)",
    "io_inp": [
      -2,
      5,
      -2,
      4
    ],
    "io_out": [
      7,
      6,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,2)),13)"
  },
  {
    "input": "input : list = [-3, 3, -4, -2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(take([-3, 3, -4, -2, 2],1)),13),-2))",
    "io_inp": [
      -3,
      3,
      -4,
      -2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(take(input,1)),13),-2))"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [0, 0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_asc([0, 0, 3]))),2))",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [8, 0]",
    "output": "generated_output : list = add_n([4, -4],4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, -1, 5, 0]\noutput : list = [1, 4, 10, 5]",
    "output": "generated_output : list = sub_n([-4, -1, 5, 0],-5)",
    "io_inp": [
      -4,
      -1,
      5,
      0
    ],
    "io_out": [
      1,
      4,
      10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 3, -1, -2, 4, -2]\noutput : list = [-5, 1]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(drop([-4, 3, -1, -2, 4, -2],4),3),-4)),-1)",
    "io_inp": [
      -4,
      3,
      -1,
      -2,
      4,
      -2
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(drop(input,4),3),-4)),-1)"
  },
  {
    "input": "input : list = [3, 2, 2, 2, 3]\noutput : list = [6, 6, 6, 7, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse([3, 2, 2, 2, 3]))),4)",
    "io_inp": [
      3,
      2,
      2,
      2,
      3
    ],
    "io_out": [
      6,
      6,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(input))),4)"
  },
  {
    "input": "input : list = [5, -4, -3, 3, -4, -5]\noutput : list = [-15, -9, 9, 12]",
    "output": "generated_output : list = sort_asc(drop(reverse(mul_n(mul_n([5, -4, -3, 3, -4, -5],-1),3)),2))",
    "io_inp": [
      5,
      -4,
      -3,
      3,
      -4,
      -5
    ],
    "io_out": [
      -15,
      -9,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(mul_n(mul_n(input,-1),3)),2))"
  },
  {
    "input": "input : list = [5, 4, -4]\noutput : list = [17, -15, -19]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(sort_asc([5, 4, -4]))),-4),1)",
    "io_inp": [
      5,
      4,
      -4
    ],
    "io_out": [
      17,
      -15,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(sort_asc(input))),-4),1)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [8, -2]",
    "output": "generated_output : list = sub_n([5, -5],-3)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [10, 85, 40]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(reverse([1, -4, -1])),-3),-5),5)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      10,
      85,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(reverse(input)),-3),-5),5)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-6, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc([-5, 5]),-1)),16)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(input),-1)),16)"
  },
  {
    "input": "input : list = [-2, 0, 1, -2]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take([-2, 0, 1, -2],1),-2)",
    "io_inp": [
      -2,
      0,
      1,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-1, -2]))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [6, 4]",
    "output": "generated_output : list = sub_n(take(take(sort_des(reverse([1, 3])),6),11),-3)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(reverse(input)),6),11),-3)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sub_n([-5, 2],-2)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0, -18]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(add_n([5, -1],-1)),4),3))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(add_n(input,-1)),4),3))"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [5, 4, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(sub_n([-4, 3, 2],-2),13))))",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(sub_n(input,-2),13))))"
  },
  {
    "input": "input : list = [4, -5, 0, 0]\noutput : list = [-20, 0, 0, 25]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(sort_asc([4, -5, 0, 0])))),-5)",
    "io_inp": [
      4,
      -5,
      0,
      0
    ],
    "io_out": [
      -20,
      0,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [-2, 2, 3, -1, -3]\noutput : list = [-3, 1, 2, -2, -4]",
    "output": "generated_output : list = add_n([-2, 2, 3, -1, -3],-1)",
    "io_inp": [
      -2,
      2,
      3,
      -1,
      -3
    ],
    "io_out": [
      -3,
      1,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [5, -3, -2, 0, 4, -1]\noutput : list = [-18, -16, -8, -6, -4, -2]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n([5, -3, -2, 0, 4, -1],-1)),4),1),-2)",
    "io_inp": [
      5,
      -3,
      -2,
      0,
      4,
      -1
    ],
    "io_out": [
      -18,
      -16,
      -8,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n(input,-1)),4),1),-2)"
  },
  {
    "input": "input : list = [-5, 0, -3, 0, 2]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(take([-5, 0, -3, 0, 2],3)),3),-1),1)",
    "io_inp": [
      -5,
      0,
      -3,
      0,
      2
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(take(input,3)),3),-1),1)"
  },
  {
    "input": "input : list = [2, 3, 1, 0, 2, -4]\noutput : list = [6, 9, 3, 0, 6, -12]",
    "output": "generated_output : list = mul_n([2, 3, 1, 0, 2, -4],3)",
    "io_inp": [
      2,
      3,
      1,
      0,
      2,
      -4
    ],
    "io_out": [
      6,
      9,
      3,
      0,
      6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, -5, 5, -2, 2]\noutput : list = [-24, -12, -8, 4, 16]",
    "output": "generated_output : list = mul_n(sort_des(add_n([1, -5, 5, -2, 2],1)),-4)",
    "io_inp": [
      1,
      -5,
      5,
      -2,
      2
    ],
    "io_out": [
      -24,
      -12,
      -8,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,1)),-4)"
  },
  {
    "input": "input : list = [-1, 0, 5, 4, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = drop([-1, 0, 5, 4, -4, -2],4)",
    "io_inp": [
      -1,
      0,
      5,
      4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [-4, -4, -5]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc([-5, -4, -4])),-1),1)",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(input)),-1),1)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(add_n([1, 2],-3),5),22),3),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(add_n(input,-3),5),22),3),3)"
  },
  {
    "input": "input : list = [2, 0, 5, 0, 0, -1]\noutput : list = [-15, -6, 0, 0, 0, 3]",
    "output": "generated_output : list = take(mul_n(take(sort_des(reverse([2, 0, 5, 0, 0, -1])),32),-3),25)",
    "io_inp": [
      2,
      0,
      5,
      0,
      0,
      -1
    ],
    "io_out": [
      -15,
      -6,
      0,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(reverse(input)),32),-3),25)"
  },
  {
    "input": "input : list = [5, -2, -5, -5, -3, 4]\noutput : list = [-1, 6]",
    "output": "generated_output : list = reverse(take(sub_n(take(sub_n([5, -2, -5, -5, -3, 4],-2),2),1),28))",
    "io_inp": [
      5,
      -2,
      -5,
      -5,
      -3,
      4
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(sub_n(input,-2),2),1),28))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [18, 10]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(sub_n([-3, 5],-3)),-4),-5),1)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      18,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(sub_n(input,-3)),-4),-5),1)"
  },
  {
    "input": "input : list = [4, 0, 1, 4, -2, -4]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sort_asc(take(drop(sort_des(sort_des([4, 0, 1, 4, -2, -4])),3),38))",
    "io_inp": [
      4,
      0,
      1,
      4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(sort_des(sort_des(input)),3),38))"
  },
  {
    "input": "input : list = [-5, -5, 2, -2]\noutput : list = [10, 10, 4, -4]",
    "output": "generated_output : list = mul_n(sort_asc([-5, -5, 2, -2]),-2)",
    "io_inp": [
      -5,
      -5,
      2,
      -2
    ],
    "io_out": [
      10,
      10,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [3, -5, 5, -2, 4, -3]\noutput : list = [5, 4, 3, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([3, -5, 5, -2, 4, -3]))",
    "io_inp": [
      3,
      -5,
      5,
      -2,
      4,
      -3
    ],
    "io_out": [
      5,
      4,
      3,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des([0, -2])",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, -2, -4, 3, -1]\noutput : list = [-1, -7, -7, -9]",
    "output": "generated_output : list = take(sort_des(add_n(take(take([4, -2, -2, -4, 3, -1],4),14),-5)),41)",
    "io_inp": [
      4,
      -2,
      -2,
      -4,
      3,
      -1
    ],
    "io_out": [
      -1,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(take(input,4),14),-5)),41)"
  },
  {
    "input": "input : list = [-5, 3, 3]\noutput : list = [3, 3, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 3])",
    "io_inp": [
      -5,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [-3, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc([3, 1, 5]),4)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [4, 2, -1, -5, -5]\noutput : list = [-2, 4, 8]",
    "output": "generated_output : list = drop(mul_n(reverse([4, 2, -1, -5, -5]),2),2)",
    "io_inp": [
      4,
      2,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -2,
      4,
      8
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(input),2),2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc([-1, -2]))))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [3, 13]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des([-4, 1]),-2),4),-5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      3,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(input),-2),4),-5)"
  },
  {
    "input": "input : list = [-1, -2, 0, -2, -3]\noutput : list = [15, 10, 10, 5, 0]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(sub_n([-1, -2, 0, -2, -3],-3)),-3),-5))",
    "io_inp": [
      -1,
      -2,
      0,
      -2,
      -3
    ],
    "io_out": [
      15,
      10,
      10,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(sub_n(input,-3)),-3),-5))"
  },
  {
    "input": "input : list = [-1, -4, 0, -3]\noutput : list = [16, 0, 12]",
    "output": "generated_output : list = mul_n(drop([-1, -4, 0, -3],1),-4)",
    "io_inp": [
      -1,
      -4,
      0,
      -3
    ],
    "io_out": [
      16,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [-1, -1, 4, 3]\noutput : list = [8, 7, 3, 3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(sub_n([-1, -1, 4, 3],1)),5)))",
    "io_inp": [
      -1,
      -1,
      4,
      3
    ],
    "io_out": [
      8,
      7,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(sub_n(input,1)),5)))"
  },
  {
    "input": "input : list = [-3, 4, 1, -1, 2]\noutput : list = [11, 5, -1, -4, -10]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse([-3, 4, 1, -1, 2]),-3)),2))",
    "io_inp": [
      -3,
      4,
      1,
      -1,
      2
    ],
    "io_out": [
      11,
      5,
      -1,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse(input),-3)),2))"
  },
  {
    "input": "input : list = [2, 5, 2, 4]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(drop([2, 5, 2, 4],1),2)))",
    "io_inp": [
      2,
      5,
      2,
      4
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(drop(input,1),2)))"
  },
  {
    "input": "input : list = [4, -5, 5, 3, 2]\noutput : list = [100, -40, -60, -80, -100]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sort_asc([4, -5, 5, 3, 2]),-2),5),2),10)",
    "io_inp": [
      4,
      -5,
      5,
      3,
      2
    ],
    "io_out": [
      100,
      -40,
      -60,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sort_asc(input),-2),5),2),10)"
  },
  {
    "input": "input : list = [-1, 0, -5, -5, -2, 3]\noutput : list = [1, -2, -3, -4, -7, -7]",
    "output": "generated_output : list = add_n(mul_n(sub_n(reverse(sort_asc([-1, 0, -5, -5, -2, 3])),-2),1),-4)",
    "io_inp": [
      -1,
      0,
      -5,
      -5,
      -2,
      3
    ],
    "io_out": [
      1,
      -2,
      -3,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(reverse(sort_asc(input)),-2),1),-4)"
  },
  {
    "input": "input : list = [5, -2, 4, 3]\noutput : list = [18, 16, 14, 4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_des([5, -2, 4, 3]),5),1),2))",
    "io_inp": [
      5,
      -2,
      4,
      3
    ],
    "io_out": [
      18,
      16,
      14,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_des(input),5),1),2))"
  },
  {
    "input": "input : list = [1, 3, 0, -2, -5, 0]\noutput : list = [3, 1, 0, 0, -2, -5]",
    "output": "generated_output : list = sort_des([1, 3, 0, -2, -5, 0])",
    "io_inp": [
      1,
      3,
      0,
      -2,
      -5,
      0
    ],
    "io_out": [
      3,
      1,
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5, 1, 4]\noutput : list = [-16, -4, 0, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse([0, -5, 1, 4]),4)),-4))",
    "io_inp": [
      0,
      -5,
      1,
      4
    ],
    "io_out": [
      -16,
      -4,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse(input),4)),-4))"
  },
  {
    "input": "input : list = [3, -1, -3]\noutput : list = [15, -5, -15]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc([3, -1, -3]),5)),1)",
    "io_inp": [
      3,
      -1,
      -3
    ],
    "io_out": [
      15,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(input),5)),1)"
  },
  {
    "input": "input : list = [1, 0, 2, 4, 1]\noutput : list = [0, 1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([1, 0, 2, 4, 1])",
    "io_inp": [
      1,
      0,
      2,
      4,
      1
    ],
    "io_out": [
      0,
      1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 1, -1, 2, -3, 4]\noutput : list = [-12, -6, 9]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(drop([3, 1, -1, 2, -3, 4],3)),21)),-3)",
    "io_inp": [
      3,
      1,
      -1,
      2,
      -3,
      4
    ],
    "io_out": [
      -12,
      -6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(drop(input,3)),21)),-3)"
  },
  {
    "input": "input : list = [1, -2, 0, -3]\noutput : list = [1, 0, -2, -3]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sort_asc([1, -2, 0, -3])))),1)",
    "io_inp": [
      1,
      -2,
      0,
      -3
    ],
    "io_out": [
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [2, -3, 2, -4, 0, 0]\noutput : list = [20, 0, 20, -4, 12, 12]",
    "output": "generated_output : list = reverse(take(mul_n(reverse(add_n([2, -3, 2, -4, 0, 0],3)),4),29))",
    "io_inp": [
      2,
      -3,
      2,
      -4,
      0,
      0
    ],
    "io_out": [
      20,
      0,
      20,
      -4,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(add_n(input,3)),4),29))"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [9, 0, 8]",
    "output": "generated_output : list = add_n(reverse([3, -5, 4]),5)",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      9,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-1, 5, -1, -5, 2]\noutput : list = [0, 6, 0, -4, 3]",
    "output": "generated_output : list = add_n([-1, 5, -1, -5, 2],1)",
    "io_inp": [
      -1,
      5,
      -1,
      -5,
      2
    ],
    "io_out": [
      0,
      6,
      0,
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, -3, -2, 0, -2]\noutput : list = [-2, 0, -2, -3, 1]",
    "output": "generated_output : list = reverse([1, -3, -2, 0, -2])",
    "io_inp": [
      1,
      -3,
      -2,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      -2,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 2, 3, 0, 3]\noutput : list = [-6, -4, -4, -2, 2, 2]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(mul_n([0, 4, 2, 3, 0, 3],2)),-1)),-2)",
    "io_inp": [
      0,
      4,
      2,
      3,
      0,
      3
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(mul_n(input,2)),-1)),-2)"
  },
  {
    "input": "input : list = [4, 1, 3, -2]\noutput : list = [-2, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_des([4, 1, 3, -2])))))",
    "io_inp": [
      4,
      1,
      3,
      -2
    ],
    "io_out": [
      -2,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, -2, 3, -4, 5, -3]\noutput : list = [3, -2, -4, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc(drop(reverse([-5, -2, 3, -4, 5, -3]),2)),26))",
    "io_inp": [
      -5,
      -2,
      3,
      -4,
      5,
      -3
    ],
    "io_out": [
      3,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(drop(reverse(input),2)),26))"
  },
  {
    "input": "input : list = [0, 5, 1, 5]\noutput : list = [5, 5, 1, 0]",
    "output": "generated_output : list = sort_des([0, 5, 1, 5])",
    "io_inp": [
      0,
      5,
      1,
      5
    ],
    "io_out": [
      5,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, 5, 1]\noutput : list = [4, -1, 7, 3]",
    "output": "generated_output : list = add_n([2, -3, 5, 1],2)",
    "io_inp": [
      2,
      -3,
      5,
      1
    ],
    "io_out": [
      4,
      -1,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [0, 4, 5, -1, -5, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take([0, 4, 5, -1, -5, 0],2),-4)))",
    "io_inp": [
      0,
      4,
      5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(input,2),-4)))"
  },
  {
    "input": "input : list = [2, 5, 2, 3]\noutput : list = [-6, -4, -10, -4]",
    "output": "generated_output : list = mul_n(reverse(mul_n([2, 5, 2, 3],-1)),2)",
    "io_inp": [
      2,
      5,
      2,
      3
    ],
    "io_out": [
      -6,
      -4,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-1)),2)"
  },
  {
    "input": "input : list = [1, -1, 0, 5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = drop([1, -1, 0, 5, -1],3)",
    "io_inp": [
      1,
      -1,
      0,
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 2, 2, -3, -4]\noutput : list = [-2, -1, 4, 4, 0]",
    "output": "generated_output : list = add_n(reverse([-2, 2, 2, -3, -4]),2)",
    "io_inp": [
      -2,
      2,
      2,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -1,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [25, -20]",
    "output": "generated_output : list = add_n(take(take(sort_des(mul_n([-4, 5],-5)),24),18),5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      25,
      -20
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(mul_n(input,-5)),24),18),5)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-6, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([4, -1]),5))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [2, 5, -4, 2]\noutput : list = [3, 0, 0, -6]",
    "output": "generated_output : list = take(sort_des(add_n(take(sort_des([2, 5, -4, 2]),9),-2)),35)",
    "io_inp": [
      2,
      5,
      -4,
      2
    ],
    "io_out": [
      3,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(sort_des(input),9),-2)),35)"
  },
  {
    "input": "input : list = [3, 3, -2, 2, 3, 2]\noutput : list = [0, 0, 0, -25, -25, -125]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_asc([3, 3, -2, 2, 3, 2]),3)),-5),-5)",
    "io_inp": [
      3,
      3,
      -2,
      2,
      3,
      2
    ],
    "io_out": [
      0,
      0,
      0,
      -25,
      -25,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_asc(input),3)),-5),-5)"
  },
  {
    "input": "input : list = [-4, 2, 5, 0]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(take(take(sort_des(take([-4, 2, 5, 0],2)),18),31))",
    "io_inp": [
      -4,
      2,
      5,
      0
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(take(input,2)),18),31))"
  },
  {
    "input": "input : list = [-2, -1, -4, -4]\noutput : list = [-6, -7, -9, -9]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(add_n([-2, -1, -4, -4],-1),3),-1),23))",
    "io_inp": [
      -2,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(add_n(input,-1),3),-1),23))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [12, 0]",
    "output": "generated_output : list = reverse(take(mul_n(add_n([1, -5],-1),-2),21))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(input,-1),-2),21))"
  },
  {
    "input": "input : list = [4, -5, -5, 1, -1, 3]\noutput : list = [2, -7, -7, -1, -3, 1]",
    "output": "generated_output : list = sub_n([4, -5, -5, 1, -1, 3],2)",
    "io_inp": [
      4,
      -5,
      -5,
      1,
      -1,
      3
    ],
    "io_out": [
      2,
      -7,
      -7,
      -1,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [11, 16]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(add_n([3, 2],-2),3),5)),-4)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      11,
      16
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(add_n(input,-2),3),5)),-4)"
  },
  {
    "input": "input : list = [0, 0, -5, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(take(take([0, 0, -5, -3],2),11))",
    "io_inp": [
      0,
      0,
      -5,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,2),11))"
  },
  {
    "input": "input : list = [4, 0, -5, 2, 2]\noutput : list = [-5, 0, 2, 2, 4]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(reverse([4, 0, -5, 2, 2])))),14)",
    "io_inp": [
      4,
      0,
      -5,
      2,
      2
    ],
    "io_out": [
      -5,
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(reverse(input)))),14)"
  },
  {
    "input": "input : list = [1, 4, 4, 5, -2]\noutput : list = [-10, 5, 20, 20, 25]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(sort_asc([1, 4, 4, 5, -2]),8)),32),5)",
    "io_inp": [
      1,
      4,
      4,
      5,
      -2
    ],
    "io_out": [
      -10,
      5,
      20,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(sort_asc(input),8)),32),5)"
  },
  {
    "input": "input : list = [-1, 2, -2, -2]\noutput : list = [-4, -4, -3, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n(sort_des([-1, 2, -2, -2]),-2))))",
    "io_inp": [
      -1,
      2,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [1, -2, -4, 4]\noutput : list = [16, 4, -8, -16]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse([1, -2, -4, 4]),4),19))",
    "io_inp": [
      1,
      -2,
      -4,
      4
    ],
    "io_out": [
      16,
      4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(input),4),19))"
  },
  {
    "input": "input : list = [-3, 0, 1, 3, 0, -4]\noutput : list = [-1, 0, 3, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc([-3, 0, 1, 3, 0, -4]),3),26))",
    "io_inp": [
      -3,
      0,
      1,
      3,
      0,
      -4
    ],
    "io_out": [
      -1,
      0,
      3,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(input),3),26))"
  },
  {
    "input": "input : list = [-4, 5, 5, 5]\noutput : list = [-14, 13, 13, 13]",
    "output": "generated_output : list = add_n(mul_n([-4, 5, 5, 5],3),-2)",
    "io_inp": [
      -4,
      5,
      5,
      5
    ],
    "io_out": [
      -14,
      13,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),-2)"
  },
  {
    "input": "input : list = [0, -1, 2, 2, -2]\noutput : list = [-2, -2, -4, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des([0, -1, 2, 2, -2]),4)",
    "io_inp": [
      0,
      -1,
      2,
      2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [5, -4, 4, 0]\noutput : list = [4, -14, 2, -6]",
    "output": "generated_output : list = take(take(mul_n(sub_n([5, -4, 4, 0],3),2),27),8)",
    "io_inp": [
      5,
      -4,
      4,
      0
    ],
    "io_out": [
      4,
      -14,
      2,
      -6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(input,3),2),27),8)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-8, -7, -4]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(reverse([-3, -2, 1])))),-5)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -8,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [-4, 5, 5, 4, -5, -4]\noutput : list = [-8, -9, 0, 1, 1, -8]",
    "output": "generated_output : list = add_n(reverse([-4, 5, 5, 4, -5, -4]),-4)",
    "io_inp": [
      -4,
      5,
      5,
      4,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -9,
      0,
      1,
      1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [5, 12]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(add_n([-4, 3],5),-4))))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      5,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(add_n(input,5),-4))))"
  },
  {
    "input": "input : list = [-4, -5, -3, 4, -5, 3]\noutput : list = [-4, -3, 3, 4, 5, 5]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(sort_des([-4, -5, -3, 4, -5, 3]))),24),-1)",
    "io_inp": [
      -4,
      -5,
      -3,
      4,
      -5,
      3
    ],
    "io_out": [
      -4,
      -3,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(sort_des(input))),24),-1)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-17, -5, -1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(mul_n([4, -2, -4],-2))),5),4)",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -17,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(mul_n(input,-2))),5),4)"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(take([5, -1, 4],1),5),5)))",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(take(input,1),5),5)))"
  },
  {
    "input": "input : list = [-3, 3, 4, -2, -5]\noutput : list = [4, 3, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, 3, 4, -2, -5])",
    "io_inp": [
      -3,
      3,
      4,
      -2,
      -5
    ],
    "io_out": [
      4,
      3,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3, -1, -5]\noutput : list = [-1, 3, 3, 7]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(reverse([-1, 3, -1, -5]),12),4)))",
    "io_inp": [
      -1,
      3,
      -1,
      -5
    ],
    "io_out": [
      -1,
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(reverse(input),12),4)))"
  },
  {
    "input": "input : list = [-1, 5, 0, -4, 4, -1]\noutput : list = [0, 48, 64, 128, 144]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(drop([-1, 5, 0, -4, 4, -1],1),-4),4),4))",
    "io_inp": [
      -1,
      5,
      0,
      -4,
      4,
      -1
    ],
    "io_out": [
      0,
      48,
      64,
      128,
      144
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(drop(input,1),-4),4),4))"
  },
  {
    "input": "input : list = [-4, 0, 3, -5, -5, 2]\noutput : list = [-8, 27, 27, -13, 2, 22]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(mul_n([-4, 0, 3, -5, -5, 2],-5),-4),-1)),-5)",
    "io_inp": [
      -4,
      0,
      3,
      -5,
      -5,
      2
    ],
    "io_out": [
      -8,
      27,
      27,
      -13,
      2,
      22
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(mul_n(input,-5),-4),-1)),-5)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc([-2, 3, -1]),6))",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),6))"
  },
  {
    "input": "input : list = [1, -5, 5, -5, 4]\noutput : list = [22, 18, 6, -18, -18]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(mul_n([1, -5, 5, -5, 4],4))),-2))",
    "io_inp": [
      1,
      -5,
      5,
      -5,
      4
    ],
    "io_out": [
      22,
      18,
      6,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(mul_n(input,4))),-2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-16, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(mul_n([4, 0],-5),2)),-2))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -16,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(mul_n(input,-5),2)),-2))"
  },
  {
    "input": "input : list = [-1, -2, 5, -1]\noutput : list = [21, 9, 9, 7]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n([-1, -2, 5, -1],-3),2),-5))",
    "io_inp": [
      -1,
      -2,
      5,
      -1
    ],
    "io_out": [
      21,
      9,
      9,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(input,-3),2),-5))"
  },
  {
    "input": "input : list = [-1, 1, 2, 3, 4, 0]\noutput : list = [1, 2, 3, 4, 0]",
    "output": "generated_output : list = add_n(add_n(drop([-1, 1, 2, 3, 4, 0],1),-1),1)",
    "io_inp": [
      -1,
      1,
      2,
      3,
      4,
      0
    ],
    "io_out": [
      1,
      2,
      3,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(input,1),-1),1)"
  },
  {
    "input": "input : list = [1, -5, -2, 4]\noutput : list = [-25, -10, 5, 20]",
    "output": "generated_output : list = mul_n(sort_asc([1, -5, -2, 4]),5)",
    "io_inp": [
      1,
      -5,
      -2,
      4
    ],
    "io_out": [
      -25,
      -10,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [3, 1, -4, -3, -4]\noutput : list = [-5, -3, 2, 1, 2]",
    "output": "generated_output : list = take(take(sub_n(mul_n(sub_n([3, 1, -4, -3, -4],-4),-1),-2),30),40)",
    "io_inp": [
      3,
      1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -3,
      2,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(sub_n(input,-4),-1),-2),30),40)"
  },
  {
    "input": "input : list = [2, -1, 4, -1, 3, 5]\noutput : list = [2, 0, -4, 1, -4, -1]",
    "output": "generated_output : list = add_n(reverse([2, -1, 4, -1, 3, 5]),-3)",
    "io_inp": [
      2,
      -1,
      4,
      -1,
      3,
      5
    ],
    "io_out": [
      2,
      0,
      -4,
      1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des([2, 5])",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(drop([-2, 1, -2],1),3),2)),-1)",
    "io_inp": [
      -2,
      1,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(drop(input,1),3),2)),-1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-2, 4]",
    "output": "generated_output : list = add_n([-5, 1],3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, -1, -5, -3, 3, -2]\noutput : list = [-3, -1, -1, 0, 1, 5]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc([-3, -1, -5, -3, 3, -2]),1)),1))",
    "io_inp": [
      -3,
      -1,
      -5,
      -3,
      3,
      -2
    ],
    "io_out": [
      -3,
      -1,
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc(input),1)),1))"
  },
  {
    "input": "input : list = [5, -4, 4, -1, 4, 5]\noutput : list = [-2, 1, 6, 6, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(add_n([5, -4, 4, -1, 4, 5],-2),1))),-5)",
    "io_inp": [
      5,
      -4,
      4,
      -1,
      4,
      5
    ],
    "io_out": [
      -2,
      1,
      6,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(add_n(input,-2),1))),-5)"
  },
  {
    "input": "input : list = [0, 5, 2, 3, -5]\noutput : list = [3, 18, 9, 12, -12]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(reverse([0, 5, 2, 3, -5]),3),-1)),-2)",
    "io_inp": [
      0,
      5,
      2,
      3,
      -5
    ],
    "io_out": [
      3,
      18,
      9,
      12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(reverse(input),3),-1)),-2)"
  },
  {
    "input": "input : list = [-2, 5, 3, 4, -4]\noutput : list = [-8, 20, 12, 16, -16]",
    "output": "generated_output : list = mul_n([-2, 5, 3, 4, -4],4)",
    "io_inp": [
      -2,
      5,
      3,
      4,
      -4
    ],
    "io_out": [
      -8,
      20,
      12,
      16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, 2, 5, 3, -5]\noutput : list = [-9, 6]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take([-3, 2, 5, 3, -5],2),-1),-3))",
    "io_inp": [
      -3,
      2,
      5,
      3,
      -5
    ],
    "io_out": [
      -9,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(input,2),-1),-3))"
  },
  {
    "input": "input : list = [1, -3, -3, 1]\noutput : list = [-3]",
    "output": "generated_output : list = take(add_n(sort_des(take([1, -3, -3, 1],1)),-4),2)",
    "io_inp": [
      1,
      -3,
      -3,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(input,1)),-4),2)"
  },
  {
    "input": "input : list = [-3, -3, -4, 3, -1]\noutput : list = [-2, 2, -5, -4, -4]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(sub_n([-3, -3, -4, 3, -1],4),1),17)),4)",
    "io_inp": [
      -3,
      -3,
      -4,
      3,
      -1
    ],
    "io_out": [
      -2,
      2,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(sub_n(input,4),1),17)),4)"
  },
  {
    "input": "input : list = [0, 2, -5, 5]\noutput : list = [4, 1, -1, -6]",
    "output": "generated_output : list = take(add_n(take(sort_des(sort_des([0, 2, -5, 5])),9),-1),20)",
    "io_inp": [
      0,
      2,
      -5,
      5
    ],
    "io_out": [
      4,
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(sort_des(input)),9),-1),20)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([-1, 4])))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(reverse([-1, -2, -1])),1),5))",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(reverse(input)),1),5))"
  },
  {
    "input": "input : list = [4, 0, -5, 5]\noutput : list = [-10, 0, 8, 10]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(mul_n([4, 0, -5, 5],2)))))",
    "io_inp": [
      4,
      0,
      -5,
      5
    ],
    "io_out": [
      -10,
      0,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [-2, 0, 1, -4, 1]\noutput : list = [-3, 2, -3, -2, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n([-2, 0, 1, -4, 1],2)),-1)",
    "io_inp": [
      -2,
      0,
      1,
      -4,
      1
    ],
    "io_out": [
      -3,
      2,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,2)),-1)"
  },
  {
    "input": "input : list = [4, 0, 3, 5, -2]\noutput : list = [16, 8, 14, 18, 4]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(sub_n([4, 0, 3, 5, -2],1)),5),2))",
    "io_inp": [
      4,
      0,
      3,
      5,
      -2
    ],
    "io_out": [
      16,
      8,
      14,
      18,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(sub_n(input,1)),5),2))"
  },
  {
    "input": "input : list = [5, 5, 2, 5, -2, 0]\noutput : list = [-8, 0, 8, 20, 20, 20]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(reverse([5, 5, 2, 5, -2, 0])),4)))",
    "io_inp": [
      5,
      5,
      2,
      5,
      -2,
      0
    ],
    "io_out": [
      -8,
      0,
      8,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(reverse(input)),4)))"
  },
  {
    "input": "input : list = [0, 0, -1, 2, 5]\noutput : list = [7]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take([0, 0, -1, 2, 5],1),-3),4),1)",
    "io_inp": [
      0,
      0,
      -1,
      2,
      5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(input,1),-3),4),1)"
  },
  {
    "input": "input : list = [5, 1, -3, -2, 0, -4]\noutput : list = [10, 6, 2, 3, 5, 1]",
    "output": "generated_output : list = sub_n([5, 1, -3, -2, 0, -4],-5)",
    "io_inp": [
      5,
      1,
      -3,
      -2,
      0,
      -4
    ],
    "io_out": [
      10,
      6,
      2,
      3,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -5, -3, -5]\noutput : list = [45, 45, 40, 35]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(add_n([-4, -5, -3, -5],-5))),1),-5)",
    "io_inp": [
      -4,
      -5,
      -3,
      -5
    ],
    "io_out": [
      45,
      45,
      40,
      35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(add_n(input,-5))),1),-5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [20, 35]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(add_n([0, 3],4),-1)),-5))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      20,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(add_n(input,4),-1)),-5))"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(take([3, -3, -1],1),-2)),3))",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(take(input,1),-2)),3))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n(sub_n([-3, 2],-2),1),3),30))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(sub_n(input,-2),1),3),30))"
  },
  {
    "input": "input : list = [5, 4, -5, -4, -2, -4]\noutput : list = [-5, -4, -2, -4]",
    "output": "generated_output : list = take(mul_n(drop([5, 4, -5, -4, -2, -4],2),1),11)",
    "io_inp": [
      5,
      4,
      -5,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,2),1),11)"
  },
  {
    "input": "input : list = [-4, -4, 0, 2, -1, -3]\noutput : list = [-2, -2, -1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(sub_n([-4, -4, 0, 2, -1, -3],-5),-1),15),-4))",
    "io_inp": [
      -4,
      -4,
      0,
      2,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(sub_n(input,-5),-1),15),-4))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [38, -7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_des(mul_n([1, -4],-3)),3),-3),1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      38,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_des(mul_n(input,-3)),3),-3),1)"
  },
  {
    "input": "input : list = [1, -1, 5, 2, -5]\noutput : list = [-5, 2, 5, -1, 1]",
    "output": "generated_output : list = take(reverse([1, -1, 5, 2, -5]),18)",
    "io_inp": [
      1,
      -1,
      5,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),18)"
  },
  {
    "input": "input : list = [-1, 0, -1, 3, 5]\noutput : list = [0, 12, -36, -60]",
    "output": "generated_output : list = reverse(reverse(mul_n(drop(mul_n([-1, 0, -1, 3, 5],4),1),-3)))",
    "io_inp": [
      -1,
      0,
      -1,
      3,
      5
    ],
    "io_out": [
      0,
      12,
      -36,
      -60
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(drop(mul_n(input,4),1),-3)))"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [-27, -17, -17]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(add_n([2, 4, 2],2)),16),-5),-3)",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      -27,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(add_n(input,2)),16),-5),-3)"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = drop([-1, -2, -1],1)",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -3, 2, 2, -3, -1]\noutput : list = [19, -1]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(take([2, -3, 2, 2, -3, -1],2),4),4),-4),-3)",
    "io_inp": [
      2,
      -3,
      2,
      2,
      -3,
      -1
    ],
    "io_out": [
      19,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(take(input,2),4),4),-4),-3)"
  },
  {
    "input": "input : list = [5, 4, -5, -2, 0]\noutput : list = [10, 9, 0, 3, 5]",
    "output": "generated_output : list = take(add_n([5, 4, -5, -2, 0],5),17)",
    "io_inp": [
      5,
      4,
      -5,
      -2,
      0
    ],
    "io_out": [
      10,
      9,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),17)"
  },
  {
    "input": "input : list = [-4, 5, 5, -1]\noutput : list = [6, 6, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(sub_n([-4, 5, 5, -1],1),-1),-1)))",
    "io_inp": [
      -4,
      5,
      5,
      -1
    ],
    "io_out": [
      6,
      6,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(sub_n(input,1),-1),-1)))"
  },
  {
    "input": "input : list = [4, 4, 3, -3, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(drop(sort_asc([4, 4, 3, -3, -4]),3))))",
    "io_inp": [
      4,
      4,
      3,
      -3,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(drop(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-3, -4, 1, -1, -1, 5]\noutput : list = [-4, -3, -1, 1]",
    "output": "generated_output : list = sort_asc(take([-3, -4, 1, -1, -1, 5],4))",
    "io_inp": [
      -3,
      -4,
      1,
      -1,
      -1,
      5
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,4))"
  },
  {
    "input": "input : list = [3, 3, -2, -5, 0]\noutput : list = [-1, 2, 4, 7, 7]",
    "output": "generated_output : list = take(reverse(take(sub_n(sort_des([3, 3, -2, -5, 0]),-4),31)),52)",
    "io_inp": [
      3,
      3,
      -2,
      -5,
      0
    ],
    "io_out": [
      -1,
      2,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(sort_des(input),-4),31)),52)"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 5, -5],1)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 1, 4, 0, 4, -3]\noutput : list = [7]",
    "output": "generated_output : list = take(take(add_n(mul_n(mul_n([4, 1, 4, 0, 4, -3],1),2),-1),20),1)",
    "io_inp": [
      4,
      1,
      4,
      0,
      4,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(mul_n(input,1),2),-1),20),1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take(sort_asc([-3, 1]),14)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [4, 3, -4]\noutput : list = [3, -11]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(drop([4, 3, -4],1)),-2),2),-3)",
    "io_inp": [
      4,
      3,
      -4
    ],
    "io_out": [
      3,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(drop(input,1)),-2),2),-3)"
  },
  {
    "input": "input : list = [-5, -3, -3, 3, -5, 1]\noutput : list = [5, 1, -7, -7, -11, -11]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sort_asc([-5, -3, -3, 3, -5, 1]),2)),1))",
    "io_inp": [
      -5,
      -3,
      -3,
      3,
      -5,
      1
    ],
    "io_out": [
      5,
      1,
      -7,
      -7,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sort_asc(input),2)),1))"
  },
  {
    "input": "input : list = [-4, 4, 5, 2, -3, -2]\noutput : list = [-4, -1, 2, 14, 20, 23]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc([-4, 4, 5, 2, -3, -2]),3),-4),-3),-1)",
    "io_inp": [
      -4,
      4,
      5,
      2,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -1,
      2,
      14,
      20,
      23
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sort_asc(input),3),-4),-3),-1)"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse(sort_asc(drop([5, -4, 2],1)))",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-1, 1, 5, 2]\noutput : list = [4, 6, 7, 10]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(sort_asc([-1, 1, 5, 2]),5),-5),39),-5)",
    "io_inp": [
      -1,
      1,
      5,
      2
    ],
    "io_out": [
      4,
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(sort_asc(input),5),-5),39),-5)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [9, 2, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc([4, 2, -5])),-4),-1)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      9,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(input)),-4),-1)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-1, -3, -5]))",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -2, 5, 5, 4, -3]\noutput : list = [13, 13, 13, 12, 6, 5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des(sub_n([5, -2, 5, 5, 4, -3],-2)),-1)),-5)",
    "io_inp": [
      5,
      -2,
      5,
      5,
      4,
      -3
    ],
    "io_out": [
      13,
      13,
      13,
      12,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(sub_n(input,-2)),-1)),-5)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [6, -6]",
    "output": "generated_output : list = mul_n([-2, 2],-3)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 4, -2, 3, 3]\noutput : list = [4, 9, 9, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(add_n([3, 4, -2, 3, 3],1),12)),5))",
    "io_inp": [
      3,
      4,
      -2,
      3,
      3
    ],
    "io_out": [
      4,
      9,
      9,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(add_n(input,1),12)),5))"
  },
  {
    "input": "input : list = [-4, -4, -3, 0, -4]\noutput : list = [-4, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(drop([-4, -4, -3, 0, -4],2))),4))",
    "io_inp": [
      -4,
      -4,
      -3,
      0,
      -4
    ],
    "io_out": [
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(drop(input,2))),4))"
  },
  {
    "input": "input : list = [-1, 1, -1, 1, 1]\noutput : list = [-20, -20, -30, -30, -30]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_des([-1, 1, -1, 1, 1])),-5)),-5)",
    "io_inp": [
      -1,
      1,
      -1,
      1,
      1
    ],
    "io_out": [
      -20,
      -20,
      -30,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_des(input)),-5)),-5)"
  },
  {
    "input": "input : list = [3, -4, 2, -2, 3]\noutput : list = [-4, -4, -5, -9, -11]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc([3, -4, 2, -2, 3]),-4),-3))",
    "io_inp": [
      3,
      -4,
      2,
      -2,
      3
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(input),-4),-3))"
  },
  {
    "input": "input : list = [-4, 2, -4, 2, -5, 3]\noutput : list = [11, 9, 9, -3, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(mul_n([-4, 2, -4, 2, -5, 3],2),25)),5))",
    "io_inp": [
      -4,
      2,
      -4,
      2,
      -5,
      3
    ],
    "io_out": [
      11,
      9,
      9,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(mul_n(input,2),25)),5))"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [-60, 12, 24]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(mul_n([-5, 1, 2],3)))),4)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      -60,
      12,
      24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(mul_n(input,3)))),4)"
  },
  {
    "input": "input : list = [-5, 5, 2, -3, 0, 2]\noutput : list = [-40, -28, -20, -8, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(add_n([-5, 5, 2, -3, 0, 2],5),5),-4)))",
    "io_inp": [
      -5,
      5,
      2,
      -3,
      0,
      2
    ],
    "io_out": [
      -40,
      -28,
      -20,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(add_n(input,5),5),-4)))"
  },
  {
    "input": "input : list = [0, 0, 1, 0]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 0, 1, 0],1)",
    "io_inp": [
      0,
      0,
      1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 1, 5]\noutput : list = [9, 27, 63]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n(add_n([-1, 1, 5],1),3),3),3),37)",
    "io_inp": [
      -1,
      1,
      5
    ],
    "io_out": [
      9,
      27,
      63
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(add_n(input,1),3),3),3),37)"
  },
  {
    "input": "input : list = [-5, 3, 4, -5, -1, 1]\noutput : list = [3, 2, 0, -2, -6, -6]",
    "output": "generated_output : list = add_n(sub_n(take(add_n(sort_des([-5, 3, 4, -5, -1, 1]),-3),30),-3),-1)",
    "io_inp": [
      -5,
      3,
      4,
      -5,
      -1,
      1
    ],
    "io_out": [
      3,
      2,
      0,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(sort_des(input),-3),30),-3),-1)"
  },
  {
    "input": "input : list = [5, -3, -3, 3]\noutput : list = [5, -3]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(take([5, -3, -3, 3],2)))),47)",
    "io_inp": [
      5,
      -3,
      -3,
      3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(take(input,2)))),47)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-8, 12]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(reverse([1, -3]),14),-1),5),-2)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -8,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(reverse(input),14),-1),5),-2)"
  },
  {
    "input": "input : list = [1, -5, 5, -3, -3]\noutput : list = [14, 6, -2]",
    "output": "generated_output : list = mul_n(drop(sort_asc(sub_n(sub_n([1, -5, 5, -3, -3],2),2)),2),-2)",
    "io_inp": [
      1,
      -5,
      5,
      -3,
      -3
    ],
    "io_out": [
      14,
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(sub_n(sub_n(input,2),2)),2),-2)"
  },
  {
    "input": "input : list = [0, 3, 1, 1]\noutput : list = [-40, -70, -50, -50]",
    "output": "generated_output : list = take(mul_n(mul_n(take(sub_n([0, 3, 1, 1],-4),11),2),-5),8)",
    "io_inp": [
      0,
      3,
      1,
      1
    ],
    "io_out": [
      -40,
      -70,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(sub_n(input,-4),11),2),-5),8)"
  },
  {
    "input": "input : list = [-2, -5, 4, 0, -2, -3]\noutput : list = [36, 20, 12, 12, 8, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(sort_des([-2, -5, 4, 0, -2, -3]),8),-5)),4)",
    "io_inp": [
      -2,
      -5,
      4,
      0,
      -2,
      -3
    ],
    "io_out": [
      36,
      20,
      12,
      12,
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(sort_des(input),8),-5)),4)"
  },
  {
    "input": "input : list = [-2, 1, 3, 3]\noutput : list = [-2, 1, 3, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(sort_asc([-2, 1, 3, 3])))))",
    "io_inp": [
      -2,
      1,
      3,
      3
    ],
    "io_out": [
      -2,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, 5, -1, 4, -3, -3]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(reverse(drop(sort_des(add_n([2, 5, -1, 4, -3, -3],-4)),5)))",
    "io_inp": [
      2,
      5,
      -1,
      4,
      -3,
      -3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(sort_des(add_n(input,-4)),5)))"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = drop([5, 5, -5],1)",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -3, 4]\noutput : list = [4, 25, 7]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(add_n([3, -3, 4],-4),-3),4)),33)",
    "io_inp": [
      3,
      -3,
      4
    ],
    "io_out": [
      4,
      25,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(add_n(input,-4),-3),4)),33)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [6, 18]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-1, -3],-2),3),1)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-2),3),1)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [0, 0, -15]",
    "output": "generated_output : list = mul_n(mul_n([0, 0, -1],-3),-5)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),-5)"
  },
  {
    "input": "input : list = [5, 1, 2, 3, 0, -2]\noutput : list = [8, 4]",
    "output": "generated_output : list = add_n(take([5, 1, 2, 3, 0, -2],2),3)",
    "io_inp": [
      5,
      1,
      2,
      3,
      0,
      -2
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),3)"
  },
  {
    "input": "input : list = [0, -4, 2, -4, -2]\noutput : list = [1, -3, 3, -3, -1]",
    "output": "generated_output : list = add_n([0, -4, 2, -4, -2],1)",
    "io_inp": [
      0,
      -4,
      2,
      -4,
      -2
    ],
    "io_out": [
      1,
      -3,
      3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n([-1, 0],-3)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -5, -2, -4, 0]\noutput : list = [-2, -6, -3, -5, -1]",
    "output": "generated_output : list = sub_n([-1, -5, -2, -4, 0],1)",
    "io_inp": [
      -1,
      -5,
      -2,
      -4,
      0
    ],
    "io_out": [
      -2,
      -6,
      -3,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [4, -8, 10]",
    "output": "generated_output : list = mul_n(reverse([5, -4, 2]),2)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      4,
      -8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [0, 4, 5, 0]\noutput : list = [8, 8, -8, -12]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sub_n([0, 4, 5, 0],1),-4),26)),-4)",
    "io_inp": [
      0,
      4,
      5,
      0
    ],
    "io_out": [
      8,
      8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sub_n(input,1),-4),26)),-4)"
  },
  {
    "input": "input : list = [-1, -4, -3, -3, 2, -2]\noutput : list = [-12, -9, -9, -3]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(take([-1, -4, -3, -3, 2, -2],4))),3),1)",
    "io_inp": [
      -1,
      -4,
      -3,
      -3,
      2,
      -2
    ],
    "io_out": [
      -12,
      -9,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(take(input,4))),3),1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-9, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(sort_asc([4, -5]),-5))),-1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(sort_asc(input),-5))),-1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [6, 9]",
    "output": "generated_output : list = sort_asc(sub_n([2, 5],-4))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [3, 1, 2, 5]\noutput : list = [5, 3, 2, 1]",
    "output": "generated_output : list = sort_des(sort_asc([3, 1, 2, 5]))",
    "io_inp": [
      3,
      1,
      2,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 0, 0, 3, 3]\noutput : list = [3, 1, 1, -2, -2]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(sub_n([5, 0, 0, 3, 3],2))),39))",
    "io_inp": [
      5,
      0,
      0,
      3,
      3
    ],
    "io_out": [
      3,
      1,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(sub_n(input,2))),39))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [-8, -6]",
    "output": "generated_output : list = add_n(add_n(drop(sort_asc([3, 1, -4]),1),-4),-5)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(sort_asc(input),1),-4),-5)"
  },
  {
    "input": "input : list = [-5, -4, 1, 3]\noutput : list = [-4, -3, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(sub_n([-5, -4, 1, 3],-1)),7)))",
    "io_inp": [
      -5,
      -4,
      1,
      3
    ],
    "io_out": [
      -4,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(sub_n(input,-1)),7)))"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [2, 4, 7]",
    "output": "generated_output : list = reverse(sub_n([4, 1, -1],-3))",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-5, 1, 4, 4, -2]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(take([-5, 1, 4, 4, -2],1)),22)),-1)",
    "io_inp": [
      -5,
      1,
      4,
      4,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(take(input,1)),22)),-1)"
  },
  {
    "input": "input : list = [-5, 0, 0, -1]\noutput : list = [-10, -2, 0, 0]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(sort_asc([-5, 0, 0, -1])),27)),2)",
    "io_inp": [
      -5,
      0,
      0,
      -1
    ],
    "io_out": [
      -10,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(sort_asc(input)),27)),2)"
  },
  {
    "input": "input : list = [-4, 4, 3, -3]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc([-4, 4, 3, -3])),3)))",
    "io_inp": [
      -4,
      4,
      3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [0, 4, -1, 2, -1, -3]\noutput : list = [-4, 0, -5, -2, -5, -7]",
    "output": "generated_output : list = add_n([0, 4, -1, 2, -1, -3],-4)",
    "io_inp": [
      0,
      4,
      -1,
      2,
      -1,
      -3
    ],
    "io_out": [
      -4,
      0,
      -5,
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [7, 1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(add_n([4, -4, -2],1),2))))",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      7,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(add_n(input,1),2))))"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [-6, 2, -5]",
    "output": "generated_output : list = add_n([-5, 3, -4],-1)",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      -6,
      2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-16, -16]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sub_n(sub_n([-4, -4],-3),3),5)),-4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sub_n(sub_n(input,-3),3),5)),-4)"
  },
  {
    "input": "input : list = [1, -5, 0, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take(mul_n(take(sub_n(take([1, -5, 0, 3],1),2),16),2),17)",
    "io_inp": [
      1,
      -5,
      0,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(take(input,1),2),16),2),17)"
  },
  {
    "input": "input : list = [1, 4, 1, -2, 0]\noutput : list = [5, 2, 2, 1]",
    "output": "generated_output : list = sub_n(take(reverse(drop(sort_asc([1, 4, 1, -2, 0]),1)),14),-1)",
    "io_inp": [
      1,
      4,
      1,
      -2,
      0
    ],
    "io_out": [
      5,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(drop(sort_asc(input),1)),14),-1)"
  },
  {
    "input": "input : list = [5, -1, -2, -1, 1]\noutput : list = [-3, -5, -6, -5, 1]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(add_n([5, -1, -2, -1, 1],-2),15)),4),2)",
    "io_inp": [
      5,
      -1,
      -2,
      -1,
      1
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(add_n(input,-2),15)),4),2)"
  },
  {
    "input": "input : list = [-2, 0, 1, -2]\noutput : list = [-3, -1, 0, -3]",
    "output": "generated_output : list = add_n([-2, 0, 1, -2],-1)",
    "io_inp": [
      -2,
      0,
      1,
      -2
    ],
    "io_out": [
      -3,
      -1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(sort_asc([1, -5])))),5)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [5, 5, -5, -4, 5]\noutput : list = [5, 5, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(drop([5, 5, -5, -4, 5],1)),19)))",
    "io_inp": [
      5,
      5,
      -5,
      -4,
      5
    ],
    "io_out": [
      5,
      5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(drop(input,1)),19)))"
  },
  {
    "input": "input : list = [-1, -2, -4, -5]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(reverse(add_n(sub_n(drop([-1, -2, -4, -5],2),-5),2)),47)",
    "io_inp": [
      -1,
      -2,
      -4,
      -5
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sub_n(drop(input,2),-5),2)),47)"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [4, -3, 2]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(add_n([5, -2, 3],-5),-1),5),-5),-5)",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(add_n(input,-5),-1),5),-5),-5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(sub_n([0, 3],-1))),-1))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(sub_n(input,-1))),-1))"
  },
  {
    "input": "input : list = [-5, -2, -1, -4]\noutput : list = [-4, -3, -1, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse(sort_des([-5, -2, -1, -4]))),-1),1)",
    "io_inp": [
      -5,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(sort_des(input))),-1),1)"
  },
  {
    "input": "input : list = [-4, -3, -4]\noutput : list = [16]",
    "output": "generated_output : list = mul_n(sort_asc(take([-4, -3, -4],1)),-4)",
    "io_inp": [
      -4,
      -3,
      -4
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,1)),-4)"
  },
  {
    "input": "input : list = [-1, 4, 1, 0, 4]\noutput : list = [0, -4, -3, 0, -5]",
    "output": "generated_output : list = add_n(take(take(add_n(reverse([-1, 4, 1, 0, 4]),1),30),19),-5)",
    "io_inp": [
      -1,
      4,
      1,
      0,
      4
    ],
    "io_out": [
      0,
      -4,
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(reverse(input),1),30),19),-5)"
  },
  {
    "input": "input : list = [4, 5, -3, -3, -1, 2]\noutput : list = [-2, -1, -9, -9, -7, -4]",
    "output": "generated_output : list = add_n(add_n(add_n([4, 5, -3, -3, -1, 2],-2),1),-5)",
    "io_inp": [
      4,
      5,
      -3,
      -3,
      -1,
      2
    ],
    "io_out": [
      -2,
      -1,
      -9,
      -9,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-2),1),-5)"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [-3, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n([3, 4, -5],1)),-1),-3))",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      -3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n(input,1)),-1),-3))"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(drop([3, -1, 5],1))",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = sort_des([-5, 0, 0])",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop([-5, 2, 5],1)",
    "io_inp": [
      -5,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -5, 4, 4, 5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(take(drop([1, -5, 4, 4, 5, 2],4),20),25)",
    "io_inp": [
      1,
      -5,
      4,
      4,
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(take(drop(input,4),20),25)"
  },
  {
    "input": "input : list = [1, 5, 0, 3]\noutput : list = [7, -5, 15, -1]",
    "output": "generated_output : list = add_n(mul_n(reverse([1, 5, 0, 3]),4),-5)",
    "io_inp": [
      1,
      5,
      0,
      3
    ],
    "io_out": [
      7,
      -5,
      15,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),4),-5)"
  },
  {
    "input": "input : list = [-1, 1, 1, 5]\noutput : list = [-10, -2, -2, 2]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc(reverse([-1, 1, 1, 5]))),-2),22)",
    "io_inp": [
      -1,
      1,
      1,
      5
    ],
    "io_out": [
      -10,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(reverse(input))),-2),22)"
  },
  {
    "input": "input : list = [-1, 3, 0, -3, 1, -5]\noutput : list = [-5, 1, -3, 0]",
    "output": "generated_output : list = reverse(drop([-1, 3, 0, -3, 1, -5],2))",
    "io_inp": [
      -1,
      3,
      0,
      -3,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [3, 9, 11]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(sub_n([3, -3, 5],-4))),3),-2)",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      3,
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(sub_n(input,-4))),3),-2)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [-25, -5, -5]",
    "output": "generated_output : list = mul_n([-5, -1, -1],5)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      -25,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, -1, -4, 5, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(take([1, -1, -4, 5, 0],1)),1),-4))",
    "io_inp": [
      1,
      -1,
      -4,
      5,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(take(input,1)),1),-4))"
  },
  {
    "input": "input : list = [2, 1, -2, 3, 2]\noutput : list = [3, 2, 2, 1, -2]",
    "output": "generated_output : list = sort_des([2, 1, -2, 3, 2])",
    "io_inp": [
      2,
      1,
      -2,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, 2, 0]\noutput : list = [2, 0, -5, -5]",
    "output": "generated_output : list = take(sort_des([-5, -5, 2, 0]),9)",
    "io_inp": [
      -5,
      -5,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),9)"
  },
  {
    "input": "input : list = [1, 1, 4, 4]\noutput : list = [6, 6, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_des([1, 1, 4, 4]),-5))))",
    "io_inp": [
      1,
      1,
      4,
      4
    ],
    "io_out": [
      6,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [2]",
    "output": "generated_output : list = add_n(drop(take(add_n(sub_n([4, -1],-5),2),7),1),-4)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(take(add_n(sub_n(input,-5),2),7),1),-4)"
  },
  {
    "input": "input : list = [0, -4, 5, -2]\noutput : list = [-3, -7, 2, -5]",
    "output": "generated_output : list = sub_n([0, -4, 5, -2],3)",
    "io_inp": [
      0,
      -4,
      5,
      -2
    ],
    "io_out": [
      -3,
      -7,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(sort_des([3, 4])))))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = drop([-2, 1, -5],1)",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 5, 1, -5, 5, -1]\noutput : list = [5, 1, -5, 5, -1]",
    "output": "generated_output : list = drop([-3, 5, 1, -5, 5, -1],1)",
    "io_inp": [
      -3,
      5,
      1,
      -5,
      5,
      -1
    ],
    "io_out": [
      5,
      1,
      -5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 2, 2, 2, -1]\noutput : list = [-3, -15, -15, -15]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(drop([-3, 2, 2, 2, -1],1),-4),3)),4)",
    "io_inp": [
      -3,
      2,
      2,
      2,
      -1
    ],
    "io_out": [
      -3,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(drop(input,1),-4),3)),4)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(drop([-1, 2, -4],1),4)),-1)",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(drop(input,1),4)),-1)"
  },
  {
    "input": "input : list = [4, -2, -5, -3, -1, -2]\noutput : list = [60, 0, -30, -10, 10, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(take(sub_n([4, -2, -5, -3, -1, -2],-2),21),2),5),27)",
    "io_inp": [
      4,
      -2,
      -5,
      -3,
      -1,
      -2
    ],
    "io_out": [
      60,
      0,
      -30,
      -10,
      10,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(sub_n(input,-2),21),2),5),27)"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [2, 0, -6]",
    "output": "generated_output : list = add_n(take(take(sort_des([4, -4, 2]),6),18),-2)",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(input),6),18),-2)"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [-2, 3, 5]",
    "output": "generated_output : list = reverse([5, 3, -2])",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0, 3, -4, -5]\noutput : list = [90, 80, 10]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(drop([1, 0, 3, -4, -5],2)),4),2),-5)",
    "io_inp": [
      1,
      0,
      3,
      -4,
      -5
    ],
    "io_out": [
      90,
      80,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(drop(input,2)),4),2),-5)"
  },
  {
    "input": "input : list = [1, 4, 1, -1]\noutput : list = [9, 11, 11, 14]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des([1, 4, 1, -1]),-5),-5)),32)",
    "io_inp": [
      1,
      4,
      1,
      -1
    ],
    "io_out": [
      9,
      11,
      11,
      14
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des(input),-5),-5)),32)"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [-1, -1, -7]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([1, -5, 1],1),2))",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      -1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,1),2))"
  },
  {
    "input": "input : list = [3, -5, 0, 3, 4, 2]\noutput : list = [5, 7, 6, 3, -2, 6]",
    "output": "generated_output : list = take(take(sub_n(mul_n(reverse([3, -5, 0, 3, 4, 2]),1),-3),9),18)",
    "io_inp": [
      3,
      -5,
      0,
      3,
      4,
      2
    ],
    "io_out": [
      5,
      7,
      6,
      3,
      -2,
      6
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(reverse(input),1),-3),9),18)"
  },
  {
    "input": "input : list = [1, 2, 0, 3, -3, 4]\noutput : list = [-11, -9, -7, -5, -3, 3]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(mul_n([1, 2, 0, 3, -3, 4],-2)),33)),-3)",
    "io_inp": [
      1,
      2,
      0,
      3,
      -3,
      4
    ],
    "io_out": [
      -11,
      -9,
      -7,
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(mul_n(input,-2)),33)),-3)"
  },
  {
    "input": "input : list = [4, -2, 0, 5, 3]\noutput : list = [-5, -4, -3, 0, 2]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(sort_asc([4, -2, 0, 5, 3]),-1))),46)",
    "io_inp": [
      4,
      -2,
      0,
      5,
      3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(sort_asc(input),-1))),46)"
  },
  {
    "input": "input : list = [0, -3, 0, 0]\noutput : list = [15, 0, 0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(reverse([0, -3, 0, 0])),20)),-5)",
    "io_inp": [
      0,
      -3,
      0,
      0
    ],
    "io_out": [
      15,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(reverse(input)),20)),-5)"
  },
  {
    "input": "input : list = [5, -1, -5, -1, -1]\noutput : list = [4, 4, 4, 0]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(drop([5, -1, -5, -1, -1],1))),1),-5)",
    "io_inp": [
      5,
      -1,
      -5,
      -1,
      -1
    ],
    "io_out": [
      4,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(drop(input,1))),1),-5)"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = add_n([0, -1, -4],4)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, -3, -2, -3, -1, 4]\noutput : list = [2, 2, 3, 4, 4, 9]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([-1, -3, -2, -3, -1, 4],5)))",
    "io_inp": [
      -1,
      -3,
      -2,
      -3,
      -1,
      4
    ],
    "io_out": [
      2,
      2,
      3,
      4,
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,5)))"
  },
  {
    "input": "input : list = [-4, -3, -5, 4, -3]\noutput : list = [-4, 3, 3, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(sort_des([-4, -3, -5, 4, -3])),-1)))",
    "io_inp": [
      -4,
      -3,
      -5,
      4,
      -3
    ],
    "io_out": [
      -4,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-3, 5, -1, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = drop([-3, 5, -1, 2],2)",
    "io_inp": [
      -3,
      5,
      -1,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-3, -7]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n([3, -1],-1))),-5)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(input,-1))),-5)"
  },
  {
    "input": "input : list = [-2, 5, -5, -2, -3, 5]\noutput : list = [16, 16, 2, 2, 0, -4]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(mul_n([-2, 5, -5, -2, -3, 5],2)),-3),15),-3)",
    "io_inp": [
      -2,
      5,
      -5,
      -2,
      -3,
      5
    ],
    "io_out": [
      16,
      16,
      2,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(mul_n(input,2)),-3),15),-3)"
  },
  {
    "input": "input : list = [-5, -1, -4, -3, 2]\noutput : list = [-4, -3, -1, 2]",
    "output": "generated_output : list = drop(add_n(sort_asc(sub_n(add_n([-5, -1, -4, -3, 2],5),4)),-1),1)",
    "io_inp": [
      -5,
      -1,
      -4,
      -3,
      2
    ],
    "io_out": [
      -4,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(sub_n(add_n(input,5),4)),-1),1)"
  },
  {
    "input": "input : list = [5, 0, 1, -2, -4, 3]\noutput : list = [5, 3, 1, 0, -2, -4]",
    "output": "generated_output : list = sort_des([5, 0, 1, -2, -4, 3])",
    "io_inp": [
      5,
      0,
      1,
      -2,
      -4,
      3
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [5, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, 5])",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, 1, 4, 1]\noutput : list = [2, 2, -1, -1, -1]",
    "output": "generated_output : list = sort_des(take(take(reverse(add_n([1, 4, 1, 4, 1],-2)),16),8))",
    "io_inp": [
      1,
      4,
      1,
      4,
      1
    ],
    "io_out": [
      2,
      2,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(add_n(input,-2)),16),8))"
  },
  {
    "input": "input : list = [0, -5, 4, -2, -1]\noutput : list = [0, -5, 4, -2, -1]",
    "output": "generated_output : list = take(reverse(take(mul_n(reverse([0, -5, 4, -2, -1]),1),5)),18)",
    "io_inp": [
      0,
      -5,
      4,
      -2,
      -1
    ],
    "io_out": [
      0,
      -5,
      4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(reverse(input),1),5)),18)"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = reverse(reverse([2, -2, -5]))",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, -2, -4, 4, 1, 5]\noutput : list = [-2, -7, -9, -1, -4, 0]",
    "output": "generated_output : list = add_n([3, -2, -4, 4, 1, 5],-5)",
    "io_inp": [
      3,
      -2,
      -4,
      4,
      1,
      5
    ],
    "io_out": [
      -2,
      -7,
      -9,
      -1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 5, 2, -3, 5]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(take([2, 5, 2, -3, 5],2)))),1)",
    "io_inp": [
      2,
      5,
      2,
      -3,
      5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(take(input,2)))),1)"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [-7, 5, -7]",
    "output": "generated_output : list = take(take(sub_n(reverse(mul_n([-2, 4, -2],2)),3),28),27)",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      -7,
      5,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(mul_n(input,2)),3),28),27)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-7, -7]",
    "output": "generated_output : list = add_n(sub_n(take(add_n(sub_n([-5, -5],-2),4),7),4),-4)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(sub_n(input,-2),4),7),4),-4)"
  },
  {
    "input": "input : list = [-1, -2, 5, -1, 2]\noutput : list = [7, 4, 1, 1, 0]",
    "output": "generated_output : list = add_n(sort_des([-1, -2, 5, -1, 2]),2)",
    "io_inp": [
      -1,
      -2,
      5,
      -1,
      2
    ],
    "io_out": [
      7,
      4,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [1, -1, -2]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(drop([1, -1, -2],1)),2)),4)",
    "io_inp": [
      1,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(drop(input,1)),2)),4)"
  },
  {
    "input": "input : list = [-1, 3, -3]\noutput : list = [7, 1]",
    "output": "generated_output : list = add_n(drop([-1, 3, -3],1),4)",
    "io_inp": [
      -1,
      3,
      -3
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [-5, 1, 2, -5, 3, 2]\noutput : list = [-5, -3, -3, -1, 11, 11]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(add_n([-5, 1, 2, -5, 3, 2],-1),-2))),-1)",
    "io_inp": [
      -5,
      1,
      2,
      -5,
      3,
      2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(add_n(input,-1),-2))),-1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-2, 2]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_des([-1, 3])),1),2),1)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_des(input)),1),2),1)"
  },
  {
    "input": "input : list = [-4, 3, 5, -5, 4]\noutput : list = [20, 16, 12, -16, -20]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(sort_des([-4, 3, 5, -5, 4]))),4))",
    "io_inp": [
      -4,
      3,
      5,
      -5,
      4
    ],
    "io_out": [
      20,
      16,
      12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(sort_des(input))),4))"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [-8, 10, 13]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(reverse([-4, 3, 2])),3),4),14)",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      -8,
      10,
      13
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(reverse(input)),3),4),14)"
  },
  {
    "input": "input : list = [-2, 5, -5, 4, 0, 5]\noutput : list = [24, 24, 20, 4, -4, -16]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(reverse([-2, 5, -5, 4, 0, 5]),4),-4),19))",
    "io_inp": [
      -2,
      5,
      -5,
      4,
      0,
      5
    ],
    "io_out": [
      24,
      24,
      20,
      4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(reverse(input),4),-4),19))"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [3, -1, -5]",
    "output": "generated_output : list = take(reverse([-5, -1, 3]),17)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(input),17)"
  },
  {
    "input": "input : list = [-3, 5, 5, -5, -2]\noutput : list = [-5, -3, -2, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse([-3, 5, 5, -5, -2]))",
    "io_inp": [
      -3,
      5,
      5,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [20, 8, -12]",
    "output": "generated_output : list = mul_n([5, 2, -3],4)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      20,
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, 4, 5, 1, 2, -5]\noutput : list = [-25, -5, 5, 10, 20, 25]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(sort_asc([-1, 4, 5, 1, 2, -5]),5)),47),15)",
    "io_inp": [
      -1,
      4,
      5,
      1,
      2,
      -5
    ],
    "io_out": [
      -25,
      -5,
      5,
      10,
      20,
      25
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(sort_asc(input),5)),47),15)"
  },
  {
    "input": "input : list = [-1, -5, 2, -2, -1, -2]\noutput : list = [14, 5, 5, 2, 2, -7]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(mul_n([-1, -5, 2, -2, -1, -2],-3)),-1)))",
    "io_inp": [
      -1,
      -5,
      2,
      -2,
      -1,
      -2
    ],
    "io_out": [
      14,
      5,
      5,
      2,
      2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(mul_n(input,-3)),-1)))"
  },
  {
    "input": "input : list = [2, 5, 1, 2, 1]\noutput : list = [1, -2, -2, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(sort_des([2, 5, 1, 2, 1]),3),-1)))",
    "io_inp": [
      2,
      5,
      1,
      2,
      1
    ],
    "io_out": [
      1,
      -2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(sort_des(input),3),-1)))"
  },
  {
    "input": "input : list = [-2, 2, 1, 4, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take(take(take([-2, 2, 1, 4, 5],1),12),25)",
    "io_inp": [
      -2,
      2,
      1,
      4,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(take(input,1),12),25)"
  },
  {
    "input": "input : list = [4, -1, -2, -5, 2, -2]\noutput : list = [-19, -10, -10, -7, 2, 8]",
    "output": "generated_output : list = sort_asc(take(take(add_n(mul_n([4, -1, -2, -5, 2, -2],3),-4),29),9))",
    "io_inp": [
      4,
      -1,
      -2,
      -5,
      2,
      -2
    ],
    "io_out": [
      -19,
      -10,
      -10,
      -7,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(mul_n(input,3),-4),29),9))"
  },
  {
    "input": "input : list = [-4, 1, 1, 1, 1, 2]\noutput : list = [68, 8, 8, 8, 8, -4]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_asc([-4, 1, 1, 1, 1, 2]),-3),-5),-1),-4)",
    "io_inp": [
      -4,
      1,
      1,
      1,
      1,
      2
    ],
    "io_out": [
      68,
      8,
      8,
      8,
      8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_asc(input),-3),-5),-1),-4)"
  },
  {
    "input": "input : list = [4, 4, -5, -5, 0, 1]\noutput : list = [-5, -5, -14, -14, -9, -8]",
    "output": "generated_output : list = add_n(take(reverse(reverse(sub_n([4, 4, -5, -5, 0, 1],5))),28),-4)",
    "io_inp": [
      4,
      4,
      -5,
      -5,
      0,
      1
    ],
    "io_out": [
      -5,
      -5,
      -14,
      -14,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(sub_n(input,5))),28),-4)"
  },
  {
    "input": "input : list = [5, 3, 0, 2, 1]\noutput : list = [11, 9, 8, 7, 6]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc([5, 3, 0, 2, 1]),-4)),-2)",
    "io_inp": [
      5,
      3,
      0,
      2,
      1
    ],
    "io_out": [
      11,
      9,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(input),-4)),-2)"
  },
  {
    "input": "input : list = [4, -2, -1, 0]\noutput : list = [-20, 0, 5, 10]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(mul_n([4, -2, -1, 0],-5)))),30)",
    "io_inp": [
      4,
      -2,
      -1,
      0
    ],
    "io_out": [
      -20,
      0,
      5,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(mul_n(input,-5)))),30)"
  },
  {
    "input": "input : list = [4, -5, -2, -5]\noutput : list = [-8, -8, -5, 1]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n([4, -5, -2, -5],3),11)))",
    "io_inp": [
      4,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(input,3),11)))"
  },
  {
    "input": "input : list = [5, -5, 3, -3, 5]\noutput : list = [0, -4, -16, -20, -20]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n([5, -5, 3, -3, 5],3)),-2),-4))",
    "io_inp": [
      5,
      -5,
      3,
      -3,
      5
    ],
    "io_out": [
      0,
      -4,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n(input,3)),-2),-4))"
  },
  {
    "input": "input : list = [4, -3, -2, 2, 2, 0]\noutput : list = [-12, 9, 6, -6, -6, 0]",
    "output": "generated_output : list = mul_n([4, -3, -2, 2, 2, 0],-3)",
    "io_inp": [
      4,
      -3,
      -2,
      2,
      2,
      0
    ],
    "io_out": [
      -12,
      9,
      6,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 2, -1, 3]\noutput : list = [0, 2, 5, 6]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(sub_n([-3, 2, -1, 3],-5),9))),2)",
    "io_inp": [
      -3,
      2,
      -1,
      3
    ],
    "io_out": [
      0,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(sub_n(input,-5),9))),2)"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [12, -12, -12]",
    "output": "generated_output : list = mul_n(sort_asc([3, -3, 3]),-4)",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [0, -7, -10]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(add_n([-2, -5, 5],-5)))))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      0,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [1, -1, 3, 2, -3]\noutput : list = [15, 9, 21, 18, 3]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n([1, -1, 3, 2, -3],5),1),-3),-1)",
    "io_inp": [
      1,
      -1,
      3,
      2,
      -3
    ],
    "io_out": [
      15,
      9,
      21,
      18,
      3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(input,5),1),-3),-1)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-8]",
    "output": "generated_output : list = take(mul_n(take(mul_n(add_n([1, -2],-3),4),1),1),12)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(add_n(input,-3),4),1),1),12)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [4, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(sort_asc([1, -3]),6),3)),1)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(sort_asc(input),6),3)),1)"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-50, 125, -50]",
    "output": "generated_output : list = mul_n(take(mul_n([2, -5, 2],-5),5),5)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -50,
      125,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-5),5),5)"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc([1, -3, -2]))",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 3, -2]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(sort_des([1, 3, -2])),4),-3))",
    "io_inp": [
      1,
      3,
      -2
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(sort_des(input)),4),-3))"
  },
  {
    "input": "input : list = [-3, 1, 0, -4, -3, -4]\noutput : list = [23, 19, 23, 7, 3, 19]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(add_n([-3, 1, 0, -4, -3, -4],-2),-4),-2)),-1)",
    "io_inp": [
      -3,
      1,
      0,
      -4,
      -3,
      -4
    ],
    "io_out": [
      23,
      19,
      23,
      7,
      3,
      19
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(add_n(input,-2),-4),-2)),-1)"
  },
  {
    "input": "input : list = [5, 3, 4, -5]\noutput : list = [8, 7, 6, -2]",
    "output": "generated_output : list = sort_des(sub_n([5, 3, 4, -5],-3))",
    "io_inp": [
      5,
      3,
      4,
      -5
    ],
    "io_out": [
      8,
      7,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-1, 2, 1, -5, -2]\noutput : list = [0, 3, 4, 6, 7]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_asc([-1, 2, 1, -5, -2]),-3),5),-3),1)",
    "io_inp": [
      -1,
      2,
      1,
      -5,
      -2
    ],
    "io_out": [
      0,
      3,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_asc(input),-3),5),-3),1)"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [-8, -2, 0]",
    "output": "generated_output : list = sub_n(sort_asc([-5, 1, 3]),3)",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [5, -2, -4, -1, 0]\noutput : list = [-6, -3, 6]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(drop([5, -2, -4, -1, 0],2)),-2),-3))",
    "io_inp": [
      5,
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      -6,
      -3,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(drop(input,2)),-2),-3))"
  },
  {
    "input": "input : list = [5, 4, -2, -2, -1]\noutput : list = [25, 20, -5, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(reverse([5, 4, -2, -2, -1]),19))),5)",
    "io_inp": [
      5,
      4,
      -2,
      -2,
      -1
    ],
    "io_out": [
      25,
      20,
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(reverse(input),19))),5)"
  },
  {
    "input": "input : list = [-3, 4, 4, 5]\noutput : list = [-3, 4, 4, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(sub_n([-3, 4, 4, 5],-1),12)),1))",
    "io_inp": [
      -3,
      4,
      4,
      5
    ],
    "io_out": [
      -3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(sub_n(input,-1),12)),1))"
  },
  {
    "input": "input : list = [-1, -3, 1, -3, -2]\noutput : list = [24, 72]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(take([-1, -3, 1, -3, -2],2)),-4),3),2)",
    "io_inp": [
      -1,
      -3,
      1,
      -3,
      -2
    ],
    "io_out": [
      24,
      72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(take(input,2)),-4),3),2)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-7]",
    "output": "generated_output : list = take(take(sub_n(drop(reverse([-5, 3]),1),2),19),13)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(drop(reverse(input),1),2),19),13)"
  },
  {
    "input": "input : list = [4, 0, 1, -1]\noutput : list = [20, 16, 12]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(drop([4, 0, 1, -1],1),19),4),-4))",
    "io_inp": [
      4,
      0,
      1,
      -1
    ],
    "io_out": [
      20,
      16,
      12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(drop(input,1),19),4),-4))"
  },
  {
    "input": "input : list = [0, 5, 1, 0]\noutput : list = [-9, -9, -8, -4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(add_n([0, 5, 1, 0],-2)),5),-2))",
    "io_inp": [
      0,
      5,
      1,
      0
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(add_n(input,-2)),5),-2))"
  },
  {
    "input": "input : list = [-3, 4, -4, -2]\noutput : list = [-2, -4, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, -4, -2])",
    "io_inp": [
      -3,
      4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(reverse([0, 0])),22),-3))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(reverse(input)),22),-3))"
  },
  {
    "input": "input : list = [1, 3, 1, 5, 1]\noutput : list = [5]",
    "output": "generated_output : list = take(take(drop(reverse(sub_n([1, 3, 1, 5, 1],-4)),4),31),39)",
    "io_inp": [
      1,
      3,
      1,
      5,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(drop(reverse(sub_n(input,-4)),4),31),39)"
  },
  {
    "input": "input : list = [-2, -2, -3, 4, -4, 4]\noutput : list = [13, 13, 7, 6, 5]",
    "output": "generated_output : list = add_n(add_n(sort_des(sub_n(drop([-2, -2, -3, 4, -4, 4],1),-5)),2),2)",
    "io_inp": [
      -2,
      -2,
      -3,
      4,
      -4,
      4
    ],
    "io_out": [
      13,
      13,
      7,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sub_n(drop(input,1),-5)),2),2)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [-8, -2, 10]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(mul_n([4, 2, -2],-3),6))),4)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      -8,
      -2,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(mul_n(input,-3),6))),4)"
  },
  {
    "input": "input : list = [3, -4, 5, -4, 4]\noutput : list = [50, -62, 82, -62, 66]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(reverse([3, -4, 5, -4, 4])),4),4),-2)",
    "io_inp": [
      3,
      -4,
      5,
      -4,
      4
    ],
    "io_out": [
      50,
      -62,
      82,
      -62,
      66
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(reverse(input)),4),4),-2)"
  },
  {
    "input": "input : list = [-5, -5, 1, 5, 0, -2]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take([-5, -5, 1, 5, 0, -2],1),-5),-1))",
    "io_inp": [
      -5,
      -5,
      1,
      5,
      0,
      -2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(input,1),-5),-1))"
  },
  {
    "input": "input : list = [0, 4, 1, 1, 3]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 4, 1, 1, 3],1)",
    "io_inp": [
      0,
      4,
      1,
      1,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 1, 5, -3, -4, -4]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take(take([2, 1, 5, -3, -4, -4],1),11))",
    "io_inp": [
      2,
      1,
      5,
      -3,
      -4,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,1),11))"
  },
  {
    "input": "input : list = [-1, -1, 4, -1, -1, 3]\noutput : list = [1, 1, 1, 1, 13, 16]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n([-1, -1, 4, -1, -1, 3],3),5),-1)))",
    "io_inp": [
      -1,
      -1,
      4,
      -1,
      -1,
      3
    ],
    "io_out": [
      1,
      1,
      1,
      1,
      13,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n(input,3),5),-1)))"
  },
  {
    "input": "input : list = [-4, -3, -1]\noutput : list = [-63, -43, -3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n([-4, -3, -1],4),-4),5),3)",
    "io_inp": [
      -4,
      -3,
      -1
    ],
    "io_out": [
      -63,
      -43,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(input,4),-4),5),3)"
  },
  {
    "input": "input : list = [1, 0, -5, -4, 0]\noutput : list = [-10, -9, -5, -5, -4]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(sort_asc([1, 0, -5, -4, 0]),11))),-5)",
    "io_inp": [
      1,
      0,
      -5,
      -4,
      0
    ],
    "io_out": [
      -10,
      -9,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(sort_asc(input),11))),-5)"
  },
  {
    "input": "input : list = [3, 5, 3, -3, 2]\noutput : list = [-3, 2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des([3, 5, 3, -3, 2]))",
    "io_inp": [
      3,
      5,
      3,
      -3,
      2
    ],
    "io_out": [
      -3,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -1, -1, -2]\noutput : list = [1, -3, -3, -4]",
    "output": "generated_output : list = sub_n([3, -1, -1, -2],2)",
    "io_inp": [
      3,
      -1,
      -1,
      -2
    ],
    "io_out": [
      1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, 3, 0]\noutput : list = [-4, -2, 1]",
    "output": "generated_output : list = reverse(take(add_n(reverse(sort_asc([-2, 3, 0])),-2),26))",
    "io_inp": [
      -2,
      3,
      0
    ],
    "io_out": [
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(sort_asc(input)),-2),26))"
  },
  {
    "input": "input : list = [3, -1, -4, -4]\noutput : list = [-1, -4, -4]",
    "output": "generated_output : list = drop([3, -1, -4, -4],1)",
    "io_inp": [
      3,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 2, 4, 1, -4, -3]\noutput : list = [0, 5, 10, 25, 30, 40]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(reverse([-2, 2, 4, 1, -4, -3]),4))),5)",
    "io_inp": [
      -2,
      2,
      4,
      1,
      -4,
      -3
    ],
    "io_out": [
      0,
      5,
      10,
      25,
      30,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(reverse(input),4))),5)"
  },
  {
    "input": "input : list = [2, 4, -2, -1, 5]\noutput : list = [-38, -54, -6, -14, -62]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n([2, 4, -2, -1, 5],-3),-4),2),-2)",
    "io_inp": [
      2,
      4,
      -2,
      -1,
      5
    ],
    "io_out": [
      -38,
      -54,
      -6,
      -14,
      -62
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(input,-3),-4),2),-2)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(sort_des([-1, 0]),-4)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, 5, -5, 4, 1]\noutput : list = [20, -4, -16, -20]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(drop([1, 5, -5, 4, 1],1))),-4),35)",
    "io_inp": [
      1,
      5,
      -5,
      4,
      1
    ],
    "io_out": [
      20,
      -4,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(drop(input,1))),-4),35)"
  },
  {
    "input": "input : list = [5, 0, -5, 2]\noutput : list = [4, 1, -1, -6]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(reverse([5, 0, -5, 2]),-3),3)),1)",
    "io_inp": [
      5,
      0,
      -5,
      2
    ],
    "io_out": [
      4,
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(reverse(input),-3),3)),1)"
  },
  {
    "input": "input : list = [-4, -5, 5, -5]\noutput : list = [0, 0, -9, -90]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(sort_asc([-4, -5, 5, -5]),-5),-3),3),8)",
    "io_inp": [
      -4,
      -5,
      5,
      -5
    ],
    "io_out": [
      0,
      0,
      -9,
      -90
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(sort_asc(input),-5),-3),3),8)"
  },
  {
    "input": "input : list = [-1, -2, 4, -2, -4]\noutput : list = [12, -3, -6, -6, -12]",
    "output": "generated_output : list = sort_des(mul_n([-1, -2, 4, -2, -4],3))",
    "io_inp": [
      -1,
      -2,
      4,
      -2,
      -4
    ],
    "io_out": [
      12,
      -3,
      -6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [1, -4, 3, -1, 1]\noutput : list = [0, -5, 2, -2, 0]",
    "output": "generated_output : list = add_n([1, -4, 3, -1, 1],-1)",
    "io_inp": [
      1,
      -4,
      3,
      -1,
      1
    ],
    "io_out": [
      0,
      -5,
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 4, 3, -1, 1, 2]\noutput : list = [1, 0, -1, -2, -4, -5]",
    "output": "generated_output : list = take(add_n(take(sort_des([-2, 4, 3, -1, 1, 2]),17),-3),39)",
    "io_inp": [
      -2,
      4,
      3,
      -1,
      1,
      2
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(input),17),-3),39)"
  },
  {
    "input": "input : list = [2, 2, 3, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(drop([2, 2, 3, 3],2),-4),1),34))",
    "io_inp": [
      2,
      2,
      3,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(drop(input,2),-4),1),34))"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = take(add_n(take(sort_asc(sort_des([-1, 4, 5])),11),-4),33)",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(sort_des(input)),11),-4),33)"
  },
  {
    "input": "input : list = [4, 5, 4, 3]\noutput : list = [5, 4, 4, 3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([4, 5, 4, 3])))",
    "io_inp": [
      4,
      5,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(take([2, -4, -2],1),16))))",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(take(input,1),16))))"
  },
  {
    "input": "input : list = [-4, 4, 5, 2, 2]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = add_n(add_n(take(take(drop([-4, 4, 5, 2, 2],2),11),7),-5),3)",
    "io_inp": [
      -4,
      4,
      5,
      2,
      2
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(drop(input,2),11),7),-5),3)"
  },
  {
    "input": "input : list = [3, 0, -5, -4]\noutput : list = [-9, -8, -4, -1]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(add_n([3, 0, -5, -4],-3),-1))),12)",
    "io_inp": [
      3,
      0,
      -5,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(add_n(input,-3),-1))),12)"
  },
  {
    "input": "input : list = [5, 1, 5, -4]\noutput : list = [0, 0, -8, -18]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(sub_n([5, 1, 5, -4],4),1),2),36))",
    "io_inp": [
      5,
      1,
      5,
      -4
    ],
    "io_out": [
      0,
      0,
      -8,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(sub_n(input,4),1),2),36))"
  },
  {
    "input": "input : list = [3, -1, 1, -1]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(reverse([3, -1, 1, -1])),2),-5))",
    "io_inp": [
      3,
      -1,
      1,
      -1
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(reverse(input)),2),-5))"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [24, 24, 12]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([2, 1, 2]),3),4)",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      24,
      24,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),3),4)"
  },
  {
    "input": "input : list = [-1, 0, 3]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = sort_des([-1, 0, 3])",
    "io_inp": [
      -1,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, 4, -2, 2, 3]\noutput : list = [45, 105, 120, 135, 150, 150]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_des([5, 5, 4, -2, 2, 3]),-5),3),5))",
    "io_inp": [
      5,
      5,
      4,
      -2,
      2,
      3
    ],
    "io_out": [
      45,
      105,
      120,
      135,
      150,
      150
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_des(input),-5),3),5))"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [4, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, 4])",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [1, 1, 7]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc([-1, 5, -1]),12),-1),-3)",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(input),12),-1),-3)"
  },
  {
    "input": "input : list = [-1, -2, 1, 1, -4]\noutput : list = [-4, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(drop([-1, -2, 1, 1, -4],2)))",
    "io_inp": [
      -1,
      -2,
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-12, -8]",
    "output": "generated_output : list = take(take(add_n(sort_asc(add_n([-1, -5],-4)),-3),12),21)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(add_n(input,-4)),-3),12),21)"
  },
  {
    "input": "input : list = [-2, 2, 1, -5]\noutput : list = [5, -10, -25, -30]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n([-2, 2, 1, -5],-4)),-5))",
    "io_inp": [
      -2,
      2,
      1,
      -5
    ],
    "io_out": [
      5,
      -10,
      -25,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(input,-4)),-5))"
  },
  {
    "input": "input : list = [3, 1, 2, -2, -3]\noutput : list = [7, 5, 6, 2, 1]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(sub_n([3, 1, 2, -2, -3],-3),-2),-1),-2),1)",
    "io_inp": [
      3,
      1,
      2,
      -2,
      -3
    ],
    "io_out": [
      7,
      5,
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(sub_n(input,-3),-2),-1),-2),1)"
  },
  {
    "input": "input : list = [4, 3, -1, -5]\noutput : list = [-28, -24, -8, 8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(sub_n([4, 3, -1, -5],-3),2))),-2)",
    "io_inp": [
      4,
      3,
      -1,
      -5
    ],
    "io_out": [
      -28,
      -24,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(sub_n(input,-3),2))),-2)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc([5, -1, 1]))),-3)",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(input))),-3)"
  },
  {
    "input": "input : list = [3, -4, 2, -4, 1]\noutput : list = [2, 1, 0, -5, -5]",
    "output": "generated_output : list = sort_des(add_n([3, -4, 2, -4, 1],-1))",
    "io_inp": [
      3,
      -4,
      2,
      -4,
      1
    ],
    "io_out": [
      2,
      1,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [4, 3, -5, 3]\noutput : list = [-4]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(take([4, 3, -5, 3],1),3)),-5),40)",
    "io_inp": [
      4,
      3,
      -5,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(take(input,1),3)),-5),40)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(reverse([-3, -1]),12)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),12)"
  },
  {
    "input": "input : list = [5, 1, -1, -3]\noutput : list = [6, 2, 0, -2]",
    "output": "generated_output : list = sub_n([5, 1, -1, -3],-1)",
    "io_inp": [
      5,
      1,
      -1,
      -3
    ],
    "io_out": [
      6,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 3, -4, -4]\noutput : list = [10, 10, 80, 30]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(add_n([-2, 3, -4, -4],5),-5),24),-2))",
    "io_inp": [
      -2,
      3,
      -4,
      -4
    ],
    "io_out": [
      10,
      10,
      80,
      30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(add_n(input,5),-5),24),-2))"
  },
  {
    "input": "input : list = [-3, -1, -3, -1]\noutput : list = [-6, -4, -6, -4]",
    "output": "generated_output : list = add_n([-3, -1, -3, -1],-3)",
    "io_inp": [
      -3,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -2, -3]\noutput : list = [14, 10, 14]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse([-3, -2, -3]),-4)),2)",
    "io_inp": [
      -3,
      -2,
      -3
    ],
    "io_out": [
      14,
      10,
      14
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(input),-4)),2)"
  },
  {
    "input": "input : list = [-2, -3, -3, -1]\noutput : list = [-2, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(sort_asc([-2, -3, -3, -1]),-5)),-4))",
    "io_inp": [
      -2,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(sort_asc(input),-5)),-4))"
  },
  {
    "input": "input : list = [-1, 4, -1, 0, 2, 3]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = drop([-1, 4, -1, 0, 2, 3],3)",
    "io_inp": [
      -1,
      4,
      -1,
      0,
      2,
      3
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 5, -5, 0, 2, 2]\noutput : list = [-10, -10, 0, 25, -25, -25]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(mul_n([5, 5, -5, 0, 2, 2],-1)),13),-5),-1)",
    "io_inp": [
      5,
      5,
      -5,
      0,
      2,
      2
    ],
    "io_out": [
      -10,
      -10,
      0,
      25,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(mul_n(input,-1)),13),-5),-1)"
  },
  {
    "input": "input : list = [0, 1, 4, -2]\noutput : list = [4]",
    "output": "generated_output : list = drop(take(mul_n(reverse(add_n([0, 1, 4, -2],2)),2),19),3)",
    "io_inp": [
      0,
      1,
      4,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = drop(take(mul_n(reverse(add_n(input,2)),2),19),3)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = sub_n([5, 3],2)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, 5, 5, -4, -1, 2]\noutput : list = [9, 9, 6, 3, 1, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(reverse([-3, 5, 5, -4, -1, 2])))),-4)",
    "io_inp": [
      -3,
      5,
      5,
      -4,
      -1,
      2
    ],
    "io_out": [
      9,
      9,
      6,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [-3, 5, 0, -2, 4]\noutput : list = [-2, 3, 23, 33, 38]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(sort_asc([-3, 5, 0, -2, 4]),-5),-5)),-2)",
    "io_inp": [
      -3,
      5,
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      3,
      23,
      33,
      38
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(sort_asc(input),-5),-5)),-2)"
  },
  {
    "input": "input : list = [-2, 4, -1, -4, -5]\noutput : list = [4, -1, -2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-2, 4, -1, -4, -5]))",
    "io_inp": [
      -2,
      4,
      -1,
      -4,
      -5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -5, 0, 3, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc(sort_des(drop(sort_des(add_n([-1, -5, 0, 3, -5],3)),3)))",
    "io_inp": [
      -1,
      -5,
      0,
      3,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(sort_des(add_n(input,3)),3)))"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(mul_n(take([-3, -1, -2],1),4),1)",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),4),1)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [9, 6, 2]",
    "output": "generated_output : list = add_n([4, 1, -3],5)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      9,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, -4, 0, 3]\noutput : list = [1, 1, 5, 8]",
    "output": "generated_output : list = take(add_n(sort_asc([-4, -4, 0, 3]),5),21)",
    "io_inp": [
      -4,
      -4,
      0,
      3
    ],
    "io_out": [
      1,
      1,
      5,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),5),21)"
  },
  {
    "input": "input : list = [3, 2, 4, 0, 1, 2]\noutput : list = [-2, 0, -4, -3, -2]",
    "output": "generated_output : list = take(sub_n(drop([3, 2, 4, 0, 1, 2],1),4),15)",
    "io_inp": [
      3,
      2,
      4,
      0,
      1,
      2
    ],
    "io_out": [
      -2,
      0,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,1),4),15)"
  },
  {
    "input": "input : list = [2, -3, 1, -3, -5]\noutput : list = [15, 9, 9, -3, -6]",
    "output": "generated_output : list = mul_n(sort_asc([2, -3, 1, -3, -5]),-3)",
    "io_inp": [
      2,
      -3,
      1,
      -3,
      -5
    ],
    "io_out": [
      15,
      9,
      9,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [1, 0, 3, -5, 2]\noutput : list = [-5, 0, -15, 25, -10]",
    "output": "generated_output : list = mul_n([1, 0, 3, -5, 2],-5)",
    "io_inp": [
      1,
      0,
      3,
      -5,
      2
    ],
    "io_out": [
      -5,
      0,
      -15,
      25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, 4, -4, -3, -1, -3]\noutput : list = [-5, -5, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(take([4, 4, -4, -3, -1, -3],4),-1))),-1)",
    "io_inp": [
      4,
      4,
      -4,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -5,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(take(input,4),-1))),-1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(mul_n([0, 4],2),4))),17)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(mul_n(input,2),4))),17)"
  },
  {
    "input": "input : list = [4, 1, 2, 4]\noutput : list = [6, 6, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(reverse([4, 1, 2, 4])))),-2)",
    "io_inp": [
      4,
      1,
      2,
      4
    ],
    "io_out": [
      6,
      6,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [5, -3, -4]\noutput : list = [-60, 36]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(drop(sort_asc([5, -3, -4]),1),3)),-4)",
    "io_inp": [
      5,
      -3,
      -4
    ],
    "io_out": [
      -60,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(drop(sort_asc(input),1),3)),-4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(add_n([-3, -2],-1),-3))),-3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(add_n(input,-1),-3))),-3)"
  },
  {
    "input": "input : list = [1, -5, -4, -2, -3]\noutput : list = [-7, -6, -5, -4, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sub_n([1, -5, -4, -2, -3],2)))))",
    "io_inp": [
      1,
      -5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [-5, 5, -4, 2, 3, 5]\noutput : list = [11, 5, 2, -16, 11, -19]",
    "output": "generated_output : list = reverse(add_n(mul_n([-5, 5, -4, 2, 3, 5],3),-4))",
    "io_inp": [
      -5,
      5,
      -4,
      2,
      3,
      5
    ],
    "io_out": [
      11,
      5,
      2,
      -16,
      11,
      -19
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,3),-4))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n(sort_asc([-2, 4]),-1)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [3, -2, -3, 5, 0, 0]\noutput : list = [32, 32, 52, 20, 24, 44]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(sub_n([3, -2, -3, 5, 0, 0],-3),5)),4),25)",
    "io_inp": [
      3,
      -2,
      -3,
      5,
      0,
      0
    ],
    "io_out": [
      32,
      32,
      52,
      20,
      24,
      44
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(sub_n(input,-3),5)),4),25)"
  },
  {
    "input": "input : list = [-3, 3, -3, -5, 3]\noutput : list = [8, 8, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(drop([-3, 3, -3, -5, 3],1),5),17)))",
    "io_inp": [
      -3,
      3,
      -3,
      -5,
      3
    ],
    "io_out": [
      8,
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(drop(input,1),5),17)))"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [2, 4, 4]",
    "output": "generated_output : list = reverse(mul_n(take(take(sub_n([-1, -1, -2],-3),5),16),2))",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sub_n(input,-3),5),16),2))"
  },
  {
    "input": "input : list = [0, -1, 1, 4, 2]\noutput : list = [-1, 1, 4, 2]",
    "output": "generated_output : list = drop([0, -1, 1, 4, 2],1)",
    "io_inp": [
      0,
      -1,
      1,
      4,
      2
    ],
    "io_out": [
      -1,
      1,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(drop([-1, -4, 4],1))",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-23, 27]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(reverse([5, -5])),-5),1),-3)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -23,
      27
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(reverse(input)),-5),1),-3)"
  },
  {
    "input": "input : list = [2, -1, -4, -2]\noutput : list = [-24, -12, -6, 12]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(sort_des([2, -1, -4, -2]))),3),2)",
    "io_inp": [
      2,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -24,
      -12,
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(sort_des(input))),3),2)"
  },
  {
    "input": "input : list = [0, 2, 3, -1, -4, -3]\noutput : list = [-1, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(take([0, 2, 3, -1, -4, -3],4)))",
    "io_inp": [
      0,
      2,
      3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,4)))"
  },
  {
    "input": "input : list = [-1, -1, 1, -5]\noutput : list = [-7, -3, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([-1, -1, 1, -5],-2)))",
    "io_inp": [
      -1,
      -1,
      1,
      -5
    ],
    "io_out": [
      -7,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,-2)))"
  },
  {
    "input": "input : list = [-1, 5, 4, -2, 5]\noutput : list = [5, -2, 4, 5, -1]",
    "output": "generated_output : list = reverse([-1, 5, 4, -2, 5])",
    "io_inp": [
      -1,
      5,
      4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      4,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = drop([3, 0, 3],1)",
    "io_inp": [
      3,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -2, 5, 1, 1]\noutput : list = [-7, -4, -4, -2, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des([3, -2, 5, 1, 1]),-3)),-3),-5)",
    "io_inp": [
      3,
      -2,
      5,
      1,
      1
    ],
    "io_out": [
      -7,
      -4,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des(input),-3)),-3),-5)"
  },
  {
    "input": "input : list = [-4, -3, -4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = drop([-4, -3, -4, -1],2)",
    "io_inp": [
      -4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 4, -3, 0, 4, -5]\noutput : list = [-5, -3, 0, 0, 4, 4]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(reverse([0, 4, -3, 0, 4, -5]))),34))",
    "io_inp": [
      0,
      4,
      -3,
      0,
      4,
      -5
    ],
    "io_out": [
      -5,
      -3,
      0,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(reverse(input))),34))"
  },
  {
    "input": "input : list = [2, 4, -5]\noutput : list = [2, 4, -5]",
    "output": "generated_output : list = reverse(reverse([2, 4, -5]))",
    "io_inp": [
      2,
      4,
      -5
    ],
    "io_out": [
      2,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-11, -3]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(add_n([-5, 3],-4)),1)),-3)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -11,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(add_n(input,-4)),1)),-3)"
  },
  {
    "input": "input : list = [1, -4, -5, -3, 5, -2]\noutput : list = [2, -2, -5, -6, -7, -8]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n([1, -4, -5, -3, 5, -2],3))),9)",
    "io_inp": [
      1,
      -4,
      -5,
      -3,
      5,
      -2
    ],
    "io_out": [
      2,
      -2,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(input,3))),9)"
  },
  {
    "input": "input : list = [2, -2, 4, 4, 5, -5]\noutput : list = [8, -8, 16, 16, 20, -20]",
    "output": "generated_output : list = mul_n([2, -2, 4, 4, 5, -5],4)",
    "io_inp": [
      2,
      -2,
      4,
      4,
      5,
      -5
    ],
    "io_out": [
      8,
      -8,
      16,
      16,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, -5, 5, -3, -5]\noutput : list = [3, -6, 4, -4, -6]",
    "output": "generated_output : list = add_n([4, -5, 5, -3, -5],-1)",
    "io_inp": [
      4,
      -5,
      5,
      -3,
      -5
    ],
    "io_out": [
      3,
      -6,
      4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 4, 5, 0]\noutput : list = [-2, 4, 5, 0]",
    "output": "generated_output : list = take(reverse(reverse([-2, 4, 5, 0])),24)",
    "io_inp": [
      -2,
      4,
      5,
      0
    ],
    "io_out": [
      -2,
      4,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),24)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(drop([4, 0, 1],1),4)",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),4)"
  },
  {
    "input": "input : list = [5, 0, -5, 5, -2]\noutput : list = [-25, -13, -5, 15, 15]",
    "output": "generated_output : list = take(sort_asc(sub_n(mul_n(sort_des([5, 0, -5, 5, -2]),4),5)),18)",
    "io_inp": [
      5,
      0,
      -5,
      5,
      -2
    ],
    "io_out": [
      -25,
      -13,
      -5,
      15,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(mul_n(sort_des(input),4),5)),18)"
  },
  {
    "input": "input : list = [2, -1, 4, 3]\noutput : list = [31, 23, 15, -9]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(sort_asc([2, -1, 4, 3])),-4),-2),1)",
    "io_inp": [
      2,
      -1,
      4,
      3
    ],
    "io_out": [
      31,
      23,
      15,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(sort_asc(input)),-4),-2),1)"
  },
  {
    "input": "input : list = [-1, -1, 0, -4, -2]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(drop(add_n(reverse([-1, -1, 0, -4, -2]),-5),4))",
    "io_inp": [
      -1,
      -1,
      0,
      -4,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(reverse(input),-5),4))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(add_n([-3, 1],-4),-5)),1))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(add_n(input,-4),-5)),1))"
  },
  {
    "input": "input : list = [5, -2, -1, -3, 3, -1]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take([5, -2, -1, -3, 3, -1],1))",
    "io_inp": [
      5,
      -2,
      -1,
      -3,
      3,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, 2, -5, 2, 4]\noutput : list = [-4, -2, 3, 3, 5]",
    "output": "generated_output : list = sub_n(reverse(sort_des([-3, 2, -5, 2, 4])),-1)",
    "io_inp": [
      -3,
      2,
      -5,
      2,
      4
    ],
    "io_out": [
      -4,
      -2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [4, 4, -3, 3, -1, 0]\noutput : list = [-12, -12, 9, -9, 3, 0]",
    "output": "generated_output : list = mul_n([4, 4, -3, 3, -1, 0],-3)",
    "io_inp": [
      4,
      4,
      -3,
      3,
      -1,
      0
    ],
    "io_out": [
      -12,
      -12,
      9,
      -9,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [1, 4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(drop([1, 4, 4],1),1)",
    "io_inp": [
      1,
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-4, 8]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(sub_n([-2, -5],-4)),4)),34)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(sub_n(input,-4)),4)),34)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_asc([-3, -4, -4]),-3),1)))",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sub_n(sort_asc(input),-3),1)))"
  },
  {
    "input": "input : list = [2, -3, 5, 1]\noutput : list = [6, 1, 9, 5]",
    "output": "generated_output : list = add_n([2, -3, 5, 1],4)",
    "io_inp": [
      2,
      -3,
      5,
      1
    ],
    "io_out": [
      6,
      1,
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, -5, -4, 4, -4, -1]\noutput : list = [-5, -4, -4, -1, 4]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(drop([3, -5, -4, 4, -4, -1],1)),10)))",
    "io_inp": [
      3,
      -5,
      -4,
      4,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(drop(input,1)),10)))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(reverse([2, 0]),8),1)))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(reverse(input),8),1)))"
  },
  {
    "input": "input : list = [4, 5, -3, -5, 3, 5]\noutput : list = [4, 2, -6, -4, 4, 3]",
    "output": "generated_output : list = add_n(reverse([4, 5, -3, -5, 3, 5]),-1)",
    "io_inp": [
      4,
      5,
      -3,
      -5,
      3,
      5
    ],
    "io_out": [
      4,
      2,
      -6,
      -4,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [1, -3, 5, 3, 5, 4]\noutput : list = [-4, 4, -12, -8, -12, -10]",
    "output": "generated_output : list = add_n(reverse(reverse(take(mul_n([1, -3, 5, 3, 5, 4],-2),16))),-2)",
    "io_inp": [
      1,
      -3,
      5,
      3,
      5,
      4
    ],
    "io_out": [
      -4,
      4,
      -12,
      -8,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(mul_n(input,-2),16))),-2)"
  },
  {
    "input": "input : list = [-5, -1, 5, 2, 2]\noutput : list = [7, 4, 4, 1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([-5, -1, 5, 2, 2],2)))",
    "io_inp": [
      -5,
      -1,
      5,
      2,
      2
    ],
    "io_out": [
      7,
      4,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,2)))"
  },
  {
    "input": "input : list = [0, -3, 5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = drop([0, -3, 5, -3],2)",
    "io_inp": [
      0,
      -3,
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -4, -1, -1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(take([0, -4, -1, -1],1),-3)),40))",
    "io_inp": [
      0,
      -4,
      -1,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(take(input,1),-3)),40))"
  },
  {
    "input": "input : list = [3, 2, 0, 1, 2]\noutput : list = [-3, -2, -1, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(sort_asc([3, 2, 0, 1, 2]),8)),-3))",
    "io_inp": [
      3,
      2,
      0,
      1,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(sort_asc(input),8)),-3))"
  },
  {
    "input": "input : list = [-5, -2, -5, 5, -4, 3]\noutput : list = [13, 9, -1, -5, -7, -7]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(mul_n([-5, -2, -5, 5, -4, 3],2)),3)),23)",
    "io_inp": [
      -5,
      -2,
      -5,
      5,
      -4,
      3
    ],
    "io_out": [
      13,
      9,
      -1,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(mul_n(input,2)),3)),23)"
  },
  {
    "input": "input : list = [-5, 2, -5, 2]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(sort_asc([-5, 2, -5, 2]),1),27)),-2)",
    "io_inp": [
      -5,
      2,
      -5,
      2
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(sort_asc(input),1),27)),-2)"
  },
  {
    "input": "input : list = [5, -3, 1, -4, 0, -4]\noutput : list = [0, -20, -25, -40, -45, -45]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n([5, -3, 1, -4, 0, -4],-5)),5),1)",
    "io_inp": [
      5,
      -3,
      1,
      -4,
      0,
      -4
    ],
    "io_out": [
      0,
      -20,
      -25,
      -40,
      -45,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(input,-5)),5),1)"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [4, -12, -10]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(reverse([4, 5, -3]),4),-2),2),-4)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      4,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(reverse(input),4),-2),2),-4)"
  },
  {
    "input": "input : list = [3, 4, 5, 2, 1]\noutput : list = [1, 2, 3, 4, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc([3, 4, 5, 2, 1]))))",
    "io_inp": [
      3,
      4,
      5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [-5, 4, 4]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(drop([-5, 4, 4],1),-1),1)),44)",
    "io_inp": [
      -5,
      4,
      4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(drop(input,1),-1),1)),44)"
  },
  {
    "input": "input : list = [2, -4, 2, 2, -2, -2]\noutput : list = [7, 7, 7, 3, 3, 1]",
    "output": "generated_output : list = sort_des(take(take(sub_n(reverse([2, -4, 2, 2, -2, -2]),-5),35),25))",
    "io_inp": [
      2,
      -4,
      2,
      2,
      -2,
      -2
    ],
    "io_out": [
      7,
      7,
      7,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(reverse(input),-5),35),25))"
  },
  {
    "input": "input : list = [2, 4, -4, 5, -3]\noutput : list = [75, 675, 0, 600, 450]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(reverse([2, 4, -4, 5, -3]),-4),-5),-3),5)",
    "io_inp": [
      2,
      4,
      -4,
      5,
      -3
    ],
    "io_out": [
      75,
      675,
      0,
      600,
      450
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(reverse(input),-4),-5),-3),5)"
  },
  {
    "input": "input : list = [1, 0, -2, 0, 0, -4]\noutput : list = [-4, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(take([1, 0, -2, 0, 0, -4],3)))),5)",
    "io_inp": [
      1,
      0,
      -2,
      0,
      0,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(take(input,3)))),5)"
  },
  {
    "input": "input : list = [-4, -2, -3, -1, -1, -3]\noutput : list = [-6, -6, 0, 6, 6, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(mul_n([-4, -2, -3, -1, -1, -3],-2),-4))),3)",
    "io_inp": [
      -4,
      -2,
      -3,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -6,
      0,
      6,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(mul_n(input,-2),-4))),3)"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(drop([4, -3, -2],1))),5))",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(drop(input,1))),5))"
  },
  {
    "input": "input : list = [-5, 3, 4, -2]\noutput : list = [-2, -1, 4, 7]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(reverse([-5, 3, 4, -2]),2)),-1),4)",
    "io_inp": [
      -5,
      3,
      4,
      -2
    ],
    "io_out": [
      -2,
      -1,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(reverse(input),2)),-1),4)"
  },
  {
    "input": "input : list = [2, -1, 0, 0, -5]\noutput : list = [60, 40, 40, 30, -10]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_des(add_n([2, -1, 0, 0, -5],4)),-2),-5),42)",
    "io_inp": [
      2,
      -1,
      0,
      0,
      -5
    ],
    "io_out": [
      60,
      40,
      40,
      30,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_des(add_n(input,4)),-2),-5),42)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n([-3, 0],1)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-4, 5, -4, 4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = take(take(drop([-4, 5, -4, 4, -5],3),2),24)",
    "io_inp": [
      -4,
      5,
      -4,
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(drop(input,3),2),24)"
  },
  {
    "input": "input : list = [3, 1, 2, 4, 1, 3]\noutput : list = [-34, -14, -44, -24]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(mul_n([3, 1, 2, 4, 1, 3],5),-2)),4),-2)",
    "io_inp": [
      3,
      1,
      2,
      4,
      1,
      3
    ],
    "io_out": [
      -34,
      -14,
      -44,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(mul_n(input,5),-2)),4),-2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [20, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(reverse([-4, 1])))),-5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [-2, 4, 5, -3]\noutput : list = [-35, -30, 0, 5]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-2, 4, 5, -3],-2)),-5)",
    "io_inp": [
      -2,
      4,
      5,
      -3
    ],
    "io_out": [
      -35,
      -30,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-2)),-5)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-10, -8]",
    "output": "generated_output : list = reverse(mul_n([4, 5],-2))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [2, 1]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(sub_n([1, 0],-2)),5),-5),1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(sub_n(input,-2)),5),-5),1)"
  },
  {
    "input": "input : list = [0, 4, -2, -5, -1]\noutput : list = [4, -2, -5, -1]",
    "output": "generated_output : list = drop([0, 4, -2, -5, -1],1)",
    "io_inp": [
      0,
      4,
      -2,
      -5,
      -1
    ],
    "io_out": [
      4,
      -2,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -4, -4, -2, -4]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(add_n(sub_n(take([1, -4, -4, -2, -4],1),4),5),-5)",
    "io_inp": [
      1,
      -4,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(take(input,1),4),5),-5)"
  },
  {
    "input": "input : list = [3, 0, 1, 2, 4]\noutput : list = [-2, 0, 1, 2, -1]",
    "output": "generated_output : list = sub_n(reverse(mul_n([3, 0, 1, 2, 4],-1)),-2)",
    "io_inp": [
      3,
      0,
      1,
      2,
      4
    ],
    "io_out": [
      -2,
      0,
      1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,-1)),-2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-60, -100]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n([-3, -5],4)),5)))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -60,
      -100
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(mul_n(input,4)),5)))"
  },
  {
    "input": "input : list = [0, 2, -3, -4]\noutput : list = [2, 0, -3, -4]",
    "output": "generated_output : list = sort_des([0, 2, -3, -4])",
    "io_inp": [
      0,
      2,
      -3,
      -4
    ],
    "io_out": [
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2, -5, 5]\noutput : list = [12, 9, 2, 12]",
    "output": "generated_output : list = sub_n(take(take(sub_n(sub_n([5, 2, -5, 5],1),-5),15),38),-3)",
    "io_inp": [
      5,
      2,
      -5,
      5
    ],
    "io_out": [
      12,
      9,
      2,
      12
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(sub_n(input,1),-5),15),38),-3)"
  },
  {
    "input": "input : list = [-4, -3, 3, -2]\noutput : list = [12, -8, -12, -16]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(mul_n([-4, -3, 3, -2],4)),12),1))",
    "io_inp": [
      -4,
      -3,
      3,
      -2
    ],
    "io_out": [
      12,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(mul_n(input,4)),12),1))"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [-1, 0, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(sub_n([5, 3, 2],5),-3)),14),5)",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(sub_n(input,5),-3)),14),5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(reverse([-1, -5]),-1))))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-13, -18]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n([1, -4],-5),3),5),1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -13,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(input,-5),3),5),1)"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take([-2, -5, 0],1)),-1),3)",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(input,1)),-1),3)"
  },
  {
    "input": "input : list = [-1, 1, -1, 4, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(take(sort_asc([-1, 1, -1, 4, -1]),2))",
    "io_inp": [
      -1,
      1,
      -1,
      4,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),2))"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(take([5, 1, 4],1),1)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),1)"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [-6, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(add_n([-4, 0, 0],1),17),2)))",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      -6,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(add_n(input,1),17),2)))"
  },
  {
    "input": "input : list = [-1, 1, 1, 3, 3]\noutput : list = [-9, -9, -3, -3, 3]",
    "output": "generated_output : list = reverse(mul_n([-1, 1, 1, 3, 3],-3))",
    "io_inp": [
      -1,
      1,
      1,
      3,
      3
    ],
    "io_out": [
      -9,
      -9,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [1, 3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(drop([1, 3, -2],1))",
    "io_inp": [
      1,
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 4, -5, -1]\noutput : list = [-30, -18, -18, -3]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(reverse([-1, 4, -5, -1]),5)),-1),-3)",
    "io_inp": [
      -1,
      4,
      -5,
      -1
    ],
    "io_out": [
      -30,
      -18,
      -18,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(reverse(input),5)),-1),-3)"
  },
  {
    "input": "input : list = [3, 3, -3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 3, -3],1)",
    "io_inp": [
      3,
      3,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 5, 4, -2]\noutput : list = [-12, -6, 12, 15]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_asc([-4, 5, 4, -2])),1)),3)",
    "io_inp": [
      -4,
      5,
      4,
      -2
    ],
    "io_out": [
      -12,
      -6,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_asc(input)),1)),3)"
  },
  {
    "input": "input : list = [-1, 3, -5, -1]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(take([-1, 3, -5, -1],2)),1),11),45)",
    "io_inp": [
      -1,
      3,
      -5,
      -1
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(take(input,2)),1),11),45)"
  },
  {
    "input": "input : list = [-3, -1, 0, -1, 1]\noutput : list = [-40, -35, -45]",
    "output": "generated_output : list = mul_n(add_n(add_n(drop(add_n([-3, -1, 0, -1, 1],2),2),3),3),-5)",
    "io_inp": [
      -3,
      -1,
      0,
      -1,
      1
    ],
    "io_out": [
      -40,
      -35,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(drop(add_n(input,2),2),3),3),-5)"
  },
  {
    "input": "input : list = [2, -1, -1, 0, 4]\noutput : list = [-18, -8, 2, 7, 7]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse([2, -1, -1, 0, 4]))),-5),2)",
    "io_inp": [
      2,
      -1,
      -1,
      0,
      4
    ],
    "io_out": [
      -18,
      -8,
      2,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse(input))),-5),2)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-10, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse([-2, -4])))),5)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse(input)))),5)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [5, 5, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(add_n([-5, 0, 0],2)),-3)))",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(add_n(input,2)),-3)))"
  },
  {
    "input": "input : list = [0, 2, 2, 0, -2, 2]\noutput : list = [2, 2, 2, 0, 0, -2]",
    "output": "generated_output : list = sort_des([0, 2, 2, 0, -2, 2])",
    "io_inp": [
      0,
      2,
      2,
      0,
      -2,
      2
    ],
    "io_out": [
      2,
      2,
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [2, -5]",
    "output": "generated_output : list = reverse([-5, 2])",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, 4, 1, 4, 4]\noutput : list = [3, 3, 0, 3, -4]",
    "output": "generated_output : list = reverse(take(sub_n(add_n(drop([4, -3, 4, 1, 4, 4],1),1),2),36))",
    "io_inp": [
      4,
      -3,
      4,
      1,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      0,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(add_n(drop(input,1),1),2),36))"
  },
  {
    "input": "input : list = [-4, -1, 4, 4, -4]\noutput : list = [24, 24, 6, -24, -24]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc([-4, -1, 4, 4, -4]),-3),20)),2)",
    "io_inp": [
      -4,
      -1,
      4,
      4,
      -4
    ],
    "io_out": [
      24,
      24,
      6,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc(input),-3),20)),2)"
  },
  {
    "input": "input : list = [-2, 1, -1]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = sort_asc([-2, 1, -1])",
    "io_inp": [
      -2,
      1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0, -1, -5, 5, 2]\noutput : list = [-1, 2, -8, -4, -3, 1]",
    "output": "generated_output : list = sub_n(reverse([4, 0, -1, -5, 5, 2]),3)",
    "io_inp": [
      4,
      0,
      -1,
      -5,
      5,
      2
    ],
    "io_out": [
      -1,
      2,
      -8,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [64, 56]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(sub_n([3, 4],-4),4),2),20))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      64,
      56
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(sub_n(input,-4),4),2),20))"
  },
  {
    "input": "input : list = [2, -3, -5, -5, 5]\noutput : list = [10, 0, 0, 2, 7]",
    "output": "generated_output : list = reverse(add_n([2, -3, -5, -5, 5],5))",
    "io_inp": [
      2,
      -3,
      -5,
      -5,
      5
    ],
    "io_out": [
      10,
      0,
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [5, 5, 6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(add_n([3, 3, 4],3),4),-1),-2))",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(add_n(input,3),4),-1),-2))"
  },
  {
    "input": "input : list = [3, -1, 0, -3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = drop([3, -1, 0, -3, 0],3)",
    "io_inp": [
      3,
      -1,
      0,
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, -1, -3, -3, 2]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take([-3, -1, -3, -3, 2],3)))))",
    "io_inp": [
      -3,
      -1,
      -3,
      -3,
      2
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(take(input,3)))))"
  },
  {
    "input": "input : list = [5, -4, -3, 1, 0, -5]\noutput : list = [-10, 35]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(take([5, -4, -3, 1, 0, -5],2),1)),5),5)",
    "io_inp": [
      5,
      -4,
      -3,
      1,
      0,
      -5
    ],
    "io_out": [
      -10,
      35
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(take(input,2),1)),5),5)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-4, 4]",
    "output": "generated_output : list = mul_n(reverse(take(take(drop([1, -1, 1],1),3),23)),-4)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(drop(input,1),3),23)),-4)"
  },
  {
    "input": "input : list = [-3, 4, -2, 2, 4, 4]\noutput : list = [-12, 16, -8, 8, 16, 16]",
    "output": "generated_output : list = mul_n([-3, 4, -2, 2, 4, 4],4)",
    "io_inp": [
      -3,
      4,
      -2,
      2,
      4,
      4
    ],
    "io_out": [
      -12,
      16,
      -8,
      8,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, -3, 0, 3, 4]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = reverse(drop([-3, -3, 0, 3, 4],2))",
    "io_inp": [
      -3,
      -3,
      0,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 5, 5, -5, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 5, 5, -5, -3],1)",
    "io_inp": [
      -2,
      5,
      5,
      -5,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -3, -1, -5, -4]\noutput : list = [-9, -10, -6, -8, -5]",
    "output": "generated_output : list = reverse(sub_n([0, -3, -1, -5, -4],5))",
    "io_inp": [
      0,
      -3,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -9,
      -10,
      -6,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,5))"
  },
  {
    "input": "input : list = [-1, 3, -4, 1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take(take(reverse([-1, 3, -4, 1, -1]),2),27)",
    "io_inp": [
      -1,
      3,
      -4,
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),2),27)"
  },
  {
    "input": "input : list = [4, -5, -4, 1, -2, 5]\noutput : list = [-25, -20, -10, 5, 20, 25]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n([4, -5, -4, 1, -2, 5],5))),8)",
    "io_inp": [
      4,
      -5,
      -4,
      1,
      -2,
      5
    ],
    "io_out": [
      -25,
      -20,
      -10,
      5,
      20,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(input,5))),8)"
  },
  {
    "input": "input : list = [-1, 0, 1, -2, 5]\noutput : list = [1]",
    "output": "generated_output : list = take(take(add_n(sub_n(take([-1, 0, 1, -2, 5],1),-4),-2),28),45)",
    "io_inp": [
      -1,
      0,
      1,
      -2,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(take(input,1),-4),-2),28),45)"
  },
  {
    "input": "input : list = [3, 1, -1]\noutput : list = [6, 18]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(drop([3, 1, -1],1),2),-2),23),3)",
    "io_inp": [
      3,
      1,
      -1
    ],
    "io_out": [
      6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(drop(input,1),2),-2),23),3)"
  },
  {
    "input": "input : list = [-5, 3, 0, 4, -4]\noutput : list = [4, 3, 0, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 0, 4, -4])",
    "io_inp": [
      -5,
      3,
      0,
      4,
      -4
    ],
    "io_out": [
      4,
      3,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, -1, 3]\noutput : list = [-2, -6, -4, -10]",
    "output": "generated_output : list = take(add_n(reverse([-5, 1, -1, 3]),-5),6)",
    "io_inp": [
      -5,
      1,
      -1,
      3
    ],
    "io_out": [
      -2,
      -6,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),-5),6)"
  },
  {
    "input": "input : list = [1, 5, -1, 5]\noutput : list = [0, 4, -2, 4]",
    "output": "generated_output : list = add_n([1, 5, -1, 5],-1)",
    "io_inp": [
      1,
      5,
      -1,
      5
    ],
    "io_out": [
      0,
      4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -1, 0, 0, 3, 1]\noutput : list = [-6, -5, -5, -4, -4, -2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_des([1, -1, 0, 0, 3, 1]),4),4)),-3)",
    "io_inp": [
      1,
      -1,
      0,
      0,
      3,
      1
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_des(input),4),4)),-3)"
  },
  {
    "input": "input : list = [2, 5, -2, 0, 3, 4]\noutput : list = [5, 4, 3, 2, 0, -2]",
    "output": "generated_output : list = sort_des([2, 5, -2, 0, 3, 4])",
    "io_inp": [
      2,
      5,
      -2,
      0,
      3,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 4, -1, -1, -2]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc([-3, 4, -1, -1, -2]),-2),2)",
    "io_inp": [
      -3,
      4,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),-2),2)"
  },
  {
    "input": "input : list = [0, -2, 1, -3, -5, -5]\noutput : list = [-26, -20, -8, -2, 10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(add_n([0, -2, 1, -3, -5, -5],4),-3),-2),2))",
    "io_inp": [
      0,
      -2,
      1,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -26,
      -20,
      -8,
      -2,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(add_n(input,4),-3),-2),2))"
  },
  {
    "input": "input : list = [2, 2, -2, 1]\noutput : list = [1, 1, 0, -3]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_asc([2, 2, -2, 1]),-4),4),-1))",
    "io_inp": [
      2,
      2,
      -2,
      1
    ],
    "io_out": [
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_asc(input),-4),4),-1))"
  },
  {
    "input": "input : list = [2, -1, -4, 2, -1, -2]\noutput : list = [-2, -1, 2, -4, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, -4, 2, -1, -2])",
    "io_inp": [
      2,
      -1,
      -4,
      2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = reverse(reverse([-4, 2]))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, 2, 5, -5]\noutput : list = [-19, -59, -119, 81]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(mul_n([0, 2, 5, -5],4),-3),16),-5),-4)",
    "io_inp": [
      0,
      2,
      5,
      -5
    ],
    "io_out": [
      -19,
      -59,
      -119,
      81
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(mul_n(input,4),-3),16),-5),-4)"
  },
  {
    "input": "input : list = [-2, -5, -5, -4, -3]\noutput : list = [-3, -4, -5, -6]",
    "output": "generated_output : list = take(add_n(sort_des([-2, -5, -5, -4, -3]),-1),4)",
    "io_inp": [
      -2,
      -5,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),-1),4)"
  },
  {
    "input": "input : list = [5, 0, -2, 1, -3]\noutput : list = [-25, -9, -5, 3, 7]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(reverse([5, 0, -2, 1, -3]))),-4),-5)",
    "io_inp": [
      5,
      0,
      -2,
      1,
      -3
    ],
    "io_out": [
      -25,
      -9,
      -5,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(reverse(input))),-4),-5)"
  },
  {
    "input": "input : list = [-2, -5, -2, 3, 3]\noutput : list = [-5, -2, -2, 3, 3]",
    "output": "generated_output : list = sort_asc([-2, -5, -2, 3, 3])",
    "io_inp": [
      -2,
      -5,
      -2,
      3,
      3
    ],
    "io_out": [
      -5,
      -2,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [6, 5, 1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(add_n([-3, 1, 2],4)))))",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(add_n(input,4)))))"
  },
  {
    "input": "input : list = [3, 1, -3, 0]\noutput : list = [-12, -4, 12, 0]",
    "output": "generated_output : list = mul_n([3, 1, -3, 0],-4)",
    "io_inp": [
      3,
      1,
      -3,
      0
    ],
    "io_out": [
      -12,
      -4,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -1, -4, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take([-1, -1, -4, 0],1))",
    "io_inp": [
      -1,
      -1,
      -4,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [0, -3, 0, 5, 2, 0]\noutput : list = [2, -1, -3, -3, -3, -6]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(reverse([0, -3, 0, 5, 2, 0]),-4),1)),1)",
    "io_inp": [
      0,
      -3,
      0,
      5,
      2,
      0
    ],
    "io_out": [
      2,
      -1,
      -3,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(reverse(input),-4),1)),1)"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [12, 12, 3]",
    "output": "generated_output : list = sort_des(mul_n([4, 4, 1],3))",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      12,
      12,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [-4, 2, 3, 5, -2]\noutput : list = [4, -2, -3, -5, 2]",
    "output": "generated_output : list = mul_n([-4, 2, 3, 5, -2],-1)",
    "io_inp": [
      -4,
      2,
      3,
      5,
      -2
    ],
    "io_out": [
      4,
      -2,
      -3,
      -5,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-2, 10]",
    "output": "generated_output : list = mul_n([-1, 5],2)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, 3, 0, 5]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take([2, 3, 0, 5],1))",
    "io_inp": [
      2,
      3,
      0,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [5, 2, -5, -4]\noutput : list = [25, 10, -20, -25]",
    "output": "generated_output : list = take(take(take(mul_n(sort_des([5, 2, -5, -4]),5),23),14),20)",
    "io_inp": [
      5,
      2,
      -5,
      -4
    ],
    "io_out": [
      25,
      10,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(sort_des(input),5),23),14),20)"
  },
  {
    "input": "input : list = [5, 0, 4, -2]\noutput : list = [1, 21]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(take([5, 0, 4, -2],2),4),-1)))",
    "io_inp": [
      5,
      0,
      4,
      -2
    ],
    "io_out": [
      1,
      21
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(take(input,2),4),-1)))"
  },
  {
    "input": "input : list = [2, -3, 3, -4, 5, 4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -3, 3, -4, 5, 4],1)",
    "io_inp": [
      2,
      -3,
      3,
      -4,
      5,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -1, 4, 5]\noutput : list = [-3, -2, -1, 3]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(reverse([3, -1, 4, 5])),2)),-1)",
    "io_inp": [
      3,
      -1,
      4,
      5
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(reverse(input)),2)),-1)"
  },
  {
    "input": "input : list = [1, -4, 3, 3, 3, -2]\noutput : list = [-27, -21, -12, -6, -6, -6]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc([1, -4, 3, 3, 3, -2])),5),3))",
    "io_inp": [
      1,
      -4,
      3,
      3,
      3,
      -2
    ],
    "io_out": [
      -27,
      -21,
      -12,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc(input)),5),3))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [5, 3]",
    "output": "generated_output : list = add_n(sort_des([-1, 1]),4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-2, -1, 0, 0, 0]\noutput : list = [0, 0, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-2, -1, 0, 0, 0],1)))",
    "io_inp": [
      -2,
      -1,
      0,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, 0, 5, -3, -1, -2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(add_n(drop([-4, 0, 5, -3, -1, -2],4),5))))",
    "io_inp": [
      -4,
      0,
      5,
      -3,
      -1,
      -2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(add_n(drop(input,4),5))))"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [20, -12, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n([3, 5, -5],-4),-4)),-4)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      20,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(input,-4),-4)),-4)"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [9, 3, -15]",
    "output": "generated_output : list = mul_n([3, 1, -5],3)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      9,
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [-2, -1, -3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n([0, 1, -1],-2),4),-2),-2)",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(input,-2),4),-2),-2)"
  },
  {
    "input": "input : list = [1, -2, -4, 3, 3]\noutput : list = [-4, 3, 3]",
    "output": "generated_output : list = drop([1, -2, -4, 3, 3],2)",
    "io_inp": [
      1,
      -2,
      -4,
      3,
      3
    ],
    "io_out": [
      -4,
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, 4, -1]\noutput : list = [1, 6, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n([4, 4, -1],-2),13))))",
    "io_inp": [
      4,
      4,
      -1
    ],
    "io_out": [
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n(input,-2),13))))"
  },
  {
    "input": "input : list = [4, -5, -1]\noutput : list = [8, 3, -1]",
    "output": "generated_output : list = add_n(add_n(sort_des([4, -5, -1]),3),1)",
    "io_inp": [
      4,
      -5,
      -1
    ],
    "io_out": [
      8,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),3),1)"
  },
  {
    "input": "input : list = [-4, -3, -2, -1, -1, -3]\noutput : list = [-4, -3, -3, -2, -1, -1]",
    "output": "generated_output : list = take(sort_asc(reverse(take(reverse([-4, -3, -2, -1, -1, -3]),21))),20)",
    "io_inp": [
      -4,
      -3,
      -2,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(reverse(input),21))),20)"
  },
  {
    "input": "input : list = [-4, -5, -1]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n([-4, -5, -1],5)),-1),2),1)",
    "io_inp": [
      -4,
      -5,
      -1
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n(input,5)),-1),2),1)"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(take(sort_des(drop([1, 1, 2],1)),21))",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(drop(input,1)),21))"
  },
  {
    "input": "input : list = [-2, -2, 1, 1, 1, -3]\noutput : list = [6, 6, -3, -3, -3, 9]",
    "output": "generated_output : list = mul_n([-2, -2, 1, 1, 1, -3],-3)",
    "io_inp": [
      -2,
      -2,
      1,
      1,
      1,
      -3
    ],
    "io_out": [
      6,
      6,
      -3,
      -3,
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, -5, 4, 5, 4]\noutput : list = [3, 2]",
    "output": "generated_output : list = drop(add_n(add_n(take(drop([4, -5, 4, 5, 4],2),20),-5),3),1)",
    "io_inp": [
      4,
      -5,
      4,
      5,
      4
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(take(drop(input,2),20),-5),3),1)"
  },
  {
    "input": "input : list = [0, 5, -4, 0, 4, 3]\noutput : list = [25, 20, 15, 0, 0, -20]",
    "output": "generated_output : list = mul_n(take(sort_des([0, 5, -4, 0, 4, 3]),22),5)",
    "io_inp": [
      0,
      5,
      -4,
      0,
      4,
      3
    ],
    "io_out": [
      25,
      20,
      15,
      0,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),22),5)"
  },
  {
    "input": "input : list = [-5, -1, -2, -4]\noutput : list = [0, 2, 3, -1]",
    "output": "generated_output : list = reverse(take(add_n([-5, -1, -2, -4],4),23))",
    "io_inp": [
      -5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      0,
      2,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,4),23))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [10, -6]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc([-3, 5]),2)),9)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      10,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(input),2)),9)"
  },
  {
    "input": "input : list = [2, 5, -2, 4]\noutput : list = [5, 4, 2, -2]",
    "output": "generated_output : list = sort_des(reverse([2, 5, -2, 4]))",
    "io_inp": [
      2,
      5,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -3, 5, 4, -2]\noutput : list = [-3, -2, 0, 4, 5]",
    "output": "generated_output : list = take(sort_asc([0, -3, 5, 4, -2]),10)",
    "io_inp": [
      0,
      -3,
      5,
      4,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),10)"
  },
  {
    "input": "input : list = [3, 1, -2, -3, 0]\noutput : list = [0, 1, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sub_n([3, 1, -2, -3, 0],5)),-4),4))",
    "io_inp": [
      3,
      1,
      -2,
      -3,
      0
    ],
    "io_out": [
      0,
      1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sub_n(input,5)),-4),4))"
  },
  {
    "input": "input : list = [-3, 2, 1, -5, -1]\noutput : list = [-10, -30, 0, 5, -20]",
    "output": "generated_output : list = take(mul_n(take(add_n(reverse([-3, 2, 1, -5, -1]),-1),11),5),6)",
    "io_inp": [
      -3,
      2,
      1,
      -5,
      -1
    ],
    "io_out": [
      -10,
      -30,
      0,
      5,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(take(add_n(reverse(input),-1),11),5),6)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = drop([1, -1, 1],1)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 1, 1, 2, -3]\noutput : list = [6, 6, 6, 11, -14]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(mul_n([1, 1, 1, 2, -3],5))),-2),3)",
    "io_inp": [
      1,
      1,
      1,
      2,
      -3
    ],
    "io_out": [
      6,
      6,
      6,
      11,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(mul_n(input,5))),-2),3)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-25]",
    "output": "generated_output : list = sort_des(mul_n(drop(take(sort_asc([5, 0]),14),1),-5))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(take(sort_asc(input),14),1),-5))"
  },
  {
    "input": "input : list = [3, -2, -1, -5, 3]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(take([3, -2, -1, -5, 3],1),5),2),5))",
    "io_inp": [
      3,
      -2,
      -1,
      -5,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(take(input,1),5),2),5))"
  },
  {
    "input": "input : list = [4, -4, 5, 1, 4, -2]\noutput : list = [85, 70, 70, 25, -20, -50]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sub_n([4, -4, 5, 1, 4, -2],1),-3),5)),-5)",
    "io_inp": [
      4,
      -4,
      5,
      1,
      4,
      -2
    ],
    "io_out": [
      85,
      70,
      70,
      25,
      -20,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sub_n(input,1),-3),5)),-5)"
  },
  {
    "input": "input : list = [1, -1, 5, -1, -4, 2]\noutput : list = [-5, 1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(drop([1, -1, 5, -1, -4, 2],4),5)),4)",
    "io_inp": [
      1,
      -1,
      5,
      -1,
      -4,
      2
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(drop(input,4),5)),4)"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(take([-5, 3, -1],1),-1))),-1)",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(take(input,1),-1))),-1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc([-4, -4])",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 4, -3, 3]\noutput : list = [-10, -10, -8, 4]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(add_n([4, 4, -3, 3],1))),39),-2)",
    "io_inp": [
      4,
      4,
      -3,
      3
    ],
    "io_out": [
      -10,
      -10,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(add_n(input,1))),39),-2)"
  },
  {
    "input": "input : list = [0, 2, 0, 1, 0]\noutput : list = [14, 14, 14, 15, 16]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(add_n([0, 2, 0, 1, 0],5),4),-5)),19)",
    "io_inp": [
      0,
      2,
      0,
      1,
      0
    ],
    "io_out": [
      14,
      14,
      14,
      15,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(add_n(input,5),4),-5)),19)"
  },
  {
    "input": "input : list = [-2, 3, -1, 3, 5]\noutput : list = [20, 14, 14, 2]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(reverse([-2, 3, -1, 3, 5])),3),4),-5)",
    "io_inp": [
      -2,
      3,
      -1,
      3,
      5
    ],
    "io_out": [
      20,
      14,
      14,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(reverse(input)),3),4),-5)"
  },
  {
    "input": "input : list = [-5, -5, 3, -2]\noutput : list = [3, -2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -5, 3, -2])",
    "io_inp": [
      -5,
      -5,
      3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [6, 5]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n([-1, -2],-5))),-2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(input,-5))),-2)"
  },
  {
    "input": "input : list = [3, -3, -1, 5]\noutput : list = [-81, 81]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(take([3, -3, -1, 5],2),-3),-3),3))",
    "io_inp": [
      3,
      -3,
      -1,
      5
    ],
    "io_out": [
      -81,
      81
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(take(input,2),-3),-3),3))"
  },
  {
    "input": "input : list = [4, -5, 5, 4, 2]\noutput : list = [-14, 6, -12]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(take([4, -5, 5, 4, 2],3),2),14),-2))",
    "io_inp": [
      4,
      -5,
      5,
      4,
      2
    ],
    "io_out": [
      -14,
      6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(take(input,3),2),14),-2))"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(reverse([-4, 0, -3]),1),-3),1))",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(reverse(input),1),-3),1))"
  },
  {
    "input": "input : list = [1, -5, -5, -2, 1, 4]\noutput : list = [-12, -12, 0, 12, 12, 24]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc([1, -5, -5, -2, 1, 4]),3),4),-4)",
    "io_inp": [
      1,
      -5,
      -5,
      -2,
      1,
      4
    ],
    "io_out": [
      -12,
      -12,
      0,
      12,
      12,
      24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(input),3),4),-4)"
  },
  {
    "input": "input : list = [-2, -5, 4, 2, 1]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(take([-2, -5, 4, 2, 1],1),1)),20),3)",
    "io_inp": [
      -2,
      -5,
      4,
      2,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(take(input,1),1)),20),3)"
  },
  {
    "input": "input : list = [0, -1, 0, -2, -5, 1]\noutput : list = [0, 5, 5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(take([0, -1, 0, -2, -5, 1],3),-1)),5))",
    "io_inp": [
      0,
      -1,
      0,
      -2,
      -5,
      1
    ],
    "io_out": [
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(take(input,3),-1)),5))"
  },
  {
    "input": "input : list = [5, 4, -2, 2]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(sub_n(take(drop([5, 4, -2, 2],2),2),-3))",
    "io_inp": [
      5,
      4,
      -2,
      2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(drop(input,2),2),-3))"
  },
  {
    "input": "input : list = [-3, -3, -3]\noutput : list = [2, 2, 2]",
    "output": "generated_output : list = sub_n(sort_des(take(take(sort_asc([-3, -3, -3]),18),5)),-5)",
    "io_inp": [
      -3,
      -3,
      -3
    ],
    "io_out": [
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(sort_asc(input),18),5)),-5)"
  },
  {
    "input": "input : list = [1, 4, 1, 2]\noutput : list = [9, 7, 6, 6]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(sort_des([1, 4, 1, 2])),14),-5))",
    "io_inp": [
      1,
      4,
      1,
      2
    ],
    "io_out": [
      9,
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(sort_des(input)),14),-5))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [21, 21]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sub_n(add_n([-5, -5],-5),-5),-4)),-1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      21,
      21
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sub_n(add_n(input,-5),-5),-4)),-1)"
  },
  {
    "input": "input : list = [1, -2, -4, 1]\noutput : list = [-16, -6]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n(drop([1, -2, -4, 1],2),4)),2))",
    "io_inp": [
      1,
      -2,
      -4,
      1
    ],
    "io_out": [
      -16,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(drop(input,2),4)),2))"
  },
  {
    "input": "input : list = [3, 4, 5]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = reverse([3, 4, 5])",
    "io_inp": [
      3,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, 0, 0]\noutput : list = [13, 10, 9, 9]",
    "output": "generated_output : list = add_n(add_n(sort_des([1, 4, 0, 0]),4),5)",
    "io_inp": [
      1,
      4,
      0,
      0
    ],
    "io_out": [
      13,
      10,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),4),5)"
  },
  {
    "input": "input : list = [1, 3, -1, 3, -4, -1]\noutput : list = [-24, -36, -8, -24, -8, -16]",
    "output": "generated_output : list = reverse(mul_n(add_n([1, 3, -1, 3, -4, -1],-5),4))",
    "io_inp": [
      1,
      3,
      -1,
      3,
      -4,
      -1
    ],
    "io_out": [
      -24,
      -36,
      -8,
      -24,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-5),4))"
  },
  {
    "input": "input : list = [3, -4, -1, -4, 1]\noutput : list = [-2, -7, -4, -7, 0]",
    "output": "generated_output : list = reverse(sub_n(take(take(sub_n([3, -4, -1, -4, 1],-1),13),16),4))",
    "io_inp": [
      3,
      -4,
      -1,
      -4,
      1
    ],
    "io_out": [
      -2,
      -7,
      -4,
      -7,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(sub_n(input,-1),13),16),4))"
  },
  {
    "input": "input : list = [-2, -1, 0, 1]\noutput : list = [8, 4, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n([-2, -1, 0, 1],-4))",
    "io_inp": [
      -2,
      -1,
      0,
      1
    ],
    "io_out": [
      8,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(reverse([-4, 1]),6))))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(reverse(input),6))))"
  },
  {
    "input": "input : list = [-3, 5, 2, -1, -3]\noutput : list = [-9, -15, -21, -25, -25]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(add_n([-3, 5, 2, -1, -3],-4),5)),2),-1)",
    "io_inp": [
      -3,
      5,
      2,
      -1,
      -3
    ],
    "io_out": [
      -9,
      -15,
      -21,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(add_n(input,-4),5)),2),-1)"
  },
  {
    "input": "input : list = [-3, 0, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(drop([-3, 0, 5, 5],2))",
    "io_inp": [
      -3,
      0,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-5, 0, -1, -3, 0, -3]\noutput : list = [-5, -3, -3, -1, 0, 0]",
    "output": "generated_output : list = sort_asc([-5, 0, -1, -3, 0, -3])",
    "io_inp": [
      -5,
      0,
      -1,
      -3,
      0,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = add_n(drop([5, -4, 1],1),-1)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [4, 4, 2, 3]\noutput : list = [-20]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(take([4, 4, 2, 3],1),-4),-4)),23)",
    "io_inp": [
      4,
      4,
      2,
      3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(take(input,1),-4),-4)),23)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(mul_n([1, 5],1))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-8, 2]",
    "output": "generated_output : list = take(mul_n([4, -1],-2),15)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-2),15)"
  },
  {
    "input": "input : list = [4, 0, -3]\noutput : list = [-6, 0, 8]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(sort_asc([4, 0, -3])),9),2))",
    "io_inp": [
      4,
      0,
      -3
    ],
    "io_out": [
      -6,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(sort_asc(input)),9),2))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n(take(sort_des([-1, 1]),12),-5)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),12),-5)"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [5, 2, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(sub_n([1, 4, -4],3)))),-4)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(sub_n(input,3)))),-4)"
  },
  {
    "input": "input : list = [2, -1, -2, 5]\noutput : list = [-15, -6, 3, 6]",
    "output": "generated_output : list = take(take(sort_asc(mul_n([2, -1, -2, 5],-3)),14),13)",
    "io_inp": [
      2,
      -1,
      -2,
      5
    ],
    "io_out": [
      -15,
      -6,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(input,-3)),14),13)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = take(sort_des([4, 1]),10)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),10)"
  },
  {
    "input": "input : list = [-1, 3, -1, 3, -1, -4]\noutput : list = [3, -1, -4]",
    "output": "generated_output : list = drop([-1, 3, -1, 3, -1, -4],3)",
    "io_inp": [
      -1,
      3,
      -1,
      3,
      -1,
      -4
    ],
    "io_out": [
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, 1, -1, 2, 0]\noutput : list = [1, 1, 0, -1, -2]",
    "output": "generated_output : list = take(sort_des(add_n([2, 1, -1, 2, 0],-1)),32)",
    "io_inp": [
      2,
      1,
      -1,
      2,
      0
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-1)),32)"
  },
  {
    "input": "input : list = [5, -4, -1, 0, 2]\noutput : list = [1, -8, -5, -4, -2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sub_n([5, -4, -1, 0, 2],-5),3),-2),5),3)",
    "io_inp": [
      5,
      -4,
      -1,
      0,
      2
    ],
    "io_out": [
      1,
      -8,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sub_n(input,-5),3),-2),5),3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-10, -50]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_asc([-5, 3]),5))),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -10,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_asc(input),5))),5)"
  },
  {
    "input": "input : list = [2, 5, -4, 1, 1]\noutput : list = [-4, -10, 8, -2, -2]",
    "output": "generated_output : list = mul_n([2, 5, -4, 1, 1],-2)",
    "io_inp": [
      2,
      5,
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      -10,
      8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-2, 2]))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -2, 4, -5, 5]\noutput : list = [-13, -10, -10, -4, -3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(add_n([-2, -2, 4, -5, 5],-5)),-2),1))",
    "io_inp": [
      -2,
      -2,
      4,
      -5,
      5
    ],
    "io_out": [
      -13,
      -10,
      -10,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(add_n(input,-5)),-2),1))"
  },
  {
    "input": "input : list = [5, -4, 4, 0, 1, 3]\noutput : list = [3, 9]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(drop([5, -4, 4, 0, 1, 3],4),3)),19))",
    "io_inp": [
      5,
      -4,
      4,
      0,
      1,
      3
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(drop(input,4),3)),19))"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take([-2, 1, -4],1))))",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(input,1))))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [1, -7]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(reverse([-5, 3]),2))),2)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(reverse(input),2))),2)"
  },
  {
    "input": "input : list = [2, 4, 3, 5, -3]\noutput : list = [-3, -4, -5, -11]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(drop([2, 4, 3, 5, -3],1),-3))),-5)",
    "io_inp": [
      2,
      4,
      3,
      5,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(drop(input,1),-3))),-5)"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [6, -8, -8]",
    "output": "generated_output : list = mul_n([-3, 4, 4],-2)",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [-3, -2, 4]",
    "output": "generated_output : list = sort_asc(take(reverse([-3, -2, 4]),7))",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),7))"
  },
  {
    "input": "input : list = [-1, 1, 1]\noutput : list = [-20, -20, -10]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(sort_des([-1, 1, 1]),3))),-5)",
    "io_inp": [
      -1,
      1,
      1
    ],
    "io_out": [
      -20,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(sort_des(input),3))),-5)"
  },
  {
    "input": "input : list = [-3, -5, 5, 0, -1, -1]\noutput : list = [18, 10]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(take([-3, -5, 5, 0, -1, -1],2),-4)),1),-2)",
    "io_inp": [
      -3,
      -5,
      5,
      0,
      -1,
      -1
    ],
    "io_out": [
      18,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(take(input,2),-4)),1),-2)"
  },
  {
    "input": "input : list = [4, 2, -4, -4, -1]\noutput : list = [3, 1, -5, -5, -2]",
    "output": "generated_output : list = sub_n([4, 2, -4, -4, -1],1)",
    "io_inp": [
      4,
      2,
      -4,
      -4,
      -1
    ],
    "io_out": [
      3,
      1,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, 3, 5, -2, -2]\noutput : list = [0, 0, 10, 25, 35]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(reverse([0, 3, 5, -2, -2]),-1),1)),5)",
    "io_inp": [
      0,
      3,
      5,
      -2,
      -2
    ],
    "io_out": [
      0,
      0,
      10,
      25,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(reverse(input),-1),1)),5)"
  },
  {
    "input": "input : list = [-1, -2, 4, -5, 3]\noutput : list = [59, 43, -21, -37, -85]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(mul_n([-1, -2, 4, -5, 3],-4),-4),1),-4))",
    "io_inp": [
      -1,
      -2,
      4,
      -5,
      3
    ],
    "io_out": [
      59,
      43,
      -21,
      -37,
      -85
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(mul_n(input,-4),-4),1),-4))"
  },
  {
    "input": "input : list = [3, 0, -3, -4, 2, -5]\noutput : list = [-8, -6, -4, 2, 6, 8]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc([3, 0, -3, -4, 2, -5]),1),1),2)",
    "io_inp": [
      3,
      0,
      -3,
      -4,
      2,
      -5
    ],
    "io_out": [
      -8,
      -6,
      -4,
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(input),1),1),2)"
  },
  {
    "input": "input : list = [-4, 4, -5, -1, -2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take([-4, 4, -5, -1, -2],1))",
    "io_inp": [
      -4,
      4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 0, -2],1)",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 1, 5, -4, -2, 0]\noutput : list = [1, 4, 8, -1, 1, 3]",
    "output": "generated_output : list = sub_n([-2, 1, 5, -4, -2, 0],-3)",
    "io_inp": [
      -2,
      1,
      5,
      -4,
      -2,
      0
    ],
    "io_out": [
      1,
      4,
      8,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 1, 3, 2, 5, -3]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = take([-1, 1, 3, 2, 5, -3],3)",
    "io_inp": [
      -1,
      1,
      3,
      2,
      5,
      -3
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [1, 2, -5, 2, 2]\noutput : list = [2, 2, 2, 1, -5]",
    "output": "generated_output : list = take(reverse(reverse(reverse(sort_asc([1, 2, -5, 2, 2])))),37)",
    "io_inp": [
      1,
      2,
      -5,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(sort_asc(input)))),37)"
  },
  {
    "input": "input : list = [0, 4, 5, -1, -4]\noutput : list = [2, 5, 6, 10, 11]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(sort_asc([0, 4, 5, -1, -4]),-4),26),-4),2)",
    "io_inp": [
      0,
      4,
      5,
      -1,
      -4
    ],
    "io_out": [
      2,
      5,
      6,
      10,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(sort_asc(input),-4),26),-4),2)"
  },
  {
    "input": "input : list = [-1, 5, -4, 5, -2, 2]\noutput : list = [2, -2, 5, -4, 5, -1]",
    "output": "generated_output : list = reverse([-1, 5, -4, 5, -2, 2])",
    "io_inp": [
      -1,
      5,
      -4,
      5,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      5,
      -4,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, -5, 4, -5, 3]\noutput : list = [24, -8, 28, -8, -4, 28]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(sub_n([4, -4, -5, 4, -5, 3],-3),-5)),5),4)",
    "io_inp": [
      4,
      -4,
      -5,
      4,
      -5,
      3
    ],
    "io_out": [
      24,
      -8,
      28,
      -8,
      -4,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(sub_n(input,-3),-5)),5),4)"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [4, 6, 7]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(sub_n([0, 1, -2],-5)),1)))",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(sub_n(input,-5)),1)))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-7, -5]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(reverse([-5, -3]),-4),-2)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(reverse(input),-4),-2)))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [16, -16]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(add_n([-5, 3],3),11),-1),2),4)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(add_n(input,3),11),-1),2),4)"
  },
  {
    "input": "input : list = [3, 4, 2, -1]\noutput : list = [4, 7, 9, 8]",
    "output": "generated_output : list = sub_n(reverse([3, 4, 2, -1]),-5)",
    "io_inp": [
      3,
      4,
      2,
      -1
    ],
    "io_out": [
      4,
      7,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-25, -17]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(add_n(sort_asc([-1, -3]),-4),4)),-3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -25,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(add_n(sort_asc(input),-4),4)),-3)"
  },
  {
    "input": "input : list = [1, -4, 0, -1, 2]\noutput : list = [-8, 8, 4]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(drop([1, -4, 0, -1, 2],1),4),-3),-5),3)",
    "io_inp": [
      1,
      -4,
      0,
      -1,
      2
    ],
    "io_out": [
      -8,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(drop(input,1),4),-3),-5),3)"
  },
  {
    "input": "input : list = [2, -4, 1, -2]\noutput : list = [8, 4, -2, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(mul_n([2, -4, 1, -2],-2),1))),-1)",
    "io_inp": [
      2,
      -4,
      1,
      -2
    ],
    "io_out": [
      8,
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(mul_n(input,-2),1))),-1)"
  },
  {
    "input": "input : list = [4, 0, 4, 0, -1]\noutput : list = [4, 4, 0, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc([4, 0, 4, 0, -1]))",
    "io_inp": [
      4,
      0,
      4,
      0,
      -1
    ],
    "io_out": [
      4,
      4,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 4, -5, 1]\noutput : list = [-183, -143, -63, -3]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sub_n([-3, 4, -5, 1],4),-5),-4)),-3)",
    "io_inp": [
      -3,
      4,
      -5,
      1
    ],
    "io_out": [
      -183,
      -143,
      -63,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sub_n(input,4),-5),-4)),-3)"
  },
  {
    "input": "input : list = [-1, 2, 1, -5, 3, 1]\noutput : list = [18, 2, -6, -6, -10, -14]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(mul_n([-1, 2, 1, -5, 3, 1],-4),21)),-2),4)",
    "io_inp": [
      -1,
      2,
      1,
      -5,
      3,
      1
    ],
    "io_out": [
      18,
      2,
      -6,
      -6,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(mul_n(input,-4),21)),-2),4)"
  },
  {
    "input": "input : list = [3, 2, 5, -1, 4, 3]\noutput : list = [3, -2, 4, 1, 2]",
    "output": "generated_output : list = add_n(drop(reverse(sub_n([3, 2, 5, -1, 4, 3],-3)),1),-4)",
    "io_inp": [
      3,
      2,
      5,
      -1,
      4,
      3
    ],
    "io_out": [
      3,
      -2,
      4,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(sub_n(input,-3)),1),-4)"
  },
  {
    "input": "input : list = [5, 3, 1, 3, 1]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(take(take([5, 3, 1, 3, 1],2),11))",
    "io_inp": [
      5,
      3,
      1,
      3,
      1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,2),11))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = reverse([-5, 5])",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [15, 9]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sub_n([5, -1],-5),-5))))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      15,
      9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sub_n(input,-5),-5))))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(reverse([-5, -3])),-1)),3)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(reverse(input)),-1)),3)"
  },
  {
    "input": "input : list = [0, 3, 4, 3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(take([0, 3, 4, 3],1))),-5))",
    "io_inp": [
      0,
      3,
      4,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(take(input,1))),-5))"
  },
  {
    "input": "input : list = [-5, -4, -2, -3]\noutput : list = [-9, -13, -17, -21]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n([-5, -4, -2, -3],4))),1))",
    "io_inp": [
      -5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -9,
      -13,
      -17,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n(input,4))),1))"
  },
  {
    "input": "input : list = [5, -2, -1, 1]\noutput : list = [2, -5, -4, -2]",
    "output": "generated_output : list = add_n([5, -2, -1, 1],-3)",
    "io_inp": [
      5,
      -2,
      -1,
      1
    ],
    "io_out": [
      2,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, 1, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(drop([-2, -2, 1, 2, 2],3)))))",
    "io_inp": [
      -2,
      -2,
      1,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(drop(input,3)))))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = take(reverse(take(reverse(sort_des([-1, -4])),20)),40)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(sort_des(input)),20)),40)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [16, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sub_n([3, -1],3)),-2),2))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sub_n(input,3)),-2),2))"
  },
  {
    "input": "input : list = [0, 1, 2]\noutput : list = [2]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take([0, 1, 2],1)),-1),2)",
    "io_inp": [
      0,
      1,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(input,1)),-1),2)"
  },
  {
    "input": "input : list = [5, -5, 1, 4, -4, 5]\noutput : list = [5, 3, -7, -13, -15, -15]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(mul_n([5, -5, 1, 4, -4, 5],-2))),-5))",
    "io_inp": [
      5,
      -5,
      1,
      4,
      -4,
      5
    ],
    "io_out": [
      5,
      3,
      -7,
      -13,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(mul_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [-4, 5, 4, -4, -5, 2]\noutput : list = [-50, -45, -45, -15, -5, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(add_n([-4, 5, 4, -4, -5, 2],-5),26)),5))",
    "io_inp": [
      -4,
      5,
      4,
      -4,
      -5,
      2
    ],
    "io_out": [
      -50,
      -45,
      -45,
      -15,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(add_n(input,-5),26)),5))"
  },
  {
    "input": "input : list = [5, 0, -2, 4, 0]\noutput : list = [5, 0, -2]",
    "output": "generated_output : list = take([5, 0, -2, 4, 0],3)",
    "io_inp": [
      5,
      0,
      -2,
      4,
      0
    ],
    "io_out": [
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, 1, -1, 3]\noutput : list = [24, 24, 8, -8]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n([3, 1, -1, 3],-4),15)),-2)",
    "io_inp": [
      3,
      1,
      -1,
      3
    ],
    "io_out": [
      24,
      24,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(input,-4),15)),-2)"
  },
  {
    "input": "input : list = [-3, 2, -2, -1, -2]\noutput : list = [-3, -2, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(reverse([-3, 2, -2, -1, -2]))",
    "io_inp": [
      -3,
      2,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, 1, -4, 0, 2]\noutput : list = [5, 3, 2, 1, -3]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(sort_asc([4, 1, -4, 0, 2]),-1))),49)",
    "io_inp": [
      4,
      1,
      -4,
      0,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(sort_asc(input),-1))),49)"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(drop(take(reverse(reverse([-4, 1, -2])),14),1),39)",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(take(reverse(reverse(input)),14),1),39)"
  },
  {
    "input": "input : list = [1, 3, 5, 0]\noutput : list = [-1, 1, 3, -2]",
    "output": "generated_output : list = sub_n([1, 3, 5, 0],2)",
    "io_inp": [
      1,
      3,
      5,
      0
    ],
    "io_out": [
      -1,
      1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, 3, -5, 2]\noutput : list = [2, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(drop([1, 3, -5, 2],2))))",
    "io_inp": [
      1,
      3,
      -5,
      2
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(drop(input,2))))"
  },
  {
    "input": "input : list = [1, -1, 1, 4, 3]\noutput : list = [-2, 1, 0]",
    "output": "generated_output : list = add_n(drop([1, -1, 1, 4, 3],2),-3)",
    "io_inp": [
      1,
      -1,
      1,
      4,
      3
    ],
    "io_out": [
      -2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-5, -1, -5]\noutput : list = [-5, -5, -1]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(reverse([-5, -1, -5]),11))))",
    "io_inp": [
      -5,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(reverse(input),11))))"
  },
  {
    "input": "input : list = [-5, -1, 3, 1]\noutput : list = [-6, -2, 2, 10]",
    "output": "generated_output : list = mul_n(sort_des([-5, -1, 3, 1]),-2)",
    "io_inp": [
      -5,
      -1,
      3,
      1
    ],
    "io_out": [
      -6,
      -2,
      2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [1, 2, 2, 2]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(add_n(take([1, 2, 2, 2],1),5))",
    "io_inp": [
      1,
      2,
      2,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,1),5))"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(take([1, -1, 2],1))),-3),-3)",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(take(input,1))),-3),-3)"
  },
  {
    "input": "input : list = [-1, -1, -1, -5, 3]\noutput : list = [8, 4, 4, 4, 0]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse([-1, -1, -1, -5, 3]))),3),2)",
    "io_inp": [
      -1,
      -1,
      -1,
      -5,
      3
    ],
    "io_out": [
      8,
      4,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(reverse(input))),3),2)"
  },
  {
    "input": "input : list = [-1, 4, 3, -4]\noutput : list = [12, 10, 2, -4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sub_n([-1, 4, 3, -4],-1))),1),2)",
    "io_inp": [
      -1,
      4,
      3,
      -4
    ],
    "io_out": [
      12,
      10,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sub_n(input,-1))),1),2)"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [15, 5]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des(drop([-5, -1, -3],1))),4),5)",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(drop(input,1))),4),5)"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_asc(take([2, -3, 5],1)),19)",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,1)),19)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(sort_des(add_n([4, 4],1)))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,1)))"
  },
  {
    "input": "input : list = [5, 4, 0, -1, -3]\noutput : list = [3, 19, 23]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(take([5, 4, 0, -1, -3],3),4)),2),-1)",
    "io_inp": [
      5,
      4,
      0,
      -1,
      -3
    ],
    "io_out": [
      3,
      19,
      23
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(take(input,3),4)),2),-1)"
  },
  {
    "input": "input : list = [-5, 3, 3, 3, 0]\noutput : list = [0, 3, 3, 3, -5]",
    "output": "generated_output : list = reverse([-5, 3, 3, 3, 0])",
    "io_inp": [
      -5,
      3,
      3,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-3, -3, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(sort_des([-5, -5, 0]))),30),2)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(sort_des(input))),30),2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-24, 3]",
    "output": "generated_output : list = mul_n(take(sub_n([-4, 5],4),6),3)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -24,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,4),6),3)"
  },
  {
    "input": "input : list = [-5, 5, 4, 4]\noutput : list = [14, 14, 15, 5]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n([-5, 5, 4, 4],-5),14),-5))",
    "io_inp": [
      -5,
      5,
      4,
      4
    ],
    "io_out": [
      14,
      14,
      15,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(input,-5),14),-5))"
  },
  {
    "input": "input : list = [0, -1, -4, -1, -2, 2]\noutput : list = [-2, -4, -5, -5, -6, -8]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(add_n([0, -1, -4, -1, -2, 2],-4)),23)))",
    "io_inp": [
      0,
      -1,
      -4,
      -1,
      -2,
      2
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(add_n(input,-4)),23)))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sub_n([2, -5],-3)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, 1, 4, 4, -1]\noutput : list = [4, 4, 4, 1, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc([4, -1, 1, 4, 4, -1]))",
    "io_inp": [
      4,
      -1,
      1,
      4,
      4,
      -1
    ],
    "io_out": [
      4,
      4,
      4,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 5, 1, 2, 1, 5]\noutput : list = [-1, -1, 0, 3, 3]",
    "output": "generated_output : list = sub_n(sort_asc(drop(reverse(add_n([5, 5, 1, 2, 1, 5],-5)),1)),-3)",
    "io_inp": [
      5,
      5,
      1,
      2,
      1,
      5
    ],
    "io_out": [
      -1,
      -1,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(reverse(add_n(input,-5)),1)),-3)"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [-5, -6]",
    "output": "generated_output : list = take(add_n(add_n(add_n(drop([-2, -3, -4],1),-2),-4),4),25)",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(drop(input,1),-2),-4),4),25)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [-10, 8]",
    "output": "generated_output : list = mul_n(reverse(drop([4, -4, 5],1)),-2)",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      -10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [-2, 2, 3, -3, 2]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take([-2, 2, 3, -3, 2],3))))",
    "io_inp": [
      -2,
      2,
      3,
      -3,
      2
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(input,3))))"
  },
  {
    "input": "input : list = [0, 4, 1, 0]\noutput : list = [0, -4, -16]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(drop([0, 4, 1, 0],1)))),-4)",
    "io_inp": [
      0,
      4,
      1,
      0
    ],
    "io_out": [
      0,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(drop(input,1)))),-4)"
  },
  {
    "input": "input : list = [2, -1, 2, 1]\noutput : list = [-1, -4, -1, -2]",
    "output": "generated_output : list = sub_n([2, -1, 2, 1],3)",
    "io_inp": [
      2,
      -1,
      2,
      1
    ],
    "io_out": [
      -1,
      -4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-3, 0, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sub_n([4, -1, -4],-2))),-1))",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sub_n(input,-2))),-1))"
  },
  {
    "input": "input : list = [2, -2, -3, -4]\noutput : list = [-9, 3, 6, 9]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sub_n([2, -2, -3, -4],-1),-3))))",
    "io_inp": [
      2,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -9,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sub_n(input,-1),-3))))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(sort_asc([-3, -3]),2),-2),1),-5)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(sort_asc(input),2),-2),1),-5)"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [42, -48, 6]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(mul_n([-5, 5, -1],3),-3),1),2),43)",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      42,
      -48,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(mul_n(input,3),-3),1),2),43)"
  },
  {
    "input": "input : list = [5, 1, -3, -2, -2]\noutput : list = [5, 1, -2, -2, -3]",
    "output": "generated_output : list = sort_des([5, 1, -3, -2, -2])",
    "io_inp": [
      5,
      1,
      -3,
      -2,
      -2
    ],
    "io_out": [
      5,
      1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [-2, -6, -7]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([2, -2, -3],-4)))",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [0, -3, 5, -2, 1, 3]\noutput : list = [-79, 121, -54, 21, 71]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(drop([0, -3, 5, -2, 1, 3],1),-5),-5),1),-4)",
    "io_inp": [
      0,
      -3,
      5,
      -2,
      1,
      3
    ],
    "io_out": [
      -79,
      121,
      -54,
      21,
      71
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(drop(input,1),-5),-5),1),-4)"
  },
  {
    "input": "input : list = [3, -1, 2, 2, -2, 5]\noutput : list = [6, 4, 3, 3, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n([3, -1, 2, 2, -2, 5],-5),-5),1))",
    "io_inp": [
      3,
      -1,
      2,
      2,
      -2,
      5
    ],
    "io_out": [
      6,
      4,
      3,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(input,-5),-5),1))"
  },
  {
    "input": "input : list = [-1, -1, -3, 3, 1]\noutput : list = [1, 3, -3, -1, -1]",
    "output": "generated_output : list = reverse([-1, -1, -3, 3, 1])",
    "io_inp": [
      -1,
      -1,
      -3,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 1, 3, 0, 0]\noutput : list = [-15, 3, 9, 0, 0]",
    "output": "generated_output : list = mul_n([-5, 1, 3, 0, 0],3)",
    "io_inp": [
      -5,
      1,
      3,
      0,
      0
    ],
    "io_out": [
      -15,
      3,
      9,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([-4, 0, 2])))",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [0, 5, -2, -1, -4, 3]\noutput : list = [-12]",
    "output": "generated_output : list = take(drop(mul_n(add_n(mul_n([0, 5, -2, -1, -4, 3],2),-3),-4),5),9)",
    "io_inp": [
      0,
      5,
      -2,
      -1,
      -4,
      3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(add_n(mul_n(input,2),-3),-4),5),9)"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 3, 0],1)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 3, 1, -2, -2, -3]\noutput : list = [18, 12, 6, -3, -3, -6]",
    "output": "generated_output : list = mul_n(sub_n([5, 3, 1, -2, -2, -3],-1),3)",
    "io_inp": [
      5,
      3,
      1,
      -2,
      -2,
      -3
    ],
    "io_out": [
      18,
      12,
      6,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),3)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-1, -8]",
    "output": "generated_output : list = sub_n(sort_des([-3, 4]),5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(reverse(reverse(take(mul_n([1, 4],2),1))),-3)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(mul_n(input,2),1))),-3)"
  },
  {
    "input": "input : list = [3, 5, 3, -2]\noutput : list = [-2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse([3, 5, 3, -2]))",
    "io_inp": [
      3,
      5,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, 5, 3]\noutput : list = [5, 3, 2]",
    "output": "generated_output : list = sort_des([2, 5, 3])",
    "io_inp": [
      2,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, 4, 1, -2]\noutput : list = [-4, 4, 1, -2]",
    "output": "generated_output : list = drop([-5, -4, 4, 1, -2],1)",
    "io_inp": [
      -5,
      -4,
      4,
      1,
      -2
    ],
    "io_out": [
      -4,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 2, 2, 2]\noutput : list = [1, 1, 1]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(drop([-2, 2, 2, 2],1),3)),-1))",
    "io_inp": [
      -2,
      2,
      2,
      2
    ],
    "io_out": [
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(drop(input,1),3)),-1))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(sort_asc([-3, -3]),3))))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(take(sort_des(sub_n(mul_n([-4, 3],2),-4)),1))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sub_n(mul_n(input,2),-4)),1))"
  },
  {
    "input": "input : list = [5, 5, -2, 5]\noutput : list = [3, 3, 3, -4]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(sub_n([5, 5, -2, 5],2)))),41)",
    "io_inp": [
      5,
      5,
      -2,
      5
    ],
    "io_out": [
      3,
      3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(sub_n(input,2)))),41)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [3, 9]",
    "output": "generated_output : list = take(sub_n(sort_asc([4, -2]),-5),18)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),-5),18)"
  },
  {
    "input": "input : list = [-3, -3, 1, -2]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n(take([-3, -3, 1, -2],1),3),24)",
    "io_inp": [
      -3,
      -3,
      1,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,1),3),24)"
  },
  {
    "input": "input : list = [5, 4, 2, 2]\noutput : list = [5, 4, 2, 2]",
    "output": "generated_output : list = sort_des([5, 4, 2, 2])",
    "io_inp": [
      5,
      4,
      2,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, 5, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(take([-5, 4, 5, -1],1))",
    "io_inp": [
      -5,
      4,
      5,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-6, 12]",
    "output": "generated_output : list = mul_n([2, -4],-3)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-10, 0]",
    "output": "generated_output : list = reverse(take(add_n(take(sub_n([5, -5],1),12),-4),2))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(sub_n(input,1),12),-4),2))"
  },
  {
    "input": "input : list = [-5, 2, 0, 3, 4, 5]\noutput : list = [1, -1, -6]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n(take([-5, 2, 0, 3, 4, 5],3),3),31)),4)",
    "io_inp": [
      -5,
      2,
      0,
      3,
      4,
      5
    ],
    "io_out": [
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(take(input,3),3),31)),4)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n([-3, 3],-2))))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(input,-2))))"
  },
  {
    "input": "input : list = [-3, 2, 3]\noutput : list = [40, -60, -80]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(mul_n([-3, 2, 3],-2),-3),5),2),5)",
    "io_inp": [
      -3,
      2,
      3
    ],
    "io_out": [
      40,
      -60,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(mul_n(input,-2),-3),5),2),5)"
  },
  {
    "input": "input : list = [4, 1, 4, 0, 0, 5]\noutput : list = [4, 9]",
    "output": "generated_output : list = sort_asc(add_n(take(drop(sub_n([4, 1, 4, 0, 0, 5],-1),4),31),3))",
    "io_inp": [
      4,
      1,
      4,
      0,
      0,
      5
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(drop(sub_n(input,-1),4),31),3))"
  },
  {
    "input": "input : list = [-1, -1, -1, -1, -3, 0]\noutput : list = [-22, -22, -22, -22, -52, -7]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(mul_n([-1, -1, -1, -1, -3, 0],-5),-4),-3),7),-5)",
    "io_inp": [
      -1,
      -1,
      -1,
      -1,
      -3,
      0
    ],
    "io_out": [
      -22,
      -22,
      -22,
      -22,
      -52,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(mul_n(input,-5),-4),-3),7),-5)"
  },
  {
    "input": "input : list = [0, 5, 1, -4, -4]\noutput : list = [0, 0, -20, -25, -45]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_asc([0, 5, 1, -4, -4])),-4)),-5)",
    "io_inp": [
      0,
      5,
      1,
      -4,
      -4
    ],
    "io_out": [
      0,
      0,
      -20,
      -25,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_asc(input)),-4)),-5)"
  },
  {
    "input": "input : list = [-2, -3, -1, -4]\noutput : list = [-1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(mul_n([-2, -3, -1, -4],1))",
    "io_inp": [
      -2,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-5, -3, 5, -5, 5]\noutput : list = [-11, -11, -9, -1, -1]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(sub_n([-5, -3, 5, -5, 5],-1),-4),7),-3))",
    "io_inp": [
      -5,
      -3,
      5,
      -5,
      5
    ],
    "io_out": [
      -11,
      -11,
      -9,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(sub_n(input,-1),-4),7),-3))"
  },
  {
    "input": "input : list = [-5, -4, 0, 5, 1, 3]\noutput : list = [-59, -47, 1, 13, 37, 61]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(mul_n([-5, -4, 0, 5, 1, 3],3),9),4)),1)",
    "io_inp": [
      -5,
      -4,
      0,
      5,
      1,
      3
    ],
    "io_out": [
      -59,
      -47,
      1,
      13,
      37,
      61
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(mul_n(input,3),9),4)),1)"
  },
  {
    "input": "input : list = [5, 3, -5, 4]\noutput : list = [0, 8, 9, 10]",
    "output": "generated_output : list = take(take(sort_asc(take(sub_n([5, 3, -5, 4],-5),4)),6),16)",
    "io_inp": [
      5,
      3,
      -5,
      4
    ],
    "io_out": [
      0,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(sub_n(input,-5),4)),6),16)"
  },
  {
    "input": "input : list = [-4, -5, -4, -4]\noutput : list = [-1, -2, -1, -1]",
    "output": "generated_output : list = add_n([-4, -5, -4, -4],3)",
    "io_inp": [
      -4,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-11, 13]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse([-2, 4]))),-4),5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -11,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse(input))),-4),5)"
  },
  {
    "input": "input : list = [1, -4, 1, 3, -5, -5]\noutput : list = [-2, 3, 5, -3, -3]",
    "output": "generated_output : list = drop(sub_n([1, -4, 1, 3, -5, -5],-2),1)",
    "io_inp": [
      1,
      -4,
      1,
      3,
      -5,
      -5
    ],
    "io_out": [
      -2,
      3,
      5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-2),1)"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(take([2, -2, 0],1))),30),3)",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(take(input,1))),30),3)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [6]",
    "output": "generated_output : list = take(sub_n(sub_n(take(add_n([2, -5],5),1),-2),3),11)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(add_n(input,5),1),-2),3),11)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [30]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(take([5, 0, 5],1),1),5)),40)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(take(input,1),1),5)),40)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse([5, -5])",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 0, -5, 4, 4, -3]\noutput : list = [-5, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(take([-2, 0, -5, 4, 4, -3],4))),8))",
    "io_inp": [
      -2,
      0,
      -5,
      4,
      4,
      -3
    ],
    "io_out": [
      -5,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(take(input,4))),8))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-7, -7, -10]",
    "output": "generated_output : list = add_n(take(take(sub_n([-1, -1, -4],1),18),6),-5)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(input,1),18),6),-5)"
  },
  {
    "input": "input : list = [-3, -3, 0, 5, 4, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -3, 0, 5, 4, 5],1)",
    "io_inp": [
      -3,
      -3,
      0,
      5,
      4,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-22, -22]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(mul_n([5, 5],-4),2))),-2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -22,
      -22
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(mul_n(input,-4),2))),-2)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [27, 3]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(add_n([-3, 5],-2),1),-5)),3)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      27,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(add_n(input,-2),1),-5)),3)"
  },
  {
    "input": "input : list = [-5, -2, -3]\noutput : list = [7, 6, 4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_des([-5, -2, -3])),-5),4))",
    "io_inp": [
      -5,
      -2,
      -3
    ],
    "io_out": [
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_des(input)),-5),4))"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [3, -7, -7]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(mul_n([1, -4, -4],2)),-1)),10)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(mul_n(input,2)),-1)),10)"
  },
  {
    "input": "input : list = [0, 1, 2, 4, 2, -1]\noutput : list = [6, 4, 4, 1]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(drop([0, 1, 2, 4, 2, -1],2)),10),1),1)",
    "io_inp": [
      0,
      1,
      2,
      4,
      2,
      -1
    ],
    "io_out": [
      6,
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(drop(input,2)),10),1),1)"
  },
  {
    "input": "input : list = [-4, 0, -2, -3, 5]\noutput : list = [-4, 0]",
    "output": "generated_output : list = take(take([-4, 0, -2, -3, 5],2),15)",
    "io_inp": [
      -4,
      0,
      -2,
      -3,
      5
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(take(input,2),15)"
  },
  {
    "input": "input : list = [3, 5, -5, -5, -5]\noutput : list = [5, 3, -5, -5, -5]",
    "output": "generated_output : list = sort_des([3, 5, -5, -5, -5])",
    "io_inp": [
      3,
      5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      5,
      3,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, -1, 5, 3, 5]\noutput : list = [-19, -19]",
    "output": "generated_output : list = drop(sort_des(add_n(sub_n(mul_n([2, 2, -1, 5, 3, 5],-3),5),1)),4)",
    "io_inp": [
      2,
      2,
      -1,
      5,
      3,
      5
    ],
    "io_out": [
      -19,
      -19
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(sub_n(mul_n(input,-3),5),1)),4)"
  },
  {
    "input": "input : list = [-3, -3, 5, 5, 2, -4]\noutput : list = [-11, -11, 13]",
    "output": "generated_output : list = add_n(take(mul_n([-3, -3, 5, 5, 2, -4],3),3),-2)",
    "io_inp": [
      -3,
      -3,
      5,
      5,
      2,
      -4
    ],
    "io_out": [
      -11,
      -11,
      13
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,3),3),-2)"
  },
  {
    "input": "input : list = [5, 5, -5, 3]\noutput : list = [23, -9, -17]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(drop([5, 5, -5, 3],1)),-4),-1),-4)",
    "io_inp": [
      5,
      5,
      -5,
      3
    ],
    "io_out": [
      23,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(drop(input,1)),-4),-1),-4)"
  },
  {
    "input": "input : list = [-2, -1, 3, -4, -4]\noutput : list = [4, 0, -1, -3, -3]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(sort_asc([-2, -1, 3, -4, -4]),8),3)),-2)",
    "io_inp": [
      -2,
      -1,
      3,
      -4,
      -4
    ],
    "io_out": [
      4,
      0,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(sort_asc(input),8),3)),-2)"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [68, 33, 68]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(add_n([-4, 3, -4],-4),-5),26),-5),-3)",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      68,
      33,
      68
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(add_n(input,-4),-5),26),-5),-3)"
  },
  {
    "input": "input : list = [3, 3, 1, 5, 4]\noutput : list = [-27, -30, -18, -24, -24]",
    "output": "generated_output : list = mul_n(add_n(reverse([3, 3, 1, 5, 4]),5),-3)",
    "io_inp": [
      3,
      3,
      1,
      5,
      4
    ],
    "io_out": [
      -27,
      -30,
      -18,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),5),-3)"
  },
  {
    "input": "input : list = [2, 5, -5, 4]\noutput : list = [-4, 3, 5, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_asc([2, 5, -5, 4])),-1)))",
    "io_inp": [
      2,
      5,
      -5,
      4
    ],
    "io_out": [
      -4,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-4, 4, 3, 2, 0, -5]\noutput : list = [8, 7, 6, 4, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc([-4, 4, 3, 2, 0, -5]),15)),4)",
    "io_inp": [
      -4,
      4,
      3,
      2,
      0,
      -5
    ],
    "io_out": [
      8,
      7,
      6,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(input),15)),4)"
  },
  {
    "input": "input : list = [3, -4, -3, -2, -3, -4]\noutput : list = [-5, -5, -3, -3, -1, 9]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(sort_asc([3, -4, -3, -2, -3, -4]),2),1),19),3)",
    "io_inp": [
      3,
      -4,
      -3,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -3,
      -1,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(sort_asc(input),2),1),19),3)"
  },
  {
    "input": "input : list = [3, 0, 4]\noutput : list = [7, 4, 8]",
    "output": "generated_output : list = sub_n(add_n([3, 0, 4],1),-3)",
    "io_inp": [
      3,
      0,
      4
    ],
    "io_out": [
      7,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),-3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-5, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(add_n([-4, -1],-4),5)),1))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(add_n(input,-4),5)),1))"
  },
  {
    "input": "input : list = [-3, -1, 4, -2]\noutput : list = [-10, 20, -5, -15]",
    "output": "generated_output : list = reverse(mul_n([-3, -1, 4, -2],5))",
    "io_inp": [
      -3,
      -1,
      4,
      -2
    ],
    "io_out": [
      -10,
      20,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-6, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n([3, 1],-5))),4),37)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n(input,-5))),4),37)"
  },
  {
    "input": "input : list = [0, 0, 1, -2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(take([0, 0, 1, -2],2)),-1),4))",
    "io_inp": [
      0,
      0,
      1,
      -2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(take(input,2)),-1),4))"
  },
  {
    "input": "input : list = [2, 5, 1, -3, 0, -4]\noutput : list = [-6, -5, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(drop(sub_n([2, 5, 1, -3, 0, -4],4),2)),2))",
    "io_inp": [
      2,
      5,
      1,
      -3,
      0,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(drop(sub_n(input,4),2)),2))"
  },
  {
    "input": "input : list = [-2, -3, 0, -1, 0]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_asc([-2, -3, 0, -1, 0]),1)),5),-4)",
    "io_inp": [
      -2,
      -3,
      0,
      -1,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_asc(input),1)),5),-4)"
  },
  {
    "input": "input : list = [4, 4, -4, 2]\noutput : list = [-8]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(take([4, 4, -4, 2],1),-2))),25)",
    "io_inp": [
      4,
      4,
      -4,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(take(input,1),-2))),25)"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [8, 6, 3]",
    "output": "generated_output : list = sort_des(take(sort_des(sub_n(sort_des([2, -1, 4]),-4)),27))",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sub_n(sort_des(input),-4)),27))"
  },
  {
    "input": "input : list = [4, 3, -1, 0, -4]\noutput : list = [9, -23, -31]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(mul_n([4, 3, -1, 0, -4],-2),4),3)),-1)",
    "io_inp": [
      4,
      3,
      -1,
      0,
      -4
    ],
    "io_out": [
      9,
      -23,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(mul_n(input,-2),4),3)),-1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [4, 20]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(add_n([-1, 3],1),-5),-4)),28)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      4,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(add_n(input,1),-5),-4)),28)"
  },
  {
    "input": "input : list = [-4, 3, -1, 1]\noutput : list = [-7, 0, -4, -2]",
    "output": "generated_output : list = sub_n([-4, 3, -1, 1],3)",
    "io_inp": [
      -4,
      3,
      -1,
      1
    ],
    "io_out": [
      -7,
      0,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(sort_des([-4, -1]),1)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-4, 4, 1]\noutput : list = [13, 10, 5]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(mul_n([-4, 4, 1],1),5),9),-4))",
    "io_inp": [
      -4,
      4,
      1
    ],
    "io_out": [
      13,
      10,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(mul_n(input,1),5),9),-4))"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-3, -1, 5]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(sort_des([-5, -3, 3]),2)),5),1)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(sort_des(input),2)),5),1)"
  },
  {
    "input": "input : list = [-2, -5, 5, 4, 5]\noutput : list = [10, 19, -11, -8, -11]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(add_n([-2, -5, 5, 4, 5],2),-1),3),-3),4)",
    "io_inp": [
      -2,
      -5,
      5,
      4,
      5
    ],
    "io_out": [
      10,
      19,
      -11,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(add_n(input,2),-1),3),-3),4)"
  },
  {
    "input": "input : list = [-4, 1, 5, -4, 4]\noutput : list = [0, 5, 9, 0, 8]",
    "output": "generated_output : list = take(sub_n(sub_n([-4, 1, 5, -4, 4],-2),-2),31)",
    "io_inp": [
      -4,
      1,
      5,
      -4,
      4
    ],
    "io_out": [
      0,
      5,
      9,
      0,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,-2),-2),31)"
  },
  {
    "input": "input : list = [-4, 5, 0, 3]\noutput : list = [-23, -3, 12, 22]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n([-4, 5, 0, 3],5),3),16))",
    "io_inp": [
      -4,
      5,
      0,
      3
    ],
    "io_out": [
      -23,
      -3,
      12,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(input,5),3),16))"
  },
  {
    "input": "input : list = [1, 5, -1, 5, -1, -1]\noutput : list = [2, -2, 4, -2, 4, 4]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n([1, 5, -1, 5, -1, -1],-1),4),16),1)",
    "io_inp": [
      1,
      5,
      -1,
      5,
      -1,
      -1
    ],
    "io_out": [
      2,
      -2,
      4,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(input,-1),4),16),1)"
  },
  {
    "input": "input : list = [2, -3, -5, -4, 2, -5]\noutput : list = [4, 4, -1, -2, -3, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(sort_des([2, -3, -5, -4, 2, -5]),1),-4),1),45)",
    "io_inp": [
      2,
      -3,
      -5,
      -4,
      2,
      -5
    ],
    "io_out": [
      4,
      4,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(sort_des(input),1),-4),1),45)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [20, 80]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_des([-4, -1])),5)),-4)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      20,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_des(input)),5)),-4)"
  },
  {
    "input": "input : list = [4, 2, 5, 0, -1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(drop([4, 2, 5, 0, -1, -1],4),-1),-3))",
    "io_inp": [
      4,
      2,
      5,
      0,
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(drop(input,4),-1),-3))"
  },
  {
    "input": "input : list = [1, -5, 3]\noutput : list = [1, -5, 3]",
    "output": "generated_output : list = sub_n(sub_n([1, -5, 3],-3),3)",
    "io_inp": [
      1,
      -5,
      3
    ],
    "io_out": [
      1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),3)"
  },
  {
    "input": "input : list = [-5, 3, 5, -4]\noutput : list = [5, 3, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 5, -4])",
    "io_inp": [
      -5,
      3,
      5,
      -4
    ],
    "io_out": [
      5,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, -3, 1, 0]\noutput : list = [20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(take([5, 4, -3, 1, 0],1))),4))",
    "io_inp": [
      5,
      4,
      -3,
      1,
      0
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(take(input,1))),4))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-24, -24]",
    "output": "generated_output : list = mul_n(mul_n([-4, -4],2),3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [2, 14]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_des([3, 0]),-1),4),-2))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sort_des(input),-1),4),-2))"
  },
  {
    "input": "input : list = [-3, 2, 4, 5, 4, 4]\noutput : list = [-6, 4, 8, 10, 8, 8]",
    "output": "generated_output : list = mul_n([-3, 2, 4, 5, 4, 4],2)",
    "io_inp": [
      -3,
      2,
      4,
      5,
      4,
      4
    ],
    "io_out": [
      -6,
      4,
      8,
      10,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, -1, 2, 3, -3]\noutput : list = [-12, 12]",
    "output": "generated_output : list = mul_n(drop([-3, -1, 2, 3, -3],3),-4)",
    "io_inp": [
      -3,
      -1,
      2,
      3,
      -3
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-4)"
  },
  {
    "input": "input : list = [-2, 3, 0, -5, 5, 4]\noutput : list = [6]",
    "output": "generated_output : list = drop(add_n(sort_asc([-2, 3, 0, -5, 5, 4]),1),5)",
    "io_inp": [
      -2,
      3,
      0,
      -5,
      5,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(input),1),5)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [-7, -4, -1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(add_n([1, -5, -2],4))),-1),2)",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(add_n(input,4))),-1),2)"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [7, 19, 19]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n([-4, -4, -1],-4),1),-2))",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      7,
      19,
      19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(input,-4),1),-2))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sub_n([-2, -3],-2),-2))))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sub_n(input,-2),-2))))"
  },
  {
    "input": "input : list = [0, 1, 5, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(take([0, 1, 5, 2],2),2),-1),3))",
    "io_inp": [
      0,
      1,
      5,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(take(input,2),2),-1),3))"
  },
  {
    "input": "input : list = [5, -3, 4]\noutput : list = [7, 6, -1]",
    "output": "generated_output : list = sort_des(sub_n([5, -3, 4],-2))",
    "io_inp": [
      5,
      -3,
      4
    ],
    "io_out": [
      7,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-3, 5, 3, 0]\noutput : list = [6, 4, 1, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_des([-3, 5, 3, 0]),-5))),-4)",
    "io_inp": [
      -3,
      5,
      3,
      0
    ],
    "io_out": [
      6,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_des(input),-5))),-4)"
  },
  {
    "input": "input : list = [5, -3, -1, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(drop([5, -3, -1, 0],2),-5),1)),3)",
    "io_inp": [
      5,
      -3,
      -1,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(drop(input,2),-5),1)),3)"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [7, 9, 11]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(add_n([0, 2, 4],-1),4),5),-3),-4)",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      7,
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(add_n(input,-1),4),5),-3),-4)"
  },
  {
    "input": "input : list = [3, 3, -2, -1, -5]\noutput : list = [-36, -36, 24, 12, 60]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n([3, 3, -2, -1, -5],-4))),3)",
    "io_inp": [
      3,
      3,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -36,
      -36,
      24,
      12,
      60
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(input,-4))),3)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [3, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(mul_n([2, 4],2))),-1))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(mul_n(input,2))),-1))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [62, 38]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(mul_n([3, 5],4),3),5),3))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      62,
      38
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(mul_n(input,4),3),5),3))"
  },
  {
    "input": "input : list = [1, -1, 5, 2]\noutput : list = [20, 8]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(sort_des([1, -1, 5, 2]),5),2),5),4)",
    "io_inp": [
      1,
      -1,
      5,
      2
    ],
    "io_out": [
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(sort_des(input),5),2),5),4)"
  },
  {
    "input": "input : list = [3, 5, -1, -1]\noutput : list = [7, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(drop([3, 5, -1, -1],1),2),1),3))",
    "io_inp": [
      3,
      5,
      -1,
      -1
    ],
    "io_out": [
      7,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(drop(input,1),2),1),3))"
  },
  {
    "input": "input : list = [0, -1, -5, 5, -4]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc(take([0, -1, -5, 5, -4],3))),3))",
    "io_inp": [
      0,
      -1,
      -5,
      5,
      -4
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(take(input,3))),3))"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = drop([-3, 0, -1],1)",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 1, -1, 4, 1]\noutput : list = [1, 4, -1, 1, 2]",
    "output": "generated_output : list = take(reverse([2, 1, -1, 4, 1]),21)",
    "io_inp": [
      2,
      1,
      -1,
      4,
      1
    ],
    "io_out": [
      1,
      4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),21)"
  },
  {
    "input": "input : list = [-4, 0, -3, -1, -3, -5]\noutput : list = [25, 19, 13, 19, 10, 22]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n([-4, 0, -3, -1, -3, -5],-5)),-3),-5)",
    "io_inp": [
      -4,
      0,
      -3,
      -1,
      -3,
      -5
    ],
    "io_out": [
      25,
      19,
      13,
      19,
      10,
      22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(input,-5)),-3),-5)"
  },
  {
    "input": "input : list = [2, 0, 5, 3, 0, 1]\noutput : list = [10, 8, 13, 11, 8, 9]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(sub_n([2, 0, 5, 3, 0, 1],1),-4),-4),5),-4)",
    "io_inp": [
      2,
      0,
      5,
      3,
      0,
      1
    ],
    "io_out": [
      10,
      8,
      13,
      11,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(sub_n(input,1),-4),-4),5),-4)"
  },
  {
    "input": "input : list = [4, 0, 0, 4]\noutput : list = [6, 6, 2, 2]",
    "output": "generated_output : list = sub_n(take(take(sub_n(sort_des([4, 0, 0, 4]),2),15),13),-4)",
    "io_inp": [
      4,
      0,
      0,
      4
    ],
    "io_out": [
      6,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(sort_des(input),2),15),13),-4)"
  },
  {
    "input": "input : list = [5, 0, 1, -1]\noutput : list = [-4, 4, 0, 20]",
    "output": "generated_output : list = mul_n(reverse([5, 0, 1, -1]),4)",
    "io_inp": [
      5,
      0,
      1,
      -1
    ],
    "io_out": [
      -4,
      4,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [10, 6, 1]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(reverse([5, -4, 1])),3),5))",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      10,
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(reverse(input)),3),5))"
  },
  {
    "input": "input : list = [-1, -2, -3]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(reverse(sort_asc([-1, -2, -3]))),4))",
    "io_inp": [
      -1,
      -2,
      -3
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(reverse(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [-1, -5, -2, -2, 3]\noutput : list = [-8, 8, 12, 12, 24]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(reverse([-1, -5, -2, -2, 3])),1),39),-4)",
    "io_inp": [
      -1,
      -5,
      -2,
      -2,
      3
    ],
    "io_out": [
      -8,
      8,
      12,
      12,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(reverse(input)),1),39),-4)"
  },
  {
    "input": "input : list = [2, 3, 4, 3, -5, 0]\noutput : list = [0, -5, 3, 4, 3, 2]",
    "output": "generated_output : list = reverse([2, 3, 4, 3, -5, 0])",
    "io_inp": [
      2,
      3,
      4,
      3,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      3,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, -4, -4, -2, 3]\noutput : list = [-3, -4, -5, -8, -10, -10]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(add_n([1, 2, -4, -4, -2, 3],-5),-4),5)))",
    "io_inp": [
      1,
      2,
      -4,
      -4,
      -2,
      3
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(add_n(input,-5),-4),5)))"
  },
  {
    "input": "input : list = [0, -1, -1, 2, -3, 0]\noutput : list = [5, 3, 3, 2, 2]",
    "output": "generated_output : list = sort_des(add_n(mul_n(drop(sort_asc([0, -1, -1, 2, -3, 0]),1),1),3))",
    "io_inp": [
      0,
      -1,
      -1,
      2,
      -3,
      0
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(drop(sort_asc(input),1),1),3))"
  },
  {
    "input": "input : list = [-1, -2, -2, 4]\noutput : list = [-2, -2, 4]",
    "output": "generated_output : list = drop([-1, -2, -2, 4],1)",
    "io_inp": [
      -1,
      -2,
      -2,
      4
    ],
    "io_out": [
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(sort_des([-2, 1, 1]),18))))",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(sort_des(input),18))))"
  },
  {
    "input": "input : list = [-5, 0, 2, -5]\noutput : list = [-4, 1, 3, -4]",
    "output": "generated_output : list = sub_n(reverse(reverse([-5, 0, 2, -5])),-1)",
    "io_inp": [
      -5,
      0,
      2,
      -5
    ],
    "io_out": [
      -4,
      1,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-1)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, -6]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc([-1, 4])),3),-2))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc(input)),3),-2))"
  },
  {
    "input": "input : list = [5, 5, 3, 4]\noutput : list = [5, 5, 4, 3]",
    "output": "generated_output : list = reverse(sort_asc([5, 5, 3, 4]))",
    "io_inp": [
      5,
      5,
      3,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 4, 2, -3, -5]\noutput : list = [-7, -5, 0, 2, -5]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(add_n([-3, 4, 2, -3, -5],-2)),1),1),30)",
    "io_inp": [
      -3,
      4,
      2,
      -3,
      -5
    ],
    "io_out": [
      -7,
      -5,
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(add_n(input,-2)),1),1),30)"
  },
  {
    "input": "input : list = [-3, -5, 4, 3, -5]\noutput : list = [-2, 6, 7, -2, 0]",
    "output": "generated_output : list = sub_n(sub_n(reverse([-3, -5, 4, 3, -5]),-4),1)",
    "io_inp": [
      -3,
      -5,
      4,
      3,
      -5
    ],
    "io_out": [
      -2,
      6,
      7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-4),1)"
  },
  {
    "input": "input : list = [-5, 1, 0, -5, 2, -2]\noutput : list = [-6, -6, -3, -1, 0, 1]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(reverse([-5, 1, 0, -5, 2, -2]))),-1),51)",
    "io_inp": [
      -5,
      1,
      0,
      -5,
      2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(reverse(input))),-1),51)"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [6, 3, 6]",
    "output": "generated_output : list = reverse(take(mul_n(reverse(add_n([-5, -2, -5],-1)),-1),39))",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      6,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(add_n(input,-1)),-1),39))"
  },
  {
    "input": "input : list = [-1, -1, -4, -2, -3, -4]\noutput : list = [26, 18, 22, 26]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(drop([-1, -1, -4, -2, -3, -4],2),-2),-4),1),2)",
    "io_inp": [
      -1,
      -1,
      -4,
      -2,
      -3,
      -4
    ],
    "io_out": [
      26,
      18,
      22,
      26
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(drop(input,2),-2),-4),1),2)"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-9, -8, -8]",
    "output": "generated_output : list = sub_n([-4, -3, -3],5)",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, 1, -3, -5, 1, -2]\noutput : list = [-10, -10, 26, 26, 38, 62]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(mul_n([-2, 1, -3, -5, 1, -2],4)),-3),2))",
    "io_inp": [
      -2,
      1,
      -3,
      -5,
      1,
      -2
    ],
    "io_out": [
      -10,
      -10,
      26,
      26,
      38,
      62
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(mul_n(input,4)),-3),2))"
  },
  {
    "input": "input : list = [1, 1, 4, 1, -2, -3]\noutput : list = [14, 10, -2, -2, -2, -14]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(sort_asc([1, 1, 4, 1, -2, -3]),-4),-2)))",
    "io_inp": [
      1,
      1,
      4,
      1,
      -2,
      -3
    ],
    "io_out": [
      14,
      10,
      -2,
      -2,
      -2,
      -14
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(sort_asc(input),-4),-2)))"
  },
  {
    "input": "input : list = [-3, 0, 3, -2, 5]\noutput : list = [-5, -2, 1, -4, 3]",
    "output": "generated_output : list = sub_n([-3, 0, 3, -2, 5],2)",
    "io_inp": [
      -3,
      0,
      3,
      -2,
      5
    ],
    "io_out": [
      -5,
      -2,
      1,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 2, 5, 2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(drop([-4, 2, 5, 2, 2],3)),4),1))",
    "io_inp": [
      -4,
      2,
      5,
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(drop(input,3)),4),1))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(reverse([1, 2]))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [0, 1, 6]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(sub_n([-4, 1, -5],-3)),-2)),16)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(sub_n(input,-3)),-2)),16)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-24]",
    "output": "generated_output : list = take(mul_n(add_n(take(take([3, -2, -1],1),9),5),-3),19)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(take(input,1),9),5),-3),19)"
  },
  {
    "input": "input : list = [1, 4, -1, 3, 1]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n(take([1, 4, -1, 3, 1],1),-3)),-3))",
    "io_inp": [
      1,
      4,
      -1,
      3,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(take(input,1),-3)),-3))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [8, -7]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(reverse([-4, 1]),-3)),-4),31)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      8,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(reverse(input),-3)),-4),31)"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take([-2, 0, 4],1)),5))",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(input,1)),5))"
  },
  {
    "input": "input : list = [-3, 5, 1, -5, 1, 5]\noutput : list = [-35, 5, -15, -45, -15, 5]",
    "output": "generated_output : list = mul_n(sub_n([-3, 5, 1, -5, 1, 5],4),5)",
    "io_inp": [
      -3,
      5,
      1,
      -5,
      1,
      5
    ],
    "io_out": [
      -35,
      5,
      -15,
      -45,
      -15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,4),5)"
  },
  {
    "input": "input : list = [4, -5, -4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(take([4, -5, -4],1))",
    "io_inp": [
      4,
      -5,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-2, -3, 0, 0, 3, 4]\noutput : list = [-8, -7, -4, -4, -2, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sort_des([-2, -3, 0, 0, 3, 4]),16),-1),5),1)",
    "io_inp": [
      -2,
      -3,
      0,
      0,
      3,
      4
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sort_des(input),16),-1),5),1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des([5, -4])",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, -2, -4, 3, -5]\noutput : list = [6, 8, 16, 18, 22, 24]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(sort_des([-1, 4, -2, -4, 3, -5])),5),-2),-2)",
    "io_inp": [
      -1,
      4,
      -2,
      -4,
      3,
      -5
    ],
    "io_out": [
      6,
      8,
      16,
      18,
      22,
      24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(sort_des(input)),5),-2),-2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = add_n(add_n(take(reverse(reverse([3, -3])),4),-2),2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(reverse(input)),4),-2),2)"
  },
  {
    "input": "input : list = [-3, -2, 1, 5]\noutput : list = [-10, -2, 4, 6]",
    "output": "generated_output : list = mul_n(sort_des([-3, -2, 1, 5]),-2)",
    "io_inp": [
      -3,
      -2,
      1,
      5
    ],
    "io_out": [
      -10,
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-81, 3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n([-5, 2],3),4),4),5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -81,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(input,3),4),4),5)"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [4, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(add_n([5, 1, 0],-2)),-4)),-5)",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(add_n(input,-2)),-4)),-5)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(sub_n([-3, -1, -1],2),2),2)),-5)",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(sub_n(input,2),2),2)),-5)"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [5, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(sub_n([0, 5, -2],-2),-2),15)))",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(sub_n(input,-2),-2),15)))"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [2, 0, -3]",
    "output": "generated_output : list = sort_des([2, -3, 0])",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, -4, -5, 2, 1]\noutput : list = [5, 2, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(drop(reverse(sort_asc([-2, 3, -4, -5, 2, 1])),2)),-4)",
    "io_inp": [
      -2,
      3,
      -4,
      -5,
      2,
      1
    ],
    "io_out": [
      5,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(reverse(sort_asc(input)),2)),-4)"
  },
  {
    "input": "input : list = [-1, -2, -3, 3, -2]\noutput : list = [6, 2, 1, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sort_asc([-1, -2, -3, 3, -2])),-4)),-1)",
    "io_inp": [
      -1,
      -2,
      -3,
      3,
      -2
    ],
    "io_out": [
      6,
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sort_asc(input)),-4)),-1)"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [-3, 0, 3]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(mul_n([-1, 0, 1],1)),5),11),3)",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(mul_n(input,1)),5),11),3)"
  },
  {
    "input": "input : list = [4, 2, 1, -2, 1, 1]\noutput : list = [12, 8, 6, 6, 6, 0]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(sub_n([4, 2, 1, -2, 1, 1],-4),2),2)))",
    "io_inp": [
      4,
      2,
      1,
      -2,
      1,
      1
    ],
    "io_out": [
      12,
      8,
      6,
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(sub_n(input,-4),2),2)))"
  },
  {
    "input": "input : list = [2, 5, 2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = reverse(take(drop(drop([2, 5, 2, -1],1),1),21))",
    "io_inp": [
      2,
      5,
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(drop(drop(input,1),1),21))"
  },
  {
    "input": "input : list = [0, 1, 0, 3, 1]\noutput : list = [36, 60, 24, 36, 24]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n([0, 1, 0, 3, 1],-2),-4)),-3),2)",
    "io_inp": [
      0,
      1,
      0,
      3,
      1
    ],
    "io_out": [
      36,
      60,
      24,
      36,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n(input,-2),-4)),-3),2)"
  },
  {
    "input": "input : list = [4, 4, -4, 4]\noutput : list = [-20, -20, 20, -20]",
    "output": "generated_output : list = mul_n([4, 4, -4, 4],-5)",
    "io_inp": [
      4,
      4,
      -4,
      4
    ],
    "io_out": [
      -20,
      -20,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -4, -2, -5, 3]\noutput : list = [-1, -13, -9, -15, 1]",
    "output": "generated_output : list = add_n(add_n(add_n(take(mul_n([2, -4, -2, -5, 3],2),11),1),-5),-1)",
    "io_inp": [
      2,
      -4,
      -2,
      -5,
      3
    ],
    "io_out": [
      -1,
      -13,
      -9,
      -15,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(mul_n(input,2),11),1),-5),-1)"
  },
  {
    "input": "input : list = [-5, -3, -2, -2, -1]\noutput : list = [-4, -2, -1, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(sort_asc([-5, -3, -2, -2, -1]),1),11)))",
    "io_inp": [
      -5,
      -3,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(sort_asc(input),1),11)))"
  },
  {
    "input": "input : list = [3, 5, -2, 2, -5, 0]\noutput : list = [13, 4, -2, -8, -11, -17]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_des([3, 5, -2, 2, -5, 0]),-3))),2)",
    "io_inp": [
      3,
      5,
      -2,
      2,
      -5,
      0
    ],
    "io_out": [
      13,
      4,
      -2,
      -8,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_des(input),-3))),2)"
  },
  {
    "input": "input : list = [1, 5, -1, 3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take([1, 5, -1, 3],1))",
    "io_inp": [
      1,
      5,
      -1,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des(sub_n([-2, 0],1))),26))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(sub_n(input,1))),26))"
  },
  {
    "input": "input : list = [2, -5, -1, 2]\noutput : list = [-5, -1, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(sort_des([2, -5, -1, 2]),3),-3)))",
    "io_inp": [
      2,
      -5,
      -1,
      2
    ],
    "io_out": [
      -5,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(sort_des(input),3),-3)))"
  },
  {
    "input": "input : list = [5, 1, -1, 0, -3]\noutput : list = [97, 33, 1, -31, -159]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(mul_n([5, 1, -1, 0, -3],2),-4),4)),1)",
    "io_inp": [
      5,
      1,
      -1,
      0,
      -3
    ],
    "io_out": [
      97,
      33,
      1,
      -31,
      -159
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(mul_n(input,2),-4),4)),1)"
  },
  {
    "input": "input : list = [1, 3, 5]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([1, 3, 5],-2)),4)",
    "io_inp": [
      1,
      3,
      5
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-2)),4)"
  },
  {
    "input": "input : list = [-5, -3, -4, 0]\noutput : list = [-6, -5, -4, -1]",
    "output": "generated_output : list = reverse(sort_des(add_n([-5, -3, -4, 0],-1)))",
    "io_inp": [
      -5,
      -3,
      -4,
      0
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,-1)))"
  },
  {
    "input": "input : list = [0, 0, -3, 1, 1]\noutput : list = [1, 1, 0, 0, -3]",
    "output": "generated_output : list = sort_des([0, 0, -3, 1, 1])",
    "io_inp": [
      0,
      0,
      -3,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, 0]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(add_n([1, 1, 0],-5),-3),-1),33))",
    "io_inp": [
      1,
      1,
      0
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(add_n(input,-5),-3),-1),33))"
  },
  {
    "input": "input : list = [2, 3, -3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(drop([2, 3, -3, 0],2),-2)),2))",
    "io_inp": [
      2,
      3,
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(drop(input,2),-2)),2))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(sort_des([3, 5]))),-2))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [2, -3, 1, -2, 4]\noutput : list = [7, 10, 13]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(drop([2, -3, 1, -2, 4],2)),18),5),4)",
    "io_inp": [
      2,
      -3,
      1,
      -2,
      4
    ],
    "io_out": [
      7,
      10,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(drop(input,2)),18),5),4)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-19, 1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sort_asc([3, -1]),-5)),1),-4)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -19,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sort_asc(input),-5)),1),-4)"
  },
  {
    "input": "input : list = [2, -5, -2, 4]\noutput : list = [2, -5]",
    "output": "generated_output : list = take(take([2, -5, -2, 4],2),18)",
    "io_inp": [
      2,
      -5,
      -2,
      4
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,2),18)"
  },
  {
    "input": "input : list = [1, -4, -1, -5, 2, 5]\noutput : list = [8, -4, 16]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(take([1, -4, -1, -5, 2, 5],3),2),5),4))",
    "io_inp": [
      1,
      -4,
      -1,
      -5,
      2,
      5
    ],
    "io_out": [
      8,
      -4,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(take(input,3),2),5),4))"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [-5, -5, 3]",
    "output": "generated_output : list = sort_asc([-5, 3, -5])",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_asc([2, 5])))))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [-24, 0, 8]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n([-1, -3, 5],-1),18),-4))",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      -24,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(input,-1),18),-4))"
  },
  {
    "input": "input : list = [5, -4, -5]\noutput : list = [-5, -4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, -4, -5]))",
    "io_inp": [
      5,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -3, 2, -3, -3, 4]\noutput : list = [7, 8, 13, 8, 8, 15]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(add_n([-4, -3, 2, -3, -3, 4],4),-1),5),-1),56)",
    "io_inp": [
      -4,
      -3,
      2,
      -3,
      -3,
      4
    ],
    "io_out": [
      7,
      8,
      13,
      8,
      8,
      15
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(add_n(input,4),-1),5),-1),56)"
  },
  {
    "input": "input : list = [0, -4, 0, 1, 4]\noutput : list = [39, 27, 27, 24, 15]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sub_n([0, -4, 0, 1, 4],5)),3),-3),-3)",
    "io_inp": [
      0,
      -4,
      0,
      1,
      4
    ],
    "io_out": [
      39,
      27,
      27,
      24,
      15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sub_n(input,5)),3),-3),-3)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des([0, -3])",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_asc([-1, 2])),4)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-4, 0, 4, 2]\noutput : list = [31]",
    "output": "generated_output : list = drop(sub_n(sort_asc(mul_n(mul_n([-4, 0, 4, 2],2),-4)),1),3)",
    "io_inp": [
      -4,
      0,
      4,
      2
    ],
    "io_out": [
      31
    ],
    "output_masked": "generated_output : list = drop(sub_n(sort_asc(mul_n(mul_n(input,2),-4)),1),3)"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [-2, -2, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(sort_asc([-4, -4, -5])),7),-2))",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(sort_asc(input)),7),-2))"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [0, -8, -8]",
    "output": "generated_output : list = add_n([3, -5, -5],-3)",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(take([-3, -4, -3],1),-3)",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc([-5, 4])",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, 4, 5, 2]\noutput : list = [-1, 0, 8, 9, 6]",
    "output": "generated_output : list = add_n([-5, -4, 4, 5, 2],4)",
    "io_inp": [
      -5,
      -4,
      4,
      5,
      2
    ],
    "io_out": [
      -1,
      0,
      8,
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-3, 4, -3, 1, -5, -2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(take(take(reverse(take([-3, 4, -3, 1, -5, -2],2)),21),20))",
    "io_inp": [
      -3,
      4,
      -3,
      1,
      -5,
      -2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(take(input,2)),21),20))"
  },
  {
    "input": "input : list = [-3, 5, 1, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = add_n(take([-3, 5, 1, -4],2),-1)",
    "io_inp": [
      -3,
      5,
      1,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [5, 2, -5, 5]\noutput : list = [18, 9, -12, 18]",
    "output": "generated_output : list = sub_n(add_n(mul_n([5, 2, -5, 5],3),4),1)",
    "io_inp": [
      5,
      2,
      -5,
      5
    ],
    "io_out": [
      18,
      9,
      -12,
      18
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,3),4),1)"
  },
  {
    "input": "input : list = [0, -3, 0, -4, 4, 4]\noutput : list = [12, 12, 4, 4, -2, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(mul_n([0, -3, 0, -4, 4, 4],2),-4)),4),-4)",
    "io_inp": [
      0,
      -3,
      0,
      -4,
      4,
      4
    ],
    "io_out": [
      12,
      12,
      4,
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(mul_n(input,2),-4)),4),-4)"
  },
  {
    "input": "input : list = [2, -3, 3, 4, 1]\noutput : list = [-2, 2, 3, 4, 5]",
    "output": "generated_output : list = add_n(take(sort_asc([2, -3, 3, 4, 1]),14),1)",
    "io_inp": [
      2,
      -3,
      3,
      4,
      1
    ],
    "io_out": [
      -2,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),14),1)"
  },
  {
    "input": "input : list = [-5, 1, 1, 5]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(drop([-5, 1, 1, 5],1),1)),28),-1)",
    "io_inp": [
      -5,
      1,
      1,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(drop(input,1),1)),28),-1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = take(take(reverse(take(reverse([-4, 5]),12)),5),25)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(reverse(input),12)),5),25)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(reverse([5, 2]),-1),-1)),26)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(reverse(input),-1),-1)),26)"
  },
  {
    "input": "input : list = [4, 3, 0, 4, -2]\noutput : list = [6, 5, 2, 6, 0]",
    "output": "generated_output : list = sub_n([4, 3, 0, 4, -2],-2)",
    "io_inp": [
      4,
      3,
      0,
      4,
      -2
    ],
    "io_out": [
      6,
      5,
      2,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-6, -10]",
    "output": "generated_output : list = mul_n(mul_n([3, 5],-1),2)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),2)"
  },
  {
    "input": "input : list = [-4, -2, 5, -2, 0, 3]\noutput : list = [-22, -12, 3, 13, 13, 23]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(sort_asc([-4, -2, 5, -2, 0, 3]),-5)),5),2)",
    "io_inp": [
      -4,
      -2,
      5,
      -2,
      0,
      3
    ],
    "io_out": [
      -22,
      -12,
      3,
      13,
      13,
      23
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(sort_asc(input),-5)),5),2)"
  },
  {
    "input": "input : list = [5, -4, 5, -4, -2, -3]\noutput : list = [8, 8, 1, 0, -1, -1]",
    "output": "generated_output : list = sort_des(add_n([5, -4, 5, -4, -2, -3],3))",
    "io_inp": [
      5,
      -4,
      5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      8,
      8,
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-1, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(sort_des([1, -1, 1]),5),1)),-3)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(sort_des(input),5),1)),-3)"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [-2, 4, 1]",
    "output": "generated_output : list = add_n([-1, 5, 2],-1)",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      -2,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 1, -3, -4]\noutput : list = [-17, -7, 3, 8]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(sub_n([-1, 1, -3, -4],-2)),-5),-2))",
    "io_inp": [
      -1,
      1,
      -3,
      -4
    ],
    "io_out": [
      -17,
      -7,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(sub_n(input,-2)),-5),-2))"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [5]",
    "output": "generated_output : list = drop(reverse(reverse([-3, 1, 5])),2)",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(reverse(reverse(input)),2)"
  },
  {
    "input": "input : list = [-3, 0, -5, -4, 5, 5]\noutput : list = [-20, -17, -22, -21, -12, -12]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n([-3, 0, -5, -4, 5, 5],-5),4),1),4),-4)",
    "io_inp": [
      -3,
      0,
      -5,
      -4,
      5,
      5
    ],
    "io_out": [
      -20,
      -17,
      -22,
      -21,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n(input,-5),4),1),4),-4)"
  },
  {
    "input": "input : list = [-3, 2, 0, -1, -1, 0]\noutput : list = [12, -8, 0, 4, 4, 0]",
    "output": "generated_output : list = mul_n([-3, 2, 0, -1, -1, 0],-4)",
    "io_inp": [
      -3,
      2,
      0,
      -1,
      -1,
      0
    ],
    "io_out": [
      12,
      -8,
      0,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [-2, 3, 7]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(reverse([0, -5, 4]),3))),1)",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      -2,
      3,
      7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(reverse(input),3))),1)"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [0, 7, 6]",
    "output": "generated_output : list = sub_n(add_n([-5, 2, 1],3),-2)",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      0,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [2, 4, 9]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(reverse([2, -3, 4])),-3),-1),3)",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      2,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(reverse(input)),-3),-1),3)"
  },
  {
    "input": "input : list = [0, -4, 2, -2, 5, 4]\noutput : list = [-2, 5, 4]",
    "output": "generated_output : list = drop([0, -4, 2, -2, 5, 4],3)",
    "io_inp": [
      0,
      -4,
      2,
      -2,
      5,
      4
    ],
    "io_out": [
      -2,
      5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, -3, -2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(drop([-3, -3, -2, 1],2),7)",
    "io_inp": [
      -3,
      -3,
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,2),7)"
  },
  {
    "input": "input : list = [2, 0, 3, -1, -2, 5]\noutput : list = [-4, 3, 2, -2, 1, -1]",
    "output": "generated_output : list = mul_n(reverse(add_n([2, 0, 3, -1, -2, 5],-1)),-1)",
    "io_inp": [
      2,
      0,
      3,
      -1,
      -2,
      5
    ],
    "io_out": [
      -4,
      3,
      2,
      -2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-1)),-1)"
  },
  {
    "input": "input : list = [2, 5, -2, 4, 4, 4]\noutput : list = [-20, -16, -16, -16, -8, 8]",
    "output": "generated_output : list = mul_n(sort_des([2, 5, -2, 4, 4, 4]),-4)",
    "io_inp": [
      2,
      5,
      -2,
      4,
      4,
      4
    ],
    "io_out": [
      -20,
      -16,
      -16,
      -16,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [4, 3, 3, -4]\noutput : list = [-4, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([4, 3, 3, -4])))",
    "io_inp": [
      4,
      3,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, 1, -4, -4, -3]\noutput : list = [-3, -6, -7, -8, -8]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(sort_asc([-2, 1, -4, -4, -3])),4),33),1)",
    "io_inp": [
      -2,
      1,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -6,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(sort_asc(input)),4),33),1)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [2, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(reverse([2, -4]),4))),-2)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(reverse(input),4))),-2)"
  },
  {
    "input": "input : list = [-1, 3, 5, 0]\noutput : list = [-19, -11, 1, 5]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(mul_n([-1, 3, 5, 0],-4)),28),-1))",
    "io_inp": [
      -1,
      3,
      5,
      0
    ],
    "io_out": [
      -19,
      -11,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(mul_n(input,-4)),28),-1))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc([-4, -1])",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [0, -2, -10]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(reverse([-1, 0, -5])),2)),17)",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      0,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(reverse(input)),2)),17)"
  },
  {
    "input": "input : list = [-5, 5, -4, -2, -5]\noutput : list = [0, -9, -7, -10]",
    "output": "generated_output : list = take(add_n(drop([-5, 5, -4, -2, -5],1),-5),31)",
    "io_inp": [
      -5,
      5,
      -4,
      -2,
      -5
    ],
    "io_out": [
      0,
      -9,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,1),-5),31)"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [-9, -1, -8]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(sub_n([-5, 3, -4],1),-5),-4),-4),6)",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      -9,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(sub_n(input,1),-5),-4),-4),6)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-6, 4, -5]",
    "output": "generated_output : list = sub_n([-5, 5, -4],1)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -6,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = drop([3, -5, 0],1)",
    "io_inp": [
      3,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [2, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(drop([1, 0, -5],1))),-2))",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(drop(input,1))),-2))"
  },
  {
    "input": "input : list = [3, 0, 2, -5]\noutput : list = [3, 0]",
    "output": "generated_output : list = take([3, 0, 2, -5],2)",
    "io_inp": [
      3,
      0,
      2,
      -5
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -2, 0, -2]\noutput : list = [-28, -12, -4, -4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sort_asc([4, -2, 0, -2]),1),-4)),-4)",
    "io_inp": [
      4,
      -2,
      0,
      -2
    ],
    "io_out": [
      -28,
      -12,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sort_asc(input),1),-4)),-4)"
  },
  {
    "input": "input : list = [1, 1, 5, 0, 0, 1]\noutput : list = [48]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(take([1, 1, 5, 0, 0, 1],1),-5),3),-4),-2)",
    "io_inp": [
      1,
      1,
      5,
      0,
      0,
      1
    ],
    "io_out": [
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(take(input,1),-5),3),-4),-2)"
  },
  {
    "input": "input : list = [0, -3, -4, 3, -2]\noutput : list = [-12, -3, 3, 6, 9]",
    "output": "generated_output : list = mul_n(sort_des(add_n([0, -3, -4, 3, -2],1)),-3)",
    "io_inp": [
      0,
      -3,
      -4,
      3,
      -2
    ],
    "io_out": [
      -12,
      -3,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,1)),-3)"
  },
  {
    "input": "input : list = [-4, -3, -4, -2, 0]\noutput : list = [-5, -5, -4, -3, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(sort_des([-4, -3, -4, -2, 0]))),1),5)",
    "io_inp": [
      -4,
      -3,
      -4,
      -2,
      0
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(sort_des(input))),1),5)"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 3, 3],1)",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -1, 0, 0]\noutput : list = [8, -2, 0, 0]",
    "output": "generated_output : list = mul_n([4, -1, 0, 0],2)",
    "io_inp": [
      4,
      -1,
      0,
      0
    ],
    "io_out": [
      8,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 3, 4, 2, -2, 3]\noutput : list = [8, 12, 13, 13, 14, 15]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(add_n([5, 3, 4, 2, -2, 3],5),5)),28))",
    "io_inp": [
      5,
      3,
      4,
      2,
      -2,
      3
    ],
    "io_out": [
      8,
      12,
      13,
      13,
      14,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(add_n(input,5),5)),28))"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [20, 35, 35]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(add_n([1, -2, -2],-5),9))),-5)",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      20,
      35,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(add_n(input,-5),9))),-5)"
  },
  {
    "input": "input : list = [5, 3, 3]\noutput : list = [-12, -12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(drop([5, 3, 3],1))),-4))",
    "io_inp": [
      5,
      3,
      3
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(drop(input,1))),-4))"
  },
  {
    "input": "input : list = [-2, -2, -1]\noutput : list = [-2, -2, -1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc([-2, -2, -1])),29))",
    "io_inp": [
      -2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(input)),29))"
  },
  {
    "input": "input : list = [-2, 2, 4, 4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 2, 4, 4, 2],1)",
    "io_inp": [
      -2,
      2,
      4,
      4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 3, 4, -3, 5, 4]\noutput : list = [2, 1, 2, -5, 3, 2]",
    "output": "generated_output : list = sub_n(take(reverse(reverse([4, 3, 4, -3, 5, 4])),13),2)",
    "io_inp": [
      4,
      3,
      4,
      -3,
      5,
      4
    ],
    "io_out": [
      2,
      1,
      2,
      -5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(input)),13),2)"
  },
  {
    "input": "input : list = [-1, -1, 4, -5, -5]\noutput : list = [-12, -12, -3, -8, -8]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n([-1, -1, 4, -5, -5],-5)),-3),1)",
    "io_inp": [
      -1,
      -1,
      4,
      -5,
      -5
    ],
    "io_out": [
      -12,
      -12,
      -3,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(input,-5)),-3),1)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_des([0, -4]),4),-2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),4),-2)"
  },
  {
    "input": "input : list = [-4, 4, -1, 0, 3]\noutput : list = [-4, 4, -1, 0, 3]",
    "output": "generated_output : list = reverse(reverse([-4, 4, -1, 0, 3]))",
    "io_inp": [
      -4,
      4,
      -1,
      0,
      3
    ],
    "io_out": [
      -4,
      4,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, 1, 5, 5, -5]\noutput : list = [7, 7, 5, 3, -3]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(add_n([3, 1, 5, 5, -5],2)),15)))",
    "io_inp": [
      3,
      1,
      5,
      5,
      -5
    ],
    "io_out": [
      7,
      7,
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(add_n(input,2)),15)))"
  },
  {
    "input": "input : list = [-3, 5, -5, 4, -5]\noutput : list = [-20, -16, 12, 20, 20]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n([-3, 5, -5, 4, -5],-4),9)))",
    "io_inp": [
      -3,
      5,
      -5,
      4,
      -5
    ],
    "io_out": [
      -20,
      -16,
      12,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(input,-4),9)))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [7, 7]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(reverse([1, 1])),-2)),4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(reverse(input)),-2)),4)"
  },
  {
    "input": "input : list = [-1, -5, -1, 3, -3, -1]\noutput : list = [-2, -10, -2, 6, -6, -2]",
    "output": "generated_output : list = mul_n([-1, -5, -1, 3, -3, -1],2)",
    "io_inp": [
      -1,
      -5,
      -1,
      3,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -10,
      -2,
      6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [-8, -2, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(sort_des([4, -4, 2]),12))),-4)",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(sort_des(input),12))),-4)"
  },
  {
    "input": "input : list = [5, 0, -3, 0, -3, -3]\noutput : list = [0, -5, -5, -8, -8, -8]",
    "output": "generated_output : list = take(sort_des(sub_n([5, 0, -3, 0, -3, -3],5)),9)",
    "io_inp": [
      5,
      0,
      -3,
      0,
      -3,
      -3
    ],
    "io_out": [
      0,
      -5,
      -5,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,5)),9)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [1, 5]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(mul_n([0, -2],2)),-5)),20)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(mul_n(input,2)),-5)),20)"
  },
  {
    "input": "input : list = [1, -4, -1, -2]\noutput : list = [-5, 5, 10, 20]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n([1, -4, -1, -2],-5)),2),-2))",
    "io_inp": [
      1,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -5,
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n(input,-5)),2),-2))"
  },
  {
    "input": "input : list = [0, 3, 3, -4, 4]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(sub_n(take([0, 3, 3, -4, 4],1),4),3)",
    "io_inp": [
      0,
      3,
      3,
      -4,
      4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),4),3)"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [10]",
    "output": "generated_output : list = take(take(reverse(mul_n(take([-5, -2, -5],1),-2)),13),25)",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(take(input,1),-2)),13),25)"
  },
  {
    "input": "input : list = [-4, -4, -3]\noutput : list = [1, 1, 2]",
    "output": "generated_output : list = add_n([-4, -4, -3],5)",
    "io_inp": [
      -4,
      -4,
      -3
    ],
    "io_out": [
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, -2, 4, -4, -4]\noutput : list = [0, -30, -35, -40, -40]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc([-3, -2, 4, -4, -4]))),-4),5)",
    "io_inp": [
      -3,
      -2,
      4,
      -4,
      -4
    ],
    "io_out": [
      0,
      -30,
      -35,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc(input))),-4),5)"
  },
  {
    "input": "input : list = [2, 5, 5, -5, 1]\noutput : list = [4, 4, -2, -4, -16]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(sort_des([2, 5, 5, -5, 1])),3)),2)",
    "io_inp": [
      2,
      5,
      5,
      -5,
      1
    ],
    "io_out": [
      4,
      4,
      -2,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(sort_des(input)),3)),2)"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(drop([1, -2, 4],1),3))))",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(drop(input,1),3))))"
  },
  {
    "input": "input : list = [-1, 2, 2, -4]\noutput : list = [4, 7, 7, 1]",
    "output": "generated_output : list = sub_n([-1, 2, 2, -4],-5)",
    "io_inp": [
      -1,
      2,
      2,
      -4
    ],
    "io_out": [
      4,
      7,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, 2, 3, 2]\noutput : list = [-35, -30, -30, -5, 5]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(sort_des([-3, -5, 2, 3, 2]),1),-4),-5),25)",
    "io_inp": [
      -3,
      -5,
      2,
      3,
      2
    ],
    "io_out": [
      -35,
      -30,
      -30,
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(sort_des(input),1),-4),-5),25)"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [5, 4, -4]",
    "output": "generated_output : list = sort_des([-4, 5, 4])",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [12, 4]",
    "output": "generated_output : list = take(sub_n(take(take(add_n([5, -3, -2],4),2),6),-3),14)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(add_n(input,4),2),6),-3),14)"
  },
  {
    "input": "input : list = [-3, -2, -1, -5, 4]\noutput : list = [-11, -9, -8, -7, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-3, -2, -1, -5, 4]),1),-5)",
    "io_inp": [
      -3,
      -2,
      -1,
      -5,
      4
    ],
    "io_out": [
      -11,
      -9,
      -8,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),1),-5)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [7, 17]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(sub_n([3, 1],-1),5),17)),-3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      7,
      17
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(sub_n(input,-1),5),17)),-3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(sort_des([-5, 0]),9)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),9)"
  },
  {
    "input": "input : list = [2, -1, 2, -4]\noutput : list = [8, -4, 8, -16]",
    "output": "generated_output : list = mul_n([2, -1, 2, -4],4)",
    "io_inp": [
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      8,
      -4,
      8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 4, -2, 5]\noutput : list = [-4, 5, -1, 6]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(add_n([-5, 4, -2, 5],1),1),1),39),-1)",
    "io_inp": [
      -5,
      4,
      -2,
      5
    ],
    "io_out": [
      -4,
      5,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(add_n(input,1),1),1),39),-1)"
  },
  {
    "input": "input : list = [-5, 4, 4, 4, 3]\noutput : list = [-3, -4, -4, -4, 5]",
    "output": "generated_output : list = take(reverse(take(take(mul_n([-5, 4, 4, 4, 3],-1),10),28)),5)",
    "io_inp": [
      -5,
      4,
      4,
      4,
      3
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(mul_n(input,-1),10),28)),5)"
  },
  {
    "input": "input : list = [3, 1, 2, -3, 3, -2]\noutput : list = [-2, 1, 2, 3, 3]",
    "output": "generated_output : list = drop(sort_asc(sort_des([3, 1, 2, -3, 3, -2])),1)",
    "io_inp": [
      3,
      1,
      2,
      -3,
      3,
      -2
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_des(input)),1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [8, 10]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n([3, 5],-4),-1)),7)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      8,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(input,-4),-1)),7)"
  },
  {
    "input": "input : list = [-2, -4, 0, 5]\noutput : list = [-7, -1, -13, -28]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(add_n([-2, -4, 0, 5],3),-3)),4))",
    "io_inp": [
      -2,
      -4,
      0,
      5
    ],
    "io_out": [
      -7,
      -1,
      -13,
      -28
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(add_n(input,3),-3)),4))"
  },
  {
    "input": "input : list = [-3, -3, 1, 0, -5]\noutput : list = [-20, -16, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(drop([-3, -3, 1, 0, -5],2)),-4),-4))",
    "io_inp": [
      -3,
      -3,
      1,
      0,
      -5
    ],
    "io_out": [
      -20,
      -16,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(drop(input,2)),-4),-4))"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [25, -10, -20]",
    "output": "generated_output : list = take(reverse(take(mul_n(sort_asc([-4, -2, 5]),5),14)),34)",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      25,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(sort_asc(input),5),14)),34)"
  },
  {
    "input": "input : list = [-5, -1, -4, 1]\noutput : list = [-2, 0, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(sort_asc([-5, -1, -4, 1]),-1),1)))",
    "io_inp": [
      -5,
      -1,
      -4,
      1
    ],
    "io_out": [
      -2,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(sort_asc(input),-1),1)))"
  },
  {
    "input": "input : list = [5, 4, -5, -3, -1]\noutput : list = [10, 8, -10]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(take([5, 4, -5, -3, -1],3),6)),1),2)",
    "io_inp": [
      5,
      4,
      -5,
      -3,
      -1
    ],
    "io_out": [
      10,
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(take(input,3),6)),1),2)"
  },
  {
    "input": "input : list = [0, 1, 2, -4, 3, 3]\noutput : list = [12, 12, 7, 2, -3, -23]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(mul_n([0, 1, 2, -4, 3, 3],5)),3)))",
    "io_inp": [
      0,
      1,
      2,
      -4,
      3,
      3
    ],
    "io_out": [
      12,
      12,
      7,
      2,
      -3,
      -23
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(mul_n(input,5)),3)))"
  },
  {
    "input": "input : list = [-3, -1, 5, -5, -4, 0]\noutput : list = [-6, -5, -4, -2, -1, 4]",
    "output": "generated_output : list = take(reverse(take(sort_des(add_n([-3, -1, 5, -5, -4, 0],-1)),7)),11)",
    "io_inp": [
      -3,
      -1,
      5,
      -5,
      -4,
      0
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_des(add_n(input,-1)),7)),11)"
  },
  {
    "input": "input : list = [-3, 5, 3, 3, 1, 3]\noutput : list = [-3, 5, 3, 3]",
    "output": "generated_output : list = take([-3, 5, 3, 3, 1, 3],4)",
    "io_inp": [
      -3,
      5,
      3,
      3,
      1,
      3
    ],
    "io_out": [
      -3,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [1, -2, -1, 4, -1]\noutput : list = [-1, 4, -1, -2, 1]",
    "output": "generated_output : list = reverse([1, -2, -1, 4, -1])",
    "io_inp": [
      1,
      -2,
      -1,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc([0, 1])",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [32, 16]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(sub_n([4, 0],-2))),-2),4)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      32,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(sub_n(input,-2))),-2),4)"
  },
  {
    "input": "input : list = [1, 3, 0, -4, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(drop([1, 3, 0, -4, 0, -5],4)),1)))",
    "io_inp": [
      1,
      3,
      0,
      -4,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(drop(input,4)),1)))"
  },
  {
    "input": "input : list = [2, -3, -3, 1]\noutput : list = [-6, -6, -2, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(reverse([2, -3, -3, 1]),20)),1),-2)",
    "io_inp": [
      2,
      -3,
      -3,
      1
    ],
    "io_out": [
      -6,
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(reverse(input),20)),1),-2)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [30, 30, 18]",
    "output": "generated_output : list = mul_n(mul_n([5, 5, 3],2),3)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      30,
      30,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [-5, 2, -4, -3, 0, -5]\noutput : list = [2, 0, -3, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 2, -4, -3, 0, -5])",
    "io_inp": [
      -5,
      2,
      -4,
      -3,
      0,
      -5
    ],
    "io_out": [
      2,
      0,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [-3, -3, 3]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(sort_asc([-1, -1, 5])),4),2),7)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(sort_asc(input)),4),2),7)"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [-33, -48, -63]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(reverse([-2, -4, -3]),5),3)),-3)",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      -33,
      -48,
      -63
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(reverse(input),5),3)),-3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = mul_n(take(add_n(add_n([4, 3],4),-2),20),1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(input,4),-2),20),1)"
  },
  {
    "input": "input : list = [0, -2, -3, 5]\noutput : list = [3, 11, 15, -17]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n([0, -2, -3, 5],2),-4),5),33)",
    "io_inp": [
      0,
      -2,
      -3,
      5
    ],
    "io_out": [
      3,
      11,
      15,
      -17
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(input,2),-4),5),33)"
  },
  {
    "input": "input : list = [-4, 5, 4, 2]\noutput : list = [-4, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([-4, 5, 4, 2])))",
    "io_inp": [
      -4,
      5,
      4,
      2
    ],
    "io_out": [
      -4,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, 0, 3, 0, 2]\noutput : list = [0, -1, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n([-1, 0, 3, 0, 2],-1),1)))",
    "io_inp": [
      -1,
      0,
      3,
      0,
      2
    ],
    "io_out": [
      0,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(input,-1),1)))"
  },
  {
    "input": "input : list = [-1, -4, -2, 4]\noutput : list = [0, -5]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(sub_n([-1, -4, -2, 4],-3)),2),-2),5)",
    "io_inp": [
      -1,
      -4,
      -2,
      4
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(sub_n(input,-3)),2),-2),5)"
  },
  {
    "input": "input : list = [3, 0, -3]\noutput : list = [1, -5, -11]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(mul_n([3, 0, -3],-2))),5))",
    "io_inp": [
      3,
      0,
      -3
    ],
    "io_out": [
      1,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(mul_n(input,-2))),5))"
  },
  {
    "input": "input : list = [3, -1, 2]\noutput : list = [6, 3]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(drop([3, -1, 2],1))),4),15)",
    "io_inp": [
      3,
      -1,
      2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(drop(input,1))),4),15)"
  },
  {
    "input": "input : list = [3, -5, -1, 0]\noutput : list = [-43, -11, -3, 21]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(sort_des([3, -5, -1, 0]),-4)),-2),-3)",
    "io_inp": [
      3,
      -5,
      -1,
      0
    ],
    "io_out": [
      -43,
      -11,
      -3,
      21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(sort_des(input),-4)),-2),-3)"
  },
  {
    "input": "input : list = [-5, -1, 0, 3, -1, -4]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = take([-5, -1, 0, 3, -1, -4],3)",
    "io_inp": [
      -5,
      -1,
      0,
      3,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, 3, 4, 2, 1, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(take(sub_n(take([-3, 3, 4, 2, 1, 1],2),2),8))",
    "io_inp": [
      -3,
      3,
      4,
      2,
      1,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(input,2),2),8))"
  },
  {
    "input": "input : list = [-4, 1, -1, -2, -4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = drop([-4, 1, -1, -2, -4, 2],4)",
    "io_inp": [
      -4,
      1,
      -1,
      -2,
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, 4, 0, 5, -2, 1]\noutput : list = [-12, 36, 48, 72]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(drop([4, 4, 0, 5, -2, 1],2),-4)),-3),4)",
    "io_inp": [
      4,
      4,
      0,
      5,
      -2,
      1
    ],
    "io_out": [
      -12,
      36,
      48,
      72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(drop(input,2),-4)),-3),4)"
  },
  {
    "input": "input : list = [-1, 1, 2, -2, 4]\noutput : list = [8, -8, -16, 16, -32]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n([-1, 1, 2, -2, 4],1),2),6),-4)",
    "io_inp": [
      -1,
      1,
      2,
      -2,
      4
    ],
    "io_out": [
      8,
      -8,
      -16,
      16,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(input,1),2),6),-4)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n([3, 4],1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, 3, -4, 3]\noutput : list = [25, 10]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(take([0, 3, -4, 3],2)),-2),5))",
    "io_inp": [
      0,
      3,
      -4,
      3
    ],
    "io_out": [
      25,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(take(input,2)),-2),5))"
  },
  {
    "input": "input : list = [-3, -1, -2, 2, -3, 0]\noutput : list = [15, 10, 0, -10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([-3, -1, -2, 2, -3, 0],2),19),-5)))",
    "io_inp": [
      -3,
      -1,
      -2,
      2,
      -3,
      0
    ],
    "io_out": [
      15,
      10,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,2),19),-5)))"
  },
  {
    "input": "input : list = [1, -4, 1, -1, 3, -4]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(take([1, -4, 1, -1, 3, -4],3)),-2)),-3)",
    "io_inp": [
      1,
      -4,
      1,
      -1,
      3,
      -4
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(take(input,3)),-2)),-3)"
  },
  {
    "input": "input : list = [3, 5, -4, 4]\noutput : list = [5, 4, 3, -4]",
    "output": "generated_output : list = mul_n(sort_des([3, 5, -4, 4]),1)",
    "io_inp": [
      3,
      5,
      -4,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = mul_n([-4, 2],1)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, 3, 1, -1, 4, -3]\noutput : list = [15, -10, -20]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(drop([3, 3, 1, -1, 4, -3],3),5))),-5)",
    "io_inp": [
      3,
      3,
      1,
      -1,
      4,
      -3
    ],
    "io_out": [
      15,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(drop(input,3),5))),-5)"
  },
  {
    "input": "input : list = [-5, 3, -3, -4, -2]\noutput : list = [24, -8, 16, 20, 12]",
    "output": "generated_output : list = take(take(sub_n(take(mul_n([-5, 3, -3, -4, -2],-4),13),-4),16),31)",
    "io_inp": [
      -5,
      3,
      -3,
      -4,
      -2
    ],
    "io_out": [
      24,
      -8,
      16,
      20,
      12
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(mul_n(input,-4),13),-4),16),31)"
  },
  {
    "input": "input : list = [2, 5, -5, -2]\noutput : list = [5, 2, -2, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_des([2, 5, -5, -2])),25)),36)",
    "io_inp": [
      2,
      5,
      -5,
      -2
    ],
    "io_out": [
      5,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_des(input)),25)),36)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-12]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(reverse([-3, 4])),1),4))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(reverse(input)),1),4))"
  },
  {
    "input": "input : list = [0, -1, 3, 1]\noutput : list = [-3, -1, 0, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(mul_n([0, -1, 3, 1],-1),4)),-2),2)",
    "io_inp": [
      0,
      -1,
      3,
      1
    ],
    "io_out": [
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(mul_n(input,-1),4)),-2),2)"
  },
  {
    "input": "input : list = [-1, 0, 0, -2, -5]\noutput : list = [1, 1, 0, -1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sort_asc([-1, 0, 0, -2, -5]),24))),1)",
    "io_inp": [
      -1,
      0,
      0,
      -2,
      -5
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sort_asc(input),24))),1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([4, -4])",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, 5, -3]\noutput : list = [-26, 14]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(drop([3, -5, 5, -3],2),-5),1)))",
    "io_inp": [
      3,
      -5,
      5,
      -3
    ],
    "io_out": [
      -26,
      14
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(drop(input,2),-5),1)))"
  },
  {
    "input": "input : list = [5, -3, -1, 3]\noutput : list = [4, 8, 16, 20]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc([5, -3, -1, 3])),2),-3),2)",
    "io_inp": [
      5,
      -3,
      -1,
      3
    ],
    "io_out": [
      4,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc(input)),2),-3),2)"
  },
  {
    "input": "input : list = [2, 5, -2, 5, 2]\noutput : list = [4, 7, 0, 7, 4]",
    "output": "generated_output : list = sub_n([2, 5, -2, 5, 2],-2)",
    "io_inp": [
      2,
      5,
      -2,
      5,
      2
    ],
    "io_out": [
      4,
      7,
      0,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [9]",
    "output": "generated_output : list = sort_des(mul_n(drop(add_n(drop([-5, -2, 1],1),-4),1),-3))",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(add_n(drop(input,1),-4),1),-3))"
  },
  {
    "input": "input : list = [-5, 4, 0, -3, 5, -5]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(add_n([-5, 4, 0, -3, 5, -5],4)),1)),-2)",
    "io_inp": [
      -5,
      4,
      0,
      -3,
      5,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(add_n(input,4)),1)),-2)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n(add_n(sub_n([0, 1],1),-1),-2)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,1),-1),-2)"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [8, 7, 3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(add_n([-5, 0, -1],5),2),-5)))",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(add_n(input,5),2),-5)))"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [-4, 2, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, 2])",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -3, 3]\noutput : list = [-3, -7, -1]",
    "output": "generated_output : list = add_n([1, -3, 3],-4)",
    "io_inp": [
      1,
      -3,
      3
    ],
    "io_out": [
      -3,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, -3, 2, 4]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(drop([2, -3, 2, 4],2),-4),-3)))",
    "io_inp": [
      2,
      -3,
      2,
      4
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(drop(input,2),-4),-3)))"
  },
  {
    "input": "input : list = [4, 1, -5, -2, -3]\noutput : list = [1, 5, 7, 13, 19]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(sub_n([4, 1, -5, -2, -3],-4)),2),40),3)",
    "io_inp": [
      4,
      1,
      -5,
      -2,
      -3
    ],
    "io_out": [
      1,
      5,
      7,
      13,
      19
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(sub_n(input,-4)),2),40),3)"
  },
  {
    "input": "input : list = [3, -5, 5, -5, 4]\noutput : list = [4, -5, 5, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 5, -5, 4])",
    "io_inp": [
      3,
      -5,
      5,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 0, -2, 1, 2, -2]\noutput : list = [-2, -2, 0, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([0, 0, -2, 1, 2, -2]))",
    "io_inp": [
      0,
      0,
      -2,
      1,
      2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      0,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, 0, -2, -3, -3, -4]\noutput : list = [-5, -7, -8, -8, -9]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(drop([4, 0, -2, -3, -3, -4],1),-2)),3))",
    "io_inp": [
      4,
      0,
      -2,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(drop(input,1),-2)),3))"
  },
  {
    "input": "input : list = [-5, -2, 5, -1]\noutput : list = [12, 3, -18, 0]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(mul_n([-5, -2, 5, -1],-3),3),1),1),22)",
    "io_inp": [
      -5,
      -2,
      5,
      -1
    ],
    "io_out": [
      12,
      3,
      -18,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(mul_n(input,-3),3),1),1),22)"
  },
  {
    "input": "input : list = [1, -1, -2, -5, 1, 0]\noutput : list = [-8, -5, -4, -3, -2, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(sort_des([1, -1, -2, -5, 1, 0]),-2),5),4))",
    "io_inp": [
      1,
      -1,
      -2,
      -5,
      1,
      0
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(sort_des(input),-2),5),4))"
  },
  {
    "input": "input : list = [5, 4, -2, -5]\noutput : list = [-15, -12, -6]",
    "output": "generated_output : list = add_n(sort_asc(drop(add_n(add_n([5, 4, -2, -5],-5),-3),1)),-2)",
    "io_inp": [
      5,
      4,
      -2,
      -5
    ],
    "io_out": [
      -15,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(add_n(add_n(input,-5),-3),1)),-2)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des([-5, 0])",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 0, 5, 3, -1, -3]\noutput : list = [10, 8, 6, 0, -2, -6]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc([4, 0, 5, 3, -1, -3]),2)))",
    "io_inp": [
      4,
      0,
      5,
      3,
      -1,
      -3
    ],
    "io_out": [
      10,
      8,
      6,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(input),2)))"
  },
  {
    "input": "input : list = [-1, -3, 0, -2, 2, -1]\noutput : list = [0, -2, 2, -1]",
    "output": "generated_output : list = drop([-1, -3, 0, -2, 2, -1],2)",
    "io_inp": [
      -1,
      -3,
      0,
      -2,
      2,
      -1
    ],
    "io_out": [
      0,
      -2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n([-5, -1],5)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 0, 1, -3, 2, -5]\noutput : list = [0, 0, 1, -3, 2, -5]",
    "output": "generated_output : list = mul_n([0, 0, 1, -3, 2, -5],1)",
    "io_inp": [
      0,
      0,
      1,
      -3,
      2,
      -5
    ],
    "io_out": [
      0,
      0,
      1,
      -3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, 4, 5, -1]\noutput : list = [0, 4]",
    "output": "generated_output : list = take([0, 4, 5, -1],2)",
    "io_inp": [
      0,
      4,
      5,
      -1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 4, 0, -3]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(drop([2, 4, 0, -3],1))),26),-2)",
    "io_inp": [
      2,
      4,
      0,
      -3
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(drop(input,1))),26),-2)"
  },
  {
    "input": "input : list = [4, 0, 2, -1, -4, 1]\noutput : list = [-4, -1, 0, 1, 2, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_asc([4, 0, 2, -1, -4, 1])))))",
    "io_inp": [
      4,
      0,
      2,
      -1,
      -4,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-2, -8]",
    "output": "generated_output : list = mul_n([-1, -4],2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [4, 4, 0, 4, -2]\noutput : list = [4, 4, 4, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(sort_asc([4, 4, 0, 4, -2])))))",
    "io_inp": [
      4,
      4,
      0,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -3, 3, -5]\noutput : list = [-5, 3, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, 3, -5])",
    "io_inp": [
      -5,
      -3,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0, 3, 1, -5]\noutput : list = [-11, -1, 1, 5, 5]",
    "output": "generated_output : list = take(sub_n(mul_n(take(sort_asc([3, 0, 3, 1, -5]),18),2),1),31)",
    "io_inp": [
      3,
      0,
      3,
      1,
      -5
    ],
    "io_out": [
      -11,
      -1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(sort_asc(input),18),2),1),31)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [3, -9]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse([0, 4]),-1)),-3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(input),-1)),-3)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [7, 7, 10]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sub_n(sort_des([1, 4, 1]),-4),1)),-1)",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sub_n(sort_des(input),-4),1)),-1)"
  },
  {
    "input": "input : list = [1, -4, -5, 5]\noutput : list = [54, 14, -36, -46]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des([1, -4, -5, 5]),-5),3),-2),2)",
    "io_inp": [
      1,
      -4,
      -5,
      5
    ],
    "io_out": [
      54,
      14,
      -36,
      -46
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des(input),-5),3),-2),2)"
  },
  {
    "input": "input : list = [1, 4, 3, -4, 0]\noutput : list = [-6, -2, -1, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc([1, 4, 3, -4, 0]),-2)",
    "io_inp": [
      1,
      4,
      3,
      -4,
      0
    ],
    "io_out": [
      -6,
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [1, -2, -1, 4, 5, 1]\noutput : list = [5, 4, 1, 1, -1, -2]",
    "output": "generated_output : list = sort_des([1, -2, -1, 4, 5, 1])",
    "io_inp": [
      1,
      -2,
      -1,
      4,
      5,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-5, -10]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des([-3, 2]),2)),5))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des(input),2)),5))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-7, -4]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(mul_n([0, -1],3),2),11)),-2)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(mul_n(input,3),2),11)),-2)"
  },
  {
    "input": "input : list = [2, 0, 3, -5]\noutput : list = [1, -1, 2, -6]",
    "output": "generated_output : list = add_n(sub_n([2, 0, 3, -5],-1),-2)",
    "io_inp": [
      2,
      0,
      3,
      -5
    ],
    "io_out": [
      1,
      -1,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),-2)"
  },
  {
    "input": "input : list = [-5, 0, -2, -5]\noutput : list = [-38, -38, -20, -8]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(reverse([-5, 0, -2, -5]),3),-4)),2)",
    "io_inp": [
      -5,
      0,
      -2,
      -5
    ],
    "io_out": [
      -38,
      -38,
      -20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(reverse(input),3),-4)),2)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [6, 0]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(reverse([-5, 1])),-5)),24)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(reverse(input)),-5)),24)"
  },
  {
    "input": "input : list = [-1, -3, 0, -5, 4]\noutput : list = [4, 0, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-1, -3, 0, -5, 4]))",
    "io_inp": [
      -1,
      -3,
      0,
      -5,
      4
    ],
    "io_out": [
      4,
      0,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 5, 3]\noutput : list = [5, 3, 1]",
    "output": "generated_output : list = take(sort_des([1, 5, 3]),14)",
    "io_inp": [
      1,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [10, 8, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([2, 3, 5]),-2),-3)",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      10,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-2),-3)"
  },
  {
    "input": "input : list = [0, 5, 5, 2, -2, 5]\noutput : list = [10, 0, -10]",
    "output": "generated_output : list = mul_n(take(reverse(take(sort_des([0, 5, 5, 2, -2, 5]),23)),3),-5)",
    "io_inp": [
      0,
      5,
      5,
      2,
      -2,
      5
    ],
    "io_out": [
      10,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(sort_des(input),23)),3),-5)"
  },
  {
    "input": "input : list = [-4, 0, 4, -2, 3]\noutput : list = [-1, -9, -17, -5, -15]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(reverse([-4, 0, 4, -2, 3]),-2)),-4),5)",
    "io_inp": [
      -4,
      0,
      4,
      -2,
      3
    ],
    "io_out": [
      -1,
      -9,
      -17,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(reverse(input),-2)),-4),5)"
  },
  {
    "input": "input : list = [-5, 5, 1, 5, 4]\noutput : list = [-5]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(take([-5, 5, 1, 5, 4],1)))),19)",
    "io_inp": [
      -5,
      5,
      1,
      5,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(take(input,1)))),19)"
  },
  {
    "input": "input : list = [3, 1, -3, -3, 0, 1]\noutput : list = [19, 9, -11, -11, 4]",
    "output": "generated_output : list = add_n(take(mul_n([3, 1, -3, -3, 0, 1],5),5),4)",
    "io_inp": [
      3,
      1,
      -3,
      -3,
      0,
      1
    ],
    "io_out": [
      19,
      9,
      -11,
      -11,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,5),5),4)"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [-9, -16]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(drop([-1, -4, 3],1),3)),-4),5)",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      -9,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(drop(input,1),3)),-4),5)"
  },
  {
    "input": "input : list = [-3, 0, 1, 5, 2]\noutput : list = [3, 5, 11]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(take([-3, 0, 1, 5, 2],3),-2)),-5),39)",
    "io_inp": [
      -3,
      0,
      1,
      5,
      2
    ],
    "io_out": [
      3,
      5,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(take(input,3),-2)),-5),39)"
  },
  {
    "input": "input : list = [-2, 2, -3]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = sort_asc(take(take(reverse([-2, 2, -3]),16),3))",
    "io_inp": [
      -2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(input),16),3))"
  },
  {
    "input": "input : list = [-3, 0, -3, -2, -5]\noutput : list = [-5, -3, -3, -2, 0]",
    "output": "generated_output : list = sort_asc([-3, 0, -3, -2, -5])",
    "io_inp": [
      -3,
      0,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [5]",
    "output": "generated_output : list = take(take(reverse(drop(sub_n([-5, 3],-2),1)),31),31)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(drop(sub_n(input,-2),1)),31),31)"
  },
  {
    "input": "input : list = [-1, 3, 3, -2, -2, 1]\noutput : list = [2, -6, -6, 4, 4, -2]",
    "output": "generated_output : list = mul_n([-1, 3, 3, -2, -2, 1],-2)",
    "io_inp": [
      -1,
      3,
      3,
      -2,
      -2,
      1
    ],
    "io_out": [
      2,
      -6,
      -6,
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, 4, 3, 5]\noutput : list = [10, 9, 8, 5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([0, 4, 3, 5],-5)))",
    "io_inp": [
      0,
      4,
      3,
      5
    ],
    "io_out": [
      10,
      9,
      8,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-5)))"
  },
  {
    "input": "input : list = [5, 2, -2, -5]\noutput : list = [25, 10, -10, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([5, 2, -2, -5])),-5)",
    "io_inp": [
      5,
      2,
      -2,
      -5
    ],
    "io_out": [
      25,
      10,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [5, 3, 4, 1, 1, -1]\noutput : list = [5, 4, 3, 1, 1, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(sort_des([5, 3, 4, 1, 1, -1]),10))))",
    "io_inp": [
      5,
      3,
      4,
      1,
      1,
      -1
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(sort_des(input),10))))"
  },
  {
    "input": "input : list = [-2, 2, 5, 1, 2, -3]\noutput : list = [8, 5, 5, 4, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-2, 2, 5, 1, 2, -3])),-3)",
    "io_inp": [
      -2,
      2,
      5,
      1,
      2,
      -3
    ],
    "io_out": [
      8,
      5,
      5,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-3, 2, 4, 1, -3, 3]\noutput : list = [-6]",
    "output": "generated_output : list = take(sub_n(take([-3, 2, 4, 1, -3, 3],1),3),17)",
    "io_inp": [
      -3,
      2,
      4,
      1,
      -3,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),3),17)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [0, -8]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(add_n([5, -3],-1),4))))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(add_n(input,-1),4))))"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [2, -1, -1]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(reverse([-1, -1, -4]),7),2),-1),1)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(reverse(input),7),2),-1),1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n([2, 5],1))),3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(input,1))),3)"
  },
  {
    "input": "input : list = [1, -5, 2]\noutput : list = [-3, 3, 4]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(add_n([1, -5, 2],2)),24)),17)",
    "io_inp": [
      1,
      -5,
      2
    ],
    "io_out": [
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(add_n(input,2)),24)),17)"
  },
  {
    "input": "input : list = [0, 1, 1, 4]\noutput : list = [0, -2, -2, -8]",
    "output": "generated_output : list = mul_n(mul_n([0, 1, 1, 4],2),-1)",
    "io_inp": [
      0,
      1,
      1,
      4
    ],
    "io_out": [
      0,
      -2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),-1)"
  },
  {
    "input": "input : list = [0, 0, 0, -5, -2, 3]\noutput : list = [-4, -1, 1, 1, 1, 4]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_des([0, 0, 0, -5, -2, 3])))),1)",
    "io_inp": [
      0,
      0,
      0,
      -5,
      -2,
      3
    ],
    "io_out": [
      -4,
      -1,
      1,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [0, -3, -5, -5]\noutput : list = [-3, -3, 1, 7]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sort_asc([0, -3, -5, -5]),21),2),-3),4)",
    "io_inp": [
      0,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sort_asc(input),21),2),-3),4)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sub_n([-2, 0],3)))),-4)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sub_n(input,3)))),-4)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [15, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(sort_asc([4, 3]),3),5),6))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(sort_asc(input),3),5),6))"
  },
  {
    "input": "input : list = [2, -4, 5, 0, 5, 0]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(take([2, -4, 5, 0, 5, 0],1)),-3),-1),5)",
    "io_inp": [
      2,
      -4,
      5,
      0,
      5,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(take(input,1)),-3),-1),5)"
  },
  {
    "input": "input : list = [-1, -3, -2, 5]\noutput : list = [-13, -9, -5, 19]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(mul_n([-1, -3, -2, 5],4)),-1),-4),4)",
    "io_inp": [
      -1,
      -3,
      -2,
      5
    ],
    "io_out": [
      -13,
      -9,
      -5,
      19
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(mul_n(input,4)),-1),-4),4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -4, 0]\noutput : list = [-1, -1, -5, -5]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(add_n([0, -4, -4, 0],-2)),4)),-3)",
    "io_inp": [
      0,
      -4,
      -4,
      0
    ],
    "io_out": [
      -1,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(add_n(input,-2)),4)),-3)"
  },
  {
    "input": "input : list = [0, 4, -2, 1]\noutput : list = [7, 4, 3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(mul_n([0, 4, -2, 1],1)),3)))",
    "io_inp": [
      0,
      4,
      -2,
      1
    ],
    "io_out": [
      7,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(mul_n(input,1)),3)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(mul_n([-5, 0],1),-5))))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(mul_n(input,1),-5))))"
  },
  {
    "input": "input : list = [-2, -2, 5]\noutput : list = [4, -3, -3]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(sort_des([-2, -2, 5])),2),1),33)",
    "io_inp": [
      -2,
      -2,
      5
    ],
    "io_out": [
      4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(sort_des(input)),2),1),33)"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = reverse(sort_des([2, -2, 5]))",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-27, -36]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([3, 4],-3),3))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -27,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-3),3))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, -12]",
    "output": "generated_output : list = mul_n([0, 4],-3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [-80, 0, 20]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(sort_asc([0, 4, -1]),4),-5)),19)",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      -80,
      0,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(sort_asc(input),4),-5)),19)"
  },
  {
    "input": "input : list = [5, 4, -3, -2, 4, 5]\noutput : list = [11]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(take([5, 4, -3, -2, 4, 5],1),-1),5)))",
    "io_inp": [
      5,
      4,
      -3,
      -2,
      4,
      5
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(take(input,1),-1),5)))"
  },
  {
    "input": "input : list = [5, 4, -2, 0, -4]\noutput : list = [5, 4, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(reverse([5, 4, -2, 0, -4])))))",
    "io_inp": [
      5,
      4,
      -2,
      0,
      -4
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n([-3, -4],-2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, -1, 4, 4]\noutput : list = [-6, -5]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(take([0, -1, 4, 4],2)),5)))",
    "io_inp": [
      0,
      -1,
      4,
      4
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(take(input,2)),5)))"
  },
  {
    "input": "input : list = [-4, 5, 3, -5, -5]\noutput : list = [-4, 3, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(take([-4, 5, 3, -5, -5],3),5),5),35))",
    "io_inp": [
      -4,
      5,
      3,
      -5,
      -5
    ],
    "io_out": [
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(take(input,3),5),5),35))"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [3, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, 3])",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, 4, -4, -2, 2]\noutput : list = [-4, -4, -2, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([0, -4, 4, -4, -2, 2])",
    "io_inp": [
      0,
      -4,
      4,
      -4,
      -2,
      2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [0, 32, 40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(sub_n([-5, 0, -1],-5))),-4),-2)",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      0,
      32,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(sub_n(input,-5))),-4),-2)"
  },
  {
    "input": "input : list = [2, -4, 3, -4, -5]\noutput : list = [-95, -70, 80, 80, 105]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(mul_n([2, -4, 3, -4, -5],-5))),-4),5)",
    "io_inp": [
      2,
      -4,
      3,
      -4,
      -5
    ],
    "io_out": [
      -95,
      -70,
      80,
      80,
      105
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(mul_n(input,-5))),-4),5)"
  },
  {
    "input": "input : list = [1, 3, 5, -2, 5, -3]\noutput : list = [-5, -4, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(drop([1, 3, 5, -2, 5, -3],3),23),-2)))",
    "io_inp": [
      1,
      3,
      5,
      -2,
      5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(drop(input,3),23),-2)))"
  },
  {
    "input": "input : list = [5, 1, -1, -5]\noutput : list = [15, 3, -3, -15]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(sort_des([5, 1, -1, -5]),-3)),19))",
    "io_inp": [
      5,
      1,
      -1,
      -5
    ],
    "io_out": [
      15,
      3,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(sort_des(input),-3)),19))"
  },
  {
    "input": "input : list = [0, -1, -2, 2]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(drop([0, -1, -2, 2],2),-1)),2))",
    "io_inp": [
      0,
      -1,
      -2,
      2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(drop(input,2),-1)),2))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [40, 80]",
    "output": "generated_output : list = take(mul_n(mul_n([-2, -4],5),-4),10)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      40,
      80
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,5),-4),10)"
  },
  {
    "input": "input : list = [5, 1, 1, 2, 0, 3]\noutput : list = [-1, 0, -2, 1]",
    "output": "generated_output : list = sub_n(drop([5, 1, 1, 2, 0, 3],2),2)",
    "io_inp": [
      5,
      1,
      1,
      2,
      0,
      3
    ],
    "io_out": [
      -1,
      0,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),2)"
  },
  {
    "input": "input : list = [5, -4, 4, 1, 5]\noutput : list = [5, -4, 4, 1, 5]",
    "output": "generated_output : list = reverse(reverse([5, -4, 4, 1, 5]))",
    "io_inp": [
      5,
      -4,
      4,
      1,
      5
    ],
    "io_out": [
      5,
      -4,
      4,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, 4, 1, -4, 2, 0]\noutput : list = [-4, -2, -8, -3]",
    "output": "generated_output : list = take(reverse(add_n(sub_n(drop([-4, 4, 1, -4, 2, 0],2),-1),-5)),46)",
    "io_inp": [
      -4,
      4,
      1,
      -4,
      2,
      0
    ],
    "io_out": [
      -4,
      -2,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sub_n(drop(input,2),-1),-5)),46)"
  },
  {
    "input": "input : list = [2, -3, 3, 3]\noutput : list = [-3, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([2, -3, 3, 3])",
    "io_inp": [
      2,
      -3,
      3,
      3
    ],
    "io_out": [
      -3,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -1, -2, -5, 0, 2]\noutput : list = [-9, -5, -5, -3, -1, 5]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_des(mul_n([0, -1, -2, -5, 0, 2],1)),-1),2),-5)",
    "io_inp": [
      0,
      -1,
      -2,
      -5,
      0,
      2
    ],
    "io_out": [
      -9,
      -5,
      -5,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_des(mul_n(input,1)),-1),2),-5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-3, -12]",
    "output": "generated_output : list = sub_n(sub_n([4, -5],3),4)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),4)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-16, -6]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n([-3, -1],5),-1)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -16,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(input,5),-1)))"
  },
  {
    "input": "input : list = [5, -4, -4, 2]\noutput : list = [0, 0, 6, 9]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(add_n([5, -4, -4, 2],3)),-1),36))",
    "io_inp": [
      5,
      -4,
      -4,
      2
    ],
    "io_out": [
      0,
      0,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(add_n(input,3)),-1),36))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [17, -3]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n([2, -3],-4),3)),2)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      17,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(input,-4),3)),2)"
  },
  {
    "input": "input : list = [4, 4, 2]\noutput : list = [8, 16, 16]",
    "output": "generated_output : list = mul_n(sort_asc([4, 4, 2]),4)",
    "io_inp": [
      4,
      4,
      2
    ],
    "io_out": [
      8,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-3, 0, -2, -2]\noutput : list = [-7, -6, -6, -4]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sort_des([-3, 0, -2, -2]),11),10),-4))",
    "io_inp": [
      -3,
      0,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sort_des(input),11),10),-4))"
  },
  {
    "input": "input : list = [-2, 1, 0, 0, 1]\noutput : list = [18, -6, 2, 2, -6]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n([-2, 1, 0, 0, 1],-4),-2),2),-2)",
    "io_inp": [
      -2,
      1,
      0,
      0,
      1
    ],
    "io_out": [
      18,
      -6,
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(input,-4),-2),2),-2)"
  },
  {
    "input": "input : list = [-5, -4, 3, 1]\noutput : list = [5, 3, -2, -3]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(reverse([-5, -4, 3, 1])),-2),10))",
    "io_inp": [
      -5,
      -4,
      3,
      1
    ],
    "io_out": [
      5,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(reverse(input)),-2),10))"
  },
  {
    "input": "input : list = [3, 2, 0, -2, -3, -3]\noutput : list = [12, 10, 6, 2, 0, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(sub_n([3, 2, 0, -2, -3, -3],-3))),2),1)",
    "io_inp": [
      3,
      2,
      0,
      -2,
      -3,
      -3
    ],
    "io_out": [
      12,
      10,
      6,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(sub_n(input,-3))),2),1)"
  },
  {
    "input": "input : list = [5, -3, -2, -2]\noutput : list = [-8, -7, -7, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_asc([5, -3, -2, -2]),-1))),4)",
    "io_inp": [
      5,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -8,
      -7,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_asc(input),-1))),4)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [6, -2]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(reverse([-5, -1]),4),2)),29)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(reverse(input),4),2)),29)"
  },
  {
    "input": "input : list = [-2, -4, -4, -2, -2, 5]\noutput : list = [1, -6, -6, -6, -8, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n([-2, -4, -4, -2, -2, 5],4)))",
    "io_inp": [
      -2,
      -4,
      -4,
      -2,
      -2,
      5
    ],
    "io_out": [
      1,
      -6,
      -6,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,4)))"
  },
  {
    "input": "input : list = [-5, -2, 1, 2]\noutput : list = [4, 7, 10, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(reverse([-5, -2, 1, 2])),-5),4))",
    "io_inp": [
      -5,
      -2,
      1,
      2
    ],
    "io_out": [
      4,
      7,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(reverse(input)),-5),4))"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(drop([4, 4, -2],1),-2)),5))",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(drop(input,1),-2)),5))"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-5, -3, 1]",
    "output": "generated_output : list = reverse([1, -3, -5])",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, 0, 2, 3, 0]\noutput : list = [7, 9, 10, 10, 12, 13]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(sub_n([-1, -3, 0, 2, 3, 0],-4),3)),-3))",
    "io_inp": [
      -1,
      -3,
      0,
      2,
      3,
      0
    ],
    "io_out": [
      7,
      9,
      10,
      10,
      12,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(sub_n(input,-4),3)),-3))"
  },
  {
    "input": "input : list = [-5, -2, 4, -5, -4]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(drop([-5, -2, 4, -5, -4],2)))),-1)",
    "io_inp": [
      -5,
      -2,
      4,
      -5,
      -4
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(drop(input,2)))),-1)"
  },
  {
    "input": "input : list = [-5, -5, 1, -5]\noutput : list = [-31, -31, -31, -1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sub_n([-5, -5, 1, -5],1),5))),-1)",
    "io_inp": [
      -5,
      -5,
      1,
      -5
    ],
    "io_out": [
      -31,
      -31,
      -31,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(sub_n(input,1),5))),-1)"
  },
  {
    "input": "input : list = [-3, 5, 2, 5, 0]\noutput : list = [-3, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(take([-3, 5, 2, 5, 0],2)),19)))",
    "io_inp": [
      -3,
      5,
      2,
      5,
      0
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(take(input,2)),19)))"
  },
  {
    "input": "input : list = [-1, 0, -1, -5, -1, -5]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(take([-1, 0, -1, -5, -1, -5],2),24),4)),-1)",
    "io_inp": [
      -1,
      0,
      -1,
      -5,
      -1,
      -5
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(take(input,2),24),4)),-1)"
  },
  {
    "input": "input : list = [-3, -1, 0, -4, 3]\noutput : list = [24]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(take([-3, -1, 0, -4, 3],1),-3),1),3),8)",
    "io_inp": [
      -3,
      -1,
      0,
      -4,
      3
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(take(input,1),-3),1),3),8)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(sub_n([2, 1],-1),-3)),-1))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(sub_n(input,-1),-3)),-1))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc([5, 4])",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [16, 4, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(mul_n([4, 0, 1],1))),4))",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      16,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(mul_n(input,1))),4))"
  },
  {
    "input": "input : list = [-2, 2, -2, 2, -4]\noutput : list = [-6, -4, -4, 0, 0]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(reverse([-2, 2, -2, 2, -4]),24),2)),10)",
    "io_inp": [
      -2,
      2,
      -2,
      2,
      -4
    ],
    "io_out": [
      -6,
      -4,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(reverse(input),24),2)),10)"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [24, 18, 6]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(sub_n([4, -2, -5],4),3)),-2),4)",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      24,
      18,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(sub_n(input,4),3)),-2),4)"
  },
  {
    "input": "input : list = [2, 0, -3, 1, -5]\noutput : list = [-3, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(take([2, 0, -3, 1, -5],3),3))))",
    "io_inp": [
      2,
      0,
      -3,
      1,
      -5
    ],
    "io_out": [
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(take(input,3),3))))"
  },
  {
    "input": "input : list = [1, -4, -3, 0]\noutput : list = [1, 0, -3, -4]",
    "output": "generated_output : list = sort_des([1, -4, -3, 0])",
    "io_inp": [
      1,
      -4,
      -3,
      0
    ],
    "io_out": [
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -1, -5, -4]\noutput : list = [18, 0, -9, -12]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(reverse([5, -1, -5, -4]),-1)),3),25)",
    "io_inp": [
      5,
      -1,
      -5,
      -4
    ],
    "io_out": [
      18,
      0,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(reverse(input),-1)),3),25)"
  },
  {
    "input": "input : list = [1, 0, -2, -3, -1, 1]\noutput : list = [2, 3, 4, 5, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([1, 0, -2, -3, -1, 1])),-5)",
    "io_inp": [
      1,
      0,
      -2,
      -3,
      -1,
      1
    ],
    "io_out": [
      2,
      3,
      4,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),-5)"
  },
  {
    "input": "input : list = [-2, 3, -1, 0, 5]\noutput : list = [0, 1, 2, 5, 7]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse([-2, 3, -1, 0, 5])),1),25),-2)",
    "io_inp": [
      -2,
      3,
      -1,
      0,
      5
    ],
    "io_out": [
      0,
      1,
      2,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse(input)),1),25),-2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [15, 6]",
    "output": "generated_output : list = mul_n([5, 2],3)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n(take([-2, 1, 5],1),3),4),5),-3)",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(take(input,1),3),4),5),-3)"
  },
  {
    "input": "input : list = [5, 4, -2, 1, 5]\noutput : list = [-4, -1, 2, 3, 3]",
    "output": "generated_output : list = take(reverse(sort_des(take(add_n([5, 4, -2, 1, 5],-2),18))),47)",
    "io_inp": [
      5,
      4,
      -2,
      1,
      5
    ],
    "io_out": [
      -4,
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(add_n(input,-2),18))),47)"
  },
  {
    "input": "input : list = [2, -5, 1, 2, -5, -5]\noutput : list = [2, 2, 1, -5, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse(sort_des([2, -5, 1, 2, -5, -5])))))",
    "io_inp": [
      2,
      -5,
      1,
      2,
      -5,
      -5
    ],
    "io_out": [
      2,
      2,
      1,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [0, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(reverse([-1, -5]))),-1),5)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(reverse(input))),-1),5)"
  },
  {
    "input": "input : list = [-3, -4, -1, -4, -2]\noutput : list = [-1, -2, -4, -4]",
    "output": "generated_output : list = sort_des(drop([-3, -4, -1, -4, -2],1))",
    "io_inp": [
      -3,
      -4,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 5, -3, -5, 0]\noutput : list = [-5, -3, 0, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(drop([-2, 5, -3, -5, 0],1)))))",
    "io_inp": [
      -2,
      5,
      -3,
      -5,
      0
    ],
    "io_out": [
      -5,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-1, 4, 0, -1, 2, 3]\noutput : list = [-12]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(take([-1, 4, 0, -1, 2, 3],1),4),-4),28))",
    "io_inp": [
      -1,
      4,
      0,
      -1,
      2,
      3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(take(input,1),4),-4),28))"
  },
  {
    "input": "input : list = [-4, 1, -5, -5, 4, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(take([-4, 1, -5, -5, 4, -4],2),16)",
    "io_inp": [
      -4,
      1,
      -5,
      -5,
      4,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(take(input,2),16)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [15, 9]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(reverse([-3, -5])),-3)))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      15,
      9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-10, -8]",
    "output": "generated_output : list = take(sort_asc(mul_n([4, 5],-2)),3)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-2)),3)"
  },
  {
    "input": "input : list = [0, 1, 4, -3]\noutput : list = [-3, 0, 1, 4]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(reverse([0, 1, 4, -3]))),9),1)",
    "io_inp": [
      0,
      1,
      4,
      -3
    ],
    "io_out": [
      -3,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(reverse(input))),9),1)"
  },
  {
    "input": "input : list = [0, 0, 3, 4, -1, 1]\noutput : list = [-2, -1, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(drop(sort_des([0, 0, 3, 4, -1, 1]),3)),3),2)",
    "io_inp": [
      0,
      0,
      3,
      4,
      -1,
      1
    ],
    "io_out": [
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(drop(sort_des(input),3)),3),2)"
  },
  {
    "input": "input : list = [4, 1, 2, -3, 4, -1]\noutput : list = [16, 4, 8, -12, 16, -4]",
    "output": "generated_output : list = mul_n([4, 1, 2, -3, 4, -1],4)",
    "io_inp": [
      4,
      1,
      2,
      -3,
      4,
      -1
    ],
    "io_out": [
      16,
      4,
      8,
      -12,
      16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, -1, -5, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sub_n(take([4, -1, -5, 0],1),4))",
    "io_inp": [
      4,
      -1,
      -5,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(input,1),4))"
  },
  {
    "input": "input : list = [0, 5, -3, -5, -4, 0]\noutput : list = [0, 5, -3]",
    "output": "generated_output : list = mul_n(take([0, 5, -3, -5, -4, 0],3),1)",
    "io_inp": [
      0,
      5,
      -3,
      -5,
      -4,
      0
    ],
    "io_out": [
      0,
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),1)"
  },
  {
    "input": "input : list = [5, -1, 3, 0, -4]\noutput : list = [10, 8, 5, 4, 1]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(sort_asc([5, -1, 3, 0, -4])),5)))",
    "io_inp": [
      5,
      -1,
      3,
      0,
      -4
    ],
    "io_out": [
      10,
      8,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(add_n([4, 3],5),5)),20))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(add_n(input,5),5)),20))"
  },
  {
    "input": "input : list = [3, 4, 1, -4, 1, 3]\noutput : list = [2, 1, 1, -1, -1, -6]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(sub_n([3, 4, 1, -4, 1, 3],2))),38))",
    "io_inp": [
      3,
      4,
      1,
      -4,
      1,
      3
    ],
    "io_out": [
      2,
      1,
      1,
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(sub_n(input,2))),38))"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [-6, -6, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(reverse([3, 1, 3]),-1))),-3)",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(reverse(input),-1))),-3)"
  },
  {
    "input": "input : list = [3, -4, 2, -2, -5]\noutput : list = [0, 6, 7]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(take([3, -4, 2, -2, -5],3)),4),23))",
    "io_inp": [
      3,
      -4,
      2,
      -2,
      -5
    ],
    "io_out": [
      0,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(take(input,3)),4),23))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(sub_n(take(take(sort_asc([-1, 1]),4),3),1),5)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(sort_asc(input),4),3),1),5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-8, 10]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sort_des([4, -5]))),-2),22)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -8,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sort_des(input))),-2),22)"
  },
  {
    "input": "input : list = [-4, -4, 2, -3]\noutput : list = [12, 12, -12, 8]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n([-4, -4, 2, -3],-4),-2),1),-4)",
    "io_inp": [
      -4,
      -4,
      2,
      -3
    ],
    "io_out": [
      12,
      12,
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(input,-4),-2),1),-4)"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [3, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_des(add_n([-5, 2, 1],5))),3))",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      3,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_des(add_n(input,5))),3))"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [-10, 8, -4]",
    "output": "generated_output : list = mul_n([-5, 4, -2],2)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      -10,
      8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-13, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(add_n([-5, 2],-3)),-5)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -13,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(add_n(input,-3)),-5)))"
  },
  {
    "input": "input : list = [-4, -1, 4, 1, -3]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take([-4, -1, 4, 1, -3],1),-2),-2),-4)",
    "io_inp": [
      -4,
      -1,
      4,
      1,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(input,1),-2),-2),-4)"
  },
  {
    "input": "input : list = [-3, 2, -1, 3]\noutput : list = [0, -20]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(take([-3, 2, -1, 3],2)),-2),-4),-1)",
    "io_inp": [
      -3,
      2,
      -1,
      3
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(take(input,2)),-2),-4),-1)"
  },
  {
    "input": "input : list = [-2, -1, -3]\noutput : list = [-15, -10, -5]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(mul_n([-2, -1, -3],1)),5),12))",
    "io_inp": [
      -2,
      -1,
      -3
    ],
    "io_out": [
      -15,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(mul_n(input,1)),5),12))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [-7, -2, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sort_des([5, -5, 0])),-1)),-1)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      -7,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sort_des(input)),-1)),-1)"
  },
  {
    "input": "input : list = [0, -5, 4, 3, -5]\noutput : list = [-5, 20, -25, -20, 20]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(sub_n([0, -5, 4, 3, -5],-4),-5),14),2),-5)",
    "io_inp": [
      0,
      -5,
      4,
      3,
      -5
    ],
    "io_out": [
      -5,
      20,
      -25,
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(sub_n(input,-4),-5),14),2),-5)"
  },
  {
    "input": "input : list = [-2, 4, -3, 0, 2]\noutput : list = [-26, -18, -10, -2, 2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(mul_n([-2, 4, -3, 0, 2],-4),-5),-5)))",
    "io_inp": [
      -2,
      4,
      -3,
      0,
      2
    ],
    "io_out": [
      -26,
      -18,
      -10,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(mul_n(input,-4),-5),-5)))"
  },
  {
    "input": "input : list = [3, 2, -1]\noutput : list = [-7, -8, -11]",
    "output": "generated_output : list = sub_n(take(add_n([3, 2, -1],-5),15),5)",
    "io_inp": [
      3,
      2,
      -1
    ],
    "io_out": [
      -7,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,-5),15),5)"
  },
  {
    "input": "input : list = [-3, -3, 0, 2, 4, 3]\noutput : list = [19, 19]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(sub_n([-3, -3, 0, 2, 4, 3],4),3),-1),2),2)",
    "io_inp": [
      -3,
      -3,
      0,
      2,
      4,
      3
    ],
    "io_out": [
      19,
      19
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(sub_n(input,4),3),-1),2),2)"
  },
  {
    "input": "input : list = [5, -5, -2, -5, -5]\noutput : list = [6, -1, -4, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(sort_des([5, -5, -2, -5, -5])),-1)))",
    "io_inp": [
      5,
      -5,
      -2,
      -5,
      -5
    ],
    "io_out": [
      6,
      -1,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-5, 3, 4, -1]\noutput : list = [-59, 37, 49, -11]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(mul_n([-5, 3, 4, -1],-2),-2),3),-1),-2)",
    "io_inp": [
      -5,
      3,
      4,
      -1
    ],
    "io_out": [
      -59,
      37,
      49,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(mul_n(input,-2),-2),3),-1),-2)"
  },
  {
    "input": "input : list = [4, -4, -3, -3]\noutput : list = [8, -8]",
    "output": "generated_output : list = mul_n(take([4, -4, -3, -3],2),2)",
    "io_inp": [
      4,
      -4,
      -3,
      -3
    ],
    "io_out": [
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),2)"
  },
  {
    "input": "input : list = [4, -4, -5, -2, 2, -2]\noutput : list = [400]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(take([4, -4, -5, -2, 2, -2],1),5),-5),-4))",
    "io_inp": [
      4,
      -4,
      -5,
      -2,
      2,
      -2
    ],
    "io_out": [
      400
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(take(input,1),5),-5),-4))"
  },
  {
    "input": "input : list = [5, 1, -5, -5, 3]\noutput : list = [-4, -4, 2, 4, 6]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_asc([5, 1, -5, -5, 3]),2),2),-5),-4)",
    "io_inp": [
      5,
      1,
      -5,
      -5,
      3
    ],
    "io_out": [
      -4,
      -4,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_asc(input),2),2),-5),-4)"
  },
  {
    "input": "input : list = [0, -2, 1, 1, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sub_n([0, -2, 1, 1, -5],4),2),1),-2),38)",
    "io_inp": [
      0,
      -2,
      1,
      1,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sub_n(input,4),2),1),-2),38)"
  },
  {
    "input": "input : list = [-3, 4, 5, 0, 4]\noutput : list = [3, -9, 6, 3, -18]",
    "output": "generated_output : list = take(reverse(mul_n(add_n([-3, 4, 5, 0, 4],-3),3)),25)",
    "io_inp": [
      -3,
      4,
      5,
      0,
      4
    ],
    "io_out": [
      3,
      -9,
      6,
      3,
      -18
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(input,-3),3)),25)"
  },
  {
    "input": "input : list = [1, 4, -2, -5, 4, -2]\noutput : list = [-2, -5, 4, -2]",
    "output": "generated_output : list = drop([1, 4, -2, -5, 4, -2],2)",
    "io_inp": [
      1,
      4,
      -2,
      -5,
      4,
      -2
    ],
    "io_out": [
      -2,
      -5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sub_n(take(take(add_n(reverse([5, 5]),5),17),29),5)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(reverse(input),5),17),29),5)"
  },
  {
    "input": "input : list = [-2, -3, 3, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(take([-2, -3, 3, -1],1),2)),-1))",
    "io_inp": [
      -2,
      -3,
      3,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(take(input,1),2)),-1))"
  },
  {
    "input": "input : list = [2, 1, 1, -4, -3, 5]\noutput : list = [5, 2, 1, 1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(drop(sort_asc([2, 1, 1, -4, -3, 5]),2),3)),3)",
    "io_inp": [
      2,
      1,
      1,
      -4,
      -3,
      5
    ],
    "io_out": [
      5,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(drop(sort_asc(input),2),3)),3)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [-7, -14]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(drop([-3, 2, -5],1),3)),-1),5)",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      -7,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(drop(input,1),3)),-1),5)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [16, 8]",
    "output": "generated_output : list = sort_des(mul_n([4, 2],4))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [0, 5, 4, 5, -5]\noutput : list = [2, 7, 6, 7, -3]",
    "output": "generated_output : list = add_n(sub_n([0, 5, 4, 5, -5],2),4)",
    "io_inp": [
      0,
      5,
      4,
      5,
      -5
    ],
    "io_out": [
      2,
      7,
      6,
      7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),4)"
  },
  {
    "input": "input : list = [-1, 0, -2, -3, 4, 3]\noutput : list = [-7, -5, -9, -11, 3, 1]",
    "output": "generated_output : list = sub_n(mul_n([-1, 0, -2, -3, 4, 3],2),5)",
    "io_inp": [
      -1,
      0,
      -2,
      -3,
      4,
      3
    ],
    "io_out": [
      -7,
      -5,
      -9,
      -11,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),5)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(drop([0, -3, 5],1),1)),-2))",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(drop(input,1),1)),-2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [25, 5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(add_n([4, 0],-5)))),-5)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(add_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [-5, 5, -5, 5, -2]\noutput : list = [-15]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(take([-5, 5, -5, 5, -2],1)),24),3))",
    "io_inp": [
      -5,
      5,
      -5,
      5,
      -2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(take(input,1)),24),3))"
  },
  {
    "input": "input : list = [-4, 2, -5, 4]\noutput : list = [-11, -7, 5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(mul_n([-4, 2, -5, 4],-2),-2)),1))",
    "io_inp": [
      -4,
      2,
      -5,
      4
    ],
    "io_out": [
      -11,
      -7,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(mul_n(input,-2),-2)),1))"
  },
  {
    "input": "input : list = [-5, 2, -2, 3, 0, 2]\noutput : list = [3, 2, 2, 0, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 2, -2, 3, 0, 2])",
    "io_inp": [
      -5,
      2,
      -2,
      3,
      0,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, 2, -3, -4, 2]\noutput : list = [-3, 2, 2, -1]",
    "output": "generated_output : list = take(drop(take(take(reverse([-1, 2, 2, -3, -4, 2]),18),23),2),22)",
    "io_inp": [
      -1,
      2,
      2,
      -3,
      -4,
      2
    ],
    "io_out": [
      -3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(take(take(reverse(input),18),23),2),22)"
  },
  {
    "input": "input : list = [-3, 2, -2, 2]\noutput : list = [-2, -2, -6, -7]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(sort_des([-3, 2, -2, 2]),4),1)))",
    "io_inp": [
      -3,
      2,
      -2,
      2
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(sort_des(input),4),1)))"
  },
  {
    "input": "input : list = [-5, -4, 2, -1]\noutput : list = [12, 24, 36]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(drop([-5, -4, 2, -1],1),5))),-4)",
    "io_inp": [
      -5,
      -4,
      2,
      -1
    ],
    "io_out": [
      12,
      24,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(drop(input,1),5))),-4)"
  },
  {
    "input": "input : list = [-4, 4, -2, -4, 5]\noutput : list = [5, -2, -4]",
    "output": "generated_output : list = sort_des(drop([-4, 4, -2, -4, 5],2))",
    "io_inp": [
      -4,
      4,
      -2,
      -4,
      5
    ],
    "io_out": [
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [5, -1, -4, 0, 2, -5]\noutput : list = [5, -1, -4, 0, 2, -5]",
    "output": "generated_output : list = add_n(sub_n([5, -1, -4, 0, 2, -5],4),4)",
    "io_inp": [
      5,
      -1,
      -4,
      0,
      2,
      -5
    ],
    "io_out": [
      5,
      -1,
      -4,
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),4)"
  },
  {
    "input": "input : list = [0, 0, 1, 3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take([0, 0, 1, 3],1)),1))",
    "io_inp": [
      0,
      0,
      1,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(input,1)),1))"
  },
  {
    "input": "input : list = [1, 1, 2, 5]\noutput : list = [-13, -10, -9, -9]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(reverse([1, 1, 2, 5]),-5),-3)),-1)",
    "io_inp": [
      1,
      1,
      2,
      5
    ],
    "io_out": [
      -13,
      -10,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(reverse(input),-5),-3)),-1)"
  },
  {
    "input": "input : list = [2, 1, -2, -4, -2]\noutput : list = [-19, -7, 29, 53, 29]",
    "output": "generated_output : list = add_n(mul_n(mul_n([2, 1, -2, -4, -2],3),-4),5)",
    "io_inp": [
      2,
      1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -19,
      -7,
      29,
      53,
      29
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,3),-4),5)"
  },
  {
    "input": "input : list = [0, 5, 3, 3, 3, -4]\noutput : list = [-4, -16, -16, -24]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take([0, 5, 3, 3, 3, -4],4),-4)),4)",
    "io_inp": [
      0,
      5,
      3,
      3,
      3,
      -4
    ],
    "io_out": [
      -4,
      -16,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(input,4),-4)),4)"
  },
  {
    "input": "input : list = [-1, 4, 4, -5, 2, -3]\noutput : list = [-1, -1, -3, -6, -8, -10]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(add_n([-1, 4, 4, -5, 2, -3],-5)))))",
    "io_inp": [
      -1,
      4,
      4,
      -5,
      2,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [-5, -1, 4, -5]\noutput : list = [-1, 3, 8, -1]",
    "output": "generated_output : list = sub_n([-5, -1, 4, -5],-4)",
    "io_inp": [
      -5,
      -1,
      4,
      -5
    ],
    "io_out": [
      -1,
      3,
      8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(sort_des([-1, 1]),-1)),-1))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(sort_des(input),-1)),-1))"
  },
  {
    "input": "input : list = [3, 3, 4, 5, 2]\noutput : list = [5, 4, 3, 3, 2]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(sort_des([3, 3, 4, 5, 2]))),37))",
    "io_inp": [
      3,
      3,
      4,
      5,
      2
    ],
    "io_out": [
      5,
      4,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(sort_des(input))),37))"
  },
  {
    "input": "input : list = [-3, -3, 4]\noutput : list = [-1, -1, 6]",
    "output": "generated_output : list = take(take(add_n(add_n(add_n([-3, -3, 4],5),-2),-1),31),28)",
    "io_inp": [
      -3,
      -3,
      4
    ],
    "io_out": [
      -1,
      -1,
      6
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(add_n(input,5),-2),-1),31),28)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-8, -18]",
    "output": "generated_output : list = mul_n(add_n([0, -5],-4),2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -8,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),2)"
  },
  {
    "input": "input : list = [3, 0, 4, -3, -2, 4]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc([3, 0, 4, -3, -2, 4]),2)))",
    "io_inp": [
      3,
      0,
      4,
      -3,
      -2,
      4
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(input),2)))"
  },
  {
    "input": "input : list = [3, 1, -3, 5, 4, -3]\noutput : list = [14, 12, 10, 6, -2, -2]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(reverse([3, 1, -3, 5, 4, -3]),-2)),2),44)",
    "io_inp": [
      3,
      1,
      -3,
      5,
      4,
      -3
    ],
    "io_out": [
      14,
      12,
      10,
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(reverse(input),-2)),2),44)"
  },
  {
    "input": "input : list = [4, -4, 5, 4, 1, -5]\noutput : list = [25, 20, -20]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(take([4, -4, 5, 4, 1, -5],3),5))),53)",
    "io_inp": [
      4,
      -4,
      5,
      4,
      1,
      -5
    ],
    "io_out": [
      25,
      20,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(take(input,3),5))),53)"
  },
  {
    "input": "input : list = [-2, -5, 3, -3]\noutput : list = [7, 5, 4, -1]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sub_n([-2, -5, 3, -3],2)))),-1)",
    "io_inp": [
      -2,
      -5,
      3,
      -3
    ],
    "io_out": [
      7,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sub_n(input,2)))),-1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-5, 5]))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-6, -4, 2]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([2, -1, 3]),-2))",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [0, 8]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(sub_n([3, -5],-5)),7),31))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(sub_n(input,-5)),7),31))"
  },
  {
    "input": "input : list = [5, -5, 2, -4]\noutput : list = [-4, 2, -5, 5]",
    "output": "generated_output : list = reverse([5, -5, 2, -4])",
    "io_inp": [
      5,
      -5,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4, -5, 5]\noutput : list = [1, -9, 0, -6]",
    "output": "generated_output : list = add_n(reverse([-2, 4, -5, 5]),-4)",
    "io_inp": [
      -2,
      4,
      -5,
      5
    ],
    "io_out": [
      1,
      -9,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-3, -5, 5, 3, -3, 2]\noutput : list = [3, -3, 2]",
    "output": "generated_output : list = drop([-3, -5, 5, 3, -3, 2],3)",
    "io_inp": [
      -3,
      -5,
      5,
      3,
      -3,
      2
    ],
    "io_out": [
      3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, 4, 0, -4, -1, -2]\noutput : list = [9, 6, 5, 4, 3, 1]",
    "output": "generated_output : list = sort_des(take(take(add_n(sub_n([1, 4, 0, -4, -1, -2],-3),2),17),12))",
    "io_inp": [
      1,
      4,
      0,
      -4,
      -1,
      -2
    ],
    "io_out": [
      9,
      6,
      5,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(sub_n(input,-3),2),17),12))"
  },
  {
    "input": "input : list = [1, -2, 5, -5, -1]\noutput : list = [-5, -2, -1, 1, 5]",
    "output": "generated_output : list = sort_asc([1, -2, 5, -5, -1])",
    "io_inp": [
      1,
      -2,
      5,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3, 0, 5, -3]\noutput : list = [0, 3]",
    "output": "generated_output : list = add_n(reverse(take(take(take([0, -3, 0, 5, -3],2),13),17)),3)",
    "io_inp": [
      0,
      -3,
      0,
      5,
      -3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(take(input,2),13),17)),3)"
  },
  {
    "input": "input : list = [-3, 0, 3, 2]\noutput : list = [-8, -5, -3, -2]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n([-3, 0, 3, 2],-1),-3),-3))",
    "io_inp": [
      -3,
      0,
      3,
      2
    ],
    "io_out": [
      -8,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(input,-1),-3),-3))"
  },
  {
    "input": "input : list = [0, -5, -3]\noutput : list = [-4, 2, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([0, -5, -3],-2),-2))",
    "io_inp": [
      0,
      -5,
      -3
    ],
    "io_out": [
      -4,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-2),-2))"
  },
  {
    "input": "input : list = [3, -2, 1, 1, 3, -5]\noutput : list = [8, 6, 6, 3, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(drop([3, -2, 1, 1, 3, -5],1),15),-5)))",
    "io_inp": [
      3,
      -2,
      1,
      1,
      3,
      -5
    ],
    "io_out": [
      8,
      6,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(drop(input,1),15),-5)))"
  },
  {
    "input": "input : list = [-4, -2, 0, 5, 2]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -2, 0, 5, 2],1)",
    "io_inp": [
      -4,
      -2,
      0,
      5,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [0, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse([-2, 5, 5]),1),3))",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      0,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(input),1),3))"
  },
  {
    "input": "input : list = [4, -4, 0, -2, -3]\noutput : list = [-6, -5, -4, -2, 2]",
    "output": "generated_output : list = sub_n(take(sort_asc([4, -4, 0, -2, -3]),15),2)",
    "io_inp": [
      4,
      -4,
      0,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),15),2)"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [-6, 0, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(mul_n([-5, 1, -2],2)),-4),27))",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      -6,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(mul_n(input,2)),-4),27))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-20, -15]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(reverse([1, 2]),4),-1),5))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -20,
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(reverse(input),4),-1),5))"
  },
  {
    "input": "input : list = [-4, -5, -3, 3]\noutput : list = [0, -24, -28, -32]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_asc([-4, -5, -3, 3]),-3),4)))",
    "io_inp": [
      -4,
      -5,
      -3,
      3
    ],
    "io_out": [
      0,
      -24,
      -28,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(sort_asc(input),-3),4)))"
  },
  {
    "input": "input : list = [1, 2, 5, -1]\noutput : list = [2, -22, -10, -6]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(mul_n([1, 2, 5, -1],4),-1),1)),3)",
    "io_inp": [
      1,
      2,
      5,
      -1
    ],
    "io_out": [
      2,
      -22,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(mul_n(input,4),-1),1)),3)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [16, 16, 24]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sub_n([1, -1, 1],5)))),-4)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      16,
      16,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sub_n(input,5)))),-4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n([0, -4],3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [3, 2, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(take([3, 2, 0],1)),6),1))",
    "io_inp": [
      3,
      2,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(take(input,1)),6),1))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(reverse([-3, 3])),11)))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(reverse(input)),11)))"
  },
  {
    "input": "input : list = [-1, -1, -2, 4, 1, 5]\noutput : list = [-24, -12, -12, 12, 48, 60]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse([-1, -1, -2, 4, 1, 5]),3),1),4))",
    "io_inp": [
      -1,
      -1,
      -2,
      4,
      1,
      5
    ],
    "io_out": [
      -24,
      -12,
      -12,
      12,
      48,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse(input),3),1),4))"
  },
  {
    "input": "input : list = [-4, -4, 4, 0, 0]\noutput : list = [4, 0, 0]",
    "output": "generated_output : list = take(drop([-4, -4, 4, 0, 0],2),20)",
    "io_inp": [
      -4,
      -4,
      4,
      0,
      0
    ],
    "io_out": [
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(drop(input,2),20)"
  },
  {
    "input": "input : list = [1, 5, -1, 1]\noutput : list = [6, 16, 16, 36]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sub_n([1, 5, -1, 1],3),-5),5),1))",
    "io_inp": [
      1,
      5,
      -1,
      1
    ],
    "io_out": [
      6,
      16,
      16,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sub_n(input,3),-5),5),1))"
  },
  {
    "input": "input : list = [-4, -4, 0, 4]\noutput : list = [-4, -4, 0, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(sort_asc([-4, -4, 0, 4])))),38)",
    "io_inp": [
      -4,
      -4,
      0,
      4
    ],
    "io_out": [
      -4,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(sort_asc(input)))),38)"
  },
  {
    "input": "input : list = [2, -3, -4]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc([2, -3, -4])),4)",
    "io_inp": [
      2,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-1, 2, -2, 4, 2]\noutput : list = [-2, -1, 2, 2, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(reverse([-1, 2, -2, 4, 2])))),42)",
    "io_inp": [
      -1,
      2,
      -2,
      4,
      2
    ],
    "io_out": [
      -2,
      -1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(reverse(input)))),42)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-10, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(reverse([4, -5]),2))))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -10,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [-4, -5, -4, 0, 0, 3]\noutput : list = [-8, -6, -6, 2, 2, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sub_n([-4, -5, -4, 0, 0, 3],1)),-2),2))",
    "io_inp": [
      -4,
      -5,
      -4,
      0,
      0,
      3
    ],
    "io_out": [
      -8,
      -6,
      -6,
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sub_n(input,1)),-2),2))"
  },
  {
    "input": "input : list = [-1, -4, 3, 1, 5, 2]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(drop([-1, -4, 3, 1, 5, 2],3),-5)),-5),39)",
    "io_inp": [
      -1,
      -4,
      3,
      1,
      5,
      2
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(drop(input,3),-5)),-5),39)"
  },
  {
    "input": "input : list = [4, -4, -1, 1, -2]\noutput : list = [6, -2, 1, 3, 0]",
    "output": "generated_output : list = sub_n([4, -4, -1, 1, -2],-2)",
    "io_inp": [
      4,
      -4,
      -1,
      1,
      -2
    ],
    "io_out": [
      6,
      -2,
      1,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -1, -2, 5, -5]\noutput : list = [5, -1, -2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -1, -2, 5, -5])",
    "io_inp": [
      -5,
      -1,
      -2,
      5,
      -5
    ],
    "io_out": [
      5,
      -1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [-4, -1, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc([-1, 3, -4]))),9)",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(input))),9)"
  },
  {
    "input": "input : list = [1, -5, 5, -4, 0, 2]\noutput : list = [8, 0, -16, 20, -20, 4]",
    "output": "generated_output : list = reverse(mul_n([1, -5, 5, -4, 0, 2],4))",
    "io_inp": [
      1,
      -5,
      5,
      -4,
      0,
      2
    ],
    "io_out": [
      8,
      0,
      -16,
      20,
      -20,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [-1, 2, -3, 4, 5, 2]\noutput : list = [22, 19, -2, 13, 4]",
    "output": "generated_output : list = reverse(take(add_n(mul_n(sub_n([-1, 2, -3, 4, 5, 2],-2),3),1),5))",
    "io_inp": [
      -1,
      2,
      -3,
      4,
      5,
      2
    ],
    "io_out": [
      22,
      19,
      -2,
      13,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(sub_n(input,-2),3),1),5))"
  },
  {
    "input": "input : list = [4, 1, -2, -1, -3, 1]\noutput : list = [5, 17, 11, 14, 5, -4]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n([4, 1, -2, -1, -3, 1],-4),-3)),-4)",
    "io_inp": [
      4,
      1,
      -2,
      -1,
      -3,
      1
    ],
    "io_out": [
      5,
      17,
      11,
      14,
      5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(input,-4),-3)),-4)"
  },
  {
    "input": "input : list = [-5, 2, 2]\noutput : list = [12, 12, -2]",
    "output": "generated_output : list = reverse(mul_n(add_n([-5, 2, 2],4),2))",
    "io_inp": [
      -5,
      2,
      2
    ],
    "io_out": [
      12,
      12,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,4),2))"
  },
  {
    "input": "input : list = [4, 5, 3, -4]\noutput : list = [-25, -15, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(drop([4, 5, 3, -4],1),-1),5)))",
    "io_inp": [
      4,
      5,
      3,
      -4
    ],
    "io_out": [
      -25,
      -15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(drop(input,1),-1),5)))"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [4, 1, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(add_n([-5, -1, 2],-2)),1),-5),16)",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(add_n(input,-2)),1),-5),16)"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [12, 6]",
    "output": "generated_output : list = mul_n(sub_n(drop([-4, 0, 2],1),4),-3)",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,1),4),-3)"
  },
  {
    "input": "input : list = [-4, 2, -2]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = sort_asc([-4, 2, -2])",
    "io_inp": [
      -4,
      2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, 0, -1, -5, -5]\noutput : list = [-4, -4, 0, 1, 0, 4]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(sub_n([3, -1, 0, -1, -5, -5],-1),-1)),1),19)",
    "io_inp": [
      3,
      -1,
      0,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4,
      0,
      1,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(sub_n(input,-1),-1)),1),19)"
  },
  {
    "input": "input : list = [0, -3, -2, 3, 2]\noutput : list = [4, 3, 1, -1, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_asc([0, -3, -2, 3, 2]),3))),4)",
    "io_inp": [
      0,
      -3,
      -2,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(sort_asc(input),3))),4)"
  },
  {
    "input": "input : list = [-4, -5, 0, 1, 2]\noutput : list = [-20, -16, 0, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sort_des([-4, -5, 0, 1, 2]))),4))",
    "io_inp": [
      -4,
      -5,
      0,
      1,
      2
    ],
    "io_out": [
      -20,
      -16,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sort_des(input))),4))"
  },
  {
    "input": "input : list = [-3, 3, 0, 5, -4]\noutput : list = [5, 0, -4]",
    "output": "generated_output : list = sort_des(take(reverse([-3, 3, 0, 5, -4]),3))",
    "io_inp": [
      -3,
      3,
      0,
      5,
      -4
    ],
    "io_out": [
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),3))"
  },
  {
    "input": "input : list = [-5, -1, -5, -4, 3, 5]\noutput : list = [60, 36, -48, -60, -12, -60]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(mul_n([-5, -1, -5, -4, 3, 5],-4)),-3),-3),3)",
    "io_inp": [
      -5,
      -1,
      -5,
      -4,
      3,
      5
    ],
    "io_out": [
      60,
      36,
      -48,
      -60,
      -12,
      -60
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(mul_n(input,-4)),-3),-3),3)"
  },
  {
    "input": "input : list = [5, 5, -2, 2, -1]\noutput : list = [15, 15, 8, 12, 9]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(reverse([5, 5, -2, 2, -1]),-5),3),-2))",
    "io_inp": [
      5,
      5,
      -2,
      2,
      -1
    ],
    "io_out": [
      15,
      15,
      8,
      12,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(reverse(input),-5),3),-2))"
  },
  {
    "input": "input : list = [-4, 5, 0, 5, -2]\noutput : list = [15, 25, 50]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(drop([-4, 5, 0, 5, -2],2),5)),5))",
    "io_inp": [
      -4,
      5,
      0,
      5,
      -2
    ],
    "io_out": [
      15,
      25,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(drop(input,2),5)),5))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [3, -5]",
    "output": "generated_output : list = mul_n([-3, 5],-1)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_des([3, 0])))))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, -2, 1, -1]\noutput : list = [-20, 0, -30, -30]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(sub_n([-2, -2, 1, -1],-1),2),-5)),-2)",
    "io_inp": [
      -2,
      -2,
      1,
      -1
    ],
    "io_out": [
      -20,
      0,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(sub_n(input,-1),2),-5)),-2)"
  },
  {
    "input": "input : list = [4, -1, 2, -5, -5]\noutput : list = [-5, -5, -1, 2, 4]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sort_des([4, -1, 2, -5, -5]))),18))",
    "io_inp": [
      4,
      -1,
      2,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sort_des(input))),18))"
  },
  {
    "input": "input : list = [1, 2, 5, 1, 1]\noutput : list = [9, 9, 9, 13, 25]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([1, 2, 5, 1, 1],4),5))",
    "io_inp": [
      1,
      2,
      5,
      1,
      1
    ],
    "io_out": [
      9,
      9,
      9,
      13,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,4),5))"
  },
  {
    "input": "input : list = [0, 3, -3, 5, 5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(drop([0, 3, -3, 5, 5, -5],4))),4)",
    "io_inp": [
      0,
      3,
      -3,
      5,
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(drop(input,4))),4)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [3, -57]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(mul_n([-4, 0],5),1))),3)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      3,
      -57
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(mul_n(input,5),1))),3)"
  },
  {
    "input": "input : list = [-5, -5, -2, -5]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n(take(sub_n([-5, -5, -2, -5],-3),2),-1)",
    "io_inp": [
      -5,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-3),2),-1)"
  },
  {
    "input": "input : list = [4, 3, 2, 3, -1]\noutput : list = [-9, -6, -6, -3, 6]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(mul_n([4, 3, 2, 3, -1],-3)),20),-5),-2)",
    "io_inp": [
      4,
      3,
      2,
      3,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(mul_n(input,-3)),20),-5),-2)"
  },
  {
    "input": "input : list = [2, 2, -1, 2, 5]\noutput : list = [1, 4, 4, 4, 7]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(sub_n([2, 2, -1, 2, 5],-1))),1))",
    "io_inp": [
      2,
      2,
      -1,
      2,
      5
    ],
    "io_out": [
      1,
      4,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(sub_n(input,-1))),1))"
  },
  {
    "input": "input : list = [-1, -2, -2, -3]\noutput : list = [-11, -7, -7, -3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(sort_des([-1, -2, -2, -3])),4),1),2)",
    "io_inp": [
      -1,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -11,
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(sort_des(input)),4),1),2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-26, 9]",
    "output": "generated_output : list = add_n(mul_n([-5, 2],5),-1)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -26,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),-1)"
  },
  {
    "input": "input : list = [-5, 2, -4, -5, -1, 1]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(add_n(add_n(mul_n([-5, 2, -4, -5, -1, 1],-1),3),-4),2)",
    "io_inp": [
      -5,
      2,
      -4,
      -5,
      -1,
      1
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(input,-1),3),-4),2)"
  },
  {
    "input": "input : list = [-4, 1, -5, -4, -1]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(take([-4, 1, -5, -4, -1],1)),1)))",
    "io_inp": [
      -4,
      1,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(take(input,1)),1)))"
  },
  {
    "input": "input : list = [1, 5, -4, 4, 4, 2]\noutput : list = [3, 2, 2, 0, -1, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(add_n([1, 5, -4, 4, 4, 2],1))),3))",
    "io_inp": [
      1,
      5,
      -4,
      4,
      4,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(add_n(input,1))),3))"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [120]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take([5, -5, -2],1),-5),4),3)",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(input,1),-5),4),3)"
  },
  {
    "input": "input : list = [-1, 5, 4, 4, 5]\noutput : list = [-5, -5, -4, -4, 1]",
    "output": "generated_output : list = mul_n(sort_des([-1, 5, 4, 4, 5]),-1)",
    "io_inp": [
      -1,
      5,
      4,
      4,
      5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-2, -2, -5, 0, 3]\noutput : list = [-8, -8, -20]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take([-2, -2, -5, 0, 3],3),2),2))",
    "io_inp": [
      -2,
      -2,
      -5,
      0,
      3
    ],
    "io_out": [
      -8,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(input,3),2),2))"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [3, 10, 11]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(add_n([3, 2, -5],4)),6)),4)",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      3,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(add_n(input,4)),6)),4)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n([-1, 2],5)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 4, -2, 0]\noutput : list = [10, 2]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(take([0, 4, -2, 0],2)),2),-2))",
    "io_inp": [
      0,
      4,
      -2,
      0
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(take(input,2)),2),-2))"
  },
  {
    "input": "input : list = [4, -2, -1, 3, 3]\noutput : list = [12, 12, -4, -8]",
    "output": "generated_output : list = mul_n(take(take(reverse(mul_n([4, -2, -1, 3, 3],4)),18),4),1)",
    "io_inp": [
      4,
      -2,
      -1,
      3,
      3
    ],
    "io_out": [
      12,
      12,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(mul_n(input,4)),18),4),1)"
  },
  {
    "input": "input : list = [-5, -1, 3, 3, -5]\noutput : list = [11, 11, -5, -21, -21]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(add_n([-5, -1, 3, 3, -5],2)),-4)),-1)",
    "io_inp": [
      -5,
      -1,
      3,
      3,
      -5
    ],
    "io_out": [
      11,
      11,
      -5,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(add_n(input,2)),-4)),-1)"
  },
  {
    "input": "input : list = [-1, -5, 4, 2, -4, -4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(drop([-1, -5, 4, 2, -4, -4],1),1),2)))",
    "io_inp": [
      -1,
      -5,
      4,
      2,
      -4,
      -4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(drop(input,1),1),2)))"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [-16, -20, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(reverse([5, 4, 5]))),-4))",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-4, 2, -5, 4, 1, -4]\noutput : list = [-4, -16, -18]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n(take([-4, 2, -5, 4, 1, -4],3),-4),2),1))",
    "io_inp": [
      -4,
      2,
      -5,
      4,
      1,
      -4
    ],
    "io_out": [
      -4,
      -16,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(take(input,3),-4),2),1))"
  },
  {
    "input": "input : list = [2, -4, 3, 1]\noutput : list = [-16, 14, 20, 26]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(mul_n([2, -4, 3, 1],3))),4),2)",
    "io_inp": [
      2,
      -4,
      3,
      1
    ],
    "io_out": [
      -16,
      14,
      20,
      26
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(mul_n(input,3))),4),2)"
  },
  {
    "input": "input : list = [-5, 3, -3, -1]\noutput : list = [-3, 15, -9]",
    "output": "generated_output : list = take(drop(reverse(mul_n(add_n([-5, 3, -3, -1],2),3)),1),22)",
    "io_inp": [
      -5,
      3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      15,
      -9
    ],
    "output_masked": "generated_output : list = take(drop(reverse(mul_n(add_n(input,2),3)),1),22)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [7, 3]",
    "output": "generated_output : list = reverse(sub_n([-1, 3],-4))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [5, 3, 4]",
    "output": "generated_output : list = sub_n([3, 1, 2],-2)",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      5,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, 1, 3, -1]\noutput : list = [3, 1, 1, -1]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc([1, 1, 3, -1])),30))",
    "io_inp": [
      1,
      1,
      3,
      -1
    ],
    "io_out": [
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(input)),30))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(reverse([0, 5]),7))))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(reverse(input),7))))"
  },
  {
    "input": "input : list = [1, 1, 3, -5]\noutput : list = [1, 1]",
    "output": "generated_output : list = take([1, 1, 3, -5],2)",
    "io_inp": [
      1,
      1,
      3,
      -5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 2, 5, -4, -5]\noutput : list = [3, 2, 5]",
    "output": "generated_output : list = take([3, 2, 5, -4, -5],3)",
    "io_inp": [
      3,
      2,
      5,
      -4,
      -5
    ],
    "io_out": [
      3,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [1, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc([4, 1, 4]),13)))",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(input),13)))"
  },
  {
    "input": "input : list = [-2, 5, -2, 2, -4, -2]\noutput : list = [4, 1, -3, -3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sub_n([-2, 5, -2, 2, -4, -2],3),2),1)))",
    "io_inp": [
      -2,
      5,
      -2,
      2,
      -4,
      -2
    ],
    "io_out": [
      4,
      1,
      -3,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sub_n(input,3),2),1)))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [4, -8]",
    "output": "generated_output : list = sort_des(mul_n(take(take(sort_des([-2, 4]),14),16),-2))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(sort_des(input),14),16),-2))"
  },
  {
    "input": "input : list = [-5, 2, 5, 0, -3]\noutput : list = [-125, -50, 0, 75, 125]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sort_asc([-5, 2, 5, 0, -3]),-5)),5))",
    "io_inp": [
      -5,
      2,
      5,
      0,
      -3
    ],
    "io_out": [
      -125,
      -50,
      0,
      75,
      125
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sort_asc(input),-5)),5))"
  },
  {
    "input": "input : list = [-2, 5, -5, 2, -5]\noutput : list = [3, 0, -4, -7, -7]",
    "output": "generated_output : list = sort_des(add_n([-2, 5, -5, 2, -5],-2))",
    "io_inp": [
      -2,
      5,
      -5,
      2,
      -5
    ],
    "io_out": [
      3,
      0,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -5, 2, 3]\noutput : list = [7, 6, 2, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(sort_des([-2, -5, 2, 3])))),4)",
    "io_inp": [
      -2,
      -5,
      2,
      3
    ],
    "io_out": [
      7,
      6,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(sort_des(input)))),4)"
  },
  {
    "input": "input : list = [2, 1, -3, 5, -2]\noutput : list = [12, 3, 0, -9, -12]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(mul_n([2, 1, -3, 5, -2],3),3),19),1))",
    "io_inp": [
      2,
      1,
      -3,
      5,
      -2
    ],
    "io_out": [
      12,
      3,
      0,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(mul_n(input,3),3),19),1))"
  },
  {
    "input": "input : list = [-3, 2, 3]\noutput : list = [20, 10, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n([-3, 2, 3],-2)),5),-2)",
    "io_inp": [
      -3,
      2,
      3
    ],
    "io_out": [
      20,
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(input,-2)),5),-2)"
  },
  {
    "input": "input : list = [0, 2, 4, 5, -5]\noutput : list = [28, 32, -8]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(drop([0, 2, 4, 5, -5],2),-1),3),-4)",
    "io_inp": [
      0,
      2,
      4,
      5,
      -5
    ],
    "io_out": [
      28,
      32,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(drop(input,2),-1),3),-4)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-54, 30]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n([4, -3],-3),5),-4),4),-2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -54,
      30
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n(input,-3),5),-4),4),-2)"
  },
  {
    "input": "input : list = [0, -5, -5, 0]\noutput : list = [-1, -1, -16, -16]",
    "output": "generated_output : list = add_n(sort_des(take(take(mul_n([0, -5, -5, 0],3),14),12)),-1)",
    "io_inp": [
      0,
      -5,
      -5,
      0
    ],
    "io_out": [
      -1,
      -1,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(mul_n(input,3),14),12)),-1)"
  },
  {
    "input": "input : list = [3, 2, 0, 4, 5]\noutput : list = [-16, -10, 2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(take([3, 2, 0, 4, 5],3),-3),2),1),-3)",
    "io_inp": [
      3,
      2,
      0,
      4,
      5
    ],
    "io_out": [
      -16,
      -10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(take(input,3),-3),2),1),-3)"
  },
  {
    "input": "input : list = [-2, 3, 0, 5]\noutput : list = [27, 9, -18, -36]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sub_n([-2, 3, 0, 5],2)),3)),3)",
    "io_inp": [
      -2,
      3,
      0,
      5
    ],
    "io_out": [
      27,
      9,
      -18,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sub_n(input,2)),3)),3)"
  },
  {
    "input": "input : list = [-2, 4, 2, 3, 1, -2]\noutput : list = [-7, -7, -4, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sort_des([-2, 4, 2, 3, 1, -2]),-4),5),4))",
    "io_inp": [
      -2,
      4,
      2,
      3,
      1,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sort_des(input),-4),5),4))"
  },
  {
    "input": "input : list = [5, 5, -2, -1, -4, 0]\noutput : list = [1, -19, -4, -9, 26, 26]",
    "output": "generated_output : list = reverse(take(take(sub_n(mul_n([5, 5, -2, -1, -4, 0],5),-1),11),18))",
    "io_inp": [
      5,
      5,
      -2,
      -1,
      -4,
      0
    ],
    "io_out": [
      1,
      -19,
      -4,
      -9,
      26,
      26
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(mul_n(input,5),-1),11),18))"
  },
  {
    "input": "input : list = [2, 0, 4, -1]\noutput : list = [-1, 0, 2, 4]",
    "output": "generated_output : list = take(sort_asc(reverse([2, 0, 4, -1])),19)",
    "io_inp": [
      2,
      0,
      4,
      -1
    ],
    "io_out": [
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(input)),19)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [20, 4]",
    "output": "generated_output : list = reverse(mul_n([-1, -5],-4))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      20,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [2, -2, 5, -3, -4, 2]\noutput : list = [8, 5, 0, -1]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(drop([2, -2, 5, -3, -4, 2],2)),-3)),37)",
    "io_inp": [
      2,
      -2,
      5,
      -3,
      -4,
      2
    ],
    "io_out": [
      8,
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(drop(input,2)),-3)),37)"
  },
  {
    "input": "input : list = [2, 0, 0, -5, -5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(take([2, 0, 0, -5, -5],1))),1),-2)",
    "io_inp": [
      2,
      0,
      0,
      -5,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(take(input,1))),1),-2)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-8, -10]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(drop([-4, -4, -2],1))),4),2)",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(drop(input,1))),4),2)"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [-10, -11]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(drop([-1, 2, 1],1),-3),4)),-5)",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(drop(input,1),-3),4)),-5)"
  },
  {
    "input": "input : list = [4, 3, 4]\noutput : list = [6, 6, 5]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(add_n([4, 3, 4],-2)),1),2),-2)",
    "io_inp": [
      4,
      3,
      4
    ],
    "io_out": [
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(add_n(input,-2)),1),2),-2)"
  },
  {
    "input": "input : list = [-5, -5, -3, -2]\noutput : list = [14, 19, 29, 29]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n(sub_n([-5, -5, -3, -2],2),1),-5),1))",
    "io_inp": [
      -5,
      -5,
      -3,
      -2
    ],
    "io_out": [
      14,
      19,
      29,
      29
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(sub_n(input,2),1),-5),1))"
  },
  {
    "input": "input : list = [-2, 5, 0, -5, 4, -3]\noutput : list = [2, -5, 0, 5, -4, 3]",
    "output": "generated_output : list = mul_n([-2, 5, 0, -5, 4, -3],-1)",
    "io_inp": [
      -2,
      5,
      0,
      -5,
      4,
      -3
    ],
    "io_out": [
      2,
      -5,
      0,
      5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-32, 4]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des(sort_asc([4, -5])),-4),-4),27)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -32,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(sort_asc(input)),-4),-4),27)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [10, 8, 2]",
    "output": "generated_output : list = reverse(add_n([-3, 3, 5],5))",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      10,
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [0, 4, 1, 0, 4]\noutput : list = [0, 0, -3, -12, -12]",
    "output": "generated_output : list = sort_des(take(take(take(mul_n([0, 4, 1, 0, 4],-3),15),27),27))",
    "io_inp": [
      0,
      4,
      1,
      0,
      4
    ],
    "io_out": [
      0,
      0,
      -3,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(mul_n(input,-3),15),27),27))"
  },
  {
    "input": "input : list = [1, 3, 4, -3, 0]\noutput : list = [-7, -4, -3, -1, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(reverse([1, 3, 4, -3, 0]),19))),-4)",
    "io_inp": [
      1,
      3,
      4,
      -3,
      0
    ],
    "io_out": [
      -7,
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(reverse(input),19))),-4)"
  },
  {
    "input": "input : list = [-5, -5, 5]\noutput : list = [-15, 35, 35]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(add_n([-5, -5, 5],-1),-5),-5)),17)",
    "io_inp": [
      -5,
      -5,
      5
    ],
    "io_out": [
      -15,
      35,
      35
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(add_n(input,-1),-5),-5)),17)"
  },
  {
    "input": "input : list = [5, -4, -3]\noutput : list = [-10, 8, 6]",
    "output": "generated_output : list = mul_n(sub_n(take(take(sub_n([5, -4, -3],-3),13),22),3),-2)",
    "io_inp": [
      5,
      -4,
      -3
    ],
    "io_out": [
      -10,
      8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(sub_n(input,-3),13),22),3),-2)"
  },
  {
    "input": "input : list = [4, 4, -2, 4, -1]\noutput : list = [4, 4, 4, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des([4, 4, -2, 4, -1]))",
    "io_inp": [
      4,
      4,
      -2,
      4,
      -1
    ],
    "io_out": [
      4,
      4,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 4, 3, 3, 5]\noutput : list = [5, 4, 3, 3, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([-1, 4, 3, 3, 5])))",
    "io_inp": [
      -1,
      4,
      3,
      3,
      5
    ],
    "io_out": [
      5,
      4,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [3, 4, 0, -1, 1, -5]\noutput : list = [4, 3, 1, 0, -1, -5]",
    "output": "generated_output : list = sort_des(reverse([3, 4, 0, -1, 1, -5]))",
    "io_inp": [
      3,
      4,
      0,
      -1,
      1,
      -5
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sub_n([-2, 2],-2))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [7, -3]",
    "output": "generated_output : list = add_n([5, -5],2)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, -5, -1, 0, 4]\noutput : list = [40, 20, 15, 15, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(add_n([-1, -5, -1, 0, 4],3),-1))),5)",
    "io_inp": [
      -1,
      -5,
      -1,
      0,
      4
    ],
    "io_out": [
      40,
      20,
      15,
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(add_n(input,3),-1))),5)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [2, 0, 6]",
    "output": "generated_output : list = reverse(reverse(sub_n([0, -2, 4],-2)))",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      2,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [0, 3, 3, 2]\noutput : list = [-7, -2, 8]",
    "output": "generated_output : list = drop(add_n(mul_n(sort_des(add_n([0, 3, 3, 2],-2)),-5),-2),1)",
    "io_inp": [
      0,
      3,
      3,
      2
    ],
    "io_out": [
      -7,
      -2,
      8
    ],
    "output_masked": "generated_output : list = drop(add_n(mul_n(sort_des(add_n(input,-2)),-5),-2),1)"
  },
  {
    "input": "input : list = [-4, -4, 1, 0]\noutput : list = [5, 5, -5, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(mul_n([-4, -4, 1, 0],-2),2)),5))",
    "io_inp": [
      -4,
      -4,
      1,
      0
    ],
    "io_out": [
      5,
      5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(mul_n(input,-2),2)),5))"
  },
  {
    "input": "input : list = [5, 4, 0, -2]\noutput : list = [4, 3, -1, -3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sort_des([5, 4, 0, -2])),4)),-3)",
    "io_inp": [
      5,
      4,
      0,
      -2
    ],
    "io_out": [
      4,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sort_des(input)),4)),-3)"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(take([-1, 3, 3],1),-4),-2)))",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(take(input,1),-4),-2)))"
  },
  {
    "input": "input : list = [-1, 3, 5]\noutput : list = [-1, 11, 17]",
    "output": "generated_output : list = take(take(add_n(sub_n(mul_n([-1, 3, 5],3),1),3),34),31)",
    "io_inp": [
      -1,
      3,
      5
    ],
    "io_out": [
      -1,
      11,
      17
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(mul_n(input,3),1),3),34),31)"
  },
  {
    "input": "input : list = [-4, -5, -2, 4, 3, 0]\noutput : list = [-10, -8, -4, 0, 6, 8]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(mul_n([-4, -5, -2, 4, 3, 0],1)),15),2))",
    "io_inp": [
      -4,
      -5,
      -2,
      4,
      3,
      0
    ],
    "io_out": [
      -10,
      -8,
      -4,
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(mul_n(input,1)),15),2))"
  },
  {
    "input": "input : list = [-2, 4, -4]\noutput : list = [-32, 16, 32]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(mul_n([-2, 4, -4],-2),10)),37),4)",
    "io_inp": [
      -2,
      4,
      -4
    ],
    "io_out": [
      -32,
      16,
      32
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(mul_n(input,-2),10)),37),4)"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [-3, -5, -3]",
    "output": "generated_output : list = reverse(mul_n([3, 5, 3],-1))",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      -3,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-4, -4, 3, 0, -1, -5]\noutput : list = [-5, -4, -4, -1, 0, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des([-4, -4, 3, 0, -1, -5])),32)",
    "io_inp": [
      -4,
      -4,
      3,
      0,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),32)"
  },
  {
    "input": "input : list = [2, 0, -1, 5, 3]\noutput : list = [1, 2, 4, 5, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([2, 0, -1, 5, 3],2)))",
    "io_inp": [
      2,
      0,
      -1,
      5,
      3
    ],
    "io_out": [
      1,
      2,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,2)))"
  },
  {
    "input": "input : list = [-1, 1, 4, -5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take([-1, 1, 4, -5],1))",
    "io_inp": [
      -1,
      1,
      4,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(take([1, -1, 3],1),-1)),-5))",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(take(input,1),-1)),-5))"
  },
  {
    "input": "input : list = [5, 0, 0, -2, 4]\noutput : list = [-16, 0, 0, 8]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(drop([5, 0, 0, -2, 4],1),2)),-2))",
    "io_inp": [
      5,
      0,
      0,
      -2,
      4
    ],
    "io_out": [
      -16,
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(drop(input,1),2)),-2))"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 4, -3],1)",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 5, 5, 1, 5]\noutput : list = [-1, 3, 7, 7, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_asc([-3, 5, 5, 1, 5])))),2)",
    "io_inp": [
      -3,
      5,
      5,
      1,
      5
    ],
    "io_out": [
      -1,
      3,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [0, -5, 2, -1, -1]\noutput : list = [20, 4, 4, 0, -8]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des([0, -5, 2, -1, -1])),-4))",
    "io_inp": [
      0,
      -5,
      2,
      -1,
      -1
    ],
    "io_out": [
      20,
      4,
      4,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(input)),-4))"
  },
  {
    "input": "input : list = [-2, 1, -2, -5, 0, 1]\noutput : list = [-2, 1, -2]",
    "output": "generated_output : list = take([-2, 1, -2, -5, 0, 1],3)",
    "io_inp": [
      -2,
      1,
      -2,
      -5,
      0,
      1
    ],
    "io_out": [
      -2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, -1, 5, 4]\noutput : list = [2, 2, 1, -4]",
    "output": "generated_output : list = sub_n(sort_des([5, -1, 5, 4]),3)",
    "io_inp": [
      5,
      -1,
      5,
      4
    ],
    "io_out": [
      2,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [60]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(take([-2, 1, -5],1),5),5),5),-3)",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(take(input,1),5),5),5),-3)"
  },
  {
    "input": "input : list = [-3, -1, 1, -2, 2, -4]\noutput : list = [2, 1, -1, -2, -3, -4]",
    "output": "generated_output : list = take(take(take(reverse(sort_asc([-3, -1, 1, -2, 2, -4])),38),25),38)",
    "io_inp": [
      -3,
      -1,
      1,
      -2,
      2,
      -4
    ],
    "io_out": [
      2,
      1,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(sort_asc(input)),38),25),38)"
  },
  {
    "input": "input : list = [-3, 3, -5, 1]\noutput : list = [-2, 4, -4, 2]",
    "output": "generated_output : list = sub_n([-3, 3, -5, 1],-1)",
    "io_inp": [
      -3,
      3,
      -5,
      1
    ],
    "io_out": [
      -2,
      4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [10, -5]",
    "output": "generated_output : list = mul_n([-2, 1],-5)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [-5, -4, 3]",
    "output": "generated_output : list = sort_asc([-4, 3, -5])",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2, -2, -4, 2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(take([3, 2, -2, -4, 2],1)),-1)))",
    "io_inp": [
      3,
      2,
      -2,
      -4,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(take(input,1)),-1)))"
  },
  {
    "input": "input : list = [3, -1, 3, 0]\noutput : list = [2, 3, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(sort_des([3, -1, 3, 0])),-3)))",
    "io_inp": [
      3,
      -1,
      3,
      0
    ],
    "io_out": [
      2,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [1, 0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = drop([1, 0, 2],1)",
    "io_inp": [
      1,
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(drop([3, -5, -1],1)),2))",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(drop(input,1)),2))"
  },
  {
    "input": "input : list = [-3, 5, 1, -1, 4]\noutput : list = [60, 44, -4, -36, -68]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(mul_n([-3, 5, 1, -1, 4],-4)),5),-4))",
    "io_inp": [
      -3,
      5,
      1,
      -1,
      4
    ],
    "io_out": [
      60,
      44,
      -4,
      -36,
      -68
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(mul_n(input,-4)),5),-4))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-6, 2]",
    "output": "generated_output : list = add_n([-4, 4],-2)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 3, -5, 1, 1, 3]\noutput : list = [13, -11, 21, -3, -3, -11]",
    "output": "generated_output : list = sub_n(mul_n([-3, 3, -5, 1, 1, 3],-4),-1)",
    "io_inp": [
      -3,
      3,
      -5,
      1,
      1,
      3
    ],
    "io_out": [
      13,
      -11,
      21,
      -3,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [5, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(drop([-5, 2, -5],1))),3)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(drop(input,1))),3)"
  },
  {
    "input": "input : list = [0, 4, 1, -2, 2]\noutput : list = [5, 3, 2, 1, -1]",
    "output": "generated_output : list = take(sub_n(take(add_n(sort_des([0, 4, 1, -2, 2]),2),6),1),12)",
    "io_inp": [
      0,
      4,
      1,
      -2,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(sort_des(input),2),6),1),12)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sort_asc([-3, -4])),-1)),-1)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sort_asc(input)),-1)),-1)"
  },
  {
    "input": "input : list = [5, -4, 0, -4, 2, 0]\noutput : list = [0, 36, -72, 0, -72, 90]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(mul_n([5, -4, 0, -4, 2, 0],3),3),2)),21)",
    "io_inp": [
      5,
      -4,
      0,
      -4,
      2,
      0
    ],
    "io_out": [
      0,
      36,
      -72,
      0,
      -72,
      90
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(mul_n(input,3),3),2)),21)"
  },
  {
    "input": "input : list = [2, -5, -5, -1]\noutput : list = [-1, -5, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, -5, -1])",
    "io_inp": [
      2,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, 3, 4, -3]\noutput : list = [-7, -6, -6, -1, 0]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(sort_des([-2, -2, 3, 4, -3])),-4)))",
    "io_inp": [
      -2,
      -2,
      3,
      4,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-3, -3, -1, -2, -4, -4]\noutput : list = [-6, -6, -5, -5, -4, -3]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n([-3, -3, -1, -2, -4, -4],-5)),-3)),59)",
    "io_inp": [
      -3,
      -3,
      -1,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n(input,-5)),-3)),59)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-9, 12]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(sub_n([2, -5],-1),-2),2),-1),3)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(sub_n(input,-1),-2),2),-1),3)"
  },
  {
    "input": "input : list = [-3, 4, 4, -4]\noutput : list = [-2, 6, 6, -1]",
    "output": "generated_output : list = reverse(take(add_n(add_n(add_n([-3, 4, 4, -4],1),5),-4),28))",
    "io_inp": [
      -3,
      4,
      4,
      -4
    ],
    "io_out": [
      -2,
      6,
      6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(add_n(input,1),5),-4),28))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-7, -4]",
    "output": "generated_output : list = sub_n([-4, -1],3)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [2, 5, 4, 3, 1, 0]\noutput : list = [0, 1, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(take(sort_des([2, 5, 4, 3, 1, 0]),6)),14))",
    "io_inp": [
      2,
      5,
      4,
      3,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(sort_des(input),6)),14))"
  },
  {
    "input": "input : list = [1, -4, 2, 3, 2]\noutput : list = [-4, -6, -4, 8, -2]",
    "output": "generated_output : list = mul_n(reverse([1, -4, 2, 3, 2]),-2)",
    "io_inp": [
      1,
      -4,
      2,
      3,
      2
    ],
    "io_out": [
      -4,
      -6,
      -4,
      8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [3, -5, -5, 0, 5]\noutput : list = [10, 8, 5, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([3, -5, -5, 0, 5]),5))",
    "io_inp": [
      3,
      -5,
      -5,
      0,
      5
    ],
    "io_out": [
      10,
      8,
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des([2, -2])",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 1, 5, 5, 0]\noutput : list = [4, 4, 0, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc([-3, 1, 5, 5, 0]),4),-5))",
    "io_inp": [
      -3,
      1,
      5,
      5,
      0
    ],
    "io_out": [
      4,
      4,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(input),4),-5))"
  },
  {
    "input": "input : list = [4, -3, -5, -1, 5, 5]\noutput : list = [52, -18, -38, 2, 62, 62]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n([4, -3, -5, -1, 5, 5],1),2),-5),-2),-1)",
    "io_inp": [
      4,
      -3,
      -5,
      -1,
      5,
      5
    ],
    "io_out": [
      52,
      -18,
      -38,
      2,
      62,
      62
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n(input,1),2),-5),-2),-1)"
  },
  {
    "input": "input : list = [5, -1, 0, -5]\noutput : list = [-5, -1, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -1, 0, -5]))",
    "io_inp": [
      5,
      -1,
      0,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 1, -4, -3, -1]\noutput : list = [-4, -3, -1, 0, 1]",
    "output": "generated_output : list = sort_asc([0, 1, -4, -3, -1])",
    "io_inp": [
      0,
      1,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = reverse([-1, 0])",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, 3, -1, 5, -3]\noutput : list = [-3, -2, -1, 1, 5, 7]",
    "output": "generated_output : list = sort_asc(add_n([-4, -5, 3, -1, 5, -3],2))",
    "io_inp": [
      -4,
      -5,
      3,
      -1,
      5,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [2, 1, 5, -4, -3]\noutput : list = [0, -1, -5, -6, -9]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(sort_des([2, 1, 5, -4, -3]),-1),19)),-4)",
    "io_inp": [
      2,
      1,
      5,
      -4,
      -3
    ],
    "io_out": [
      0,
      -1,
      -5,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(sort_des(input),-1),19)),-4)"
  },
  {
    "input": "input : list = [-2, 4, -5, 2]\noutput : list = [4, 2, -2, -5]",
    "output": "generated_output : list = sort_des([-2, 4, -5, 2])",
    "io_inp": [
      -2,
      4,
      -5,
      2
    ],
    "io_out": [
      4,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, -4]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = add_n(sort_des([-5, 1, -4]),2)",
    "io_inp": [
      -5,
      1,
      -4
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [5, 10, 7]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n([2, -1, 4],-4),5)),-1)",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      5,
      10,
      7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(input,-4),5)),-1)"
  },
  {
    "input": "input : list = [4, 0, 4, -2, -3]\noutput : list = [7, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(take([4, 0, 4, -2, -3],2),-5)),-2))",
    "io_inp": [
      4,
      0,
      4,
      -2,
      -3
    ],
    "io_out": [
      7,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(take(input,2),-5)),-2))"
  },
  {
    "input": "input : list = [0, 2, 5, -4, 5]\noutput : list = [-4, 0, 2, 5, 5]",
    "output": "generated_output : list = sort_asc([0, 2, 5, -4, 5])",
    "io_inp": [
      0,
      2,
      5,
      -4,
      5
    ],
    "io_out": [
      -4,
      0,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 2, 2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(drop([-4, 2, 2],1),2))),-5)",
    "io_inp": [
      -4,
      2,
      2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(drop(input,1),2))),-5)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-3, -9]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(sort_asc([5, -1]),4),-1)))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(sort_asc(input),4),-1)))"
  },
  {
    "input": "input : list = [0, 5, -5, -4]\noutput : list = [9, 4, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(reverse([0, 5, -5, -4]),4))))",
    "io_inp": [
      0,
      5,
      -5,
      -4
    ],
    "io_out": [
      9,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [4, -2, 1, 1, -1, 1]\noutput : list = [4, 1, 1, 1, -1, -2]",
    "output": "generated_output : list = take(sort_des([4, -2, 1, 1, -1, 1]),27)",
    "io_inp": [
      4,
      -2,
      1,
      1,
      -1,
      1
    ],
    "io_out": [
      4,
      1,
      1,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),27)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-6, -4, -4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc([-1, -3, -1])),3))",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(input)),3))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse(sort_asc([-1, 3]))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 1, 1, -4, 1]\noutput : list = [10, -5, -15, -15, -15]",
    "output": "generated_output : list = sort_des(mul_n(add_n([-1, 1, 1, -4, 1],2),-5))",
    "io_inp": [
      -1,
      1,
      1,
      -4,
      1
    ],
    "io_out": [
      10,
      -5,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,2),-5))"
  },
  {
    "input": "input : list = [-4, 0, -1, -4, 4, -5]\noutput : list = [4, 0, -1, -4, -4, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(sort_asc([-4, 0, -1, -4, 4, -5]),-2)),2))",
    "io_inp": [
      -4,
      0,
      -1,
      -4,
      4,
      -5
    ],
    "io_out": [
      4,
      0,
      -1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(sort_asc(input),-2)),2))"
  },
  {
    "input": "input : list = [-4, 4, 4, -3, 2]\noutput : list = [9, 7, -3, -7, -7]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(reverse([-4, 4, 4, -3, 2]),-2),1),18))",
    "io_inp": [
      -4,
      4,
      4,
      -3,
      2
    ],
    "io_out": [
      9,
      7,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(reverse(input),-2),1),18))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [8, 7]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(add_n([-4, -5],5),-3),10)),-4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(add_n(input,5),-3),10)),-4)"
  },
  {
    "input": "input : list = [-1, 1, -2]\noutput : list = [-2, 0, -3]",
    "output": "generated_output : list = add_n([-1, 1, -2],-1)",
    "io_inp": [
      -1,
      1,
      -2
    ],
    "io_out": [
      -2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -5, 0, 3, -3]\noutput : list = [-6, -9, -4, -1, -7]",
    "output": "generated_output : list = add_n([-2, -5, 0, 3, -3],-4)",
    "io_inp": [
      -2,
      -5,
      0,
      3,
      -3
    ],
    "io_out": [
      -6,
      -9,
      -4,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, 2, -3, -3, 1]\noutput : list = [4, 4, 2, -6, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse([2, 2, -3, -3, 1]),20),2))",
    "io_inp": [
      2,
      2,
      -3,
      -3,
      1
    ],
    "io_out": [
      4,
      4,
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(input),20),2))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [40, 45]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(sub_n([-3, -4],2),1),-3)),-5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      40,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(sub_n(input,2),1),-3)),-5)"
  },
  {
    "input": "input : list = [-4, 3, 5, 1, -1]\noutput : list = [-4, -2, 2, 0, -7]",
    "output": "generated_output : list = reverse(sub_n([-4, 3, 5, 1, -1],3))",
    "io_inp": [
      -4,
      3,
      5,
      1,
      -1
    ],
    "io_out": [
      -4,
      -2,
      2,
      0,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-1, 5, 2, 2, 1]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(sub_n(take(drop(add_n([-1, 5, 2, 2, 1],-1),3),30),1))",
    "io_inp": [
      -1,
      5,
      2,
      2,
      1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(drop(add_n(input,-1),3),30),1))"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [-5, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse([1, -5, -2]))))",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [-3, -15, -30]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_asc([4, 0, -5]),-3),2),3))",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      -3,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_asc(input),-3),2),3))"
  },
  {
    "input": "input : list = [-3, 0, -4, -2, -1, -4]\noutput : list = [-60]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(take([-3, 0, -4, -2, -1, -4],1))),4),5)",
    "io_inp": [
      -3,
      0,
      -4,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(take(input,1))),4),5)"
  },
  {
    "input": "input : list = [1, 2, 3, -2]\noutput : list = [-10, -15, 10]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(drop([1, 2, 3, -2],1)),19),-5))",
    "io_inp": [
      1,
      2,
      3,
      -2
    ],
    "io_out": [
      -10,
      -15,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(drop(input,1)),19),-5))"
  },
  {
    "input": "input : list = [5, 2, -5, -4, -3, -1]\noutput : list = [21, 12, -9, -6, -3, 3]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(reverse([5, 2, -5, -4, -3, -1]),-2)),3),22)",
    "io_inp": [
      5,
      2,
      -5,
      -4,
      -3,
      -1
    ],
    "io_out": [
      21,
      12,
      -9,
      -6,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(reverse(input),-2)),3),22)"
  },
  {
    "input": "input : list = [3, -4, -1, 4]\noutput : list = [1, -4, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(drop([3, -4, -1, 4],1),14))),-3)",
    "io_inp": [
      3,
      -4,
      -1,
      4
    ],
    "io_out": [
      1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(drop(input,1),14))),-3)"
  },
  {
    "input": "input : list = [4, 4, -5, -5]\noutput : list = [15, 15, 6, 6]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(add_n([4, 4, -5, -5],5)),-4),-5),5)",
    "io_inp": [
      4,
      4,
      -5,
      -5
    ],
    "io_out": [
      15,
      15,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(add_n(input,5)),-4),-5),5)"
  },
  {
    "input": "input : list = [-4, 2, 4, -5, 4, -1]\noutput : list = [-18, -14, -2, 10, 18, 18]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sub_n([-4, 2, 4, -5, 4, -1],-1),-1),-4),2))",
    "io_inp": [
      -4,
      2,
      4,
      -5,
      4,
      -1
    ],
    "io_out": [
      -18,
      -14,
      -2,
      10,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sub_n(input,-1),-1),-4),2))"
  },
  {
    "input": "input : list = [1, 5, -4, 3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take([1, 5, -4, 3],1))",
    "io_inp": [
      1,
      5,
      -4,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-5, 0, 2, 4, -1, 0]\noutput : list = [-210, -130, -110, -110, -70, -30]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(sub_n([-5, 0, 2, 4, -1, 0],5)),-4),2),-5)",
    "io_inp": [
      -5,
      0,
      2,
      4,
      -1,
      0
    ],
    "io_out": [
      -210,
      -130,
      -110,
      -110,
      -70,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(sub_n(input,5)),-4),2),-5)"
  },
  {
    "input": "input : list = [-1, -2, -2, 3, -2]\noutput : list = [0, 0, 0, -5, -25]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc([-1, -2, -2, 3, -2]),-5)),3),-5)",
    "io_inp": [
      -1,
      -2,
      -2,
      3,
      -2
    ],
    "io_out": [
      0,
      0,
      0,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc(input),-5)),3),-5)"
  },
  {
    "input": "input : list = [-5, 1, -3, -2, -3]\noutput : list = [-1, -7]",
    "output": "generated_output : list = reverse(sub_n(take([-5, 1, -3, -2, -3],2),2))",
    "io_inp": [
      -5,
      1,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,2),2))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [1, 0]",
    "output": "generated_output : list = add_n(sort_des([-2, -3]),3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-3, 0, 4, -3, -4, -1]\noutput : list = [12, 14, 8]",
    "output": "generated_output : list = mul_n(take(add_n(drop([-3, 0, 4, -3, -4, -1],3),-3),15),-2)",
    "io_inp": [
      -3,
      0,
      4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      12,
      14,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(drop(input,3),-3),15),-2)"
  },
  {
    "input": "input : list = [1, -4, 0, 0]\noutput : list = [-4, 0, 0, 1]",
    "output": "generated_output : list = take(take(add_n(sort_asc(sub_n([1, -4, 0, 0],4)),4),26),32)",
    "io_inp": [
      1,
      -4,
      0,
      0
    ],
    "io_out": [
      -4,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(sub_n(input,4)),4),26),32)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-11, -11]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(sub_n([-5, -5],1)),-1),-4),-2)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(sub_n(input,1)),-1),-4),-2)"
  },
  {
    "input": "input : list = [-2, 2, -4, 2, -1, 5]\noutput : list = [0, -3, -3, -6, -7, -9]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_asc([-2, 2, -4, 2, -1, 5]),5)),12))",
    "io_inp": [
      -2,
      2,
      -4,
      2,
      -1,
      5
    ],
    "io_out": [
      0,
      -3,
      -3,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_asc(input),5)),12))"
  },
  {
    "input": "input : list = [-4, -4, -1, 4, 1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(take([-4, -4, -1, 4, 1],2))",
    "io_inp": [
      -4,
      -4,
      -1,
      4,
      1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-2, 4, 1]\noutput : list = [-4, -1, 2]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(mul_n([-2, 4, 1],-1)),1),8))",
    "io_inp": [
      -2,
      4,
      1
    ],
    "io_out": [
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(mul_n(input,-1)),1),8))"
  },
  {
    "input": "input : list = [2, -1, 4, -5, 4]\noutput : list = [-7, -3, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(sub_n([2, -1, 4, -5, 4],2)))))",
    "io_inp": [
      2,
      -1,
      4,
      -5,
      4
    ],
    "io_out": [
      -7,
      -3,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-7, -2]",
    "output": "generated_output : list = mul_n(sub_n([-4, 1],3),1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),1)"
  },
  {
    "input": "input : list = [-5, 5, 2, -4, 1]\noutput : list = [10, -15]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(drop([-5, 5, 2, -4, 1],3),18),5),-5))",
    "io_inp": [
      -5,
      5,
      2,
      -4,
      1
    ],
    "io_out": [
      10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(drop(input,3),18),5),-5))"
  },
  {
    "input": "input : list = [-2, 3, 2, 5, 4, 3]\noutput : list = [4, -6, -4, -10, -8, -6]",
    "output": "generated_output : list = mul_n([-2, 3, 2, 5, 4, 3],-2)",
    "io_inp": [
      -2,
      3,
      2,
      5,
      4,
      3
    ],
    "io_out": [
      4,
      -6,
      -4,
      -10,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, 5, -1, 1, -4]\noutput : list = [4, 9]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(take([0, 5, -1, 1, -4],2)),-1),3))",
    "io_inp": [
      0,
      5,
      -1,
      1,
      -4
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(take(input,2)),-1),3))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [0, 5]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(add_n([2, -3],4),-3)),2),38)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(add_n(input,4),-3)),2),38)"
  },
  {
    "input": "input : list = [0, -1, 5, -5]\noutput : list = [8, 3, 2, -2]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(sort_asc([0, -1, 5, -5]),4),1)),1)",
    "io_inp": [
      0,
      -1,
      5,
      -5
    ],
    "io_out": [
      8,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(sort_asc(input),4),1)),1)"
  },
  {
    "input": "input : list = [-2, -4, 1, -2]\noutput : list = [-2, 1, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, 1, -2])",
    "io_inp": [
      -2,
      -4,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4, 1, 5, 0, -1]\noutput : list = [-3, 0, 1, 2, 5, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(reverse([-4, 4, 1, 5, 0, -1])),5)),4)",
    "io_inp": [
      -4,
      4,
      1,
      5,
      0,
      -1
    ],
    "io_out": [
      -3,
      0,
      1,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(reverse(input)),5)),4)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -2, 3],1)",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, 0, 2, 5]\noutput : list = [3, 0, -2, -6, -1]",
    "output": "generated_output : list = reverse(sub_n(take(take(add_n([1, -4, 0, 2, 5],1),11),16),3))",
    "io_inp": [
      1,
      -4,
      0,
      2,
      5
    ],
    "io_out": [
      3,
      0,
      -2,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(add_n(input,1),11),16),3))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(sort_des([5, -2]),3))))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [-4, 5, -2, 2, 0, 2]\noutput : list = [-5, -3, -1, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(drop([-4, 5, -2, 2, 0, 2],1)),-3)",
    "io_inp": [
      -4,
      5,
      -2,
      2,
      0,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,1)),-3)"
  },
  {
    "input": "input : list = [-5, -2, 4]\noutput : list = [1, -5, -8]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-5, -2, 4],-2),1))",
    "io_inp": [
      -5,
      -2,
      4
    ],
    "io_out": [
      1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-2),1))"
  },
  {
    "input": "input : list = [-5, 3, 3, -1]\noutput : list = [6, 6, 2, -2]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-5, 3, 3, -1],3)))",
    "io_inp": [
      -5,
      3,
      3,
      -1
    ],
    "io_out": [
      6,
      6,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,3)))"
  },
  {
    "input": "input : list = [-1, -4, -4, 5]\noutput : list = [-4, -4, -1, 5]",
    "output": "generated_output : list = sort_asc([-1, -4, -4, 5])",
    "io_inp": [
      -1,
      -4,
      -4,
      5
    ],
    "io_out": [
      -4,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 2, -2]\noutput : list = [-4, -2, -1, 2]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc([-1, -4, 2, -2]),16)),30)",
    "io_inp": [
      -1,
      -4,
      2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(input),16)),30)"
  },
  {
    "input": "input : list = [0, 4, 4, 4, 0, -2]\noutput : list = [0, 4, 4]",
    "output": "generated_output : list = reverse(reverse(take([0, 4, 4, 4, 0, -2],3)))",
    "io_inp": [
      0,
      4,
      4,
      4,
      0,
      -2
    ],
    "io_out": [
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,3)))"
  },
  {
    "input": "input : list = [4, 2, -4, -1, -3, -5]\noutput : list = [5, 3, 0, -2, -3, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(sub_n([4, 2, -4, -1, -3, -5],-2)),1),39))",
    "io_inp": [
      4,
      2,
      -4,
      -1,
      -3,
      -5
    ],
    "io_out": [
      5,
      3,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(sub_n(input,-2)),1),39))"
  },
  {
    "input": "input : list = [5, 0, 0, -4]\noutput : list = [0, -5, -5, -9]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(add_n([5, 0, 0, -4],-4)),2)),3)",
    "io_inp": [
      5,
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(add_n(input,-4)),2)),3)"
  },
  {
    "input": "input : list = [1, -1, -2, -1]\noutput : list = [4, 2, 2, 1]",
    "output": "generated_output : list = add_n(sort_des([1, -1, -2, -1]),3)",
    "io_inp": [
      1,
      -1,
      -2,
      -1
    ],
    "io_out": [
      4,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [0, 3, 1, 2]\noutput : list = [-6, -4, -2, 0]",
    "output": "generated_output : list = mul_n(sort_des(take(reverse(sort_des([0, 3, 1, 2])),26)),-2)",
    "io_inp": [
      0,
      3,
      1,
      2
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(reverse(sort_des(input)),26)),-2)"
  },
  {
    "input": "input : list = [5, 3, -1, 1]\noutput : list = [-20, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(drop([5, 3, -1, 1],2),4)),4)",
    "io_inp": [
      5,
      3,
      -1,
      1
    ],
    "io_out": [
      -20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(drop(input,2),4)),4)"
  },
  {
    "input": "input : list = [-4, 2, -1]\noutput : list = [-6, -3, -9]",
    "output": "generated_output : list = take(take(take(sub_n(reverse([-4, 2, -1]),5),3),23),3)",
    "io_inp": [
      -4,
      2,
      -1
    ],
    "io_out": [
      -6,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(reverse(input),5),3),23),3)"
  },
  {
    "input": "input : list = [4, 5, -4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(drop([4, 5, -4, 3],2)))))",
    "io_inp": [
      4,
      5,
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(add_n([4, -5],2)))),-2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(add_n(input,2)))),-2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [2, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des([5, -2]),5)),3),2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des(input),5)),3),2)"
  },
  {
    "input": "input : list = [3, -4, 1, -3, 3, 3]\noutput : list = [15, 15, 15, 9, -3, -6]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(reverse([3, -4, 1, -3, 3, 3]),2),16)),3)",
    "io_inp": [
      3,
      -4,
      1,
      -3,
      3,
      3
    ],
    "io_out": [
      15,
      15,
      15,
      9,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(reverse(input),2),16)),3)"
  },
  {
    "input": "input : list = [0, 1, -3]\noutput : list = [0, 1, -3]",
    "output": "generated_output : list = reverse(reverse([0, 1, -3]))",
    "io_inp": [
      0,
      1,
      -3
    ],
    "io_out": [
      0,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [8, -4, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(take(reverse([4, -3, -2]),9),23),2))",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      8,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(reverse(input),9),23),2))"
  },
  {
    "input": "input : list = [-2, 2, 0, -1, 1, 0]\noutput : list = [-8, -4, 0, 0, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(add_n([-2, 2, 0, -1, 1, 0],4),22),-4),4))",
    "io_inp": [
      -2,
      2,
      0,
      -1,
      1,
      0
    ],
    "io_out": [
      -8,
      -4,
      0,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(add_n(input,4),22),-4),4))"
  },
  {
    "input": "input : list = [-3, 0, -4, -2]\noutput : list = [0, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-3, 0, -4, -2]))",
    "io_inp": [
      -3,
      0,
      -4,
      -2
    ],
    "io_out": [
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse([-2, -4])))),1)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse(input)))),1)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-8, -7]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sort_asc([-1, 0])),10),4),-3)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sort_asc(input)),10),4),-3)"
  },
  {
    "input": "input : list = [-3, 5, 3, 1, 0]\noutput : list = [-9, -25, -21, -17, -15]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-3, 5, 3, 1, 0],-5),-2),5)",
    "io_inp": [
      -3,
      5,
      3,
      1,
      0
    ],
    "io_out": [
      -9,
      -25,
      -21,
      -17,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,-5),-2),5)"
  },
  {
    "input": "input : list = [5, -3, 1]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, -3, 1]))",
    "io_inp": [
      5,
      -3,
      1
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, 5, 1]\noutput : list = [7, 6, 3]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc([4, 5, 1]),2)),32)",
    "io_inp": [
      4,
      5,
      1
    ],
    "io_out": [
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(input),2)),32)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [-15, 6]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n(drop([-3, 2, -5],1),3))))",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      -15,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(drop(input,1),3))))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = add_n(sub_n([0, 2],1),3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),3)"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = sort_des([-3, -1, -2])",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, -5, 1, 1]\noutput : list = [-60, 12, 12, 36, 60]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(mul_n([3, 5, -5, 1, 1],-1)),-4),3),1)",
    "io_inp": [
      3,
      5,
      -5,
      1,
      1
    ],
    "io_out": [
      -60,
      12,
      12,
      36,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(mul_n(input,-1)),-4),3),1)"
  },
  {
    "input": "input : list = [-4, -4, -1, -4, -4, 3]\noutput : list = [-7, -7, -7, -7, -4, 0]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(reverse([-4, -4, -1, -4, -4, 3])),16),11),3)",
    "io_inp": [
      -4,
      -4,
      -1,
      -4,
      -4,
      3
    ],
    "io_out": [
      -7,
      -7,
      -7,
      -7,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(reverse(input)),16),11),3)"
  },
  {
    "input": "input : list = [-3, -5, 3, -3, -3]\noutput : list = [6, -6, -6, -6, -10]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_des(sort_asc([-3, -5, 3, -3, -3])),31)),2)",
    "io_inp": [
      -3,
      -5,
      3,
      -3,
      -3
    ],
    "io_out": [
      6,
      -6,
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_des(sort_asc(input)),31)),2)"
  },
  {
    "input": "input : list = [5, 2, 2, 4]\noutput : list = [15, 12, 6, 6]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sort_des([5, 2, 2, 4]))),3))",
    "io_inp": [
      5,
      2,
      2,
      4
    ],
    "io_out": [
      15,
      12,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sort_des(input))),3))"
  },
  {
    "input": "input : list = [4, 3, -3, 3, 5]\noutput : list = [-65, 55, 55, 75, 95]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(sort_des([4, 3, -3, 3, 5])),4),1),5)",
    "io_inp": [
      4,
      3,
      -3,
      3,
      5
    ],
    "io_out": [
      -65,
      55,
      55,
      75,
      95
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(sort_des(input)),4),1),5)"
  },
  {
    "input": "input : list = [-2, -1, -2, -2, 2]\noutput : list = [6, 6, 6, 7, 10]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des([-2, -1, -2, -2, 2]),1),-3)),-4)",
    "io_inp": [
      -2,
      -1,
      -2,
      -2,
      2
    ],
    "io_out": [
      6,
      6,
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_des(input),1),-3)),-4)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(take([-2, -3, 2],1),2),3)),-5)",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(take(input,1),2),3)),-5)"
  },
  {
    "input": "input : list = [3, 2, -4, -3, -5, -5]\noutput : list = [3, 2, -4, -3]",
    "output": "generated_output : list = take([3, 2, -4, -3, -5, -5],4)",
    "io_inp": [
      3,
      2,
      -4,
      -3,
      -5,
      -5
    ],
    "io_out": [
      3,
      2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse(take(reverse([1, 5]),3))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),3))"
  },
  {
    "input": "input : list = [-2, -1, 5, 1, -3, 1]\noutput : list = [6, 3, -15]",
    "output": "generated_output : list = mul_n(take([-2, -1, 5, 1, -3, 1],3),-3)",
    "io_inp": [
      -2,
      -1,
      5,
      1,
      -3,
      1
    ],
    "io_out": [
      6,
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [0, 3, -2, 5, 4, 0]\noutput : list = [0, 3, -2]",
    "output": "generated_output : list = take([0, 3, -2, 5, 4, 0],3)",
    "io_inp": [
      0,
      3,
      -2,
      5,
      4,
      0
    ],
    "io_out": [
      0,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, 5, 1, 3]\noutput : list = [2, 0, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(reverse([3, 5, 1, 3]),5),-2)))",
    "io_inp": [
      3,
      5,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(reverse(input),5),-2)))"
  },
  {
    "input": "input : list = [-1, 1, 0, 5]\noutput : list = [1, 0, 5]",
    "output": "generated_output : list = drop([-1, 1, 0, 5],1)",
    "io_inp": [
      -1,
      1,
      0,
      5
    ],
    "io_out": [
      1,
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 4, -1, 3, -3, -2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(take([5, 4, -1, 3, -3, -2],2)),-1)),33)",
    "io_inp": [
      5,
      4,
      -1,
      3,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(take(input,2)),-1)),33)"
  },
  {
    "input": "input : list = [5, 4, 3, -5, 2, 5]\noutput : list = [6, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(drop([5, 4, 3, -5, 2, 5],4)),-2),-2))",
    "io_inp": [
      5,
      4,
      3,
      -5,
      2,
      5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(drop(input,4)),-2),-2))"
  },
  {
    "input": "input : list = [-1, 4, -2, 5]\noutput : list = [0, 6, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(drop([-1, 4, -2, 5],1),2),23)))",
    "io_inp": [
      -1,
      4,
      -2,
      5
    ],
    "io_out": [
      0,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(drop(input,1),2),23)))"
  },
  {
    "input": "input : list = [5, -1, -3, 1]\noutput : list = [-8, 12, 32]",
    "output": "generated_output : list = mul_n(add_n(mul_n(drop(sort_des([5, -1, -3, 1]),1),5),-1),-2)",
    "io_inp": [
      5,
      -1,
      -3,
      1
    ],
    "io_out": [
      -8,
      12,
      32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(drop(sort_des(input),1),5),-1),-2)"
  },
  {
    "input": "input : list = [-4, -5, -3, 1]\noutput : list = [-3, -15, -18, -21]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-4, -5, -3, 1],-2)),3)",
    "io_inp": [
      -4,
      -5,
      -3,
      1
    ],
    "io_out": [
      -3,
      -15,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,-2)),3)"
  },
  {
    "input": "input : list = [4, -1, 0, -4, -3]\noutput : list = [0, -4, -3]",
    "output": "generated_output : list = drop([4, -1, 0, -4, -3],2)",
    "io_inp": [
      4,
      -1,
      0,
      -4,
      -3
    ],
    "io_out": [
      0,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, 0, 0, -4, 0, 0]\noutput : list = [0, -12, 0, 0]",
    "output": "generated_output : list = mul_n(drop([4, 0, 0, -4, 0, 0],2),3)",
    "io_inp": [
      4,
      0,
      0,
      -4,
      0,
      0
    ],
    "io_out": [
      0,
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [-5, 1, -4, -4, -2, 3]\noutput : list = [11, 10, 10, 8, 5]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(mul_n([-5, 1, -4, -4, -2, 3],-1),5),3),-3))",
    "io_inp": [
      -5,
      1,
      -4,
      -4,
      -2,
      3
    ],
    "io_out": [
      11,
      10,
      10,
      8,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(mul_n(input,-1),5),3),-3))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-9]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(mul_n([1, -5],-5),1),1),4))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(mul_n(input,-5),1),1),4))"
  },
  {
    "input": "input : list = [-2, 1, -5, 1, -2]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(take([-2, 1, -5, 1, -2],1)))),5)",
    "io_inp": [
      -2,
      1,
      -5,
      1,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(take(input,1)))),5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc([-1, -5]))))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [-4, -3, 2, 1, 4]\noutput : list = [4, 2, 1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-4, -3, 2, 1, 4]))",
    "io_inp": [
      -4,
      -3,
      2,
      1,
      4
    ],
    "io_out": [
      4,
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [2, -1, -4]",
    "output": "generated_output : list = sort_des([-1, -4, 2])",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, 4]\noutput : list = [-11, -10, -6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sub_n([0, -1, 4],4),-2)),4)",
    "io_inp": [
      0,
      -1,
      4
    ],
    "io_out": [
      -11,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sub_n(input,4),-2)),4)"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [8]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(take([-5, 3, 4],1),-5),4),-4),14)",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(take(input,1),-5),4),-4),14)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [45, 20]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(sort_des([-4, 1]),-5),-5),29))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      45,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(sort_des(input),-5),-5),29))"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = sub_n(sort_asc([-5, -2, 1]),-4)",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-1, 1, -3]\noutput : list = [-5, -3, -7]",
    "output": "generated_output : list = sub_n([-1, 1, -3],4)",
    "io_inp": [
      -1,
      1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-12, 12]",
    "output": "generated_output : list = take(reverse(sort_des(take(mul_n([-4, 4],-3),14))),17)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(mul_n(input,-3),14))),17)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 15]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([5, -5],-2),5))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,-2),5))"
  },
  {
    "input": "input : list = [-1, 0, -5, 3]\noutput : list = [-3, 6, 9, 21]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sub_n([-1, 0, -5, 3],1),1),-3)),47)",
    "io_inp": [
      -1,
      0,
      -5,
      3
    ],
    "io_out": [
      -3,
      6,
      9,
      21
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sub_n(input,1),1),-3)),47)"
  },
  {
    "input": "input : list = [2, 5, -1, 0, 2, 5]\noutput : list = [0, 1, 3, 3, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(add_n([2, 5, -1, 0, 2, 5],-1),-2),8)))",
    "io_inp": [
      2,
      5,
      -1,
      0,
      2,
      5
    ],
    "io_out": [
      0,
      1,
      3,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(add_n(input,-1),-2),8)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(add_n([-3, -3],4),2),-1)))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(add_n(input,4),2),-1)))"
  },
  {
    "input": "input : list = [-2, 2, 5, 4, -5, -1]\noutput : list = [-5, -2, -1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([-2, 2, 5, 4, -5, -1]))",
    "io_inp": [
      -2,
      2,
      5,
      4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, 5, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(drop([4, 5, 1, -1],2))))",
    "io_inp": [
      4,
      5,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(drop(input,2))))"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [-1, 8, 8]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(reverse([-5, 4, -5])),-1),4),1)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      -1,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(reverse(input)),-1),4),1)"
  },
  {
    "input": "input : list = [-1, -1, -2, 3, -3]\noutput : list = [-2, -2, -4, 6, -6]",
    "output": "generated_output : list = mul_n([-1, -1, -2, 3, -3],2)",
    "io_inp": [
      -1,
      -1,
      -2,
      3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -4,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, 3, 4, 1, 4, -4]\noutput : list = [4, 4, 3, 1, -4]",
    "output": "generated_output : list = sort_des(drop([2, 3, 4, 1, 4, -4],1))",
    "io_inp": [
      2,
      3,
      4,
      1,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [20, 32]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc([1, 4]),12),-4),4)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      20,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(input),12),-4),4)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [-5, -2, 1]",
    "output": "generated_output : list = reverse(sort_des([-2, -5, 1]))",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 3, -3, -2, -4, 4]\noutput : list = [-6, -5, -4, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(add_n([2, 3, -3, -2, -4, 4],-2)))))",
    "io_inp": [
      2,
      3,
      -3,
      -2,
      -4,
      4
    ],
    "io_out": [
      -6,
      -5,
      -4,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-4, 2, 4, -1]\noutput : list = [-12, 13, 3, -27]",
    "output": "generated_output : list = sub_n(take(reverse(sub_n(mul_n([-4, 2, 4, -1],5),2)),8),5)",
    "io_inp": [
      -4,
      2,
      4,
      -1
    ],
    "io_out": [
      -12,
      13,
      3,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sub_n(mul_n(input,5),2)),8),5)"
  },
  {
    "input": "input : list = [-2, -5, 4, 0, 4]\noutput : list = [1, 4, 6, 10, 10]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(reverse([-2, -5, 4, 0, 4])),1),-5),24)",
    "io_inp": [
      -2,
      -5,
      4,
      0,
      4
    ],
    "io_out": [
      1,
      4,
      6,
      10,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(reverse(input)),1),-5),24)"
  },
  {
    "input": "input : list = [2, 3, 1, 3, 3, 5]\noutput : list = [-16, -10, -10, -4, -10, -7]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(mul_n([2, 3, 1, 3, 3, 5],-1),3),1)),1)",
    "io_inp": [
      2,
      3,
      1,
      3,
      3,
      5
    ],
    "io_out": [
      -16,
      -10,
      -10,
      -4,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(mul_n(input,-1),3),1)),1)"
  },
  {
    "input": "input : list = [3, -1, 2, 4, 2]\noutput : list = [40, -56]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(take([3, -1, 2, 4, 2],2),-3),4),-4),2)",
    "io_inp": [
      3,
      -1,
      2,
      4,
      2
    ],
    "io_out": [
      40,
      -56
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(take(input,2),-3),4),-4),2)"
  },
  {
    "input": "input : list = [5, 3, -2, 2]\noutput : list = [-14, -6, -2, 14]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(mul_n([5, 3, -2, 2],2),3))),-2)",
    "io_inp": [
      5,
      3,
      -2,
      2
    ],
    "io_out": [
      -14,
      -6,
      -2,
      14
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(mul_n(input,2),3))),-2)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse([-5, 0]))))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [-5, -5, 0, 3, 5, -5]\noutput : list = [-8, -8, -8, -3, 0, 2]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(sort_asc([-5, -5, 0, 3, 5, -5]),4))),1)",
    "io_inp": [
      -5,
      -5,
      0,
      3,
      5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(sort_asc(input),4))),1)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [10, -6, -6]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(sort_des([1, 1, -3])),-4),-2))",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      10,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(sort_des(input)),-4),-2))"
  },
  {
    "input": "input : list = [3, -3, 5, 0, 3, -4]\noutput : list = [-5, -1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(drop([3, -3, 5, 0, 3, -4],2)),1)))",
    "io_inp": [
      3,
      -3,
      5,
      0,
      3,
      -4
    ],
    "io_out": [
      -5,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(drop(input,2)),1)))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [7, -20]",
    "output": "generated_output : list = add_n(take(reverse(mul_n([-5, 4],3)),10),-5)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      7,
      -20
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(input,3)),10),-5)"
  },
  {
    "input": "input : list = [4, -2, 4, -5, -5, 0]\noutput : list = [-12, -12, -3, 3, 15, 15]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(add_n([4, -2, 4, -5, -5, 0],3),1),1)),3)",
    "io_inp": [
      4,
      -2,
      4,
      -5,
      -5,
      0
    ],
    "io_out": [
      -12,
      -12,
      -3,
      3,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(add_n(input,3),1),1)),3)"
  },
  {
    "input": "input : list = [-5, -1, 5, -2, -4, -2]\noutput : list = [-3, -2, 0, 0, 1, 7]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(sub_n([-5, -1, 5, -2, -4, -2],5)),21),-5),-2)",
    "io_inp": [
      -5,
      -1,
      5,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      0,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(sub_n(input,5)),21),-5),-2)"
  },
  {
    "input": "input : list = [-1, 3, 4, 2, -1]\noutput : list = [3, 2, 1, -2, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(add_n([-1, 3, 4, 2, -1],-1),11))))",
    "io_inp": [
      -1,
      3,
      4,
      2,
      -1
    ],
    "io_out": [
      3,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(add_n(input,-1),11))))"
  },
  {
    "input": "input : list = [3, -2, 1]\noutput : list = [0, 3, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse([3, -2, 1])),2))",
    "io_inp": [
      3,
      -2,
      1
    ],
    "io_out": [
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(input)),2))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(add_n([-3, -1],3))),4),-2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(add_n(input,3))),4),-2)"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [30, -10, -18]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(sort_des([4, -1, -2]),-4),-2),5),3)",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      30,
      -10,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(sort_des(input),-4),-2),5),3)"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [20, 5, -1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_des([0, 2, -5]),2),-3),1))",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      20,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_des(input),2),-3),1))"
  },
  {
    "input": "input : list = [-4, -3, 5, 4, 0]\noutput : list = [0, 4, 5, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 5, 4, 0])",
    "io_inp": [
      -4,
      -3,
      5,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -3, 1, -2, 3]\noutput : list = [-3, -2, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sort_asc([3, -3, 1, -2, 3])))))",
    "io_inp": [
      3,
      -3,
      1,
      -2,
      3
    ],
    "io_out": [
      -3,
      -2,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -1, 2, 0]\noutput : list = [-8, -4]",
    "output": "generated_output : list = reverse(sort_des(mul_n(drop(sort_des([-2, -1, 2, 0]),2),4)))",
    "io_inp": [
      -2,
      -1,
      2,
      0
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(drop(sort_des(input),2),4)))"
  },
  {
    "input": "input : list = [3, 0, -2, -1, -5, -4]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(take([3, 0, -2, -1, -5, -4],1),3)",
    "io_inp": [
      3,
      0,
      -2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [3, -2, -2, 2]\noutput : list = [15, 15, -1, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sub_n([3, -2, -2, 2],2),-4))),1)",
    "io_inp": [
      3,
      -2,
      -2,
      2
    ],
    "io_out": [
      15,
      15,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sub_n(input,2),-4))),1)"
  },
  {
    "input": "input : list = [-1, -4, 3, -2, 4, 5]\noutput : list = [4]",
    "output": "generated_output : list = add_n(reverse(take([-1, -4, 3, -2, 4, 5],1)),5)",
    "io_inp": [
      -1,
      -4,
      3,
      -2,
      4,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,1)),5)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [8, -2, 1]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse([-2, -5, 5])),-3))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      8,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(input)),-3))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-6, -3]",
    "output": "generated_output : list = add_n(reverse(take(reverse(sub_n([-3, 0],-2)),13)),-5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(sub_n(input,-2)),13)),-5)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [-3, -1, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(sub_n([2, -3, -1],-1),4)),38),-5)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(sub_n(input,-1),4)),38),-5)"
  },
  {
    "input": "input : list = [-4, -3, 5, -3, -5, 4]\noutput : list = [-15, -12, -9, -9, 12, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des([-4, -3, 5, -3, -5, 4])),3))",
    "io_inp": [
      -4,
      -3,
      5,
      -3,
      -5,
      4
    ],
    "io_out": [
      -15,
      -12,
      -9,
      -9,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(input)),3))"
  },
  {
    "input": "input : list = [2, -2, -1, 4, 3, -5]\noutput : list = [-1, -5, -4, 1, 0, -8]",
    "output": "generated_output : list = add_n([2, -2, -1, 4, 3, -5],-3)",
    "io_inp": [
      2,
      -2,
      -1,
      4,
      3,
      -5
    ],
    "io_out": [
      -1,
      -5,
      -4,
      1,
      0,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 2, -2, -1, 1]\noutput : list = [-6, -7, -9, -10, -11]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(sub_n([-3, 2, -2, -1, 1],1)),1),3),-3)",
    "io_inp": [
      -3,
      2,
      -2,
      -1,
      1
    ],
    "io_out": [
      -6,
      -7,
      -9,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(sub_n(input,1)),1),3),-3)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(sub_n([-2, -4],-3),11)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),11)"
  },
  {
    "input": "input : list = [-3, -3, -2, 0, 3]\noutput : list = [-4, -4, -3, -1, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(reverse([-3, -3, -2, 0, 3]),17))),-1)",
    "io_inp": [
      -3,
      -3,
      -2,
      0,
      3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(reverse(input),17))),-1)"
  },
  {
    "input": "input : list = [5, -5, -4, -3]\noutput : list = [-4, -6, -8]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(drop([5, -5, -4, -3],1),10),-1)),2)",
    "io_inp": [
      5,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(drop(input,1),10),-1)),2)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [0, 24]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(mul_n([-5, 1],-4))),-4),44)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      0,
      24
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(mul_n(input,-4))),-4),44)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(sort_des([5, 2])))),3)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(drop([1, 1, -5],1),7),5)),4)",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(drop(input,1),7),5)),4)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [-1]",
    "output": "generated_output : list = drop(sort_des([4, 3, -1]),2)",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),2)"
  },
  {
    "input": "input : list = [-2, -5, 5, 0]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(take([-2, -5, 5, 0],1)),4)))",
    "io_inp": [
      -2,
      -5,
      5,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(take(input,1)),4)))"
  },
  {
    "input": "input : list = [-3, 1, -4, 1, 4]\noutput : list = [2, -1, -1, -5, -6]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_asc([-3, 1, -4, 1, 4])),-2)))",
    "io_inp": [
      -3,
      1,
      -4,
      1,
      4
    ],
    "io_out": [
      2,
      -1,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [3, 1, 1, 1, 3]\noutput : list = [1, 1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([3, 1, 1, 1, 3])))",
    "io_inp": [
      3,
      1,
      1,
      1,
      3
    ],
    "io_out": [
      1,
      1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, -3, -2, 1, 0]\noutput : list = [0, -7, -6, -3, -4]",
    "output": "generated_output : list = add_n([4, -3, -2, 1, 0],-4)",
    "io_inp": [
      4,
      -3,
      -2,
      1,
      0
    ],
    "io_out": [
      0,
      -7,
      -6,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 0, -3, -4, 2]\noutput : list = [-4, -3, -6, -7, -1]",
    "output": "generated_output : list = add_n([-1, 0, -3, -4, 2],-3)",
    "io_inp": [
      -1,
      0,
      -3,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3,
      -6,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des([-3, 5, 4])),2)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),2)"
  },
  {
    "input": "input : list = [0, -2, 2, 2, -4, -1]\noutput : list = [-8, -8, -4, 0]",
    "output": "generated_output : list = mul_n(sort_des(take(take(sub_n([0, -2, 2, 2, -4, -1],-2),4),12)),-2)",
    "io_inp": [
      0,
      -2,
      2,
      2,
      -4,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(sub_n(input,-2),4),12)),-2)"
  },
  {
    "input": "input : list = [0, 3, -4]\noutput : list = [-10, -3, -6]",
    "output": "generated_output : list = add_n(reverse(sub_n([0, 3, -4],3)),-3)",
    "io_inp": [
      0,
      3,
      -4
    ],
    "io_out": [
      -10,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,3)),-3)"
  },
  {
    "input": "input : list = [-3, -1, 1, -3, 4]\noutput : list = [9, 9, 3, -3, -12]",
    "output": "generated_output : list = take(mul_n(sort_asc([-3, -1, 1, -3, 4]),-3),36)",
    "io_inp": [
      -3,
      -1,
      1,
      -3,
      4
    ],
    "io_out": [
      9,
      9,
      3,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),-3),36)"
  },
  {
    "input": "input : list = [-1, 4, -2, -5]\noutput : list = [3, -2, -3, -6]",
    "output": "generated_output : list = take(add_n(sort_des([-1, 4, -2, -5]),-1),15)",
    "io_inp": [
      -1,
      4,
      -2,
      -5
    ],
    "io_out": [
      3,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),-1),15)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(sort_des([4, -3]),13),4),-2))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(sort_des(input),13),4),-2))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des([-1, 0])",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-10, -20]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n([-4, -2],5))),24)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -10,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(input,5))),24)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-24, -24]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n([-3, -3],-4),-1),1),4))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n(input,-4),-1),1),4))"
  },
  {
    "input": "input : list = [2, 4, -1, -4, 0, 3]\noutput : list = [-4, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(drop([2, 4, -1, -4, 0, 3],3),3)))",
    "io_inp": [
      2,
      4,
      -1,
      -4,
      0,
      3
    ],
    "io_out": [
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(drop(input,3),3)))"
  },
  {
    "input": "input : list = [3, 3, 2, 1]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(drop([3, 3, 2, 1],1),4),-2),-4),-4)",
    "io_inp": [
      3,
      3,
      2,
      1
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(drop(input,1),4),-2),-4),-4)"
  },
  {
    "input": "input : list = [-3, 0, -1, 3, 0, -5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(take([-3, 0, -1, 3, 0, -5],1),-1)),-5),-3)",
    "io_inp": [
      -3,
      0,
      -1,
      3,
      0,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(take(input,1),-1)),-5),-3)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [9, 1]",
    "output": "generated_output : list = add_n([5, -3],4)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, -5, 2, -5]\noutput : list = [-10, -10, -3, -1]",
    "output": "generated_output : list = take(add_n(sort_asc(take(reverse([4, -5, 2, -5]),12)),-5),50)",
    "io_inp": [
      4,
      -5,
      2,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(reverse(input),12)),-5),50)"
  },
  {
    "input": "input : list = [4, 5, -3, 0, 3, -4]\noutput : list = [0, -3, 4]",
    "output": "generated_output : list = reverse(reverse(mul_n(drop(drop([4, 5, -3, 0, 3, -4],2),1),-1)))",
    "io_inp": [
      4,
      5,
      -3,
      0,
      3,
      -4
    ],
    "io_out": [
      0,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(drop(drop(input,2),1),-1)))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sort_asc([0, 1]))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 3, -1, -4, 2, -3]\noutput : list = [-5, -6, -8, -9, -11, -12]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n([0, 3, -1, -4, 2, -3],4),16)),-4))",
    "io_inp": [
      0,
      3,
      -1,
      -4,
      2,
      -3
    ],
    "io_out": [
      -5,
      -6,
      -8,
      -9,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(sub_n(input,4),16)),-4))"
  },
  {
    "input": "input : list = [-3, -5, -1, 3, -5]\noutput : list = [-7, 1, -3, -7, -5]",
    "output": "generated_output : list = add_n(reverse([-3, -5, -1, 3, -5]),-2)",
    "io_inp": [
      -3,
      -5,
      -1,
      3,
      -5
    ],
    "io_out": [
      -7,
      1,
      -3,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-2, 1, 1, 1, -4, -5]\noutput : list = [14, 14, 14, 11, 9, 8]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des([-2, 1, 1, 1, -4, -5]),-4),5),-1),-3)",
    "io_inp": [
      -2,
      1,
      1,
      1,
      -4,
      -5
    ],
    "io_out": [
      14,
      14,
      14,
      11,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des(input),-4),5),-1),-3)"
  },
  {
    "input": "input : list = [-4, -2, -1, 4, 0, 4]\noutput : list = [27, 21, 18, 15, 3, 3]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des([-4, -2, -1, 4, 0, 4]),-5)),-3)",
    "io_inp": [
      -4,
      -2,
      -1,
      4,
      0,
      4
    ],
    "io_out": [
      27,
      21,
      18,
      15,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(input),-5)),-3)"
  },
  {
    "input": "input : list = [1, 5, -4]\noutput : list = [-2, 3, 7]",
    "output": "generated_output : list = sort_asc(sub_n([1, 5, -4],-2))",
    "io_inp": [
      1,
      5,
      -4
    ],
    "io_out": [
      -2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [3, 0, 0, -4, -4, -5]\noutput : list = [2, 3, 3, 7, 7, 10]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(reverse([3, 0, 0, -4, -4, -5])),4)),3)",
    "io_inp": [
      3,
      0,
      0,
      -4,
      -4,
      -5
    ],
    "io_out": [
      2,
      3,
      3,
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(reverse(input)),4)),3)"
  },
  {
    "input": "input : list = [1, 4, 0]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 4, 0],1)",
    "io_inp": [
      1,
      4,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 1, 4, 2]\noutput : list = [-11, -9, -7, -5]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des(reverse([3, 1, 4, 2])),-2),3),21)",
    "io_inp": [
      3,
      1,
      4,
      2
    ],
    "io_out": [
      -11,
      -9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(reverse(input)),-2),3),21)"
  },
  {
    "input": "input : list = [4, 4, 0, 5, -2, 0]\noutput : list = [-20, -16, -16, 0, 0, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(reverse(sort_des([4, 4, 0, 5, -2, 0])),-4)),17)",
    "io_inp": [
      4,
      4,
      0,
      5,
      -2,
      0
    ],
    "io_out": [
      -20,
      -16,
      -16,
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(reverse(sort_des(input)),-4)),17)"
  },
  {
    "input": "input : list = [-3, 1, -1, -2, 1]\noutput : list = [7, 11]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(take([-3, 1, -1, -2, 1],2),-1),-4),-4))",
    "io_inp": [
      -3,
      1,
      -1,
      -2,
      1
    ],
    "io_out": [
      7,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(take(input,2),-1),-4),-4))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(reverse([-4, -4])))),-2)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [-1, 0, 0, 5, 5]\noutput : list = [4, 0, 0, -20, -20]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_asc([-1, 0, 0, 5, 5]),-4)),42))",
    "io_inp": [
      -1,
      0,
      0,
      5,
      5
    ],
    "io_out": [
      4,
      0,
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_asc(input),-4)),42))"
  },
  {
    "input": "input : list = [-4, 1, -1, 2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(reverse([-4, 1, -1, 2, 5]),2)",
    "io_inp": [
      -4,
      1,
      -1,
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, -5, 2, -5, 0]\noutput : list = [8, 8, 7, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n([-4, -5, 2, -5, 0],-1),-2)),-5)",
    "io_inp": [
      -4,
      -5,
      2,
      -5,
      0
    ],
    "io_out": [
      8,
      8,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(input,-1),-2)),-5)"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [-30, -25, -20]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(add_n([-2, -1, 0],-4),5))))",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      -30,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(add_n(input,-4),5))))"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [8, 7, 3]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(add_n([4, -1, 3],5),5),1),3))",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(add_n(input,5),5),1),3))"
  },
  {
    "input": "input : list = [0, -1, -2, 0, 3, -3]\noutput : list = [-3, -4, -5, -3, 0, -6]",
    "output": "generated_output : list = add_n(mul_n([0, -1, -2, 0, 3, -3],1),-3)",
    "io_inp": [
      0,
      -1,
      -2,
      0,
      3,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -3,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),-3)"
  },
  {
    "input": "input : list = [1, 4, 0]\noutput : list = [-16, -4, 0]",
    "output": "generated_output : list = mul_n(sort_des([1, 4, 0]),-4)",
    "io_inp": [
      1,
      4,
      0
    ],
    "io_out": [
      -16,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-1, 5, -2, 4, -4, 3]\noutput : list = [-6, -3, 12, 15]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(mul_n([-1, 5, -2, 4, -4, 3],-1),4))),-3)",
    "io_inp": [
      -1,
      5,
      -2,
      4,
      -4,
      3
    ],
    "io_out": [
      -6,
      -3,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(mul_n(input,-1),4))),-3)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [36, 12, -24]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(mul_n([1, -2, 3],-3))),-4))",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      36,
      12,
      -24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(mul_n(input,-3))),-4))"
  },
  {
    "input": "input : list = [1, 5, -5, -1, 5]\noutput : list = [9, 3]",
    "output": "generated_output : list = add_n(reverse(sub_n(drop([1, 5, -5, -1, 5],3),1)),5)",
    "io_inp": [
      1,
      5,
      -5,
      -1,
      5
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(drop(input,3),1)),5)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sort_asc([-4, 4])),16),5),1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sort_asc(input)),16),5),1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-9, -5]",
    "output": "generated_output : list = add_n([-5, -1],-4)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -3, -3, -1]\noutput : list = [-12, -9, -9, -3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse([-4, -3, -3, -1])),3))",
    "io_inp": [
      -4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -9,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(input)),3))"
  },
  {
    "input": "input : list = [-5, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(drop([-5, -5, 5],1))",
    "io_inp": [
      -5,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-2, -3, -3, -4]\noutput : list = [-25, -20, -20, -15]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([-2, -3, -3, -4]),1),5)",
    "io_inp": [
      -2,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -25,
      -20,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),1),5)"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-10, -10, 25]",
    "output": "generated_output : list = sort_asc(mul_n([2, -5, 2],-5))",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -10,
      -10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(add_n([2, 2],-3),3)),-5))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(add_n(input,-3),3)),-5))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(sort_des([0, 5]))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [50, 50, 30]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(reverse([5, 5, 3]),-2),-5)),33)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      50,
      50,
      30
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(reverse(input),-2),-5)),33)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-15, -7]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n(sort_asc([3, -5]),-4),3),29),3)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -15,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(sort_asc(input),-4),3),29),3)"
  },
  {
    "input": "input : list = [0, -1, 5, -4, 4, 1]\noutput : list = [4, 3, 0, -2, -5]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(drop([0, -1, 5, -4, 4, 1],1),-4),30),-5))",
    "io_inp": [
      0,
      -1,
      5,
      -4,
      4,
      1
    ],
    "io_out": [
      4,
      3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(drop(input,1),-4),30),-5))"
  },
  {
    "input": "input : list = [-3, 0, 0, -1]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(take(take([-3, 0, 0, -1],1),2),-1)",
    "io_inp": [
      -3,
      0,
      0,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,1),2),-1)"
  },
  {
    "input": "input : list = [1, 0, -5, -3, -4]\noutput : list = [-2, -1, 0, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc([1, 0, -5, -3, -4]),-3)",
    "io_inp": [
      1,
      0,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-2, 1, -5, 0]\noutput : list = [-4, 0, 8, 20]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(mul_n([-2, 1, -5, 0],-4)),29)))",
    "io_inp": [
      -2,
      1,
      -5,
      0
    ],
    "io_out": [
      -4,
      0,
      8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(mul_n(input,-4)),29)))"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [2, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(take(take(sort_des([2, 5, 4]),6),10)))",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(sort_des(input),6),10)))"
  },
  {
    "input": "input : list = [-3, -1, 4, -1, 1, 3]\noutput : list = [-12, -6, 9, -6, 0, 6]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(mul_n([-3, -1, 4, -1, 1, 3],3)),-1),-2))",
    "io_inp": [
      -3,
      -1,
      4,
      -1,
      1,
      3
    ],
    "io_out": [
      -12,
      -6,
      9,
      -6,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(mul_n(input,3)),-1),-2))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [11, 7]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(add_n([0, -2],-3)),-2),-1),-2)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      11,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(add_n(input,-3)),-2),-1),-2)"
  },
  {
    "input": "input : list = [0, 3, 3, -2, 2]\noutput : list = [-48, 0, 48, 72, 72]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n(mul_n([0, 3, 3, -2, 2],4),-3)),17),-2)",
    "io_inp": [
      0,
      3,
      3,
      -2,
      2
    ],
    "io_out": [
      -48,
      0,
      48,
      72,
      72
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(mul_n(input,4),-3)),17),-2)"
  },
  {
    "input": "input : list = [-4, 1, -3, -5]\noutput : list = [-4, 1, -3, -5]",
    "output": "generated_output : list = take(add_n(add_n([-4, 1, -3, -5],3),-3),25)",
    "io_inp": [
      -4,
      1,
      -3,
      -5
    ],
    "io_out": [
      -4,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,3),-3),25)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(sub_n([5, -5],-5)),7)),-2)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(sub_n(input,-5)),7)),-2)"
  },
  {
    "input": "input : list = [2, -2, 4, -3, 5, -2]\noutput : list = [6, 2, 8, 1, 9, 2]",
    "output": "generated_output : list = sub_n([2, -2, 4, -3, 5, -2],-4)",
    "io_inp": [
      2,
      -2,
      4,
      -3,
      5,
      -2
    ],
    "io_out": [
      6,
      2,
      8,
      1,
      9,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 2, 1, -2]\noutput : list = [12, 6, 4, 2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(add_n([3, 2, 1, -2],-3),-2),-2)))",
    "io_inp": [
      3,
      2,
      1,
      -2
    ],
    "io_out": [
      12,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(add_n(input,-3),-2),-2)))"
  },
  {
    "input": "input : list = [-5, -4, 3, 1, -5, 4]\noutput : list = [6, 4, 0, -10, -12, -12]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(sort_des([-5, -4, 3, 1, -5, 4]),26),2)),-2)",
    "io_inp": [
      -5,
      -4,
      3,
      1,
      -5,
      4
    ],
    "io_out": [
      6,
      4,
      0,
      -10,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(sort_des(input),26),2)),-2)"
  },
  {
    "input": "input : list = [-2, 1, -5, 0, 5, -1]\noutput : list = [20, 0, -5, -10, -15, -30]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse([-2, 1, -5, 0, 5, -1]),5)),-5)",
    "io_inp": [
      -2,
      1,
      -5,
      0,
      5,
      -1
    ],
    "io_out": [
      20,
      0,
      -5,
      -10,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(input),5)),-5)"
  },
  {
    "input": "input : list = [-3, -2, 1, 5, 1]\noutput : list = [9, 6, -3, -15, -3]",
    "output": "generated_output : list = mul_n([-3, -2, 1, 5, 1],-3)",
    "io_inp": [
      -3,
      -2,
      1,
      5,
      1
    ],
    "io_out": [
      9,
      6,
      -3,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, -4, 3]\noutput : list = [2, 1, -5]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_des([2, -4, 3])),1)))",
    "io_inp": [
      2,
      -4,
      3
    ],
    "io_out": [
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [-3, 0, -4, 3, -3]\noutput : list = [3, 0, -3, -3, -4]",
    "output": "generated_output : list = sort_des([-3, 0, -4, 3, -3])",
    "io_inp": [
      -3,
      0,
      -4,
      3,
      -3
    ],
    "io_out": [
      3,
      0,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = sort_asc([-1, -3, -1])",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, 1, 2, 2]\noutput : list = [1, 6, 7, 7, 10]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sub_n([5, -4, 1, 2, 2],-5)))))",
    "io_inp": [
      5,
      -4,
      1,
      2,
      2
    ],
    "io_out": [
      1,
      6,
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-4, -20]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(add_n([-4, 0],-2))),4),4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -4,
      -20
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(add_n(input,-2))),4),4)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, 5, 1]\noutput : list = [-12, -16, 20, 4]",
    "output": "generated_output : list = mul_n([-3, -4, 5, 1],4)",
    "io_inp": [
      -3,
      -4,
      5,
      1
    ],
    "io_out": [
      -12,
      -16,
      20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, -4, 5, -4]\noutput : list = [11, 3, 2, 2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(add_n([-3, -4, 5, -4],4)),-2),5),5)",
    "io_inp": [
      -3,
      -4,
      5,
      -4
    ],
    "io_out": [
      11,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(add_n(input,4)),-2),5),5)"
  },
  {
    "input": "input : list = [-4, -5, -4]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(reverse([-4, -5, -4]),10))),2)",
    "io_inp": [
      -4,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(reverse(input),10))),2)"
  },
  {
    "input": "input : list = [5, 2, -5]\noutput : list = [7, 4, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n([5, 2, -5],-2)))",
    "io_inp": [
      5,
      2,
      -5
    ],
    "io_out": [
      7,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-3, 3, 5, 0, -3, 4]\noutput : list = [-20, -16, -12, 0, 12, 12]",
    "output": "generated_output : list = mul_n(sort_des([-3, 3, 5, 0, -3, 4]),-4)",
    "io_inp": [
      -3,
      3,
      5,
      0,
      -3,
      4
    ],
    "io_out": [
      -20,
      -16,
      -12,
      0,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, -3, 1]\noutput : list = [0, 0, 12]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(add_n([1, -3, 1],1)),-5),-3),-3)",
    "io_inp": [
      1,
      -3,
      1
    ],
    "io_out": [
      0,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(add_n(input,1)),-5),-3),-3)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(sort_asc([0, -1]))),1),1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(sort_asc(input))),1),1)"
  },
  {
    "input": "input : list = [2, -5, 5, 2]\noutput : list = [8, 5]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(drop([2, -5, 5, 2],2)),4)),-1)",
    "io_inp": [
      2,
      -5,
      5,
      2
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(drop(input,2)),4)),-1)"
  },
  {
    "input": "input : list = [0, -5, 0, -5, 2]\noutput : list = [-1, -8, -3]",
    "output": "generated_output : list = sub_n(reverse(drop([0, -5, 0, -5, 2],2)),3)",
    "io_inp": [
      0,
      -5,
      0,
      -5,
      2
    ],
    "io_out": [
      -1,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,2)),3)"
  },
  {
    "input": "input : list = [4, 0, -3, -5]\noutput : list = [-7, -5, -2, 2]",
    "output": "generated_output : list = reverse(sub_n([4, 0, -3, -5],2))",
    "io_inp": [
      4,
      0,
      -3,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [1, 2, 0]\noutput : list = [0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([1, 2, 0]))",
    "io_inp": [
      1,
      2,
      0
    ],
    "io_out": [
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-9, -4]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(add_n([1, -4],-4)),3),-4),-3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(add_n(input,-4)),3),-4),-3)"
  },
  {
    "input": "input : list = [3, 2, 0, 1, -4]\noutput : list = [4, 3, 2, 1, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_des([3, 2, 0, 1, -4]),-1))))",
    "io_inp": [
      3,
      2,
      0,
      1,
      -4
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [-5, -3, -5, 4, -4, 3]\noutput : list = [4, 3, -3, -4, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(sub_n([-5, -3, -5, 4, -4, 3],-5),5))))",
    "io_inp": [
      -5,
      -3,
      -5,
      4,
      -4,
      3
    ],
    "io_out": [
      4,
      3,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(sub_n(input,-5),5))))"
  },
  {
    "input": "input : list = [4, -4, -2, -4, 1, 0]\noutput : list = [6, 3, 2, 0, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n(add_n([4, -4, -2, -4, 1, 0],-2),-4))",
    "io_inp": [
      4,
      -4,
      -2,
      -4,
      1,
      0
    ],
    "io_out": [
      6,
      3,
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-2),-4))"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [21, 21, 6]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(mul_n([0, -5, -5],1)),2),7),-3)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      21,
      21,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(mul_n(input,1)),2),7),-3)"
  },
  {
    "input": "input : list = [0, 2, 5, -2]\noutput : list = [2, 4, 6, 9]",
    "output": "generated_output : list = sort_asc(add_n([0, 2, 5, -2],4))",
    "io_inp": [
      0,
      2,
      5,
      -2
    ],
    "io_out": [
      2,
      4,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-3, -8, -10]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des([-5, -3, 2]),-5),5),5)",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -3,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(input),-5),5),5)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [0, -8]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(sort_des([3, -5]),1)),-3))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(sort_des(input),1)),-3))"
  },
  {
    "input": "input : list = [3, 0, -3, 2, -3, -3]\noutput : list = [4, 5, 7, 10, 10, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(sub_n([3, 0, -3, 2, -3, -3],4),-3),-1)),53)",
    "io_inp": [
      3,
      0,
      -3,
      2,
      -3,
      -3
    ],
    "io_out": [
      4,
      5,
      7,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(sub_n(input,4),-3),-1)),53)"
  },
  {
    "input": "input : list = [-3, 4, 0, -5, 0, 0]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(drop([-3, 4, 0, -5, 0, 0],4),11),-1)),4)",
    "io_inp": [
      -3,
      4,
      0,
      -5,
      0,
      0
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(drop(input,4),11),-1)),4)"
  },
  {
    "input": "input : list = [3, 2, 0, 5, 4, 1]\noutput : list = [-35, -45, -65, -15, -25, -55]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n([3, 2, 0, 5, 4, 1],-5),2),4),1),5)",
    "io_inp": [
      3,
      2,
      0,
      5,
      4,
      1
    ],
    "io_out": [
      -35,
      -45,
      -65,
      -15,
      -25,
      -55
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n(input,-5),2),4),1),5)"
  },
  {
    "input": "input : list = [5, 4, 4, -2, -3]\noutput : list = [-12, -8]",
    "output": "generated_output : list = reverse(mul_n(mul_n(drop([5, 4, 4, -2, -3],3),1),4))",
    "io_inp": [
      5,
      4,
      4,
      -2,
      -3
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(drop(input,3),1),4))"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [15, 0, -12]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(add_n([-4, 0, 5],-4),10)),-4),3)",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      15,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(add_n(input,-4),10)),-4),3)"
  },
  {
    "input": "input : list = [3, -5, 1, -2]\noutput : list = [1, -7, -1, -4]",
    "output": "generated_output : list = sub_n([3, -5, 1, -2],2)",
    "io_inp": [
      3,
      -5,
      1,
      -2
    ],
    "io_out": [
      1,
      -7,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, 1, 2, 3, -3]\noutput : list = [4, 8, 9, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(drop([-2, 1, 2, 3, -3],1),-5),3)),-5)",
    "io_inp": [
      -2,
      1,
      2,
      3,
      -3
    ],
    "io_out": [
      4,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(drop(input,1),-5),3)),-5)"
  },
  {
    "input": "input : list = [5, -4, -3, -5]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take([5, -4, -3, -5],1))",
    "io_inp": [
      5,
      -4,
      -3,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des([3, 0])",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, 0, 3]\noutput : list = [1, 3, 0, -3]",
    "output": "generated_output : list = mul_n([-1, -3, 0, 3],-1)",
    "io_inp": [
      -1,
      -3,
      0,
      3
    ],
    "io_out": [
      1,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(add_n([1, 0],3)))))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(add_n(input,3)))))"
  },
  {
    "input": "input : list = [-1, 0, -3, -1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(drop(sort_asc([-1, 0, -3, -1]),2),2),2),-2)",
    "io_inp": [
      -1,
      0,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(drop(sort_asc(input),2),2),2),-2)"
  },
  {
    "input": "input : list = [1, 0, -3, -1, 0, -4]\noutput : list = [45, 0, -15]",
    "output": "generated_output : list = take(mul_n(drop(reverse(mul_n([1, 0, -3, -1, 0, -4],5)),3),-3),8)",
    "io_inp": [
      1,
      0,
      -3,
      -1,
      0,
      -4
    ],
    "io_out": [
      45,
      0,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(reverse(mul_n(input,5)),3),-3),8)"
  },
  {
    "input": "input : list = [1, -1, 3, 0]\noutput : list = [-1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([1, -1, 3, 0])))",
    "io_inp": [
      1,
      -1,
      3,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [6, 1]",
    "output": "generated_output : list = sub_n([3, -2],-3)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -4, -3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(drop([-1, -4, -3, 3],2),-1),1)))",
    "io_inp": [
      -1,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(drop(input,2),-1),1)))"
  },
  {
    "input": "input : list = [1, -3, -4, -1]\noutput : list = [1, -1, -3, -4]",
    "output": "generated_output : list = take(sort_des([1, -3, -4, -1]),20)",
    "io_inp": [
      1,
      -3,
      -4,
      -1
    ],
    "io_out": [
      1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),20)"
  },
  {
    "input": "input : list = [2, -5, 0]\noutput : list = [7, -13]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(drop([2, -5, 0],1),-3),4)),5)",
    "io_inp": [
      2,
      -5,
      0
    ],
    "io_out": [
      7,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(drop(input,1),-3),4)),5)"
  },
  {
    "input": "input : list = [-4, 5, 5, -3]\noutput : list = [-4, 5, 5, -3]",
    "output": "generated_output : list = take(reverse(reverse([-4, 5, 5, -3])),25)",
    "io_inp": [
      -4,
      5,
      5,
      -3
    ],
    "io_out": [
      -4,
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),25)"
  },
  {
    "input": "input : list = [-5, -1, 1, 1]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(drop([-5, -1, 1, 1],2),4))))",
    "io_inp": [
      -5,
      -1,
      1,
      1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(drop(input,2),4))))"
  },
  {
    "input": "input : list = [3, 5, 0, 2, 4, -5]\noutput : list = [5, 4, 3, 2, 0, -5]",
    "output": "generated_output : list = take(take(sort_des(reverse(sort_asc([3, 5, 0, 2, 4, -5]))),42),50)",
    "io_inp": [
      3,
      5,
      0,
      2,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(sort_asc(input))),42),50)"
  },
  {
    "input": "input : list = [-4, -1, 4, 1]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take([-4, -1, 4, 1],1))))",
    "io_inp": [
      -4,
      -1,
      4,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(input,1))))"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [5]",
    "output": "generated_output : list = take(take(take(sub_n(take([0, -2, -1],1),-5),10),13),15)",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(take(input,1),-5),10),13),15)"
  },
  {
    "input": "input : list = [3, 0, 5, -4]\noutput : list = [5, 3, 0, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sort_des([3, 0, 5, -4])))))",
    "io_inp": [
      3,
      0,
      5,
      -4
    ],
    "io_out": [
      5,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-36, 0]",
    "output": "generated_output : list = mul_n(sort_des(take(take(mul_n([0, -3],-3),3),12)),-4)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -36,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(mul_n(input,-3),3),12)),-4)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [-3, 0, -6]",
    "output": "generated_output : list = add_n([-1, 2, -4],-2)",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      -3,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, 3, -1, -2, -2, 1]\noutput : list = [0, 1, -3, -4, -4, -1]",
    "output": "generated_output : list = sub_n([2, 3, -1, -2, -2, 1],2)",
    "io_inp": [
      2,
      3,
      -1,
      -2,
      -2,
      1
    ],
    "io_out": [
      0,
      1,
      -3,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 5, 4, -3, 4, 3]\noutput : list = [4, 5, -2, 5, 6, -3]",
    "output": "generated_output : list = reverse(add_n([-4, 5, 4, -3, 4, 3],1))",
    "io_inp": [
      -4,
      5,
      4,
      -3,
      4,
      3
    ],
    "io_out": [
      4,
      5,
      -2,
      5,
      6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [5, -1, 3, 1]\noutput : list = [-34, -26, -18, -10]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(add_n([5, -1, 3, 1],3),10),-4)),-2)",
    "io_inp": [
      5,
      -1,
      3,
      1
    ],
    "io_out": [
      -34,
      -26,
      -18,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(add_n(input,3),10),-4)),-2)"
  },
  {
    "input": "input : list = [5, -4, -4, -4]\noutput : list = [-20, -20, -20, 25]",
    "output": "generated_output : list = mul_n(sort_asc([5, -4, -4, -4]),5)",
    "io_inp": [
      5,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -20,
      -20,
      -20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([2, -2, 1]),2))",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [8, 2, -2]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(add_n([-5, -1, 5],2),-1),25)))",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      8,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(add_n(input,2),-1),25)))"
  },
  {
    "input": "input : list = [5, 4, 1, -4, 0]\noutput : list = [1, 0, -4]",
    "output": "generated_output : list = sort_des(take(reverse(take(drop([5, 4, 1, -4, 0],2),4)),25))",
    "io_inp": [
      5,
      4,
      1,
      -4,
      0
    ],
    "io_out": [
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(drop(input,2),4)),25))"
  },
  {
    "input": "input : list = [2, -2, -1, 5, 0]\noutput : list = [6, 5, 4, 2, -1]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_asc([2, -2, -1, 5, 0]))),-4),-1)",
    "io_inp": [
      2,
      -2,
      -1,
      5,
      0
    ],
    "io_out": [
      6,
      5,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_asc(input))),-4),-1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-8, 10]",
    "output": "generated_output : list = mul_n([4, -5],-2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n([4, 3],-5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = drop(mul_n([-2, 4],-1),1)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,-1),1)"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [0, -16, -16]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(mul_n([-1, -5, -5],4)),19),4))",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      0,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(mul_n(input,4)),19),4))"
  },
  {
    "input": "input : list = [-2, 4, 1, 1, -4, 4]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = take(sort_des(sub_n(take([-2, 4, 1, 1, -4, 4],3),3)),37)",
    "io_inp": [
      -2,
      4,
      1,
      1,
      -4,
      4
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(input,3),3)),37)"
  },
  {
    "input": "input : list = [-1, 5, -3, 2, -3, 0]\noutput : list = [-5, 55, -45, 55, -105, 15]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(reverse([-1, 5, -3, 2, -3, 0]),-4),35),5),5)",
    "io_inp": [
      -1,
      5,
      -3,
      2,
      -3,
      0
    ],
    "io_out": [
      -5,
      55,
      -45,
      55,
      -105,
      15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(reverse(input),-4),35),5),5)"
  },
  {
    "input": "input : list = [0, -5, -5, 5, 3]\noutput : list = [-5, 5, 3]",
    "output": "generated_output : list = drop([0, -5, -5, 5, 3],2)",
    "io_inp": [
      0,
      -5,
      -5,
      5,
      3
    ],
    "io_out": [
      -5,
      5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 2, 5, 0, 4]\noutput : list = [-1, 4, 6, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([-5, 2, 5, 0, 4])),4)",
    "io_inp": [
      -5,
      2,
      5,
      0,
      4
    ],
    "io_out": [
      -1,
      4,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),4)"
  },
  {
    "input": "input : list = [4, -3, -3, 5, -3]\noutput : list = [1, 0, -7, -7, -7]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(mul_n([4, -3, -3, 5, -3],1)))),-4)",
    "io_inp": [
      4,
      -3,
      -3,
      5,
      -3
    ],
    "io_out": [
      1,
      0,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(mul_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [3, 1, -4, 2, -3]\noutput : list = [8, 7, 6, 2, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(add_n([3, 1, -4, 2, -3],5)))))",
    "io_inp": [
      3,
      1,
      -4,
      2,
      -3
    ],
    "io_out": [
      8,
      7,
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(add_n(input,5)))))"
  },
  {
    "input": "input : list = [3, -1, 0]\noutput : list = [0, -4, -3]",
    "output": "generated_output : list = sub_n([3, -1, 0],3)",
    "io_inp": [
      3,
      -1,
      0
    ],
    "io_out": [
      0,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 2, 4, -4, -1]\noutput : list = [-4, -3, -1, -9, -6]",
    "output": "generated_output : list = sub_n(sub_n([1, 2, 4, -4, -1],3),2)",
    "io_inp": [
      1,
      2,
      4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),2)"
  },
  {
    "input": "input : list = [2, -1, 2, 4]\noutput : list = [0, -2, -2, -5]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_des([2, -1, 2, 4]),1),3)))",
    "io_inp": [
      2,
      -1,
      2,
      4
    ],
    "io_out": [
      0,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(sort_des(input),1),3)))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(reverse([-2, -2])),3)),-3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(reverse(input)),3)),-3)"
  },
  {
    "input": "input : list = [-1, 1, 1]\noutput : list = [-3, -3, -5]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(add_n([-1, 1, 1],-4),16))),1)",
    "io_inp": [
      -1,
      1,
      1
    ],
    "io_out": [
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(add_n(input,-4),16))),1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n([0, 3],-2))))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(input,-2))))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(sub_n([3, 3],2))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [4, -5, -4, 2]\noutput : list = [2, 6, 18, 20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n([4, -5, -4, 2],5))),-2)",
    "io_inp": [
      4,
      -5,
      -4,
      2
    ],
    "io_out": [
      2,
      6,
      18,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(input,5))),-2)"
  },
  {
    "input": "input : list = [-5, 1, -1, -4, 2, -3]\noutput : list = [-5, -4, -3, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 1, -1, -4, 2, -3]))",
    "io_inp": [
      -5,
      1,
      -1,
      -4,
      2,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -1, -4, 5, -1]\noutput : list = [-1, 5, -4, -1]",
    "output": "generated_output : list = reverse(drop([-5, -1, -4, 5, -1],1))",
    "io_inp": [
      -5,
      -1,
      -4,
      5,
      -1
    ],
    "io_out": [
      -1,
      5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [2, 2, -4, 0, 3]\noutput : list = [2, 2, -4]",
    "output": "generated_output : list = sort_des(sort_des(take([2, 2, -4, 0, 3],3)))",
    "io_inp": [
      2,
      2,
      -4,
      0,
      3
    ],
    "io_out": [
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,3)))"
  },
  {
    "input": "input : list = [-4, -5, -5, 3, 0]\noutput : list = [-5, -5, -4, 0, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sort_asc([-4, -5, -5, 3, 0])))))",
    "io_inp": [
      -4,
      -5,
      -5,
      3,
      0
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, 3, 2, -1]\noutput : list = [-10, -8, -9, -12]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(sub_n([1, 3, 2, -1],3))),-5),-3)",
    "io_inp": [
      1,
      3,
      2,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(sub_n(input,3))),-5),-3)"
  },
  {
    "input": "input : list = [-4, 0, 0, -5, 1]\noutput : list = [-7, -8, -8, -12, -13]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des([-4, 0, 0, -5, 1]),5)),-3)",
    "io_inp": [
      -4,
      0,
      0,
      -5,
      1
    ],
    "io_out": [
      -7,
      -8,
      -8,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(input),5)),-3)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = mul_n(sort_des([2, 2]),2)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [0, 0, 4, 3, -1]\noutput : list = [-16, -12, 0, 0, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(reverse([0, 0, 4, 3, -1]))),-4))",
    "io_inp": [
      0,
      0,
      4,
      3,
      -1
    ],
    "io_out": [
      -16,
      -12,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-2, 1, 0, 5, 0, -5]\noutput : list = [24, 9, -1, -1, -6, -26]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(reverse([-2, 1, 0, 5, 0, -5]),-5),3),4))",
    "io_inp": [
      -2,
      1,
      0,
      5,
      0,
      -5
    ],
    "io_out": [
      24,
      9,
      -1,
      -1,
      -6,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(reverse(input),-5),3),4))"
  },
  {
    "input": "input : list = [5, -1, -2, 3, 4, -5]\noutput : list = [-5, -2, -1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -1, -2, 3, 4, -5])",
    "io_inp": [
      5,
      -1,
      -2,
      3,
      4,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 2, -3, 1]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(drop(sort_asc([2, 2, -3, 1]),2))))",
    "io_inp": [
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(drop(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [0, -1, -3, 4, 3, -3]\noutput : list = [-6, -7, -10, -11, -13, -13]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(sort_des([0, -1, -3, 4, 3, -3]),-1),-5)),4)",
    "io_inp": [
      0,
      -1,
      -3,
      4,
      3,
      -3
    ],
    "io_out": [
      -6,
      -7,
      -10,
      -11,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(sort_des(input),-1),-5)),4)"
  },
  {
    "input": "input : list = [1, 5, -3, 2]\noutput : list = [0, -3, -4, -8]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([1, 5, -3, 2],5)))",
    "io_inp": [
      1,
      5,
      -3,
      2
    ],
    "io_out": [
      0,
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,5)))"
  },
  {
    "input": "input : list = [-2, 4, 1, 5, -3, 4]\noutput : list = [0, 1, 4, 7, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n([-2, 4, 1, 5, -3, 4],3))",
    "io_inp": [
      -2,
      4,
      1,
      5,
      -3,
      4
    ],
    "io_out": [
      0,
      1,
      4,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [3, 1, 0, -2, -3, 4]\noutput : list = [4, 2, -2, -4, -8, -10]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(mul_n([3, 1, 0, -2, -3, 4],-2),2))),31)",
    "io_inp": [
      3,
      1,
      0,
      -2,
      -3,
      4
    ],
    "io_out": [
      4,
      2,
      -2,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(mul_n(input,-2),2))),31)"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [0, -18, -63]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(add_n([3, -2, -4],4),3),-3)))",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      0,
      -18,
      -63
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(add_n(input,4),3),-3)))"
  },
  {
    "input": "input : list = [-5, -3, -3, 2]\noutput : list = [-3, -8, -8]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(drop([-5, -3, -3, 2],1)),-5)))",
    "io_inp": [
      -5,
      -3,
      -3,
      2
    ],
    "io_out": [
      -3,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(drop(input,1)),-5)))"
  },
  {
    "input": "input : list = [-3, -5, 5, 4]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(add_n(drop(take(reverse([-3, -5, 5, 4]),21),3),-2),-2)",
    "io_inp": [
      -3,
      -5,
      5,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(take(reverse(input),21),3),-2),-2)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc([-1, -3])",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0, 5, 0, 0]\noutput : list = [35, 15, 40]",
    "output": "generated_output : list = mul_n(take(sub_n([4, 0, 5, 0, 0],-3),3),5)",
    "io_inp": [
      4,
      0,
      5,
      0,
      0
    ],
    "io_out": [
      35,
      15,
      40
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-3),3),5)"
  },
  {
    "input": "input : list = [-5, -2, -5, 5]\noutput : list = [5, -2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -2, -5, 5])",
    "io_inp": [
      -5,
      -2,
      -5,
      5
    ],
    "io_out": [
      5,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, -5, 3]\noutput : list = [2, 2, -1, -6]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n(sort_des([3, 0, -5, 3]),-1),-5),30),5)",
    "io_inp": [
      3,
      0,
      -5,
      3
    ],
    "io_out": [
      2,
      2,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(sort_des(input),-1),-5),30),5)"
  },
  {
    "input": "input : list = [4, 5, 0, 2, 4, 3]\noutput : list = [-16, -24, -24, -32, -40, -56]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n([4, 5, 0, 2, 4, 3],2),5)),-2),-4)",
    "io_inp": [
      4,
      5,
      0,
      2,
      4,
      3
    ],
    "io_out": [
      -16,
      -24,
      -24,
      -32,
      -40,
      -56
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n(input,2),5)),-2),-4)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-14, -11, -11]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(add_n([1, 0, 0],2),-3))),-5)",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -14,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(add_n(input,2),-3))),-5)"
  },
  {
    "input": "input : list = [1, -5, 3, 4, 5]\noutput : list = [-15, -12, -9, -3, 15]",
    "output": "generated_output : list = mul_n(sort_des([1, -5, 3, 4, 5]),-3)",
    "io_inp": [
      1,
      -5,
      3,
      4,
      5
    ],
    "io_out": [
      -15,
      -12,
      -9,
      -3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-1, 2, -2, 0, -2]\noutput : list = [-2, -2, 4, 10, 22]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n(sort_asc([-1, 2, -2, 0, -2]),3),-5),5),2)",
    "io_inp": [
      -1,
      2,
      -2,
      0,
      -2
    ],
    "io_out": [
      -2,
      -2,
      4,
      10,
      22
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(sort_asc(input),3),-5),5),2)"
  },
  {
    "input": "input : list = [-2, -4, 2, 0, 1]\noutput : list = [0, -2, 4, 2, 3]",
    "output": "generated_output : list = sub_n(sub_n([-2, -4, 2, 0, 1],-1),-1)",
    "io_inp": [
      -2,
      -4,
      2,
      0,
      1
    ],
    "io_out": [
      0,
      -2,
      4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),-1)"
  },
  {
    "input": "input : list = [-5, -5, 0, 0, 4]\noutput : list = [-4, -4, 1, 1, 5]",
    "output": "generated_output : list = sub_n(sub_n([-5, -5, 0, 0, 4],1),-2)",
    "io_inp": [
      -5,
      -5,
      0,
      0,
      4
    ],
    "io_out": [
      -4,
      -4,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-2)"
  },
  {
    "input": "input : list = [-2, 5, -1, 2, -2, 2]\noutput : list = [2, 2, 3, 6, 6, 9]",
    "output": "generated_output : list = sort_asc(take(add_n(take(reverse([-2, 5, -1, 2, -2, 2]),12),4),30))",
    "io_inp": [
      -2,
      5,
      -1,
      2,
      -2,
      2
    ],
    "io_out": [
      2,
      2,
      3,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(reverse(input),12),4),30))"
  },
  {
    "input": "input : list = [4, 0, -3, -1]\noutput : list = [-1, 3, 5, 13]",
    "output": "generated_output : list = sort_asc(add_n(take(mul_n(sort_asc([4, 0, -3, -1]),2),16),5))",
    "io_inp": [
      4,
      0,
      -3,
      -1
    ],
    "io_out": [
      -1,
      3,
      5,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(mul_n(sort_asc(input),2),16),5))"
  },
  {
    "input": "input : list = [-2, 3, 3, 0, 1, 4]\noutput : list = [-2, 3, 3, 0]",
    "output": "generated_output : list = take([-2, 3, 3, 0, 1, 4],4)",
    "io_inp": [
      -2,
      3,
      3,
      0,
      1,
      4
    ],
    "io_out": [
      -2,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-3, -2, 5, 0, 3, -4]\noutput : list = [-10, -9, -8, -6, -3]",
    "output": "generated_output : list = add_n(take(take(sort_asc(sub_n([-3, -2, 5, 0, 3, -4],2)),25),5),-4)",
    "io_inp": [
      -3,
      -2,
      5,
      0,
      3,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(sub_n(input,2)),25),5),-4)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-6, -8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_asc([2, 0]),5),5)),-2)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_asc(input),5),5)),-2)"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(add_n(drop(sub_n(mul_n([-4, 2, 1],-3),-4),1),3))",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(sub_n(mul_n(input,-3),-4),1),3))"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [-2, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(sort_des([-2, -1, -2])))",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [3, 5, -1, -4, 3]\noutput : list = [-15, -12, -8, -8, -6]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n([3, 5, -1, -4, 3],4),2)),-5)",
    "io_inp": [
      3,
      5,
      -1,
      -4,
      3
    ],
    "io_out": [
      -15,
      -12,
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(input,4),2)),-5)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(sort_asc([-1, 1, -4]),14))))",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(sort_asc(input),14))))"
  },
  {
    "input": "input : list = [5, -1, 0, 5]\noutput : list = [15, -9, -5, 15]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n([5, -1, 0, 5],4),8),3),2)",
    "io_inp": [
      5,
      -1,
      0,
      5
    ],
    "io_out": [
      15,
      -9,
      -5,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(input,4),8),3),2)"
  },
  {
    "input": "input : list = [5, -2, -5, 1, -1, -3]\noutput : list = [19, 3, -5, -9, -13]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(sort_des([5, -2, -5, 1, -1, -3]),4),3),4),5)",
    "io_inp": [
      5,
      -2,
      -5,
      1,
      -1,
      -3
    ],
    "io_out": [
      19,
      3,
      -5,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(sort_des(input),4),3),4),5)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-6, -7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(sort_des([5, 4]),5),2),-1),-5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(sort_des(input),5),2),-1),-5)"
  },
  {
    "input": "input : list = [-2, 5, -5, -1, -5]\noutput : list = [-6, -6, -3, -2, 4]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_des([-2, 5, -5, -1, -5]),7)),34),1)",
    "io_inp": [
      -2,
      5,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_des(input),7)),34),1)"
  },
  {
    "input": "input : list = [-1, -3, -1, -5, -2, 4]\noutput : list = [6, 1, 1, 0, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(add_n([-1, -3, -1, -5, -2, 4],-1),-5),5)),3)",
    "io_inp": [
      -1,
      -3,
      -1,
      -5,
      -2,
      4
    ],
    "io_out": [
      6,
      1,
      1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(add_n(input,-1),-5),5)),3)"
  },
  {
    "input": "input : list = [-2, -4, 5, 2]\noutput : list = [-20, -8, 8, 16]",
    "output": "generated_output : list = mul_n(sort_des([-2, -4, 5, 2]),-4)",
    "io_inp": [
      -2,
      -4,
      5,
      2
    ],
    "io_out": [
      -20,
      -8,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-4, -2, 5]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(reverse([-5, -3, 4])),2),1))",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(reverse(input)),2),1))"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [-3, -4, 4]",
    "output": "generated_output : list = reverse(sub_n(add_n(reverse(reverse([5, -3, -2])),-3),-2))",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(reverse(reverse(input)),-3),-2))"
  },
  {
    "input": "input : list = [5, 2, 3, -5]\noutput : list = [-28, -13, -18, 22]",
    "output": "generated_output : list = sub_n(add_n(mul_n([5, 2, 3, -5],-5),-2),1)",
    "io_inp": [
      5,
      2,
      3,
      -5
    ],
    "io_out": [
      -28,
      -13,
      -18,
      22
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-5),-2),1)"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [-5, -4, -4]",
    "output": "generated_output : list = sort_asc([-4, -4, -5])",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 1, -5, 0, -3]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = take([3, 1, -5, 0, -3],3)",
    "io_inp": [
      3,
      1,
      -5,
      0,
      -3
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, -3, 4, 3]\noutput : list = [15, 20, -15, 20]",
    "output": "generated_output : list = mul_n(reverse([4, -3, 4, 3]),5)",
    "io_inp": [
      4,
      -3,
      4,
      3
    ],
    "io_out": [
      15,
      20,
      -15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [0, 28, 28]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse([-5, -5, 2])),2),-4))",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      0,
      28,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(reverse(input)),2),-4))"
  },
  {
    "input": "input : list = [0, 5, 2, 5, -2]\noutput : list = [9, -6, 3, -6, 15]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(add_n([0, 5, 2, 5, -2],-4),-3),3),3),-3)",
    "io_inp": [
      0,
      5,
      2,
      5,
      -2
    ],
    "io_out": [
      9,
      -6,
      3,
      -6,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(add_n(input,-4),-3),3),3),-3)"
  },
  {
    "input": "input : list = [1, 2, 1, 2]\noutput : list = [-2, -2, -3]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(sub_n([1, 2, 1, 2],4),-1)),1),3)",
    "io_inp": [
      1,
      2,
      1,
      2
    ],
    "io_out": [
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(sub_n(input,4),-1)),1),3)"
  },
  {
    "input": "input : list = [1, -2, 5, -3]\noutput : list = [-24, 0, -56, 8]",
    "output": "generated_output : list = take(take(mul_n(mul_n(add_n([1, -2, 5, -3],2),-4),2),39),49)",
    "io_inp": [
      1,
      -2,
      5,
      -3
    ],
    "io_out": [
      -24,
      0,
      -56,
      8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(add_n(input,2),-4),2),39),49)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [3, 27]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sub_n([-3, 5],-5),-1),3)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      3,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sub_n(input,-5),-1),3)))"
  },
  {
    "input": "input : list = [-2, 5, 5, 3, 0, -5]\noutput : list = [-25, -10, 0, 15, 25, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(sort_asc([-2, 5, 5, 3, 0, -5]),24)),5))",
    "io_inp": [
      -2,
      5,
      5,
      3,
      0,
      -5
    ],
    "io_out": [
      -25,
      -10,
      0,
      15,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(sort_asc(input),24)),5))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [65, 80]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(mul_n([-5, -4],3),-5),-5)))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      65,
      80
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(mul_n(input,3),-5),-5)))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [1, -3]",
    "output": "generated_output : list = take(take(reverse(add_n(sub_n([-2, 2],4),3)),9),39)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(sub_n(input,4),3)),9),39)"
  },
  {
    "input": "input : list = [-1, -1, 5, -4]\noutput : list = [25, -5, -20]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(drop([-1, -1, 5, -4],1),-1),-5)),43)",
    "io_inp": [
      -1,
      -1,
      5,
      -4
    ],
    "io_out": [
      25,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(drop(input,1),-1),-5)),43)"
  },
  {
    "input": "input : list = [1, 2, -4]\noutput : list = [-12, 3, 6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_des([1, 2, -4])),3)))",
    "io_inp": [
      1,
      2,
      -4
    ],
    "io_out": [
      -12,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_des(input)),3)))"
  },
  {
    "input": "input : list = [-5, -1, 1, -3]\noutput : list = [11, -1, 5, 17]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(reverse([-5, -1, 1, -3])),-3)),2)",
    "io_inp": [
      -5,
      -1,
      1,
      -3
    ],
    "io_out": [
      11,
      -1,
      5,
      17
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(reverse(input)),-3)),2)"
  },
  {
    "input": "input : list = [1, -3, 5, 5, -1, -2]\noutput : list = [-8, -4, -12, -12, -6, -5]",
    "output": "generated_output : list = mul_n(add_n(take(add_n([1, -3, 5, 5, -1, -2],5),12),2),-1)",
    "io_inp": [
      1,
      -3,
      5,
      5,
      -1,
      -2
    ],
    "io_out": [
      -8,
      -4,
      -12,
      -12,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(input,5),12),2),-1)"
  },
  {
    "input": "input : list = [-2, 2, 1, 2]\noutput : list = [-3, -3, -4, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des([-2, 2, 1, 2]),4))),5)",
    "io_inp": [
      -2,
      2,
      1,
      2
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sort_des(input),4))),5)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-1, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(sub_n([-2, 3],-5),-4))),20)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(sub_n(input,-5),-4))),20)"
  },
  {
    "input": "input : list = [-4, -3, -3, 4]\noutput : list = [-11, -12]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(take([-4, -3, -3, 4],2),-4)),4))",
    "io_inp": [
      -4,
      -3,
      -3,
      4
    ],
    "io_out": [
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(take(input,2),-4)),4))"
  },
  {
    "input": "input : list = [-3, 2, -1]\noutput : list = [5, 8, 3]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(add_n([-3, 2, -1],5),3),3),1))",
    "io_inp": [
      -3,
      2,
      -1
    ],
    "io_out": [
      5,
      8,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(add_n(input,5),3),3),1))"
  },
  {
    "input": "input : list = [3, -5, 4, -1]\noutput : list = [-2, -18, 0, -10]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n([3, -5, 4, -1],-2)),2)),4)",
    "io_inp": [
      3,
      -5,
      4,
      -1
    ],
    "io_out": [
      -2,
      -18,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n(input,-2)),2)),4)"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = sort_des([-2, 1, -5])",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [7, 6]",
    "output": "generated_output : list = mul_n(sub_n([5, 4],-2),1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),1)"
  },
  {
    "input": "input : list = [2, 5, 5, 5, -2, -3]\noutput : list = [5, 5, 5, 2, -2, -3]",
    "output": "generated_output : list = sort_des([2, 5, 5, 5, -2, -3])",
    "io_inp": [
      2,
      5,
      5,
      5,
      -2,
      -3
    ],
    "io_out": [
      5,
      5,
      5,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [3, 6, -2]",
    "output": "generated_output : list = take(take(take(sub_n(add_n([1, 4, -4],-3),-5),20),5),22)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      3,
      6,
      -2
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(add_n(input,-3),-5),20),5),22)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [0, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_des(add_n([-1, -1, -1],1)))))",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_des(add_n(input,1)))))"
  },
  {
    "input": "input : list = [-2, -3, -5, 2, -5]\noutput : list = [42, 42, 34, 30, 14]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(add_n([-2, -3, -5, 2, -5],-3),2),-4)),-2)",
    "io_inp": [
      -2,
      -3,
      -5,
      2,
      -5
    ],
    "io_out": [
      42,
      42,
      34,
      30,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(add_n(input,-3),2),-4)),-2)"
  },
  {
    "input": "input : list = [0, 5, -2, 3]\noutput : list = [-9, -7, -4, -2]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(add_n([0, 5, -2, 3],-4)),3),15))",
    "io_inp": [
      0,
      5,
      -2,
      3
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(add_n(input,-4)),3),15))"
  },
  {
    "input": "input : list = [5, -3, 0, 1, 1, 2]\noutput : list = [5, -3]",
    "output": "generated_output : list = take([5, -3, 0, 1, 1, 2],2)",
    "io_inp": [
      5,
      -3,
      0,
      1,
      1,
      2
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -3, 5, -1]\noutput : list = [-3, 5, -1]",
    "output": "generated_output : list = drop([3, -3, 5, -1],1)",
    "io_inp": [
      3,
      -3,
      5,
      -1
    ],
    "io_out": [
      -3,
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [16, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse(sort_asc([-1, -5]))),-1),-4)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(sort_asc(input))),-1),-4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [0, -7]",
    "output": "generated_output : list = sub_n([3, -4],3)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, 0, -5, -5, 4, -2]\noutput : list = [4, 0, 0, -2, -5, -5]",
    "output": "generated_output : list = sort_des([0, 0, -5, -5, 4, -2])",
    "io_inp": [
      0,
      0,
      -5,
      -5,
      4,
      -2
    ],
    "io_out": [
      4,
      0,
      0,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -3, 4, -3]\noutput : list = [-3, -3, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_asc([3, -3, 4, -3])))))",
    "io_inp": [
      3,
      -3,
      4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 3, 3, 3, 5]\noutput : list = [0, 7, 7, 7, 9]",
    "output": "generated_output : list = sub_n(sort_asc([-4, 3, 3, 3, 5]),-4)",
    "io_inp": [
      -4,
      3,
      3,
      3,
      5
    ],
    "io_out": [
      0,
      7,
      7,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [1, 0, 2]\noutput : list = [-2, -4, -3]",
    "output": "generated_output : list = reverse(add_n([1, 0, 2],-4))",
    "io_inp": [
      1,
      0,
      2
    ],
    "io_out": [
      -2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [2, 3, 3, 1, 2, 1]\noutput : list = [5, 6, 6, 4, 5, 4]",
    "output": "generated_output : list = add_n([2, 3, 3, 1, 2, 1],3)",
    "io_inp": [
      2,
      3,
      3,
      1,
      2,
      1
    ],
    "io_out": [
      5,
      6,
      6,
      4,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, -2, -2, 4, 3, 0]\noutput : list = [-8, -8, -6, -4, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(reverse([-1, -2, -2, 4, 3, 0]),-2),2),1))",
    "io_inp": [
      -1,
      -2,
      -2,
      4,
      3,
      0
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(reverse(input),-2),2),1))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-48, -24]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n([2, -4],4),-4)),4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -48,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(input,4),-4)),4)"
  },
  {
    "input": "input : list = [2, 4, -4, -4, -4]\noutput : list = [65, 65, 65, 25, 35]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(add_n([2, 4, -4, -4, -4],-5),-4)),24),-5)",
    "io_inp": [
      2,
      4,
      -4,
      -4,
      -4
    ],
    "io_out": [
      65,
      65,
      65,
      25,
      35
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(add_n(input,-5),-4)),24),-5)"
  },
  {
    "input": "input : list = [2, 5, -5, -1, -4]\noutput : list = [65, 17, 81, -79, -31]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(reverse([2, 5, -5, -1, -4]),5),-4),4),1)",
    "io_inp": [
      2,
      5,
      -5,
      -1,
      -4
    ],
    "io_out": [
      65,
      17,
      81,
      -79,
      -31
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(reverse(input),5),-4),4),1)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [8, 3, 1]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(reverse([-2, 5, 0]))),32),-3)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      8,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(reverse(input))),32),-3)"
  },
  {
    "input": "input : list = [-2, 3, 5, 5, -4, -1]\noutput : list = [1, 6, 8, 8, -1, 2]",
    "output": "generated_output : list = sub_n([-2, 3, 5, 5, -4, -1],-3)",
    "io_inp": [
      -2,
      3,
      5,
      5,
      -4,
      -1
    ],
    "io_out": [
      1,
      6,
      8,
      8,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 3, -3]\noutput : list = [-9, -6, 9]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse([-2, 3, -3]),16)),3))",
    "io_inp": [
      -2,
      3,
      -3
    ],
    "io_out": [
      -9,
      -6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse(input),16)),3))"
  },
  {
    "input": "input : list = [3, -1, -2, -1, 1, 5]\noutput : list = [11, 8, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(take([3, -1, -2, -1, 1, 5],3),19),-3)),5)",
    "io_inp": [
      3,
      -1,
      -2,
      -1,
      1,
      5
    ],
    "io_out": [
      11,
      8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(take(input,3),19),-3)),5)"
  },
  {
    "input": "input : list = [-3, -5, -2, 0]\noutput : list = [-4, -2, -1, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_asc([-3, -5, -2, 0]))),1))",
    "io_inp": [
      -3,
      -5,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [5, 0, 0, -4, -4]\noutput : list = [-32, -32, 0, 0, 40]",
    "output": "generated_output : list = take(reverse(take(mul_n(mul_n([5, 0, 0, -4, -4],-2),-4),12)),7)",
    "io_inp": [
      5,
      0,
      0,
      -4,
      -4
    ],
    "io_out": [
      -32,
      -32,
      0,
      0,
      40
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(mul_n(input,-2),-4),12)),7)"
  },
  {
    "input": "input : list = [-3, 0, -5, 2]\noutput : list = [-12, 0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(take([-3, 0, -5, 2],2),13),4)))",
    "io_inp": [
      -3,
      0,
      -5,
      2
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(take(input,2),13),4)))"
  },
  {
    "input": "input : list = [-2, 2, 4, 3, -5, -1]\noutput : list = [-5, -2, -1, 2, 3, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(reverse([-2, 2, 4, 3, -5, -1])))),29)",
    "io_inp": [
      -2,
      2,
      4,
      3,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(reverse(input)))),29)"
  },
  {
    "input": "input : list = [5, 5, -4, 3, 3, -1]\noutput : list = [2, 6, 6, -1, 8, 8]",
    "output": "generated_output : list = reverse(add_n([5, 5, -4, 3, 3, -1],3))",
    "io_inp": [
      5,
      5,
      -4,
      3,
      3,
      -1
    ],
    "io_out": [
      2,
      6,
      6,
      -1,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [-4, -4, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc([-1, 0, 0]),2))),-2)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc(input),2))),-2)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [3, 7, 9]",
    "output": "generated_output : list = take(sub_n(sort_asc([3, 5, -1]),-4),16)",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      3,
      7,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),-4),16)"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [-25]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(sort_des([-2, -3, -1]),1),5)),5)",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(sort_des(input),1),5)),5)"
  },
  {
    "input": "input : list = [-2, -5, 3, 1, -5, 0]\noutput : list = [-2, 1, 6]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(drop(reverse([-2, -5, 3, 1, -5, 0]),3),-3)))",
    "io_inp": [
      -2,
      -5,
      3,
      1,
      -5,
      0
    ],
    "io_out": [
      -2,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(drop(reverse(input),3),-3)))"
  },
  {
    "input": "input : list = [3, 4, 3, -2, -1, -2]\noutput : list = [0, -1, -1, -5, -6, -6]",
    "output": "generated_output : list = sort_des(reverse(take(add_n([3, 4, 3, -2, -1, -2],-4),9)))",
    "io_inp": [
      3,
      4,
      3,
      -2,
      -1,
      -2
    ],
    "io_out": [
      0,
      -1,
      -1,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(input,-4),9)))"
  },
  {
    "input": "input : list = [-3, -5, 5, 3, 1, 1]\noutput : list = [1, 1, 3]",
    "output": "generated_output : list = sort_asc(drop([-3, -5, 5, 3, 1, 1],3))",
    "io_inp": [
      -3,
      -5,
      5,
      3,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [1, 0, -2, 4, -4, -4]\noutput : list = [-1, -4, -5, -7, -9, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(add_n([1, 0, -2, 4, -4, -4],-3),11))),2)",
    "io_inp": [
      1,
      0,
      -2,
      4,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -5,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(add_n(input,-3),11))),2)"
  },
  {
    "input": "input : list = [5, -3, 4, 4]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_des([5, -3, 4, 4]),1)",
    "io_inp": [
      5,
      -3,
      4,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),1)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [24, 36, 40]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sub_n([5, 1, 4],-4),1))),4)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      24,
      36,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sub_n(input,-4),1))),4)"
  },
  {
    "input": "input : list = [0, -5, -5, 4, 1, 1]\noutput : list = [1, 1, 4, -5, -5, 0]",
    "output": "generated_output : list = reverse([0, -5, -5, 4, 1, 1])",
    "io_inp": [
      0,
      -5,
      -5,
      4,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      4,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 1, 2, 3]\noutput : list = [-6, -4, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-1, 1, 2, 3],5)))",
    "io_inp": [
      -1,
      1,
      2,
      3
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,5)))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [0, -9]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(sub_n([-2, 1],-4)),5)),3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(sub_n(input,-4)),5)),3)"
  },
  {
    "input": "input : list = [4, -2, -5, -3, 0]\noutput : list = [-1, -5, -7, -8, -10]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n([4, -2, -5, -3, 0],-2)),4),3),-4)",
    "io_inp": [
      4,
      -2,
      -5,
      -3,
      0
    ],
    "io_out": [
      -1,
      -5,
      -7,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n(input,-2)),4),3),-4)"
  },
  {
    "input": "input : list = [-1, 0, 4, 0, 2, 1]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n(mul_n(take([-1, 0, 4, 0, 2, 1],2),4),4)",
    "io_inp": [
      -1,
      0,
      4,
      0,
      2,
      1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,2),4),4)"
  },
  {
    "input": "input : list = [2, 3, 0, -3, -2]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(drop([2, 3, 0, -3, -2],2),2)",
    "io_inp": [
      2,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),2)"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [9, 9, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([-3, 4, 4])),5)",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      9,
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [2, 2, 0]\noutput : list = [2, -4, -4]",
    "output": "generated_output : list = reverse(sub_n(mul_n([2, 2, 0],-3),-2))",
    "io_inp": [
      2,
      2,
      0
    ],
    "io_out": [
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-3),-2))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [5, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([-4, -3, 4])),1)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [2, -3, -5, 5, 1]\noutput : list = [6, 3, 2, -2, -4]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(sort_des([2, -3, -5, 5, 1]),-4)),5),41)",
    "io_inp": [
      2,
      -3,
      -5,
      5,
      1
    ],
    "io_out": [
      6,
      3,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(sort_des(input),-4)),5),41)"
  },
  {
    "input": "input : list = [-3, 0, -3, 5, -5]\noutput : list = [-5, -3, -3, 0, 5]",
    "output": "generated_output : list = sort_asc([-3, 0, -3, 5, -5])",
    "io_inp": [
      -3,
      0,
      -3,
      5,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, 4, -2, 4, 1]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n(drop(take(sort_des(reverse([0, 2, 4, -2, 4, 1])),9),4),2)",
    "io_inp": [
      0,
      2,
      4,
      -2,
      4,
      1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(take(sort_des(reverse(input)),9),4),2)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-16, -4]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(sort_asc([-4, -1])),4),6))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(sort_asc(input)),4),6))"
  },
  {
    "input": "input : list = [-4, -1, -2, -2]\noutput : list = [19, 23, 23, 31]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(sub_n([-4, -1, -2, -2],5))),-4),-5)",
    "io_inp": [
      -4,
      -1,
      -2,
      -2
    ],
    "io_out": [
      19,
      23,
      23,
      31
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(sub_n(input,5))),-4),-5)"
  },
  {
    "input": "input : list = [3, 5, 2]\noutput : list = [6, 10, 4]",
    "output": "generated_output : list = mul_n([3, 5, 2],2)",
    "io_inp": [
      3,
      5,
      2
    ],
    "io_out": [
      6,
      10,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, -2, -3, 4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(take([-3, -2, -3, 4],2)))),34)",
    "io_inp": [
      -3,
      -2,
      -3,
      4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(take(input,2)))),34)"
  },
  {
    "input": "input : list = [0, -2, 3, -2, 1]\noutput : list = [-1, -1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(reverse([0, -2, 3, -2, 1])),1)))",
    "io_inp": [
      0,
      -2,
      3,
      -2,
      1
    ],
    "io_out": [
      -1,
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(reverse(input)),1)))"
  },
  {
    "input": "input : list = [-5, 3, 4, 5, 5]\noutput : list = [-28]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(mul_n([-5, 3, 4, 5, 5],-5),1)),-1),-3)",
    "io_inp": [
      -5,
      3,
      4,
      5,
      5
    ],
    "io_out": [
      -28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(mul_n(input,-5),1)),-1),-3)"
  },
  {
    "input": "input : list = [4, -3, 0, 4, -4, 5]\noutput : list = [5, -2, 1, 5, -3, 6]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n([4, -3, 0, 4, -4, 5],2))),-1)",
    "io_inp": [
      4,
      -3,
      0,
      4,
      -4,
      5
    ],
    "io_out": [
      5,
      -2,
      1,
      5,
      -3,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(input,2))),-1)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [5, 7]",
    "output": "generated_output : list = add_n(sort_asc([1, 3]),4)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-3, 3, 2, 5]\noutput : list = [1, 7]",
    "output": "generated_output : list = add_n(take([-3, 3, 2, 5],2),4)",
    "io_inp": [
      -3,
      3,
      2,
      5
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),4)"
  },
  {
    "input": "input : list = [4, -1, -1, -3, 4]\noutput : list = [4, -3, -1, -1, 4]",
    "output": "generated_output : list = reverse([4, -1, -1, -3, 4])",
    "io_inp": [
      4,
      -1,
      -1,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [15, -5]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n(sub_n([-3, 1],2),3),1),-1),5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(sub_n(input,2),3),1),-1),5)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des([1, -4])",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 0, 5, 1, 5]\noutput : list = [6, 6, 2, 2, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(sub_n([-1, 1, 0, 5, 1, 5],-1)),33)))",
    "io_inp": [
      -1,
      1,
      0,
      5,
      1,
      5
    ],
    "io_out": [
      6,
      6,
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(sub_n(input,-1)),33)))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n([-1, -4],4)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 0, -4, -5]\noutput : list = [0, 0, -16, -20]",
    "output": "generated_output : list = take(take(mul_n([0, 0, -4, -5],4),15),26)",
    "io_inp": [
      0,
      0,
      -4,
      -5
    ],
    "io_out": [
      0,
      0,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,4),15),26)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(sub_n([4, -4],4))),23))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(sub_n(input,4))),23))"
  },
  {
    "input": "input : list = [3, 3, 0]\noutput : list = [-25, -25, -10]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(reverse([3, 3, 0]),-2),-5)))",
    "io_inp": [
      3,
      3,
      0
    ],
    "io_out": [
      -25,
      -25,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(reverse(input),-2),-5)))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse([-4, 0]))),10)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(input))),10)"
  },
  {
    "input": "input : list = [-3, -4, -1, -2, -1, 2]\noutput : list = [2, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(drop([-3, -4, -1, -2, -1, 2],2)),34)))",
    "io_inp": [
      -3,
      -4,
      -1,
      -2,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(drop(input,2)),34)))"
  },
  {
    "input": "input : list = [2, 0, 3, -2]\noutput : list = [-2, -8, 1, -14]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(mul_n([2, 0, 3, -2],-3),-1),4),-4),29)",
    "io_inp": [
      2,
      0,
      3,
      -2
    ],
    "io_out": [
      -2,
      -8,
      1,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(mul_n(input,-3),-1),4),-4),29)"
  },
  {
    "input": "input : list = [1, 3, 3, -5, 1]\noutput : list = [-4, 2, 2, 4, 4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(sort_asc([1, 3, 3, -5, 1]),-3))),-2)",
    "io_inp": [
      1,
      3,
      3,
      -5,
      1
    ],
    "io_out": [
      -4,
      2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(sort_asc(input),-3))),-2)"
  },
  {
    "input": "input : list = [3, 1, 2, -5, 0]\noutput : list = [-1, -3, -2, -9, -4]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(sub_n([3, 1, 2, -5, 0],2),-3),1),2),3)",
    "io_inp": [
      3,
      1,
      2,
      -5,
      0
    ],
    "io_out": [
      -1,
      -3,
      -2,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(sub_n(input,2),-3),1),2),3)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-7, -6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([3, 2]),4),-5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),4),-5)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [13, 21]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(sort_asc([-5, -3])),3),-4),-1)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      13,
      21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(sort_asc(input)),3),-4),-1)"
  },
  {
    "input": "input : list = [0, 2, 0, -5, 3, 2]\noutput : list = [-5, 0, 0, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des([0, 2, 0, -5, 3, 2]))))",
    "io_inp": [
      0,
      2,
      0,
      -5,
      3,
      2
    ],
    "io_out": [
      -5,
      0,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [-4, -2, 5]",
    "output": "generated_output : list = sort_asc([-4, -2, 5])",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      -4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, 1, -4]\noutput : list = [0, 0, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(add_n([-1, 1, 1, -4],-1),4))))",
    "io_inp": [
      -1,
      1,
      1,
      -4
    ],
    "io_out": [
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(add_n(input,-1),4))))"
  },
  {
    "input": "input : list = [0, -2, -2, -1, -3]\noutput : list = [-4, -3, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n([0, -2, -2, -1, -3],1))",
    "io_inp": [
      0,
      -2,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [-4, 0, 3]",
    "output": "generated_output : list = reverse(sort_des([-4, 3, 0]))",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [-4, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(reverse([-4, -2, -2])),19)))",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(reverse(input)),19)))"
  },
  {
    "input": "input : list = [0, -2, -1, -3, 4, -1]\noutput : list = [-1, 4, -3, -1, -2, 0]",
    "output": "generated_output : list = reverse(take(reverse(reverse([0, -2, -1, -3, 4, -1])),8))",
    "io_inp": [
      0,
      -2,
      -1,
      -3,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -3,
      -1,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(input)),8))"
  },
  {
    "input": "input : list = [5, -4, -1, -4, 0]\noutput : list = [-20, 0]",
    "output": "generated_output : list = reverse(drop(mul_n(sort_asc(sort_asc([5, -4, -1, -4, 0])),-4),3))",
    "io_inp": [
      5,
      -4,
      -1,
      -4,
      0
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(mul_n(sort_asc(sort_asc(input)),-4),3))"
  },
  {
    "input": "input : list = [0, -4, 4, 5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take([0, -4, 4, 5],1))",
    "io_inp": [
      0,
      -4,
      4,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [21, -11, 29]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(add_n([-3, 5, -5],-1),2),-2),-1),4)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      21,
      -11,
      29
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(add_n(input,-1),2),-2),-1),4)"
  },
  {
    "input": "input : list = [4, 5, 3, -5, 1]\noutput : list = [2, -4, 4, 6, 5]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(add_n([4, 5, 3, -5, 1],1),-4)),-4),6)",
    "io_inp": [
      4,
      5,
      3,
      -5,
      1
    ],
    "io_out": [
      2,
      -4,
      4,
      6,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(add_n(input,1),-4)),-4),6)"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [19, 15, 15]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(mul_n([-3, -4, -3],-4))),1),-2)",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      19,
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(mul_n(input,-4))),1),-2)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [40, 35, 25]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n(sub_n([2, 5, 4],1),4)),18),5)",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      40,
      35,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(sub_n(input,1),4)),18),5)"
  },
  {
    "input": "input : list = [-1, 3, 3, 2, -2]\noutput : list = [-3, -3, -4, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(reverse([-1, 3, 3, 2, -2]),-1)),5))",
    "io_inp": [
      -1,
      3,
      3,
      2,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(reverse(input),-1)),5))"
  },
  {
    "input": "input : list = [-4, 4, -5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(add_n(drop(sort_des([-4, 4, -5]),2),3))",
    "io_inp": [
      -4,
      4,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(sort_des(input),2),3))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-13, -5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(add_n([3, -5],-4)),-3),-1))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -13,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(add_n(input,-4)),-3),-1))"
  },
  {
    "input": "input : list = [1, 2, -2, 2, 2, -3]\noutput : list = [-3, -2, 1, 2, 2, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(mul_n([1, 2, -2, 2, 2, -3],1)))))",
    "io_inp": [
      1,
      2,
      -2,
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      1,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [5, -5, 4]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des([5, -5, 4])",
    "io_inp": [
      5,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -5, 4, 2, 5]\noutput : list = [5, -5, 4]",
    "output": "generated_output : list = take([5, -5, 4, 2, 5],3)",
    "io_inp": [
      5,
      -5,
      4,
      2,
      5
    ],
    "io_out": [
      5,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-5, -8, -9]",
    "output": "generated_output : list = add_n(reverse([-5, -4, -1]),-4)",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-6, 1]",
    "output": "generated_output : list = sort_asc(take(add_n([2, -5],-1),3))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-1),3))"
  },
  {
    "input": "input : list = [3, -5, 3, 1]\noutput : list = [3, -5]",
    "output": "generated_output : list = sort_des(take(reverse(take([3, -5, 3, 1],2)),8))",
    "io_inp": [
      3,
      -5,
      3,
      1
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(input,2)),8))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [15, -5]",
    "output": "generated_output : list = sort_des(mul_n([-3, 1],-5))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-5, 5, -3, 4, -3]\noutput : list = [-12, 9, -12, 12, -18]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(sub_n([-5, 5, -3, 4, -3],-3),-1),-3),3))",
    "io_inp": [
      -5,
      5,
      -3,
      4,
      -3
    ],
    "io_out": [
      -12,
      9,
      -12,
      12,
      -18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(sub_n(input,-3),-1),-3),3))"
  },
  {
    "input": "input : list = [-5, 1, 1, -4, 3]\noutput : list = [-5, -4, 1, 1, 3]",
    "output": "generated_output : list = sort_asc([-5, 1, 1, -4, 3])",
    "io_inp": [
      -5,
      1,
      1,
      -4,
      3
    ],
    "io_out": [
      -5,
      -4,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1, 4, 5, -4, 0]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(take([5, 1, 4, 5, -4, 0],1)))))",
    "io_inp": [
      5,
      1,
      4,
      5,
      -4,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = sort_asc([-5, -1, -3])",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, 2, -1, -4]\noutput : list = [2, -1, -4]",
    "output": "generated_output : list = drop([-5, 0, 2, -1, -4],2)",
    "io_inp": [
      -5,
      0,
      2,
      -1,
      -4
    ],
    "io_out": [
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2, -4, 5]\noutput : list = [-6, 0, -6, 3]",
    "output": "generated_output : list = add_n(add_n([-4, 2, -4, 5],-1),-1)",
    "io_inp": [
      -4,
      2,
      -4,
      5
    ],
    "io_out": [
      -6,
      0,
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),-1)"
  },
  {
    "input": "input : list = [2, -1, 5, 5, -5, -2]\noutput : list = [18, 18, 15, 12, 11, 8]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(add_n([2, -1, 5, 5, -5, -2],4)),7),4),5)",
    "io_inp": [
      2,
      -1,
      5,
      5,
      -5,
      -2
    ],
    "io_out": [
      18,
      18,
      15,
      12,
      11,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(add_n(input,4)),7),4),5)"
  },
  {
    "input": "input : list = [2, 4, -3]\noutput : list = [72]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take([2, 4, -3],1),-4),-4),-3)",
    "io_inp": [
      2,
      4,
      -3
    ],
    "io_out": [
      72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(input,1),-4),-4),-3)"
  },
  {
    "input": "input : list = [-5, -5, -2, 4]\noutput : list = [7, 7, 10, 16]",
    "output": "generated_output : list = take(sub_n(add_n(add_n([-5, -5, -2, 4],4),4),-4),35)",
    "io_inp": [
      -5,
      -5,
      -2,
      4
    ],
    "io_out": [
      7,
      7,
      10,
      16
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(input,4),4),-4),35)"
  },
  {
    "input": "input : list = [-3, -2, -2, 3, 0]\noutput : list = [3, 0, -2, -2, -3]",
    "output": "generated_output : list = take(sort_des([-3, -2, -2, 3, 0]),5)",
    "io_inp": [
      -3,
      -2,
      -2,
      3,
      0
    ],
    "io_out": [
      3,
      0,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),5)"
  },
  {
    "input": "input : list = [0, 1, -3, -5]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(take(take([0, 1, -3, -5],2),18),4)",
    "io_inp": [
      0,
      1,
      -3,
      -5
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(take(take(input,2),18),4)"
  },
  {
    "input": "input : list = [-3, 5, 0, -2]\noutput : list = [2, 10, 5, 3]",
    "output": "generated_output : list = sub_n(take(sub_n([-3, 5, 0, -2],-3),19),-2)",
    "io_inp": [
      -3,
      5,
      0,
      -2
    ],
    "io_out": [
      2,
      10,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,-3),19),-2)"
  },
  {
    "input": "input : list = [-5, 3, -2, 5, -2, -2]\noutput : list = [-3, -3, 4, -3, 2, -6]",
    "output": "generated_output : list = reverse(add_n([-5, 3, -2, 5, -2, -2],-1))",
    "io_inp": [
      -5,
      3,
      -2,
      5,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3,
      4,
      -3,
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [-12, -6, -6]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_asc([0, 2, 0]),2),1)),-3)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      -12,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_asc(input),2),1)),-3)"
  },
  {
    "input": "input : list = [1, 3, -5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(take([1, 3, -5, 3],1),-2),3)))",
    "io_inp": [
      1,
      3,
      -5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(take(input,1),-2),3)))"
  },
  {
    "input": "input : list = [4, -3, -4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = drop([4, -3, -4, -5],2)",
    "io_inp": [
      4,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 4, 4, 5, 3, 0]\noutput : list = [9, 12, 14, 13, 13, 6]",
    "output": "generated_output : list = add_n(reverse(sub_n([-3, 4, 4, 5, 3, 0],-4)),5)",
    "io_inp": [
      -3,
      4,
      4,
      5,
      3,
      0
    ],
    "io_out": [
      9,
      12,
      14,
      13,
      13,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-4)),5)"
  },
  {
    "input": "input : list = [0, 2, -4, -5, 0]\noutput : list = [2, 0, 0, -4, -5]",
    "output": "generated_output : list = take(sort_des([0, 2, -4, -5, 0]),25)",
    "io_inp": [
      0,
      2,
      -4,
      -5,
      0
    ],
    "io_out": [
      2,
      0,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),25)"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des([-2, 5, 2]))),35)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(input))),35)"
  },
  {
    "input": "input : list = [1, -3, -1, 2, 4]\noutput : list = [4, 2, -1, -3]",
    "output": "generated_output : list = reverse(add_n(sub_n(drop([1, -3, -1, 2, 4],1),-4),-4))",
    "io_inp": [
      1,
      -3,
      -1,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(drop(input,1),-4),-4))"
  },
  {
    "input": "input : list = [-5, -1, 3, 1]\noutput : list = [1, 3, 5, 9]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(sort_des([-5, -1, 3, 1]),-4),-1)),28)",
    "io_inp": [
      -5,
      -1,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      5,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(sort_des(input),-4),-1)),28)"
  },
  {
    "input": "input : list = [4, -2, 2, 3, 0]\noutput : list = [22, -2, 14, 18, 6]",
    "output": "generated_output : list = sub_n(take(sub_n(take(mul_n([4, -2, 2, 3, 0],4),13),-4),19),-2)",
    "io_inp": [
      4,
      -2,
      2,
      3,
      0
    ],
    "io_out": [
      22,
      -2,
      14,
      18,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(mul_n(input,4),13),-4),19),-2)"
  },
  {
    "input": "input : list = [0, 5, 2, -2, 4]\noutput : list = [0, 60, 24, -24, 48]",
    "output": "generated_output : list = mul_n(mul_n([0, 5, 2, -2, 4],3),4)",
    "io_inp": [
      0,
      5,
      2,
      -2,
      4
    ],
    "io_out": [
      0,
      60,
      24,
      -24,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),4)"
  },
  {
    "input": "input : list = [0, 5, -3, 3]\noutput : list = [-2, 3, -5, 1]",
    "output": "generated_output : list = sub_n([0, 5, -3, 3],2)",
    "io_inp": [
      0,
      5,
      -3,
      3
    ],
    "io_out": [
      -2,
      3,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -4, -4, -4, -1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -4, -4, -4, -1],1)",
    "io_inp": [
      3,
      -4,
      -4,
      -4,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, -1]))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 5, -4, -5, 3]\noutput : list = [-5, -4, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(reverse([5, 5, -4, -5, 3]))),10))",
    "io_inp": [
      5,
      5,
      -4,
      -5,
      3
    ],
    "io_out": [
      -5,
      -4,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(reverse(input))),10))"
  },
  {
    "input": "input : list = [-3, -3, 3, 2, 2, 4]\noutput : list = [6, 5, 4, 4, -1, -1]",
    "output": "generated_output : list = sub_n(sort_des([-3, -3, 3, 2, 2, 4]),-2)",
    "io_inp": [
      -3,
      -3,
      3,
      2,
      2,
      4
    ],
    "io_out": [
      6,
      5,
      4,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [2, -2]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sub_n([-3, 1],-4),4),-1)),10)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sub_n(input,-4),4),-1)),10)"
  },
  {
    "input": "input : list = [-1, 0, 3, -2]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_asc(reverse(drop(sub_n([-1, 0, 3, -2],-3),3))),48)",
    "io_inp": [
      -1,
      0,
      3,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(drop(sub_n(input,-3),3))),48)"
  },
  {
    "input": "input : list = [0, -5, 4, 1]\noutput : list = [0, -5, 4, 1]",
    "output": "generated_output : list = reverse(reverse([0, -5, 4, 1]))",
    "io_inp": [
      0,
      -5,
      4,
      1
    ],
    "io_out": [
      0,
      -5,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -4, 1, 1, 3]\noutput : list = [3, 1, 1, -3, -4]",
    "output": "generated_output : list = take(sort_des([-3, -4, 1, 1, 3]),7)",
    "io_inp": [
      -3,
      -4,
      1,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [-2, -1, -2, 3, 1]\noutput : list = [4, 12, -8, -4, -8]",
    "output": "generated_output : list = reverse(mul_n([-2, -1, -2, 3, 1],4))",
    "io_inp": [
      -2,
      -1,
      -2,
      3,
      1
    ],
    "io_out": [
      4,
      12,
      -8,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(drop(drop([-5, 4, -5],1),1),5)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(drop(input,1),1),5)"
  },
  {
    "input": "input : list = [3, 3, 3, -4, 0, -5]\noutput : list = [3, 3, 3, 0, -4, -5]",
    "output": "generated_output : list = take(take(sort_des(sort_des(sort_des([3, 3, 3, -4, 0, -5]))),43),25)",
    "io_inp": [
      3,
      3,
      3,
      -4,
      0,
      -5
    ],
    "io_out": [
      3,
      3,
      3,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_des(sort_des(input))),43),25)"
  },
  {
    "input": "input : list = [-3, -1, -4, 5, -4]\noutput : list = [-4, -4, -3, -1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(add_n([-3, -1, -4, 5, -4],-3),5))),2)",
    "io_inp": [
      -3,
      -1,
      -4,
      5,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(add_n(input,-3),5))),2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des([2, -2])",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3, 3, 0]\noutput : list = [-16, -12, -12, 0]",
    "output": "generated_output : list = sort_asc(take(take(reverse(mul_n([4, 3, 3, 0],-4)),18),25))",
    "io_inp": [
      4,
      3,
      3,
      0
    ],
    "io_out": [
      -16,
      -12,
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(mul_n(input,-4)),18),25))"
  },
  {
    "input": "input : list = [1, -3, 1, -1, 3]\noutput : list = [-12, -4, 4, 4, 12]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(mul_n([1, -3, 1, -1, 3],4)))))",
    "io_inp": [
      1,
      -3,
      1,
      -1,
      3
    ],
    "io_out": [
      -12,
      -4,
      4,
      4,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [60]",
    "output": "generated_output : list = add_n(drop(sub_n(mul_n(mul_n([1, 3, 4],-4),-4),-1),2),-5)",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      60
    ],
    "output_masked": "generated_output : list = add_n(drop(sub_n(mul_n(mul_n(input,-4),-4),-1),2),-5)"
  },
  {
    "input": "input : list = [0, 3, -2, -2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take([0, 3, -2, -2],2),-1),4))",
    "io_inp": [
      0,
      3,
      -2,
      -2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(input,2),-1),4))"
  },
  {
    "input": "input : list = [-3, 2, -1]\noutput : list = [-12, -4, 8]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(sort_des([-3, 2, -1])),4)))",
    "io_inp": [
      -3,
      2,
      -1
    ],
    "io_out": [
      -12,
      -4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [-3, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(drop([-3, 1, 1],1))),11))",
    "io_inp": [
      -3,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(drop(input,1))),11))"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [-6, -18, -24]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n([4, 2, -2],2),-3),-4)),2)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      -6,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n(input,2),-3),-4)),2)"
  },
  {
    "input": "input : list = [-4, -5, 4]\noutput : list = [-25, -20, 20]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(reverse([-4, -5, 4]))),7),5)",
    "io_inp": [
      -4,
      -5,
      4
    ],
    "io_out": [
      -25,
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(reverse(input))),7),5)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(reverse([2, -2]))),1),5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(reverse(input))),1),5)"
  },
  {
    "input": "input : list = [-1, -1, -3, 4, 3]\noutput : list = [-3, -1, -1, 3, 4]",
    "output": "generated_output : list = sort_asc([-1, -1, -3, 4, 3])",
    "io_inp": [
      -1,
      -1,
      -3,
      4,
      3
    ],
    "io_out": [
      -3,
      -1,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, 3, -3, -1]\noutput : list = [5, 3, -3, -1]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(reverse([3, 5, 3, -3, -1]),2),4)),2)",
    "io_inp": [
      3,
      5,
      3,
      -3,
      -1
    ],
    "io_out": [
      5,
      3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(reverse(input),2),4)),2)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-28, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse([2, -3])),5),-4)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -28,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(input)),5),-4)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(sort_des([-4, -4]),13),-4)))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(sort_des(input),13),-4)))"
  },
  {
    "input": "input : list = [-2, -3, -5, -4, 3, -4]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = take(reverse(take([-2, -3, -5, -4, 3, -4],3)),26)",
    "io_inp": [
      -2,
      -3,
      -5,
      -4,
      3,
      -4
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,3)),26)"
  },
  {
    "input": "input : list = [3, 3, 1]\noutput : list = [12]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(take([3, 3, 1],1),3),5),2))",
    "io_inp": [
      3,
      3,
      1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(take(input,1),3),5),2))"
  },
  {
    "input": "input : list = [-5, -3, 1, -2, 4, -3]\noutput : list = [-8, -2, -2, 1, 10, 19]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(add_n([-5, -3, 1, -2, 4, -3],2),3)),-1))",
    "io_inp": [
      -5,
      -3,
      1,
      -2,
      4,
      -3
    ],
    "io_out": [
      -8,
      -2,
      -2,
      1,
      10,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(add_n(input,2),3)),-1))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(sort_des([4, -3]))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, 2, 5, -2, -3]\noutput : list = [-19, -14, 1, 6, 21]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_des([1, 2, 5, -2, -3]),5)),5),-1)",
    "io_inp": [
      1,
      2,
      5,
      -2,
      -3
    ],
    "io_out": [
      -19,
      -14,
      1,
      6,
      21
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_des(input),5)),5),-1)"
  },
  {
    "input": "input : list = [1, 3, 0, 0, -5]\noutput : list = [-5, 0, 0, 3, 1]",
    "output": "generated_output : list = reverse([1, 3, 0, 0, -5])",
    "io_inp": [
      1,
      3,
      0,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      0,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, 2]\noutput : list = [12, -20, -36]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(mul_n([-2, -4, 2],-4))),-2),4)",
    "io_inp": [
      -2,
      -4,
      2
    ],
    "io_out": [
      12,
      -20,
      -36
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(mul_n(input,-4))),-2),4)"
  },
  {
    "input": "input : list = [5, 1, -5, 0]\noutput : list = [-1, -9, -11, -21]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(sub_n([5, 1, -5, 0],5)),2),-1))",
    "io_inp": [
      5,
      1,
      -5,
      0
    ],
    "io_out": [
      -1,
      -9,
      -11,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(sub_n(input,5)),2),-1))"
  },
  {
    "input": "input : list = [-3, -4, -5, -2, 2]\noutput : list = [-9, -10, -11, -8, -4]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(sub_n([-3, -4, -5, -2, 2],-3),4)),-5))",
    "io_inp": [
      -3,
      -4,
      -5,
      -2,
      2
    ],
    "io_out": [
      -9,
      -10,
      -11,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(sub_n(input,-3),4)),-5))"
  },
  {
    "input": "input : list = [-2, 3, -4, 0, -3, 0]\noutput : list = [9, 6, 0, 0, -9]",
    "output": "generated_output : list = take(mul_n(reverse(take(sort_des([-2, 3, -4, 0, -3, 0]),5)),-3),54)",
    "io_inp": [
      -2,
      3,
      -4,
      0,
      -3,
      0
    ],
    "io_out": [
      9,
      6,
      0,
      0,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(sort_des(input),5)),-3),54)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n([-4, -4],-5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, -1, -4, -4, -3]\noutput : list = [10, -2, -6, -8, -8]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([5, -1, -4, -4, -3],2)))",
    "io_inp": [
      5,
      -1,
      -4,
      -4,
      -3
    ],
    "io_out": [
      10,
      -2,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,2)))"
  },
  {
    "input": "input : list = [1, 3, -5, 1, -4, -1]\noutput : list = [-5, -4, -1, 1, 1, 3]",
    "output": "generated_output : list = sort_asc([1, 3, -5, 1, -4, -1])",
    "io_inp": [
      1,
      3,
      -5,
      1,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, 5, 4, -4, -5]\noutput : list = [15, 0, -15]",
    "output": "generated_output : list = mul_n(take([-5, 0, 5, 4, -4, -5],3),-3)",
    "io_inp": [
      -5,
      0,
      5,
      4,
      -4,
      -5
    ],
    "io_out": [
      15,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [-2, -1, 0, -3]\noutput : list = [-1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(drop([-2, -1, 0, -3],2),15))),-1)",
    "io_inp": [
      -2,
      -1,
      0,
      -3
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(drop(input,2),15))),-1)"
  },
  {
    "input": "input : list = [5, -1, 2, -2, 1]\noutput : list = [1, -2, 2, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, 2, -2, 1])",
    "io_inp": [
      5,
      -1,
      2,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -5, -5, 4, 4]\noutput : list = [-6]",
    "output": "generated_output : list = drop(take(sub_n(sort_des([0, -5, -5, 4, 4]),1),28),4)",
    "io_inp": [
      0,
      -5,
      -5,
      4,
      4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(sort_des(input),1),28),4)"
  },
  {
    "input": "input : list = [4, -3, -2, -4, 3, 1]\noutput : list = [-4, 3, 1]",
    "output": "generated_output : list = drop([4, -3, -2, -4, 3, 1],3)",
    "io_inp": [
      4,
      -3,
      -2,
      -4,
      3,
      1
    ],
    "io_out": [
      -4,
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 0, -2, 1]\noutput : list = [-2, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 0, -2, 1])",
    "io_inp": [
      5,
      0,
      -2,
      1
    ],
    "io_out": [
      -2,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3, 1]\noutput : list = [6, 2]",
    "output": "generated_output : list = sort_des(take(sub_n(take(drop([-2, -3, 1],1),16),-5),9))",
    "io_inp": [
      -2,
      -3,
      1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(drop(input,1),16),-5),9))"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take([-2, 5, -5],1)),-1))",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(input,1)),-1))"
  },
  {
    "input": "input : list = [4, 3, -2, 0, 1, 2]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(take([4, 3, -2, 0, 1, 2],3),-3))",
    "io_inp": [
      4,
      3,
      -2,
      0,
      1,
      2
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,3),-3))"
  },
  {
    "input": "input : list = [4, 3, -1, 5, 3]\noutput : list = [10, 9, 8, 8, 4]",
    "output": "generated_output : list = sub_n(sort_des([4, 3, -1, 5, 3]),-5)",
    "io_inp": [
      4,
      3,
      -1,
      5,
      3
    ],
    "io_out": [
      10,
      9,
      8,
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 4]",
    "output": "generated_output : list = reverse([4, 5])",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -1, -1, -5, 0]\noutput : list = [0, -1, -1, -3, -5]",
    "output": "generated_output : list = take(sort_des([-3, -1, -1, -5, 0]),11)",
    "io_inp": [
      -3,
      -1,
      -1,
      -5,
      0
    ],
    "io_out": [
      0,
      -1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),11)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-5, 11]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(mul_n([2, -2],-4),1),-1),-4),28)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -5,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(mul_n(input,-4),1),-1),-4),28)"
  },
  {
    "input": "input : list = [-5, 4, 5, 0]\noutput : list = [20]",
    "output": "generated_output : list = sort_des(sub_n(take(take(mul_n([-5, 4, 5, 0],-5),1),9),5))",
    "io_inp": [
      -5,
      4,
      5,
      0
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(mul_n(input,-5),1),9),5))"
  },
  {
    "input": "input : list = [-5, -2, 4]\noutput : list = [3, -3, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(reverse([-5, -2, 4]),2)),3))",
    "io_inp": [
      -5,
      -2,
      4
    ],
    "io_out": [
      3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(reverse(input),2)),3))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc([-5, -3]),-2)),16))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sort_asc(input),-2)),16))"
  },
  {
    "input": "input : list = [0, -5, 1, 0, -5]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(drop([0, -5, 1, 0, -5],2),-4))))",
    "io_inp": [
      0,
      -5,
      1,
      0,
      -5
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(drop(input,2),-4))))"
  },
  {
    "input": "input : list = [-4, -5, 3, -4, 0]\noutput : list = [-2, -3, 5, -2, 2]",
    "output": "generated_output : list = add_n([-4, -5, 3, -4, 0],2)",
    "io_inp": [
      -4,
      -5,
      3,
      -4,
      0
    ],
    "io_out": [
      -2,
      -3,
      5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, -1, 3, -3]\noutput : list = [3, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-4, -1, 3, -3]))",
    "io_inp": [
      -4,
      -1,
      3,
      -3
    ],
    "io_out": [
      3,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 2, 4, 4, 5]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(take([-2, 2, 4, 4, 5],3)),2),19))",
    "io_inp": [
      -2,
      2,
      4,
      4,
      5
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(take(input,3)),2),19))"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [3, 1, -6]",
    "output": "generated_output : list = reverse(add_n([-5, 2, 4],-1))",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      3,
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [3, -1, 0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(drop([3, -1, 0, 1],2))",
    "io_inp": [
      3,
      -1,
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [4, 0, 5, 2, 5]\noutput : list = [6, 6, 8, 12, 16]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n([4, 0, 5, 2, 5],-3))),5),-2)",
    "io_inp": [
      4,
      0,
      5,
      2,
      5
    ],
    "io_out": [
      6,
      6,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n(input,-3))),5),-2)"
  },
  {
    "input": "input : list = [-5, 2, 4, 5]\noutput : list = [5, 4, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, 4, 5])",
    "io_inp": [
      -5,
      2,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(sort_des([2, 0]),11)),-2),1)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(sort_des(input),11)),-2),1)"
  },
  {
    "input": "input : list = [-5, 1, -2, 4]\noutput : list = [-45, -15]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse(drop([-5, 1, -2, 4],2)),1),4),-5)",
    "io_inp": [
      -5,
      1,
      -2,
      4
    ],
    "io_out": [
      -45,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(drop(input,2)),1),4),-5)"
  },
  {
    "input": "input : list = [-4, 4, -2, 2]\noutput : list = [2, 6]",
    "output": "generated_output : list = add_n(take(drop([-4, 4, -2, 2],2),9),4)",
    "io_inp": [
      -4,
      4,
      -2,
      2
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,2),9),4)"
  },
  {
    "input": "input : list = [-2, -2, -1]\noutput : list = [1, -3, -3]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(mul_n([-2, -2, -1],4),-1)),-4),1)",
    "io_inp": [
      -2,
      -2,
      -1
    ],
    "io_out": [
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(mul_n(input,4),-1)),-4),1)"
  },
  {
    "input": "input : list = [-1, 2, 2, -4, -3, -4]\noutput : list = [-2, -2, -1, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(drop([-1, 2, 2, -4, -3, -4],2),-3))),-5)",
    "io_inp": [
      -1,
      2,
      2,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(drop(input,2),-3))),-5)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-5, -20]",
    "output": "generated_output : list = mul_n([1, 4],-5)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, 5, 2, 0, 1]\noutput : list = [4, 8, 5, 3, 4]",
    "output": "generated_output : list = add_n(add_n([1, 5, 2, 0, 1],5),-2)",
    "io_inp": [
      1,
      5,
      2,
      0,
      1
    ],
    "io_out": [
      4,
      8,
      5,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-2)"
  },
  {
    "input": "input : list = [-3, 2, 0, -4, -2, -3]\noutput : list = [-8, -3, -5, -9, -7, -8]",
    "output": "generated_output : list = add_n([-3, 2, 0, -4, -2, -3],-5)",
    "io_inp": [
      -3,
      2,
      0,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -8,
      -3,
      -5,
      -9,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [0, -12, -4]",
    "output": "generated_output : list = mul_n([0, -3, -1],4)",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      0,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [-2, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n([-5, -2, 0],3))",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [5, -1, 5]\noutput : list = [1, 7, 7]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(sort_des([5, -1, 5]),14),2)))",
    "io_inp": [
      5,
      -1,
      5
    ],
    "io_out": [
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(sort_des(input),14),2)))"
  },
  {
    "input": "input : list = [-4, 1, -3]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 1, -3])",
    "io_inp": [
      -4,
      1,
      -3
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, 1, 3, 4]\noutput : list = [9, 7]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(mul_n([1, -4, 1, 3, 4],2),1))),2)",
    "io_inp": [
      1,
      -4,
      1,
      3,
      4
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(mul_n(input,2),1))),2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(take(sort_asc([2, -2]),8))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),8))"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [2, 8, 6]",
    "output": "generated_output : list = take(sub_n([-2, 4, 2],-4),6)",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      2,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),6)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = mul_n(drop([-1, -3, -1],1),2)",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [-10, -6, -6]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n([2, 2, 4],2),-1),-2))",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      -10,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(input,2),-1),-2))"
  },
  {
    "input": "input : list = [-3, 5, 1, -4, 2, 5]\noutput : list = [-3, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(drop([-3, 5, 1, -4, 2, 5],4),-2),4),-3),4)",
    "io_inp": [
      -3,
      5,
      1,
      -4,
      2,
      5
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(drop(input,4),-2),4),-3),4)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [15, -6]",
    "output": "generated_output : list = mul_n([-5, 2],-3)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      15,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 1, -3]\noutput : list = [-7, -6, -2]",
    "output": "generated_output : list = take(take(add_n(reverse(sort_des([-4, 1, -3])),-3),30),40)",
    "io_inp": [
      -4,
      1,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(sort_des(input)),-3),30),40)"
  },
  {
    "input": "input : list = [5, 1, -2, 0]\noutput : list = [5, 7, 8, 12]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(sub_n([5, 1, -2, 0],-3),4))))",
    "io_inp": [
      5,
      1,
      -2,
      0
    ],
    "io_out": [
      5,
      7,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(sub_n(input,-3),4))))"
  },
  {
    "input": "input : list = [-4, -5, 3, 1]\noutput : list = [12, 15, -9, -3]",
    "output": "generated_output : list = take(mul_n([-4, -5, 3, 1],-3),11)",
    "io_inp": [
      -4,
      -5,
      3,
      1
    ],
    "io_out": [
      12,
      15,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),11)"
  },
  {
    "input": "input : list = [-1, -2, 1, 4, -3, 0]\noutput : list = [-1, 2, 3, 4, 5, 6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(add_n([-1, -2, 1, 4, -3, 0],-2),1)),-1))",
    "io_inp": [
      -1,
      -2,
      1,
      4,
      -3,
      0
    ],
    "io_out": [
      -1,
      2,
      3,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(add_n(input,-2),1)),-1))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-9, -21]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(sub_n([3, -1],4),4),-4)),-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -9,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(sub_n(input,4),4),-4)),-3)"
  },
  {
    "input": "input : list = [-4, 0, -5, -3, 3]\noutput : list = [-7, -6, -5, -2, 1]",
    "output": "generated_output : list = add_n(sort_asc([-4, 0, -5, -3, 3]),-2)",
    "io_inp": [
      -4,
      0,
      -5,
      -3,
      3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-3, -2, 1, 4]\noutput : list = [-3, -2, 1, 4]",
    "output": "generated_output : list = sort_asc([-3, -2, 1, 4])",
    "io_inp": [
      -3,
      -2,
      1,
      4
    ],
    "io_out": [
      -3,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, 4, 4, 2, 3]\noutput : list = [-30, -25, -30, -30, -20, -25]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n([4, 3, 4, 4, 2, 3],5),3),-5),11)",
    "io_inp": [
      4,
      3,
      4,
      4,
      2,
      3
    ],
    "io_out": [
      -30,
      -25,
      -30,
      -30,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(input,5),3),-5),11)"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [5, 6, 12]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc([-2, -3, 4]),-5),25),3)",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      5,
      6,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(input),-5),25),3)"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(drop([-5, 3, 0],1)))))",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [10]",
    "output": "generated_output : list = take(take(sub_n(add_n([4, 0],4),-2),21),1)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(input,4),-2),21),1)"
  },
  {
    "input": "input : list = [0, -3, -3, 1, -5, -1]\noutput : list = [-1, -5, 1, -3, -3, 0]",
    "output": "generated_output : list = sub_n(reverse(sub_n([0, -3, -3, 1, -5, -1],-2)),2)",
    "io_inp": [
      0,
      -3,
      -3,
      1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      1,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,-2)),2)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [6, 1, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc([-5, -3, 2])),-4))",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      6,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(input)),-4))"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(reverse([0, 1, -1])),21)))",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(reverse(input)),21)))"
  },
  {
    "input": "input : list = [2, -1, 1, -3, -5]\noutput : list = [7, 6, 4, 2]",
    "output": "generated_output : list = reverse(sub_n(drop(sort_asc(sort_asc([2, -1, 1, -3, -5])),1),-5))",
    "io_inp": [
      2,
      -1,
      1,
      -3,
      -5
    ],
    "io_out": [
      7,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(sort_asc(sort_asc(input)),1),-5))"
  },
  {
    "input": "input : list = [0, 5, -3, 2, -4]\noutput : list = [-4, 2, -3, 5, 0]",
    "output": "generated_output : list = mul_n(reverse([0, 5, -3, 2, -4]),1)",
    "io_inp": [
      0,
      5,
      -3,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -3,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, 0, -5, 3, -2, -3]\noutput : list = [-5, -4, -3, -2, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(add_n([-4, 0, -5, 3, -2, -3],-5)),-1)),-4)",
    "io_inp": [
      -4,
      0,
      -5,
      3,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(add_n(input,-5)),-1)),-4)"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n([1, 3, 0],1),1))),-3)",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n(input,1),1))),-3)"
  },
  {
    "input": "input : list = [2, -1, -1, -1, -1, 0]\noutput : list = [1, 1, 1]",
    "output": "generated_output : list = sort_asc(drop(sort_des(add_n(sub_n([2, -1, -1, -1, -1, 0],3),5)),3))",
    "io_inp": [
      2,
      -1,
      -1,
      -1,
      -1,
      0
    ],
    "io_out": [
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_des(add_n(sub_n(input,3),5)),3))"
  },
  {
    "input": "input : list = [5, 3, 5, 2]\noutput : list = [-4, -10, -6, -10]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(add_n([5, 3, 5, 2],5),5),-2)),37)",
    "io_inp": [
      5,
      3,
      5,
      2
    ],
    "io_out": [
      -4,
      -10,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(add_n(input,5),5),-2)),37)"
  },
  {
    "input": "input : list = [5, -4, -5, 0, -1]\noutput : list = [2, -3, -4, -7, -8]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(sub_n([5, -4, -5, 0, -1],3)))),27)",
    "io_inp": [
      5,
      -4,
      -5,
      0,
      -1
    ],
    "io_out": [
      2,
      -3,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(sub_n(input,3)))),27)"
  },
  {
    "input": "input : list = [-1, 0, 3, 5, 1, 0]\noutput : list = [4, 2, 0, -1, -1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(sub_n([-1, 0, 3, 5, 1, 0],1))),38))",
    "io_inp": [
      -1,
      0,
      3,
      5,
      1,
      0
    ],
    "io_out": [
      4,
      2,
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(sub_n(input,1))),38))"
  },
  {
    "input": "input : list = [4, -5, 0, 0, 0]\noutput : list = [-1, 4, 4, 4, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_des([4, -5, 0, 0, 0]))),-4))",
    "io_inp": [
      4,
      -5,
      0,
      0,
      0
    ],
    "io_out": [
      -1,
      4,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [-4, 5, 5, 3, -5]\noutput : list = [-5, -4, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc([-4, 5, 5, 3, -5])))))",
    "io_inp": [
      -4,
      5,
      5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [-7, -7, -13]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sub_n([4, -2, -2],-4),5)),-1))",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sub_n(input,-4),5)),-1))"
  },
  {
    "input": "input : list = [3, 3, 4, 2, 2]\noutput : list = [4, 3, 3, 2, 2]",
    "output": "generated_output : list = sort_des(sort_des([3, 3, 4, 2, 2]))",
    "io_inp": [
      3,
      3,
      4,
      2,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -3, -1, -3]\noutput : list = [-4, -4, -2, -2]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_des([-1, -3, -1, -3]),1),-4),-3))",
    "io_inp": [
      -1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_des(input),1),-4),-3))"
  },
  {
    "input": "input : list = [5, 1, -4, -4]\noutput : list = [-15, -3, 12, 12]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(reverse([5, 1, -4, -4]),-3))))",
    "io_inp": [
      5,
      1,
      -4,
      -4
    ],
    "io_out": [
      -15,
      -3,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(reverse([-5, -5])),15),-1))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(reverse(input)),15),-1))"
  },
  {
    "input": "input : list = [-4, -5, 4]\noutput : list = [-200, -180, -20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(add_n([-4, -5, 4],-5),4)),5))",
    "io_inp": [
      -4,
      -5,
      4
    ],
    "io_out": [
      -200,
      -180,
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(add_n(input,-5),4)),5))"
  },
  {
    "input": "input : list = [5, 2, 5, -1, 5, -3]\noutput : list = [3, 3, 3, 0, -3, -5]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(add_n([5, 2, 5, -1, 5, -3],3))),-5),9)",
    "io_inp": [
      5,
      2,
      5,
      -1,
      5,
      -3
    ],
    "io_out": [
      3,
      3,
      3,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(add_n(input,3))),-5),9)"
  },
  {
    "input": "input : list = [-2, -4, -4, -2, 2]\noutput : list = [-9]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(sort_asc([-2, -4, -4, -2, 2]),-2),-3)),1)",
    "io_inp": [
      -2,
      -4,
      -4,
      -2,
      2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(sort_asc(input),-2),-3)),1)"
  },
  {
    "input": "input : list = [4, 0, -5, -5, 1]\noutput : list = [0, -5, -5, 1]",
    "output": "generated_output : list = drop([4, 0, -5, -5, 1],1)",
    "io_inp": [
      4,
      0,
      -5,
      -5,
      1
    ],
    "io_out": [
      0,
      -5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take(sort_asc(mul_n(drop(sort_asc([2, -4]),1),-2)),17)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(drop(sort_asc(input),1),-2)),17)"
  },
  {
    "input": "input : list = [1, -2, -4, -2, -1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = take([1, -2, -4, -2, -1, -2],2)",
    "io_inp": [
      1,
      -2,
      -4,
      -2,
      -1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -5, 4, -4, 1, 3]\noutput : list = [8, 7, 6, 4, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_des([5, -5, 4, -4, 1, 3]),-3))))",
    "io_inp": [
      5,
      -5,
      4,
      -4,
      1,
      3
    ],
    "io_out": [
      8,
      7,
      6,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [4, 5, -2, 3, 2]\noutput : list = [8, 6, 4, 2, -6]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([4, 5, -2, 3, 2]),1),2)",
    "io_inp": [
      4,
      5,
      -2,
      3,
      2
    ],
    "io_out": [
      8,
      6,
      4,
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),1),2)"
  },
  {
    "input": "input : list = [4, -1, 4, 4]\noutput : list = [-1, 4, 4, 4]",
    "output": "generated_output : list = sort_asc([4, -1, 4, 4])",
    "io_inp": [
      4,
      -1,
      4,
      4
    ],
    "io_out": [
      -1,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -2, 4, 1, 4]\noutput : list = [4, 4, 1, 0, -2]",
    "output": "generated_output : list = sort_des([0, -2, 4, 1, 4])",
    "io_inp": [
      0,
      -2,
      4,
      1,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -5, 5, 2, -1]\noutput : list = [17, 8, 8, -1, -13]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(mul_n([2, -5, 5, 2, -1],3)),2)),4)",
    "io_inp": [
      2,
      -5,
      5,
      2,
      -1
    ],
    "io_out": [
      17,
      8,
      8,
      -1,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(mul_n(input,3)),2)),4)"
  },
  {
    "input": "input : list = [-5, 3, 0, 1]\noutput : list = [3, 1, 0, -5]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_des(sort_asc([-5, 3, 0, 1]))),12))",
    "io_inp": [
      -5,
      3,
      0,
      1
    ],
    "io_out": [
      3,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_des(sort_asc(input))),12))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(add_n([-1, 5],4))),-5),5)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(add_n(input,4))),-5),5)"
  },
  {
    "input": "input : list = [4, -5, 1, 1, 5]\noutput : list = [9, 0, 6, 6, 10]",
    "output": "generated_output : list = add_n([4, -5, 1, 1, 5],5)",
    "io_inp": [
      4,
      -5,
      1,
      1,
      5
    ],
    "io_out": [
      9,
      0,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [4, 8, 4]",
    "output": "generated_output : list = reverse(add_n(sub_n([-1, 3, -1],-4),1))",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      4,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-4),1))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-12, 16]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(reverse([-3, 4])),1),4))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(reverse(input)),1),4))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des([-2, -2])",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 0, 2]\noutput : list = [220, 20, 120]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(mul_n([1, 0, 2],4),-5),-4)),-5)",
    "io_inp": [
      1,
      0,
      2
    ],
    "io_out": [
      220,
      20,
      120
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(mul_n(input,4),-5),-4)),-5)"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [-1, -3, 0]",
    "output": "generated_output : list = sub_n([1, -1, 2],2)",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      -1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, -3, 5, 1, 4]\noutput : list = [10, 2, 10]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n(take([5, -3, 5, 1, 4],3),1)),-5),13)",
    "io_inp": [
      5,
      -3,
      5,
      1,
      4
    ],
    "io_out": [
      10,
      2,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(take(input,3),1)),-5),13)"
  },
  {
    "input": "input : list = [-5, 3, -5, 1]\noutput : list = [-6, 18]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_des(drop([-5, 3, -5, 1],2)),1),-4),-2)",
    "io_inp": [
      -5,
      3,
      -5,
      1
    ],
    "io_out": [
      -6,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_des(drop(input,2)),1),-4),-2)"
  },
  {
    "input": "input : list = [0, -4, 5, -4, -4, 2]\noutput : list = [4, 1, -1, -5, -5, -5]",
    "output": "generated_output : list = sort_des(add_n([0, -4, 5, -4, -4, 2],-1))",
    "io_inp": [
      0,
      -4,
      5,
      -4,
      -4,
      2
    ],
    "io_out": [
      4,
      1,
      -1,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [1, -5, 3, -1, 2, 4]\noutput : list = [4, 6]",
    "output": "generated_output : list = take(sub_n(drop([1, -5, 3, -1, 2, 4],4),-2),23)",
    "io_inp": [
      1,
      -5,
      3,
      -1,
      2,
      4
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,4),-2),23)"
  },
  {
    "input": "input : list = [3, -1, -3, 1]\noutput : list = [-15, -5, 5, 15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sort_asc([3, -1, -3, 1])))),5)",
    "io_inp": [
      3,
      -1,
      -3,
      1
    ],
    "io_out": [
      -15,
      -5,
      5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [3, 4, -5, -2]\noutput : list = [2, 3, -6, -3]",
    "output": "generated_output : list = add_n([3, 4, -5, -2],-1)",
    "io_inp": [
      3,
      4,
      -5,
      -2
    ],
    "io_out": [
      2,
      3,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [1, -7]",
    "output": "generated_output : list = reverse(sort_asc(sub_n([-5, 3],2)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sort_asc([-5, 4, -3]))),2))",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [-4, -3, 2, 1]\noutput : list = [22, 16, -14, -8]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n([-4, -3, 2, 1],-3),2),23),2)",
    "io_inp": [
      -4,
      -3,
      2,
      1
    ],
    "io_out": [
      22,
      16,
      -14,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(input,-3),2),23),2)"
  },
  {
    "input": "input : list = [-4, 3, -5, 0, -2, 4]\noutput : list = [-4, 3, -5, 0]",
    "output": "generated_output : list = take([-4, 3, -5, 0, -2, 4],4)",
    "io_inp": [
      -4,
      3,
      -5,
      0,
      -2,
      4
    ],
    "io_out": [
      -4,
      3,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [5, 5, 3, 0, -5]\noutput : list = [17, 17, 11, 2, -13]",
    "output": "generated_output : list = sub_n(mul_n([5, 5, 3, 0, -5],3),-2)",
    "io_inp": [
      5,
      5,
      3,
      0,
      -5
    ],
    "io_out": [
      17,
      17,
      11,
      2,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),-2)"
  },
  {
    "input": "input : list = [-5, 2, 0]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(take([-5, 2, 0],1),-1)",
    "io_inp": [
      -5,
      2,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [1, -4, -2, 2]\noutput : list = [-6, -5, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(add_n([1, -4, -2, 2],1),-1),21)),-3)",
    "io_inp": [
      1,
      -4,
      -2,
      2
    ],
    "io_out": [
      -6,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(add_n(input,1),-1),21)),-3)"
  },
  {
    "input": "input : list = [-2, 0, 3, -3, 3]\noutput : list = [-10, 0, 15, -15, 15]",
    "output": "generated_output : list = mul_n([-2, 0, 3, -3, 3],5)",
    "io_inp": [
      -2,
      0,
      3,
      -3,
      3
    ],
    "io_out": [
      -10,
      0,
      15,
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, -5, 2, -4, 1, -4]\noutput : list = [-5, -4, -4, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse([1, -5, 2, -4, 1, -4]))",
    "io_inp": [
      1,
      -5,
      2,
      -4,
      1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = drop([1, 4, 5],1)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -3, 0, 0, -4]\noutput : list = [8, -12, 0, 0, -16]",
    "output": "generated_output : list = reverse(reverse(mul_n([2, -3, 0, 0, -4],4)))",
    "io_inp": [
      2,
      -3,
      0,
      0,
      -4
    ],
    "io_out": [
      8,
      -12,
      0,
      0,
      -16
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n([-3, -2],-4)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 5, 5, -2]\noutput : list = [2, 9, 9, 2]",
    "output": "generated_output : list = reverse(sub_n([-2, 5, 5, -2],-4))",
    "io_inp": [
      -2,
      5,
      5,
      -2
    ],
    "io_out": [
      2,
      9,
      9,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [2, 2, 0, 4, 3]\noutput : list = [4, 3, 2, 2, 0]",
    "output": "generated_output : list = sort_des([2, 2, 0, 4, 3])",
    "io_inp": [
      2,
      2,
      0,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 2, 4]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = take(reverse([-2, 2, 4]),4)",
    "io_inp": [
      -2,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [-5, 4, -5, 0, -1]\noutput : list = [25, 5, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(drop([-5, 4, -5, 0, -1],2),-5),33))",
    "io_inp": [
      -5,
      4,
      -5,
      0,
      -1
    ],
    "io_out": [
      25,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(drop(input,2),-5),33))"
  },
  {
    "input": "input : list = [-5, 2, -3, 2, -4, -2]\noutput : list = [3, 3, -1, -2, -3, -4]",
    "output": "generated_output : list = reverse(add_n(sort_asc([-5, 2, -3, 2, -4, -2]),1))",
    "io_inp": [
      -5,
      2,
      -3,
      2,
      -4,
      -2
    ],
    "io_out": [
      3,
      3,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-1, 5, 0, 4, 3]\noutput : list = [0, -5]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(drop([-1, 5, 0, 4, 3],3)),-4)),5)",
    "io_inp": [
      -1,
      5,
      0,
      4,
      3
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(drop(input,3)),-4)),5)"
  },
  {
    "input": "input : list = [5, -4, 2, 4]\noutput : list = [2]",
    "output": "generated_output : list = take(drop(sub_n([5, -4, 2, 4],2),3),28)",
    "io_inp": [
      5,
      -4,
      2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(input,2),3),28)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [10, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_asc([2, 0]))),5))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-5, -3, 3, 3, 1, -4]\noutput : list = [8, -2, -6, -6, 6]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(drop([-5, -3, 3, 3, 1, -4],1),5)),5),-2)",
    "io_inp": [
      -5,
      -3,
      3,
      3,
      1,
      -4
    ],
    "io_out": [
      8,
      -2,
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(drop(input,1),5)),5),-2)"
  },
  {
    "input": "input : list = [-2, 2, -2, -5]\noutput : list = [3, -1, -1, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(reverse([-2, 2, -2, -5]),6)),-3),-4)",
    "io_inp": [
      -2,
      2,
      -2,
      -5
    ],
    "io_out": [
      3,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(reverse(input),6)),-3),-4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [12, 20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sub_n([0, -4],5),1))),-2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(sub_n(input,5),1))),-2)"
  },
  {
    "input": "input : list = [0, -1, -1, 1]\noutput : list = [4, 0, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(reverse([0, -1, -1, 1]),4))))",
    "io_inp": [
      0,
      -1,
      -1,
      1
    ],
    "io_out": [
      4,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-1, -2, -3, 4, 4]\noutput : list = [-8, -7, -6, -1, -1]",
    "output": "generated_output : list = sub_n(sort_asc([-1, -2, -3, 4, 4]),5)",
    "io_inp": [
      -1,
      -2,
      -3,
      4,
      4
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-8, 8]",
    "output": "generated_output : list = take(take(sort_asc(mul_n([-4, 4],-2)),12),34)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(input,-2)),12),34)"
  },
  {
    "input": "input : list = [-2, 0, -1, -2, 4]\noutput : list = [2, -2, -3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(mul_n([-2, 0, -1, -2, 4],1),2))))",
    "io_inp": [
      -2,
      0,
      -1,
      -2,
      4
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(mul_n(input,1),2))))"
  },
  {
    "input": "input : list = [3, 2, -4, 0, 1, -1]\noutput : list = [-8, 4, 8, 12, 16, 20]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_des([3, 2, -4, 0, 1, -1])),1),4),-4)",
    "io_inp": [
      3,
      2,
      -4,
      0,
      1,
      -1
    ],
    "io_out": [
      -8,
      4,
      8,
      12,
      16,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(sort_des(input)),1),4),-4)"
  },
  {
    "input": "input : list = [-4, -4, 1, -4, 5]\noutput : list = [15, -1, -21, -21, -21]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(mul_n([-4, -4, 1, -4, 5],-1)),-4)),-5)",
    "io_inp": [
      -4,
      -4,
      1,
      -4,
      5
    ],
    "io_out": [
      15,
      -1,
      -21,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(mul_n(input,-1)),-4)),-5)"
  },
  {
    "input": "input : list = [-2, 1, 4, -4, -1]\noutput : list = [5, 8, 11, 3, 6]",
    "output": "generated_output : list = take(take(take(sub_n(sub_n([-2, 1, 4, -4, -1],-4),-3),32),42),30)",
    "io_inp": [
      -2,
      1,
      4,
      -4,
      -1
    ],
    "io_out": [
      5,
      8,
      11,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(sub_n(input,-4),-3),32),42),30)"
  },
  {
    "input": "input : list = [1, 1, -3, -3, 5, 0]\noutput : list = [5, 1, 1, 0]",
    "output": "generated_output : list = take(sort_des(sort_des([1, 1, -3, -3, 5, 0])),4)",
    "io_inp": [
      1,
      1,
      -3,
      -3,
      5,
      0
    ],
    "io_out": [
      5,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-9, 12]",
    "output": "generated_output : list = mul_n([3, -4],-3)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, -3, -5, 4, -2]\noutput : list = [-2, 4, -5, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, -5, 4, -2])",
    "io_inp": [
      2,
      -3,
      -5,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, 0, -4]\noutput : list = [-4, -3, -2, 0]",
    "output": "generated_output : list = reverse(sort_des([-3, -2, 0, -4]))",
    "io_inp": [
      -3,
      -2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, 2, -3, 2, 4]\noutput : list = [-12, -2, -2, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sort_asc([5, 2, -3, 2, 4])),-3),2))",
    "io_inp": [
      5,
      2,
      -3,
      2,
      4
    ],
    "io_out": [
      -12,
      -2,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(sort_asc(input)),-3),2))"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [10, 10, 2]",
    "output": "generated_output : list = sub_n(take(add_n(take(add_n([4, 4, -4],3),3),1),31),-2)",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      10,
      10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(add_n(input,3),3),1),31),-2)"
  },
  {
    "input": "input : list = [2, 1, -3, -4]\noutput : list = [0, -1, -5, -6]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(reverse([2, 1, -3, -4]))),7),-2)",
    "io_inp": [
      2,
      1,
      -3,
      -4
    ],
    "io_out": [
      0,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(reverse(input))),7),-2)"
  },
  {
    "input": "input : list = [-5, 1, -5, -5]\noutput : list = [1, -5, -5, -5]",
    "output": "generated_output : list = take(sort_des([-5, 1, -5, -5]),22)",
    "io_inp": [
      -5,
      1,
      -5,
      -5
    ],
    "io_out": [
      1,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),22)"
  },
  {
    "input": "input : list = [1, 5, -2, -4, -5, 3]\noutput : list = [3, 6, 10]",
    "output": "generated_output : list = sort_asc(add_n(take([1, 5, -2, -4, -5, 3],3),5))",
    "io_inp": [
      1,
      5,
      -2,
      -4,
      -5,
      3
    ],
    "io_out": [
      3,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,3),5))"
  },
  {
    "input": "input : list = [-5, 0, -4, 2]\noutput : list = [0, -2, -6, -7]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(sort_des([-5, 0, -4, 2]),17),2)))",
    "io_inp": [
      -5,
      0,
      -4,
      2
    ],
    "io_out": [
      0,
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(sort_des(input),17),2)))"
  },
  {
    "input": "input : list = [1, 2, -4]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = sort_des(take(take(take(reverse([1, 2, -4]),9),6),32))",
    "io_inp": [
      1,
      2,
      -4
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(reverse(input),9),6),32))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des([1, -4])),1),-4)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(input)),1),-4)"
  },
  {
    "input": "input : list = [-2, -2, -2, 3, 3, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -2, -2, 3, 3, 5],1)",
    "io_inp": [
      -2,
      -2,
      -2,
      3,
      3,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -2, -3, 3, -2, -1]\noutput : list = [1, 2, 2, 3, 7]",
    "output": "generated_output : list = drop(sub_n(add_n(sub_n(sort_asc([-3, -2, -3, 3, -2, -1]),-3),5),4),1)",
    "io_inp": [
      -3,
      -2,
      -3,
      3,
      -2,
      -1
    ],
    "io_out": [
      1,
      2,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = drop(sub_n(add_n(sub_n(sort_asc(input),-3),5),4),1)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-12, -4]",
    "output": "generated_output : list = take(sort_asc(mul_n(reverse(add_n([2, 4],-5)),4)),5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -12,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(reverse(add_n(input,-5)),4)),5)"
  },
  {
    "input": "input : list = [-4, -1, -2, -1, 0]\noutput : list = [-12, -9, -10, -9, -8]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse([-4, -1, -2, -1, 0]),-5)),3)",
    "io_inp": [
      -4,
      -1,
      -2,
      -1,
      0
    ],
    "io_out": [
      -12,
      -9,
      -10,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(input),-5)),3)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-8, -6, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(sub_n([2, 0, -2],5)))),1)",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(sub_n(input,5)))),1)"
  },
  {
    "input": "input : list = [-2, -4, -3, -5, -5, 1]\noutput : list = [5, -25]",
    "output": "generated_output : list = reverse(mul_n(drop([-2, -4, -3, -5, -5, 1],4),5))",
    "io_inp": [
      -2,
      -4,
      -3,
      -5,
      -5,
      1
    ],
    "io_out": [
      5,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,4),5))"
  },
  {
    "input": "input : list = [5, 3, -2, 5]\noutput : list = [-5, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(sub_n([5, 3, -2, 5],-1),-2),21),-2))",
    "io_inp": [
      5,
      3,
      -2,
      5
    ],
    "io_out": [
      -5,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(sub_n(input,-1),-2),21),-2))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [24, 21]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des([4, 3]),-4),3),28))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      24,
      21
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(sort_des(input),-4),3),28))"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [-7, -9, -4]",
    "output": "generated_output : list = sub_n([-2, -4, 1],5)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      -7,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, -1, -2, 4, -4]\noutput : list = [-2, -1, -1]",
    "output": "generated_output : list = sort_asc(take([-1, -1, -2, 4, -4],3))",
    "io_inp": [
      -1,
      -1,
      -2,
      4,
      -4
    ],
    "io_out": [
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [4, -1, 4, 4, 4, 5]\noutput : list = [2, 7, 7, 7, 7, 8]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n(sort_asc([4, -1, 4, 4, 4, 5]),-5),-2)))",
    "io_inp": [
      4,
      -1,
      4,
      4,
      4,
      5
    ],
    "io_out": [
      2,
      7,
      7,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(sort_asc(input),-5),-2)))"
  },
  {
    "input": "input : list = [1, -2, 0, -3, -2, 3]\noutput : list = [-5, -7, -8, -10, -10, -11]",
    "output": "generated_output : list = take(take(sub_n(sub_n(sort_des([1, -2, 0, -3, -2, 3]),5),3),28),28)",
    "io_inp": [
      1,
      -2,
      0,
      -3,
      -2,
      3
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -10,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(sort_des(input),5),3),28),28)"
  },
  {
    "input": "input : list = [0, -1, -3, 3]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(take([0, -1, -3, 3],2),-1),3)),22)",
    "io_inp": [
      0,
      -1,
      -3,
      3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(take(input,2),-1),3)),22)"
  },
  {
    "input": "input : list = [-4, 5, 5, -4, 5, 1]\noutput : list = [12]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(take([-4, 5, 5, -4, 5, 1],1),-4))),4)",
    "io_inp": [
      -4,
      5,
      5,
      -4,
      5,
      1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(take(input,1),-4))),4)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(take(sort_des(mul_n(sub_n([2, 0],2),-1)),26),26)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_des(mul_n(sub_n(input,2),-1)),26),26)"
  },
  {
    "input": "input : list = [3, -1, -2, 5]\noutput : list = [-4, -3, 1, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(reverse([3, -1, -2, 5]))),2))",
    "io_inp": [
      3,
      -1,
      -2,
      5
    ],
    "io_out": [
      -4,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(reverse(input))),2))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(sort_des([-3, -3])),3),17),-3)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(sort_des(input)),3),17),-3)"
  },
  {
    "input": "input : list = [0, -3, -2, 2, -1, -2]\noutput : list = [0, -3, -2, 2]",
    "output": "generated_output : list = take([0, -3, -2, 2, -1, -2],4)",
    "io_inp": [
      0,
      -3,
      -2,
      2,
      -1,
      -2
    ],
    "io_out": [
      0,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [2, 5, -4, 1, 5]\noutput : list = [-2, 3, 4, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc([2, 5, -4, 1, 5]))),-2)",
    "io_inp": [
      2,
      5,
      -4,
      1,
      5
    ],
    "io_out": [
      -2,
      3,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(input))),-2)"
  },
  {
    "input": "input : list = [0, -1, -5, -1, 5, -4]\noutput : list = [-3, -2, 1, 1, 2, 7]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sub_n([0, -1, -5, -1, 5, -4],-2)))))",
    "io_inp": [
      0,
      -1,
      -5,
      -1,
      5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      1,
      1,
      2,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [-5, -4, -4, 0, 0, -4]\noutput : list = [-5, -1, -1, -5, -5, -6]",
    "output": "generated_output : list = reverse(take(add_n([-5, -4, -4, 0, 0, -4],-1),20))",
    "io_inp": [
      -5,
      -4,
      -4,
      0,
      0,
      -4
    ],
    "io_out": [
      -5,
      -1,
      -1,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-1),20))"
  },
  {
    "input": "input : list = [-5, -1, 2, 0, 1, -2]\noutput : list = [16, 0, -12, -4, -8, 4]",
    "output": "generated_output : list = add_n(mul_n([-5, -1, 2, 0, 1, -2],-4),-4)",
    "io_inp": [
      -5,
      -1,
      2,
      0,
      1,
      -2
    ],
    "io_out": [
      16,
      0,
      -12,
      -4,
      -8,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),-4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(add_n([0, 4],-2),3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [1, -2, -1, 2, -2]\noutput : list = [-1, 2, -2]",
    "output": "generated_output : list = drop([1, -2, -1, 2, -2],2)",
    "io_inp": [
      1,
      -2,
      -1,
      2,
      -2
    ],
    "io_out": [
      -1,
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -1, 3, -2]\noutput : list = [-2, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([2, -1, 3, -2]))",
    "io_inp": [
      2,
      -1,
      3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, -1, 1, -4]\noutput : list = [-10, 2, -2, 8]",
    "output": "generated_output : list = take(take(mul_n(mul_n([5, -1, 1, -4],1),-2),28),13)",
    "io_inp": [
      5,
      -1,
      1,
      -4
    ],
    "io_out": [
      -10,
      2,
      -2,
      8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(input,1),-2),28),13)"
  },
  {
    "input": "input : list = [-5, 3, 0, 3, -3, 5]\noutput : list = [-20, -12, 0, 12, 12, 20]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(mul_n([-5, 3, 0, 3, -3, 5],4)))))",
    "io_inp": [
      -5,
      3,
      0,
      3,
      -3,
      5
    ],
    "io_out": [
      -20,
      -12,
      0,
      12,
      12,
      20
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-1, 0, -2, -3]\noutput : list = [-60, -40, 0, -20]",
    "output": "generated_output : list = take(take(mul_n(mul_n(reverse([-1, 0, -2, -3]),5),4),27),41)",
    "io_inp": [
      -1,
      0,
      -2,
      -3
    ],
    "io_out": [
      -60,
      -40,
      0,
      -20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(reverse(input),5),4),27),41)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(add_n([0, 2],-2))),7),5)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(add_n(input,-2))),7),5)"
  },
  {
    "input": "input : list = [-2, -1, -4, -5, 5]\noutput : list = [-4, -5, 5]",
    "output": "generated_output : list = drop([-2, -1, -4, -5, 5],2)",
    "io_inp": [
      -2,
      -1,
      -4,
      -5,
      5
    ],
    "io_out": [
      -4,
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -3, -2, -2, 4, 4]\noutput : list = [3, -4, -3, -3, 3, 3]",
    "output": "generated_output : list = sub_n([4, -3, -2, -2, 4, 4],1)",
    "io_inp": [
      4,
      -3,
      -2,
      -2,
      4,
      4
    ],
    "io_out": [
      3,
      -4,
      -3,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -5, -5, -5]\noutput : list = [28, 28, 28, 20]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(sub_n([-3, -5, -5, -5],1),-4),12),4))",
    "io_inp": [
      -3,
      -5,
      -5,
      -5
    ],
    "io_out": [
      28,
      28,
      28,
      20
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(sub_n(input,1),-4),12),4))"
  },
  {
    "input": "input : list = [2, 2, 3, 2]\noutput : list = [35, 35, 40, 35]",
    "output": "generated_output : list = mul_n(sub_n([2, 2, 3, 2],-5),5)",
    "io_inp": [
      2,
      2,
      3,
      2
    ],
    "io_out": [
      35,
      35,
      40,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),5)"
  },
  {
    "input": "input : list = [3, 1, -3, -4, 3, -2]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(take(sub_n(take([3, 1, -3, -4, 3, -2],1),-3),23),-2)",
    "io_inp": [
      3,
      1,
      -3,
      -4,
      3,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(input,1),-3),23),-2)"
  },
  {
    "input": "input : list = [-3, -5, -2, 1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = add_n(add_n(drop(sub_n(reverse([-3, -5, -2, 1]),4),2),-1),4)",
    "io_inp": [
      -3,
      -5,
      -2,
      1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(sub_n(reverse(input),4),2),-1),4)"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [-5, 3, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(sort_des([-5, 3, 4])))),42)",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(sort_des(input)))),42)"
  },
  {
    "input": "input : list = [-1, 0, 0, 3]\noutput : list = [-1, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse([-1, 0, 0, 3]))",
    "io_inp": [
      -1,
      0,
      0,
      3
    ],
    "io_out": [
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, -4, -5, -3, 3, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(reverse(take(drop(add_n([-2, -4, -5, -3, 3, 3],-3),4),30)),55)",
    "io_inp": [
      -2,
      -4,
      -5,
      -3,
      3,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(drop(add_n(input,-3),4),30)),55)"
  },
  {
    "input": "input : list = [5, 5, -1, -3]\noutput : list = [650, -100, -350]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(drop([5, 5, -1, -3],1),5),1),-5),-5)",
    "io_inp": [
      5,
      5,
      -1,
      -3
    ],
    "io_out": [
      650,
      -100,
      -350
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(drop(input,1),5),1),-5),-5)"
  },
  {
    "input": "input : list = [-1, -4, -3]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(take([-1, -4, -3],1),3)),-1),-4)",
    "io_inp": [
      -1,
      -4,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(take(input,1),3)),-1),-4)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(reverse([-1, -2]),2))))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [2, 0, 2, 0, -4]\noutput : list = [-2, -2, -4, -4, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(sort_asc([2, 0, 2, 0, -4])),4),17))",
    "io_inp": [
      2,
      0,
      2,
      0,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(sort_asc(input)),4),17))"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse([4, 3, 0])))),-1)",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-5, 5, 2, 0, 3]\noutput : list = [11, 9, 12]",
    "output": "generated_output : list = sub_n(drop(sub_n([-5, 5, 2, 0, 3],-5),2),-4)",
    "io_inp": [
      -5,
      5,
      2,
      0,
      3
    ],
    "io_out": [
      11,
      9,
      12
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(input,-5),2),-4)"
  },
  {
    "input": "input : list = [1, 2, 3, -4]\noutput : list = [12, -8, -12, -16]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(add_n([1, 2, 3, -4],1),-4))))",
    "io_inp": [
      1,
      2,
      3,
      -4
    ],
    "io_out": [
      12,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(add_n(input,1),-4))))"
  },
  {
    "input": "input : list = [1, 0, -2, -1]\noutput : list = [-3, -5, -7, -9]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(sort_asc([1, 0, -2, -1]),-2)),-3),4)",
    "io_inp": [
      1,
      0,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(sort_asc(input),-2)),-3),4)"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take([-4, 3, 0],1))",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, -2, 5, 1, -1]\noutput : list = [-3, -2, -1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -2, 5, 1, -1]))",
    "io_inp": [
      -3,
      -2,
      5,
      1,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -5, 3, 3]\noutput : list = [6, -4, 4, 4]",
    "output": "generated_output : list = add_n(add_n([5, -5, 3, 3],-2),3)",
    "io_inp": [
      5,
      -5,
      3,
      3
    ],
    "io_out": [
      6,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-1, -2, 4, -4, 5, -2]\noutput : list = [2, 1, 1, -1]",
    "output": "generated_output : list = drop(add_n(add_n(reverse(sort_asc([-1, -2, 4, -4, 5, -2])),-1),4),2)",
    "io_inp": [
      -1,
      -2,
      4,
      -4,
      5,
      -2
    ],
    "io_out": [
      2,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(reverse(sort_asc(input)),-1),4),2)"
  },
  {
    "input": "input : list = [3, 3, -5, -1, -2]\noutput : list = [18]",
    "output": "generated_output : list = reverse(add_n(mul_n(drop(reverse([3, 3, -5, -1, -2]),4),5),3))",
    "io_inp": [
      3,
      3,
      -5,
      -1,
      -2
    ],
    "io_out": [
      18
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(drop(reverse(input),4),5),3))"
  },
  {
    "input": "input : list = [-5, -3, -1, 3]\noutput : list = [3, -1, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, -1, 3])",
    "io_inp": [
      -5,
      -3,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(add_n(sort_des([0, 1]),-2)),-2))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(add_n(sort_des(input),-2)),-2))"
  },
  {
    "input": "input : list = [1, -3, 0, 5, 3]\noutput : list = [9, 0, -15, -9]",
    "output": "generated_output : list = reverse(mul_n(reverse(drop([1, -3, 0, 5, 3],1)),-3))",
    "io_inp": [
      1,
      -3,
      0,
      5,
      3
    ],
    "io_out": [
      9,
      0,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(drop(input,1)),-3))"
  },
  {
    "input": "input : list = [1, 1, 1]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = sub_n([1, 1, 1],5)",
    "io_inp": [
      1,
      1,
      1
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, 1, -4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = take(take([4, 1, -4, 1],2),8)",
    "io_inp": [
      4,
      1,
      -4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = take(take(input,2),8)"
  },
  {
    "input": "input : list = [-5, -2, -5, 1, 1]\noutput : list = [6, 9, 6, 12, 12]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sub_n([-5, -2, -5, 1, 1],-5),25),1),1),-5)",
    "io_inp": [
      -5,
      -2,
      -5,
      1,
      1
    ],
    "io_out": [
      6,
      9,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sub_n(input,-5),25),1),1),-5)"
  },
  {
    "input": "input : list = [-3, 2, -2, -1]\noutput : list = [-3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc([-3, 2, -2, -1])",
    "io_inp": [
      -3,
      2,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [1, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sub_n(sort_des([1, 3, -3]),-4),-2)),-2)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sub_n(sort_des(input),-4),-2)),-2)"
  },
  {
    "input": "input : list = [0, 0, 5, 4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(drop([0, 0, 5, 4, 4],3)))),29)",
    "io_inp": [
      0,
      0,
      5,
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(drop(input,3)))),29)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [39, -25, 47]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(sub_n([-3, 5, -4],2),4),22),-2),1)",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      39,
      -25,
      47
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(sub_n(input,2),4),22),-2),1)"
  },
  {
    "input": "input : list = [2, 0, -3, 1]\noutput : list = [12, 8, 4, -8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([2, 0, -3, 1]),-1),4)",
    "io_inp": [
      2,
      0,
      -3,
      1
    ],
    "io_out": [
      12,
      8,
      4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),-1),4)"
  },
  {
    "input": "input : list = [4, 3, 2, -4, -5, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(take([4, 3, 2, -4, -5, 0],1),-3),-2),27))",
    "io_inp": [
      4,
      3,
      2,
      -4,
      -5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(take(input,1),-3),-2),27))"
  },
  {
    "input": "input : list = [2, -5, 1, -2, 2]\noutput : list = [-2, -2, -4, -10, -16]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(reverse([2, -5, 1, -2, 2]),1)),3),2)",
    "io_inp": [
      2,
      -5,
      1,
      -2,
      2
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(reverse(input),1)),3),2)"
  },
  {
    "input": "input : list = [0, -2, -2, -3, -3, 4]\noutput : list = [-8, -7, -7, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(take([0, -2, -2, -3, -3, 4],4),1),4)))",
    "io_inp": [
      0,
      -2,
      -2,
      -3,
      -3,
      4
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(take(input,4),1),4)))"
  },
  {
    "input": "input : list = [-1, 3, -1, -4, 0, -1]\noutput : list = [-6, -6, -18]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(sub_n([-1, 3, -1, -4, 0, -1],-3),3),-3)))",
    "io_inp": [
      -1,
      3,
      -1,
      -4,
      0,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(sub_n(input,-3),3),-3)))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [7, 10]",
    "output": "generated_output : list = reverse(sub_n([5, 2],-5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [1, 5, 0, 1, 5]\noutput : list = [0, 4, -1, 0, 4]",
    "output": "generated_output : list = sub_n([1, 5, 0, 1, 5],1)",
    "io_inp": [
      1,
      5,
      0,
      1,
      5
    ],
    "io_out": [
      0,
      4,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, -3, -1, 1]\noutput : list = [-3, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(reverse([2, -3, -1, 1])))))",
    "io_inp": [
      2,
      -3,
      -1,
      1
    ],
    "io_out": [
      -3,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [3, 2, -1, -2, 1, -4]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = reverse(drop(add_n(sort_asc(mul_n([3, 2, -1, -2, 1, -4],1)),1),3))",
    "io_inp": [
      3,
      2,
      -1,
      -2,
      1,
      -4
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(sort_asc(mul_n(input,1)),1),3))"
  },
  {
    "input": "input : list = [0, 0, -4, -4, -2]\noutput : list = [-2, -4, -4, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, -4, -4, -2])",
    "io_inp": [
      0,
      0,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, -4, 2, -3, 0]\noutput : list = [-8, -8, -7, -4, -2, -1]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(sort_des([3, -4, -4, 2, -3, 0])),18),44),4)",
    "io_inp": [
      3,
      -4,
      -4,
      2,
      -3,
      0
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(sort_des(input)),18),44),4)"
  },
  {
    "input": "input : list = [3, 3, 2, 5, -3, -4]\noutput : list = [6, 4, 4, 3, -2, -3]",
    "output": "generated_output : list = add_n(sort_des([3, 3, 2, 5, -3, -4]),1)",
    "io_inp": [
      3,
      3,
      2,
      5,
      -3,
      -4
    ],
    "io_out": [
      6,
      4,
      4,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-1, -1, -5, 3, -5]\noutput : list = [-5, -5, -1, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, -1, -5, 3, -5])",
    "io_inp": [
      -1,
      -1,
      -5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 2, -5, 2, 0]\noutput : list = [5, 11, -10, 11, 17]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(sub_n([4, 2, -5, 2, 0],5),5)),3),-5)",
    "io_inp": [
      4,
      2,
      -5,
      2,
      0
    ],
    "io_out": [
      5,
      11,
      -10,
      11,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(sub_n(input,5),5)),3),-5)"
  },
  {
    "input": "input : list = [1, 3, -2, 2]\noutput : list = [5, 15, -10, 10]",
    "output": "generated_output : list = mul_n([1, 3, -2, 2],5)",
    "io_inp": [
      1,
      3,
      -2,
      2
    ],
    "io_out": [
      5,
      15,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-21, -13]",
    "output": "generated_output : list = add_n(reverse(mul_n([-3, -5],4)),-1)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -21,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,4)),-1)"
  },
  {
    "input": "input : list = [4, 3, 0, -5, 1, -3]\noutput : list = [-18, -10, 2, 6, 14, 18]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(mul_n([4, 3, 0, -5, 1, -3],4))),-2),-4)",
    "io_inp": [
      4,
      3,
      0,
      -5,
      1,
      -3
    ],
    "io_out": [
      -18,
      -10,
      2,
      6,
      14,
      18
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(mul_n(input,4))),-2),-4)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(sub_n([-4, -2],-4)),10),-2),2)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(sub_n(input,-4)),10),-2),2)"
  },
  {
    "input": "input : list = [-1, 3, 0, 1, 3, 3]\noutput : list = [-7, -6, -5, -3, -3, -3]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(add_n([-1, 3, 0, 1, 3, 3],-4)),-2)),30)",
    "io_inp": [
      -1,
      3,
      0,
      1,
      3,
      3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(add_n(input,-4)),-2)),30)"
  },
  {
    "input": "input : list = [-3, 1, -4, -4, -5, -1]\noutput : list = [11, 15, -1]",
    "output": "generated_output : list = add_n(mul_n(drop([-3, 1, -4, -4, -5, -1],3),-4),-5)",
    "io_inp": [
      -3,
      1,
      -4,
      -4,
      -5,
      -1
    ],
    "io_out": [
      11,
      15,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,3),-4),-5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, -4, 4, -2, -2]\noutput : list = [3, -3, -3, -4, -5, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_asc([-3, -5, -4, 4, -2, -2]))),3),-2)",
    "io_inp": [
      -3,
      -5,
      -4,
      4,
      -2,
      -2
    ],
    "io_out": [
      3,
      -3,
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_asc(input))),3),-2)"
  },
  {
    "input": "input : list = [-1, -5, 2, 2]\noutput : list = [-1, 3, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(sub_n([-1, -5, 2, 2],-4),-2),-1),1))",
    "io_inp": [
      -1,
      -5,
      2,
      2
    ],
    "io_out": [
      -1,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(sub_n(input,-4),-2),-1),1))"
  },
  {
    "input": "input : list = [0, 5, -4, 1, 5, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(sort_asc([0, 5, -4, 1, 5, -5]),1)),-5))",
    "io_inp": [
      0,
      5,
      -4,
      1,
      5,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(sort_asc(input),1)),-5))"
  },
  {
    "input": "input : list = [-5, 5, 0]\noutput : list = [-1, -26, 24]",
    "output": "generated_output : list = add_n(mul_n(reverse([-5, 5, 0]),-5),-1)",
    "io_inp": [
      -5,
      5,
      0
    ],
    "io_out": [
      -1,
      -26,
      24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),-5),-1)"
  },
  {
    "input": "input : list = [2, 0, 1, -1, 2, -3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 0, 1, -1, 2, -3],1)",
    "io_inp": [
      2,
      0,
      1,
      -1,
      2,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [-6, -4, -8]",
    "output": "generated_output : list = reverse(reverse(mul_n([3, 2, 4],-2)))",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      -6,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-5, -5, -5, -2, -5]\noutput : list = [-5, -5, -5, -5, -2]",
    "output": "generated_output : list = sort_asc([-5, -5, -5, -2, -5])",
    "io_inp": [
      -5,
      -5,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, -3, -4, -5, 1]\noutput : list = [-3, -3, -3]",
    "output": "generated_output : list = reverse(reverse(take([-3, -3, -3, -4, -5, 1],3)))",
    "io_inp": [
      -3,
      -3,
      -3,
      -4,
      -5,
      1
    ],
    "io_out": [
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,3)))"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [-15, -10, 30]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_asc([4, -5, 3]),-5),5)))",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      -15,
      -10,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_asc(input),-5),5)))"
  },
  {
    "input": "input : list = [0, -1, -2, 1, -2]\noutput : list = [-3, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n([0, -1, -2, 1, -2],-2),17),3))",
    "io_inp": [
      0,
      -1,
      -2,
      1,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(input,-2),17),3))"
  },
  {
    "input": "input : list = [5, 3, -4, 4, 1, 1]\noutput : list = [2, 2, 8, -8, 6, 10]",
    "output": "generated_output : list = mul_n(reverse([5, 3, -4, 4, 1, 1]),2)",
    "io_inp": [
      5,
      3,
      -4,
      4,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      8,
      -8,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [3, -1, 5, 5, -2, 4]\noutput : list = [4, -2, 5, 5, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, 5, 5, -2, 4])",
    "io_inp": [
      3,
      -1,
      5,
      5,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      5,
      5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -1, 4, 4]\noutput : list = [8, 8, 28, 40]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_des([-4, -1, 4, 4]),-3)),3),-4)",
    "io_inp": [
      -4,
      -1,
      4,
      4
    ],
    "io_out": [
      8,
      8,
      28,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_des(input),-3)),3),-4)"
  },
  {
    "input": "input : list = [-2, -1, -5, -4, 2, -2]\noutput : list = [-10, -8, -4, -4, -2, 4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des([-2, -1, -5, -4, 2, -2]))),2)",
    "io_inp": [
      -2,
      -1,
      -5,
      -4,
      2,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(input))),2)"
  },
  {
    "input": "input : list = [-2, -5, 5, -2]\noutput : list = [-4, 3, -7, -4]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(add_n([-2, -5, 5, -2],2)),-3),41),1)",
    "io_inp": [
      -2,
      -5,
      5,
      -2
    ],
    "io_out": [
      -4,
      3,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(add_n(input,2)),-3),41),1)"
  },
  {
    "input": "input : list = [5, -1, -1, 5, -3, 5]\noutput : list = [100, -60, 100, -20, -20, 100]",
    "output": "generated_output : list = mul_n(mul_n(reverse([5, -1, -1, 5, -3, 5]),-4),-5)",
    "io_inp": [
      5,
      -1,
      -1,
      5,
      -3,
      5
    ],
    "io_out": [
      100,
      -60,
      100,
      -20,
      -20,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),-4),-5)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = reverse([1, 0, -1])",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0, -5, 3]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(add_n(drop(sub_n(sort_des([3, 0, -5, 3]),2),3),1))",
    "io_inp": [
      3,
      0,
      -5,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(sub_n(sort_des(input),2),3),1))"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = drop([4, -5, 2],1)",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 0, 5, 5, 3, -4]\noutput : list = [4, 4, 2, -1, -5, -6]",
    "output": "generated_output : list = add_n(take(sort_des([-5, 0, 5, 5, 3, -4]),27),-1)",
    "io_inp": [
      -5,
      0,
      5,
      5,
      3,
      -4
    ],
    "io_out": [
      4,
      4,
      2,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),27),-1)"
  },
  {
    "input": "input : list = [1, -1, -3, 2, -5]\noutput : list = [-1, -3, 2, -5]",
    "output": "generated_output : list = reverse(take(take(reverse(drop([1, -1, -3, 2, -5],1)),20),33))",
    "io_inp": [
      1,
      -1,
      -3,
      2,
      -5
    ],
    "io_out": [
      -1,
      -3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(drop(input,1)),20),33))"
  },
  {
    "input": "input : list = [0, 3, 3, 4, -4]\noutput : list = [-3, 0, 0, 1, -7]",
    "output": "generated_output : list = add_n([0, 3, 3, 4, -4],-3)",
    "io_inp": [
      0,
      3,
      3,
      4,
      -4
    ],
    "io_out": [
      -3,
      0,
      0,
      1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -1, 1, -5, -1]\noutput : list = [-10, -6, -4, -10, -6]",
    "output": "generated_output : list = sub_n([-5, -1, 1, -5, -1],5)",
    "io_inp": [
      -5,
      -1,
      1,
      -5,
      -1
    ],
    "io_out": [
      -10,
      -6,
      -4,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = sort_asc([1, 3, -1])",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, -1, 4, -5, 5]\noutput : list = [7, 6, 1, 1, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(add_n([-1, -5, -1, 4, -5, 5],2),2),2)))",
    "io_inp": [
      -1,
      -5,
      -1,
      4,
      -5,
      5
    ],
    "io_out": [
      7,
      6,
      1,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(add_n(input,2),2),2)))"
  },
  {
    "input": "input : list = [-1, -3, -4, 0, -3]\noutput : list = [-2, -4, -5, -1, -4]",
    "output": "generated_output : list = add_n([-1, -3, -4, 0, -3],-1)",
    "io_inp": [
      -1,
      -3,
      -4,
      0,
      -3
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(reverse([-4, 3]),-1),1)))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(reverse(input),-1),1)))"
  },
  {
    "input": "input : list = [-1, 1, -1, -4, 0]\noutput : list = [0, 2, 0, -3, 1]",
    "output": "generated_output : list = sub_n([-1, 1, -1, -4, 0],-1)",
    "io_inp": [
      -1,
      1,
      -1,
      -4,
      0
    ],
    "io_out": [
      0,
      2,
      0,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 1, -3, 4, -5]\noutput : list = [3, -6]",
    "output": "generated_output : list = sub_n(drop([-4, 1, -3, 4, -5],3),1)",
    "io_inp": [
      -4,
      1,
      -3,
      4,
      -5
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),1)"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [-37]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(take([-4, 5, -5],1),4),2)),-5)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      -37
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(take(input,1),4),2)),-5)"
  },
  {
    "input": "input : list = [1, 3, -5, -3]\noutput : list = [-3, -5, -9, -11]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse(add_n([1, 3, -5, -3],-5))),1))",
    "io_inp": [
      1,
      3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(add_n(input,-5))),1))"
  },
  {
    "input": "input : list = [-1, -4, 0, 1, 5, -5]\noutput : list = [-4, -16, 0, 4, 20, -20]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(reverse([-1, -4, 0, 1, 5, -5]),19),-2)),-2)",
    "io_inp": [
      -1,
      -4,
      0,
      1,
      5,
      -5
    ],
    "io_out": [
      -4,
      -16,
      0,
      4,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(reverse(input),19),-2)),-2)"
  },
  {
    "input": "input : list = [0, 4, -1, -1, -4]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(drop([0, 4, -1, -1, -4],3),1)",
    "io_inp": [
      0,
      4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),1)"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [-10, 2, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(add_n([1, 3, -3],-5),2),-2),-4))",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      -10,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(add_n(input,-5),2),-2),-4))"
  },
  {
    "input": "input : list = [1, -3, -1, -4]\noutput : list = [1, -3]",
    "output": "generated_output : list = reverse(reverse(take([1, -3, -1, -4],2)))",
    "io_inp": [
      1,
      -3,
      -1,
      -4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [-3, 0, -4, 0, -5, 4]\noutput : list = [6, -3, 2, -2, 2, -1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(add_n([-3, 0, -4, 0, -5, 4],-4),16),-4),-2))",
    "io_inp": [
      -3,
      0,
      -4,
      0,
      -5,
      4
    ],
    "io_out": [
      6,
      -3,
      2,
      -2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(add_n(input,-4),16),-4),-2))"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [6, -18]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(drop([5, -4, 4],1),1)),2),3)",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(drop(input,1),1)),2),3)"
  },
  {
    "input": "input : list = [-4, 3, 2, 5, 4, 4]\noutput : list = [5, 4, 4, 3, 2, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(sub_n([-4, 3, 2, 5, 4, 4],3),13)),2),-1)",
    "io_inp": [
      -4,
      3,
      2,
      5,
      4,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(sub_n(input,3),13)),2),-1)"
  },
  {
    "input": "input : list = [-5, 0, 2, 3, -1, 2]\noutput : list = [-4, -5, -5, -7, -8, -12]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(sort_des([-5, 0, 2, 3, -1, 2]),1),35),2),5)",
    "io_inp": [
      -5,
      0,
      2,
      3,
      -1,
      2
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -7,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(sort_des(input),1),35),2),5)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = drop([-2, 0, -2],1)",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [15, 6, 3]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([1, 2, 5],3)))",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      15,
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,3)))"
  },
  {
    "input": "input : list = [3, -2, -2, -5, -1]\noutput : list = [7, 4, 4, 3, -1]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(reverse([3, -2, -2, -5, -1])),2)),-1)",
    "io_inp": [
      3,
      -2,
      -2,
      -5,
      -1
    ],
    "io_out": [
      7,
      4,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(reverse(input)),2)),-1)"
  },
  {
    "input": "input : list = [-4, 5, 4, 1, 3, 1]\noutput : list = [-4, 1, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, 4, 1, 3, 1])",
    "io_inp": [
      -4,
      5,
      4,
      1,
      3,
      1
    ],
    "io_out": [
      -4,
      1,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [0, -8]",
    "output": "generated_output : list = take(add_n([5, -3],-5),11)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),11)"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [6, 6, 10]",
    "output": "generated_output : list = sort_asc(take(mul_n([-3, -3, -5],-2),19))",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,-2),19))"
  },
  {
    "input": "input : list = [-4, -4, 2, 3, 1, 1]\noutput : list = [4, 3, 2, 2, -3, -3]",
    "output": "generated_output : list = sort_des(add_n([-4, -4, 2, 3, 1, 1],1))",
    "io_inp": [
      -4,
      -4,
      2,
      3,
      1,
      1
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [-5, 4, -4, -5]\noutput : list = [-22, -22, -17, 23]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(add_n(mul_n([-5, 4, -4, -5],5),3))))",
    "io_inp": [
      -5,
      4,
      -4,
      -5
    ],
    "io_out": [
      -22,
      -22,
      -17,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(add_n(mul_n(input,5),3))))"
  },
  {
    "input": "input : list = [-1, 4, 3, -5, -2, 0]\noutput : list = [4, 3, 0, -1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(sort_des([-1, 4, 3, -5, -2, 0]),17))))",
    "io_inp": [
      -1,
      4,
      3,
      -5,
      -2,
      0
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(sort_des(input),17))))"
  },
  {
    "input": "input : list = [-1, 4, -2, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(drop(mul_n(reverse([-1, 4, -2, 2]),-2),3)))",
    "io_inp": [
      -1,
      4,
      -2,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(mul_n(reverse(input),-2),3)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [24, -18]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(mul_n([-2, 5],-3),14)),3),-2)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      24,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(mul_n(input,-3),14)),3),-2)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [2, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, 2])",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [36, -60, -12]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse(mul_n([-1, -5, 3],1)),2),-3),-2)",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      36,
      -60,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(mul_n(input,1)),2),-3),-2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [2, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(mul_n([-1, -5],2),4),3),-1))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(mul_n(input,2),4),3),-1))"
  },
  {
    "input": "input : list = [-5, -3, -4, -1, 0]\noutput : list = [0, -1, -4, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, -4, -1, 0])",
    "io_inp": [
      -5,
      -3,
      -4,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, -3]\noutput : list = [-6, -4, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(add_n([2, -1, -3],-1)),2)))",
    "io_inp": [
      2,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(add_n(input,-1)),2)))"
  },
  {
    "input": "input : list = [0, 4, 0, 3, 2]\noutput : list = [-15, -15, -21, -24, -27]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sub_n([0, 4, 0, 3, 2],-3),2)),-3))",
    "io_inp": [
      0,
      4,
      0,
      3,
      2
    ],
    "io_out": [
      -15,
      -15,
      -21,
      -24,
      -27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sub_n(input,-3),2)),-3))"
  },
  {
    "input": "input : list = [1, 4, -2, 4, -3]\noutput : list = [7, 8, 11, 14, 14]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(add_n([1, 4, -2, 4, -3],5),4)),-2),-3)",
    "io_inp": [
      1,
      4,
      -2,
      4,
      -3
    ],
    "io_out": [
      7,
      8,
      11,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(add_n(input,5),4)),-2),-3)"
  },
  {
    "input": "input : list = [1, 0, 5, 5, -3]\noutput : list = [13, 4, 1, -11, -11]",
    "output": "generated_output : list = take(sub_n(take(sort_des(mul_n([1, 0, 5, 5, -3],-3)),7),-4),16)",
    "io_inp": [
      1,
      0,
      5,
      5,
      -3
    ],
    "io_out": [
      13,
      4,
      1,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(mul_n(input,-3)),7),-4),16)"
  },
  {
    "input": "input : list = [-3, 1, -4, 5, -1]\noutput : list = [18, 6, 0, -6, -9]",
    "output": "generated_output : list = sort_des(add_n(reverse(mul_n(sub_n([-3, 1, -4, 5, -1],-2),3)),-3))",
    "io_inp": [
      -3,
      1,
      -4,
      5,
      -1
    ],
    "io_out": [
      18,
      6,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(mul_n(sub_n(input,-2),3)),-3))"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(sort_des([-3, -2, 4]))),38),2)",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(sort_des(input))),38),2)"
  },
  {
    "input": "input : list = [-2, -2, 2, -3, -4, -5]\noutput : list = [2, -2, -2]",
    "output": "generated_output : list = reverse(reverse(take(reverse(take([-2, -2, 2, -3, -4, -5],3)),22)))",
    "io_inp": [
      -2,
      -2,
      2,
      -3,
      -4,
      -5
    ],
    "io_out": [
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(take(input,3)),22)))"
  },
  {
    "input": "input : list = [-3, -3, 4]\noutput : list = [-1, -8, -8]",
    "output": "generated_output : list = add_n(add_n(sort_des([-3, -3, 4]),-2),-3)",
    "io_inp": [
      -3,
      -3,
      4
    ],
    "io_out": [
      -1,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-2),-3)"
  },
  {
    "input": "input : list = [-4, -4, 5, 3]\noutput : list = [-20]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(drop([-4, -4, 5, 3],1)),1),5))",
    "io_inp": [
      -4,
      -4,
      5,
      3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(drop(input,1)),1),5))"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(drop([5, 3, -1],1))",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [1, 2, 3, -5, 4]\noutput : list = [5, 4, 3, 2, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_asc([1, 2, 3, -5, 4])),3),-2))",
    "io_inp": [
      1,
      2,
      3,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_asc(input)),3),-2))"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [-7, -4, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(reverse([-2, -5, 1]),16))),2)",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(reverse(input),16))),2)"
  },
  {
    "input": "input : list = [-1, -3, -4, 3]\noutput : list = [-7, -6, -4, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n([-1, -3, -4, 3],3))))",
    "io_inp": [
      -1,
      -3,
      -4,
      3
    ],
    "io_out": [
      -7,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(input,3))))"
  },
  {
    "input": "input : list = [-4, 2, -5, -4]\noutput : list = [6, 0, 0, -1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(sort_des([-4, 2, -5, -4]))),-3),-1)",
    "io_inp": [
      -4,
      2,
      -5,
      -4
    ],
    "io_out": [
      6,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(sort_des(input))),-3),-1)"
  },
  {
    "input": "input : list = [5, 1, 4, 1, -4, 0]\noutput : list = [5, 4, 1, 1, 0, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([5, 1, 4, 1, -4, 0])))",
    "io_inp": [
      5,
      1,
      4,
      1,
      -4,
      0
    ],
    "io_out": [
      5,
      4,
      1,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [2, 1, 0, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = drop([2, 1, 0, -2, -2],3)",
    "io_inp": [
      2,
      1,
      0,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, 1, -3, 1, 4, -5]\noutput : list = [-9, 0, -3, -7, -3, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(reverse([3, 1, -3, 1, 4, -5]),1),-3),-2),4)",
    "io_inp": [
      3,
      1,
      -3,
      1,
      4,
      -5
    ],
    "io_out": [
      -9,
      0,
      -3,
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(reverse(input),1),-3),-2),4)"
  },
  {
    "input": "input : list = [0, -4, 5, -4]\noutput : list = [5, 0, -4, -4]",
    "output": "generated_output : list = sort_des([0, -4, 5, -4])",
    "io_inp": [
      0,
      -4,
      5,
      -4
    ],
    "io_out": [
      5,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-4, -3]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n([-2, -1],-2),1))),1)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n(input,-2),1))),1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-3, -6]",
    "output": "generated_output : list = add_n(mul_n([2, 5],-1),-1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),-1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(add_n(reverse(add_n(sort_des([4, 3]),-5)),5),1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(sort_des(input),-5)),5),1)"
  },
  {
    "input": "input : list = [2, 1, 1, 4]\noutput : list = [5, 5, 6, 8]",
    "output": "generated_output : list = take(add_n(reverse(take(sort_des([2, 1, 1, 4]),17)),4),31)",
    "io_inp": [
      2,
      1,
      1,
      4
    ],
    "io_out": [
      5,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(sort_des(input),17)),4),31)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(sort_asc([-2, 1]),7))),2)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(sort_asc(input),7))),2)"
  },
  {
    "input": "input : list = [-5, -5, 5, -5, 5, 2]\noutput : list = [-15, -15, -15, 13, 25, 25]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_asc([-5, -5, 5, -5, 5, 2])),4)),-5)",
    "io_inp": [
      -5,
      -5,
      5,
      -5,
      5,
      2
    ],
    "io_out": [
      -15,
      -15,
      -15,
      13,
      25,
      25
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_asc(input)),4)),-5)"
  },
  {
    "input": "input : list = [2, -2, -4, -1, -5]\noutput : list = [4, 1, 0, -2]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sort_des([2, -2, -4, -1, -5]),-5),4),-2),1)",
    "io_inp": [
      2,
      -2,
      -4,
      -1,
      -5
    ],
    "io_out": [
      4,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sort_des(input),-5),4),-2),1)"
  },
  {
    "input": "input : list = [2, -5, -1, -3, 2]\noutput : list = [3, 0, -2, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(drop([2, -5, -1, -3, 2],1))),1)",
    "io_inp": [
      2,
      -5,
      -1,
      -3,
      2
    ],
    "io_out": [
      3,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(drop(input,1))),1)"
  },
  {
    "input": "input : list = [5, 0, 5, 4]\noutput : list = [0, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, 0, 5, 4]))",
    "io_inp": [
      5,
      0,
      5,
      4
    ],
    "io_out": [
      0,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 3, 2]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(reverse([0, 3, 2]),5),3)))",
    "io_inp": [
      0,
      3,
      2
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(reverse(input),5),3)))"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [-4, -10, -16]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(add_n([2, -1, -4],5),1)),1),-2)",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(add_n(input,5),1)),1),-2)"
  },
  {
    "input": "input : list = [0, -5, -5, 4]\noutput : list = [40, 40, 20, 4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sub_n([0, -5, -5, 4],5)),-4)))",
    "io_inp": [
      0,
      -5,
      -5,
      4
    ],
    "io_out": [
      40,
      40,
      20,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sub_n(input,5)),-4)))"
  },
  {
    "input": "input : list = [-2, 3, -1, 5]\noutput : list = [5, 3, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-2, 3, -1, 5]))",
    "io_inp": [
      -2,
      3,
      -1,
      5
    ],
    "io_out": [
      5,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -5, 1, 0]\noutput : list = [-9, -10, -4, -5]",
    "output": "generated_output : list = take(take(sub_n(reverse(reverse([-4, -5, 1, 0])),5),17),8)",
    "io_inp": [
      -4,
      -5,
      1,
      0
    ],
    "io_out": [
      -9,
      -10,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(reverse(input)),5),17),8)"
  },
  {
    "input": "input : list = [-1, 0, 4, -3, -1, -2]\noutput : list = [-20, 0, 5, 5, 10, 15]",
    "output": "generated_output : list = sort_asc(take(mul_n([-1, 0, 4, -3, -1, -2],-5),27))",
    "io_inp": [
      -1,
      0,
      4,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -20,
      0,
      5,
      5,
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,-5),27))"
  },
  {
    "input": "input : list = [2, -2, 0, 3, 4, -2]\noutput : list = [3]",
    "output": "generated_output : list = take(take(add_n(sort_asc(take([2, -2, 0, 3, 4, -2],1)),1),9),14)",
    "io_inp": [
      2,
      -2,
      0,
      3,
      4,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(take(input,1)),1),9),14)"
  },
  {
    "input": "input : list = [2, -2, 3, 0]\noutput : list = [6, -2, 8, 2]",
    "output": "generated_output : list = mul_n(take(mul_n(take(sub_n([2, -2, 3, 0],-1),8),1),34),2)",
    "io_inp": [
      2,
      -2,
      3,
      0
    ],
    "io_out": [
      6,
      -2,
      8,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(sub_n(input,-1),8),1),34),2)"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [-5, -9, -12]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sub_n([2, -2, -5],3),4))))",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sub_n(input,3),4))))"
  },
  {
    "input": "input : list = [4, -5, -1, 4, 2]\noutput : list = [4, 2, -1, -5]",
    "output": "generated_output : list = sort_des(reverse(drop([4, -5, -1, 4, 2],1)))",
    "io_inp": [
      4,
      -5,
      -1,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [4, -3, 4, -2]\noutput : list = [4, 4, -2, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_des([4, -3, 4, -2]))),38))",
    "io_inp": [
      4,
      -3,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_des(input))),38))"
  },
  {
    "input": "input : list = [-3, -4, -2, -1, 0]\noutput : list = [-1, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([-3, -4, -2, -1, 0],3)))",
    "io_inp": [
      -3,
      -4,
      -2,
      -1,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,3)))"
  },
  {
    "input": "input : list = [-5, 5, 2, -3, -2]\noutput : list = [-5, -3, -2, 2, 5]",
    "output": "generated_output : list = take(reverse(sort_des(take(sort_asc([-5, 5, 2, -3, -2]),8))),50)",
    "io_inp": [
      -5,
      5,
      2,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(sort_asc(input),8))),50)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-5, 1, 0]",
    "output": "generated_output : list = add_n([-1, 5, 4],-4)",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -5,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3, 1, 5, 5, 2]\noutput : list = [-45, -45]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(take([3, 3, 1, 5, 5, 2],2),-3),-5),1),3)",
    "io_inp": [
      3,
      3,
      1,
      5,
      5,
      2
    ],
    "io_out": [
      -45,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(take(input,2),-3),-5),1),3)"
  },
  {
    "input": "input : list = [-2, -1, -4, -1]\noutput : list = [-4, -2, -1, -1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(reverse(reverse([-2, -1, -4, -1])))))",
    "io_inp": [
      -2,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, -2, 0, -1, 0]\noutput : list = [0, 0, -1, -1, -2]",
    "output": "generated_output : list = sort_des([-1, -2, 0, -1, 0])",
    "io_inp": [
      -1,
      -2,
      0,
      -1,
      0
    ],
    "io_out": [
      0,
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [10, 10]",
    "output": "generated_output : list = add_n(reverse(take(reverse(reverse([5, 5])),4)),5)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(reverse(input)),4)),5)"
  },
  {
    "input": "input : list = [-2, -1, -2, -2, 5]\noutput : list = [-1, -2]",
    "output": "generated_output : list = mul_n(sort_des(take([-2, -1, -2, -2, 5],2)),1)",
    "io_inp": [
      -2,
      -1,
      -2,
      -2,
      5
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,2)),1)"
  },
  {
    "input": "input : list = [5, -2, 2, -2, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(take([5, -2, 2, -2, 2],1)))))",
    "io_inp": [
      5,
      -2,
      2,
      -2,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-8, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n([2, -1],5),-4),4))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(input,5),-4),4))"
  },
  {
    "input": "input : list = [5, 5, 2, 4, -2, 4]\noutput : list = [3, 3, 2, 2, 0, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc([5, 5, 2, 4, -2, 4])),2))",
    "io_inp": [
      5,
      5,
      2,
      4,
      -2,
      4
    ],
    "io_out": [
      3,
      3,
      2,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(input)),2))"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = drop([4, 5, 3],1)",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -2, 5]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc([3, -2, 5]),-1),-4)),36)",
    "io_inp": [
      3,
      -2,
      5
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc(input),-1),-4)),36)"
  },
  {
    "input": "input : list = [2, 5, -4, 5, 2, -5]\noutput : list = [-5, -2, -11, -2, -5, -12]",
    "output": "generated_output : list = add_n(sub_n([2, 5, -4, 5, 2, -5],5),-2)",
    "io_inp": [
      2,
      5,
      -4,
      5,
      2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -11,
      -2,
      -5,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-2)"
  },
  {
    "input": "input : list = [-1, -1, 1, 1]\noutput : list = [3, 3, -3, -3]",
    "output": "generated_output : list = reverse(mul_n(reverse([-1, -1, 1, 1]),-3))",
    "io_inp": [
      -1,
      -1,
      1,
      1
    ],
    "io_out": [
      3,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [-5, -4, 0]\noutput : list = [0, 5, 25]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sub_n([-5, -4, 0],-5))),1),5)",
    "io_inp": [
      -5,
      -4,
      0
    ],
    "io_out": [
      0,
      5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sub_n(input,-5))),1),5)"
  },
  {
    "input": "input : list = [-4, -5, -1, 3, -2]\noutput : list = [-5, -4, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(mul_n([-4, -5, -1, 3, -2],1))",
    "io_inp": [
      -4,
      -5,
      -1,
      3,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [0, 0, -1, 4, -2]\noutput : list = [8, 4, -16]",
    "output": "generated_output : list = mul_n(sort_asc(drop([0, 0, -1, 4, -2],2)),-4)",
    "io_inp": [
      0,
      0,
      -1,
      4,
      -2
    ],
    "io_out": [
      8,
      4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,2)),-4)"
  },
  {
    "input": "input : list = [-2, 4, -4]\noutput : list = [0, 2, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sort_des([-2, 4, -4]),-4))))",
    "io_inp": [
      -2,
      4,
      -4
    ],
    "io_out": [
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [1, -1, -2, 5, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(take(take(sort_asc([1, -1, -2, 5, 0]),2),12))",
    "io_inp": [
      1,
      -1,
      -2,
      5,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(input),2),12))"
  },
  {
    "input": "input : list = [-1, 5, -2, 5]\noutput : list = [-3, 3, -4, 3]",
    "output": "generated_output : list = add_n([-1, 5, -2, 5],-2)",
    "io_inp": [
      -1,
      5,
      -2,
      5
    ],
    "io_out": [
      -3,
      3,
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -5, 2, 5, 1, -5]\noutput : list = [-144, 144, 336, 192, -144, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse(sub_n([-2, -5, 2, 5, 1, -5],-2)),-4),3),-4)",
    "io_inp": [
      -2,
      -5,
      2,
      5,
      1,
      -5
    ],
    "io_out": [
      -144,
      144,
      336,
      192,
      -144,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(sub_n(input,-2)),-4),3),-4)"
  },
  {
    "input": "input : list = [5, 5, -2, -1, 4]\noutput : list = [5, -2, -1, 4]",
    "output": "generated_output : list = drop([5, 5, -2, -1, 4],1)",
    "io_inp": [
      5,
      5,
      -2,
      -1,
      4
    ],
    "io_out": [
      5,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-1, 4]",
    "output": "generated_output : list = mul_n(sub_n(add_n([-3, 2],1),-1),1)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,1),-1),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [9]",
    "output": "generated_output : list = add_n(mul_n(reverse(drop(sub_n([4, -3],4),1)),-1),2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(drop(sub_n(input,4),1)),-1),2)"
  },
  {
    "input": "input : list = [-5, -3, -5, -2, 2]\noutput : list = [2, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -3, -5, -2, 2])",
    "io_inp": [
      -5,
      -3,
      -5,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-4, -2, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des([4, -2, -4]),13))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),13))"
  },
  {
    "input": "input : list = [0, -1, 4, -4, 1, -2]\noutput : list = [-2, 1, -4, 4, -1, 0]",
    "output": "generated_output : list = reverse([0, -1, 4, -4, 1, -2])",
    "io_inp": [
      0,
      -1,
      4,
      -4,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      -4,
      4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3, -1, 5]\noutput : list = [-5, -5, -3, 3]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(reverse([-3, -3, -1, 5])),2)))",
    "io_inp": [
      -3,
      -3,
      -1,
      5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(reverse(input)),2)))"
  },
  {
    "input": "input : list = [-4, 0, 4, 2]\noutput : list = [16, 6, -4, -24]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des([-4, 0, 4, 2]),1),5),4)",
    "io_inp": [
      -4,
      0,
      4,
      2
    ],
    "io_out": [
      16,
      6,
      -4,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(input),1),5),4)"
  },
  {
    "input": "input : list = [-2, -5, -3, 2, 3]\noutput : list = [2, 1, -3, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([-2, -5, -3, 2, 3]),1))",
    "io_inp": [
      -2,
      -5,
      -3,
      2,
      3
    ],
    "io_out": [
      2,
      1,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [3, 0, -1, 0, -3, 3]\noutput : list = [30, 20, 15, 15, 0, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(add_n(add_n([3, 0, -1, 0, -3, 3],1),-4)),-5))",
    "io_inp": [
      3,
      0,
      -1,
      0,
      -3,
      3
    ],
    "io_out": [
      30,
      20,
      15,
      15,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(add_n(add_n(input,1),-4)),-5))"
  },
  {
    "input": "input : list = [-3, 3, -5, -2, -5]\noutput : list = [30]",
    "output": "generated_output : list = take(mul_n(reverse(take(mul_n([-3, 3, -5, -2, -5],-5),1)),2),21)",
    "io_inp": [
      -3,
      3,
      -5,
      -2,
      -5
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(mul_n(input,-5),1)),2),21)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [4, -16]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([4, -1],2),-2))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      4,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,2),-2))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = take(sort_des([3, 5]),4)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),4)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [4, 20, 28]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_asc([-5, -3, 1]),17),2),-4))",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      4,
      20,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_asc(input),17),2),-4))"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [-20, 15, 20]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(mul_n([-3, -4, 4],-5),-3),3)))",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      -20,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(mul_n(input,-5),-3),3)))"
  },
  {
    "input": "input : list = [5, -4, -1, -2, 5, 1]\noutput : list = [0]",
    "output": "generated_output : list = take(sub_n([5, -4, -1, -2, 5, 1],5),1)",
    "io_inp": [
      5,
      -4,
      -1,
      -2,
      5,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),1)"
  },
  {
    "input": "input : list = [2, -5, 1, -4, -3, -3]\noutput : list = [-14, -13, -12, -12, -8, -7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(add_n([2, -5, 1, -4, -3, -3],-4),16)),-3),2)",
    "io_inp": [
      2,
      -5,
      1,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -14,
      -13,
      -12,
      -12,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(add_n(input,-4),16)),-3),2)"
  },
  {
    "input": "input : list = [5, 5, 4]\noutput : list = [-2, -1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(reverse([5, 5, 4])),-1),5))",
    "io_inp": [
      5,
      5,
      4
    ],
    "io_out": [
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(reverse(input)),-1),5))"
  },
  {
    "input": "input : list = [2, 4, -3, 4]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(take([2, 4, -3, 4],1),1),3),-4))",
    "io_inp": [
      2,
      4,
      -3,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(take(input,1),1),3),-4))"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(drop(reverse([-4, 1, -2]),2)),3))",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(drop(reverse(input),2)),3))"
  },
  {
    "input": "input : list = [1, 1, 1]\noutput : list = [4, 4, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(sort_des([1, 1, 1]),5),1),5),1)",
    "io_inp": [
      1,
      1,
      1
    ],
    "io_out": [
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(sort_des(input),5),1),5),1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = add_n(sub_n([-5, 1],3),3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [-4, -3, 3, 4, -1]\noutput : list = [-14, -13]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(take([-4, -3, 3, 4, -1],2),-5),3)),-2)",
    "io_inp": [
      -4,
      -3,
      3,
      4,
      -1
    ],
    "io_out": [
      -14,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(take(input,2),-5),3)),-2)"
  },
  {
    "input": "input : list = [-3, 3, 4, 3]\noutput : list = [-3, 3, 3, 4]",
    "output": "generated_output : list = sort_asc([-3, 3, 4, 3])",
    "io_inp": [
      -3,
      3,
      4,
      3
    ],
    "io_out": [
      -3,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, 5, -5, 2]\noutput : list = [9, 9, 6, 0, -1]",
    "output": "generated_output : list = sort_des(add_n([-4, 5, 5, -5, 2],4))",
    "io_inp": [
      -4,
      5,
      5,
      -5,
      2
    ],
    "io_out": [
      9,
      9,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,4))"
  },
  {
    "input": "input : list = [-1, -1, 2, -2, 1, -2]\noutput : list = [6, 3, 3, -6]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(take([-1, -1, 2, -2, 1, -2],4)),-3)))",
    "io_inp": [
      -1,
      -1,
      2,
      -2,
      1,
      -2
    ],
    "io_out": [
      6,
      3,
      3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(take(input,4)),-3)))"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [8, -2, 2]",
    "output": "generated_output : list = mul_n([-4, 1, -1],-2)",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      8,
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -5, 3, 4, -5]\noutput : list = [4, 3, -3, -5, -5]",
    "output": "generated_output : list = sort_des([-3, -5, 3, 4, -5])",
    "io_inp": [
      -3,
      -5,
      3,
      4,
      -5
    ],
    "io_out": [
      4,
      3,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, -3, 5]\noutput : list = [-7, -2, -2, 1]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(sort_des([2, 2, -3, 5]),-4),4),1))",
    "io_inp": [
      2,
      2,
      -3,
      5
    ],
    "io_out": [
      -7,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(sort_des(input),-4),4),1))"
  },
  {
    "input": "input : list = [0, -4, -2, -5, -5]\noutput : list = [10, 10]",
    "output": "generated_output : list = mul_n(drop([0, -4, -2, -5, -5],3),-2)",
    "io_inp": [
      0,
      -4,
      -2,
      -5,
      -5
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-2)"
  },
  {
    "input": "input : list = [-4, 1, -4, -2, 4]\noutput : list = [4, 1, -2, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des([-4, 1, -4, -2, 4]))))",
    "io_inp": [
      -4,
      1,
      -4,
      -2,
      4
    ],
    "io_out": [
      4,
      1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [1, 0, -5, -1, -3]\noutput : list = [3, 0, -15, -3, -9]",
    "output": "generated_output : list = reverse(mul_n(take(reverse([1, 0, -5, -1, -3]),14),3))",
    "io_inp": [
      1,
      0,
      -5,
      -1,
      -3
    ],
    "io_out": [
      3,
      0,
      -15,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(input),14),3))"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(drop([-2, -1, -2],1),1)",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [1, -3, 1, -4, -1, 0]\noutput : list = [1, -3, 1, -4]",
    "output": "generated_output : list = take([1, -3, 1, -4, -1, 0],4)",
    "io_inp": [
      1,
      -3,
      1,
      -4,
      -1,
      0
    ],
    "io_out": [
      1,
      -3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-4, 4, 4, 2]\noutput : list = [4, 4, 2, -4]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(sort_des([-4, 4, 4, 2])))),11)",
    "io_inp": [
      -4,
      4,
      4,
      2
    ],
    "io_out": [
      4,
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(sort_des(input)))),11)"
  },
  {
    "input": "input : list = [0, 5, -1, -5, -3, 2]\noutput : list = [5, 3, 1, 0, -2, -5]",
    "output": "generated_output : list = sort_des(mul_n([0, 5, -1, -5, -3, 2],-1))",
    "io_inp": [
      0,
      5,
      -1,
      -5,
      -3,
      2
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [0, -2, -2, -5, 5]\noutput : list = [3, 1, 1, -2, 8]",
    "output": "generated_output : list = sub_n([0, -2, -2, -5, 5],-3)",
    "io_inp": [
      0,
      -2,
      -2,
      -5,
      5
    ],
    "io_out": [
      3,
      1,
      1,
      -2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -2, -4, 4, 3, 0]\noutput : list = [-4, -2, -1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(sort_asc([-1, -2, -4, 4, 3, 0]))),24))",
    "io_inp": [
      -1,
      -2,
      -4,
      4,
      3,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(sort_asc(input))),24))"
  },
  {
    "input": "input : list = [4, 2, -3, 1, 0, 3]\noutput : list = [-3, 0, 1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 2, -3, 1, 0, 3])",
    "io_inp": [
      4,
      2,
      -3,
      1,
      0,
      3
    ],
    "io_out": [
      -3,
      0,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [36]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(drop(mul_n([1, -1, -3],3),2))),-4)",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(drop(mul_n(input,3),2))),-4)"
  },
  {
    "input": "input : list = [-5, -2, 3, 5, -1, -4]\noutput : list = [-6, -3, 2, 4, -2, -5]",
    "output": "generated_output : list = sub_n([-5, -2, 3, 5, -1, -4],1)",
    "io_inp": [
      -5,
      -2,
      3,
      5,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -3,
      2,
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, 1, 1, 4, -1, 1]\noutput : list = [45, 13, -3, -3, -3, -27]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(mul_n([-5, 1, 1, 4, -1, 1],-4),2)),5))",
    "io_inp": [
      -5,
      1,
      1,
      4,
      -1,
      1
    ],
    "io_out": [
      45,
      13,
      -3,
      -3,
      -3,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(mul_n(input,-4),2)),5))"
  },
  {
    "input": "input : list = [4, 3, -4, -1, 1, -1]\noutput : list = [3, 2, 0, -2, -2, -5]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(sort_des([4, 3, -4, -1, 1, -1]))),-1))",
    "io_inp": [
      4,
      3,
      -4,
      -1,
      1,
      -1
    ],
    "io_out": [
      3,
      2,
      0,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [5, 1, -5, -2]\noutput : list = [-30, -6, 12, 30]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(sort_asc([5, 1, -5, -2]),-3)),19),2)",
    "io_inp": [
      5,
      1,
      -5,
      -2
    ],
    "io_out": [
      -30,
      -6,
      12,
      30
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(sort_asc(input),-3)),19),2)"
  },
  {
    "input": "input : list = [-1, 1, 2, 2, -3]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take([-1, 1, 2, 2, -3],2)",
    "io_inp": [
      -1,
      1,
      2,
      2,
      -3
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [6, 4, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_asc([5, 3, -2]),4)),1),-2)",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_asc(input),4)),1),-2)"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [-4, 12, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(reverse([3, -5, 3]),-3),2),31))",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      -4,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(reverse(input),-3),2),31))"
  },
  {
    "input": "input : list = [0, 0, -5]\noutput : list = [-7, -2, -2]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(sort_des([0, 0, -5]),12),-2)))",
    "io_inp": [
      0,
      0,
      -5
    ],
    "io_out": [
      -7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(sort_des(input),12),-2)))"
  },
  {
    "input": "input : list = [1, 1, 0, 0, -5]\noutput : list = [6, 6, 5]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(take([1, 1, 0, 0, -5],3),-5)),22))",
    "io_inp": [
      1,
      1,
      0,
      0,
      -5
    ],
    "io_out": [
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(take(input,3),-5)),22))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse([3, -4])",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3, 0, -3, -3, 1]\noutput : list = [15, 15, 5, 0, -5, -15]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_asc([-1, 3, 0, -3, -3, 1])))),-5)",
    "io_inp": [
      -1,
      3,
      0,
      -3,
      -3,
      1
    ],
    "io_out": [
      15,
      15,
      5,
      0,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-15, 21]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(mul_n([-3, 0],4)),19),5),-3)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -15,
      21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(mul_n(input,4)),19),5),-3)"
  },
  {
    "input": "input : list = [-2, -2, 0, -5, -1, 2]\noutput : list = [-10, -7, -7, -6, -5, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(sort_des([-2, -2, 0, -5, -1, 2]),-5))))",
    "io_inp": [
      -2,
      -2,
      0,
      -5,
      -1,
      2
    ],
    "io_out": [
      -10,
      -7,
      -7,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [5, 4, 3, -1, 4]\noutput : list = [10, 9, 8, 4, 9]",
    "output": "generated_output : list = sub_n([5, 4, 3, -1, 4],-5)",
    "io_inp": [
      5,
      4,
      3,
      -1,
      4
    ],
    "io_out": [
      10,
      9,
      8,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [-12, -8, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(sort_asc([-3, -2, 0]),4),8)))",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      -12,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(sort_asc(input),4),8)))"
  },
  {
    "input": "input : list = [2, 0, -2, 2, 3, 2]\noutput : list = [5]",
    "output": "generated_output : list = add_n(drop(mul_n(add_n(add_n([2, 0, -2, 2, 3, 2],-2),-1),-3),5),2)",
    "io_inp": [
      2,
      0,
      -2,
      2,
      3,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(add_n(add_n(input,-2),-1),-3),5),2)"
  },
  {
    "input": "input : list = [1, -3, 0, -1]\noutput : list = [15, 5, 0, -5]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(mul_n([1, -3, 0, -1],-5),8),1)))",
    "io_inp": [
      1,
      -3,
      0,
      -1
    ],
    "io_out": [
      15,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(mul_n(input,-5),8),1)))"
  },
  {
    "input": "input : list = [1, 1, 3, 3]\noutput : list = [5, 5, 7, 7]",
    "output": "generated_output : list = add_n([1, 1, 3, 3],4)",
    "io_inp": [
      1,
      1,
      3,
      3
    ],
    "io_out": [
      5,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [5, 1]",
    "output": "generated_output : list = take(take(sort_des(reverse(drop([3, 1, 5],1))),34),25)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(drop(input,1))),34),25)"
  },
  {
    "input": "input : list = [-2, 0, -1, -5, 4, -3]\noutput : list = [-19, -13, -10, -7, -4, 8]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(mul_n([-2, 0, -1, -5, 4, -3],3),10)),1),4)",
    "io_inp": [
      -2,
      0,
      -1,
      -5,
      4,
      -3
    ],
    "io_out": [
      -19,
      -13,
      -10,
      -7,
      -4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(mul_n(input,3),10)),1),4)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(add_n([3, 0, -2],4),-3))),21)",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(add_n(input,4),-3))),21)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sub_n([0, 3],2)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -5, 1, 2, -4]\noutput : list = [3, 2, 1, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([3, -5, 1, 2, -4]))",
    "io_inp": [
      3,
      -5,
      1,
      2,
      -4
    ],
    "io_out": [
      3,
      2,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, 4, -4, -1, 1, 4]\noutput : list = [4, 1, 1, -1, -4]",
    "output": "generated_output : list = drop(sort_des([1, 4, -4, -1, 1, 4]),1)",
    "io_inp": [
      1,
      4,
      -4,
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),1)"
  },
  {
    "input": "input : list = [-1, 1, 2, -5, 2, 3]\noutput : list = [3, 5, 6, -1, 6, 7]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n([-1, 1, 2, -5, 2, 3],-5))),-1)",
    "io_inp": [
      -1,
      1,
      2,
      -5,
      2,
      3
    ],
    "io_out": [
      3,
      5,
      6,
      -1,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(input,-5))),-1)"
  },
  {
    "input": "input : list = [2, -3, -1, -5, 2]\noutput : list = [1, -13, -5, -9, 1]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(mul_n([2, -3, -1, -5, 2],2),4)),1),2)",
    "io_inp": [
      2,
      -3,
      -1,
      -5,
      2
    ],
    "io_out": [
      1,
      -13,
      -5,
      -9,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(mul_n(input,2),4)),1),2)"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [-3, -4, 0]",
    "output": "generated_output : list = reverse([0, -4, -3])",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 3, 5, -3]\noutput : list = [7, 9, 1]",
    "output": "generated_output : list = add_n(drop([-4, 3, 5, -3],1),4)",
    "io_inp": [
      -4,
      3,
      5,
      -3
    ],
    "io_out": [
      7,
      9,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [-2, 4, 5, 2, -1, -5]\noutput : list = [-5, -2, -1, 2, 4, 5]",
    "output": "generated_output : list = take(mul_n(sort_asc([-2, 4, 5, 2, -1, -5]),1),17)",
    "io_inp": [
      -2,
      4,
      5,
      2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),1),17)"
  },
  {
    "input": "input : list = [5, -5, 4]\noutput : list = [24, -6, 21]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n([5, -5, 4],1),-3),1),3),3)",
    "io_inp": [
      5,
      -5,
      4
    ],
    "io_out": [
      24,
      -6,
      21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n(input,1),-3),1),3),3)"
  },
  {
    "input": "input : list = [5, 0, -5, 4]\noutput : list = [16, 12, -4, -24]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_des([5, 0, -5, 4]),1)),2),4)",
    "io_inp": [
      5,
      0,
      -5,
      4
    ],
    "io_out": [
      16,
      12,
      -4,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_des(input),1)),2),4)"
  },
  {
    "input": "input : list = [-5, 2, -3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = drop([-5, 2, -3, 2],2)",
    "io_inp": [
      -5,
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 4, -4, -5, -4, 4]\noutput : list = [14]",
    "output": "generated_output : list = add_n(sort_asc(drop(sort_asc(add_n([-3, 4, -4, -5, -4, 4],5)),5)),5)",
    "io_inp": [
      -3,
      4,
      -4,
      -5,
      -4,
      4
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(sort_asc(add_n(input,5)),5)),5)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [17, -3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_asc([2, -3]),-4))),5)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      17,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_asc(input),-4))),5)"
  },
  {
    "input": "input : list = [1, -2, -2, 2, -4, 2]\noutput : list = [2, -1, -1, 3, -3, 3]",
    "output": "generated_output : list = take(sub_n([1, -2, -2, 2, -4, 2],-1),17)",
    "io_inp": [
      1,
      -2,
      -2,
      2,
      -4,
      2
    ],
    "io_out": [
      2,
      -1,
      -1,
      3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),17)"
  },
  {
    "input": "input : list = [-4, -5, 0, -2]\noutput : list = [22, 18, 10, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(reverse([-4, -5, 0, -2]),-4))),2)",
    "io_inp": [
      -4,
      -5,
      0,
      -2
    ],
    "io_out": [
      22,
      18,
      10,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(reverse(input),-4))),2)"
  },
  {
    "input": "input : list = [2, 5, -5, 4, -1, -1]\noutput : list = [-3, -6, 4, -5, 0, 0]",
    "output": "generated_output : list = sub_n(mul_n([2, 5, -5, 4, -1, -1],-1),1)",
    "io_inp": [
      2,
      5,
      -5,
      4,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -6,
      4,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),1)"
  },
  {
    "input": "input : list = [2, -2, 0, 3, -2, 2]\noutput : list = [-14, -14, -20, -26, -26, -29]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(add_n([2, -2, 0, 3, -2, 2],5),-3),5)))",
    "io_inp": [
      2,
      -2,
      0,
      3,
      -2,
      2
    ],
    "io_out": [
      -14,
      -14,
      -20,
      -26,
      -26,
      -29
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(add_n(input,5),-3),5)))"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [25, -15, 20]",
    "output": "generated_output : list = take(take(reverse(sub_n(mul_n([-3, 4, -4],-5),-5)),15),11)",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      25,
      -15,
      20
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(mul_n(input,-5),-5)),15),11)"
  },
  {
    "input": "input : list = [3, 0, -5, 2]\noutput : list = [-28, -3, 7]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(drop([3, 0, -5, 2],1))),5),-3)",
    "io_inp": [
      3,
      0,
      -5,
      2
    ],
    "io_out": [
      -28,
      -3,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(drop(input,1))),5),-3)"
  },
  {
    "input": "input : list = [4, 4, 2]\noutput : list = [0, 0, 10]",
    "output": "generated_output : list = add_n(mul_n(sub_n(reverse(reverse([4, 4, 2])),3),-5),5)",
    "io_inp": [
      4,
      4,
      2
    ],
    "io_out": [
      0,
      0,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(reverse(reverse(input)),3),-5),5)"
  },
  {
    "input": "input : list = [5, 0, 4, 3, -2]\noutput : list = [-7, -5, -2, -1, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(add_n([5, 0, 4, 3, -2],-5),22))),1)",
    "io_inp": [
      5,
      0,
      4,
      3,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(add_n(input,-5),22))),1)"
  },
  {
    "input": "input : list = [3, -4, 1, 3, -1, -3]\noutput : list = [13, 48, 23, 13, 33, 43]",
    "output": "generated_output : list = sub_n(mul_n(add_n([3, -4, 1, 3, -1, -3],-5),-5),-3)",
    "io_inp": [
      3,
      -4,
      1,
      3,
      -1,
      -3
    ],
    "io_out": [
      13,
      48,
      23,
      13,
      33,
      43
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,-5),-5),-3)"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [4, 13, 10]",
    "output": "generated_output : list = add_n(take(add_n(add_n(sub_n([-5, 4, 1],1),3),2),22),5)",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      4,
      13,
      10
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(sub_n(input,1),3),2),22),5)"
  },
  {
    "input": "input : list = [-1, 5, 4, 0, 5, 5]\noutput : list = [6, 6, 6, 5, 1, 0]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des([-1, 5, 4, 0, 5, 5]),3),2),41)",
    "io_inp": [
      -1,
      5,
      4,
      0,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      6,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(input),3),2),41)"
  },
  {
    "input": "input : list = [-3, 0, 1]\noutput : list = [2, 5, 6]",
    "output": "generated_output : list = sub_n([-3, 0, 1],-5)",
    "io_inp": [
      -3,
      0,
      1
    ],
    "io_out": [
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [2, 2]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(sort_asc([4, 4]))),25),2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(sort_asc(input))),25),2)"
  },
  {
    "input": "input : list = [-1, 3, -2, 5, 5]\noutput : list = [-8, -16, -48, -64, -64]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sub_n([-1, 3, -2, 5, 5],-3),2))),-4)",
    "io_inp": [
      -1,
      3,
      -2,
      5,
      5
    ],
    "io_out": [
      -8,
      -16,
      -48,
      -64,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sub_n(input,-3),2))),-4)"
  },
  {
    "input": "input : list = [-2, 3, 4]\noutput : list = [7, 6, 1]",
    "output": "generated_output : list = add_n(sort_des([-2, 3, 4]),3)",
    "io_inp": [
      -2,
      3,
      4
    ],
    "io_out": [
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [1, 5, 2, 5, -5]\noutput : list = [2, 5, -5]",
    "output": "generated_output : list = drop([1, 5, 2, 5, -5],2)",
    "io_inp": [
      1,
      5,
      2,
      5,
      -5
    ],
    "io_out": [
      2,
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = drop([0, 4, -2],1)",
    "io_inp": [
      0,
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -4, -3, -4, -1, 0]\noutput : list = [-4, 8]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take([2, -4, -3, -4, -1, 0],2),-2),1),1)",
    "io_inp": [
      2,
      -4,
      -3,
      -4,
      -1,
      0
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(input,2),-2),1),1)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = reverse(take(take(take(drop([-3, 4, -3],1),10),11),10))",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(drop(input,1),10),11),10))"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = sub_n([-2, -4, -4],-4)",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [1, 8, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sub_n([-5, 2, 4],-5)),-1)))",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      1,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sub_n(input,-5)),-1)))"
  },
  {
    "input": "input : list = [3, 0, -1, 0, 1]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop([3, 0, -1, 0, 1],2)))),-4)",
    "io_inp": [
      3,
      0,
      -1,
      0,
      1
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop(input,2)))),-4)"
  },
  {
    "input": "input : list = [-1, 0, 3, 4]\noutput : list = [4, 3, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse([-1, 0, 3, 4]),10)))",
    "io_inp": [
      -1,
      0,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(input),10)))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [1, -15]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(mul_n([1, -3],4),1),10),-3),5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      1,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(mul_n(input,4),1),10),-3),5)"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(drop([4, -2, -5],1)),13)))",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(drop(input,1)),13)))"
  },
  {
    "input": "input : list = [1, 3, -2, -2]\noutput : list = [4, 2, -1, -1]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sub_n([1, 3, -2, -2],4)),15)),5)",
    "io_inp": [
      1,
      3,
      -2,
      -2
    ],
    "io_out": [
      4,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sub_n(input,4)),15)),5)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [25, -25]",
    "output": "generated_output : list = mul_n(sort_asc([5, -5]),-5)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-2, -1, 3, 2]\noutput : list = [-7, -6, -3, -2]",
    "output": "generated_output : list = sort_asc(take(sub_n([-2, -1, 3, 2],5),16))",
    "io_inp": [
      -2,
      -1,
      3,
      2
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,5),16))"
  },
  {
    "input": "input : list = [5, 5, 4]\noutput : list = [4, 5, 5]",
    "output": "generated_output : list = reverse(reverse(reverse([5, 5, 4])))",
    "io_inp": [
      5,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-1, -5, -2, -5, 3]\noutput : list = [24, 24, 15, 12, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sub_n([-1, -5, -2, -5, 3],2),1)),2),-3)",
    "io_inp": [
      -1,
      -5,
      -2,
      -5,
      3
    ],
    "io_out": [
      24,
      24,
      15,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sub_n(input,2),1)),2),-3)"
  },
  {
    "input": "input : list = [-5, -3, -2, 2]\noutput : list = [0, -4, -5, -7]",
    "output": "generated_output : list = sub_n(take(sort_des([-5, -3, -2, 2]),16),2)",
    "io_inp": [
      -5,
      -3,
      -2,
      2
    ],
    "io_out": [
      0,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),16),2)"
  },
  {
    "input": "input : list = [-1, -4, -1, -3]\noutput : list = [-1, -4, -1, -3]",
    "output": "generated_output : list = sub_n(sub_n([-1, -4, -1, -3],-2),2)",
    "io_inp": [
      -1,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),2)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [-88, -48, 92]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([4, 2, -5],5),-2),-4)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      -88,
      -48,
      92
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,5),-2),-4)"
  },
  {
    "input": "input : list = [-1, -3, 3, -3]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n(drop([-1, -3, 3, -3],2),-1)",
    "io_inp": [
      -1,
      -3,
      3,
      -3
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [2, 2, -3, 2, 0]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(take(add_n([2, 2, -3, 2, 0],-4),2),3)",
    "io_inp": [
      2,
      2,
      -3,
      2,
      0
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,-4),2),3)"
  },
  {
    "input": "input : list = [0, -1, -2]\noutput : list = [24, 12, 0]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(sort_asc([0, -1, -2]),4),-3)))",
    "io_inp": [
      0,
      -1,
      -2
    ],
    "io_out": [
      24,
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(sort_asc(input),4),-3)))"
  },
  {
    "input": "input : list = [-5, -3, 0, 2, -3, 2]\noutput : list = [-3, 17]",
    "output": "generated_output : list = add_n(take(take(mul_n(drop([-5, -3, 0, 2, -3, 2],3),-4),2),14),5)",
    "io_inp": [
      -5,
      -3,
      0,
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      17
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(drop(input,3),-4),2),14),5)"
  },
  {
    "input": "input : list = [5, 2, 4, 0, -4]\noutput : list = [3, 2, 0, -2, -6]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(add_n([5, 2, 4, 0, -4],1),-2)),20),5)",
    "io_inp": [
      5,
      2,
      4,
      0,
      -4
    ],
    "io_out": [
      3,
      2,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(add_n(input,1),-2)),20),5)"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = sort_asc([2, -4, -3])",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3, -4, -3, -1, -3]\noutput : list = [9, 9, 3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(drop([-3, -3, -4, -3, -1, -3],3),-3))))",
    "io_inp": [
      -3,
      -3,
      -4,
      -3,
      -1,
      -3
    ],
    "io_out": [
      9,
      9,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(drop(input,3),-3))))"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [-3, -7, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n([-3, 1, -3],4)))))",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [-4, -5, -14]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(add_n([5, 4, -5],-4),-3),-4),-5),-1)",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      -4,
      -5,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(add_n(input,-4),-3),-4),-5),-1)"
  },
  {
    "input": "input : list = [-4, -1, -1, -1, 5]\noutput : list = [10, 4, 4, 4, 1]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(reverse([-4, -1, -1, -1, 5]),-5))),1)",
    "io_inp": [
      -4,
      -1,
      -1,
      -1,
      5
    ],
    "io_out": [
      10,
      4,
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(reverse(input),-5))),1)"
  },
  {
    "input": "input : list = [-4, 5, 4, 5, 4]\noutput : list = [25, -15, -15, -20, -20]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(add_n([-4, 5, 4, 5, 4],-1),-5))))",
    "io_inp": [
      -4,
      5,
      4,
      5,
      4
    ],
    "io_out": [
      25,
      -15,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(add_n(input,-1),-5))))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [12, 8]",
    "output": "generated_output : list = mul_n(sub_n([0, -1],-3),4)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),4)"
  },
  {
    "input": "input : list = [-5, 3, -1, 0, 5]\noutput : list = [-5, -1, 0, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 3, -1, 0, 5]))",
    "io_inp": [
      -5,
      3,
      -1,
      0,
      5
    ],
    "io_out": [
      -5,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [2, -3, 0, 4, -1]\noutput : list = [-1, 4, 0, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 0, 4, -1])",
    "io_inp": [
      2,
      -3,
      0,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      0,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, 1, 5, -5, -2]\noutput : list = [-2, -5, 5, 1, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 1, 5, -5, -2])",
    "io_inp": [
      -4,
      -3,
      1,
      5,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5,
      5,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sort_asc([1, 0]))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -3, -5, 1]\noutput : list = [6, 12, 14, 18]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(reverse([-2, -3, -5, 1])),4),-2))",
    "io_inp": [
      -2,
      -3,
      -5,
      1
    ],
    "io_out": [
      6,
      12,
      14,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(reverse(input)),4),-2))"
  },
  {
    "input": "input : list = [4, -2, -4, 4]\noutput : list = [-36, -26, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(add_n([4, -2, -4, 4],-4),5)),-4))",
    "io_inp": [
      4,
      -2,
      -4,
      4
    ],
    "io_out": [
      -36,
      -26,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(add_n(input,-4),5)),-4))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, 40]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([0, -5],4),-2))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,4),-2))"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = drop([-4, 5, -5],1)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 4, -5, -2, 3, 5]\noutput : list = [27, 24, 21, 6, 3, -3]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_asc(add_n([-3, 4, -5, -2, 3, 5],4)),37)),3)",
    "io_inp": [
      -3,
      4,
      -5,
      -2,
      3,
      5
    ],
    "io_out": [
      27,
      24,
      21,
      6,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_asc(add_n(input,4)),37)),3)"
  },
  {
    "input": "input : list = [-2, -3, 2, 0, -1, 3]\noutput : list = [2, 1, -1, -2, -3, -4]",
    "output": "generated_output : list = add_n(sort_des([-2, -3, 2, 0, -1, 3]),-1)",
    "io_inp": [
      -2,
      -3,
      2,
      0,
      -1,
      3
    ],
    "io_out": [
      2,
      1,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [4, 0, 0, -1]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(sort_des([4, 0, 0, -1]),2)),1),2)",
    "io_inp": [
      4,
      0,
      0,
      -1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(sort_des(input),2)),1),2)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(take([-4, 3, -3],1),5),-1),-3))",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(take(input,1),5),-1),-3))"
  },
  {
    "input": "input : list = [3, 4, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(take([3, 4, 5],1)),8)))",
    "io_inp": [
      3,
      4,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(take(input,1)),8)))"
  },
  {
    "input": "input : list = [-2, 0, 5, 4, -2, 0]\noutput : list = [-2, -2, 0, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([-2, 0, 5, 4, -2, 0])))",
    "io_inp": [
      -2,
      0,
      5,
      4,
      -2,
      0
    ],
    "io_out": [
      -2,
      -2,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, -3, 3, -4]\noutput : list = [-4, -3, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des([4, -3, 3, -4]),15))",
    "io_inp": [
      4,
      -3,
      3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),15))"
  },
  {
    "input": "input : list = [-1, 2, 4, 5, 2]\noutput : list = [-1, 8, 8, 14, 17]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(add_n([-1, 2, 4, 5, 2],1),3))),1)",
    "io_inp": [
      -1,
      2,
      4,
      5,
      2
    ],
    "io_out": [
      -1,
      8,
      8,
      14,
      17
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(add_n(input,1),3))),1)"
  },
  {
    "input": "input : list = [-4, 1, -2, -2, -1, -3]\noutput : list = [-48, -36, -24, -24, -12, 12]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des([-4, 1, -2, -2, -1, -3])),3),4)",
    "io_inp": [
      -4,
      1,
      -2,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -48,
      -36,
      -24,
      -24,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(input)),3),4)"
  },
  {
    "input": "input : list = [4, 1, 4, -5, -2]\noutput : list = [3, 6]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(take([4, 1, 4, -5, -2],2)),2)),9)",
    "io_inp": [
      4,
      1,
      4,
      -5,
      -2
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(take(input,2)),2)),9)"
  },
  {
    "input": "input : list = [-5, 0, 0, 2, 4, -5]\noutput : list = [-7, 2, 0, -2, -2, -7]",
    "output": "generated_output : list = add_n(reverse(sub_n([-5, 0, 0, 2, 4, -5],-2)),-4)",
    "io_inp": [
      -5,
      0,
      0,
      2,
      4,
      -5
    ],
    "io_out": [
      -7,
      2,
      0,
      -2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-2)),-4)"
  },
  {
    "input": "input : list = [-3, 5, 5, 2, 2]\noutput : list = [-6, 10, 10, 4, 4]",
    "output": "generated_output : list = mul_n([-3, 5, 5, 2, 2],2)",
    "io_inp": [
      -3,
      5,
      5,
      2,
      2
    ],
    "io_out": [
      -6,
      10,
      10,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [8, 6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(add_n([-4, -2],5),1)),-4))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(add_n(input,5),1)),-4))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, -5]))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 3, 1, 5, 0, -4]\noutput : list = [-12, -24]",
    "output": "generated_output : list = mul_n(reverse(sub_n(drop(add_n([-5, 3, 1, 5, 0, -4],5),4),-3)),-3)",
    "io_inp": [
      -5,
      3,
      1,
      5,
      0,
      -4
    ],
    "io_out": [
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(drop(add_n(input,5),4),-3)),-3)"
  },
  {
    "input": "input : list = [5, 4, -5, -5, 3, 3]\noutput : list = [5, 4, -5, -5, 3, 3]",
    "output": "generated_output : list = reverse(reverse([5, 4, -5, -5, 3, 3]))",
    "io_inp": [
      5,
      4,
      -5,
      -5,
      3,
      3
    ],
    "io_out": [
      5,
      4,
      -5,
      -5,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 1, 0]\noutput : list = [3, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(sort_asc([-1, 1, 0])))),-4)",
    "io_inp": [
      -1,
      1,
      0
    ],
    "io_out": [
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [4, -3, -1, 2, -5, 5]\noutput : list = [-5, 2, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(drop([4, -3, -1, 2, -5, 5],3),-1)),1),2)",
    "io_inp": [
      4,
      -3,
      -1,
      2,
      -5,
      5
    ],
    "io_out": [
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(drop(input,3),-1)),1),2)"
  },
  {
    "input": "input : list = [-2, 0, 0, 4, 1]\noutput : list = [20, 5, 0, 0, -10]",
    "output": "generated_output : list = sort_des(mul_n([-2, 0, 0, 4, 1],5))",
    "io_inp": [
      -2,
      0,
      0,
      4,
      1
    ],
    "io_out": [
      20,
      5,
      0,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [2, -5, -5, 1, -2, 2]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(drop([2, -5, -5, 1, -2, 2],3)))))",
    "io_inp": [
      2,
      -5,
      -5,
      1,
      -2,
      2
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(drop(input,3)))))"
  },
  {
    "input": "input : list = [4, 5, -3, 0, -4, -1]\noutput : list = [-9, -12, -8, -11, -3, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n([4, 5, -3, 0, -4, -1],5),-3))",
    "io_inp": [
      4,
      5,
      -3,
      0,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -12,
      -8,
      -11,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,5),-3))"
  },
  {
    "input": "input : list = [-3, -1, 2, 0]\noutput : list = [0, 2, -1, -3]",
    "output": "generated_output : list = reverse([-3, -1, 2, 0])",
    "io_inp": [
      -3,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, 0]\noutput : list = [0, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n([4, 4, 0],-1))",
    "io_inp": [
      4,
      4,
      0
    ],
    "io_out": [
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [3, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n(mul_n([5, 0],-1),4)),31),-4)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(mul_n(input,-1),4)),31),-4)"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des([-5, -2, -1]),-5),1)),24)",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_des(input),-5),1)),24)"
  },
  {
    "input": "input : list = [-3, 0, 1, -3]\noutput : list = [12, 0, -4, 12]",
    "output": "generated_output : list = mul_n([-3, 0, 1, -3],-4)",
    "io_inp": [
      -3,
      0,
      1,
      -3
    ],
    "io_out": [
      12,
      0,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 4, 2, -4]\noutput : list = [2, 9, 7, 1]",
    "output": "generated_output : list = add_n([-3, 4, 2, -4],5)",
    "io_inp": [
      -3,
      4,
      2,
      -4
    ],
    "io_out": [
      2,
      9,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, -4, 0, 2]\noutput : list = [-4, 0, 2, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des([5, -4, 0, 2])))",
    "io_inp": [
      5,
      -4,
      0,
      2
    ],
    "io_out": [
      -4,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [2, -5, -2, -4]\noutput : list = [-12, 36, 60, 72]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(add_n([2, -5, -2, -4],-1),-4),3)))",
    "io_inp": [
      2,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -12,
      36,
      60,
      72
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(add_n(input,-1),-4),3)))"
  },
  {
    "input": "input : list = [1, -1, 5, -3, -2]\noutput : list = [96, 80, 64, 32, -32]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(mul_n([1, -1, 5, -3, -2],-1),-3),4),4))",
    "io_inp": [
      1,
      -1,
      5,
      -3,
      -2
    ],
    "io_out": [
      96,
      80,
      64,
      32,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(mul_n(input,-1),-3),4),4))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-6, -8]",
    "output": "generated_output : list = sub_n([-2, -4],4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 2, -4, -4, -3]\noutput : list = [-7, -7, -6, -1]",
    "output": "generated_output : list = reverse(reverse(sort_asc(drop(sub_n([-5, 2, -4, -4, -3],3),1))))",
    "io_inp": [
      -5,
      2,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(drop(sub_n(input,3),1))))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(reverse([3, -4])))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, 5, 5, -1, -2]\noutput : list = [-6, -3, -2, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(sort_asc([-5, 5, 5, -1, -2]),4),22),5))",
    "io_inp": [
      -5,
      5,
      5,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -3,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(sort_asc(input),4),22),5))"
  },
  {
    "input": "input : list = [-2, -4, 3]\noutput : list = [-8, -16, 12]",
    "output": "generated_output : list = take(mul_n([-2, -4, 3],4),16)",
    "io_inp": [
      -2,
      -4,
      3
    ],
    "io_out": [
      -8,
      -16,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),16)"
  },
  {
    "input": "input : list = [5, -5, 0, -4, 3, -5]\noutput : list = [12, 2, 7, 3, 10, 2]",
    "output": "generated_output : list = sub_n(add_n([5, -5, 0, -4, 3, -5],3),-4)",
    "io_inp": [
      5,
      -5,
      0,
      -4,
      3,
      -5
    ],
    "io_out": [
      12,
      2,
      7,
      3,
      10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),-4)"
  },
  {
    "input": "input : list = [-3, 2, 3, 2, 0]\noutput : list = [-6, -3, -3, 3, 12]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(add_n([-3, 2, 3, 2, 0],-1),-3))),18)",
    "io_inp": [
      -3,
      2,
      3,
      2,
      0
    ],
    "io_out": [
      -6,
      -3,
      -3,
      3,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(add_n(input,-1),-3))),18)"
  },
  {
    "input": "input : list = [5, 0, -1, 3, 3, -5]\noutput : list = [-5, -1, 0, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 0, -1, 3, 3, -5])",
    "io_inp": [
      5,
      0,
      -1,
      3,
      3,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 0, 0, -2]\noutput : list = [4, 2, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(mul_n([-4, 0, 0, -2],-1)))))",
    "io_inp": [
      -4,
      0,
      0,
      -2
    ],
    "io_out": [
      4,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [1, -1, 5, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = take([1, -1, 5, -1],2)",
    "io_inp": [
      1,
      -1,
      5,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 2, 2, -4, 2, 4]\noutput : list = [4, 2, 2, 2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_asc([-2, 2, 2, -4, 2, 4])))))",
    "io_inp": [
      -2,
      2,
      2,
      -4,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      2,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, -4, 3, 2, 0]\noutput : list = [-2, -4]",
    "output": "generated_output : list = add_n(drop([-4, -4, 3, 2, 0],3),-4)",
    "io_inp": [
      -4,
      -4,
      3,
      2,
      0
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-4)"
  },
  {
    "input": "input : list = [-1, 0, 3, -2, -5]\noutput : list = [7, 4, 3, 2, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([-1, 0, 3, -2, -5]),4))",
    "io_inp": [
      -1,
      0,
      3,
      -2,
      -5
    ],
    "io_out": [
      7,
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-3, 2, 1]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take([-3, 2, 1],1),1)",
    "io_inp": [
      -3,
      2,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),1)"
  },
  {
    "input": "input : list = [4, 0, -2, -5]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(drop([4, 0, -2, -5],2),5))),-1)",
    "io_inp": [
      4,
      0,
      -2,
      -5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(drop(input,2),5))),-1)"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sort_asc([-2, 0, -4])",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, -3, -5]\noutput : list = [-7, -5, 3, -2]",
    "output": "generated_output : list = add_n(reverse([0, 5, -3, -5]),-2)",
    "io_inp": [
      0,
      5,
      -3,
      -5
    ],
    "io_out": [
      -7,
      -5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-2, 5, -2, 0, -3, 1]\noutput : list = [-24, 0]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(drop([-2, 5, -2, 0, -3, 1],4),-3),2),-3))",
    "io_inp": [
      -2,
      5,
      -2,
      0,
      -3,
      1
    ],
    "io_out": [
      -24,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(drop(input,4),-3),2),-3))"
  },
  {
    "input": "input : list = [-2, -2, -4, -5, -4, -3]\noutput : list = [-2, -2, -3, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-2, -2, -4, -5, -4, -3])",
    "io_inp": [
      -2,
      -2,
      -4,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, -4, 1, -3]\noutput : list = [-4, 1, -3]",
    "output": "generated_output : list = drop([2, -2, -4, 1, -3],2)",
    "io_inp": [
      2,
      -2,
      -4,
      1,
      -3
    ],
    "io_out": [
      -4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse([3, 5, 3])),-3)",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-4, -4, 3, 2, 0, 2]\noutput : list = [13, 13, 5, 1, 1, -1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(add_n([-4, -4, 3, 2, 0, 2],-5)),-2),5))",
    "io_inp": [
      -4,
      -4,
      3,
      2,
      0,
      2
    ],
    "io_out": [
      13,
      13,
      5,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(add_n(input,-5)),-2),5))"
  },
  {
    "input": "input : list = [1, 0, 0, 5, -3, -4]\noutput : list = [5, 0, 0, 25, -15, -20]",
    "output": "generated_output : list = mul_n([1, 0, 0, 5, -3, -4],5)",
    "io_inp": [
      1,
      0,
      0,
      5,
      -3,
      -4
    ],
    "io_out": [
      5,
      0,
      0,
      25,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, -2, -2, -4, -5, 3]\noutput : list = [-1, -9, -8, -6, -6, 1]",
    "output": "generated_output : list = reverse(mul_n(take(take(sub_n([5, -2, -2, -4, -5, 3],4),18),18),1))",
    "io_inp": [
      5,
      -2,
      -2,
      -4,
      -5,
      3
    ],
    "io_out": [
      -1,
      -9,
      -8,
      -6,
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sub_n(input,4),18),18),1))"
  },
  {
    "input": "input : list = [0, 5, 2, 5]\noutput : list = [1, 3, 6, 6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sort_asc([0, 5, 2, 5]),5),-5),-4),3)",
    "io_inp": [
      0,
      5,
      2,
      5
    ],
    "io_out": [
      1,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(sort_asc(input),5),-5),-4),3)"
  },
  {
    "input": "input : list = [5, 5, 4, -1, 5]\noutput : list = [-5, 20, 25, 25, 25]",
    "output": "generated_output : list = mul_n(sort_asc([5, 5, 4, -1, 5]),5)",
    "io_inp": [
      5,
      5,
      4,
      -1,
      5
    ],
    "io_out": [
      -5,
      20,
      25,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-2, -3, -5, 1, 0, 1]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(take([-2, -3, -5, 1, 0, 1],1),19))),4)",
    "io_inp": [
      -2,
      -3,
      -5,
      1,
      0,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(take(input,1),19))),4)"
  },
  {
    "input": "input : list = [2, -2, 2, 0, -3, 4]\noutput : list = [-2, -16, -10, -6, -14, -6]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n([2, -2, 2, 0, -3, 4],-4),2),1),3))",
    "io_inp": [
      2,
      -2,
      2,
      0,
      -3,
      4
    ],
    "io_out": [
      -2,
      -16,
      -10,
      -6,
      -14,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(add_n(input,-4),2),1),3))"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [16, 16, 4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(sort_des([4, 4, 1])),4)))",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      16,
      16,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = sort_asc([0, 1, -2])",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, 0, 0, 0, -2]\noutput : list = [0, 0, 0, 40, 80, 100]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(reverse([-5, -4, 0, 0, 0, -2]),-4)),5))",
    "io_inp": [
      -5,
      -4,
      0,
      0,
      0,
      -2
    ],
    "io_out": [
      0,
      0,
      0,
      40,
      80,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(reverse(input),-4)),5))"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [0, 4, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([1, -3, 4],2)),-5)",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,2)),-5)"
  },
  {
    "input": "input : list = [1, -4, -1, -1, 0]\noutput : list = [50, 45, 40, 40, 25]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(sort_asc([1, -4, -1, -1, 0]),5),-4)),5)",
    "io_inp": [
      1,
      -4,
      -1,
      -1,
      0
    ],
    "io_out": [
      50,
      45,
      40,
      40,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(sort_asc(input),5),-4)),5)"
  },
  {
    "input": "input : list = [-2, 1, -4, 0, 3]\noutput : list = [18, 0, -24, 6, -12]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-2, 1, -4, 0, 3]),3),2)",
    "io_inp": [
      -2,
      1,
      -4,
      0,
      3
    ],
    "io_out": [
      18,
      0,
      -24,
      6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),3),2)"
  },
  {
    "input": "input : list = [4, -1, 2, -1]\noutput : list = [3, 6, 3, 8]",
    "output": "generated_output : list = reverse(sub_n([4, -1, 2, -1],-4))",
    "io_inp": [
      4,
      -1,
      2,
      -1
    ],
    "io_out": [
      3,
      6,
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-2, -2, -3, 5, 0, 2]\noutput : list = [-11, -10, -10, -8, -6, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-2, -2, -3, 5, 0, 2]),4),-4)",
    "io_inp": [
      -2,
      -2,
      -3,
      5,
      0,
      2
    ],
    "io_out": [
      -11,
      -10,
      -10,
      -8,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),4),-4)"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [23, -7, -12]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n([-2, 4, -3],1)),5),-2))",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      23,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n(input,1)),5),-2))"
  },
  {
    "input": "input : list = [-2, 2, -5, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(drop([-2, 2, -5, -1],2))),-2))",
    "io_inp": [
      -2,
      2,
      -5,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(drop(input,2))),-2))"
  },
  {
    "input": "input : list = [0, 1, -3]\noutput : list = [-3, 0, 1]",
    "output": "generated_output : list = sort_asc([0, 1, -3])",
    "io_inp": [
      0,
      1,
      -3
    ],
    "io_out": [
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [36, 20]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des(drop([-4, 5, 1],1)),-4),4),21)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      36,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(drop(input,1)),-4),4),21)"
  },
  {
    "input": "input : list = [-3, -1, 5, -5, -3, 1]\noutput : list = [154, 94, 94, 34, -26, -146]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(mul_n([-3, -1, 5, -5, -3, 1],3),-5),2)),4)",
    "io_inp": [
      -3,
      -1,
      5,
      -5,
      -3,
      1
    ],
    "io_out": [
      154,
      94,
      94,
      34,
      -26,
      -146
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(mul_n(input,3),-5),2)),4)"
  },
  {
    "input": "input : list = [-2, 1, 3, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take([-2, 1, 3, 5],2))),4)",
    "io_inp": [
      -2,
      1,
      3,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(input,2))),4)"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [18, 0, 18]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(sub_n([-5, 4, -5],3),-1),-2),-2),2)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      18,
      0,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(sub_n(input,3),-1),-2),-2),2)"
  },
  {
    "input": "input : list = [1, 4, 1, -1]\noutput : list = [4, 1, 1, -1]",
    "output": "generated_output : list = sort_des(sort_asc([1, 4, 1, -1]))",
    "io_inp": [
      1,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -2, -4, -1, 0, -1]\noutput : list = [27, 12, 9, 9, 6, 0]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(sub_n([5, -2, -4, -1, 0, -1],-4)),23),3))",
    "io_inp": [
      5,
      -2,
      -4,
      -1,
      0,
      -1
    ],
    "io_out": [
      27,
      12,
      9,
      9,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(sub_n(input,-4)),23),3))"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sort_des([-5, -2, 1])))))",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [7, 3]",
    "output": "generated_output : list = sub_n([4, 0],-3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 2, -1, -5, 1, -3]\noutput : list = [112, 80, 80, 48, 16, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n([-3, 2, -1, -5, 1, -3],2),1)),-4),4)",
    "io_inp": [
      -3,
      2,
      -1,
      -5,
      1,
      -3
    ],
    "io_out": [
      112,
      80,
      80,
      48,
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n(input,2),1)),-4),4)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [-13]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take([2, -3, -1],1)),-4),5)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(input,1)),-4),5)"
  },
  {
    "input": "input : list = [3, 4, 1, -1, -2]\noutput : list = [8, 7, 5, 3, 2]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(sort_des([3, 4, 1, -1, -2])),10)),-4)",
    "io_inp": [
      3,
      4,
      1,
      -1,
      -2
    ],
    "io_out": [
      8,
      7,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(sort_des(input)),10)),-4)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [21, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(reverse([-4, 1])),4),4),1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      21,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(reverse(input)),4),4),1)"
  },
  {
    "input": "input : list = [3, -1, -3, 4, -4]\noutput : list = [-32, -24, -8, 24, 32]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(sort_des([3, -1, -3, 4, -4]))),4),2)",
    "io_inp": [
      3,
      -1,
      -3,
      4,
      -4
    ],
    "io_out": [
      -32,
      -24,
      -8,
      24,
      32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(sort_des(input))),4),2)"
  },
  {
    "input": "input : list = [-5, -1, 0, -5]\noutput : list = [19, 4, 7, 19]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-5, -1, 0, -5]),-3),-4)",
    "io_inp": [
      -5,
      -1,
      0,
      -5
    ],
    "io_out": [
      19,
      4,
      7,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),-3),-4)"
  },
  {
    "input": "input : list = [0, 3, -2, 1, 0, 1]\noutput : list = [-1, -3, -3, -4, -4, -6]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n([0, 3, -2, 1, 0, 1],-4)))))",
    "io_inp": [
      0,
      3,
      -2,
      1,
      0,
      1
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [-2, 4, 2, 1, 5]\noutput : list = [-19, 5, 13, 29, 37]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(mul_n([-2, 4, 2, 1, 5],2)),4),3),31)",
    "io_inp": [
      -2,
      4,
      2,
      1,
      5
    ],
    "io_out": [
      -19,
      5,
      13,
      29,
      37
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(mul_n(input,2)),4),3),31)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(drop([2, 2, -3],1))",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 0, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(drop([-5, 0, 1, -5],2))",
    "io_inp": [
      -5,
      0,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 4, 4, -5, 2]\noutput : list = [-5, -2, 2, 4, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, 4, -5, 2])",
    "io_inp": [
      -2,
      4,
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      -2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, 3, 3, 2, 3]\noutput : list = [30, -30, -45, -45, -45, -45]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(mul_n([-2, 3, 3, 3, 2, 3],5)),-3)))",
    "io_inp": [
      -2,
      3,
      3,
      3,
      2,
      3
    ],
    "io_out": [
      30,
      -30,
      -45,
      -45,
      -45,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(mul_n(input,5)),-3)))"
  },
  {
    "input": "input : list = [2, -4, -3, -1, -5]\noutput : list = [10, -5, -15, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n([2, -4, -3, -1, -5],5))",
    "io_inp": [
      2,
      -4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      10,
      -5,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [-4, 5, -1, 4, -5, -2]\noutput : list = [-76, -60, -28, -12, 68, 84]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(mul_n([-4, 5, -1, 4, -5, -2],-4),-1),-4)))",
    "io_inp": [
      -4,
      5,
      -1,
      4,
      -5,
      -2
    ],
    "io_out": [
      -76,
      -60,
      -28,
      -12,
      68,
      84
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(mul_n(input,-4),-1),-4)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(reverse([3, 4]),4)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [1, 5, -2, 0, -4, -5]\noutput : list = [-3, -2, 0, 2, 3, 7]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des([1, 5, -2, 0, -4, -5])),-5),3)",
    "io_inp": [
      1,
      5,
      -2,
      0,
      -4,
      -5
    ],
    "io_out": [
      -3,
      -2,
      0,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(input)),-5),3)"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -2, -3],1)",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 0, 1],1)",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -2, -2],1)",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 3, 1, -1, -4, -4]\noutput : list = [48, 16, 16, -16, -64, -64]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sort_asc([1, 3, 1, -1, -4, -4]),-4),-4)))",
    "io_inp": [
      1,
      3,
      1,
      -1,
      -4,
      -4
    ],
    "io_out": [
      48,
      16,
      16,
      -16,
      -64,
      -64
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sort_asc(input),-4),-4)))"
  },
  {
    "input": "input : list = [-4, 1, 4, 3]\noutput : list = [-11, -8, -2, 13]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(mul_n([-4, 1, 4, 3],-3)),1)))",
    "io_inp": [
      -4,
      1,
      4,
      3
    ],
    "io_out": [
      -11,
      -8,
      -2,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(mul_n(input,-3)),1)))"
  },
  {
    "input": "input : list = [0, 1, -5]\noutput : list = [8, 4, -16]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc([0, 1, -5])),2),2),4)",
    "io_inp": [
      0,
      1,
      -5
    ],
    "io_out": [
      8,
      4,
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc(input)),2),2),4)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -3, 0],1)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 4, 2, 1, 4, 2]\noutput : list = [2, 1, 4, 2]",
    "output": "generated_output : list = drop([-1, 4, 2, 1, 4, 2],2)",
    "io_inp": [
      -1,
      4,
      2,
      1,
      4,
      2
    ],
    "io_out": [
      2,
      1,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, -1, -2, -4, -5]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = drop(sort_asc(sort_des(sub_n(reverse([-4, -1, -2, -4, -5]),-2))),2)",
    "io_inp": [
      -4,
      -1,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_des(sub_n(reverse(input),-2))),2)"
  },
  {
    "input": "input : list = [0, 1, 1, -4]\noutput : list = [-20, -20, 80]",
    "output": "generated_output : list = mul_n(drop(take(mul_n([0, 1, 1, -4],4),12),1),-5)",
    "io_inp": [
      0,
      1,
      1,
      -4
    ],
    "io_out": [
      -20,
      -20,
      80
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(mul_n(input,4),12),1),-5)"
  },
  {
    "input": "input : list = [-1, -4, -5, -4, 5, 4]\noutput : list = [-5, -4, -4, -1, 4, 5]",
    "output": "generated_output : list = sort_asc([-1, -4, -5, -4, 5, 4])",
    "io_inp": [
      -1,
      -4,
      -5,
      -4,
      5,
      4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, -3, -4, 5, 5]\noutput : list = [-8, -6, -6, -8, 10, 10]",
    "output": "generated_output : list = mul_n([-4, -3, -3, -4, 5, 5],2)",
    "io_inp": [
      -4,
      -3,
      -3,
      -4,
      5,
      5
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -8,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, -2, -1]\noutput : list = [-5, -6, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(sort_asc([-2, -2, -1]),-2))),2)",
    "io_inp": [
      -2,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(sort_asc(input),-2))),2)"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [15, 12, -9]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(sort_des([4, -3, 5]),3),1),4),1)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      15,
      12,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(sort_des(input),3),1),4),1)"
  },
  {
    "input": "input : list = [5, 5, -5, -4, -2, 1]\noutput : list = [-66, -60, -48, -30, -6, -6]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n(sort_asc([5, 5, -5, -4, -2, 1]),-5),1),-3),-2)",
    "io_inp": [
      5,
      5,
      -5,
      -4,
      -2,
      1
    ],
    "io_out": [
      -66,
      -60,
      -48,
      -30,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(sort_asc(input),-5),1),-3),-2)"
  },
  {
    "input": "input : list = [-5, 2, 3]\noutput : list = [-10, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc([-5, 2, 3]),-5)",
    "io_inp": [
      -5,
      2,
      3
    ],
    "io_out": [
      -10,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [1, 3, 0, -5, -3]\noutput : list = [1, 3]",
    "output": "generated_output : list = take([1, 3, 0, -5, -3],2)",
    "io_inp": [
      1,
      3,
      0,
      -5,
      -3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -1, -4, -2, 5, -2]\noutput : list = [-1, -1, 1, 1, 2, 8]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(reverse([-4, -1, -4, -2, 5, -2])),30),3))",
    "io_inp": [
      -4,
      -1,
      -4,
      -2,
      5,
      -2
    ],
    "io_out": [
      -1,
      -1,
      1,
      1,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(reverse(input)),30),3))"
  },
  {
    "input": "input : list = [4, -1, 1, -2, -5, -3]\noutput : list = [4, -1]",
    "output": "generated_output : list = take([4, -1, 1, -2, -5, -3],2)",
    "io_inp": [
      4,
      -1,
      1,
      -2,
      -5,
      -3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 5, 5]\noutput : list = [8, 8, 4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(sort_des([1, 5, 5]),4),2),1))",
    "io_inp": [
      1,
      5,
      5
    ],
    "io_out": [
      8,
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(sort_des(input),4),2),1))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [3, 9]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(reverse([5, -1])),-4),12))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(reverse(input)),-4),12))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [1, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_des([2, -4]))),5),-4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_des(input))),5),-4)"
  },
  {
    "input": "input : list = [4, 1, 4, -4, 2]\noutput : list = [17, 2, 17, -23, 7]",
    "output": "generated_output : list = reverse(reverse(add_n(take(mul_n([4, 1, 4, -4, 2],5),17),-3)))",
    "io_inp": [
      4,
      1,
      4,
      -4,
      2
    ],
    "io_out": [
      17,
      2,
      17,
      -23,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(mul_n(input,5),17),-3)))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [2, 8]",
    "output": "generated_output : list = add_n(add_n([-1, 5],-1),4)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),4)"
  },
  {
    "input": "input : list = [-5, 0, 1, 2, 4, -2]\noutput : list = [-2, 4, 2, 1, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, 1, 2, 4, -2])",
    "io_inp": [
      -5,
      0,
      1,
      2,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      2,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [6, 5, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(sub_n([2, -1, 3],-3),11))))",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(sub_n(input,-3),11))))"
  },
  {
    "input": "input : list = [2, 4, -1, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, 4, -1, -1],1))",
    "io_inp": [
      2,
      4,
      -1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [5, 3, 2, 5, 4]\noutput : list = [2, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(reverse([5, 3, 2, 5, 4]),10)),28))",
    "io_inp": [
      5,
      3,
      2,
      5,
      4
    ],
    "io_out": [
      2,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(reverse(input),10)),28))"
  },
  {
    "input": "input : list = [-2, -1, -1, -2, 2]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(sort_asc([-2, -1, -1, -2, 2]),-2),3)))",
    "io_inp": [
      -2,
      -1,
      -1,
      -2,
      2
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(sort_asc(input),-2),3)))"
  },
  {
    "input": "input : list = [4, 3, -5, -2, 3]\noutput : list = [-64, -48, -48, 32, 80]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(mul_n([4, 3, -5, -2, 3],4)))),-4)",
    "io_inp": [
      4,
      3,
      -5,
      -2,
      3
    ],
    "io_out": [
      -64,
      -48,
      -48,
      32,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(mul_n(input,4)))),-4)"
  },
  {
    "input": "input : list = [5, -5, -5, -3, 1]\noutput : list = [1, -3, -7, -9, -9]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(reverse([5, -5, -5, -3, 1]),-4),20)))",
    "io_inp": [
      5,
      -5,
      -5,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(reverse(input),-4),20)))"
  },
  {
    "input": "input : list = [-3, -5, -4, -1]\noutput : list = [-104, -404, -504, -304]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(reverse([-3, -5, -4, -1]),-5),-5),-1),4)",
    "io_inp": [
      -3,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -104,
      -404,
      -504,
      -304
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(reverse(input),-5),-5),-1),4)"
  },
  {
    "input": "input : list = [3, -4, -5, 3]\noutput : list = [1, 0, -7, -7]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(sort_asc([3, -4, -5, 3])),-1)),4)",
    "io_inp": [
      3,
      -4,
      -5,
      3
    ],
    "io_out": [
      1,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(sort_asc(input)),-1)),4)"
  },
  {
    "input": "input : list = [1, 0, 2, -1, 2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(take([1, 0, 2, -1, 2],1),-1),1),4),1)",
    "io_inp": [
      1,
      0,
      2,
      -1,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(take(input,1),-1),1),4),1)"
  },
  {
    "input": "input : list = [-3, 0, 5, 3, -2]\noutput : list = [4, -1]",
    "output": "generated_output : list = take(sub_n(reverse(take(take([-3, 0, 5, 3, -2],3),5)),1),2)",
    "io_inp": [
      -3,
      0,
      5,
      3,
      -2
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(take(input,3),5)),1),2)"
  },
  {
    "input": "input : list = [-4, 2, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(drop([-4, 2, 3, -1],2),20)),21))",
    "io_inp": [
      -4,
      2,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(drop(input,2),20)),21))"
  },
  {
    "input": "input : list = [-1, -4, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(drop([-1, -4, 0, -4],2),10)",
    "io_inp": [
      -1,
      -4,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(input,2),10)"
  },
  {
    "input": "input : list = [1, -4, -1, -1]\noutput : list = [-1, -6, -3, -3]",
    "output": "generated_output : list = sub_n([1, -4, -1, -1],2)",
    "io_inp": [
      1,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, 1, 1, -5]\noutput : list = [-10, -4, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n([5, 1, 1, -5],-2),3),1))",
    "io_inp": [
      5,
      1,
      1,
      -5
    ],
    "io_out": [
      -10,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(input,-2),3),1))"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [0, -48, -64]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(reverse([-3, 3, 5]),-3),4),-2))",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      0,
      -48,
      -64
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(reverse(input),-3),4),-2))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -3]))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [15, 9, 3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([-5, -3, -1]),-3))",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      15,
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-3))"
  },
  {
    "input": "input : list = [3, -4, 1, 0]\noutput : list = [1, -19, -24, -34]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(sort_asc([3, -4, 1, 0]),4),-5),4),-3)",
    "io_inp": [
      3,
      -4,
      1,
      0
    ],
    "io_out": [
      1,
      -19,
      -24,
      -34
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(sort_asc(input),4),-5),4),-3)"
  },
  {
    "input": "input : list = [-2, 2, 1, -2, 1, 5]\noutput : list = [4, -4, -2, 4, -2, -10]",
    "output": "generated_output : list = mul_n([-2, 2, 1, -2, 1, 5],-2)",
    "io_inp": [
      -2,
      2,
      1,
      -2,
      1,
      5
    ],
    "io_out": [
      4,
      -4,
      -2,
      4,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, 5, -3, -3, 1]\noutput : list = [-3, -3, 1, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_des([5, 1, 5, -3, -3, 1])))))",
    "io_inp": [
      5,
      1,
      5,
      -3,
      -3,
      1
    ],
    "io_out": [
      -3,
      -3,
      1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [4, 7, 3]",
    "output": "generated_output : list = add_n([0, 3, -1],4)",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      4,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [1, 3, 3, -5, 5]\noutput : list = [31, 21, 21, 61, 11]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(add_n([1, 3, 3, -5, 5],-3),4),27),-5),1)",
    "io_inp": [
      1,
      3,
      3,
      -5,
      5
    ],
    "io_out": [
      31,
      21,
      21,
      61,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(add_n(input,-3),4),27),-5),1)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(sub_n([-3, -2, 1],5),4),1)),8)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(sub_n(input,5),4),1)),8)"
  },
  {
    "input": "input : list = [-3, -3, 0, -2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = take([-3, -3, 0, -2],2)",
    "io_inp": [
      -3,
      -3,
      0,
      -2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [1, 6]",
    "output": "generated_output : list = add_n([-3, 2],4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, -5, -5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = take([5, -5, -5, -5],2)",
    "io_inp": [
      5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -1, 4, 3, 1, -5]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(take([4, -1, 4, 3, 1, -5],2),-3),-3),-2))",
    "io_inp": [
      4,
      -1,
      4,
      3,
      1,
      -5
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(take(input,2),-3),-3),-2))"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [-15, 0, -45]",
    "output": "generated_output : list = reverse(mul_n(mul_n([3, 0, 1],3),-5))",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      -15,
      0,
      -45
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,3),-5))"
  },
  {
    "input": "input : list = [1, 3, 0, 1, -1]\noutput : list = [28, 24, 20, 20, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(sub_n([1, 3, 0, 1, -1],2),12),4)),-4)",
    "io_inp": [
      1,
      3,
      0,
      1,
      -1
    ],
    "io_out": [
      28,
      24,
      20,
      20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(sub_n(input,2),12),4)),-4)"
  },
  {
    "input": "input : list = [2, -2, -5, -1]\noutput : list = [-2, -5, -1]",
    "output": "generated_output : list = take(drop([2, -2, -5, -1],1),10)",
    "io_inp": [
      2,
      -2,
      -5,
      -1
    ],
    "io_out": [
      -2,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(drop(input,1),10)"
  },
  {
    "input": "input : list = [4, 3, -4, 2, 2, 2]\noutput : list = [-8, -6, 8]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(take([4, 3, -4, 2, 2, 2],3))),-2))",
    "io_inp": [
      4,
      3,
      -4,
      2,
      2,
      2
    ],
    "io_out": [
      -8,
      -6,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(take(input,3))),-2))"
  },
  {
    "input": "input : list = [4, 0, -1, -3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(drop([4, 0, -1, -3],2),-2),-5)),2)",
    "io_inp": [
      4,
      0,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(drop(input,2),-2),-5)),2)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [30, -15]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc([-1, 2]),-1),3),-5)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(input),-1),3),-5)"
  },
  {
    "input": "input : list = [-2, 1, 4, 4]\noutput : list = [-40, 20, 80, 80]",
    "output": "generated_output : list = take(take(mul_n(mul_n(mul_n([-2, 1, 4, 4],-2),-5),2),28),27)",
    "io_inp": [
      -2,
      1,
      4,
      4
    ],
    "io_out": [
      -40,
      20,
      80,
      80
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(mul_n(input,-2),-5),2),28),27)"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [16, 8, -16]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse([-4, 2, 4])))),4)",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      16,
      8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse(input)))),4)"
  },
  {
    "input": "input : list = [-4, 3, 0, 4]\noutput : list = [3, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(drop([-4, 3, 0, 4],1)))),-3)",
    "io_inp": [
      -4,
      3,
      0,
      4
    ],
    "io_out": [
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(drop(input,1)))),-3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [7, 1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_asc([5, -1]),4)),-1),-5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_asc(input),4)),-1),-5)"
  },
  {
    "input": "input : list = [5, 1, 3, -5]\noutput : list = [5, 3, 1, -5]",
    "output": "generated_output : list = sort_des([5, 1, 3, -5])",
    "io_inp": [
      5,
      1,
      3,
      -5
    ],
    "io_out": [
      5,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, -5, 0]\noutput : list = [-6, -4, -2, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(sort_asc([-1, -3, -5, 0]),1)),-1),1)",
    "io_inp": [
      -1,
      -3,
      -5,
      0
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(sort_asc(input),1)),-1),1)"
  },
  {
    "input": "input : list = [2, -3, 2, 1]\noutput : list = [6, 1]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(take([2, -3, 2, 1],2),-4),25),3),-5)",
    "io_inp": [
      2,
      -3,
      2,
      1
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(take(input,2),-4),25),3),-5)"
  },
  {
    "input": "input : list = [2, -5, 5, -4]\noutput : list = [-4, 5, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 5, -4])",
    "io_inp": [
      2,
      -5,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, -1, 4, 5, -2]\noutput : list = [5, 4, 4, -1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse([4, -3, -1, 4, 5, -2]))",
    "io_inp": [
      4,
      -3,
      -1,
      4,
      5,
      -2
    ],
    "io_out": [
      5,
      4,
      4,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 0, 4, -3, 5]\noutput : list = [36, 20, 12, -20, -28]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(sort_asc([-1, 0, 4, -3, 5]),2),20),3),-4)",
    "io_inp": [
      -1,
      0,
      4,
      -3,
      5
    ],
    "io_out": [
      36,
      20,
      12,
      -20,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(sort_asc(input),2),20),3),-4)"
  },
  {
    "input": "input : list = [4, -4, 3]\noutput : list = [2, 1, -6]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n([4, -4, 3],-2))))",
    "io_inp": [
      4,
      -4,
      3
    ],
    "io_out": [
      2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(input,-2))))"
  },
  {
    "input": "input : list = [2, 1, 4, -5, -2, 5]\noutput : list = [30, 25, 15, 10, -5, -20]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(sort_des([2, 1, 4, -5, -2, 5]),5)),5))",
    "io_inp": [
      2,
      1,
      4,
      -5,
      -2,
      5
    ],
    "io_out": [
      30,
      25,
      15,
      10,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(sort_des(input),5)),5))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [96, 64]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n([2, 3],-4),2)),27),-4)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      96,
      64
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n(input,-4),2)),27),-4)"
  },
  {
    "input": "input : list = [2, -2, 5, -4, -4, -5]\noutput : list = [-8, -7, -7, -5, -1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(reverse([2, -2, 5, -4, -4, -5])),-3),48))",
    "io_inp": [
      2,
      -2,
      5,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(reverse(input)),-3),48))"
  },
  {
    "input": "input : list = [-2, 3, -5, -1, 2]\noutput : list = [3, 2, -1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sort_asc([-2, 3, -5, -1, 2])))))",
    "io_inp": [
      -2,
      3,
      -5,
      -1,
      2
    ],
    "io_out": [
      3,
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = sub_n(take(sort_des([-2, -4, 0]),17),-4)",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),17),-4)"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(add_n([5, 0, -1],2)),-5),7))",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(add_n(input,2)),-5),7))"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [12]",
    "output": "generated_output : list = take(sub_n(drop(take(mul_n([-4, 0, -5],-3),15),2),3),40)",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(take(mul_n(input,-3),15),2),3),40)"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [0, -8, -8]",
    "output": "generated_output : list = mul_n([0, -2, -2],4)",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [7, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(sub_n([1, 3],-3),10),-5)),-4)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(sub_n(input,-3),10),-5)),-4)"
  },
  {
    "input": "input : list = [3, -4, -1, -3, -1, 2]\noutput : list = [9, 6, -3, -3, -9, -12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(sort_des([3, -4, -1, -3, -1, 2]),21))),3)",
    "io_inp": [
      3,
      -4,
      -1,
      -3,
      -1,
      2
    ],
    "io_out": [
      9,
      6,
      -3,
      -3,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(sort_des(input),21))),3)"
  },
  {
    "input": "input : list = [5, -3, -3]\noutput : list = [-8, -8, 0]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(reverse([5, -3, -3])),7),5))",
    "io_inp": [
      5,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(reverse(input)),7),5))"
  },
  {
    "input": "input : list = [-4, -3, -1, 2]\noutput : list = [-3, -1, 2]",
    "output": "generated_output : list = take(drop([-4, -3, -1, 2],1),17)",
    "io_inp": [
      -4,
      -3,
      -1,
      2
    ],
    "io_out": [
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(drop(input,1),17)"
  },
  {
    "input": "input : list = [1, 5, 2, 1, -2]\noutput : list = [3, 7, 4, 3, 0]",
    "output": "generated_output : list = sub_n([1, 5, 2, 1, -2],-2)",
    "io_inp": [
      1,
      5,
      2,
      1,
      -2
    ],
    "io_out": [
      3,
      7,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 2, -1, -2, 3, -4]\noutput : list = [9, 8, 6, 5, 2, 1]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(add_n(reverse([-5, 2, -1, -2, 3, -4]),-4)),-1))",
    "io_inp": [
      -5,
      2,
      -1,
      -2,
      3,
      -4
    ],
    "io_out": [
      9,
      8,
      6,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(add_n(reverse(input),-4)),-1))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(reverse(take(add_n(sub_n([0, -3],2),1),13)),11)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(take(add_n(sub_n(input,2),1),13)),11)"
  },
  {
    "input": "input : list = [-2, 5, -3, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 5, -3, -3],1)",
    "io_inp": [
      -2,
      5,
      -3,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -3, -2]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(sort_asc([2, -3, -2])),3),15),4)",
    "io_inp": [
      2,
      -3,
      -2
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(sort_asc(input)),3),15),4)"
  },
  {
    "input": "input : list = [3, 3, -3, -1, 2]\noutput : list = [-2, -5, -7]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(drop([3, 3, -3, -1, 2],2)),-5),1),13)",
    "io_inp": [
      3,
      3,
      -3,
      -1,
      2
    ],
    "io_out": [
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(drop(input,2)),-5),1),13)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_des([-1, -2]),-4),-1))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_des(input),-4),-1))"
  },
  {
    "input": "input : list = [0, 0, -1, 4, -2]\noutput : list = [2, 0, -2, -2, -10]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(sort_des([0, 0, -1, 4, -2])),-2),-2),25)",
    "io_inp": [
      0,
      0,
      -1,
      4,
      -2
    ],
    "io_out": [
      2,
      0,
      -2,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(sort_des(input)),-2),-2),25)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-4, -14]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([2, 0],-5),4))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -4,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,-5),4))"
  },
  {
    "input": "input : list = [5, -3, 0, 2, 1]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(take([5, -3, 0, 2, 1],1),1)",
    "io_inp": [
      5,
      -3,
      0,
      2,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),1)"
  },
  {
    "input": "input : list = [4, 2, -4]\noutput : list = [1, -1, -7]",
    "output": "generated_output : list = add_n([4, 2, -4],-3)",
    "io_inp": [
      4,
      2,
      -4
    ],
    "io_out": [
      1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, -1, -3, -3]\noutput : list = [-3, -3, -1, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(sort_asc([2, -1, -3, -3])))),14)",
    "io_inp": [
      2,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(sort_asc(input)))),14)"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(take([1, 0, 4],1)),-5)),1)",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(take(input,1)),-5)),1)"
  },
  {
    "input": "input : list = [-2, -1, 1, -2, 2]\noutput : list = [3, 4]",
    "output": "generated_output : list = reverse(take(sub_n(drop(reverse([-2, -1, 1, -2, 2]),3),-5),34))",
    "io_inp": [
      -2,
      -1,
      1,
      -2,
      2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(drop(reverse(input),3),-5),34))"
  },
  {
    "input": "input : list = [3, -2, -4, 4, -3]\noutput : list = [3, 2, 1, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_asc([3, -2, -4, 4, -3]),-1))),1)",
    "io_inp": [
      3,
      -2,
      -4,
      4,
      -3
    ],
    "io_out": [
      3,
      2,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_asc(input),-1))),1)"
  },
  {
    "input": "input : list = [5, -2, 2, 1, 3, -4]\noutput : list = [-1, 1, 4, 5, 6, 8]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sub_n(sort_asc([5, -2, 2, 1, 3, -4]),-2),-3)),-4)",
    "io_inp": [
      5,
      -2,
      2,
      1,
      3,
      -4
    ],
    "io_out": [
      -1,
      1,
      4,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sub_n(sort_asc(input),-2),-3)),-4)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 2]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(reverse([1, 4]))),30),-1)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(reverse(input))),30),-1)"
  },
  {
    "input": "input : list = [-1, 0, 2, 3, 1, 4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(take([-1, 0, 2, 3, 1, 4],1),-2),3)),4)",
    "io_inp": [
      -1,
      0,
      2,
      3,
      1,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(take(input,1),-2),3)),4)"
  },
  {
    "input": "input : list = [1, -5, -2, -4, -3, 5]\noutput : list = [2, 8, 12, 14]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(take([1, -5, -2, -4, -3, 5],4),2),-4),-1))",
    "io_inp": [
      1,
      -5,
      -2,
      -4,
      -3,
      5
    ],
    "io_out": [
      2,
      8,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(take(input,4),2),-4),-1))"
  },
  {
    "input": "input : list = [-4, -4, -4, -5, 3]\noutput : list = [3, -4, -4, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-4, -4, -4, -5, 3]))",
    "io_inp": [
      -4,
      -4,
      -4,
      -5,
      3
    ],
    "io_out": [
      3,
      -4,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -1, 4, -2, -2, -2]\noutput : list = [-6, -6, -1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(take([-1, -1, 4, -2, -2, -2],3),2)),3))",
    "io_inp": [
      -1,
      -1,
      4,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(take(input,3),2)),3))"
  },
  {
    "input": "input : list = [-1, 5, 2, -2]\noutput : list = [6, 3, 0, -1]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n([-1, 5, 2, -2],1)))))",
    "io_inp": [
      -1,
      5,
      2,
      -2
    ],
    "io_out": [
      6,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n(input,1)))))"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(take([-5, 5, -3],1)),17),1),-1)",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(take(input,1)),17),1),-1)"
  },
  {
    "input": "input : list = [0, 2, -3, 2]\noutput : list = [-3, -3, -5, -8]",
    "output": "generated_output : list = add_n(take(sort_des(take(add_n([0, 2, -3, 2],-2),20)),6),-3)",
    "io_inp": [
      0,
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(add_n(input,-2),20)),6),-3)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-10, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(mul_n([-3, 1],-5),-5))))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(mul_n(input,-5),-5))))"
  },
  {
    "input": "input : list = [-4, -5, 3, -2, 2]\noutput : list = [-6, -3, 9, 15, 18]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des(reverse([-4, -5, 3, -2, 2]))),-1),-3)",
    "io_inp": [
      -4,
      -5,
      3,
      -2,
      2
    ],
    "io_out": [
      -6,
      -3,
      9,
      15,
      18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(reverse(input))),-1),-3)"
  },
  {
    "input": "input : list = [-4, -3, -1, 3, 3]\noutput : list = [11, 11, 7, 5, 4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(add_n([-4, -3, -1, 3, 3],4),-5),1)))",
    "io_inp": [
      -4,
      -3,
      -1,
      3,
      3
    ],
    "io_out": [
      11,
      11,
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(add_n(input,4),-5),1)))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [5, 20]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(mul_n([-4, -1],-5),6))))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      5,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(mul_n(input,-5),6))))"
  },
  {
    "input": "input : list = [-1, 1, -2, -1]\noutput : list = [1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc([-1, 1, -2, -1]),3)))",
    "io_inp": [
      -1,
      1,
      -2,
      -1
    ],
    "io_out": [
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(input),3)))"
  },
  {
    "input": "input : list = [4, 3, -3, -4, 3]\noutput : list = [-13, -12, -6, -6, -5]",
    "output": "generated_output : list = add_n(sort_asc(add_n([4, 3, -3, -4, 3],-4)),-5)",
    "io_inp": [
      4,
      3,
      -3,
      -4,
      3
    ],
    "io_out": [
      -13,
      -12,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,-4)),-5)"
  },
  {
    "input": "input : list = [-3, -2, -2, -4, 1, -1]\noutput : list = [3, 1, 0, 0, -1, -2]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc([-3, -2, -2, -4, 1, -1]),1),3)),-1)",
    "io_inp": [
      -3,
      -2,
      -2,
      -4,
      1,
      -1
    ],
    "io_out": [
      3,
      1,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc(input),1),3)),-1)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(take([2, 0, -3],1),-5),1)),5)",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(take(input,1),-5),1)),5)"
  },
  {
    "input": "input : list = [0, -3, -1, -5]\noutput : list = [-14, -8, -2, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(mul_n([0, -3, -1, -5],3))),-1))",
    "io_inp": [
      0,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -14,
      -8,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(mul_n(input,3))),-1))"
  },
  {
    "input": "input : list = [-1, 3, 0, 4]\noutput : list = [3, 2, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n([-1, 3, 0, 4],1))",
    "io_inp": [
      -1,
      3,
      0,
      4
    ],
    "io_out": [
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,1))"
  },
  {
    "input": "input : list = [-4, 2, 1, 0]\noutput : list = [0, 1, 2, -4]",
    "output": "generated_output : list = reverse([-4, 2, 1, 0])",
    "io_inp": [
      -4,
      2,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2, -4, 5, 4]\noutput : list = [-9, -3, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([5, 2, -4, 5, 4]),-5))",
    "io_inp": [
      5,
      2,
      -4,
      5,
      4
    ],
    "io_out": [
      -9,
      -3,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [2, -1, 3, -4, -2]\noutput : list = [3, -9, 7, -21, -13]",
    "output": "generated_output : list = add_n(sub_n(mul_n([2, -1, 3, -4, -2],4),4),-1)",
    "io_inp": [
      2,
      -1,
      3,
      -4,
      -2
    ],
    "io_out": [
      3,
      -9,
      7,
      -21,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,4),4),-1)"
  },
  {
    "input": "input : list = [-4, -1, -1, 5, 1, -3]\noutput : list = [20, 5, 5, -25, -5, 15]",
    "output": "generated_output : list = mul_n([-4, -1, -1, 5, 1, -3],-5)",
    "io_inp": [
      -4,
      -1,
      -1,
      5,
      1,
      -3
    ],
    "io_out": [
      20,
      5,
      5,
      -25,
      -5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 4, -1, 4, 5]\noutput : list = [5, 4, 4, -1, -3]",
    "output": "generated_output : list = sort_des(add_n(sub_n([-3, 4, -1, 4, 5],-4),-4))",
    "io_inp": [
      -3,
      4,
      -1,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,-4),-4))"
  },
  {
    "input": "input : list = [-5, 3, 2, 1, 3]\noutput : list = [-10, -2, -3, -4, -2]",
    "output": "generated_output : list = reverse(sub_n(take(take(reverse([-5, 3, 2, 1, 3]),8),27),5))",
    "io_inp": [
      -5,
      3,
      2,
      1,
      3
    ],
    "io_out": [
      -10,
      -2,
      -3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(reverse(input),8),27),5))"
  },
  {
    "input": "input : list = [5, -1, 1, 1, 5]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = drop([5, -1, 1, 1, 5],2)",
    "io_inp": [
      5,
      -1,
      1,
      1,
      5
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -5, -4, 4, 1, -1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = take(sub_n(take(reverse([5, -5, -4, 4, 1, -1]),2),5),32)",
    "io_inp": [
      5,
      -5,
      -4,
      4,
      1,
      -1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(input),2),5),32)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take(add_n([-5, -5],5),1))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,5),1))"
  },
  {
    "input": "input : list = [-1, -1, 4, -3, 3, 4]\noutput : list = [-15]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des([-1, -1, 4, -3, 3, 4]),1),-4),-1)",
    "io_inp": [
      -1,
      -1,
      4,
      -3,
      3,
      4
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(input),1),-4),-1)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-19, 11]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(mul_n([1, -1],3)),5),-4),32)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -19,
      11
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(mul_n(input,3)),5),-4),32)"
  },
  {
    "input": "input : list = [3, -5, 4, -2]\noutput : list = [4, -4, 5, -1]",
    "output": "generated_output : list = add_n([3, -5, 4, -2],1)",
    "io_inp": [
      3,
      -5,
      4,
      -2
    ],
    "io_out": [
      4,
      -4,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, 5, 4, -3, -5, 5]\noutput : list = [44, 28, 12, -28, -36]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(mul_n([-1, 5, 4, -3, -5, 5],-4),5)),2),4)",
    "io_inp": [
      -1,
      5,
      4,
      -3,
      -5,
      5
    ],
    "io_out": [
      44,
      28,
      12,
      -28,
      -36
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(mul_n(input,-4),5)),2),4)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(sort_des([3, 1])))))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n(reverse([-1, -5]),5)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [0, 3, 5, -1, -4, -3]\noutput : list = [-14, -10, -2, 2, 14, 22]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n([0, 3, 5, -1, -4, -3],4)))),-2)",
    "io_inp": [
      0,
      3,
      5,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -14,
      -10,
      -2,
      2,
      14,
      22
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n(input,4)))),-2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = mul_n([2, -4],1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [5, 2, -1, -2, 4, -3]\noutput : list = [2, -1, -2, 4, -3]",
    "output": "generated_output : list = drop([5, 2, -1, -2, 4, -3],1)",
    "io_inp": [
      5,
      2,
      -1,
      -2,
      4,
      -3
    ],
    "io_out": [
      2,
      -1,
      -2,
      4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 4, 1, 1]\noutput : list = [-5, -7, -8, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(add_n([2, 4, 1, 1],-5),-1))),-5)",
    "io_inp": [
      2,
      4,
      1,
      1
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(add_n(input,-5),-1))),-5)"
  },
  {
    "input": "input : list = [5, 2, 5, -1]\noutput : list = [-60, -60, -24, 12]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(mul_n([5, 2, 5, -1],-4)),-3),-1))",
    "io_inp": [
      5,
      2,
      5,
      -1
    ],
    "io_out": [
      -60,
      -60,
      -24,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(mul_n(input,-4)),-3),-1))"
  },
  {
    "input": "input : list = [5, -1, -5, 2]\noutput : list = [5, 2, -1, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(reverse([5, -1, -5, 2])))))",
    "io_inp": [
      5,
      -1,
      -5,
      2
    ],
    "io_out": [
      5,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-9, -9, 12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([4, -3, -3]),3),1)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -9,
      -9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),3),1)"
  },
  {
    "input": "input : list = [0, 0, 3, -5, 4, -3]\noutput : list = [36, 26, -4]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc(mul_n([0, 0, 3, -5, 4, -3],-5)),2),-2),3)",
    "io_inp": [
      0,
      0,
      3,
      -5,
      4,
      -3
    ],
    "io_out": [
      36,
      26,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(mul_n(input,-5)),2),-2),3)"
  },
  {
    "input": "input : list = [-1, 4, 3, -2, 2]\noutput : list = [4, -16]",
    "output": "generated_output : list = take(mul_n(take([-1, 4, 3, -2, 2],2),-4),29)",
    "io_inp": [
      -1,
      4,
      3,
      -2,
      2
    ],
    "io_out": [
      4,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,2),-4),29)"
  },
  {
    "input": "input : list = [-1, 4, -2, -4, -1, 3]\noutput : list = [-4, -2, -1, -1, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(sort_asc([-1, 4, -2, -4, -1, 3])),1)))",
    "io_inp": [
      -1,
      4,
      -2,
      -4,
      -1,
      3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-3, 4]",
    "output": "generated_output : list = take(add_n(add_n(add_n([-2, 5],-1),-3),3),6)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(input,-1),-3),3),6)"
  },
  {
    "input": "input : list = [4, -3, -2, 4, -1]\noutput : list = [4, 4, -1, -2, -3]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(sort_asc([4, -3, -2, 4, -1]))),6))",
    "io_inp": [
      4,
      -3,
      -2,
      4,
      -1
    ],
    "io_out": [
      4,
      4,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(sort_asc(input))),6))"
  },
  {
    "input": "input : list = [3, -2, 1, -4, 5, -4]\noutput : list = [5, -4, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(drop([3, -2, 1, -4, 5, -4],3)))),37)",
    "io_inp": [
      3,
      -2,
      1,
      -4,
      5,
      -4
    ],
    "io_out": [
      5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(drop(input,3)))),37)"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [-120, -120, 105]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(mul_n([3, 3, -2],5),-3),3),4),-3)",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      -120,
      -120,
      105
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(mul_n(input,5),-3),3),4),-3)"
  },
  {
    "input": "input : list = [-1, -5, 0, -3, 1, 5]\noutput : list = [-5, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(take([-1, -5, 0, -3, 1, 5],4))",
    "io_inp": [
      -1,
      -5,
      0,
      -3,
      1,
      5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,4))"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -3, -4],1)",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n(drop([-2, -4, 0],1),4)),1))",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(drop(input,1),4)),1))"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-12, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([-3, -4, -4]),4))",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [1, 10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([5, -4]),-1),-4)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      1,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),-1),-4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-2, -4]",
    "output": "generated_output : list = add_n(add_n([-3, -5],3),-2)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [4, -2, 4, 2, -2, 3]\noutput : list = [1, 1, -3, -4, -5, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(reverse([4, -2, 4, 2, -2, 3]),-1))),-1)",
    "io_inp": [
      4,
      -2,
      4,
      2,
      -2,
      3
    ],
    "io_out": [
      1,
      1,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(reverse(input),-1))),-1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-2, -8]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(mul_n([-2, -5],2)),2)),17)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(mul_n(input,2)),2)),17)"
  },
  {
    "input": "input : list = [2, -5, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(sub_n(drop([2, -5, -2],1),-3),5)",
    "io_inp": [
      2,
      -5,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,1),-3),5)"
  },
  {
    "input": "input : list = [-4, -4, -1, 0, -2, 5]\noutput : list = [0, -5, -6, -7, -9, -9]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(sort_asc([-4, -4, -1, 0, -2, 5]),5))),40)",
    "io_inp": [
      -4,
      -4,
      -1,
      0,
      -2,
      5
    ],
    "io_out": [
      0,
      -5,
      -6,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(sort_asc(input),5))),40)"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sub_n(take(take(add_n(add_n([-4, 1, -5],-5),3),2),35),-5)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(add_n(input,-5),3),2),35),-5)"
  },
  {
    "input": "input : list = [2, 2, 1, -5, 0]\noutput : list = [-3, -3, -4, -10, -5]",
    "output": "generated_output : list = add_n([2, 2, 1, -5, 0],-5)",
    "io_inp": [
      2,
      2,
      1,
      -5,
      0
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -3, -1, 3]\noutput : list = [5, 1, -1, 1]",
    "output": "generated_output : list = add_n(reverse([-1, -3, -1, 3]),2)",
    "io_inp": [
      -1,
      -3,
      -1,
      3
    ],
    "io_out": [
      5,
      1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(reverse([-3, 0, 4]),3),2),2),-4)",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(reverse(input),3),2),2),-4)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -10]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des([0, -5])),2))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(input)),2))"
  },
  {
    "input": "input : list = [0, -1, -1, 1, -1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(reverse(take([0, -1, -1, 1, -1],1)),-1)",
    "io_inp": [
      0,
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,1)),-1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-8, -6]",
    "output": "generated_output : list = add_n(add_n(sub_n([-2, 0],3),1),-4)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,3),1),-4)"
  },
  {
    "input": "input : list = [-2, 1, 2, 3, -1, -4]\noutput : list = [-6, -4, -2, 2, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sort_asc([-2, 1, 2, 3, -1, -4]))),-2))",
    "io_inp": [
      -2,
      1,
      2,
      3,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -4,
      -2,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [2, 2, 3, 0, 1, 3]\noutput : list = [-33, -33, -48, -3, -18, -48]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(mul_n([2, 2, 3, 0, 1, 3],5),2),11),3),-3)",
    "io_inp": [
      2,
      2,
      3,
      0,
      1,
      3
    ],
    "io_out": [
      -33,
      -33,
      -48,
      -3,
      -18,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(mul_n(input,5),2),11),3),-3)"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [6, 3, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n([4, -1, -2],-3)))",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      6,
      3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [-1, 4, 0, -5]\noutput : list = [4, 0, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(add_n([-1, 4, 0, -5],-4)),4)))",
    "io_inp": [
      -1,
      4,
      0,
      -5
    ],
    "io_out": [
      4,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(add_n(input,-4)),4)))"
  },
  {
    "input": "input : list = [-2, -1, 3, -5, -4]\noutput : list = [-5, -8, 16]",
    "output": "generated_output : list = add_n(reverse(sub_n(drop(mul_n([-2, -1, 3, -5, -4],3),2),-4)),3)",
    "io_inp": [
      -2,
      -1,
      3,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -8,
      16
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(drop(mul_n(input,3),2),-4)),3)"
  },
  {
    "input": "input : list = [5, 4, -3, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(take([5, 4, -3, 0],1))),-2))",
    "io_inp": [
      5,
      4,
      -3,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(take(input,1))),-2))"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = sort_asc([1, 5, 1])",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [0, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(add_n([-1, -1, 3],1)),4)))",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(add_n(input,1)),4)))"
  },
  {
    "input": "input : list = [-1, 1, -4, -4, -4, 3]\noutput : list = [8, 1, 1, 1, 6]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(drop([-1, 1, -4, -4, -4, 3],1)),-1),-4),40)",
    "io_inp": [
      -1,
      1,
      -4,
      -4,
      -4,
      3
    ],
    "io_out": [
      8,
      1,
      1,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(drop(input,1)),-1),-4),40)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-12, -12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sort_des([-1, -1]),-2)),4),-2)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sort_des(input),-2)),4),-2)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = drop(reverse(sort_des(sub_n(sub_n([1, 0, 0],5),-1))),1)",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_des(sub_n(sub_n(input,5),-1))),1)"
  },
  {
    "input": "input : list = [1, -5, 4, -2, 2]\noutput : list = [0, -2, -3, -6, -9]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc([1, -5, 4, -2, 2]),-3),1))",
    "io_inp": [
      1,
      -5,
      4,
      -2,
      2
    ],
    "io_out": [
      0,
      -2,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(input),-3),1))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse([1, -4])",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 1, -5, -4]\noutput : list = [-40, -31, -31, 14]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(mul_n([-4, 1, -5, -4],3)),3),-5))",
    "io_inp": [
      -4,
      1,
      -5,
      -4
    ],
    "io_out": [
      -40,
      -31,
      -31,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(mul_n(input,3)),3),-5))"
  },
  {
    "input": "input : list = [-2, 3, -3, 4, -4, -2]\noutput : list = [-2, -1, 0, 0, 5, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des([-2, 3, -3, 4, -4, -2])),2)",
    "io_inp": [
      -2,
      3,
      -3,
      4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      0,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(mul_n([4, 4],-1))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [-11, -6, -5]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([0, -5, 1],-3)),3)",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      -11,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,-3)),3)"
  },
  {
    "input": "input : list = [5, 1, 1, -1, -2]\noutput : list = [-8, -7, -5, -5, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(add_n([5, 1, 1, -1, -2],-2),-3),1)))",
    "io_inp": [
      5,
      1,
      1,
      -1,
      -2
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(add_n(input,-2),-3),1)))"
  },
  {
    "input": "input : list = [-5, -5, 5, 3, 5, 2]\noutput : list = [-14, 16, 16]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(take([-5, -5, 5, 3, 5, 2],3),10),-3)),1)",
    "io_inp": [
      -5,
      -5,
      5,
      3,
      5,
      2
    ],
    "io_out": [
      -14,
      16,
      16
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(take(input,3),10),-3)),1)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(sort_des([1, 1]),1),1)))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(sort_des(input),1),1)))"
  },
  {
    "input": "input : list = [-4, 4, -3, 3, 3, 5]\noutput : list = [2, 4, 16, 16, 18, 20]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(mul_n(add_n([-4, 4, -3, 3, 3, 5],4),2))),-2)",
    "io_inp": [
      -4,
      4,
      -3,
      3,
      3,
      5
    ],
    "io_out": [
      2,
      4,
      16,
      16,
      18,
      20
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(mul_n(add_n(input,4),2))),-2)"
  },
  {
    "input": "input : list = [-1, 4, 3, 4]\noutput : list = [-1]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(take([-1, 4, 3, 4],1)),-2)),-1)",
    "io_inp": [
      -1,
      4,
      3,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(take(input,1)),-2)),-1)"
  },
  {
    "input": "input : list = [3, 0, -5, 1, -2, -4]\noutput : list = [4, 3, 1, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(drop([3, 0, -5, 1, -2, -4],1),-3))))",
    "io_inp": [
      3,
      0,
      -5,
      1,
      -2,
      -4
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sort_des([-1, -1]),3))))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(mul_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [0, 3, 3, -1, 4]\noutput : list = [5, 8, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(take([0, 3, 3, -1, 4],3),-1)),-4))",
    "io_inp": [
      0,
      3,
      3,
      -1,
      4
    ],
    "io_out": [
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(take(input,3),-1)),-4))"
  },
  {
    "input": "input : list = [4, 5, -2, 3, 5, -2]\noutput : list = [4, 5, -2, 3]",
    "output": "generated_output : list = take([4, 5, -2, 3, 5, -2],4)",
    "io_inp": [
      4,
      5,
      -2,
      3,
      5,
      -2
    ],
    "io_out": [
      4,
      5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [-6, 12, 18]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n(mul_n([3, -3, -5],-3),-2),-4),3),-1)",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      -6,
      12,
      18
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(mul_n(input,-3),-2),-4),3),-1)"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [3, -5, 1]",
    "output": "generated_output : list = sub_n([5, -3, 3],2)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      3,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, -2, 0, -4, -2]\noutput : list = [-3, -5, -1, -3, -2]",
    "output": "generated_output : list = reverse(add_n([-1, -2, 0, -4, -2],-1))",
    "io_inp": [
      -1,
      -2,
      0,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -5,
      -1,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [2, -1, 5, -1, -5, 4]\noutput : list = [-2, 1, -5, 1, 5, -4]",
    "output": "generated_output : list = mul_n([2, -1, 5, -1, -5, 4],-1)",
    "io_inp": [
      2,
      -1,
      5,
      -1,
      -5,
      4
    ],
    "io_out": [
      -2,
      1,
      -5,
      1,
      5,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [3, 1, 2, 2, 2, 4]\noutput : list = [-3, -2, -2, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(add_n([3, 1, 2, 2, 2, 4],-5)),1),20))",
    "io_inp": [
      3,
      1,
      2,
      2,
      2,
      4
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(add_n(input,-5)),1),20))"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [-24, -36, -48]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(add_n([-3, -5, -4],1),-4)),-3),47)",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      -24,
      -36,
      -48
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(add_n(input,1),-4)),-3),47)"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = drop([-2, 4, 3],1)",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -2, -2, 0, -1, 5]\noutput : list = [11, 6, 5, 4, 4, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sub_n([-2, -2, -2, 0, -1, 5],-5),-5)),4))",
    "io_inp": [
      -2,
      -2,
      -2,
      0,
      -1,
      5
    ],
    "io_out": [
      11,
      6,
      5,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(sub_n(input,-5),-5)),4))"
  },
  {
    "input": "input : list = [-4, -2, 1]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(take([-4, -2, 1],1),9))",
    "io_inp": [
      -4,
      -2,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,1),9))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, -9]",
    "output": "generated_output : list = take(mul_n([0, 3],-3),12)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),12)"
  },
  {
    "input": "input : list = [4, 3, -5, 2, -5, -3]\noutput : list = [-16, -12, -8, 12, 20, 20]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc([4, 3, -5, 2, -5, -3]),-2),2))",
    "io_inp": [
      4,
      3,
      -5,
      2,
      -5,
      -3
    ],
    "io_out": [
      -16,
      -12,
      -8,
      12,
      20,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(input),-2),2))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -8]",
    "output": "generated_output : list = reverse(mul_n([-4, 0],2))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-7, -1]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc([4, -2]))),-5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [4, -3, 1, 5, -5, 1]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(take(take([4, -3, 1, 5, -5, 1],2),26),14)",
    "io_inp": [
      4,
      -3,
      1,
      5,
      -5,
      1
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(take(take(input,2),26),14)"
  },
  {
    "input": "input : list = [-5, 5, -2]\noutput : list = [-6, -3, 4]",
    "output": "generated_output : list = take(take(add_n(sort_asc(sort_asc([-5, 5, -2])),-1),20),16)",
    "io_inp": [
      -5,
      5,
      -2
    ],
    "io_out": [
      -6,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(sort_asc(input)),-1),20),16)"
  },
  {
    "input": "input : list = [2, -3, 5, 2]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -3, 5, 2],1)",
    "io_inp": [
      2,
      -3,
      5,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-20, 4]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(add_n([-3, 3],-5))),3),4)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(add_n(input,-5))),3),4)"
  },
  {
    "input": "input : list = [-3, 2, -4, -3, -2]\noutput : list = [2, 3, 8]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(take([-3, 2, -4, -3, -2],3),4),2)),29)",
    "io_inp": [
      -3,
      2,
      -4,
      -3,
      -2
    ],
    "io_out": [
      2,
      3,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(take(input,3),4),2)),29)"
  },
  {
    "input": "input : list = [-5, -2, 3, 5, 3, 5]\noutput : list = [25, 10, -15, -15, -25, -25]",
    "output": "generated_output : list = sort_des(mul_n([-5, -2, 3, 5, 3, 5],-5))",
    "io_inp": [
      -5,
      -2,
      3,
      5,
      3,
      5
    ],
    "io_out": [
      25,
      10,
      -15,
      -15,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(sort_asc([2, 5]),1),19)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(sort_asc(input),1),19)))"
  },
  {
    "input": "input : list = [2, -2, -3, 2]\noutput : list = [-3, -2, 2, 2]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des([2, -2, -3, 2]))),14)",
    "io_inp": [
      2,
      -2,
      -3,
      2
    ],
    "io_out": [
      -3,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(input))),14)"
  },
  {
    "input": "input : list = [3, -1, 1, -2]\noutput : list = [0, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(reverse([3, -1, 1, -2]),2),29)))",
    "io_inp": [
      3,
      -1,
      1,
      -2
    ],
    "io_out": [
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(reverse(input),2),29)))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [5, 3]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(sub_n([-4, -2],-3)),5),-5),-1)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(sub_n(input,-3)),5),-5),-1)"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [5]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(take([-1, -3, 1],1),-5),15)))",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(take(input,1),-5),15)))"
  },
  {
    "input": "input : list = [-4, -2, -4, 5, 0]\noutput : list = [-3, -3, -1, 1, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(reverse([-4, -2, -4, 5, 0])))),1)",
    "io_inp": [
      -4,
      -2,
      -4,
      5,
      0
    ],
    "io_out": [
      -3,
      -3,
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(reverse(input)))),1)"
  },
  {
    "input": "input : list = [4, 5, 4, -2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(reverse(add_n(drop(sort_asc([4, 5, 4, -2]),2),-1)),1)",
    "io_inp": [
      4,
      5,
      4,
      -2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(drop(sort_asc(input),2),-1)),1)"
  },
  {
    "input": "input : list = [-2, -4, 4, -2, 5, 4]\noutput : list = [-125, -100]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(drop([-2, -4, 4, -2, 5, 4],4))),-5),5)",
    "io_inp": [
      -2,
      -4,
      4,
      -2,
      5,
      4
    ],
    "io_out": [
      -125,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(drop(input,4))),-5),5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse([-3, -3]),-3))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [-2, 0, -5, -2, 0, 2]\noutput : list = [6, 10, 14, 20, 10, 14]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n(reverse([-2, 0, -5, -2, 0, 2]),3),-1),2),2)",
    "io_inp": [
      -2,
      0,
      -5,
      -2,
      0,
      2
    ],
    "io_out": [
      6,
      10,
      14,
      20,
      10,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(reverse(input),3),-1),2),2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-9, -2]",
    "output": "generated_output : list = add_n(take(sort_asc([2, -5]),10),-4)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),10),-4)"
  },
  {
    "input": "input : list = [1, -1, -3, -3, -3, 3]\noutput : list = [0, 0, 0, 2, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(reverse([1, -1, -3, -3, -3, 3]),-2),5)))",
    "io_inp": [
      1,
      -1,
      -3,
      -3,
      -3,
      3
    ],
    "io_out": [
      0,
      0,
      0,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(reverse(input),-2),5)))"
  },
  {
    "input": "input : list = [5, -4, 2, -2, 2, 0]\noutput : list = [-9, -7, -5, -3, -3, 0]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(sort_des([5, -4, 2, -2, 2, 0]),1)),-4),1)",
    "io_inp": [
      5,
      -4,
      2,
      -2,
      2,
      0
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(sort_des(input),1)),-4),1)"
  },
  {
    "input": "input : list = [-1, 0, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse(drop([-1, 0, 1, 4],2))",
    "io_inp": [
      -1,
      0,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [3, -2, 3, 5, 3, 0]\noutput : list = [8, -12, 8, 16, 8, -4]",
    "output": "generated_output : list = add_n(mul_n([3, -2, 3, 5, 3, 0],4),-4)",
    "io_inp": [
      3,
      -2,
      3,
      5,
      3,
      0
    ],
    "io_out": [
      8,
      -12,
      8,
      16,
      8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),-4)"
  },
  {
    "input": "input : list = [-5, 5, 0]\noutput : list = [6, 1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(drop([-5, 5, 0],1)),1)))",
    "io_inp": [
      -5,
      5,
      0
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(drop(input,1)),1)))"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [45, 33, 21]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n([-3, -4, -2],4),1),-3),3))",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      45,
      33,
      21
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(mul_n(input,4),1),-3),3))"
  },
  {
    "input": "input : list = [3, 1, -4, 1, -5, 4]\noutput : list = [-3, -4, -6, -6, -11, -12]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n([3, 1, -4, 1, -5, 4],4)),-1),4)",
    "io_inp": [
      3,
      1,
      -4,
      1,
      -5,
      4
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -6,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(input,4)),-1),4)"
  },
  {
    "input": "input : list = [-5, 3, 3, -5, 2]\noutput : list = [-10, -10, -3, -2, -2]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc([-5, 3, 3, -5, 2]),-1)),-4))",
    "io_inp": [
      -5,
      3,
      3,
      -5,
      2
    ],
    "io_out": [
      -10,
      -10,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc(input),-1)),-4))"
  },
  {
    "input": "input : list = [-3, 4, -1, 3, 2]\noutput : list = [2, 3, -1, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, -1, 3, 2])",
    "io_inp": [
      -3,
      4,
      -1,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      -1,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, -2, 2, 1]\noutput : list = [-2, 0, -7, -3, -4]",
    "output": "generated_output : list = sub_n([3, 5, -2, 2, 1],5)",
    "io_inp": [
      3,
      5,
      -2,
      2,
      1
    ],
    "io_out": [
      -2,
      0,
      -7,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [0, -4, -2, 4, -1]\noutput : list = [-4, -12, -8, 4, -6]",
    "output": "generated_output : list = mul_n(add_n([0, -4, -2, 4, -1],-2),2)",
    "io_inp": [
      0,
      -4,
      -2,
      4,
      -1
    ],
    "io_out": [
      -4,
      -12,
      -8,
      4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),2)"
  },
  {
    "input": "input : list = [3, 2, -5, 1]\noutput : list = [40, 25]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(take([3, 2, -5, 1],2),10),-3),-1),-5)",
    "io_inp": [
      3,
      2,
      -5,
      1
    ],
    "io_out": [
      40,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(take(input,2),10),-3),-1),-5)"
  },
  {
    "input": "input : list = [4, -4, 0, -3]\noutput : list = [-36, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(drop([4, -4, 0, -3],2))),-3),-4)",
    "io_inp": [
      4,
      -4,
      0,
      -3
    ],
    "io_out": [
      -36,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(drop(input,2))),-3),-4)"
  },
  {
    "input": "input : list = [3, 3, -2, -2, -3, 1]\noutput : list = [7, 7, 2, 2, 1, 5]",
    "output": "generated_output : list = add_n([3, 3, -2, -2, -3, 1],4)",
    "io_inp": [
      3,
      3,
      -2,
      -2,
      -3,
      1
    ],
    "io_out": [
      7,
      7,
      2,
      2,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 0, 0, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(mul_n(take([0, 0, 0, 3],2),-2),3)",
    "io_inp": [
      0,
      0,
      0,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,2),-2),3)"
  },
  {
    "input": "input : list = [1, -4, -4, 2, -5, 5]\noutput : list = [-7, -7, 17, -11, 29]",
    "output": "generated_output : list = add_n(mul_n(take(drop(sub_n([1, -4, -4, 2, -5, 5],-1),1),19),4),5)",
    "io_inp": [
      1,
      -4,
      -4,
      2,
      -5,
      5
    ],
    "io_out": [
      -7,
      -7,
      17,
      -11,
      29
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(drop(sub_n(input,-1),1),19),4),5)"
  },
  {
    "input": "input : list = [-1, -2, 1, -2, 0]\noutput : list = [-9, -10, -7, -10, -8]",
    "output": "generated_output : list = add_n(add_n([-1, -2, 1, -2, 0],-5),-3)",
    "io_inp": [
      -1,
      -2,
      1,
      -2,
      0
    ],
    "io_out": [
      -9,
      -10,
      -7,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),-3)"
  },
  {
    "input": "input : list = [4, -2, -2, 2]\noutput : list = [-2, -2, 2]",
    "output": "generated_output : list = drop([4, -2, -2, 2],1)",
    "io_inp": [
      4,
      -2,
      -2,
      2
    ],
    "io_out": [
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [1, 3, 6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(add_n([2, 0, -3],-3)),-1)))",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      1,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(add_n(input,-3)),-1)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [6, 3]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n([-1, -2],1),-3)))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(input,1),-3)))"
  },
  {
    "input": "input : list = [2, -4, 2, -4, -4, -5]\noutput : list = [-5, -4, -4, 2, -4, 2]",
    "output": "generated_output : list = reverse([2, -4, 2, -4, -4, -5])",
    "io_inp": [
      2,
      -4,
      2,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2, 4, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(take([-5, 2, 4, -5],2))",
    "io_inp": [
      -5,
      2,
      4,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-1, -8]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(add_n([4, -3],-5)))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [-8, 4, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_des([2, -2, 5]),5),3),-4))",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      -8,
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_des(input),5),3),-4))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(mul_n([-1, -1],-5),-1))))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(mul_n(input,-5),-1))))"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(reverse([-5, 3, 0])),-3),5))",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(reverse(input)),-3),5))"
  },
  {
    "input": "input : list = [-2, 3, -2, 1, 2]\noutput : list = [-9, -6, -3, 6, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([-2, 3, -2, 1, 2]),-3))",
    "io_inp": [
      -2,
      3,
      -2,
      1,
      2
    ],
    "io_out": [
      -9,
      -6,
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [5, 4, 1, -3, 3]\noutput : list = [2, 6, 8, 9, 10]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(sort_asc([5, 4, 1, -3, 3])),-5),42))",
    "io_inp": [
      5,
      4,
      1,
      -3,
      3
    ],
    "io_out": [
      2,
      6,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(sort_asc(input)),-5),42))"
  },
  {
    "input": "input : list = [-4, 0, -5, 5, 2, 3]\noutput : list = [-28, -26, -18, -14, -12, -8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sub_n([-4, 0, -5, 5, 2, 3],4),1),5),2))",
    "io_inp": [
      -4,
      0,
      -5,
      5,
      2,
      3
    ],
    "io_out": [
      -28,
      -26,
      -18,
      -14,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sub_n(input,4),1),5),2))"
  },
  {
    "input": "input : list = [-2, -5, 0, 0]\noutput : list = [-4, -7, -2]",
    "output": "generated_output : list = take(take(take(add_n([-2, -5, 0, 0],-2),3),23),34)",
    "io_inp": [
      -2,
      -5,
      0,
      0
    ],
    "io_out": [
      -4,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(input,-2),3),23),34)"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [1, -2, -11]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_asc([2, 1, 5]),-3),4)))",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      1,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_asc(input),-3),4)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [20, 25]",
    "output": "generated_output : list = mul_n([-4, -5],-5)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [1, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(sub_n([-2, 3],-2),2),2),-3))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(sub_n(input,-2),2),2),-3))"
  },
  {
    "input": "input : list = [-4, -3, -2, -4]\noutput : list = [8, 6, 4, 8]",
    "output": "generated_output : list = mul_n([-4, -3, -2, -4],-2)",
    "io_inp": [
      -4,
      -3,
      -2,
      -4
    ],
    "io_out": [
      8,
      6,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -5, 0, -2]\noutput : list = [-6, 0, -15, -6]",
    "output": "generated_output : list = take(mul_n(reverse([-2, -5, 0, -2]),3),24)",
    "io_inp": [
      -2,
      -5,
      0,
      -2
    ],
    "io_out": [
      -6,
      0,
      -15,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),3),24)"
  },
  {
    "input": "input : list = [5, -3, -1]\noutput : list = [68, 36, 44]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(add_n([5, -3, -1],5),5),-1),3),4)",
    "io_inp": [
      5,
      -3,
      -1
    ],
    "io_out": [
      68,
      36,
      44
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(add_n(input,5),5),-1),3),4)"
  },
  {
    "input": "input : list = [0, -5, 1, -2]\noutput : list = [0, 3, 5, 6]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(sub_n([0, -5, 1, -2],-2)),10),19),-3)",
    "io_inp": [
      0,
      -5,
      1,
      -2
    ],
    "io_out": [
      0,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(sub_n(input,-2)),10),19),-3)"
  },
  {
    "input": "input : list = [2, -5, -2, 5, 2]\noutput : list = [4, -17, -8, 13, 4]",
    "output": "generated_output : list = add_n(mul_n([2, -5, -2, 5, 2],3),-2)",
    "io_inp": [
      2,
      -5,
      -2,
      5,
      2
    ],
    "io_out": [
      4,
      -17,
      -8,
      13,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),-2)"
  },
  {
    "input": "input : list = [-5, -2, 5, -3, 1, 2]\noutput : list = [8, 4, -12, 20, -8, -20]",
    "output": "generated_output : list = reverse(mul_n([-5, -2, 5, -3, 1, 2],4))",
    "io_inp": [
      -5,
      -2,
      5,
      -3,
      1,
      2
    ],
    "io_out": [
      8,
      4,
      -12,
      20,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [3, -3, 4, 5, -2, 4]\noutput : list = [5, 11, 12]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(drop([3, -3, 4, 5, -2, 4],3),14)),2),5)",
    "io_inp": [
      3,
      -3,
      4,
      5,
      -2,
      4
    ],
    "io_out": [
      5,
      11,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(drop(input,3),14)),2),5)"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [26, 1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(drop([3, 3, -2],1),-3),5),-4))",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      26,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(drop(input,1),-3),5),-4))"
  },
  {
    "input": "input : list = [-3, 2, -1, -3]\noutput : list = [1, 3, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop([-3, 2, -1, -3],1)))),-4)",
    "io_inp": [
      -3,
      2,
      -1,
      -3
    ],
    "io_out": [
      1,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop(input,1)))),-4)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-4, 14]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sort_des([-4, 5])),-2)),2)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -4,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sort_des(input)),-2)),2)"
  },
  {
    "input": "input : list = [5, -1, 0, 3, -5, 2]\noutput : list = [3, -3, -2, 1, -7, 0]",
    "output": "generated_output : list = take(take(mul_n(add_n(add_n([5, -1, 0, 3, -5, 2],-1),-1),1),34),39)",
    "io_inp": [
      5,
      -1,
      0,
      3,
      -5,
      2
    ],
    "io_out": [
      3,
      -3,
      -2,
      1,
      -7,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(add_n(input,-1),-1),1),34),39)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sub_n(sort_asc([-3, 0]),-1)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [5, 5, 9]",
    "output": "generated_output : list = sub_n(mul_n(reverse([3, 2, 2]),4),3)",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      5,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),4),3)"
  },
  {
    "input": "input : list = [-2, 2, -3, -2, -3, -4]\noutput : list = [2, 6, 1, 2, 1, 0]",
    "output": "generated_output : list = sub_n([-2, 2, -3, -2, -3, -4],-4)",
    "io_inp": [
      -2,
      2,
      -3,
      -2,
      -3,
      -4
    ],
    "io_out": [
      2,
      6,
      1,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(reverse([-4, -4]))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(mul_n(drop(reverse([0, -2, -3]),2),-4),25))",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(drop(reverse(input),2),-4),25))"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [-256, -32, -128]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(add_n([0, -3, 4],4),2),4),-4))",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      -256,
      -32,
      -128
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(add_n(input,4),2),4),-4))"
  },
  {
    "input": "input : list = [2, -4, 0, -3]\noutput : list = [8, 4, -8, -16]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(mul_n([2, -4, 0, -3],-1),-2)),-1),-4)",
    "io_inp": [
      2,
      -4,
      0,
      -3
    ],
    "io_out": [
      8,
      4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(mul_n(input,-1),-2)),-1),-4)"
  },
  {
    "input": "input : list = [0, 0, 0, -4]\noutput : list = [0, 0, 0, -4]",
    "output": "generated_output : list = sort_des(reverse([0, 0, 0, -4]))",
    "io_inp": [
      0,
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, 3, -2, 4, -3, 0]\noutput : list = [-2, -1, 1, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([0, 3, -2, 4, -3, 0],-5),4))",
    "io_inp": [
      0,
      3,
      -2,
      4,
      -3,
      0
    ],
    "io_out": [
      -2,
      -1,
      1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-5),4))"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 4, -4],1)",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -3, -5, 4]\noutput : list = [-1, -4, -6, 3]",
    "output": "generated_output : list = add_n([0, -3, -5, 4],-1)",
    "io_inp": [
      0,
      -3,
      -5,
      4
    ],
    "io_out": [
      -1,
      -4,
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(reverse([-4, 3])),-3),24))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(reverse(input)),-3),24))"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(take([0, 0, 1],1)))),5)",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(take(input,1)))),5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(add_n([5, 2],-5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [5, 2, -1, 0, -3, 1]\noutput : list = [-15, -6, 3, 0, 9, -3]",
    "output": "generated_output : list = mul_n([5, 2, -1, 0, -3, 1],-3)",
    "io_inp": [
      5,
      2,
      -1,
      0,
      -3,
      1
    ],
    "io_out": [
      -15,
      -6,
      3,
      0,
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [10, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_asc([3, 3]))),-3),4)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_asc(input))),-3),4)"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(reverse(add_n(take([-2, 1, -4],1),-4)))",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(input,1),-4)))"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [5, 12, 10]",
    "output": "generated_output : list = add_n(reverse(take(reverse(add_n([-4, 3, 1],5)),13)),4)",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      5,
      12,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(add_n(input,5)),13)),4)"
  },
  {
    "input": "input : list = [3, -4, 1, 5]\noutput : list = [3, -4, 1, 5]",
    "output": "generated_output : list = add_n(sub_n([3, -4, 1, 5],3),3)",
    "io_inp": [
      3,
      -4,
      1,
      5
    ],
    "io_out": [
      3,
      -4,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [-4, 0, 0, 4]\noutput : list = [-9, 11, 11, 31]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n([-4, 0, 0, 4],3),5),4),12)",
    "io_inp": [
      -4,
      0,
      0,
      4
    ],
    "io_out": [
      -9,
      11,
      11,
      31
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(input,3),5),4),12)"
  },
  {
    "input": "input : list = [3, -3, -2, 4, 0]\noutput : list = [-3, -2, 0, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(reverse([3, -3, -2, 4, 0])))))",
    "io_inp": [
      3,
      -3,
      -2,
      4,
      0
    ],
    "io_out": [
      -3,
      -2,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, -5, -5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse(take(reverse(reverse(drop([-2, -5, -5, 3],2))),3))",
    "io_inp": [
      -2,
      -5,
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(drop(input,2))),3))"
  },
  {
    "input": "input : list = [5, -2, -5]\noutput : list = [3, -4, -7]",
    "output": "generated_output : list = take(take(take(add_n([5, -2, -5],-2),15),6),8)",
    "io_inp": [
      5,
      -2,
      -5
    ],
    "io_out": [
      3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(input,-2),15),6),8)"
  },
  {
    "input": "input : list = [-5, 5, -3, 0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(drop([-5, 5, -3, 0, 2],3),2)))",
    "io_inp": [
      -5,
      5,
      -3,
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(drop(input,3),2)))"
  },
  {
    "input": "input : list = [4, 3, 0, 1]\noutput : list = [1, 0, 3, 4]",
    "output": "generated_output : list = reverse([4, 3, 0, 1])",
    "io_inp": [
      4,
      3,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, -3, -1, 4]\noutput : list = [8, 3, 1, 1, 8]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(reverse([4, -3, -3, -1, 4]),4),2),28),2)",
    "io_inp": [
      4,
      -3,
      -3,
      -1,
      4
    ],
    "io_out": [
      8,
      3,
      1,
      1,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(reverse(input),4),2),28),2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-20, -10]",
    "output": "generated_output : list = mul_n(sort_asc([-4, -2]),5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-2, -3, -5, -5]\noutput : list = [-7, -7, -5, -4]",
    "output": "generated_output : list = reverse(add_n([-2, -3, -5, -5],-2))",
    "io_inp": [
      -2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-1, -3, -2, -2, -4]\noutput : list = [-10, -11, -11, -12, -13]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(sort_asc([-1, -3, -2, -2, -4])),22),-4),-5)",
    "io_inp": [
      -1,
      -3,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -10,
      -11,
      -11,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(sort_asc(input)),22),-4),-5)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [6, 1]",
    "output": "generated_output : list = add_n(sub_n([5, 0],-3),-2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-3),-2)"
  },
  {
    "input": "input : list = [-3, 2, 1, 3, -1, -1]\noutput : list = [-6, -4, -4, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(reverse([-3, 2, 1, 3, -1, -1])),-3)))",
    "io_inp": [
      -3,
      2,
      1,
      3,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [-3, -24, -27]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n([4, -3, 5],4)),25),-3)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      -3,
      -24,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(input,4)),25),-3)"
  },
  {
    "input": "input : list = [-2, 4, 0, 1, -1, -4]\noutput : list = [5, 3, 2, 1, 0, -3]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(sub_n([-2, 4, 0, 1, -1, -4],-3)),37),-4),-1)",
    "io_inp": [
      -2,
      4,
      0,
      1,
      -1,
      -4
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(sub_n(input,-3)),37),-4),-1)"
  },
  {
    "input": "input : list = [1, -2, -1, -4]\noutput : list = [-2, -1, -4]",
    "output": "generated_output : list = drop([1, -2, -1, -4],1)",
    "io_inp": [
      1,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -1, -5, 3, 3]\noutput : list = [-5, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(take([1, -1, -5, 3, 3],3)))",
    "io_inp": [
      1,
      -1,
      -5,
      3,
      3
    ],
    "io_out": [
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,3)))"
  },
  {
    "input": "input : list = [-1, -1, 1, 3, 3, -5]\noutput : list = [3, 3, 5, 7, 7, -1]",
    "output": "generated_output : list = sub_n([-1, -1, 1, 3, 3, -5],-4)",
    "io_inp": [
      -1,
      -1,
      1,
      3,
      3,
      -5
    ],
    "io_out": [
      3,
      3,
      5,
      7,
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 0, 1, -1]\noutput : list = [-2, 1, 2, 0]",
    "output": "generated_output : list = take(take(add_n(add_n([-3, 0, 1, -1],-3),4),16),10)",
    "io_inp": [
      -3,
      0,
      1,
      -1
    ],
    "io_out": [
      -2,
      1,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(input,-3),4),16),10)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = take(sort_des([3, 5]),9)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),9)"
  },
  {
    "input": "input : list = [4, -4, -5, -3, 0, 5]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n(take([4, -4, -5, -3, 0, 5],2),2),1)))",
    "io_inp": [
      4,
      -4,
      -5,
      -3,
      0,
      5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(take(input,2),2),1)))"
  },
  {
    "input": "input : list = [0, 4, -4, 0, 0]\noutput : list = [-4, 0, 0, 0, 4]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des([0, 4, -4, 0, 0])),-1),24)",
    "io_inp": [
      0,
      4,
      -4,
      0,
      0
    ],
    "io_out": [
      -4,
      0,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(input)),-1),24)"
  },
  {
    "input": "input : list = [1, 1, 0, 4, -1]\noutput : list = [-6, -6, -2, -18, 2]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([1, 1, 0, 4, -1],-2),2),2)",
    "io_inp": [
      1,
      1,
      0,
      4,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -2,
      -18,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,-2),2),2)"
  },
  {
    "input": "input : list = [4, 3, 0, -3, 4]\noutput : list = [-1, -2, -5, -8, -1]",
    "output": "generated_output : list = sub_n([4, 3, 0, -3, 4],5)",
    "io_inp": [
      4,
      3,
      0,
      -3,
      4
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, -5, 0, -2]\noutput : list = [3, 2, 1, -2]",
    "output": "generated_output : list = take(add_n(sort_des([-1, -5, 0, -2]),3),32)",
    "io_inp": [
      -1,
      -5,
      0,
      -2
    ],
    "io_out": [
      3,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),3),32)"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [-16, -12, 8]",
    "output": "generated_output : list = sort_asc(mul_n([3, 4, -2],-4))",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      -16,
      -12,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-3, -2, -5, 3, 1]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(take([-3, -2, -5, 3, 1],3),4)),-4))",
    "io_inp": [
      -3,
      -2,
      -5,
      3,
      1
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(take(input,3),4)),-4))"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = reverse([-3, -2, 2])",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, -5, 5, 2]\noutput : list = [5, 2, 1, 1, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(reverse(add_n([1, 1, -5, 5, 2],3)))),3)",
    "io_inp": [
      1,
      1,
      -5,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(reverse(add_n(input,3)))),3)"
  },
  {
    "input": "input : list = [-5, 2, -2, -3, -5]\noutput : list = [12, 12, 6, 3, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(mul_n([-5, 2, -2, -3, -5],-3),5)),2))",
    "io_inp": [
      -5,
      2,
      -2,
      -3,
      -5
    ],
    "io_out": [
      12,
      12,
      6,
      3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(mul_n(input,-3),5)),2))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-3, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(add_n([-2, 5],-4),3))))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(add_n(input,-4),3))))"
  },
  {
    "input": "input : list = [2, 5, -1, -2, 3]\noutput : list = [-1, 0, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(reverse([2, 5, -1, -2, 3]),4),3)))",
    "io_inp": [
      2,
      5,
      -1,
      -2,
      3
    ],
    "io_out": [
      -1,
      0,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(reverse(input),4),3)))"
  },
  {
    "input": "input : list = [-3, -2, 5, -4, 1]\noutput : list = [5, 1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(reverse([-3, -2, 5, -4, 1]),5),-5)))",
    "io_inp": [
      -3,
      -2,
      5,
      -4,
      1
    ],
    "io_out": [
      5,
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(reverse(input),5),-5)))"
  },
  {
    "input": "input : list = [2, 3, -2, 3]\noutput : list = [14, 4]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(drop([2, 3, -2, 3],2),4)),2),21)",
    "io_inp": [
      2,
      3,
      -2,
      3
    ],
    "io_out": [
      14,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(drop(input,2),4)),2),21)"
  },
  {
    "input": "input : list = [-5, -4, -3, 3]\noutput : list = [120, 105, 90, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(add_n([-5, -4, -3, 3],-3)),-5)),3)",
    "io_inp": [
      -5,
      -4,
      -3,
      3
    ],
    "io_out": [
      120,
      105,
      90,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(add_n(input,-3)),-5)),3)"
  },
  {
    "input": "input : list = [2, -2, 0, -3]\noutput : list = [-20, 60, 20, 80]",
    "output": "generated_output : list = mul_n(reverse(add_n(reverse(mul_n([2, -2, 0, -3],4)),-4)),-5)",
    "io_inp": [
      2,
      -2,
      0,
      -3
    ],
    "io_out": [
      -20,
      60,
      20,
      80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(reverse(mul_n(input,4)),-4)),-5)"
  },
  {
    "input": "input : list = [3, 3, 2, 4, 3]\noutput : list = [5, 6]",
    "output": "generated_output : list = drop(sort_asc(sort_asc(sort_asc(add_n([3, 3, 2, 4, 3],2)))),3)",
    "io_inp": [
      3,
      3,
      2,
      4,
      3
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_asc(sort_asc(add_n(input,2)))),3)"
  },
  {
    "input": "input : list = [-1, 1, 3, -3]\noutput : list = [4, 6, 8, 2]",
    "output": "generated_output : list = add_n([-1, 1, 3, -3],5)",
    "io_inp": [
      -1,
      1,
      3,
      -3
    ],
    "io_out": [
      4,
      6,
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, -3, 2, -2, -4, -3]\noutput : list = [-15, -20, -10, 10, -15, -25]",
    "output": "generated_output : list = reverse(mul_n([-5, -3, 2, -2, -4, -3],5))",
    "io_inp": [
      -5,
      -3,
      2,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -15,
      -20,
      -10,
      10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [-4, 2, -4, 0]\noutput : list = [1, 7]",
    "output": "generated_output : list = take(add_n(take([-4, 2, -4, 0],2),5),26)",
    "io_inp": [
      -4,
      2,
      -4,
      0
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,2),5),26)"
  },
  {
    "input": "input : list = [-2, 5, -2, 4]\noutput : list = [-1, -8, -1, -7]",
    "output": "generated_output : list = sub_n(mul_n([-2, 5, -2, 4],-1),3)",
    "io_inp": [
      -2,
      5,
      -2,
      4
    ],
    "io_out": [
      -1,
      -8,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),3)"
  },
  {
    "input": "input : list = [0, 2, -1, -1, -4, -5]\noutput : list = [-2, -2, -5, -6]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(drop([0, 2, -1, -1, -4, -5],2),4))),-1)",
    "io_inp": [
      0,
      2,
      -1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(drop(input,2),4))),-1)"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [1, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, 1])",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -3, 3, 2]\noutput : list = [-8, 16, -8, -4]",
    "output": "generated_output : list = mul_n(sub_n(add_n([3, -3, 3, 2],1),2),-4)",
    "io_inp": [
      3,
      -3,
      3,
      2
    ],
    "io_out": [
      -8,
      16,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,1),2),-4)"
  },
  {
    "input": "input : list = [2, -1, -2, -2, 3]\noutput : list = [-2, -2, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sort_des([2, -1, -2, -2, 3]),1))))",
    "io_inp": [
      2,
      -1,
      -2,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [2, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(reverse([5, 4, 2])))))",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, 3, 4, -2, -4, 3]\noutput : list = [20, 16, 8, -12, -12, -16]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 3, 4, -2, -4, 3]),-4)",
    "io_inp": [
      -5,
      3,
      4,
      -2,
      -4,
      3
    ],
    "io_out": [
      20,
      16,
      8,
      -12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [-1, -1, 3]",
    "output": "generated_output : list = sub_n([0, 0, 4],1)",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, -2, 1, -4, -1, 3]\noutput : list = [5, -1, 2, -3, 0, 4]",
    "output": "generated_output : list = take(sub_n(add_n([4, -2, 1, -4, -1, 3],-3),-4),19)",
    "io_inp": [
      4,
      -2,
      1,
      -4,
      -1,
      3
    ],
    "io_out": [
      5,
      -1,
      2,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-3),-4),19)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take(reverse(reverse(reverse([5, -2]))),15)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(input))),15)"
  },
  {
    "input": "input : list = [-2, 0, 3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = drop([-2, 0, 3, -5],2)",
    "io_inp": [
      -2,
      0,
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(sort_asc([2, 1]),4),-1),-5),4)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(sort_asc(input),4),-1),-5),4)"
  },
  {
    "input": "input : list = [2, 0, 5, -5]\noutput : list = [11, -9]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(drop([2, 0, 5, -5],2),2),5),32),4)",
    "io_inp": [
      2,
      0,
      5,
      -5
    ],
    "io_out": [
      11,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(drop(input,2),2),5),32),4)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [4, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(mul_n([-2, -5],-2),10))))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(mul_n(input,-2),10))))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [3, 7]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc([5, 1]))),-2))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [0, -4, -3, -5, -1]\noutput : list = [6, 2, 3]",
    "output": "generated_output : list = sub_n(sub_n(take([0, -4, -3, -5, -1],3),-1),-5)",
    "io_inp": [
      0,
      -4,
      -3,
      -5,
      -1
    ],
    "io_out": [
      6,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,3),-1),-5)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, 4, -1]\noutput : list = [1, -4, -4, 1]",
    "output": "generated_output : list = mul_n([-1, 4, 4, -1],-1)",
    "io_inp": [
      -1,
      4,
      4,
      -1
    ],
    "io_out": [
      1,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [10]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(take([4, 5, -5],1))),3),-3)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(take(input,1))),3),-3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-8, -5]",
    "output": "generated_output : list = sort_asc(sub_n([-4, -1],4))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [-2, 5, -2, -4, -1]\noutput : list = [4, 6, 6, 7, 13]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse([-2, 5, -2, -4, -1]),4)),4)",
    "io_inp": [
      -2,
      5,
      -2,
      -4,
      -1
    ],
    "io_out": [
      4,
      6,
      6,
      7,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(input),4)),4)"
  },
  {
    "input": "input : list = [1, -3, 3, -5, 5]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(take(take([1, -3, 3, -5, 5],3),14),7)))",
    "io_inp": [
      1,
      -3,
      3,
      -5,
      5
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(take(input,3),14),7)))"
  },
  {
    "input": "input : list = [1, -2, -5, -5, 2, -5]\noutput : list = [-21, -1, 14, 14, 14]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(drop([1, -2, -5, -5, 2, -5],1)),3),-5),-4)",
    "io_inp": [
      1,
      -2,
      -5,
      -5,
      2,
      -5
    ],
    "io_out": [
      -21,
      -1,
      14,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(drop(input,1)),3),-5),-4)"
  },
  {
    "input": "input : list = [-1, -5, 5, 0, 0]\noutput : list = [-21, -5, -1, 19]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(drop(reverse([-1, -5, 5, 0, 0]),1),4),-1))",
    "io_inp": [
      -1,
      -5,
      5,
      0,
      0
    ],
    "io_out": [
      -21,
      -5,
      -1,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(drop(reverse(input),1),4),-1))"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [-192, -96, 96]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_des(sub_n([3, 1, -3],-1)),4),4),-3)",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      -192,
      -96,
      96
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_des(sub_n(input,-1)),4),4),-3)"
  },
  {
    "input": "input : list = [0, -2, -2, 1]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(take([0, -2, -2, 1],1),3))),3)",
    "io_inp": [
      0,
      -2,
      -2,
      1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(take(input,1),3))),3)"
  },
  {
    "input": "input : list = [-4, 2, -3, 4]\noutput : list = [-12, -10, 0, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(mul_n([-4, 2, -3, 4],2)),3)),1)",
    "io_inp": [
      -4,
      2,
      -3,
      4
    ],
    "io_out": [
      -12,
      -10,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(mul_n(input,2)),3)),1)"
  },
  {
    "input": "input : list = [-1, 2, 4, 4]\noutput : list = [-30, -15]",
    "output": "generated_output : list = take(mul_n(sub_n(drop(reverse([-1, 2, 4, 4]),2),-4),-5),8)",
    "io_inp": [
      -1,
      2,
      4,
      4
    ],
    "io_out": [
      -30,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(drop(reverse(input),2),-4),-5),8)"
  },
  {
    "input": "input : list = [1, 5, 5, 0, 4, 4]\noutput : list = [6, 46, 46, -4, 36, 36]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(reverse([1, 5, 5, 0, 4, 4])),5),-2),2)",
    "io_inp": [
      1,
      5,
      5,
      0,
      4,
      4
    ],
    "io_out": [
      6,
      46,
      46,
      -4,
      36,
      36
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(reverse(input)),5),-2),2)"
  },
  {
    "input": "input : list = [-3, -1, -4, -5, 5]\noutput : list = [-8, -6, -9, -10, 0]",
    "output": "generated_output : list = add_n([-3, -1, -4, -5, 5],-5)",
    "io_inp": [
      -3,
      -1,
      -4,
      -5,
      5
    ],
    "io_out": [
      -8,
      -6,
      -9,
      -10,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [3, -2, 3, 4]\noutput : list = [-17, 8, -17, -22]",
    "output": "generated_output : list = add_n(mul_n([3, -2, 3, 4],-5),-2)",
    "io_inp": [
      3,
      -2,
      3,
      4
    ],
    "io_out": [
      -17,
      8,
      -17,
      -22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-25, -20]",
    "output": "generated_output : list = take(take(mul_n(reverse(sort_des([-4, -5])),5),13),26)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -25,
      -20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(sort_des(input)),5),13),26)"
  },
  {
    "input": "input : list = [2, 3, -4, -5]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(take([2, 3, -4, -5],1),-4),5)),1)",
    "io_inp": [
      2,
      3,
      -4,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(take(input,1),-4),5)),1)"
  },
  {
    "input": "input : list = [4, 2, 4, 4]\noutput : list = [2, 4, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 2, 4, 4])",
    "io_inp": [
      4,
      2,
      4,
      4
    ],
    "io_out": [
      2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(drop([-2, -4, -4],1),-3))",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,1),-3))"
  },
  {
    "input": "input : list = [-1, 1, -2, 1, 2]\noutput : list = [-1, -2, -2, -4, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(sub_n([-1, 1, -2, 1, 2],3),1))),10)",
    "io_inp": [
      -1,
      1,
      -2,
      1,
      2
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(sub_n(input,3),1))),10)"
  },
  {
    "input": "input : list = [2, 4, -1, 5, 0, 3]\noutput : list = [12, 15, 18]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(sort_des([2, 4, -1, 5, 0, 3]),3)),3),3)",
    "io_inp": [
      2,
      4,
      -1,
      5,
      0,
      3
    ],
    "io_out": [
      12,
      15,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(sort_des(input),3)),3),3)"
  },
  {
    "input": "input : list = [-2, 4, -2, -4]\noutput : list = [20, -10, -10, -20]",
    "output": "generated_output : list = mul_n(sort_des([-2, 4, -2, -4]),5)",
    "io_inp": [
      -2,
      4,
      -2,
      -4
    ],
    "io_out": [
      20,
      -10,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-4, -1, 1, -4, 2]\noutput : list = [2, 1, -1, -4, -4]",
    "output": "generated_output : list = take(sort_des([-4, -1, 1, -4, 2]),22)",
    "io_inp": [
      -4,
      -1,
      1,
      -4,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),22)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [18, -18]",
    "output": "generated_output : list = mul_n(mul_n([-3, 3],-2),3)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      18,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),3)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([5, 5],3),-5))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,3),-5))"
  },
  {
    "input": "input : list = [1, 3, 0, 3, -1]\noutput : list = [-2, 0, 2, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(mul_n([1, 3, 0, 3, -1],2)))))",
    "io_inp": [
      1,
      3,
      0,
      3,
      -1
    ],
    "io_out": [
      -2,
      0,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [0, -2, -3, 5]\noutput : list = [-5, -4, -2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(add_n([0, -2, -3, 5],2),18)),4))",
    "io_inp": [
      0,
      -2,
      -3,
      5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(add_n(input,2),18)),4))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [8, 20]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(sort_des([-1, 2]),-2),5),4))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      8,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(sort_des(input),-2),5),4))"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(add_n([1, 0, 5],1)))),-1)",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(add_n(input,1)))),-1)"
  },
  {
    "input": "input : list = [-3, 1, -1, 4, 2, 5]\noutput : list = [0, 2, 4, 5, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(sort_asc([-3, 1, -1, 4, 2, 5]),3))))",
    "io_inp": [
      -3,
      1,
      -1,
      4,
      2,
      5
    ],
    "io_out": [
      0,
      2,
      4,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [4, -4, -10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(sort_asc([-2, 5, 2])))),-2)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      4,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [1, 3, 2]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = sort_des(sub_n([1, 3, 2],-2))",
    "io_inp": [
      1,
      3,
      2
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [4, 5, 3, 4]\noutput : list = [20, 15, 15, 10]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des([4, 5, 3, 4]),5),16)),5)",
    "io_inp": [
      4,
      5,
      3,
      4
    ],
    "io_out": [
      20,
      15,
      15,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des(input),5),16)),5)"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [-4, 8, 20]",
    "output": "generated_output : list = mul_n(reverse(sub_n([2, -1, -4],-3)),4)",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-3)),4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [0, -5]",
    "output": "generated_output : list = add_n([3, -2],-3)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [0]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(take([0, -4, -2],1)),5)))",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(take(input,1)),5)))"
  },
  {
    "input": "input : list = [0, -1, -1, 5, -1, 5]\noutput : list = [0, 18]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(drop([0, -1, -1, 5, -1, 5],4)),3),-3),1)",
    "io_inp": [
      0,
      -1,
      -1,
      5,
      -1,
      5
    ],
    "io_out": [
      0,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(drop(input,4)),3),-3),1)"
  },
  {
    "input": "input : list = [-1, 4, 2, -3, 4, 0]\noutput : list = [-6, -3, -1, 1, 1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(drop([-1, 4, 2, -3, 4, 0],1)),3)),17)",
    "io_inp": [
      -1,
      4,
      2,
      -3,
      4,
      0
    ],
    "io_out": [
      -6,
      -3,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(drop(input,1)),3)),17)"
  },
  {
    "input": "input : list = [2, -5, 3, 4, -5, 5]\noutput : list = [-6, -13, -5, -4, -13, -3]",
    "output": "generated_output : list = add_n(add_n([2, -5, 3, 4, -5, 5],-5),-3)",
    "io_inp": [
      2,
      -5,
      3,
      4,
      -5,
      5
    ],
    "io_out": [
      -6,
      -13,
      -5,
      -4,
      -13,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-1, -4, 2, 3]\noutput : list = [-9, -6, -3, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse([-1, -4, 2, 3])),-3),2)",
    "io_inp": [
      -1,
      -4,
      2,
      3
    ],
    "io_out": [
      -9,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(input)),-3),2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc([5, -4])",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(reverse([-1, 5])),1),-5))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(reverse(input)),1),-5))"
  },
  {
    "input": "input : list = [-2, -1, 3, -3, -4, -4]\noutput : list = [6, 7, 11, 5, 4, 4]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n([-2, -1, 3, -3, -4, -4],-2),8),2),-4)",
    "io_inp": [
      -2,
      -1,
      3,
      -3,
      -4,
      -4
    ],
    "io_out": [
      6,
      7,
      11,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(input,-2),8),2),-4)"
  },
  {
    "input": "input : list = [5, 5, -3, 2, 3, 2]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(take([5, 5, -3, 2, 3, 2],2),4)",
    "io_inp": [
      5,
      5,
      -3,
      2,
      3,
      2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),4)"
  },
  {
    "input": "input : list = [4, 5, 5, -1, 3, 0]\noutput : list = [3, 3, 0, -15]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(take([4, 5, 5, -1, 3, 0],4),4)),-3),-1)",
    "io_inp": [
      4,
      5,
      5,
      -1,
      3,
      0
    ],
    "io_out": [
      3,
      3,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(take(input,4),4)),-3),-1)"
  },
  {
    "input": "input : list = [2, -1, -2, -4, 1, -3]\noutput : list = [11, 2, -1, -7, 8, -4]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(mul_n([2, -1, -2, -4, 1, -3],3),-5),10)))",
    "io_inp": [
      2,
      -1,
      -2,
      -4,
      1,
      -3
    ],
    "io_out": [
      11,
      2,
      -1,
      -7,
      8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(mul_n(input,3),-5),10)))"
  },
  {
    "input": "input : list = [-5, -3, 0, -4, 5]\noutput : list = [20, 40, 52, 56, 60]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(sub_n([-5, -3, 0, -4, 5],5),-5)),-4))",
    "io_inp": [
      -5,
      -3,
      0,
      -4,
      5
    ],
    "io_out": [
      20,
      40,
      52,
      56,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(sub_n(input,5),-5)),-4))"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [175]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(drop(drop([0, -5, -5],1),1),2),5),-5)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      175
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(drop(drop(input,1),1),2),5),-5)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, 11]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_asc([-3, 4]))),-3),-4)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_asc(input))),-3),-4)"
  },
  {
    "input": "input : list = [4, 1, -5, -2, -3]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 1, -5, -2, -3],1)",
    "io_inp": [
      4,
      1,
      -5,
      -2,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [6, 8, 9]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(sort_des([4, 5, 2]),3),5),-4))",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(sort_des(input),3),5),-4))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [7, -3]",
    "output": "generated_output : list = take(add_n([5, -5],2),9)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),9)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [5, 3]",
    "output": "generated_output : list = reverse(take(take(add_n(sub_n([-3, -1],-5),1),5),12))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(sub_n(input,-5),1),5),12))"
  },
  {
    "input": "input : list = [5, -4, 1, 3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(drop([5, -4, 1, 3],2),-4)),4))",
    "io_inp": [
      5,
      -4,
      1,
      3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(drop(input,2),-4)),4))"
  },
  {
    "input": "input : list = [3, -4, 3]\noutput : list = [-3, 4, -3]",
    "output": "generated_output : list = mul_n([3, -4, 3],-1)",
    "io_inp": [
      3,
      -4,
      3
    ],
    "io_out": [
      -3,
      4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-25, -50, -250]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n([-3, 5, -4],5),-5)),5)",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -25,
      -50,
      -250
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(input,5),-5)),5)"
  },
  {
    "input": "input : list = [-5, -3, 4, -2, -4]\noutput : list = [16, 8, -16, 12, 20]",
    "output": "generated_output : list = reverse(mul_n(mul_n([-5, -3, 4, -2, -4],-2),2))",
    "io_inp": [
      -5,
      -3,
      4,
      -2,
      -4
    ],
    "io_out": [
      16,
      8,
      -16,
      12,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,-2),2))"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [-35, 5, 0]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse(sub_n([-3, -4, 4],-2)),13),-1),-5)",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      -35,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(sub_n(input,-2)),13),-1),-5)"
  },
  {
    "input": "input : list = [-4, 4, 0, 5, 5]\noutput : list = [-4, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(take([-4, 4, 0, 5, 5],2),-4))),-4)",
    "io_inp": [
      -4,
      4,
      0,
      5,
      5
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(take(input,2),-4))),-4)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = drop([2, 0, -3],1)",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 2, -1, -4, 3]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(take([-2, 2, -1, -4, 3],2),-5)",
    "io_inp": [
      -2,
      2,
      -1,
      -4,
      3
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-5)"
  },
  {
    "input": "input : list = [4, -2, -3, -1, 2]\noutput : list = [4, -2]",
    "output": "generated_output : list = take([4, -2, -3, -1, 2],2)",
    "io_inp": [
      4,
      -2,
      -3,
      -1,
      2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -5, -4, -2]\noutput : list = [-16, 8, 16, 20]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_des(mul_n([4, -5, -4, -2],-4)))))",
    "io_inp": [
      4,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -16,
      8,
      16,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_des(mul_n(input,-4)))))"
  },
  {
    "input": "input : list = [5, 5, -3, -2, -4, 4]\noutput : list = [-6, 2, 2]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(take([5, 5, -3, -2, -4, 4],3),2)),-1),15)",
    "io_inp": [
      5,
      5,
      -3,
      -2,
      -4,
      4
    ],
    "io_out": [
      -6,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(take(input,3),2)),-1),15)"
  },
  {
    "input": "input : list = [-5, 3, -2, 2, 5]\noutput : list = [-10, -7, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(add_n([-5, 3, -2, 2, 5],-1),4),5),-1))",
    "io_inp": [
      -5,
      3,
      -2,
      2,
      5
    ],
    "io_out": [
      -10,
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(add_n(input,-1),4),5),-1))"
  },
  {
    "input": "input : list = [-1, -1, -1, -5, 2, -4]\noutput : list = [-9, -8, -5, -5, -5, -2]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(reverse([-1, -1, -1, -5, 2, -4])),22),4))",
    "io_inp": [
      -1,
      -1,
      -1,
      -5,
      2,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(reverse(input)),22),4))"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [0, -2, -6]",
    "output": "generated_output : list = add_n(sort_des(add_n([3, 5, -1],-4)),-1)",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(input,-4)),-1)"
  },
  {
    "input": "input : list = [-5, -4, 4]\noutput : list = [-6, -5, 3]",
    "output": "generated_output : list = add_n([-5, -4, 4],-1)",
    "io_inp": [
      -5,
      -4,
      4
    ],
    "io_out": [
      -6,
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-15, -10]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(sub_n([-4, -5],-3)),5),-5),13)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -15,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(sub_n(input,-3)),5),-5),13)"
  },
  {
    "input": "input : list = [1, -4, -5, -2]\noutput : list = [-2, 4, 8, 10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(reverse([1, -4, -5, -2])))),-2)",
    "io_inp": [
      1,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -2,
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [-3, -1, -1, -2, 4]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take([-3, -1, -1, -2, 4],1))",
    "io_inp": [
      -3,
      -1,
      -1,
      -2,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [5, -3, -2, -5, 1, -1]\noutput : list = [5, 1, -1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(take(sort_des([5, -3, -2, -5, 1, -1]),15))",
    "io_inp": [
      5,
      -3,
      -2,
      -5,
      1,
      -1
    ],
    "io_out": [
      5,
      1,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),15))"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sub_n(take(take(take([-2, -3, 4],1),9),22),1))",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(take(input,1),9),22),1))"
  },
  {
    "input": "input : list = [-4, 4, -1, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(drop([-4, 4, -1, -2],2)),26),1))",
    "io_inp": [
      -4,
      4,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(drop(input,2)),26),1))"
  },
  {
    "input": "input : list = [2, -1, -1, -1, -4, -5]\noutput : list = [9, 6, 6, 6, 3, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse([2, -1, -1, -1, -4, -5]),5)),-2)",
    "io_inp": [
      2,
      -1,
      -1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      9,
      6,
      6,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(input),5)),-2)"
  },
  {
    "input": "input : list = [0, 1, 2]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = add_n([0, 1, 2],-5)",
    "io_inp": [
      0,
      1,
      2
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, 3, 2, -2, -5]\noutput : list = [3, 1, 0, -4, -7]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(sort_des([5, 3, 2, -2, -5]))),2))",
    "io_inp": [
      5,
      3,
      2,
      -2,
      -5
    ],
    "io_out": [
      3,
      1,
      0,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-5, -4, 3, 5, -5]\noutput : list = [-5, -5, -4, 3, 5]",
    "output": "generated_output : list = sort_asc([-5, -4, 3, 5, -5])",
    "io_inp": [
      -5,
      -4,
      3,
      5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 1, -3, 2]\noutput : list = [-9, -14]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(take([-4, 1, -3, 2],2),-5)),11),-5)",
    "io_inp": [
      -4,
      1,
      -3,
      2
    ],
    "io_out": [
      -9,
      -14
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(take(input,2),-5)),11),-5)"
  },
  {
    "input": "input : list = [5, -1, -1]\noutput : list = [2, 2, 8]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(reverse([5, -1, -1]),14),-3)))",
    "io_inp": [
      5,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(reverse(input),14),-3)))"
  },
  {
    "input": "input : list = [2, -2, -5, -4, 1, -4]\noutput : list = [-7, -11, -14, -13, -8, -13]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([2, -2, -5, -4, 1, -4],4),3),2)",
    "io_inp": [
      2,
      -2,
      -5,
      -4,
      1,
      -4
    ],
    "io_out": [
      -7,
      -11,
      -14,
      -13,
      -8,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,4),3),2)"
  },
  {
    "input": "input : list = [-3, 3, 3, 4]\noutput : list = [-3, 3, 3, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc([-3, 3, 3, 4])))",
    "io_inp": [
      -3,
      3,
      3,
      4
    ],
    "io_out": [
      -3,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, -1, -1, -3, 4]\noutput : list = [83, -29, 3, 3, 83]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(reverse([4, -1, -1, -3, 4]),-4),4),-4),3)",
    "io_inp": [
      4,
      -1,
      -1,
      -3,
      4
    ],
    "io_out": [
      83,
      -29,
      3,
      3,
      83
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(reverse(input),-4),4),-4),3)"
  },
  {
    "input": "input : list = [4, -5, -2, 2, 1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -5, -2, 2, 1],1)",
    "io_inp": [
      4,
      -5,
      -2,
      2,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [9, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n([-1, -3, 5],-4))",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      9,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-5, 3, -1, -1]\noutput : list = [2, -2, -2, -6]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(sort_asc([-5, 3, -1, -1]),20))),-1)",
    "io_inp": [
      -5,
      3,
      -1,
      -1
    ],
    "io_out": [
      2,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(sort_asc(input),20))),-1)"
  },
  {
    "input": "input : list = [0, 2, 4, -2, -2]\noutput : list = [-2, -2, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([0, 2, 4, -2, -2])",
    "io_inp": [
      0,
      2,
      4,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, -3, 0]\noutput : list = [10, 8, 8, 5]",
    "output": "generated_output : list = sub_n(take(take(add_n(sort_des([0, 2, -3, 0]),3),18),5),-5)",
    "io_inp": [
      0,
      2,
      -3,
      0
    ],
    "io_out": [
      10,
      8,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(sort_des(input),3),18),5),-5)"
  },
  {
    "input": "input : list = [4, 3, 5, -2]\noutput : list = [5, 4, 6, -1]",
    "output": "generated_output : list = add_n([4, 3, 5, -2],1)",
    "io_inp": [
      4,
      3,
      5,
      -2
    ],
    "io_out": [
      5,
      4,
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, -3, 4, -1, -2, -2]\noutput : list = [8, 3, 2, 2, 1]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(add_n([-3, -3, 4, -1, -2, -2],-2)),-2),4),5)",
    "io_inp": [
      -3,
      -3,
      4,
      -1,
      -2,
      -2
    ],
    "io_out": [
      8,
      3,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(add_n(input,-2)),-2),4),5)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(drop(sub_n(sort_asc(reverse([-3, 1])),5),1))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(sort_asc(reverse(input)),5),1))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(reverse([4, -2]))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-4, 2, 2, -5]\noutput : list = [-4, -4, -10, -11]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(sub_n([-4, 2, 2, -5],5))),4),-1)",
    "io_inp": [
      -4,
      2,
      2,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(sub_n(input,5))),4),-1)"
  },
  {
    "input": "input : list = [4, -2, 3, 5, -3]\noutput : list = [30, 28, 26, 16, 14]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(sub_n([4, -2, 3, 5, -3],-5))),5),2)",
    "io_inp": [
      4,
      -2,
      3,
      5,
      -3
    ],
    "io_out": [
      30,
      28,
      26,
      16,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(sub_n(input,-5))),5),2)"
  },
  {
    "input": "input : list = [5, -1, -2, -3]\noutput : list = [16, 40, 44, 48]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_asc([5, -1, -2, -3])),-4),5),-4)",
    "io_inp": [
      5,
      -1,
      -2,
      -3
    ],
    "io_out": [
      16,
      40,
      44,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_asc(input)),-4),5),-4)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [2, -8, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(reverse([5, -5, 5]),-1),3),5))",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(reverse(input),-1),3),5))"
  },
  {
    "input": "input : list = [3, 4, 3]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sub_n([3, 4, 3],-3),1)),-1))",
    "io_inp": [
      3,
      4,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sub_n(input,-3),1)),-1))"
  },
  {
    "input": "input : list = [5, 0, -1, 5, -2]\noutput : list = [-2, 5, -1, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, -1, 5, -2])",
    "io_inp": [
      5,
      0,
      -1,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 2, 3, -4, 4]\noutput : list = [4, -4, 3, 2, -2]",
    "output": "generated_output : list = reverse([-2, 2, 3, -4, 4])",
    "io_inp": [
      -2,
      2,
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, 4, -5]\noutput : list = [25, 5, 0, -20]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc([0, -1, 4, -5]),5),30),-5))",
    "io_inp": [
      0,
      -1,
      4,
      -5
    ],
    "io_out": [
      25,
      5,
      0,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc(input),5),30),-5))"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sort_des(sub_n(reverse([4, -2, 5]),1))",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),1))"
  },
  {
    "input": "input : list = [4, 2, -1, 1, 5, 5]\noutput : list = [0, 2, 3, 5, 6, 6]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des([4, 2, -1, 1, 5, 5]),2)),-1)",
    "io_inp": [
      4,
      2,
      -1,
      1,
      5,
      5
    ],
    "io_out": [
      0,
      2,
      3,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(input),2)),-1)"
  },
  {
    "input": "input : list = [-3, 4, 1, 5, 3, 0]\noutput : list = [-60, 80, 20, 100, 60, 0]",
    "output": "generated_output : list = mul_n(mul_n([-3, 4, 1, 5, 3, 0],-5),-4)",
    "io_inp": [
      -3,
      4,
      1,
      5,
      3,
      0
    ],
    "io_out": [
      -60,
      80,
      20,
      100,
      60,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-4)"
  },
  {
    "input": "input : list = [1, -1, 3, 5, -3]\noutput : list = [-8, -6, -4, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc([1, -1, 3, 5, -3]),-5)",
    "io_inp": [
      1,
      -1,
      3,
      5,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_asc([-1, -3]),2),2)),-2)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(sort_asc(input),2),2)),-2)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(reverse([3, -2])))),34)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(reverse(input)))),34)"
  },
  {
    "input": "input : list = [1, 3, -3, 3, -3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(add_n(drop(sub_n(reverse([1, 3, -3, 3, -3]),-5),4),-1))",
    "io_inp": [
      1,
      3,
      -3,
      3,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(sub_n(reverse(input),-5),4),-1))"
  },
  {
    "input": "input : list = [-2, 4, -4, 3, 2]\noutput : list = [-59, -44, -29, 31, 61]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(mul_n([-2, 4, -4, 3, 2],3)),-5)),1)",
    "io_inp": [
      -2,
      4,
      -4,
      3,
      2
    ],
    "io_out": [
      -59,
      -44,
      -29,
      31,
      61
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(mul_n(input,3)),-5)),1)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [-7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(take([-3, 1, 2],1))),4))",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(take(input,1))),4))"
  },
  {
    "input": "input : list = [-4, 0, 1]\noutput : list = [4, 3, -1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(reverse([-4, 0, 1]),-2),-3),-4))",
    "io_inp": [
      -4,
      0,
      1
    ],
    "io_out": [
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(reverse(input),-2),-3),-4))"
  },
  {
    "input": "input : list = [-2, 5, -1, 0, 2]\noutput : list = [-3, -10, -4]",
    "output": "generated_output : list = sub_n(take(take(mul_n(take([-2, 5, -1, 0, 2],3),-1),6),23),5)",
    "io_inp": [
      -2,
      5,
      -1,
      0,
      2
    ],
    "io_out": [
      -3,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(take(input,3),-1),6),23),5)"
  },
  {
    "input": "input : list = [2, 0, 2, -1]\noutput : list = [-4, 8, 0, 8]",
    "output": "generated_output : list = reverse(mul_n([2, 0, 2, -1],4))",
    "io_inp": [
      2,
      0,
      2,
      -1
    ],
    "io_out": [
      -4,
      8,
      0,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [2, 3, -2, -3]\noutput : list = [-12, -16, 4, 8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sub_n([2, 3, -2, -3],-4),4),-1),4),-4)",
    "io_inp": [
      2,
      3,
      -2,
      -3
    ],
    "io_out": [
      -12,
      -16,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sub_n(input,-4),4),-1),4),-4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(sort_des(add_n([-3, -2],4)),18)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,4)),18)"
  },
  {
    "input": "input : list = [0, -5, 4, 4]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(sub_n(drop([0, -5, 4, 4],2),4))",
    "io_inp": [
      0,
      -5,
      4,
      4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,2),4))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [25, -20]",
    "output": "generated_output : list = mul_n([5, -4],5)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-11, -3]",
    "output": "generated_output : list = add_n(add_n(take(add_n(mul_n([-4, -2],4),5),14),-4),4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -11,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(mul_n(input,4),5),14),-4),4)"
  },
  {
    "input": "input : list = [-3, -4, 2, -3, 3, -5]\noutput : list = [-3, -2, -1, -1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sub_n([-3, -4, 2, -3, 3, -5],2)),4)))",
    "io_inp": [
      -3,
      -4,
      2,
      -3,
      3,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -1,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sub_n(input,2)),4)))"
  },
  {
    "input": "input : list = [-1, 2, 5, -4]\noutput : list = [-3, 6, 3, 0]",
    "output": "generated_output : list = take(take(add_n(reverse([-1, 2, 5, -4]),1),7),26)",
    "io_inp": [
      -1,
      2,
      5,
      -4
    ],
    "io_out": [
      -3,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(input),1),7),26)"
  },
  {
    "input": "input : list = [-5, -1, -3, -1]\noutput : list = [2, 2, 4, 6]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(add_n([-5, -1, -3, -1],-1),-1))),27)",
    "io_inp": [
      -5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(add_n(input,-1),-1))),27)"
  },
  {
    "input": "input : list = [0, -4, 3, -4, 2, 4]\noutput : list = [-35, -25, -15, 5, 45, 45]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(mul_n([0, -4, 3, -4, 2, 4],5)),2),-1),-5)",
    "io_inp": [
      0,
      -4,
      3,
      -4,
      2,
      4
    ],
    "io_out": [
      -35,
      -25,
      -15,
      5,
      45,
      45
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(mul_n(input,5)),2),-1),-5)"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [-4, 20, -8]",
    "output": "generated_output : list = reverse(mul_n(reverse([-1, 5, -2]),4))",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      -4,
      20,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),4))"
  },
  {
    "input": "input : list = [5, 3, -4, -3, 5]\noutput : list = [-10, -3, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(take([5, 3, -4, -3, 5],3)),-4),2),-4)",
    "io_inp": [
      5,
      3,
      -4,
      -3,
      5
    ],
    "io_out": [
      -10,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(take(input,3)),-4),2),-4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [6, 8]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(sort_asc([5, 3]),2)),-1))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(sort_asc(input),2)),-1))"
  },
  {
    "input": "input : list = [-2, 4, 3, 5, -2, -3]\noutput : list = [3, 9, 8, 10, 3, 2]",
    "output": "generated_output : list = sub_n([-2, 4, 3, 5, -2, -3],-5)",
    "io_inp": [
      -2,
      4,
      3,
      5,
      -2,
      -3
    ],
    "io_out": [
      3,
      9,
      8,
      10,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, -1]))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 4, -4, -2, 5, 5]\noutput : list = [0, 0, -1, -6, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n([-1, 4, -4, -2, 5, 5],5))",
    "io_inp": [
      -1,
      4,
      -4,
      -2,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      -1,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [-2, -1, -5, -1, -4, 4]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = mul_n(take(mul_n(take(sort_asc([-2, -1, -5, -1, -4, 4]),3),-1),17),1)",
    "io_inp": [
      -2,
      -1,
      -5,
      -1,
      -4,
      4
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(sort_asc(input),3),-1),17),1)"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sub_n(take([-1, 5, 2],1),2))",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,1),2))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-12, -15]",
    "output": "generated_output : list = reverse(mul_n(reverse([4, 5]),-3))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -12,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [0, 5, 1, -2, 2]\noutput : list = [5, 2, 1, -2]",
    "output": "generated_output : list = sort_des(reverse(drop([0, 5, 1, -2, 2],1)))",
    "io_inp": [
      0,
      5,
      1,
      -2,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [3, -2, 3, -4, 4, -1]\noutput : list = [-2, -6, -8, -16, -16, -18]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([3, -2, 3, -4, 4, -1]),-5),-2)",
    "io_inp": [
      3,
      -2,
      3,
      -4,
      4,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -8,
      -16,
      -16,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),-5),-2)"
  },
  {
    "input": "input : list = [-4, 0, -1, 1, 2, -3]\noutput : list = [-10, -7, -1, 2, 5, 8]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([-4, 0, -1, 1, 2, -3],3),-2))",
    "io_inp": [
      -4,
      0,
      -1,
      1,
      2,
      -3
    ],
    "io_out": [
      -10,
      -7,
      -1,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,3),-2))"
  },
  {
    "input": "input : list = [3, -4, -2, -4, 3, 1]\noutput : list = [6, 6, 2, -4, -8, -8]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_asc([3, -4, -2, -4, 3, 1]),23)),2)",
    "io_inp": [
      3,
      -4,
      -2,
      -4,
      3,
      1
    ],
    "io_out": [
      6,
      6,
      2,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_asc(input),23)),2)"
  },
  {
    "input": "input : list = [-3, -1, 2, 3]\noutput : list = [3, 2, -1, -3]",
    "output": "generated_output : list = sort_des(sort_asc([-3, -1, 2, 3]))",
    "io_inp": [
      -3,
      -1,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 3, -3, 3, -2]\noutput : list = [2, 3, 8, 8, 10]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_des([5, 3, -3, 3, -2]),3)),-2))",
    "io_inp": [
      5,
      3,
      -3,
      3,
      -2
    ],
    "io_out": [
      2,
      3,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_des(input),3)),-2))"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-3, -3, 1]",
    "output": "generated_output : list = sort_asc([-3, -3, 1])",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-9, -4]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des([-5, 0]),7),4))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(input),7),4))"
  },
  {
    "input": "input : list = [5, 5, 0, 3]\noutput : list = [-1, 2, 4, 4]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(add_n([5, 5, 0, 3],4),5))),39)",
    "io_inp": [
      5,
      5,
      0,
      3
    ],
    "io_out": [
      -1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(add_n(input,4),5))),39)"
  },
  {
    "input": "input : list = [4, 0, -1, 2]\noutput : list = [4, 2, 0, -1]",
    "output": "generated_output : list = take(reverse(sort_asc(reverse([4, 0, -1, 2]))),29)",
    "io_inp": [
      4,
      0,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(reverse(input))),29)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(reverse([-2, -5])))),-5)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [5, 1, -4, -2, 0, 5]\noutput : list = [6, 2, -3, -1, 1, 6]",
    "output": "generated_output : list = sub_n([5, 1, -4, -2, 0, 5],-1)",
    "io_inp": [
      5,
      1,
      -4,
      -2,
      0,
      5
    ],
    "io_out": [
      6,
      2,
      -3,
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-9]",
    "output": "generated_output : list = take(take(add_n(sort_asc(add_n([-2, 5],-3)),-4),11),1)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(add_n(input,-3)),-4),11),1)"
  },
  {
    "input": "input : list = [-1, 0, 4, 4]\noutput : list = [10, 10, 6, 5]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(sub_n([-1, 0, 4, 4],-3),2)),-5),15)",
    "io_inp": [
      -1,
      0,
      4,
      4
    ],
    "io_out": [
      10,
      10,
      6,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(sub_n(input,-3),2)),-5),15)"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [-2, 3, 3]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(sort_asc([2, -3, 2]),-4),1),1),5)",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(sort_asc(input),-4),1),1),5)"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-20, -45, -35]",
    "output": "generated_output : list = mul_n(add_n(reverse([-3, -5, 0]),-4),5)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -20,
      -45,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-4),5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [4, 12]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n([-1, -5],-2))),2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      4,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(input,-2))),2)"
  },
  {
    "input": "input : list = [-3, -4, -5, 4]\noutput : list = [-40, 5, 0, -5]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(sub_n([-3, -4, -5, 4],-2),-2)),6),-5)",
    "io_inp": [
      -3,
      -4,
      -5,
      4
    ],
    "io_out": [
      -40,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(sub_n(input,-2),-2)),6),-5)"
  },
  {
    "input": "input : list = [2, 1, -2, 4]\noutput : list = [20, 10, 5, -10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc([2, 1, -2, 4]),5)))",
    "io_inp": [
      2,
      1,
      -2,
      4
    ],
    "io_out": [
      20,
      10,
      5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [-4, -2, -4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(reverse([1, 3, 1]),15),1),1),3)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      -4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(reverse(input),15),1),1),3)"
  },
  {
    "input": "input : list = [4, 1, -3, -3, -2]\noutput : list = [-9, -9, -6, 3, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(sort_des([4, 1, -3, -3, -2])),-2),-2),3)",
    "io_inp": [
      4,
      1,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -6,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(sort_des(input)),-2),-2),3)"
  },
  {
    "input": "input : list = [0, 2, -1]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des([0, 2, -1]),1)),-2),-2)",
    "io_inp": [
      0,
      2,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des(input),1)),-2),-2)"
  },
  {
    "input": "input : list = [1, 1, -1, -2, 2, 5]\noutput : list = [4, 1, -3, -2, 0, 0]",
    "output": "generated_output : list = sub_n(add_n(reverse([1, 1, -1, -2, 2, 5]),-4),-3)",
    "io_inp": [
      1,
      1,
      -1,
      -2,
      2,
      5
    ],
    "io_out": [
      4,
      1,
      -3,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-4),-3)"
  },
  {
    "input": "input : list = [-2, 3, 5, -4, 4, -4]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = reverse(take([-2, 3, 5, -4, 4, -4],3))",
    "io_inp": [
      -2,
      3,
      5,
      -4,
      4,
      -4
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = reverse(add_n(sort_des([-5, 0, -2]),1))",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [-3, -2, 2, 4]\noutput : list = [2, 3, 7, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_des([-3, -2, 2, 4]),-5))))",
    "io_inp": [
      -3,
      -2,
      2,
      4
    ],
    "io_out": [
      2,
      3,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [0, 4, 0, -4, 3]\noutput : list = [-3, 1, -3, -7, 0]",
    "output": "generated_output : list = add_n([0, 4, 0, -4, 3],-3)",
    "io_inp": [
      0,
      4,
      0,
      -4,
      3
    ],
    "io_out": [
      -3,
      1,
      -3,
      -7,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, 5, -1, 1]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(drop(sort_asc([0, 5, -1, 1]),3),1)",
    "io_inp": [
      0,
      5,
      -1,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(input),3),1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-12, -12]",
    "output": "generated_output : list = take(sub_n(sub_n([-4, -4],4),4),12)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,4),4),12)"
  },
  {
    "input": "input : list = [3, 5, -1, 1, -4]\noutput : list = [75, 45, 15, -15, -60]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc([3, 5, -1, 1, -4])),3)),5)",
    "io_inp": [
      3,
      5,
      -1,
      1,
      -4
    ],
    "io_out": [
      75,
      45,
      15,
      -15,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc(input)),3)),5)"
  },
  {
    "input": "input : list = [-2, 2, 2, -3, 1, 2]\noutput : list = [-3, -2, 1, 2, 2, 2]",
    "output": "generated_output : list = sort_asc([-2, 2, 2, -3, 1, 2])",
    "io_inp": [
      -2,
      2,
      2,
      -3,
      1,
      2
    ],
    "io_out": [
      -3,
      -2,
      1,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -4, -2, -3, -3, -5]\noutput : list = [-10, -8, -6, -6, -4, 2]",
    "output": "generated_output : list = mul_n(sort_asc([1, -4, -2, -3, -3, -5]),2)",
    "io_inp": [
      1,
      -4,
      -2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(reverse([2, -1])))),37)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(reverse(input)))),37)"
  },
  {
    "input": "input : list = [4, -3, 4, 5, 5]\noutput : list = [-13, -13]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(drop([4, -3, 4, 5, 5],3),-2),-3),-4))",
    "io_inp": [
      4,
      -3,
      4,
      5,
      5
    ],
    "io_out": [
      -13,
      -13
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(drop(input,3),-2),-3),-4))"
  },
  {
    "input": "input : list = [2, -1, -2, -2, 4]\noutput : list = [3, 1, -2, -3, -3]",
    "output": "generated_output : list = sub_n(sort_des([2, -1, -2, -2, 4]),1)",
    "io_inp": [
      2,
      -1,
      -2,
      -2,
      4
    ],
    "io_out": [
      3,
      1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = reverse(sub_n([-5, -3],3))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-5, 2, 3, 4, 3]\noutput : list = [-4, 3, 4, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc([-5, 2, 3, 4, 3]),1)",
    "io_inp": [
      -5,
      2,
      3,
      4,
      3
    ],
    "io_out": [
      -4,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-3, -1, 1, 4, -5]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(take([-3, -1, 1, 4, -5],1),2)),-1),-1)",
    "io_inp": [
      -3,
      -1,
      1,
      4,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(take(input,1),2)),-1),-1)"
  },
  {
    "input": "input : list = [-5, -2, 4, 3]\noutput : list = [3, 4, -2, -5]",
    "output": "generated_output : list = reverse([-5, -2, 4, 3])",
    "io_inp": [
      -5,
      -2,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, -1, -2, -5, -2]\noutput : list = [0, -9, 0, 3, 18, -9]",
    "output": "generated_output : list = mul_n(add_n(reverse([-5, 4, -1, -2, -5, -2]),2),3)",
    "io_inp": [
      -5,
      4,
      -1,
      -2,
      -5,
      -2
    ],
    "io_out": [
      0,
      -9,
      0,
      3,
      18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),2),3)"
  },
  {
    "input": "input : list = [0, -5, -3]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse([0, -5, -3])),2)),-1)",
    "io_inp": [
      0,
      -5,
      -3
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse(input)),2)),-1)"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [4, -1, -3]",
    "output": "generated_output : list = sub_n([3, -2, -4],-1)",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [0, 3, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_des([1, -2, 1]),-1))),-3)",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_des(input),-1))),-3)"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [-24, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(reverse([5, -2, -2]),1),-4)))",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      -24,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(reverse(input),1),-4)))"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(take([4, 5, 3],1)))))",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-2, -5, 3, -3, 4, -2]\noutput : list = [20, -40, 30, -30, 50, 20]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-2, -5, 3, -3, 4, -2],-5)),2)",
    "io_inp": [
      -2,
      -5,
      3,
      -3,
      4,
      -2
    ],
    "io_out": [
      20,
      -40,
      30,
      -30,
      50,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-5)),2)"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(drop([5, -2, 3],1)),4)))",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(drop(input,1)),4)))"
  },
  {
    "input": "input : list = [-3, -1, 0, 3]\noutput : list = [3, 0, -1, -3]",
    "output": "generated_output : list = sort_des([-3, -1, 0, 3])",
    "io_inp": [
      -3,
      -1,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2, -1, 5]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(take([1, 2, -1, 5],1),4),21)),4)",
    "io_inp": [
      1,
      2,
      -1,
      5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(take(input,1),4),21)),4)"
  },
  {
    "input": "input : list = [3, 3, 2, -1, 0]\noutput : list = [3, 3, 2, 0, -1]",
    "output": "generated_output : list = sort_des([3, 3, 2, -1, 0])",
    "io_inp": [
      3,
      3,
      2,
      -1,
      0
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [3, 19]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(add_n([4, 2],-5),-4),2),16),5)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      3,
      19
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(add_n(input,-5),-4),2),16),5)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(drop([-1, 0, -5],1)))),1)",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [2, 5, 3, 3, 3]\noutput : list = [7, 8, 8, 8, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_asc([2, 5, 3, 3, 3]))),-5))",
    "io_inp": [
      2,
      5,
      3,
      3,
      3
    ],
    "io_out": [
      7,
      8,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-6, -21]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n([-5, 0],-2))),3)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -6,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(input,-2))),3)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [-2, 4]",
    "output": "generated_output : list = mul_n(take(sort_asc(drop([4, 2, -1],1)),24),2)",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(drop(input,1)),24),2)"
  },
  {
    "input": "input : list = [-1, 5, 4, -3, 3]\noutput : list = [15, 12, 9, -3, -9]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(sort_asc([-1, 5, 4, -3, 3]),3))),38)",
    "io_inp": [
      -1,
      5,
      4,
      -3,
      3
    ],
    "io_out": [
      15,
      12,
      9,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(sort_asc(input),3))),38)"
  },
  {
    "input": "input : list = [-1, 1, -5, -4]\noutput : list = [-4, -5, 1, -1]",
    "output": "generated_output : list = reverse([-1, 1, -5, -4])",
    "io_inp": [
      -1,
      1,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, 3, 2, -1, -4]\noutput : list = [14, 5, -1, -4, -7, -10]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(mul_n([1, 4, 3, 2, -1, -4],-3)),2)))",
    "io_inp": [
      1,
      4,
      3,
      2,
      -1,
      -4
    ],
    "io_out": [
      14,
      5,
      -1,
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(mul_n(input,-3)),2)))"
  },
  {
    "input": "input : list = [-3, -5, -5, -1]\noutput : list = [-3, -9, -15, -15]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n([-3, -5, -5, -1],3))),9)",
    "io_inp": [
      -3,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -3,
      -9,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(input,3))),9)"
  },
  {
    "input": "input : list = [-2, -5, -3, -1, 0]\noutput : list = [4, 1, 3, 5, 6]",
    "output": "generated_output : list = add_n(sub_n([-2, -5, -3, -1, 0],-1),5)",
    "io_inp": [
      -2,
      -5,
      -3,
      -1,
      0
    ],
    "io_out": [
      4,
      1,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),5)"
  },
  {
    "input": "input : list = [-3, 1, -1]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(take([-3, 1, -1],1))),32),1)",
    "io_inp": [
      -3,
      1,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(take(input,1))),32),1)"
  },
  {
    "input": "input : list = [0, -3, -5]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse([0, -3, -5])),5)",
    "io_inp": [
      0,
      -3,
      -5
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),5)"
  },
  {
    "input": "input : list = [3, 5, -4, 1, 3, -1]\noutput : list = [0, 15, 25, 35, 35, 45]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(mul_n([3, 5, -4, 1, 3, -1],-1)),-5),1),-5)",
    "io_inp": [
      3,
      5,
      -4,
      1,
      3,
      -1
    ],
    "io_out": [
      0,
      15,
      25,
      35,
      35,
      45
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(mul_n(input,-1)),-5),1),-5)"
  },
  {
    "input": "input : list = [1, 2, -4, 0]\noutput : list = [11, -1, -4, -7]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(mul_n([1, 2, -4, 0],-3)),2),2),-1)",
    "io_inp": [
      1,
      2,
      -4,
      0
    ],
    "io_out": [
      11,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(mul_n(input,-3)),2),2),-1)"
  },
  {
    "input": "input : list = [4, -2, 5, -5, -5, -3]\noutput : list = [2, 1, -5, -6, -8, -8]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(sub_n([4, -2, 5, -5, -5, -3],4),1),1)))",
    "io_inp": [
      4,
      -2,
      5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      2,
      1,
      -5,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(sub_n(input,4),1),1)))"
  },
  {
    "input": "input : list = [0, -2, 5, -5, 1]\noutput : list = [-1, -5, -6, -8, -11]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(sort_des([0, -2, 5, -5, 1])),1),5),34)",
    "io_inp": [
      0,
      -2,
      5,
      -5,
      1
    ],
    "io_out": [
      -1,
      -5,
      -6,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(sort_des(input)),1),5),34)"
  },
  {
    "input": "input : list = [4, 3, -4, -1, 4]\noutput : list = [-4, -4, -3, 1, 4]",
    "output": "generated_output : list = sort_asc(take(mul_n([4, 3, -4, -1, 4],-1),21))",
    "io_inp": [
      4,
      3,
      -4,
      -1,
      4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(input,-1),21))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [3, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(sub_n([1, -1],-4),-3),-3)))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(sub_n(input,-4),-3),-3)))"
  },
  {
    "input": "input : list = [0, -3, 3]\noutput : list = [-7, -10]",
    "output": "generated_output : list = add_n(take(add_n(add_n(sub_n([0, -3, 3],1),-4),1),2),-3)",
    "io_inp": [
      0,
      -3,
      3
    ],
    "io_out": [
      -7,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(sub_n(input,1),-4),1),2),-3)"
  },
  {
    "input": "input : list = [-5, 4, 0, -3, 0]\noutput : list = [-5, -3, 0, 0, 4]",
    "output": "generated_output : list = sort_asc([-5, 4, 0, -3, 0])",
    "io_inp": [
      -5,
      4,
      0,
      -3,
      0
    ],
    "io_out": [
      -5,
      -3,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -1, 2]\noutput : list = [24, 12, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc([0, -1, 2]),2),4),3))",
    "io_inp": [
      0,
      -1,
      2
    ],
    "io_out": [
      24,
      12,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc(input),2),4),3))"
  },
  {
    "input": "input : list = [5, -4, 2, -4, -2]\noutput : list = [75, 30, -30, -60, -60]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n([5, -4, 2, -4, -2],3))),5))",
    "io_inp": [
      5,
      -4,
      2,
      -4,
      -2
    ],
    "io_out": [
      75,
      30,
      -30,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n(input,3))),5))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-12, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sort_asc([3, -2]),-4))))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -12,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [6, 16]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(mul_n([1, -4],1)),-3),4),2)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      6,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(mul_n(input,1)),-3),4),2)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(reverse([2, 3, 1]),4),5),-5))",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(reverse(input),4),5),-5))"
  },
  {
    "input": "input : list = [2, 4, 0, 4, 1]\noutput : list = [4, 4, 2, 1, 0]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_des(sort_des([2, 4, 0, 4, 1])),1),5),5)",
    "io_inp": [
      2,
      4,
      0,
      4,
      1
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_des(sort_des(input)),1),5),5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-4, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n([2, 4],-1))),-4)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(input,-1))),-4)"
  },
  {
    "input": "input : list = [-5, 4, 0, 5, -4, -5]\noutput : list = [-18, -18, -15, -3, 9, 12]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(sub_n([-5, 4, 0, 5, -4, -5],1)),26)),3)",
    "io_inp": [
      -5,
      4,
      0,
      5,
      -4,
      -5
    ],
    "io_out": [
      -18,
      -18,
      -15,
      -3,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(sub_n(input,1)),26)),3)"
  },
  {
    "input": "input : list = [1, 4, 5, 5, -4, 4]\noutput : list = [5, 5, 4, 4, 1, -4]",
    "output": "generated_output : list = reverse(sort_asc([1, 4, 5, 5, -4, 4]))",
    "io_inp": [
      1,
      4,
      5,
      5,
      -4,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -5, -4, 4]\noutput : list = [-5, -4, 0, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([0, -5, -4, 4])))",
    "io_inp": [
      0,
      -5,
      -4,
      4
    ],
    "io_out": [
      -5,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, 4, -3, -4]\noutput : list = [-9, -8, -1, -7]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(sub_n([-2, 4, -3, -4],3),2),1),-4))",
    "io_inp": [
      -2,
      4,
      -3,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(sub_n(input,3),2),1),-4))"
  },
  {
    "input": "input : list = [-2, 0, 2]\noutput : list = [22, 18, 14]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(mul_n([-2, 0, 2],-1),1),3),5),2)",
    "io_inp": [
      -2,
      0,
      2
    ],
    "io_out": [
      22,
      18,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(mul_n(input,-1),1),3),5),2)"
  },
  {
    "input": "input : list = [0, -2, 0, 3, 5, 0]\noutput : list = [-6, -4, -4, -1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(take([0, -2, 0, 3, 5, 0],4),1),-5)))",
    "io_inp": [
      0,
      -2,
      0,
      3,
      5,
      0
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(take(input,4),1),-5)))"
  },
  {
    "input": "input : list = [-3, 5, 4, -4]\noutput : list = [5, 4, -3, -4]",
    "output": "generated_output : list = take(sort_des([-3, 5, 4, -4]),20)",
    "io_inp": [
      -3,
      5,
      4,
      -4
    ],
    "io_out": [
      5,
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),20)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [4, 6]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(mul_n([-1, -3],-1),-3)),29))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(mul_n(input,-1),-3)),29))"
  },
  {
    "input": "input : list = [-5, 5, -2, 1, 3, -1]\noutput : list = [3, 4, 6, 8, 10]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(drop([-5, 5, -2, 1, 3, -1],1))),4),1)",
    "io_inp": [
      -5,
      5,
      -2,
      1,
      3,
      -1
    ],
    "io_out": [
      3,
      4,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(drop(input,1))),4),1)"
  },
  {
    "input": "input : list = [1, 4, 0, -1]\noutput : list = [-3, 0, 3, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([1, 4, 0, -1],3)))",
    "io_inp": [
      1,
      4,
      0,
      -1
    ],
    "io_out": [
      -3,
      0,
      3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,3)))"
  },
  {
    "input": "input : list = [5, 2, -5, 4, 3, -4]\noutput : list = [-9, -8, -7, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(drop([5, 2, -5, 4, 3, -4],1),-1),25),5))",
    "io_inp": [
      5,
      2,
      -5,
      4,
      3,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(drop(input,1),-1),25),5))"
  },
  {
    "input": "input : list = [-1, 0, -4, -4, 3]\noutput : list = [-60, 0, -240, -240, 180]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(mul_n([-1, 0, -4, -4, 3],4)),-3)),-5)",
    "io_inp": [
      -1,
      0,
      -4,
      -4,
      3
    ],
    "io_out": [
      -60,
      0,
      -240,
      -240,
      180
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(mul_n(input,4)),-3)),-5)"
  },
  {
    "input": "input : list = [-3, -4, -3, -2, 3]\noutput : list = [-15, 10, 15, 15, 20]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(add_n([-3, -4, -3, -2, 3],-1),24),-5)),-5)",
    "io_inp": [
      -3,
      -4,
      -3,
      -2,
      3
    ],
    "io_out": [
      -15,
      10,
      15,
      15,
      20
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(add_n(input,-1),24),-5)),-5)"
  },
  {
    "input": "input : list = [2, 3, 0, -3]\noutput : list = [4, 5, 2, -1]",
    "output": "generated_output : list = sub_n([2, 3, 0, -3],-2)",
    "io_inp": [
      2,
      3,
      0,
      -3
    ],
    "io_out": [
      4,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, -1, -4, 5, 3]\noutput : list = [15, -5, -20, 25, 15]",
    "output": "generated_output : list = mul_n([3, -1, -4, 5, 3],5)",
    "io_inp": [
      3,
      -1,
      -4,
      5,
      3
    ],
    "io_out": [
      15,
      -5,
      -20,
      25,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -1, 2, -5, -3, 0]\noutput : list = [5, 5, 3, 2, 0, -2]",
    "output": "generated_output : list = take(sort_des(sub_n([2, -1, 2, -5, -3, 0],-3)),36)",
    "io_inp": [
      2,
      -1,
      2,
      -5,
      -3,
      0
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,-3)),36)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-12, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sub_n([1, 5],5)),-3),-4))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -12,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sub_n(input,5)),-3),-4))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [28, 28]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(sub_n([1, 1],-2),-5)),3),4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      28,
      28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(sub_n(input,-2),-5)),3),4)"
  },
  {
    "input": "input : list = [-3, -1, 3, 1]\noutput : list = [-1, 1, -3, -5]",
    "output": "generated_output : list = sub_n(reverse([-3, -1, 3, 1]),2)",
    "io_inp": [
      -3,
      -1,
      3,
      1
    ],
    "io_out": [
      -1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-3, -5, -3, 1, 0, -5]\noutput : list = [1, 0, -3, -3, -5, -5]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des([-3, -5, -3, 1, 0, -5])),1))",
    "io_inp": [
      -3,
      -5,
      -3,
      1,
      0,
      -5
    ],
    "io_out": [
      1,
      0,
      -3,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(input)),1))"
  },
  {
    "input": "input : list = [2, -3, -4, 2]\noutput : list = [-3, -1, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(mul_n([2, -3, -4, 2],2),-5))))",
    "io_inp": [
      2,
      -3,
      -4,
      2
    ],
    "io_out": [
      -3,
      -1,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(mul_n(input,2),-5))))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-17, -9]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(mul_n([-4, -2],4),-3),4)))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -17,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(mul_n(input,4),-3),4)))"
  },
  {
    "input": "input : list = [-5, -3, 2, 1, -2]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = take([-5, -3, 2, 1, -2],3)",
    "io_inp": [
      -5,
      -3,
      2,
      1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -3, -4, -1, -2, 3]\noutput : list = [-4, -3, -2, -1, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(reverse([-5, -3, -4, -1, -2, 3]),22),-1)))",
    "io_inp": [
      -5,
      -3,
      -4,
      -1,
      -2,
      3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(reverse(input),22),-1)))"
  },
  {
    "input": "input : list = [3, 4, 0, -3]\noutput : list = [1, 2, -2, -5]",
    "output": "generated_output : list = add_n([3, 4, 0, -3],-2)",
    "io_inp": [
      3,
      4,
      0,
      -3
    ],
    "io_out": [
      1,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, 0, 2, -1, -5, -3]\noutput : list = [3, 2, 1, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(add_n([1, 0, 2, -1, -5, -3],-5),-2),-3),-5))",
    "io_inp": [
      1,
      0,
      2,
      -1,
      -5,
      -3
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(add_n(input,-5),-2),-3),-5))"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [-5, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(drop([3, -1, -4],1)),4)),14)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(drop(input,1)),4)),14)"
  },
  {
    "input": "input : list = [5, 2, 3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(drop([5, 2, 3],1))),-1)",
    "io_inp": [
      5,
      2,
      3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(drop(input,1))),-1)"
  },
  {
    "input": "input : list = [-4, 4, 4, 0, 5, -1]\noutput : list = [16, 1, -4, -24, -24, -29]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_asc([-4, 4, 4, 0, 5, -1]),-5),21),4),45)",
    "io_inp": [
      -4,
      4,
      4,
      0,
      5,
      -1
    ],
    "io_out": [
      16,
      1,
      -4,
      -24,
      -24,
      -29
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_asc(input),-5),21),4),45)"
  },
  {
    "input": "input : list = [4, 5, -3, -2, 1, 3]\noutput : list = [-25, -20, -15, -5, 10, 15]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([4, 5, -3, -2, 1, 3])),-5)",
    "io_inp": [
      4,
      5,
      -3,
      -2,
      1,
      3
    ],
    "io_out": [
      -25,
      -20,
      -15,
      -5,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [0, -2, -2, 2, 5, -5]\noutput : list = [-6, 4, 1, -3, -3, -1]",
    "output": "generated_output : list = reverse(add_n([0, -2, -2, 2, 5, -5],-1))",
    "io_inp": [
      0,
      -2,
      -2,
      2,
      5,
      -5
    ],
    "io_out": [
      -6,
      4,
      1,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [2, 5, -5]\noutput : list = [1, 4, -6]",
    "output": "generated_output : list = sub_n([2, 5, -5],1)",
    "io_inp": [
      2,
      5,
      -5
    ],
    "io_out": [
      1,
      4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, -1, -3, -5, -5, -1]\noutput : list = [3, -1, -1, -3, -5, -5]",
    "output": "generated_output : list = sort_des([3, -1, -3, -5, -5, -1])",
    "io_inp": [
      3,
      -1,
      -3,
      -5,
      -5,
      -1
    ],
    "io_out": [
      3,
      -1,
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, -4, 3]\noutput : list = [0, 2, 7, 8]",
    "output": "generated_output : list = reverse(take(sort_des(take(add_n([4, -2, -4, 3],4),15)),31))",
    "io_inp": [
      4,
      -2,
      -4,
      3
    ],
    "io_out": [
      0,
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(add_n(input,4),15)),31))"
  },
  {
    "input": "input : list = [-1, 1, -4, 3]\noutput : list = [3, 1, -1, -4]",
    "output": "generated_output : list = sort_des([-1, 1, -4, 3])",
    "io_inp": [
      -1,
      1,
      -4,
      3
    ],
    "io_out": [
      3,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, 1, 0, -5, 1]\noutput : list = [5, 20, 10, 5, -20, 10]",
    "output": "generated_output : list = add_n(mul_n([0, 3, 1, 0, -5, 1],5),5)",
    "io_inp": [
      0,
      3,
      1,
      0,
      -5,
      1
    ],
    "io_out": [
      5,
      20,
      10,
      5,
      -20,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),5)"
  },
  {
    "input": "input : list = [3, 2, -4]\noutput : list = [60, 40, -80]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(reverse([3, 2, -4]),5))),4)",
    "io_inp": [
      3,
      2,
      -4
    ],
    "io_out": [
      60,
      40,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(reverse(input),5))),4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-2, -23]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(add_n([3, -4],-5),1)),3),1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -2,
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(add_n(input,-5),1)),3),1)"
  },
  {
    "input": "input : list = [-3, -3, 4, -1, 1]\noutput : list = [-3, -3, -1, 1, 4]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(sort_asc([-3, -3, 4, -1, 1]),-3),1),1),2)",
    "io_inp": [
      -3,
      -3,
      4,
      -1,
      1
    ],
    "io_out": [
      -3,
      -3,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(sort_asc(input),-3),1),1),2)"
  },
  {
    "input": "input : list = [-3, 4, 4, 1]\noutput : list = [-8, -1, -1, -4]",
    "output": "generated_output : list = reverse(sub_n(reverse([-3, 4, 4, 1]),5))",
    "io_inp": [
      -3,
      4,
      4,
      1
    ],
    "io_out": [
      -8,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),5))"
  },
  {
    "input": "input : list = [4, -5, 3, 5, 0, -3]\noutput : list = [-54, -30, 6, 42, 54, 66]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(mul_n([4, -5, 3, 5, 0, -3],3),4)),-1),5)",
    "io_inp": [
      4,
      -5,
      3,
      5,
      0,
      -3
    ],
    "io_out": [
      -54,
      -30,
      6,
      42,
      54,
      66
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(mul_n(input,3),4)),-1),5)"
  },
  {
    "input": "input : list = [-4, -1, 0, -3, 3]\noutput : list = [7, 4, 3]",
    "output": "generated_output : list = add_n(take(take(sort_des(add_n([-4, -1, 0, -3, 3],3)),3),32),1)",
    "io_inp": [
      -4,
      -1,
      0,
      -3,
      3
    ],
    "io_out": [
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(add_n(input,3)),3),32),1)"
  },
  {
    "input": "input : list = [-3, 4, 0, -2, 1]\noutput : list = [-1, -4, -5, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sort_des([-3, 4, 0, -2, 1]),3))),2)",
    "io_inp": [
      -3,
      4,
      0,
      -2,
      1
    ],
    "io_out": [
      -1,
      -4,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sort_des(input),3))),2)"
  },
  {
    "input": "input : list = [3, -4, -5, -3]\noutput : list = [9, 3, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(add_n([3, -4, -5, -3],5),1))",
    "io_inp": [
      3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      9,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,5),1))"
  },
  {
    "input": "input : list = [-5, -2, 2, 1, 1]\noutput : list = [-2, 1, 5, 4, 4]",
    "output": "generated_output : list = sub_n([-5, -2, 2, 1, 1],-3)",
    "io_inp": [
      -5,
      -2,
      2,
      1,
      1
    ],
    "io_out": [
      -2,
      1,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(reverse([1, 1]),1),-1)))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(reverse(input),1),-1)))"
  },
  {
    "input": "input : list = [4, -1, -2, -1, -2, -4]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = take(drop([4, -1, -2, -1, -2, -4],3),27)",
    "io_inp": [
      4,
      -1,
      -2,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(input,3),27)"
  },
  {
    "input": "input : list = [-2, 1, -2, -3, 1]\noutput : list = [-7, -7, -10, -10, -11]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(sort_des([-2, 1, -2, -3, 1]),-2),-4)),-2)",
    "io_inp": [
      -2,
      1,
      -2,
      -3,
      1
    ],
    "io_out": [
      -7,
      -7,
      -10,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(sort_des(input),-2),-4)),-2)"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [-3, 0, -1]",
    "output": "generated_output : list = mul_n([-3, 0, -1],1)",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      -3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, -2, 4, -4]\noutput : list = [-2, 4, -4]",
    "output": "generated_output : list = drop([4, -2, 4, -4],1)",
    "io_inp": [
      4,
      -2,
      4,
      -4
    ],
    "io_out": [
      -2,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -3, 2, 2, 1, 0]\noutput : list = [5, 6, 7]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(drop([-4, -3, 2, 2, 1, 0],3)))),5)",
    "io_inp": [
      -4,
      -3,
      2,
      2,
      1,
      0
    ],
    "io_out": [
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(drop(input,3)))),5)"
  },
  {
    "input": "input : list = [0, -3, 1, 1, 2]\noutput : list = [-8, 1]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(take([0, -3, 1, 1, 2],2)),-3),-3),-5)",
    "io_inp": [
      0,
      -3,
      1,
      1,
      2
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(take(input,2)),-3),-3),-5)"
  },
  {
    "input": "input : list = [3, -4, 2, 4, -1, 0]\noutput : list = [11, 10, 9, 3]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(take([3, -4, 2, 4, -1, 0],4),-5),-4),-2))",
    "io_inp": [
      3,
      -4,
      2,
      4,
      -1,
      0
    ],
    "io_out": [
      11,
      10,
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(take(input,4),-5),-4),-2))"
  },
  {
    "input": "input : list = [1, -4, 3, 3, -5, -3]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(take([1, -4, 3, 3, -5, -3],2)),21)))",
    "io_inp": [
      1,
      -4,
      3,
      3,
      -5,
      -3
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(take(input,2)),21)))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-15, -20]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(sort_des([1, 2]),-5),5)),7)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -15,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(sort_des(input),-5),5)),7)"
  },
  {
    "input": "input : list = [0, -2, 2, 2]\noutput : list = [0, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n([0, -2, 2, 2],4)),2))",
    "io_inp": [
      0,
      -2,
      2,
      2
    ],
    "io_out": [
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(input,4)),2))"
  },
  {
    "input": "input : list = [2, -5, -4, 2]\noutput : list = [0, 0, -6, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([2, -5, -4, 2],2)))",
    "io_inp": [
      2,
      -5,
      -4,
      2
    ],
    "io_out": [
      0,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-4, 0, 5, -3, -4, -2]\noutput : list = [-2, -4, -3, 5]",
    "output": "generated_output : list = take(take(take(reverse(drop([-4, 0, 5, -3, -4, -2],2)),10),32),10)",
    "io_inp": [
      -4,
      0,
      5,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(drop(input,2)),10),32),10)"
  },
  {
    "input": "input : list = [-1, -5, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take([-1, -5, 0],1))",
    "io_inp": [
      -1,
      -5,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-2, 0, 2, -4, -3]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(drop([-2, 0, 2, -4, -3],3),-2),29)))",
    "io_inp": [
      -2,
      0,
      2,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(drop(input,3),-2),29)))"
  },
  {
    "input": "input : list = [-3, 3, -2, -3, 4, 3]\noutput : list = [-20, -15, -15, 10, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(drop([-3, 3, -2, -3, 4, 3],1)),-5)))",
    "io_inp": [
      -3,
      3,
      -2,
      -3,
      4,
      3
    ],
    "io_out": [
      -20,
      -15,
      -15,
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(drop(input,1)),-5)))"
  },
  {
    "input": "input : list = [4, 0, -3, 5, -2, 5]\noutput : list = [20, 15, 5, -15, -20, -20]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(reverse([4, 0, -3, 5, -2, 5]),-5)),-5),20)",
    "io_inp": [
      4,
      0,
      -3,
      5,
      -2,
      5
    ],
    "io_out": [
      20,
      15,
      5,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(reverse(input),-5)),-5),20)"
  },
  {
    "input": "input : list = [-5, -2, 4, 4]\noutput : list = [4, -2, -14, -14]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sort_des([-5, -2, 4, 4])),3),33),-2)",
    "io_inp": [
      -5,
      -2,
      4,
      4
    ],
    "io_out": [
      4,
      -2,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sort_des(input)),3),33),-2)"
  },
  {
    "input": "input : list = [4, 2, -1, 2]\noutput : list = [5, 3, 3, 0]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(reverse([4, 2, -1, 2]),1),4)))",
    "io_inp": [
      4,
      2,
      -1,
      2
    ],
    "io_out": [
      5,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(reverse(input),1),4)))"
  },
  {
    "input": "input : list = [3, -3, 1, -2, 3]\noutput : list = [12, -3, 6, -6, 12]",
    "output": "generated_output : list = mul_n(take(add_n(reverse([3, -3, 1, -2, 3]),1),28),3)",
    "io_inp": [
      3,
      -3,
      1,
      -2,
      3
    ],
    "io_out": [
      12,
      -3,
      6,
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(input),1),28),3)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [15, 5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(mul_n([1, 3, -1],5)))))",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      15,
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [5, -5, 2, 0, 3, -4]\noutput : list = [0, -2, -3, -5, -9, -10]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(sort_des([5, -5, 2, 0, 3, -4]),-5),36)),1)",
    "io_inp": [
      5,
      -5,
      2,
      0,
      3,
      -4
    ],
    "io_out": [
      0,
      -2,
      -3,
      -5,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(sort_des(input),-5),36)),1)"
  },
  {
    "input": "input : list = [5, 5, 5, -5, -3, 4]\noutput : list = [-28, 28, 44, -36, -36, -36]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(mul_n([5, 5, 5, -5, -3, 4],-2),4)),-1),5)",
    "io_inp": [
      5,
      5,
      5,
      -5,
      -3,
      4
    ],
    "io_out": [
      -28,
      28,
      44,
      -36,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(mul_n(input,-2),4)),-1),5)"
  },
  {
    "input": "input : list = [0, -4, -1]\noutput : list = [-19, -4, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sort_des([0, -4, -1]),5)),1),2)",
    "io_inp": [
      0,
      -4,
      -1
    ],
    "io_out": [
      -19,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(sort_des(input),5)),1),2)"
  },
  {
    "input": "input : list = [-3, 5, 3, 3, 0, -3]\noutput : list = [-6, -6, -3, 0, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(add_n([-3, 5, 3, 3, 0, -3],-1)),-2)))",
    "io_inp": [
      -3,
      5,
      3,
      3,
      0,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -3,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(add_n(input,-1)),-2)))"
  },
  {
    "input": "input : list = [-1, 0, 2, -4, -2]\noutput : list = [4, 2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(take([-1, 0, 2, -4, -2],2),3),-4)),-2)",
    "io_inp": [
      -1,
      0,
      2,
      -4,
      -2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(take(input,2),3),-4)),-2)"
  },
  {
    "input": "input : list = [0, 5, 5, -5, -1, 4]\noutput : list = [-8, -4, -3, 1, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc([0, 5, 5, -5, -1, 4]),3)",
    "io_inp": [
      0,
      5,
      5,
      -5,
      -1,
      4
    ],
    "io_out": [
      -8,
      -4,
      -3,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = sub_n(mul_n(take(sub_n(sort_des([2, 4, 2]),4),3),-2),4)",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sub_n(sort_des(input),4),3),-2),4)"
  },
  {
    "input": "input : list = [-1, 0, -2, 4]\noutput : list = [40, 20, 0, -80]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n([-1, 0, -2, 4],-4))),5)",
    "io_inp": [
      -1,
      0,
      -2,
      4
    ],
    "io_out": [
      40,
      20,
      0,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(input,-4))),5)"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [4, -3, 0]",
    "output": "generated_output : list = add_n(reverse([-2, -5, 2]),2)",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, 4, -2, 3, -1]\noutput : list = [-5, -3, -2, 2, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(add_n([-4, 4, -2, 3, -1],-2),12))),1)",
    "io_inp": [
      -4,
      4,
      -2,
      3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(add_n(input,-2),12))),1)"
  },
  {
    "input": "input : list = [5, -3, 4, -4, 4, 5]\noutput : list = [-10, -9, -2, -2, -1, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sort_des([5, -3, 4, -4, 4, 5]),26)),-3),3)",
    "io_inp": [
      5,
      -3,
      4,
      -4,
      4,
      5
    ],
    "io_out": [
      -10,
      -9,
      -2,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sort_des(input),26)),-3),3)"
  },
  {
    "input": "input : list = [-4, -5, -4, -3, 4]\noutput : list = [-32]",
    "output": "generated_output : list = take(mul_n(drop(sort_asc(mul_n([-4, -5, -4, -3, 4],2)),4),-4),17)",
    "io_inp": [
      -4,
      -5,
      -4,
      -3,
      4
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(sort_asc(mul_n(input,2)),4),-4),17)"
  },
  {
    "input": "input : list = [-5, -2, 4, 2, 2, 1]\noutput : list = [30, -15, -105]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(take([-5, -2, 4, 2, 2, 1],3),3),-5)),3)",
    "io_inp": [
      -5,
      -2,
      4,
      2,
      2,
      1
    ],
    "io_out": [
      30,
      -15,
      -105
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(take(input,3),3),-5)),3)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(sub_n([3, 3],5)),2)),17)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(sub_n(input,5)),2)),17)"
  },
  {
    "input": "input : list = [3, 1, -2, 4]\noutput : list = [4, 2, -1, 5]",
    "output": "generated_output : list = sub_n([3, 1, -2, 4],-1)",
    "io_inp": [
      3,
      1,
      -2,
      4
    ],
    "io_out": [
      4,
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, 1, -4]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(take([1, 1, -4],1),-5)",
    "io_inp": [
      1,
      1,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [-3, 2, 1, -1]\noutput : list = [-7, -2, -3, -5]",
    "output": "generated_output : list = reverse(take(add_n(reverse(sub_n([-3, 2, 1, -1],3)),-1),40))",
    "io_inp": [
      -3,
      2,
      1,
      -1
    ],
    "io_out": [
      -7,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(sub_n(input,3)),-1),40))"
  },
  {
    "input": "input : list = [-1, 4, 0, -2, -1, 4]\noutput : list = [-16, -16, 0, 4, 4, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n([-1, 4, 0, -2, -1, 4],-1))),4)",
    "io_inp": [
      -1,
      4,
      0,
      -2,
      -1,
      4
    ],
    "io_out": [
      -16,
      -16,
      0,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(input,-1))),4)"
  },
  {
    "input": "input : list = [-3, -3, 5, 4, -4]\noutput : list = [-22, -19, -19, 2, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(mul_n([-3, -3, 5, 4, -4],3),5)),-5))",
    "io_inp": [
      -3,
      -3,
      5,
      4,
      -4
    ],
    "io_out": [
      -22,
      -19,
      -19,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(mul_n(input,3),5)),-5))"
  },
  {
    "input": "input : list = [-4, -5, 0, 3, -5]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(reverse([-4, -5, 0, 3, -5])),2),1))",
    "io_inp": [
      -4,
      -5,
      0,
      3,
      -5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(reverse(input)),2),1))"
  },
  {
    "input": "input : list = [0, -3, -3, 0, 3]\noutput : list = [-7, -7]",
    "output": "generated_output : list = reverse(add_n(drop(reverse(drop([0, -3, -3, 0, 3],1)),2),-4))",
    "io_inp": [
      0,
      -3,
      -3,
      0,
      3
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(reverse(drop(input,1)),2),-4))"
  },
  {
    "input": "input : list = [-1, 3, 4, 3]\noutput : list = [3, 7, 8, 7]",
    "output": "generated_output : list = sub_n([-1, 3, 4, 3],-4)",
    "io_inp": [
      -1,
      3,
      4,
      3
    ],
    "io_out": [
      3,
      7,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -2, 0]\noutput : list = [0, 6, 6]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des([-2, -2, 0]),10),-3))",
    "io_inp": [
      -2,
      -2,
      0
    ],
    "io_out": [
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(input),10),-3))"
  },
  {
    "input": "input : list = [1, -5, 3, 5, 3, -2]\noutput : list = [-1, 1, 1, 3]",
    "output": "generated_output : list = take(drop(add_n(sort_asc(reverse([1, -5, 3, 5, 3, -2])),-2),2),9)",
    "io_inp": [
      1,
      -5,
      3,
      5,
      3,
      -2
    ],
    "io_out": [
      -1,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(drop(add_n(sort_asc(reverse(input)),-2),2),9)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-5, -20]",
    "output": "generated_output : list = mul_n([1, 4],-5)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(reverse([-5, -3, 1]),-3))),42)",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(reverse(input),-3))),42)"
  },
  {
    "input": "input : list = [1, 4, 0, 1, 4, 2]\noutput : list = [2, 4, 1, 0, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, 0, 1, 4, 2])",
    "io_inp": [
      1,
      4,
      0,
      1,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      1,
      0,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [6, 6, 1]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(add_n([3, 3, 4],-4)),-5)),-1)",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      6,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(add_n(input,-4)),-5)),-1)"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [-13]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(take([2, -4, 2],1),-5),3),28))",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(take(input,1),-5),3),28))"
  },
  {
    "input": "input : list = [0, -1, 0, 0, 5, 0]\noutput : list = [5, 0, 0, 0, 0, -1]",
    "output": "generated_output : list = sort_des([0, -1, 0, 0, 5, 0])",
    "io_inp": [
      0,
      -1,
      0,
      0,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [-6, 4, -6]",
    "output": "generated_output : list = reverse(mul_n(add_n([0, 5, 0],-3),2))",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      -6,
      4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-3),2))"
  },
  {
    "input": "input : list = [-1, 3, 2, -2, -2]\noutput : list = [2, 2, 3, 6, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(mul_n([-1, 3, 2, -2, -2],1),1))),4)",
    "io_inp": [
      -1,
      3,
      2,
      -2,
      -2
    ],
    "io_out": [
      2,
      2,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(mul_n(input,1),1))),4)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = reverse([-3, 1, 3])",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, 2, 5]\noutput : list = [8, 5, 1, 0]",
    "output": "generated_output : list = sub_n(reverse([-3, -2, 2, 5]),-3)",
    "io_inp": [
      -3,
      -2,
      2,
      5
    ],
    "io_out": [
      8,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [5, -2, 4, 2, 2, -2]\noutput : list = [-4, 0, 0, 2, -4, 3]",
    "output": "generated_output : list = add_n(reverse([5, -2, 4, 2, 2, -2]),-2)",
    "io_inp": [
      5,
      -2,
      4,
      2,
      2,
      -2
    ],
    "io_out": [
      -4,
      0,
      0,
      2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-1, -5, 0, 4, 3, 1]\noutput : list = [4, 20, 24, 40]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(take([-1, -5, 0, 4, 3, 1],4),5))),-4)",
    "io_inp": [
      -1,
      -5,
      0,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      20,
      24,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(take(input,4),5))),-4)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [3, 6]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_asc([1, 0])),-1),25),3)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_asc(input)),-1),25),3)"
  },
  {
    "input": "input : list = [-1, 2, -4, -4, 3, -4]\noutput : list = [4, 3, 0, -3, -3, -3]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sort_des([-1, 2, -4, -4, 3, -4])),1),7))",
    "io_inp": [
      -1,
      2,
      -4,
      -4,
      3,
      -4
    ],
    "io_out": [
      4,
      3,
      0,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sort_des(input)),1),7))"
  },
  {
    "input": "input : list = [3, -4, -2, 5, 3, 0]\noutput : list = [9, 7, 5, 2, 2, 0]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(sort_asc([3, -4, -2, 5, 3, 0]),-1),4),-4),5)",
    "io_inp": [
      3,
      -4,
      -2,
      5,
      3,
      0
    ],
    "io_out": [
      9,
      7,
      5,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(sort_asc(input),-1),4),-4),5)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [6, 7]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(sub_n([4, 3],-3),3))))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(sub_n(input,-3),3))))"
  },
  {
    "input": "input : list = [-1, -4, 4, 3, -2]\noutput : list = [10, 9, 5, 4, 2]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(add_n([-1, -4, 4, 3, -2],2)),-4),29))",
    "io_inp": [
      -1,
      -4,
      4,
      3,
      -2
    ],
    "io_out": [
      10,
      9,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(add_n(input,2)),-4),29))"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [1, -2, 2]",
    "output": "generated_output : list = sub_n([4, 1, 5],3)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      1,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, 1, 5, 1, -2, -3]\noutput : list = [-9, -8, -5, -5, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(drop([-3, 1, 5, 1, -2, -3],1),-5)),4),-3)",
    "io_inp": [
      -3,
      1,
      5,
      1,
      -2,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(drop(input,1),-5)),4),-3)"
  },
  {
    "input": "input : list = [-1, -5, -5, -4, 4]\noutput : list = [8, -8, -8, -4, 28]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(sub_n([-1, -5, -5, -4, 4],2),-3),-4),4),4)",
    "io_inp": [
      -1,
      -5,
      -5,
      -4,
      4
    ],
    "io_out": [
      8,
      -8,
      -8,
      -4,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(sub_n(input,2),-3),-4),4),4)"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [12, -33, 3]",
    "output": "generated_output : list = add_n(sub_n(reverse(mul_n(mul_n([1, -3, 2],-3),-3)),4),-2)",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      12,
      -33,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(mul_n(mul_n(input,-3),-3)),4),-2)"
  },
  {
    "input": "input : list = [-3, 0, -3, 2, 4]\noutput : list = [10, 4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take([-3, 0, -3, 2, 4],2)),5),2)",
    "io_inp": [
      -3,
      0,
      -3,
      2,
      4
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(input,2)),5),2)"
  },
  {
    "input": "input : list = [-1, 0, -1, 0, -2]\noutput : list = [-2, 0, -1, 0, -1]",
    "output": "generated_output : list = reverse(mul_n([-1, 0, -1, 0, -2],1))",
    "io_inp": [
      -1,
      0,
      -1,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      -1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [5, 4, 0, -2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_des([5, 4, 0, -2, -1])))),2)",
    "io_inp": [
      5,
      4,
      0,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [-2, 4, 1, 0, 1]\noutput : list = [-10, -4, -7, -8, -7]",
    "output": "generated_output : list = sub_n(add_n([-2, 4, 1, 0, 1],-4),4)",
    "io_inp": [
      -2,
      4,
      1,
      0,
      1
    ],
    "io_out": [
      -10,
      -4,
      -7,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),4)"
  },
  {
    "input": "input : list = [3, 3, -4, 2, 3, 0]\noutput : list = [8, 8, 8, 7, 5, 1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc([3, 3, -4, 2, 3, 0])))),5)",
    "io_inp": [
      3,
      3,
      -4,
      2,
      3,
      0
    ],
    "io_out": [
      8,
      8,
      8,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [-2, 1, 3, 1, 1]\noutput : list = [11, 11, 11, 13]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(drop([-2, 1, 3, 1, 1],1)),5)),-5)",
    "io_inp": [
      -2,
      1,
      3,
      1,
      1
    ],
    "io_out": [
      11,
      11,
      11,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(drop(input,1)),5)),-5)"
  },
  {
    "input": "input : list = [-1, 0, 2, -4]\noutput : list = [2, 0, -1, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc(sort_asc([-1, 0, 2, -4]))),38))",
    "io_inp": [
      -1,
      0,
      2,
      -4
    ],
    "io_out": [
      2,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(sort_asc(input))),38))"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [11, 9, 7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse([3, -1, 1]),-3),5))",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      11,
      9,
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(input),-3),5))"
  },
  {
    "input": "input : list = [-4, -4, 2, -4, 5]\noutput : list = [11, 8, 2, 2, 2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_des([-4, -4, 2, -4, 5]),2),-4)))",
    "io_inp": [
      -4,
      -4,
      2,
      -4,
      5
    ],
    "io_out": [
      11,
      8,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_des(input),2),-4)))"
  },
  {
    "input": "input : list = [-1, -3, -2, 0, 2]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = sub_n(drop([-1, -3, -2, 0, 2],2),-1)",
    "io_inp": [
      -1,
      -3,
      -2,
      0,
      2
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [-6, -5, -2]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(reverse([0, -4, -3])),3)),2)",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(reverse(input)),3)),2)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-21, -1, 14]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(sort_asc([1, -2, 5])),-5),1),-3)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -21,
      -1,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(sort_asc(input)),-5),1),-3)"
  },
  {
    "input": "input : list = [-4, 5, 5, 5]\noutput : list = [198, 198, 198, -207]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(mul_n([-4, 5, 5, 5],5),-3)),3),3)",
    "io_inp": [
      -4,
      5,
      5,
      5
    ],
    "io_out": [
      198,
      198,
      198,
      -207
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(mul_n(input,5),-3)),3),3)"
  },
  {
    "input": "input : list = [-1, -2, -3, -3]\noutput : list = [4, 7, 10, 10]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(mul_n([-1, -2, -3, -3],-3))),2),-3)",
    "io_inp": [
      -1,
      -2,
      -3,
      -3
    ],
    "io_out": [
      4,
      7,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(mul_n(input,-3))),2),-3)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = reverse(sort_asc([-1, 5, 4]))",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([2, 0, -2])))",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, 0, -3, 4, -1, -3]\noutput : list = [18, 8, -17, 18, 3, 23]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(mul_n([-4, 0, -3, 4, -1, -3],-5)),1),2),-5)",
    "io_inp": [
      -4,
      0,
      -3,
      4,
      -1,
      -3
    ],
    "io_out": [
      18,
      8,
      -17,
      18,
      3,
      23
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(mul_n(input,-5)),1),2),-5)"
  },
  {
    "input": "input : list = [-1, -4, 5, -2, 2]\noutput : list = [10, 1, -8, -11, -17]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(reverse([-1, -4, 5, -2, 2]),21),3),5))",
    "io_inp": [
      -1,
      -4,
      5,
      -2,
      2
    ],
    "io_out": [
      10,
      1,
      -8,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(reverse(input),21),3),5))"
  },
  {
    "input": "input : list = [-1, -5, -2]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = sort_des([-1, -5, -2])",
    "io_inp": [
      -1,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, 2]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = add_n([-4, -4, 2],3)",
    "io_inp": [
      -4,
      -4,
      2
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-8, -8, -2]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(mul_n([0, -3, -3],-2),-2),1),-1))",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(mul_n(input,-2),-2),1),-1))"
  },
  {
    "input": "input : list = [-2, -1, -4, 2, -3, 2]\noutput : list = [-3, -3, -6, -7, -8, -9]",
    "output": "generated_output : list = reverse(reverse(take(add_n(sort_des([-2, -1, -4, 2, -3, 2]),-5),20)))",
    "io_inp": [
      -2,
      -1,
      -4,
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(sort_des(input),-5),20)))"
  },
  {
    "input": "input : list = [-5, 2, -5, -5, -5, 4]\noutput : list = [-10, -3, -10, -10, -10, -1]",
    "output": "generated_output : list = sub_n([-5, 2, -5, -5, -5, 4],5)",
    "io_inp": [
      -5,
      2,
      -5,
      -5,
      -5,
      4
    ],
    "io_out": [
      -10,
      -3,
      -10,
      -10,
      -10,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3, 2, 4]\noutput : list = [-1, 0, 1, 2]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(add_n([5, 3, 2, 4],1))),4),4)",
    "io_inp": [
      5,
      3,
      2,
      4
    ],
    "io_out": [
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(add_n(input,1))),4),4)"
  },
  {
    "input": "input : list = [-1, 4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = drop([-1, 4, 0],1)",
    "io_inp": [
      -1,
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -2, 4, 5, 3]\noutput : list = [1, -17]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc(take([-1, 5, -2, 4, 5, 3],2)),11),-3),2)",
    "io_inp": [
      -1,
      5,
      -2,
      4,
      5,
      3
    ],
    "io_out": [
      1,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(take(input,2)),11),-3),2)"
  },
  {
    "input": "input : list = [3, -5, 4]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_asc([3, -5, 4]),-1)),7))",
    "io_inp": [
      3,
      -5,
      4
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_asc(input),-1)),7))"
  },
  {
    "input": "input : list = [-3, -3, 3, 5, 0, 3]\noutput : list = [-4, -2, -2, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(sub_n([-3, -3, 3, 5, 0, 3],1),-1),37)))",
    "io_inp": [
      -3,
      -3,
      3,
      5,
      0,
      3
    ],
    "io_out": [
      -4,
      -2,
      -2,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(sub_n(input,1),-1),37)))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc([-1, 0]),-1),-4)),1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc(input),-1),-4)),1)"
  },
  {
    "input": "input : list = [-5, -5, -2, 5, 1, 0]\noutput : list = [-3, -3, 0, 7, 3, 2]",
    "output": "generated_output : list = add_n([-5, -5, -2, 5, 1, 0],2)",
    "io_inp": [
      -5,
      -5,
      -2,
      5,
      1,
      0
    ],
    "io_out": [
      -3,
      -3,
      0,
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 5, 4, 0]\noutput : list = [5, 4, 4, 0]",
    "output": "generated_output : list = sort_des([4, 5, 4, 0])",
    "io_inp": [
      4,
      5,
      4,
      0
    ],
    "io_out": [
      5,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2, -1, 0]\noutput : list = [0, -1, -2, -3]",
    "output": "generated_output : list = reverse([-3, -2, -1, 0])",
    "io_inp": [
      -3,
      -2,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [-12, -9, 15]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-5, 3, 4])),-3)",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      -12,
      -9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [-5, 0, -4]\noutput : list = [2, 3, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n([-5, 0, -4],3),-4))))",
    "io_inp": [
      -5,
      0,
      -4
    ],
    "io_out": [
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(add_n(input,3),-4))))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([3, -3])",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, -2, 4]\noutput : list = [4, -2, 4, -4]",
    "output": "generated_output : list = take(reverse([-4, 4, -2, 4]),4)",
    "io_inp": [
      -4,
      4,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [-1, 5, -1, -5, 5]\noutput : list = [-9, -5, -5, 1, 1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(reverse([-1, 5, -1, -5, 5]),-3),3)),-4)",
    "io_inp": [
      -1,
      5,
      -1,
      -5,
      5
    ],
    "io_out": [
      -9,
      -5,
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(reverse(input),-3),3)),-4)"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(take([-2, 0, -4],1)),3)),-4)",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(take(input,1)),3)),-4)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-13, -11]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(sub_n([-5, -3],4),-1))),-3)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -13,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(sub_n(input,4),-1))),-3)"
  },
  {
    "input": "input : list = [-4, -4, -5, -4]\noutput : list = [-12, -15, -12]",
    "output": "generated_output : list = mul_n(drop([-4, -4, -5, -4],1),3)",
    "io_inp": [
      -4,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -12,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [5, -4, 0]\noutput : list = [-4, 0, 5]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_asc([5, -4, 0]),4),-1),3))",
    "io_inp": [
      5,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_asc(input),4),-1),3))"
  },
  {
    "input": "input : list = [1, -3, 3, 4, -5]\noutput : list = [-4, 12, -12, -16, 20]",
    "output": "generated_output : list = mul_n([1, -3, 3, 4, -5],-4)",
    "io_inp": [
      1,
      -3,
      3,
      4,
      -5
    ],
    "io_out": [
      -4,
      12,
      -12,
      -16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = reverse(add_n(reverse([1, -3, -5]),2))",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),2))"
  },
  {
    "input": "input : list = [1, 0, 0, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(take([1, 0, 0, -2],2),5),-2)))",
    "io_inp": [
      1,
      0,
      0,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(take(input,2),5),-2)))"
  },
  {
    "input": "input : list = [3, -2, 4, 3, 3, -5]\noutput : list = [8, 4, 4, 4, -16, -28]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(add_n([3, -2, 4, 3, 3, -5],1),-3),4)),48)",
    "io_inp": [
      3,
      -2,
      4,
      3,
      3,
      -5
    ],
    "io_out": [
      8,
      4,
      4,
      4,
      -16,
      -28
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(add_n(input,1),-3),4)),48)"
  },
  {
    "input": "input : list = [-2, 3, 1, -2]\noutput : list = [12, 10, 7, 7]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des([-2, 3, 1, -2]),-4),-5),10)",
    "io_inp": [
      -2,
      3,
      1,
      -2
    ],
    "io_out": [
      12,
      10,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(input),-4),-5),10)"
  },
  {
    "input": "input : list = [-2, -4, 2, 0, 0]\noutput : list = [5, 9, -3, 1, 1]",
    "output": "generated_output : list = sub_n(mul_n([-2, -4, 2, 0, 0],-2),-1)",
    "io_inp": [
      -2,
      -4,
      2,
      0,
      0
    ],
    "io_out": [
      5,
      9,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),-1)"
  },
  {
    "input": "input : list = [2, -3, -3, 4, 1]\noutput : list = [1, 1, 9, 11, 15]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(mul_n([2, -3, -3, 4, 1],2),2)),-5))",
    "io_inp": [
      2,
      -3,
      -3,
      4,
      1
    ],
    "io_out": [
      1,
      1,
      9,
      11,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(mul_n(input,2),2)),-5))"
  },
  {
    "input": "input : list = [-3, -2, 2, 4]\noutput : list = [-22, -12, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(drop([-3, -2, 2, 4],1),-5)),-4),-2)",
    "io_inp": [
      -3,
      -2,
      2,
      4
    ],
    "io_out": [
      -22,
      -12,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(drop(input,1),-5)),-4),-2)"
  },
  {
    "input": "input : list = [2, -1, 5]\noutput : list = [35, 11, 59]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(sub_n([2, -1, 5],-3),13),-4),-2),5)",
    "io_inp": [
      2,
      -1,
      5
    ],
    "io_out": [
      35,
      11,
      59
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(sub_n(input,-3),13),-4),-2),5)"
  },
  {
    "input": "input : list = [5, 3, 0, 2]\noutput : list = [-8, 0, -12]",
    "output": "generated_output : list = reverse(mul_n(drop([5, 3, 0, 2],1),-4))",
    "io_inp": [
      5,
      3,
      0,
      2
    ],
    "io_out": [
      -8,
      0,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,1),-4))"
  },
  {
    "input": "input : list = [-3, 2, 4, -3]\noutput : list = [-4, 1]",
    "output": "generated_output : list = add_n(take([-3, 2, 4, -3],2),-1)",
    "io_inp": [
      -3,
      2,
      4,
      -3
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [-2, -1, 3, -3, 1, 3]\noutput : list = [-1, 0, 4, -2]",
    "output": "generated_output : list = sub_n(take(take([-2, -1, 3, -3, 1, 3],4),25),-1)",
    "io_inp": [
      -2,
      -1,
      3,
      -3,
      1,
      3
    ],
    "io_out": [
      -1,
      0,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,4),25),-1)"
  },
  {
    "input": "input : list = [4, -5, 5, 1]\noutput : list = [5, 4, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc([4, -5, 5, 1]))",
    "io_inp": [
      4,
      -5,
      5,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -5, 0]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(sort_des([-4, -5, 0]))),29),2)",
    "io_inp": [
      -4,
      -5,
      0
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(sort_des(input))),29),2)"
  },
  {
    "input": "input : list = [-3, -1, -1, -5, -5, 1]\noutput : list = [-4, -2, -2, -6, -6, 0]",
    "output": "generated_output : list = sub_n([-3, -1, -1, -5, -5, 1],1)",
    "io_inp": [
      -3,
      -1,
      -1,
      -5,
      -5,
      1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 2, -4, 3, 3]\noutput : list = [14, 11, 11, 8, -10]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(mul_n([4, 2, -4, 3, 3],3)))),-2)",
    "io_inp": [
      4,
      2,
      -4,
      3,
      3
    ],
    "io_out": [
      14,
      11,
      11,
      8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(mul_n(input,3)))),-2)"
  },
  {
    "input": "input : list = [4, 0, 2, 5]\noutput : list = [0, -80, -160, -200]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(sort_asc([4, 0, 2, 5]),14),-2),4),5)",
    "io_inp": [
      4,
      0,
      2,
      5
    ],
    "io_out": [
      0,
      -80,
      -160,
      -200
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(sort_asc(input),14),-2),4),5)"
  },
  {
    "input": "input : list = [2, 3, -2]\noutput : list = [-150, 350, 250]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n([2, 3, -2],-4),-2)),5),-5)",
    "io_inp": [
      2,
      3,
      -2
    ],
    "io_out": [
      -150,
      350,
      250
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n(input,-4),-2)),5),-5)"
  },
  {
    "input": "input : list = [2, -5, 1, -3, 1, -5]\noutput : list = [2, -5, 1, -3, 1, -5]",
    "output": "generated_output : list = mul_n([2, -5, 1, -3, 1, -5],1)",
    "io_inp": [
      2,
      -5,
      1,
      -3,
      1,
      -5
    ],
    "io_out": [
      2,
      -5,
      1,
      -3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, -2, 3, 2]\noutput : list = [1, 5, 6, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc([3, -2, 3, 2]),14),-3)",
    "io_inp": [
      3,
      -2,
      3,
      2
    ],
    "io_out": [
      1,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),14),-3)"
  },
  {
    "input": "input : list = [2, 0, -1, -1, -5, 4]\noutput : list = [10, 2, 2, 0, -4, -8]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(sort_des([2, 0, -1, -1, -5, 4]))),-2),51)",
    "io_inp": [
      2,
      0,
      -1,
      -1,
      -5,
      4
    ],
    "io_out": [
      10,
      2,
      2,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(sort_des(input))),-2),51)"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [-1, -2, -6]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(sort_des([1, -3, 2])),-3)))",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [-5, 5, -5, -5, -2]\noutput : list = [-10, -10, -7, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop([-5, 5, -5, -5, -2],1)))),5)",
    "io_inp": [
      -5,
      5,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop(input,1)))),5)"
  },
  {
    "input": "input : list = [-5, -1, 5, 1, -1]\noutput : list = [-8, -4, 2, -2, -4]",
    "output": "generated_output : list = add_n([-5, -1, 5, 1, -1],-3)",
    "io_inp": [
      -5,
      -1,
      5,
      1,
      -1
    ],
    "io_out": [
      -8,
      -4,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -4, 4, 3, 3]\noutput : list = [28, 24, -8, -4, -4]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(mul_n([-5, -4, 4, 3, 3],1),21),-3),-4),4)",
    "io_inp": [
      -5,
      -4,
      4,
      3,
      3
    ],
    "io_out": [
      28,
      24,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(mul_n(input,1),21),-3),-4),4)"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [1, 7, 7]",
    "output": "generated_output : list = add_n(sub_n([-1, 5, 5],-3),-1)",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-3),-1)"
  },
  {
    "input": "input : list = [5, -3, -3, -3, -2]\noutput : list = [5, -2, -3, -3, -3]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_asc([5, -3, -3, -3, -2])))))",
    "io_inp": [
      5,
      -3,
      -3,
      -3,
      -2
    ],
    "io_out": [
      5,
      -2,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-3, 2, 1, -1, 2, -3]\noutput : list = [-5, -5, 0, 10, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(drop([-3, 2, 1, -1, 2, -3],1),-1),-5),7))",
    "io_inp": [
      -3,
      2,
      1,
      -1,
      2,
      -3
    ],
    "io_out": [
      -5,
      -5,
      0,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(drop(input,1),-1),-5),7))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [0, -25]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(reverse(mul_n([1, -4],5)))),5)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      0,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(reverse(mul_n(input,5)))),5)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-2, -20]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sort_asc([-3, 3])),-3),-3),2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -2,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sort_asc(input)),-3),-3),2)"
  },
  {
    "input": "input : list = [4, -1, 4, 1, 1, 5]\noutput : list = [-125, -100, -100, -25, -25, 25]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(mul_n([4, -1, 4, 1, 1, 5],5),20),-5)),1)",
    "io_inp": [
      4,
      -1,
      4,
      1,
      1,
      5
    ],
    "io_out": [
      -125,
      -100,
      -100,
      -25,
      -25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(mul_n(input,5),20),-5)),1)"
  },
  {
    "input": "input : list = [1, -2, -3, -4, 5, 0]\noutput : list = [-60, -44, -28, 4, 20, 84]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(mul_n([1, -2, -3, -4, 5, 0],-4))),-4),4)",
    "io_inp": [
      1,
      -2,
      -3,
      -4,
      5,
      0
    ],
    "io_out": [
      -60,
      -44,
      -28,
      4,
      20,
      84
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(mul_n(input,-4))),-4),4)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(sub_n([-3, 1],2)),2)),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(sub_n(input,2)),2)),-5)"
  },
  {
    "input": "input : list = [-4, -1, 2, -3, -2]\noutput : list = [19]",
    "output": "generated_output : list = take(sub_n(mul_n(take([-4, -1, 2, -3, -2],1),-4),-3),43)",
    "io_inp": [
      -4,
      -1,
      2,
      -3,
      -2
    ],
    "io_out": [
      19
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(input,1),-4),-3),43)"
  },
  {
    "input": "input : list = [-2, 0, -1]\noutput : list = [-1, 1, 0]",
    "output": "generated_output : list = add_n([-2, 0, -1],1)",
    "io_inp": [
      -2,
      0,
      -1
    ],
    "io_out": [
      -1,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 2, -3, -4, -2]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(drop(reverse([-4, 2, -3, -4, -2]),4),1)),-5)",
    "io_inp": [
      -4,
      2,
      -3,
      -4,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(drop(reverse(input),4),1)),-5)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([-3, -4])),1)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-1, 0, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(drop([-1, 0, 2],1),13),-5),2))",
    "io_inp": [
      -1,
      0,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(drop(input,1),13),-5),2))"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([5, 1, 3],1)))",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sub_n([-1, 0],5)),-4),2))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sub_n(input,5)),-4),2))"
  },
  {
    "input": "input : list = [0, -1, -5, -1]\noutput : list = [5, 1, 1]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sort_asc([0, -1, -5, -1])),19),3),-1)",
    "io_inp": [
      0,
      -1,
      -5,
      -1
    ],
    "io_out": [
      5,
      1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sort_asc(input)),19),3),-1)"
  },
  {
    "input": "input : list = [-5, 1, 4, 4, 3]\noutput : list = [-12, -16, -16, -4, 20]",
    "output": "generated_output : list = reverse(mul_n([-5, 1, 4, 4, 3],-4))",
    "io_inp": [
      -5,
      1,
      4,
      4,
      3
    ],
    "io_out": [
      -12,
      -16,
      -16,
      -4,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [0, -1, 5, 1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(drop([0, -1, 5, 1],2)),-1),4),31)",
    "io_inp": [
      0,
      -1,
      5,
      1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(drop(input,2)),-1),4),31)"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-13]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(mul_n([-5, -3, 4],-3))),1),1)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(mul_n(input,-3))),1),1)"
  },
  {
    "input": "input : list = [5, 1, 0, -2, 2]\noutput : list = [4, 2, 6]",
    "output": "generated_output : list = reverse(add_n(take(take(reverse([5, 1, 0, -2, 2]),19),3),4))",
    "io_inp": [
      5,
      1,
      0,
      -2,
      2
    ],
    "io_out": [
      4,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(reverse(input),19),3),4))"
  },
  {
    "input": "input : list = [-2, -1, -1, -2, 5]\noutput : list = [2, 2, 8]",
    "output": "generated_output : list = drop(sort_asc(sub_n(sub_n([-2, -1, -1, -2, 5],-2),-1)),2)",
    "io_inp": [
      -2,
      -1,
      -1,
      -2,
      5
    ],
    "io_out": [
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sub_n(sub_n(input,-2),-1)),2)"
  },
  {
    "input": "input : list = [4, -5, -4, 3]\noutput : list = [4, 3, -4, -5]",
    "output": "generated_output : list = sort_des([4, -5, -4, 3])",
    "io_inp": [
      4,
      -5,
      -4,
      3
    ],
    "io_out": [
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -3, -4, 5, -1, -1]\noutput : list = [10, 6, -2, -2, -6, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([3, -3, -4, 5, -1, -1])),2)",
    "io_inp": [
      3,
      -3,
      -4,
      5,
      -1,
      -1
    ],
    "io_out": [
      10,
      6,
      -2,
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, 16]",
    "output": "generated_output : list = mul_n(add_n([-4, 0],4),4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),4)"
  },
  {
    "input": "input : list = [5, -1, 5, 5]\noutput : list = [-10, -4, -4, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(reverse([5, -1, 5, 5]))),-5),-4)",
    "io_inp": [
      5,
      -1,
      5,
      5
    ],
    "io_out": [
      -10,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(reverse(input))),-5),-4)"
  },
  {
    "input": "input : list = [-2, 5, -5, 0]\noutput : list = [6, 1, 11, 4]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(sub_n([-2, 5, -5, 0],-5),4)),6),3)",
    "io_inp": [
      -2,
      5,
      -5,
      0
    ],
    "io_out": [
      6,
      1,
      11,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(sub_n(input,-5),4)),6),3)"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [7, 6, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse([4, 3, -2]),-4),1))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(input),-4),1))"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = drop([-2, -3, 4],1)",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 3, -4, 1, -5]\noutput : list = [-3, -4]",
    "output": "generated_output : list = add_n(sort_des(take(take(sort_asc([-4, 3, -4, 1, -5]),2),25)),1)",
    "io_inp": [
      -4,
      3,
      -4,
      1,
      -5
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sort_asc(input),2),25)),1)"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-20, 10, -30]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(reverse([2, -1, 3]),-5)),6),2)",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -20,
      10,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(reverse(input),-5)),6),2)"
  },
  {
    "input": "input : list = [1, -2, -4, -2]\noutput : list = [21, 13, 13, 1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_des([1, -2, -4, -2]),2),-4),3))",
    "io_inp": [
      1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      21,
      13,
      13,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_des(input),2),-4),3))"
  },
  {
    "input": "input : list = [3, 4, -1]\noutput : list = [15, 20, -5]",
    "output": "generated_output : list = mul_n([3, 4, -1],5)",
    "io_inp": [
      3,
      4,
      -1
    ],
    "io_out": [
      15,
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -5, 5, 1, -4, 0]\noutput : list = [-15, -12, -9, 0, 3, 15]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(sort_des([-3, -5, 5, 1, -4, 0])))),3)",
    "io_inp": [
      -3,
      -5,
      5,
      1,
      -4,
      0
    ],
    "io_out": [
      -15,
      -12,
      -9,
      0,
      3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [-5, -4, 0]",
    "output": "generated_output : list = add_n(take(reverse(take(sort_des([3, -1, -2]),13)),7),-3)",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sort_des(input),13)),7),-3)"
  },
  {
    "input": "input : list = [-3, -3, 4, 2, -3, -5]\noutput : list = [-15, -15, 20, 10, -15, -25]",
    "output": "generated_output : list = mul_n([-3, -3, 4, 2, -3, -5],5)",
    "io_inp": [
      -3,
      -3,
      4,
      2,
      -3,
      -5
    ],
    "io_out": [
      -15,
      -15,
      20,
      10,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc([4, 2])",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -1, 2, 0, 3, -5]\noutput : list = [-1, 7, 4, 6, 3, -1]",
    "output": "generated_output : list = reverse(sub_n([-5, -1, 2, 0, 3, -5],-4))",
    "io_inp": [
      -5,
      -1,
      2,
      0,
      3,
      -5
    ],
    "io_out": [
      -1,
      7,
      4,
      6,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [5, 20, 20]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-4, -1, -4])),-5)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      5,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [3, 1, -2]\noutput : list = [3, -6]",
    "output": "generated_output : list = mul_n(drop([3, 1, -2],1),3)",
    "io_inp": [
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [4, 0, -4, 2]\noutput : list = [-18, -6, 6, 30]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n(sort_des([4, 0, -4, 2]),3),3),7),-2)",
    "io_inp": [
      4,
      0,
      -4,
      2
    ],
    "io_out": [
      -18,
      -6,
      6,
      30
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(sort_des(input),3),3),7),-2)"
  },
  {
    "input": "input : list = [2, 3, 5, -1, -4]\noutput : list = [5, 3, 2, -1, -4]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(reverse([2, 3, 5, -1, -4])))),37)",
    "io_inp": [
      2,
      3,
      5,
      -1,
      -4
    ],
    "io_out": [
      5,
      3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(reverse(input)))),37)"
  },
  {
    "input": "input : list = [4, 0, -4, -2, 0]\noutput : list = [-10, 0, 10, 10, 30]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_asc([4, 0, -4, -2, 0]))),-2),5)",
    "io_inp": [
      4,
      0,
      -4,
      -2,
      0
    ],
    "io_out": [
      -10,
      0,
      10,
      10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_asc(input))),-2),5)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [9, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(reverse([-4, 5])),4)))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(reverse(input)),4)))"
  },
  {
    "input": "input : list = [3, -4, 4, 5, -2]\noutput : list = [20, 10, -15, -20, -25]",
    "output": "generated_output : list = reverse(mul_n(sort_des([3, -4, 4, 5, -2]),-5))",
    "io_inp": [
      3,
      -4,
      4,
      5,
      -2
    ],
    "io_out": [
      20,
      10,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-2, -3, 1, 2, 5, 2]\noutput : list = [-3, -2, 1, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -3, 1, 2, 5, 2]))",
    "io_inp": [
      -2,
      -3,
      1,
      2,
      5,
      2
    ],
    "io_out": [
      -3,
      -2,
      1,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [3, 8]",
    "output": "generated_output : list = add_n(take(sub_n(drop(reverse([3, -2, 3]),1),-1),30),4)",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(drop(reverse(input),1),-1),30),4)"
  },
  {
    "input": "input : list = [-5, 4, 3, 4, -4, 5]\noutput : list = [3, -6, 2, 1, 2, -7]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(add_n([-5, 4, 3, 4, -4, 5],1),27),-1)),-4)",
    "io_inp": [
      -5,
      4,
      3,
      4,
      -4,
      5
    ],
    "io_out": [
      3,
      -6,
      2,
      1,
      2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(add_n(input,1),27),-1)),-4)"
  },
  {
    "input": "input : list = [-3, 2, 4, -5, 1, 5]\noutput : list = [-8, -6, -2, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(sort_asc([-3, 2, 4, -5, 1, 5]),-3))))",
    "io_inp": [
      -3,
      2,
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      -8,
      -6,
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [5, -2, 3, -3, 5]\noutput : list = [25, -10, 15, -15, 25]",
    "output": "generated_output : list = mul_n([5, -2, 3, -3, 5],5)",
    "io_inp": [
      5,
      -2,
      3,
      -3,
      5
    ],
    "io_out": [
      25,
      -10,
      15,
      -15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -5, 1, 1, 4, 5]\noutput : list = [-10]",
    "output": "generated_output : list = sort_des(take(sort_des(drop(mul_n([2, -5, 1, 1, 4, 5],-2),5)),20))",
    "io_inp": [
      2,
      -5,
      1,
      1,
      4,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(drop(mul_n(input,-2),5)),20))"
  },
  {
    "input": "input : list = [3, -3, 0, -2]\noutput : list = [-2, -1, 1, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(sort_des([3, -3, 0, -2]),-2)),1))",
    "io_inp": [
      3,
      -3,
      0,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(sort_des(input),-2)),1))"
  },
  {
    "input": "input : list = [5, 2, -3, -3, -2, -2]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = take(sort_des(drop(sort_des(sort_asc([5, 2, -3, -3, -2, -2])),3)),55)",
    "io_inp": [
      5,
      2,
      -3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(sort_des(sort_asc(input)),3)),55)"
  },
  {
    "input": "input : list = [1, 1, 1]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(reverse([1, 1, 1])),7),-1))",
    "io_inp": [
      1,
      1,
      1
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(reverse(input)),7),-1))"
  },
  {
    "input": "input : list = [4, -1, 2, 2, 1, -3]\noutput : list = [-4, -4, -8, -16, -24]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(drop([4, -1, 2, 2, 1, -3],1))),-3),4)",
    "io_inp": [
      4,
      -1,
      2,
      2,
      1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -8,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(drop(input,1))),-3),4)"
  },
  {
    "input": "input : list = [-5, 4, -4, -2, -1]\noutput : list = [4, 8, 16]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(drop([-5, 4, -4, -2, -1],2))),2),-2)",
    "io_inp": [
      -5,
      4,
      -4,
      -2,
      -1
    ],
    "io_out": [
      4,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(drop(input,2))),2),-2)"
  },
  {
    "input": "input : list = [4, 2, -3, -4]\noutput : list = [-20, -15, 10, 20]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(sort_des([4, 2, -3, -4]),5))))",
    "io_inp": [
      4,
      2,
      -3,
      -4
    ],
    "io_out": [
      -20,
      -15,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [4, -3, -1, -2, -2, 4]\noutput : list = [-3, -2, -2, -1, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([4, -3, -1, -2, -2, 4])))",
    "io_inp": [
      4,
      -3,
      -1,
      -2,
      -2,
      4
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, -2, -1, 3]\noutput : list = [1, -3, -4, -5]",
    "output": "generated_output : list = reverse(sub_n([-3, -2, -1, 3],2))",
    "io_inp": [
      -3,
      -2,
      -1,
      3
    ],
    "io_out": [
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [-1, -1, 3, 2]\noutput : list = [-1, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse([-1, -1, 3, 2])),6))",
    "io_inp": [
      -1,
      -1,
      3,
      2
    ],
    "io_out": [
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(input)),6))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, 18]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(sub_n([-3, 4],-5))),2))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(sub_n(input,-5))),2))"
  },
  {
    "input": "input : list = [-5, 4, -5, 2]\noutput : list = [1, 8, 10]",
    "output": "generated_output : list = sub_n(drop(take(sort_asc(sub_n([-5, 4, -5, 2],-5)),31),1),-1)",
    "io_inp": [
      -5,
      4,
      -5,
      2
    ],
    "io_out": [
      1,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(drop(take(sort_asc(sub_n(input,-5)),31),1),-1)"
  },
  {
    "input": "input : list = [-4, 0, 1]\noutput : list = [244, 4, -56]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(mul_n([-4, 0, 1],5),3),-4),31),-4)",
    "io_inp": [
      -4,
      0,
      1
    ],
    "io_out": [
      244,
      4,
      -56
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(mul_n(input,5),3),-4),31),-4)"
  },
  {
    "input": "input : list = [-2, 0, -2, 3, -4, 5]\noutput : list = [-4, -2, -2, 0, 3, 5]",
    "output": "generated_output : list = sort_asc([-2, 0, -2, 3, -4, 5])",
    "io_inp": [
      -2,
      0,
      -2,
      3,
      -4,
      5
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des([5, 2])",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n(sort_des(take(take(sub_n([5, 4],-4),10),10)),-5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sub_n(input,-4),10),10)),-5)"
  },
  {
    "input": "input : list = [5, -4, 2, 3, 1]\noutput : list = [0, -2, -3, -4, -9]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(add_n([5, -4, 2, 3, 1],-5),14))))",
    "io_inp": [
      5,
      -4,
      2,
      3,
      1
    ],
    "io_out": [
      0,
      -2,
      -3,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(add_n(input,-5),14))))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [8, 0]",
    "output": "generated_output : list = sub_n([3, -5],-5)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, -2, 1, -1, 1, -4]\noutput : list = [8, 5, 5, 3, 2, 0]",
    "output": "generated_output : list = reverse(add_n(reverse(take(sort_des([4, -2, 1, -1, 1, -4]),12)),4))",
    "io_inp": [
      4,
      -2,
      1,
      -1,
      1,
      -4
    ],
    "io_out": [
      8,
      5,
      5,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(sort_des(input),12)),4))"
  },
  {
    "input": "input : list = [1, 0, 1, 0, -2]\noutput : list = [4, 0, 0, -2, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(sort_des([1, 0, 1, 0, -2]),-2))))",
    "io_inp": [
      1,
      0,
      1,
      0,
      -2
    ],
    "io_out": [
      4,
      0,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [28, -2, -2]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(sort_asc([-1, -1, 5]),5)),-3),7)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      28,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(sort_asc(input),5)),-3),7)"
  },
  {
    "input": "input : list = [0, 3, 4]\noutput : list = [0, -48, -64]",
    "output": "generated_output : list = mul_n(mul_n([0, 3, 4],4),-4)",
    "io_inp": [
      0,
      3,
      4
    ],
    "io_out": [
      0,
      -48,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),-4)"
  },
  {
    "input": "input : list = [-1, 4, -4, 4]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_asc(take([-1, 4, -4, 4],1)),3)",
    "io_inp": [
      -1,
      4,
      -4,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),3)"
  },
  {
    "input": "input : list = [-2, 3, -4, -4, -3]\noutput : list = [-8, -9, -9, -2, -7]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(mul_n([-2, 3, -4, -4, -3],1),22),3),-2))",
    "io_inp": [
      -2,
      3,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -9,
      -9,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(mul_n(input,1),22),3),-2))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(mul_n([4, 2],-2),5)),30))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(mul_n(input,-2),5)),30))"
  },
  {
    "input": "input : list = [-5, -4, -1, -5, -3]\noutput : list = [-7, -6, -3, -7, -5]",
    "output": "generated_output : list = add_n(take(sub_n(take(add_n([-5, -4, -1, -5, -3],1),13),2),28),-1)",
    "io_inp": [
      -5,
      -4,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(add_n(input,1),13),2),28),-1)"
  },
  {
    "input": "input : list = [1, 0, -4, -3]\noutput : list = [-20, -15, 0, 5]",
    "output": "generated_output : list = mul_n(sort_asc([1, 0, -4, -3]),5)",
    "io_inp": [
      1,
      0,
      -4,
      -3
    ],
    "io_out": [
      -20,
      -15,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [1, 2, -4, 3, 0]\noutput : list = [5, 2, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(drop([1, 2, -4, 3, 0],2),-2))),42)",
    "io_inp": [
      1,
      2,
      -4,
      3,
      0
    ],
    "io_out": [
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(drop(input,2),-2))),42)"
  },
  {
    "input": "input : list = [-4, -5, 5, 3]\noutput : list = [-2, -3, 7, 5]",
    "output": "generated_output : list = sub_n([-4, -5, 5, 3],-2)",
    "io_inp": [
      -4,
      -5,
      5,
      3
    ],
    "io_out": [
      -2,
      -3,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 0, 1, -5, 3, 1]\noutput : list = [-18, 0, -3, -9]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(take([-2, 0, 1, -5, 3, 1],4),22),3),-3))",
    "io_inp": [
      -2,
      0,
      1,
      -5,
      3,
      1
    ],
    "io_out": [
      -18,
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(take(input,4),22),3),-3))"
  },
  {
    "input": "input : list = [1, -3, -4, 3]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(take([1, -3, -4, 3],1),4)",
    "io_inp": [
      1,
      -3,
      -4,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),4)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [41, -49]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(sub_n([5, -4],1),4),-2),-5),-1)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      41,
      -49
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(sub_n(input,1),4),-2),-5),-1)"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -4, 3],1)",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -5, -3, -5, -2]\noutput : list = [9, 45]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(take([4, -5, -3, -5, -2],2),5),-4),28),-5)",
    "io_inp": [
      4,
      -5,
      -3,
      -5,
      -2
    ],
    "io_out": [
      9,
      45
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(take(input,2),5),-4),28),-5)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(sort_des([1, 1]),1))))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-5, -1, -2, -2]\noutput : list = [3, 2, 2, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_asc([-5, -1, -2, -2]),4))))",
    "io_inp": [
      -5,
      -1,
      -2,
      -2
    ],
    "io_out": [
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -10]",
    "output": "generated_output : list = mul_n([0, -5],2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-11, -31]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n([5, 1],-5),1))),-5)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -11,
      -31
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n(input,-5),1))),-5)"
  },
  {
    "input": "input : list = [1, 2, 4, 0]\noutput : list = [4, 2, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc([1, 2, 4, 0]))",
    "io_inp": [
      1,
      2,
      4,
      0
    ],
    "io_out": [
      4,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2, -5]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(drop([-4, 2, -5],1),2)),7))",
    "io_inp": [
      -4,
      2,
      -5
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(drop(input,1),2)),7))"
  },
  {
    "input": "input : list = [-4, -5, -5, 5, 1, -3]\noutput : list = [-7, -8, -8, 2, -2, -6]",
    "output": "generated_output : list = sub_n([-4, -5, -5, 5, 1, -3],3)",
    "io_inp": [
      -4,
      -5,
      -5,
      5,
      1,
      -3
    ],
    "io_out": [
      -7,
      -8,
      -8,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, 5, -1, 0, -1, 5]\noutput : list = [-13, -13, -13, -17, -37, -37]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(add_n([-1, 5, -1, 0, -1, 5],5),-4)),27),3)",
    "io_inp": [
      -1,
      5,
      -1,
      0,
      -1,
      5
    ],
    "io_out": [
      -13,
      -13,
      -13,
      -17,
      -37,
      -37
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(add_n(input,5),-4)),27),3)"
  },
  {
    "input": "input : list = [2, 2, -4]\noutput : list = [-20, -20, 10]",
    "output": "generated_output : list = mul_n(sub_n([2, 2, -4],-2),-5)",
    "io_inp": [
      2,
      2,
      -4
    ],
    "io_out": [
      -20,
      -20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),-5)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [5, 7, 11]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(sort_des([1, 3, 4]),4),-2)),5)",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      5,
      7,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(sort_des(input),4),-2)),5)"
  },
  {
    "input": "input : list = [-5, 5, 0, -4]\noutput : list = [10, 9, 5, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(sub_n([-5, 5, 0, -4],3))),2),-1)",
    "io_inp": [
      -5,
      5,
      0,
      -4
    ],
    "io_out": [
      10,
      9,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(sub_n(input,3))),2),-1)"
  },
  {
    "input": "input : list = [-4, -3, -5, 1]\noutput : list = [12, 24, 27, 30]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(add_n([-4, -3, -5, 1],3)),3),-5),-3)",
    "io_inp": [
      -4,
      -3,
      -5,
      1
    ],
    "io_out": [
      12,
      24,
      27,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(add_n(input,3)),3),-5),-3)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(add_n(take([-4, -2, 3],1),-2))",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,1),-2))"
  },
  {
    "input": "input : list = [-3, 1, 0, -1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take([-3, 1, 0, -1],2)",
    "io_inp": [
      -3,
      1,
      0,
      -1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc([-2, -2]),-3))),28)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc(input),-3))),28)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(sort_asc([2, -3])))),3)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-7, -10]",
    "output": "generated_output : list = sub_n(add_n([0, -3],-2),5)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),5)"
  },
  {
    "input": "input : list = [4, 5, 0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(sort_des(take(drop([4, 5, 0, 4],2),14)),2)",
    "io_inp": [
      4,
      5,
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(drop(input,2),14)),2)"
  },
  {
    "input": "input : list = [-5, -5, 4, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(drop([-5, -5, 4, 0],2)),1))",
    "io_inp": [
      -5,
      -5,
      4,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(drop(input,2)),1))"
  },
  {
    "input": "input : list = [-3, -2, -4, -4]\noutput : list = [-12, -8, -16, -16]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(mul_n([-3, -2, -4, -4],-1),24))),-4)",
    "io_inp": [
      -3,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(mul_n(input,-1),24))),-4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(reverse([0, -4]))),3))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(reverse(input))),3))"
  },
  {
    "input": "input : list = [-2, -2, -5, -1, 4, 3]\noutput : list = [1, 1, -2, 2, 7, 6]",
    "output": "generated_output : list = add_n([-2, -2, -5, -1, 4, 3],3)",
    "io_inp": [
      -2,
      -2,
      -5,
      -1,
      4,
      3
    ],
    "io_out": [
      1,
      1,
      -2,
      2,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [9, 6]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(sub_n([-4, -1],-5),2),1),4))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(sub_n(input,-5),2),1),4))"
  },
  {
    "input": "input : list = [5, 3, 5, -2, 0]\noutput : list = [5, 5, 3, 0, -2]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sort_des([5, 3, 5, -2, 0]))),1),41)",
    "io_inp": [
      5,
      3,
      5,
      -2,
      0
    ],
    "io_out": [
      5,
      5,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sort_des(input))),1),41)"
  },
  {
    "input": "input : list = [4, -5, -2, -3, 0]\noutput : list = [1, -3, -5, -6, -8]",
    "output": "generated_output : list = add_n(sort_des([4, -5, -2, -3, 0]),-3)",
    "io_inp": [
      4,
      -5,
      -2,
      -3,
      0
    ],
    "io_out": [
      1,
      -3,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [5, 4, 2, 1]\noutput : list = [21, 37, 69, 85]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(mul_n([5, 4, 2, 1],4)),4)),-5)",
    "io_inp": [
      5,
      4,
      2,
      1
    ],
    "io_out": [
      21,
      37,
      69,
      85
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(mul_n(input,4)),4)),-5)"
  },
  {
    "input": "input : list = [1, 1, 2, 2, 1]\noutput : list = [-4, -4, -5, -5, -5]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(sort_des([1, 1, 2, 2, 1]),-1)),-5))",
    "io_inp": [
      1,
      1,
      2,
      2,
      1
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(sort_des(input),-1)),-5))"
  },
  {
    "input": "input : list = [3, 5, -5, -5, -2, 1]\noutput : list = [-1, -3, -6, -9, -9]",
    "output": "generated_output : list = drop(sort_des(reverse(add_n(sort_asc([3, 5, -5, -5, -2, 1]),-4))),1)",
    "io_inp": [
      3,
      5,
      -5,
      -5,
      -2,
      1
    ],
    "io_out": [
      -1,
      -3,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(add_n(sort_asc(input),-4))),1)"
  },
  {
    "input": "input : list = [5, 5, 4, 3]\noutput : list = [16, 21, 26, 26]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(sort_des([5, 5, 4, 3]),19),5),-1))",
    "io_inp": [
      5,
      5,
      4,
      3
    ],
    "io_out": [
      16,
      21,
      26,
      26
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(sort_des(input),19),5),-1))"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [-5, -1, 4]",
    "output": "generated_output : list = sort_asc([-5, 4, -1])",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, -5]\noutput : list = [-37, -5]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(drop([4, -1, -5],1),-4),-2)),3)",
    "io_inp": [
      4,
      -1,
      -5
    ],
    "io_out": [
      -37,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(drop(input,1),-4),-2)),3)"
  },
  {
    "input": "input : list = [-5, -1, 0, -4, -4]\noutput : list = [-13, -9, -8, -12, -12]",
    "output": "generated_output : list = add_n(take(add_n(reverse(reverse([-5, -1, 0, -4, -4])),-5),41),-3)",
    "io_inp": [
      -5,
      -1,
      0,
      -4,
      -4
    ],
    "io_out": [
      -13,
      -9,
      -8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(reverse(input)),-5),41),-3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(sort_des([0, 5]))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 4, -4, 5]\noutput : list = [7, 6, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n([-5, 4, -4, 5],-4),-2)))",
    "io_inp": [
      -5,
      4,
      -4,
      5
    ],
    "io_out": [
      7,
      6,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(input,-4),-2)))"
  },
  {
    "input": "input : list = [3, 0, 4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sub_n(drop(sub_n(take(sub_n([3, 0, 4],4),5),5),1),-5)",
    "io_inp": [
      3,
      0,
      4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(take(sub_n(input,4),5),5),1),-5)"
  },
  {
    "input": "input : list = [0, -2, 1, 2, -5, 2]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(take([0, -2, 1, 2, -5, 2],1),-4),-1)),-2)",
    "io_inp": [
      0,
      -2,
      1,
      2,
      -5,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(take(input,1),-4),-1)),-2)"
  },
  {
    "input": "input : list = [-5, 1, -1, -3]\noutput : list = [1, -1, -3, -5]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([-5, 1, -1, -3],4)),-1)",
    "io_inp": [
      -5,
      1,
      -1,
      -3
    ],
    "io_out": [
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,4)),-1)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [3, -11]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n([-5, 2],2)))),1)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      3,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n(input,2)))),1)"
  },
  {
    "input": "input : list = [-1, -2, -2, 3, -5]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(take([-1, -2, -2, 3, -5],3)),-2)",
    "io_inp": [
      -1,
      -2,
      -2,
      3,
      -5
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(input,3)),-2)"
  },
  {
    "input": "input : list = [-3, 5, 3, 1, 4]\noutput : list = [-1, 3, 5, 6, 7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sub_n([-3, 5, 3, 1, 4],1),3)),1),5)",
    "io_inp": [
      -3,
      5,
      3,
      1,
      4
    ],
    "io_out": [
      -1,
      3,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sub_n(input,1),3)),1),5)"
  },
  {
    "input": "input : list = [-5, -5, -4, -5]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(reverse(drop(take(drop([-5, -5, -4, -5],2),22),1)),4)",
    "io_inp": [
      -5,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(take(drop(input,2),22),1)),4)"
  },
  {
    "input": "input : list = [5, -4, -3, -2]\noutput : list = [-27, 18]",
    "output": "generated_output : list = add_n(mul_n(take([5, -4, -3, -2],2),-5),-2)",
    "io_inp": [
      5,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -27,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,2),-5),-2)"
  },
  {
    "input": "input : list = [-1, 3, 1, -5]\noutput : list = [-12, -4, 4, 20]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n([-1, 3, 1, -5],-4))),16))",
    "io_inp": [
      -1,
      3,
      1,
      -5
    ],
    "io_out": [
      -12,
      -4,
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n(input,-4))),16))"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(take([1, 4, -4],1)),-4),-5))",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(take(input,1)),-4),-5))"
  },
  {
    "input": "input : list = [4, 4, -4, 3]\noutput : list = [-1, -1, -9, -2]",
    "output": "generated_output : list = sub_n([4, 4, -4, 3],5)",
    "io_inp": [
      4,
      4,
      -4,
      3
    ],
    "io_out": [
      -1,
      -1,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, 3, 2, -1, 2]\noutput : list = [-12, -8, -8, 4, 16]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-4, 3, 2, -1, 2],-4)))",
    "io_inp": [
      -4,
      3,
      2,
      -1,
      2
    ],
    "io_out": [
      -12,
      -8,
      -8,
      4,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-4, 2, 5, 3, 4, 3]\noutput : list = [-5, 1, 4, 2, 3, 2]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(reverse([-4, 2, 5, 3, 4, 3])),24),1),2)",
    "io_inp": [
      -4,
      2,
      5,
      3,
      4,
      3
    ],
    "io_out": [
      -5,
      1,
      4,
      2,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(reverse(input)),24),1),2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_asc([-5, 2]),9),-1)),-3)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(sort_asc(input),9),-1)),-3)"
  },
  {
    "input": "input : list = [-1, 2, 2, -2, 3, 3]\noutput : list = [6, 6, 1, 5, 5, 2]",
    "output": "generated_output : list = add_n(reverse([-1, 2, 2, -2, 3, 3]),3)",
    "io_inp": [
      -1,
      2,
      2,
      -2,
      3,
      3
    ],
    "io_out": [
      6,
      6,
      1,
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [5, -3, -3]",
    "output": "generated_output : list = sort_des([-3, -3, 5])",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -1, 3]\noutput : list = [18]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(take([5, -1, 3],1),4),11)),-2)",
    "io_inp": [
      5,
      -1,
      3
    ],
    "io_out": [
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(take(input,1),4),11)),-2)"
  },
  {
    "input": "input : list = [4, -5, -5, -4, 1]\noutput : list = [-1, -4, -9, -10, -10]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n([4, -5, -5, -4, 1],2),24),3))",
    "io_inp": [
      4,
      -5,
      -5,
      -4,
      1
    ],
    "io_out": [
      -1,
      -4,
      -9,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(input,2),24),3))"
  },
  {
    "input": "input : list = [1, -4, 4, -2]\noutput : list = [-16, -4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(mul_n([1, -4, 4, -2],-4)),24),2))",
    "io_inp": [
      1,
      -4,
      4,
      -2
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(mul_n(input,-4)),24),2))"
  },
  {
    "input": "input : list = [5, 1, 5, -4, -1]\noutput : list = [15, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(drop([5, 1, 5, -4, -1],3)),-1),-5)",
    "io_inp": [
      5,
      1,
      5,
      -4,
      -1
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(drop(input,3)),-1),-5)"
  },
  {
    "input": "input : list = [5, 4, 4, -3, 0]\noutput : list = [-36, -27, -48, -48, -51]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(sub_n([5, 4, 4, -3, 0],-4),-4),4)),-3)",
    "io_inp": [
      5,
      4,
      4,
      -3,
      0
    ],
    "io_out": [
      -36,
      -27,
      -48,
      -48,
      -51
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(sub_n(input,-4),-4),4)),-3)"
  },
  {
    "input": "input : list = [-3, 2, -2, 1, 4, -2]\noutput : list = [9, 7]",
    "output": "generated_output : list = take(sort_des(take(reverse(add_n([-3, 2, -2, 1, 4, -2],5)),21)),2)",
    "io_inp": [
      -3,
      2,
      -2,
      1,
      4,
      -2
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(add_n(input,5)),21)),2)"
  },
  {
    "input": "input : list = [4, 4, -5]\noutput : list = [0, 0, -9]",
    "output": "generated_output : list = sub_n(sort_des([4, 4, -5]),4)",
    "io_inp": [
      4,
      4,
      -5
    ],
    "io_out": [
      0,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-4, 3, -4, -2, 2, 3]\noutput : list = [2, 2, 1, -3, -5, -5]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc([-4, 3, -4, -2, 2, 3])),-2),1)",
    "io_inp": [
      -4,
      3,
      -4,
      -2,
      2,
      3
    ],
    "io_out": [
      2,
      2,
      1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(input)),-2),1)"
  },
  {
    "input": "input : list = [-5, -2, 1, -3]\noutput : list = [-15, -12, -9, -13]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(reverse([-5, -2, 1, -3]),5)),-4),-1)",
    "io_inp": [
      -5,
      -2,
      1,
      -3
    ],
    "io_out": [
      -15,
      -12,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(reverse(input),5)),-4),-1)"
  },
  {
    "input": "input : list = [0, 3, -2, 2, -1, 2]\noutput : list = [-14, -12, -12, -8, -6, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(reverse([0, 3, -2, 2, -1, 2]),-4))),-2)",
    "io_inp": [
      0,
      3,
      -2,
      2,
      -1,
      2
    ],
    "io_out": [
      -14,
      -12,
      -12,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(reverse(input),-4))),-2)"
  },
  {
    "input": "input : list = [3, 2, -4, -3]\noutput : list = [-120, -160, 80, 120]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(mul_n([3, 2, -4, -3],5),11),2)),4)",
    "io_inp": [
      3,
      2,
      -4,
      -3
    ],
    "io_out": [
      -120,
      -160,
      80,
      120
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(mul_n(input,5),11),2)),4)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [9, 13]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n([-3, -1],-2))),-4),-3)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      9,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n(input,-2))),-4),-3)"
  },
  {
    "input": "input : list = [2, -4, 3, -1, 3]\noutput : list = [1, -11, 3, -5, 3]",
    "output": "generated_output : list = sub_n(take(mul_n([2, -4, 3, -1, 3],2),14),3)",
    "io_inp": [
      2,
      -4,
      3,
      -1,
      3
    ],
    "io_out": [
      1,
      -11,
      3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,2),14),3)"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [2, -1, 4]",
    "output": "generated_output : list = take(reverse([4, -1, 2]),17)",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),17)"
  },
  {
    "input": "input : list = [-5, -4, 0, 1, -3]\noutput : list = [36, 24, 12, -24, -36]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(mul_n([-5, -4, 0, 1, -3],-3)),-4),2),4)",
    "io_inp": [
      -5,
      -4,
      0,
      1,
      -3
    ],
    "io_out": [
      36,
      24,
      12,
      -24,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(mul_n(input,-3)),-4),2),4)"
  },
  {
    "input": "input : list = [-1, -1, 2, 2, -4]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sort_des(take(take(take([-1, -1, 2, 2, -4],1),8),10)),3)",
    "io_inp": [
      -1,
      -1,
      2,
      2,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(take(input,1),8),10)),3)"
  },
  {
    "input": "input : list = [1, -1, -2]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des([1, -1, -2]))),-1)",
    "io_inp": [
      1,
      -1,
      -2
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(input))),-1)"
  },
  {
    "input": "input : list = [3, 4, 1, -4]\noutput : list = [-3, 2, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(add_n([3, 4, 1, -4],1),9),4)),4)",
    "io_inp": [
      3,
      4,
      1,
      -4
    ],
    "io_out": [
      -3,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(add_n(input,1),9),4)),4)"
  },
  {
    "input": "input : list = [-4, 2, 5, 3, -3, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = add_n(reverse(drop(sort_asc(add_n([-4, 2, 5, 3, -3, 4],-2)),4)),2)",
    "io_inp": [
      -4,
      2,
      5,
      3,
      -3,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(sort_asc(add_n(input,-2)),4)),2)"
  },
  {
    "input": "input : list = [2, 0, 1, 4]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(drop(sort_des([2, 0, 1, 4]),2),2),1),-5)",
    "io_inp": [
      2,
      0,
      1,
      4
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(drop(sort_des(input),2),2),1),-5)"
  },
  {
    "input": "input : list = [3, -3, 0, 4]\noutput : list = [-7, -4, -1, 0]",
    "output": "generated_output : list = sort_asc(take(sub_n([3, -3, 0, 4],4),20))",
    "io_inp": [
      3,
      -3,
      0,
      4
    ],
    "io_out": [
      -7,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,4),20))"
  },
  {
    "input": "input : list = [5, -3, -5, 3, 4]\noutput : list = [10, 9, 8, 2, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(sort_asc([5, -3, -5, 3, 4]),5)),12))",
    "io_inp": [
      5,
      -3,
      -5,
      3,
      4
    ],
    "io_out": [
      10,
      9,
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(sort_asc(input),5)),12))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse([3, -3])",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, -3, -5, -1, -5]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(reverse(drop(sort_asc([-2, -2, -3, -5, -1, -5]),5)))",
    "io_inp": [
      -2,
      -2,
      -3,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [12, 6, -6]",
    "output": "generated_output : list = mul_n([-4, -2, 2],-3)",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      12,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, -2, 5, -5, 1]\noutput : list = [-2, -6, 1, -9, -3]",
    "output": "generated_output : list = add_n([2, -2, 5, -5, 1],-4)",
    "io_inp": [
      2,
      -2,
      5,
      -5,
      1
    ],
    "io_out": [
      -2,
      -6,
      1,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, -5, -4, -3, -2, 1]\noutput : list = [-3, -2, 7]",
    "output": "generated_output : list = sort_asc(add_n(take([5, -5, -4, -3, -2, 1],3),2))",
    "io_inp": [
      5,
      -5,
      -4,
      -3,
      -2,
      1
    ],
    "io_out": [
      -3,
      -2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,3),2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-5, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(mul_n([4, 0],3)))),-5)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -5,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(mul_n(input,3)))),-5)"
  },
  {
    "input": "input : list = [-2, 1, -1, 5, -3, 3]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sub_n(drop([-2, 1, -1, 5, -3, 3],4),3)",
    "io_inp": [
      -2,
      1,
      -1,
      5,
      -3,
      3
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),3)"
  },
  {
    "input": "input : list = [-2, 2, -4, -4, 4]\noutput : list = [-80, -112, -176, -208, -208]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(add_n([-2, 2, -4, -4, 4],-4),5),4),4))",
    "io_inp": [
      -2,
      2,
      -4,
      -4,
      4
    ],
    "io_out": [
      -80,
      -112,
      -176,
      -208,
      -208
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(add_n(input,-4),5),4),4))"
  },
  {
    "input": "input : list = [-5, -1, 4]\noutput : list = [-70, -22, 38]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n([-5, -1, 4],4),2),3)),-4)",
    "io_inp": [
      -5,
      -1,
      4
    ],
    "io_out": [
      -70,
      -22,
      38
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n(input,4),2),3)),-4)"
  },
  {
    "input": "input : list = [1, -1, 4, -1, 5]\noutput : list = [25, 20, 5, -5, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(mul_n([1, -1, 4, -1, 5],5)))))",
    "io_inp": [
      1,
      -1,
      4,
      -1,
      5
    ],
    "io_out": [
      25,
      20,
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-5, -2, 5, 4, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -2, 5, 4, 2],1)",
    "io_inp": [
      -5,
      -2,
      5,
      4,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -5, 3, 4, 5]\noutput : list = [-5, -4, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([-4, -5, 3, 4, 5])",
    "io_inp": [
      -4,
      -5,
      3,
      4,
      5
    ],
    "io_out": [
      -5,
      -4,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [-15, 15, 9]",
    "output": "generated_output : list = mul_n([-5, 5, 3],3)",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      -15,
      15,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sort_asc([-4, -1, 0]),16),-3)),-1)",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sort_asc(input),16),-3)),-1)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(take(sort_des([1, 3]),4))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),4))"
  },
  {
    "input": "input : list = [-1, 2, 5, 3, 4]\noutput : list = [-24, -19, -14, -9, 6]",
    "output": "generated_output : list = add_n(mul_n(sort_des([-1, 2, 5, 3, 4]),-5),1)",
    "io_inp": [
      -1,
      2,
      5,
      3,
      4
    ],
    "io_out": [
      -24,
      -19,
      -14,
      -9,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),-5),1)"
  },
  {
    "input": "input : list = [3, 4, -1]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sub_n([3, 4, -1],-5)),2),-4))",
    "io_inp": [
      3,
      4,
      -1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sub_n(input,-5)),2),-4))"
  },
  {
    "input": "input : list = [5, 2, -4, -2]\noutput : list = [6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(take([5, 2, -4, -2],1))),-1))",
    "io_inp": [
      5,
      2,
      -4,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(take(input,1))),-1))"
  },
  {
    "input": "input : list = [-1, 2, -1, 2]\noutput : list = [8, 8, 5, 5]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des([-1, 2, -1, 2]),20),-1),-5)",
    "io_inp": [
      -1,
      2,
      -1,
      2
    ],
    "io_out": [
      8,
      8,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(input),20),-1),-5)"
  },
  {
    "input": "input : list = [3, 3, 4, -2, -3]\noutput : list = [9, 8, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(drop([3, 3, 4, -2, -3],1),4))),1)",
    "io_inp": [
      3,
      3,
      4,
      -2,
      -3
    ],
    "io_out": [
      9,
      8,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(drop(input,1),4))),1)"
  },
  {
    "input": "input : list = [-5, -1, 5, 3]\noutput : list = [6, 4, 0, -4]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(sort_asc([-5, -1, 5, 3]),-1)),-2),22)",
    "io_inp": [
      -5,
      -1,
      5,
      3
    ],
    "io_out": [
      6,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(sort_asc(input),-1)),-2),22)"
  },
  {
    "input": "input : list = [1, 4, -1, 2]\noutput : list = [-4, 2, 6]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(drop([1, 4, -1, 2],1)),2),2),1)",
    "io_inp": [
      1,
      4,
      -1,
      2
    ],
    "io_out": [
      -4,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(drop(input,1)),2),2),1)"
  },
  {
    "input": "input : list = [-1, -4, 4, -2, -4, -4]\noutput : list = [5, 0, -1, -3, -3, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(reverse([-1, -4, 4, -2, -4, -4]))),-1))",
    "io_inp": [
      -1,
      -4,
      4,
      -2,
      -4,
      -4
    ],
    "io_out": [
      5,
      0,
      -1,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(reverse(input))),-1))"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [-8, 10, -4]",
    "output": "generated_output : list = mul_n([4, -5, 2],-2)",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      -8,
      10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, -3, 3, 3, -1, -1]\noutput : list = [-2, 0, 0, 4, 4, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(sort_des([3, -3, 3, 3, -1, -1])),1),-2),-4)",
    "io_inp": [
      3,
      -3,
      3,
      3,
      -1,
      -1
    ],
    "io_out": [
      -2,
      0,
      0,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(sort_des(input)),1),-2),-4)"
  },
  {
    "input": "input : list = [2, 0, -4, 0]\noutput : list = [-6, -2, -2, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n([2, 0, -4, 0],-3)),-2),-2))",
    "io_inp": [
      2,
      0,
      -4,
      0
    ],
    "io_out": [
      -6,
      -2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n(input,-3)),-2),-2))"
  },
  {
    "input": "input : list = [2, 0, -2, 3, 2, -4]\noutput : list = [-1, -2, -2, -4, -6, -8]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_asc([2, 0, -2, 3, 2, -4])),28),4))",
    "io_inp": [
      2,
      0,
      -2,
      3,
      2,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_asc(input)),28),4))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc([-3, 0])",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, -5, 3]\noutput : list = [20, 20, 12, -12]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(mul_n([-3, -5, -5, 3],-4)),23)))",
    "io_inp": [
      -3,
      -5,
      -5,
      3
    ],
    "io_out": [
      20,
      20,
      12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(mul_n(input,-4)),23)))"
  },
  {
    "input": "input : list = [5, 2, 3, 5, 3, 5]\noutput : list = [2, 3, 3, 5, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse([5, 2, 3, 5, 3, 5])))",
    "io_inp": [
      5,
      2,
      3,
      5,
      3,
      5
    ],
    "io_out": [
      2,
      3,
      3,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = add_n([-1, 3],-2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 0, 0, 5, 2]\noutput : list = [7, 4, 2, 2, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(reverse([-2, 0, 0, 5, 2]),-2))))",
    "io_inp": [
      -2,
      0,
      0,
      5,
      2
    ],
    "io_out": [
      7,
      4,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [-5, 3, -4, 2, 4, 0]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 3, -4, 2, 4, 0],1)",
    "io_inp": [
      -5,
      3,
      -4,
      2,
      4,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -2, 0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take(sort_asc(sort_asc(drop([2, -2, 0, -1],2))),14)",
    "io_inp": [
      2,
      -2,
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(drop(input,2))),14)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [12, -4, -12]",
    "output": "generated_output : list = reverse(mul_n([3, 1, -3],-4))",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      12,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, 5])",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, 5, -4, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = take([0, 1, 5, -4, 1],2)",
    "io_inp": [
      0,
      1,
      5,
      -4,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 3, -4]\noutput : list = [-4, 3, 4]",
    "output": "generated_output : list = take(reverse([4, 3, -4]),16)",
    "io_inp": [
      4,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),16)"
  },
  {
    "input": "input : list = [-1, 1, -4, 2]\noutput : list = [-2, -1, 1, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(sort_des([-1, 1, -4, 2])),-1)),11)",
    "io_inp": [
      -1,
      1,
      -4,
      2
    ],
    "io_out": [
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(sort_des(input)),-1)),11)"
  },
  {
    "input": "input : list = [5, -2, 3, -1]\noutput : list = [-8, -6, -2, -1]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_des([5, -2, 3, -1])),-1),3))",
    "io_inp": [
      5,
      -2,
      3,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_des(input)),-1),3))"
  },
  {
    "input": "input : list = [-2, 5, -3, 5]\noutput : list = [-25, -25, 15]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(drop([-2, 5, -3, 5],1),-5)),20),42)",
    "io_inp": [
      -2,
      5,
      -3,
      5
    ],
    "io_out": [
      -25,
      -25,
      15
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(drop(input,1),-5)),20),42)"
  },
  {
    "input": "input : list = [4, 5, 2, 3]\noutput : list = [10, 11, 12, 13]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(add_n([4, 5, 2, 3],5),15))),-3)",
    "io_inp": [
      4,
      5,
      2,
      3
    ],
    "io_out": [
      10,
      11,
      12,
      13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(add_n(input,5),15))),-3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-10, -4]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n([-2, 1],4)))),-2)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(add_n(input,4)))),-2)"
  },
  {
    "input": "input : list = [-5, 0, 0, 5, -3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(drop([-5, 0, 0, 5, -3, 2],4)))))",
    "io_inp": [
      -5,
      0,
      0,
      5,
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(drop(input,4)))))"
  },
  {
    "input": "input : list = [0, 2, 5, 1]\noutput : list = [3, 0, -1, -2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(add_n([0, 2, 5, 1],2)),2)),-2)",
    "io_inp": [
      0,
      2,
      5,
      1
    ],
    "io_out": [
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(add_n(input,2)),2)),-2)"
  },
  {
    "input": "input : list = [4, 1, 5, 3, 5, -5]\noutput : list = [5, 5, 4, 3, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc([4, 1, 5, 3, 5, -5]))",
    "io_inp": [
      4,
      1,
      5,
      3,
      5,
      -5
    ],
    "io_out": [
      5,
      5,
      4,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 0, 5]\noutput : list = [5, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, 5])",
    "io_inp": [
      -2,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, 2, -4, 5]\noutput : list = [13, 13, 9, -11, -23]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(sort_asc([-4, -3, 2, -4, 5]),-4)),-3),48)",
    "io_inp": [
      -4,
      -3,
      2,
      -4,
      5
    ],
    "io_out": [
      13,
      13,
      9,
      -11,
      -23
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(sort_asc(input),-4)),-3),48)"
  },
  {
    "input": "input : list = [1, 2, -4, 3, -2, 4]\noutput : list = [4, -2, 3, -4, 2, 1]",
    "output": "generated_output : list = take(reverse([1, 2, -4, 3, -2, 4]),9)",
    "io_inp": [
      1,
      2,
      -4,
      3,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      3,
      -4,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [-4, -2, -3, -2, 5, 3]\noutput : list = [-2, 3, 5]",
    "output": "generated_output : list = sort_asc(drop([-4, -2, -3, -2, 5, 3],3))",
    "io_inp": [
      -4,
      -2,
      -3,
      -2,
      5,
      3
    ],
    "io_out": [
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc([-3, 5])",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2, -2]\noutput : list = [-3, 2, -2]",
    "output": "generated_output : list = sub_n(add_n([-3, 2, -2],3),3)",
    "io_inp": [
      -3,
      2,
      -2
    ],
    "io_out": [
      -3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,3),3)"
  },
  {
    "input": "input : list = [4, 4, -4, -2, -4]\noutput : list = [-7, -7, -5, 1, 1]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(reverse([4, 4, -4, -2, -4]),2)),31),1)",
    "io_inp": [
      4,
      4,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(reverse(input),2)),31),1)"
  },
  {
    "input": "input : list = [4, 1, 5, -4, -4, 1]\noutput : list = [3, 0, 4, -5, -5, 0]",
    "output": "generated_output : list = add_n(take(take(add_n(sub_n([4, 1, 5, -4, -4, 1],4),1),23),14),2)",
    "io_inp": [
      4,
      1,
      5,
      -4,
      -4,
      1
    ],
    "io_out": [
      3,
      0,
      4,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(sub_n(input,4),1),23),14),2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-6, -30]",
    "output": "generated_output : list = mul_n(take(mul_n([-1, -5],2),5),3)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -6,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,2),5),3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [10, 26]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(sub_n([-4, 0],2))),-4),2)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      10,
      26
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(sub_n(input,2))),-4),2)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [10, 6]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(reverse([-3, 1]),-5)),4))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(reverse(input),-5)),4))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [1, 7]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n(sort_des([2, 4]),4),-3),-1),2)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(sort_des(input),4),-3),-1),2)"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(drop([2, 1, 1],1),2),1)),1)",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(drop(input,1),2),1)),1)"
  },
  {
    "input": "input : list = [5, -3, -1]\noutput : list = [5, -3, -1]",
    "output": "generated_output : list = reverse(reverse([5, -3, -1]))",
    "io_inp": [
      5,
      -3,
      -1
    ],
    "io_out": [
      5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 1, -4, -1, -1]\noutput : list = [-4, -3, -1, -1, 1]",
    "output": "generated_output : list = sort_asc([-3, 1, -4, -1, -1])",
    "io_inp": [
      -3,
      1,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4, 3, -1, 3]\noutput : list = [-4, -1, 3, 3, 4]",
    "output": "generated_output : list = take(sort_asc([4, -4, 3, -1, 3]),11)",
    "io_inp": [
      4,
      -4,
      3,
      -1,
      3
    ],
    "io_out": [
      -4,
      -1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [2, -1, -2, 3, -1]\noutput : list = [4, 1, 0, 5, 1]",
    "output": "generated_output : list = add_n(sub_n([2, -1, -2, 3, -1],2),4)",
    "io_inp": [
      2,
      -1,
      -2,
      3,
      -1
    ],
    "io_out": [
      4,
      1,
      0,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),4)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [20, 5, 5]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sort_asc([1, 4, 1]),-5),-1)))",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      20,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sort_asc(input),-5),-1)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = take(take(add_n(take(mul_n([-3, -2],3),2),4),25),35)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(mul_n(input,3),2),4),25),35)"
  },
  {
    "input": "input : list = [1, 2, -2, -5, 3]\noutput : list = [-13, -10, -7, 2, 11]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sort_asc([1, 2, -2, -5, 3]),3)),-4),-1)",
    "io_inp": [
      1,
      2,
      -2,
      -5,
      3
    ],
    "io_out": [
      -13,
      -10,
      -7,
      2,
      11
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sort_asc(input),3)),-4),-1)"
  },
  {
    "input": "input : list = [1, 1, 5, 5, 2]\noutput : list = [-9, -9, -13, -25, -25]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sort_asc([1, 1, 5, 5, 2]),4),-1)),5)",
    "io_inp": [
      1,
      1,
      5,
      5,
      2
    ],
    "io_out": [
      -9,
      -9,
      -13,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sort_asc(input),4),-1)),5)"
  },
  {
    "input": "input : list = [1, -2, 1, 4, 0]\noutput : list = [18, 6, 6, 2, -6]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(sort_des([1, -2, 1, 4, 0]),2),2),-2),1)",
    "io_inp": [
      1,
      -2,
      1,
      4,
      0
    ],
    "io_out": [
      18,
      6,
      6,
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(sort_des(input),2),2),-2),1)"
  },
  {
    "input": "input : list = [4, 0, 0, -2]\noutput : list = [20, 0, 0, -10]",
    "output": "generated_output : list = sort_des(mul_n(reverse([4, 0, 0, -2]),5))",
    "io_inp": [
      4,
      0,
      0,
      -2
    ],
    "io_out": [
      20,
      0,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [-1, -4, 3, 0]\noutput : list = [0, 3, -4, -1]",
    "output": "generated_output : list = add_n(sub_n(reverse([-1, -4, 3, 0]),3),3)",
    "io_inp": [
      -1,
      -4,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),3),3)"
  },
  {
    "input": "input : list = [3, -2, -5, 5, 1]\noutput : list = [8, 3, 0, 10, 6]",
    "output": "generated_output : list = sub_n([3, -2, -5, 5, 1],-5)",
    "io_inp": [
      3,
      -2,
      -5,
      5,
      1
    ],
    "io_out": [
      8,
      3,
      0,
      10,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, 2, 5, -5]\noutput : list = [-7, 28, 43, 43]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(add_n([5, 2, 5, -5],3))),5),-3)",
    "io_inp": [
      5,
      2,
      5,
      -5
    ],
    "io_out": [
      -7,
      28,
      43,
      43
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(add_n(input,3))),5),-3)"
  },
  {
    "input": "input : list = [0, 3, 3, -5]\noutput : list = [6, 6, 0, -10]",
    "output": "generated_output : list = sort_des(mul_n(reverse([0, 3, 3, -5]),2))",
    "io_inp": [
      0,
      3,
      3,
      -5
    ],
    "io_out": [
      6,
      6,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),2))"
  },
  {
    "input": "input : list = [-5, -5, 5, 0, -2]\noutput : list = [-20, 0, 8, 20, 20]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(mul_n([-5, -5, 5, 0, -2],2))),2),-1)",
    "io_inp": [
      -5,
      -5,
      5,
      0,
      -2
    ],
    "io_out": [
      -20,
      0,
      8,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(mul_n(input,2))),2),-1)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc([1, 3])",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 4, -2, 5]\noutput : list = [2, 7, 1, 8]",
    "output": "generated_output : list = sub_n([-1, 4, -2, 5],-3)",
    "io_inp": [
      -1,
      4,
      -2,
      5
    ],
    "io_out": [
      2,
      7,
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [0, -5]",
    "output": "generated_output : list = sub_n([1, -4],1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -4, -2, 0, 2]\noutput : list = [0, 24]",
    "output": "generated_output : list = mul_n(mul_n(drop([-3, -4, -2, 0, 2],3),-3),-4)",
    "io_inp": [
      -3,
      -4,
      -2,
      0,
      2
    ],
    "io_out": [
      0,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(input,3),-3),-4)"
  },
  {
    "input": "input : list = [2, 3, 4, 1]\noutput : list = [1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([2, 3, 4, 1])",
    "io_inp": [
      2,
      3,
      4,
      1
    ],
    "io_out": [
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 4, -4, 2, -1]\noutput : list = [-48, 57, -63, 27, -18]",
    "output": "generated_output : list = add_n(mul_n(mul_n([-3, 4, -4, 2, -1],-5),-3),-3)",
    "io_inp": [
      -3,
      4,
      -4,
      2,
      -1
    ],
    "io_out": [
      -48,
      57,
      -63,
      27,
      -18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,-5),-3),-3)"
  },
  {
    "input": "input : list = [-2, -3, -1, 5, -3]\noutput : list = [9, 3, 2, 1, 1]",
    "output": "generated_output : list = sort_des(take(take(add_n(reverse([-2, -3, -1, 5, -3]),4),23),25))",
    "io_inp": [
      -2,
      -3,
      -1,
      5,
      -3
    ],
    "io_out": [
      9,
      3,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(reverse(input),4),23),25))"
  },
  {
    "input": "input : list = [-4, -4, -4, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(take([-4, -4, -4, 0],2))",
    "io_inp": [
      -4,
      -4,
      -4,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [2, 5, 0]\noutput : list = [6]",
    "output": "generated_output : list = take(sub_n([2, 5, 0],-4),1)",
    "io_inp": [
      2,
      5,
      0
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),1)"
  },
  {
    "input": "input : list = [-1, 5, -5, -2, -1, 0]\noutput : list = [-6, 0, -10, -7, -6, -5]",
    "output": "generated_output : list = add_n([-1, 5, -5, -2, -1, 0],-5)",
    "io_inp": [
      -1,
      5,
      -5,
      -2,
      -1,
      0
    ],
    "io_out": [
      -6,
      0,
      -10,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -3, 0, -1]\noutput : list = [0, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(mul_n([-3, -3, 0, -1],-1)),5)))",
    "io_inp": [
      -3,
      -3,
      0,
      -1
    ],
    "io_out": [
      0,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(mul_n(input,-1)),5)))"
  },
  {
    "input": "input : list = [4, 5, 5, -5, -1, 4]\noutput : list = [5, 5, 4, 4, -1, -5]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(sort_des([4, 5, 5, -5, -1, 4]),3),3),13))",
    "io_inp": [
      4,
      5,
      5,
      -5,
      -1,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(sort_des(input),3),3),13))"
  },
  {
    "input": "input : list = [-2, -3, -5, 0, -2]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = take([-2, -3, -5, 0, -2],3)",
    "io_inp": [
      -2,
      -3,
      -5,
      0,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [5, 3]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(mul_n([-1, -3],-1)),-1),1),9)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(mul_n(input,-1)),-1),1),9)"
  },
  {
    "input": "input : list = [4, 3, 5, 3, 2]\noutput : list = [1, 2, 2, 3, 4]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(sort_asc([4, 3, 5, 3, 2]))),-1),11)",
    "io_inp": [
      4,
      3,
      5,
      3,
      2
    ],
    "io_out": [
      1,
      2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(sort_asc(input))),-1),11)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-2, -3, 2]),-1))",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(reverse([-4, -5]))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sort_asc([1, -3])),-1)))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [2, 2, 0, -4, 0]\noutput : list = [0, -4, 0, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, 0, -4, 0])",
    "io_inp": [
      2,
      2,
      0,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, -14]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-5, 2]),2),4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),2),4)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [5]",
    "output": "generated_output : list = drop(reverse([5, -5, 2]),2)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, 0, 1]\noutput : list = [-1, 2, 14]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(mul_n([-4, 0, 1],-3),3)),-5))",
    "io_inp": [
      -4,
      0,
      1
    ],
    "io_out": [
      -1,
      2,
      14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(mul_n(input,-3),3)),-5))"
  },
  {
    "input": "input : list = [0, 0, 2, -5, 4, 4]\noutput : list = [-3, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(take([0, 0, 2, -5, 4, 4],2),-1),-2),4),12)",
    "io_inp": [
      0,
      0,
      2,
      -5,
      4,
      4
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(take(input,2),-1),-2),4),12)"
  },
  {
    "input": "input : list = [4, 4, -4, 0, -4, -4]\noutput : list = [-15, -15, -15, 5, 25, 25]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_asc([4, 4, -4, 0, -4, -4])),-1),5),44)",
    "io_inp": [
      4,
      4,
      -4,
      0,
      -4,
      -4
    ],
    "io_out": [
      -15,
      -15,
      -15,
      5,
      25,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_asc(input)),-1),5),44)"
  },
  {
    "input": "input : list = [3, 2, 2, -2]\noutput : list = [-1, -2, -2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(sub_n([3, 2, 2, -2],4),6),11)))",
    "io_inp": [
      3,
      2,
      2,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(sub_n(input,4),6),11)))"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [-6, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_des(sort_asc([5, -2, 5])))),4)",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      -6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_des(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [0, -15, -30]",
    "output": "generated_output : list = mul_n(reverse(add_n(reverse(reverse([-4, -1, 2])),-2)),5)",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      0,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(reverse(reverse(input)),-2)),5)"
  },
  {
    "input": "input : list = [-1, 4, -1]\noutput : list = [3, 18, 3]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(add_n([-1, 4, -1],2),18)),3))",
    "io_inp": [
      -1,
      4,
      -1
    ],
    "io_out": [
      3,
      18,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(add_n(input,2),18)),3))"
  },
  {
    "input": "input : list = [-2, -1, 3, 5]\noutput : list = [-14, -24]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(drop([-2, -1, 3, 5],2),-5)),-1),38)",
    "io_inp": [
      -2,
      -1,
      3,
      5
    ],
    "io_out": [
      -14,
      -24
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(drop(input,2),-5)),-1),38)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [18, 30]",
    "output": "generated_output : list = take(take(mul_n(sort_des(sub_n([-5, -1],5)),-3),9),32)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      18,
      30
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(sub_n(input,5)),-3),9),32)"
  },
  {
    "input": "input : list = [2, -3, -5, 5]\noutput : list = [2, -1, -6, -8]",
    "output": "generated_output : list = sub_n(take(sort_des(take(mul_n([2, -3, -5, 5],1),8)),31),3)",
    "io_inp": [
      2,
      -3,
      -5,
      5
    ],
    "io_out": [
      2,
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(mul_n(input,1),8)),31),3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [6, -2]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n([-1, 3],-2)),-2))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(input,-2)),-2))"
  },
  {
    "input": "input : list = [-2, -2, 3, -5, 2, -1]\noutput : list = [-4, -1, 0, 3, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(drop(sub_n([-2, -2, 3, -5, 2, -1],-1),1))))",
    "io_inp": [
      -2,
      -2,
      3,
      -5,
      2,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(drop(sub_n(input,-1),1))))"
  },
  {
    "input": "input : list = [-3, 1, -5, 4]\noutput : list = [-2, 0, 4, 7]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(reverse([-3, 1, -5, 4]),18),-3),23))",
    "io_inp": [
      -3,
      1,
      -5,
      4
    ],
    "io_out": [
      -2,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(reverse(input),18),-3),23))"
  },
  {
    "input": "input : list = [-4, -3, 0, -1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse(take([-4, -3, 0, -1],1)))))",
    "io_inp": [
      -4,
      -3,
      0,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-24, -12]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sub_n(sort_des([1, 4]),-2),-4)))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -24,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sub_n(sort_des(input),-2),-4)))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n(sub_n([-4, -1],-4),-4)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n([0, 0],5)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, 3, -2, -4, -2, -2]\noutput : list = [3, -2, -2, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 3, -2, -4, -2, -2])",
    "io_inp": [
      -5,
      3,
      -2,
      -4,
      -2,
      -2
    ],
    "io_out": [
      3,
      -2,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, -1, -2, 1]\noutput : list = [3, -5, -9, -9, -17]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(mul_n([-2, -4, -1, -2, 1],4),-1)),7))",
    "io_inp": [
      -2,
      -4,
      -1,
      -2,
      1
    ],
    "io_out": [
      3,
      -5,
      -9,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(mul_n(input,4),-1)),7))"
  },
  {
    "input": "input : list = [0, 4, 1, 0, 2]\noutput : list = [-1, -3, -4, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(sub_n([0, 4, 1, 0, 2],4),-1))))",
    "io_inp": [
      0,
      4,
      1,
      0,
      2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(sub_n(input,4),-1))))"
  },
  {
    "input": "input : list = [2, 4, 0, 3, 2, -3]\noutput : list = [-9, 6, 9]",
    "output": "generated_output : list = mul_n(sort_asc(drop([2, 4, 0, 3, 2, -3],3)),3)",
    "io_inp": [
      2,
      4,
      0,
      3,
      2,
      -3
    ],
    "io_out": [
      -9,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,3)),3)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [4, 5]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(sort_des([0, 1])),4)),43)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(sort_des(input)),4)),43)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [1, -9]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(sub_n([-5, 5],4)))),28)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      1,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(sub_n(input,4)))),28)"
  },
  {
    "input": "input : list = [-1, 3, -5, -3]\noutput : list = [-6, -4, -2, 2]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(sort_des([-1, 3, -5, -3]),-1)),13))",
    "io_inp": [
      -1,
      3,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(sort_des(input),-1)),13))"
  },
  {
    "input": "input : list = [-1, -1, -5, 0, 5]\noutput : list = [-28, -8, -8, -3, 22]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(mul_n([-1, -1, -5, 0, 5],5)))),3)",
    "io_inp": [
      -1,
      -1,
      -5,
      0,
      5
    ],
    "io_out": [
      -28,
      -8,
      -8,
      -3,
      22
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(mul_n(input,5)))),3)"
  },
  {
    "input": "input : list = [5, 1, 3, -4]\noutput : list = [10, 6, 8, 1]",
    "output": "generated_output : list = add_n([5, 1, 3, -4],5)",
    "io_inp": [
      5,
      1,
      3,
      -4
    ],
    "io_out": [
      10,
      6,
      8,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 0, 4]\noutput : list = [4, 0, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(reverse([-4, 0, 4]),1))),26)",
    "io_inp": [
      -4,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(reverse(input),1))),26)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse([0, 4]),-1)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(input),-1)))"
  },
  {
    "input": "input : list = [5, 2, -3, -3]\noutput : list = [24, 24]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(drop([5, 2, -3, -3],2),4),-2)))",
    "io_inp": [
      5,
      2,
      -3,
      -3
    ],
    "io_out": [
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(drop(input,2),4),-2)))"
  },
  {
    "input": "input : list = [-5, 1, 1, -2, -5]\noutput : list = [-7, -7, -4, -1, -1]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_des([-5, 1, 1, -2, -5])))),-2)",
    "io_inp": [
      -5,
      1,
      1,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(mul_n([-1, -4, -2],1),-1)),-5))",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(mul_n(input,1),-1)),-5))"
  },
  {
    "input": "input : list = [-4, 3, -4, -1, 5]\noutput : list = [-24, -24, -6, 18, 30]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(mul_n([-4, 3, -4, -1, 5],3),13))),2)",
    "io_inp": [
      -4,
      3,
      -4,
      -1,
      5
    ],
    "io_out": [
      -24,
      -24,
      -6,
      18,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(mul_n(input,3),13))),2)"
  },
  {
    "input": "input : list = [-2, 5, -4, -4, -3]\noutput : list = [0, -7, -8, -9, -9]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des([-2, 5, -4, -4, -3])),5))",
    "io_inp": [
      -2,
      5,
      -4,
      -4,
      -3
    ],
    "io_out": [
      0,
      -7,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(input)),5))"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [4, 7, 9]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(sub_n([5, 3, 0],-3))),1),8)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      4,
      7,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(sub_n(input,-3))),1),8)"
  },
  {
    "input": "input : list = [-2, 1, -5, 0]\noutput : list = [37, 22, 12, 7]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des([-2, 1, -5, 0]),-3),-5),-3))",
    "io_inp": [
      -2,
      1,
      -5,
      0
    ],
    "io_out": [
      37,
      22,
      12,
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des(input),-3),-5),-3))"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des([5, 2, 4]),14))))",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des(input),14))))"
  },
  {
    "input": "input : list = [0, -1, 4, -5]\noutput : list = [0, 4, 5, 9]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(sort_asc([0, -1, 4, -5])),-5),17))",
    "io_inp": [
      0,
      -1,
      4,
      -5
    ],
    "io_out": [
      0,
      4,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(sort_asc(input)),-5),17))"
  },
  {
    "input": "input : list = [-3, -1, -4]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = mul_n(sort_des([-3, -1, -4]),-1)",
    "io_inp": [
      -3,
      -1,
      -4
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [1, -1, 4, -4, 0, -4]\noutput : list = [13, 7, 5, 3, -3, -3]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(sort_des([1, -1, 4, -4, 0, -4])),2),4),-1)",
    "io_inp": [
      1,
      -1,
      4,
      -4,
      0,
      -4
    ],
    "io_out": [
      13,
      7,
      5,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(sort_des(input)),2),4),-1)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-15, -3]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc([4, 0]),5),5),3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -15,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(input),5),5),3)"
  },
  {
    "input": "input : list = [5, -4, 3, -1, -1, -5]\noutput : list = [1, -1, -5, -5, -8, -9]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sub_n([5, -4, 3, -1, -1, -5],2)),1)),-2)",
    "io_inp": [
      5,
      -4,
      3,
      -1,
      -1,
      -5
    ],
    "io_out": [
      1,
      -1,
      -5,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sub_n(input,2)),1)),-2)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, -10]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(reverse([5, 0])))),-2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [-25, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse([-5, 0, 2]),10),5))",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      -25,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(input),10),5))"
  },
  {
    "input": "input : list = [0, 3, -3, 0, 4, -2]\noutput : list = [-15, -13, -7, -7, -3, -1]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(mul_n([0, 3, -3, 0, 4, -2],-2),3),11)),4)",
    "io_inp": [
      0,
      3,
      -3,
      0,
      4,
      -2
    ],
    "io_out": [
      -15,
      -13,
      -7,
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(mul_n(input,-2),3),11)),4)"
  },
  {
    "input": "input : list = [5, 5, -1, 0, 4, 5]\noutput : list = [95, 75, -5, -25, 95, 95]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(mul_n([5, 5, -1, 0, 4, 5],-4)),-5),11),-5)",
    "io_inp": [
      5,
      5,
      -1,
      0,
      4,
      5
    ],
    "io_out": [
      95,
      75,
      -5,
      -25,
      95,
      95
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(mul_n(input,-4)),-5),11),-5)"
  },
  {
    "input": "input : list = [-2, -3, 2, 4, 1]\noutput : list = [4, 2, 1, -2, -3]",
    "output": "generated_output : list = sort_des(take(take(take(sort_asc([-2, -3, 2, 4, 1]),7),28),28))",
    "io_inp": [
      -2,
      -3,
      2,
      4,
      1
    ],
    "io_out": [
      4,
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(sort_asc(input),7),28),28))"
  },
  {
    "input": "input : list = [4, -3, 5, 5, 4, 0]\noutput : list = [-40, -25, -5, -5, 0, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_asc([4, -3, 5, 5, 4, 0])),5),12),5)",
    "io_inp": [
      4,
      -3,
      5,
      5,
      4,
      0
    ],
    "io_out": [
      -40,
      -25,
      -5,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_asc(input)),5),12),5)"
  },
  {
    "input": "input : list = [-4, -2, 1, 5, -4]\noutput : list = [-2, 1, 5, -4]",
    "output": "generated_output : list = drop([-4, -2, 1, 5, -4],1)",
    "io_inp": [
      -4,
      -2,
      1,
      5,
      -4
    ],
    "io_out": [
      -2,
      1,
      5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 5, 4, 0, 1]\noutput : list = [-20, 0, 5, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n([-4, 5, 4, 0, 1],5))",
    "io_inp": [
      -4,
      5,
      4,
      0,
      1
    ],
    "io_out": [
      -20,
      0,
      5,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(take([-3, 1, -3],1),1),14),-4))",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(take(input,1),1),14),-4))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-5, -8]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(add_n([-3, 0],-3)))),-2)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(add_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [25, -15, -15]",
    "output": "generated_output : list = mul_n(sort_des([-3, -3, 5]),5)",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      25,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [4, -2, -4, -2]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(take(sub_n(sub_n(drop([4, -2, -4, -2],2),-2),-3),14),37)",
    "io_inp": [
      4,
      -2,
      -4,
      -2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(drop(input,2),-2),-3),14),37)"
  },
  {
    "input": "input : list = [1, 5, 0, -1, 4, 4]\noutput : list = [4, 5, 6, 9, 9, 10]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sub_n([1, 5, 0, -1, 4, 4],3),-5)),-1),4)",
    "io_inp": [
      1,
      5,
      0,
      -1,
      4,
      4
    ],
    "io_out": [
      4,
      5,
      6,
      9,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sub_n(input,3),-5)),-1),4)"
  },
  {
    "input": "input : list = [2, 1, 4, 4, -1, 5]\noutput : list = [5, 4, 4, 2, 1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(reverse([2, 1, 4, 4, -1, 5])),9)))",
    "io_inp": [
      2,
      1,
      4,
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(reverse(input)),9)))"
  },
  {
    "input": "input : list = [-2, -5, 1, 2, 3]\noutput : list = [11, 6, 1, -29, -14]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(mul_n([-2, -5, 1, 2, 3],5),4),1)),13)",
    "io_inp": [
      -2,
      -5,
      1,
      2,
      3
    ],
    "io_out": [
      11,
      6,
      1,
      -29,
      -14
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(mul_n(input,5),4),1)),13)"
  },
  {
    "input": "input : list = [-4, 1, 5, -4]\noutput : list = [-3, -3, 2, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([-4, 1, 5, -4]),5),4)",
    "io_inp": [
      -4,
      1,
      5,
      -4
    ],
    "io_out": [
      -3,
      -3,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),5),4)"
  },
  {
    "input": "input : list = [1, -3, 3, -2, 4, 5]\noutput : list = [1, -3, 3, -2, 4, 5]",
    "output": "generated_output : list = reverse(reverse([1, -3, 3, -2, 4, 5]))",
    "io_inp": [
      1,
      -3,
      3,
      -2,
      4,
      5
    ],
    "io_out": [
      1,
      -3,
      3,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [10, 9, 5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sub_n([2, -3, 1],-4),-1),-3)))",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      10,
      9,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sub_n(input,-4),-1),-3)))"
  },
  {
    "input": "input : list = [-5, -5, -5]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(reverse([-5, -5, -5]),1))))",
    "io_inp": [
      -5,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [3, 2, 4, -1, 1, 2]\noutput : list = [6, 5, 4, 1]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(sub_n([3, 2, 4, -1, 1, 2],-1),-3),4),4))",
    "io_inp": [
      3,
      2,
      4,
      -1,
      1,
      2
    ],
    "io_out": [
      6,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(sub_n(input,-1),-3),4),4))"
  },
  {
    "input": "input : list = [0, -3, -5]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(take([0, -3, -5],1),3),1),16),-1)",
    "io_inp": [
      0,
      -3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(take(input,1),3),1),16),-1)"
  },
  {
    "input": "input : list = [5, -2, -2, 5, 3]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = sort_des(drop([5, -2, -2, 5, 3],2))",
    "io_inp": [
      5,
      -2,
      -2,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [4, -3, 4, -2, 4]\noutput : list = [4, 4, 4, -2, -3]",
    "output": "generated_output : list = take(reverse(sort_asc([4, -3, 4, -2, 4])),24)",
    "io_inp": [
      4,
      -3,
      4,
      -2,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),24)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = take(drop([4, 2, -2],1),8)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(input,1),8)"
  },
  {
    "input": "input : list = [4, 2, 1, 4, 3]\noutput : list = [2, 4, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sort_des([4, 2, 1, 4, 3]))),2))",
    "io_inp": [
      4,
      2,
      1,
      4,
      3
    ],
    "io_out": [
      2,
      4,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sort_des(input))),2))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [20, 0]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(reverse([0, -5]))),2),-2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(reverse(input))),2),-2)"
  },
  {
    "input": "input : list = [2, 3, 2, -1, 5, 2]\noutput : list = [-7, -8, -8]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(take([2, 3, 2, -1, 5, 2],3),-5),-5)))",
    "io_inp": [
      2,
      3,
      2,
      -1,
      5,
      2
    ],
    "io_out": [
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(take(input,3),-5),-5)))"
  },
  {
    "input": "input : list = [-1, 1, 0, -3, 5, -2]\noutput : list = [80, 70, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(drop(add_n([-1, 1, 0, -3, 5, -2],-5),3)),5),-2)",
    "io_inp": [
      -1,
      1,
      0,
      -3,
      5,
      -2
    ],
    "io_out": [
      80,
      70,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(drop(add_n(input,-5),3)),5),-2)"
  },
  {
    "input": "input : list = [3, 1, -3, -1]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(drop([3, 1, -3, -1],1)))),2)",
    "io_inp": [
      3,
      1,
      -3,
      -1
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [4, 5, -4, 4, -5, -3]\noutput : list = [-12, -15, 12, -12]",
    "output": "generated_output : list = take(mul_n([4, 5, -4, 4, -5, -3],-3),4)",
    "io_inp": [
      4,
      5,
      -4,
      4,
      -5,
      -3
    ],
    "io_out": [
      -12,
      -15,
      12,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),4)"
  },
  {
    "input": "input : list = [-3, 0, -4, 5]\noutput : list = [3, 0, 4, -5]",
    "output": "generated_output : list = mul_n([-3, 0, -4, 5],-1)",
    "io_inp": [
      -3,
      0,
      -4,
      5
    ],
    "io_out": [
      3,
      0,
      4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 0, 4, -2]\noutput : list = [-20, 0, 16, -8]",
    "output": "generated_output : list = mul_n([-5, 0, 4, -2],4)",
    "io_inp": [
      -5,
      0,
      4,
      -2
    ],
    "io_out": [
      -20,
      0,
      16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, -5, 0, -2, -1, 3]\noutput : list = [-7, -22]",
    "output": "generated_output : list = add_n(sub_n(drop(mul_n(sort_des([-2, -5, 0, -2, -1, 3]),5),4),-2),1)",
    "io_inp": [
      -2,
      -5,
      0,
      -2,
      -1,
      3
    ],
    "io_out": [
      -7,
      -22
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(mul_n(sort_des(input),5),4),-2),1)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse([-4, 2])",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3, 3, -3]\noutput : list = [-3, -1, 3, 3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-1, 3, 3, -3]),2),2)",
    "io_inp": [
      -1,
      3,
      3,
      -3
    ],
    "io_out": [
      -3,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),2),2)"
  },
  {
    "input": "input : list = [-3, -3, -5, -2, -3, 2]\noutput : list = [-5, -5, -9, -3, -5, 5]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n([-3, -3, -5, -2, -3, 2],-2),4),3),-1)",
    "io_inp": [
      -3,
      -3,
      -5,
      -2,
      -3,
      2
    ],
    "io_out": [
      -5,
      -5,
      -9,
      -3,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(input,-2),4),3),-1)"
  },
  {
    "input": "input : list = [5, 2, 0, -3, 5]\noutput : list = [9, -7, -1, 3, 9]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(sub_n([5, 2, 0, -3, 5],2)),2),-3),43)",
    "io_inp": [
      5,
      2,
      0,
      -3,
      5
    ],
    "io_out": [
      9,
      -7,
      -1,
      3,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(sub_n(input,2)),2),-3),43)"
  },
  {
    "input": "input : list = [-2, 0, 4, -1, -4, -4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(reverse(drop([-2, 0, 4, -1, -4, -4],4)),1)),-5)",
    "io_inp": [
      -2,
      0,
      4,
      -1,
      -4,
      -4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(reverse(drop(input,4)),1)),-5)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [19, 23]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(mul_n([-4, -3],-4)),5),2))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      19,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(mul_n(input,-4)),5),2))"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [4, 3, 1]",
    "output": "generated_output : list = add_n(sort_des(take(sub_n(sort_asc([2, 5, 4]),-2),19)),-3)",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sub_n(sort_asc(input),-2),19)),-3)"
  },
  {
    "input": "input : list = [5, 5, 0, -2, -1, -4]\noutput : list = [16, 4, 8, 0, -20]",
    "output": "generated_output : list = take(take(mul_n(reverse(drop([5, 5, 0, -2, -1, -4],1)),-4),34),14)",
    "io_inp": [
      5,
      5,
      0,
      -2,
      -1,
      -4
    ],
    "io_out": [
      16,
      4,
      8,
      0,
      -20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(drop(input,1)),-4),34),14)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [20, 20]",
    "output": "generated_output : list = take(take(mul_n(sub_n(mul_n([2, 2],-3),-1),-4),24),10)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(mul_n(input,-3),-1),-4),24),10)"
  },
  {
    "input": "input : list = [4, -3, -1, -5]\noutput : list = [2, -5, -3, -7]",
    "output": "generated_output : list = sub_n([4, -3, -1, -5],2)",
    "io_inp": [
      4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      2,
      -5,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 5, 1, -1, 5, 0]\noutput : list = [0, 2, 10]",
    "output": "generated_output : list = reverse(take(sort_des(take(mul_n([-5, 5, 1, -1, 5, 0],-2),7)),3))",
    "io_inp": [
      -5,
      5,
      1,
      -1,
      5,
      0
    ],
    "io_out": [
      0,
      2,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(mul_n(input,-2),7)),3))"
  },
  {
    "input": "input : list = [-5, -4, 0, -5, 3]\noutput : list = [-2, -2, -1, 3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(sort_asc([-5, -4, 0, -5, 3])),13),-3))",
    "io_inp": [
      -5,
      -4,
      0,
      -5,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(sort_asc(input)),13),-3))"
  },
  {
    "input": "input : list = [-1, 3, 0, 1, -2]\noutput : list = [9, 7, 6, 5, 4]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(sort_asc([-1, 3, 0, 1, -2])),-5),1),33)",
    "io_inp": [
      -1,
      3,
      0,
      1,
      -2
    ],
    "io_out": [
      9,
      7,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(sort_asc(input)),-5),1),33)"
  },
  {
    "input": "input : list = [5, -1, -2, -2]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take([5, -1, -2, -2],1),-2)",
    "io_inp": [
      5,
      -1,
      -2,
      -2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [4, 0, 1, -3, 4]\noutput : list = [-2, -5, -9]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(drop([4, 0, 1, -3, 4],2)),1)),5)",
    "io_inp": [
      4,
      0,
      1,
      -3,
      4
    ],
    "io_out": [
      -2,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(drop(input,2)),1)),5)"
  },
  {
    "input": "input : list = [5, -4, -1, -1]\noutput : list = [8, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n([5, -4, -1, -1],1),2)),-2)",
    "io_inp": [
      5,
      -4,
      -1,
      -1
    ],
    "io_out": [
      8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(input,1),2)),-2)"
  },
  {
    "input": "input : list = [-2, 2, 5, 1, 5, 3]\noutput : list = [6, -9, -14, -19, -29, -29]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(mul_n([-2, 2, 5, 1, 5, 3],-5)),31),-4))",
    "io_inp": [
      -2,
      2,
      5,
      1,
      5,
      3
    ],
    "io_out": [
      6,
      -9,
      -14,
      -19,
      -29,
      -29
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(mul_n(input,-5)),31),-4))"
  },
  {
    "input": "input : list = [-2, -1, -1, -1, 5, -4]\noutput : list = [-4, 5, -1, -1, -1, -2]",
    "output": "generated_output : list = reverse([-2, -1, -1, -1, 5, -4])",
    "io_inp": [
      -2,
      -1,
      -1,
      -1,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, 2, 0]\noutput : list = [4, -2, 1, -1]",
    "output": "generated_output : list = add_n([5, -1, 2, 0],-1)",
    "io_inp": [
      5,
      -1,
      2,
      0
    ],
    "io_out": [
      4,
      -2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 3, 3, 2]\noutput : list = [3, 3, 2, 2]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(sort_des([2, 3, 3, 2])))),20)",
    "io_inp": [
      2,
      3,
      3,
      2
    ],
    "io_out": [
      3,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(sort_des(input)))),20)"
  },
  {
    "input": "input : list = [4, 3, 3]\noutput : list = [7]",
    "output": "generated_output : list = add_n(reverse(take(take([4, 3, 3],1),14)),3)",
    "io_inp": [
      4,
      3,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(input,1),14)),3)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(drop(sub_n(add_n(reverse([-3, -5]),-3),-5),1))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(add_n(reverse(input),-3),-5),1))"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [-6, 0, 8]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc([1, -3, 4]),-2)),2)",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      -6,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(input),-2)),2)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -2, 4],1)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [-1, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, -1])",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, -1, 0]\noutput : list = [20, 15, 10, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(sort_des([-2, -3, -1, 0]),-5))),-5)",
    "io_inp": [
      -2,
      -3,
      -1,
      0
    ],
    "io_out": [
      20,
      15,
      10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(sort_des(input),-5))),-5)"
  },
  {
    "input": "input : list = [1, 4, 5, 1]\noutput : list = [-30, -15]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take([1, 4, 5, 1],2),-2),-5))",
    "io_inp": [
      1,
      4,
      5,
      1
    ],
    "io_out": [
      -30,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(input,2),-2),-5))"
  },
  {
    "input": "input : list = [4, 2, 4, 0, 1]\noutput : list = [8, 8, 4, 2, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_asc([4, 2, 4, 0, 1]),2)),15))",
    "io_inp": [
      4,
      2,
      4,
      0,
      1
    ],
    "io_out": [
      8,
      8,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_asc(input),2)),15))"
  },
  {
    "input": "input : list = [-4, 2, -5, -2]\noutput : list = [-9, -8, -6, -2]",
    "output": "generated_output : list = add_n(sort_asc([-4, 2, -5, -2]),-4)",
    "io_inp": [
      -4,
      2,
      -5,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, -1, -2, 0]\noutput : list = [-2, -1, 0, 0]",
    "output": "generated_output : list = take(mul_n(sort_des(take(sub_n([-2, -1, -2, 0],-2),4)),-1),27)",
    "io_inp": [
      -2,
      -1,
      -2,
      0
    ],
    "io_out": [
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(sub_n(input,-2),4)),-1),27)"
  },
  {
    "input": "input : list = [-5, -2, 4, -4]\noutput : list = [0, 3, 9, 1]",
    "output": "generated_output : list = sub_n([-5, -2, 4, -4],-5)",
    "io_inp": [
      -5,
      -2,
      4,
      -4
    ],
    "io_out": [
      0,
      3,
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [7, 6, 4]",
    "output": "generated_output : list = sort_des(sub_n([2, 0, 3],-4))",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [5, -1, -4]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(drop([5, -1, -4],1),-5))),5)",
    "io_inp": [
      5,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(drop(input,1),-5))),5)"
  },
  {
    "input": "input : list = [1, 2, 3, -2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(drop([1, 2, 3, -2, 2],3))",
    "io_inp": [
      1,
      2,
      3,
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-12, -9]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(add_n([-3, -2],-1),3)),28),17)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(add_n(input,-1),3)),28),17)"
  },
  {
    "input": "input : list = [-4, -5, -2]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -5, -2],1)",
    "io_inp": [
      -4,
      -5,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 2, -3, 0, 3]\noutput : list = [-9, 0, 9, -6, -9]",
    "output": "generated_output : list = reverse(mul_n(mul_n([3, 2, -3, 0, 3],-3),1))",
    "io_inp": [
      3,
      2,
      -3,
      0,
      3
    ],
    "io_out": [
      -9,
      0,
      9,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,-3),1))"
  },
  {
    "input": "input : list = [4, 0, 0, -3]\noutput : list = [-6, -3, -3, 1]",
    "output": "generated_output : list = sub_n(reverse([4, 0, 0, -3]),3)",
    "io_inp": [
      4,
      0,
      0,
      -3
    ],
    "io_out": [
      -6,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [1, 1, 2, 0, 1]\noutput : list = [6, 7, 7, 7, 8]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(reverse([1, 1, 2, 0, 1]),5),1)))",
    "io_inp": [
      1,
      1,
      2,
      0,
      1
    ],
    "io_out": [
      6,
      7,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(reverse(input),5),1)))"
  },
  {
    "input": "input : list = [3, -4, 2, 5, -4, -4]\noutput : list = [0, 0, 0, -6, -9]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(drop([3, -4, 2, 5, -4, -4],1)),-1),4),52)",
    "io_inp": [
      3,
      -4,
      2,
      5,
      -4,
      -4
    ],
    "io_out": [
      0,
      0,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(drop(input,1)),-1),4),52)"
  },
  {
    "input": "input : list = [-4, -4, -1, 4, -4]\noutput : list = [6, -2]",
    "output": "generated_output : list = sub_n(drop([-4, -4, -1, 4, -4],3),-2)",
    "io_inp": [
      -4,
      -4,
      -1,
      4,
      -4
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),-2)"
  },
  {
    "input": "input : list = [0, 5, 1, -3]\noutput : list = [2, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(drop([0, 5, 1, -3],2)),-2),-3))",
    "io_inp": [
      0,
      5,
      1,
      -3
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(drop(input,2)),-2),-3))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(sub_n([2, 5],-4),1),1)),2)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(sub_n(input,-4),1),1)),2)"
  },
  {
    "input": "input : list = [0, -3, 3, 1, 2, 3]\noutput : list = [-4, -10, -12, -14, -16, -16]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des([0, -3, 3, 1, 2, 3]),5)),-2)",
    "io_inp": [
      0,
      -3,
      3,
      1,
      2,
      3
    ],
    "io_out": [
      -4,
      -10,
      -12,
      -14,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(input),5)),-2)"
  },
  {
    "input": "input : list = [-2, 1, 0, 4, -4]\noutput : list = [6, 0, 2, -6, 10]",
    "output": "generated_output : list = sub_n(mul_n([-2, 1, 0, 4, -4],-2),-2)",
    "io_inp": [
      -2,
      1,
      0,
      4,
      -4
    ],
    "io_out": [
      6,
      0,
      2,
      -6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),-2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [7, 5]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(reverse([-4, -2]),3),-1),18))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(reverse(input),3),-1),18))"
  },
  {
    "input": "input : list = [4, -2, 4, 2, 1, 1]\noutput : list = [1, -5, 1, -1, -2, -2]",
    "output": "generated_output : list = sub_n([4, -2, 4, 2, 1, 1],3)",
    "io_inp": [
      4,
      -2,
      4,
      2,
      1,
      1
    ],
    "io_out": [
      1,
      -5,
      1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, 4, -5, 3]\noutput : list = [-14, 10, 13, 13]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n([4, 4, -5, 3],3)),1))",
    "io_inp": [
      4,
      4,
      -5,
      3
    ],
    "io_out": [
      -14,
      10,
      13,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(input,3)),1))"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(drop(drop([-4, 3, -2],1),1)),1))",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(drop(drop(input,1),1)),1))"
  },
  {
    "input": "input : list = [-5, 0, 4, -5, 2, 5]\noutput : list = [-1, -1, 4, 6, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n([-5, 0, 4, -5, 2, 5],4),-5)),3)",
    "io_inp": [
      -5,
      0,
      4,
      -5,
      2,
      5
    ],
    "io_out": [
      -1,
      -1,
      4,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(input,4),-5)),3)"
  },
  {
    "input": "input : list = [-5, -5, -2]\noutput : list = [-5, -5, -2]",
    "output": "generated_output : list = take(sort_asc([-5, -5, -2]),3)",
    "io_inp": [
      -5,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-2, -2, -4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_des(take([-2, -2, -4, 2],1)))",
    "io_inp": [
      -2,
      -2,
      -4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [1, 1, -1, -3, -3]\noutput : list = [9, 9]",
    "output": "generated_output : list = take(mul_n(take(take(reverse([1, 1, -1, -3, -3]),12),2),-3),33)",
    "io_inp": [
      1,
      1,
      -1,
      -3,
      -3
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(reverse(input),12),2),-3),33)"
  },
  {
    "input": "input : list = [1, 2, -3, 0, -4, -5]\noutput : list = [-13, -9, -29, -17, -33, -37]",
    "output": "generated_output : list = add_n(mul_n(sub_n([1, 2, -3, 0, -4, -5],5),4),3)",
    "io_inp": [
      1,
      2,
      -3,
      0,
      -4,
      -5
    ],
    "io_out": [
      -13,
      -9,
      -29,
      -17,
      -33,
      -37
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,5),4),3)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-6, 1, -4]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(sub_n([-5, 2, -3],-3)),4)),4)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -6,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(sub_n(input,-3)),4)),4)"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [-24, -16, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sort_des([0, -2, -3]),-2))),-4)",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      -24,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(sort_des(input),-2))),-4)"
  },
  {
    "input": "input : list = [0, 4, -1, -4]\noutput : list = [-10, -18]",
    "output": "generated_output : list = mul_n(sub_n(take([0, 4, -1, -4],2),-5),-2)",
    "io_inp": [
      0,
      4,
      -1,
      -4
    ],
    "io_out": [
      -10,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,2),-5),-2)"
  },
  {
    "input": "input : list = [1, -5, 3, 1, -5]\noutput : list = [5, 5, -1, -1, -3]",
    "output": "generated_output : list = mul_n(sort_asc([1, -5, 3, 1, -5]),-1)",
    "io_inp": [
      1,
      -5,
      3,
      1,
      -5
    ],
    "io_out": [
      5,
      5,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = sort_des([2, -5, -4])",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -4, -1, 2, -4, -5]\noutput : list = [30, 25]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(drop([-1, -4, -1, 2, -4, -5],4),-5),5)))",
    "io_inp": [
      -1,
      -4,
      -1,
      2,
      -4,
      -5
    ],
    "io_out": [
      30,
      25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(drop(input,4),-5),5)))"
  },
  {
    "input": "input : list = [-2, 5, 5, -2, 5, 0]\noutput : list = [5, -2, 5, 0]",
    "output": "generated_output : list = drop([-2, 5, 5, -2, 5, 0],2)",
    "io_inp": [
      -2,
      5,
      5,
      -2,
      5,
      0
    ],
    "io_out": [
      5,
      -2,
      5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(drop([5, -1, -2],1)))))",
    "io_inp": [
      5,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [-12, -8, -2]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse([5, -5, -1])),-3),-4)",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      -12,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(input)),-3),-4)"
  },
  {
    "input": "input : list = [-1, 5, 3, -3]\noutput : list = [25, 15, -5, -15]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(mul_n([-1, 5, 3, -3],5)))))",
    "io_inp": [
      -1,
      5,
      3,
      -3
    ],
    "io_out": [
      25,
      15,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [3, 1, -3, -3]\noutput : list = [-3, -3, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sub_n([3, 1, -3, -3],-5)),5)))",
    "io_inp": [
      3,
      1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sub_n(input,-5)),5)))"
  },
  {
    "input": "input : list = [5, 0, -5, 5, 4]\noutput : list = [-11, -6, -2, -1, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([5, 0, -5, 5, 4]),4),2)",
    "io_inp": [
      5,
      0,
      -5,
      5,
      4
    ],
    "io_out": [
      -11,
      -6,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),4),2)"
  },
  {
    "input": "input : list = [5, 4, -2, 0, -3]\noutput : list = [-10, -8, 4, 0, 6]",
    "output": "generated_output : list = mul_n([5, 4, -2, 0, -3],-2)",
    "io_inp": [
      5,
      4,
      -2,
      0,
      -3
    ],
    "io_out": [
      -10,
      -8,
      4,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, 0, 0, -3, -1, -1]\noutput : list = [11]",
    "output": "generated_output : list = sub_n(take(take(sub_n([1, 0, 0, -3, -1, -1],-5),1),33),-5)",
    "io_inp": [
      1,
      0,
      0,
      -3,
      -1,
      -1
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(input,-5),1),33),-5)"
  },
  {
    "input": "input : list = [4, -5, -4, -3, 4, -2]\noutput : list = [54, 45, 36, 27, -27, -27]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n(sort_asc([4, -5, -4, -3, 4, -2]),-3)),3),3)",
    "io_inp": [
      4,
      -5,
      -4,
      -3,
      4,
      -2
    ],
    "io_out": [
      54,
      45,
      36,
      27,
      -27,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(sort_asc(input),-3)),3),3)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [3, 6, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc([4, 2, -1])),-4)))",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-1, -4, 4, 2]\noutput : list = [4, 2, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc(take(take(sort_asc([-1, -4, 4, 2]),21),27)))",
    "io_inp": [
      -1,
      -4,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(sort_asc(input),21),27)))"
  },
  {
    "input": "input : list = [-4, -4, 4, 0, 3]\noutput : list = [8, 7, 4, 0, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n([-4, -4, 4, 0, 3],-4))))",
    "io_inp": [
      -4,
      -4,
      4,
      0,
      3
    ],
    "io_out": [
      8,
      7,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(input,-4))))"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [-11]",
    "output": "generated_output : list = sort_asc(drop(sub_n(add_n([-2, 0, -4],-3),4),2))",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(add_n(input,-3),4),2))"
  },
  {
    "input": "input : list = [-2, 2, 0, -4, -2]\noutput : list = [0, -2, -4, -4, -6]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des([-2, 2, 0, -4, -2]),-2))))",
    "io_inp": [
      -2,
      2,
      0,
      -4,
      -2
    ],
    "io_out": [
      0,
      -2,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [-1, 5, -3, 0, -1, 5]\noutput : list = [12, 2, 2, -3, -28, -28]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des([-1, 5, -3, 0, -1, 5]),-5),25)),3)",
    "io_inp": [
      -1,
      5,
      -3,
      0,
      -1,
      5
    ],
    "io_out": [
      12,
      2,
      2,
      -3,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des(input),-5),25)),3)"
  },
  {
    "input": "input : list = [0, -4, -5, 0, 3, -4]\noutput : list = [9, -3, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(take([0, -4, -5, 0, 3, -4],3),3),3),3))",
    "io_inp": [
      0,
      -4,
      -5,
      0,
      3,
      -4
    ],
    "io_out": [
      9,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(take(input,3),3),3),3))"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [24, 8, 4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(reverse([4, -1, 3])),5)),-4)",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      24,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(reverse(input)),5)),-4)"
  },
  {
    "input": "input : list = [-2, -2, 5, 5, -1]\noutput : list = [12, 12, -16, -16, 8]",
    "output": "generated_output : list = take(mul_n(add_n([-2, -2, 5, 5, -1],-1),-4),16)",
    "io_inp": [
      -2,
      -2,
      5,
      5,
      -1
    ],
    "io_out": [
      12,
      12,
      -16,
      -16,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-1),-4),16)"
  },
  {
    "input": "input : list = [-2, -1, 5, 1]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, -1, 5, 1],1),7)",
    "io_inp": [
      -2,
      -1,
      5,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),7)"
  },
  {
    "input": "input : list = [-2, 1, 4]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(reverse(take([-2, 1, 4],1)),2)))",
    "io_inp": [
      -2,
      1,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(reverse(take(input,1)),2)))"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_des([-2, -4, -1])),-2)",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(add_n([1, -3],1)),1)))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(add_n(input,1)),1)))"
  },
  {
    "input": "input : list = [-4, 2, 2, -1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 2, 2, -1],1)",
    "io_inp": [
      -4,
      2,
      2,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 3, -2, 5]\noutput : list = [5, 3, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc([0, 3, -2, 5]))",
    "io_inp": [
      0,
      3,
      -2,
      5
    ],
    "io_out": [
      5,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 1, -5]\noutput : list = [-4, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(sub_n([2, 1, -5],-5),9),4)))",
    "io_inp": [
      2,
      1,
      -5
    ],
    "io_out": [
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(sub_n(input,-5),9),4)))"
  },
  {
    "input": "input : list = [-5, 5, 3, 2, -1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(sort_des([-5, 5, 3, 2, -1]),2),-2),1),4)",
    "io_inp": [
      -5,
      5,
      3,
      2,
      -1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(sort_des(input),2),-2),1),4)"
  },
  {
    "input": "input : list = [5, -2, -5, 1]\noutput : list = [12, -6]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(drop([5, -2, -5, 1],2)),-3)),-3)",
    "io_inp": [
      5,
      -2,
      -5,
      1
    ],
    "io_out": [
      12,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(drop(input,2)),-3)),-3)"
  },
  {
    "input": "input : list = [-2, 4, 0, -5, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = take([-2, 4, 0, -5, -2],2)",
    "io_inp": [
      -2,
      4,
      0,
      -5,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 0, -3, 1, -2]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(drop(reverse([5, 0, -3, 1, -2]),3))",
    "io_inp": [
      5,
      0,
      -3,
      1,
      -2
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(input),3))"
  },
  {
    "input": "input : list = [0, 0, -3, -5, -5, -1]\noutput : list = [-8, -8, -9, -11, -13, -13]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sub_n([0, 0, -3, -5, -5, -1],5))),3))",
    "io_inp": [
      0,
      0,
      -3,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -9,
      -11,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sub_n(input,5))),3))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [12, 12]",
    "output": "generated_output : list = mul_n([-4, -4],-3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sort_asc([-1, -5]))),-4))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [2, -5, 5, 4, -3]\noutput : list = [5, -2, 8, 7, 0]",
    "output": "generated_output : list = mul_n(sub_n([2, -5, 5, 4, -3],-3),1)",
    "io_inp": [
      2,
      -5,
      5,
      4,
      -3
    ],
    "io_out": [
      5,
      -2,
      8,
      7,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),1)"
  },
  {
    "input": "input : list = [-5, -3, -4]\noutput : list = [-25, -20, -15]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(reverse([-5, -3, -4]),5),26)))",
    "io_inp": [
      -5,
      -3,
      -4
    ],
    "io_out": [
      -25,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(reverse(input),5),26)))"
  },
  {
    "input": "input : list = [4, 4, -5, -3]\noutput : list = [-10, -10, -17, -19]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(add_n([4, 4, -5, -3],-5)),22),-4),-5)",
    "io_inp": [
      4,
      4,
      -5,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -17,
      -19
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(add_n(input,-5)),22),-4),-5)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(add_n([4, 5],-4))),1))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(add_n(input,-4))),1))"
  },
  {
    "input": "input : list = [4, -2, 4, -4]\noutput : list = [80, 40, -80, -80]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n([4, -2, 4, -4],4))),-5)",
    "io_inp": [
      4,
      -2,
      4,
      -4
    ],
    "io_out": [
      80,
      40,
      -80,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(input,4))),-5)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [18, 2]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc([5, -3]))),4),2)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      18,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc(input))),4),2)"
  },
  {
    "input": "input : list = [5, 5, 5, 3, 0, -4]\noutput : list = [1, 1, 1, -1, -4, -8]",
    "output": "generated_output : list = sub_n([5, 5, 5, 3, 0, -4],4)",
    "io_inp": [
      5,
      5,
      5,
      3,
      0,
      -4
    ],
    "io_out": [
      1,
      1,
      1,
      -1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 3, 1, -3, 0]\noutput : list = [-11, 4, 9, 19]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(drop([-5, 3, 1, -3, 0],1))),5),4)",
    "io_inp": [
      -5,
      3,
      1,
      -3,
      0
    ],
    "io_out": [
      -11,
      4,
      9,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(drop(input,1))),5),4)"
  },
  {
    "input": "input : list = [4, 4, -1, 3]\noutput : list = [-16, -16]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(take([4, 4, -1, 3],2),-4),25)))",
    "io_inp": [
      4,
      4,
      -1,
      3
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(take(input,2),-4),25)))"
  },
  {
    "input": "input : list = [5, 4, -2, -2, -5]\noutput : list = [57, 45, -27, -27, -63]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n([5, 4, -2, -2, -5],-3),-4),-5),2)",
    "io_inp": [
      5,
      4,
      -2,
      -2,
      -5
    ],
    "io_out": [
      57,
      45,
      -27,
      -27,
      -63
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(input,-3),-4),-5),2)"
  },
  {
    "input": "input : list = [0, 4, 3, -5]\noutput : list = [25, 0, -15, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([0, 4, 3, -5]),-5))",
    "io_inp": [
      0,
      4,
      3,
      -5
    ],
    "io_out": [
      25,
      0,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [7, -5, -13]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(mul_n([0, 2, -3],-4),1),5)),12)",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      7,
      -5,
      -13
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(mul_n(input,-4),1),5)),12)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take([2, -2, 1],1))",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, 3, -5, 4, 4, 1]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(take(drop(sort_asc(sort_asc([-3, 3, -5, 4, 4, 1])),5),37),-3)",
    "io_inp": [
      -3,
      3,
      -5,
      4,
      4,
      1
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(sort_asc(sort_asc(input)),5),37),-3)"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(take([3, -3, 5],1)),5),24))",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(take(input,1)),5),24))"
  },
  {
    "input": "input : list = [3, -2, -3, 0]\noutput : list = [-3, -2, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, -2, -3, 0]))",
    "io_inp": [
      3,
      -2,
      -3,
      0
    ],
    "io_out": [
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-5, -5, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sort_asc([-5, 2, -5])))))",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-3, -4, 4, -4, 4]\noutput : list = [-17, -17, -13, 15, 15]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_asc([-3, -4, 4, -4, 4])),4)),1)",
    "io_inp": [
      -3,
      -4,
      4,
      -4,
      4
    ],
    "io_out": [
      -17,
      -17,
      -13,
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_asc(input)),4)),1)"
  },
  {
    "input": "input : list = [2, 4, 4, -1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 4, 4, -1],1)",
    "io_inp": [
      2,
      4,
      4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-7, -7, -3]",
    "output": "generated_output : list = add_n([-3, -3, 1],-4)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, 0, -1, -2, 1, 2]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(take([4, 0, -1, -2, 1, 2],3))),3))",
    "io_inp": [
      4,
      0,
      -1,
      -2,
      1,
      2
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(take(input,3))),3))"
  },
  {
    "input": "input : list = [-5, 2, -4, 2, 5, -4]\noutput : list = [-76, -40, -40, 32, 32, 44]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(mul_n([-5, 2, -4, 2, 5, -4],3)),-4),47),-4)",
    "io_inp": [
      -5,
      2,
      -4,
      2,
      5,
      -4
    ],
    "io_out": [
      -76,
      -40,
      -40,
      32,
      32,
      44
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(mul_n(input,3)),-4),47),-4)"
  },
  {
    "input": "input : list = [0, -3, 4, -5, -1, 5]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take([0, -3, 4, -5, -1, 5],2)))",
    "io_inp": [
      0,
      -3,
      4,
      -5,
      -1,
      5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [-4, -1, 4, -1, 4, 5]\noutput : list = [89, 14, -111, 14, -111, -136]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(mul_n([-4, -1, 4, -1, 4, 5],5),3),1),-5),4)",
    "io_inp": [
      -4,
      -1,
      4,
      -1,
      4,
      5
    ],
    "io_out": [
      89,
      14,
      -111,
      14,
      -111,
      -136
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(mul_n(input,5),3),1),-5),4)"
  },
  {
    "input": "input : list = [1, 3, 1, -3, 3, -4]\noutput : list = [3, 3, 1, 1, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse([1, 3, 1, -3, 3, -4]))))",
    "io_inp": [
      1,
      3,
      1,
      -3,
      3,
      -4
    ],
    "io_out": [
      3,
      3,
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [0, 1, 1, 0, -4, -1]\noutput : list = [2, 2, 0, 0, -2, -8]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(mul_n([0, 1, 1, 0, -4, -1],2)),10)))",
    "io_inp": [
      0,
      1,
      1,
      0,
      -4,
      -1
    ],
    "io_out": [
      2,
      2,
      0,
      0,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(mul_n(input,2)),10)))"
  },
  {
    "input": "input : list = [3, 5, 0, -4]\noutput : list = [0, 4, 7, 9]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(sub_n([3, 5, 0, -4],-4),16))))",
    "io_inp": [
      3,
      5,
      0,
      -4
    ],
    "io_out": [
      0,
      4,
      7,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(sub_n(input,-4),16))))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [16, 8]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(sub_n([4, -4],-4),2),-3),3))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(sub_n(input,-4),2),-3),3))"
  },
  {
    "input": "input : list = [-1, -5, 1, -5, 2]\noutput : list = [-4, -8, -2, -8, -1]",
    "output": "generated_output : list = reverse(take(reverse(add_n([-1, -5, 1, -5, 2],-3)),29))",
    "io_inp": [
      -1,
      -5,
      1,
      -5,
      2
    ],
    "io_out": [
      -4,
      -8,
      -2,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(input,-3)),29))"
  },
  {
    "input": "input : list = [-1, 3, 3, 4, -5]\noutput : list = [3, 3, -1, -5]",
    "output": "generated_output : list = sort_des(take(drop(reverse(sort_asc([-1, 3, 3, 4, -5])),1),22))",
    "io_inp": [
      -1,
      3,
      3,
      4,
      -5
    ],
    "io_out": [
      3,
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(reverse(sort_asc(input)),1),22))"
  },
  {
    "input": "input : list = [4, -3, -4]\noutput : list = [17, -4, -7]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_asc([4, -3, -4]),3)),5))",
    "io_inp": [
      4,
      -3,
      -4
    ],
    "io_out": [
      17,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_asc(input),3)),5))"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n([3, -1, 5],-4))),-5),-3)",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n(input,-4))),-5),-3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-8, 20]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(reverse([3, -4]),-4),-3)),1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -8,
      20
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(reverse(input),-4),-3)),1)"
  },
  {
    "input": "input : list = [3, 3, 4, 1, -2, -5]\noutput : list = [-5, -2, 1, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des([3, 3, 4, 1, -2, -5]))))",
    "io_inp": [
      3,
      3,
      4,
      1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [5, 0, 0, -1, 0, 2]\noutput : list = [120, 84, 60, 60, 60, 48]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n([5, 0, 0, -1, 0, 2],5)),3),4))",
    "io_inp": [
      5,
      0,
      0,
      -1,
      0,
      2
    ],
    "io_out": [
      120,
      84,
      60,
      60,
      60,
      48
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n(input,5)),3),4))"
  },
  {
    "input": "input : list = [-1, 4, 1, -1, 0, -4]\noutput : list = [-1, 2, 2, 3, 4, 7]",
    "output": "generated_output : list = sort_asc(take(take(add_n(sort_des([-1, 4, 1, -1, 0, -4]),3),11),45))",
    "io_inp": [
      -1,
      4,
      1,
      -1,
      0,
      -4
    ],
    "io_out": [
      -1,
      2,
      2,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(sort_des(input),3),11),45))"
  },
  {
    "input": "input : list = [-2, -2, -2, 1, 5]\noutput : list = [-60, -12, 24, 24, 24]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n([-2, -2, -2, 1, 5],-1),3),4))",
    "io_inp": [
      -2,
      -2,
      -2,
      1,
      5
    ],
    "io_out": [
      -60,
      -12,
      24,
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(input,-1),3),4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [0, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n(add_n([2, 5],2),-5))),2)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(add_n(input,2),-5))),2)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 1, 5])",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, -5, -1, 5]\noutput : list = [-2, -8, -12, -9, -12]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(reverse([-5, -2, -5, -1, 5]),-1),-4),-3),-1)",
    "io_inp": [
      -5,
      -2,
      -5,
      -1,
      5
    ],
    "io_out": [
      -2,
      -8,
      -12,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(reverse(input),-1),-4),-3),-1)"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 3, 1],1)",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 4, -1, 3]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sort_des(drop(sub_n(add_n([-3, 4, -1, 3],-2),5),2))",
    "io_inp": [
      -3,
      4,
      -1,
      3
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(add_n(input,-2),5),2))"
  },
  {
    "input": "input : list = [4, -2, 1, 1, 5]\noutput : list = [-16, 8, -4, -4, -20]",
    "output": "generated_output : list = mul_n([4, -2, 1, 1, 5],-4)",
    "io_inp": [
      4,
      -2,
      1,
      1,
      5
    ],
    "io_out": [
      -16,
      8,
      -4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 2, 1, 0, 4, -3]\noutput : list = [1, 3, 2, 1, 5, -2]",
    "output": "generated_output : list = add_n([0, 2, 1, 0, 4, -3],1)",
    "io_inp": [
      0,
      2,
      1,
      0,
      4,
      -3
    ],
    "io_out": [
      1,
      3,
      2,
      1,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, -5, 2, -2]\noutput : list = [-2, -4, 3, -1]",
    "output": "generated_output : list = add_n([-3, -5, 2, -2],1)",
    "io_inp": [
      -3,
      -5,
      2,
      -2
    ],
    "io_out": [
      -2,
      -4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = take(sort_asc(add_n([-2, 0, -4],3)),26)",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,3)),26)"
  },
  {
    "input": "input : list = [0, -3, -5, 1, 2, 4]\noutput : list = [-38, -28, -23, -3, 7]",
    "output": "generated_output : list = sub_n(sort_asc(drop(mul_n(add_n([0, -3, -5, 1, 2, 4],4),-5),1)),-2)",
    "io_inp": [
      0,
      -3,
      -5,
      1,
      2,
      4
    ],
    "io_out": [
      -38,
      -28,
      -23,
      -3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(mul_n(add_n(input,4),-5),1)),-2)"
  },
  {
    "input": "input : list = [5, -3, -5, 1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(add_n(take(drop(sort_des([5, -3, -5, 1]),2),9),-1))",
    "io_inp": [
      5,
      -3,
      -5,
      1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(drop(sort_des(input),2),9),-1))"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [0, -7]",
    "output": "generated_output : list = add_n(reverse(sort_asc(drop([-3, 5, -2],1))),-5)",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(drop(input,1))),-5)"
  },
  {
    "input": "input : list = [-3, 3, 0, 3, 0]\noutput : list = [6, -18, -6, -18, -6]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(mul_n([-3, 3, 0, 3, 0],-4),-2),3),-1),16)",
    "io_inp": [
      -3,
      3,
      0,
      3,
      0
    ],
    "io_out": [
      6,
      -18,
      -6,
      -18,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(mul_n(input,-4),-2),3),-1),16)"
  },
  {
    "input": "input : list = [-1, 2, -2, -2, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take([-1, 2, -2, -2, 2],2)",
    "io_inp": [
      -1,
      2,
      -2,
      -2,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -3, 3, -1, 1]\noutput : list = [-10, -9, -8, -6, -4]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(add_n([-2, -3, 3, -1, 1],-3)),-1),-3))",
    "io_inp": [
      -2,
      -3,
      3,
      -1,
      1
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(add_n(input,-3)),-1),-3))"
  },
  {
    "input": "input : list = [-1, -4, 1, -5, -4]\noutput : list = [-3, -6, -1, -7, -6]",
    "output": "generated_output : list = add_n([-1, -4, 1, -5, -4],-2)",
    "io_inp": [
      -1,
      -4,
      1,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -6,
      -1,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 5, 4, -3]\noutput : list = [7, -14]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(drop([-5, 5, 4, -3],2)),-3),-2))",
    "io_inp": [
      -5,
      5,
      4,
      -3
    ],
    "io_out": [
      7,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(drop(input,2)),-3),-2))"
  },
  {
    "input": "input : list = [2, 5, -2]\noutput : list = [2]",
    "output": "generated_output : list = drop(sort_asc(add_n(sort_des(reverse([2, 5, -2])),-3)),2)",
    "io_inp": [
      2,
      5,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(sort_des(reverse(input)),-3)),2)"
  },
  {
    "input": "input : list = [-2, -5, 1, -4]\noutput : list = [-2, -5, 1, -4]",
    "output": "generated_output : list = take(mul_n([-2, -5, 1, -4],1),5)",
    "io_inp": [
      -2,
      -5,
      1,
      -4
    ],
    "io_out": [
      -2,
      -5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,1),5)"
  },
  {
    "input": "input : list = [1, -5, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(add_n(sort_des(reverse(take([1, -5, 0],1))),2))",
    "io_inp": [
      1,
      -5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(reverse(take(input,1))),2))"
  },
  {
    "input": "input : list = [-5, 0, 4, 1]\noutput : list = [43, 7, -5, -65]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n([-5, 0, 4, 1],-4),-3)),5)",
    "io_inp": [
      -5,
      0,
      4,
      1
    ],
    "io_out": [
      43,
      7,
      -5,
      -65
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(input,-4),-3)),5)"
  },
  {
    "input": "input : list = [5, 4, -3, 1, -4, 1]\noutput : list = [18, 15, 3, 3, -6, -9]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(mul_n([5, 4, -3, 1, -4, 1],-3)),-3),-3))",
    "io_inp": [
      5,
      4,
      -3,
      1,
      -4,
      1
    ],
    "io_out": [
      18,
      15,
      3,
      3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(mul_n(input,-3)),-3),-3))"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [0, -3, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc([-5, 0, 3])),-3)",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      0,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [3, 4, 1, 1, 4]\noutput : list = [0, 0, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([3, 4, 1, 1, 4],4),3))",
    "io_inp": [
      3,
      4,
      1,
      1,
      4
    ],
    "io_out": [
      0,
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,4),3))"
  },
  {
    "input": "input : list = [-1, 3, -3, -2, -2, 4]\noutput : list = [9, 13, 7, 8, 8, 14]",
    "output": "generated_output : list = sub_n(sub_n([-1, 3, -3, -2, -2, 4],-5),-5)",
    "io_inp": [
      -1,
      3,
      -3,
      -2,
      -2,
      4
    ],
    "io_out": [
      9,
      13,
      7,
      8,
      8,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),-5)"
  },
  {
    "input": "input : list = [3, -2, 4, -2, -3]\noutput : list = [9, 6, 6, -9, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n([3, -2, 4, -2, -3],-1)),3))",
    "io_inp": [
      3,
      -2,
      4,
      -2,
      -3
    ],
    "io_out": [
      9,
      6,
      6,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(input,-1)),3))"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [-5, 5, 1]",
    "output": "generated_output : list = reverse([1, 5, -5])",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5, 0, 1, 4, 2]\noutput : list = [1, 4, 2]",
    "output": "generated_output : list = drop([-2, -5, 0, 1, 4, 2],3)",
    "io_inp": [
      -2,
      -5,
      0,
      1,
      4,
      2
    ],
    "io_out": [
      1,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, 1, -4, -1]\noutput : list = [3, 4, 6, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(sort_asc([-3, 1, -4, -1]),-5)),19),-2)",
    "io_inp": [
      -3,
      1,
      -4,
      -1
    ],
    "io_out": [
      3,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(sort_asc(input),-5)),19),-2)"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(sort_asc([5, 1, -3]),1),2),-5))",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(sort_asc(input),1),2),-5))"
  },
  {
    "input": "input : list = [-2, -4, -3, -1, -3, 4]\noutput : list = [-4, -6, -5, -3, -5, 2]",
    "output": "generated_output : list = add_n([-2, -4, -3, -1, -3, 4],-2)",
    "io_inp": [
      -2,
      -4,
      -3,
      -1,
      -3,
      4
    ],
    "io_out": [
      -4,
      -6,
      -5,
      -3,
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, 5, -1, -1]\noutput : list = [-12, -12, 36, 60]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([3, 5, -1, -1],3)),4)",
    "io_inp": [
      3,
      5,
      -1,
      -1
    ],
    "io_out": [
      -12,
      -12,
      36,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,3)),4)"
  },
  {
    "input": "input : list = [-2, 2, -4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop([-2, 2, -4],1)))),-1)",
    "io_inp": [
      -2,
      2,
      -4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop(input,1)))),-1)"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(sub_n([1, 1, 2],-4),1))))",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(sub_n(input,-4),1))))"
  },
  {
    "input": "input : list = [-5, 3, -2, -4, -5]\noutput : list = [-5, -5, -4, -2, 3]",
    "output": "generated_output : list = take(sort_asc([-5, 3, -2, -4, -5]),24)",
    "io_inp": [
      -5,
      3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),24)"
  },
  {
    "input": "input : list = [3, -3, 2, -5]\noutput : list = [-7, -5, 5, 9]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n(mul_n([3, -3, 2, -5],-2),1),2),36))",
    "io_inp": [
      3,
      -3,
      2,
      -5
    ],
    "io_out": [
      -7,
      -5,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(mul_n(input,-2),1),2),36))"
  },
  {
    "input": "input : list = [1, -5, 5, -4, 3]\noutput : list = [34, 30, 10, 2, -6]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sub_n([1, -5, 5, -4, 3],4))),-4),-2)",
    "io_inp": [
      1,
      -5,
      5,
      -4,
      3
    ],
    "io_out": [
      34,
      30,
      10,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sub_n(input,4))),-4),-2)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 5, 4],1)",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 0, -3, 3]\noutput : list = [4, 3, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc([4, 0, -3, 3]))",
    "io_inp": [
      4,
      0,
      -3,
      3
    ],
    "io_out": [
      4,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -5, -5, -5, 2]\noutput : list = [-3, -3, -3, 4]",
    "output": "generated_output : list = sub_n(drop(sub_n([2, -5, -5, -5, 2],-1),1),-1)",
    "io_inp": [
      2,
      -5,
      -5,
      -5,
      2
    ],
    "io_out": [
      -3,
      -3,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(input,-1),1),-1)"
  },
  {
    "input": "input : list = [5, -3, 5, -3, -5, -2]\noutput : list = [-4, -2, -2, -1, 6, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n(reverse([5, -3, 5, -3, -5, -2]),1))))",
    "io_inp": [
      5,
      -3,
      5,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [-5, 2, -1, 2]\noutput : list = [-1, 2, 2]",
    "output": "generated_output : list = sort_asc(drop([-5, 2, -1, 2],1))",
    "io_inp": [
      -5,
      2,
      -1,
      2
    ],
    "io_out": [
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 1, 0]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 1, 0],1)",
    "io_inp": [
      -4,
      1,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 5, 1, 5, 3, -1]\noutput : list = [1, 3, -1, 3, 1, -3]",
    "output": "generated_output : list = add_n([3, 5, 1, 5, 3, -1],-2)",
    "io_inp": [
      3,
      5,
      1,
      5,
      3,
      -1
    ],
    "io_out": [
      1,
      3,
      -1,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 1, 0, 1, -1, 1]\noutput : list = [20, -4, 0, -4, 4, -4]",
    "output": "generated_output : list = mul_n([-5, 1, 0, 1, -1, 1],-4)",
    "io_inp": [
      -5,
      1,
      0,
      1,
      -1,
      1
    ],
    "io_out": [
      20,
      -4,
      0,
      -4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [125, 100, -25]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sort_asc([1, -4, -5]),-5)),5))",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      125,
      100,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sort_asc(input),-5)),5))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(add_n([1, 3],-5),1))))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(add_n(input,-5),1))))"
  },
  {
    "input": "input : list = [4, -3, -3, 0]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sort_asc([4, -3, -3, 0])),2),1))",
    "io_inp": [
      4,
      -3,
      -3,
      0
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sort_asc(input)),2),1))"
  },
  {
    "input": "input : list = [-4, 2, 3, -4, -4, -4]\noutput : list = [3, 2, -4, -4, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(reverse([-4, 2, 3, -4, -4, -4])))))",
    "io_inp": [
      -4,
      2,
      3,
      -4,
      -4,
      -4
    ],
    "io_out": [
      3,
      2,
      -4,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [5, 3, -4]",
    "output": "generated_output : list = take(sort_des([3, -4, 5]),4)",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),4)"
  },
  {
    "input": "input : list = [5, -5, 4, -2]\noutput : list = [-2, 1, 7, 8]",
    "output": "generated_output : list = sort_asc(reverse(take(take(sub_n([5, -5, 4, -2],-3),14),13)))",
    "io_inp": [
      5,
      -5,
      4,
      -2
    ],
    "io_out": [
      -2,
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(sub_n(input,-3),14),13)))"
  },
  {
    "input": "input : list = [0, 3, -5, 3, -1, 2]\noutput : list = [3, 3, 2, 0, -1, -5]",
    "output": "generated_output : list = sort_des(reverse([0, 3, -5, 3, -1, 2]))",
    "io_inp": [
      0,
      3,
      -5,
      3,
      -1,
      2
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 5, -5, -5, 5, 0]\noutput : list = [-20, -2, 10, 10]",
    "output": "generated_output : list = sort_asc(drop(sub_n(reverse(mul_n([-1, 5, -5, -5, 5, 0],-3)),5),2))",
    "io_inp": [
      -1,
      5,
      -5,
      -5,
      5,
      0
    ],
    "io_out": [
      -20,
      -2,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(reverse(mul_n(input,-3)),5),2))"
  },
  {
    "input": "input : list = [-1, 5, 0, -1]\noutput : list = [4]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(take([-1, 5, 0, -1],1)),5)))",
    "io_inp": [
      -1,
      5,
      0,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(take(input,1)),5)))"
  },
  {
    "input": "input : list = [-5, 1, 5, -3, 3, 5]\noutput : list = [-10, -10, -6, -2, 6]",
    "output": "generated_output : list = sort_asc(drop(mul_n([-5, 1, 5, -3, 3, 5],-2),1))",
    "io_inp": [
      -5,
      1,
      5,
      -3,
      3,
      5
    ],
    "io_out": [
      -10,
      -10,
      -6,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(input,-2),1))"
  },
  {
    "input": "input : list = [-3, 2, -4, -1, 4]\noutput : list = [-2, 3, -3]",
    "output": "generated_output : list = add_n(take([-3, 2, -4, -1, 4],3),1)",
    "io_inp": [
      -3,
      2,
      -4,
      -1,
      4
    ],
    "io_out": [
      -2,
      3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),1)"
  },
  {
    "input": "input : list = [-1, -5, 4, -5]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(take([-1, -5, 4, -5],1),1),-2),4),-5)",
    "io_inp": [
      -1,
      -5,
      4,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(take(input,1),1),-2),4),-5)"
  },
  {
    "input": "input : list = [5, -3, 3, 1, -1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -3, 3, 1, -1],1)",
    "io_inp": [
      5,
      -3,
      3,
      1,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -5, 5, 0, -1, -2]\noutput : list = [9, 8, 4, 3, 2, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(sub_n([4, -5, 5, 0, -1, -2],-4)))))",
    "io_inp": [
      4,
      -5,
      5,
      0,
      -1,
      -2
    ],
    "io_out": [
      9,
      8,
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [-3, 4, -4]",
    "output": "generated_output : list = take(sub_n([-4, 3, -5],-1),11)",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      -3,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),11)"
  },
  {
    "input": "input : list = [4, 0, 1, -4, 1, -2]\noutput : list = [0, 6, 12, 15, 15, 24]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(sub_n([4, 0, 1, -4, 1, -2],-4))),3))",
    "io_inp": [
      4,
      0,
      1,
      -4,
      1,
      -2
    ],
    "io_out": [
      0,
      6,
      12,
      15,
      15,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(sub_n(input,-4))),3))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(sort_asc([1, 0]),-2),19)),-1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(sort_asc(input),-2),19)),-1)"
  },
  {
    "input": "input : list = [5, 3, 5, -2]\noutput : list = [10, 6, 10, -4]",
    "output": "generated_output : list = mul_n([5, 3, 5, -2],2)",
    "io_inp": [
      5,
      3,
      5,
      -2
    ],
    "io_out": [
      10,
      6,
      10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, -1, 3, 4, -5, 4]\noutput : list = [4, 4, 3, -1, -5, -5]",
    "output": "generated_output : list = take(sort_des(sort_des([-5, -1, 3, 4, -5, 4])),12)",
    "io_inp": [
      -5,
      -1,
      3,
      4,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),12)"
  },
  {
    "input": "input : list = [-2, -3, -2, -1, 4]\noutput : list = [-5, -4, -4, -3, 2]",
    "output": "generated_output : list = reverse(take(sort_des(add_n([-2, -3, -2, -1, 4],-2)),35))",
    "io_inp": [
      -2,
      -3,
      -2,
      -1,
      4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(input,-2)),35))"
  },
  {
    "input": "input : list = [-2, 3, -2, -4, -3]\noutput : list = [-8, -7, -6, -6, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_des([-2, 3, -2, -4, -3]))),-4))",
    "io_inp": [
      -2,
      3,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(add_n([-2, -2, -3],2)),29),-5),-5)",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(add_n(input,2)),29),-5),-5)"
  },
  {
    "input": "input : list = [4, -4, -3, -1, 3, -2]\noutput : list = [3, -1, -2, -3, -4]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(drop([4, -4, -3, -1, 3, -2],1),4)),-4),31)",
    "io_inp": [
      4,
      -4,
      -3,
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(drop(input,1),4)),-4),31)"
  },
  {
    "input": "input : list = [2, -2, 4, -2, 4, 2]\noutput : list = [4, 4, 2, 2, -2, -2]",
    "output": "generated_output : list = take(sort_des([2, -2, 4, -2, 4, 2]),19)",
    "io_inp": [
      2,
      -2,
      4,
      -2,
      4,
      2
    ],
    "io_out": [
      4,
      4,
      2,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),19)"
  },
  {
    "input": "input : list = [3, -2, 4, -5]\noutput : list = [1, 2]",
    "output": "generated_output : list = mul_n(reverse(drop(sort_asc(add_n([3, -2, 4, -5],-5)),2)),-1)",
    "io_inp": [
      3,
      -2,
      4,
      -5
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(sort_asc(add_n(input,-5)),2)),-1)"
  },
  {
    "input": "input : list = [2, 2, -5, 0, -2]\noutput : list = [0, 0, -2, -4, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([2, 2, -5, 0, -2])),2)",
    "io_inp": [
      2,
      2,
      -5,
      0,
      -2
    ],
    "io_out": [
      0,
      0,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [2, 2, -6]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc([5, 5, -3])),10),-3)",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(input)),10),-3)"
  },
  {
    "input": "input : list = [-5, 2, 2]\noutput : list = [13, 6, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(sub_n([-5, 2, 2],5)),-3),-1))",
    "io_inp": [
      -5,
      2,
      2
    ],
    "io_out": [
      13,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(sub_n(input,5)),-3),-1))"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-1, -1, -6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(add_n([-4, 1, 1],-2),15),4),-4))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(add_n(input,-2),15),4),-4))"
  },
  {
    "input": "input : list = [3, 2, 3, -5, -3]\noutput : list = [7, 5, 0, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([3, 2, 3, -5, -3],-1),-2))",
    "io_inp": [
      3,
      2,
      3,
      -5,
      -3
    ],
    "io_out": [
      7,
      5,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,-1),-2))"
  },
  {
    "input": "input : list = [-4, -2, 3, -3, 4]\noutput : list = [-80, 60, -60, 40, 80]",
    "output": "generated_output : list = reverse(take(take(mul_n(mul_n([-4, -2, 3, -3, 4],-4),5),34),31))",
    "io_inp": [
      -4,
      -2,
      3,
      -3,
      4
    ],
    "io_out": [
      -80,
      60,
      -60,
      40,
      80
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(mul_n(input,-4),5),34),31))"
  },
  {
    "input": "input : list = [-5, -3, -3, 2, 1, -3]\noutput : list = [2, 0, 0, 0, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n([-5, -3, -3, 2, 1, -3],-1))),3)",
    "io_inp": [
      -5,
      -3,
      -3,
      2,
      1,
      -3
    ],
    "io_out": [
      2,
      0,
      0,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(input,-1))),3)"
  },
  {
    "input": "input : list = [2, 4, 5, 5, 3, -3]\noutput : list = [10, 20, 25, 25, 15, -15]",
    "output": "generated_output : list = mul_n([2, 4, 5, 5, 3, -3],5)",
    "io_inp": [
      2,
      4,
      5,
      5,
      3,
      -3
    ],
    "io_out": [
      10,
      20,
      25,
      25,
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [4, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 4, 5])",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, 5, -5]\noutput : list = [-30, -10, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sub_n([-1, 5, 5, -5],-3)),4),5))",
    "io_inp": [
      -1,
      5,
      5,
      -5
    ],
    "io_out": [
      -30,
      -10,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sub_n(input,-3)),4),5))"
  },
  {
    "input": "input : list = [4, -4, 3, 2, -2]\noutput : list = [-4, -2, 2, 3]",
    "output": "generated_output : list = take(sort_asc(drop([4, -4, 3, 2, -2],1)),25)",
    "io_inp": [
      4,
      -4,
      3,
      2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,1)),25)"
  },
  {
    "input": "input : list = [5, -5, -5, 5]\noutput : list = [-4, -4, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(add_n([5, -5, -5, 5],-2),3))))",
    "io_inp": [
      5,
      -5,
      -5,
      5
    ],
    "io_out": [
      -4,
      -4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(add_n(input,-2),3))))"
  },
  {
    "input": "input : list = [-2, -2, 1, 1, 1, -3]\noutput : list = [2, 3, 3, 6, 6, 6]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(sort_des([-2, -2, 1, 1, 1, -3]),-5)),45))",
    "io_inp": [
      -2,
      -2,
      1,
      1,
      1,
      -3
    ],
    "io_out": [
      2,
      3,
      3,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(sort_des(input),-5)),45))"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [5, 3, -5]",
    "output": "generated_output : list = sort_des([3, 5, -5])",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, -1, -5, -5]\noutput : list = [0, 0, 2, 4, 5]",
    "output": "generated_output : list = take(take(add_n(reverse(sort_des([-3, 0, -1, -5, -5])),5),33),48)",
    "io_inp": [
      -3,
      0,
      -1,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(sort_des(input)),5),33),48)"
  },
  {
    "input": "input : list = [-5, 0, -1, 4]\noutput : list = [-3, 1, 2, 6]",
    "output": "generated_output : list = take(take(reverse(sub_n(sort_des([-5, 0, -1, 4]),-2)),21),41)",
    "io_inp": [
      -5,
      0,
      -1,
      4
    ],
    "io_out": [
      -3,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(sort_des(input),-2)),21),41)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [8, 3, -2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(mul_n([5, -5, 0],-1),12),3)))",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      8,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(mul_n(input,-1),12),3)))"
  },
  {
    "input": "input : list = [5, -5, 4, -2, 2, -2]\noutput : list = [13, -7, 13, -17, 28, -22]",
    "output": "generated_output : list = add_n(mul_n(reverse([5, -5, 4, -2, 2, -2]),-5),3)",
    "io_inp": [
      5,
      -5,
      4,
      -2,
      2,
      -2
    ],
    "io_out": [
      13,
      -7,
      13,
      -17,
      28,
      -22
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),-5),3)"
  },
  {
    "input": "input : list = [5, 5, 2, 0, -2]\noutput : list = [-20, -20]",
    "output": "generated_output : list = mul_n(take([5, 5, 2, 0, -2],2),-4)",
    "io_inp": [
      5,
      5,
      2,
      0,
      -2
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 4, 0],1))",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-4, -5, 1, 0, -2]\noutput : list = [5, 4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(sort_des([-4, -5, 1, 0, -2]),-4))))",
    "io_inp": [
      -4,
      -5,
      1,
      0,
      -2
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [1, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc([4, -3, 3]),4)",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 5, 5],1)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 0, 4]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_asc(drop(sort_asc(mul_n([3, 0, 4],-4)),2)))",
    "io_inp": [
      3,
      0,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(sort_asc(mul_n(input,-4)),2)))"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = sort_des([0, 1, 5])",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, -5, 2, 4]\noutput : list = [4, 2, -5, 3, -2]",
    "output": "generated_output : list = reverse([-2, 3, -5, 2, 4])",
    "io_inp": [
      -2,
      3,
      -5,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, -1, -2, 2, 4]\noutput : list = [4, 2, -2, -1, -5, -5]",
    "output": "generated_output : list = reverse([-5, -5, -1, -2, 2, 4])",
    "io_inp": [
      -5,
      -5,
      -1,
      -2,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -2,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, 0, 2, 4, 2]\noutput : list = [-3, -2, 2, 4, 4, 6]",
    "output": "generated_output : list = take(sort_asc(add_n([-4, -5, 0, 2, 4, 2],2)),17)",
    "io_inp": [
      -4,
      -5,
      0,
      2,
      4,
      2
    ],
    "io_out": [
      -3,
      -2,
      2,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,2)),17)"
  },
  {
    "input": "input : list = [4, 5, -3, 3, 5]\noutput : list = [-3, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([4, 5, -3, 3, 5])",
    "io_inp": [
      4,
      5,
      -3,
      3,
      5
    ],
    "io_out": [
      -3,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, -2, 3, -5]\noutput : list = [-13, -13, -10, -6, -5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_asc([2, -5, -2, 3, -5]))),-3),5)",
    "io_inp": [
      2,
      -5,
      -2,
      3,
      -5
    ],
    "io_out": [
      -13,
      -13,
      -10,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_asc(input))),-3),5)"
  },
  {
    "input": "input : list = [-2, -5, 0, -3]\noutput : list = [0, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-2, -5, 0, -3]))",
    "io_inp": [
      -2,
      -5,
      0,
      -3
    ],
    "io_out": [
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -4, -5, 5, -4, 3]\noutput : list = [-40, -40, -32, 40]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(take([-5, -4, -5, 5, -4, 3],4)),-4),6),-2)",
    "io_inp": [
      -5,
      -4,
      -5,
      5,
      -4,
      3
    ],
    "io_out": [
      -40,
      -40,
      -32,
      40
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(take(input,4)),-4),6),-2)"
  },
  {
    "input": "input : list = [-4, 2, -4, 5]\noutput : list = [4, -5]",
    "output": "generated_output : list = sub_n(sort_des(drop([-4, 2, -4, 5],2)),1)",
    "io_inp": [
      -4,
      2,
      -4,
      5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,2)),1)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sort_des([2, 2])),11),4),5)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sort_des(input)),11),4),5)"
  },
  {
    "input": "input : list = [4, 5, 1, -4, 4, -4]\noutput : list = [5, 4, 4, 1, -4, -4]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(add_n([4, 5, 1, -4, 4, -4],5))),-5),15)",
    "io_inp": [
      4,
      5,
      1,
      -4,
      4,
      -4
    ],
    "io_out": [
      5,
      4,
      4,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(add_n(input,5))),-5),15)"
  },
  {
    "input": "input : list = [-1, 0, 4, -4, -3]\noutput : list = [-12, 0, 3, 9, 12]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse([-1, 0, 4, -4, -3]))),-3)",
    "io_inp": [
      -1,
      0,
      4,
      -4,
      -3
    ],
    "io_out": [
      -12,
      0,
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(input))),-3)"
  },
  {
    "input": "input : list = [-3, 4, -4, -5, 2]\noutput : list = [-5, -4, -3, 2, 4]",
    "output": "generated_output : list = sort_asc([-3, 4, -4, -5, 2])",
    "io_inp": [
      -3,
      4,
      -4,
      -5,
      2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(take(take([0, -2, -1],1),3),-3)",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),3),-3)"
  },
  {
    "input": "input : list = [4, 2, -3, 0, -4, 4]\noutput : list = [4, 2, -3]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_asc(take([4, 2, -3, 0, -4, 4],3)))),34)",
    "io_inp": [
      4,
      2,
      -3,
      0,
      -4,
      4
    ],
    "io_out": [
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_asc(take(input,3)))),34)"
  },
  {
    "input": "input : list = [-4, -1, 1, 4, -4]\noutput : list = [-1, 1, 4, -4]",
    "output": "generated_output : list = drop([-4, -1, 1, 4, -4],1)",
    "io_inp": [
      -4,
      -1,
      1,
      4,
      -4
    ],
    "io_out": [
      -1,
      1,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -5, 2, -4]\noutput : list = [3, 2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([3, -5, 2, -4],1)))",
    "io_inp": [
      3,
      -5,
      2,
      -4
    ],
    "io_out": [
      3,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,1)))"
  },
  {
    "input": "input : list = [4, -3, 1]\noutput : list = [4, 1, -3]",
    "output": "generated_output : list = sort_des([4, -3, 1])",
    "io_inp": [
      4,
      -3,
      1
    ],
    "io_out": [
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, 2, 5, -1, 2]\noutput : list = [-1, -2, -4, -4, -7, -10]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([4, -4, 2, 5, -1, 2]),2),4)",
    "io_inp": [
      4,
      -4,
      2,
      5,
      -1,
      2
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),2),4)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [-28, -32, -36]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n([2, 3, 1],5)),-4),-4))",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      -28,
      -32,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n(input,5)),-4),-4))"
  },
  {
    "input": "input : list = [-1, -2, -1, 3, 4]\noutput : list = [-8, -6, 2, 2, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n([-1, -2, -1, 3, 4],-2)),11)",
    "io_inp": [
      -1,
      -2,
      -1,
      3,
      4
    ],
    "io_out": [
      -8,
      -6,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-2)),11)"
  },
  {
    "input": "input : list = [-5, 1, -4, 5, 3]\noutput : list = [-17]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(take([-5, 1, -4, 5, 3],1)),3),1),3)",
    "io_inp": [
      -5,
      1,
      -4,
      5,
      3
    ],
    "io_out": [
      -17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(take(input,1)),3),1),3)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-3, -3, -9]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([-1, -3, -1],-3)),-1)",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-3)),-1)"
  },
  {
    "input": "input : list = [5, 4, 0]\noutput : list = [5, 4, 0]",
    "output": "generated_output : list = reverse(sort_asc(reverse([5, 4, 0])))",
    "io_inp": [
      5,
      4,
      0
    ],
    "io_out": [
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-2, -3, 2, -4]\noutput : list = [1, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(drop([-2, -3, 2, -4],1)),7)),1)",
    "io_inp": [
      -2,
      -3,
      2,
      -4
    ],
    "io_out": [
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(drop(input,1)),7)),1)"
  },
  {
    "input": "input : list = [-5, 4, 1, -5, 4, 5]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(drop([-5, 4, 1, -5, 4, 5],4),3)),-2),-4)",
    "io_inp": [
      -5,
      4,
      1,
      -5,
      4,
      5
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(drop(input,4),3)),-2),-4)"
  },
  {
    "input": "input : list = [4, 3, 1, 5, 0]\noutput : list = [-13, -10, -7, -1, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n([4, 3, 1, 5, 0],-3)))),-2)",
    "io_inp": [
      4,
      3,
      1,
      5,
      0
    ],
    "io_out": [
      -13,
      -10,
      -7,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(take(reverse([-1, 1]),4),2),1))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(reverse(input),4),2),1))"
  },
  {
    "input": "input : list = [-3, -1, 0, -5]\noutput : list = [-5, 0, -1, -3]",
    "output": "generated_output : list = reverse([-3, -1, 0, -5])",
    "io_inp": [
      -3,
      -1,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -2, -3, 3]\noutput : list = [3, -3, -2, 1]",
    "output": "generated_output : list = reverse([1, -2, -3, 3])",
    "io_inp": [
      1,
      -2,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [3, 3]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(sub_n([-4, -4],-5),8)),3),16)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(sub_n(input,-5),8)),3),16)"
  },
  {
    "input": "input : list = [5, -1, -4, 3, 2, 4]\noutput : list = [-36, -24, -12, -8, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sub_n([5, -1, -4, 3, 2, 4],5))),4))",
    "io_inp": [
      5,
      -1,
      -4,
      3,
      2,
      4
    ],
    "io_out": [
      -36,
      -24,
      -12,
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sub_n(input,5))),4))"
  },
  {
    "input": "input : list = [-3, 2, 4, 5, 0, -4]\noutput : list = [-5, 0, 2, 3, -2, -6]",
    "output": "generated_output : list = sub_n([-3, 2, 4, 5, 0, -4],2)",
    "io_inp": [
      -3,
      2,
      4,
      5,
      0,
      -4
    ],
    "io_out": [
      -5,
      0,
      2,
      3,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, -5, -5, 2, -1, -1]\noutput : list = [-5, -5, -1, -1, 0, 2]",
    "output": "generated_output : list = sort_asc([0, -5, -5, 2, -1, -1])",
    "io_inp": [
      0,
      -5,
      -5,
      2,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5,
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, -2, 0]\noutput : list = [0, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(add_n([-1, -2, -2, 0],3)),-3)))",
    "io_inp": [
      -1,
      -2,
      -2,
      0
    ],
    "io_out": [
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(add_n(input,3)),-3)))"
  },
  {
    "input": "input : list = [0, -5, 2, -5, 3, -3]\noutput : list = [13, -11, 21, -7, 21, 1]",
    "output": "generated_output : list = add_n(mul_n(reverse([0, -5, 2, -5, 3, -3]),-4),1)",
    "io_inp": [
      0,
      -5,
      2,
      -5,
      3,
      -3
    ],
    "io_out": [
      13,
      -11,
      21,
      -7,
      21,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),-4),1)"
  },
  {
    "input": "input : list = [-1, -2, 5, -1, -5]\noutput : list = [-4, -5, 2]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(take([-1, -2, 5, -1, -5],3),-2),2),3),19)",
    "io_inp": [
      -1,
      -2,
      5,
      -1,
      -5
    ],
    "io_out": [
      -4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(take(input,3),-2),2),3),19)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [1, 1, -24]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des([-5, 0, 0]),5)),1)",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      -24
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(input),5)),1)"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-30, -15, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(reverse([-5, 0, 5]),-1),5),-3))",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -30,
      -15,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(reverse(input),-1),5),-3))"
  },
  {
    "input": "input : list = [-2, 4, -1, 1]\noutput : list = [1, 2, 4, 7]",
    "output": "generated_output : list = take(take(add_n(reverse(sort_des([-2, 4, -1, 1])),3),24),31)",
    "io_inp": [
      -2,
      4,
      -1,
      1
    ],
    "io_out": [
      1,
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(sort_des(input)),3),24),31)"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [3, 9, 21]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n([5, 3, -1],3),3),-3),17)",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      3,
      9,
      21
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(input,3),3),-3),17)"
  },
  {
    "input": "input : list = [4, 5, 3, 5, -1]\noutput : list = [4, 4, 3, 2, -2]",
    "output": "generated_output : list = sub_n(sort_des([4, 5, 3, 5, -1]),1)",
    "io_inp": [
      4,
      5,
      3,
      5,
      -1
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-5, -7]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(reverse([0, 2])),5),2),22)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(reverse(input)),5),2),22)"
  },
  {
    "input": "input : list = [1, 4, 2, 2, -1, -3]\noutput : list = [1, 3, 6, 6]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(drop([1, 4, 2, 2, -1, -3],2),-4),4),-4))",
    "io_inp": [
      1,
      4,
      2,
      2,
      -1,
      -3
    ],
    "io_out": [
      1,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(drop(input,2),-4),4),-4))"
  },
  {
    "input": "input : list = [-3, -5, 2, -3, 0]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take([-3, -5, 2, -3, 0],2)",
    "io_inp": [
      -3,
      -5,
      2,
      -3,
      0
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 0, 5, 2]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(take([-3, 0, 5, 2],1),3),17)),-1)",
    "io_inp": [
      -3,
      0,
      5,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(take(input,1),3),17)),-1)"
  },
  {
    "input": "input : list = [3, -2, 4, 0, -2, -4]\noutput : list = [4, 3, 0, -2, -2, -4]",
    "output": "generated_output : list = sort_des([3, -2, 4, 0, -2, -4])",
    "io_inp": [
      3,
      -2,
      4,
      0,
      -2,
      -4
    ],
    "io_out": [
      4,
      3,
      0,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -1, 0]\noutput : list = [11, -1, 1]",
    "output": "generated_output : list = sub_n(take(mul_n([5, -1, 0],2),6),-1)",
    "io_inp": [
      5,
      -1,
      0
    ],
    "io_out": [
      11,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,2),6),-1)"
  },
  {
    "input": "input : list = [-3, -4, -1, -4]\noutput : list = [-6]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(take([-3, -4, -1, -4],1))),-3),7)",
    "io_inp": [
      -3,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(take(input,1))),-3),7)"
  },
  {
    "input": "input : list = [-1, 2, -3, -5, -2, 2]\noutput : list = [-5, 10, -15, -25, -10, 10]",
    "output": "generated_output : list = mul_n([-1, 2, -3, -5, -2, 2],5)",
    "io_inp": [
      -1,
      2,
      -3,
      -5,
      -2,
      2
    ],
    "io_out": [
      -5,
      10,
      -15,
      -25,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-4, 2, -3, 3, -4, -5]\noutput : list = [16, 15, 10, 9, 9, 8]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(sort_des([-4, 2, -3, 3, -4, -5]),5),26),5),-3)",
    "io_inp": [
      -4,
      2,
      -3,
      3,
      -4,
      -5
    ],
    "io_out": [
      16,
      15,
      10,
      9,
      9,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(sort_des(input),5),26),5),-3)"
  },
  {
    "input": "input : list = [2, 0, 5, 5, 2, 5]\noutput : list = [10, 10, 10, 4, 4, 0]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([2, 0, 5, 5, 2, 5],2)),1)",
    "io_inp": [
      2,
      0,
      5,
      5,
      2,
      5
    ],
    "io_out": [
      10,
      10,
      10,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,2)),1)"
  },
  {
    "input": "input : list = [-2, -4, 2]\noutput : list = [3, 9, -9]",
    "output": "generated_output : list = add_n(mul_n([-2, -4, 2],-3),-3)",
    "io_inp": [
      -2,
      -4,
      2
    ],
    "io_out": [
      3,
      9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),-3)"
  },
  {
    "input": "input : list = [5, -1, -4, 0, -4]\noutput : list = [5, 0, -1, -4, -4]",
    "output": "generated_output : list = sort_des([5, -1, -4, 0, -4])",
    "io_inp": [
      5,
      -1,
      -4,
      0,
      -4
    ],
    "io_out": [
      5,
      0,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2, 0, 1]\noutput : list = [1, 0, -2, -3]",
    "output": "generated_output : list = sort_des([-3, -2, 0, 1])",
    "io_inp": [
      -3,
      -2,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(take([1, 1, -5],1))),-2),1)",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(take(input,1))),-2),1)"
  },
  {
    "input": "input : list = [-4, 1, 4, -2, 2]\noutput : list = [7, 5, 4, 1, -1]",
    "output": "generated_output : list = sort_des(take(add_n([-4, 1, 4, -2, 2],3),11))",
    "io_inp": [
      -4,
      1,
      4,
      -2,
      2
    ],
    "io_out": [
      7,
      5,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,3),11))"
  },
  {
    "input": "input : list = [4, 3, 5]\noutput : list = [-10, -9, -8]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(mul_n([4, 3, 5],-1)),5)),39)",
    "io_inp": [
      4,
      3,
      5
    ],
    "io_out": [
      -10,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(mul_n(input,-1)),5)),39)"
  },
  {
    "input": "input : list = [-4, -5, 0, 4, 2]\noutput : list = [0, 4, 2]",
    "output": "generated_output : list = drop([-4, -5, 0, 4, 2],2)",
    "io_inp": [
      -4,
      -5,
      0,
      4,
      2
    ],
    "io_out": [
      0,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [3, -5, -1]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(mul_n([3, -5, -1],1),4),-1),4),-1)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      3,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(mul_n(input,1),4),-1),4),-1)"
  },
  {
    "input": "input : list = [1, -3, 3, 5, -5, -2]\noutput : list = [4, 2, 0, -3, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des([1, -3, 3, 5, -5, -2]),1)",
    "io_inp": [
      1,
      -3,
      3,
      5,
      -5,
      -2
    ],
    "io_out": [
      4,
      2,
      0,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-2, 5, 4, -1, -4, 1]\noutput : list = [-45, -36, -9, 9, 18, 36]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sort_des([-2, 5, 4, -1, -4, 1]),-1)),3),3)",
    "io_inp": [
      -2,
      5,
      4,
      -1,
      -4,
      1
    ],
    "io_out": [
      -45,
      -36,
      -9,
      9,
      18,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sort_des(input),-1)),3),3)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n([-2, -2],-3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 1, 1, -1]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(take([-1, 1, 1, -1],2)),-3),-1),-2)",
    "io_inp": [
      -1,
      1,
      1,
      -1
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(take(input,2)),-3),-1),-2)"
  },
  {
    "input": "input : list = [1, 0, 3, 3]\noutput : list = [11, 11, 7, 5]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(sub_n([1, 0, 3, 3],-1),2))),3)",
    "io_inp": [
      1,
      0,
      3,
      3
    ],
    "io_out": [
      11,
      11,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(sub_n(input,-1),2))),3)"
  },
  {
    "input": "input : list = [5, -5, -4, 4]\noutput : list = [-2, -3, -11, -12]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n([5, -5, -4, 4],4)))),3)",
    "io_inp": [
      5,
      -5,
      -4,
      4
    ],
    "io_out": [
      -2,
      -3,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n(input,4)))),3)"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, 3])",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [1, -6]",
    "output": "generated_output : list = sub_n([3, -4],2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-6, -7]",
    "output": "generated_output : list = take(sub_n([-4, -5],2),6)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(input,2),6)"
  },
  {
    "input": "input : list = [2, 0, -4, 4, 5, 0]\noutput : list = [-3, -18, -15, 9, -3, -9]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n([2, 0, -4, 4, 5, 0],-3),-4)),1)",
    "io_inp": [
      2,
      0,
      -4,
      4,
      5,
      0
    ],
    "io_out": [
      -3,
      -18,
      -15,
      9,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(input,-3),-4)),1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [25, 20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n([-2, -1],3)),5),-1)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(input,3)),5),-1)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [7, 1]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(sub_n([3, -3],-5))),1),-2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(sub_n(input,-5))),1),-2)"
  },
  {
    "input": "input : list = [-3, 0, -2, -3, 4]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take([-3, 0, -2, -3, 4],2))),6)",
    "io_inp": [
      -3,
      0,
      -2,
      -3,
      4
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(input,2))),6)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-1, 4]",
    "output": "generated_output : list = add_n([-5, 0],4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(sub_n([-1, -3, 1],1))),35))",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(sub_n(input,1))),35))"
  },
  {
    "input": "input : list = [5, 1, 3, 1, -1, 2]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(take([5, 1, 3, 1, -1, 2],1),-2))),1)",
    "io_inp": [
      5,
      1,
      3,
      1,
      -1,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(take(input,1),-2))),1)"
  },
  {
    "input": "input : list = [3, 4, -3, -3, -4, -3]\noutput : list = [-3, 3, 4]",
    "output": "generated_output : list = drop(sort_asc([3, 4, -3, -3, -4, -3]),3)",
    "io_inp": [
      3,
      4,
      -3,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-5, -4, 1, 1, -1]\noutput : list = [9, 13, 13, 3, 1]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(sub_n([-5, -4, 1, 1, -1],-5),3),2)),-5)",
    "io_inp": [
      -5,
      -4,
      1,
      1,
      -1
    ],
    "io_out": [
      9,
      13,
      13,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(sub_n(input,-5),3),2)),-5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sort_asc([-3, 5])))))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [-4, 3, -1]",
    "output": "generated_output : list = sub_n(add_n(take(add_n([-3, 4, 0],1),12),-1),1)",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      -4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(input,1),12),-1),1)"
  },
  {
    "input": "input : list = [4, -5, -4, 1, -4, -4]\noutput : list = [-5, -4, -4, -4, 1, 4]",
    "output": "generated_output : list = add_n(reverse(take(add_n(sort_des([4, -5, -4, 1, -4, -4]),3),20)),-3)",
    "io_inp": [
      4,
      -5,
      -4,
      1,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(sort_des(input),3),20)),-3)"
  },
  {
    "input": "input : list = [-1, 3, 3, -4]\noutput : list = [3, 3, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(add_n([-1, 3, 3, -4],-3),14),-3)))",
    "io_inp": [
      -1,
      3,
      3,
      -4
    ],
    "io_out": [
      3,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(add_n(input,-3),14),-3)))"
  },
  {
    "input": "input : list = [2, -1, 3, -1, -1]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n(add_n(take(reverse(drop([2, -1, 3, -1, -1],3)),26),5),-1)",
    "io_inp": [
      2,
      -1,
      3,
      -1,
      -1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(drop(input,3)),26),5),-1)"
  },
  {
    "input": "input : list = [0, -1, 0, -3, 5, 0]\noutput : list = [-1, 1, 2, 2, 2, 7]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(reverse([0, -1, 0, -3, 5, 0]),2)),36))",
    "io_inp": [
      0,
      -1,
      0,
      -3,
      5,
      0
    ],
    "io_out": [
      -1,
      1,
      2,
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(reverse(input),2)),36))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [9, 2]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(sort_des([-5, 2]),-3),4)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(sort_des(input),-3),4)))"
  },
  {
    "input": "input : list = [2, -5, -1, 5]\noutput : list = [-15, -3, 15]",
    "output": "generated_output : list = sort_asc(mul_n(drop([2, -5, -1, 5],1),3))",
    "io_inp": [
      2,
      -5,
      -1,
      5
    ],
    "io_out": [
      -15,
      -3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,1),3))"
  },
  {
    "input": "input : list = [1, 1, 2, -5]\noutput : list = [0]",
    "output": "generated_output : list = take(sub_n(take(reverse(take([1, 1, 2, -5],1)),10),1),21)",
    "io_inp": [
      1,
      1,
      2,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(take(input,1)),10),1),21)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(take([5, -5, 0],1),-3),1),-2))",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(take(input,1),-3),1),-2))"
  },
  {
    "input": "input : list = [-2, 3, -4, -1, 3, 5]\noutput : list = [-15, -9, -9, 3, 6, 12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n([-2, 3, -4, -1, 3, 5],1))),-3)",
    "io_inp": [
      -2,
      3,
      -4,
      -1,
      3,
      5
    ],
    "io_out": [
      -15,
      -9,
      -9,
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(input,1))),-3)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [1, 10]",
    "output": "generated_output : list = sub_n([-4, 5],-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      1,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 2, 4]\noutput : list = [-2, 2, 4]",
    "output": "generated_output : list = sort_asc([-2, 2, 4])",
    "io_inp": [
      -2,
      2,
      4
    ],
    "io_out": [
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, -3, -3, -3, -2]\noutput : list = [-21, -15, -15, -15, -12, 9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n([5, -5, -3, -3, -3, -2],-2))),3)",
    "io_inp": [
      5,
      -5,
      -3,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -21,
      -15,
      -15,
      -15,
      -12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(input,-2))),3)"
  },
  {
    "input": "input : list = [4, 5, 4, -2, 5]\noutput : list = [-2, 4, 4, 5, 5]",
    "output": "generated_output : list = reverse(take(sort_des(reverse([4, 5, 4, -2, 5])),17))",
    "io_inp": [
      4,
      5,
      4,
      -2,
      5
    ],
    "io_out": [
      -2,
      4,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(input)),17))"
  },
  {
    "input": "input : list = [-5, 1, -1, 1, 2, 1]\noutput : list = [3, 2, 2, 2, 0, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(sub_n([-5, 1, -1, 1, 2, 1],-2),-4),-3)),12)",
    "io_inp": [
      -5,
      1,
      -1,
      1,
      2,
      1
    ],
    "io_out": [
      3,
      2,
      2,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(sub_n(input,-2),-4),-3)),12)"
  },
  {
    "input": "input : list = [4, -1, 4, 2, 2, 0]\noutput : list = [9, 4, 9, 7, 7, 5]",
    "output": "generated_output : list = sub_n([4, -1, 4, 2, 2, 0],-5)",
    "io_inp": [
      4,
      -1,
      4,
      2,
      2,
      0
    ],
    "io_out": [
      9,
      4,
      9,
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, 4, 3, 3, -4]\noutput : list = [16, 12, 12, 8, -16]",
    "output": "generated_output : list = sort_des(mul_n([2, 4, 3, 3, -4],4))",
    "io_inp": [
      2,
      4,
      3,
      3,
      -4
    ],
    "io_out": [
      16,
      12,
      12,
      8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [-4, -4, 3, 0, -3]\noutput : list = [3, 0, -3, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc([-4, -4, 3, 0, -3]))",
    "io_inp": [
      -4,
      -4,
      3,
      0,
      -3
    ],
    "io_out": [
      3,
      0,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc([0, -4])",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1, -2, 3]\noutput : list = [10, 10, -20, 30]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([1, 1, -2, 3],5),1),2)",
    "io_inp": [
      1,
      1,
      -2,
      3
    ],
    "io_out": [
      10,
      10,
      -20,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,5),1),2)"
  },
  {
    "input": "input : list = [5, 2, 0, 1, 0, 1]\noutput : list = [3, 15]",
    "output": "generated_output : list = add_n(drop(mul_n(sort_asc(sort_asc([5, 2, 0, 1, 0, 1])),4),4),-5)",
    "io_inp": [
      5,
      2,
      0,
      1,
      0,
      1
    ],
    "io_out": [
      3,
      15
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sort_asc(sort_asc(input)),4),4),-5)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-3, 13]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(drop([-4, -3, 5],1),2)),-3),13)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -3,
      13
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(drop(input,1),2)),-3),13)"
  },
  {
    "input": "input : list = [-1, -2, 5, 1]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = take(sort_des(sort_des([-1, -2, 5, 1])),3)",
    "io_inp": [
      -1,
      -2,
      5,
      1
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),3)"
  },
  {
    "input": "input : list = [1, -1, 1, -1, 3]\noutput : list = [5, -5, 5, -5, 15]",
    "output": "generated_output : list = mul_n(take(mul_n([1, -1, 1, -1, 3],5),11),1)",
    "io_inp": [
      1,
      -1,
      1,
      -1,
      3
    ],
    "io_out": [
      5,
      -5,
      5,
      -5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,5),11),1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [0, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(reverse([4, -2]),12),2)),-4)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(reverse(input),12),2)),-4)"
  },
  {
    "input": "input : list = [-4, 4, 0, -5]\noutput : list = [45, 20, 0, 40]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(add_n([-4, 4, 0, -5],-4)),-5),2),2)",
    "io_inp": [
      -4,
      4,
      0,
      -5
    ],
    "io_out": [
      45,
      20,
      0,
      40
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(add_n(input,-4)),-5),2),2)"
  },
  {
    "input": "input : list = [-2, 2, 1, -4, -3, 2]\noutput : list = [-5, -4, -3, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_des([-2, 2, 1, -4, -3, 2]),23)),1))",
    "io_inp": [
      -2,
      2,
      1,
      -4,
      -3,
      2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_des(input),23)),1))"
  },
  {
    "input": "input : list = [2, -3, -2]\noutput : list = [-1, -2, 3]",
    "output": "generated_output : list = add_n(reverse([2, -3, -2]),1)",
    "io_inp": [
      2,
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [12, 14, 6]",
    "output": "generated_output : list = take(reverse(add_n(take(add_n([-4, 4, 2],5),8),5)),26)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      12,
      14,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(add_n(input,5),8),5)),26)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-12, -30]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_asc([-4, -1]),2),2)),3)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -12,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_asc(input),2),2)),3)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [6, 12, 18]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(add_n([0, 4, 2],3),-1)),3))",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      6,
      12,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(add_n(input,3),-1)),3))"
  },
  {
    "input": "input : list = [1, -3, 4, -1, 1]\noutput : list = [4, 6, 9]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(drop([1, -3, 4, -1, 1],2)),-3)),2)",
    "io_inp": [
      1,
      -3,
      4,
      -1,
      1
    ],
    "io_out": [
      4,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(drop(input,2)),-3)),2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(sort_asc(take(add_n([-1, -5],4),15)),16)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(input,4),15)),16)"
  },
  {
    "input": "input : list = [4, 1, 2, 1]\noutput : list = [1, 2, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 2, 1])",
    "io_inp": [
      4,
      1,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, -2, -5, -1]\noutput : list = [14, 8, 6, 0, -6]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(mul_n([2, 5, -2, -5, -1],-2)),5),39),-1)",
    "io_inp": [
      2,
      5,
      -2,
      -5,
      -1
    ],
    "io_out": [
      14,
      8,
      6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(mul_n(input,-2)),5),39),-1)"
  },
  {
    "input": "input : list = [5, 0, -2, 1]\noutput : list = [2, 0, 3]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n(drop([5, 0, -2, 1],1),-3),11),2),1)",
    "io_inp": [
      5,
      0,
      -2,
      1
    ],
    "io_out": [
      2,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(drop(input,1),-3),11),2),1)"
  },
  {
    "input": "input : list = [-4, -5, 2]\noutput : list = [-5, -4, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sort_asc([-4, -5, 2])))))",
    "io_inp": [
      -4,
      -5,
      2
    ],
    "io_out": [
      -5,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [8, 3, 1]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(reverse([3, -4, -2]))),5),41)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      8,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(reverse(input))),5),41)"
  },
  {
    "input": "input : list = [2, 4, -3, -1]\noutput : list = [4, -1, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(drop([2, 4, -3, -1],1)))))",
    "io_inp": [
      2,
      4,
      -3,
      -1
    ],
    "io_out": [
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [0, -1, 5, 4, 1, 3]\noutput : list = [0, -1]",
    "output": "generated_output : list = take([0, -1, 5, 4, 1, 3],2)",
    "io_inp": [
      0,
      -1,
      5,
      4,
      1,
      3
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 5, 1, -2]\noutput : list = [5, 1, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([-5, 5, 1, -2])))",
    "io_inp": [
      -5,
      5,
      1,
      -2
    ],
    "io_out": [
      5,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, -2, 1, 4, -2, -3]\noutput : list = [-3, -2, 4, 1, -2, 5]",
    "output": "generated_output : list = take(reverse([5, -2, 1, 4, -2, -3]),23)",
    "io_inp": [
      5,
      -2,
      1,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      4,
      1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(input),23)"
  },
  {
    "input": "input : list = [5, 1, -5, -4, -3]\noutput : list = [5, 1, -3, -4, -5]",
    "output": "generated_output : list = take(sort_des([5, 1, -5, -4, -3]),23)",
    "io_inp": [
      5,
      1,
      -5,
      -4,
      -3
    ],
    "io_out": [
      5,
      1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),23)"
  },
  {
    "input": "input : list = [5, -1, -4, -5, 3]\noutput : list = [-2, -5, -6, 2]",
    "output": "generated_output : list = add_n(drop([5, -1, -4, -5, 3],1),-1)",
    "io_inp": [
      5,
      -1,
      -4,
      -5,
      3
    ],
    "io_out": [
      -2,
      -5,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [-10, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-1, 5, -2],-2))",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      -10,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [8, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(add_n([3, -1],-3)),-2)))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(add_n(input,-3)),-2)))"
  },
  {
    "input": "input : list = [5, -4, 4, -2, 4, -3]\noutput : list = [5]",
    "output": "generated_output : list = drop(sort_asc(sort_asc(sort_asc(reverse([5, -4, 4, -2, 4, -3])))),5)",
    "io_inp": [
      5,
      -4,
      4,
      -2,
      4,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_asc(sort_asc(reverse(input)))),5)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n([-2, -4],2),1)),-5)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(input,2),1)),-5)"
  },
  {
    "input": "input : list = [1, -4, -2, 3, 5]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(drop(sort_asc([1, -4, -2, 3, 5]),4),-1)",
    "io_inp": [
      1,
      -4,
      -2,
      3,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(input),4),-1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, -4]))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-12, -10]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(sub_n([-4, -2],4))),1),3)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -12,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(sub_n(input,4))),1),3)"
  },
  {
    "input": "input : list = [-1, -2, 4, -5]\noutput : list = [-3, 0, 1, 6]",
    "output": "generated_output : list = sort_asc(sub_n([-1, -2, 4, -5],-2))",
    "io_inp": [
      -1,
      -2,
      4,
      -5
    ],
    "io_out": [
      -3,
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-18, -22]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(mul_n([-3, -4],4),-2),4),15))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -18,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(mul_n(input,4),-2),4),15))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [4, -6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([-3, 2]),2))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [5, 2, -3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(reverse([-5, 0, 3])),-1),-1))",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(reverse(input)),-1),-1))"
  },
  {
    "input": "input : list = [0, -3, -1, 1]\noutput : list = [20, 16, 12, 4]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(add_n([0, -3, -1, 1],4)))),4)",
    "io_inp": [
      0,
      -3,
      -1,
      1
    ],
    "io_out": [
      20,
      16,
      12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(add_n(input,4)))),4)"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sub_n([-1, 2, 1],4)))),4)",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sub_n(input,4)))),4)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc([-5, -2])",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [-4, -1, 2]",
    "output": "generated_output : list = sort_asc([-1, 2, -4])",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4, 2, 3, 3, -2]\noutput : list = [6, 5, 5, 4, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(add_n([4, -4, 2, 3, 3, -2],-4),3),-3)))",
    "io_inp": [
      4,
      -4,
      2,
      3,
      3,
      -2
    ],
    "io_out": [
      6,
      5,
      5,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(add_n(input,-4),3),-3)))"
  },
  {
    "input": "input : list = [-5, 3, -3, 3]\noutput : list = [-12, 18]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(drop([-5, 3, -3, 3],2))),-5),-3)",
    "io_inp": [
      -5,
      3,
      -3,
      3
    ],
    "io_out": [
      -12,
      18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(drop(input,2))),-5),-3)"
  },
  {
    "input": "input : list = [-1, -5, 1, 0, 5, -3]\noutput : list = [3, -5, -7, -9, -13, -17]",
    "output": "generated_output : list = sort_des(add_n(reverse(mul_n(sub_n([-1, -5, 1, 0, 5, -3],2),2)),-3))",
    "io_inp": [
      -1,
      -5,
      1,
      0,
      5,
      -3
    ],
    "io_out": [
      3,
      -5,
      -7,
      -9,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(mul_n(sub_n(input,2),2)),-3))"
  },
  {
    "input": "input : list = [-2, 1, -2, 2]\noutput : list = [-7, -8, -11, -11]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(add_n([-2, 1, -2, 2],-5)),2),27),2)",
    "io_inp": [
      -2,
      1,
      -2,
      2
    ],
    "io_out": [
      -7,
      -8,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(add_n(input,-5)),2),27),2)"
  },
  {
    "input": "input : list = [-2, 5, -1, -2, -5]\noutput : list = [8, 1]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(take([-2, 5, -1, -2, -5],2),-1),-2)),17)",
    "io_inp": [
      -2,
      5,
      -1,
      -2,
      -5
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(take(input,2),-1),-2)),17)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-8, 27]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(mul_n([-5, 2],-5)))),2)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -8,
      27
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(mul_n(input,-5)))),2)"
  },
  {
    "input": "input : list = [-3, 4, -2, 5]\noutput : list = [-17, -13, 11, 15]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(reverse([-3, 4, -2, 5]))),-4),3)",
    "io_inp": [
      -3,
      4,
      -2,
      5
    ],
    "io_out": [
      -17,
      -13,
      11,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(reverse(input))),-4),3)"
  },
  {
    "input": "input : list = [5, 0, -3, -3, -1]\noutput : list = [4, 8, 8]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(drop([5, 0, -3, -3, -1],2),-2))),2)",
    "io_inp": [
      5,
      0,
      -3,
      -3,
      -1
    ],
    "io_out": [
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(drop(input,2),-2))),2)"
  },
  {
    "input": "input : list = [2, 4, 3, -3, -1]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = take(take(reverse(add_n(sort_des([2, 4, 3, -3, -1]),3)),31),3)",
    "io_inp": [
      2,
      4,
      3,
      -3,
      -1
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(sort_des(input),3)),31),3)"
  },
  {
    "input": "input : list = [-3, 5, 0, 4]\noutput : list = [0, 3, 7, 8]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(sort_asc([-3, 5, 0, 4]),1),2),1),3)",
    "io_inp": [
      -3,
      5,
      0,
      4
    ],
    "io_out": [
      0,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(sort_asc(input),1),2),1),3)"
  },
  {
    "input": "input : list = [2, 2, 4, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(take([2, 2, 4, -1],2))",
    "io_inp": [
      2,
      2,
      4,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-4, -5, 1, -3, 2]\noutput : list = [-8, -3, -7, -1, -2]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(add_n([-4, -5, 1, -3, 2],2)),1),5),-1)",
    "io_inp": [
      -4,
      -5,
      1,
      -3,
      2
    ],
    "io_out": [
      -8,
      -3,
      -7,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(add_n(input,2)),1),5),-1)"
  },
  {
    "input": "input : list = [-1, -1, 5, 3]\noutput : list = [2, 2, 8, 6]",
    "output": "generated_output : list = add_n(sub_n(take(add_n(add_n([-1, -1, 5, 3],-1),1),8),2),5)",
    "io_inp": [
      -1,
      -1,
      5,
      3
    ],
    "io_out": [
      2,
      2,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(add_n(input,-1),1),8),2),5)"
  },
  {
    "input": "input : list = [-5, -4, 2, 1, 4]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(drop([-5, -4, 2, 1, 4],3),1))),-2)",
    "io_inp": [
      -5,
      -4,
      2,
      1,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(drop(input,3),1))),-2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([2, -2],3)))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,3)))"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [8, 4, 1]",
    "output": "generated_output : list = reverse(add_n([-3, 0, 4],4))",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [0, 1, -4]\noutput : list = [-4, 0, 1]",
    "output": "generated_output : list = take(sort_asc(reverse([0, 1, -4])),5)",
    "io_inp": [
      0,
      1,
      -4
    ],
    "io_out": [
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(input)),5)"
  },
  {
    "input": "input : list = [2, -4, -3, 0]\noutput : list = [6, 8, -4]",
    "output": "generated_output : list = reverse(take(mul_n([2, -4, -3, 0],-2),3))",
    "io_inp": [
      2,
      -4,
      -3,
      0
    ],
    "io_out": [
      6,
      8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,-2),3))"
  },
  {
    "input": "input : list = [5, -1, -5, 3, -3]\noutput : list = [15, 7, -9, -17, -25]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc([5, -1, -5, 3, -3]),4)),-5)",
    "io_inp": [
      5,
      -1,
      -5,
      3,
      -3
    ],
    "io_out": [
      15,
      7,
      -9,
      -17,
      -25
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(input),4)),-5)"
  },
  {
    "input": "input : list = [2, -2, -4, 2, 3, 3]\noutput : list = [-2, 0, 4, 4, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(add_n([2, -2, -4, 2, 3, 3],-3)),30)),5)",
    "io_inp": [
      2,
      -2,
      -4,
      2,
      3,
      3
    ],
    "io_out": [
      -2,
      0,
      4,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(add_n(input,-3)),30)),5)"
  },
  {
    "input": "input : list = [0, -5, 5]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -5, 5],1)",
    "io_inp": [
      0,
      -5,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n([-1, 3],-1),-1))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-1),-1))"
  },
  {
    "input": "input : list = [5, 0, -4]\noutput : list = [-1, 3, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(reverse([5, 0, -4]),8))),3)",
    "io_inp": [
      5,
      0,
      -4
    ],
    "io_out": [
      -1,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(reverse(input),8))),3)"
  },
  {
    "input": "input : list = [-4, -4, -5, -2, -3]\noutput : list = [-12, -11, -11, -10, -9]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n([-4, -4, -5, -2, -3],5)))),-2)",
    "io_inp": [
      -4,
      -4,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -12,
      -11,
      -11,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n(input,5)))),-2)"
  },
  {
    "input": "input : list = [-5, -4, -3]\noutput : list = [15]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(take([-5, -4, -3],1),-3))))",
    "io_inp": [
      -5,
      -4,
      -3
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(take(input,1),-3))))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(reverse([-4, -5])),4)),5)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(reverse(input)),4)),5)"
  },
  {
    "input": "input : list = [-3, 0, -1, 5, 3, 4]\noutput : list = [-6, 0, -2, 10, 6, 8]",
    "output": "generated_output : list = mul_n([-3, 0, -1, 5, 3, 4],2)",
    "io_inp": [
      -3,
      0,
      -1,
      5,
      3,
      4
    ],
    "io_out": [
      -6,
      0,
      -2,
      10,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, 4, -1, -4, -2]\noutput : list = [3, -2, -3, -4, -5]",
    "output": "generated_output : list = take(add_n(add_n(take(sort_des([-3, 4, -1, -4, -2]),12),-3),2),45)",
    "io_inp": [
      -3,
      4,
      -1,
      -4,
      -2
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(sort_des(input),12),-3),2),45)"
  },
  {
    "input": "input : list = [-4, -2, -3, -1]\noutput : list = [-12, -4]",
    "output": "generated_output : list = mul_n(drop([-4, -2, -3, -1],2),4)",
    "io_inp": [
      -4,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),4)"
  },
  {
    "input": "input : list = [-2, 3, 0, -3]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(drop([-2, 3, 0, -3],1),20))))",
    "io_inp": [
      -2,
      3,
      0,
      -3
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(drop(input,1),20))))"
  },
  {
    "input": "input : list = [-3, 0, 0, 4, 0, 0]\noutput : list = [5, 1, 1, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(take([-3, 0, 0, 4, 0, 0],4),4)),3))",
    "io_inp": [
      -3,
      0,
      0,
      4,
      0,
      0
    ],
    "io_out": [
      5,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(take(input,4),4)),3))"
  },
  {
    "input": "input : list = [1, -4, -1, 2, -4]\noutput : list = [-4, 2, -1, -4, 1]",
    "output": "generated_output : list = reverse([1, -4, -1, 2, -4])",
    "io_inp": [
      1,
      -4,
      -1,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -1,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, 2, 0, 5, -3]\noutput : list = [-12, -9]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(take([-3, 0, 2, 0, 5, -3],2),-4),5)))",
    "io_inp": [
      -3,
      0,
      2,
      0,
      5,
      -3
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(take(input,2),-4),5)))"
  },
  {
    "input": "input : list = [5, 1, 4, 3, -5]\noutput : list = [-30, 10]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(drop([5, 1, 4, 3, -5],3),10),-1),5))",
    "io_inp": [
      5,
      1,
      4,
      3,
      -5
    ],
    "io_out": [
      -30,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(drop(input,3),10),-1),5))"
  },
  {
    "input": "input : list = [-1, 3, 5, 5, -3]\noutput : list = [-15, -5, 15, 25, 25]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(mul_n([-1, 3, 5, 5, -3],5)))))",
    "io_inp": [
      -1,
      3,
      5,
      5,
      -3
    ],
    "io_out": [
      -15,
      -5,
      15,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-4, 0, 1]\noutput : list = [-11, -8]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(drop([-4, 0, 1],1),7),5),3),-4)",
    "io_inp": [
      -4,
      0,
      1
    ],
    "io_out": [
      -11,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(drop(input,1),7),5),3),-4)"
  },
  {
    "input": "input : list = [5, 4, -4, 1, -4]\noutput : list = [-16, -12, 0, 20, 20]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(sort_des([5, 4, -4, 1, -4]),2),-2)),-2)",
    "io_inp": [
      5,
      4,
      -4,
      1,
      -4
    ],
    "io_out": [
      -16,
      -12,
      0,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(sort_des(input),2),-2)),-2)"
  },
  {
    "input": "input : list = [4, -4, -5, -3, -4]\noutput : list = [-29, -23, -35]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(drop([4, -4, -5, -3, -4],2),-3),-2)),5)",
    "io_inp": [
      4,
      -4,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -29,
      -23,
      -35
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(drop(input,2),-3),-2)),5)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [4, -14]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(mul_n([5, -1],3),4)),-1),-5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      4,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(mul_n(input,3),4)),-1),-5)"
  },
  {
    "input": "input : list = [0, 2, 2, -2, 4, 3]\noutput : list = [2, 4, 6, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_asc([0, 2, 2, -2, 4, 3]),20)),-4))",
    "io_inp": [
      0,
      2,
      2,
      -2,
      4,
      3
    ],
    "io_out": [
      2,
      4,
      6,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_asc(input),20)),-4))"
  },
  {
    "input": "input : list = [4, -2, -2, 4, 1]\noutput : list = [8, 8, 2, -4, -4]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(sort_asc([4, -2, -2, 4, 1]))),26),2)",
    "io_inp": [
      4,
      -2,
      -2,
      4,
      1
    ],
    "io_out": [
      8,
      8,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(sort_asc(input))),26),2)"
  },
  {
    "input": "input : list = [5, -1, -1, 0, 4]\noutput : list = [3, 2, -2, -3, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc([5, -1, -1, 0, 4])))),-2)",
    "io_inp": [
      5,
      -1,
      -1,
      0,
      4
    ],
    "io_out": [
      3,
      2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [-25, 25]",
    "output": "generated_output : list = mul_n(drop([0, 5, -5],1),-5)",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      -25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-4, -1, 5, -3]\noutput : list = [-15, 3, 9, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-4, -1, 5, -3],-3)))",
    "io_inp": [
      -4,
      -1,
      5,
      -3
    ],
    "io_out": [
      -15,
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-15, -35]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(sort_asc([-1, -5]),13),-2),5))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -15,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(sort_asc(input),13),-2),5))"
  },
  {
    "input": "input : list = [-1, -3, -1, 2]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(drop([-1, -3, -1, 2],2),4),-5)))",
    "io_inp": [
      -1,
      -3,
      -1,
      2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(drop(input,2),4),-5)))"
  },
  {
    "input": "input : list = [4, 1, 3, -4, 1, -4]\noutput : list = [-16, -1, -11, 24, -1, 24]",
    "output": "generated_output : list = sub_n(mul_n([4, 1, 3, -4, 1, -4],-5),-4)",
    "io_inp": [
      4,
      1,
      3,
      -4,
      1,
      -4
    ],
    "io_out": [
      -16,
      -1,
      -11,
      24,
      -1,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-5),-4)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-8, -3]",
    "output": "generated_output : list = reverse(sub_n([1, -4],4))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-5, 0, 4, -1]\noutput : list = [9, 5, 4, 0]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(reverse([-5, 0, 4, -1])),14),-3),-2)",
    "io_inp": [
      -5,
      0,
      4,
      -1
    ],
    "io_out": [
      9,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(reverse(input)),14),-3),-2)"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = take(sort_des(take(sort_des(drop([-1, 1, 3],1)),4)),8)",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(drop(input,1)),4)),8)"
  },
  {
    "input": "input : list = [-2, -3, 2, 3, -2, 0]\noutput : list = [0, 1, 1, 3, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-2, -3, 2, 3, -2, 0],-3)))",
    "io_inp": [
      -2,
      -3,
      2,
      3,
      -2,
      0
    ],
    "io_out": [
      0,
      1,
      1,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [4, 2, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(reverse([4, 2, -1]))),14))",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(reverse(input))),14))"
  },
  {
    "input": "input : list = [-4, -1, 4, -3, -1, -5]\noutput : list = [-23, 2, 12, 22]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(drop([-4, -1, 4, -3, -1, -5],2),-5),-3)))",
    "io_inp": [
      -4,
      -1,
      4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -23,
      2,
      12,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(drop(input,2),-5),-3)))"
  },
  {
    "input": "input : list = [-3, 4, 4]\noutput : list = [-3, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([-3, 4, 4])))",
    "io_inp": [
      -3,
      4,
      4
    ],
    "io_out": [
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, -1, -4, -3, -4]\noutput : list = [-4, -4, -3, -1, 4]",
    "output": "generated_output : list = sort_asc([4, -1, -4, -3, -4])",
    "io_inp": [
      4,
      -1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, 4]\noutput : list = [4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([4, 5, 4]))",
    "io_inp": [
      4,
      5,
      4
    ],
    "io_out": [
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = drop([-5, 4, 4],1)",
    "io_inp": [
      -5,
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -1, 2]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(sub_n([-2, -1, 2],-1),-1),1),23))",
    "io_inp": [
      -2,
      -1,
      2
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(sub_n(input,-1),-1),1),23))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(reverse([-2, -1]))),29))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(reverse(input))),29))"
  },
  {
    "input": "input : list = [1, 3, 0, 3]\noutput : list = [-4, -5]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sub_n([1, 3, 0, 3],-4)),6),2),-1)",
    "io_inp": [
      1,
      3,
      0,
      3
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sub_n(input,-4)),6),2),-1)"
  },
  {
    "input": "input : list = [3, 0, 0, 4, -4, -2]\noutput : list = [-2, 0, 2, 2, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(sort_asc([3, 0, 0, 4, -4, -2]),18))),2)",
    "io_inp": [
      3,
      0,
      0,
      4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      0,
      2,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(sort_asc(input),18))),2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sub_n(sub_n(take(add_n(sort_asc([-4, -3]),2),12),-1),4)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(add_n(sort_asc(input),2),12),-1),4)"
  },
  {
    "input": "input : list = [1, -4, -3, -3, 4]\noutput : list = [-4, -3, -3, 1, 4]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(sort_asc([1, -4, -3, -3, 4])),11),1))",
    "io_inp": [
      1,
      -4,
      -3,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(sort_asc(input)),11),1))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, 36]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(reverse([-4, 4])),-1),-4),4)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(reverse(input)),-1),-4),4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = mul_n(take(reverse(take(reverse([-3, -5]),14)),18),1)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(reverse(input),14)),18),1)"
  },
  {
    "input": "input : list = [0, -5, 4, -4]\noutput : list = [-14, 6, 26, 31]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(mul_n([0, -5, 4, -4],-5),5)),-1))",
    "io_inp": [
      0,
      -5,
      4,
      -4
    ],
    "io_out": [
      -14,
      6,
      26,
      31
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(mul_n(input,-5),5)),-1))"
  },
  {
    "input": "input : list = [3, -3, -5, 3]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(take([3, -3, -5, 3],2),2))))",
    "io_inp": [
      3,
      -3,
      -5,
      3
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(take(input,2),2))))"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [4, 4, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_des([-2, -2, 2]),-2))",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [-5, 3, 5, 1, 2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(drop([-5, 3, 5, 1, 2],3),-2))",
    "io_inp": [
      -5,
      3,
      5,
      1,
      2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,3),-2))"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [-10, -9, -7]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sub_n([1, 0, 3],4),5),1)),1)",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      -10,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(sub_n(input,4),5),1)),1)"
  },
  {
    "input": "input : list = [-5, 1, 2, -4]\noutput : list = [-1, 5, 4, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse([-5, 1, 2, -4]),2),-1)",
    "io_inp": [
      -5,
      1,
      2,
      -4
    ],
    "io_out": [
      -1,
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),2),-1)"
  },
  {
    "input": "input : list = [1, 0, 2, 0, 3, -5]\noutput : list = [-4, 1, 1, 2, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(sub_n([1, 0, 2, 0, 3, -5],-1),-4))),4)",
    "io_inp": [
      1,
      0,
      2,
      0,
      3,
      -5
    ],
    "io_out": [
      -4,
      1,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(sub_n(input,-1),-4))),4)"
  },
  {
    "input": "input : list = [-3, -1, -2, -4]\noutput : list = [-3, -1, -2]",
    "output": "generated_output : list = reverse(drop(reverse(take(mul_n([-3, -1, -2, -4],1),18)),1))",
    "io_inp": [
      -3,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(reverse(take(mul_n(input,1),18)),1))"
  },
  {
    "input": "input : list = [0, -1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(drop([0, -1, -1],1)))),1)",
    "io_inp": [
      0,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [-5, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([2, -5, 5]))",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [12, 6, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(reverse([-4, -2, 4]))),-3))",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      12,
      6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [1, -3, -6]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse([-2, -5, 2]),-1)))",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(input),-1)))"
  },
  {
    "input": "input : list = [3, 3, 0, 3, -3, 1]\noutput : list = [63, 23, -57]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(drop([3, 3, 0, 3, -3, 1],3),5),4)),3)",
    "io_inp": [
      3,
      3,
      0,
      3,
      -3,
      1
    ],
    "io_out": [
      63,
      23,
      -57
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(drop(input,3),5),4)),3)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sort_des([5, -2]))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -2, 3, -3]\noutput : list = [-23, -15, -11, 9]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(mul_n(sort_asc([-5, -2, 3, -3]),4),-3)))",
    "io_inp": [
      -5,
      -2,
      3,
      -3
    ],
    "io_out": [
      -23,
      -15,
      -11,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(mul_n(sort_asc(input),4),-3)))"
  },
  {
    "input": "input : list = [-5, 4, 2, 5, 1]\noutput : list = [-5, 25, 30, 40, 45]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse([-5, 4, 2, 5, 1])),-4),5)",
    "io_inp": [
      -5,
      4,
      2,
      5,
      1
    ],
    "io_out": [
      -5,
      25,
      30,
      40,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(input)),-4),5)"
  },
  {
    "input": "input : list = [4, 0, -1, 1, 4]\noutput : list = [-20, -20, -5, 0, 5]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([4, 0, -1, 1, 4])),-5)",
    "io_inp": [
      4,
      0,
      -1,
      1,
      4
    ],
    "io_out": [
      -20,
      -20,
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [-5, 2, -5, 3, 2, 3]\noutput : list = [20, -8, 20, -12]",
    "output": "generated_output : list = mul_n(take([-5, 2, -5, 3, 2, 3],4),-4)",
    "io_inp": [
      -5,
      2,
      -5,
      3,
      2,
      3
    ],
    "io_out": [
      20,
      -8,
      20,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),-4)"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [-2, -1, -1]",
    "output": "generated_output : list = mul_n([2, 1, 1],-1)",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -3, -1, -1, 2]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(take([-3, -3, -1, -1, 2],2),1),-4)))",
    "io_inp": [
      -3,
      -3,
      -1,
      -1,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(take(input,2),1),-4)))"
  },
  {
    "input": "input : list = [2, 0, -1, -5, 1, 0]\noutput : list = [-5, 1, 0]",
    "output": "generated_output : list = drop([2, 0, -1, -5, 1, 0],3)",
    "io_inp": [
      2,
      0,
      -1,
      -5,
      1,
      0
    ],
    "io_out": [
      -5,
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, 5, -2, 5, 0, 2]\noutput : list = [-10, -10]",
    "output": "generated_output : list = drop(sub_n(sort_des(sort_asc(mul_n([-4, 5, -2, 5, 0, 2],-3))),-5),4)",
    "io_inp": [
      -4,
      5,
      -2,
      5,
      0,
      2
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = drop(sub_n(sort_des(sort_asc(mul_n(input,-3))),-5),4)"
  },
  {
    "input": "input : list = [-4, -5, -2, -2, -1]\noutput : list = [20, 25]",
    "output": "generated_output : list = mul_n(take([-4, -5, -2, -2, -1],2),-5)",
    "io_inp": [
      -4,
      -5,
      -2,
      -2,
      -1
    ],
    "io_out": [
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-5)"
  },
  {
    "input": "input : list = [-3, -3, 4, 4, 0, 2]\noutput : list = [2, 2, 0, -2, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(add_n([-3, -3, 4, 4, 0, 2],5),-5)),2))",
    "io_inp": [
      -3,
      -3,
      4,
      4,
      0,
      2
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(add_n(input,5),-5)),2))"
  },
  {
    "input": "input : list = [-4, 0, -3, -4, 2]\noutput : list = [-2, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(take([-4, 0, -3, -4, 2],3),-2))",
    "io_inp": [
      -4,
      0,
      -3,
      -4,
      2
    ],
    "io_out": [
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(input,3),-2))"
  },
  {
    "input": "input : list = [4, 4, -4, 2, 0]\noutput : list = [-4, 0, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(add_n([4, 4, -4, 2, 0],5),22),5),5))",
    "io_inp": [
      4,
      4,
      -4,
      2,
      0
    ],
    "io_out": [
      -4,
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(add_n(input,5),22),5),5))"
  },
  {
    "input": "input : list = [-5, 1, -3, -2, -1, 4]\noutput : list = [1, -3, -2, -1, 4]",
    "output": "generated_output : list = drop([-5, 1, -3, -2, -1, 4],1)",
    "io_inp": [
      -5,
      1,
      -3,
      -2,
      -1,
      4
    ],
    "io_out": [
      1,
      -3,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -4, -3]\noutput : list = [8, 0, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sub_n([5, -4, -3],5))),-4),-4)",
    "io_inp": [
      5,
      -4,
      -3
    ],
    "io_out": [
      8,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sub_n(input,5))),-4),-4)"
  },
  {
    "input": "input : list = [-5, 5, -1, 3, -2]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_asc([-5, 5, -1, 3, -2]),3)),18),3)",
    "io_inp": [
      -5,
      5,
      -1,
      3,
      -2
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_asc(input),3)),18),3)"
  },
  {
    "input": "input : list = [5, 1, -1, -2, 1, 1]\noutput : list = [12, 8, 6, 5, 8, 8]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(sub_n([5, 1, -1, -2, 1, 1],-5),5),-3),25),4)",
    "io_inp": [
      5,
      1,
      -1,
      -2,
      1,
      1
    ],
    "io_out": [
      12,
      8,
      6,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(sub_n(input,-5),5),-3),25),4)"
  },
  {
    "input": "input : list = [2, 1, -5, 1, -2]\noutput : list = [-3, 0, -6, 0, 1]",
    "output": "generated_output : list = sub_n(reverse([2, 1, -5, 1, -2]),1)",
    "io_inp": [
      2,
      1,
      -5,
      1,
      -2
    ],
    "io_out": [
      -3,
      0,
      -6,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-3, -5, -3, 3]\noutput : list = [5, 9, 5, -7]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse(mul_n([-3, -5, -3, 3],-2))),-1),1)",
    "io_inp": [
      -3,
      -5,
      -3,
      3
    ],
    "io_out": [
      5,
      9,
      5,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(mul_n(input,-2))),-1),1)"
  },
  {
    "input": "input : list = [2, -5, 1, 0, 1, 3]\noutput : list = [48, 80]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(drop([2, -5, 1, 0, 1, 3],4),8),2),4),4)",
    "io_inp": [
      2,
      -5,
      1,
      0,
      1,
      3
    ],
    "io_out": [
      48,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(drop(input,4),8),2),4),4)"
  },
  {
    "input": "input : list = [-5, 1, 3, 0]\noutput : list = [-9, -4, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n([-5, 1, 3, 0],-4))",
    "io_inp": [
      -5,
      1,
      3,
      0
    ],
    "io_out": [
      -9,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [0, -1, -2, -3, 4]\noutput : list = [-2, -3, 4]",
    "output": "generated_output : list = take(drop([0, -1, -2, -3, 4],2),17)",
    "io_inp": [
      0,
      -1,
      -2,
      -3,
      4
    ],
    "io_out": [
      -2,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(drop(input,2),17)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [16, -24]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(mul_n([-4, 4],5))),4))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      16,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(mul_n(input,5))),4))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(add_n([-5, -1],-5)),-3)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(add_n(input,-5)),-3)))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(take([-3, 0, -5],1)),4),3),-3)",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(take(input,1)),4),3),-3)"
  },
  {
    "input": "input : list = [4, 5, -2, -5, 5, 2]\noutput : list = [-6, -3, 1, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sort_des([4, 5, -2, -5, 5, 2]))),1))",
    "io_inp": [
      4,
      5,
      -2,
      -5,
      5,
      2
    ],
    "io_out": [
      -6,
      -3,
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-2, -4, -1, -5, 1]\noutput : list = [-8, -10, -7, -11, -5]",
    "output": "generated_output : list = sub_n(add_n([-2, -4, -1, -5, 1],-1),5)",
    "io_inp": [
      -2,
      -4,
      -1,
      -5,
      1
    ],
    "io_out": [
      -8,
      -10,
      -7,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [-3, 4, -2, 3]\noutput : list = [4, 3, -2, -3]",
    "output": "generated_output : list = sort_des([-3, 4, -2, 3])",
    "io_inp": [
      -3,
      4,
      -2,
      3
    ],
    "io_out": [
      4,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [1, 10]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_asc([-4, 5])),-5)),40)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      1,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_asc(input)),-5)),40)"
  },
  {
    "input": "input : list = [-3, -5, 4]\noutput : list = [36]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take([-3, -5, 4],1),-4))),3)",
    "io_inp": [
      -3,
      -5,
      4
    ],
    "io_out": [
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take(input,1),-4))),3)"
  },
  {
    "input": "input : list = [-5, 0, 1, -2, -5]\noutput : list = [8, 7, 5, 2, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(reverse([-5, 0, 1, -2, -5])),2)),-5)",
    "io_inp": [
      -5,
      0,
      1,
      -2,
      -5
    ],
    "io_out": [
      8,
      7,
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(reverse(input)),2)),-5)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [-24, -40, -32]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n(mul_n([2, 4, 0],-1),5)),4),-4)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      -24,
      -40,
      -32
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(mul_n(input,-1),5)),4),-4)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(reverse(add_n(take(sort_asc([-1, -2]),2),5)),36)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sort_asc(input),2),5)),36)"
  },
  {
    "input": "input : list = [5, 5, 0]\noutput : list = [4, 4, -1]",
    "output": "generated_output : list = sub_n([5, 5, 0],1)",
    "io_inp": [
      5,
      5,
      0
    ],
    "io_out": [
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(take([4, -2, -2],1),1),5)))",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(take(input,1),1),5)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [7, 6]",
    "output": "generated_output : list = sub_n(sort_des([3, 4]),-3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-3, -1, 4, 4]\noutput : list = [0, 2, 7, 7]",
    "output": "generated_output : list = add_n(sub_n(add_n([-3, -1, 4, 4],2),4),5)",
    "io_inp": [
      -3,
      -1,
      4,
      4
    ],
    "io_out": [
      0,
      2,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,2),4),5)"
  },
  {
    "input": "input : list = [2, 5, 3, 1, 5]\noutput : list = [-6, -2, 2, 2]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(drop([2, 5, 3, 1, 5],1)),-4),2))",
    "io_inp": [
      2,
      5,
      3,
      1,
      5
    ],
    "io_out": [
      -6,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(drop(input,1)),-4),2))"
  },
  {
    "input": "input : list = [3, 4, -5, 4, -2, 2]\noutput : list = [-28]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(take([3, 4, -5, 4, -2, 2],1)),-4)),-4)",
    "io_inp": [
      3,
      4,
      -5,
      4,
      -2,
      2
    ],
    "io_out": [
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(take(input,1)),-4)),-4)"
  },
  {
    "input": "input : list = [0, 3, -2, 0, -2, 0]\noutput : list = [0, 15, -10, 0, -10, 0]",
    "output": "generated_output : list = mul_n([0, 3, -2, 0, -2, 0],5)",
    "io_inp": [
      0,
      3,
      -2,
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      15,
      -10,
      0,
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -3, -2, 5]\noutput : list = [-7, -7, -6, 1]",
    "output": "generated_output : list = sub_n([-3, -3, -2, 5],4)",
    "io_inp": [
      -3,
      -3,
      -2,
      5
    ],
    "io_out": [
      -7,
      -7,
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [-8, -4]",
    "output": "generated_output : list = reverse(take(add_n(mul_n(drop([-2, 2, 3],1),-4),4),9))",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(drop(input,1),-4),4),9))"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [-3, 1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(drop([1, 0, 4],1)),3)))",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(drop(input,1)),3)))"
  },
  {
    "input": "input : list = [2, 0, 5, -2, 4, -2]\noutput : list = [-12, -12, -10, -8, -6, -5]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(sort_des([2, 0, 5, -2, 4, -2])),5),45),5)",
    "io_inp": [
      2,
      0,
      5,
      -2,
      4,
      -2
    ],
    "io_out": [
      -12,
      -12,
      -10,
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(sort_des(input)),5),45),5)"
  },
  {
    "input": "input : list = [-1, 1, 1, -4]\noutput : list = [6, 6, 4, 1]",
    "output": "generated_output : list = sort_des(sub_n([-1, 1, 1, -4],-5))",
    "io_inp": [
      -1,
      1,
      1,
      -4
    ],
    "io_out": [
      6,
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [4, 5, 4, -3, 0]\noutput : list = [7, 1, -7, -7, -9]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_asc([4, 5, 4, -3, 0]),-2))),-1)",
    "io_inp": [
      4,
      5,
      4,
      -3,
      0
    ],
    "io_out": [
      7,
      1,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_asc(input),-2))),-1)"
  },
  {
    "input": "input : list = [-1, -4, -5, -5, 5, 1]\noutput : list = [2, -10, 20, 20, 17, 8]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(add_n([-1, -4, -5, -5, 5, 1],-3),1),-3)),-1)",
    "io_inp": [
      -1,
      -4,
      -5,
      -5,
      5,
      1
    ],
    "io_out": [
      2,
      -10,
      20,
      20,
      17,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(add_n(input,-3),1),-3)),-1)"
  },
  {
    "input": "input : list = [1, 1, 5, -5]\noutput : list = [3, -1, -7]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(drop([1, 1, 5, -5],1)),7),2))",
    "io_inp": [
      1,
      1,
      5,
      -5
    ],
    "io_out": [
      3,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(drop(input,1)),7),2))"
  },
  {
    "input": "input : list = [5, 3, 5]\noutput : list = [7, 9, 9]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc([5, 3, 5]),1),3),5)",
    "io_inp": [
      5,
      3,
      5
    ],
    "io_out": [
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(input),1),3),5)"
  },
  {
    "input": "input : list = [-5, -1, 4, 4]\noutput : list = [-2, 3, 3]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(drop([-5, -1, 4, 4],1)),24),1))",
    "io_inp": [
      -5,
      -1,
      4,
      4
    ],
    "io_out": [
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(drop(input,1)),24),1))"
  },
  {
    "input": "input : list = [2, 2, -2]\noutput : list = [2, -2, -2]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n([2, 2, -2],-1))),3)",
    "io_inp": [
      2,
      2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(input,-1))),3)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(sub_n([2, 5],2),1),11)),5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(sub_n(input,2),1),11)),5)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [14, 6]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(reverse([0, 4]),2),5)),1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      14,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(reverse(input),2),5)),1)"
  },
  {
    "input": "input : list = [2, -3, -3, -4, -4, 0]\noutput : list = [-16, -16, -21, -21]",
    "output": "generated_output : list = sub_n(add_n(drop(mul_n(sort_des([2, -3, -3, -4, -4, 0]),5),2),1),2)",
    "io_inp": [
      2,
      -3,
      -3,
      -4,
      -4,
      0
    ],
    "io_out": [
      -16,
      -16,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(mul_n(sort_des(input),5),2),1),2)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-60, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(mul_n([5, 0],4))),-3))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -60,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(mul_n(input,4))),-3))"
  },
  {
    "input": "input : list = [5, 3, 3, 0]\noutput : list = [-9, -6]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(drop([5, 3, 3, 0],2)),5),35),4)",
    "io_inp": [
      5,
      3,
      3,
      0
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(drop(input,2)),5),35),4)"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = drop([-1, -4, -2],1)",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -1, -2, 3, 2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(drop([-3, -1, -2, 3, 2, 0],4))",
    "io_inp": [
      -3,
      -1,
      -2,
      3,
      2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,4))"
  },
  {
    "input": "input : list = [-3, 0, -2, 0, 4, 5]\noutput : list = [-5, -4, 0, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 0, -2, 0, 4, 5],-1))",
    "io_inp": [
      -3,
      0,
      -2,
      0,
      4,
      5
    ],
    "io_out": [
      -5,
      -4,
      0,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [5, -4, -1, -2, 0]\noutput : list = [3, -5, -1, -13, 23]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(mul_n([5, -4, -1, -2, 0],-4),3)),40),-1)",
    "io_inp": [
      5,
      -4,
      -1,
      -2,
      0
    ],
    "io_out": [
      3,
      -5,
      -1,
      -13,
      23
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(mul_n(input,-4),3)),40),-1)"
  },
  {
    "input": "input : list = [2, 1, 2, 4, -2]\noutput : list = [4, 2, 2, 1, -2]",
    "output": "generated_output : list = sort_des([2, 1, 2, 4, -2])",
    "io_inp": [
      2,
      1,
      2,
      4,
      -2
    ],
    "io_out": [
      4,
      2,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3, 1, -2]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = drop([-4, 3, 1, -2],1)",
    "io_inp": [
      -4,
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -2, 4, 2, 1, 2]\noutput : list = [0, -2, -2, -3, -5, -6]",
    "output": "generated_output : list = add_n(sort_des([-1, -2, 4, 2, 1, 2]),-4)",
    "io_inp": [
      -1,
      -2,
      4,
      2,
      1,
      2
    ],
    "io_out": [
      0,
      -2,
      -2,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-5, 0, 4, -2, 1]\noutput : list = [-3, 0, 1, 3, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-5, 0, 4, -2, 1]),-1),-1)",
    "io_inp": [
      -5,
      0,
      4,
      -2,
      1
    ],
    "io_out": [
      -3,
      0,
      1,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-1),-1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [9, 4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(reverse([-3, 2]),10),-4)),-3)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(reverse(input),10),-4)),-3)"
  },
  {
    "input": "input : list = [3, -5, 1, 2, 0, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(take([3, -5, 1, 2, 0, 1],3)))),2)",
    "io_inp": [
      3,
      -5,
      1,
      2,
      0,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(take(input,3)))),2)"
  },
  {
    "input": "input : list = [3, 4, 3, 2]\noutput : list = [-3, -2, -3, -4]",
    "output": "generated_output : list = sub_n(sub_n([3, 4, 3, 2],2),4)",
    "io_inp": [
      3,
      4,
      3,
      2
    ],
    "io_out": [
      -3,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),4)"
  },
  {
    "input": "input : list = [-2, -3, -2, -5]\noutput : list = [-196, -292, -196, -484]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(mul_n([-2, -3, -2, -5],-4),-4),3),-2),2)",
    "io_inp": [
      -2,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -196,
      -292,
      -196,
      -484
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(mul_n(input,-4),-4),3),-2),2)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(reverse([-3, 1]),9)),10))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(reverse(input),9)),10))"
  },
  {
    "input": "input : list = [5, -4, 5, -3, 0]\noutput : list = [0, -9, 15, -12, 15]",
    "output": "generated_output : list = take(mul_n(reverse([5, -4, 5, -3, 0]),3),12)",
    "io_inp": [
      5,
      -4,
      5,
      -3,
      0
    ],
    "io_out": [
      0,
      -9,
      15,
      -12,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),3),12)"
  },
  {
    "input": "input : list = [5, 4, 3, -5]\noutput : list = [-11, -9, -7, 9]",
    "output": "generated_output : list = sub_n(add_n(mul_n([5, 4, 3, -5],-2),-2),-1)",
    "io_inp": [
      5,
      4,
      3,
      -5
    ],
    "io_out": [
      -11,
      -9,
      -7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-2),-2),-1)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [9, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(mul_n([5, 5],1))),-4))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(mul_n(input,1))),-4))"
  },
  {
    "input": "input : list = [0, 4, 3, 1, 3]\noutput : list = [-48, -40, -40, -24, -16]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(reverse([0, 4, 3, 1, 3]),-2),4),4))",
    "io_inp": [
      0,
      4,
      3,
      1,
      3
    ],
    "io_out": [
      -48,
      -40,
      -40,
      -24,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(reverse(input),-2),4),4))"
  },
  {
    "input": "input : list = [-5, 0, 4, 1, 0]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(drop(reverse(sort_des(sort_asc([-5, 0, 4, 1, 0]))),4))",
    "io_inp": [
      -5,
      0,
      4,
      1,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(sort_des(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [8, 2]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(add_n([-2, 4],4))),19))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(add_n(input,4))),19))"
  },
  {
    "input": "input : list = [5, 4, 4, -1, 5]\noutput : list = [1, 1, 0, 0, -5]",
    "output": "generated_output : list = add_n(sort_des(take(take(reverse([5, 4, 4, -1, 5]),8),11)),-4)",
    "io_inp": [
      5,
      4,
      4,
      -1,
      5
    ],
    "io_out": [
      1,
      1,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(reverse(input),8),11)),-4)"
  },
  {
    "input": "input : list = [5, -1, 1, 3, -4, 0]\noutput : list = [-5, 1, -1, -3, 4, 0]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(reverse([5, -1, 1, 3, -4, 0]),-5),-5),-1))",
    "io_inp": [
      5,
      -1,
      1,
      3,
      -4,
      0
    ],
    "io_out": [
      -5,
      1,
      -1,
      -3,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(reverse(input),-5),-5),-1))"
  },
  {
    "input": "input : list = [1, -1, 4, -5, 3, 3]\noutput : list = [2, -2]",
    "output": "generated_output : list = mul_n(take([1, -1, 4, -5, 3, 3],2),2)",
    "io_inp": [
      1,
      -1,
      4,
      -5,
      3,
      3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),2)"
  },
  {
    "input": "input : list = [0, -3, 4, -1]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(take([0, -3, 4, -1],1),11),-5),2))",
    "io_inp": [
      0,
      -3,
      4,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(take(input,1),11),-5),2))"
  },
  {
    "input": "input : list = [1, -3, 3, -2, -1, 0]\noutput : list = [-10, -20, -25, -30, -35, -40]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(reverse([1, -3, 3, -2, -1, 0]),5))),5)",
    "io_inp": [
      1,
      -3,
      3,
      -2,
      -1,
      0
    ],
    "io_out": [
      -10,
      -20,
      -25,
      -30,
      -35,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(reverse(input),5))),5)"
  },
  {
    "input": "input : list = [4, 1, 0, 4]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = sub_n(take(sort_des(take(sort_asc([4, 1, 0, 4]),3)),36),5)",
    "io_inp": [
      4,
      1,
      0,
      4
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(sort_asc(input),3)),36),5)"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [0, -8, 1]",
    "output": "generated_output : list = reverse(take(take(sub_n([4, -5, 3],3),8),3))",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      0,
      -8,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(input,3),8),3))"
  },
  {
    "input": "input : list = [-1, 2, -3, -4]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(take([-1, 2, -3, -4],1)),22)),-3)",
    "io_inp": [
      -1,
      2,
      -3,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(take(input,1)),22)),-3)"
  },
  {
    "input": "input : list = [5, -2, -3, -5, -1, 2]\noutput : list = [0, -6, -9, -12, -21, -30]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(sort_des([5, -2, -3, -5, -1, 2]),-5),11)),-3)",
    "io_inp": [
      5,
      -2,
      -3,
      -5,
      -1,
      2
    ],
    "io_out": [
      0,
      -6,
      -9,
      -12,
      -21,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(sort_des(input),-5),11)),-3)"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [-15, -10, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-3, -2, 0],5)))",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      -15,
      -10,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,5)))"
  },
  {
    "input": "input : list = [0, -4, 0, -4, 0, 5]\noutput : list = [12, 7, 7, 7, 3, 3]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(reverse([0, -4, 0, -4, 0, 5]),-4),-2),5))",
    "io_inp": [
      0,
      -4,
      0,
      -4,
      0,
      5
    ],
    "io_out": [
      12,
      7,
      7,
      7,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(reverse(input),-4),-2),5))"
  },
  {
    "input": "input : list = [-4, 3, -5, -3, -2]\noutput : list = [3, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse([-4, 3, -5, -3, -2]),9)))",
    "io_inp": [
      -4,
      3,
      -5,
      -3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(input),9)))"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sub_n(drop([2, -5, 2],1),-4)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [10, 0]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sort_asc([5, -5])),5),31))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sort_asc(input)),5),31))"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [8, 3, -12]",
    "output": "generated_output : list = sub_n(mul_n([2, 1, -2],5),2)",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      8,
      3,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),2)"
  },
  {
    "input": "input : list = [2, 4, -1, -1]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sub_n([2, 4, -1, -1],-1))),1))",
    "io_inp": [
      2,
      4,
      -1,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sub_n(input,-1))),1))"
  },
  {
    "input": "input : list = [3, 3, -2, 0, -5, -4]\noutput : list = [-3, -2, 0, 2, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc(reverse([3, 3, -2, 0, -5, -4])),2)",
    "io_inp": [
      3,
      3,
      -2,
      0,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      0,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(input)),2)"
  },
  {
    "input": "input : list = [-3, 3, 0, 3, 2]\noutput : list = [-35, -35, -30, -20, -5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(add_n([-3, 3, 0, 3, 2],2),-2),-5)))",
    "io_inp": [
      -3,
      3,
      0,
      3,
      2
    ],
    "io_out": [
      -35,
      -35,
      -30,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(add_n(input,2),-2),-5)))"
  },
  {
    "input": "input : list = [5, -4, 4, -5, -5, 0]\noutput : list = [11, 10, 6, 2, 1, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sort_asc([5, -4, 4, -5, -5, 0]),-1))),-5)",
    "io_inp": [
      5,
      -4,
      4,
      -5,
      -5,
      0
    ],
    "io_out": [
      11,
      10,
      6,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sort_asc(input),-1))),-5)"
  },
  {
    "input": "input : list = [-5, -5, -4, -4]\noutput : list = [-36, -36, -32, -32]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(add_n([-5, -5, -4, -4],-4)))),4)",
    "io_inp": [
      -5,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -36,
      -36,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(add_n(input,-4)))),4)"
  },
  {
    "input": "input : list = [-4, 2, -2]\noutput : list = [5, 1]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n(drop([-4, 2, -2],1),-5),-5),2),-3)",
    "io_inp": [
      -4,
      2,
      -2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(drop(input,1),-5),-5),2),-3)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [9, -12]",
    "output": "generated_output : list = sort_des(mul_n([-3, 4],-3))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-3, -3, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sort_des(take([-3, -3, 0],1)),5)",
    "io_inp": [
      -3,
      -3,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(input,1)),5)"
  },
  {
    "input": "input : list = [-1, 5, 5, -4]\noutput : list = [-4, 5, 5]",
    "output": "generated_output : list = reverse(take(drop([-1, 5, 5, -4],1),9))",
    "io_inp": [
      -1,
      5,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),9))"
  },
  {
    "input": "input : list = [5, 2, -1, 5, 0]\noutput : list = [11, 8, 5, 11, 6]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse([5, 2, -1, 5, 0])),5),-1)",
    "io_inp": [
      5,
      2,
      -1,
      5,
      0
    ],
    "io_out": [
      11,
      8,
      5,
      11,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(input)),5),-1)"
  },
  {
    "input": "input : list = [2, 0, 5, -4]\noutput : list = [2, 11, 6, 8]",
    "output": "generated_output : list = reverse(add_n(add_n([2, 0, 5, -4],1),5))",
    "io_inp": [
      2,
      0,
      5,
      -4
    ],
    "io_out": [
      2,
      11,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,1),5))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-9, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n([3, -2],-3)),4))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(input,-3)),4))"
  },
  {
    "input": "input : list = [0, 0, -3, 0]\noutput : list = [1]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(take([0, 0, -3, 0],1))),-1),1)",
    "io_inp": [
      0,
      0,
      -3,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(take(input,1))),-1),1)"
  },
  {
    "input": "input : list = [3, 5, 3, 3, 2]\noutput : list = [0, 0, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(drop(sort_des([3, 5, 3, 3, 2]),1)),-3)",
    "io_inp": [
      3,
      5,
      3,
      3,
      2
    ],
    "io_out": [
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(sort_des(input),1)),-3)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(sort_des([4, -4])))))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 5, 4, -1, -2, 3]\noutput : list = [0, 10, 9, 4, 3, 8]",
    "output": "generated_output : list = sub_n([-5, 5, 4, -1, -2, 3],-5)",
    "io_inp": [
      -5,
      5,
      4,
      -1,
      -2,
      3
    ],
    "io_out": [
      0,
      10,
      9,
      4,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -4, 3, -1, -4]\noutput : list = [-1, -5, -8, -8, -8]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n([-4, -4, 3, -1, -4],2)),4),-2),4)",
    "io_inp": [
      -4,
      -4,
      3,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -5,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n(input,2)),4),-2),4)"
  },
  {
    "input": "input : list = [4, 1, -3, -5, -4]\noutput : list = [16, 20, 12, -4, -16]",
    "output": "generated_output : list = take(take(reverse(mul_n([4, 1, -3, -5, -4],-4)),11),15)",
    "io_inp": [
      4,
      1,
      -3,
      -5,
      -4
    ],
    "io_out": [
      16,
      20,
      12,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(input,-4)),11),15)"
  },
  {
    "input": "input : list = [-5, -1, 3, 3, -1]\noutput : list = [-12, 0]",
    "output": "generated_output : list = take(reverse(take(mul_n(add_n([-5, -1, 3, 3, -1],5),-3),2)),13)",
    "io_inp": [
      -5,
      -1,
      3,
      3,
      -1
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(add_n(input,5),-3),2)),13)"
  },
  {
    "input": "input : list = [2, -5, 2, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = drop([2, -5, 2, -3, 4],3)",
    "io_inp": [
      2,
      -5,
      2,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, -5, 4, 3, 1, 2]\noutput : list = [12, 9, 6, 3, -6, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([-2, -5, 4, 3, 1, 2]),3))",
    "io_inp": [
      -2,
      -5,
      4,
      3,
      1,
      2
    ],
    "io_out": [
      12,
      9,
      6,
      3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [3, -2, -2, -2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, -2, -2],1)",
    "io_inp": [
      3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 2, -3, 1, -4]\noutput : list = [-1, -1, -6, -2, -7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n([2, 2, -3, 1, -4],2)),-3)),4)",
    "io_inp": [
      2,
      2,
      -3,
      1,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -6,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n(input,2)),-3)),4)"
  },
  {
    "input": "input : list = [3, 4, -5]\noutput : list = [22, 6, 4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(add_n([3, 4, -5],-1),12)),5),-2)",
    "io_inp": [
      3,
      4,
      -5
    ],
    "io_out": [
      22,
      6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(add_n(input,-1),12)),5),-2)"
  },
  {
    "input": "input : list = [4, 1, -5, 2, -5]\noutput : list = [4, 2, 1, -5, -5]",
    "output": "generated_output : list = sort_des([4, 1, -5, 2, -5])",
    "io_inp": [
      4,
      1,
      -5,
      2,
      -5
    ],
    "io_out": [
      4,
      2,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, 0, 1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(take([5, 1, 0, 1],1)),1),16),5)",
    "io_inp": [
      5,
      1,
      0,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(take(input,1)),1),16),5)"
  },
  {
    "input": "input : list = [4, 4, 1, -1]\noutput : list = [4, 4, 1, -1]",
    "output": "generated_output : list = sort_des([4, 4, 1, -1])",
    "io_inp": [
      4,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-5, -15]",
    "output": "generated_output : list = sort_des(mul_n([1, 3],-5))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [1, 5, -3, -2, -2, 3]\noutput : list = [9, -11, -11, -15, 17, 1]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(sub_n([1, 5, -3, -2, -2, 3],1),12),4)),1)",
    "io_inp": [
      1,
      5,
      -3,
      -2,
      -2,
      3
    ],
    "io_out": [
      9,
      -11,
      -11,
      -15,
      17,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(sub_n(input,1),12),4)),1)"
  },
  {
    "input": "input : list = [5, -5, -1, -1]\noutput : list = [1, -9, -5, -5]",
    "output": "generated_output : list = reverse(add_n(reverse([5, -5, -1, -1]),-4))",
    "io_inp": [
      5,
      -5,
      -1,
      -1
    ],
    "io_out": [
      1,
      -9,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [1, 1, -2, -5]\noutput : list = [-16, -4, 8]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(drop([1, 1, -2, -5],1)),4),-4),19)",
    "io_inp": [
      1,
      1,
      -2,
      -5
    ],
    "io_out": [
      -16,
      -4,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(drop(input,1)),4),-4),19)"
  },
  {
    "input": "input : list = [3, -5, -5, -2]\noutput : list = [23, 23, 11, -9]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(mul_n([3, -5, -5, -2],-4))),-3))",
    "io_inp": [
      3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      23,
      23,
      11,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(mul_n(input,-4))),-3))"
  },
  {
    "input": "input : list = [-4, 0, -2, 1]\noutput : list = [20, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(mul_n([-4, 0, -2, 1],-5),2))))",
    "io_inp": [
      -4,
      0,
      -2,
      1
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(mul_n(input,-5),2))))"
  },
  {
    "input": "input : list = [3, -2, 2, 4]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(drop([3, -2, 2, 4],1),4))))",
    "io_inp": [
      3,
      -2,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(drop(input,1),4))))"
  },
  {
    "input": "input : list = [-3, 1, 2, -2, -2, -1]\noutput : list = [-7, -3, -2, -6, -6, -5]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(mul_n([-3, 1, 2, -2, -2, -1],-1),1),-1),1),-4)",
    "io_inp": [
      -3,
      1,
      2,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -7,
      -3,
      -2,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(mul_n(input,-1),1),-1),1),-4)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [6, 4, -2]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sub_n([-2, -1, -5],-4),1)),2))",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sub_n(input,-4),1)),2))"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [-6, -3, -2]",
    "output": "generated_output : list = add_n([-4, -1, 0],-2)",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse(reverse([-1, -2])))))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, -4, 4, 0, 3, 1]\noutput : list = [-24, -20, 12]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n([-5, -4, 4, 0, 3, 1],-2),3),-3),4)",
    "io_inp": [
      -5,
      -4,
      4,
      0,
      3,
      1
    ],
    "io_out": [
      -24,
      -20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(input,-2),3),-3),4)"
  },
  {
    "input": "input : list = [-4, -1, 5, 4, 3, -5]\noutput : list = [-5, 3, 4, 5, -1, -4]",
    "output": "generated_output : list = reverse([-4, -1, 5, 4, 3, -5])",
    "io_inp": [
      -4,
      -1,
      5,
      4,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      4,
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, -3, 5, -5]\noutput : list = [11, 7, -3, -5, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(mul_n([-2, 3, -3, 5, -5],2)))),1)",
    "io_inp": [
      -2,
      3,
      -3,
      5,
      -5
    ],
    "io_out": [
      11,
      7,
      -3,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(mul_n(input,2)))),1)"
  },
  {
    "input": "input : list = [2, -4, 3, -1, -5, 0]\noutput : list = [-1, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(mul_n([2, -4, 3, -1, -5, 0],1),3))),3)",
    "io_inp": [
      2,
      -4,
      3,
      -1,
      -5,
      0
    ],
    "io_out": [
      -1,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(mul_n(input,1),3))),3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(add_n([-5, 0],3))),-5))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(add_n(input,3))),-5))"
  },
  {
    "input": "input : list = [-1, -5, -2, 2, 3, 0]\noutput : list = [-10, -1, 2, 5, 11, 14]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([-1, -5, -2, 2, 3, 0]),3),5)",
    "io_inp": [
      -1,
      -5,
      -2,
      2,
      3,
      0
    ],
    "io_out": [
      -10,
      -1,
      2,
      5,
      11,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),3),5)"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [0, -4, 2]",
    "output": "generated_output : list = reverse([2, -4, 0])",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 2, -5, 3]\noutput : list = [-22, 13, 18, 18]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(sort_asc([3, 2, -5, 3]),5),-4),-5),2)",
    "io_inp": [
      3,
      2,
      -5,
      3
    ],
    "io_out": [
      -22,
      13,
      18,
      18
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(sort_asc(input),5),-4),-5),2)"
  },
  {
    "input": "input : list = [5, 2, -2, -1, 1]\noutput : list = [-10, -5, 5, 10]",
    "output": "generated_output : list = mul_n(sort_asc(drop([5, 2, -2, -1, 1],1)),5)",
    "io_inp": [
      5,
      2,
      -2,
      -1,
      1
    ],
    "io_out": [
      -10,
      -5,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,1)),5)"
  },
  {
    "input": "input : list = [4, 1, -4]\noutput : list = [8, 5, 0]",
    "output": "generated_output : list = reverse(reverse(add_n([4, 1, -4],4)))",
    "io_inp": [
      4,
      1,
      -4
    ],
    "io_out": [
      8,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(input,4)))"
  },
  {
    "input": "input : list = [4, 3, -3, -1, -3, -2]\noutput : list = [-1, -2, -6, -7, -8, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(sort_asc([4, 3, -3, -1, -3, -2]),7),5)))",
    "io_inp": [
      4,
      3,
      -3,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -6,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(sort_asc(input),7),5)))"
  },
  {
    "input": "input : list = [5, 4, 3, -1]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(drop([5, 4, 3, -1],1)))))",
    "io_inp": [
      5,
      4,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-3, 5, -2, 1]\noutput : list = [5, 1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-3, 5, -2, 1])))",
    "io_inp": [
      -3,
      5,
      -2,
      1
    ],
    "io_out": [
      5,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, 3, -2, 4, 3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = take([0, 3, -2, 4, 3, 0],2)",
    "io_inp": [
      0,
      3,
      -2,
      4,
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n([3, -5],1)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, -3, 5, 4]\noutput : list = [5, 4, -3]",
    "output": "generated_output : list = sort_des(drop([4, -3, 5, 4],1))",
    "io_inp": [
      4,
      -3,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 5, 4, -5, -4, 1]\noutput : list = [-5, 5, 4, -5]",
    "output": "generated_output : list = take([-5, 5, 4, -5, -4, 1],4)",
    "io_inp": [
      -5,
      5,
      4,
      -5,
      -4,
      1
    ],
    "io_out": [
      -5,
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-4, 3, -2, 2, -5]\noutput : list = [3, -4]",
    "output": "generated_output : list = reverse(take([-4, 3, -2, 2, -5],2))",
    "io_inp": [
      -4,
      3,
      -2,
      2,
      -5
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [1, 3, 3, 4]\noutput : list = [1, 0, 0, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(reverse([1, 3, 3, 4]))),3))",
    "io_inp": [
      1,
      3,
      3,
      4
    ],
    "io_out": [
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(reverse(input))),3))"
  },
  {
    "input": "input : list = [-5, -3, 2, 5, -5]\noutput : list = [-5, -5, -3, 2, 5]",
    "output": "generated_output : list = reverse(sort_des([-5, -3, 2, 5, -5]))",
    "io_inp": [
      -5,
      -3,
      2,
      5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 4, -3, 1]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(drop([-4, 4, -3, 1],2),4),4)))",
    "io_inp": [
      -4,
      4,
      -3,
      1
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(drop(input,2),4),4)))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-11, -7]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(mul_n([-3, -4],1)),4)),-5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -11,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(mul_n(input,1)),4)),-5)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-24, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(reverse([-2, 0])),-4),-3),17)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -24,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(reverse(input)),-4),-3),17)"
  },
  {
    "input": "input : list = [-5, -5, 1, 0, -2]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(drop([-5, -5, 1, 0, -2],2))),22),2)",
    "io_inp": [
      -5,
      -5,
      1,
      0,
      -2
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(drop(input,2))),22),2)"
  },
  {
    "input": "input : list = [-3, -3, 0, -3, 2]\noutput : list = [6, 0, -9, -9, -9]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n(sort_asc([-3, -3, 0, -3, 2]),3)),36))",
    "io_inp": [
      -3,
      -3,
      0,
      -3,
      2
    ],
    "io_out": [
      6,
      0,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(sort_asc(input),3)),36))"
  },
  {
    "input": "input : list = [0, 2, 1, -4]\noutput : list = [6, 3, -12]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(drop([0, 2, 1, -4],1))),3),42)",
    "io_inp": [
      0,
      2,
      1,
      -4
    ],
    "io_out": [
      6,
      3,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(drop(input,1))),3),42)"
  },
  {
    "input": "input : list = [3, 2, 5]\noutput : list = [-17, -5]",
    "output": "generated_output : list = add_n(mul_n(reverse(drop([3, 2, 5],1)),-4),3)",
    "io_inp": [
      3,
      2,
      5
    ],
    "io_out": [
      -17,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(drop(input,1)),-4),3)"
  },
  {
    "input": "input : list = [-3, 1, -3, -5, -1]\noutput : list = [-6, -4, -4, -2, 0]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_asc([-3, 1, -3, -5, -1]))),-1))",
    "io_inp": [
      -3,
      1,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_asc(input))),-1))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-2, 2]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(sort_des([0, 4]),5)),-1),2)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(sort_des(input),5)),-1),2)"
  },
  {
    "input": "input : list = [-1, -3, -1, 4]\noutput : list = [-15, -5, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(drop([-1, -3, -1, 4],1)),5)))",
    "io_inp": [
      -1,
      -3,
      -1,
      4
    ],
    "io_out": [
      -15,
      -5,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(drop(input,1)),5)))"
  },
  {
    "input": "input : list = [-4, -4, -1, 1, 2]\noutput : list = [-8, -8, -5, -3, -2]",
    "output": "generated_output : list = add_n([-4, -4, -1, 1, 2],-4)",
    "io_inp": [
      -4,
      -4,
      -1,
      1,
      2
    ],
    "io_out": [
      -8,
      -8,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 2, 2]\noutput : list = [21, 21, 39]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(sub_n([-1, 2, 2],3),-2),-5)),3)",
    "io_inp": [
      -1,
      2,
      2
    ],
    "io_out": [
      21,
      21,
      39
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(sub_n(input,3),-2),-5)),3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-16, -8]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([-3, -1],-1)),4)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,-1)),4)"
  },
  {
    "input": "input : list = [-3, 2, 0, -3]\noutput : list = [20, 12, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sub_n([-3, 2, 0, -3],-4),4),4)))",
    "io_inp": [
      -3,
      2,
      0,
      -3
    ],
    "io_out": [
      20,
      12,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sub_n(input,-4),4),4)))"
  },
  {
    "input": "input : list = [5, -4, -5, 2, 2, -1]\noutput : list = [-5, -4, 5]",
    "output": "generated_output : list = sort_asc(take([5, -4, -5, 2, 2, -1],3))",
    "io_inp": [
      5,
      -4,
      -5,
      2,
      2,
      -1
    ],
    "io_out": [
      -5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [3, -3, -2, -1, 2]\noutput : list = [-4, 2, 4, 6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(drop([3, -3, -2, -1, 2],1),-2)))",
    "io_inp": [
      3,
      -3,
      -2,
      -1,
      2
    ],
    "io_out": [
      -4,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(drop(input,1),-2)))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [30, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(sort_des([5, -3]),3)),2),3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      30,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(sort_des(input),3)),2),3)"
  },
  {
    "input": "input : list = [5, -1, 2, 0, 4, 1]\noutput : list = [9, 7, 3, 1, -1, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n([5, -1, 2, 0, 4, 1],2))),-4),-3)",
    "io_inp": [
      5,
      -1,
      2,
      0,
      4,
      1
    ],
    "io_out": [
      9,
      7,
      3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n(input,2))),-4),-3)"
  },
  {
    "input": "input : list = [5, 1, -4, 5, -3, -3]\noutput : list = [-10, -10, -2, 6, 6, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des([5, 1, -4, 5, -3, -3]))),-2)",
    "io_inp": [
      5,
      1,
      -4,
      5,
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -2,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [1, -2, 1, -5, 5, -3]\noutput : list = [1, 3, 11]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(drop([1, -2, 1, -5, 5, -3],3),4))),2)",
    "io_inp": [
      1,
      -2,
      1,
      -5,
      5,
      -3
    ],
    "io_out": [
      1,
      3,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(drop(input,3),4))),2)"
  },
  {
    "input": "input : list = [-1, -3, -3, 5, 0]\noutput : list = [-10, 0, 2, 6, 6]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -3, -3, 5, 0],-2))",
    "io_inp": [
      -1,
      -3,
      -3,
      5,
      0
    ],
    "io_out": [
      -10,
      0,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_asc([-2, 1, -4])),-2)),1)",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_asc(input)),-2)),1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = mul_n(sort_des(reverse([-1, 3])),-1)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-1)"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(drop([4, -2, -5],1),-5),27),-1),3)",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(drop(input,1),-5),27),-1),3)"
  },
  {
    "input": "input : list = [3, -2, 3, 0]\noutput : list = [-5, -2, -7, -2]",
    "output": "generated_output : list = reverse(add_n(reverse(reverse([3, -2, 3, 0])),-5))",
    "io_inp": [
      3,
      -2,
      3,
      0
    ],
    "io_out": [
      -5,
      -2,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(reverse(input)),-5))"
  },
  {
    "input": "input : list = [-2, 5, 2, -3]\noutput : list = [-3, -2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(reverse([-2, 5, 2, -3])))))",
    "io_inp": [
      -2,
      5,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [2, 4, -3]\noutput : list = [32, 4, 12]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(sub_n([2, 4, -3],5),-1)),25),4)",
    "io_inp": [
      2,
      4,
      -3
    ],
    "io_out": [
      32,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(sub_n(input,5),-1)),25),4)"
  },
  {
    "input": "input : list = [1, -2, -3, -2, -5]\noutput : list = [-5, -3, -2, -2, 1]",
    "output": "generated_output : list = sort_asc([1, -2, -3, -2, -5])",
    "io_inp": [
      1,
      -2,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = take(take(sort_des(add_n(add_n([3, 0, 2],1),-2)),36),43)",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(add_n(input,1),-2)),36),43)"
  },
  {
    "input": "input : list = [5, -3, -2, 1, -4, -4]\noutput : list = [2, 3, 10]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(take([5, -3, -2, 1, -4, -4],3),5))))",
    "io_inp": [
      5,
      -3,
      -2,
      1,
      -4,
      -4
    ],
    "io_out": [
      2,
      3,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(take(input,3),5))))"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [13]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(take([4, -5, -3],1),-4),13),2),-3)",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(take(input,1),-4),13),2),-3)"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = reverse(sort_des(sub_n([4, -5, -2],-1)))",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [2, -4, -2, -2]\noutput : list = [13, 7, 9, 9]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(add_n([2, -4, -2, -2],4)),-2),5))",
    "io_inp": [
      2,
      -4,
      -2,
      -2
    ],
    "io_out": [
      13,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(add_n(input,4)),-2),5))"
  },
  {
    "input": "input : list = [-2, 5, 3]\noutput : list = [-7, -2, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(reverse([-2, 5, 3]))),-5))",
    "io_inp": [
      -2,
      5,
      3
    ],
    "io_out": [
      -7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(reverse(input))),-5))"
  },
  {
    "input": "input : list = [1, -2, 0, -3, 2]\noutput : list = [0, -1, -2, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n([1, -2, 0, -3, 2],1),-4)),-3)",
    "io_inp": [
      1,
      -2,
      0,
      -3,
      2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(input,1),-4)),-3)"
  },
  {
    "input": "input : list = [-3, 0, -4, -3, -1]\noutput : list = [-3, -4, -6, -6, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(sort_des([-3, 0, -4, -3, -1]),-5)),-5),3)",
    "io_inp": [
      -3,
      0,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(sort_des(input),-5)),-5),3)"
  },
  {
    "input": "input : list = [0, 4, 1, 2]\noutput : list = [2, 1, 4, 0]",
    "output": "generated_output : list = reverse([0, 4, 1, 2])",
    "io_inp": [
      0,
      4,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc([2, 1]),4),5),5)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(input),4),5),5)"
  },
  {
    "input": "input : list = [-1, -5, 1, 3]\noutput : list = [16, 0, -8, -16]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(sub_n([-1, -5, 1, 3],-1)),-4)))",
    "io_inp": [
      -1,
      -5,
      1,
      3
    ],
    "io_out": [
      16,
      0,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(sub_n(input,-1)),-4)))"
  },
  {
    "input": "input : list = [4, -4, -4, 1]\noutput : list = [3, 3, -2, -5]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse(sort_des([4, -4, -4, 1])),24),-1),-1)",
    "io_inp": [
      4,
      -4,
      -4,
      1
    ],
    "io_out": [
      3,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(sort_des(input)),24),-1),-1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [16, 26]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse([-4, -2]),-2),-5),-4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      16,
      26
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(input),-2),-5),-4)"
  },
  {
    "input": "input : list = [-5, -4, 2, 1, -3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(sort_des([-5, -4, 2, 1, -3])),1),5),5)",
    "io_inp": [
      -5,
      -4,
      2,
      1,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(sort_des(input)),1),5),5)"
  },
  {
    "input": "input : list = [1, -3, 0, 3, -3]\noutput : list = [-6, -8, -9, -12, -12]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(sort_asc([1, -3, 0, 3, -3]),5)),-4),41)",
    "io_inp": [
      1,
      -3,
      0,
      3,
      -3
    ],
    "io_out": [
      -6,
      -8,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(sort_asc(input),5)),-4),41)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [0, -6, -18]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(sort_des([-3, 1, 3])),12),-3),3)",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      0,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(sort_des(input)),12),-3),3)"
  },
  {
    "input": "input : list = [-1, -1, 5, -1, 4, 3]\noutput : list = [8, 7, 6, 2, 2, 2]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(sort_asc([-1, -1, 5, -1, 4, 3])),3)))",
    "io_inp": [
      -1,
      -1,
      5,
      -1,
      4,
      3
    ],
    "io_out": [
      8,
      7,
      6,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [-25, 10, 10]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(add_n([5, -2, -2],1)),-5)),5)",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      -25,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(add_n(input,1)),-5)),5)"
  },
  {
    "input": "input : list = [-2, -4, -2, 0]\noutput : list = [-6, -8, -6, -4]",
    "output": "generated_output : list = add_n([-2, -4, -2, 0],-4)",
    "io_inp": [
      -2,
      -4,
      -2,
      0
    ],
    "io_out": [
      -6,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [0, -15]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([2, 5],2),-5))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,2),-5))"
  },
  {
    "input": "input : list = [2, 4, 2, -2, 0, -4]\noutput : list = [3, 5, 3, -1, 1, -3]",
    "output": "generated_output : list = sub_n(sub_n([2, 4, 2, -2, 0, -4],3),-4)",
    "io_inp": [
      2,
      4,
      2,
      -2,
      0,
      -4
    ],
    "io_out": [
      3,
      5,
      3,
      -1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),-4)"
  },
  {
    "input": "input : list = [1, -4, -1, 1, 3]\noutput : list = [-1, -3, -5, -8]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(drop([1, -4, -1, 1, 3],1),4),19)))",
    "io_inp": [
      1,
      -4,
      -1,
      1,
      3
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(drop(input,1),4),19)))"
  },
  {
    "input": "input : list = [1, 4, 3, -4]\noutput : list = [1, 4]",
    "output": "generated_output : list = take([1, 4, 3, -4],2)",
    "io_inp": [
      1,
      4,
      3,
      -4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [-6, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(drop([0, -1, -4],1))),-4),-2)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(drop(input,1))),-4),-2)"
  },
  {
    "input": "input : list = [-5, -1, -5, 0]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = sort_asc(drop([-5, -1, -5, 0],1))",
    "io_inp": [
      -5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [0, -2, 3, -5, -4]\noutput : list = [185, 165, 125, 85, 25]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(sub_n([0, -2, 3, -5, -4],4),4),-5),-5))",
    "io_inp": [
      0,
      -2,
      3,
      -5,
      -4
    ],
    "io_out": [
      185,
      165,
      125,
      85,
      25
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(sub_n(input,4),4),-5),-5))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-1, 2])))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sort_asc([1, -4])))))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, 5, -5, -3]\noutput : list = [8, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(take([-2, 5, -5, -3],2),3))))",
    "io_inp": [
      -2,
      5,
      -5,
      -3
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(take(input,2),3))))"
  },
  {
    "input": "input : list = [-3, 1, 5, 2]\noutput : list = [27, 18, 15, 3]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(reverse([-3, 1, 5, 2]))),-4),3)",
    "io_inp": [
      -3,
      1,
      5,
      2
    ],
    "io_out": [
      27,
      18,
      15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(reverse(input))),-4),3)"
  },
  {
    "input": "input : list = [-1, 2, -3, -1]\noutput : list = [4, -2, -2, -6]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(sort_asc([-1, 2, -3, -1])))),2)",
    "io_inp": [
      -1,
      2,
      -3,
      -1
    ],
    "io_out": [
      4,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-5, -20]",
    "output": "generated_output : list = take(sort_des(mul_n([-4, -1],5)),25)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -5,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,5)),25)"
  },
  {
    "input": "input : list = [3, 1, 3, -4, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = drop([3, 1, 3, -4, 5, -5],4)",
    "io_inp": [
      3,
      1,
      3,
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [0, 1, 0, 1, 5]\noutput : list = [-3, -3, 9, 9, 57]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_asc([0, 1, 0, 1, 5]),4),3),-1),-2)",
    "io_inp": [
      0,
      1,
      0,
      1,
      5
    ],
    "io_out": [
      -3,
      -3,
      9,
      9,
      57
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_asc(input),4),3),-1),-2)"
  },
  {
    "input": "input : list = [5, 0, -2, -3, -3, 4]\noutput : list = [4, -3, -3, -2, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, -2, -3, -3, 4])",
    "io_inp": [
      5,
      0,
      -2,
      -3,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      -3,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4, 1, 2]\noutput : list = [-2, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_des([-2, 4, 1, 2]),7),10),38))",
    "io_inp": [
      -2,
      4,
      1,
      2
    ],
    "io_out": [
      -2,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_des(input),7),10),38))"
  },
  {
    "input": "input : list = [-3, -3, 1, -5, -2, -5]\noutput : list = [4, -8, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(drop([-3, -3, 1, -5, -2, -5],3),-1)),4),4)",
    "io_inp": [
      -3,
      -3,
      1,
      -5,
      -2,
      -5
    ],
    "io_out": [
      4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(drop(input,3),-1)),4),4)"
  },
  {
    "input": "input : list = [2, -5, -2, 2]\noutput : list = [2, 2, -2, -5]",
    "output": "generated_output : list = take(reverse(take(sort_asc(reverse([2, -5, -2, 2])),25)),9)",
    "io_inp": [
      2,
      -5,
      -2,
      2
    ],
    "io_out": [
      2,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(reverse(input)),25)),9)"
  },
  {
    "input": "input : list = [-3, -3, 5, 2, 0]\noutput : list = [-7, 1, 13]",
    "output": "generated_output : list = add_n(add_n(reverse(drop(mul_n([-3, -3, 5, 2, 0],4),2)),-3),-4)",
    "io_inp": [
      -3,
      -3,
      5,
      2,
      0
    ],
    "io_out": [
      -7,
      1,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(drop(mul_n(input,4),2)),-3),-4)"
  },
  {
    "input": "input : list = [5, 3, 3, -3, 1]\noutput : list = [5, 3, 3]",
    "output": "generated_output : list = take([5, 3, 3, -3, 1],3)",
    "io_inp": [
      5,
      3,
      3,
      -3,
      1
    ],
    "io_out": [
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 5, -5, -2]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take([-5, 5, -5, -2],2)",
    "io_inp": [
      -5,
      5,
      -5,
      -2
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -2, -2, -4, -4, -4]\noutput : list = [-9, -9, -3, -3, -3, 0]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(sub_n([-5, -2, -2, -4, -4, -4],-5),-3)),13),47)",
    "io_inp": [
      -5,
      -2,
      -2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -3,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(sub_n(input,-5),-3)),13),47)"
  },
  {
    "input": "input : list = [2, 0, 1, -1]\noutput : list = [9, 8, 7, 6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(sub_n([2, 0, 1, -1],-2)))),-5)",
    "io_inp": [
      2,
      0,
      1,
      -1
    ],
    "io_out": [
      9,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(sub_n(input,-2)))),-5)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [25, 0]",
    "output": "generated_output : list = mul_n(sort_des([5, 0]),5)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      25,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-121, -46]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([-5, -2],-5),-5),-4)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -121,
      -46
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,-5),-5),-4)"
  },
  {
    "input": "input : list = [3, -5, -3, -2, 2]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = drop([3, -5, -3, -2, 2],2)",
    "io_inp": [
      3,
      -5,
      -3,
      -2,
      2
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -1, 5, -3, 1, -3]\noutput : list = [-6, -6, -2, 2, 6, 10]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n([3, -1, 5, -3, 1, -3],1),2)))",
    "io_inp": [
      3,
      -1,
      5,
      -3,
      1,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -2,
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(input,1),2)))"
  },
  {
    "input": "input : list = [4, 1, 4, -1, -4]\noutput : list = [1, 1, -2, -4, -7]",
    "output": "generated_output : list = sort_des(sub_n([4, 1, 4, -1, -4],3))",
    "io_inp": [
      4,
      1,
      4,
      -1,
      -4
    ],
    "io_out": [
      1,
      1,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [-3, 2, -1]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(add_n([-3, 2, -1],-3),2),-3)))",
    "io_inp": [
      -3,
      2,
      -1
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(add_n(input,-3),2),-3)))"
  },
  {
    "input": "input : list = [1, -5, -5, -3, 1, 4]\noutput : list = [-5, -3, 1, 1, 4]",
    "output": "generated_output : list = drop(sort_asc([1, -5, -5, -3, 1, 4]),1)",
    "io_inp": [
      1,
      -5,
      -5,
      -3,
      1,
      4
    ],
    "io_out": [
      -5,
      -3,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-3, 5, 5, 0, 3, -5]\noutput : list = [-30, -30, -20, -5, 10, 20]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n([-3, 5, 5, 0, 3, -5],1),-5)),36)",
    "io_inp": [
      -3,
      5,
      5,
      0,
      3,
      -5
    ],
    "io_out": [
      -30,
      -30,
      -20,
      -5,
      10,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(input,1),-5)),36)"
  },
  {
    "input": "input : list = [4, 3, 3, -4, 3, 3]\noutput : list = [-4, 3, 3, 3, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 3, 3, -4, 3, 3])",
    "io_inp": [
      4,
      3,
      3,
      -4,
      3,
      3
    ],
    "io_out": [
      -4,
      3,
      3,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [10, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_des([3, 0, 2]),5)),2))",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(sort_des(input),5)),2))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [10, 2]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([3, -5],5),-1))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,5),-1))"
  },
  {
    "input": "input : list = [0, 2, 2, 2, 5, 4]\noutput : list = [0, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take([0, 2, 2, 2, 5, 4],3)))",
    "io_inp": [
      0,
      2,
      2,
      2,
      5,
      4
    ],
    "io_out": [
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,3)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [12, -24]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_asc([4, -5])),1)),4)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_asc(input)),1)),4)"
  },
  {
    "input": "input : list = [5, -3, 0, -3]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(take([5, -3, 0, -3],1)),-3),1),5)",
    "io_inp": [
      5,
      -3,
      0,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(take(input,1)),-3),1),5)"
  },
  {
    "input": "input : list = [-1, 3, -4, -5, 5]\noutput : list = [4, -6, -5, 2, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse([-1, 3, -4, -5, 5]),-5),-4)",
    "io_inp": [
      -1,
      3,
      -4,
      -5,
      5
    ],
    "io_out": [
      4,
      -6,
      -5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-5),-4)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-16, 14]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(mul_n([1, -1],5),3)),-5),-4)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -16,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(mul_n(input,5),3)),-5),-4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(drop(take(sub_n(sort_asc([0, 0]),-3),4),1),-3)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(sub_n(sort_asc(input),-3),4),1),-3)"
  },
  {
    "input": "input : list = [-5, -1, -3, 1, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(take([-5, -1, -3, 1, 4],2),-1)),-1))",
    "io_inp": [
      -5,
      -1,
      -3,
      1,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(take(input,2),-1)),-1))"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [-4, -4, -7]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc([-1, -2, -1]),3))),-1)",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc(input),3))),-1)"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(sort_des([0, -3, -4])))))",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-12, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(mul_n([-1, 4],-3),15))),19)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(mul_n(input,-3),15))),19)"
  },
  {
    "input": "input : list = [5, -5, -2, 0]\noutput : list = [-5, -2, 0, 5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([5, -5, -2, 0],-5)),-5)",
    "io_inp": [
      5,
      -5,
      -2,
      0
    ],
    "io_out": [
      -5,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-5)),-5)"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [-2, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 4, -2])",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, -3, 4, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(drop([-5, 2, -3, 4, 5, 5],4)))",
    "io_inp": [
      -5,
      2,
      -3,
      4,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,4)))"
  },
  {
    "input": "input : list = [1, -4, 4, 2, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(drop(drop([1, -4, 4, 2, 1],2),2))",
    "io_inp": [
      1,
      -4,
      4,
      2,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(drop(input,2),2))"
  },
  {
    "input": "input : list = [1, -4, 2, -1]\noutput : list = [8, 7, 5, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(reverse([1, -4, 2, -1]),-2))),4)",
    "io_inp": [
      1,
      -4,
      2,
      -1
    ],
    "io_out": [
      8,
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(reverse(input),-2))),4)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des([0, 2]),-2),-2)),-3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des(input),-2),-2)),-3)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-28, -24]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(add_n([5, 4],2)),-4)))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -28,
      -24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(add_n(input,2)),-4)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-20, 16]",
    "output": "generated_output : list = take(mul_n([5, -4],-4),5)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -20,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),5)"
  },
  {
    "input": "input : list = [-5, 5, 0, 2, 0, -5]\noutput : list = [-6, -1, -1, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(drop([-5, 5, 0, 2, 0, -5],1),9),-1)))",
    "io_inp": [
      -5,
      5,
      0,
      2,
      0,
      -5
    ],
    "io_out": [
      -6,
      -1,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(drop(input,1),9),-1)))"
  },
  {
    "input": "input : list = [0, 5, 0, -3]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = drop([0, 5, 0, -3],1)",
    "io_inp": [
      0,
      5,
      0,
      -3
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 2, 4, 4, -4]\noutput : list = [4, 4, 2, -4, -5]",
    "output": "generated_output : list = take(sort_des(reverse(take(reverse([-5, 2, 4, 4, -4]),21))),38)",
    "io_inp": [
      -5,
      2,
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(reverse(input),21))),38)"
  },
  {
    "input": "input : list = [3, 4, -3]\noutput : list = [29, -34, -25]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(mul_n([3, 4, -3],3),5),-3),2))",
    "io_inp": [
      3,
      4,
      -3
    ],
    "io_out": [
      29,
      -34,
      -25
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(mul_n(input,3),5),-3),2))"
  },
  {
    "input": "input : list = [1, -2, 2, -5]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(reverse(take(take(sort_des([1, -2, 2, -5]),2),24)),27)",
    "io_inp": [
      1,
      -2,
      2,
      -5
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(sort_des(input),2),24)),27)"
  },
  {
    "input": "input : list = [1, -5, -1, 1, -5, 0]\noutput : list = [4, 4, 3, 2, -2, -2]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(reverse([1, -5, -1, 1, -5, 0]))),38),-3)",
    "io_inp": [
      1,
      -5,
      -1,
      1,
      -5,
      0
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(reverse(input))),38),-3)"
  },
  {
    "input": "input : list = [2, 0, 5, 3, -5, -3]\noutput : list = [4, 2, 1, -1, -4, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(reverse([2, 0, 5, 3, -5, -3])),1)))",
    "io_inp": [
      2,
      0,
      5,
      3,
      -5,
      -3
    ],
    "io_out": [
      4,
      2,
      1,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(reverse(input)),1)))"
  },
  {
    "input": "input : list = [5, 3, 5]\noutput : list = [24, 40]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(drop([5, 3, 5],1),-2))),-4)",
    "io_inp": [
      5,
      3,
      5
    ],
    "io_out": [
      24,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(drop(input,1),-2))),-4)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [41, 33, 9]",
    "output": "generated_output : list = sort_des(sub_n(reverse(mul_n(add_n([-4, 4, 2],5),4)),-5))",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      41,
      33,
      9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(mul_n(add_n(input,5),4)),-5))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_des([0, 0]),-1)),2))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_des(input),-1)),2))"
  },
  {
    "input": "input : list = [0, 4, 4, 0, 4, -5]\noutput : list = [-24, -24, -4, -24, 21]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(drop([0, 4, 4, 0, 4, -5],1),-5),4),-4),4)",
    "io_inp": [
      0,
      4,
      4,
      0,
      4,
      -5
    ],
    "io_out": [
      -24,
      -24,
      -4,
      -24,
      21
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(drop(input,1),-5),4),-4),4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-8, 2]",
    "output": "generated_output : list = mul_n(sub_n([5, -5],-3),-1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),-1)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(mul_n([2, 4],2),4)),21))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(mul_n(input,2),4)),21))"
  },
  {
    "input": "input : list = [-2, 1, 2, 3]\noutput : list = [10, -5, -10, -15]",
    "output": "generated_output : list = mul_n([-2, 1, 2, 3],-5)",
    "io_inp": [
      -2,
      1,
      2,
      3
    ],
    "io_out": [
      10,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, 2, 5, 1, 0]\noutput : list = [0, 5, 10, 15, 25]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(add_n([3, 2, 5, 1, 0],1))),5),5)",
    "io_inp": [
      3,
      2,
      5,
      1,
      0
    ],
    "io_out": [
      0,
      5,
      10,
      15,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(add_n(input,1))),5),5)"
  },
  {
    "input": "input : list = [-4, 4, 0, -5]\noutput : list = [12, 4, -4, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(add_n([-4, 4, 0, -5],2)),13),2))",
    "io_inp": [
      -4,
      4,
      0,
      -5
    ],
    "io_out": [
      12,
      4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(add_n(input,2)),13),2))"
  },
  {
    "input": "input : list = [2, 1, -1, -1]\noutput : list = [9, 9, 11, 12]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sub_n([2, 1, -1, -1],-5)),5)))",
    "io_inp": [
      2,
      1,
      -1,
      -1
    ],
    "io_out": [
      9,
      9,
      11,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sub_n(input,-5)),5)))"
  },
  {
    "input": "input : list = [-4, -4, 2]\noutput : list = [-26, 4, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(sub_n([-4, -4, 2],-4),-5)),-4))",
    "io_inp": [
      -4,
      -4,
      2
    ],
    "io_out": [
      -26,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(sub_n(input,-4),-5)),-4))"
  },
  {
    "input": "input : list = [0, 1, -1, 0, -1]\noutput : list = [1, 0, 0, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(reverse([0, 1, -1, 0, -1])))))",
    "io_inp": [
      0,
      1,
      -1,
      0,
      -1
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [4, -5, -3, -1, -4, -5]\noutput : list = [-14, 4, 0, -4, 2, 4]",
    "output": "generated_output : list = take(sub_n(take(sub_n(mul_n([4, -5, -3, -1, -4, -5],-2),1),32),5),40)",
    "io_inp": [
      4,
      -5,
      -3,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -14,
      4,
      0,
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(mul_n(input,-2),1),32),5),40)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = take(sort_des([-1, 3]),12)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),12)"
  },
  {
    "input": "input : list = [-2, 3, -5, -1, 3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(drop([-2, 3, -5, -1, 3],3),-4),25)),1)",
    "io_inp": [
      -2,
      3,
      -5,
      -1,
      3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(drop(input,3),-4),25)),1)"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [60, -30, -90]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sub_n([3, 5, 0],2),-3),-5)),-2)",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      60,
      -30,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sub_n(input,2),-3),-5)),-2)"
  },
  {
    "input": "input : list = [5, -4, 2, 5]\noutput : list = [12, -15]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(take([5, -4, 2, 5],2))),-3),32)",
    "io_inp": [
      5,
      -4,
      2,
      5
    ],
    "io_out": [
      12,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(take(input,2))),-3),32)"
  },
  {
    "input": "input : list = [-2, 0, 2, 2, -3, 5]\noutput : list = [0, -10, -30, -50, -50, -80]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(sub_n([-2, 0, 2, 2, -3, 5],-3),25),2),-5))",
    "io_inp": [
      -2,
      0,
      2,
      2,
      -3,
      5
    ],
    "io_out": [
      0,
      -10,
      -30,
      -50,
      -50,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(sub_n(input,-3),25),2),-5))"
  },
  {
    "input": "input : list = [2, 4, -5]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des(take([2, 4, -5],1)),-5)),2)",
    "io_inp": [
      2,
      4,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(take(input,1)),-5)),2)"
  },
  {
    "input": "input : list = [0, -5, -5, -3]\noutput : list = [2]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(take([0, -5, -5, -3],1),-3),-2),-3),35)",
    "io_inp": [
      0,
      -5,
      -5,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(take(input,1),-3),-2),-3),35)"
  },
  {
    "input": "input : list = [5, 1, -5, -3, -3]\noutput : list = [-5, -5, -7, -1, 3]",
    "output": "generated_output : list = mul_n(add_n(reverse([5, 1, -5, -3, -3]),-2),1)",
    "io_inp": [
      5,
      1,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -7,
      -1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-2),1)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [-3, -10, -11]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(sort_asc([5, -3, -2])),2),5),5)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(sort_asc(input)),2),5),5)"
  },
  {
    "input": "input : list = [0, 3, -4, 0]\noutput : list = [3, 0, 0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(sort_des([0, 3, -4, 0])))))",
    "io_inp": [
      0,
      3,
      -4,
      0
    ],
    "io_out": [
      3,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, -4, -2, -3, 1, -5]\noutput : list = [-10, -9, -9, -8, -7, -4]",
    "output": "generated_output : list = sub_n(sort_asc([-4, -4, -2, -3, 1, -5]),5)",
    "io_inp": [
      -4,
      -4,
      -2,
      -3,
      1,
      -5
    ],
    "io_out": [
      -10,
      -9,
      -9,
      -8,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [5, 1, 1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(drop([5, 1, 1],1)),3)),-2)",
    "io_inp": [
      5,
      1,
      1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(drop(input,1)),3)),-2)"
  },
  {
    "input": "input : list = [4, -1, 3, 0, -1, -4]\noutput : list = [0, 8, 32, 40, 40, 64]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(add_n([4, -1, 3, 0, -1, -4],-4),-2),9)),4)",
    "io_inp": [
      4,
      -1,
      3,
      0,
      -1,
      -4
    ],
    "io_out": [
      0,
      8,
      32,
      40,
      40,
      64
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(add_n(input,-4),-2),9)),4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [0, -2]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(sort_asc([-3, -4]),-3),2)),10)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(sort_asc(input),-3),2)),10)"
  },
  {
    "input": "input : list = [5, 0, -5, -3, 3]\noutput : list = [4, 2, -1, -4, -6]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(reverse([5, 0, -5, -3, 3]),-1)),-1),32)",
    "io_inp": [
      5,
      0,
      -5,
      -3,
      3
    ],
    "io_out": [
      4,
      2,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(reverse(input),-1)),-1),32)"
  },
  {
    "input": "input : list = [-5, -1, 2, -4]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(take([-5, -1, 2, -4],2))),36))",
    "io_inp": [
      -5,
      -1,
      2,
      -4
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(take(input,2))),36))"
  },
  {
    "input": "input : list = [-2, 1, 2, -3]\noutput : list = [-3, 2, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, 2, -3])",
    "io_inp": [
      -2,
      1,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0, -2, -1, 3]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = drop(sort_des(sort_des([-5, 0, -2, -1, 3])),2)",
    "io_inp": [
      -5,
      0,
      -2,
      -1,
      3
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(input)),2)"
  },
  {
    "input": "input : list = [5, 2, -4, 3, -1]\noutput : list = [-4, -1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 2, -4, 3, -1])",
    "io_inp": [
      5,
      2,
      -4,
      3,
      -1
    ],
    "io_out": [
      -4,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-1, 7]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(sort_des([-4, 4]))),-3),29)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(sort_des(input))),-3),29)"
  },
  {
    "input": "input : list = [1, -1, 3, -4]\noutput : list = [-2, 5, 1, 3]",
    "output": "generated_output : list = sub_n(reverse([1, -1, 3, -4]),-2)",
    "io_inp": [
      1,
      -1,
      3,
      -4
    ],
    "io_out": [
      -2,
      5,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [1, -1, -5, -2, 3, -4]\noutput : list = [1, -7, -23]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(take([1, -1, -5, -2, 3, -4],3),1),4),1),-2)",
    "io_inp": [
      1,
      -1,
      -5,
      -2,
      3,
      -4
    ],
    "io_out": [
      1,
      -7,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(take(input,3),1),4),1),-2)"
  },
  {
    "input": "input : list = [5, 3, 1, 2, 0]\noutput : list = [5, 3]",
    "output": "generated_output : list = mul_n(take([5, 3, 1, 2, 0],2),1)",
    "io_inp": [
      5,
      3,
      1,
      2,
      0
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),1)"
  },
  {
    "input": "input : list = [1, -5, -3]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse(sort_asc(take([1, -5, -3],1))),25)",
    "io_inp": [
      1,
      -5,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(input,1))),25)"
  },
  {
    "input": "input : list = [-1, -4, -1, -2, -2, 1]\noutput : list = [15, 30, 15, 20, 20, 5]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(add_n([-1, -4, -1, -2, -2, 1],-3),1),5),20),-1)",
    "io_inp": [
      -1,
      -4,
      -1,
      -2,
      -2,
      1
    ],
    "io_out": [
      15,
      30,
      15,
      20,
      20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(add_n(input,-3),1),5),20),-1)"
  },
  {
    "input": "input : list = [4, 4, 5, -5]\noutput : list = [5, 4, 4, -5]",
    "output": "generated_output : list = sort_des([4, 4, 5, -5])",
    "io_inp": [
      4,
      4,
      5,
      -5
    ],
    "io_out": [
      5,
      4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, -3, 1, 2]\noutput : list = [-3, -2, -1, 2, 3]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 3, -3, 1, 2],-1))",
    "io_inp": [
      -2,
      3,
      -3,
      1,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-5, -4, 5, 4, -2, 5]\noutput : list = [5, 4, -5, -4, 2, -5]",
    "output": "generated_output : list = mul_n([-5, -4, 5, 4, -2, 5],-1)",
    "io_inp": [
      -5,
      -4,
      5,
      4,
      -2,
      5
    ],
    "io_out": [
      5,
      4,
      -5,
      -4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 3, 4, 2, 2, 0]\noutput : list = [3, 5, 5, 5, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_asc([2, 3, 4, 2, 2, 0])),-5),2))",
    "io_inp": [
      2,
      3,
      4,
      2,
      2,
      0
    ],
    "io_out": [
      3,
      5,
      5,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_asc(input)),-5),2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [8, 4]",
    "output": "generated_output : list = add_n([4, 0],4)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc([0, -2, 0]),1)",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-3, 4, 3, 0, -3]\noutput : list = [-14, -14, -2, 10, 14]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(sort_asc([-3, 4, 3, 0, -3]),4),-2)))",
    "io_inp": [
      -3,
      4,
      3,
      0,
      -3
    ],
    "io_out": [
      -14,
      -14,
      -2,
      10,
      14
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(sort_asc(input),4),-2)))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [15, 10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des([1, 0]),-2),5)))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des(input),-2),5)))"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [4, 5, 7]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(reverse([-2, -1, -4]),-1),11)),3)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(reverse(input),-1),11)),3)"
  },
  {
    "input": "input : list = [-5, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_des(drop([-5, 3, 3],1))",
    "io_inp": [
      -5,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 4, 0, -5, 2]\noutput : list = [-9, -8, -4, -2, 0]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(sort_asc([-4, 4, 0, -5, 2])),33)),4)",
    "io_inp": [
      -4,
      4,
      0,
      -5,
      2
    ],
    "io_out": [
      -9,
      -8,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(sort_asc(input)),33)),4)"
  },
  {
    "input": "input : list = [-3, -3, -5, 4, 2]\noutput : list = [-5, -3, 2, 2, 4]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(sort_asc([-3, -3, -5, 4, 2]),-1)),-1),6)",
    "io_inp": [
      -3,
      -3,
      -5,
      4,
      2
    ],
    "io_out": [
      -5,
      -3,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(sort_asc(input),-1)),-1),6)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-6, -10, -11]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(add_n([3, -2, -1],-3)),-3),2),1)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(add_n(input,-3)),-3),2),1)"
  },
  {
    "input": "input : list = [5, 0, 5, 4]\noutput : list = [2, 18, 22, 22]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(add_n([5, 0, 5, 4],3),-2),4),-2))",
    "io_inp": [
      5,
      0,
      5,
      4
    ],
    "io_out": [
      2,
      18,
      22,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(add_n(input,3),-2),4),-2))"
  },
  {
    "input": "input : list = [-3, 5, -1, 0, -1]\noutput : list = [-16, 80, -48]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(take([-3, 5, -1, 0, -1],3),15),4)),4)",
    "io_inp": [
      -3,
      5,
      -1,
      0,
      -1
    ],
    "io_out": [
      -16,
      80,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(take(input,3),15),4)),4)"
  },
  {
    "input": "input : list = [2, 4, 2, 4, 1, 2]\noutput : list = [-17]",
    "output": "generated_output : list = sort_des(drop(sub_n(sort_des(mul_n([2, 4, 2, 4, 1, 2],-4)),1),5))",
    "io_inp": [
      2,
      4,
      2,
      4,
      1,
      2
    ],
    "io_out": [
      -17
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(sort_des(mul_n(input,-4)),1),5))"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sort_asc([0, 4, 1])))))",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, 5, 2, 3, 0]\noutput : list = [-36, -28, -24, -20, -16]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(add_n([1, 5, 2, 3, 0],4),-4)),13))",
    "io_inp": [
      1,
      5,
      2,
      3,
      0
    ],
    "io_out": [
      -36,
      -28,
      -24,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(add_n(input,4),-4)),13))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(add_n([-1, -2],-1)),19),4))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(add_n(input,-1)),19),4))"
  },
  {
    "input": "input : list = [5, -2, -3, 3, 2]\noutput : list = [-6, -5, -1, 0, 2]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_des([5, -2, -3, 3, 2]))),24),-3)",
    "io_inp": [
      5,
      -2,
      -3,
      3,
      2
    ],
    "io_out": [
      -6,
      -5,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_des(input))),24),-3)"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [10, 0, -25]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sort_des([-1, 4, -3]),1),-5)))",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      10,
      0,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sort_des(input),1),-5)))"
  },
  {
    "input": "input : list = [-3, 5, -4, 5, 5, 0]\noutput : list = [2, 2, 2, -3, -6, -7]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc([-3, 5, -4, 5, 5, 0]),2),-1)),46)",
    "io_inp": [
      -3,
      5,
      -4,
      5,
      5,
      0
    ],
    "io_out": [
      2,
      2,
      2,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc(input),2),-1)),46)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [8, 4]",
    "output": "generated_output : list = mul_n(add_n([5, 1],3),1)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),1)"
  },
  {
    "input": "input : list = [1, -2, -4, -3, -3]\noutput : list = [1, -2, -3, -3, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse([1, -2, -4, -3, -3])),25))",
    "io_inp": [
      1,
      -2,
      -4,
      -3,
      -3
    ],
    "io_out": [
      1,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(input)),25))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [30, 35]",
    "output": "generated_output : list = take(reverse(mul_n(add_n([-2, -1],-5),-5)),31)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      30,
      35
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(input,-5),-5)),31)"
  },
  {
    "input": "input : list = [5, 3, -1, 5]\noutput : list = [1, -7, -11, -11]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(mul_n([5, 3, -1, 5],-1)),1),2),3)",
    "io_inp": [
      5,
      3,
      -1,
      5
    ],
    "io_out": [
      1,
      -7,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(mul_n(input,-1)),1),2),3)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [24, 32]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(sub_n([-4, -2],4),-4),23)))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      24,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(sub_n(input,4),-4),23)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse([-2, 5])",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, -2, 5, 4]\noutput : list = [0, -8, -7, 0, -1]",
    "output": "generated_output : list = sub_n([5, -3, -2, 5, 4],5)",
    "io_inp": [
      5,
      -3,
      -2,
      5,
      4
    ],
    "io_out": [
      0,
      -8,
      -7,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, 0, -3, -2, 1, -1]\noutput : list = [-6, -4, -7, -8, -5, -3]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(reverse([2, 0, -3, -2, 1, -1]),-5),1),-4),4)",
    "io_inp": [
      2,
      0,
      -3,
      -2,
      1,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -7,
      -8,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(reverse(input),-5),1),-4),4)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [-7, -5, 1]",
    "output": "generated_output : list = sub_n([-4, -2, 4],3)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, -4, 1, 1]\noutput : list = [3, 3, -2, 1]",
    "output": "generated_output : list = sub_n(reverse([-1, -4, 1, 1]),-2)",
    "io_inp": [
      -1,
      -4,
      1,
      1
    ],
    "io_out": [
      3,
      3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [3, -2, -4, 0, 0, -4]\noutput : list = [0, -2, 2, 2, -2]",
    "output": "generated_output : list = add_n(drop([3, -2, -4, 0, 0, -4],1),2)",
    "io_inp": [
      3,
      -2,
      -4,
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      -2,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-5, -4, 5, -3, 0, -4]\noutput : list = [-5, -4, -4, -3, 0, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(reverse([-5, -4, 5, -3, 0, -4])))))",
    "io_inp": [
      -5,
      -4,
      5,
      -3,
      0,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [3, -3]",
    "output": "generated_output : list = sub_n([4, -2],1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-9, 18, -9]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(add_n([-4, 5, -4],-4),-5)),3),1)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -9,
      18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(add_n(input,-4),-5)),3),1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-19, -19]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(sort_asc([4, 4]),8),-4)),-3)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -19,
      -19
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(sort_asc(input),8),-4)),-3)"
  },
  {
    "input": "input : list = [2, 3, 5, 2, -5]\noutput : list = [8]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(take([2, 3, 5, 2, -5],1))),4))",
    "io_inp": [
      2,
      3,
      5,
      2,
      -5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(take(input,1))),4))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [8, 6, 1]",
    "output": "generated_output : list = sub_n([3, 1, -4],-5)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      8,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, 1, 1, -4, 3, 0]\noutput : list = [0, 1, 1, -4]",
    "output": "generated_output : list = take([0, 1, 1, -4, 3, 0],4)",
    "io_inp": [
      0,
      1,
      1,
      -4,
      3,
      0
    ],
    "io_out": [
      0,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-1, -2, 4, 1, 4, 5]\noutput : list = [10, 9, 6, 9]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(drop([-1, -2, 4, 1, 4, 5],2),2),-4)),-1)",
    "io_inp": [
      -1,
      -2,
      4,
      1,
      4,
      5
    ],
    "io_out": [
      10,
      9,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(drop(input,2),2),-4)),-1)"
  },
  {
    "input": "input : list = [-4, -4, -3, -1, -5]\noutput : list = [3, 9, 15]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n(drop([-4, -4, -3, -1, -5],2),-3))))",
    "io_inp": [
      -4,
      -4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      3,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(drop(input,2),-3))))"
  },
  {
    "input": "input : list = [3, 0, 3, 2, 2, 1]\noutput : list = [3, 0, 3, 2]",
    "output": "generated_output : list = take([3, 0, 3, 2, 2, 1],4)",
    "io_inp": [
      3,
      0,
      3,
      2,
      2,
      1
    ],
    "io_out": [
      3,
      0,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [3, -2, -4, 0]\noutput : list = [2, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n([3, -2, -4, 0],-1))))",
    "io_inp": [
      3,
      -2,
      -4,
      0
    ],
    "io_out": [
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(input,-1))))"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [-5, 3, 4]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des(reverse([4, 3, -5]))),3))",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(reverse(input))),3))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des([-5, 4])",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, -2, -2, 3]\noutput : list = [-4, -2, -2, -1, 3]",
    "output": "generated_output : list = sort_asc([-4, -1, -2, -2, 3])",
    "io_inp": [
      -4,
      -1,
      -2,
      -2,
      3
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 4, 1, 4, -2, -4]\noutput : list = [2, 4, 10, 7, 10]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(drop([-2, 4, 1, 4, -2, -4],1)),3),4),-5)",
    "io_inp": [
      -2,
      4,
      1,
      4,
      -2,
      -4
    ],
    "io_out": [
      2,
      4,
      10,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(drop(input,1)),3),4),-5)"
  },
  {
    "input": "input : list = [-4, -4, -2, -3]\noutput : list = [-20, -25, -30, -30]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_des(sub_n([-4, -4, -2, -3],-4)),5),5),-5)",
    "io_inp": [
      -4,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -20,
      -25,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_des(sub_n(input,-4)),5),5),-5)"
  },
  {
    "input": "input : list = [-4, 3, -1, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take([-4, 3, -1, -4],2)",
    "io_inp": [
      -4,
      3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sort_des([4, 2])))))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc([-5, -4])",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 4, 5, -4]\noutput : list = [164, -106, -136, 134]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(mul_n([-5, 4, 5, -4],-5),-2),-5),-3),1)",
    "io_inp": [
      -5,
      4,
      5,
      -4
    ],
    "io_out": [
      164,
      -106,
      -136,
      134
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(mul_n(input,-5),-2),-5),-3),1)"
  },
  {
    "input": "input : list = [-1, -4, -4, -5]\noutput : list = [-4, -16, -16, -20]",
    "output": "generated_output : list = mul_n([-1, -4, -4, -5],4)",
    "io_inp": [
      -1,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-21, -21]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(reverse([-1, -1]),2),-4),4),3)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -21,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(reverse(input),2),-4),4),3)"
  },
  {
    "input": "input : list = [-2, 1, -5, -1, -4, 1]\noutput : list = [1, -4, -1, -5, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, -5, -1, -4, 1])",
    "io_inp": [
      -2,
      1,
      -5,
      -1,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      -1,
      -5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, 4, -5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = drop([5, 5, 4, -5, 2],3)",
    "io_inp": [
      5,
      5,
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, -1, -2, -3]\noutput : list = [-1, 0, 1, -2]",
    "output": "generated_output : list = add_n(take(add_n(reverse(add_n([-4, -1, -2, -3],3)),-5),7),4)",
    "io_inp": [
      -4,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -1,
      0,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(add_n(input,3)),-5),7),4)"
  },
  {
    "input": "input : list = [-5, -3, -2]\noutput : list = [-8, -6, -5]",
    "output": "generated_output : list = sub_n([-5, -3, -2],3)",
    "io_inp": [
      -5,
      -3,
      -2
    ],
    "io_out": [
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [2, -2, -5, 4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(take([2, -2, -5, 4],1),9),2)))",
    "io_inp": [
      2,
      -2,
      -5,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(take(input,1),9),2)))"
  },
  {
    "input": "input : list = [1, 5, -4, 1, 1]\noutput : list = [19, 7, 7, 7, -8]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(sort_des([1, 5, -4, 1, 1]),3),1),9),-3)",
    "io_inp": [
      1,
      5,
      -4,
      1,
      1
    ],
    "io_out": [
      19,
      7,
      7,
      7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(sort_des(input),3),1),9),-3)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([0, -4]))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 2, 1, 0]\noutput : list = [-13, -12, -11, -13]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(reverse([0, 2, 1, 0]),-4),-5),1),4)",
    "io_inp": [
      0,
      2,
      1,
      0
    ],
    "io_out": [
      -13,
      -12,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(reverse(input),-4),-5),1),4)"
  },
  {
    "input": "input : list = [-1, 4, -4, 2, -2, -2]\noutput : list = [6, 1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(take([-1, 4, -4, 2, -2, -2],2),-5),1),-3))",
    "io_inp": [
      -1,
      4,
      -4,
      2,
      -2,
      -2
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(take(input,2),-5),1),-3))"
  },
  {
    "input": "input : list = [5, 2, 4, 0, 3, 5]\noutput : list = [4, 1, 3, -1, 2, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse([5, 2, 4, 0, 3, 5])),1)",
    "io_inp": [
      5,
      2,
      4,
      0,
      3,
      5
    ],
    "io_out": [
      4,
      1,
      3,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(reverse([0, 5]))),3),-2)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(reverse(input))),3),-2)"
  },
  {
    "input": "input : list = [-4, 0, -4, 1, 3]\noutput : list = [-3, 1, -3, 2, 4]",
    "output": "generated_output : list = sub_n([-4, 0, -4, 1, 3],-1)",
    "io_inp": [
      -4,
      0,
      -4,
      1,
      3
    ],
    "io_out": [
      -3,
      1,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, -3, -1, 3, -5, -1]\noutput : list = [3, 1, -3, -3, -5, -7]",
    "output": "generated_output : list = sort_des(add_n([5, -3, -1, 3, -5, -1],-2))",
    "io_inp": [
      5,
      -3,
      -1,
      3,
      -5,
      -1
    ],
    "io_out": [
      3,
      1,
      -3,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, -1, -4],1),-3)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [9, 8, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_des([4, -4, 5])))),4)",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      9,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_des(input)))),4)"
  },
  {
    "input": "input : list = [-3, 3, 4, 5, -2, -1]\noutput : list = [23, 18, 13, -7, -12, -17]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(mul_n([-3, 3, 4, 5, -2, -1],5),2)),4))",
    "io_inp": [
      -3,
      3,
      4,
      5,
      -2,
      -1
    ],
    "io_out": [
      23,
      18,
      13,
      -7,
      -12,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(mul_n(input,5),2)),4))"
  },
  {
    "input": "input : list = [-2, 5, -5, -1]\noutput : list = [-9, -6, -5, 1]",
    "output": "generated_output : list = add_n(sort_asc([-2, 5, -5, -1]),-4)",
    "io_inp": [
      -2,
      5,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [2, 3, -1, 3, 5]\noutput : list = [-1, 0, -4, 0, 2]",
    "output": "generated_output : list = add_n(add_n(add_n([2, 3, -1, 3, 5],1),-3),-1)",
    "io_inp": [
      2,
      3,
      -1,
      3,
      5
    ],
    "io_out": [
      -1,
      0,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,1),-3),-1)"
  },
  {
    "input": "input : list = [0, -1, -2, -2, 3]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(drop([0, -1, -2, -2, 3],3),2)))",
    "io_inp": [
      0,
      -1,
      -2,
      -2,
      3
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(drop(input,3),2)))"
  },
  {
    "input": "input : list = [4, -5, 3, 0, 2]\noutput : list = [3, 0, 2]",
    "output": "generated_output : list = drop([4, -5, 3, 0, 2],2)",
    "io_inp": [
      4,
      -5,
      3,
      0,
      2
    ],
    "io_out": [
      3,
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 1, -1, 4, -4]\noutput : list = [-4, 4, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(take([-2, 1, -1, 4, -4],3),6),-4)),43)",
    "io_inp": [
      -2,
      1,
      -1,
      4,
      -4
    ],
    "io_out": [
      -4,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(take(input,3),6),-4)),43)"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [10, 8, 3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(add_n([5, 3, -2],1)),-2)),-2)",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      10,
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(add_n(input,1)),-2)),-2)"
  },
  {
    "input": "input : list = [5, 0, 2, -4, 2]\noutput : list = [-129, -1, 63, 63, 159]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(mul_n([5, 0, 2, -4, 2],2)),-4),-4),1)",
    "io_inp": [
      5,
      0,
      2,
      -4,
      2
    ],
    "io_out": [
      -129,
      -1,
      63,
      63,
      159
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(mul_n(input,2)),-4),-4),1)"
  },
  {
    "input": "input : list = [-3, 2, -4, -4]\noutput : list = [2, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-3, 2, -4, -4])",
    "io_inp": [
      -3,
      2,
      -4,
      -4
    ],
    "io_out": [
      2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take([4, -2, -4],1),-1)",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [-5, 1, -1, -2, -2]\noutput : list = [-11, -8, -8, -7, -5]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(sort_asc([-5, 1, -1, -2, -2]),3),8),-4),1)",
    "io_inp": [
      -5,
      1,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -11,
      -8,
      -8,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(sort_asc(input),3),8),-4),1)"
  },
  {
    "input": "input : list = [0, -4, 1, 1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(drop([0, -4, 1, 1],2)),-4))",
    "io_inp": [
      0,
      -4,
      1,
      1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(drop(input,2)),-4))"
  },
  {
    "input": "input : list = [-5, -5, -3, -4, 5, -2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -5, -3, -4, 5, -2],1)",
    "io_inp": [
      -5,
      -5,
      -3,
      -4,
      5,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-7, -4]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(sort_des([-2, -5]),10)),-2),1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(sort_des(input),10)),-2),1)"
  },
  {
    "input": "input : list = [-1, 1, -3, 3]\noutput : list = [0, 2, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(sort_asc([-1, 1, -3, 3]),22))),3)",
    "io_inp": [
      -1,
      1,
      -3,
      3
    ],
    "io_out": [
      0,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(sort_asc(input),22))),3)"
  },
  {
    "input": "input : list = [2, 3, 1, 5, 1, -3]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n(reverse([2, 3, 1, 5, 1, -3]),-1),5),1))",
    "io_inp": [
      2,
      3,
      1,
      5,
      1,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(reverse(input),-1),5),1))"
  },
  {
    "input": "input : list = [-5, -5, 4, 0]\noutput : list = [-4, -4, 6, 14]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n([-5, -5, 4, 0],-5),2)),-4))",
    "io_inp": [
      -5,
      -5,
      4,
      0
    ],
    "io_out": [
      -4,
      -4,
      6,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n(input,-5),2)),-4))"
  },
  {
    "input": "input : list = [-5, 0, -4, -3, -3]\noutput : list = [-3, -3, -4, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, -4, -3, -3])",
    "io_inp": [
      -5,
      0,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 2, -3, 5]\noutput : list = [-1, -1, 4, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([-3, 2, -3, 5]),2))",
    "io_inp": [
      -3,
      2,
      -3,
      5
    ],
    "io_out": [
      -1,
      -1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [4, 3, -5, -4, 5, 5]\noutput : list = [-19]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take([4, 3, -5, -4, 5, 5],1),-5),1))",
    "io_inp": [
      4,
      3,
      -5,
      -4,
      5,
      5
    ],
    "io_out": [
      -19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(input,1),-5),1))"
  },
  {
    "input": "input : list = [3, -5, 2, -4, -3, 0]\noutput : list = [-10, -13, -14, -8, -15]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(drop([3, -5, 2, -4, -3, 0],1),5)),-5),35)",
    "io_inp": [
      3,
      -5,
      2,
      -4,
      -3,
      0
    ],
    "io_out": [
      -10,
      -13,
      -14,
      -8,
      -15
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(drop(input,1),5)),-5),35)"
  },
  {
    "input": "input : list = [5, -1, 5]\noutput : list = [-10, 20, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sort_des([5, -1, 5]),-1))),5)",
    "io_inp": [
      5,
      -1,
      5
    ],
    "io_out": [
      -10,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sort_des(input),-1))),5)"
  },
  {
    "input": "input : list = [3, 3, 2, -3]\noutput : list = [4, 4, 8, 28]",
    "output": "generated_output : list = mul_n(add_n([3, 3, 2, -3],-4),-4)",
    "io_inp": [
      3,
      3,
      2,
      -3
    ],
    "io_out": [
      4,
      4,
      8,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),-4)"
  },
  {
    "input": "input : list = [-1, -3, 5, 4, 5, 2]\noutput : list = [5, 5, 4, 2, -1, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 5, 4, 5, 2])",
    "io_inp": [
      -1,
      -3,
      5,
      4,
      5,
      2
    ],
    "io_out": [
      5,
      5,
      4,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, -4, -2]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(drop([-1, 1, -4, -2],2),3))))",
    "io_inp": [
      -1,
      1,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(drop(input,2),3))))"
  },
  {
    "input": "input : list = [4, 3, 3, 3, -4, -5]\noutput : list = [-11, -10, -3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(drop([4, 3, 3, 3, -4, -5],3),3)),-3))",
    "io_inp": [
      4,
      3,
      3,
      3,
      -4,
      -5
    ],
    "io_out": [
      -11,
      -10,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(drop(input,3),3)),-3))"
  },
  {
    "input": "input : list = [-5, -1, -1, 3]\noutput : list = [-6, -2, -2, 2]",
    "output": "generated_output : list = add_n([-5, -1, -1, 3],-1)",
    "io_inp": [
      -5,
      -1,
      -1,
      3
    ],
    "io_out": [
      -6,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 3, -2, 3]\noutput : list = [-2, 5, 0, 5]",
    "output": "generated_output : list = sub_n([-4, 3, -2, 3],-2)",
    "io_inp": [
      -4,
      3,
      -2,
      3
    ],
    "io_out": [
      -2,
      5,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 3, 0, 4, 4]\noutput : list = [-1, 2, 5, 6, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(sub_n([-3, 3, 0, 4, 4],3))),2),3)",
    "io_inp": [
      -3,
      3,
      0,
      4,
      4
    ],
    "io_out": [
      -1,
      2,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(sub_n(input,3))),2),3)"
  },
  {
    "input": "input : list = [-5, 1, -1, -1, 0]\noutput : list = [7, 6, 5, 5, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(sort_des([-5, 1, -1, -1, 0]),1)),-5))",
    "io_inp": [
      -5,
      1,
      -1,
      -1,
      0
    ],
    "io_out": [
      7,
      6,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(sort_des(input),1)),-5))"
  },
  {
    "input": "input : list = [4, -4, -2, 2, -2]\noutput : list = [2, 6, 2]",
    "output": "generated_output : list = add_n(add_n(take(take(drop([4, -4, -2, 2, -2],2),3),31),1),3)",
    "io_inp": [
      4,
      -4,
      -2,
      2,
      -2
    ],
    "io_out": [
      2,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(drop(input,2),3),31),1),3)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [8, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([4, -3])),-4)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [3, 4, 0, 2]\noutput : list = [-9, -13, 3, -5]",
    "output": "generated_output : list = add_n(mul_n([3, 4, 0, 2],-4),3)",
    "io_inp": [
      3,
      4,
      0,
      2
    ],
    "io_out": [
      -9,
      -13,
      3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-4),3)"
  },
  {
    "input": "input : list = [-2, 2, 3, 5, -5, 3]\noutput : list = [-11, -8, -4]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(add_n([-2, 2, 3, 5, -5, 3],-1),27),5)),3)",
    "io_inp": [
      -2,
      2,
      3,
      5,
      -5,
      3
    ],
    "io_out": [
      -11,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(add_n(input,-1),27),5)),3)"
  },
  {
    "input": "input : list = [2, 2, -1]\noutput : list = [-3, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc([2, 2, -1]),2)))",
    "io_inp": [
      2,
      2,
      -1
    ],
    "io_out": [
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(input),2)))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n(take(reverse(take(sort_asc([-5, -3]),7)),16),4)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sort_asc(input),7)),16),4)"
  },
  {
    "input": "input : list = [-3, 3, -1, -5]\noutput : list = [3, -1, -3, -5]",
    "output": "generated_output : list = reverse(take(sort_asc([-3, 3, -1, -5]),23))",
    "io_inp": [
      -3,
      3,
      -1,
      -5
    ],
    "io_out": [
      3,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),23))"
  },
  {
    "input": "input : list = [4, -4, -3, 3]\noutput : list = [0, 8, 7, 1]",
    "output": "generated_output : list = add_n(mul_n([4, -4, -3, 3],-1),4)",
    "io_inp": [
      4,
      -4,
      -3,
      3
    ],
    "io_out": [
      0,
      8,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),4)"
  },
  {
    "input": "input : list = [-4, 3, 1, -1, 4, 2]\noutput : list = [-18, -12, -8, -6, -4, -2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(add_n([-4, 3, 1, -1, 4, 2],-5),2))))",
    "io_inp": [
      -4,
      3,
      1,
      -1,
      4,
      2
    ],
    "io_out": [
      -18,
      -12,
      -8,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(add_n(input,-5),2))))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_asc(sub_n([2, 2],3))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [3, 3, 1, -3, -2, -2]\noutput : list = [6, 3, 3, -6, -12, -12]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n([3, 3, 1, -3, -2, -2],-3)),-1),-4)",
    "io_inp": [
      3,
      3,
      1,
      -3,
      -2,
      -2
    ],
    "io_out": [
      6,
      3,
      3,
      -6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(input,-3)),-1),-4)"
  },
  {
    "input": "input : list = [-3, 2, -5, 0, 0]\noutput : list = [0, 6, 15, 15, 21]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sort_des([-3, 2, -5, 0, 0]),5),1),3))",
    "io_inp": [
      -3,
      2,
      -5,
      0,
      0
    ],
    "io_out": [
      0,
      6,
      15,
      15,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sort_des(input),5),1),3))"
  },
  {
    "input": "input : list = [0, 3, 2]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc([0, 3, 2]))),5)",
    "io_inp": [
      0,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(input))),5)"
  },
  {
    "input": "input : list = [-2, 3, 0, -4, -5, -5]\noutput : list = [-2, -2, -1, 1, 3, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse([-2, 3, 0, -4, -5, -5])),5),-2)",
    "io_inp": [
      -2,
      3,
      0,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(input)),5),-2)"
  },
  {
    "input": "input : list = [3, 4, -3, 0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([3, 4, -3, 0, 2],3)))",
    "io_inp": [
      3,
      4,
      -3,
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,3)))"
  },
  {
    "input": "input : list = [3, -5, 5, 2, 2]\noutput : list = [-10, -45, -45, -50, -60]",
    "output": "generated_output : list = take(sort_des(mul_n(add_n(sub_n([3, -5, 5, 2, 2],-5),2),-5)),38)",
    "io_inp": [
      3,
      -5,
      5,
      2,
      2
    ],
    "io_out": [
      -10,
      -45,
      -45,
      -50,
      -60
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(add_n(sub_n(input,-5),2),-5)),38)"
  },
  {
    "input": "input : list = [3, 5, -5, -4, 4, -5]\noutput : list = [1, 3, -7, -6, 2, -7]",
    "output": "generated_output : list = sub_n([3, 5, -5, -4, 4, -5],2)",
    "io_inp": [
      3,
      5,
      -5,
      -4,
      4,
      -5
    ],
    "io_out": [
      1,
      3,
      -7,
      -6,
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-8, -32]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(reverse([-1, 1])),3),-5),-4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -8,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(reverse(input)),3),-5),-4)"
  },
  {
    "input": "input : list = [1, 5, 1, 4, 2, 3]\noutput : list = [-14, -10]",
    "output": "generated_output : list = add_n(add_n(sub_n(take(add_n([1, 5, 1, 4, 2, 3],-3),2),5),-4),-3)",
    "io_inp": [
      1,
      5,
      1,
      4,
      2,
      3
    ],
    "io_out": [
      -14,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(take(add_n(input,-3),2),5),-4),-3)"
  },
  {
    "input": "input : list = [-3, -3, 0, -5, -4]\noutput : list = [10, 9, 8, 8, 5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(mul_n([-3, -3, 0, -5, -4],-1)),-1)),4)",
    "io_inp": [
      -3,
      -3,
      0,
      -5,
      -4
    ],
    "io_out": [
      10,
      9,
      8,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(mul_n(input,-1)),-1)),4)"
  },
  {
    "input": "input : list = [3, -3, 4, -1, -4]\noutput : list = [-6, -5, -3, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([3, -3, 4, -1, -4])),-2)",
    "io_inp": [
      3,
      -3,
      4,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [-4, -2, -1, 3, 4]\noutput : list = [2, 3, 7]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop([-4, -2, -1, 3, 4],2),2)),4),-1)",
    "io_inp": [
      -4,
      -2,
      -1,
      3,
      4
    ],
    "io_out": [
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop(input,2),2)),4),-1)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [5, 3]",
    "output": "generated_output : list = sub_n(sort_des([-1, 1]),-4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(sort_des([2, 0]))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(reverse([0, 3])))))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [0, 3, 4, 1, 3, -1]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(take([0, 3, 4, 1, 3, -1],2))),-3))",
    "io_inp": [
      0,
      3,
      4,
      1,
      3,
      -1
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(take(input,2))),-3))"
  },
  {
    "input": "input : list = [2, 3, 3, 4, 0]\noutput : list = [2, 6, 5, 5, 4]",
    "output": "generated_output : list = reverse(take(sub_n([2, 3, 3, 4, 0],-2),21))",
    "io_inp": [
      2,
      3,
      3,
      4,
      0
    ],
    "io_out": [
      2,
      6,
      5,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-2),21))"
  },
  {
    "input": "input : list = [2, 1, 1, 2, 2]\noutput : list = [8, 4, 4, 8, 8]",
    "output": "generated_output : list = mul_n([2, 1, 1, 2, 2],4)",
    "io_inp": [
      2,
      1,
      1,
      2,
      2
    ],
    "io_out": [
      8,
      4,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(add_n(sort_asc([3, 0]),2),3)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),2),3)"
  },
  {
    "input": "input : list = [-4, -1, -5, -1, -2]\noutput : list = [-6, -3, -7]",
    "output": "generated_output : list = add_n(take([-4, -1, -5, -1, -2],3),-2)",
    "io_inp": [
      -4,
      -1,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-2)"
  },
  {
    "input": "input : list = [-1, 4, 4, -5, -4]\noutput : list = [-6, -5, 3]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(drop([-1, 4, 4, -5, -4],2)))),-1)",
    "io_inp": [
      -1,
      4,
      4,
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(drop(input,2)))),-1)"
  },
  {
    "input": "input : list = [-3, -1, -1, -3, -4]\noutput : list = [-3, -3, -27, -27, -39]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des([-3, -1, -1, -3, -4]),4),3),3)",
    "io_inp": [
      -3,
      -1,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -27,
      -27,
      -39
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(input),4),3),3)"
  },
  {
    "input": "input : list = [3, -2, -1, 5]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take([3, -2, -1, 5],1))))",
    "io_inp": [
      3,
      -2,
      -1,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(input,1))))"
  },
  {
    "input": "input : list = [4, -3, 2, 0, -1, 3]\noutput : list = [-21, -16, -11, -1, 4, 14]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(mul_n([4, -3, 2, 0, -1, 3],-5))),-1),40)",
    "io_inp": [
      4,
      -3,
      2,
      0,
      -1,
      3
    ],
    "io_out": [
      -21,
      -16,
      -11,
      -1,
      4,
      14
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(mul_n(input,-5))),-1),40)"
  },
  {
    "input": "input : list = [-2, 0, -1, -5]\noutput : list = [2, -2, -6, -18]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(reverse([-2, 0, -1, -5])),4),2),20)",
    "io_inp": [
      -2,
      0,
      -1,
      -5
    ],
    "io_out": [
      2,
      -2,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(reverse(input)),4),2),20)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(reverse(take(mul_n(reverse([-1, -1]),1),7)),4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(reverse(input),1),7)),4)"
  },
  {
    "input": "input : list = [1, -2, 3, 2, 2, -2]\noutput : list = [2, -4, 6]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(take([1, -2, 3, 2, 2, -2],3),2)),38))",
    "io_inp": [
      1,
      -2,
      3,
      2,
      2,
      -2
    ],
    "io_out": [
      2,
      -4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(take(input,3),2)),38))"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = sub_n([-1, 2, 4],4)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 5, 3, 4, -2, 1]\noutput : list = [-10, -9, -8, -6, -3, 0]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([-5, 5, 3, 4, -2, 1],-1)),5)",
    "io_inp": [
      -5,
      5,
      3,
      4,
      -2,
      1
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,-1)),5)"
  },
  {
    "input": "input : list = [5, -1, -1, 1, -4, 0]\noutput : list = [-40, -20, -15, -10, -10, 5]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(reverse([5, -1, -1, 1, -4, 0]))),-3),-5)",
    "io_inp": [
      5,
      -1,
      -1,
      1,
      -4,
      0
    ],
    "io_out": [
      -40,
      -20,
      -15,
      -10,
      -10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(reverse(input))),-3),-5)"
  },
  {
    "input": "input : list = [4, -4, 2, 2, -2, 5]\noutput : list = [10, 7, 7, 3, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(take(drop([4, -4, 2, 2, -2, 5],1),12)),17),-5)",
    "io_inp": [
      4,
      -4,
      2,
      2,
      -2,
      5
    ],
    "io_out": [
      10,
      7,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(drop(input,1),12)),17),-5)"
  },
  {
    "input": "input : list = [-1, -3, 2, 0, 1, 0]\noutput : list = [-1, 1, 2, 2, 3, 4]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des([-1, -3, 2, 0, 1, 0])),-4),2)",
    "io_inp": [
      -1,
      -3,
      2,
      0,
      1,
      0
    ],
    "io_out": [
      -1,
      1,
      2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(input)),-4),2)"
  },
  {
    "input": "input : list = [1, 1, 3, -2, 5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(take([1, 1, 3, -2, 5],2))),-4))",
    "io_inp": [
      1,
      1,
      3,
      -2,
      5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(take(input,2))),-4))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(reverse([1, -1])))),1)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(reverse(input)))),1)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [-15, 3, 9]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n([-4, -2, 4],-3)),-3)))",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      -15,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(mul_n(input,-3)),-3)))"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [0, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 0, -5])",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, -5, 2, 1, -4]\noutput : list = [-5, -4, 1, 2, 2, 3]",
    "output": "generated_output : list = reverse(sort_des([3, 2, -5, 2, 1, -4]))",
    "io_inp": [
      3,
      2,
      -5,
      2,
      1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, 1, -5, -1, -2]\noutput : list = [33, 28, 48, 18, 8]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(sub_n([3, 1, -5, -1, -2],5)),-5),-2),24)",
    "io_inp": [
      3,
      1,
      -5,
      -1,
      -2
    ],
    "io_out": [
      33,
      28,
      48,
      18,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(sub_n(input,5)),-5),-2),24)"
  },
  {
    "input": "input : list = [-4, 4, -5, 1, 2, -3]\noutput : list = [-23, 17, -28, 2, 7, -18]",
    "output": "generated_output : list = sub_n(mul_n([-4, 4, -5, 1, 2, -3],5),3)",
    "io_inp": [
      -4,
      4,
      -5,
      1,
      2,
      -3
    ],
    "io_out": [
      -23,
      17,
      -28,
      2,
      7,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),3)"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = sort_asc([0, 4, -1])",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, 0, -5]\noutput : list = [0, 0, 0, -100]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc([0, 0, 0, -5]),5),27)),4)",
    "io_inp": [
      0,
      0,
      0,
      -5
    ],
    "io_out": [
      0,
      0,
      0,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc(input),5),27)),4)"
  },
  {
    "input": "input : list = [1, -1, -2, -2, 0]\noutput : list = [9, 8, 7, 6, 6]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(sort_asc([1, -1, -2, -2, 0]),4)),43),-4)",
    "io_inp": [
      1,
      -1,
      -2,
      -2,
      0
    ],
    "io_out": [
      9,
      8,
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(sort_asc(input),4)),43),-4)"
  },
  {
    "input": "input : list = [-4, -3, -2, -4, 1]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take([-4, -3, -2, -4, 1],1)),1),-2)",
    "io_inp": [
      -4,
      -3,
      -2,
      -4,
      1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(input,1)),1),-2)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-36, -1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(add_n([4, -3],-4)),5)),1)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -36,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(add_n(input,-4)),5)),1)"
  },
  {
    "input": "input : list = [2, -4, 2, -3, 2]\noutput : list = [-9, -9, -9, -4, -3]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_des([2, -4, 2, -3, 2]),4),1),-1),3)",
    "io_inp": [
      2,
      -4,
      2,
      -3,
      2
    ],
    "io_out": [
      -9,
      -9,
      -9,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_des(input),4),1),-1),3)"
  },
  {
    "input": "input : list = [1, -4, 4, 3, -2]\noutput : list = [-1, 9]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(take([1, -4, 4, 3, -2],2),6),-2),-1))",
    "io_inp": [
      1,
      -4,
      4,
      3,
      -2
    ],
    "io_out": [
      -1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(take(input,2),6),-2),-1))"
  },
  {
    "input": "input : list = [5, -3, 1]\noutput : list = [-8, 4, 16]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse([5, -3, 1])),3),-1)",
    "io_inp": [
      5,
      -3,
      1
    ],
    "io_out": [
      -8,
      4,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(input)),3),-1)"
  },
  {
    "input": "input : list = [-5, -2, 5, -3, -2]\noutput : list = [-4, -1, 6, -2, -1]",
    "output": "generated_output : list = add_n([-5, -2, 5, -3, -2],1)",
    "io_inp": [
      -5,
      -2,
      5,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -1,
      6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(mul_n([3, 2],2)),6),19))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(mul_n(input,2)),6),19))"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [-12, 3, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n([2, -3, 2],-1)),3))",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      -12,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(input,-1)),3))"
  },
  {
    "input": "input : list = [-1, -3, 2, -5]\noutput : list = [2, -1, -3, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(take(sort_asc([-1, -3, 2, -5]),10))),23)",
    "io_inp": [
      -1,
      -3,
      2,
      -5
    ],
    "io_out": [
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(sort_asc(input),10))),23)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [20, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des([4, 0])),5)))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = take(sort_asc([-1, 5, 2]),7)",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [-2, 0, -5, 2, 2]\noutput : list = [-9, -9, -11, -13, -16]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(sort_des([-2, 0, -5, 2, 2]),-4),-4),35),3)",
    "io_inp": [
      -2,
      0,
      -5,
      2,
      2
    ],
    "io_out": [
      -9,
      -9,
      -11,
      -13,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(sort_des(input),-4),-4),35),3)"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [6, 5]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take(sort_des([0, 1, -1]),2))),-5)",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(sort_des(input),2))),-5)"
  },
  {
    "input": "input : list = [-1, 4, -5, -5]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(take([-1, 4, -5, -5],2))",
    "io_inp": [
      -1,
      4,
      -5,
      -5
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [-200, -50, -225]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n([-5, 2, -4],4),-5),-5))",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      -200,
      -50,
      -225
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(input,4),-5),-5))"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = sort_asc([1, 0, -1])",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 2, 1]\noutput : list = [1, 2, 5, -5]",
    "output": "generated_output : list = reverse([-5, 5, 2, 1])",
    "io_inp": [
      -5,
      5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, -1, -1, 4, -3]\noutput : list = [-1, -1, 4, -3]",
    "output": "generated_output : list = drop([-4, -3, -1, -1, 4, -3],2)",
    "io_inp": [
      -4,
      -3,
      -1,
      -1,
      4,
      -3
    ],
    "io_out": [
      -1,
      -1,
      4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 4, 4, 3, -3]\noutput : list = [12, 12, 11, 8, 5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(sub_n([0, 4, 4, 3, -3],-5),5),-3)))",
    "io_inp": [
      0,
      4,
      4,
      3,
      -3
    ],
    "io_out": [
      12,
      12,
      11,
      8,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(sub_n(input,-5),5),-3)))"
  },
  {
    "input": "input : list = [4, 5, -1, 1, -4, 0]\noutput : list = [125, 25]",
    "output": "generated_output : list = drop(mul_n(take(mul_n(add_n([4, 5, -1, 1, -4, 0],-1),-5),12),5),4)",
    "io_inp": [
      4,
      5,
      -1,
      1,
      -4,
      0
    ],
    "io_out": [
      125,
      25
    ],
    "output_masked": "generated_output : list = drop(mul_n(take(mul_n(add_n(input,-1),-5),12),5),4)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [5, 3, -3]",
    "output": "generated_output : list = sort_des([-3, 3, 5])",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, -1, -5]\noutput : list = [-7, -6, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_asc([-4, 0, -1, -5])))),-2)",
    "io_inp": [
      -4,
      0,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-6, -5, -5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sort_asc([-2, -1, -1])),-3)),-1)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sort_asc(input)),-3)),-1)"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [3, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, 3])",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -1, -2, 2]\noutput : list = [2, -1, -2, -2]",
    "output": "generated_output : list = sort_des(reverse([-2, -1, -2, 2]))",
    "io_inp": [
      -2,
      -1,
      -2,
      2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-3, 5, -2, -4, 0, 5]\noutput : list = [-10, -9, -8, -6, -1, -1]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(sub_n([-3, 5, -2, -4, 0, 5],2)),-2),2),46)",
    "io_inp": [
      -3,
      5,
      -2,
      -4,
      0,
      5
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(sub_n(input,2)),-2),2),46)"
  },
  {
    "input": "input : list = [4, -2, -2, -4, 4, -5]\noutput : list = [48, 48, -24, -24, -48, -60]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([4, -2, -2, -4, 4, -5],-3),-4))",
    "io_inp": [
      4,
      -2,
      -2,
      -4,
      4,
      -5
    ],
    "io_out": [
      48,
      48,
      -24,
      -24,
      -48,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-3),-4))"
  },
  {
    "input": "input : list = [5, -2, 2, 4, 3, 1]\noutput : list = [3, 6, 7, 8, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(add_n([5, -2, 2, 4, 3, 1],5)))))",
    "io_inp": [
      5,
      -2,
      2,
      4,
      3,
      1
    ],
    "io_out": [
      3,
      6,
      7,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(add_n(input,5)))))"
  },
  {
    "input": "input : list = [-2, -5, -5, -1, -1, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(take([-2, -5, -5, -1, -1, -5],2))",
    "io_inp": [
      -2,
      -5,
      -5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [0, 2, 5, 5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(drop([0, 2, 5, 5, -4],3),5),5)))",
    "io_inp": [
      0,
      2,
      5,
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(drop(input,3),5),5)))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [7, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_des([-3, 4]))),-5),-2)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_des(input))),-5),-2)"
  },
  {
    "input": "input : list = [4, 4, 2, -1]\noutput : list = [-6, -3, -1, -1]",
    "output": "generated_output : list = add_n(sort_asc([4, 4, 2, -1]),-5)",
    "io_inp": [
      4,
      4,
      2,
      -1
    ],
    "io_out": [
      -6,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc([5, 4]),3),-1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),3),-1)"
  },
  {
    "input": "input : list = [-3, -3, 1, -5, -4]\noutput : list = [-2, 2, -4, -3]",
    "output": "generated_output : list = drop(sub_n([-3, -3, 1, -5, -4],-1),1)",
    "io_inp": [
      -3,
      -3,
      1,
      -5,
      -4
    ],
    "io_out": [
      -2,
      2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-1),1)"
  },
  {
    "input": "input : list = [5, 5, 4, 4, -4]\noutput : list = [5, 5, 4, 4, -4]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(sub_n([5, 5, 4, 4, -4],-1))),2),-3)",
    "io_inp": [
      5,
      5,
      4,
      4,
      -4
    ],
    "io_out": [
      5,
      5,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(sub_n(input,-1))),2),-3)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-6, 6, 6]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n([-3, -3, 1],4),15),5),-3))",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -6,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n(input,4),15),5),-3))"
  },
  {
    "input": "input : list = [5, 2, -3, 5, 1, -4]\noutput : list = [-4, 4, 0, -5]",
    "output": "generated_output : list = add_n(drop(add_n(take(sub_n([5, 2, -3, 5, 1, -4],1),24),1),2),-1)",
    "io_inp": [
      5,
      2,
      -3,
      5,
      1,
      -4
    ],
    "io_out": [
      -4,
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(take(sub_n(input,1),24),1),2),-1)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [4, 9]",
    "output": "generated_output : list = sub_n(sub_n([-2, 3],-2),-4)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-4)"
  },
  {
    "input": "input : list = [3, -5, -5, 4, 3, -4]\noutput : list = [12, -9, -12, 15, 15]",
    "output": "generated_output : list = mul_n(reverse(mul_n(drop([3, -5, -5, 4, 3, -4],1),1)),-3)",
    "io_inp": [
      3,
      -5,
      -5,
      4,
      3,
      -4
    ],
    "io_out": [
      12,
      -9,
      -12,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(drop(input,1),1)),-3)"
  },
  {
    "input": "input : list = [-5, 3, 5]\noutput : list = [15, -9, -15]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(mul_n([-5, 3, 5],-3),14))))",
    "io_inp": [
      -5,
      3,
      5
    ],
    "io_out": [
      15,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(mul_n(input,-3),14))))"
  },
  {
    "input": "input : list = [-3, 1, -3, -3, 0]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take([-3, 1, -3, -3, 0],2)",
    "io_inp": [
      -3,
      1,
      -3,
      -3,
      0
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [11]",
    "output": "generated_output : list = add_n(sort_des(sub_n(drop(drop([-5, 3, 4],1),1),-2)),5)",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(drop(drop(input,1),1),-2)),5)"
  },
  {
    "input": "input : list = [0, 1, -1, -5, -3]\noutput : list = [3, 0, -3, -9, -15]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc(sort_des([0, 1, -1, -5, -3]))),3),9)",
    "io_inp": [
      0,
      1,
      -1,
      -5,
      -3
    ],
    "io_out": [
      3,
      0,
      -3,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(sort_des(input))),3),9)"
  },
  {
    "input": "input : list = [4, 3, -2, -4, 0, 0]\noutput : list = [4, 3, 0, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([4, 3, -2, -4, 0, 0]))",
    "io_inp": [
      4,
      3,
      -2,
      -4,
      0,
      0
    ],
    "io_out": [
      4,
      3,
      0,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 5, 0, -1, -5, 4]\noutput : list = [-9, -8, -5, -4, 0, 1]",
    "output": "generated_output : list = sub_n(sort_asc([-4, 5, 0, -1, -5, 4]),4)",
    "io_inp": [
      -4,
      5,
      0,
      -1,
      -5,
      4
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-7, 1]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(sort_des([0, -2]),4),-1)),15)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(sort_des(input),4),-1)),15)"
  },
  {
    "input": "input : list = [-5, 0, 4, -3, -2]\noutput : list = [2, 4, 5, 7, 11]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n([-5, 0, 4, -3, -2],4),-3)),31)",
    "io_inp": [
      -5,
      0,
      4,
      -3,
      -2
    ],
    "io_out": [
      2,
      4,
      5,
      7,
      11
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(input,4),-3)),31)"
  },
  {
    "input": "input : list = [-1, -4, -3, 2, 1, -5]\noutput : list = [-6, -7, -9, -11, -12, -13]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(sort_des([-1, -4, -3, 2, 1, -5]),-3),-5)))",
    "io_inp": [
      -1,
      -4,
      -3,
      2,
      1,
      -5
    ],
    "io_out": [
      -6,
      -7,
      -9,
      -11,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(sort_des(input),-3),-5)))"
  },
  {
    "input": "input : list = [1, -4, 1, -2]\noutput : list = [-4, -2, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(reverse([1, -4, 1, -2]),1),29)))",
    "io_inp": [
      1,
      -4,
      1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(reverse(input),1),29)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(reverse([-4, 2]),13))))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(reverse(input),13))))"
  },
  {
    "input": "input : list = [2, 3, -1, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take([2, 3, -1, -1],1))",
    "io_inp": [
      2,
      3,
      -1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc([1, -2, 2])),11))",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(input)),11))"
  },
  {
    "input": "input : list = [-2, -1, -3, 3, -1]\noutput : list = [12, 16, 8]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(add_n([-2, -1, -3, 3, -1],4),4),1),3),-3)",
    "io_inp": [
      -2,
      -1,
      -3,
      3,
      -1
    ],
    "io_out": [
      12,
      16,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(add_n(input,4),4),1),3),-3)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(sort_asc(take([-3, -3, -1],1)),-1)",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),-1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([5, -2])),1)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),1)"
  },
  {
    "input": "input : list = [-2, 1, 3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(take(take(sort_des(drop([-2, 1, 3, -3],2)),15),34))",
    "io_inp": [
      -2,
      1,
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(drop(input,2)),15),34))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sort_des([-2, 1]),-1)),4))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sort_des(input),-1)),4))"
  },
  {
    "input": "input : list = [1, 1, -1, -4, 2, 3]\noutput : list = [6, 4, 2, 2, -2, -8]",
    "output": "generated_output : list = mul_n(sort_des([1, 1, -1, -4, 2, 3]),2)",
    "io_inp": [
      1,
      1,
      -1,
      -4,
      2,
      3
    ],
    "io_out": [
      6,
      4,
      2,
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-2, 4, -5, -2, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(drop([-2, 4, -5, -2, -4, -4],4)))",
    "io_inp": [
      -2,
      4,
      -5,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,4)))"
  },
  {
    "input": "input : list = [-3, 0, 4, -1, 0, 2]\noutput : list = [7, 5, 3, 3, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des([-3, 0, 4, -1, 0, 2]),-3)",
    "io_inp": [
      -3,
      0,
      4,
      -1,
      0,
      2
    ],
    "io_out": [
      7,
      5,
      3,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [-10, -6, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_asc([5, -5, -1]),-2)),3))",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      -10,
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_asc(input),-2)),3))"
  },
  {
    "input": "input : list = [-4, -4, -1, -3, -2]\noutput : list = [-20, -20, -5, -15, -10]",
    "output": "generated_output : list = mul_n([-4, -4, -1, -3, -2],5)",
    "io_inp": [
      -4,
      -4,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -20,
      -20,
      -5,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(mul_n([-3, -4, -3],1)),18)))",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(mul_n(input,1)),18)))"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(take([-3, -1, 1],1)),4)))",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(take(input,1)),4)))"
  },
  {
    "input": "input : list = [2, 3, -3, -4, 4]\noutput : list = [-6, -5, -11, -12, -4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(add_n([2, 3, -3, -4, 4],-4),3),3),1),3)",
    "io_inp": [
      2,
      3,
      -3,
      -4,
      4
    ],
    "io_out": [
      -6,
      -5,
      -11,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(add_n(input,-4),3),3),1),3)"
  },
  {
    "input": "input : list = [-5, -3, -4, -2, 1, -3]\noutput : list = [19, 11, 15, 7]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(take([-5, -3, -4, -2, 1, -3],4),-4),-4),-1),-4)",
    "io_inp": [
      -5,
      -3,
      -4,
      -2,
      1,
      -3
    ],
    "io_out": [
      19,
      11,
      15,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(take(input,4),-4),-4),-1),-4)"
  },
  {
    "input": "input : list = [-5, 3, 0, 0, -1]\noutput : list = [0, 1, 1, 4, -4]",
    "output": "generated_output : list = sub_n(reverse(add_n([-5, 3, 0, 0, -1],-2)),-3)",
    "io_inp": [
      -5,
      3,
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      1,
      1,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,-2)),-3)"
  },
  {
    "input": "input : list = [3, -3, -3, 1, 0]\noutput : list = [10, 10, -5, -10]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(drop([3, -3, -3, 1, 0],1)),-1),-5)",
    "io_inp": [
      3,
      -3,
      -3,
      1,
      0
    ],
    "io_out": [
      10,
      10,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(drop(input,1)),-1),-5)"
  },
  {
    "input": "input : list = [-4, -4, 1, -2, -2, 2]\noutput : list = [10, 9, 6, 6, 4, 4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(add_n([-4, -4, 1, -2, -2, 2],2),-4),-3),5))",
    "io_inp": [
      -4,
      -4,
      1,
      -2,
      -2,
      2
    ],
    "io_out": [
      10,
      9,
      6,
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(add_n(input,2),-4),-3),5))"
  },
  {
    "input": "input : list = [3, -2, 3, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = drop(sub_n(reverse(add_n(sub_n([3, -2, 3, -5],3),-5)),-5),2)",
    "io_inp": [
      3,
      -2,
      3,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(sub_n(reverse(add_n(sub_n(input,3),-5)),-5),2)"
  },
  {
    "input": "input : list = [0, 1, 5, -2, 3, 5]\noutput : list = [3, 5, 6, 8, 10, 10]",
    "output": "generated_output : list = sort_asc(add_n([0, 1, 5, -2, 3, 5],5))",
    "io_inp": [
      0,
      1,
      5,
      -2,
      3,
      5
    ],
    "io_out": [
      3,
      5,
      6,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [2, -3, 5, -4, 5]\noutput : list = [5, 5, 2, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n([2, -3, 5, -4, 5],1),1)))",
    "io_inp": [
      2,
      -3,
      5,
      -4,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(input,1),1)))"
  },
  {
    "input": "input : list = [3, -4, 4, 4, 5]\noutput : list = [5]",
    "output": "generated_output : list = drop(sort_asc([3, -4, 4, 4, 5]),4)",
    "io_inp": [
      3,
      -4,
      4,
      4,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-2, -2, 2, 1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(drop([-2, -2, 2, 1, 0],3)))",
    "io_inp": [
      -2,
      -2,
      2,
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,3)))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse([-5, -2])",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5, -3, 0, -2]\noutput : list = [3, 5, 6, 8, 12]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sort_des([4, -5, -3, 0, -2]),5)),3))",
    "io_inp": [
      4,
      -5,
      -3,
      0,
      -2
    ],
    "io_out": [
      3,
      5,
      6,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(sort_des(input),5)),3))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [180]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(drop(reverse([3, -4]),1),5),4),3)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      180
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(drop(reverse(input),1),5),4),3)"
  },
  {
    "input": "input : list = [-1, -2, -4, -5, -5]\noutput : list = [-7, -9, -10, -10]",
    "output": "generated_output : list = take(sort_des(reverse(drop(sub_n([-1, -2, -4, -5, -5],5),1))),6)",
    "io_inp": [
      -1,
      -2,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -7,
      -9,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(drop(sub_n(input,5),1))),6)"
  },
  {
    "input": "input : list = [-5, -5, -2, 3]\noutput : list = [-15, 10, 25, 25]",
    "output": "generated_output : list = reverse(mul_n([-5, -5, -2, 3],-5))",
    "io_inp": [
      -5,
      -5,
      -2,
      3
    ],
    "io_out": [
      -15,
      10,
      25,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-2, 2, -2, -3]\noutput : list = [-6, -5, -5, -1]",
    "output": "generated_output : list = sort_asc(add_n([-2, 2, -2, -3],-3))",
    "io_inp": [
      -2,
      2,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [-1, -5, 4, -5, -4, -4]\noutput : list = [8, 3, 0, 0, -1, -1]",
    "output": "generated_output : list = add_n(sort_des(take(take(sort_des([-1, -5, 4, -5, -4, -4]),13),39)),4)",
    "io_inp": [
      -1,
      -5,
      4,
      -5,
      -4,
      -4
    ],
    "io_out": [
      8,
      3,
      0,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sort_des(input),13),39)),4)"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, -3, 3]))",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 0, -1, -4]\noutput : list = [20, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(take([-4, 0, -1, -4],2),-5))))",
    "io_inp": [
      -4,
      0,
      -1,
      -4
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(take(input,2),-5))))"
  },
  {
    "input": "input : list = [2, 3, -3, 0, -1, -3]\noutput : list = [-4, -4, -12, -16, -24, -28]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc([2, 3, -3, 0, -1, -3]),3),-4),-4)",
    "io_inp": [
      2,
      3,
      -3,
      0,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -12,
      -16,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(input),3),-4),-4)"
  },
  {
    "input": "input : list = [-2, 5, 0, 2, -3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(add_n([-2, 5, 0, 2, -3],2),1))",
    "io_inp": [
      -2,
      5,
      0,
      2,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,2),1))"
  },
  {
    "input": "input : list = [-4, -4, -5, -3, -4]\noutput : list = [6, 8, 8, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse([-4, -4, -5, -3, -4]))),-2))",
    "io_inp": [
      -4,
      -4,
      -5,
      -3,
      -4
    ],
    "io_out": [
      6,
      8,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse(input))),-2))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(sort_asc([0, -1]),10),1)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(sort_asc(input),10),1)))"
  },
  {
    "input": "input : list = [1, -2, -3, -1, 0, 5]\noutput : list = [5, 1, 0, -1, -2, -3]",
    "output": "generated_output : list = sort_des([1, -2, -3, -1, 0, 5])",
    "io_inp": [
      1,
      -2,
      -3,
      -1,
      0,
      5
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4, 4, 0, -5]\noutput : list = [-5, -4, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(drop([-3, -4, 4, 0, -5],1)),10)))",
    "io_inp": [
      -3,
      -4,
      4,
      0,
      -5
    ],
    "io_out": [
      -5,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(drop(input,1)),10)))"
  },
  {
    "input": "input : list = [3, 2, 5, -2, 4, 0]\noutput : list = [-15, -12, -9, -6, 0, 6]",
    "output": "generated_output : list = mul_n(sort_des([3, 2, 5, -2, 4, 0]),-3)",
    "io_inp": [
      3,
      2,
      5,
      -2,
      4,
      0
    ],
    "io_out": [
      -15,
      -12,
      -9,
      -6,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [3, -1, -4, 1]\noutput : list = [18, -6, -24, 6]",
    "output": "generated_output : list = mul_n(mul_n([3, -1, -4, 1],2),3)",
    "io_inp": [
      3,
      -1,
      -4,
      1
    ],
    "io_out": [
      18,
      -6,
      -24,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [-2, -4, -2, 2, 5, -2]\noutput : list = [4, 2]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(take([-2, -4, -2, 2, 5, -2],2)))),-1)",
    "io_inp": [
      -2,
      -4,
      -2,
      2,
      5,
      -2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(take(input,2)))),-1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(sort_des([-4, -4])),2),1),25)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(sort_des(input)),2),1),25)"
  },
  {
    "input": "input : list = [-2, -5, -2, -5]\noutput : list = [-8, -8, -5, -5]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sort_des([-2, -5, -2, -5]),4)),-5),-2)",
    "io_inp": [
      -2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sort_des(input),4)),-5),-2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [1, -11]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc([5, -1]),-2))),-1)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      1,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc(input),-2))),-1)"
  },
  {
    "input": "input : list = [-5, -2, 3, -3, 4]\noutput : list = [8, 7, 2, 1, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc([-5, -2, 3, -3, 4])))),4)",
    "io_inp": [
      -5,
      -2,
      3,
      -3,
      4
    ],
    "io_out": [
      8,
      7,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [14, 12]",
    "output": "generated_output : list = mul_n(reverse(sub_n([3, 4],-3)),2)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      14,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-3)),2)"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [1, 3, 7]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(sub_n([-1, 5, 1],-2)),-3),38),-3)",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      1,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(sub_n(input,-2)),-3),38),-3)"
  },
  {
    "input": "input : list = [-5, 1, -5, 0]\noutput : list = [0, -6, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(take(drop([-5, 1, -5, 0],1),4),1),-5),3)",
    "io_inp": [
      -5,
      1,
      -5,
      0
    ],
    "io_out": [
      0,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(drop(input,1),4),1),-5),3)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = sort_des(reverse([-3, -1, 3]))",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, 5, 3, 0]\noutput : list = [5, 3, 1, 0]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(add_n([1, 5, 3, 0],-4)),-3),3),-4)",
    "io_inp": [
      1,
      5,
      3,
      0
    ],
    "io_out": [
      5,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(add_n(input,-4)),-3),3),-4)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [5, 5, -5]",
    "output": "generated_output : list = reverse([-5, 5, 5])",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(take(reverse([2, 1]),2),4)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),2),4)"
  },
  {
    "input": "input : list = [5, -2, 1, 0, -3, -3]\noutput : list = [-5, -5, -4, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_asc([5, -2, 1, 0, -3, -3]),-2),-4),-4))",
    "io_inp": [
      5,
      -2,
      1,
      0,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_asc(input),-2),-4),-4))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [6, 4]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n(sort_asc([-3, -2]),3),-2),-4),-2)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(sort_asc(input),3),-2),-4),-2)"
  },
  {
    "input": "input : list = [3, 3, 4, -2, -1, -3]\noutput : list = [-10, -10]",
    "output": "generated_output : list = mul_n(add_n(take([3, 3, 4, -2, -1, -3],2),-5),5)",
    "io_inp": [
      3,
      3,
      4,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,2),-5),5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([-3, 2])))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, 1, 2, 1]\noutput : list = [-1, -2, -1, -4]",
    "output": "generated_output : list = take(mul_n(reverse([4, 1, 2, 1]),-1),29)",
    "io_inp": [
      4,
      1,
      2,
      1
    ],
    "io_out": [
      -1,
      -2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),-1),29)"
  },
  {
    "input": "input : list = [-3, 5, -5, -4]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc(take(take([-3, 5, -5, -4],2),5))",
    "io_inp": [
      -3,
      5,
      -5,
      -4
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,2),5))"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(sort_des(take(mul_n(drop([-2, 1, 3],1),-1),6)),2)",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(drop(input,1),-1),6)),2)"
  },
  {
    "input": "input : list = [3, -4, 3, -2]\noutput : list = [-16, -8, 12, 12]",
    "output": "generated_output : list = reverse(mul_n(sort_des([3, -4, 3, -2]),4))",
    "io_inp": [
      3,
      -4,
      3,
      -2
    ],
    "io_out": [
      -16,
      -8,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(sort_asc([-1, -5])),24)))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(sort_asc(input)),24)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [0, 6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(sub_n([2, -4],-4)),4)),-4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(sub_n(input,-4)),4)),-4)"
  },
  {
    "input": "input : list = [2, -3, 4, -3, -3]\noutput : list = [22, 14, -6, -6, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_asc([2, -3, 4, -3, -3]),4),-5),1))",
    "io_inp": [
      2,
      -3,
      4,
      -3,
      -3
    ],
    "io_out": [
      22,
      14,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_asc(input),4),-5),1))"
  },
  {
    "input": "input : list = [3, -1, -5, -5, 0]\noutput : list = [-5, -1, 3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(take([3, -1, -5, -5, 0],3)))))",
    "io_inp": [
      3,
      -1,
      -5,
      -5,
      0
    ],
    "io_out": [
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(take(input,3)))))"
  },
  {
    "input": "input : list = [-2, -3, -2, 3, -5, -4]\noutput : list = [11, 6]",
    "output": "generated_output : list = mul_n(sub_n(drop(add_n(sort_asc([-2, -3, -2, 3, -5, -4]),-4),4),5),-1)",
    "io_inp": [
      -2,
      -3,
      -2,
      3,
      -5,
      -4
    ],
    "io_out": [
      11,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(add_n(sort_asc(input),-4),4),5),-1)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-10, -5]",
    "output": "generated_output : list = take(take(add_n(sort_asc(sort_des([-5, 0])),-5),21),37)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(sort_des(input)),-5),21),37)"
  },
  {
    "input": "input : list = [-4, -1, -5, 5, 1]\noutput : list = [3, -1, -3, -6, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(sub_n([-4, -1, -5, 5, 1],-5))),4),3)",
    "io_inp": [
      -4,
      -1,
      -5,
      5,
      1
    ],
    "io_out": [
      3,
      -1,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(sub_n(input,-5))),4),3)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([0, 1],4)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,4)))"
  },
  {
    "input": "input : list = [0, 4, 3, 4, 1, -4]\noutput : list = [21, 21, 16, 6, 1, -19]",
    "output": "generated_output : list = add_n(mul_n(take(take(sort_des([0, 4, 3, 4, 1, -4]),16),20),5),1)",
    "io_inp": [
      0,
      4,
      3,
      4,
      1,
      -4
    ],
    "io_out": [
      21,
      21,
      16,
      6,
      1,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(sort_des(input),16),20),5),1)"
  },
  {
    "input": "input : list = [1, 2, 0, -1, 0]\noutput : list = [-3, -2, -1, -1, 0]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des([1, 2, 0, -1, 0]),-1),23),1)",
    "io_inp": [
      1,
      2,
      0,
      -1,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(input),-1),23),1)"
  },
  {
    "input": "input : list = [-3, 2, 3, 5, -2, -5]\noutput : list = [-5, -3, -2, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([-3, 2, 3, 5, -2, -5])",
    "io_inp": [
      -3,
      2,
      3,
      5,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, 2, -4, 5, 2]\noutput : list = [-6, -2, 0, 0, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(add_n([0, 4, 2, -4, 5, 2],1)))),3)",
    "io_inp": [
      0,
      4,
      2,
      -4,
      5,
      2
    ],
    "io_out": [
      -6,
      -2,
      0,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(add_n(input,1)))),3)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-31, -16, 19]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(mul_n([5, -5, 2],-5)),3)),-3)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -31,
      -16,
      19
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(mul_n(input,-5)),3)),-3)"
  },
  {
    "input": "input : list = [5, -5, -3, -3, 4, -1]\noutput : list = [16, 1, 22, 22, 28, -2]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(add_n([5, -5, -3, -3, 4, -1],-5)),-3),25),2)",
    "io_inp": [
      5,
      -5,
      -3,
      -3,
      4,
      -1
    ],
    "io_out": [
      16,
      1,
      22,
      22,
      28,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(add_n(input,-5)),-3),25),2)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-45]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(sub_n([-5, -3, 3],-2),1),5)),3)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(sub_n(input,-2),1),5)),3)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sub_n([2, 5],5))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,5))"
  },
  {
    "input": "input : list = [-1, -3, -2, 2, 4, -5]\noutput : list = [-8, -4, -2, 0, 6, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n([-1, -3, -2, 2, 4, -5],1),2),24)))",
    "io_inp": [
      -1,
      -3,
      -2,
      2,
      4,
      -5
    ],
    "io_out": [
      -8,
      -4,
      -2,
      0,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(add_n(input,1),2),24)))"
  },
  {
    "input": "input : list = [0, 1, 3, -4]\noutput : list = [1, 0]",
    "output": "generated_output : list = reverse(take([0, 1, 3, -4],2))",
    "io_inp": [
      0,
      1,
      3,
      -4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-3, -4, 0, 4, -1, 1]\noutput : list = [-10, -16, -18]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(take([-3, -4, 0, 4, -1, 1],3),5),5),2))",
    "io_inp": [
      -3,
      -4,
      0,
      4,
      -1,
      1
    ],
    "io_out": [
      -10,
      -16,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(take(input,3),5),5),2))"
  },
  {
    "input": "input : list = [2, 4, 4, -3]\noutput : list = [9, 7]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(take([2, 4, 4, -3],2))),12),5)",
    "io_inp": [
      2,
      4,
      4,
      -3
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(take(input,2))),12),5)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [-4, -10, -4]",
    "output": "generated_output : list = add_n(add_n([4, -2, 4],-4),-4)",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      -4,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),-4)"
  },
  {
    "input": "input : list = [2, 2, -1, 0, 3, -4]\noutput : list = [30, 30, -15, 0, 45, -60]",
    "output": "generated_output : list = mul_n(mul_n([2, 2, -1, 0, 3, -4],-5),-3)",
    "io_inp": [
      2,
      2,
      -1,
      0,
      3,
      -4
    ],
    "io_out": [
      30,
      30,
      -15,
      0,
      45,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-3, 5]))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [2, -3, 5, 2, 3, -1]\noutput : list = [-10, -6, -4, -4, 2, 6]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(sort_asc([2, -3, 5, 2, 3, -1]),-2))),54)",
    "io_inp": [
      2,
      -3,
      5,
      2,
      3,
      -1
    ],
    "io_out": [
      -10,
      -6,
      -4,
      -4,
      2,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(sort_asc(input),-2))),54)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [20, 10, -25]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_asc([4, 2, -5]),5),7)))",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      20,
      10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_asc(input),5),7)))"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des([-3, -4, -2])),2))",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(input)),2))"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse([4, 2, 1])),9),4)",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(input)),9),4)"
  },
  {
    "input": "input : list = [1, -5, -1, -5, -4]\noutput : list = [25, 25, 20, 5, -5]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(reverse([1, -5, -1, -5, -4]))),-5))",
    "io_inp": [
      1,
      -5,
      -1,
      -5,
      -4
    ],
    "io_out": [
      25,
      25,
      20,
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(reverse(input))),-5))"
  },
  {
    "input": "input : list = [-4, -1, 4, 2]\noutput : list = [5, 3, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(sub_n([-4, -1, 4, 2],-1)),19)))",
    "io_inp": [
      -4,
      -1,
      4,
      2
    ],
    "io_out": [
      5,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(sub_n(input,-1)),19)))"
  },
  {
    "input": "input : list = [-5, -5, -4, 1, 3, 3]\noutput : list = [-2, -2, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(drop([-5, -5, -4, 1, 3, 3],3)),5)),40)",
    "io_inp": [
      -5,
      -5,
      -4,
      1,
      3,
      3
    ],
    "io_out": [
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(drop(input,3)),5)),40)"
  },
  {
    "input": "input : list = [5, 0, -5, -5, 0, -3]\noutput : list = [60, 60, 36, 0, 0, -60]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(sort_des([5, 0, -5, -5, 0, -3]),-4)),3),21)",
    "io_inp": [
      5,
      0,
      -5,
      -5,
      0,
      -3
    ],
    "io_out": [
      60,
      60,
      36,
      0,
      0,
      -60
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(sort_des(input),-4)),3),21)"
  },
  {
    "input": "input : list = [1, -1, 1, 5, -5]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take([1, -1, 1, 5, -5],1)),10))",
    "io_inp": [
      1,
      -1,
      1,
      5,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(input,1)),10))"
  },
  {
    "input": "input : list = [-2, 0, 0, -4, -3]\noutput : list = [-2, -2, -4, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(reverse([-2, 0, 0, -4, -3])))),2)",
    "io_inp": [
      -2,
      0,
      0,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(reverse(input)))),2)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n([4, 3],-5),2),9),4)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(input,-5),2),9),4)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = take(sort_des([5, -1, 1]),8)",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),8)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n([5, 4],-1)),-2),-4))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(mul_n(input,-1)),-2),-4))"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([-1, -3, -3],1)",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 2, 3, -3, 2, 2]\noutput : list = [3, -3, 2, 2]",
    "output": "generated_output : list = drop([5, 2, 3, -3, 2, 2],2)",
    "io_inp": [
      5,
      2,
      3,
      -3,
      2,
      2
    ],
    "io_out": [
      3,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -3, -2, -1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(reverse(take([1, -3, -2, -1],1)))",
    "io_inp": [
      1,
      -3,
      -2,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-3, 1, 5, 5, 0, -4]\noutput : list = [15, 15, 3, 0, -12]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(drop([-3, 1, 5, 5, 0, -4],1)),3)))",
    "io_inp": [
      -3,
      1,
      5,
      5,
      0,
      -4
    ],
    "io_out": [
      15,
      15,
      3,
      0,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(drop(input,1)),3)))"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [1, -5, -11]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(mul_n([-3, -1, -5],3),1))),-5)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      1,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(mul_n(input,3),1))),-5)"
  },
  {
    "input": "input : list = [-5, 2, 3, 2, -5, -3]\noutput : list = [-12, 9, 12, 9, -12, -6]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(add_n([-5, 2, 3, 2, -5, -3],-5),20),5),1),3)",
    "io_inp": [
      -5,
      2,
      3,
      2,
      -5,
      -3
    ],
    "io_out": [
      -12,
      9,
      12,
      9,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(add_n(input,-5),20),5),1),3)"
  },
  {
    "input": "input : list = [1, 4, 1, -2, 4]\noutput : list = [20, 5, 5, -10, -10]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(sort_asc([1, 4, 1, -2, 4]),2),18)),-5)",
    "io_inp": [
      1,
      4,
      1,
      -2,
      4
    ],
    "io_out": [
      20,
      5,
      5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(sort_asc(input),2),18)),-5)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [1, -4]",
    "output": "generated_output : list = add_n(mul_n([-1, 0],-5),-4)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-4)"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [-27, 0, 3]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n([-4, 5, -5],4)),17),-3)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      -27,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(input,4)),17),-3)"
  },
  {
    "input": "input : list = [4, 4, 0, 1, 0]\noutput : list = [0, 10, 0, 40, 40]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(mul_n([4, 4, 0, 1, 0],-5),2)),-1),9)",
    "io_inp": [
      4,
      4,
      0,
      1,
      0
    ],
    "io_out": [
      0,
      10,
      0,
      40,
      40
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(mul_n(input,-5),2)),-1),9)"
  },
  {
    "input": "input : list = [-4, -2, 0, -1]\noutput : list = [0, -1, -2, -4]",
    "output": "generated_output : list = sort_des([-4, -2, 0, -1])",
    "io_inp": [
      -4,
      -2,
      0,
      -1
    ],
    "io_out": [
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, 0]\noutput : list = [-4, -1, 3]",
    "output": "generated_output : list = sort_asc(add_n([4, -3, 0],-1))",
    "io_inp": [
      4,
      -3,
      0
    ],
    "io_out": [
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [4, 2, 4, -5, 1, 5]\noutput : list = [-18, -21]",
    "output": "generated_output : list = mul_n(take(add_n(drop(sort_asc([4, 2, 4, -5, 1, 5]),4),2),23),-3)",
    "io_inp": [
      4,
      2,
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      -18,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(drop(sort_asc(input),4),2),23),-3)"
  },
  {
    "input": "input : list = [5, -5, 1, 2, 3]\noutput : list = [3, 2, 1, -5, 5]",
    "output": "generated_output : list = take(take(reverse([5, -5, 1, 2, 3]),8),16)",
    "io_inp": [
      5,
      -5,
      1,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),8),16)"
  },
  {
    "input": "input : list = [-4, -4, 5, 3]\noutput : list = [-8, -4, 10, 10]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-4, -4, 5, 3],-1)),-2)",
    "io_inp": [
      -4,
      -4,
      5,
      3
    ],
    "io_out": [
      -8,
      -4,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,-1)),-2)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n(add_n([5, -3],3),-3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-3)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [-14, -7, -5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(add_n([-5, 2, 4],-5),4),1)))",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      -14,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(add_n(input,-5),4),1)))"
  },
  {
    "input": "input : list = [-4, -4, -2, 5]\noutput : list = [-3]",
    "output": "generated_output : list = drop(add_n(sub_n(sort_des([-4, -4, -2, 5]),-3),-2),3)",
    "io_inp": [
      -4,
      -4,
      -2,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(sort_des(input),-3),-2),3)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-8, -14]",
    "output": "generated_output : list = add_n(sub_n([1, -5],5),-4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -8,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-4)"
  },
  {
    "input": "input : list = [-3, -5, -3, 4]\noutput : list = [-2, -9, -11, -9]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(add_n([-3, -5, -3, 4],-2)),4)))",
    "io_inp": [
      -3,
      -5,
      -3,
      4
    ],
    "io_out": [
      -2,
      -9,
      -11,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(add_n(input,-2)),4)))"
  },
  {
    "input": "input : list = [-4, 0, 2, 3, 3, 3]\noutput : list = [-4, 0, 2, 3, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-4, 0, 2, 3, 3, 3])))",
    "io_inp": [
      -4,
      0,
      2,
      3,
      3,
      3
    ],
    "io_out": [
      -4,
      0,
      2,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-15, -9]",
    "output": "generated_output : list = take(take(take(take(mul_n([5, 3],-3),11),9),16),2)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -15,
      -9
    ],
    "output_masked": "generated_output : list = take(take(take(take(mul_n(input,-3),11),9),16),2)"
  },
  {
    "input": "input : list = [2, 4, 4, 3]\noutput : list = [3, 3, 2, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(add_n([2, 4, 4, 3],-1)))))",
    "io_inp": [
      2,
      4,
      4,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [7, -1]",
    "output": "generated_output : list = add_n(sub_n(add_n([3, -5],4),4),4)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,4),4),4)"
  },
  {
    "input": "input : list = [1, -3, 0, 5]\noutput : list = [-10, -2, 0, 6]",
    "output": "generated_output : list = mul_n(sort_des([1, -3, 0, 5]),-2)",
    "io_inp": [
      1,
      -3,
      0,
      5
    ],
    "io_out": [
      -10,
      -2,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = reverse(add_n(take(take(drop([-1, -3, -1],1),6),5),-3))",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(drop(input,1),6),5),-3))"
  },
  {
    "input": "input : list = [0, -5, 2, 4, 2]\noutput : list = [2, -3, 4, 6, 4]",
    "output": "generated_output : list = add_n([0, -5, 2, 4, 2],2)",
    "io_inp": [
      0,
      -5,
      2,
      4,
      2
    ],
    "io_out": [
      2,
      -3,
      4,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [3, -1, 4, 3]\noutput : list = [0, -4, 1, 0]",
    "output": "generated_output : list = take(sub_n([3, -1, 4, 3],3),6)",
    "io_inp": [
      3,
      -1,
      4,
      3
    ],
    "io_out": [
      0,
      -4,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),6)"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse(drop([-1, -4, 2],1))",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [3, 4, -3, 0]\noutput : list = [-11, -2, 7, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_asc([3, 4, -3, 0]),3),-2)))",
    "io_inp": [
      3,
      4,
      -3,
      0
    ],
    "io_out": [
      -11,
      -2,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_asc(input),3),-2)))"
  },
  {
    "input": "input : list = [-5, -1, 4, 3, 5]\noutput : list = [-7, -3, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(add_n([-5, -1, 4, 3, 5],-2))",
    "io_inp": [
      -5,
      -1,
      4,
      3,
      5
    ],
    "io_out": [
      -7,
      -3,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 3, 5, 0, -5]\noutput : list = [2, -3, -5, 0, 5]",
    "output": "generated_output : list = mul_n([-2, 3, 5, 0, -5],-1)",
    "io_inp": [
      -2,
      3,
      5,
      0,
      -5
    ],
    "io_out": [
      2,
      -3,
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 3, -3, -2, 5, -2]\noutput : list = [2, 9, 2, 1, 7, 5]",
    "output": "generated_output : list = take(take(add_n(reverse(add_n([1, 3, -3, -2, 5, -2],5)),-1),45),39)",
    "io_inp": [
      1,
      3,
      -3,
      -2,
      5,
      -2
    ],
    "io_out": [
      2,
      9,
      2,
      1,
      7,
      5
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(add_n(input,5)),-1),45),39)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [20, -16]",
    "output": "generated_output : list = take(take(mul_n(mul_n([-5, 4],4),-1),16),33)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      20,
      -16
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(input,4),-1),16),33)"
  },
  {
    "input": "input : list = [-2, -3, 1, 5, 3, 5]\noutput : list = [-42, -42, -30, -18, 0, 6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(mul_n([-2, -3, 1, 5, 3, 5],-2),4))),3)",
    "io_inp": [
      -2,
      -3,
      1,
      5,
      3,
      5
    ],
    "io_out": [
      -42,
      -42,
      -30,
      -18,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(mul_n(input,-2),4))),3)"
  },
  {
    "input": "input : list = [1, -4, 1, 3, 1]\noutput : list = [-2, 8, -2, -6, -2]",
    "output": "generated_output : list = mul_n(mul_n([1, -4, 1, 3, 1],-1),2)",
    "io_inp": [
      1,
      -4,
      1,
      3,
      1
    ],
    "io_out": [
      -2,
      8,
      -2,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),2)"
  },
  {
    "input": "input : list = [5, 2, -3, 0, 2, -4]\noutput : list = [18, 13, -2, -12, -12, -27]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n([5, 2, -3, 0, 2, -4],-5)),2),4)",
    "io_inp": [
      5,
      2,
      -3,
      0,
      2,
      -4
    ],
    "io_out": [
      18,
      13,
      -2,
      -12,
      -12,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(input,-5)),2),4)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc([1, 2])",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [1, 17]",
    "output": "generated_output : list = add_n(mul_n(sub_n([-5, 3],-3),2),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      1,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-3),2),5)"
  },
  {
    "input": "input : list = [0, -3, -2, 1, 2, -1]\noutput : list = [0, -1, -2, -3]",
    "output": "generated_output : list = take(reverse(sort_asc(drop(sort_des([0, -3, -2, 1, 2, -1]),2))),41)",
    "io_inp": [
      0,
      -3,
      -2,
      1,
      2,
      -1
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(drop(sort_des(input),2))),41)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [10, 4, 7]",
    "output": "generated_output : list = add_n(take(add_n(add_n(add_n([5, -1, 2],5),4),-5),23),1)",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      10,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(add_n(input,5),4),-5),23),1)"
  },
  {
    "input": "input : list = [-1, 1, 1, -4]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(sort_des(take([-1, 1, 1, -4],1)),-3)",
    "io_inp": [
      -1,
      1,
      1,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,1)),-3)"
  },
  {
    "input": "input : list = [1, -3, -4]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(add_n([1, -3, -4],-5)),-5)))",
    "io_inp": [
      1,
      -3,
      -4
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(add_n(input,-5)),-5)))"
  },
  {
    "input": "input : list = [4, 5, -1, -1, 2, 2]\noutput : list = [-1, -1, 2, 2, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(drop([4, 5, -1, -1, 2, 2],1)))),50)",
    "io_inp": [
      4,
      5,
      -1,
      -1,
      2,
      2
    ],
    "io_out": [
      -1,
      -1,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(drop(input,1)))),50)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [14, 10]",
    "output": "generated_output : list = take(mul_n(take(sub_n(sort_des([3, 5]),-2),18),2),41)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      14,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(sort_des(input),-2),18),2),41)"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -4, -3],1)",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 3, -4, 4]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(sort_des([3, 3, -4, 4]),1),-4)),2)",
    "io_inp": [
      3,
      3,
      -4,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(sort_des(input),1),-4)),2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des([4, 5])",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 2, -2, -3, -3, -5]\noutput : list = [-3, -5, -7, -8, -8, -10]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_asc([0, 2, -2, -3, -3, -5]))),-5))",
    "io_inp": [
      0,
      2,
      -2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [-16, -12, -8]",
    "output": "generated_output : list = reverse(mul_n(add_n([-3, -4, -5],1),4))",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      -16,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,1),4))"
  },
  {
    "input": "input : list = [-4, -1, 3, -5]\noutput : list = [3, -1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des([-4, -1, 3, -5]))",
    "io_inp": [
      -4,
      -1,
      3,
      -5
    ],
    "io_out": [
      3,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -5, 4, 2, 5, 3]\noutput : list = [3]",
    "output": "generated_output : list = drop(reverse(reverse([4, -5, 4, 2, 5, 3])),5)",
    "io_inp": [
      4,
      -5,
      4,
      2,
      5,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(reverse(reverse(input)),5)"
  },
  {
    "input": "input : list = [-5, 5, 2, -1]\noutput : list = [5, 2, -1, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, 5, 2, -1]))",
    "io_inp": [
      -5,
      5,
      2,
      -1
    ],
    "io_out": [
      5,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, 4, 3, -1, -4, -3]\noutput : list = [5, 4, 0, -1, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(sort_des([-2, 4, 3, -1, -4, -3]))),1))",
    "io_inp": [
      -2,
      4,
      3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      5,
      4,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-2, -4, 0, -4]\noutput : list = [1, -1, -3, -3]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(reverse([-2, -4, 0, -4])),26),1))",
    "io_inp": [
      -2,
      -4,
      0,
      -4
    ],
    "io_out": [
      1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(reverse(input)),26),1))"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [5, -2, -2]",
    "output": "generated_output : list = sort_des([5, -2, -2])",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, -2, 2]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse(drop([5, -3, -2, 2],1)))))",
    "io_inp": [
      5,
      -3,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -2, -1, 4, -4, -4]\noutput : list = [3, 1, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sub_n([2, -2, -1, 4, -4, -4],1)))))",
    "io_inp": [
      2,
      -2,
      -1,
      4,
      -4,
      -4
    ],
    "io_out": [
      3,
      1,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-2, -3, 4, -4, -1]\noutput : list = [2, -7, 17, -4, -1]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(add_n([-2, -3, 4, -4, -1],3)),3),25),4)",
    "io_inp": [
      -2,
      -3,
      4,
      -4,
      -1
    ],
    "io_out": [
      2,
      -7,
      17,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(add_n(input,3)),3),25),4)"
  },
  {
    "input": "input : list = [-4, -2, 5, -3, 2]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse(add_n(drop([-4, -2, 5, -3, 2],3),2))",
    "io_inp": [
      -4,
      -2,
      5,
      -3,
      2
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(input,3),2))"
  },
  {
    "input": "input : list = [0, 3, -4]\noutput : list = [-1, 2, -5]",
    "output": "generated_output : list = sub_n([0, 3, -4],1)",
    "io_inp": [
      0,
      3,
      -4
    ],
    "io_out": [
      -1,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, 0, 3]\noutput : list = [-9, 0, 6]",
    "output": "generated_output : list = take(take(mul_n(sort_des(sort_asc([-2, 0, 3])),-3),11),44)",
    "io_inp": [
      -2,
      0,
      3
    ],
    "io_out": [
      -9,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(sort_asc(input)),-3),11),44)"
  },
  {
    "input": "input : list = [-5, -1, -2, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take([-5, -1, -2, -2],1),-5)))",
    "io_inp": [
      -5,
      -1,
      -2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(input,1),-5)))"
  },
  {
    "input": "input : list = [-5, 2, -2, 5, 3]\noutput : list = [-41, -29, -23, 1, 19]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des([-5, 2, -2, 5, 3]),3),-4),-2),3)",
    "io_inp": [
      -5,
      2,
      -2,
      5,
      3
    ],
    "io_out": [
      -41,
      -29,
      -23,
      1,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_des(input),3),-4),-2),3)"
  },
  {
    "input": "input : list = [-3, 2, -1]\noutput : list = [-8, -3, -6]",
    "output": "generated_output : list = reverse(take(sub_n(reverse([-3, 2, -1]),5),18))",
    "io_inp": [
      -3,
      2,
      -1
    ],
    "io_out": [
      -8,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(input),5),18))"
  },
  {
    "input": "input : list = [-2, 5, 5, -4, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(drop([-2, 5, 5, -4, 1],3))),-1),-2)",
    "io_inp": [
      -2,
      5,
      5,
      -4,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(drop(input,3))),-1),-2)"
  },
  {
    "input": "input : list = [-3, -1, -4, -3, -1]\noutput : list = [23, 15, 27, 23, 15]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(mul_n([-3, -1, -4, -3, -1],-4),-5),5),-2),-4)",
    "io_inp": [
      -3,
      -1,
      -4,
      -3,
      -1
    ],
    "io_out": [
      23,
      15,
      27,
      23,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(mul_n(input,-4),-5),5),-2),-4)"
  },
  {
    "input": "input : list = [0, 2, 3, 4, -2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(take([0, 2, 3, 4, -2],3)),-1)))",
    "io_inp": [
      0,
      2,
      3,
      4,
      -2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(take(input,3)),-1)))"
  },
  {
    "input": "input : list = [-3, 0, -3, -4, -4]\noutput : list = [3, 6, 6, 7, 7]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(mul_n([-3, 0, -3, -4, -4],-1)),-3)),17)",
    "io_inp": [
      -3,
      0,
      -3,
      -4,
      -4
    ],
    "io_out": [
      3,
      6,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(mul_n(input,-1)),-3)),17)"
  },
  {
    "input": "input : list = [-3, 3, -2, 5, -1, 3]\noutput : list = [-1, 0, 1, 5, 5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des([-3, 3, -2, 5, -1, 3]),8),-2))",
    "io_inp": [
      -3,
      3,
      -2,
      5,
      -1,
      3
    ],
    "io_out": [
      -1,
      0,
      1,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(input),8),-2))"
  },
  {
    "input": "input : list = [3, -4, -1, 1, 5, -2]\noutput : list = [18, 27, 6]",
    "output": "generated_output : list = mul_n(add_n(take(drop(reverse([3, -4, -1, 1, 5, -2]),3),15),-5),-3)",
    "io_inp": [
      3,
      -4,
      -1,
      1,
      5,
      -2
    ],
    "io_out": [
      18,
      27,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(drop(reverse(input),3),15),-5),-3)"
  },
  {
    "input": "input : list = [-5, 5, 5, 4]\noutput : list = [0, -40, -40, -36]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(add_n([-5, 5, 5, 4],3),-2),-4)))",
    "io_inp": [
      -5,
      5,
      5,
      4
    ],
    "io_out": [
      0,
      -40,
      -40,
      -36
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(add_n(input,3),-2),-4)))"
  },
  {
    "input": "input : list = [-5, 2, -3, 1]\noutput : list = [-6, -4, 0, 1]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_asc([-5, 2, -3, 1]),1))))",
    "io_inp": [
      -5,
      2,
      -3,
      1
    ],
    "io_out": [
      -6,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [4, 3, 0, 1, 3]\noutput : list = [-12, -8, -8, 0, 4]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(sort_asc([4, 3, 0, 1, 3])),-1)),-4)",
    "io_inp": [
      4,
      3,
      0,
      1,
      3
    ],
    "io_out": [
      -12,
      -8,
      -8,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(sort_asc(input)),-1)),-4)"
  },
  {
    "input": "input : list = [-1, -2, -1, 0, -4, 3]\noutput : list = [-5, -3, -2, -2, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(reverse([-1, -2, -1, 0, -4, 3]),1))))",
    "io_inp": [
      -1,
      -2,
      -1,
      0,
      -4,
      3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [3, -1, 3, -1, 0]\noutput : list = [-1, -1, 0, 3, 3]",
    "output": "generated_output : list = sort_asc([3, -1, 3, -1, 0])",
    "io_inp": [
      3,
      -1,
      3,
      -1,
      0
    ],
    "io_out": [
      -1,
      -1,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1, -1, 1, -1, -3]\noutput : list = [3, 1, 1, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(drop([5, 1, -1, 1, -1, -3],2)),-2))",
    "io_inp": [
      5,
      1,
      -1,
      1,
      -1,
      -3
    ],
    "io_out": [
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(drop(input,2)),-2))"
  },
  {
    "input": "input : list = [-1, 3, -5, -1, -1]\noutput : list = [2, 6, -2, 2, 2]",
    "output": "generated_output : list = sub_n(add_n([-1, 3, -5, -1, -1],-1),-4)",
    "io_inp": [
      -1,
      3,
      -5,
      -1,
      -1
    ],
    "io_out": [
      2,
      6,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),-4)"
  },
  {
    "input": "input : list = [5, 4, 0, -4, -5, 2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 4, 0, -4, -5, 2],1)",
    "io_inp": [
      5,
      4,
      0,
      -4,
      -5,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [-11, -1, 7]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(mul_n([-4, 1, 5],2)),-3)),1)",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      -11,
      -1,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(mul_n(input,2)),-3)),1)"
  },
  {
    "input": "input : list = [0, 2, -3, -5, -3, 1]\noutput : list = [-5, -3, -3, 0, 1, 2]",
    "output": "generated_output : list = sort_asc([0, 2, -3, -5, -3, 1])",
    "io_inp": [
      0,
      2,
      -3,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [-9, -6]",
    "output": "generated_output : list = take(add_n([-5, -2, 0],-4),2)",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-8, 20]",
    "output": "generated_output : list = mul_n([2, -5],-4)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 5, 4, -2, -4, 3]\noutput : list = [-23, -13, -3, 12, 17, 22]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(sort_asc([0, 5, 4, -2, -4, 3]),5),-3),17))",
    "io_inp": [
      0,
      5,
      4,
      -2,
      -4,
      3
    ],
    "io_out": [
      -23,
      -13,
      -3,
      12,
      17,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(sort_asc(input),5),-3),17))"
  },
  {
    "input": "input : list = [-1, 1, 2, 1, -1, 2]\noutput : list = [10, 10, -30, -30, -50, -50]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(mul_n([-1, 1, 2, 1, -1, 2],-4)),-2)),5)",
    "io_inp": [
      -1,
      1,
      2,
      1,
      -1,
      2
    ],
    "io_out": [
      10,
      10,
      -30,
      -30,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(mul_n(input,-4)),-2)),5)"
  },
  {
    "input": "input : list = [4, 3, 2, 3, 3]\noutput : list = [0, 0, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(drop([4, 3, 2, 3, 3],1))),3))",
    "io_inp": [
      4,
      3,
      2,
      3,
      3
    ],
    "io_out": [
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(drop(input,1))),3))"
  },
  {
    "input": "input : list = [-1, -3, 0, 3]\noutput : list = [6, 3, 0]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(drop(sub_n([-1, -3, 0, 3],-3),1))))",
    "io_inp": [
      -1,
      -3,
      0,
      3
    ],
    "io_out": [
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(drop(sub_n(input,-3),1))))"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [2, -3, 4]",
    "output": "generated_output : list = reverse([4, -3, 2])",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, -5, 3, 1, 0]\noutput : list = [10, 8, 6, 5, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(sort_asc([-5, 5, -5, 3, 1, 0]),5),37)))",
    "io_inp": [
      -5,
      5,
      -5,
      3,
      1,
      0
    ],
    "io_out": [
      10,
      8,
      6,
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(sort_asc(input),5),37)))"
  },
  {
    "input": "input : list = [-3, 2, 2, 1, 0, -2]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = reverse(reverse(take(drop(sub_n([-3, 2, 2, 1, 0, -2],-1),3),21)))",
    "io_inp": [
      -3,
      2,
      2,
      1,
      0,
      -2
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(drop(sub_n(input,-1),3),21)))"
  },
  {
    "input": "input : list = [-4, -1, 4, -3]\noutput : list = [-1, 2, 7, 0]",
    "output": "generated_output : list = take(take(take(sub_n([-4, -1, 4, -3],-3),10),5),31)",
    "io_inp": [
      -4,
      -1,
      4,
      -3
    ],
    "io_out": [
      -1,
      2,
      7,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(input,-3),10),5),31)"
  },
  {
    "input": "input : list = [5, -3, 3, 2, 0]\noutput : list = [-2, 6, 10, -14]",
    "output": "generated_output : list = take(reverse(drop(add_n(mul_n([5, -3, 3, 2, 0],4),-2),1)),42)",
    "io_inp": [
      5,
      -3,
      3,
      2,
      0
    ],
    "io_out": [
      -2,
      6,
      10,
      -14
    ],
    "output_masked": "generated_output : list = take(reverse(drop(add_n(mul_n(input,4),-2),1)),42)"
  },
  {
    "input": "input : list = [3, -1, -4, -3]\noutput : list = [-9, -8, -11, -15]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(add_n([3, -1, -4, -3],5),-1),-3)),-4)",
    "io_inp": [
      3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(add_n(input,5),-1),-3)),-4)"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [-3, 2, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(sort_asc([2, -3, 5])))),21)",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(sort_asc(input)))),21)"
  },
  {
    "input": "input : list = [-1, 3, -5, -1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n(drop([-1, 3, -5, -1],2),-1)",
    "io_inp": [
      -1,
      3,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [12, 12]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n(sub_n([0, 0],-5),1),-1),18),2)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(sub_n(input,-5),1),-1),18),2)"
  },
  {
    "input": "input : list = [5, -3, 1, -5, 1]\noutput : list = [6, 2, 2, -2, -4]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(sort_des([5, -3, 1, -5, 1])),2),-1),40)",
    "io_inp": [
      5,
      -3,
      1,
      -5,
      1
    ],
    "io_out": [
      6,
      2,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(sort_des(input)),2),-1),40)"
  },
  {
    "input": "input : list = [-4, 2, 5, 2, -2]\noutput : list = [-20]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(take([-4, 2, 5, 2, -2],1)),5),4))",
    "io_inp": [
      -4,
      2,
      5,
      2,
      -2
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(take(input,1)),5),4))"
  },
  {
    "input": "input : list = [0, -3, 0, -4]\noutput : list = [2, 2, -1, -2]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(reverse([0, -3, 0, -4]),6),-3),5))",
    "io_inp": [
      0,
      -3,
      0,
      -4
    ],
    "io_out": [
      2,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(reverse(input),6),-3),5))"
  },
  {
    "input": "input : list = [-5, -3, 0, 1, 3, 5]\noutput : list = [5, 3, 1, 0, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, 0, 1, 3, 5])",
    "io_inp": [
      -5,
      -3,
      0,
      1,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, 3, -1, -3, 1]\noutput : list = [-10, -8, -6, -4]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(drop([-1, -3, 3, -1, -3, 1],2),16),-2),-5))",
    "io_inp": [
      -1,
      -3,
      3,
      -1,
      -3,
      1
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(drop(input,2),16),-2),-5))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-6, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_des([3, -4]),2))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [-1, -5, 5, 5]\noutput : list = [5, 5, -1, -5]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-1, -5, 5, 5]),-4),-4)",
    "io_inp": [
      -1,
      -5,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),-4),-4)"
  },
  {
    "input": "input : list = [0, 2, 3, -4, 5]\noutput : list = [-10, 80]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(drop([0, 2, 3, -4, 5],3),4),-2)),5)",
    "io_inp": [
      0,
      2,
      3,
      -4,
      5
    ],
    "io_out": [
      -10,
      80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(drop(input,3),4),-2)),5)"
  },
  {
    "input": "input : list = [-2, 5, -5, -2, 1, -5]\noutput : list = [11, -24, 26, 11, -4, 26]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(reverse([-2, 5, -5, -2, 1, -5]),-5)),1),54)",
    "io_inp": [
      -2,
      5,
      -5,
      -2,
      1,
      -5
    ],
    "io_out": [
      11,
      -24,
      26,
      11,
      -4,
      26
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(reverse(input),-5)),1),54)"
  },
  {
    "input": "input : list = [5, 3, 4, -1, 3]\noutput : list = [10, 8, 6, 6, -2]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sort_des([5, 3, 4, -1, 3]),16),2)))",
    "io_inp": [
      5,
      3,
      4,
      -1,
      3
    ],
    "io_out": [
      10,
      8,
      6,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sort_des(input),16),2)))"
  },
  {
    "input": "input : list = [5, 4, 0, -5, -1, -5]\noutput : list = [-5, -5, -1, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, 4, 0, -5, -1, -5]))",
    "io_inp": [
      5,
      4,
      0,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -3, -1, 3, 1]\noutput : list = [-25, -75, 25, 75, -125]",
    "output": "generated_output : list = reverse(mul_n(mul_n([5, -3, -1, 3, 1],5),-5))",
    "io_inp": [
      5,
      -3,
      -1,
      3,
      1
    ],
    "io_out": [
      -25,
      -75,
      25,
      75,
      -125
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,5),-5))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse([-4, -4])",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, 5, 5, -5, 3]\noutput : list = [5, 3, 1]",
    "output": "generated_output : list = reverse(sort_asc(take([3, 1, 5, 5, -5, 3],3)))",
    "io_inp": [
      3,
      1,
      5,
      5,
      -5,
      3
    ],
    "io_out": [
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,3)))"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [-3, 3, -5]",
    "output": "generated_output : list = mul_n([3, -3, 5],-1)",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      -3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, 2, 4, -4]\noutput : list = [27, -37]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(drop([0, 2, 4, -4],2),-4),3),-2),-1)",
    "io_inp": [
      0,
      2,
      4,
      -4
    ],
    "io_out": [
      27,
      -37
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(drop(input,2),-4),3),-2),-1)"
  },
  {
    "input": "input : list = [-2, -2, 4, -1, -5, -2]\noutput : list = [-2, -2, -8, -3, 1, -2]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n([-2, -2, 4, -1, -5, -2],1),-2),-3),-1)",
    "io_inp": [
      -2,
      -2,
      4,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -8,
      -3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(input,1),-2),-3),-1)"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [0, -1, 0]",
    "output": "generated_output : list = reverse([0, -1, 0])",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(take([0, -3, -1],1),-5),5)))",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(take(input,1),-5),5)))"
  },
  {
    "input": "input : list = [-1, 1, -3, 1, -5, 0]\noutput : list = [-1, -1, -2, -3, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([-1, 1, -3, 1, -5, 0],5)),-3)",
    "io_inp": [
      -1,
      1,
      -3,
      1,
      -5,
      0
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,5)),-3)"
  },
  {
    "input": "input : list = [3, -4, -2, 2, -2, -5]\noutput : list = [-9, -8, -6, -6, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(mul_n([3, -4, -2, 2, -2, -5],1),4),32)))",
    "io_inp": [
      3,
      -4,
      -2,
      2,
      -2,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -6,
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(mul_n(input,1),4),32)))"
  },
  {
    "input": "input : list = [1, 5, 2, -2]\noutput : list = [3, 7, 4, 0]",
    "output": "generated_output : list = add_n([1, 5, 2, -2],2)",
    "io_inp": [
      1,
      5,
      2,
      -2
    ],
    "io_out": [
      3,
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, 5, -3, 0]\noutput : list = [-5, -4, -1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(reverse([-4, 5, -3, 0]),-5),3)),-1)",
    "io_inp": [
      -4,
      5,
      -3,
      0
    ],
    "io_out": [
      -5,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(reverse(input),-5),3)),-1)"
  },
  {
    "input": "input : list = [-5, 3, 5, 2, 4]\noutput : list = [-9, -2, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sort_asc([-5, 3, 5, 2, 4]))),-4))",
    "io_inp": [
      -5,
      3,
      5,
      2,
      4
    ],
    "io_out": [
      -9,
      -2,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [-5, -4, -1, -2, 1, -3]\noutput : list = [-6, 6, 12, 18, 24, 30]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(mul_n([-5, -4, -1, -2, 1, -3],-2),12),21)),3)",
    "io_inp": [
      -5,
      -4,
      -1,
      -2,
      1,
      -3
    ],
    "io_out": [
      -6,
      6,
      12,
      18,
      24,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(mul_n(input,-2),12),21)),3)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(take([-3, 5, -2],1),-3),4),3))",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(take(input,1),-3),4),3))"
  },
  {
    "input": "input : list = [-3, -5, -5, -5, 5, 2]\noutput : list = [5, 2, -3, -5, -5, -5]",
    "output": "generated_output : list = sort_des([-3, -5, -5, -5, 5, 2])",
    "io_inp": [
      -3,
      -5,
      -5,
      -5,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      -3,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5, 1, 2, -5, 1]\noutput : list = [0, -1, -1, -2, -7, -7]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(add_n([0, -5, 1, 2, -5, 1],-4),2)),33))",
    "io_inp": [
      0,
      -5,
      1,
      2,
      -5,
      1
    ],
    "io_out": [
      0,
      -1,
      -1,
      -2,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(add_n(input,-4),2)),33))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(add_n([-3, -4],-3)),9),-5))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(add_n(input,-3)),9),-5))"
  },
  {
    "input": "input : list = [5, -2, -2, 4, -2]\noutput : list = [5, -2, -2]",
    "output": "generated_output : list = take(mul_n(take([5, -2, -2, 4, -2],3),1),9)",
    "io_inp": [
      5,
      -2,
      -2,
      4,
      -2
    ],
    "io_out": [
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,3),1),9)"
  },
  {
    "input": "input : list = [3, -3, 0, -4, 0, 4]\noutput : list = [3, 2, -1, -1, -4, -5]",
    "output": "generated_output : list = take(sub_n(sort_des(take(reverse([3, -3, 0, -4, 0, 4]),6)),1),17)",
    "io_inp": [
      3,
      -3,
      0,
      -4,
      0,
      4
    ],
    "io_out": [
      3,
      2,
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(reverse(input),6)),1),17)"
  },
  {
    "input": "input : list = [-2, 0, 2, 5, 5, 0]\noutput : list = [-6, 0, 6, 15, 15, 0]",
    "output": "generated_output : list = mul_n([-2, 0, 2, 5, 5, 0],3)",
    "io_inp": [
      -2,
      0,
      2,
      5,
      5,
      0
    ],
    "io_out": [
      -6,
      0,
      6,
      15,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n([2, 2],-5)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, -4, -1, 4, -3]\noutput : list = [5, 3, 0, -2, -3]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc([2, -4, -1, 4, -3]),1)),39)",
    "io_inp": [
      2,
      -4,
      -1,
      4,
      -3
    ],
    "io_out": [
      5,
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(input),1)),39)"
  },
  {
    "input": "input : list = [2, 2, 4, -5, 4]\noutput : list = [8, 8, 6, 6, -1]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sort_des([2, 2, 4, -5, 4]),-5),20),-2),-1)",
    "io_inp": [
      2,
      2,
      4,
      -5,
      4
    ],
    "io_out": [
      8,
      8,
      6,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sort_des(input),-5),20),-2),-1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [12]",
    "output": "generated_output : list = add_n(sort_des(drop(sub_n(sort_asc([5, 0]),-2),1)),5)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(sub_n(sort_asc(input),-2),1)),5)"
  },
  {
    "input": "input : list = [5, 1, 5, 1, 5]\noutput : list = [0, 0, 4, 4, 4]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sort_asc([5, 1, 5, 1, 5]),17),-1),6))",
    "io_inp": [
      5,
      1,
      5,
      1,
      5
    ],
    "io_out": [
      0,
      0,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sort_asc(input),17),-1),6))"
  },
  {
    "input": "input : list = [5, -5, -3, -1]\noutput : list = [-5, -3, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_asc([5, -5, -3, -1])))))",
    "io_inp": [
      5,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = sub_n(reverse([5, 5]),-2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-1, 4, -2, 3]\noutput : list = [4, 3, -1, -2]",
    "output": "generated_output : list = take(take(reverse(sort_asc(sort_des([-1, 4, -2, 3]))),41),7)",
    "io_inp": [
      -1,
      4,
      -2,
      3
    ],
    "io_out": [
      4,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(sort_des(input))),41),7)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des([2, -3])",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, 2, -1, 5]\noutput : list = [4, 0, 1, -2, 4]",
    "output": "generated_output : list = add_n(add_n([5, 1, 2, -1, 5],-4),3)",
    "io_inp": [
      5,
      1,
      2,
      -1,
      5
    ],
    "io_out": [
      4,
      0,
      1,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),3)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = reverse(reverse([-3, 0]))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-6, 2]",
    "output": "generated_output : list = add_n(take(take(sub_n(reverse([4, -4]),3),4),27),1)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(reverse(input),3),4),27),1)"
  },
  {
    "input": "input : list = [-2, -2, 3, -3]\noutput : list = [-4, -4, 1, -5]",
    "output": "generated_output : list = sub_n([-2, -2, 3, -3],2)",
    "io_inp": [
      -2,
      -2,
      3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 1, -4, 2, 2]\noutput : list = [32, 28, 8, 4, 4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_asc([-5, 1, -4, 2, 2]))),3),-4)",
    "io_inp": [
      -5,
      1,
      -4,
      2,
      2
    ],
    "io_out": [
      32,
      28,
      8,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_asc(input))),3),-4)"
  },
  {
    "input": "input : list = [2, 5, -4, 3]\noutput : list = [6, 9]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(take([2, 5, -4, 3],2),4)),36))",
    "io_inp": [
      2,
      5,
      -4,
      3
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(take(input,2),4)),36))"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(add_n(take(take([3, -1, -2],1),3),5),-2)",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(input,1),3),5),-2)"
  },
  {
    "input": "input : list = [2, 0, 3, 4, -3, -1]\noutput : list = [-12, -4, 0, 8, 12, 16]",
    "output": "generated_output : list = sort_asc(mul_n([2, 0, 3, 4, -3, -1],4))",
    "io_inp": [
      2,
      0,
      3,
      4,
      -3,
      -1
    ],
    "io_out": [
      -12,
      -4,
      0,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [2, 0, 4, 3, 3, -5]\noutput : list = [3, 3, 2, 0, -5]",
    "output": "generated_output : list = drop(sort_des(sort_asc(sort_asc(reverse([2, 0, 4, 3, 3, -5])))),1)",
    "io_inp": [
      2,
      0,
      4,
      3,
      3,
      -5
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_asc(sort_asc(reverse(input)))),1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [9, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n([5, -2],3))),3),-4)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n(input,3))),3),-4)"
  },
  {
    "input": "input : list = [-5, -2, -3, -1, -1]\noutput : list = [0, 0, -1, -2, -4]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc([-5, -2, -3, -1, -1]),1),30))",
    "io_inp": [
      -5,
      -2,
      -3,
      -1,
      -1
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(input),1),30))"
  },
  {
    "input": "input : list = [2, -1, 3, 5]\noutput : list = [7, 5, 4, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(reverse([2, -1, 3, 5])),2))",
    "io_inp": [
      2,
      -1,
      3,
      5
    ],
    "io_out": [
      7,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(reverse(input)),2))"
  },
  {
    "input": "input : list = [-3, 3, 2, 0, 2, 0]\noutput : list = [1, 0, 0, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sub_n([-3, 3, 2, 0, 2, 0],1))),1))",
    "io_inp": [
      -3,
      3,
      2,
      0,
      2,
      0
    ],
    "io_out": [
      1,
      0,
      0,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sub_n(input,1))),1))"
  },
  {
    "input": "input : list = [2, -1, 2, 1, 1, 4]\noutput : list = [6, 8, 8, 9, 9, 11]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(add_n([2, -1, 2, 1, 1, 4],1),-2)),4))",
    "io_inp": [
      2,
      -1,
      2,
      1,
      1,
      4
    ],
    "io_out": [
      6,
      8,
      8,
      9,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(add_n(input,1),-2)),4))"
  },
  {
    "input": "input : list = [1, 2, 5, -4, 4]\noutput : list = [-45, -20, -15, -5, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(add_n([1, 2, 5, -4, 4],-5),23)),5))",
    "io_inp": [
      1,
      2,
      5,
      -4,
      4
    ],
    "io_out": [
      -45,
      -20,
      -15,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(add_n(input,-5),23)),5))"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [4, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc([4, 0, 0]))",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 4, -1, -1]\noutput : list = [-1, -1, 3, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([3, 4, -1, -1]),5),5)",
    "io_inp": [
      3,
      4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),5),5)"
  },
  {
    "input": "input : list = [-1, 3, -3, -3]\noutput : list = [1, -3, -5, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(sub_n([-1, 3, -3, -3],1),1)),15))",
    "io_inp": [
      -1,
      3,
      -3,
      -3
    ],
    "io_out": [
      1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(sub_n(input,1),1)),15))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = sub_n(sub_n([4, -1],5),-5)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),-5)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [-6, -10, -10]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([3, 5, 5],-2),-5),5)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,-2),-5),5)"
  },
  {
    "input": "input : list = [-1, -1, 5, 0, 4]\noutput : list = [5, 0, 4]",
    "output": "generated_output : list = drop([-1, -1, 5, 0, 4],2)",
    "io_inp": [
      -1,
      -1,
      5,
      0,
      4
    ],
    "io_out": [
      5,
      0,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -3, 3, 0, 1]\noutput : list = [1, -1, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(take([5, -3, 3, 0, 1],3))),4))",
    "io_inp": [
      5,
      -3,
      3,
      0,
      1
    ],
    "io_out": [
      1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(take(input,3))),4))"
  },
  {
    "input": "input : list = [1, 4, -5, -3]\noutput : list = [4, -5, -3]",
    "output": "generated_output : list = drop([1, 4, -5, -3],1)",
    "io_inp": [
      1,
      4,
      -5,
      -3
    ],
    "io_out": [
      4,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [5, -10]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(add_n([-5, -2],1),-1),3),5),2)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(add_n(input,1),-1),3),5),2)"
  },
  {
    "input": "input : list = [-4, -5, 1, 1, 2]\noutput : list = [8]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(take([-4, -5, 1, 1, 2],1)),-2)),34)",
    "io_inp": [
      -4,
      -5,
      1,
      1,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(take(input,1)),-2)),34)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 8]",
    "output": "generated_output : list = take(take(add_n([0, 4],4),10),19)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,4),10),19)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-6, 0]",
    "output": "generated_output : list = add_n([-5, 1],-1)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, -4, -4, 5, 1, 3]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(reverse(take([0, -4, -4, 5, 1, 3],2)))",
    "io_inp": [
      0,
      -4,
      -4,
      5,
      1,
      3
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [1, 2, -2, 5, 0, 1]\noutput : list = [-10, -2, 2, 2, 6, 18]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(sort_asc([1, 2, -2, 5, 0, 1]),4),-2)))",
    "io_inp": [
      1,
      2,
      -2,
      5,
      0,
      1
    ],
    "io_out": [
      -10,
      -2,
      2,
      2,
      6,
      18
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(sort_asc(input),4),-2)))"
  },
  {
    "input": "input : list = [4, -5, -2, -3, -2]\noutput : list = [-4, 5, 2, 3, 2]",
    "output": "generated_output : list = mul_n([4, -5, -2, -3, -2],-1)",
    "io_inp": [
      4,
      -5,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -4,
      5,
      2,
      3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 0, -4, 3]\noutput : list = [10, 0, -20, 15]",
    "output": "generated_output : list = mul_n([2, 0, -4, 3],5)",
    "io_inp": [
      2,
      0,
      -4,
      3
    ],
    "io_out": [
      10,
      0,
      -20,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 2, -1, -1, 1, 4]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = sort_asc(take(drop([3, 2, -1, -1, 1, 4],3),14))",
    "io_inp": [
      3,
      2,
      -1,
      -1,
      1,
      4
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,3),14))"
  },
  {
    "input": "input : list = [-2, 5, -1, 3]\noutput : list = [10, 8, 4, 3]",
    "output": "generated_output : list = add_n(sort_des([-2, 5, -1, 3]),5)",
    "io_inp": [
      -2,
      5,
      -1,
      3
    ],
    "io_out": [
      10,
      8,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, -4, -2, 4, -3, -1]\noutput : list = [-3, -5, -3, 3, -4, -2]",
    "output": "generated_output : list = add_n([-2, -4, -2, 4, -3, -1],-1)",
    "io_inp": [
      -2,
      -4,
      -2,
      4,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -5,
      -3,
      3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [3, -3, 3, 4, -1, 3]\noutput : list = [28, 12, 32, 28, 4, 28]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(sub_n([3, -3, 3, 4, -1, 3],3),-5),2)),4)",
    "io_inp": [
      3,
      -3,
      3,
      4,
      -1,
      3
    ],
    "io_out": [
      28,
      12,
      32,
      28,
      4,
      28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(sub_n(input,3),-5),2)),4)"
  },
  {
    "input": "input : list = [5, 5, -5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = reverse(drop([5, 5, -5, -1],2))",
    "io_inp": [
      5,
      5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [3, -4, 5, 3, 0]\noutput : list = [0, -6, -10, 8, -6]",
    "output": "generated_output : list = reverse(take(mul_n(take(mul_n([3, -4, 5, 3, 0],-1),15),2),32))",
    "io_inp": [
      3,
      -4,
      5,
      3,
      0
    ],
    "io_out": [
      0,
      -6,
      -10,
      8,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(mul_n(input,-1),15),2),32))"
  },
  {
    "input": "input : list = [4, 1, -2, 0]\noutput : list = [60, 42, 24, 36]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(sub_n([4, 1, -2, 0],-5),-2),17),2),-3)",
    "io_inp": [
      4,
      1,
      -2,
      0
    ],
    "io_out": [
      60,
      42,
      24,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(sub_n(input,-5),-2),17),2),-3)"
  },
  {
    "input": "input : list = [-5, -4, -2, -2, 4, -1]\noutput : list = [48, 60]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(take([-5, -4, -2, -2, 4, -1],2),-3)),4),37)",
    "io_inp": [
      -5,
      -4,
      -2,
      -2,
      4,
      -1
    ],
    "io_out": [
      48,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(take(input,2),-3)),4),37)"
  },
  {
    "input": "input : list = [4, 3, -2, 2, 0, 5]\noutput : list = [2, 0, -2, -3, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(drop([4, 3, -2, 2, 0, 5],1),-1))),43)",
    "io_inp": [
      4,
      3,
      -2,
      2,
      0,
      5
    ],
    "io_out": [
      2,
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(drop(input,1),-1))),43)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = reverse([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, 1, 1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(drop([2, 5, 1, 1],2)),3),5))",
    "io_inp": [
      2,
      5,
      1,
      1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(drop(input,2)),3),5))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sort_des([5, 1]),3),2),2),5)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sort_des(input),3),2),2),5)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [4]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(take([3, 0, -2],1))),12),1)",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(take(input,1))),12),1)"
  },
  {
    "input": "input : list = [-2, 5, 3]\noutput : list = [-4, 1, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sort_des([-2, 5, 3])),3)),-1)",
    "io_inp": [
      -2,
      5,
      3
    ],
    "io_out": [
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sort_des(input)),3)),-1)"
  },
  {
    "input": "input : list = [0, 1, -2, 4, 0, -4]\noutput : list = [5, 20, 25, 25, 35, 45]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(reverse([0, 1, -2, 4, 0, -4])),-5),-5),33)",
    "io_inp": [
      0,
      1,
      -2,
      4,
      0,
      -4
    ],
    "io_out": [
      5,
      20,
      25,
      25,
      35,
      45
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(reverse(input)),-5),-5),33)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [-9, -2, 0]",
    "output": "generated_output : list = take(sub_n(reverse(take(sort_des([4, 2, -5]),14)),4),14)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      -9,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(sort_des(input),14)),4),14)"
  },
  {
    "input": "input : list = [-1, -5, 3, -2, -4]\noutput : list = [-2, -6, 2, -3, -5]",
    "output": "generated_output : list = sub_n([-1, -5, 3, -2, -4],1)",
    "io_inp": [
      -1,
      -5,
      3,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -6,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, 3, -4, 3, 0, 2]\noutput : list = [-10, 6, -22, 6, -6, 2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sub_n([-1, 3, -4, 3, 0, 2],3),4),-1),-4),-1)",
    "io_inp": [
      -1,
      3,
      -4,
      3,
      0,
      2
    ],
    "io_out": [
      -10,
      6,
      -22,
      6,
      -6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sub_n(input,3),4),-1),-4),-1)"
  },
  {
    "input": "input : list = [4, 5, 5, 1, -1, 4]\noutput : list = [8, 9, 9, 5, 3, 8]",
    "output": "generated_output : list = sub_n([4, 5, 5, 1, -1, 4],-4)",
    "io_inp": [
      4,
      5,
      5,
      1,
      -1,
      4
    ],
    "io_out": [
      8,
      9,
      9,
      5,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, 5, -3]\noutput : list = [5, 25, -15]",
    "output": "generated_output : list = take(mul_n(mul_n([1, 5, -3],5),1),7)",
    "io_inp": [
      1,
      5,
      -3
    ],
    "io_out": [
      5,
      25,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,5),1),7)"
  },
  {
    "input": "input : list = [-4, -4, -5, -3]\noutput : list = [9, 12, 12, 15]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-4, -4, -5, -3]),-3))",
    "io_inp": [
      -4,
      -4,
      -5,
      -3
    ],
    "io_out": [
      9,
      12,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [5, -4, 1, -1, 1, -3]\noutput : list = [-16, -12, -4, 4, 4, 20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(reverse([5, -4, 1, -1, 1, -3]))),-1),-4)",
    "io_inp": [
      5,
      -4,
      1,
      -1,
      1,
      -3
    ],
    "io_out": [
      -16,
      -12,
      -4,
      4,
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(reverse(input))),-1),-4)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(take(sub_n(add_n(reverse([2, 2]),4),4),7),8)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(reverse(input),4),4),7),8)"
  },
  {
    "input": "input : list = [-1, -4, -5, 3]\noutput : list = [4, 0, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_asc([-1, -4, -5, 3])))),-1)",
    "io_inp": [
      -1,
      -4,
      -5,
      3
    ],
    "io_out": [
      4,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [0, 0, 4, 4]\noutput : list = [-4, -4, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n([0, 0, 4, 4],-4)),-1),1))",
    "io_inp": [
      0,
      0,
      4,
      4
    ],
    "io_out": [
      -4,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(add_n(input,-4)),-1),1))"
  },
  {
    "input": "input : list = [-5, -2, 1]\noutput : list = [-3, -6, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take(sub_n([-5, -2, 1],4),16))))",
    "io_inp": [
      -5,
      -2,
      1
    ],
    "io_out": [
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(sub_n(input,4),16))))"
  },
  {
    "input": "input : list = [-4, 3, 0, 1, 2]\noutput : list = [-9, -6, -3, 0, 12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-4, 3, 0, 1, 2])),-3)",
    "io_inp": [
      -4,
      3,
      0,
      1,
      2
    ],
    "io_out": [
      -9,
      -6,
      -3,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = take(reverse([2, -5]),10)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),10)"
  },
  {
    "input": "input : list = [3, -3, -1, -5, 1]\noutput : list = [2, 4, 8]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(take([3, -3, -1, -5, 1],3))),5))",
    "io_inp": [
      3,
      -3,
      -1,
      -5,
      1
    ],
    "io_out": [
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(take(input,3))),5))"
  },
  {
    "input": "input : list = [-1, -4, -3, 2]\noutput : list = [5, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(drop([-1, -4, -3, 2],1)),-3)",
    "io_inp": [
      -1,
      -4,
      -3,
      2
    ],
    "io_out": [
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),-3)"
  },
  {
    "input": "input : list = [2, -4, -5, -3, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(drop(sort_asc(sub_n([2, -4, -5, -3, -3],3)),4))",
    "io_inp": [
      2,
      -4,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_asc(sub_n(input,3)),4))"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [-182, -482, 118]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n(mul_n([-1, -4, 2],-5),-4),-5),4),-2)",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      -182,
      -482,
      118
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(mul_n(input,-5),-4),-5),4),-2)"
  },
  {
    "input": "input : list = [1, 1, -4, 5, -1]\noutput : list = [-2, -2, 8]",
    "output": "generated_output : list = mul_n(take(take([1, 1, -4, 5, -1],3),17),-2)",
    "io_inp": [
      1,
      1,
      -4,
      5,
      -1
    ],
    "io_out": [
      -2,
      -2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,3),17),-2)"
  },
  {
    "input": "input : list = [5, -4, -5, 3, 5, 4]\noutput : list = [-5, -4, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -4, -5, 3, 5, 4]))",
    "io_inp": [
      5,
      -4,
      -5,
      3,
      5,
      4
    ],
    "io_out": [
      -5,
      -4,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 5, 5, -1, -3, 5]\noutput : list = [7, 7, 7, 1, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(sub_n([-4, 5, 5, -1, -3, 5],-5)),30)),3)",
    "io_inp": [
      -4,
      5,
      5,
      -1,
      -3,
      5
    ],
    "io_out": [
      7,
      7,
      7,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(sub_n(input,-5)),30)),3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-16, 0]",
    "output": "generated_output : list = take(mul_n(take(sub_n(reverse([-5, 3]),-5),14),-2),2)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -16,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(reverse(input),-5),14),-2),2)"
  },
  {
    "input": "input : list = [-3, -4, -2, -3, -2, 0]\noutput : list = [108, 96, 96, 84, 84, 60]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(sort_des([-3, -4, -2, -3, -2, 0]),-5)),3),-4)",
    "io_inp": [
      -3,
      -4,
      -2,
      -3,
      -2,
      0
    ],
    "io_out": [
      108,
      96,
      96,
      84,
      84,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(sort_des(input),-5)),3),-4)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-30, -15]",
    "output": "generated_output : list = mul_n(reverse(add_n([2, -1],-5)),5)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-5)),5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des([-3, -3]),4),-2),-5)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(input),4),-2),-5)"
  },
  {
    "input": "input : list = [0, 4, -5, 3, -1]\noutput : list = [0, 4, 5, 8, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_des([0, 4, -5, 3, -1]),5),32)))",
    "io_inp": [
      0,
      4,
      -5,
      3,
      -1
    ],
    "io_out": [
      0,
      4,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(sort_des(input),5),32)))"
  },
  {
    "input": "input : list = [-1, -5, -1, -5, -1]\noutput : list = [15, 15, 3, 3, 3]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des([-1, -5, -1, -5, -1])),-3))",
    "io_inp": [
      -1,
      -5,
      -1,
      -5,
      -1
    ],
    "io_out": [
      15,
      15,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(input)),-3))"
  },
  {
    "input": "input : list = [5, -2, -1, -2]\noutput : list = [5, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse(reverse([5, -2, -1, -2])))))",
    "io_inp": [
      5,
      -2,
      -1,
      -2
    ],
    "io_out": [
      5,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, 0, 2, 2]\noutput : list = [-23, -31, -31]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(drop([-1, 0, 2, 2],1)),-5),-4),3)",
    "io_inp": [
      -1,
      0,
      2,
      2
    ],
    "io_out": [
      -23,
      -31,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(drop(input,1)),-5),-4),3)"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(take([5, 3, -3],1),3),-4)),2)",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(take(input,1),3),-4)),2)"
  },
  {
    "input": "input : list = [-4, -5, -3, -5, -1, -3]\noutput : list = [-7, -9, -5, -9, -1, -5]",
    "output": "generated_output : list = add_n(mul_n(sub_n([-4, -5, -3, -5, -1, -3],-1),2),-1)",
    "io_inp": [
      -4,
      -5,
      -3,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -9,
      -5,
      -9,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-1),2),-1)"
  },
  {
    "input": "input : list = [2, 2, 0, -2]\noutput : list = [11, 11, 7, 3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(sort_des([2, 2, 0, -2]),2),2),-5))",
    "io_inp": [
      2,
      2,
      0,
      -2
    ],
    "io_out": [
      11,
      11,
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(sort_des(input),2),2),-5))"
  },
  {
    "input": "input : list = [-1, -2, 5, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(drop([-1, -2, 5, 1, 4],3)))))",
    "io_inp": [
      -1,
      -2,
      5,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(drop(input,3)))))"
  },
  {
    "input": "input : list = [-2, 5, 2, -5, 3, -2]\noutput : list = [-15, -9, -6, 6, 6, 15]",
    "output": "generated_output : list = mul_n(sort_des([-2, 5, 2, -5, 3, -2]),-3)",
    "io_inp": [
      -2,
      5,
      2,
      -5,
      3,
      -2
    ],
    "io_out": [
      -15,
      -9,
      -6,
      6,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [3, -3, 5, 1]\noutput : list = [4, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sub_n([3, -3, 5, 1],2),-1),-1)))",
    "io_inp": [
      3,
      -3,
      5,
      1
    ],
    "io_out": [
      4,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sub_n(input,2),-1),-1)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, -5, -5]\noutput : list = [12, 6, -2, -2]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(reverse([2, -1, -5, -5]),-4),22)),2)",
    "io_inp": [
      2,
      -1,
      -5,
      -5
    ],
    "io_out": [
      12,
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(reverse(input),-4),22)),2)"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [8, 5, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([0, -2, 3]),-5))",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      8,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [0, -2, 3, -5]\noutput : list = [0, 6, -9, 15]",
    "output": "generated_output : list = mul_n(mul_n([0, -2, 3, -5],-3),1)",
    "io_inp": [
      0,
      -2,
      3,
      -5
    ],
    "io_out": [
      0,
      6,
      -9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),1)"
  },
  {
    "input": "input : list = [-4, -5, -3, 5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(take([-4, -5, -3, 5],1),2),-1),-2))",
    "io_inp": [
      -4,
      -5,
      -3,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(take(input,1),2),-1),-2))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc([-2, 0])",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0, 2, 2, -2, 4]\noutput : list = [-3, 1, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(drop([-3, 0, 2, 2, -2, 4],3),-3)),4))",
    "io_inp": [
      -3,
      0,
      2,
      2,
      -2,
      4
    ],
    "io_out": [
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(drop(input,3),-3)),4))"
  },
  {
    "input": "input : list = [5, 5, 5, 2, -5]\noutput : list = [8]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(take([5, 5, 5, 2, -5],1)),-3)))",
    "io_inp": [
      5,
      5,
      5,
      2,
      -5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(take(input,1)),-3)))"
  },
  {
    "input": "input : list = [-2, -2, -2, 4, -3]\noutput : list = [10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(take([-2, -2, -2, 4, -3],2)),-3),-2))",
    "io_inp": [
      -2,
      -2,
      -2,
      4,
      -3
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(take(input,2)),-3),-2))"
  },
  {
    "input": "input : list = [4, 5, -4, 5, 0, -2]\noutput : list = [-4, -2, 0, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc([4, 5, -4, 5, 0, -2])),19),41))",
    "io_inp": [
      4,
      5,
      -4,
      5,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc(input)),19),41))"
  },
  {
    "input": "input : list = [3, 5, 4, -1]\noutput : list = [6]",
    "output": "generated_output : list = drop(add_n(reverse([3, 5, 4, -1]),3),3)",
    "io_inp": [
      3,
      5,
      4,
      -1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = drop(add_n(reverse(input),3),3)"
  },
  {
    "input": "input : list = [5, -4, -1, 2]\noutput : list = [9]",
    "output": "generated_output : list = take(take(take(take(sub_n([5, -4, -1, 2],-4),13),15),1),18)",
    "io_inp": [
      5,
      -4,
      -1,
      2
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = take(take(take(take(sub_n(input,-4),13),15),1),18)"
  },
  {
    "input": "input : list = [-4, -2, -3, -4, -4, 0]\noutput : list = [-3, -4, -4, 0]",
    "output": "generated_output : list = drop([-4, -2, -3, -4, -4, 0],2)",
    "io_inp": [
      -4,
      -2,
      -3,
      -4,
      -4,
      0
    ],
    "io_out": [
      -3,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-2, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(add_n([-3, 0, -5],1),3)),-2))",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(add_n(input,1),3)),-2))"
  },
  {
    "input": "input : list = [1, 4, 0, 4]\noutput : list = [0, -2, -8, -8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(sort_des([1, 4, 0, 4])))),-2)",
    "io_inp": [
      1,
      4,
      0,
      4
    ],
    "io_out": [
      0,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [-4, -5, 3, 0]\noutput : list = [-2, -5, -9, -10]",
    "output": "generated_output : list = sort_des(take(take(sort_des(sub_n([-4, -5, 3, 0],5)),25),10))",
    "io_inp": [
      -4,
      -5,
      3,
      0
    ],
    "io_out": [
      -2,
      -5,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(sub_n(input,5)),25),10))"
  },
  {
    "input": "input : list = [-5, -2, 0, 2, 5, 0]\noutput : list = [-5, -3, -3, -1, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse([-5, -2, 0, 2, 5, 0]),5),-3))",
    "io_inp": [
      -5,
      -2,
      0,
      2,
      5,
      0
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(input),5),-3))"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [0, -6, -10]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des([5, 0, 3]),-2)),29)",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(input),-2)),29)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [3]",
    "output": "generated_output : list = take(take([3, -4, -2],1),6)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(take(input,1),6)"
  },
  {
    "input": "input : list = [-1, 1, 1, 0, -3]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(drop(sort_asc(add_n(sort_asc([-1, 1, 1, 0, -3]),-3)),4),4)",
    "io_inp": [
      -1,
      1,
      1,
      0,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(add_n(sort_asc(input),-3)),4),4)"
  },
  {
    "input": "input : list = [3, -3, 0, -1, 0, 1]\noutput : list = [6, 4, 4, 2]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(drop([3, -3, 0, -1, 0, 1],2),-2)),43),4)",
    "io_inp": [
      3,
      -3,
      0,
      -1,
      0,
      1
    ],
    "io_out": [
      6,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(drop(input,2),-2)),43),4)"
  },
  {
    "input": "input : list = [1, -5, -4, 0, 5, 1]\noutput : list = [1, -3, -3, -4, -8, -9]",
    "output": "generated_output : list = sort_des(sub_n([1, -5, -4, 0, 5, 1],4))",
    "io_inp": [
      1,
      -5,
      -4,
      0,
      5,
      1
    ],
    "io_out": [
      1,
      -3,
      -3,
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [0, -4, -1, -1, 3]\noutput : list = [75, -25, -25, -100, 0]",
    "output": "generated_output : list = reverse(take(take(mul_n(mul_n([0, -4, -1, -1, 3],5),5),24),16))",
    "io_inp": [
      0,
      -4,
      -1,
      -1,
      3
    ],
    "io_out": [
      75,
      -25,
      -25,
      -100,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(mul_n(input,5),5),24),16))"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [6, -4, 4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(reverse([0, -4, 1])),2),-4))",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      6,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(reverse(input)),2),-4))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [5, -5]",
    "output": "generated_output : list = add_n(mul_n([-2, 3],-2),1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),1)"
  },
  {
    "input": "input : list = [4, -3, -2, -3]\noutput : list = [-9, 19]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(take([4, -3, -2, -3],2),4),3)),16)",
    "io_inp": [
      4,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -9,
      19
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(take(input,2),4),3)),16)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-14, -4]",
    "output": "generated_output : list = mul_n(add_n([2, -3],5),-2)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -14,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),-2)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(sort_asc([-3, 0])))),-2)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [3, -15]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(sub_n([4, -5],-4),-2)),1),-1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      3,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(sub_n(input,-4),-2)),1),-1)"
  },
  {
    "input": "input : list = [5, 5, 5, 5, 2]\noutput : list = [8, 20, 20, 20, 20]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(mul_n([5, 5, 5, 5, 2],-2))),-1),2)",
    "io_inp": [
      5,
      5,
      5,
      5,
      2
    ],
    "io_out": [
      8,
      20,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(mul_n(input,-2))),-1),2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-5, 27]",
    "output": "generated_output : list = add_n(mul_n(sub_n([3, -5],1),-4),3)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -5,
      27
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,1),-4),3)"
  },
  {
    "input": "input : list = [3, 3, -3, 5]\noutput : list = [8]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(take([3, 3, -3, 5],1))),-5),31)",
    "io_inp": [
      3,
      3,
      -3,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(take(input,1))),-5),31)"
  },
  {
    "input": "input : list = [4, 3, 2, -5, -4]\noutput : list = [-5, -4, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 3, 2, -5, -4])",
    "io_inp": [
      4,
      3,
      2,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [-59, -84, 16]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(mul_n([1, -3, -2],-5),-5),-4),-5))",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      -59,
      -84,
      16
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(mul_n(input,-5),-5),-4),-5))"
  },
  {
    "input": "input : list = [-1, -2, 1]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sort_asc([-1, -2, 1]))),13),7)",
    "io_inp": [
      -1,
      -2,
      1
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sort_asc(input))),13),7)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([-3, 3])",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -4, 0, 3, 4]\noutput : list = [3, -3, 1, 4, 5]",
    "output": "generated_output : list = mul_n(take(sub_n([2, -4, 0, 3, 4],-1),11),1)",
    "io_inp": [
      2,
      -4,
      0,
      3,
      4
    ],
    "io_out": [
      3,
      -3,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-1),11),1)"
  },
  {
    "input": "input : list = [1, -2, 5, 4, -2]\noutput : list = [5, 11, 12, 5, 8]",
    "output": "generated_output : list = reverse(sub_n(sub_n([1, -2, 5, 4, -2],-2),-5))",
    "io_inp": [
      1,
      -2,
      5,
      4,
      -2
    ],
    "io_out": [
      5,
      11,
      12,
      5,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,-2),-5))"
  },
  {
    "input": "input : list = [-3, -1, 5, -1, -2, -1]\noutput : list = [2, 1, 2]",
    "output": "generated_output : list = sub_n(add_n(drop([-3, -1, 5, -1, -2, -1],3),-2),-5)",
    "io_inp": [
      -3,
      -1,
      5,
      -1,
      -2,
      -1
    ],
    "io_out": [
      2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(input,3),-2),-5)"
  },
  {
    "input": "input : list = [0, 5, -2, 3, -3, 5]\noutput : list = [-20, -12, 8, 12]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(drop([0, 5, -2, 3, -3, 5],2),-4)))",
    "io_inp": [
      0,
      5,
      -2,
      3,
      -3,
      5
    ],
    "io_out": [
      -20,
      -12,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(drop(input,2),-4)))"
  },
  {
    "input": "input : list = [-5, -1, -5, 4]\noutput : list = [9, 0, 4, 0]",
    "output": "generated_output : list = reverse(sub_n([-5, -1, -5, 4],-5))",
    "io_inp": [
      -5,
      -1,
      -5,
      4
    ],
    "io_out": [
      9,
      0,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [2, -1, 3, -1]\noutput : list = [6, 6, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(sub_n([2, -1, 3, -1],-4)),7),3))",
    "io_inp": [
      2,
      -1,
      3,
      -1
    ],
    "io_out": [
      6,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(sub_n(input,-4)),7),3))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(take(sort_asc([-2, -4]),5),23)),-3)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(sort_asc(input),5),23)),-3)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc([2, -5])",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, 4, 3, 5]\noutput : list = [2, 1, 1, 0, -5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(sub_n([4, -2, 4, 3, 5],1),18)),2))",
    "io_inp": [
      4,
      -2,
      4,
      3,
      5
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(sub_n(input,1),18)),2))"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [-4, -2, 5]",
    "output": "generated_output : list = sort_asc([-4, -2, 5])",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      -4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 4, -4, 3]\noutput : list = [-8, -5, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(add_n([-1, 4, -4, 3],1)),3)),-2)",
    "io_inp": [
      -1,
      4,
      -4,
      3
    ],
    "io_out": [
      -8,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(add_n(input,1)),3)),-2)"
  },
  {
    "input": "input : list = [-3, 1, -3, -4]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(take([-3, 1, -3, -4],1),5)),4))",
    "io_inp": [
      -3,
      1,
      -3,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(take(input,1),5)),4))"
  },
  {
    "input": "input : list = [-2, -4, -5]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(add_n([-2, -4, -5],4)),-2),17))",
    "io_inp": [
      -2,
      -4,
      -5
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(add_n(input,4)),-2),17))"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [1, -3, 2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(mul_n([3, -1, 4],1),2),4),1),-5)",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(mul_n(input,1),2),4),1),-5)"
  },
  {
    "input": "input : list = [-2, 1, 0, -4]\noutput : list = [1, 0, -2, -4]",
    "output": "generated_output : list = sort_des([-2, 1, 0, -4])",
    "io_inp": [
      -2,
      1,
      0,
      -4
    ],
    "io_out": [
      1,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, 2, 1]\noutput : list = [3, 6, 5]",
    "output": "generated_output : list = sub_n(take(add_n(take(drop([1, -1, 2, 1],1),16),-1),26),-5)",
    "io_inp": [
      1,
      -1,
      2,
      1
    ],
    "io_out": [
      3,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(drop(input,1),16),-1),26),-5)"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 3])",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, 3, 3, -4]\noutput : list = [-1, 6, 6, 3, -2]",
    "output": "generated_output : list = reverse(take(add_n([-5, 0, 3, 3, -4],3),20))",
    "io_inp": [
      -5,
      0,
      3,
      3,
      -4
    ],
    "io_out": [
      -1,
      6,
      6,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,3),20))"
  },
  {
    "input": "input : list = [1, -4, -5, -3, 1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(drop([1, -4, -5, -3, 1],3)),-1)))",
    "io_inp": [
      1,
      -4,
      -5,
      -3,
      1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(drop(input,3)),-1)))"
  },
  {
    "input": "input : list = [-2, -2, 5, 5]\noutput : list = [-5, -5, 2, 2]",
    "output": "generated_output : list = add_n(sort_asc([-2, -2, 5, 5]),-3)",
    "io_inp": [
      -2,
      -2,
      5,
      5
    ],
    "io_out": [
      -5,
      -5,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [5, -1, 0, 4]\noutput : list = [-10, -8, 0, 2]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(add_n([5, -1, 0, 4],-4)))),2)",
    "io_inp": [
      5,
      -1,
      0,
      4
    ],
    "io_out": [
      -10,
      -8,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(add_n(input,-4)))),2)"
  },
  {
    "input": "input : list = [5, -3, 1, 1, 4]\noutput : list = [-6, -2, -2, 1, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc([5, -3, 1, 1, 4])),-3))",
    "io_inp": [
      5,
      -3,
      1,
      1,
      4
    ],
    "io_out": [
      -6,
      -2,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [-20, 20, -10]",
    "output": "generated_output : list = mul_n([-4, 4, -2],5)",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      -20,
      20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -1, 1, 1, 3]\noutput : list = [5, 3, 3, 1, 4]",
    "output": "generated_output : list = reverse(add_n([2, -1, 1, 1, 3],2))",
    "io_inp": [
      2,
      -1,
      1,
      1,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [-4, -1, -2, 2, 5]\noutput : list = [-7, -4, -5, -1, 2]",
    "output": "generated_output : list = sub_n([-4, -1, -2, 2, 5],3)",
    "io_inp": [
      -4,
      -1,
      -2,
      2,
      5
    ],
    "io_out": [
      -7,
      -4,
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, -3, -2, 4]\noutput : list = [5, -1, -2, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(reverse([-3, -3, -2, 4]),-2)),3))",
    "io_inp": [
      -3,
      -3,
      -2,
      4
    ],
    "io_out": [
      5,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(reverse(input),-2)),3))"
  },
  {
    "input": "input : list = [0, -4, 3, -2]\noutput : list = [8, 4, 0, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sort_des([0, -4, 3, -2])))),-2)",
    "io_inp": [
      0,
      -4,
      3,
      -2
    ],
    "io_out": [
      8,
      4,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(reverse([4, 0, 1]),5),5)))",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(reverse(input),5),5)))"
  },
  {
    "input": "input : list = [-1, 1, -2, -1]\noutput : list = [1, 2, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sub_n([-1, 1, -2, -1],-3)))))",
    "io_inp": [
      -1,
      1,
      -2,
      -1
    ],
    "io_out": [
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [-2, 1, -7]",
    "output": "generated_output : list = sub_n([2, 5, -3],4)",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      -2,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, -3, 0, -2]\noutput : list = [3, 7, 11, 15]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(reverse([-1, -3, 0, -2]),-2)),2),-3)",
    "io_inp": [
      -1,
      -3,
      0,
      -2
    ],
    "io_out": [
      3,
      7,
      11,
      15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(reverse(input),-2)),2),-3)"
  },
  {
    "input": "input : list = [1, -4, 5, 5, 0, 2]\noutput : list = [-12, 0, 3, 6, 15, 15]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([1, -4, 5, 5, 0, 2],3)))",
    "io_inp": [
      1,
      -4,
      5,
      5,
      0,
      2
    ],
    "io_out": [
      -12,
      0,
      3,
      6,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,3)))"
  },
  {
    "input": "input : list = [4, -4, -4, 0, -1]\noutput : list = [9, 5, 4, 1, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(reverse([4, -4, -4, 0, -1]),5))))",
    "io_inp": [
      4,
      -4,
      -4,
      0,
      -1
    ],
    "io_out": [
      9,
      5,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-3, -1, -2, -2, 1]\noutput : list = [-2, -1, -3]",
    "output": "generated_output : list = reverse(take([-3, -1, -2, -2, 1],3))",
    "io_inp": [
      -3,
      -1,
      -2,
      -2,
      1
    ],
    "io_out": [
      -2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [4, 1, -3, 3, 5, 2]\noutput : list = [-15, -6]",
    "output": "generated_output : list = sort_asc(mul_n(drop([4, 1, -3, 3, 5, 2],4),-3))",
    "io_inp": [
      4,
      1,
      -3,
      3,
      5,
      2
    ],
    "io_out": [
      -15,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,4),-3))"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-5, -4, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des([-2, -3, 2])),-1),-1)",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(input)),-1),-1)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(sort_asc([-1, 2]),1),22)),-5)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(sort_asc(input),1),22)),-5)"
  },
  {
    "input": "input : list = [4, -5, -4, -3, 1, 2]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(drop([4, -5, -4, -3, 1, 2],4),24),3),3))",
    "io_inp": [
      4,
      -5,
      -4,
      -3,
      1,
      2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(drop(input,4),24),3),3))"
  },
  {
    "input": "input : list = [-2, 5, 0, -4]\noutput : list = [3, -3, -9, -24]",
    "output": "generated_output : list = sort_des(mul_n(take(take(sub_n([-2, 5, 0, -4],-3),21),10),-3))",
    "io_inp": [
      -2,
      5,
      0,
      -4
    ],
    "io_out": [
      3,
      -3,
      -9,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(sub_n(input,-3),21),10),-3))"
  },
  {
    "input": "input : list = [1, 0, 4, 0, -3]\noutput : list = [-3, 1, -3, -6]",
    "output": "generated_output : list = sub_n(drop([1, 0, 4, 0, -3],1),3)",
    "io_inp": [
      1,
      0,
      4,
      0,
      -3
    ],
    "io_out": [
      -3,
      1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [2, -2, 4, 2, -5, 0]\noutput : list = [0, -75, 30, 60, -30]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(drop([2, -2, 4, 2, -5, 0],1)),-3),6),-5)",
    "io_inp": [
      2,
      -2,
      4,
      2,
      -5,
      0
    ],
    "io_out": [
      0,
      -75,
      30,
      60,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(drop(input,1)),-3),6),-5)"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take([-5, 1, -2],1),-2)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [24, -24]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(sort_des([-2, 2])),-3)),4)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(sort_des(input)),-3)),4)"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [3, 2, 9]",
    "output": "generated_output : list = sub_n([-1, -2, 5],-4)",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      3,
      2,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, 2, 2, -1, -2]\noutput : list = [-5, -4, -2, -1, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_asc([1, 2, 2, -1, -2]))),3),45)",
    "io_inp": [
      1,
      2,
      2,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_asc(input))),3),45)"
  },
  {
    "input": "input : list = [-4, 5, -4, -2]\noutput : list = [-8, 1, -8, -6]",
    "output": "generated_output : list = sub_n(sub_n(add_n([-4, 5, -4, -2],2),3),3)",
    "io_inp": [
      -4,
      5,
      -4,
      -2
    ],
    "io_out": [
      -8,
      1,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,2),3),3)"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [4, -1, -4]",
    "output": "generated_output : list = sort_des([-1, -4, 4])",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 3, -1, -3, -2]\noutput : list = [-7, -6, -5, -2, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_des([2, 3, -1, -3, -2])),4)",
    "io_inp": [
      2,
      3,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),4)"
  },
  {
    "input": "input : list = [1, -4, 3]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(take([1, -4, 3],1),-5)",
    "io_inp": [
      1,
      -4,
      3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [-4, 5, 4]",
    "output": "generated_output : list = reverse(reverse([-4, 5, 4]))",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      -4,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -2, -2, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(take([4, -2, -2, -3],2),7))),-1)",
    "io_inp": [
      4,
      -2,
      -2,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(take(input,2),7))),-1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = mul_n([4, -2],-1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 0, 2, 2, 0, 3]\noutput : list = [-2, -3, -1, -1, -3, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n([1, 0, 2, 2, 0, 3],2),-2),-3)",
    "io_inp": [
      1,
      0,
      2,
      2,
      0,
      3
    ],
    "io_out": [
      -2,
      -3,
      -1,
      -1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,2),-2),-3)"
  },
  {
    "input": "input : list = [5, 4, 4, -5, 3]\noutput : list = [8, 0, 9, 9, 10]",
    "output": "generated_output : list = sub_n(reverse([5, 4, 4, -5, 3]),-5)",
    "io_inp": [
      5,
      4,
      4,
      -5,
      3
    ],
    "io_out": [
      8,
      0,
      9,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [1, -4, 2, 2]\noutput : list = [-2, -12, 0, 0]",
    "output": "generated_output : list = add_n(mul_n([1, -4, 2, 2],2),-4)",
    "io_inp": [
      1,
      -4,
      2,
      2
    ],
    "io_out": [
      -2,
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),-4)"
  },
  {
    "input": "input : list = [-3, 2, 1, -5, 5, -5]\noutput : list = [10, 2, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n(drop([-3, 2, 1, -5, 5, -5],2),-4),4)),2)",
    "io_inp": [
      -3,
      2,
      1,
      -5,
      5,
      -5
    ],
    "io_out": [
      10,
      2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(drop(input,2),-4),4)),2)"
  },
  {
    "input": "input : list = [3, 0, -1, 0, -1]\noutput : list = [1, -8, -11, -8, -11]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(sub_n([3, 0, -1, 0, -1],1),-3),3),-4),31)",
    "io_inp": [
      3,
      0,
      -1,
      0,
      -1
    ],
    "io_out": [
      1,
      -8,
      -11,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(sub_n(input,1),-3),3),-4),31)"
  },
  {
    "input": "input : list = [-3, -4, -3, 2]\noutput : list = [4, -1, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_asc(sort_asc([-3, -4, -3, 2])),22)),-2)",
    "io_inp": [
      -3,
      -4,
      -3,
      2
    ],
    "io_out": [
      4,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_asc(sort_asc(input)),22)),-2)"
  },
  {
    "input": "input : list = [2, -4, 3, -2, 0, -2]\noutput : list = [-5, -3, -3, -1, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sort_des([2, -4, 3, -2, 0, -2]),1))))",
    "io_inp": [
      2,
      -4,
      3,
      -2,
      0,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-1, -4, -2, 0, 3, -3]\noutput : list = [-6, 0, 2, 4, 6, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n([-1, -4, -2, 0, 3, -3],-2))))",
    "io_inp": [
      -1,
      -4,
      -2,
      0,
      3,
      -3
    ],
    "io_out": [
      -6,
      0,
      2,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(input,-2))))"
  },
  {
    "input": "input : list = [-2, 5, -4, 1, 5, -1]\noutput : list = [3, 3, -1, -3, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(sort_des([-2, 5, -4, 1, 5, -1]))),2))",
    "io_inp": [
      -2,
      5,
      -4,
      1,
      5,
      -1
    ],
    "io_out": [
      3,
      3,
      -1,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-2, -2, -5, 5, 5, -3]\noutput : list = [5, 5, -3]",
    "output": "generated_output : list = mul_n(sort_des(take(drop([-2, -2, -5, 5, 5, -3],3),27)),1)",
    "io_inp": [
      -2,
      -2,
      -5,
      5,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(drop(input,3),27)),1)"
  },
  {
    "input": "input : list = [2, 3, 5, -4, 3, -2]\noutput : list = [3, 4, 6, -3, 4, -1]",
    "output": "generated_output : list = sub_n([2, 3, 5, -4, 3, -2],-1)",
    "io_inp": [
      2,
      3,
      5,
      -4,
      3,
      -2
    ],
    "io_out": [
      3,
      4,
      6,
      -3,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, -1, 1, 0, 1, -2]\noutput : list = [7, 3, 3, 2, 1, 0]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sub_n([5, -1, 1, 0, 1, -2],3)),-5)),52)",
    "io_inp": [
      5,
      -1,
      1,
      0,
      1,
      -2
    ],
    "io_out": [
      7,
      3,
      3,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sub_n(input,3)),-5)),52)"
  },
  {
    "input": "input : list = [-2, 2, -2, 2]\noutput : list = [-24, -24, -12, -12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n([-2, 2, -2, 2],5),1),3))",
    "io_inp": [
      -2,
      2,
      -2,
      2
    ],
    "io_out": [
      -24,
      -24,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(input,5),1),3))"
  },
  {
    "input": "input : list = [2, -2, -4, -4, 4]\noutput : list = [22, 22]",
    "output": "generated_output : list = drop(sort_asc(add_n(mul_n(sort_des([2, -2, -4, -4, 4]),-5),2)),3)",
    "io_inp": [
      2,
      -2,
      -4,
      -4,
      4
    ],
    "io_out": [
      22,
      22
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(mul_n(sort_des(input),-5),2)),3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(add_n([5, 1],-2),-4),-2),10))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(add_n(input,-2),-4),-2),10))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-18, 7]",
    "output": "generated_output : list = sub_n(mul_n(reverse([1, -4]),5),-2)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -18,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),5),-2)"
  },
  {
    "input": "input : list = [1, -5, 5, -2, 0, 4]\noutput : list = [-5, -2, 0, 1, 4, 5]",
    "output": "generated_output : list = sort_asc([1, -5, 5, -2, 0, 4])",
    "io_inp": [
      1,
      -5,
      5,
      -2,
      0,
      4
    ],
    "io_out": [
      -5,
      -2,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, -4, 0]\noutput : list = [16, 16, 16, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(sub_n([-4, -4, -4, 0],-4),4),4),-4))",
    "io_inp": [
      -4,
      -4,
      -4,
      0
    ],
    "io_out": [
      16,
      16,
      16,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(sub_n(input,-4),4),4),-4))"
  },
  {
    "input": "input : list = [0, 1, -4, -1]\noutput : list = [-4, -2]",
    "output": "generated_output : list = mul_n(sub_n(take([0, 1, -4, -1],2),2),2)",
    "io_inp": [
      0,
      1,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,2),2),2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-24, -12]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(sort_des([1, 2])),-3),4),4)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(sort_des(input)),-3),4),4)"
  },
  {
    "input": "input : list = [-1, 3, 3, 3]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = drop(add_n([-1, 3, 3, 3],-4),1)",
    "io_inp": [
      -1,
      3,
      3,
      3
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-4),1)"
  },
  {
    "input": "input : list = [3, -5, 2, -2, -3]\noutput : list = [1, -7, 0, -4, -5]",
    "output": "generated_output : list = add_n([3, -5, 2, -2, -3],-2)",
    "io_inp": [
      3,
      -5,
      2,
      -2,
      -3
    ],
    "io_out": [
      1,
      -7,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -3, -1, -2]\noutput : list = [-7, -5, -4, -3]",
    "output": "generated_output : list = sort_asc(sub_n([-5, -3, -1, -2],2))",
    "io_inp": [
      -5,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(sort_asc([4, 5, -3])))),-1)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = drop([-2, 1, -3],1)",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -2, -2, -2]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sub_n(drop([-5, -2, -2, -2],2),5)",
    "io_inp": [
      -5,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [-9]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(take([3, 1, 5],1),-4),-3)),35)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(take(input,1),-4),-3)),35)"
  },
  {
    "input": "input : list = [-3, 4, -4, 3]\noutput : list = [3, 2, -4, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse([-3, 4, -4, 3])),-3),4)",
    "io_inp": [
      -3,
      4,
      -4,
      3
    ],
    "io_out": [
      3,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(input)),-3),4)"
  },
  {
    "input": "input : list = [-5, 5, -4, -1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = drop([-5, 5, -4, -1, -1],3)",
    "io_inp": [
      -5,
      5,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 4, -1, 4, 1]\noutput : list = [-2, 4, -1, 4, 1]",
    "output": "generated_output : list = mul_n([-2, 4, -1, 4, 1],1)",
    "io_inp": [
      -2,
      4,
      -1,
      4,
      1
    ],
    "io_out": [
      -2,
      4,
      -1,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, 3, 0, 4, 5, -4]\noutput : list = [27, 3, 3, -15, -21, -27]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(mul_n([0, 3, 0, 4, 5, -4],3),-2),2)),1)",
    "io_inp": [
      0,
      3,
      0,
      4,
      5,
      -4
    ],
    "io_out": [
      27,
      3,
      3,
      -15,
      -21,
      -27
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(mul_n(input,3),-2),2)),1)"
  },
  {
    "input": "input : list = [0, 0, -3, -5]\noutput : list = [3, 3, 0, -2]",
    "output": "generated_output : list = sort_des(take(sub_n([0, 0, -3, -5],-3),11))",
    "io_inp": [
      0,
      0,
      -3,
      -5
    ],
    "io_out": [
      3,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,-3),11))"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [10, 10, 7]",
    "output": "generated_output : list = sort_des(add_n([5, 5, 2],5))",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      10,
      10,
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des([-2, -1])",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -3, 5, 4]\noutput : list = [2, -2, -1, 7, 6]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(sub_n([0, -4, -3, 5, 4],-2)))))",
    "io_inp": [
      0,
      -4,
      -3,
      5,
      4
    ],
    "io_out": [
      2,
      -2,
      -1,
      7,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-5, -4, -1]",
    "output": "generated_output : list = sub_n([-3, -2, 1],2)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, 3, -3, -5, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(drop([1, 3, -3, -5, -1],3),12))),3)",
    "io_inp": [
      1,
      3,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(drop(input,3),12))),3)"
  },
  {
    "input": "input : list = [-1, -3, -4, -1, 0, -5]\noutput : list = [2, 1]",
    "output": "generated_output : list = add_n(take(sort_des([-1, -3, -4, -1, 0, -5]),2),2)",
    "io_inp": [
      -1,
      -3,
      -4,
      -1,
      0,
      -5
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),2),2)"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [100, 25, -100]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sort_des([-1, -4, 4]))),-5),5)",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      100,
      25,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sort_des(input))),-5),5)"
  },
  {
    "input": "input : list = [-5, 5, -5, 4]\noutput : list = [-6, 4, -6, 3]",
    "output": "generated_output : list = sub_n([-5, 5, -5, 4],1)",
    "io_inp": [
      -5,
      5,
      -5,
      4
    ],
    "io_out": [
      -6,
      4,
      -6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -3, -4]\noutput : list = [-4, -3, -3]",
    "output": "generated_output : list = sort_asc([-3, -3, -4])",
    "io_inp": [
      -3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, 80]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sort_des([-4, 0]),-4),-4)),-5)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sort_des(input),-4),-4)),-5)"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [-25, 15, -10]",
    "output": "generated_output : list = mul_n(reverse([2, -3, 5]),-5)",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      -25,
      15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des([5, -1])",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [3, 4]",
    "output": "generated_output : list = add_n([-2, -1],5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, 4, -3, 0, -1, -2]\noutput : list = [-11, -10, -9, -8, -5, -4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(add_n([3, 4, -3, 0, -1, -2],-1),3)),-4))",
    "io_inp": [
      3,
      4,
      -3,
      0,
      -1,
      -2
    ],
    "io_out": [
      -11,
      -10,
      -9,
      -8,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(add_n(input,-1),3)),-4))"
  },
  {
    "input": "input : list = [-2, 5, 1, 1, -2, -5]\noutput : list = [-5, -2, -2, 1, 1, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(sort_asc([-2, 5, 1, 1, -2, -5])))))",
    "io_inp": [
      -2,
      5,
      1,
      1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -2,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, -1, 0, -3, 0]\noutput : list = [2, 1, 2, -1, 2]",
    "output": "generated_output : list = sub_n([0, -1, 0, -3, 0],-2)",
    "io_inp": [
      0,
      -1,
      0,
      -3,
      0
    ],
    "io_out": [
      2,
      1,
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n(drop([1, 1, 4],1),3)",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [0, -1, -4, -5]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(sort_asc(take([0, -1, -4, -5],1)),-5)",
    "io_inp": [
      0,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),-5)"
  },
  {
    "input": "input : list = [4, 1, -5, 0, -5]\noutput : list = [-5, -5, 0, 1, 4]",
    "output": "generated_output : list = take(reverse(sort_des([4, 1, -5, 0, -5])),20)",
    "io_inp": [
      4,
      1,
      -5,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),20)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(sort_des([5, 0]))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [10, -14]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n([-2, 4],-4),-2)),11)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      10,
      -14
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(input,-4),-2)),11)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [1, 7]",
    "output": "generated_output : list = add_n([-3, 3],4)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, -1, -4, -1, 2, 2]\noutput : list = [-10, -7, -7, -4, -4, -2]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(sort_asc([4, -1, -4, -1, 2, 2])),-4),42),-2)",
    "io_inp": [
      4,
      -1,
      -4,
      -1,
      2,
      2
    ],
    "io_out": [
      -10,
      -7,
      -7,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(sort_asc(input)),-4),42),-2)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [0, -3, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(reverse([2, 0, 3])),5)),-2)",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      0,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(reverse(input)),5)),-2)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(drop(sub_n(take(mul_n([3, 1],2),4),3),1),2)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(take(mul_n(input,2),4),3),1),2)"
  },
  {
    "input": "input : list = [-4, 4, 5, 3]\noutput : list = [4, 5, 3]",
    "output": "generated_output : list = drop([-4, 4, 5, 3],1)",
    "io_inp": [
      -4,
      4,
      5,
      3
    ],
    "io_out": [
      4,
      5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [3, 5]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(mul_n([5, 4],2))),10),-5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(mul_n(input,2))),10),-5)"
  },
  {
    "input": "input : list = [3, -3, -5, -2, 0]\noutput : list = [-6]",
    "output": "generated_output : list = take(drop(sub_n(mul_n(reverse([3, -3, -5, -2, 0]),-3),-3),4),36)",
    "io_inp": [
      3,
      -3,
      -5,
      -2,
      0
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(mul_n(reverse(input),-3),-3),4),36)"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [25, 13, 25]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(reverse([5, 1, 5]),3),3),-4),-3)",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      25,
      13,
      25
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(reverse(input),3),3),-4),-3)"
  },
  {
    "input": "input : list = [3, -4, 5, 4]\noutput : list = [80, -60, -80, -100]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse(mul_n([3, -4, 5, 4],4))),-5))",
    "io_inp": [
      3,
      -4,
      5,
      4
    ],
    "io_out": [
      80,
      -60,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(mul_n(input,4))),-5))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(sort_des([-5, 4]),11),21)),-1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(sort_des(input),11),21)),-1)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [5, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([-2, 5, -5])))",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-2, -2, 3, 5]\noutput : list = [1, -1, -6]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(drop([-2, -2, 3, 5],1)),-1),-4),1)",
    "io_inp": [
      -2,
      -2,
      3,
      5
    ],
    "io_out": [
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(drop(input,1)),-1),-4),1)"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [-2]",
    "output": "generated_output : list = take(add_n(mul_n(take([1, 0, 1],1),-1),-1),6)",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(input,1),-1),-1),6)"
  },
  {
    "input": "input : list = [-4, 4, -3, 2]\noutput : list = [2, -3, 4]",
    "output": "generated_output : list = reverse(drop([-4, 4, -3, 2],1))",
    "io_inp": [
      -4,
      4,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [1, 3, 5, 1, 4]\noutput : list = [-140, -130, -120, -100, -100]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n([1, 3, 5, 1, 4],-4),-5)),-2),5)",
    "io_inp": [
      1,
      3,
      5,
      1,
      4
    ],
    "io_out": [
      -140,
      -130,
      -120,
      -100,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n(input,-4),-5)),-2),5)"
  },
  {
    "input": "input : list = [-5, -5, -4, -3]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take([-5, -5, -4, -3],1)),-2),2)",
    "io_inp": [
      -5,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(input,1)),-2),2)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [50]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(drop(reverse([-5, -3]),1),-2),1),5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(drop(reverse(input),1),-2),1),5)"
  },
  {
    "input": "input : list = [0, 2, 3, 5]\noutput : list = [0, 32, 48, 80]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_asc([0, 2, 3, 5]),4))),4)",
    "io_inp": [
      0,
      2,
      3,
      5
    ],
    "io_out": [
      0,
      32,
      48,
      80
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_asc(input),4))),4)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [-2, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([4, 5, -5],1)),4)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      -2,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,1)),4)"
  },
  {
    "input": "input : list = [-5, -2, -5, 5]\noutput : list = [3, 3, 6, 13]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sort_asc([-5, -2, -5, 5]),-4))),4)",
    "io_inp": [
      -5,
      -2,
      -5,
      5
    ],
    "io_out": [
      3,
      3,
      6,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sort_asc(input),-4))),4)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [18, -12]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(mul_n([3, -3],5)),2)),-5)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      18,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(mul_n(input,5)),2)),-5)"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [4, -2, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n([-1, -2, 5],-1)),27))",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(input,-1)),27))"
  },
  {
    "input": "input : list = [0, -1, -1, -5, 3, -4]\noutput : list = [2, 6, 6, 7]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(take([0, -1, -1, -5, 3, -4],4)),2)),5)",
    "io_inp": [
      0,
      -1,
      -1,
      -5,
      3,
      -4
    ],
    "io_out": [
      2,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(take(input,4)),2)),5)"
  },
  {
    "input": "input : list = [-3, -2, -1, -1]\noutput : list = [9, 6, 3, 3]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(sub_n([-3, -2, -1, -1],4))),4),-3)",
    "io_inp": [
      -3,
      -2,
      -1,
      -1
    ],
    "io_out": [
      9,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(sub_n(input,4))),4),-3)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [-1, -2, -6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([0, 5, 4],1),5))",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,1),5))"
  },
  {
    "input": "input : list = [-1, -3, -3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = drop([-1, -3, -3, -1],2)",
    "io_inp": [
      -1,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, -4, 2, -1, -3]\noutput : list = [-7, -7, -6, -4, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([-4, -4, 2, -1, -3]),1),2)",
    "io_inp": [
      -4,
      -4,
      2,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),1),2)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 0, -2],1)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 0, 0, -3]\noutput : list = [4, 0, 0, -3]",
    "output": "generated_output : list = reverse(reverse([4, 0, 0, -3]))",
    "io_inp": [
      4,
      0,
      0,
      -3
    ],
    "io_out": [
      4,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, 4, -2, -1, -5]\noutput : list = [9, 8, 14, 15]",
    "output": "generated_output : list = mul_n(drop(add_n(reverse(sub_n([5, 4, -2, -1, -5],-5)),5),1),1)",
    "io_inp": [
      5,
      4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      9,
      8,
      14,
      15
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(reverse(sub_n(input,-5)),5),1),1)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(reverse([1, 1]),-5)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [0, 2, -5, 3, -1]\noutput : list = [5, 7, 0, 8, 4]",
    "output": "generated_output : list = add_n([0, 2, -5, 3, -1],5)",
    "io_inp": [
      0,
      2,
      -5,
      3,
      -1
    ],
    "io_out": [
      5,
      7,
      0,
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 5, -4, 4]\noutput : list = [4, -4, 5, -2]",
    "output": "generated_output : list = reverse([-2, 5, -4, 4])",
    "io_inp": [
      -2,
      5,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n(sort_des([-4, 2]),-3),12),2),-1)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(sort_des(input),-3),12),2),-1)"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = reverse([0, 1, 5])",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [36, -12]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(mul_n([1, -3],4),-3)),30))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      36,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(mul_n(input,4),-3)),30))"
  },
  {
    "input": "input : list = [-2, -4, -3, -4, 2, 4]\noutput : list = [-12, -12, -11, -10, -6, -4]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(sort_des([-2, -4, -3, -4, 2, 4]),-1),-2)),5)",
    "io_inp": [
      -2,
      -4,
      -3,
      -4,
      2,
      4
    ],
    "io_out": [
      -12,
      -12,
      -11,
      -10,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(sort_des(input),-1),-2)),5)"
  },
  {
    "input": "input : list = [-1, 5, 0, -2]\noutput : list = [-12, 3, 6, 9]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(mul_n([-1, 5, 0, -2],-3))),-3),12)",
    "io_inp": [
      -1,
      5,
      0,
      -2
    ],
    "io_out": [
      -12,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(mul_n(input,-3))),-3),12)"
  },
  {
    "input": "input : list = [-2, 3, -3, 0, 3]\noutput : list = [-3, -2, 0, 3, 3]",
    "output": "generated_output : list = sort_asc([-2, 3, -3, 0, 3])",
    "io_inp": [
      -2,
      3,
      -3,
      0,
      3
    ],
    "io_out": [
      -3,
      -2,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, -2, 5, 2, 4]\noutput : list = [-2, 0, 2, 4, 4, 5]",
    "output": "generated_output : list = take(reverse(sort_des([0, 4, -2, 5, 2, 4])),16)",
    "io_inp": [
      0,
      4,
      -2,
      5,
      2,
      4
    ],
    "io_out": [
      -2,
      0,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),16)"
  },
  {
    "input": "input : list = [5, -1, 3, 0]\noutput : list = [4, 7, 3, 9]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n([5, -1, 3, 0],-1)),-3),34)",
    "io_inp": [
      5,
      -1,
      3,
      0
    ],
    "io_out": [
      4,
      7,
      3,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(input,-1)),-3),34)"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [30, 40, 30]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(add_n([1, 0, 1],-4),5))),-2)",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      30,
      40,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(add_n(input,-4),5))),-2)"
  },
  {
    "input": "input : list = [-4, -3, -4, -3, -3, 3]\noutput : list = [-4, -3, -4]",
    "output": "generated_output : list = take([-4, -3, -4, -3, -3, 3],3)",
    "io_inp": [
      -4,
      -3,
      -4,
      -3,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, 1, 1, -1, -5]\noutput : list = [9, 12, 12, 10, 6]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(reverse([-2, 1, 1, -1, -5]),5)),-2),4)",
    "io_inp": [
      -2,
      1,
      1,
      -1,
      -5
    ],
    "io_out": [
      9,
      12,
      12,
      10,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(reverse(input),5)),-2),4)"
  },
  {
    "input": "input : list = [1, 2, 4, -2, -5, -5]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sort_des(take(take([1, 2, 4, -2, -5, -5],1),25)))",
    "io_inp": [
      1,
      2,
      4,
      -2,
      -5,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(input,1),25)))"
  },
  {
    "input": "input : list = [4, -5, 5, 5, -4, 4]\noutput : list = [12, -15, 15, 15, -12, 12]",
    "output": "generated_output : list = mul_n([4, -5, 5, 5, -4, 4],3)",
    "io_inp": [
      4,
      -5,
      5,
      5,
      -4,
      4
    ],
    "io_out": [
      12,
      -15,
      15,
      15,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-2, 4]),5))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),5))"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [1, 2, 2]",
    "output": "generated_output : list = sort_asc([2, 2, 1])",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, 0, 1, 0, -4]\noutput : list = [0, 0, -1, -1, -2, -5]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(sort_des([1, -1, 0, 1, 0, -4])),30)),-1)",
    "io_inp": [
      1,
      -1,
      0,
      1,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      -1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(sort_des(input)),30)),-1)"
  },
  {
    "input": "input : list = [0, -4, 4, -5, 3]\noutput : list = [4, -4]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(drop([0, -4, 4, -5, 3],3),-1)),36),-1)",
    "io_inp": [
      0,
      -4,
      4,
      -5,
      3
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(drop(input,3),-1)),36),-1)"
  },
  {
    "input": "input : list = [0, -1, -4, 2]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take(take([0, -1, -4, 2],1),19),4)",
    "io_inp": [
      0,
      -1,
      -4,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),19),4)"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = sort_asc([3, 1, 3])",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [-6, -12]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(add_n([-2, -5, 0],3),2)),-5),-2)",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(add_n(input,3),2)),-5),-2)"
  },
  {
    "input": "input : list = [-5, 0, 0, -3]\noutput : list = [0, 0, -6, -10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(sort_des([-5, 0, 0, -3])))),2)",
    "io_inp": [
      -5,
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n([5, -4],-3),1)),4)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(input,-3),1)),4)"
  },
  {
    "input": "input : list = [-1, -3, -3, -4, -5]\noutput : list = [-5, -4, -3, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(sort_asc([-1, -3, -3, -4, -5]),1),10)))",
    "io_inp": [
      -1,
      -3,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(sort_asc(input),1),10)))"
  },
  {
    "input": "input : list = [-4, -1, -1]\noutput : list = [36, 36, 63]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse([-4, -1, -1]),-3),-3),3)",
    "io_inp": [
      -4,
      -1,
      -1
    ],
    "io_out": [
      36,
      36,
      63
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(input),-3),-3),3)"
  },
  {
    "input": "input : list = [-3, 0, 3, -1]\noutput : list = [3, 0, -1, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc([-3, 0, 3, -1])))))",
    "io_inp": [
      -3,
      0,
      3,
      -1
    ],
    "io_out": [
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, 4, 5, 3, 0, 5]\noutput : list = [2, 4, 5, 6, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(add_n([2, 4, 5, 3, 0, 5],4),-2))",
    "io_inp": [
      2,
      4,
      5,
      3,
      0,
      5
    ],
    "io_out": [
      2,
      4,
      5,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,4),-2))"
  },
  {
    "input": "input : list = [-4, 4, 0, -2, -3, -1]\noutput : list = [4, 0, -1, -2, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des([-4, 4, 0, -2, -3, -1])))",
    "io_inp": [
      -4,
      4,
      0,
      -2,
      -3,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc([0, 4])",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -5, -4, -4, -2]\noutput : list = [3, -2, -4, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(sort_des([3, -5, -4, -4, -2])))))",
    "io_inp": [
      3,
      -5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      3,
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-16, 4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sort_asc([3, -2]),2))),4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sort_asc(input),2))),4)"
  },
  {
    "input": "input : list = [5, -2, 3, -4, -5]\noutput : list = [9, 7, 2, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(sub_n([5, -2, 3, -4, -5],-5),-4)),-5))",
    "io_inp": [
      5,
      -2,
      3,
      -4,
      -5
    ],
    "io_out": [
      9,
      7,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(sub_n(input,-5),-4)),-5))"
  },
  {
    "input": "input : list = [-3, 5, 4, -1]\noutput : list = [9, 8, 3, 1]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-3, 5, 4, -1],4)))",
    "io_inp": [
      -3,
      5,
      4,
      -1
    ],
    "io_out": [
      9,
      8,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,4)))"
  },
  {
    "input": "input : list = [3, -2, -4, 1]\noutput : list = [3, 1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([3, -2, -4, 1]))",
    "io_inp": [
      3,
      -2,
      -4,
      1
    ],
    "io_out": [
      3,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -4, 4, -5, 0]\noutput : list = [6, 2, 0, -2, -3]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(sort_asc([-2, -4, 4, -5, 0]))),39),2)",
    "io_inp": [
      -2,
      -4,
      4,
      -5,
      0
    ],
    "io_out": [
      6,
      2,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(sort_asc(input))),39),2)"
  },
  {
    "input": "input : list = [0, -5, -4]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take([0, -5, -4],1))",
    "io_inp": [
      0,
      -5,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(reverse([3, 2]),4)),13))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(reverse(input),4)),13))"
  },
  {
    "input": "input : list = [-2, 3, 5, -5, 0]\noutput : list = [-2, 3, 5, -5, 0]",
    "output": "generated_output : list = mul_n([-2, 3, 5, -5, 0],1)",
    "io_inp": [
      -2,
      3,
      5,
      -5,
      0
    ],
    "io_out": [
      -2,
      3,
      5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [-1, -5, -9]",
    "output": "generated_output : list = take(sub_n(sort_des([-5, 3, -1]),4),20)",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),4),20)"
  },
  {
    "input": "input : list = [5, 1, 0, 2, 1, 5]\noutput : list = [11, -9, -14, -4, -9, 11]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n([5, 1, 0, 2, 1, 5],-1),1),5),5),1)",
    "io_inp": [
      5,
      1,
      0,
      2,
      1,
      5
    ],
    "io_out": [
      11,
      -9,
      -14,
      -4,
      -9,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(add_n(input,-1),1),5),5),1)"
  },
  {
    "input": "input : list = [-1, 4, 0, 3]\noutput : list = [3, 0, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, 0, 3])",
    "io_inp": [
      -1,
      4,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 0, -2],1)",
    "io_inp": [
      -1,
      0,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-32, 64]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(mul_n([-4, 2],4),-5)),5),-4)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -32,
      64
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(mul_n(input,4),-5)),5),-4)"
  },
  {
    "input": "input : list = [0, 0, 1, -3, -2]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(drop([0, 0, 1, -3, -2],3))),3),4)",
    "io_inp": [
      0,
      0,
      1,
      -3,
      -2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(drop(input,3))),3),4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(sort_asc([5, 3])))),21)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(sort_asc(input)))),21)"
  },
  {
    "input": "input : list = [5, -1, -4, 3]\noutput : list = [6, -1, 2, 8]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(add_n([5, -1, -4, 3],-1),2)),-2),12)",
    "io_inp": [
      5,
      -1,
      -4,
      3
    ],
    "io_out": [
      6,
      -1,
      2,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(add_n(input,-1),2)),-2),12)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des([0, -5]))),1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(input))),1)"
  },
  {
    "input": "input : list = [-5, -2, 0, -4, 0, 3]\noutput : list = [-10]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(take([-5, -2, 0, -4, 0, 3],1),20),5)))",
    "io_inp": [
      -5,
      -2,
      0,
      -4,
      0,
      3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(take(input,1),20),5)))"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [16, 12]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(drop([-5, 3, 4],1)),-1),-4))",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      16,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(drop(input,1)),-1),-4))"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [-9, -12]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(drop([4, 1, 4],1),-5)),-4),4)",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(drop(input,1),-5)),-4),4)"
  },
  {
    "input": "input : list = [2, 4, 1, 1, -4, 5]\noutput : list = [-20, -16, -8, -4, -4, 16]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc([2, 4, 1, 1, -4, 5])),-4)))",
    "io_inp": [
      2,
      4,
      1,
      1,
      -4,
      5
    ],
    "io_out": [
      -20,
      -16,
      -8,
      -4,
      -4,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-3, -4, 3, -3]\noutput : list = [-6, -5, 1]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(drop([-3, -4, 3, -3],1))),-2),45)",
    "io_inp": [
      -3,
      -4,
      3,
      -3
    ],
    "io_out": [
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(drop(input,1))),-2),45)"
  },
  {
    "input": "input : list = [0, -5, 0, -5, -1, 1]\noutput : list = [-8, -3, -8, -4, -2]",
    "output": "generated_output : list = sub_n(drop([0, -5, 0, -5, -1, 1],1),3)",
    "io_inp": [
      0,
      -5,
      0,
      -5,
      -1,
      1
    ],
    "io_out": [
      -8,
      -3,
      -8,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [2, 4, -1, -1, 0]\noutput : list = [2]",
    "output": "generated_output : list = take(take(sort_asc(reverse(take([2, 4, -1, -1, 0],1))),38),16)",
    "io_inp": [
      2,
      4,
      -1,
      -1,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(take(input,1))),38),16)"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [9, 12, 9]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(add_n([1, 0, 1],-5),-1),1),3),19)",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      9,
      12,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(add_n(input,-5),-1),1),3),19)"
  },
  {
    "input": "input : list = [4, 3, 1, -3]\noutput : list = [-8, -4, -2, -1]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(reverse([4, 3, 1, -3]),4),-2),-3),43)",
    "io_inp": [
      4,
      3,
      1,
      -3
    ],
    "io_out": [
      -8,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(reverse(input),4),-2),-3),43)"
  },
  {
    "input": "input : list = [2, 0, -5, -1, -1]\noutput : list = [-14, -6, -6, -4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(drop([2, 0, -5, -1, -1],1)),2),2)",
    "io_inp": [
      2,
      0,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -14,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(drop(input,1)),2),2)"
  },
  {
    "input": "input : list = [1, 1, 2, 4]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_des(mul_n(take([1, 1, 2, 4],2),-5))",
    "io_inp": [
      1,
      1,
      2,
      4
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,2),-5))"
  },
  {
    "input": "input : list = [3, 5, 5, -4, 4, 1]\noutput : list = [-4, -12, -12, 24, -8, 4]",
    "output": "generated_output : list = mul_n(add_n([3, 5, 5, -4, 4, 1],-2),-4)",
    "io_inp": [
      3,
      5,
      5,
      -4,
      4,
      1
    ],
    "io_out": [
      -4,
      -12,
      -12,
      24,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-4)"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(add_n(take([0, -5, 0],1),-4))",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(input,1),-4))"
  },
  {
    "input": "input : list = [3, -3, -4, -2, -1]\noutput : list = [1, -3, -4, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(reverse([3, -3, -4, -2, -1])),13),2))",
    "io_inp": [
      3,
      -3,
      -4,
      -2,
      -1
    ],
    "io_out": [
      1,
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(reverse(input)),13),2))"
  },
  {
    "input": "input : list = [0, -1, 5, -2]\noutput : list = [-6, 1, -5, -4]",
    "output": "generated_output : list = reverse(sub_n([0, -1, 5, -2],4))",
    "io_inp": [
      0,
      -1,
      5,
      -2
    ],
    "io_out": [
      -6,
      1,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-4, 0, -5, 1, 1, 0]\noutput : list = [0, 5, 6, 6]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc(drop([-4, 0, -5, 1, 1, 0],2)),1),4),23)",
    "io_inp": [
      -4,
      0,
      -5,
      1,
      1,
      0
    ],
    "io_out": [
      0,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(drop(input,2)),1),4),23)"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take(mul_n(take(take([0, -5, -1],1),6),-2),17),1)",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(take(input,1),6),-2),17),1)"
  },
  {
    "input": "input : list = [3, -2, 1, 2]\noutput : list = [-11]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(take([3, -2, 1, 2],1),-2)),5))",
    "io_inp": [
      3,
      -2,
      1,
      2
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(take(input,1),-2)),5))"
  },
  {
    "input": "input : list = [-5, 0, 3, 1, -2, -4]\noutput : list = [-1, 4, 5, 7]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(take([-5, 0, 3, 1, -2, -4],4),-4))))",
    "io_inp": [
      -5,
      0,
      3,
      1,
      -2,
      -4
    ],
    "io_out": [
      -1,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(take(input,4),-4))))"
  },
  {
    "input": "input : list = [0, 3, -2, 0]\noutput : list = [-15, 0, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([0, 3, -2, 0]),-5))",
    "io_inp": [
      0,
      3,
      -2,
      0
    ],
    "io_out": [
      -15,
      0,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [3, 1, 3, -3, 0]\noutput : list = [4, 2, 1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop([3, 1, 3, -3, 0],1),1))))",
    "io_inp": [
      3,
      1,
      3,
      -3,
      0
    ],
    "io_out": [
      4,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [-4, -1, -1, 1, -3]\noutput : list = [6, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take([-4, -1, -1, 1, -3],3)),-1),2),-4)",
    "io_inp": [
      -4,
      -1,
      -1,
      1,
      -3
    ],
    "io_out": [
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take(input,3)),-1),2),-4)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(mul_n([-1, -1],-3),4),2),3))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(mul_n(input,-3),4),2),3))"
  },
  {
    "input": "input : list = [3, 2, 2, 1, 0]\noutput : list = [-10, -6, -6, -2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sort_asc([3, 2, 2, 1, 0])),-4),-2))",
    "io_inp": [
      3,
      2,
      2,
      1,
      0
    ],
    "io_out": [
      -10,
      -6,
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sort_asc(input)),-4),-2))"
  },
  {
    "input": "input : list = [2, -5, 3, 0]\noutput : list = [-9, -4, -2, -1]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n(sort_asc([2, -5, 3, 0]),1),-3)))",
    "io_inp": [
      2,
      -5,
      3,
      0
    ],
    "io_out": [
      -9,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(sort_asc(input),1),-3)))"
  },
  {
    "input": "input : list = [1, 0, -3, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(take([1, 0, -3, 0],2),5),3),3))",
    "io_inp": [
      1,
      0,
      -3,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(take(input,2),5),3),3))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(add_n([1, 0],-2),-2),4)))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(add_n(input,-2),-2),4)))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-4, -20]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(sort_asc([1, 5]),9),18)),-4)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(sort_asc(input),9),18)),-4)"
  },
  {
    "input": "input : list = [1, 1, -1, -4, -4]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(drop([1, 1, -1, -4, -4],3),3))))",
    "io_inp": [
      1,
      1,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(drop(input,3),3))))"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [5, 0, -5]",
    "output": "generated_output : list = mul_n([-5, 0, 5],-1)",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 3, 5, 3, 1, 0]\noutput : list = [22, 32, 32, 52, 52, 72]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sub_n([1, 3, 5, 3, 1, 0],-2)),5),2),2)",
    "io_inp": [
      1,
      3,
      5,
      3,
      1,
      0
    ],
    "io_out": [
      22,
      32,
      32,
      52,
      52,
      72
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sub_n(input,-2)),5),2),2)"
  },
  {
    "input": "input : list = [-1, 4, 2, 2, -5]\noutput : list = [10, -10, -25, -25, -35]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([-1, 4, 2, 2, -5],3)),-5)",
    "io_inp": [
      -1,
      4,
      2,
      2,
      -5
    ],
    "io_out": [
      10,
      -10,
      -25,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,3)),-5)"
  },
  {
    "input": "input : list = [0, 1, 3, 2, 4]\noutput : list = [6, 8, 7, 9]",
    "output": "generated_output : list = sub_n(take(drop([0, 1, 3, 2, 4],1),19),-5)",
    "io_inp": [
      0,
      1,
      3,
      2,
      4
    ],
    "io_out": [
      6,
      8,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,1),19),-5)"
  },
  {
    "input": "input : list = [3, -5, -4, 5, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(take([3, -5, -4, 5, -4],2))),1))",
    "io_inp": [
      3,
      -5,
      -4,
      5,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(take(input,2))),1))"
  },
  {
    "input": "input : list = [-5, -1, 5, 2]\noutput : list = [15, 11, 8, 5]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(add_n([-5, -1, 5, 2],-2)),-3),-1),-5)",
    "io_inp": [
      -5,
      -1,
      5,
      2
    ],
    "io_out": [
      15,
      11,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(add_n(input,-2)),-3),-1),-5)"
  },
  {
    "input": "input : list = [-3, 4, 0, 3, -2, 3]\noutput : list = [-35, 0, -20, -5, -30, -5]",
    "output": "generated_output : list = mul_n(sub_n([-3, 4, 0, 3, -2, 3],4),5)",
    "io_inp": [
      -3,
      4,
      0,
      3,
      -2,
      3
    ],
    "io_out": [
      -35,
      0,
      -20,
      -5,
      -30,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,4),5)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [3, -2, -4]",
    "output": "generated_output : list = sort_des(take(take(take(sort_des([-4, -2, 3]),5),3),16))",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(sort_des(input),5),3),16))"
  },
  {
    "input": "input : list = [-4, 0, -2, -1]\noutput : list = [-5, -6, -7, -9]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(add_n([-4, 0, -2, -1],-3),-2))))",
    "io_inp": [
      -4,
      0,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(add_n(input,-3),-2))))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-28, -16]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(add_n([2, 5],5),3),3),-4))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -28,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(add_n(input,5),3),3),-4))"
  },
  {
    "input": "input : list = [2, -1, 5, 1, 3]\noutput : list = [-3, -1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([2, -1, 5, 1, 3],5),3))",
    "io_inp": [
      2,
      -1,
      5,
      1,
      3
    ],
    "io_out": [
      -3,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,5),3))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([-1, -4])),1)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),1)"
  },
  {
    "input": "input : list = [4, 3, -1, -5, -5, 3]\noutput : list = [30, 25, 25, 5, -15, -15]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n(add_n([4, 3, -1, -5, -5, 3],5),-3)),5))",
    "io_inp": [
      4,
      3,
      -1,
      -5,
      -5,
      3
    ],
    "io_out": [
      30,
      25,
      25,
      5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(add_n(input,5),-3)),5))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse([3, 5]),13),-2),-1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(input),13),-2),-1)"
  },
  {
    "input": "input : list = [0, -3, -3, 0, 3]\noutput : list = [-15, 0, 15, 15, 0]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(mul_n([0, -3, -3, 0, 3],-5),-3),-2),-1))",
    "io_inp": [
      0,
      -3,
      -3,
      0,
      3
    ],
    "io_out": [
      -15,
      0,
      15,
      15,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(mul_n(input,-5),-3),-2),-1))"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [16, 12, -16]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sub_n([3, 2, -5],-1),10)),4))",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      16,
      12,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sub_n(input,-1),10)),4))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(sort_asc([1, -1]))),19),2)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(sort_asc(input))),19),2)"
  },
  {
    "input": "input : list = [0, 5, 2, 5]\noutput : list = [-1, 4, 1, 4]",
    "output": "generated_output : list = add_n([0, 5, 2, 5],-1)",
    "io_inp": [
      0,
      5,
      2,
      5
    ],
    "io_out": [
      -1,
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 3, -5, 5]\noutput : list = [-23, 17, -15, -11]",
    "output": "generated_output : list = take(add_n(mul_n(take(reverse([2, 3, -5, 5]),7),-4),-3),25)",
    "io_inp": [
      2,
      3,
      -5,
      5
    ],
    "io_out": [
      -23,
      17,
      -15,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(reverse(input),7),-4),-3),25)"
  },
  {
    "input": "input : list = [2, 3, 5, -1, 0, -3]\noutput : list = [45, 35, 30, 20, 15, 5]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc([2, 3, 5, -1, 0, -3]),4)),5)",
    "io_inp": [
      2,
      3,
      5,
      -1,
      0,
      -3
    ],
    "io_out": [
      45,
      35,
      30,
      20,
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(input),4)),5)"
  },
  {
    "input": "input : list = [-3, -4, -4, 4, 5, -4]\noutput : list = [15, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(take([-3, -4, -4, 4, 5, -4],2)),-5)))",
    "io_inp": [
      -3,
      -4,
      -4,
      4,
      5,
      -4
    ],
    "io_out": [
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(take(input,2)),-5)))"
  },
  {
    "input": "input : list = [4, 0, 1, 2, -1]\noutput : list = [2, 3, 4, 5, 7]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(sort_asc([4, 0, 1, 2, -1])),21)),3)",
    "io_inp": [
      4,
      0,
      1,
      2,
      -1
    ],
    "io_out": [
      2,
      3,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(sort_asc(input)),21)),3)"
  },
  {
    "input": "input : list = [4, 3, 2, -3, -5]\noutput : list = [4, -1, -3]",
    "output": "generated_output : list = sub_n(add_n(drop([4, 3, 2, -3, -5],2),-2),-4)",
    "io_inp": [
      4,
      3,
      2,
      -3,
      -5
    ],
    "io_out": [
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(input,2),-2),-4)"
  },
  {
    "input": "input : list = [-3, -4, 3, -5]\noutput : list = [4, 5, -2, 6]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(add_n([-3, -4, 3, -5],4)),5),-1))",
    "io_inp": [
      -3,
      -4,
      3,
      -5
    ],
    "io_out": [
      4,
      5,
      -2,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(add_n(input,4)),5),-1))"
  },
  {
    "input": "input : list = [3, 4, -3, 5, 1]\noutput : list = [-4, 0, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse(sub_n([3, 4, -3, 5, 1],-4)),5)))",
    "io_inp": [
      3,
      4,
      -3,
      5,
      1
    ],
    "io_out": [
      -4,
      0,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(sub_n(input,-4)),5)))"
  },
  {
    "input": "input : list = [3, 1, 1, -1]\noutput : list = [-4, -2, -2, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(sort_asc([3, 1, 1, -1]),15)),1),-4)",
    "io_inp": [
      3,
      1,
      1,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(sort_asc(input),15)),1),-4)"
  },
  {
    "input": "input : list = [-4, 4, 2, 1, -5]\noutput : list = [4, 2, 1, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-4, 4, 2, 1, -5]))",
    "io_inp": [
      -4,
      4,
      2,
      1,
      -5
    ],
    "io_out": [
      4,
      2,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des([-1, 2])",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [10, 0]",
    "output": "generated_output : list = take(mul_n([2, 0],5),8)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,5),8)"
  },
  {
    "input": "input : list = [-5, 4, -3, 2]\noutput : list = [-1, 8, 1, 6]",
    "output": "generated_output : list = add_n([-5, 4, -3, 2],4)",
    "io_inp": [
      -5,
      4,
      -3,
      2
    ],
    "io_out": [
      -1,
      8,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [-14, 2, 0]",
    "output": "generated_output : list = sub_n(mul_n([5, -3, -2],-2),4)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      -14,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),4)"
  },
  {
    "input": "input : list = [1, 0, 1, -4, -5, 4]\noutput : list = [-10, -9, -5, -4, -4, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(sort_asc([1, 0, 1, -4, -5, 4])),-3),-3),5)",
    "io_inp": [
      1,
      0,
      1,
      -4,
      -5,
      4
    ],
    "io_out": [
      -10,
      -9,
      -5,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(sort_asc(input)),-3),-3),5)"
  },
  {
    "input": "input : list = [1, 0, -4, 3, -3]\noutput : list = [-3, 3, 6, 15, 18]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sub_n([1, 0, -4, 3, -3],1),2)),-1),-3)",
    "io_inp": [
      1,
      0,
      -4,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      6,
      15,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(sub_n(input,1),2)),-1),-3)"
  },
  {
    "input": "input : list = [-2, -3, -5, 3]\noutput : list = [-5, -3, -2, 3]",
    "output": "generated_output : list = sort_asc([-2, -3, -5, 3])",
    "io_inp": [
      -2,
      -3,
      -5,
      3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse([0, 2]),-2)))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(input),-2)))"
  },
  {
    "input": "input : list = [3, -4, -1, -2]\noutput : list = [-6, 1]",
    "output": "generated_output : list = take(sort_asc(drop(reverse(add_n([3, -4, -1, -2],-2)),2)),12)",
    "io_inp": [
      3,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(reverse(add_n(input,-2)),2)),12)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [8, 8, 12]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(mul_n([-2, -4, -2],-2)),4)),47)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      8,
      8,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(mul_n(input,-2)),4)),47)"
  },
  {
    "input": "input : list = [5, -1, 3, 2, -4, 4]\noutput : list = [1, 0, -1, -2, -5, -8]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sub_n([5, -1, 3, 2, -4, 4],4)))))",
    "io_inp": [
      5,
      -1,
      3,
      2,
      -4,
      4
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [-4, 3, 3, 3, 3, 4]\noutput : list = [5, 5, 5, 6]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(drop([-4, 3, 3, 3, 3, 4],2),4)),-2))",
    "io_inp": [
      -4,
      3,
      3,
      3,
      3,
      4
    ],
    "io_out": [
      5,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(drop(input,2),4)),-2))"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n(sort_asc([2, 5, 1]),-1))))",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [-3, 2, -3, 5, -2, -4]\noutput : list = [4, 1, -3, -4, -4, -5]",
    "output": "generated_output : list = sort_des(sub_n([-3, 2, -3, 5, -2, -4],1))",
    "io_inp": [
      -3,
      2,
      -3,
      5,
      -2,
      -4
    ],
    "io_out": [
      4,
      1,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,1))"
  },
  {
    "input": "input : list = [4, 3, -4, 3, 3]\noutput : list = [3, 3, -4, 3, 4]",
    "output": "generated_output : list = reverse([4, 3, -4, 3, 3])",
    "io_inp": [
      4,
      3,
      -4,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(take([5, 1, 4],1))",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(reverse(reverse([-2, 2])),19)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),19)"
  },
  {
    "input": "input : list = [4, -4, 1, -4, 5]\noutput : list = [9]",
    "output": "generated_output : list = add_n(take([4, -4, 1, -4, 5],1),5)",
    "io_inp": [
      4,
      -4,
      1,
      -4,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-4, -5, 5, 4, -3, 2]\noutput : list = [-25, -20, -10, 15, 20, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des([-4, -5, 5, 4, -3, 2]),-5)))",
    "io_inp": [
      -4,
      -5,
      5,
      4,
      -3,
      2
    ],
    "io_out": [
      -25,
      -20,
      -10,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(input),-5)))"
  },
  {
    "input": "input : list = [0, 3, 1, 1, 0, 1]\noutput : list = [4, 4, 6, 6, 6, 10]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(mul_n([0, 3, 1, 1, 0, 1],2),1)),3),14)",
    "io_inp": [
      0,
      3,
      1,
      1,
      0,
      1
    ],
    "io_out": [
      4,
      4,
      6,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(mul_n(input,2),1)),3),14)"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [2, 11]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(drop([-1, 4, -5],1)),5),-5),2)",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      2,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(drop(input,1)),5),-5),2)"
  },
  {
    "input": "input : list = [4, 5, 4, -2, 5]\noutput : list = [-14, 0, -12, -14, -12]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(reverse([4, 5, 4, -2, 5]),13),-2),-5),-1)",
    "io_inp": [
      4,
      5,
      4,
      -2,
      5
    ],
    "io_out": [
      -14,
      0,
      -12,
      -14,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(reverse(input),13),-2),-5),-1)"
  },
  {
    "input": "input : list = [1, 0, 2, 0, -5, -3]\noutput : list = [6, 5, 4, 4, 1, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(sub_n([1, 0, 2, 0, -5, -3],-3))),-1))",
    "io_inp": [
      1,
      0,
      2,
      0,
      -5,
      -3
    ],
    "io_out": [
      6,
      5,
      4,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(sub_n(input,-3))),-1))"
  },
  {
    "input": "input : list = [1, 5, 1, 3]\noutput : list = [4, 2, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sort_des([1, 5, 1, 3]),2)),3))",
    "io_inp": [
      1,
      5,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sort_des(input),2)),3))"
  },
  {
    "input": "input : list = [-4, 4, -5, -2, 4]\noutput : list = [2, 0, -1]",
    "output": "generated_output : list = sort_des(drop(sort_des(sort_des(add_n([-4, 4, -5, -2, 4],4))),2))",
    "io_inp": [
      -4,
      4,
      -5,
      -2,
      4
    ],
    "io_out": [
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(sort_des(add_n(input,4))),2))"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = reverse(reverse(take(take(sort_des([-3, 4, 3]),8),16)))",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(sort_des(input),8),16)))"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [4, 4, -2]",
    "output": "generated_output : list = sort_des(sort_des([4, 4, -2]))",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, 4, 1, 4, 5]\noutput : list = [-4, -4, -7, -7, -8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sub_n([1, 4, 1, 4, 5],4)),-5),-2),-1)",
    "io_inp": [
      1,
      4,
      1,
      4,
      5
    ],
    "io_out": [
      -4,
      -4,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sub_n(input,4)),-5),-2),-1)"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [19, 7, 3]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(sort_des([2, 1, 5]),14),-1),-4),1)",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      19,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(sort_des(input),14),-1),-4),1)"
  },
  {
    "input": "input : list = [1, -1, -5]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = sub_n([1, -1, -5],-4)",
    "io_inp": [
      1,
      -1,
      -5
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [0, 0, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n([-2, -5, -5],-3)),-2)),-4)",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n(input,-3)),-2)),-4)"
  },
  {
    "input": "input : list = [-3, -5, 1, 4]\noutput : list = [4, 1, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, 1, 4])",
    "io_inp": [
      -3,
      -5,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5, -5, -3]\noutput : list = [-1, -4, -4, -2]",
    "output": "generated_output : list = sub_n([-2, -5, -5, -3],-1)",
    "io_inp": [
      -2,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, 2, 0, 0, -4, -1]\noutput : list = [-3, -3, -7, -4]",
    "output": "generated_output : list = add_n(drop([2, 2, 0, 0, -4, -1],2),-3)",
    "io_inp": [
      2,
      2,
      0,
      0,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [2, -3, -4, 1, -1, -3]\noutput : list = [0, -25, -30, -5, -15, -25]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(mul_n([2, -3, -4, 1, -1, -3],1),-2),5)))",
    "io_inp": [
      2,
      -3,
      -4,
      1,
      -1,
      -3
    ],
    "io_out": [
      0,
      -25,
      -30,
      -5,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(mul_n(input,1),-2),5)))"
  },
  {
    "input": "input : list = [-2, 3, 5, 5, 1, -2]\noutput : list = [8, 8, 6, 4, 1, 1]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(add_n([-2, 3, 5, 5, 1, -2],3))),32))",
    "io_inp": [
      -2,
      3,
      5,
      5,
      1,
      -2
    ],
    "io_out": [
      8,
      8,
      6,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(add_n(input,3))),32))"
  },
  {
    "input": "input : list = [3, 4, -1]\noutput : list = [-9, -12, 3]",
    "output": "generated_output : list = mul_n([3, 4, -1],-3)",
    "io_inp": [
      3,
      4,
      -1
    ],
    "io_out": [
      -9,
      -12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -1, 2, 5]\noutput : list = [0, 3, 6]",
    "output": "generated_output : list = sub_n(drop([-5, -1, 2, 5],1),-1)",
    "io_inp": [
      -5,
      -1,
      2,
      5
    ],
    "io_out": [
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-2, -4, 3, -5, -5]\noutput : list = [-15, -15]",
    "output": "generated_output : list = take(reverse(mul_n(sort_des(drop([-2, -4, 3, -5, -5],3)),3)),52)",
    "io_inp": [
      -2,
      -4,
      3,
      -5,
      -5
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_des(drop(input,3)),3)),52)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(take(sort_des(reverse([4, 4])),22),14)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(input)),22),14)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(reverse([-3, 1]))),1))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [3, 3, 1, -1]\noutput : list = [-1, -1, -3, -5]",
    "output": "generated_output : list = take(sub_n([3, 3, 1, -1],4),11)",
    "io_inp": [
      3,
      3,
      1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),11)"
  },
  {
    "input": "input : list = [2, -3, 4, 0, -3, 1]\noutput : list = [-3, 4, 0, -3, 1]",
    "output": "generated_output : list = drop([2, -3, 4, 0, -3, 1],1)",
    "io_inp": [
      2,
      -3,
      4,
      0,
      -3,
      1
    ],
    "io_out": [
      -3,
      4,
      0,
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [12, 27]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(drop([-2, 5, 2],1)),-5),-1),-2)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      12,
      27
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(drop(input,1)),-5),-1),-2)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-9, 1]",
    "output": "generated_output : list = sub_n(add_n([-5, 5],-2),2)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),2)"
  },
  {
    "input": "input : list = [0, -1, -3]\noutput : list = [6, 2]",
    "output": "generated_output : list = mul_n(take(reverse(take(sort_des([0, -1, -3]),16)),2),-2)",
    "io_inp": [
      0,
      -1,
      -3
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(sort_des(input),16)),2),-2)"
  },
  {
    "input": "input : list = [5, -3, -4]\noutput : list = [19, -5, -8]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(reverse([5, -3, -4])),3),5),-1)",
    "io_inp": [
      5,
      -3,
      -4
    ],
    "io_out": [
      19,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(reverse(input)),3),5),-1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [6, 13]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(add_n([-2, 5],4))),1),3)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      6,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(add_n(input,4))),1),3)"
  },
  {
    "input": "input : list = [3, 5, -1, 1, -5]\noutput : list = [47, 27, 17, 7, -3]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(sub_n([3, 5, -1, 1, -5],4)),-5),2))",
    "io_inp": [
      3,
      5,
      -1,
      1,
      -5
    ],
    "io_out": [
      47,
      27,
      17,
      7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(sub_n(input,4)),-5),2))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des([2, 1]),1),1),5))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des(input),1),1),5))"
  },
  {
    "input": "input : list = [-3, 3, -4, 3, 4]\noutput : list = [-6, -5, 1, 1, 2]",
    "output": "generated_output : list = take(take(sort_asc(sub_n([-3, 3, -4, 3, 4],2)),13),19)",
    "io_inp": [
      -3,
      3,
      -4,
      3,
      4
    ],
    "io_out": [
      -6,
      -5,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(input,2)),13),19)"
  },
  {
    "input": "input : list = [-3, -2, 1, -2, -4]\noutput : list = [-1, 0, 3, 0, -2]",
    "output": "generated_output : list = mul_n(take(take(sub_n([-3, -2, 1, -2, -4],-2),15),7),1)",
    "io_inp": [
      -3,
      -2,
      1,
      -2,
      -4
    ],
    "io_out": [
      -1,
      0,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(input,-2),15),7),1)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [21, 13]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(mul_n([2, 0],4),4),-5)),-4)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      21,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(mul_n(input,4),4),-5)),-4)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(take([1, -3, 0],1),2)),5))",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(take(input,1),2)),5))"
  },
  {
    "input": "input : list = [5, -4, 1, -2, 3, -5]\noutput : list = [2, 0, -2, -5, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des([5, -4, 1, -2, 3, -5]))),3)",
    "io_inp": [
      5,
      -4,
      1,
      -2,
      3,
      -5
    ],
    "io_out": [
      2,
      0,
      -2,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(input))),3)"
  },
  {
    "input": "input : list = [-3, 4, 0, 0, -4, -1]\noutput : list = [-6, 1, -3, -3, -7, -4]",
    "output": "generated_output : list = sub_n([-3, 4, 0, 0, -4, -1],3)",
    "io_inp": [
      -3,
      4,
      0,
      0,
      -4,
      -1
    ],
    "io_out": [
      -6,
      1,
      -3,
      -3,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [2, 0, -2, -5, 2]\noutput : list = [8, 12, 16, 22, 8]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n([2, 0, -2, -5, 2],-1),5),2),20),-2)",
    "io_inp": [
      2,
      0,
      -2,
      -5,
      2
    ],
    "io_out": [
      8,
      12,
      16,
      22,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n(input,-1),5),2),20),-2)"
  },
  {
    "input": "input : list = [-2, 1, 3, -4, 3, -3]\noutput : list = [-4, -3, -2, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([-2, 1, 3, -4, 3, -3])",
    "io_inp": [
      -2,
      1,
      3,
      -4,
      3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sub_n(drop([-5, 0, -1],1),4)",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [2, -1, -4]",
    "output": "generated_output : list = sort_des([2, -4, -1])",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = drop([3, -2, 5],1)",
    "io_inp": [
      3,
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 0, 5, 2]\noutput : list = [8, 5, 3, 3]",
    "output": "generated_output : list = sub_n(sort_des([0, 0, 5, 2]),-3)",
    "io_inp": [
      0,
      0,
      5,
      2
    ],
    "io_out": [
      8,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [2, 4, 3, 0]\noutput : list = [-5, -6, -7, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(sort_asc([2, 4, 3, 0]),-5))),-4)",
    "io_inp": [
      2,
      4,
      3,
      0
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(sort_asc(input),-5))),-4)"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [7, 5, -1]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n(reverse([3, 1, -5]),1)),1),-5)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      7,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(reverse(input),1)),1),-5)"
  },
  {
    "input": "input : list = [4, -2, -1, 1, 5, -1]\noutput : list = [24, 20, 20, 12, 0, -4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sort_asc([4, -2, -1, 1, 5, -1])),3),-4),4)",
    "io_inp": [
      4,
      -2,
      -1,
      1,
      5,
      -1
    ],
    "io_out": [
      24,
      20,
      20,
      12,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sort_asc(input)),3),-4),4)"
  },
  {
    "input": "input : list = [-1, -3, 3, -3, -1]\noutput : list = [-2, -2, 0, 4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(drop(reverse([-1, -3, 3, -3, -1]),1))),1)",
    "io_inp": [
      -1,
      -3,
      3,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(drop(reverse(input),1))),1)"
  },
  {
    "input": "input : list = [0, 4, 5, 1, 3]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(take([0, 4, 5, 1, 3],3))),2),4)",
    "io_inp": [
      0,
      4,
      5,
      1,
      3
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(take(input,3))),2),4)"
  },
  {
    "input": "input : list = [2, -3, -5, 4]\noutput : list = [2, -3]",
    "output": "generated_output : list = take([2, -3, -5, 4],2)",
    "io_inp": [
      2,
      -3,
      -5,
      4
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 0, 3, -4, -2, -5]\noutput : list = [5, 2, 5, -2, 0, -3]",
    "output": "generated_output : list = reverse(reverse(take(sub_n(add_n([3, 0, 3, -4, -2, -5],-3),-5),27)))",
    "io_inp": [
      3,
      0,
      3,
      -4,
      -2,
      -5
    ],
    "io_out": [
      5,
      2,
      5,
      -2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(add_n(input,-3),-5),27)))"
  },
  {
    "input": "input : list = [-3, -4, 5, 4, 2, 5]\noutput : list = [-22, -22]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des([-3, -4, 5, 4, 2, 5]),2),-4),2)",
    "io_inp": [
      -3,
      -4,
      5,
      4,
      2,
      5
    ],
    "io_out": [
      -22,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(input),2),-4),2)"
  },
  {
    "input": "input : list = [5, -2, -3, 3]\noutput : list = [-12, 12, 72, 84]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(sort_des([5, -2, -3, 3]),-3),-1),-4),3)",
    "io_inp": [
      5,
      -2,
      -3,
      3
    ],
    "io_out": [
      -12,
      12,
      72,
      84
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(sort_des(input),-3),-1),-4),3)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = sub_n(reverse(take(take(sub_n([-5, -3, -1],-3),20),20)),-2)",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(sub_n(input,-3),20),20)),-2)"
  },
  {
    "input": "input : list = [-1, 2, -3, -3, 0]\noutput : list = [2, 0, -1, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc([-1, 2, -3, -3, 0]))",
    "io_inp": [
      -1,
      2,
      -3,
      -3,
      0
    ],
    "io_out": [
      2,
      0,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -2, 0, 2, 0, -3]\noutput : list = [2, 3, 5, 5, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc([0, -2, 0, 2, 0, -3]))),-5)",
    "io_inp": [
      0,
      -2,
      0,
      2,
      0,
      -3
    ],
    "io_out": [
      2,
      3,
      5,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [1, 5, 0, -5, -4]\noutput : list = [2, 6, 1, -4, -3]",
    "output": "generated_output : list = take(sub_n(reverse(reverse([1, 5, 0, -5, -4])),-1),16)",
    "io_inp": [
      1,
      5,
      0,
      -5,
      -4
    ],
    "io_out": [
      2,
      6,
      1,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(input)),-1),16)"
  },
  {
    "input": "input : list = [3, 4, 5, 4, 2]\noutput : list = [-3, -4, -4, -6]",
    "output": "generated_output : list = sort_des(add_n(drop(mul_n(sub_n([3, 4, 5, 4, 2],4),1),1),-4))",
    "io_inp": [
      3,
      4,
      5,
      4,
      2
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(mul_n(sub_n(input,4),1),1),-4))"
  },
  {
    "input": "input : list = [0, 5, -4, -2, -2]\noutput : list = [4, -1, -3, -3, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(sort_asc([0, 5, -4, -2, -2])))),-1)",
    "io_inp": [
      0,
      5,
      -4,
      -2,
      -2
    ],
    "io_out": [
      4,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take(reverse(sort_des(take(reverse([-4, -2]),2))),16)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(reverse(input),2))),16)"
  },
  {
    "input": "input : list = [-4, -3, -4, -2, -2, -1]\noutput : list = [-5, -6, -6, -7, -8, -8]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(add_n([-4, -3, -4, -2, -2, -1],-3)))),1)",
    "io_inp": [
      -4,
      -3,
      -4,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -6,
      -6,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(add_n(input,-3)))),1)"
  },
  {
    "input": "input : list = [-3, 2, -3, -3, 4]\noutput : list = [-3, -3, 2, 4]",
    "output": "generated_output : list = sort_asc(drop([-3, 2, -3, -3, 4],1))",
    "io_inp": [
      -3,
      2,
      -3,
      -3,
      4
    ],
    "io_out": [
      -3,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [11, 19, 17]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(reverse([-1, -5, -4]),-5),-2),-1))",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      11,
      19,
      17
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(reverse(input),-5),-2),-1))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [6, 2]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(sort_des([-3, 1]))),-5),5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(sort_des(input))),-5),5)"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [-1, 1, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des([-5, 5, -3]),1)),4))",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      -1,
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des(input),1)),4))"
  },
  {
    "input": "input : list = [-2, -4, -5, -5, -5]\noutput : list = [-6, -6, -6]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(drop([-2, -4, -5, -5, -5],2)),5),-1),5)",
    "io_inp": [
      -2,
      -4,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(drop(input,2)),5),-1),5)"
  },
  {
    "input": "input : list = [2, 3, -2]\noutput : list = [-4, -6, 4]",
    "output": "generated_output : list = mul_n([2, 3, -2],-2)",
    "io_inp": [
      2,
      3,
      -2
    ],
    "io_out": [
      -4,
      -6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -3, 2, -5, 0]\noutput : list = [-4, -5, 0, -7, -2]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(add_n([-2, -3, 2, -5, 0],1),15),5),3),5)",
    "io_inp": [
      -2,
      -3,
      2,
      -5,
      0
    ],
    "io_out": [
      -4,
      -5,
      0,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(add_n(input,1),15),5),3),5)"
  },
  {
    "input": "input : list = [-1, 1, 1, 2, 5, -3]\noutput : list = [7, 4, 3, 3, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(reverse([-1, 1, 1, 2, 5, -3]),5))),2)",
    "io_inp": [
      -1,
      1,
      1,
      2,
      5,
      -3
    ],
    "io_out": [
      7,
      4,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(reverse(input),5))),2)"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = sort_des([5, 3, -2])",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, -1, 1, 1, 4]\noutput : list = [1, 0, -2, -3]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(take([2, -2, -1, 1, 1, 4],4),-1),18)),1)",
    "io_inp": [
      2,
      -2,
      -1,
      1,
      1,
      4
    ],
    "io_out": [
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(take(input,4),-1),18)),1)"
  },
  {
    "input": "input : list = [0, 1, 4, -1, -2]\noutput : list = [2, 3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(take([0, 1, 4, -1, -2],3),5)),3))",
    "io_inp": [
      0,
      1,
      4,
      -1,
      -2
    ],
    "io_out": [
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(add_n(take(input,3),5)),3))"
  },
  {
    "input": "input : list = [5, -1, -4, 0, -2]\noutput : list = [-5]",
    "output": "generated_output : list = take(sort_des(take(reverse(sub_n([5, -1, -4, 0, -2],3)),1)),1)",
    "io_inp": [
      5,
      -1,
      -4,
      0,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(sub_n(input,3)),1)),1)"
  },
  {
    "input": "input : list = [-1, 1, 2, -3]\noutput : list = [-8, -6, -4, -3]",
    "output": "generated_output : list = take(sort_asc(sub_n([-1, 1, 2, -3],5)),31)",
    "io_inp": [
      -1,
      1,
      2,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,5)),31)"
  },
  {
    "input": "input : list = [2, -4, -2, -3]\noutput : list = [2, -2, -3, -4]",
    "output": "generated_output : list = sort_des([2, -4, -2, -3])",
    "io_inp": [
      2,
      -4,
      -2,
      -3
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, 4, 0]\noutput : list = [20, 0, -15, -20]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(sort_des([-4, -3, 4, 0]),5))))",
    "io_inp": [
      -4,
      -3,
      4,
      0
    ],
    "io_out": [
      20,
      0,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [-4, 0, -1]",
    "output": "generated_output : list = reverse(add_n([3, 4, 0],-4))",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      -4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [1, -4, -5, -5]\noutput : list = [27, 27, 24, 9]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc([1, -4, -5, -5]),8)),4),-3)",
    "io_inp": [
      1,
      -4,
      -5,
      -5
    ],
    "io_out": [
      27,
      27,
      24,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc(input),8)),4),-3)"
  },
  {
    "input": "input : list = [-4, 2, -5, -4, 5]\noutput : list = [-10, -9, -9, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(sort_asc([-4, 2, -5, -4, 5]))),5))",
    "io_inp": [
      -4,
      2,
      -5,
      -4,
      5
    ],
    "io_out": [
      -10,
      -9,
      -9,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-3, -4, -1, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = add_n(take(add_n(take(drop([-3, -4, -1, 0, -4],3),11),1),35),-1)",
    "io_inp": [
      -3,
      -4,
      -1,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(drop(input,3),11),1),35),-1)"
  },
  {
    "input": "input : list = [5, -4, 4, 5, 3]\noutput : list = [12, -9, -12, -15, -15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(reverse([5, -4, 4, 5, 3]),-1))),3)",
    "io_inp": [
      5,
      -4,
      4,
      5,
      3
    ],
    "io_out": [
      12,
      -9,
      -12,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(reverse(input),-1))),3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sort_asc([1, 3]))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [3, -6]",
    "output": "generated_output : list = add_n([5, -4],-2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -4, 0, -1, 4]\noutput : list = [5]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(take([4, -4, 0, -1, 4],1))),-1),43)",
    "io_inp": [
      4,
      -4,
      0,
      -1,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(take(input,1))),-1),43)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc([-1, -1]),-4)),-1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(input),-4)),-1)"
  },
  {
    "input": "input : list = [2, 1, 5, -4, 0]\noutput : list = [6, 5, 9, 0, 4]",
    "output": "generated_output : list = add_n([2, 1, 5, -4, 0],4)",
    "io_inp": [
      2,
      1,
      5,
      -4,
      0
    ],
    "io_out": [
      6,
      5,
      9,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 4, -4]\noutput : list = [-5, -1, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([0, 4, -4])),-1)",
    "io_inp": [
      0,
      4,
      -4
    ],
    "io_out": [
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [1, 0, -3]",
    "output": "generated_output : list = sort_des(sub_n([-2, 1, 2],1))",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,1))"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n([-3, -4, 0],4)),-4))",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(input,4)),-4))"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse([-5, -2, -1]))),8)",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(input))),8)"
  },
  {
    "input": "input : list = [-1, 4, 1, 1, -2, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 4, 1, 1, -2, 0],1)",
    "io_inp": [
      -1,
      4,
      1,
      1,
      -2,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [-20, -8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sort_asc([3, -2, -5])),-1),-4))",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      -20,
      -8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(sort_asc(input)),-1),-4))"
  },
  {
    "input": "input : list = [-3, 4, -4, 2]\noutput : list = [-11, -10, -5, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n([-3, 4, -4, 2],3))),4)",
    "io_inp": [
      -3,
      4,
      -4,
      2
    ],
    "io_out": [
      -11,
      -10,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(input,3))),4)"
  },
  {
    "input": "input : list = [-3, 2, 1, 1, -3, 4]\noutput : list = [5, 3, 2, 2, -2, -2]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(sort_des([-3, 2, 1, 1, -3, 4])),27),-4),5)",
    "io_inp": [
      -3,
      2,
      1,
      1,
      -3,
      4
    ],
    "io_out": [
      5,
      3,
      2,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(sort_des(input)),27),-4),5)"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [24, -4, 32]",
    "output": "generated_output : list = mul_n(add_n([2, -5, 4],4),4)",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      24,
      -4,
      32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),4)"
  },
  {
    "input": "input : list = [4, -3, 5, -1, 3]\noutput : list = [-18, 6, -30, 18]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(drop([4, -3, 5, -1, 3],1),-1)),-3),-2)",
    "io_inp": [
      4,
      -3,
      5,
      -1,
      3
    ],
    "io_out": [
      -18,
      6,
      -30,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(drop(input,1),-1)),-3),-2)"
  },
  {
    "input": "input : list = [1, 3, 5, -2, -1]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(drop([1, 3, 5, -2, -1],1),2)",
    "io_inp": [
      1,
      3,
      5,
      -2,
      -1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des([0, -4])),-2),-1))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des(input)),-2),-1))"
  },
  {
    "input": "input : list = [-5, -5, -1, -2, 5, -3]\noutput : list = [-3, 5, -2, -1, -5, -5]",
    "output": "generated_output : list = take(reverse([-5, -5, -1, -2, 5, -3]),15)",
    "io_inp": [
      -5,
      -5,
      -1,
      -2,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      -2,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(input),15)"
  },
  {
    "input": "input : list = [0, 2, 1, 5, 4]\noutput : list = [6, 4, 0, -2]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(drop([0, 2, 1, 5, 4],1))),4),-2)",
    "io_inp": [
      0,
      2,
      1,
      5,
      4
    ],
    "io_out": [
      6,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(drop(input,1))),4),-2)"
  },
  {
    "input": "input : list = [0, 4, -4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = drop([0, 4, -4, 0],2)",
    "io_inp": [
      0,
      4,
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -3, -1, 1]\noutput : list = [-3, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([3, -3, -1, 1])",
    "io_inp": [
      3,
      -3,
      -1,
      1
    ],
    "io_out": [
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, 0]))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 4, -1, 0]\noutput : list = [4, 0, -16]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(drop([2, 4, -1, 0],1)),25)),-4)",
    "io_inp": [
      2,
      4,
      -1,
      0
    ],
    "io_out": [
      4,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(drop(input,1)),25)),-4)"
  },
  {
    "input": "input : list = [-5, -3, -2, -2]\noutput : list = [28, 22, 19, 19]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des([-5, -3, -2, -2]),-3),-3),4))",
    "io_inp": [
      -5,
      -3,
      -2,
      -2
    ],
    "io_out": [
      28,
      22,
      19,
      19
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des(input),-3),-3),4))"
  },
  {
    "input": "input : list = [2, -5, 1, 0, -3, 1]\noutput : list = [30, 20, 5, 0, 0, -5]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(mul_n([2, -5, 1, 0, -3, 1],-5)),19),-5))",
    "io_inp": [
      2,
      -5,
      1,
      0,
      -3,
      1
    ],
    "io_out": [
      30,
      20,
      5,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(mul_n(input,-5)),19),-5))"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(take([-3, 0, -3],1))),2))",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(take(input,1))),2))"
  },
  {
    "input": "input : list = [-4, 4, 2, 0]\noutput : list = [-2, 0, 2, -6]",
    "output": "generated_output : list = reverse(add_n([-4, 4, 2, 0],-2))",
    "io_inp": [
      -4,
      4,
      2,
      0
    ],
    "io_out": [
      -2,
      0,
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [0, 6, 9]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n([-4, 5, 2],5)),1)),42)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      0,
      6,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(add_n(input,5)),1)),42)"
  },
  {
    "input": "input : list = [-5, 5, 2, 4, -4, 5]\noutput : list = [-6, 4, 1, 3, -5, 4]",
    "output": "generated_output : list = add_n([-5, 5, 2, 4, -4, 5],-1)",
    "io_inp": [
      -5,
      5,
      2,
      4,
      -4,
      5
    ],
    "io_out": [
      -6,
      4,
      1,
      3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 4, 4, -5, 0]\noutput : list = [25, 10, 0, -20, -20]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(reverse([-2, 4, 4, -5, 0])),-5)))",
    "io_inp": [
      -2,
      4,
      4,
      -5,
      0
    ],
    "io_out": [
      25,
      10,
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [1, -2, 1, -1, 1]\noutput : list = [6, 3, -3, -3, -3]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(reverse([1, -2, 1, -1, 1]),16)),-3),45)",
    "io_inp": [
      1,
      -2,
      1,
      -1,
      1
    ],
    "io_out": [
      6,
      3,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(reverse(input),16)),-3),45)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(sub_n([-5, -4],-5)),5),-2),-4)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(sub_n(input,-5)),5),-2),-4)"
  },
  {
    "input": "input : list = [-1, 2, -5, 0]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take([-1, 2, -5, 0],2)",
    "io_inp": [
      -1,
      2,
      -5,
      0
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 4, -2, 0]\noutput : list = [-2, 5, -1, 1]",
    "output": "generated_output : list = take(sub_n(sub_n(take(add_n([-3, 4, -2, 0],5),11),5),-1),47)",
    "io_inp": [
      -3,
      4,
      -2,
      0
    ],
    "io_out": [
      -2,
      5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(add_n(input,5),11),5),-1),47)"
  },
  {
    "input": "input : list = [-2, 5, 1, 3]\noutput : list = [1, -1, -3, -6]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des([-2, 5, 1, 3]),-4))))",
    "io_inp": [
      -2,
      5,
      1,
      3
    ],
    "io_out": [
      1,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [40, 20]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_asc([3, 5]),5),5)),2)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      40,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(sort_asc(input),5),5)),2)"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [2, 6, -6]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(add_n([-1, -3, 3],-1),4),-4),-2),-2)",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      2,
      6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(add_n(input,-1),4),-4),-2),-2)"
  },
  {
    "input": "input : list = [5, 1, -4, 2, 1]\noutput : list = [8, 4, -1, 5, 4]",
    "output": "generated_output : list = take(sub_n(sub_n([5, 1, -4, 2, 1],-4),1),18)",
    "io_inp": [
      5,
      1,
      -4,
      2,
      1
    ],
    "io_out": [
      8,
      4,
      -1,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,-4),1),18)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [6, -1]",
    "output": "generated_output : list = add_n([4, -3],2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, 0, -1, 4]\noutput : list = [4, 0, -1, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(sort_asc([-1, 0, -1, 4])))))",
    "io_inp": [
      -1,
      0,
      -1,
      4
    ],
    "io_out": [
      4,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-21, 9]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(mul_n([-2, 4],-5)),2),-2),-1)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -21,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(mul_n(input,-5)),2),-2),-1)"
  },
  {
    "input": "input : list = [0, 2, 3, -5]\noutput : list = [-5, 0, 2, 3]",
    "output": "generated_output : list = add_n(take(take(sort_asc(sub_n([0, 2, 3, -5],-3)),28),32),-3)",
    "io_inp": [
      0,
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(sub_n(input,-3)),28),32),-3)"
  },
  {
    "input": "input : list = [-1, 1, -4, 2, -4]\noutput : list = [0, -1, -3, -6, -6]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(sort_asc([-1, 1, -4, 2, -4])),2)),51)",
    "io_inp": [
      -1,
      1,
      -4,
      2,
      -4
    ],
    "io_out": [
      0,
      -1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(sort_asc(input)),2)),51)"
  },
  {
    "input": "input : list = [3, 5, -4]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(sort_asc(take([3, 5, -4],1)),-2)",
    "io_inp": [
      3,
      5,
      -4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,1)),-2)"
  },
  {
    "input": "input : list = [5, 4, 2, -1]\noutput : list = [-1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([5, 4, 2, -1]))",
    "io_inp": [
      5,
      4,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, -5, -3, -3, 0, -5]\noutput : list = [4, 0, -3, -3, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([4, -5, -3, -3, 0, -5],1)))",
    "io_inp": [
      4,
      -5,
      -3,
      -3,
      0,
      -5
    ],
    "io_out": [
      4,
      0,
      -3,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,1)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n([-1, -2],-2))))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(input,-2))))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-39, 11]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n(mul_n([-3, 2],2),-1),5),4))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -39,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(mul_n(input,2),-1),5),4))"
  },
  {
    "input": "input : list = [1, 4, -5, 3, 3, 2]\noutput : list = [2, 3, 3, -5, 4]",
    "output": "generated_output : list = reverse(take(drop([1, 4, -5, 3, 3, 2],1),22))",
    "io_inp": [
      1,
      4,
      -5,
      3,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),22))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-3, -12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sort_asc([0, 3]),1)),1),-3)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sort_asc(input),1)),1),-3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [35, -35]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(mul_n([3, -4],2),-1)),1),-5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      35,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(mul_n(input,2),-1)),1),-5)"
  },
  {
    "input": "input : list = [-2, -5, 1, 2, 2, -2]\noutput : list = [-1, -2, -5, -8]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take([-2, -5, 1, 2, 2, -2],4)),-3))",
    "io_inp": [
      -2,
      -5,
      1,
      2,
      2,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(input,4)),-3))"
  },
  {
    "input": "input : list = [1, 2, 0, 0, 0]\noutput : list = [2, 1, 0, 0, 0]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n([1, 2, 0, 0, 0],4),-4)),8))",
    "io_inp": [
      1,
      2,
      0,
      0,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n(input,4),-4)),8))"
  },
  {
    "input": "input : list = [0, 4, -5, 5]\noutput : list = [-14, -12, -4, 6]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_asc([0, 4, -5, 5]),-2),-2),2))",
    "io_inp": [
      0,
      4,
      -5,
      5
    ],
    "io_out": [
      -14,
      -12,
      -4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(sort_asc(input),-2),-2),2))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [7, 5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc([0, 2]),4))),-5)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc(input),4))),-5)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_des([1, -2]),1)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),1)"
  },
  {
    "input": "input : list = [-3, -3, 3, -1, 1]\noutput : list = [-184, -184, 176, -64, 56]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(mul_n([-3, -3, 3, -1, 1],5),4),1),3),1)",
    "io_inp": [
      -3,
      -3,
      3,
      -1,
      1
    ],
    "io_out": [
      -184,
      -184,
      176,
      -64,
      56
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(mul_n(input,5),4),1),3),1)"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [15, 15, 6]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(sort_des([-2, 1, 1]),4),10)),3)",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      15,
      15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(sort_des(input),4),10)),3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(take(mul_n(drop(add_n([-3, -1],-1),1),1),10),-3)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(drop(add_n(input,-1),1),1),10),-3)"
  },
  {
    "input": "input : list = [-5, -4, 3, 3, 5]\noutput : list = [-8, -7, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(reverse([-5, -4, 3, 3, 5]))),-3))",
    "io_inp": [
      -5,
      -4,
      3,
      3,
      5
    ],
    "io_out": [
      -8,
      -7,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(reverse(input))),-3))"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [-5, 2, 3]",
    "output": "generated_output : list = sort_asc([3, -5, 2])",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      -5,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, 3, 0, 1, -4]\noutput : list = [-60, -60, -60, 0, 15, 45]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(reverse([-4, -4, 3, 0, 1, -4]),-3)),-5))",
    "io_inp": [
      -4,
      -4,
      3,
      0,
      1,
      -4
    ],
    "io_out": [
      -60,
      -60,
      -60,
      0,
      15,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(reverse(input),-3)),-5))"
  },
  {
    "input": "input : list = [-4, 3, 5, 1, 3]\noutput : list = [3, -1, 1]",
    "output": "generated_output : list = drop(add_n([-4, 3, 5, 1, 3],-2),2)",
    "io_inp": [
      -4,
      3,
      5,
      1,
      3
    ],
    "io_out": [
      3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-2),2)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [5, -11]",
    "output": "generated_output : list = add_n(mul_n(take(reverse([-4, 0]),13),4),5)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      5,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(reverse(input),13),4),5)"
  },
  {
    "input": "input : list = [-4, -3, 0, -5, 0, -4]\noutput : list = [-11, -11, -14, -15, -15, -16]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(add_n([-4, -3, 0, -5, 0, -4],-2)),-5),4))",
    "io_inp": [
      -4,
      -3,
      0,
      -5,
      0,
      -4
    ],
    "io_out": [
      -11,
      -11,
      -14,
      -15,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(add_n(input,-2)),-5),4))"
  },
  {
    "input": "input : list = [-2, 0, 1, 0, 5]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(take([-2, 0, 1, 0, 5],1),-2)",
    "io_inp": [
      -2,
      0,
      1,
      0,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [3, -1, 4, -5, 3]\noutput : list = [1, -3, 2, -7, 1]",
    "output": "generated_output : list = add_n([3, -1, 4, -5, 3],-2)",
    "io_inp": [
      3,
      -1,
      4,
      -5,
      3
    ],
    "io_out": [
      1,
      -3,
      2,
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 5, 5, -1]\noutput : list = [5, -25, -25, 5]",
    "output": "generated_output : list = mul_n([-1, 5, 5, -1],-5)",
    "io_inp": [
      -1,
      5,
      5,
      -1
    ],
    "io_out": [
      5,
      -25,
      -25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 3, -3, 4, -5, -1]\noutput : list = [-1]",
    "output": "generated_output : list = drop(drop([-4, 3, -3, 4, -5, -1],2),3)",
    "io_inp": [
      -4,
      3,
      -3,
      4,
      -5,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(drop(input,2),3)"
  },
  {
    "input": "input : list = [-2, 0, 1, 0, -2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(add_n(take(sort_asc([-2, 0, 1, 0, -2, 2]),1),1))",
    "io_inp": [
      -2,
      0,
      1,
      0,
      -2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_asc(input),1),1))"
  },
  {
    "input": "input : list = [-2, 3, 4, 2, -3]\noutput : list = [8, 7, 6, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n([-2, 3, 4, 2, -3],-4))",
    "io_inp": [
      -2,
      3,
      4,
      2,
      -3
    ],
    "io_out": [
      8,
      7,
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(reverse(take([-5, 0, 2],1)))",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-1, 5, 1, 3, 4, 1]\noutput : list = [5, 4, 3, 1, 1, -1]",
    "output": "generated_output : list = sort_des([-1, 5, 1, 3, 4, 1])",
    "io_inp": [
      -1,
      5,
      1,
      3,
      4,
      1
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -4, 3]\noutput : list = [9, 5, -19]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(mul_n([2, -4, 3],4)),-2),-3),2)",
    "io_inp": [
      2,
      -4,
      3
    ],
    "io_out": [
      9,
      5,
      -19
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(mul_n(input,4)),-2),-3),2)"
  },
  {
    "input": "input : list = [-5, 3, 2]\noutput : list = [9, 7, -7]",
    "output": "generated_output : list = sort_des(take(add_n(take(mul_n([-5, 3, 2],2),6),3),19))",
    "io_inp": [
      -5,
      3,
      2
    ],
    "io_out": [
      9,
      7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(mul_n(input,2),6),3),19))"
  },
  {
    "input": "input : list = [-5, 2, -3, 5, -4, -2]\noutput : list = [2, 1, 0, -1, -5, -8]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(sort_asc([-5, 2, -3, 5, -4, -2]),-1),16),3))",
    "io_inp": [
      -5,
      2,
      -3,
      5,
      -4,
      -2
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(sort_asc(input),-1),16),3))"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-20, -16, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sub_n([-5, 5, -4],4),4),4)))",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -20,
      -16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sub_n(input,4),4),4)))"
  },
  {
    "input": "input : list = [4, -1, 4, 2, -4, 0]\noutput : list = [1, 4, 5, 7, 9, 9]",
    "output": "generated_output : list = sort_asc(take(sub_n([4, -1, 4, 2, -4, 0],-5),12))",
    "io_inp": [
      4,
      -1,
      4,
      2,
      -4,
      0
    ],
    "io_out": [
      1,
      4,
      5,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,-5),12))"
  },
  {
    "input": "input : list = [-4, -4, 2, -1]\noutput : list = [6, 3, 0, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(sub_n([-4, -4, 2, -1],1))),-5),40)",
    "io_inp": [
      -4,
      -4,
      2,
      -1
    ],
    "io_out": [
      6,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(sub_n(input,1))),-5),40)"
  },
  {
    "input": "input : list = [3, 0, 2, 5, 2, -5]\noutput : list = [120, -5, -55, -55, -80, -130]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(sort_des([3, 0, 2, 5, 2, -5]),-5)),-1),5)",
    "io_inp": [
      3,
      0,
      2,
      5,
      2,
      -5
    ],
    "io_out": [
      120,
      -5,
      -55,
      -55,
      -80,
      -130
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(sort_des(input),-5)),-1),5)"
  },
  {
    "input": "input : list = [0, 2, 1, 4, 2, 4]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(take([0, 2, 1, 4, 2, 4],2),17))),-5)",
    "io_inp": [
      0,
      2,
      1,
      4,
      2,
      4
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(take(input,2),17))),-5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [3, 4]",
    "output": "generated_output : list = add_n(sort_asc([0, 1]),3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-3, 0, 3, -3, -3]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n(drop([-3, 0, 3, -3, -3],3),-2)",
    "io_inp": [
      -3,
      0,
      3,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-2)"
  },
  {
    "input": "input : list = [0, 2, 5]\noutput : list = [3, 9, 18]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([0, 2, 5]),-1),3)",
    "io_inp": [
      0,
      2,
      5
    ],
    "io_out": [
      3,
      9,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),-1),3)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -2, 1],1)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 5, 3, 1, 0, -1]\noutput : list = [-20, -20, -14, -8, -5, -2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(mul_n([5, 5, 3, 1, 0, -1],-3),-5))))",
    "io_inp": [
      5,
      5,
      3,
      1,
      0,
      -1
    ],
    "io_out": [
      -20,
      -20,
      -14,
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(mul_n(input,-3),-5))))"
  },
  {
    "input": "input : list = [-4, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = drop([-4, -5, -5],1)",
    "io_inp": [
      -4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [0, 3, 2]",
    "output": "generated_output : list = take(reverse(add_n([4, 5, 2],-2)),14)",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      0,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,-2)),14)"
  },
  {
    "input": "input : list = [5, 5, 5, 5, 4, 5]\noutput : list = [3, 3, 3, 3, 3, 2]",
    "output": "generated_output : list = sort_des(sub_n([5, 5, 5, 5, 4, 5],2))",
    "io_inp": [
      5,
      5,
      5,
      5,
      4,
      5
    ],
    "io_out": [
      3,
      3,
      3,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [3, 0, 3, -5, 3, -2]\noutput : list = [-27, -27, -27, 0, 18, 45]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(mul_n([3, 0, 3, -5, 3, -2],-3))),3))",
    "io_inp": [
      3,
      0,
      3,
      -5,
      3,
      -2
    ],
    "io_out": [
      -27,
      -27,
      -27,
      0,
      18,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(mul_n(input,-3))),3))"
  },
  {
    "input": "input : list = [5, -3, -4, -5, 3, 0]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take([5, -3, -4, -5, 3, 0],1)),3))",
    "io_inp": [
      5,
      -3,
      -4,
      -5,
      3,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(input,1)),3))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [10, 11]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(mul_n([2, 3],1),-5)),3))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      10,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(mul_n(input,1),-5)),3))"
  },
  {
    "input": "input : list = [2, 4, -2, 2]\noutput : list = [-20, -10, -10, 10]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(mul_n([2, 4, -2, 2],-5)),26)),1)",
    "io_inp": [
      2,
      4,
      -2,
      2
    ],
    "io_out": [
      -20,
      -10,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(mul_n(input,-5)),26)),1)"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [7, 7, 16]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sort_asc([1, 1, 4]),-1),3)),-1)",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      7,
      7,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sort_asc(input),-1),3)),-1)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [2, 6]",
    "output": "generated_output : list = take(mul_n(sort_des([-1, -3]),-2),10)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),-2),10)"
  },
  {
    "input": "input : list = [4, -4, 4, 0, 5, 3]\noutput : list = [4, 0, -3, -4, -4, -5]",
    "output": "generated_output : list = mul_n(sort_asc([4, -4, 4, 0, 5, 3]),-1)",
    "io_inp": [
      4,
      -4,
      4,
      0,
      5,
      3
    ],
    "io_out": [
      4,
      0,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-5, 3, 0, 2, -4]\noutput : list = [4, -4, -1, -3, 3]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(add_n([-5, 3, 0, 2, -4],2),16),1),-1),-1)",
    "io_inp": [
      -5,
      3,
      0,
      2,
      -4
    ],
    "io_out": [
      4,
      -4,
      -1,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(add_n(input,2),16),1),-1),-1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-35, 15]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(sub_n([-5, 5],-3)),-5),5))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -35,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(sub_n(input,-3)),-5),5))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sub_n([-3, 4],-1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [-3, -8, -8]",
    "output": "generated_output : list = sub_n([0, -5, -5],3)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, 5, 0, -2, 0]\noutput : list = [-2, 0, 0, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(drop([0, 5, 0, -2, 0],1)))))",
    "io_inp": [
      0,
      5,
      0,
      -2,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [5, -2, 0, -1, 4]\noutput : list = [-3, -2, -1, 3, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des([5, -2, 0, -1, 4]),1))",
    "io_inp": [
      5,
      -2,
      0,
      -1,
      4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [-4, -3, 2]\noutput : list = [6, -19, -24]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_des([-4, -3, 2]),-5),5),1),-1)",
    "io_inp": [
      -4,
      -3,
      2
    ],
    "io_out": [
      6,
      -19,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_des(input),-5),5),1),-1)"
  },
  {
    "input": "input : list = [2, -2, -4, 3, 5, -5]\noutput : list = [4, 2, 1, -3, -5, -6]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(sort_des([2, -2, -4, 3, 5, -5]),4),5),39))",
    "io_inp": [
      2,
      -2,
      -4,
      3,
      5,
      -5
    ],
    "io_out": [
      4,
      2,
      1,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(sort_des(input),4),5),39))"
  },
  {
    "input": "input : list = [5, 3, 5, -2, 2]\noutput : list = [0, 0, -2, -3, -7]",
    "output": "generated_output : list = sort_des(add_n(reverse([5, 3, 5, -2, 2]),-5))",
    "io_inp": [
      5,
      3,
      5,
      -2,
      2
    ],
    "io_out": [
      0,
      0,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des([0, 4])",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, -2, -5, 3]\noutput : list = [0, 0, 0, 3, 8]",
    "output": "generated_output : list = sort_asc(add_n([-5, -5, -2, -5, 3],5))",
    "io_inp": [
      -5,
      -5,
      -2,
      -5,
      3
    ],
    "io_out": [
      0,
      0,
      0,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(add_n([-1, -4],5)),1),-3))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(add_n(input,5)),1),-3))"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(sort_des([1, 1, -2])))))",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n([1, 2],-5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [0, 4, -3, -3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(drop([0, 4, -3, -3],2)),1)))",
    "io_inp": [
      0,
      4,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(drop(input,2)),1)))"
  },
  {
    "input": "input : list = [2, -4, -3, 3, 2]\noutput : list = [3, -3, -2]",
    "output": "generated_output : list = take(take(sub_n(take(take([2, -4, -3, 3, 2],3),22),-1),23),42)",
    "io_inp": [
      2,
      -4,
      -3,
      3,
      2
    ],
    "io_out": [
      3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(take(input,3),22),-1),23),42)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sub_n([2, 0],-3),4),3)),2)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sub_n(input,-3),4),3)),2)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-14, 2]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(sub_n([-4, 4],3))),2))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -14,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(sub_n(input,3))),2))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-7, 1]",
    "output": "generated_output : list = sort_asc(sub_n([-4, 4],3))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-4, -4, 3, 5, -1]\noutput : list = [6, 12, 10, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(sub_n([-4, -4, 3, 5, -1],1)),24),-3),-5)",
    "io_inp": [
      -4,
      -4,
      3,
      5,
      -1
    ],
    "io_out": [
      6,
      12,
      10,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(sub_n(input,1)),24),-3),-5)"
  },
  {
    "input": "input : list = [1, 1, 5, -2, -3]\noutput : list = [5, 1, 1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc([1, 1, 5, -2, -3]))",
    "io_inp": [
      1,
      1,
      5,
      -2,
      -3
    ],
    "io_out": [
      5,
      1,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 2, 3, 5]\noutput : list = [9, 9, 6, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sort_asc([2, 2, 3, 5]),5))),-3)",
    "io_inp": [
      2,
      2,
      3,
      5
    ],
    "io_out": [
      9,
      9,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sort_asc(input),5))),-3)"
  },
  {
    "input": "input : list = [-5, 3, -4, -5, 0]\noutput : list = [-8, 0, -7, -8, -3]",
    "output": "generated_output : list = add_n([-5, 3, -4, -5, 0],-3)",
    "io_inp": [
      -5,
      3,
      -4,
      -5,
      0
    ],
    "io_out": [
      -8,
      0,
      -7,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, -4, -1, 2]\noutput : list = [4, 2, -1, -4]",
    "output": "generated_output : list = sort_des(take(reverse([4, -4, -1, 2]),13))",
    "io_inp": [
      4,
      -4,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),13))"
  },
  {
    "input": "input : list = [-5, 1, 1, 4, 3, -2]\noutput : list = [-4, -1, 2, 2, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n([-5, 1, 1, 4, 3, -2],1)))",
    "io_inp": [
      -5,
      1,
      1,
      4,
      3,
      -2
    ],
    "io_out": [
      -4,
      -1,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,1)))"
  },
  {
    "input": "input : list = [-1, 3, 2, 0]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(take(take(reverse(sort_des([-1, 3, 2, 0])),1),24),-1)",
    "io_inp": [
      -1,
      3,
      2,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(sort_des(input)),1),24),-1)"
  },
  {
    "input": "input : list = [5, -3, -5, 4, -5, -2]\noutput : list = [13, -3, -7, 11, -7, -1]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(mul_n([5, -3, -5, 4, -5, -2],2),3)),1))",
    "io_inp": [
      5,
      -3,
      -5,
      4,
      -5,
      -2
    ],
    "io_out": [
      13,
      -3,
      -7,
      11,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(mul_n(input,2),3)),1))"
  },
  {
    "input": "input : list = [4, 2, 5, 2]\noutput : list = [-8, -8, -16, -20]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(mul_n([4, 2, 5, 2],-4)))))",
    "io_inp": [
      4,
      2,
      5,
      2
    ],
    "io_out": [
      -8,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(mul_n(input,-4)))))"
  },
  {
    "input": "input : list = [-1, -2, 4, -4, -2]\noutput : list = [9, 4, 3, 3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_asc([-1, -2, 4, -4, -2]),5))))",
    "io_inp": [
      -1,
      -2,
      4,
      -4,
      -2
    ],
    "io_out": [
      9,
      4,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [18, 18]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_des([2, 2]),-3),-3)))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_des(input),-3),-3)))"
  },
  {
    "input": "input : list = [-2, -5, 1, 2, 2, 2]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take([-2, -5, 1, 2, 2, 2],3),1),-5))",
    "io_inp": [
      -2,
      -5,
      1,
      2,
      2,
      2
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(input,3),1),-5))"
  },
  {
    "input": "input : list = [-1, -5, -5, -3, -2, 0]\noutput : list = [-6, -6, -4, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n([-1, -5, -5, -3, -2, 0],3)),-4))",
    "io_inp": [
      -1,
      -5,
      -5,
      -3,
      -2,
      0
    ],
    "io_out": [
      -6,
      -6,
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(input,3)),-4))"
  },
  {
    "input": "input : list = [-3, -3, -1, 5, 1]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(drop(sort_des([-3, -3, -1, 5, 1]),2))))",
    "io_inp": [
      -3,
      -3,
      -1,
      5,
      1
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(drop(sort_des(input),2))))"
  },
  {
    "input": "input : list = [-4, -1, -2]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(take(sort_des([-4, -1, -2]),19)),-3),1)",
    "io_inp": [
      -4,
      -1,
      -2
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(take(sort_des(input),19)),-3),1)"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [-6, -5, -5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_des([3, 4, 4]),-4)),-5))",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_des(input),-4)),-5))"
  },
  {
    "input": "input : list = [-3, -1, -5, -5]\noutput : list = [-15, -5, -25, -25]",
    "output": "generated_output : list = mul_n([-3, -1, -5, -5],5)",
    "io_inp": [
      -3,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -15,
      -5,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n(take(sort_des(add_n([-5, -2],2)),17),3)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(input,2)),17),3)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(take(take([-2, 2, -2],1),14),5)",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,1),14),5)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [3, -6]",
    "output": "generated_output : list = sub_n(drop([-4, 5, -4],1),2)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [1, 0, 5, -4, -5, 4]\noutput : list = [0, -4, -20, -24, -36, -40]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(sort_des([1, 0, 5, -4, -5, 4]),4),-4),-4))",
    "io_inp": [
      1,
      0,
      5,
      -4,
      -5,
      4
    ],
    "io_out": [
      0,
      -4,
      -20,
      -24,
      -36,
      -40
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(sort_des(input),4),-4),-4))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-14, 11]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n([-3, 2],-5)))),4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -14,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n(input,-5)))),4)"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [-19, -16, 5]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(reverse([4, -3, 5])),-3),-4))",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      -19,
      -16,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(reverse(input)),-3),-4))"
  },
  {
    "input": "input : list = [4, 3, -5, 5, -4]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(take([4, 3, -5, 5, -4],1),-2),5)))",
    "io_inp": [
      4,
      3,
      -5,
      5,
      -4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(take(input,1),-2),5)))"
  },
  {
    "input": "input : list = [-4, 2, -4, -1, 2, -2]\noutput : list = [-5, -8, -9, -11]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(drop([-4, 2, -4, -1, 2, -2],2),5)),-5),-3)",
    "io_inp": [
      -4,
      2,
      -4,
      -1,
      2,
      -2
    ],
    "io_out": [
      -5,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(drop(input,2),5)),-5),-3)"
  },
  {
    "input": "input : list = [-3, -3, -2, -4]\noutput : list = [-7, -7, -6, -8]",
    "output": "generated_output : list = sub_n([-3, -3, -2, -4],4)",
    "io_inp": [
      -3,
      -3,
      -2,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, -5, 0, 0, 4]\noutput : list = [4, -5, 0]",
    "output": "generated_output : list = take([4, -5, 0, 0, 4],3)",
    "io_inp": [
      4,
      -5,
      0,
      0,
      4
    ],
    "io_out": [
      4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-4, 5, 8]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(reverse([2, -1, 3]),3),1)))",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -4,
      5,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(reverse(input),3),1)))"
  },
  {
    "input": "input : list = [-1, -2, 5, 1]\noutput : list = [1, 0, 7, 3]",
    "output": "generated_output : list = sub_n(add_n([-1, -2, 5, 1],-1),-3)",
    "io_inp": [
      -1,
      -2,
      5,
      1
    ],
    "io_out": [
      1,
      0,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),-3)"
  },
  {
    "input": "input : list = [3, -1, 4, 0, -1]\noutput : list = [7, 6, 3, 2, 2]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(add_n([3, -1, 4, 0, -1],4)),-5),-4),6)",
    "io_inp": [
      3,
      -1,
      4,
      0,
      -1
    ],
    "io_out": [
      7,
      6,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(add_n(input,4)),-5),-4),6)"
  },
  {
    "input": "input : list = [-4, 2, 0, -4]\noutput : list = [90, 72, 36, 36]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sub_n([-4, 2, 0, -4],-5),-3),-3),-3))",
    "io_inp": [
      -4,
      2,
      0,
      -4
    ],
    "io_out": [
      90,
      72,
      36,
      36
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sub_n(input,-5),-3),-3),-3))"
  },
  {
    "input": "input : list = [0, -4, 1, 0, 4]\noutput : list = [0, 4, -1, 0, -4]",
    "output": "generated_output : list = mul_n([0, -4, 1, 0, 4],-1)",
    "io_inp": [
      0,
      -4,
      1,
      0,
      4
    ],
    "io_out": [
      0,
      4,
      -1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 0, -5, -4]\noutput : list = [0, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-4, 0, -5, -4])",
    "io_inp": [
      -4,
      0,
      -5,
      -4
    ],
    "io_out": [
      0,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1, -4, 2, -4, 2]\noutput : list = [1, 1, -2, -5, -5, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(sub_n([-5, -1, -4, 2, -4, 2],1),-2))),2)",
    "io_inp": [
      -5,
      -1,
      -4,
      2,
      -4,
      2
    ],
    "io_out": [
      1,
      1,
      -2,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(sub_n(input,1),-2))),2)"
  },
  {
    "input": "input : list = [1, -4, -5, 1]\noutput : list = [-4, -5, 1]",
    "output": "generated_output : list = drop([1, -4, -5, 1],1)",
    "io_inp": [
      1,
      -4,
      -5,
      1
    ],
    "io_out": [
      -4,
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -1, 4, -3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(reverse([5, -1, 4, -3])),1)))",
    "io_inp": [
      5,
      -1,
      4,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(reverse(input)),1)))"
  },
  {
    "input": "input : list = [-4, 1, -2]\noutput : list = [1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(add_n([-4, 1, -2],-4),-4))))",
    "io_inp": [
      -4,
      1,
      -2
    ],
    "io_out": [
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(add_n(input,-4),-4))))"
  },
  {
    "input": "input : list = [-3, -2, -2, 4, 0, -5]\noutput : list = [-6, -2, 0, 0, 4, 12]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_asc([-3, -2, -2, 4, 0, -5]),2)),4))",
    "io_inp": [
      -3,
      -2,
      -2,
      4,
      0,
      -5
    ],
    "io_out": [
      -6,
      -2,
      0,
      0,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_asc(input),2)),4))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-6, -9]",
    "output": "generated_output : list = add_n(mul_n(sub_n([-1, 2],-5),-1),-2)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-5),-1),-2)"
  },
  {
    "input": "input : list = [1, 2, -1]\noutput : list = [1, 4, 3]",
    "output": "generated_output : list = add_n(reverse([1, 2, -1]),2)",
    "io_inp": [
      1,
      2,
      -1
    ],
    "io_out": [
      1,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [0, 0, 0, -1, 3, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(mul_n(drop([0, 0, 0, -1, 3, -1],4),-1))",
    "io_inp": [
      0,
      0,
      0,
      -1,
      3,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,4),-1))"
  },
  {
    "input": "input : list = [4, -1, 1, 2, -1]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(reverse(drop(mul_n(drop([4, -1, 1, 2, -1],3),-5),1)),-3)",
    "io_inp": [
      4,
      -1,
      1,
      2,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(mul_n(drop(input,3),-5),1)),-3)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(take(take(take([-5, -1, -1],1),5),7),30),25)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(take(take(take(input,1),5),7),30),25)"
  },
  {
    "input": "input : list = [2, -2, 1, 4, -5, -3]\noutput : list = [-4, -2, -1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([2, -2, 1, 4, -5, -3],-1)))",
    "io_inp": [
      2,
      -2,
      1,
      4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [-4, 4, 5, 4]\noutput : list = [20, 25]",
    "output": "generated_output : list = mul_n(take(sort_asc(drop(drop([-4, 4, 5, 4],1),1)),14),5)",
    "io_inp": [
      -4,
      4,
      5,
      4
    ],
    "io_out": [
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(drop(drop(input,1),1)),14),5)"
  },
  {
    "input": "input : list = [-3, 1, -3, 2, 5]\noutput : list = [5, 2, -3, 1, -3]",
    "output": "generated_output : list = reverse([-3, 1, -3, 2, 5])",
    "io_inp": [
      -3,
      1,
      -3,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, 3, 2]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n(drop([-1, 0, 3, 2],2),3),1)))",
    "io_inp": [
      -1,
      0,
      3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(drop(input,2),3),1)))"
  },
  {
    "input": "input : list = [4, 4, -5]\noutput : list = [28, 10]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(drop([4, 4, -5],1),5),-4),-2))",
    "io_inp": [
      4,
      4,
      -5
    ],
    "io_out": [
      28,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(drop(input,1),5),-4),-2))"
  },
  {
    "input": "input : list = [1, 5, -5, 5, 3, 3]\noutput : list = [2, 2, 4, -6, 4, 0]",
    "output": "generated_output : list = reverse(add_n([1, 5, -5, 5, 3, 3],-1))",
    "io_inp": [
      1,
      5,
      -5,
      5,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      4,
      -6,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-2, -5, -3, 3, 1, 5]\noutput : list = [-6, -4, -3, 0, 2, 4]",
    "output": "generated_output : list = add_n(sort_asc([-2, -5, -3, 3, 1, 5]),-1)",
    "io_inp": [
      -2,
      -5,
      -3,
      3,
      1,
      5
    ],
    "io_out": [
      -6,
      -4,
      -3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [1, -2, 2, -2, 1, 1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sub_n(take([1, -2, 2, -2, 1, 1],2),3)",
    "io_inp": [
      1,
      -2,
      2,
      -2,
      1,
      1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),3)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [5, -10]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(sort_des([3, 0]),-1)),-5))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(sort_des(input),-1)),-5))"
  },
  {
    "input": "input : list = [4, 3, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(drop([4, 3, -3, 3],2))",
    "io_inp": [
      4,
      3,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [0, -2, -1, 2, -1, -4]\noutput : list = [-2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse(take([0, -2, -1, 2, -1, -4],4)))",
    "io_inp": [
      0,
      -2,
      -1,
      2,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(input,4)))"
  },
  {
    "input": "input : list = [-1, 2, 3, -2]\noutput : list = [-2, 3, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, 3, -2])",
    "io_inp": [
      -1,
      2,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 5, -4, 3]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(reverse(take(drop(sub_n([1, 5, -4, 3],-4),3),24)))",
    "io_inp": [
      1,
      5,
      -4,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(drop(sub_n(input,-4),3),24)))"
  },
  {
    "input": "input : list = [2, 4, -3, -4]\noutput : list = [9, 7, 2, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sort_asc([2, 4, -3, -4])))),-5)",
    "io_inp": [
      2,
      4,
      -3,
      -4
    ],
    "io_out": [
      9,
      7,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [-4, 4, -5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse(mul_n(take(take(drop([-4, 4, -5, 3],2),16),7),1))",
    "io_inp": [
      -4,
      4,
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(drop(input,2),16),7),1))"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-6, -4, 3]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sort_des([-5, -3, 4]))),-1))",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -6,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [3, 0, 7]",
    "output": "generated_output : list = mul_n(add_n(mul_n([0, -3, 4],1),3),1)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      3,
      0,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,1),3),1)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = take(reverse([5, 4]),13)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(input),13)"
  },
  {
    "input": "input : list = [-1, -4, -5, 1, -4]\noutput : list = [4, 16]",
    "output": "generated_output : list = mul_n(mul_n(take([-1, -4, -5, 1, -4],2),-4),1)",
    "io_inp": [
      -1,
      -4,
      -5,
      1,
      -4
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,2),-4),1)"
  },
  {
    "input": "input : list = [-2, -3, 3, 5]\noutput : list = [5, 3, -2, -3]",
    "output": "generated_output : list = sort_des([-2, -3, 3, 5])",
    "io_inp": [
      -2,
      -3,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, -4, 4]\noutput : list = [-12, -9, 6, 15]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n(mul_n([-5, 1, -4, 4],3),3))))",
    "io_inp": [
      -5,
      1,
      -4,
      4
    ],
    "io_out": [
      -12,
      -9,
      6,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(mul_n(input,3),3))))"
  },
  {
    "input": "input : list = [-4, 5, 5, 2, -4, 3]\noutput : list = [18, 18, 6, 4, 0, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(reverse([-4, 5, 5, 2, -4, 3]),-5),-2)))",
    "io_inp": [
      -4,
      5,
      5,
      2,
      -4,
      3
    ],
    "io_out": [
      18,
      18,
      6,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(reverse(input),-5),-2)))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [6, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des([-2, 0]),13),-3)))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des(input),13),-3)))"
  },
  {
    "input": "input : list = [0, 2, -1, -5]\noutput : list = [12, 4, 2, -2]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(sort_asc([0, 2, -1, -5]),-1),-2),-5),5)",
    "io_inp": [
      0,
      2,
      -1,
      -5
    ],
    "io_out": [
      12,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(sort_asc(input),-1),-2),-5),5)"
  },
  {
    "input": "input : list = [4, 4, -2, -4]\noutput : list = [8, 8, 2, 0]",
    "output": "generated_output : list = take(add_n(take(take(add_n([4, 4, -2, -4],3),4),14),1),32)",
    "io_inp": [
      4,
      4,
      -2,
      -4
    ],
    "io_out": [
      8,
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(add_n(input,3),4),14),1),32)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, 1, -1]\noutput : list = [6, 4, 4, 2]",
    "output": "generated_output : list = add_n([3, 1, 1, -1],3)",
    "io_inp": [
      3,
      1,
      1,
      -1
    ],
    "io_out": [
      6,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, 1, 1, 5, 0]\noutput : list = [-7, -3, -3, 1, -4]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse([-3, 1, 1, 5, 0])),1),-5)",
    "io_inp": [
      -3,
      1,
      1,
      5,
      0
    ],
    "io_out": [
      -7,
      -3,
      -3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(input)),1),-5)"
  },
  {
    "input": "input : list = [3, -2, 5, 3]\noutput : list = [-36, 54, 54, 90]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sort_asc([3, -2, 5, 3]),-2),-3),3))",
    "io_inp": [
      3,
      -2,
      5,
      3
    ],
    "io_out": [
      -36,
      54,
      54,
      90
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sort_asc(input),-2),-3),3))"
  },
  {
    "input": "input : list = [1, 0, 1, -1, -2, 2]\noutput : list = [0, -1, -1, -2, -3, -4]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(sort_asc([1, 0, 1, -1, -2, 2])),-2)))",
    "io_inp": [
      1,
      0,
      1,
      -1,
      -2,
      2
    ],
    "io_out": [
      0,
      -1,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [3, -2, -1, -1, 4]\noutput : list = [-7, -6, -6, -2]",
    "output": "generated_output : list = sub_n(sort_asc(drop(take(sort_des([3, -2, -1, -1, 4]),7),1)),5)",
    "io_inp": [
      3,
      -2,
      -1,
      -1,
      4
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(take(sort_des(input),7),1)),5)"
  },
  {
    "input": "input : list = [0, 4, 1, -1, 0, -4]\noutput : list = [7, 10, 11, 11, 12, 15]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des([0, 4, 1, -1, 0, -4]),2)),-5),4)",
    "io_inp": [
      0,
      4,
      1,
      -1,
      0,
      -4
    ],
    "io_out": [
      7,
      10,
      11,
      11,
      12,
      15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des(input),2)),-5),4)"
  },
  {
    "input": "input : list = [-1, 5, -1, 0]\noutput : list = [-17, -17, -13, 7]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(sub_n([-1, 5, -1, 0],4),4),3)))",
    "io_inp": [
      -1,
      5,
      -1,
      0
    ],
    "io_out": [
      -17,
      -17,
      -13,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(sub_n(input,4),4),3)))"
  },
  {
    "input": "input : list = [2, -5, -5, 0, 5]\noutput : list = [-7, -7, 0]",
    "output": "generated_output : list = reverse(sub_n(take([2, -5, -5, 0, 5],3),2))",
    "io_inp": [
      2,
      -5,
      -5,
      0,
      5
    ],
    "io_out": [
      -7,
      -7,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,3),2))"
  },
  {
    "input": "input : list = [-4, -5, -3, -5, -2]\noutput : list = [-9, -12, -15]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(take([-4, -5, -3, -5, -2],3)),3)))",
    "io_inp": [
      -4,
      -5,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -9,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(take(input,3)),3)))"
  },
  {
    "input": "input : list = [-5, 5, -4, -3, 1, -4]\noutput : list = [5, 1, -3, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 5, -4, -3, 1, -4])",
    "io_inp": [
      -5,
      5,
      -4,
      -3,
      1,
      -4
    ],
    "io_out": [
      5,
      1,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, 2, 4, 1, 2]\noutput : list = [1, 2, 2, 4, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 4, 2, 4, 1, 2])",
    "io_inp": [
      4,
      4,
      2,
      4,
      1,
      2
    ],
    "io_out": [
      1,
      2,
      2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, 3, -1, -1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(reverse([0, 2, 3, -1, -1, -3]),2)",
    "io_inp": [
      0,
      2,
      3,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),2)"
  },
  {
    "input": "input : list = [3, 2, 3]\noutput : list = [-24, -20, -24]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(add_n([3, 2, 3],1),1),-2)),-4)",
    "io_inp": [
      3,
      2,
      3
    ],
    "io_out": [
      -24,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(add_n(input,1),1),-2)),-4)"
  },
  {
    "input": "input : list = [5, 3, -1, 1, 5]\noutput : list = [10, 6, 4, 8, 10]",
    "output": "generated_output : list = sub_n(reverse([5, 3, -1, 1, 5]),-5)",
    "io_inp": [
      5,
      3,
      -1,
      1,
      5
    ],
    "io_out": [
      10,
      6,
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [7, 1]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(sort_des([-1, 5]))),-2))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [4, 0, 0, 2, 3]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(take([4, 0, 0, 2, 3],2))",
    "io_inp": [
      4,
      0,
      0,
      2,
      3
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [1, -4, -1, 2, -4, -3]\noutput : list = [6, 7, 1, 4, 7, 2]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n(add_n([1, -4, -1, 2, -4, -3],2),2)),-1),3)",
    "io_inp": [
      1,
      -4,
      -1,
      2,
      -4,
      -3
    ],
    "io_out": [
      6,
      7,
      1,
      4,
      7,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(add_n(input,2),2)),-1),3)"
  },
  {
    "input": "input : list = [1, 5, 2, 3]\noutput : list = [5, 3, 2, 1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(add_n([1, 5, 2, 3],-3),5),-3)),5)",
    "io_inp": [
      1,
      5,
      2,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(add_n(input,-3),5),-3)),5)"
  },
  {
    "input": "input : list = [2, 3, 3, -3, -2, -4]\noutput : list = [2, 3]",
    "output": "generated_output : list = take([2, 3, 3, -3, -2, -4],2)",
    "io_inp": [
      2,
      3,
      3,
      -3,
      -2,
      -4
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 0, -2, -3]\noutput : list = [-2, -1, 1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sort_des([3, 0, -2, -3]),4)),-5))",
    "io_inp": [
      3,
      0,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sort_des(input),4)),-5))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [1, -6]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(sort_des([-3, 4]))),34),-3)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(sort_des(input))),34),-3)"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [-4, -7, -1]",
    "output": "generated_output : list = sub_n([1, -2, 4],5)",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      -4,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [0, 0, 5, -2, 1, 2]\noutput : list = [-5, -3, -3, -2, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n(reverse([0, 0, 5, -2, 1, 2]),1))),-4)",
    "io_inp": [
      0,
      0,
      5,
      -2,
      1,
      2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(reverse(input),1))),-4)"
  },
  {
    "input": "input : list = [3, -4, 3, -5, -1]\noutput : list = [10, 8, 2, -6, -6]",
    "output": "generated_output : list = sort_des(mul_n([3, -4, 3, -5, -1],-2))",
    "io_inp": [
      3,
      -4,
      3,
      -5,
      -1
    ],
    "io_out": [
      10,
      8,
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [1, -2, 5, -1, 3]\noutput : list = [-5, -4, -2, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(add_n(sort_asc([1, -2, 5, -1, 3]),-3))))",
    "io_inp": [
      1,
      -2,
      5,
      -1,
      3
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(reverse([5, -2]),3))),2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(reverse(input),3))),2)"
  },
  {
    "input": "input : list = [3, 2, -5, 0]\noutput : list = [-3, 3, 6]",
    "output": "generated_output : list = add_n(drop(sort_asc(mul_n(reverse([3, 2, -5, 0]),3)),1),-3)",
    "io_inp": [
      3,
      2,
      -5,
      0
    ],
    "io_out": [
      -3,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_asc(mul_n(reverse(input),3)),1),-3)"
  },
  {
    "input": "input : list = [-1, 1, -3, 4, 0]\noutput : list = [-9, -7, -6, -5, -2]",
    "output": "generated_output : list = take(sort_asc(add_n(sub_n(reverse([-1, 1, -3, 4, 0]),3),-3)),50)",
    "io_inp": [
      -1,
      1,
      -3,
      4,
      0
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sub_n(reverse(input),3),-3)),50)"
  },
  {
    "input": "input : list = [2, 5, 0, -3]\noutput : list = [8, 5, 3, 0]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(sort_asc([2, 5, 0, -3]),-3),-3),3))",
    "io_inp": [
      2,
      5,
      0,
      -3
    ],
    "io_out": [
      8,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(sort_asc(input),-3),-3),3))"
  },
  {
    "input": "input : list = [2, 2, -4, 1, -5]\noutput : list = [-4, 2, 2]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(take([2, 2, -4, 1, -5],3)))),51)",
    "io_inp": [
      2,
      2,
      -4,
      1,
      -5
    ],
    "io_out": [
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(take(input,3)))),51)"
  },
  {
    "input": "input : list = [5, 0, -5, -4, 4]\noutput : list = [17, 37, 42]",
    "output": "generated_output : list = add_n(mul_n(drop(sub_n(sort_asc([5, 0, -5, -4, 4]),-4),2),5),-3)",
    "io_inp": [
      5,
      0,
      -5,
      -4,
      4
    ],
    "io_out": [
      17,
      37,
      42
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(sub_n(sort_asc(input),-4),2),5),-3)"
  },
  {
    "input": "input : list = [5, -4, 4, -3]\noutput : list = [0, -9, -1, -8]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n([5, -4, 4, -3],-2),-3),-1),-5)",
    "io_inp": [
      5,
      -4,
      4,
      -3
    ],
    "io_out": [
      0,
      -9,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(input,-2),-3),-1),-5)"
  },
  {
    "input": "input : list = [0, -3, -3, 0, 3, -5]\noutput : list = [0, -3, -3, 0, 3, -5]",
    "output": "generated_output : list = mul_n([0, -3, -3, 0, 3, -5],1)",
    "io_inp": [
      0,
      -3,
      -3,
      0,
      3,
      -5
    ],
    "io_out": [
      0,
      -3,
      -3,
      0,
      3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -3, 4, -5, 0]\noutput : list = [3, -6, -1]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(drop([1, -3, 4, -5, 0],2),-1),1),-1),3)",
    "io_inp": [
      1,
      -3,
      4,
      -5,
      0
    ],
    "io_out": [
      3,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(drop(input,2),-1),1),-1),3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_asc([-1, -2])),4)))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-2, -2, 5, -5]\noutput : list = [-4, 8, 8, 36]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n([-2, -2, 5, -5],4),14)),4)",
    "io_inp": [
      -2,
      -2,
      5,
      -5
    ],
    "io_out": [
      -4,
      8,
      8,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(input,4),14)),4)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1, 8]",
    "output": "generated_output : list = take(add_n([-2, 5],3),4)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(input,3),4)"
  },
  {
    "input": "input : list = [-5, -3, -4, 3]\noutput : list = [-4, -10, -11, -12]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(add_n([-5, -3, -4, 3],-3),4))),32)",
    "io_inp": [
      -5,
      -3,
      -4,
      3
    ],
    "io_out": [
      -4,
      -10,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(add_n(input,-3),4))),32)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [10, 4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n([-1, 5],3)))),2)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(add_n(input,3)))),2)"
  },
  {
    "input": "input : list = [-5, 1, -3, 2]\noutput : list = [-2, 4, 0, 5]",
    "output": "generated_output : list = add_n([-5, 1, -3, 2],3)",
    "io_inp": [
      -5,
      1,
      -3,
      2
    ],
    "io_out": [
      -2,
      4,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, 3, -3, -2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(reverse(reverse(take(reverse([-4, 3, -3, -2]),1))))",
    "io_inp": [
      -4,
      3,
      -3,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(reverse(input),1))))"
  },
  {
    "input": "input : list = [-5, -1, 2, 5]\noutput : list = [-8, -4, -1, 2]",
    "output": "generated_output : list = take(add_n([-5, -1, 2, 5],-3),19)",
    "io_inp": [
      -5,
      -1,
      2,
      5
    ],
    "io_out": [
      -8,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),19)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [11, -4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n([1, -4],-3),-3),-4))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      11,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(input,-3),-3),-4))"
  },
  {
    "input": "input : list = [-2, -2, -1, 3]\noutput : list = [2, 2, 1, -3]",
    "output": "generated_output : list = mul_n([-2, -2, -1, 3],-1)",
    "io_inp": [
      -2,
      -2,
      -1,
      3
    ],
    "io_out": [
      2,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, 5, -1, 0, -4]\noutput : list = [-2, 3, -3, -2, -6]",
    "output": "generated_output : list = add_n([0, 5, -1, 0, -4],-2)",
    "io_inp": [
      0,
      5,
      -1,
      0,
      -4
    ],
    "io_out": [
      -2,
      3,
      -3,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, -4, -3, -1]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = drop([2, -4, -3, -1],1)",
    "io_inp": [
      2,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -4, 2, -4]\noutput : list = [-30, 42, -30, -18]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(mul_n([-3, -4, 2, -4],4),5),3)),3)",
    "io_inp": [
      -3,
      -4,
      2,
      -4
    ],
    "io_out": [
      -30,
      42,
      -30,
      -18
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(mul_n(input,4),5),3)),3)"
  },
  {
    "input": "input : list = [-5, 2, 3, -1, 3]\noutput : list = [-8, -4, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(sort_asc([-5, 2, 3, -1, 3])),-3)))",
    "io_inp": [
      -5,
      2,
      3,
      -1,
      3
    ],
    "io_out": [
      -8,
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [-7, 0, 1]",
    "output": "generated_output : list = add_n([-3, 4, 5],-4)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      -7,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(take([1, 2, -2],1),3)),-3),2)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(take(input,1),3)),-3),2)"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [22, 2, -18]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(mul_n([-1, 0, 1],4),-5),4),-2),5)",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      22,
      2,
      -18
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(mul_n(input,4),-5),4),-2),5)"
  },
  {
    "input": "input : list = [0, -5, -3]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = sort_des([0, -5, -3])",
    "io_inp": [
      0,
      -5,
      -3
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, 0, 4, 0]\noutput : list = [5, 1, 1, -3, -4]",
    "output": "generated_output : list = add_n(sort_des([-5, -4, 0, 4, 0]),1)",
    "io_inp": [
      -5,
      -4,
      0,
      4,
      0
    ],
    "io_out": [
      5,
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [2, -1, -4, 0, 0, 3]\noutput : list = [-2, -3, -5, -5, -6, -9]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([2, -1, -4, 0, 0, 3])),5)",
    "io_inp": [
      2,
      -1,
      -4,
      0,
      0,
      3
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -5,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [-14, 28, 28]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n([4, 4, -3],-3),-1),3)),-2)",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      -14,
      28,
      28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n(input,-3),-1),3)),-2)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [7, 7, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n([5, 5, -4],2))))",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      7,
      7,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(input,2))))"
  },
  {
    "input": "input : list = [2, 4, 1, 1]\noutput : list = [9, 7, 6, 6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([2, 4, 1, 1]),5))",
    "io_inp": [
      2,
      4,
      1,
      1
    ],
    "io_out": [
      9,
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-2, 2, 1]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(drop([-2, 2, 1],1),3)),-3),-4)",
    "io_inp": [
      -2,
      2,
      1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(drop(input,1),3)),-3),-4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [100, 180]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(add_n([0, -4],-5)),-5),4))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      100,
      180
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(add_n(input,-5)),-5),4))"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc([2, -2, -3])),13)))",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc(input)),13)))"
  },
  {
    "input": "input : list = [-1, 0, 3, 4, 0]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(mul_n(take([-1, 0, 3, 4, 0],2),-4),-2)",
    "io_inp": [
      -1,
      0,
      3,
      4,
      0
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,2),-4),-2)"
  },
  {
    "input": "input : list = [1, 4, 4, -1, 1, 2]\noutput : list = [-12, -12, -4, 0, 0, 8]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(add_n([1, 4, 4, -1, 1, 2],-1))),-4))",
    "io_inp": [
      1,
      4,
      4,
      -1,
      1,
      2
    ],
    "io_out": [
      -12,
      -12,
      -4,
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(add_n(input,-1))),-4))"
  },
  {
    "input": "input : list = [2, 1, -4, -4, -3, -1]\noutput : list = [-2, 0, 4, 8, 10, 10]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(sort_asc([2, 1, -4, -4, -3, -1])),4),3),-2)",
    "io_inp": [
      2,
      1,
      -4,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -2,
      0,
      4,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(sort_asc(input)),4),3),-2)"
  },
  {
    "input": "input : list = [-1, 1, 4, -4, 5]\noutput : list = [8, 7, 4, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n(mul_n([-1, 1, 4, -4, 5],1),4),28)),1)",
    "io_inp": [
      -1,
      1,
      4,
      -4,
      5
    ],
    "io_out": [
      8,
      7,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(mul_n(input,1),4),28)),1)"
  },
  {
    "input": "input : list = [2, -4, -1, 4]\noutput : list = [-15, 15, 0, -25]",
    "output": "generated_output : list = add_n(mul_n([2, -4, -1, 4],-5),-5)",
    "io_inp": [
      2,
      -4,
      -1,
      4
    ],
    "io_out": [
      -15,
      15,
      0,
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-5)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = mul_n([4, -2],-1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-28, -7]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n([-3, 4],2),5),3),-2)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -28,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(input,2),5),3),-2)"
  },
  {
    "input": "input : list = [-4, 1, 3, 4, -5, -4]\noutput : list = [4, 3, 1, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-4, 1, 3, 4, -5, -4])",
    "io_inp": [
      -4,
      1,
      3,
      4,
      -5,
      -4
    ],
    "io_out": [
      4,
      3,
      1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(reverse([0, 1]),5),3)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(reverse(input),5),3)))"
  },
  {
    "input": "input : list = [-2, 0, -1, 0, -4]\noutput : list = [-4, -2, -1, 0, 0]",
    "output": "generated_output : list = sort_asc([-2, 0, -1, 0, -4])",
    "io_inp": [
      -2,
      0,
      -1,
      0,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2, 3, 2, 3]\noutput : list = [-2, 2, 2, 3, 3]",
    "output": "generated_output : list = take(reverse(sort_des([2, -2, 3, 2, 3])),19)",
    "io_inp": [
      2,
      -2,
      3,
      2,
      3
    ],
    "io_out": [
      -2,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),19)"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [0, 20, 40]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(sort_des([0, -4, -2])),11),5),-2)",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      0,
      20,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(sort_des(input)),11),5),-2)"
  },
  {
    "input": "input : list = [3, 2, -4, -4, -3]\noutput : list = [-9, -8, -2, -2, -3]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(sub_n([3, 2, -4, -4, -3],-4),2))),-1)",
    "io_inp": [
      3,
      2,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(sub_n(input,-4),2))),-1)"
  },
  {
    "input": "input : list = [-5, -3, 4, 0, 2]\noutput : list = [-1, 1, 8, 4, 6]",
    "output": "generated_output : list = sub_n([-5, -3, 4, 0, 2],-4)",
    "io_inp": [
      -5,
      -3,
      4,
      0,
      2
    ],
    "io_out": [
      -1,
      1,
      8,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, 2, -4, -1, 3]\noutput : list = [20, 8, -16, -4, 12]",
    "output": "generated_output : list = mul_n([5, 2, -4, -1, 3],4)",
    "io_inp": [
      5,
      2,
      -4,
      -1,
      3
    ],
    "io_out": [
      20,
      8,
      -16,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 5, 2, -1, -2]\noutput : list = [3, -6, -15]",
    "output": "generated_output : list = drop(mul_n(sort_asc(take(drop([2, 5, 2, -1, -2],1),18)),-3),1)",
    "io_inp": [
      2,
      5,
      2,
      -1,
      -2
    ],
    "io_out": [
      3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_asc(take(drop(input,1),18)),-3),1)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [17, -15]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_des([-3, 5]),4)),3))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      17,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_des(input),4)),3))"
  },
  {
    "input": "input : list = [5, 5, 2, -4, 2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse(drop([5, 5, 2, -4, 2, 3],4))",
    "io_inp": [
      5,
      5,
      2,
      -4,
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,4))"
  },
  {
    "input": "input : list = [0, -3, -3, 0]\noutput : list = [-2, -2, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sort_asc([0, -3, -3, 0])),-1)))",
    "io_inp": [
      0,
      -3,
      -3,
      0
    ],
    "io_out": [
      -2,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [3, -3, 2, -3, 4, 0]\noutput : list = [4, 0, -3]",
    "output": "generated_output : list = sort_des(drop([3, -3, 2, -3, 4, 0],3))",
    "io_inp": [
      3,
      -3,
      2,
      -3,
      4,
      0
    ],
    "io_out": [
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [-5, -2, -3, 0]\noutput : list = [-6, -3, -4, -1]",
    "output": "generated_output : list = sub_n([-5, -2, -3, 0],1)",
    "io_inp": [
      -5,
      -2,
      -3,
      0
    ],
    "io_out": [
      -6,
      -3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(take([-5, 4, -3],1))),3),39)",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(take(input,1))),3),39)"
  },
  {
    "input": "input : list = [-4, 3, 3, -2, 4, 2]\noutput : list = [-8, -1, -1, -6, 0, -2]",
    "output": "generated_output : list = sub_n([-4, 3, 3, -2, 4, 2],4)",
    "io_inp": [
      -4,
      3,
      3,
      -2,
      4,
      2
    ],
    "io_out": [
      -8,
      -1,
      -1,
      -6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [1, -2, -2, -1]\noutput : list = [4, 7, 7, 6]",
    "output": "generated_output : list = add_n(mul_n([1, -2, -2, -1],-1),5)",
    "io_inp": [
      1,
      -2,
      -2,
      -1
    ],
    "io_out": [
      4,
      7,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [4, 0, 0, 3, -3]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sub_n(drop([4, 0, 0, 3, -3],3),5)",
    "io_inp": [
      4,
      0,
      0,
      3,
      -3
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),5)"
  },
  {
    "input": "input : list = [-2, 0, -4, -3, 2, -1]\noutput : list = [-8, 0, -16, -12]",
    "output": "generated_output : list = mul_n(take([-2, 0, -4, -3, 2, -1],4),4)",
    "io_inp": [
      -2,
      0,
      -4,
      -3,
      2,
      -1
    ],
    "io_out": [
      -8,
      0,
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),4)"
  },
  {
    "input": "input : list = [4, 1, 4, 1, 4]\noutput : list = [4, 1, 4, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 4, 1, 4])",
    "io_inp": [
      4,
      1,
      4,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -4, -5, 4]\noutput : list = [16, -16, -20, -20]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(mul_n([-5, -4, -5, 4],4)))))",
    "io_inp": [
      -5,
      -4,
      -5,
      4
    ],
    "io_out": [
      16,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [1, -2, -5]\noutput : list = [-6, -9, -12]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(add_n([1, -2, -5],-4))),3))",
    "io_inp": [
      1,
      -2,
      -5
    ],
    "io_out": [
      -6,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(add_n(input,-4))),3))"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 1, 3],1)",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -1, -3, 3, 3, 2]\noutput : list = [6, 7, 7, 1, 3, 8]",
    "output": "generated_output : list = sub_n(reverse([4, -1, -3, 3, 3, 2]),-4)",
    "io_inp": [
      4,
      -1,
      -3,
      3,
      3,
      2
    ],
    "io_out": [
      6,
      7,
      7,
      1,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [2, -3, -3, -3, 2, -4]\noutput : list = [-9, -3, -8, -8, -8, -3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(add_n([2, -3, -3, -3, 2, -4],-5)),-1),-3),4)",
    "io_inp": [
      2,
      -3,
      -3,
      -3,
      2,
      -4
    ],
    "io_out": [
      -9,
      -3,
      -8,
      -8,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(add_n(input,-5)),-1),-3),4)"
  },
  {
    "input": "input : list = [-4, 4, 5, 2, 1, 4]\noutput : list = [-4, -1, -2, -5, -4, 4]",
    "output": "generated_output : list = mul_n(reverse([-4, 4, 5, 2, 1, 4]),-1)",
    "io_inp": [
      -4,
      4,
      5,
      2,
      1,
      4
    ],
    "io_out": [
      -4,
      -1,
      -2,
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [3, -3, 2, -1, 5]\noutput : list = [5, 3, 2, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(add_n([3, -3, 2, -1, 5],-4)),-3),-1))",
    "io_inp": [
      3,
      -3,
      2,
      -1,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(add_n(input,-4)),-3),-1))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [80, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(add_n([0, -5],-1),1)),4),-4)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      80,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(add_n(input,-1),1)),4),-4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = add_n([4, 1],-5)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [3, 1, -4, -2, -5, 5]\noutput : list = [6, 2, -8, -4, -10, 10]",
    "output": "generated_output : list = mul_n([3, 1, -4, -2, -5, 5],2)",
    "io_inp": [
      3,
      1,
      -4,
      -2,
      -5,
      5
    ],
    "io_out": [
      6,
      2,
      -8,
      -4,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, 3, 4, 1, -1]\noutput : list = [-8, -6, -2, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-1, 3, 4, 1, -1],-2)))",
    "io_inp": [
      -1,
      3,
      4,
      1,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [2, 5, 3, 4]\noutput : list = [10, 5, 0, -5]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n([2, 5, 3, 4],4)),-1),36),5)",
    "io_inp": [
      2,
      5,
      3,
      4
    ],
    "io_out": [
      10,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n(input,4)),-1),36),5)"
  },
  {
    "input": "input : list = [0, -3, -3, -2, 0]\noutput : list = [-5, -5, -7, -8, -8]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(add_n([0, -3, -3, -2, 0],-5),14))))",
    "io_inp": [
      0,
      -3,
      -3,
      -2,
      0
    ],
    "io_out": [
      -5,
      -5,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(add_n(input,-5),14))))"
  },
  {
    "input": "input : list = [-1, 4, -4]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(take([-1, 4, -4],1),-5)",
    "io_inp": [
      -1,
      4,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [0, 5, -4, -5, 4]\noutput : list = [5, 4, 0, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sort_asc([0, 5, -4, -5, 4])))))",
    "io_inp": [
      0,
      5,
      -4,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [56, 56]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(add_n([-2, -2],-5),3),4),25),-4)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      56,
      56
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(add_n(input,-5),3),4),25),-4)"
  },
  {
    "input": "input : list = [-1, -1, -1, 2, -4, 5]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = take([-1, -1, -1, 2, -4, 5],3)",
    "io_inp": [
      -1,
      -1,
      -1,
      2,
      -4,
      5
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, -3, 0, 4, -4, -5]\noutput : list = [4, 2, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des([2, -3, 0, 4, -4, -5])",
    "io_inp": [
      2,
      -3,
      0,
      4,
      -4,
      -5
    ],
    "io_out": [
      4,
      2,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, -5, 2, 5]\noutput : list = [10, 7, 0, 1, 1]",
    "output": "generated_output : list = reverse(sub_n([-4, -4, -5, 2, 5],-5))",
    "io_inp": [
      -4,
      -4,
      -5,
      2,
      5
    ],
    "io_out": [
      10,
      7,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [1, 0, 1, -3, -3]\noutput : list = [12, 8]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(take([1, 0, 1, -3, -3],2),2))),4)",
    "io_inp": [
      1,
      0,
      1,
      -3,
      -3
    ],
    "io_out": [
      12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(take(input,2),2))),4)"
  },
  {
    "input": "input : list = [-5, 0, 2, -3, -4]\noutput : list = [-2, -1, 0, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse([-5, 0, 2, -3, -4]),-3)))",
    "io_inp": [
      -5,
      0,
      2,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(input),-3)))"
  },
  {
    "input": "input : list = [4, 3, 5, -1, -3, 3]\noutput : list = [12, 0, -6]",
    "output": "generated_output : list = sub_n(mul_n(drop(sort_des(sort_asc([4, 3, 5, -1, -3, 3])),3),3),-3)",
    "io_inp": [
      4,
      3,
      5,
      -1,
      -3,
      3
    ],
    "io_out": [
      12,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(sort_des(sort_asc(input)),3),3),-3)"
  },
  {
    "input": "input : list = [-3, 3, 0, -2, 2]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(take([-3, 3, 0, -2, 2],1))),36))",
    "io_inp": [
      -3,
      3,
      0,
      -2,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(take(input,1))),36))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [12, 12]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_asc([-3, -3]),1),-1)),4)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_asc(input),1),-1)),4)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [-36, -20, -16]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(sort_asc([1, 0, 5]),5),1),-4))",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      -36,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(sort_asc(input),5),1),-4))"
  },
  {
    "input": "input : list = [1, 5, 2, -4]\noutput : list = [2, 5, 6, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(mul_n([1, 5, 2, -4],-1),20),-2),-5))",
    "io_inp": [
      1,
      5,
      2,
      -4
    ],
    "io_out": [
      2,
      5,
      6,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(mul_n(input,-1),20),-2),-5))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-20, 12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(sort_des([-4, 4])),-4),5),4)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(sort_des(input)),-4),5),4)"
  },
  {
    "input": "input : list = [1, -4, 1, -3, -3]\noutput : list = [-4, -3, -3, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des([1, -4, 1, -3, -3]))",
    "io_inp": [
      1,
      -4,
      1,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, -1, -2, -5, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(drop([0, -1, -2, -5, 4, 5],4))",
    "io_inp": [
      0,
      -1,
      -2,
      -5,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,4))"
  },
  {
    "input": "input : list = [5, -5, 1, 2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse(sort_asc(drop([5, -5, 1, 2, 3],3)))",
    "io_inp": [
      5,
      -5,
      1,
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,3)))"
  },
  {
    "input": "input : list = [-2, -1, 0, -4]\noutput : list = [-4, -2, -1, 0]",
    "output": "generated_output : list = sort_asc([-2, -1, 0, -4])",
    "io_inp": [
      -2,
      -1,
      0,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1, -4, -1]\noutput : list = [-2, 4, 8, 16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_des([5, 1, -4, -1]),3))),2)",
    "io_inp": [
      5,
      1,
      -4,
      -1
    ],
    "io_out": [
      -2,
      4,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_des(input),3))),2)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-6, 1]",
    "output": "generated_output : list = sub_n(reverse([3, -4]),2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(reverse([3, 1, 0]))))",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [-2, -4, 2, -3, 0, -4]\noutput : list = [-7, -7, -6, -5, -3, -1]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(add_n([-2, -4, 2, -3, 0, -4],-3))),19))",
    "io_inp": [
      -2,
      -4,
      2,
      -3,
      0,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(add_n(input,-3))),19))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(sort_asc([4, 3])),-1),19),-4)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(sort_asc(input)),-1),19),-4)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-9, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(reverse([4, -5])),5),-1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(reverse(input)),5),-1)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-10, -10, -15]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_des([-2, -2, -3]))),1),5)",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_des(input))),1),5)"
  },
  {
    "input": "input : list = [0, 2, 0, 2, 3, -4]\noutput : list = [8, 4, 4, -4, -20]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(drop([0, 2, 0, 2, 3, -4],1),4)),4)",
    "io_inp": [
      0,
      2,
      0,
      2,
      3,
      -4
    ],
    "io_out": [
      8,
      4,
      4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(drop(input,1),4)),4)"
  },
  {
    "input": "input : list = [1, 1, 0, 0, 1]\noutput : list = [1, 1, 0, 0, 1]",
    "output": "generated_output : list = mul_n([1, 1, 0, 0, 1],1)",
    "io_inp": [
      1,
      1,
      0,
      0,
      1
    ],
    "io_out": [
      1,
      1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [2, -3, 5, 0, 1, 4]\noutput : list = [4, -2, -4, -6, -10, -12]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sub_n([2, -3, 5, 0, 1, 4],-1)),-2)))",
    "io_inp": [
      2,
      -3,
      5,
      0,
      1,
      4
    ],
    "io_out": [
      4,
      -2,
      -4,
      -6,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sub_n(input,-1)),-2)))"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 0, -5],1)",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 2, 0]\noutput : list = [6, -6, 0]",
    "output": "generated_output : list = mul_n([-2, 2, 0],-3)",
    "io_inp": [
      -2,
      2,
      0
    ],
    "io_out": [
      6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 3, -4, 0, 0]\noutput : list = [-5, 3, -4]",
    "output": "generated_output : list = take([-5, 3, -4, 0, 0],3)",
    "io_inp": [
      -5,
      3,
      -4,
      0,
      0
    ],
    "io_out": [
      -5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, 1, 2, -3, 4, 0]\noutput : list = [5, 3, 3, 2, 1, -2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(reverse([2, 1, 2, -3, 4, 0]),-5),3)),1)",
    "io_inp": [
      2,
      1,
      2,
      -3,
      4,
      0
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(reverse(input),-5),3)),1)"
  },
  {
    "input": "input : list = [-2, -5, 1, -1, -1, 3]\noutput : list = [-1, -1, 3]",
    "output": "generated_output : list = drop([-2, -5, 1, -1, -1, 3],3)",
    "io_inp": [
      -2,
      -5,
      1,
      -1,
      -1,
      3
    ],
    "io_out": [
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, -2, 1, -3, 4, -3]\noutput : list = [5, 2, 5, 1, 8, 1]",
    "output": "generated_output : list = sub_n([1, -2, 1, -3, 4, -3],-4)",
    "io_inp": [
      1,
      -2,
      1,
      -3,
      4,
      -3
    ],
    "io_out": [
      5,
      2,
      5,
      1,
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -1, 2, 4, 2]\noutput : list = [-1, 2, 2, 4]",
    "output": "generated_output : list = drop(sub_n(sub_n(add_n(sort_asc([-3, -1, 2, 4, 2]),-1),-4),3),1)",
    "io_inp": [
      -3,
      -1,
      2,
      4,
      2
    ],
    "io_out": [
      -1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = drop(sub_n(sub_n(add_n(sort_asc(input),-1),-4),3),1)"
  },
  {
    "input": "input : list = [2, -5, -1, -2, -5, 0]\noutput : list = [4, 3, 2, -1]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(drop([2, -5, -1, -2, -5, 0],2))),4),36)",
    "io_inp": [
      2,
      -5,
      -1,
      -2,
      -5,
      0
    ],
    "io_out": [
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(drop(input,2))),4),36)"
  },
  {
    "input": "input : list = [3, 3, 2, 3, -1, -2]\noutput : list = [-25, -5, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(drop([3, 3, 2, 3, -1, -2],3),-2),-5)))",
    "io_inp": [
      3,
      3,
      2,
      3,
      -1,
      -2
    ],
    "io_out": [
      -25,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(drop(input,3),-2),-5)))"
  },
  {
    "input": "input : list = [-5, -5, 3, -4, -2]\noutput : list = [7, 2, 0, -1, -1]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-5, -5, 3, -4, -2],4)))",
    "io_inp": [
      -5,
      -5,
      3,
      -4,
      -2
    ],
    "io_out": [
      7,
      2,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,4)))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-9, -6]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(sort_des([1, -2]),4),11)),3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(sort_des(input),4),11)),3)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des([-4, 3])",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, 1, 1]\noutput : list = [5, 5, -1, -1]",
    "output": "generated_output : list = sub_n(sort_des([-5, -5, 1, 1]),-4)",
    "io_inp": [
      -5,
      -5,
      1,
      1
    ],
    "io_out": [
      5,
      5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-1, -1])),1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [4, -3, -2, -4]\noutput : list = [-15, -10, 20]",
    "output": "generated_output : list = take(drop(mul_n(sort_asc([4, -3, -2, -4]),5),1),31)",
    "io_inp": [
      4,
      -3,
      -2,
      -4
    ],
    "io_out": [
      -15,
      -10,
      20
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(sort_asc(input),5),1),31)"
  },
  {
    "input": "input : list = [-1, 1, -5, -2, 2]\noutput : list = [3, 2, 0, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-1, 1, -5, -2, 2],1)))",
    "io_inp": [
      -1,
      1,
      -5,
      -2,
      2
    ],
    "io_out": [
      3,
      2,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,1)))"
  },
  {
    "input": "input : list = [-1, -4, -5, 4, 2]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_des([-1, -4, -5, 4, 2]),3)),1))",
    "io_inp": [
      -1,
      -4,
      -5,
      4,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_des(input),3)),1))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-60, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n([-4, 0],-5),-3)))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -60,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(input,-5),-3)))"
  },
  {
    "input": "input : list = [4, 3, 5, 3, -3, -3]\noutput : list = [7, 8]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(take([4, 3, 5, 3, -3, -3],2)),-4)),24)",
    "io_inp": [
      4,
      3,
      5,
      3,
      -3,
      -3
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(take(input,2)),-4)),24)"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [5, 4, -2]",
    "output": "generated_output : list = sort_des([5, 4, -2])",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, 4, -3, 3, -5]\noutput : list = [12, 9, 3, 3, -9, -15]",
    "output": "generated_output : list = mul_n(sort_des([1, 1, 4, -3, 3, -5]),3)",
    "io_inp": [
      1,
      1,
      4,
      -3,
      3,
      -5
    ],
    "io_out": [
      12,
      9,
      3,
      3,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc([-1, 1])",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, 1, -3, 3, 4]\noutput : list = [-6, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sub_n([5, -5, 1, -3, 3, 4],1),3))))",
    "io_inp": [
      5,
      -5,
      1,
      -3,
      3,
      4
    ],
    "io_out": [
      -6,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sub_n(input,1),3))))"
  },
  {
    "input": "input : list = [-3, -2, 2, -4, 5, 1]\noutput : list = [-28, -4, 4, 28, 36, 44]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(mul_n([-3, -2, 2, -4, 5, 1],-2)),3)),4)",
    "io_inp": [
      -3,
      -2,
      2,
      -4,
      5,
      1
    ],
    "io_out": [
      -28,
      -4,
      4,
      28,
      36,
      44
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(mul_n(input,-2)),3)),4)"
  },
  {
    "input": "input : list = [-4, 2, 3, -1, -3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(drop([-4, 2, 3, -1, -3, -5],4),-3))),3)",
    "io_inp": [
      -4,
      2,
      3,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(drop(input,4),-3))),3)"
  },
  {
    "input": "input : list = [-3, -1, 4, -4, 0]\noutput : list = [1, 2, 4, 5, 9]",
    "output": "generated_output : list = sort_asc(sub_n([-3, -1, 4, -4, 0],-5))",
    "io_inp": [
      -3,
      -1,
      4,
      -4,
      0
    ],
    "io_out": [
      1,
      2,
      4,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [2, 3, 3, 4, 0, 4]\noutput : list = [2, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(take([2, 3, 3, 4, 0, 4],3)),18)))",
    "io_inp": [
      2,
      3,
      3,
      4,
      0,
      4
    ],
    "io_out": [
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(take(input,3)),18)))"
  },
  {
    "input": "input : list = [4, -2, 1, -3, -1, 1]\noutput : list = [-3, -2, -1, 1, 1, 4]",
    "output": "generated_output : list = reverse(sort_des([4, -2, 1, -3, -1, 1]))",
    "io_inp": [
      4,
      -2,
      1,
      -3,
      -1,
      1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = sort_asc([2, -3, 2])",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-3, -3, 0]",
    "output": "generated_output : list = mul_n(mul_n(take(take(add_n([-5, -5, -4],4),17),3),-3),-1)",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(add_n(input,4),17),3),-3),-1)"
  },
  {
    "input": "input : list = [-4, -4, 5, -2]\noutput : list = [5, -2, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(reverse([-4, -4, 5, -2])))))",
    "io_inp": [
      -4,
      -4,
      5,
      -2
    ],
    "io_out": [
      5,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [12, 6]",
    "output": "generated_output : list = mul_n(sub_n([-5, -3],-1),-3)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-3)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(add_n(take([3, 2, 2],1),4))))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(add_n(take(input,1),4))))"
  },
  {
    "input": "input : list = [1, 5, -3, 3]\noutput : list = [-3, 1, 3, 5]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(sort_asc([1, 5, -3, 3])),21),1))",
    "io_inp": [
      1,
      5,
      -3,
      3
    ],
    "io_out": [
      -3,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(sort_asc(input)),21),1))"
  },
  {
    "input": "input : list = [2, -2, -2, -5, 3]\noutput : list = [12, 8, -8, -8, -20]",
    "output": "generated_output : list = mul_n(sort_des(take(reverse(sort_asc([2, -2, -2, -5, 3])),25)),4)",
    "io_inp": [
      2,
      -2,
      -2,
      -5,
      3
    ],
    "io_out": [
      12,
      8,
      -8,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(reverse(sort_asc(input)),25)),4)"
  },
  {
    "input": "input : list = [-1, -5, 3, -5]\noutput : list = [3, -1, -5, -5]",
    "output": "generated_output : list = sort_des([-1, -5, 3, -5])",
    "io_inp": [
      -1,
      -5,
      3,
      -5
    ],
    "io_out": [
      3,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, 3]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([4, 1, 3]),1))",
    "io_inp": [
      4,
      1,
      3
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-1, 2, 5, 5, 4]\noutput : list = [4, 7, 10, 10, 9]",
    "output": "generated_output : list = add_n([-1, 2, 5, 5, 4],5)",
    "io_inp": [
      -1,
      2,
      5,
      5,
      4
    ],
    "io_out": [
      4,
      7,
      10,
      10,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 0, -3]\noutput : list = [-5, 5, -10]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(mul_n([-2, 0, -3],-1)),-5)),-5)",
    "io_inp": [
      -2,
      0,
      -3
    ],
    "io_out": [
      -5,
      5,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(mul_n(input,-1)),-5)),-5)"
  },
  {
    "input": "input : list = [-1, 1, -4, -5]\noutput : list = [-2, -4, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sub_n([-1, 1, -4, -5],3),8),1)))",
    "io_inp": [
      -1,
      1,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sub_n(input,3),8),1)))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [8, -2]",
    "output": "generated_output : list = mul_n(sort_asc([1, -4]),-2)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [3, -1, 2]\noutput : list = [-27, -18, 9]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(mul_n([3, -1, 2],-3)),27)),3)",
    "io_inp": [
      3,
      -1,
      2
    ],
    "io_out": [
      -27,
      -18,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(mul_n(input,-3)),27)),3)"
  },
  {
    "input": "input : list = [-4, 2, -5, -1, -1]\noutput : list = [-2, -5, -5, -8, -9]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(reverse([-4, 2, -5, -1, -1]),1))),-5)",
    "io_inp": [
      -4,
      2,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -5,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(reverse(input),1))),-5)"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(take([-1, 4, 4],1))",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-2, 0, 3, 1]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = take(take(sort_des(drop(sub_n([-2, 0, 3, 1],2),1)),10),41)",
    "io_inp": [
      -2,
      0,
      3,
      1
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(drop(sub_n(input,2),1)),10),41)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [0, -10]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(reverse([-5, 5]),5))))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [1, -5, -2, 5, 0]\noutput : list = [-5, -2, 5, 0]",
    "output": "generated_output : list = take(reverse(reverse(drop([1, -5, -2, 5, 0],1))),18)",
    "io_inp": [
      1,
      -5,
      -2,
      5,
      0
    ],
    "io_out": [
      -5,
      -2,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(drop(input,1))),18)"
  },
  {
    "input": "input : list = [-3, -3, 4]\noutput : list = [1, -6, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sort_asc([-3, -3, 4])))),3)",
    "io_inp": [
      -3,
      -3,
      4
    ],
    "io_out": [
      1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [-3, 2, -5, -2, 1, -2]\noutput : list = [-8, -6, -1]",
    "output": "generated_output : list = add_n(sort_asc(take(take(take([-3, 2, -5, -2, 1, -2],3),27),24)),-3)",
    "io_inp": [
      -3,
      2,
      -5,
      -2,
      1,
      -2
    ],
    "io_out": [
      -8,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(take(input,3),27),24)),-3)"
  },
  {
    "input": "input : list = [3, 4, -2, -1, -2, -5]\noutput : list = [-5, -2, -1, -2, 4, 3]",
    "output": "generated_output : list = reverse([3, 4, -2, -1, -2, -5])",
    "io_inp": [
      3,
      4,
      -2,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      -2,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5, -1]\noutput : list = [-5, 15, 40]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_des([4, -5, -1]),4))),5)",
    "io_inp": [
      4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      15,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(sort_des(input),4))),5)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(mul_n([-1, -5, 1],-3),1),3),3),1)",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(mul_n(input,-3),1),3),3),1)"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sort_des(take(reverse(take([0, -5, 4],1)),20)),-2)",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(reverse(take(input,1)),20)),-2)"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [-1, -1, 4]",
    "output": "generated_output : list = sort_asc([4, -1, -1])",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 1, -5, -4, 3, -5]\noutput : list = [1, -1, -2, -6, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(reverse([0, 1, -5, -4, 3, -5]),17)),-2))",
    "io_inp": [
      0,
      1,
      -5,
      -4,
      3,
      -5
    ],
    "io_out": [
      1,
      -1,
      -2,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(reverse(input),17)),-2))"
  },
  {
    "input": "input : list = [3, 5, -1, -5, 0]\noutput : list = [9, 7, 4, 3, -1]",
    "output": "generated_output : list = sort_des(add_n([3, 5, -1, -5, 0],4))",
    "io_inp": [
      3,
      5,
      -1,
      -5,
      0
    ],
    "io_out": [
      9,
      7,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,4))"
  },
  {
    "input": "input : list = [2, 4, -1, 3, -5]\noutput : list = [0, 12, -12]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(drop([2, 4, -1, 3, -5],2),3),14),-1),-2)",
    "io_inp": [
      2,
      4,
      -1,
      3,
      -5
    ],
    "io_out": [
      0,
      12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(drop(input,2),3),14),-1),-2)"
  },
  {
    "input": "input : list = [5, -2, 3, 1, -2, 3]\noutput : list = [5, 3, 3, 1, -2, -2]",
    "output": "generated_output : list = sort_des([5, -2, 3, 1, -2, 3])",
    "io_inp": [
      5,
      -2,
      3,
      1,
      -2,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [0, -2, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n([0, -2, -5],3))),3)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(input,3))),3)"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(sort_des([5, 4, 2]),2))))",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [1, -4, -2, 2]\noutput : list = [-3, -1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([1, -4, -2, 2])),-1)",
    "io_inp": [
      1,
      -4,
      -2,
      2
    ],
    "io_out": [
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [5]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(take([-2, 5, -2],1),-3)),5),29)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(take(input,1),-3)),5),29)"
  },
  {
    "input": "input : list = [5, 1, 4, 0, -1, 4]\noutput : list = [-7]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(take([5, 1, 4, 0, -1, 4],1)),-2),3))",
    "io_inp": [
      5,
      1,
      4,
      0,
      -1,
      4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(take(input,1)),-2),3))"
  },
  {
    "input": "input : list = [-5, -4, 5, -2]\noutput : list = [-8, -1, 1, 2]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sort_des([-5, -4, 5, -2]),13),-1),-1),-4)",
    "io_inp": [
      -5,
      -4,
      5,
      -2
    ],
    "io_out": [
      -8,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sort_des(input),13),-1),-1),-4)"
  },
  {
    "input": "input : list = [-5, 4, -3, -2]\noutput : list = [2, 11, 4, 5]",
    "output": "generated_output : list = sub_n(add_n([-5, 4, -3, -2],4),-3)",
    "io_inp": [
      -5,
      4,
      -3,
      -2
    ],
    "io_out": [
      2,
      11,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),-3)"
  },
  {
    "input": "input : list = [-3, 1, -5, 5]\noutput : list = [9, -1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(drop(drop([-3, 1, -5, 5],1),1)),4))",
    "io_inp": [
      -3,
      1,
      -5,
      5
    ],
    "io_out": [
      9,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(drop(drop(input,1),1)),4))"
  },
  {
    "input": "input : list = [1, 4, -5, 0]\noutput : list = [-27, -2, 3, 18]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des([1, 4, -5, 0]),5),-2)))",
    "io_inp": [
      1,
      4,
      -5,
      0
    ],
    "io_out": [
      -27,
      -2,
      3,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des(input),5),-2)))"
  },
  {
    "input": "input : list = [2, -2, -4, -4, 3]\noutput : list = [1, -3, -5, -5, 2]",
    "output": "generated_output : list = add_n([2, -2, -4, -4, 3],-1)",
    "io_inp": [
      2,
      -2,
      -4,
      -4,
      3
    ],
    "io_out": [
      1,
      -3,
      -5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [3, -5, 0, -2, 1, 2]\noutput : list = [-1, 5, 9, 11, 13, 15]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n([3, -5, 0, -2, 1, 2],-5),2)),-1))",
    "io_inp": [
      3,
      -5,
      0,
      -2,
      1,
      2
    ],
    "io_out": [
      -1,
      5,
      9,
      11,
      13,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sub_n(input,-5),2)),-1))"
  },
  {
    "input": "input : list = [-2, -1, 2, 4, 0]\noutput : list = [20, 12, 4, 0, -4]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(reverse([-2, -1, 2, 4, 0])),2),-3),4)",
    "io_inp": [
      -2,
      -1,
      2,
      4,
      0
    ],
    "io_out": [
      20,
      12,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(reverse(input)),2),-3),4)"
  },
  {
    "input": "input : list = [-4, -5, 0, -2, -3, 5]\noutput : list = [9, 4, 2, 1, 0, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n(sort_des([-4, -5, 0, -2, -3, 5]),1))),4)",
    "io_inp": [
      -4,
      -5,
      0,
      -2,
      -3,
      5
    ],
    "io_out": [
      9,
      4,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(sort_des(input),1))),4)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [20, 10]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(reverse([4, 2]),5))))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      20,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-1, -4, -5, 2, 3]\noutput : list = [15, 10, -5, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n([-1, -4, -5, 2, 3],1),5)))",
    "io_inp": [
      -1,
      -4,
      -5,
      2,
      3
    ],
    "io_out": [
      15,
      10,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(input,1),5)))"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [-6, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(add_n([-4, 3, 1],-1),-1))))",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      -6,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(add_n(input,-1),-1))))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [4, -3]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des([5, -2]),4),-4),-4),-3)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_des(input),4),-4),-4),-3)"
  },
  {
    "input": "input : list = [-2, -5, 4, -4, 0]\noutput : list = [-8, -7, -5, -3, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([-2, -5, 4, -4, 0]),-3))",
    "io_inp": [
      -2,
      -5,
      4,
      -4,
      0
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [-1, -4, -1, 4]\noutput : list = [4, -1, -1]",
    "output": "generated_output : list = reverse(sort_asc(take(take(sort_des([-1, -4, -1, 4]),3),27)))",
    "io_inp": [
      -1,
      -4,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(sort_des(input),3),27)))"
  },
  {
    "input": "input : list = [-3, -5, 1, -5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(drop([-3, -5, 1, -5],2),2),2),-1),37)",
    "io_inp": [
      -3,
      -5,
      1,
      -5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(drop(input,2),2),2),-1),37)"
  },
  {
    "input": "input : list = [2, 2, 0]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(take([2, 2, 0],1)),-3),1),-5)",
    "io_inp": [
      2,
      2,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(take(input,1)),-3),1),-5)"
  },
  {
    "input": "input : list = [1, 1, 2, -3]\noutput : list = [-6, -2, -2, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([1, 1, 2, -3],4)),-1)",
    "io_inp": [
      1,
      1,
      2,
      -3
    ],
    "io_out": [
      -6,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,4)),-1)"
  },
  {
    "input": "input : list = [-3, 2, -5, -2, -5]\noutput : list = [3, -5, -7, -11, -11]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(sort_des([-3, 2, -5, -2, -5]))),2),1)",
    "io_inp": [
      -3,
      2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      3,
      -5,
      -7,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(sort_des(input))),2),1)"
  },
  {
    "input": "input : list = [2, -4, 1]\noutput : list = [-4, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse([2, -4, 1]))",
    "io_inp": [
      2,
      -4,
      1
    ],
    "io_out": [
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, 2, 5, 3, 4]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 2, 5, 3, 4],1)",
    "io_inp": [
      1,
      2,
      5,
      3,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(sort_des([0, -5])),23)),19)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(sort_des(input)),23)),19)"
  },
  {
    "input": "input : list = [-1, 2, -4, 2, 1, 1]\noutput : list = [-4, -1, 2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(take([-1, 2, -4, 2, 1, 1],4),4),34),-4))",
    "io_inp": [
      -1,
      2,
      -4,
      2,
      1,
      1
    ],
    "io_out": [
      -4,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(take(input,4),4),34),-4))"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [1, 9, -1]",
    "output": "generated_output : list = add_n([-3, 5, -5],4)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      1,
      9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-15, -25]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n([-4, -5],-2))),5),-5)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n(input,-2))),5),-5)"
  },
  {
    "input": "input : list = [-4, -1, -5, 4, 2, 5]\noutput : list = [4, 1, 5, -4, -2, -5]",
    "output": "generated_output : list = mul_n([-4, -1, -5, 4, 2, 5],-1)",
    "io_inp": [
      -4,
      -1,
      -5,
      4,
      2,
      5
    ],
    "io_out": [
      4,
      1,
      5,
      -4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des([2, 2])",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, -2, 3])",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, 0, 5, 4]\noutput : list = [1]",
    "output": "generated_output : list = take(sub_n(sub_n(take(add_n([5, -5, 0, 5, 4],4),1),3),5),31)",
    "io_inp": [
      5,
      -5,
      0,
      5,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(add_n(input,4),1),3),5),31)"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [-1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 1, -1]))",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 4, 0]\noutput : list = [0, 12, 0]",
    "output": "generated_output : list = take(mul_n([0, 4, 0],3),6)",
    "io_inp": [
      0,
      4,
      0
    ],
    "io_out": [
      0,
      12,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),6)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-24, 6]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(mul_n([-1, 4],3)),16)),-2)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -24,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(mul_n(input,3)),16)),-2)"
  },
  {
    "input": "input : list = [-1, 2, 2, -5, -1]\noutput : list = [-6, -3, -3]",
    "output": "generated_output : list = take(add_n(drop(sort_asc(drop([-1, 2, 2, -5, -1],1)),1),-5),20)",
    "io_inp": [
      -1,
      2,
      2,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(drop(sort_asc(drop(input,1)),1),-5),20)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse([5, -1, 2]),2)),-4)",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(input),2)),-4)"
  },
  {
    "input": "input : list = [-1, -4, -1, -4, 4, -2]\noutput : list = [2, 8]",
    "output": "generated_output : list = take(add_n(reverse(drop([-1, -4, -1, -4, 4, -2],4)),4),5)",
    "io_inp": [
      -1,
      -4,
      -1,
      -4,
      4,
      -2
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(drop(input,4)),4),5)"
  },
  {
    "input": "input : list = [5, -3, -3, 2]\noutput : list = [5, 2, -3, -3]",
    "output": "generated_output : list = sort_des(reverse([5, -3, -3, 2]))",
    "io_inp": [
      5,
      -3,
      -3,
      2
    ],
    "io_out": [
      5,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse([5, 5])",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-10, -1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([-5, 4],1)),-4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -10,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,1)),-4)"
  },
  {
    "input": "input : list = [-5, 0, 1, -4]\noutput : list = [-8, -3, -4, -9]",
    "output": "generated_output : list = add_n(reverse([-5, 0, 1, -4]),-4)",
    "io_inp": [
      -5,
      0,
      1,
      -4
    ],
    "io_out": [
      -8,
      -3,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-2, -1, 3, -5, 1, 2]\noutput : list = [2, 1, 0, -2, -3, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([-2, -1, 3, -5, 1, 2]),1))",
    "io_inp": [
      -2,
      -1,
      3,
      -5,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      0,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-1, 1, -2, 4, 5, 4]\noutput : list = [-24, -6, -6, -3]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(drop([-1, 1, -2, 4, 5, 4],2),5)),1),3)",
    "io_inp": [
      -1,
      1,
      -2,
      4,
      5,
      4
    ],
    "io_out": [
      -24,
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(drop(input,2),5)),1),3)"
  },
  {
    "input": "input : list = [2, -5, -4, -4, -3]\noutput : list = [-35, 65, 85, 85, 105]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(mul_n([2, -5, -4, -4, -3],-4)),-1)),5)",
    "io_inp": [
      2,
      -5,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -35,
      65,
      85,
      85,
      105
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(mul_n(input,-4)),-1)),5)"
  },
  {
    "input": "input : list = [0, 2, -3, -2, 4, 1]\noutput : list = [-3, -2, 0, 1, 2, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des([0, 2, -3, -2, 4, 1]))),19)",
    "io_inp": [
      0,
      2,
      -3,
      -2,
      4,
      1
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(input))),19)"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [-10, -8, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([3, -5, -4],2)))",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      -10,
      -8,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,2)))"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-9, -9, 0]",
    "output": "generated_output : list = mul_n(take(take(sort_asc([0, -3, -3]),15),26),3)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -9,
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(input),15),26),3)"
  },
  {
    "input": "input : list = [-3, 0, -4, -4, 5]\noutput : list = [5, 0, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-3, 0, -4, -4, 5])",
    "io_inp": [
      -3,
      0,
      -4,
      -4,
      5
    ],
    "io_out": [
      5,
      0,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, 0, 0, -1]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(take([0, 1, 0, 0, -1],3)),2)))",
    "io_inp": [
      0,
      1,
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(take(input,3)),2)))"
  },
  {
    "input": "input : list = [-5, -4, 2, 2]\noutput : list = [-4, 2, 2]",
    "output": "generated_output : list = sort_asc(take(drop([-5, -4, 2, 2],1),7))",
    "io_inp": [
      -5,
      -4,
      2,
      2
    ],
    "io_out": [
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,1),7))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [10, 5]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_des([5, 0])))),5)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [2, -2, 3, -2, -3, -1]\noutput : list = [2, 3, 3, 4, 7, 8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(sort_asc([2, -2, 3, -2, -3, -1])),-4)),-1)",
    "io_inp": [
      2,
      -2,
      3,
      -2,
      -3,
      -1
    ],
    "io_out": [
      2,
      3,
      3,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(sort_asc(input)),-4)),-1)"
  },
  {
    "input": "input : list = [1, -1, 3, -2, -1, 0]\noutput : list = [-6, -5, -4]",
    "output": "generated_output : list = take(take(add_n(take(drop([1, -1, 3, -2, -1, 0],3),10),-4),20),52)",
    "io_inp": [
      1,
      -1,
      3,
      -2,
      -1,
      0
    ],
    "io_out": [
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(drop(input,3),10),-4),20),52)"
  },
  {
    "input": "input : list = [1, 3, -4, -1, 2]\noutput : list = [-80, -64, -48, -16, 32]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(add_n([1, 3, -4, -1, 2],2),-4),4),33))",
    "io_inp": [
      1,
      3,
      -4,
      -1,
      2
    ],
    "io_out": [
      -80,
      -64,
      -48,
      -16,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(add_n(input,2),-4),4),33))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [11, 20]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(add_n([0, 3],2),3)),-5))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      11,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(add_n(input,2),3)),-5))"
  },
  {
    "input": "input : list = [-1, -5, 1, 0, -2, -5]\noutput : list = [-1, 0, 1, 2, 5, 5]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-1, -5, 1, 0, -2, -5]),-1),1)",
    "io_inp": [
      -1,
      -5,
      1,
      0,
      -2,
      -5
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-1),1)"
  },
  {
    "input": "input : list = [5, 1, -4, 0, -1, -3]\noutput : list = [-5, -4, -2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(sort_des([5, 1, -4, 0, -1, -3]))),1))",
    "io_inp": [
      5,
      1,
      -4,
      0,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(sort_des(input))),1))"
  },
  {
    "input": "input : list = [3, 4, -3]\noutput : list = [6, 5, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des([3, 4, -3]),-2)))",
    "io_inp": [
      3,
      4,
      -3
    ],
    "io_out": [
      6,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(input),-2)))"
  },
  {
    "input": "input : list = [5, 5, -5, -4, -1, -5]\noutput : list = [-2, -2, -20, -29, -32, -32]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc([5, 5, -5, -4, -1, -5]),4),3),-5))",
    "io_inp": [
      5,
      5,
      -5,
      -4,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -20,
      -29,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(sort_asc(input),4),3),-5))"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(sort_asc([5, 3, 1]),-3)),1))",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(sort_asc(input),-3)),1))"
  },
  {
    "input": "input : list = [1, 5, -1, -5, -3, 5]\noutput : list = [6, 2, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(drop(sort_des([1, 5, -1, -5, -3, 5]),1),18),-1))",
    "io_inp": [
      1,
      5,
      -1,
      -5,
      -3,
      5
    ],
    "io_out": [
      6,
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(drop(sort_des(input),1),18),-1))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(sort_des([1, -3]))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(add_n([1, 3],-2)),-3)))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(add_n(input,-2)),-3)))"
  },
  {
    "input": "input : list = [-2, -5, -3, -4, 3, 3]\noutput : list = [-8, -7, -6, -5, 0, 0]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(sort_des([-2, -5, -3, -4, 3, 3]))),1),4)",
    "io_inp": [
      -2,
      -5,
      -3,
      -4,
      3,
      3
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(sort_des(input))),1),4)"
  },
  {
    "input": "input : list = [-1, -3, 1, 4, 4, 3]\noutput : list = [20, 20, 15, 5, -5, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(take(reverse([-1, -3, 1, 4, 4, 3]),26)),5))",
    "io_inp": [
      -1,
      -3,
      1,
      4,
      4,
      3
    ],
    "io_out": [
      20,
      20,
      15,
      5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(take(reverse(input),26)),5))"
  },
  {
    "input": "input : list = [0, -4, -1, -3, 2, 2]\noutput : list = [4, 0, 3, 1, 6, 6]",
    "output": "generated_output : list = sub_n([0, -4, -1, -3, 2, 2],-4)",
    "io_inp": [
      0,
      -4,
      -1,
      -3,
      2,
      2
    ],
    "io_out": [
      4,
      0,
      3,
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, -5, 0, -2, 4]\noutput : list = [5, 4, 0, -2, -5]",
    "output": "generated_output : list = sort_des([5, -5, 0, -2, 4])",
    "io_inp": [
      5,
      -5,
      0,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, -4, -5, 4, 5]\noutput : list = [-10, -10, -9, -9, -1, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(reverse([-5, -4, -4, -5, 4, 5]),5))))",
    "io_inp": [
      -5,
      -4,
      -4,
      -5,
      4,
      5
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -9,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [-6, -3, 1]",
    "output": "generated_output : list = add_n(reverse(sort_des([-1, -4, 3])),-2)",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      -6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [2, -4, 5, 1, -4]\noutput : list = [0, 6, 18]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(take([2, -4, 5, 1, -4],3),-5),-2)))",
    "io_inp": [
      2,
      -4,
      5,
      1,
      -4
    ],
    "io_out": [
      0,
      6,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(take(input,3),-5),-2)))"
  },
  {
    "input": "input : list = [-3, 3, 2, 5, -5, -5]\noutput : list = [-6, -6, -4, 1, 2, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(reverse([-3, 3, 2, 5, -5, -5]))),3),2)",
    "io_inp": [
      -3,
      3,
      2,
      5,
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -4,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(reverse(input))),3),2)"
  },
  {
    "input": "input : list = [-5, 5, 1, -5, 5, 3]\noutput : list = [5]",
    "output": "generated_output : list = drop(sort_asc(sort_des(sort_des(sort_des([-5, 5, 1, -5, 5, 3])))),5)",
    "io_inp": [
      -5,
      5,
      1,
      -5,
      5,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_des(sort_des(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-3, -5, -1, 1, 5, -4]\noutput : list = [-6, -5, -4, -2, 0, 4]",
    "output": "generated_output : list = add_n(sort_asc([-3, -5, -1, 1, 5, -4]),-1)",
    "io_inp": [
      -3,
      -5,
      -1,
      1,
      5,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-3, -2, -1]),2),-4)",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),2),-4)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [4, 0]",
    "output": "generated_output : list = add_n(take(take(sort_des(add_n([-2, 2],4)),10),5),-2)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(add_n(input,4)),10),5),-2)"
  },
  {
    "input": "input : list = [-3, 5, -5, 1]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take([-3, 5, -5, 1],2)",
    "io_inp": [
      -3,
      5,
      -5,
      1
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 3, -1, 5, -1, -3]\noutput : list = [-140, -110, -80, -80, -20, 10]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sub_n([-5, 3, -1, 5, -1, -3],4)),5),3),-5)",
    "io_inp": [
      -5,
      3,
      -1,
      5,
      -1,
      -3
    ],
    "io_out": [
      -140,
      -110,
      -80,
      -80,
      -20,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sub_n(input,4)),5),3),-5)"
  },
  {
    "input": "input : list = [3, -3, -2, -1]\noutput : list = [-15, -11, -7, 9]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(reverse([3, -3, -2, -1]),4),3)))",
    "io_inp": [
      3,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -15,
      -11,
      -7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(reverse(input),4),3)))"
  },
  {
    "input": "input : list = [1, -2, -3, 4]\noutput : list = [-6, -5, -2, 1]",
    "output": "generated_output : list = sort_asc(add_n([1, -2, -3, 4],-3))",
    "io_inp": [
      1,
      -2,
      -3,
      4
    ],
    "io_out": [
      -6,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-15, -15]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sort_asc([5, 5]),-2),-5)),7)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sort_asc(input),-2),-5)),7)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, -15]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n([1, 5],4)),5),21)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(input,4)),5),21)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = add_n([-1, 1],1)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 3, -2, 2, 2, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take(sort_asc([-4, 3, -2, 2, 2, 1]),1)",
    "io_inp": [
      -4,
      3,
      -2,
      2,
      2,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),1)"
  },
  {
    "input": "input : list = [1, -4, -3, 2]\noutput : list = [-7, -3, 13, 17]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n(sort_asc([1, -4, -3, 2]),-1),-4),3))",
    "io_inp": [
      1,
      -4,
      -3,
      2
    ],
    "io_out": [
      -7,
      -3,
      13,
      17
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(sort_asc(input),-1),-4),3))"
  },
  {
    "input": "input : list = [-2, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(drop([-2, 2, 2],1),-1)),-1),37)",
    "io_inp": [
      -2,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(drop(input,1),-1)),-1),37)"
  },
  {
    "input": "input : list = [3, -1, 5, 5, -2]\noutput : list = [0, 1, 5, 7, 7]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(reverse([3, -1, 5, 5, -2]),2))))",
    "io_inp": [
      3,
      -1,
      5,
      5,
      -2
    ],
    "io_out": [
      0,
      1,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [21, -19]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(drop([-4, -4, 4],1))),-5),-1)",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      21,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(drop(input,1))),-5),-1)"
  },
  {
    "input": "input : list = [-1, 2, -5]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(sort_asc([-1, 2, -5]))),1),2)",
    "io_inp": [
      -1,
      2,
      -5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(sort_asc(input))),1),2)"
  },
  {
    "input": "input : list = [-1, 4, 5, -1, 5]\noutput : list = [5, -20, -25, 5, -25]",
    "output": "generated_output : list = mul_n([-1, 4, 5, -1, 5],-5)",
    "io_inp": [
      -1,
      4,
      5,
      -1,
      5
    ],
    "io_out": [
      5,
      -20,
      -25,
      5,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -3, -4, 5, -4, 0]\noutput : list = [-4, -4, -3, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([2, -3, -4, 5, -4, 0])",
    "io_inp": [
      2,
      -3,
      -4,
      5,
      -4,
      0
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3, 4, 2]\noutput : list = [4, 6, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(sub_n([1, 3, 4, 2],3),3),4),-2))",
    "io_inp": [
      1,
      3,
      4,
      2
    ],
    "io_out": [
      4,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(sub_n(input,3),3),4),-2))"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [11, 13, 15]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(sub_n([-1, 1, 3],-5),-3),4)))",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      11,
      13,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(sub_n(input,-5),-3),4)))"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_asc(take([-5, 0, -5],1)),3)",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),3)"
  },
  {
    "input": "input : list = [-3, 4, 5, -2, 0]\noutput : list = [5, 4, 0, -2, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(reverse([-3, 4, 5, -2, 0])))))",
    "io_inp": [
      -3,
      4,
      5,
      -2,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [-6, 2, -8]",
    "output": "generated_output : list = take(add_n(add_n([-3, 5, -5],1),-4),26)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      -6,
      2,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,1),-4),26)"
  },
  {
    "input": "input : list = [-2, 4, 5, 4, -3, 2]\noutput : list = [-4, 8, 10, 8, -6, 4]",
    "output": "generated_output : list = mul_n(mul_n([-2, 4, 5, 4, -3, 2],-2),-1)",
    "io_inp": [
      -2,
      4,
      5,
      4,
      -3,
      2
    ],
    "io_out": [
      -4,
      8,
      10,
      8,
      -6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),-1)"
  },
  {
    "input": "input : list = [3, 5, -3, -5, -5, -4]\noutput : list = [3, 5, -3, -5]",
    "output": "generated_output : list = take([3, 5, -3, -5, -5, -4],4)",
    "io_inp": [
      3,
      5,
      -3,
      -5,
      -5,
      -4
    ],
    "io_out": [
      3,
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [5, -3, -4]\noutput : list = [-10, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_asc([5, -3, -4]),-2))))",
    "io_inp": [
      5,
      -3,
      -4
    ],
    "io_out": [
      -10,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [-2, 4, 0, 0, -4]\noutput : list = [-8, -4, -4]",
    "output": "generated_output : list = add_n(take(add_n(reverse(drop([-2, 4, 0, 0, -4],2)),-1),33),-3)",
    "io_inp": [
      -2,
      4,
      0,
      0,
      -4
    ],
    "io_out": [
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(drop(input,2)),-1),33),-3)"
  },
  {
    "input": "input : list = [1, -5, 1, 0]\noutput : list = [-5, 1, 0]",
    "output": "generated_output : list = drop([1, -5, 1, 0],1)",
    "io_inp": [
      1,
      -5,
      1,
      0
    ],
    "io_out": [
      -5,
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -2, 4, 5, 4]\noutput : list = [8, -4]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(take([1, -2, 4, 5, 4],2),4)),-1),16)",
    "io_inp": [
      1,
      -2,
      4,
      5,
      4
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(take(input,2),4)),-1),16)"
  },
  {
    "input": "input : list = [3, 3, 2, 2]\noutput : list = [7, 7]",
    "output": "generated_output : list = add_n(take([3, 3, 2, 2],2),4)",
    "io_inp": [
      3,
      3,
      2,
      2
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),4)"
  },
  {
    "input": "input : list = [1, -2, 2, -5]\noutput : list = [-3, -4, -7, -10]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(sort_des([1, -2, 2, -5])),1),17),4)",
    "io_inp": [
      1,
      -2,
      2,
      -5
    ],
    "io_out": [
      -3,
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(sort_des(input)),1),17),4)"
  },
  {
    "input": "input : list = [0, 2, 5, -3]\noutput : list = [2, -1, -3, -6]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(add_n([0, 2, 5, -3],-4),18)),1))",
    "io_inp": [
      0,
      2,
      5,
      -3
    ],
    "io_out": [
      2,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(add_n(input,-4),18)),1))"
  },
  {
    "input": "input : list = [2, -3, -2]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des([2, -3, -2]))",
    "io_inp": [
      2,
      -3,
      -2
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, 1, 1]\noutput : list = [14, 14, 14]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(sub_n([1, 1, 1],5),-3)),-2))",
    "io_inp": [
      1,
      1,
      1
    ],
    "io_out": [
      14,
      14,
      14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(sub_n(input,5),-3)),-2))"
  },
  {
    "input": "input : list = [-3, 5, -1]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sub_n(drop(add_n(sort_des(sub_n([-3, 5, -1],-3)),-3),1),2)",
    "io_inp": [
      -3,
      5,
      -1
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(sort_des(sub_n(input,-3)),-3),1),2)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [16, -24]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(drop([-1, -3, 5],1),-5),-1)))",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      16,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(drop(input,1),-5),-1)))"
  },
  {
    "input": "input : list = [1, -3, -1]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(drop(sort_asc(add_n(drop([1, -3, -1],1),-5)),1))",
    "io_inp": [
      1,
      -3,
      -1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_asc(add_n(drop(input,1),-5)),1))"
  },
  {
    "input": "input : list = [-4, -2, -1, -3, 3, -5]\noutput : list = [-3, -2, -1, 0, 1, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_asc([-4, -2, -1, -3, 3, -5]),-2)),-4))",
    "io_inp": [
      -4,
      -2,
      -1,
      -3,
      3,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_asc(input),-2)),-4))"
  },
  {
    "input": "input : list = [2, 3, -1, 1, -4]\noutput : list = [-17, -8, -2, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(mul_n([2, 3, -1, 1, -4],3),-5))))",
    "io_inp": [
      2,
      3,
      -1,
      1,
      -4
    ],
    "io_out": [
      -17,
      -8,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(mul_n(input,3),-5))))"
  },
  {
    "input": "input : list = [-1, -4, -5, 0, 1]\noutput : list = [1, 0, -5, -4, -1]",
    "output": "generated_output : list = reverse([-1, -4, -5, 0, 1])",
    "io_inp": [
      -1,
      -4,
      -5,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-2, -1, -5],1)))",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [-4, -4, -2]",
    "output": "generated_output : list = take(add_n(take(reverse([-1, -3, -3]),18),-1),21)",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(input),18),-1),21)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-25, 20]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(mul_n([4, -5],5)))))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -25,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [2, -1, 4]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(take([2, -1, 4],1),-5),15),-3),1)",
    "io_inp": [
      2,
      -1,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(take(input,1),-5),15),-3),1)"
  },
  {
    "input": "input : list = [-1, -2, 4, 4]\noutput : list = [-8, -13, 17, 17]",
    "output": "generated_output : list = sub_n(mul_n([-1, -2, 4, 4],5),3)",
    "io_inp": [
      -1,
      -2,
      4,
      4
    ],
    "io_out": [
      -8,
      -13,
      17,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),3)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(sub_n([-3, 1, 3],2),6),-1),2))",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(sub_n(input,2),6),-1),2))"
  },
  {
    "input": "input : list = [4, -1, 5]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(take([4, -1, 5],1),-2))))",
    "io_inp": [
      4,
      -1,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(take(input,1),-2))))"
  },
  {
    "input": "input : list = [0, 1, 1, 4, -5]\noutput : list = [-6, 3, 0, 0, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(reverse([0, 1, 1, 4, -5]),-5)),4))",
    "io_inp": [
      0,
      1,
      1,
      4,
      -5
    ],
    "io_out": [
      -6,
      3,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(reverse(input),-5)),4))"
  },
  {
    "input": "input : list = [2, 4, -2, 1, -3]\noutput : list = [2, 4]",
    "output": "generated_output : list = take([2, 4, -2, 1, -3],2)",
    "io_inp": [
      2,
      4,
      -2,
      1,
      -3
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n([4, 3],-5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 3, -2, 5]\noutput : list = [-2, 3, 5]",
    "output": "generated_output : list = sort_asc(drop([-2, 3, -2, 5],1))",
    "io_inp": [
      -2,
      3,
      -2,
      5
    ],
    "io_out": [
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-2, -1, 5, -3, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take([-2, -1, 5, -3, -1],2))))",
    "io_inp": [
      -2,
      -1,
      5,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(input,2))))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(add_n([5, -2],2)),1),12),-4)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(add_n(input,2)),1),12),-4)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [0, 4]",
    "output": "generated_output : list = mul_n(reverse(add_n([-2, -3],3)),4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,3)),4)"
  },
  {
    "input": "input : list = [0, 4, -4, -5, 2, -3]\noutput : list = [-3, -2, -1, 2, 4, 6]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(reverse([0, 4, -4, -5, 2, -3])),-2),12))",
    "io_inp": [
      0,
      4,
      -4,
      -5,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(reverse(input)),-2),12))"
  },
  {
    "input": "input : list = [0, -3, -5, 3, 0, -2]\noutput : list = [2, -1, -1, -3, -4, -6]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des([0, -3, -5, 3, 0, -2])),-1),14)",
    "io_inp": [
      0,
      -3,
      -5,
      3,
      0,
      -2
    ],
    "io_out": [
      2,
      -1,
      -1,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(input)),-1),14)"
  },
  {
    "input": "input : list = [0, -3, -2]\noutput : list = [-4, -5, -7]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(sort_asc([0, -3, -2]),5),2),-1))",
    "io_inp": [
      0,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(sort_asc(input),5),2),-1))"
  },
  {
    "input": "input : list = [-3, 1, -2, 4]\noutput : list = [24, 4, -56, -116]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(add_n([-3, 1, -2, 4],2),4),-5),-4))",
    "io_inp": [
      -3,
      1,
      -2,
      4
    ],
    "io_out": [
      24,
      4,
      -56,
      -116
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(add_n(input,2),4),-5),-4))"
  },
  {
    "input": "input : list = [2, 0, 0, -1, 3]\noutput : list = [0, -1, 3]",
    "output": "generated_output : list = drop([2, 0, 0, -1, 3],2)",
    "io_inp": [
      2,
      0,
      0,
      -1,
      3
    ],
    "io_out": [
      0,
      -1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 5, 5, 2]\noutput : list = [-9, 11, 23, 23]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc(mul_n([-3, 5, 5, 2],1)),13),4),-3)",
    "io_inp": [
      -3,
      5,
      5,
      2
    ],
    "io_out": [
      -9,
      11,
      23,
      23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(mul_n(input,1)),13),4),-3)"
  },
  {
    "input": "input : list = [2, 4, -2, 0, 2, 3]\noutput : list = [4, 6, 8, 10]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(take([2, 4, -2, 0, 2, 3],4)),2)),4)",
    "io_inp": [
      2,
      4,
      -2,
      0,
      2,
      3
    ],
    "io_out": [
      4,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(take(input,4)),2)),4)"
  },
  {
    "input": "input : list = [-5, 3, -4, 0, -5]\noutput : list = [-100, 60, -80, 0, -100]",
    "output": "generated_output : list = mul_n(mul_n([-5, 3, -4, 0, -5],5),4)",
    "io_inp": [
      -5,
      3,
      -4,
      0,
      -5
    ],
    "io_out": [
      -100,
      60,
      -80,
      0,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,5),4)"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -5, -5],1)",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -5, -1, -5, -4, -3]\noutput : list = [8, 6, 4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(drop([4, -5, -1, -5, -4, -3],3)),-2),2))",
    "io_inp": [
      4,
      -5,
      -1,
      -5,
      -4,
      -3
    ],
    "io_out": [
      8,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(drop(input,3)),-2),2))"
  },
  {
    "input": "input : list = [1, -4, -3, -1, 3, -1]\noutput : list = [3, 1, -1, -1, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(sort_asc([1, -4, -3, -1, 3, -1]),-2))),-2)",
    "io_inp": [
      1,
      -4,
      -3,
      -1,
      3,
      -1
    ],
    "io_out": [
      3,
      1,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(sort_asc(input),-2))),-2)"
  },
  {
    "input": "input : list = [0, -3, 5, 3]\noutput : list = [6, 0, -6, -10]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(mul_n([0, -3, 5, 3],-2))),37))",
    "io_inp": [
      0,
      -3,
      5,
      3
    ],
    "io_out": [
      6,
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(mul_n(input,-2))),37))"
  },
  {
    "input": "input : list = [1, 5, 3, -3]\noutput : list = [24, 8, 0, -8]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(sort_des([1, 5, 3, -3]),-3))),-4)",
    "io_inp": [
      1,
      5,
      3,
      -3
    ],
    "io_out": [
      24,
      8,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(sort_des(input),-3))),-4)"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [9, 27, 36]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(reverse([4, -5, -2])),-3),-4),-3)",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      9,
      27,
      36
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(reverse(input)),-3),-4),-3)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [4, 12]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(sub_n([-4, -2],-1),-4))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(sub_n(input,-1),-4))))"
  },
  {
    "input": "input : list = [4, -2, 2, 4, -1, 5]\noutput : list = [5, 4, 4, 2, -1, -2]",
    "output": "generated_output : list = sort_des([4, -2, 2, 4, -1, 5])",
    "io_inp": [
      4,
      -2,
      2,
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -4, -5, 5]\noutput : list = [8, 8, -10, -12]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(mul_n([5, -4, -5, 5],2)))),-2)",
    "io_inp": [
      5,
      -4,
      -5,
      5
    ],
    "io_out": [
      8,
      8,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(mul_n(input,2)))),-2)"
  },
  {
    "input": "input : list = [3, -5, -3]\noutput : list = [-1, -9, -7]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(reverse([3, -5, -3]),3)),3),-2)",
    "io_inp": [
      3,
      -5,
      -3
    ],
    "io_out": [
      -1,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(reverse(input),3)),3),-2)"
  },
  {
    "input": "input : list = [-3, 1, -5, 3]\noutput : list = [-8, -6, -2, 0]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(reverse([-3, 1, -5, 3])),-3)),16)",
    "io_inp": [
      -3,
      1,
      -5,
      3
    ],
    "io_out": [
      -8,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(reverse(input)),-3)),16)"
  },
  {
    "input": "input : list = [2, 1, 4, -5]\noutput : list = [-10, -5, -20, 25]",
    "output": "generated_output : list = mul_n([2, 1, 4, -5],-5)",
    "io_inp": [
      2,
      1,
      4,
      -5
    ],
    "io_out": [
      -10,
      -5,
      -20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, -5, 3, 4, -2]\noutput : list = [19, 15, 15, -5, -17]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_des([3, -5, 3, 4, -2])),4)),-3)",
    "io_inp": [
      3,
      -5,
      3,
      4,
      -2
    ],
    "io_out": [
      19,
      15,
      15,
      -5,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_des(input)),4)),-3)"
  },
  {
    "input": "input : list = [0, -1, -5, 3, -3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(reverse([0, -1, -5, 3, -3, -2]),2)",
    "io_inp": [
      0,
      -1,
      -5,
      3,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),2)"
  },
  {
    "input": "input : list = [2, -4, 4, 5, -2, 0]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(take([2, -4, 4, 5, -2, 0],1),23))),1)",
    "io_inp": [
      2,
      -4,
      4,
      5,
      -2,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(take(input,1),23))),1)"
  },
  {
    "input": "input : list = [-3, -1, -2, 2, 4]\noutput : list = [0, 3, 6, 15, 21]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(sort_asc([-3, -1, -2, 2, 4]),5),-2),3),30)",
    "io_inp": [
      -3,
      -1,
      -2,
      2,
      4
    ],
    "io_out": [
      0,
      3,
      6,
      15,
      21
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(sort_asc(input),5),-2),3),30)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [-4, -3, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-4, -3, 4]))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 3, -3, 5]\noutput : list = [20, 12, -12, -16]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(reverse([-4, 3, -3, 5]),2),2)))",
    "io_inp": [
      -4,
      3,
      -3,
      5
    ],
    "io_out": [
      20,
      12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(reverse(input),2),2)))"
  },
  {
    "input": "input : list = [-5, -4, 2, 3]\noutput : list = [-5, -4, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([-5, -4, 2, 3])))",
    "io_inp": [
      -5,
      -4,
      2,
      3
    ],
    "io_out": [
      -5,
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [2, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc([0, -1, 1]),-3)",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(take([4, -3, 2],1),-3)",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([4, -4]),-1))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sub_n(drop([0, -4, -2],1),4)",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(take(reverse(reverse(sort_asc([-1, -3]))),7),38)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(sort_asc(input))),7),38)"
  },
  {
    "input": "input : list = [-5, 5, -3, 3, -4]\noutput : list = [-7, -6, -5, 1, 3]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(reverse([-5, 5, -3, 3, -4])),-2)))",
    "io_inp": [
      -5,
      5,
      -3,
      3,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [-3, 3, -1, -5, -2, -2]\noutput : list = [12, -12, 4, 20, 8, 8]",
    "output": "generated_output : list = mul_n([-3, 3, -1, -5, -2, -2],-4)",
    "io_inp": [
      -3,
      3,
      -1,
      -5,
      -2,
      -2
    ],
    "io_out": [
      12,
      -12,
      4,
      20,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-6, -11]",
    "output": "generated_output : list = sub_n(add_n([0, -5],-2),4)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),4)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, 12]",
    "output": "generated_output : list = mul_n(sort_des([0, -3]),-4)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [3, 5, 5, 4, -2]\noutput : list = [-9, -33, -37, -37, -29]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(sub_n([3, 5, 5, 4, -2],-3),2)),-2),5)",
    "io_inp": [
      3,
      5,
      5,
      4,
      -2
    ],
    "io_out": [
      -9,
      -33,
      -37,
      -37,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(sub_n(input,-3),2)),-2),5)"
  },
  {
    "input": "input : list = [-5, 3, 2, 4]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(drop([-5, 3, 2, 4],1)))),3)",
    "io_inp": [
      -5,
      3,
      2,
      4
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(drop(input,1)))),3)"
  },
  {
    "input": "input : list = [-4, -1, -2, 2, -2, -4]\noutput : list = [2, -1, -2, -2, -4, -4]",
    "output": "generated_output : list = sort_des([-4, -1, -2, 2, -2, -4])",
    "io_inp": [
      -4,
      -1,
      -2,
      2,
      -2,
      -4
    ],
    "io_out": [
      2,
      -1,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, -4]\noutput : list = [-4, -2, -2]",
    "output": "generated_output : list = reverse([-2, -2, -4])",
    "io_inp": [
      -2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_des([-2, 0, 0])))))",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, 1, -5, -4]\noutput : list = [-5, -4, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(sub_n([-1, 1, -5, -4],2),2),27)))",
    "io_inp": [
      -1,
      1,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(sub_n(input,2),2),27)))"
  },
  {
    "input": "input : list = [4, 5, 5]\noutput : list = [4, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([4, 5, 5],-2)),3)",
    "io_inp": [
      4,
      5,
      5
    ],
    "io_out": [
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-2)),3)"
  },
  {
    "input": "input : list = [1, 5, -5, 5, -1, 1]\noutput : list = [-5, -1, 1, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([1, 5, -5, 5, -1, 1])",
    "io_inp": [
      1,
      5,
      -5,
      5,
      -1,
      1
    ],
    "io_out": [
      -5,
      -1,
      1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [8, 3]",
    "output": "generated_output : list = add_n(reverse([-2, 3]),5)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      8,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = take(sub_n([-5, 2],-2),11)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-2),11)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [22, -18]",
    "output": "generated_output : list = sub_n(sort_des(take(take(mul_n([5, -5],4),14),3)),-2)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      22,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(mul_n(input,4),14),3)),-2)"
  },
  {
    "input": "input : list = [2, -4, -3, -3]\noutput : list = [-4, -3, -3, 2]",
    "output": "generated_output : list = sort_asc([2, -4, -3, -3])",
    "io_inp": [
      2,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -3, 3]\noutput : list = [373, -2, 498, -252]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(mul_n([-2, 1, -3, 3],-5),5),5),5),2)",
    "io_inp": [
      -2,
      1,
      -3,
      3
    ],
    "io_out": [
      373,
      -2,
      498,
      -252
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(mul_n(input,-5),5),5),5),2)"
  },
  {
    "input": "input : list = [-1, -3, 1, 1, -2, -2]\noutput : list = [0, 1, 1, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc([-1, -3, 1, 1, -2, -2]),3),7))",
    "io_inp": [
      -1,
      -3,
      1,
      1,
      -2,
      -2
    ],
    "io_out": [
      0,
      1,
      1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(input),3),7))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-19, -11]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc([1, 3]),-5),-2),4),-5)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -19,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc(input),-5),-2),4),-5)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(sort_des([5, -5]))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -3, -1, 4, 4, 5]\noutput : list = [4, 0, -10, -10, -10, -12]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(reverse([4, -3, -1, 4, 4, 5]),-2),1)),1)",
    "io_inp": [
      4,
      -3,
      -1,
      4,
      4,
      5
    ],
    "io_out": [
      4,
      0,
      -10,
      -10,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(reverse(input),-2),1)),1)"
  },
  {
    "input": "input : list = [-5, 3, 0, -2, -4, 1]\noutput : list = [12, 4, 0, -8, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(reverse([-5, 3, 0, -2, -4, 1]))),4))",
    "io_inp": [
      -5,
      3,
      0,
      -2,
      -4,
      1
    ],
    "io_out": [
      12,
      4,
      0,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(reverse(input))),4))"
  },
  {
    "input": "input : list = [2, -3, 2, 1]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse(sort_des(take([2, -3, 2, 1],2)))",
    "io_inp": [
      2,
      -3,
      2,
      1
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [0, 5, 5, -2, -3]\noutput : list = [1, 1, -4, -6, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(sub_n([0, 5, 5, -2, -3],-1),-2),3)))",
    "io_inp": [
      0,
      5,
      5,
      -2,
      -3
    ],
    "io_out": [
      1,
      1,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(sub_n(input,-1),-2),3)))"
  },
  {
    "input": "input : list = [0, 0, 4, 4, 1]\noutput : list = [5, 5, 6, 9, 9]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(reverse([0, 0, 4, 4, 1])),-5),25))",
    "io_inp": [
      0,
      0,
      4,
      4,
      1
    ],
    "io_out": [
      5,
      5,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(reverse(input)),-5),25))"
  },
  {
    "input": "input : list = [-3, -1, -4, -4, 5]\noutput : list = [6, -3, -3, 0, -2]",
    "output": "generated_output : list = sub_n(reverse([-3, -1, -4, -4, 5]),-1)",
    "io_inp": [
      -3,
      -1,
      -4,
      -4,
      5
    ],
    "io_out": [
      6,
      -3,
      -3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [-3, -4, 2]",
    "output": "generated_output : list = reverse([2, -4, -3])",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, 1, 3, 3]\noutput : list = [-4, -4, -2, -5, 4]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-5, 4, 1, 3, 3]),-1),1)",
    "io_inp": [
      -5,
      4,
      1,
      3,
      3
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),-1),1)"
  },
  {
    "input": "input : list = [3, 2, 5, -5]\noutput : list = [7, 6, 9, -1]",
    "output": "generated_output : list = add_n([3, 2, 5, -5],4)",
    "io_inp": [
      3,
      2,
      5,
      -5
    ],
    "io_out": [
      7,
      6,
      9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(mul_n([0, -2],-2))),-5))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(mul_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [1, -4, -2, -1]\noutput : list = [7, 5, 4, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_asc([1, -4, -2, -1]))),-3),-3)",
    "io_inp": [
      1,
      -4,
      -2,
      -1
    ],
    "io_out": [
      7,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(sort_asc(input))),-3),-3)"
  },
  {
    "input": "input : list = [3, 2, -1, 1, -2]\noutput : list = [4, 3, 2, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse([3, 2, -1, 1, -2]),1)))",
    "io_inp": [
      3,
      2,
      -1,
      1,
      -2
    ],
    "io_out": [
      4,
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(input),1)))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [0, 20]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(mul_n([-3, 1],-1),-5)),-5),-1)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(mul_n(input,-1),-5)),-5),-1)"
  },
  {
    "input": "input : list = [1, -1, 2, -1]\noutput : list = [2, 1, -1, -1]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([1, -1, 2, -1])),1)",
    "io_inp": [
      1,
      -1,
      2,
      -1
    ],
    "io_out": [
      2,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),1)"
  },
  {
    "input": "input : list = [-4, -1, 5, 3, -4, -3]\noutput : list = [-1, 2]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(take([-4, -1, 5, 3, -4, -3],3),2)),-3),1)",
    "io_inp": [
      -4,
      -1,
      5,
      3,
      -4,
      -3
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(take(input,3),2)),-3),1)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse([3, 5, -1]),-1))",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [0, 0, 5, 2]\noutput : list = [-100]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(sort_des([0, 0, 5, 2]),1),5),-4))",
    "io_inp": [
      0,
      0,
      5,
      2
    ],
    "io_out": [
      -100
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(sort_des(input),1),5),-4))"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [3, 2, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n([-3, 4, 5],2)),4)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,2)),4)"
  },
  {
    "input": "input : list = [-1, -3, 3, 4, -5]\noutput : list = [14, 13, 9, 7, 5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(add_n([-1, -3, 3, 4, -5],3),2))),5)",
    "io_inp": [
      -1,
      -3,
      3,
      4,
      -5
    ],
    "io_out": [
      14,
      13,
      9,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(add_n(input,3),2))),5)"
  },
  {
    "input": "input : list = [0, 1, 3]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = take(reverse([0, 1, 3]),11)",
    "io_inp": [
      0,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),11)"
  },
  {
    "input": "input : list = [5, -5, 2, -1, 4, -5]\noutput : list = [5, 4, 2, -1, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des([5, -5, 2, -1, 4, -5]))))",
    "io_inp": [
      5,
      -5,
      2,
      -1,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      2,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [5, 0, -2, -1, -4, -2]\noutput : list = [-8, -16, -4, -8, 0, 20]",
    "output": "generated_output : list = reverse(mul_n([5, 0, -2, -1, -4, -2],4))",
    "io_inp": [
      5,
      0,
      -2,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -16,
      -4,
      -8,
      0,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [-4, 4, -5]\noutput : list = [-1, 0, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(sub_n([-4, 4, -5],-5),15))),-1)",
    "io_inp": [
      -4,
      4,
      -5
    ],
    "io_out": [
      -1,
      0,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(sub_n(input,-5),15))),-1)"
  },
  {
    "input": "input : list = [-5, -4, 2, 5]\noutput : list = [-6, -5, 1, 4]",
    "output": "generated_output : list = add_n([-5, -4, 2, 5],-1)",
    "io_inp": [
      -5,
      -4,
      2,
      5
    ],
    "io_out": [
      -6,
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-12, -18]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n(mul_n([-3, -4],3),3),2)))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -12,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(mul_n(input,3),3),2)))"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [2, 8, 4]",
    "output": "generated_output : list = mul_n([1, 4, 2],2)",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      2,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [-10, 20, 25]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(mul_n([-2, 4, 5],5)))))",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      -10,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [1, 1, 1, 2]\noutput : list = [7, 7, 7]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n([1, 1, 1, 2],1),5),3),2)",
    "io_inp": [
      1,
      1,
      1,
      2
    ],
    "io_out": [
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(input,1),5),3),2)"
  },
  {
    "input": "input : list = [3, -2, 3, 1, 1, 5]\noutput : list = [-3, -7]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(drop([3, -2, 3, 1, 1, 5],4),5),-1),-2))",
    "io_inp": [
      3,
      -2,
      3,
      1,
      1,
      5
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(drop(input,4),5),-1),-2))"
  },
  {
    "input": "input : list = [-4, 0, -1, -4, -3, -4]\noutput : list = [-4, -3, -4]",
    "output": "generated_output : list = drop([-4, 0, -1, -4, -3, -4],3)",
    "io_inp": [
      -4,
      0,
      -1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, -4, -5, 1, -2]\noutput : list = [20, 4, -8, -16, -20]",
    "output": "generated_output : list = take(take(mul_n(sort_des(sort_des([5, -4, -5, 1, -2])),4),43),27)",
    "io_inp": [
      5,
      -4,
      -5,
      1,
      -2
    ],
    "io_out": [
      20,
      4,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(sort_des(input)),4),43),27)"
  },
  {
    "input": "input : list = [1, -4, -5, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(take([1, -4, -5, 1],2),-4),9),-1)",
    "io_inp": [
      1,
      -4,
      -5,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(input,2),-4),9),-1)"
  },
  {
    "input": "input : list = [-3, -3, 4, 2, 1, -1]\noutput : list = [1, -1, -2, -4, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(sort_asc([-3, -3, 4, 2, 1, -1])))),-3)",
    "io_inp": [
      -3,
      -3,
      4,
      2,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -2,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(sort_asc(input)))),-3)"
  },
  {
    "input": "input : list = [-1, 4, -2, 3]\noutput : list = [1, -4, 2, -3]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n([-1, 4, -2, 3],-1),3),21))",
    "io_inp": [
      -1,
      4,
      -2,
      3
    ],
    "io_out": [
      1,
      -4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(input,-1),3),21))"
  },
  {
    "input": "input : list = [5, -2, -2, 2, -5]\noutput : list = [10, 7, 3, 3, 0]",
    "output": "generated_output : list = add_n(add_n(sort_des([5, -2, -2, 2, -5]),1),4)",
    "io_inp": [
      5,
      -2,
      -2,
      2,
      -5
    ],
    "io_out": [
      10,
      7,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),1),4)"
  },
  {
    "input": "input : list = [1, -5, -2, -3, 5]\noutput : list = [2, 4, 5, 8, 12]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n([1, -5, -2, -3, 5],4)),-3)))",
    "io_inp": [
      1,
      -5,
      -2,
      -3,
      5
    ],
    "io_out": [
      2,
      4,
      5,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n(input,4)),-3)))"
  },
  {
    "input": "input : list = [-1, -5, 3, -5, -4]\noutput : list = [15]",
    "output": "generated_output : list = drop(reverse(sub_n(mul_n(add_n([-1, -5, 3, -5, -4],3),5),-5)),4)",
    "io_inp": [
      -1,
      -5,
      3,
      -5,
      -4
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = drop(reverse(sub_n(mul_n(add_n(input,3),5),-5)),4)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n(take(mul_n(sort_des(add_n([5, 4],-1)),1),11),-5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_des(add_n(input,-1)),1),11),-5)"
  },
  {
    "input": "input : list = [4, 2, -1, -2, -4]\noutput : list = [3, 9, 12, 21, 27]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(add_n([4, 2, -1, -2, -4],5),3))))",
    "io_inp": [
      4,
      2,
      -1,
      -2,
      -4
    ],
    "io_out": [
      3,
      9,
      12,
      21,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(add_n(input,5),3))))"
  },
  {
    "input": "input : list = [-3, 5, 1, -5, 1]\noutput : list = [10, -50, 10, 50, -30]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(sub_n([-3, 5, 1, -5, 1],2)),2),-5),-2)",
    "io_inp": [
      -3,
      5,
      1,
      -5,
      1
    ],
    "io_out": [
      10,
      -50,
      10,
      50,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(sub_n(input,2)),2),-5),-2)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(drop([3, 0, 1],1),-2),2)))",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(drop(input,1),-2),2)))"
  },
  {
    "input": "input : list = [-4, 0, 4]\noutput : list = [-12, 0, 12]",
    "output": "generated_output : list = take(sort_asc(mul_n([-4, 0, 4],-3)),28)",
    "io_inp": [
      -4,
      0,
      4
    ],
    "io_out": [
      -12,
      0,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-3)),28)"
  },
  {
    "input": "input : list = [4, -2, 0, -3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sub_n(take(drop(sort_des([4, -2, 0, -3]),3),21),-3))",
    "io_inp": [
      4,
      -2,
      0,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(drop(sort_des(input),3),21),-3))"
  },
  {
    "input": "input : list = [2, 1, -4, 0]\noutput : list = [-4, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sort_des([2, 1, -4, 0])))))",
    "io_inp": [
      2,
      1,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, -5, 5, 4]\noutput : list = [-6, 3, 3, 4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_asc([4, -5, 5, 4]),-5),-5),-1),2)",
    "io_inp": [
      4,
      -5,
      5,
      4
    ],
    "io_out": [
      -6,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sort_asc(input),-5),-5),-1),2)"
  },
  {
    "input": "input : list = [3, 0, -3, -2, -2]\noutput : list = [-6, -9, -12, -11, -11]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(sub_n([3, 0, -3, -2, -2],1),-4),3),1),1)",
    "io_inp": [
      3,
      0,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -9,
      -12,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(sub_n(input,1),-4),3),1),1)"
  },
  {
    "input": "input : list = [-2, 5, -2, 4, -2, -2]\noutput : list = [2, 2, 2, 2, 8, 9]",
    "output": "generated_output : list = sub_n(sort_asc([-2, 5, -2, 4, -2, -2]),-4)",
    "io_inp": [
      -2,
      5,
      -2,
      4,
      -2,
      -2
    ],
    "io_out": [
      2,
      2,
      2,
      2,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-5, -5, 3]\noutput : list = [-10, -10, -2]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(reverse([-5, -5, 3])),13)),5)",
    "io_inp": [
      -5,
      -5,
      3
    ],
    "io_out": [
      -10,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(reverse(input)),13)),5)"
  },
  {
    "input": "input : list = [-1, 5, 1, 3, -3, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(sort_asc([-1, 5, 1, 3, -3, -4])))),1)",
    "io_inp": [
      -1,
      5,
      1,
      3,
      -3,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = sort_asc([4, 1, -1])",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [0, -7, -4]",
    "output": "generated_output : list = sub_n(reverse([0, -3, 4]),4)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      0,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [-3, -4]",
    "output": "generated_output : list = take(add_n(sort_des(take(drop([-2, -1, -2],1),16)),-2),20)",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(drop(input,1),16)),-2),20)"
  },
  {
    "input": "input : list = [-5, 5, -3, 0, -5]\noutput : list = [-5, -5, -3, 0, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des([-5, 5, -3, 0, -5])))",
    "io_inp": [
      -5,
      5,
      -3,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-6, -10]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(reverse([0, -2]),-1),-5)),2)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(reverse(input),-1),-5)),2)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [8, -20]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(mul_n([-3, 4],4))),5),-3)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      8,
      -20
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(mul_n(input,4))),5),-3)"
  },
  {
    "input": "input : list = [1, 0, -5, -2]\noutput : list = [5, 0]",
    "output": "generated_output : list = mul_n(take([1, 0, -5, -2],2),5)",
    "io_inp": [
      1,
      0,
      -5,
      -2
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),5)"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [5, 0, 0]",
    "output": "generated_output : list = sort_des([0, 0, 5])",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-8, -2]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sub_n([-5, -2],-2)),2),-2))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sub_n(input,-2)),2),-2))"
  },
  {
    "input": "input : list = [3, 1, -4, 2]\noutput : list = [-6, 24, -1, -11]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(mul_n([3, 1, -4, 2],1),1)),-5),4)",
    "io_inp": [
      3,
      1,
      -4,
      2
    ],
    "io_out": [
      -6,
      24,
      -1,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(mul_n(input,1),1)),-5),4)"
  },
  {
    "input": "input : list = [5, -3, 1, 3, 0]\noutput : list = [-3, 1, 3, 0]",
    "output": "generated_output : list = drop([5, -3, 1, 3, 0],1)",
    "io_inp": [
      5,
      -3,
      1,
      3,
      0
    ],
    "io_out": [
      -3,
      1,
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse([4, 3])),-3))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(input)),-3))"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(drop([5, 3, -1],1)),-1)),30)",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(drop(input,1)),-1)),30)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-6, -5, -4]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n([1, 0, -1],2)),-3))",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(input,2)),-3))"
  },
  {
    "input": "input : list = [-5, 0, 5, 0, -4, -5]\noutput : list = [7, -3, -3, -11, -13, -13]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(mul_n([-5, 0, 5, 0, -4, -5],2)),-3),1),47)",
    "io_inp": [
      -5,
      0,
      5,
      0,
      -4,
      -5
    ],
    "io_out": [
      7,
      -3,
      -3,
      -11,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(mul_n(input,2)),-3),1),47)"
  },
  {
    "input": "input : list = [-1, -5, 5, 3, -2, 3]\noutput : list = [5, 3, 3, -1, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-1, -5, 5, 3, -2, 3])))",
    "io_inp": [
      -1,
      -5,
      5,
      3,
      -2,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-4, 0, -1, 1, 3, 4]\noutput : list = [9, 8, 6, 5, 4, 1]",
    "output": "generated_output : list = sort_des(sub_n([-4, 0, -1, 1, 3, 4],-5))",
    "io_inp": [
      -4,
      0,
      -1,
      1,
      3,
      4
    ],
    "io_out": [
      9,
      8,
      6,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-1, 4, -3, -2]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(take([-1, 4, -3, -2],1)),2)),-3)",
    "io_inp": [
      -1,
      4,
      -3,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(take(input,1)),2)),-3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(sub_n([4, -2],4)))))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = take(sub_n(take(sub_n(sort_des([-4, 3]),-4),24),4),39)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(sort_des(input),-4),24),4),39)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [9, -6]",
    "output": "generated_output : list = mul_n([3, -2],3)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [4, -1, -5, 5, 2]\noutput : list = [30, 24, 12, -6, -30]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(add_n([4, -1, -5, 5, 2],1),1)),-2),-3)",
    "io_inp": [
      4,
      -1,
      -5,
      5,
      2
    ],
    "io_out": [
      30,
      24,
      12,
      -6,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(add_n(input,1),1)),-2),-3)"
  },
  {
    "input": "input : list = [-1, 3, 2, 2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(drop([-1, 3, 2, 2],1),-2),2)),2)",
    "io_inp": [
      -1,
      3,
      2,
      2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(drop(input,1),-2),2)),2)"
  },
  {
    "input": "input : list = [-1, 2, -1, -2]\noutput : list = [-1, -4, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_des([-1, 2, -1, -2])),-3)))",
    "io_inp": [
      -1,
      2,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = reverse(sub_n([-1, 1, 3],4))",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [5, 5, -4, 5]\noutput : list = [2, -7]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(drop([5, 5, -4, 5],2),-3))))",
    "io_inp": [
      5,
      5,
      -4,
      5
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(drop(input,2),-3))))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [7, 10]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(add_n([-2, 1],1))),-5),-3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(add_n(input,1))),-5),-3)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [11, -21]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(mul_n([2, -2],-4),-2),21),5))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      11,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(mul_n(input,-4),-2),21),5))"
  },
  {
    "input": "input : list = [-5, 1, -5, 0, 3]\noutput : list = [27, 27, 12, 9, 3]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n(sort_des([-5, 1, -5, 0, 3]),-1),-4),3))",
    "io_inp": [
      -5,
      1,
      -5,
      0,
      3
    ],
    "io_out": [
      27,
      27,
      12,
      9,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(sort_des(input),-1),-4),3))"
  },
  {
    "input": "input : list = [2, -5, -2, -5]\noutput : list = [0]",
    "output": "generated_output : list = drop(add_n([2, -5, -2, -5],5),3)",
    "io_inp": [
      2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(add_n(input,5),3)"
  },
  {
    "input": "input : list = [5, -4, 1, 1, -1]\noutput : list = [4, 0, 0, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(sub_n([5, -4, 1, 1, -1],1),19),12)))",
    "io_inp": [
      5,
      -4,
      1,
      1,
      -1
    ],
    "io_out": [
      4,
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(sub_n(input,1),19),12)))"
  },
  {
    "input": "input : list = [2, -2, 0, -1, 1, 5]\noutput : list = [8]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(take([2, -2, 0, -1, 1, 5],1),-3),-4),1),4)",
    "io_inp": [
      2,
      -2,
      0,
      -1,
      1,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(take(input,1),-3),-4),1),4)"
  },
  {
    "input": "input : list = [4, -1, 3, -5, -4, -2]\noutput : list = [-8, 2, -6, 10, 8, 4]",
    "output": "generated_output : list = reverse(reverse(take(mul_n([4, -1, 3, -5, -4, -2],-2),28)))",
    "io_inp": [
      4,
      -1,
      3,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -8,
      2,
      -6,
      10,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(input,-2),28)))"
  },
  {
    "input": "input : list = [-1, 2, 2, 3, 0, 1]\noutput : list = [2, 1, 1, 0, -1, -2]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(add_n([-1, 2, 2, 3, 0, 1],-3),-2)),4),49)",
    "io_inp": [
      -1,
      2,
      2,
      3,
      0,
      1
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(add_n(input,-3),-2)),4),49)"
  },
  {
    "input": "input : list = [1, 3, -4, -1, 0]\noutput : list = [-15, -20, -35, 0, -10]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(sub_n([1, 3, -4, -1, 0],4),3),2)),5)",
    "io_inp": [
      1,
      3,
      -4,
      -1,
      0
    ],
    "io_out": [
      -15,
      -20,
      -35,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(sub_n(input,4),3),2)),5)"
  },
  {
    "input": "input : list = [1, 0, -3, -3]\noutput : list = [-2, -2, 4, 6]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse(sort_des([1, 0, -3, -3]))),-2),2)",
    "io_inp": [
      1,
      0,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(sort_des(input))),-2),2)"
  },
  {
    "input": "input : list = [2, -4, 1, -2, -5, 1]\noutput : list = [27, 22, 12, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(drop(mul_n([2, -4, 1, -2, -5, 1],-5),1),11),-2))",
    "io_inp": [
      2,
      -4,
      1,
      -2,
      -5,
      1
    ],
    "io_out": [
      27,
      22,
      12,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(drop(mul_n(input,-5),1),11),-2))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-36, -27]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc([3, 4]))),-3),3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -36,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc(input))),-3),3)"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [-4, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, -4])",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, 3, 2]\noutput : list = [-14]",
    "output": "generated_output : list = take(take(mul_n(add_n(take([3, -2, 3, 2],1),4),-2),29),43)",
    "io_inp": [
      3,
      -2,
      3,
      2
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(take(input,1),4),-2),29),43)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-8, -7]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse([-2, -3]),5)))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(input),5)))"
  },
  {
    "input": "input : list = [2, -3, 1, -1, -2, -4]\noutput : list = [-4, -2, 2, 4, 6, 8]",
    "output": "generated_output : list = reverse(take(mul_n(take(sort_asc([2, -3, 1, -1, -2, -4]),29),-2),7))",
    "io_inp": [
      2,
      -3,
      1,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      2,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(sort_asc(input),29),-2),7))"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [0, -6, -12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_asc([0, -4, -2]),-4),-3)))",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      0,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_asc(input),-4),-3)))"
  },
  {
    "input": "input : list = [-2, 0, -1, -4, 3]\noutput : list = [3, -4, -1, 0, -2]",
    "output": "generated_output : list = take(take(reverse([-2, 0, -1, -4, 3]),23),5)",
    "io_inp": [
      -2,
      0,
      -1,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      -1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),23),5)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sort_asc([-4, 0]),2)),-5))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sort_asc(input),2)),-5))"
  },
  {
    "input": "input : list = [2, -2, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(take([2, -2, 2, -2],2),17)),-2),2)",
    "io_inp": [
      2,
      -2,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(take(input,2),17)),-2),2)"
  },
  {
    "input": "input : list = [3, 0, 1, 5]\noutput : list = [-3, -5, -7, -8]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(sort_des([3, 0, 1, 5]),-3),3),23),-2)",
    "io_inp": [
      3,
      0,
      1,
      5
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(sort_des(input),-3),3),23),-2)"
  },
  {
    "input": "input : list = [-1, 4, 1, 3]\noutput : list = [3, 0, 2]",
    "output": "generated_output : list = drop(add_n(sub_n(mul_n(sub_n([-1, 4, 1, 3],-5),1),2),-4),1)",
    "io_inp": [
      -1,
      4,
      1,
      3
    ],
    "io_out": [
      3,
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(mul_n(sub_n(input,-5),1),2),-4),1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-18, 27]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(mul_n([4, -5],-5),-2))))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -18,
      27
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(mul_n(input,-5),-2))))"
  },
  {
    "input": "input : list = [5, -2, 5, -3, -1]\noutput : list = [-4, -12, 20, -8, 20]",
    "output": "generated_output : list = mul_n(reverse([5, -2, 5, -3, -1]),4)",
    "io_inp": [
      5,
      -2,
      5,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -12,
      20,
      -8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [-5, 7, 9]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(add_n([4, 3, -3],-1),2)),12),3)",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      -5,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(add_n(input,-1),2)),12),3)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-42, -54, -42]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([-2, -4, -2],5),2),3)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -42,
      -54,
      -42
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,5),2),3)"
  },
  {
    "input": "input : list = [-4, 4, -1, 4]\noutput : list = [4, -1, 4, -4]",
    "output": "generated_output : list = reverse([-4, 4, -1, 4])",
    "io_inp": [
      -4,
      4,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, 2, -3, 0, 4]\noutput : list = [4, 3, 2, 0, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(drop([3, 3, 2, -3, 0, 4],1)))))",
    "io_inp": [
      3,
      3,
      2,
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [-3, 5, 0, -5, 1]\noutput : list = [5, 1, 0, -5]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(drop([-3, 5, 0, -5, 1],1)),22)))",
    "io_inp": [
      -3,
      5,
      0,
      -5,
      1
    ],
    "io_out": [
      5,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(drop(input,1)),22)))"
  },
  {
    "input": "input : list = [-4, -2, 3, 4, -4]\noutput : list = [-9, -7, -2, -1, -9]",
    "output": "generated_output : list = sub_n([-4, -2, 3, 4, -4],5)",
    "io_inp": [
      -4,
      -2,
      3,
      4,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -2,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [12, 84, 96]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sub_n([-2, 5, 4],-3)),3)),4)",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      12,
      84,
      96
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sub_n(input,-3)),3)),4)"
  },
  {
    "input": "input : list = [-1, 4, 3]\noutput : list = [21, 17]",
    "output": "generated_output : list = sub_n(mul_n(drop([-1, 4, 3],1),4),-5)",
    "io_inp": [
      -1,
      4,
      3
    ],
    "io_out": [
      21,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,1),4),-5)"
  },
  {
    "input": "input : list = [4, 5, -3, 0, 4]\noutput : list = [100, 80, 80, 0, -60]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(sort_asc([4, 5, -3, 0, 4])),5),19),4)",
    "io_inp": [
      4,
      5,
      -3,
      0,
      4
    ],
    "io_out": [
      100,
      80,
      80,
      0,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(sort_asc(input)),5),19),4)"
  },
  {
    "input": "input : list = [4, 2, 1, -2]\noutput : list = [0, 10, 15, 30]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(sub_n([4, 2, 1, -2],-1),-5))),-5)",
    "io_inp": [
      4,
      2,
      1,
      -2
    ],
    "io_out": [
      0,
      10,
      15,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(sub_n(input,-1),-5))),-5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des([-5, -4]),3),1))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(input),3),1))"
  },
  {
    "input": "input : list = [3, -4, -3, -2, -3]\noutput : list = [7, 0, 1, 2, 1]",
    "output": "generated_output : list = add_n([3, -4, -3, -2, -3],4)",
    "io_inp": [
      3,
      -4,
      -3,
      -2,
      -3
    ],
    "io_out": [
      7,
      0,
      1,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, 1, -3, 1]\noutput : list = [1, 1, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n([-4, 1, -3, 1],1))),-1)",
    "io_inp": [
      -4,
      1,
      -3,
      1
    ],
    "io_out": [
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(input,1))),-1)"
  },
  {
    "input": "input : list = [-1, -5, 2, 5, 1, 2]\noutput : list = [-2, 2, 4, 5, 5, 8]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(add_n([-1, -5, 2, 5, 1, 2],2)),1)),1)",
    "io_inp": [
      -1,
      -5,
      2,
      5,
      1,
      2
    ],
    "io_out": [
      -2,
      2,
      4,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(add_n(input,2)),1)),1)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [15, 15]",
    "output": "generated_output : list = mul_n([5, 5],3)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, 4, -5, 3]\noutput : list = [-3, 6]",
    "output": "generated_output : list = drop(reverse(sub_n(sub_n(drop([1, 4, -5, 3],1),-4),2)),1)",
    "io_inp": [
      1,
      4,
      -5,
      3
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = drop(reverse(sub_n(sub_n(drop(input,1),-4),2)),1)"
  },
  {
    "input": "input : list = [5, -1, -4, 3, 0, 1]\noutput : list = [1, 4, 5, 6, 8, 10]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n([5, -1, -4, 3, 0, 1],1),2),-3))",
    "io_inp": [
      5,
      -1,
      -4,
      3,
      0,
      1
    ],
    "io_out": [
      1,
      4,
      5,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(input,1),2),-3))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des([-4, -4])",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, -3, 1]\noutput : list = [4, 1, -1, -3]",
    "output": "generated_output : list = sort_des(reverse([4, -1, -3, 1]))",
    "io_inp": [
      4,
      -1,
      -3,
      1
    ],
    "io_out": [
      4,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -4, -2, -4, -1]\noutput : list = [-7, -5, 1]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(take([4, -4, -2, -4, -1],3)),3),42))",
    "io_inp": [
      4,
      -4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(take(input,3)),3),42))"
  },
  {
    "input": "input : list = [5, -1, 0, -1, 3, 1]\noutput : list = [5, 5, 3, 1, -3, -7]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_des([5, -1, 0, -1, 3, 1])),-2),3))",
    "io_inp": [
      5,
      -1,
      0,
      -1,
      3,
      1
    ],
    "io_out": [
      5,
      5,
      3,
      1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_des(input)),-2),3))"
  },
  {
    "input": "input : list = [-5, -3, 3, 1, -1, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take(add_n(add_n([-5, -3, 3, 1, -1, 5],-1),4),1)",
    "io_inp": [
      -5,
      -3,
      3,
      1,
      -1,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,-1),4),1)"
  },
  {
    "input": "input : list = [4, -1, -3, 2, -3]\noutput : list = [5, 3, 0, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_asc([4, -1, -3, 2, -3]),1))))",
    "io_inp": [
      4,
      -1,
      -3,
      2,
      -3
    ],
    "io_out": [
      5,
      3,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [0, -5, 1, 1, -4, 2]\noutput : list = [-5, -4, 0, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(reverse([0, -5, 1, 1, -4, 2])))))",
    "io_inp": [
      0,
      -5,
      1,
      1,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4,
      0,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, -4, 0, 2, 1, -2]\noutput : list = [2, -10, -14, -6, 10]",
    "output": "generated_output : list = mul_n(reverse(add_n(drop(mul_n([-3, -4, 0, 2, 1, -2],-2),1),-3)),2)",
    "io_inp": [
      -3,
      -4,
      0,
      2,
      1,
      -2
    ],
    "io_out": [
      2,
      -10,
      -14,
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(drop(mul_n(input,-2),1),-3)),2)"
  },
  {
    "input": "input : list = [-4, -4, -2, -4]\noutput : list = [-4, -2, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, -2, -4])",
    "io_inp": [
      -4,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 1, -1, 5]\noutput : list = [5, -1, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, -1, 5])",
    "io_inp": [
      4,
      1,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, 4, -5, 3]\noutput : list = [-79, -15, 33, 49, 65]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(mul_n([2, -1, 4, -5, 3],-4)),-4)),-1)",
    "io_inp": [
      2,
      -1,
      4,
      -5,
      3
    ],
    "io_out": [
      -79,
      -15,
      33,
      49,
      65
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(mul_n(input,-4)),-4)),-1)"
  },
  {
    "input": "input : list = [3, -2, 3, 4]\noutput : list = [4, 3, -2, 3]",
    "output": "generated_output : list = reverse([3, -2, 3, 4])",
    "io_inp": [
      3,
      -2,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -5, -4, -5]\noutput : list = [-25, -25, -20, 20, 25]",
    "output": "generated_output : list = take(mul_n(sort_asc([4, 5, -5, -4, -5]),5),31)",
    "io_inp": [
      4,
      5,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -25,
      -25,
      -20,
      20,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),5),31)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([0, 4],5)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,5)))"
  },
  {
    "input": "input : list = [-5, -5, 0, 0]\noutput : list = [-40, -40, -20, -20]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(sort_des([-5, -5, 0, 0]),5)),35),4)",
    "io_inp": [
      -5,
      -5,
      0,
      0
    ],
    "io_out": [
      -40,
      -40,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(sort_des(input),5)),35),4)"
  },
  {
    "input": "input : list = [3, 4, -4]\noutput : list = [0, 8, 7]",
    "output": "generated_output : list = add_n(mul_n(reverse([3, 4, -4]),1),4)",
    "io_inp": [
      3,
      4,
      -4
    ],
    "io_out": [
      0,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),1),4)"
  },
  {
    "input": "input : list = [-5, 2, 5, -3, -2, -2]\noutput : list = [5, 2, -2, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-5, 2, 5, -3, -2, -2])",
    "io_inp": [
      -5,
      2,
      5,
      -3,
      -2,
      -2
    ],
    "io_out": [
      5,
      2,
      -2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des([-3, -4]),-4)))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(input),-4)))"
  },
  {
    "input": "input : list = [-4, -3, -4]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sort_des([-4, -3, -4]),-1),4)))",
    "io_inp": [
      -4,
      -3,
      -4
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sort_des(input),-1),4)))"
  },
  {
    "input": "input : list = [1, 2, 2, 3]\noutput : list = [-1, -2, -2, -3]",
    "output": "generated_output : list = mul_n([1, 2, 2, 3],-1)",
    "io_inp": [
      1,
      2,
      2,
      3
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, -5, -2, 4, 2]\noutput : list = [-1, -3, -5, -7, -10]",
    "output": "generated_output : list = sub_n(sort_des([0, -5, -2, 4, 2]),5)",
    "io_inp": [
      0,
      -5,
      -2,
      4,
      2
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 5, -5],1)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -5, 3, -1, -3, 3]\noutput : list = [3, 3, -1, -3]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(drop([-4, -5, 3, -1, -3, 3],2),1),1)),38)",
    "io_inp": [
      -4,
      -5,
      3,
      -1,
      -3,
      3
    ],
    "io_out": [
      3,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(drop(input,2),1),1)),38)"
  },
  {
    "input": "input : list = [3, -2, -3, 3, 3]\noutput : list = [3, 3, 3, -2, -3]",
    "output": "generated_output : list = sort_des([3, -2, -3, 3, 3])",
    "io_inp": [
      3,
      -2,
      -3,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [13, 4, -5]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des([0, 3, -3])),-3),4)",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      13,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(input)),-3),4)"
  },
  {
    "input": "input : list = [1, 3, 3, -2, 1]\noutput : list = [0, -15]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(drop([1, 3, 3, -2, 1],3)),2)),-5)",
    "io_inp": [
      1,
      3,
      3,
      -2,
      1
    ],
    "io_out": [
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(drop(input,3)),2)),-5)"
  },
  {
    "input": "input : list = [3, 1, 1, -4]\noutput : list = [5, 3, 3, -2]",
    "output": "generated_output : list = sub_n([3, 1, 1, -4],-2)",
    "io_inp": [
      3,
      1,
      1,
      -4
    ],
    "io_out": [
      5,
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, -9]",
    "output": "generated_output : list = take(sub_n([1, -4],5),8)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),8)"
  },
  {
    "input": "input : list = [4, -5, 2, 0, 0]\noutput : list = [60, -48, 36, 12, 12]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([4, -5, 2, 0, 0],-1),3),4)",
    "io_inp": [
      4,
      -5,
      2,
      0,
      0
    ],
    "io_out": [
      60,
      -48,
      36,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,-1),3),4)"
  },
  {
    "input": "input : list = [5, 1, -2, -3, -2, -4]\noutput : list = [9, 1, -5, -7, -5, -9]",
    "output": "generated_output : list = add_n(mul_n(sub_n([5, 1, -2, -3, -2, -4],-2),2),-5)",
    "io_inp": [
      5,
      1,
      -2,
      -3,
      -2,
      -4
    ],
    "io_out": [
      9,
      1,
      -5,
      -7,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-2),2),-5)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-9, -3]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des([-4, -2]),3),-3))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(input),3),-3))"
  },
  {
    "input": "input : list = [-3, 5, -1, 5]\noutput : list = [-3, -1, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(sort_asc([-3, 5, -1, 5])))))",
    "io_inp": [
      -3,
      5,
      -1,
      5
    ],
    "io_out": [
      -3,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, -2, 1, -5, -5]\noutput : list = [-2, 1, -5, -5]",
    "output": "generated_output : list = drop([-1, -2, 1, -5, -5],1)",
    "io_inp": [
      -1,
      -2,
      1,
      -5,
      -5
    ],
    "io_out": [
      -2,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 0, 4, -2]\noutput : list = [-45, 45, -15, -15]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(reverse([0, 0, 4, -2]),1),7),-3),-5)",
    "io_inp": [
      0,
      0,
      4,
      -2
    ],
    "io_out": [
      -45,
      45,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(reverse(input),1),7),-3),-5)"
  },
  {
    "input": "input : list = [-1, 3, -1, -2, 1]\noutput : list = [-1, 0, 0, 2, 4]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(reverse([-1, 3, -1, -2, 1]),-2)),6),-1)",
    "io_inp": [
      -1,
      3,
      -1,
      -2,
      1
    ],
    "io_out": [
      -1,
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(reverse(input),-2)),6),-1)"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [-7, -2, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(reverse([1, 4, -4]))),3),16)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      -7,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(reverse(input))),3),16)"
  },
  {
    "input": "input : list = [1, -3, -5, 3]\noutput : list = [9, 7, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des([1, -3, -5, 3]),-2)),-4))",
    "io_inp": [
      1,
      -3,
      -5,
      3
    ],
    "io_out": [
      9,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des(input),-2)),-4))"
  },
  {
    "input": "input : list = [2, 0, 4, -3, -5, -3]\noutput : list = [-2, -4, 0, -7, -9, -7]",
    "output": "generated_output : list = sub_n([2, 0, 4, -3, -5, -3],4)",
    "io_inp": [
      2,
      0,
      4,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -4,
      0,
      -7,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [20, 16, -16]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(add_n([4, -5, 3],-2)),-3)),4)",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      20,
      16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(add_n(input,-2)),-3)),4)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_asc([-4, -2, 0])))),45)",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_asc(input)))),45)"
  },
  {
    "input": "input : list = [-5, 4, 3]\noutput : list = [-4, -3, 5]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([-5, 4, 3]),-1))",
    "io_inp": [
      -5,
      4,
      3
    ],
    "io_out": [
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [2, -1, 3, -4, -5, -4]\noutput : list = [-11, -10, -10, -7, -4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sub_n([2, -1, 3, -4, -5, -4],4)),-2)))",
    "io_inp": [
      2,
      -1,
      3,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -11,
      -10,
      -10,
      -7,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sub_n(input,4)),-2)))"
  },
  {
    "input": "input : list = [1, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(drop([1, -5, 0],1))",
    "io_inp": [
      1,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -2, 5, 1, -1, 2]\noutput : list = [-6, -22, 6, 2]",
    "output": "generated_output : list = add_n(reverse(take(mul_n([-1, -2, 5, 1, -1, 2],-4),4)),-2)",
    "io_inp": [
      -1,
      -2,
      5,
      1,
      -1,
      2
    ],
    "io_out": [
      -6,
      -22,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(input,-4),4)),-2)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(sub_n([1, 1, -3],-2))),5),4)",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(sub_n(input,-2))),5),4)"
  },
  {
    "input": "input : list = [-1, 1, 2]\noutput : list = [15, -15, -30]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sort_asc([-1, 1, 2]),-3),5)))",
    "io_inp": [
      -1,
      1,
      2
    ],
    "io_out": [
      15,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sort_asc(input),-3),5)))"
  },
  {
    "input": "input : list = [-4, 1, 1, -4, 1]\noutput : list = [-3, -3, -3, -8, -8]",
    "output": "generated_output : list = sort_des(add_n([-4, 1, 1, -4, 1],-4))",
    "io_inp": [
      -4,
      1,
      1,
      -4,
      1
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [-1, 5, -2, -3, 2]\noutput : list = [5, -2, -3, 2]",
    "output": "generated_output : list = drop([-1, 5, -2, -3, 2],1)",
    "io_inp": [
      -1,
      5,
      -2,
      -3,
      2
    ],
    "io_out": [
      5,
      -2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(mul_n(take(take(reverse([1, 1]),12),9),-2))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(reverse(input),12),9),-2))"
  },
  {
    "input": "input : list = [-2, 3, 2, 0]\noutput : list = [6, 0, -12, -24]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(sort_des([-2, 3, 2, 0]),4),-2),2),3)",
    "io_inp": [
      -2,
      3,
      2,
      0
    ],
    "io_out": [
      6,
      0,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(sort_des(input),4),-2),2),3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(sort_asc([-5, 3])))))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -1, -2]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(reverse([-5, -1, -2])),22)))",
    "io_inp": [
      -5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(reverse(input)),22)))"
  },
  {
    "input": "input : list = [5, 1, 2, -3, -2, -5]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(drop([5, 1, 2, -3, -2, -5],4),-3),-4),5),26)",
    "io_inp": [
      5,
      1,
      2,
      -3,
      -2,
      -5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(drop(input,4),-3),-4),5),26)"
  },
  {
    "input": "input : list = [2, 0, -1, 0, 4]\noutput : list = [-1, 0, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 0, -1, 0, 4])",
    "io_inp": [
      2,
      0,
      -1,
      0,
      4
    ],
    "io_out": [
      -1,
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -5, 0, 5]\noutput : list = [4, 9]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(drop([1, -5, 0, 5],2)),25),4))",
    "io_inp": [
      1,
      -5,
      0,
      5
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(drop(input,2)),25),4))"
  },
  {
    "input": "input : list = [-2, -5, -4, 3, 5]\noutput : list = [5, 3, -2, -4, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-2, -5, -4, 3, 5]),-1),-1)",
    "io_inp": [
      -2,
      -5,
      -4,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),-1),-1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [3, -15]",
    "output": "generated_output : list = mul_n(sort_des(take(take(sort_des([-5, 1]),7),2)),3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(sort_des(input),7),2)),3)"
  },
  {
    "input": "input : list = [2, -1, 3, 4, 5, -2]\noutput : list = [5, 4, 3, -1, -2]",
    "output": "generated_output : list = sort_des(drop([2, -1, 3, 4, 5, -2],1))",
    "io_inp": [
      2,
      -1,
      3,
      4,
      5,
      -2
    ],
    "io_out": [
      5,
      4,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-7, -7, 13]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(mul_n([-4, 1, 1],-4)))),-3)",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -7,
      -7,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(mul_n(input,-4)))),-3)"
  },
  {
    "input": "input : list = [4, -4, -3, 0, 5]\noutput : list = [-24, -12, 8]",
    "output": "generated_output : list = drop(mul_n(add_n(drop([4, -4, -3, 0, 5],1),-3),4),1)",
    "io_inp": [
      4,
      -4,
      -3,
      0,
      5
    ],
    "io_out": [
      -24,
      -12,
      8
    ],
    "output_masked": "generated_output : list = drop(mul_n(add_n(drop(input,1),-3),4),1)"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [8, 18]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(drop([-2, -3, -1],1),-5),22),-3))",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      8,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(drop(input,1),-5),22),-3))"
  },
  {
    "input": "input : list = [2, -2, 5, 5]\noutput : list = [20, 0, 35, 35]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(sub_n([2, -2, 5, 5],-2),5),25)))",
    "io_inp": [
      2,
      -2,
      5,
      5
    ],
    "io_out": [
      20,
      0,
      35,
      35
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(sub_n(input,-2),5),25)))"
  },
  {
    "input": "input : list = [-3, -1, 0, -2, -1]\noutput : list = [0]",
    "output": "generated_output : list = drop(sort_asc(mul_n(reverse(sort_asc([-3, -1, 0, -2, -1])),2)),4)",
    "io_inp": [
      -3,
      -1,
      0,
      -2,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(sort_asc(mul_n(reverse(sort_asc(input)),2)),4)"
  },
  {
    "input": "input : list = [4, -1, 2, 2, 5, 0]\noutput : list = [-6, -5, -3, -3, -1, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sort_des([4, -1, 2, 2, 5, 0])),5)),1)",
    "io_inp": [
      4,
      -1,
      2,
      2,
      5,
      0
    ],
    "io_out": [
      -6,
      -5,
      -3,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(sort_des(input)),5)),1)"
  },
  {
    "input": "input : list = [-4, 3, 2, -5, -3, -4]\noutput : list = [3, 2, -3, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-4, 3, 2, -5, -3, -4])",
    "io_inp": [
      -4,
      3,
      2,
      -5,
      -3,
      -4
    ],
    "io_out": [
      3,
      2,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2, 2, 0, 1, 1]\noutput : list = [64, -36, -36, 4, -16, -16]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(reverse([-3, 2, 2, 0, 1, 1]),4)),-5),-4)",
    "io_inp": [
      -3,
      2,
      2,
      0,
      1,
      1
    ],
    "io_out": [
      64,
      -36,
      -36,
      4,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(reverse(input),4)),-5),-4)"
  },
  {
    "input": "input : list = [-5, -4, -1, -1, 2]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = sub_n(drop([-5, -4, -1, -1, 2],2),-1)",
    "io_inp": [
      -5,
      -4,
      -1,
      -1,
      2
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [4, 12, 4]",
    "output": "generated_output : list = take(mul_n([1, 3, 1],4),6)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      4,
      12,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),6)"
  },
  {
    "input": "input : list = [0, 2, 1, 5, -4, 0]\noutput : list = [0, 2, 1, 5]",
    "output": "generated_output : list = take([0, 2, 1, 5, -4, 0],4)",
    "io_inp": [
      0,
      2,
      1,
      5,
      -4,
      0
    ],
    "io_out": [
      0,
      2,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [4, 2, 4, 5, 3, 3]\noutput : list = [20, 16, 16, 12, 12, 8]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(reverse([4, 2, 4, 5, 3, 3]))),4))",
    "io_inp": [
      4,
      2,
      4,
      5,
      3,
      3
    ],
    "io_out": [
      20,
      16,
      16,
      12,
      12,
      8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(reverse(input))),4))"
  },
  {
    "input": "input : list = [5, -1, 2, 2]\noutput : list = [1, 4, 4, 7]",
    "output": "generated_output : list = sort_asc(sub_n([5, -1, 2, 2],-2))",
    "io_inp": [
      5,
      -1,
      2,
      2
    ],
    "io_out": [
      1,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-4, -4, -2, -2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(drop([-4, -4, -2, -2, -1],3)))))",
    "io_inp": [
      -4,
      -4,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(drop(input,3)))))"
  },
  {
    "input": "input : list = [4, 3, 3]\noutput : list = [10, 10, 13]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des([4, 3, 3]),3),26)),1)",
    "io_inp": [
      4,
      3,
      3
    ],
    "io_out": [
      10,
      10,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des(input),3),26)),1)"
  },
  {
    "input": "input : list = [2, 4, -4, -4, 2]\noutput : list = [12, -24, -24, 24, 12]",
    "output": "generated_output : list = reverse(mul_n(take(take(mul_n([2, 4, -4, -4, 2],3),16),33),2))",
    "io_inp": [
      2,
      4,
      -4,
      -4,
      2
    ],
    "io_out": [
      12,
      -24,
      -24,
      24,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(mul_n(input,3),16),33),2))"
  },
  {
    "input": "input : list = [-3, 0, -4, -4]\noutput : list = [0, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-3, 0, -4, -4])",
    "io_inp": [
      -3,
      0,
      -4,
      -4
    ],
    "io_out": [
      0,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5, -1, 1, -1]\noutput : list = [-20, -4, -4, -4, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(mul_n([-1, -5, -1, 1, -1],4)))),32)",
    "io_inp": [
      -1,
      -5,
      -1,
      1,
      -1
    ],
    "io_out": [
      -20,
      -4,
      -4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(mul_n(input,4)))),32)"
  },
  {
    "input": "input : list = [-3, -2, 2, 5, -2]\noutput : list = [-12, -8, -8, 8, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(mul_n([-3, -2, 2, 5, -2],4)))))",
    "io_inp": [
      -3,
      -2,
      2,
      5,
      -2
    ],
    "io_out": [
      -12,
      -8,
      -8,
      8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-3, 4, 5, 5, 1]\noutput : list = [2, 6, 9, 10, 10]",
    "output": "generated_output : list = sub_n(take(sort_asc([-3, 4, 5, 5, 1]),20),-5)",
    "io_inp": [
      -3,
      4,
      5,
      5,
      1
    ],
    "io_out": [
      2,
      6,
      9,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),20),-5)"
  },
  {
    "input": "input : list = [-4, -3, -5]\noutput : list = [-12]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(drop([-4, -3, -5],1),4),1)),-5)",
    "io_inp": [
      -4,
      -3,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(drop(input,1),4),1)),-5)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [4, 2]",
    "output": "generated_output : list = sub_n(sort_des([3, 5]),1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-3, 2, 3, 0, 5]\noutput : list = [-25, 0, -15, -10, 15]",
    "output": "generated_output : list = reverse(mul_n([-3, 2, 3, 0, 5],-5))",
    "io_inp": [
      -3,
      2,
      3,
      0,
      5
    ],
    "io_out": [
      -25,
      0,
      -15,
      -10,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [4, -1, 1, -4, 4, 2]\noutput : list = [2, 2, 0, -1, -3, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des([4, -1, 1, -4, 4, 2])),2))",
    "io_inp": [
      4,
      -1,
      1,
      -4,
      4,
      2
    ],
    "io_out": [
      2,
      2,
      0,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(input)),2))"
  },
  {
    "input": "input : list = [2, 5, 5, 2, 5]\noutput : list = [9, 9, 9, 6, 6]",
    "output": "generated_output : list = sort_des(reverse(add_n([2, 5, 5, 2, 5],4)))",
    "io_inp": [
      2,
      5,
      5,
      2,
      5
    ],
    "io_out": [
      9,
      9,
      9,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,4)))"
  },
  {
    "input": "input : list = [0, 3, -3, 0]\noutput : list = [-14, -11, -11, -8]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_des([0, 3, -3, 0])),3),-3),5)",
    "io_inp": [
      0,
      3,
      -3,
      0
    ],
    "io_out": [
      -14,
      -11,
      -11,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(sort_des(input)),3),-3),5)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse(sort_des([-2, -3]))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [1, -4, -2, 0]\noutput : list = [12, 6]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(drop([1, -4, -2, 0],2),-3),-1),19),5)",
    "io_inp": [
      1,
      -4,
      -2,
      0
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(drop(input,2),-3),-1),19),5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(sort_asc([-5, -4]),1),2),2))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(sort_asc(input),1),2),2))"
  },
  {
    "input": "input : list = [2, -2, -2, 3, -1, -1]\noutput : list = [-4, 4, 4, -6, 2, 2]",
    "output": "generated_output : list = mul_n([2, -2, -2, 3, -1, -1],-2)",
    "io_inp": [
      2,
      -2,
      -2,
      3,
      -1,
      -1
    ],
    "io_out": [
      -4,
      4,
      4,
      -6,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, -3, 2, 1, 4, 4]\noutput : list = [-8, -8, -6, -5, -5, -1]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(sort_des([1, -3, 2, 1, 4, 4]),-1),-1)),-5)",
    "io_inp": [
      1,
      -3,
      2,
      1,
      4,
      4
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(sort_des(input),-1),-1)),-5)"
  },
  {
    "input": "input : list = [-2, 1, -3, -5, -3]\noutput : list = [-13, -11, -11, -10, -7]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(sub_n([-2, 1, -3, -5, -3],5),-3))),27)",
    "io_inp": [
      -2,
      1,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -13,
      -11,
      -11,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(sub_n(input,5),-3))),27)"
  },
  {
    "input": "input : list = [2, 3, 4, 4, -4]\noutput : list = [-10, -4, -3, -2, -2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(sort_asc([2, 3, 4, 4, -4]),-5),4)),3)",
    "io_inp": [
      2,
      3,
      4,
      4,
      -4
    ],
    "io_out": [
      -10,
      -4,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(sort_asc(input),-5),4)),3)"
  },
  {
    "input": "input : list = [-2, -3, 0, 0, 5, -4]\noutput : list = [-4, -5, -2, -2, 3, -6]",
    "output": "generated_output : list = sub_n([-2, -3, 0, 0, 5, -4],2)",
    "io_inp": [
      -2,
      -3,
      0,
      0,
      5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -2,
      -2,
      3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sub_n([-2, -4],-4),1),3)))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sub_n(input,-4),1),3)))"
  },
  {
    "input": "input : list = [-1, 1, -4, 1, -5]\noutput : list = [-7, -6]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(sub_n([-1, 1, -4, 1, -5],-2)),2),4),19)",
    "io_inp": [
      -1,
      1,
      -4,
      1,
      -5
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(sub_n(input,-2)),2),4),19)"
  },
  {
    "input": "input : list = [2, 0, 4, 2, 4, 2]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = sort_des(drop([2, 0, 4, 2, 4, 2],3))",
    "io_inp": [
      2,
      0,
      4,
      2,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [-4, 1, 2, 3, 1, -2]\noutput : list = [-1, -2, -3, -3, -6, -8]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(add_n([-4, 1, 2, 3, 1, -2],-5)),-2),3))",
    "io_inp": [
      -4,
      1,
      2,
      3,
      1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(add_n(input,-5)),-2),3))"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(add_n([0, 0, -1],2)),-5)),3)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(add_n(input,2)),-5)),3)"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = sort_asc([4, 2, 1])",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-1, -8]",
    "output": "generated_output : list = sub_n(reverse(reverse([2, -5])),3)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),3)"
  },
  {
    "input": "input : list = [-5, 3, 3, -2, 4, 2]\noutput : list = [1, 3, -3, 2, 2, -6]",
    "output": "generated_output : list = sub_n(reverse([-5, 3, 3, -2, 4, 2]),1)",
    "io_inp": [
      -5,
      3,
      3,
      -2,
      4,
      2
    ],
    "io_out": [
      1,
      3,
      -3,
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-5, -2, 2, 0, 2, 0]\noutput : list = [0, -6, 0]",
    "output": "generated_output : list = mul_n(drop([-5, -2, 2, 0, 2, 0],3),-3)",
    "io_inp": [
      -5,
      -2,
      2,
      0,
      2,
      0
    ],
    "io_out": [
      0,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-3)"
  },
  {
    "input": "input : list = [-1, -2, -4, 4]\noutput : list = [0, 2, 3, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([-1, -2, -4, 4],4)))",
    "io_inp": [
      -1,
      -2,
      -4,
      4
    ],
    "io_out": [
      0,
      2,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,4)))"
  },
  {
    "input": "input : list = [-4, 1, 2]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(drop([-4, 1, 2],1)),-1))",
    "io_inp": [
      -4,
      1,
      2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(drop(input,1)),-1))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse([2, -1])))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-3, -3, -4, -3]\noutput : list = [15, 15, 15, 20]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(add_n([-3, -3, -4, -3],2),1)),-1),-5)",
    "io_inp": [
      -3,
      -3,
      -4,
      -3
    ],
    "io_out": [
      15,
      15,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(add_n(input,2),1)),-1),-5)"
  },
  {
    "input": "input : list = [-5, -1, 0, -5, 5, -3]\noutput : list = [4, 9]",
    "output": "generated_output : list = add_n(reverse(sort_des(drop(sort_asc([-5, -1, 0, -5, 5, -3]),4))),4)",
    "io_inp": [
      -5,
      -1,
      0,
      -5,
      5,
      -3
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(drop(sort_asc(input),4))),4)"
  },
  {
    "input": "input : list = [3, -1, 3, -1, 1]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(take(add_n(take(take([3, -1, 3, -1, 1],2),14),3),14))",
    "io_inp": [
      3,
      -1,
      3,
      -1,
      1
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(take(input,2),14),3),14))"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-5, 0, 5]",
    "output": "generated_output : list = mul_n([1, 0, -1],-5)",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 0, 5, 0]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(drop([-2, 0, 5, 0],1),1),-1)))",
    "io_inp": [
      -2,
      0,
      5,
      0
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(drop(input,1),1),-1)))"
  },
  {
    "input": "input : list = [0, -1, 2, 4, 1, 5]\noutput : list = [8]",
    "output": "generated_output : list = drop(add_n(sort_asc(mul_n(reverse([0, -1, 2, 4, 1, 5]),1)),3),5)",
    "io_inp": [
      0,
      -1,
      2,
      4,
      1,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(mul_n(reverse(input),1)),3),5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([-1, 4]),3),-1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),3),-1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([2, -3]),-2))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(reverse([-3, -1, -1]),-1)),-4))",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(reverse(input),-1)),-4))"
  },
  {
    "input": "input : list = [-3, 3, -1, -1, 5]\noutput : list = [-1, 1, 5, 5, 7]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(add_n([-3, 3, -1, -1, 5],-4)),8)),-1)",
    "io_inp": [
      -3,
      3,
      -1,
      -1,
      5
    ],
    "io_out": [
      -1,
      1,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(add_n(input,-4)),8)),-1)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [-2, 13, 13]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(sort_asc([5, 0, 5]),3),-1),-1))",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      -2,
      13,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(sort_asc(input),3),-1),-1))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [5, 5]",
    "output": "generated_output : list = take(add_n([0, 0],5),4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),4)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = sort_asc([-1, 0, 0])",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [-5, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 3, -5])",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -5, 2, -5, -5, 3]\noutput : list = [5, 5, 5, 12, 13, 13]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n([3, -5, 2, -5, -5, 3],-3))),-3),4)",
    "io_inp": [
      3,
      -5,
      2,
      -5,
      -5,
      3
    ],
    "io_out": [
      5,
      5,
      5,
      12,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sub_n(input,-3))),-3),4)"
  },
  {
    "input": "input : list = [-1, -2, -3, 4]\noutput : list = [0, -7, -6, -5]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(reverse([-1, -2, -3, 4]),2),5),16),-1)",
    "io_inp": [
      -1,
      -2,
      -3,
      4
    ],
    "io_out": [
      0,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(reverse(input),2),5),16),-1)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [4, 2]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(sub_n([0, -2],-4)),13),-3),-3)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(sub_n(input,-4)),13),-3),-3)"
  },
  {
    "input": "input : list = [1, 0, -4, 1, -4]\noutput : list = [1, 1, 0, -4, -4]",
    "output": "generated_output : list = sort_des(reverse([1, 0, -4, 1, -4]))",
    "io_inp": [
      1,
      0,
      -4,
      1,
      -4
    ],
    "io_out": [
      1,
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, 3, -4, -4, -5, 2]\noutput : list = [0, 1, 1, 7, 8]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(drop([1, 3, -4, -4, -5, 2],1)),1)),4)",
    "io_inp": [
      1,
      3,
      -4,
      -4,
      -5,
      2
    ],
    "io_out": [
      0,
      1,
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(drop(input,1)),1)),4)"
  },
  {
    "input": "input : list = [-3, -2, -4, -5, -3, 1]\noutput : list = [4, 5, 3, 2, 4, 8]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(sub_n([-3, -2, -4, -5, -3, 1],-3),3)),1))",
    "io_inp": [
      -3,
      -2,
      -4,
      -5,
      -3,
      1
    ],
    "io_out": [
      4,
      5,
      3,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(sub_n(input,-3),3)),1))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [8, 5]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sub_n([-1, -4],-4),3),1),2),20)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sub_n(input,-4),3),1),2),20)"
  },
  {
    "input": "input : list = [3, -3, -2, 0, -5, -1]\noutput : list = [-3, 0, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(drop([3, -3, -2, 0, -5, -1],2),-2)))",
    "io_inp": [
      3,
      -3,
      -2,
      0,
      -5,
      -1
    ],
    "io_out": [
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(drop(input,2),-2)))"
  },
  {
    "input": "input : list = [-4, 4, 4, 3, -2]\noutput : list = [7, 7, 5, -5, -9]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n(sort_asc([-4, 4, 4, 3, -2]),2)),11),1)",
    "io_inp": [
      -4,
      4,
      4,
      3,
      -2
    ],
    "io_out": [
      7,
      7,
      5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(sort_asc(input),2)),11),1)"
  },
  {
    "input": "input : list = [1, 4, -1]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = add_n(sub_n(take(take(sort_asc([1, 4, -1]),7),25),-3),-2)",
    "io_inp": [
      1,
      4,
      -1
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(sort_asc(input),7),25),-3),-2)"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = sort_des([3, -5, 1])",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [2, 5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(reverse([1, -2]))),5),1)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(reverse(input))),5),1)"
  },
  {
    "input": "input : list = [-1, 3, -4, 5, 5]\noutput : list = [-1, 2, 6, 8, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse([-1, 3, -4, 5, 5]))),3)",
    "io_inp": [
      -1,
      3,
      -4,
      5,
      5
    ],
    "io_out": [
      -1,
      2,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(input))),3)"
  },
  {
    "input": "input : list = [-3, 3, -5, -4]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 3, -5, -4],1)",
    "io_inp": [
      -3,
      3,
      -5,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [5, -4, 2]",
    "output": "generated_output : list = reverse(mul_n([2, -4, 5],1))",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [1, -5, 0, 1]\noutput : list = [12, -3, -6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sub_n([1, -5, 0, 1],-3),-2))),-3)",
    "io_inp": [
      1,
      -5,
      0,
      1
    ],
    "io_out": [
      12,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sub_n(input,-3),-2))),-3)"
  },
  {
    "input": "input : list = [0, 1, -4, -1, 5, 2]\noutput : list = [-8, -5, -4, -3, -2, 1]",
    "output": "generated_output : list = take(sort_asc(sub_n([0, 1, -4, -1, 5, 2],4)),23)",
    "io_inp": [
      0,
      1,
      -4,
      -1,
      5,
      2
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,4)),23)"
  },
  {
    "input": "input : list = [5, 3, 0, -4, -4]\noutput : list = [-40, -24, 0, 32, 32]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(mul_n([5, 3, 0, -4, -4],4)),-2)))",
    "io_inp": [
      5,
      3,
      0,
      -4,
      -4
    ],
    "io_out": [
      -40,
      -24,
      0,
      32,
      32
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(mul_n(input,4)),-2)))"
  },
  {
    "input": "input : list = [-4, 1, -3, 5]\noutput : list = [-60, 15, -45, 75]",
    "output": "generated_output : list = mul_n(mul_n([-4, 1, -3, 5],-3),-5)",
    "io_inp": [
      -4,
      1,
      -3,
      5
    ],
    "io_out": [
      -60,
      15,
      -45,
      75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-3),-5)"
  },
  {
    "input": "input : list = [-1, -5, 3, -1, 1, 1]\noutput : list = [-9, -5, -5, -3, -3, -1]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(sort_asc([-1, -5, 3, -1, 1, 1]),-4)),19))",
    "io_inp": [
      -1,
      -5,
      3,
      -1,
      1,
      1
    ],
    "io_out": [
      -9,
      -5,
      -5,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(sort_asc(input),-4)),19))"
  },
  {
    "input": "input : list = [-1, -5, -5, 5, -4]\noutput : list = [-2, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(take([-1, -5, -5, 5, -4],3),3)),1))",
    "io_inp": [
      -1,
      -5,
      -5,
      5,
      -4
    ],
    "io_out": [
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(take(input,3),3)),1))"
  },
  {
    "input": "input : list = [2, -5, -5, 2, -3]\noutput : list = [-10, -10, -8, -3, -3]",
    "output": "generated_output : list = add_n(sort_asc([2, -5, -5, 2, -3]),-5)",
    "io_inp": [
      2,
      -5,
      -5,
      2,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [5, 2, -3, 4, 5]\noutput : list = [-20, -20, -16, -8, 12]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(reverse([5, 2, -3, 4, 5])),-4)))",
    "io_inp": [
      5,
      2,
      -3,
      4,
      5
    ],
    "io_out": [
      -20,
      -20,
      -16,
      -8,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [0, -12]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(drop([-2, 0, 4],1)),-3)),4)",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(drop(input,1)),-3)),4)"
  },
  {
    "input": "input : list = [1, 5, 4, -3, 3]\noutput : list = [-3, 1, 0, -7, -1]",
    "output": "generated_output : list = sub_n([1, 5, 4, -3, 3],4)",
    "io_inp": [
      1,
      5,
      4,
      -3,
      3
    ],
    "io_out": [
      -3,
      1,
      0,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_asc([2, 2])),1),-2))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_asc(input)),1),-2))"
  },
  {
    "input": "input : list = [5, -3, -3, -3, 5, 3]\noutput : list = [205, 205, 205, -155, -275, -275]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(mul_n([5, -3, -3, -3, 5, 3],-4),3)),-5),5)",
    "io_inp": [
      5,
      -3,
      -3,
      -3,
      5,
      3
    ],
    "io_out": [
      205,
      205,
      205,
      -155,
      -275,
      -275
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(mul_n(input,-4),3)),-5),5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(add_n(reverse(take(add_n([-3, 0],-4),14)),2))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(add_n(input,-4),14)),2))"
  },
  {
    "input": "input : list = [0, -5, -3, 2, 2]\noutput : list = [-5, -3, 0, 2, 2]",
    "output": "generated_output : list = sort_asc([0, -5, -3, 2, 2])",
    "io_inp": [
      0,
      -5,
      -3,
      2,
      2
    ],
    "io_out": [
      -5,
      -3,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 3, 1, -1, -5]\noutput : list = [18, 30]",
    "output": "generated_output : list = mul_n(add_n(drop([0, 3, 1, -1, -5],3),-5),-3)",
    "io_inp": [
      0,
      3,
      1,
      -1,
      -5
    ],
    "io_out": [
      18,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,3),-5),-3)"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [-1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(reverse([-1, 5, 1])))))",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, 3, 5, -3]\noutput : list = [1, -1, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-5, 3, 5, -3],-3),1))",
    "io_inp": [
      -5,
      3,
      5,
      -3
    ],
    "io_out": [
      1,
      -1,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-3),1))"
  },
  {
    "input": "input : list = [5, 3, -5, 0, -2, 5]\noutput : list = [5, 5, 3, 0, -2, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(reverse([5, 3, -5, 0, -2, 5]))),42))",
    "io_inp": [
      5,
      3,
      -5,
      0,
      -2,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(reverse(input))),42))"
  },
  {
    "input": "input : list = [2, 5, -2, -2]\noutput : list = [2, -1, -5, -5]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_des(reverse([2, 5, -2, -2])),1),-1),4)",
    "io_inp": [
      2,
      5,
      -2,
      -2
    ],
    "io_out": [
      2,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_des(reverse(input)),1),-1),4)"
  },
  {
    "input": "input : list = [-5, 4, 5, 2]\noutput : list = [-14, 0, 4, 6]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse([-5, 4, 5, 2]),1)),2),-4)",
    "io_inp": [
      -5,
      4,
      5,
      2
    ],
    "io_out": [
      -14,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse(input),1)),2),-4)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, -10]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(sort_asc([-2, 0]),5)),24))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(sort_asc(input),5)),24))"
  },
  {
    "input": "input : list = [0, -2, 1, -1]\noutput : list = [8, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(drop([0, -2, 1, -1],2),14)),-1),-4)",
    "io_inp": [
      0,
      -2,
      1,
      -1
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(drop(input,2),14)),-1),-4)"
  },
  {
    "input": "input : list = [2, 0, 3, 1, -5]\noutput : list = [0, 5, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(sort_des([2, 0, 3, 1, -5]),-3),5),2))",
    "io_inp": [
      2,
      0,
      3,
      1,
      -5
    ],
    "io_out": [
      0,
      5,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(sort_des(input),-3),5),2))"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [2, -6, -3]",
    "output": "generated_output : list = take(take(sub_n([4, -4, -1],2),9),21)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      2,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,2),9),21)"
  },
  {
    "input": "input : list = [-3, 2, 0, 0, -5, -5]\noutput : list = [-5, -5, 0, 0]",
    "output": "generated_output : list = reverse(take(reverse(reverse(drop([-3, 2, 0, 0, -5, -5],2))),4))",
    "io_inp": [
      -3,
      2,
      0,
      0,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(drop(input,2))),4))"
  },
  {
    "input": "input : list = [1, 0, 5, -2]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(take([1, 0, 5, -2],1),-5),20)),2)",
    "io_inp": [
      1,
      0,
      5,
      -2
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(take(input,1),-5),20)),2)"
  },
  {
    "input": "input : list = [3, 1, 2, 1]\noutput : list = [9, 10, 9]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(drop([3, 1, 2, 1],1),-4)),1),-4)",
    "io_inp": [
      3,
      1,
      2,
      1
    ],
    "io_out": [
      9,
      10,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(drop(input,1),-4)),1),-4)"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [10, 20, 30]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(sub_n([2, 0, 4],-2),5)),1))",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      10,
      20,
      30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(sub_n(input,-2),5)),1))"
  },
  {
    "input": "input : list = [0, 2, 2, -2, 2, 1]\noutput : list = [0, -10, -10, 10, -10, -5]",
    "output": "generated_output : list = mul_n([0, 2, 2, -2, 2, 1],-5)",
    "io_inp": [
      0,
      2,
      2,
      -2,
      2,
      1
    ],
    "io_out": [
      0,
      -10,
      -10,
      10,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -1, -2, 0, 4, 0]\noutput : list = [6, 2, 2, 1, 0]",
    "output": "generated_output : list = add_n(take(sort_des([-3, -1, -2, 0, 4, 0]),5),2)",
    "io_inp": [
      -3,
      -1,
      -2,
      0,
      4,
      0
    ],
    "io_out": [
      6,
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),5),2)"
  },
  {
    "input": "input : list = [-3, 4, -3, 0, -5]\noutput : list = [-3, 4, -3, 0, -5]",
    "output": "generated_output : list = add_n(sub_n([-3, 4, -3, 0, -5],2),2)",
    "io_inp": [
      -3,
      4,
      -3,
      0,
      -5
    ],
    "io_out": [
      -3,
      4,
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),2)"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [4, -3]",
    "output": "generated_output : list = reverse(take(sub_n(drop([5, -4, 3],1),-1),26))",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(drop(input,1),-1),26))"
  },
  {
    "input": "input : list = [2, 3, 0, 5, -1, -1]\noutput : list = [10, 10, 0, -20, -30, -50]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(sort_asc([2, 3, 0, 5, -1, -1]),2)),-5))",
    "io_inp": [
      2,
      3,
      0,
      5,
      -1,
      -1
    ],
    "io_out": [
      10,
      10,
      0,
      -20,
      -30,
      -50
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(sort_asc(input),2)),-5))"
  },
  {
    "input": "input : list = [-2, -1, 2, 3]\noutput : list = [-7, -6, -3, -2]",
    "output": "generated_output : list = sort_asc(add_n([-2, -1, 2, 3],-5))",
    "io_inp": [
      -2,
      -1,
      2,
      3
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [0, -4, 2, -4, 4]\noutput : list = [4, -4, 2, -4, 0]",
    "output": "generated_output : list = reverse([0, -4, 2, -4, 4])",
    "io_inp": [
      0,
      -4,
      2,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      2,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, 4, -2, -5, 0]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(drop([-2, -4, 4, -2, -5, 0],3),3)),16),-1)",
    "io_inp": [
      -2,
      -4,
      4,
      -2,
      -5,
      0
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(drop(input,3),3)),16),-1)"
  },
  {
    "input": "input : list = [0, -5, 3, -1, -4]\noutput : list = [-16, -4, 12, -20, 0]",
    "output": "generated_output : list = mul_n(reverse([0, -5, 3, -1, -4]),4)",
    "io_inp": [
      0,
      -5,
      3,
      -1,
      -4
    ],
    "io_out": [
      -16,
      -4,
      12,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-3, 3, 2, 0, -2]\noutput : list = [7, 9, 11, 12, 6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(reverse([-3, 3, 2, 0, -2]),4),-5),3),-3)",
    "io_inp": [
      -3,
      3,
      2,
      0,
      -2
    ],
    "io_out": [
      7,
      9,
      11,
      12,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(reverse(input),4),-5),3),-3)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-21, 3]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(add_n([1, 5],1),-2)),-5),3)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -21,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(add_n(input,1),-2)),-5),3)"
  },
  {
    "input": "input : list = [-1, 3, -3, -5, 3]\noutput : list = [4, 8, 2]",
    "output": "generated_output : list = add_n(take([-1, 3, -3, -5, 3],3),5)",
    "io_inp": [
      -1,
      3,
      -3,
      -5,
      3
    ],
    "io_out": [
      4,
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),5)"
  },
  {
    "input": "input : list = [0, -1, -4, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(reverse(add_n(sub_n(take([0, -1, -4, 2],2),1),3)),7)",
    "io_inp": [
      0,
      -1,
      -4,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sub_n(take(input,2),1),3)),7)"
  },
  {
    "input": "input : list = [3, 2, -3, 0, 0]\noutput : list = [12, 0, 0, -8, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n([3, 2, -3, 0, 0],-4)))",
    "io_inp": [
      3,
      2,
      -3,
      0,
      0
    ],
    "io_out": [
      12,
      0,
      0,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [1, -2, 1, 1, 0]\noutput : list = [1, 1, 1, 0, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sort_asc([1, -2, 1, 1, 0]),20))))",
    "io_inp": [
      1,
      -2,
      1,
      1,
      0
    ],
    "io_out": [
      1,
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sort_asc(input),20))))"
  },
  {
    "input": "input : list = [-1, -1, -4, 3, -5]\noutput : list = [-9, -8, -5, -5, -1]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(sort_des([-1, -1, -4, 3, -5]),4))),14)",
    "io_inp": [
      -1,
      -1,
      -4,
      3,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(sort_des(input),4))),14)"
  },
  {
    "input": "input : list = [2, 5, 0, 3]\noutput : list = [-6, -15, 0, -9]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(mul_n([2, 5, 0, 3],-3),-4),-1),1),2)",
    "io_inp": [
      2,
      5,
      0,
      3
    ],
    "io_out": [
      -6,
      -15,
      0,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(mul_n(input,-3),-4),-1),1),2)"
  },
  {
    "input": "input : list = [-1, -2, 0, 2, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = drop([-1, -2, 0, 2, -1, 1],4)",
    "io_inp": [
      -1,
      -2,
      0,
      2,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [6, 10]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse(add_n([4, 0],5)),-3),-1),-3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(add_n(input,5)),-3),-1),-3)"
  },
  {
    "input": "input : list = [-3, -2, 2, -2, 3]\noutput : list = [9, 6, -6, 6, -9]",
    "output": "generated_output : list = take(take(mul_n([-3, -2, 2, -2, 3],-3),20),9)",
    "io_inp": [
      -3,
      -2,
      2,
      -2,
      3
    ],
    "io_out": [
      9,
      6,
      -6,
      6,
      -9
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-3),20),9)"
  },
  {
    "input": "input : list = [-4, -3, 0, -1, 5, 0]\noutput : list = [-1, 0, -3, -4]",
    "output": "generated_output : list = reverse(take([-4, -3, 0, -1, 5, 0],4))",
    "io_inp": [
      -4,
      -3,
      0,
      -1,
      5,
      0
    ],
    "io_out": [
      -1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,4))"
  },
  {
    "input": "input : list = [3, 5, 5, 2]\noutput : list = [-2, -1, 1, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(sort_asc([3, 5, 5, 2]))),-3),1)",
    "io_inp": [
      3,
      5,
      5,
      2
    ],
    "io_out": [
      -2,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(sort_asc(input))),-3),1)"
  },
  {
    "input": "input : list = [-1, -3, -1, 4, 4, -2]\noutput : list = [4, 4, -1, -1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(sort_des([-1, -3, -1, 4, 4, -2]),18))))",
    "io_inp": [
      -1,
      -3,
      -1,
      4,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      -1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(sort_des(input),18))))"
  },
  {
    "input": "input : list = [-1, -4, -5]\noutput : list = [-5, -4, -1]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n([-1, -4, -5],-4),3),4))",
    "io_inp": [
      -1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(input,-4),3),4))"
  },
  {
    "input": "input : list = [4, 4, -3, 3]\noutput : list = [3, -3, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, -3, 3])",
    "io_inp": [
      4,
      4,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [-30, -60, 60]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(add_n([-4, 4, 2],5),-5)),-5),3)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      -30,
      -60,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(add_n(input,5),-5)),-5),3)"
  },
  {
    "input": "input : list = [0, -4, 3, -2]\noutput : list = [1, -3, 4, -1]",
    "output": "generated_output : list = take(sub_n([0, -4, 3, -2],-1),14)",
    "io_inp": [
      0,
      -4,
      3,
      -2
    ],
    "io_out": [
      1,
      -3,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),14)"
  },
  {
    "input": "input : list = [5, 0, 2, -4]\noutput : list = [-9, -5, -3]",
    "output": "generated_output : list = sort_asc(add_n(drop([5, 0, 2, -4],1),-5))",
    "io_inp": [
      5,
      0,
      2,
      -4
    ],
    "io_out": [
      -9,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,1),-5))"
  },
  {
    "input": "input : list = [-4, -2, 1, -2, 1]\noutput : list = [72, 48, 12, 48, 12]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(sub_n([-4, -2, 1, -2, 1],2),5),-1),4),3)",
    "io_inp": [
      -4,
      -2,
      1,
      -2,
      1
    ],
    "io_out": [
      72,
      48,
      12,
      48,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(sub_n(input,2),5),-1),4),3)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = reverse(sub_n([-1, -1, -1],3))",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-3, -5, 1, -3, -2, 1]\noutput : list = [1, -2, -3, 1, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, 1, -3, -2, 1])",
    "io_inp": [
      -3,
      -5,
      1,
      -3,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      -3,
      1,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, -5, -1, -5, -5]\noutput : list = [7, 6, 5, 1, 1, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_des([0, 1, -5, -1, -5, -5])),-2),-4))",
    "io_inp": [
      0,
      1,
      -5,
      -1,
      -5,
      -5
    ],
    "io_out": [
      7,
      6,
      5,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_des(input)),-2),-4))"
  },
  {
    "input": "input : list = [-3, -5, 0, 4, 3]\noutput : list = [0, 4, 3]",
    "output": "generated_output : list = drop([-3, -5, 0, 4, 3],2)",
    "io_inp": [
      -3,
      -5,
      0,
      4,
      3
    ],
    "io_out": [
      0,
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [6, 12, 21]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(reverse([0, -2, -5]),2)),-3))",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      6,
      12,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(reverse(input),2)),-3))"
  },
  {
    "input": "input : list = [-5, -1, -5, -2, 4, 0]\noutput : list = [-11, -11, -8, -7, -6, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(reverse([-5, -1, -5, -2, 4, 0]),5),-1)))",
    "io_inp": [
      -5,
      -1,
      -5,
      -2,
      4,
      0
    ],
    "io_out": [
      -11,
      -11,
      -8,
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(reverse(input),5),-1)))"
  },
  {
    "input": "input : list = [-3, 0, 1, 2, 3]\noutput : list = [45, 0, -15, -30, -45]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(reverse([-3, 0, 1, 2, 3]),-3))),5)",
    "io_inp": [
      -3,
      0,
      1,
      2,
      3
    ],
    "io_out": [
      45,
      0,
      -15,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(reverse(input),-3))),5)"
  },
  {
    "input": "input : list = [2, -3, 4, -1, 3, 5]\noutput : list = [5, 4, 3, 2, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_des([2, -3, 4, -1, 3, 5])))))",
    "io_inp": [
      2,
      -3,
      4,
      -1,
      3,
      5
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, 3, 0, -2, 2, 3]\noutput : list = [6, 2, 0, -2, -4, -4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([1, 3, 0, -2, 2, 3]),1),-2)",
    "io_inp": [
      1,
      3,
      0,
      -2,
      2,
      3
    ],
    "io_out": [
      6,
      2,
      0,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),1),-2)"
  },
  {
    "input": "input : list = [-1, 4, -4]\noutput : list = [7, 2, -1]",
    "output": "generated_output : list = take(reverse(take(add_n(sort_asc([-1, 4, -4]),3),4)),32)",
    "io_inp": [
      -1,
      4,
      -4
    ],
    "io_out": [
      7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(take(add_n(sort_asc(input),3),4)),32)"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [4, -8, -17]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(reverse([1, 4, -3]),6),-3),-5))",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      4,
      -8,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(reverse(input),6),-3),-5))"
  },
  {
    "input": "input : list = [-1, -3, 4, -5, -1, -3]\noutput : list = [15, -10, -10, -20, -20, -30]",
    "output": "generated_output : list = reverse(take(add_n(mul_n(sort_asc([-1, -3, 4, -5, -1, -3]),5),-5),48))",
    "io_inp": [
      -1,
      -3,
      4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      15,
      -10,
      -10,
      -20,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(sort_asc(input),5),-5),48))"
  },
  {
    "input": "input : list = [5, 5, -1]\noutput : list = [5, 5, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse([5, 5, -1])))",
    "io_inp": [
      5,
      5,
      -1
    ],
    "io_out": [
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [4, 4, -2, 1, 1, -2]\noutput : list = [24, 24, 12, 12, 0, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(sort_asc([4, 4, -2, 1, 1, -2]))),4),-4)",
    "io_inp": [
      4,
      4,
      -2,
      1,
      1,
      -2
    ],
    "io_out": [
      24,
      24,
      12,
      12,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(sort_asc(input))),4),-4)"
  },
  {
    "input": "input : list = [3, 1, -4, 1, 0]\noutput : list = [15, 5, 5, 0, -20]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(sort_des([3, 1, -4, 1, 0])),30)),5)",
    "io_inp": [
      3,
      1,
      -4,
      1,
      0
    ],
    "io_out": [
      15,
      5,
      5,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(sort_des(input)),30)),5)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc([-2, -3]),1)),-4),-5)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc(input),1)),-4),-5)"
  },
  {
    "input": "input : list = [-3, -4, 2, 2]\noutput : list = [2, 2, 7, 8]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(reverse([-3, -4, 2, 2]),4),11)),-1)",
    "io_inp": [
      -3,
      -4,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(reverse(input),4),11)),-1)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [5, 8]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_asc([-2, 1])),-4),-3),33)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_asc(input)),-4),-3),33)"
  },
  {
    "input": "input : list = [0, 5, -3, 2, 2]\noutput : list = [-5, -20, -30, -30, -45]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sort_asc([0, 5, -3, 2, 2]),-2),-3),1),-5)",
    "io_inp": [
      0,
      5,
      -3,
      2,
      2
    ],
    "io_out": [
      -5,
      -20,
      -30,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sort_asc(input),-2),-3),1),-5)"
  },
  {
    "input": "input : list = [-3, 2, -2, 5, 5, -2]\noutput : list = [-77, -77, -29, 35, 35, 51]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(mul_n([-3, 2, -2, 5, 5, -2],-4),4),-3)))",
    "io_inp": [
      -3,
      2,
      -2,
      5,
      5,
      -2
    ],
    "io_out": [
      -77,
      -77,
      -29,
      35,
      35,
      51
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(mul_n(input,-4),4),-3)))"
  },
  {
    "input": "input : list = [3, -5, -3, 2, -1, 5]\noutput : list = [8, 6, 4, 1, 0, -2]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc([3, -5, -3, 2, -1, 5]),2),-1),-1),-4)",
    "io_inp": [
      3,
      -5,
      -3,
      2,
      -1,
      5
    ],
    "io_out": [
      8,
      6,
      4,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc(input),2),-1),-1),-4)"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = sort_asc([2, 0, 5])",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [7, 9, 14]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(sub_n([4, -1, -3],-5)),5)),5)",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      7,
      9,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(sub_n(input,-5)),5)),5)"
  },
  {
    "input": "input : list = [4, 5, 2, -1]\noutput : list = [-2, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(sort_asc([4, 5, 2, -1]),3),28),2))",
    "io_inp": [
      4,
      5,
      2,
      -1
    ],
    "io_out": [
      -2,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(sort_asc(input),3),28),2))"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [6, 3, 2]",
    "output": "generated_output : list = add_n(take(sub_n([5, 2, 1],-2),6),-1)",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-2),6),-1)"
  },
  {
    "input": "input : list = [1, 4, 0, 1]\noutput : list = [8, 5, 4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(drop([1, 4, 0, 1],1),-4)))",
    "io_inp": [
      1,
      4,
      0,
      1
    ],
    "io_out": [
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(drop(input,1),-4)))"
  },
  {
    "input": "input : list = [2, 1, -1, -1, -4]\noutput : list = [-2, -8]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(drop([2, 1, -1, -1, -4],3),2),24)),1)",
    "io_inp": [
      2,
      1,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(drop(input,3),2),24)),1)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-10, -20]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(sort_des([0, 2])),2),-5),38)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -10,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(sort_des(input)),2),-5),38)"
  },
  {
    "input": "input : list = [0, 2, -4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(drop([0, 2, -4, 3],2)))))",
    "io_inp": [
      0,
      2,
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [7, 8, 4]",
    "output": "generated_output : list = sub_n([2, 3, -1],-5)",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      7,
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -1, -5, 0, -2]\noutput : list = [-4]",
    "output": "generated_output : list = take(take(take(sort_des(add_n([-5, -1, -5, 0, -2],-4)),1),31),43)",
    "io_inp": [
      -5,
      -1,
      -5,
      0,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(sort_des(add_n(input,-4)),1),31),43)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [1, 4, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([0, -3, 5],-4)))",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      1,
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [-1, 3, -2, 1]\noutput : list = [12, 8, 0, -8]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(add_n([-1, 3, -2, 1],-1),-1),4),40))",
    "io_inp": [
      -1,
      3,
      -2,
      1
    ],
    "io_out": [
      12,
      8,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(add_n(input,-1),-1),4),40))"
  },
  {
    "input": "input : list = [4, -3, 5, -5]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(take([4, -3, 5, -5],1)))))",
    "io_inp": [
      4,
      -3,
      5,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [3, -5, 2, 0, 1]\noutput : list = [-5, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc([3, -5, 2, 0, 1])",
    "io_inp": [
      3,
      -5,
      2,
      0,
      1
    ],
    "io_out": [
      -5,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -1, 3],1)",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 2, -4, 1, -2, 1]\noutput : list = [2, 1, 1, 1, -2, -4]",
    "output": "generated_output : list = sort_des([1, 2, -4, 1, -2, 1])",
    "io_inp": [
      1,
      2,
      -4,
      1,
      -2,
      1
    ],
    "io_out": [
      2,
      1,
      1,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sort_des([3, 2]),-2),-3)))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sort_des(input),-2),-3)))"
  },
  {
    "input": "input : list = [-3, 3, 1, -3, 0, -4]\noutput : list = [3, 7, 4, 8, 10, 4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(reverse([-3, 3, 1, -3, 0, -4]),16),-4),1),3)",
    "io_inp": [
      -3,
      3,
      1,
      -3,
      0,
      -4
    ],
    "io_out": [
      3,
      7,
      4,
      8,
      10,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(reverse(input),16),-4),1),3)"
  },
  {
    "input": "input : list = [4, -4, -1, -2]\noutput : list = [11, 3, 6, 5]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(add_n([4, -4, -1, -2],1),-2)),-4))",
    "io_inp": [
      4,
      -4,
      -1,
      -2
    ],
    "io_out": [
      11,
      3,
      6,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(add_n(input,1),-2)),-4))"
  },
  {
    "input": "input : list = [5, 5, -4, -5, 2]\noutput : list = [5, 5, 2, -4, -5]",
    "output": "generated_output : list = sort_des([5, 5, -4, -5, 2])",
    "io_inp": [
      5,
      5,
      -4,
      -5,
      2
    ],
    "io_out": [
      5,
      5,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -1, 0, -4, 2, 3]\noutput : list = [-4, -1, 0, 2, 2, 3]",
    "output": "generated_output : list = take(sort_asc([2, -1, 0, -4, 2, 3]),19)",
    "io_inp": [
      2,
      -1,
      0,
      -4,
      2,
      3
    ],
    "io_out": [
      -4,
      -1,
      0,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),19)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [9, 45]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sub_n([3, -1],-2),3)),3))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      9,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(sub_n(input,-2),3)),3))"
  },
  {
    "input": "input : list = [-1, -5, -2, -4]\noutput : list = [-4, -2, -5]",
    "output": "generated_output : list = reverse(take(drop([-1, -5, -2, -4],1),11))",
    "io_inp": [
      -1,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),11))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse([5, -5])),4))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(input)),4))"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [-2, 4, 6]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(sort_asc([-2, 1, 2]),16),5),-4),2)",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(sort_asc(input),16),5),-4),2)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [9, 6]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sort_des([3, 0]),5),1),1),41)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sort_des(input),5),1),1),41)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-10, -2]",
    "output": "generated_output : list = sub_n([-5, 3],5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, -5, -5, 0]\noutput : list = [-4, -7, -9, -9]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(sub_n([-3, -5, -5, 0],4),22))))",
    "io_inp": [
      -3,
      -5,
      -5,
      0
    ],
    "io_out": [
      -4,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(sub_n(input,4),22))))"
  },
  {
    "input": "input : list = [3, 2, -4, -1]\noutput : list = [7, 6, 3, 0]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(reverse([3, 2, -4, -1])),20),-4))",
    "io_inp": [
      3,
      2,
      -4,
      -1
    ],
    "io_out": [
      7,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(reverse(input)),20),-4))"
  },
  {
    "input": "input : list = [2, -3, -3, 4, -3]\noutput : list = [21, -39, -39, 45, -39]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(mul_n([2, -3, -3, 4, -3],3),-2),10),-2),3)",
    "io_inp": [
      2,
      -3,
      -3,
      4,
      -3
    ],
    "io_out": [
      21,
      -39,
      -39,
      45,
      -39
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(mul_n(input,3),-2),10),-2),3)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n(sub_n(mul_n([0, 4],-1),3),4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-1),3),4)"
  },
  {
    "input": "input : list = [0, -4, 5, -4]\noutput : list = [-1, -5, 4, -5]",
    "output": "generated_output : list = add_n([0, -4, 5, -4],-1)",
    "io_inp": [
      0,
      -4,
      5,
      -4
    ],
    "io_out": [
      -1,
      -5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -3, -2, -1]\noutput : list = [-3, -4, -3, -2]",
    "output": "generated_output : list = sub_n([-2, -3, -2, -1],1)",
    "io_inp": [
      -2,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 1, 3, 0, -3, -2]\noutput : list = [0, 3, 1, 3]",
    "output": "generated_output : list = drop(reverse([3, 1, 3, 0, -3, -2]),2)",
    "io_inp": [
      3,
      1,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      0,
      3,
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, -2, 5, -5, -1]\noutput : list = [8, 6, -1, 9, 5]",
    "output": "generated_output : list = sub_n(mul_n([-4, -2, 5, -5, -1],-1),-4)",
    "io_inp": [
      -4,
      -2,
      5,
      -5,
      -1
    ],
    "io_out": [
      8,
      6,
      -1,
      9,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),-4)"
  },
  {
    "input": "input : list = [3, 1, 0, 5]\noutput : list = [0, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 1, 0, 5])",
    "io_inp": [
      3,
      1,
      0,
      5
    ],
    "io_out": [
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(drop([3, 4, 3],1),10)",
    "io_inp": [
      3,
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),10)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [2, -1]",
    "output": "generated_output : list = add_n([-1, -4],3)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, 5, -4, -1]\noutput : list = [-1, 1, 2, 8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n([-2, 5, -4, -1],-2),-2)),1),-2)",
    "io_inp": [
      -2,
      5,
      -4,
      -1
    ],
    "io_out": [
      -1,
      1,
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n(input,-2),-2)),1),-2)"
  },
  {
    "input": "input : list = [-5, 4, -5, 1, 1, -5]\noutput : list = [-4, -4, -4, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(take(take(take(sub_n([-5, 4, -5, 1, 1, -5],-1),26),34),41))",
    "io_inp": [
      -5,
      4,
      -5,
      1,
      1,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -4,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sub_n(input,-1),26),34),41))"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc([-5, 0, 2])),-5),5)",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(input)),-5),5)"
  },
  {
    "input": "input : list = [-5, 4, -5, 3, -4]\noutput : list = [-48, -48, -42, 0, 6]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(sort_asc([-5, 4, -5, 3, -4]),-3),-2)),-3)",
    "io_inp": [
      -5,
      4,
      -5,
      3,
      -4
    ],
    "io_out": [
      -48,
      -48,
      -42,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(sort_asc(input),-3),-2)),-3)"
  },
  {
    "input": "input : list = [-1, 2, -2, -5, -4, 4]\noutput : list = [-2, -10]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(drop([-1, 2, -2, -5, -4, 4],4),11)),-4),2)",
    "io_inp": [
      -1,
      2,
      -2,
      -5,
      -4,
      4
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(drop(input,4),11)),-4),2)"
  },
  {
    "input": "input : list = [5, 0, 4, -4, -5]\noutput : list = [-22]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(take([5, 0, 4, -4, -5],1),-4),1),-3),19)",
    "io_inp": [
      5,
      0,
      4,
      -4,
      -5
    ],
    "io_out": [
      -22
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(take(input,1),-4),1),-3),19)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [-10, -8, -6]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(sub_n([2, 3, 1],2),-4)),14),2)",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      -10,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(sub_n(input,2),-4)),14),2)"
  },
  {
    "input": "input : list = [-4, 5, -5, -4, -3, -1]\noutput : list = [3, -3, -5, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(sort_des([-4, 5, -5, -4, -3, -1]),5))),-2)",
    "io_inp": [
      -4,
      5,
      -5,
      -4,
      -3,
      -1
    ],
    "io_out": [
      3,
      -3,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(sort_des(input),5))),-2)"
  },
  {
    "input": "input : list = [-3, 3, 3, 4, 4, -3]\noutput : list = [12, 12, 11, 11, 5, 5]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(reverse([-3, 3, 3, 4, 4, -3])),5),-3),38)",
    "io_inp": [
      -3,
      3,
      3,
      4,
      4,
      -3
    ],
    "io_out": [
      12,
      12,
      11,
      11,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(reverse(input)),5),-3),38)"
  },
  {
    "input": "input : list = [-1, 1, 5]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = sub_n([-1, 1, 5],3)",
    "io_inp": [
      -1,
      1,
      5
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, 3, 2, -4]\noutput : list = [-12, -4]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take([-1, 3, 2, -4],2)),-3)),-2)",
    "io_inp": [
      -1,
      3,
      2,
      -4
    ],
    "io_out": [
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take(input,2)),-3)),-2)"
  },
  {
    "input": "input : list = [5, -4, 4, 0, -1]\noutput : list = [-9, -6, -5, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n([5, -4, 4, 0, -1],5))",
    "io_inp": [
      5,
      -4,
      4,
      0,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,5))"
  },
  {
    "input": "input : list = [1, 5, 2, 3, -5, 2]\noutput : list = [-4, 2, 3, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n([1, 5, 2, 3, -5, 2],-1),12)))",
    "io_inp": [
      1,
      5,
      2,
      3,
      -5,
      2
    ],
    "io_out": [
      -4,
      2,
      3,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(input,-1),12)))"
  },
  {
    "input": "input : list = [-4, 2, 3, -3, -2, -2]\noutput : list = [-15, -10, -10]",
    "output": "generated_output : list = mul_n(drop([-4, 2, 3, -3, -2, -2],3),5)",
    "io_inp": [
      -4,
      2,
      3,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -15,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),5)"
  },
  {
    "input": "input : list = [0, -1, 4, -3, 2, 3]\noutput : list = [4, 6, 7, 8]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_des([0, -1, 4, -3, 2, 3]),4)),30),-4)",
    "io_inp": [
      0,
      -1,
      4,
      -3,
      2,
      3
    ],
    "io_out": [
      4,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_des(input),4)),30),-4)"
  },
  {
    "input": "input : list = [-5, -2, 0, -2, 3, -3]\noutput : list = [-6, -4, -3, -3, -1, 2]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(mul_n([-5, -2, 0, -2, 3, -3],1)),16),1))",
    "io_inp": [
      -5,
      -2,
      0,
      -2,
      3,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(mul_n(input,1)),16),1))"
  },
  {
    "input": "input : list = [4, -4, 2, 1, -2]\noutput : list = [9]",
    "output": "generated_output : list = take(sub_n([4, -4, 2, 1, -2],-5),1)",
    "io_inp": [
      4,
      -4,
      2,
      1,
      -2
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),1)"
  },
  {
    "input": "input : list = [1, 0, 1, 1, -2]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sub_n(drop(reverse(drop([1, 0, 1, 1, -2],3)),1),4),5)",
    "io_inp": [
      1,
      0,
      1,
      1,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(reverse(drop(input,3)),1),4),5)"
  },
  {
    "input": "input : list = [4, 2, 0, 4, 5]\noutput : list = [60, 48, 48, 24, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(sort_des([4, 2, 0, 4, 5]),17)),-3),-4)",
    "io_inp": [
      4,
      2,
      0,
      4,
      5
    ],
    "io_out": [
      60,
      48,
      48,
      24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(sort_des(input),17)),-3),-4)"
  },
  {
    "input": "input : list = [-5, 1, 4, 2, 4, 4]\noutput : list = [6, 6, 6, -2, -6, -30]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sub_n([-5, 1, 4, 2, 4, 4],3),-1)),-4),2)",
    "io_inp": [
      -5,
      1,
      4,
      2,
      4,
      4
    ],
    "io_out": [
      6,
      6,
      6,
      -2,
      -6,
      -30
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sub_n(input,3),-1)),-4),2)"
  },
  {
    "input": "input : list = [3, 1, 5, -5, -3]\noutput : list = [5, 3, -1, -3, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sort_des([3, 1, 5, -5, -3])))),-1)",
    "io_inp": [
      3,
      1,
      5,
      -5,
      -3
    ],
    "io_out": [
      5,
      3,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [-1, 3, 0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = drop([-1, 3, 0, 2],2)",
    "io_inp": [
      -1,
      3,
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = add_n([-3, 0, 2],-2)",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, 3, 4, 4, 5]\noutput : list = [12, 9, 9, 6]",
    "output": "generated_output : list = mul_n(reverse(add_n(drop(sub_n([1, 3, 4, 4, 5],3),1),2)),3)",
    "io_inp": [
      1,
      3,
      4,
      4,
      5
    ],
    "io_out": [
      12,
      9,
      9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(drop(sub_n(input,3),1),2)),3)"
  },
  {
    "input": "input : list = [-2, 1, -1, 2]\noutput : list = [2, 1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-2, 1, -1, 2])))",
    "io_inp": [
      -2,
      1,
      -1,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [0, -1, 1, 3]\noutput : list = [-24, -16, -8, -12]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n([0, -1, 1, 3],-1)),-4),-4)",
    "io_inp": [
      0,
      -1,
      1,
      3
    ],
    "io_out": [
      -24,
      -16,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(input,-1)),-4),-4)"
  },
  {
    "input": "input : list = [-1, 5, -2, -3, 5]\noutput : list = [-11, -9, -7, 5, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(reverse([-1, 5, -2, -3, 5]),2),-4),1))",
    "io_inp": [
      -1,
      5,
      -2,
      -3,
      5
    ],
    "io_out": [
      -11,
      -9,
      -7,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(reverse(input),2),-4),1))"
  },
  {
    "input": "input : list = [-4, -2, -5, -3, 2, 1]\noutput : list = [17, 7, 22, 12, -13, -8]",
    "output": "generated_output : list = add_n(mul_n([-4, -2, -5, -3, 2, 1],-5),-3)",
    "io_inp": [
      -4,
      -2,
      -5,
      -3,
      2,
      1
    ],
    "io_out": [
      17,
      7,
      22,
      12,
      -13,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-3)"
  },
  {
    "input": "input : list = [0, 5, 1, 4, -4]\noutput : list = [20, 16, 4, 0, -16]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(sort_asc([0, 5, 1, 4, -4]),11))),4)",
    "io_inp": [
      0,
      5,
      1,
      4,
      -4
    ],
    "io_out": [
      20,
      16,
      4,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(sort_asc(input),11))),4)"
  },
  {
    "input": "input : list = [-4, -1, 5, 4, 0]\noutput : list = [0, 8, 10, -2, -8]",
    "output": "generated_output : list = reverse(mul_n(take(take(mul_n([-4, -1, 5, 4, 0],1),13),31),2))",
    "io_inp": [
      -4,
      -1,
      5,
      4,
      0
    ],
    "io_out": [
      0,
      8,
      10,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(mul_n(input,1),13),31),2))"
  },
  {
    "input": "input : list = [-1, 1, -5, -2, 4]\noutput : list = [4, 1, -1, -2, -5]",
    "output": "generated_output : list = sort_des([-1, 1, -5, -2, 4])",
    "io_inp": [
      -1,
      1,
      -5,
      -2,
      4
    ],
    "io_out": [
      4,
      1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, 3, 3]\noutput : list = [-5, -5, 5]",
    "output": "generated_output : list = add_n(take(mul_n(sort_des(sort_asc([-2, -2, 3, 3])),-2),3),1)",
    "io_inp": [
      -2,
      -2,
      3,
      3
    ],
    "io_out": [
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_des(sort_asc(input)),-2),3),1)"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [-160, -16, 224]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(mul_n([-5, 0, 3],3)),4),4),-4)",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      -160,
      -16,
      224
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(mul_n(input,3)),4),4),-4)"
  },
  {
    "input": "input : list = [-1, 0, 5]\noutput : list = [3, 0, -15]",
    "output": "generated_output : list = mul_n(mul_n([-1, 0, 5],3),-1)",
    "io_inp": [
      -1,
      0,
      5
    ],
    "io_out": [
      3,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),-1)"
  },
  {
    "input": "input : list = [4, 1, 4, -1]\noutput : list = [-1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 1, 4, -1])",
    "io_inp": [
      4,
      1,
      4,
      -1
    ],
    "io_out": [
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-7, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([-2, 2]),5))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [0, 1, -2, -4, -3]\noutput : list = [-4, -5, -3, 0, -1]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(sub_n([0, 1, -2, -4, -3],2),-1))))",
    "io_inp": [
      0,
      1,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -5,
      -3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(sub_n(input,2),-1))))"
  },
  {
    "input": "input : list = [-2, 3, 0]\noutput : list = [2, 5]",
    "output": "generated_output : list = add_n(drop(add_n(reverse(sort_des([-2, 3, 0])),4),1),-2)",
    "io_inp": [
      -2,
      3,
      0
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(reverse(sort_des(input)),4),1),-2)"
  },
  {
    "input": "input : list = [1, -4, -2, 3]\noutput : list = [0, 2, 5, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(mul_n([1, -4, -2, 3],-1),17)),3))",
    "io_inp": [
      1,
      -4,
      -2,
      3
    ],
    "io_out": [
      0,
      2,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(mul_n(input,-1),17)),3))"
  },
  {
    "input": "input : list = [0, 0, 1, 4]\noutput : list = [3, 3, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(sub_n([0, 0, 1, 4],2),1),-4)))",
    "io_inp": [
      0,
      0,
      1,
      4
    ],
    "io_out": [
      3,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(sub_n(input,2),1),-4)))"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [7, 5, 2]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(add_n([-5, -2, 0],1),1)),1),5)",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(add_n(input,1),1)),1),5)"
  },
  {
    "input": "input : list = [5, 3, -1, 4, -4, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = take([5, 3, -1, 4, -4, 3],2)",
    "io_inp": [
      5,
      3,
      -1,
      4,
      -4,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -1, 5, 2, -1, 1]\noutput : list = [-10, -6, -6, -4, -3, 0]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(sub_n([-5, -1, 5, 2, -1, 1],5))),-1),-1)",
    "io_inp": [
      -5,
      -1,
      5,
      2,
      -1,
      1
    ],
    "io_out": [
      -10,
      -6,
      -6,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(sub_n(input,5))),-1),-1)"
  },
  {
    "input": "input : list = [-1, -5, -3, -2]\noutput : list = [8, 12, 20]",
    "output": "generated_output : list = mul_n(reverse(drop([-1, -5, -3, -2],1)),-4)",
    "io_inp": [
      -1,
      -5,
      -3,
      -2
    ],
    "io_out": [
      8,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,1)),-4)"
  },
  {
    "input": "input : list = [4, -1, -5, -2, 3]\noutput : list = [1, -4, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(take([4, -1, -5, -2, 3],3),-4),-1)))",
    "io_inp": [
      4,
      -1,
      -5,
      -2,
      3
    ],
    "io_out": [
      1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(take(input,3),-4),-1)))"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [-12, 18, 18]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(reverse([5, 5, -5]))),3),-3)",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      -12,
      18,
      18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(reverse(input))),3),-3)"
  },
  {
    "input": "input : list = [1, 3, -5, -2, -1]\noutput : list = [-5, -7, -9, -10, -13]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(add_n([1, 3, -5, -2, -1],-3),-1),-1),-3))",
    "io_inp": [
      1,
      3,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -7,
      -9,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(add_n(input,-3),-1),-1),-3))"
  },
  {
    "input": "input : list = [3, -2, -1, -4, -4, -4]\noutput : list = [-3, -8, -7, -10, -10, -10]",
    "output": "generated_output : list = sub_n(sub_n([3, -2, -1, -4, -4, -4],5),1)",
    "io_inp": [
      3,
      -2,
      -1,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -8,
      -7,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),1)"
  },
  {
    "input": "input : list = [-4, -4, 1, 2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take([-4, -4, 1, 2],1))",
    "io_inp": [
      -4,
      -4,
      1,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(drop([-1, 3, 0],1),-5)))",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(drop(input,1),-5)))"
  },
  {
    "input": "input : list = [5, -5, 3, -4, 3]\noutput : list = [0, -2, -2, -9, -10]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sort_des([5, -5, 3, -4, 3]))),5),39)",
    "io_inp": [
      5,
      -5,
      3,
      -4,
      3
    ],
    "io_out": [
      0,
      -2,
      -2,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sort_des(input))),5),39)"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [3, 1, 5]",
    "output": "generated_output : list = sub_n(reverse([0, -4, -2]),-5)",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-9, -13]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(reverse([-2, -1]),4)),-5))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(reverse(input),4)),-5))"
  },
  {
    "input": "input : list = [4, 4, 4, 2, 1, 4]\noutput : list = [13]",
    "output": "generated_output : list = add_n(drop(add_n(mul_n(drop([4, 4, 4, 2, 1, 4],3),2),2),2),3)",
    "io_inp": [
      4,
      4,
      4,
      2,
      1,
      4
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(mul_n(drop(input,3),2),2),2),3)"
  },
  {
    "input": "input : list = [-3, -3, 4, -4]\noutput : list = [-17, 7]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(drop([-3, -3, 4, -4],2)),-3),-5),24)",
    "io_inp": [
      -3,
      -3,
      4,
      -4
    ],
    "io_out": [
      -17,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(drop(input,2)),-3),-5),24)"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [-5, 2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(sub_n([-3, 4, 5],2),5))),34)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      -5,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(sub_n(input,2),5))),34)"
  },
  {
    "input": "input : list = [2, -3, -5, 3]\noutput : list = [-5, -3, 2, 3]",
    "output": "generated_output : list = take(sort_asc([2, -3, -5, 3]),15)",
    "io_inp": [
      2,
      -3,
      -5,
      3
    ],
    "io_out": [
      -5,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [5, -4, -4, 2, -4, 4]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(take([5, -4, -4, 2, -4, 4],1),-2)",
    "io_inp": [
      5,
      -4,
      -4,
      2,
      -4,
      4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-4, -4, 4, -1, 5]\noutput : list = [11, 5, 10]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(drop([-4, -4, 4, -1, 5],2),20),-3)),3)",
    "io_inp": [
      -4,
      -4,
      4,
      -1,
      5
    ],
    "io_out": [
      11,
      5,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(drop(input,2),20),-3)),3)"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [-12, -9, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(mul_n([3, 4, -2],-1),3),11)))",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      -12,
      -9,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(mul_n(input,-1),3),11)))"
  },
  {
    "input": "input : list = [1, -1, 2, -3, 3, -3]\noutput : list = [-4, 2, -4, 1, -2, 0]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n([1, -1, 2, -3, 3, -3],1)),1),1)",
    "io_inp": [
      1,
      -1,
      2,
      -3,
      3,
      -3
    ],
    "io_out": [
      -4,
      2,
      -4,
      1,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(input,1)),1),1)"
  },
  {
    "input": "input : list = [-1, 3, -1, -5, 2]\noutput : list = [-23, -7, -7, 5, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n([-1, 3, -1, -5, 2],4))),6),3)",
    "io_inp": [
      -1,
      3,
      -1,
      -5,
      2
    ],
    "io_out": [
      -23,
      -7,
      -7,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n(input,4))),6),3)"
  },
  {
    "input": "input : list = [5, -2, 2, 3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(reverse(drop([5, -2, 2, 3, 0],3)),28)",
    "io_inp": [
      5,
      -2,
      2,
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(drop(input,3)),28)"
  },
  {
    "input": "input : list = [0, 4, -1, -2, 2]\noutput : list = [4, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc(take([0, 4, -1, -2, 2],3)))",
    "io_inp": [
      0,
      4,
      -1,
      -2,
      2
    ],
    "io_out": [
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,3)))"
  },
  {
    "input": "input : list = [-2, -2, 2, 1]\noutput : list = [2, 2, 5, 6]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take(reverse([-2, -2, 2, 1]),8))),-4)",
    "io_inp": [
      -2,
      -2,
      2,
      1
    ],
    "io_out": [
      2,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(reverse(input),8))),-4)"
  },
  {
    "input": "input : list = [-1, -4, -4]\noutput : list = [-4, -4, -1]",
    "output": "generated_output : list = reverse([-1, -4, -4])",
    "io_inp": [
      -1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, 3, 1, 1, 0]\noutput : list = [4, 6, 7, 7, 9, 9]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des([3, -2, 3, 1, 1, 0]),-1)),5)",
    "io_inp": [
      3,
      -2,
      3,
      1,
      1,
      0
    ],
    "io_out": [
      4,
      6,
      7,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(input),-1)),5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(add_n([3, -4],1)),-1),18))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(add_n(input,1)),-1),18))"
  },
  {
    "input": "input : list = [-3, 2, 1, 5]\noutput : list = [5, 1, 2, -3]",
    "output": "generated_output : list = reverse([-3, 2, 1, 5])",
    "io_inp": [
      -3,
      2,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2, -3, -3]\noutput : list = [1, 1, 5, 6]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(add_n([1, 2, -3, -3],-1),-1)),-1),-5)",
    "io_inp": [
      1,
      2,
      -3,
      -3
    ],
    "io_out": [
      1,
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(add_n(input,-1),-1)),-1),-5)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([-1, 0, -5],1)",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -2, -2, 1]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(take([0, -2, -2, 1],1)),4)),5)",
    "io_inp": [
      0,
      -2,
      -2,
      1
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(take(input,1)),4)),5)"
  },
  {
    "input": "input : list = [-5, -2, -3, -3, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, -2, -3, -3, 1],1))",
    "io_inp": [
      -5,
      -2,
      -3,
      -3,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, 5, -1, -4, 4, -5]\noutput : list = [4, 3, 3, -2, -5, -6]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_asc([4, 5, -1, -4, 4, -5])),-1)),1)",
    "io_inp": [
      4,
      5,
      -1,
      -4,
      4,
      -5
    ],
    "io_out": [
      4,
      3,
      3,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_asc(input)),-1)),1)"
  },
  {
    "input": "input : list = [4, -4, 2, 2]\noutput : list = [8, 0, 6, 6]",
    "output": "generated_output : list = sub_n([4, -4, 2, 2],-4)",
    "io_inp": [
      4,
      -4,
      2,
      2
    ],
    "io_out": [
      8,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, 0, 3, 4, 0, 2]\noutput : list = [12, 12, 12, 18, 21, 24]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n([0, 0, 3, 4, 0, 2],-4),3)))",
    "io_inp": [
      0,
      0,
      3,
      4,
      0,
      2
    ],
    "io_out": [
      12,
      12,
      12,
      18,
      21,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(input,-4),3)))"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(sort_des([-3, -5, 1])),1)))",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [-3, 1, 4]\noutput : list = [-6, -2, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(mul_n([-3, 1, 4],1),13))),3)",
    "io_inp": [
      -3,
      1,
      4
    ],
    "io_out": [
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(mul_n(input,1),13))),3)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [5, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(sort_des([-2, 5, -4])))))",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 1, 5, 0]\noutput : list = [29, 29, 17, 14]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sub_n([5, 1, 5, 0],-1),-4),3)),1)",
    "io_inp": [
      5,
      1,
      5,
      0
    ],
    "io_out": [
      29,
      29,
      17,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sub_n(input,-1),-4),3)),1)"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-8, -14, -10]",
    "output": "generated_output : list = reverse(take(reverse(add_n(mul_n([-2, -5, -3],2),-4)),35))",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -14,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(mul_n(input,2),-4)),35))"
  },
  {
    "input": "input : list = [5, 4, 3, 2, -1, 4]\noutput : list = [-18, -15, -12, -9, 0, -15]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n([5, 4, 3, 2, -1, 4],-4),-2),-2),-5),-3)",
    "io_inp": [
      5,
      4,
      3,
      2,
      -1,
      4
    ],
    "io_out": [
      -18,
      -15,
      -12,
      -9,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n(input,-4),-2),-2),-5),-3)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(take(add_n([3, 1],-3),7),17)))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(take(add_n(input,-3),7),17)))"
  },
  {
    "input": "input : list = [1, 0, 4, 3]\noutput : list = [-10, -20, 20, 10]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(add_n([1, 0, 4, 3],-2),2)),-1),5)",
    "io_inp": [
      1,
      0,
      4,
      3
    ],
    "io_out": [
      -10,
      -20,
      20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(add_n(input,-2),2)),-1),5)"
  },
  {
    "input": "input : list = [2, -1, -5, -4, 4]\noutput : list = [-12, 12]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(drop(drop([2, -1, -5, -4, 4],1),2))),3)",
    "io_inp": [
      2,
      -1,
      -5,
      -4,
      4
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(drop(drop(input,1),2))),3)"
  },
  {
    "input": "input : list = [-5, -4, -1, 3]\noutput : list = [-8, -6, 0, 8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc([-5, -4, -1, 3]),1),2))",
    "io_inp": [
      -5,
      -4,
      -1,
      3
    ],
    "io_out": [
      -8,
      -6,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(input),1),2))"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [19, 7, -9]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_des([2, -2, 5]),4)),-3),4)",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      19,
      7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_des(input),4)),-3),4)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(take(sort_des([-4, -2]),11))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),11))"
  },
  {
    "input": "input : list = [-3, 5, 1, -1]\noutput : list = [100, 20, -20, -60]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n([-3, 5, 1, -1],5)),9),4)",
    "io_inp": [
      -3,
      5,
      1,
      -1
    ],
    "io_out": [
      100,
      20,
      -20,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(input,5)),9),4)"
  },
  {
    "input": "input : list = [2, 0, 1, 0]\noutput : list = [-5, -5, -4, -3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(sub_n([2, 0, 1, 0],3),-1)),35),3)",
    "io_inp": [
      2,
      0,
      1,
      0
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(sub_n(input,3),-1)),35),3)"
  },
  {
    "input": "input : list = [3, -1, -1, 2]\noutput : list = [10, 9, 6, 6]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(sort_asc([3, -1, -1, 2]),3),4)))",
    "io_inp": [
      3,
      -1,
      -1,
      2
    ],
    "io_out": [
      10,
      9,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(sort_asc(input),3),4)))"
  },
  {
    "input": "input : list = [-2, 2, 3, 5]\noutput : list = [5, 3, 2, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc([-2, 2, 3, 5])),15)))",
    "io_inp": [
      -2,
      2,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc(input)),15)))"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-47, -17, -42]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n([-4, 1, -5],4),5)),-2)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -47,
      -17,
      -42
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(input,4),5)),-2)"
  },
  {
    "input": "input : list = [-5, 4, 3, 2, 1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(take([-5, 4, 3, 2, 1],1)),-1),1))",
    "io_inp": [
      -5,
      4,
      3,
      2,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(take(input,1)),-1),1))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sub_n([-4, -5],1)),-1)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sub_n(input,1)),-1)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n([-4, 2],-3)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, -5, 4, -2, 4, 0]\noutput : list = [4, 4, 2, 0, -2, -5]",
    "output": "generated_output : list = take(sort_des([2, -5, 4, -2, 4, 0]),14)",
    "io_inp": [
      2,
      -5,
      4,
      -2,
      4,
      0
    ],
    "io_out": [
      4,
      4,
      2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [3, 3, 5, -3, 3, -2]\noutput : list = [8, 6, 6, 6, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(add_n([3, 3, 5, -3, 3, -2],5)),25),-2))",
    "io_inp": [
      3,
      3,
      5,
      -3,
      3,
      -2
    ],
    "io_out": [
      8,
      6,
      6,
      6,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(add_n(input,5)),25),-2))"
  },
  {
    "input": "input : list = [-2, 4, 2, -2, -4, 5]\noutput : list = [-3, 3, 1, -3, -5, 4]",
    "output": "generated_output : list = sub_n(add_n([-2, 4, 2, -2, -4, 5],-5),-4)",
    "io_inp": [
      -2,
      4,
      2,
      -2,
      -4,
      5
    ],
    "io_out": [
      -3,
      3,
      1,
      -3,
      -5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),-4)"
  },
  {
    "input": "input : list = [0, 4, -1, -1, 2]\noutput : list = [2, 5, 5, 0, 4]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(add_n([0, 4, -1, -1, 2],-4)))),-1)",
    "io_inp": [
      0,
      4,
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      5,
      5,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(add_n(input,-4)))),-1)"
  },
  {
    "input": "input : list = [1, 1, 4, -2, 2, -2]\noutput : list = [-2, -2, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(drop([1, 1, 4, -2, 2, -2],3))))",
    "io_inp": [
      1,
      1,
      4,
      -2,
      2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(drop(input,3))))"
  },
  {
    "input": "input : list = [0, -1, 5, -3, -5]\noutput : list = [20, 5, 2, -4, -10]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(mul_n([0, -1, 5, -3, -5],3),2)),-2),-5)",
    "io_inp": [
      0,
      -1,
      5,
      -3,
      -5
    ],
    "io_out": [
      20,
      5,
      2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(mul_n(input,3),2)),-2),-5)"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop([-5, 3, 4],1)",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 1, 3, 2, -5]\noutput : list = [4, 3, 2, 1, -5]",
    "output": "generated_output : list = take(sort_des([4, 1, 3, 2, -5]),6)",
    "io_inp": [
      4,
      1,
      3,
      2,
      -5
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),6)"
  },
  {
    "input": "input : list = [3, 5, -3, 4]\noutput : list = [-9, 21, 26, 31]",
    "output": "generated_output : list = sort_asc(reverse(add_n(mul_n(sub_n([3, 5, -3, 4],-2),5),-4)))",
    "io_inp": [
      3,
      5,
      -3,
      4
    ],
    "io_out": [
      -9,
      21,
      26,
      31
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(mul_n(sub_n(input,-2),5),-4)))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [7, 9]",
    "output": "generated_output : list = take(take(add_n(reverse(mul_n([-4, -3],-2)),1),22),12)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(mul_n(input,-2)),1),22),12)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-4, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_asc([-3, -2, 1]),-5))))",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_asc(input),-5))))"
  },
  {
    "input": "input : list = [1, 0, 1, 1]\noutput : list = [0, 4, 4, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_des([1, 0, 1, 1]),4))",
    "io_inp": [
      1,
      0,
      1,
      1
    ],
    "io_out": [
      0,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [-15]",
    "output": "generated_output : list = take(mul_n(add_n([3, 1, 1],2),-3),1)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,2),-3),1)"
  },
  {
    "input": "input : list = [-5, -1, -5, 5, 0, 2]\noutput : list = [5, 2, 0, -1, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -1, -5, 5, 0, 2])",
    "io_inp": [
      -5,
      -1,
      -5,
      5,
      0,
      2
    ],
    "io_out": [
      5,
      2,
      0,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -4, 5, 2, -4, -1]\noutput : list = [-2, 4, -8, -14, 4, -14]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(add_n([5, -4, 5, 2, -4, -1],1)),20),1),-2)",
    "io_inp": [
      5,
      -4,
      5,
      2,
      -4,
      -1
    ],
    "io_out": [
      -2,
      4,
      -8,
      -14,
      4,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(add_n(input,1)),20),1),-2)"
  },
  {
    "input": "input : list = [-1, -4, -3, -2, -1]\noutput : list = [8, 6, 4, 2, 2]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(mul_n([-1, -4, -3, -2, -1],1)),-2)),20)",
    "io_inp": [
      -1,
      -4,
      -3,
      -2,
      -1
    ],
    "io_out": [
      8,
      6,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(mul_n(input,1)),-2)),20)"
  },
  {
    "input": "input : list = [-3, 3, 0, -5, -2]\noutput : list = [-4, 2, 6, 8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sort_asc([-3, 3, 0, -5, -2])),1),-2))",
    "io_inp": [
      -3,
      3,
      0,
      -5,
      -2
    ],
    "io_out": [
      -4,
      2,
      6,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sort_asc(input)),1),-2))"
  },
  {
    "input": "input : list = [3, 3, 4, 1, -5, -3]\noutput : list = [1, 3, 3, 4]",
    "output": "generated_output : list = take(take(drop(take(sort_asc([3, 3, 4, 1, -5, -3]),20),2),30),39)",
    "io_inp": [
      3,
      3,
      4,
      1,
      -5,
      -3
    ],
    "io_out": [
      1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(take(drop(take(sort_asc(input),20),2),30),39)"
  },
  {
    "input": "input : list = [-5, 1, 5, -1, 4]\noutput : list = [5, 4, 1, -1, -5]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(sort_des([-5, 1, 5, -1, 4])),31)))",
    "io_inp": [
      -5,
      1,
      5,
      -1,
      4
    ],
    "io_out": [
      5,
      4,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(sort_des(input)),31)))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-88, 62]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_des([4, -2]),5),-3),-5),-3)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -88,
      62
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(sort_des(input),5),-3),-5),-3)"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [-25, -25, -5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(sort_asc([-5, -5, -1]),19)),5))",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      -25,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(sort_asc(input),19)),5))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = add_n([-4, 0],3)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-11, -9, -2]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(add_n([-5, -3, 4],2),-5),-4),15),-1)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -11,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(add_n(input,2),-5),-4),15),-1)"
  },
  {
    "input": "input : list = [-4, 4, 4, 3, 4, 3]\noutput : list = [3, 4, 3, 4, 4, -4]",
    "output": "generated_output : list = reverse([-4, 4, 4, 3, 4, 3])",
    "io_inp": [
      -4,
      4,
      4,
      3,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      3,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, 0, 1, 3, 1]\noutput : list = [6, 18, 6, 0, -18, -6]",
    "output": "generated_output : list = take(take(mul_n(mul_n(reverse([-1, -3, 0, 1, 3, 1]),2),3),30),31)",
    "io_inp": [
      -1,
      -3,
      0,
      1,
      3,
      1
    ],
    "io_out": [
      6,
      18,
      6,
      0,
      -18,
      -6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(reverse(input),2),3),30),31)"
  },
  {
    "input": "input : list = [4, 3, -1, 5]\noutput : list = [10]",
    "output": "generated_output : list = add_n(drop(reverse(sub_n(sub_n([4, 3, -1, 5],-1),-2)),3),3)",
    "io_inp": [
      4,
      3,
      -1,
      5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(sub_n(sub_n(input,-1),-2)),3),3)"
  },
  {
    "input": "input : list = [1, 2, 2, -4]\noutput : list = [-7, -1, -1, -2]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sub_n([1, 2, 2, -4],-1),4),-4),4))",
    "io_inp": [
      1,
      2,
      2,
      -4
    ],
    "io_out": [
      -7,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sub_n(input,-1),4),-4),4))"
  },
  {
    "input": "input : list = [0, 3, -4]\noutput : list = [-8, -4, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n([0, 3, -4],-4))))",
    "io_inp": [
      0,
      3,
      -4
    ],
    "io_out": [
      -8,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(input,-4))))"
  },
  {
    "input": "input : list = [-2, 5, 1, 1, -2, 2]\noutput : list = [-19, -10, -7, -7, 2, 2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(mul_n([-2, 5, 1, 1, -2, 2],-3)),4)))",
    "io_inp": [
      -2,
      5,
      1,
      1,
      -2,
      2
    ],
    "io_out": [
      -19,
      -10,
      -7,
      -7,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(mul_n(input,-3)),4)))"
  },
  {
    "input": "input : list = [-4, 1, 3, -4, 5, -1]\noutput : list = [-3, -3, 0, 2, 4, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sub_n([-4, 1, 3, -4, 5, -1],-1)))))",
    "io_inp": [
      -4,
      1,
      3,
      -4,
      5,
      -1
    ],
    "io_out": [
      -3,
      -3,
      0,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sub_n(input,-1)))))"
  },
  {
    "input": "input : list = [-1, -3, -2, 0, 1, -2]\noutput : list = [-3, -2, 0, 1, -2]",
    "output": "generated_output : list = drop([-1, -3, -2, 0, 1, -2],1)",
    "io_inp": [
      -1,
      -3,
      -2,
      0,
      1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [-2, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n([2, 3, -4],2)))",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,2)))"
  },
  {
    "input": "input : list = [-3, -3, -3, -2, -3]\noutput : list = [-3, -2, -3, -3, -3]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(reverse([-3, -3, -3, -2, -3])))))",
    "io_inp": [
      -3,
      -3,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [5, -3, -1, -5, 5, 5]\noutput : list = [40, 40, 40, -20, -40, -60]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(mul_n([5, -3, -1, -5, 5, 5],-5)),2),-3),-2)",
    "io_inp": [
      5,
      -3,
      -1,
      -5,
      5,
      5
    ],
    "io_out": [
      40,
      40,
      40,
      -20,
      -40,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(mul_n(input,-5)),2),-3),-2)"
  },
  {
    "input": "input : list = [-3, 5, -2, -1, -5]\noutput : list = [-44, -8, 4, 76]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(drop([-3, 5, -2, -1, -5],1),3),4),4))",
    "io_inp": [
      -3,
      5,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -44,
      -8,
      4,
      76
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(drop(input,1),3),4),4))"
  },
  {
    "input": "input : list = [-4, -5, -2, 4]\noutput : list = [1, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(drop([-4, -5, -2, 4],2)))),-3)",
    "io_inp": [
      -4,
      -5,
      -2,
      4
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(drop(input,2)))),-3)"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(take([-5, 0, -5],1),2),4)",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(take(input,1),2),4)"
  },
  {
    "input": "input : list = [4, 1, 0, 1]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take(take(sort_des(take([4, 1, 0, 1],1)),17),16),-3)",
    "io_inp": [
      4,
      1,
      0,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(take(input,1)),17),16),-3)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(sort_des([-3, 3, 2]),-1)),8))",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(sort_des(input),-1)),8))"
  },
  {
    "input": "input : list = [4, -2, 4, -5]\noutput : list = [-4, -1, 5, 5]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(sort_des([4, -2, 4, -5]),-3)),-2))",
    "io_inp": [
      4,
      -2,
      4,
      -5
    ],
    "io_out": [
      -4,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(sort_des(input),-3)),-2))"
  },
  {
    "input": "input : list = [3, -5, 5, -4, -5, -5]\noutput : list = [-12, -12, -12, -9, 12, 18]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sub_n([3, -5, 5, -4, -5, -5],-1),1))),3)",
    "io_inp": [
      3,
      -5,
      5,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -12,
      -12,
      -12,
      -9,
      12,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sub_n(input,-1),1))),3)"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [15, -15, -12]",
    "output": "generated_output : list = mul_n([5, -5, -4],3)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      15,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-16, 29]",
    "output": "generated_output : list = reverse(add_n(take(sub_n(mul_n([5, -4],5),-1),20),3))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -16,
      29
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sub_n(mul_n(input,5),-1),20),3))"
  },
  {
    "input": "input : list = [4, -5, 1, 3]\noutput : list = [10, 9, 7, 1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(sort_asc([4, -5, 1, 3]),7),-2)),-4)",
    "io_inp": [
      4,
      -5,
      1,
      3
    ],
    "io_out": [
      10,
      9,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(sort_asc(input),7),-2)),-4)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [10, 4]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(sub_n([3, -3],-4),-4),4),5))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(sub_n(input,-4),-4),4),5))"
  },
  {
    "input": "input : list = [-1, -5, -2, 2]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = take(sort_des([-1, -5, -2, 2]),3)",
    "io_inp": [
      -1,
      -5,
      -2,
      2
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),3)"
  },
  {
    "input": "input : list = [1, -2, -1, 0]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(take([1, -2, -1, 0],1),2)",
    "io_inp": [
      1,
      -2,
      -1,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),2)"
  },
  {
    "input": "input : list = [0, 4, -2]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(take([0, 4, -2],1)),14)",
    "io_inp": [
      0,
      4,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,1)),14)"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(sort_asc([1, -3, 5]))),1),3)",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(sort_asc(input))),1),3)"
  },
  {
    "input": "input : list = [1, 4, 4, -5, -2]\noutput : list = [4, 4, 1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(sub_n([1, 4, 4, -5, -2],-2)),-2)))",
    "io_inp": [
      1,
      4,
      4,
      -5,
      -2
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(sub_n(input,-2)),-2)))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [1, 8]",
    "output": "generated_output : list = sub_n(sub_n([-5, 2],-3),-3)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-3)"
  },
  {
    "input": "input : list = [0, 4, -4, -1, 0]\noutput : list = [-6, -3, -2, -2, 2]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(sort_des([0, 4, -4, -1, 0])),27)),-2)",
    "io_inp": [
      0,
      4,
      -4,
      -1,
      0
    ],
    "io_out": [
      -6,
      -3,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(sort_des(input)),27)),-2)"
  },
  {
    "input": "input : list = [1, 4, -3, -2, -3, 1]\noutput : list = [3, -1, 0, -1, 6, 3]",
    "output": "generated_output : list = add_n(reverse([1, 4, -3, -2, -3, 1]),2)",
    "io_inp": [
      1,
      4,
      -3,
      -2,
      -3,
      1
    ],
    "io_out": [
      3,
      -1,
      0,
      -1,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-7, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(sort_des([5, -2])))),5)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [-4, -7]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(drop([2, -2, 1],1))),5))",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(drop(input,1))),5))"
  },
  {
    "input": "input : list = [4, -2, -3, 3, 3, -3]\noutput : list = [4, -2, -3]",
    "output": "generated_output : list = take([4, -2, -3, 3, 3, -3],3)",
    "io_inp": [
      4,
      -2,
      -3,
      3,
      3,
      -3
    ],
    "io_out": [
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, 4, 4, 1, -3]\noutput : list = [4, 4, 1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(reverse([-1, 4, 4, 1, -3])))))",
    "io_inp": [
      -1,
      4,
      4,
      1,
      -3
    ],
    "io_out": [
      4,
      4,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [4, 2, -4, 5]\noutput : list = [-6, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(add_n([4, 2, -4, 5],-2))",
    "io_inp": [
      4,
      2,
      -4,
      5
    ],
    "io_out": [
      -6,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [-1, -2, 4, 0, 0]\noutput : list = [-3, -4, 2, -2, -2]",
    "output": "generated_output : list = sub_n([-1, -2, 4, 0, 0],2)",
    "io_inp": [
      -1,
      -2,
      4,
      0,
      0
    ],
    "io_out": [
      -3,
      -4,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, 4, -2, -3, -4]\noutput : list = [-22, -18, -14, -10, 14]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(sub_n([-5, 4, -2, -3, -4],1),4),18)),-2)",
    "io_inp": [
      -5,
      4,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -22,
      -18,
      -14,
      -10,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(sub_n(input,1),4),18)),-2)"
  },
  {
    "input": "input : list = [3, 5, 0, 3]\noutput : list = [60, -30, -30, -90]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(add_n([3, 5, 0, 3],-2),-5)),-3),-2)",
    "io_inp": [
      3,
      5,
      0,
      3
    ],
    "io_out": [
      60,
      -30,
      -30,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(add_n(input,-2),-5)),-3),-2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-8, -6]",
    "output": "generated_output : list = take(sub_n(take(add_n(sort_asc([-3, -5]),1),2),4),25)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(sort_asc(input),1),2),4),25)"
  },
  {
    "input": "input : list = [0, 3, 2, 0, 2]\noutput : list = [3, 2, 2, 0, 0]",
    "output": "generated_output : list = sort_des(sort_des([0, 3, 2, 0, 2]))",
    "io_inp": [
      0,
      3,
      2,
      0,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [-9, -9, 6]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_asc([2, -3, 2])),1)),-3)",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      -9,
      -9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_asc(input)),1)),-3)"
  },
  {
    "input": "input : list = [1, -5, -3, -2]\noutput : list = [-2, 10, 6, 4]",
    "output": "generated_output : list = mul_n([1, -5, -3, -2],-2)",
    "io_inp": [
      1,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -2,
      10,
      6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, -5, -1, 0, -3, 2]\noutput : list = [-5, -3, -1, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([5, -5, -1, 0, -3, 2])",
    "io_inp": [
      5,
      -5,
      -1,
      0,
      -3,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0, 3, -5]\noutput : list = [25, -15, 0, -5]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(reverse([1, 0, 3, -5]),1),17),-5),-5)",
    "io_inp": [
      1,
      0,
      3,
      -5
    ],
    "io_out": [
      25,
      -15,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(reverse(input),1),17),-5),-5)"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [-5]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(take([-5, -2, -5],1),1))),6)",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(take(input,1),1))),6)"
  },
  {
    "input": "input : list = [-3, -3, 5, -3, 0, -4]\noutput : list = [18, 13, 13, 13, -2, -27]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(mul_n([-3, -3, 5, -3, 0, -4],-5)),-1),1),2)",
    "io_inp": [
      -3,
      -3,
      5,
      -3,
      0,
      -4
    ],
    "io_out": [
      18,
      13,
      13,
      13,
      -2,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(mul_n(input,-5)),-1),1),2)"
  },
  {
    "input": "input : list = [2, 0, 3, 3, -3, 4]\noutput : list = [-45, 0, 30, 45, 45, 60]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([2, 0, 3, 3, -3, 4]),-5),-3)",
    "io_inp": [
      2,
      0,
      3,
      3,
      -3,
      4
    ],
    "io_out": [
      -45,
      0,
      30,
      45,
      45,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),-5),-3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [36, 20]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(reverse([5, 1]),-4),2)),2)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      36,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(reverse(input),-4),2)),2)"
  },
  {
    "input": "input : list = [5, -5, 2, -2]\noutput : list = [-3, -6, -10, -13]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_des([5, -5, 2, -2]),1),4)),-3)",
    "io_inp": [
      5,
      -5,
      2,
      -2
    ],
    "io_out": [
      -3,
      -6,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(sort_des(input),1),4)),-3)"
  },
  {
    "input": "input : list = [2, 2, 5, 5]\noutput : list = [7, 7, 4, 4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des([2, 2, 5, 5]),1),-3))",
    "io_inp": [
      2,
      2,
      5,
      5
    ],
    "io_out": [
      7,
      7,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(input),1),-3))"
  },
  {
    "input": "input : list = [5, -2, 1, 2, 1, 3]\noutput : list = [-2, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(take([5, -2, 1, 2, 1, 3],4))",
    "io_inp": [
      5,
      -2,
      1,
      2,
      1,
      3
    ],
    "io_out": [
      -2,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,4))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = reverse(sort_asc([4, -1]))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 2, -5, 2, 3, -4]\noutput : list = [3, 4, 6]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(sort_des([5, 2, -5, 2, 3, -4]),3)),1))",
    "io_inp": [
      5,
      2,
      -5,
      2,
      3,
      -4
    ],
    "io_out": [
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(sort_des(input),3)),1))"
  },
  {
    "input": "input : list = [5, -3, 4, 3, 1, 4]\noutput : list = [-25, -20, -20, -15, -5, 15]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n([5, -3, 4, 3, 1, 4],-5))),18)",
    "io_inp": [
      5,
      -3,
      4,
      3,
      1,
      4
    ],
    "io_out": [
      -25,
      -20,
      -20,
      -15,
      -5,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(input,-5))),18)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [1, 4, 7]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(reverse([-1, 2, -4]),-2),16)),3)",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(reverse(input),-2),16)),3)"
  },
  {
    "input": "input : list = [-2, -4, -2, 5]\noutput : list = [10, 3, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(reverse([-2, -4, -2, 5]),3))),-2)",
    "io_inp": [
      -2,
      -4,
      -2,
      5
    ],
    "io_out": [
      10,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(reverse(input),3))),-2)"
  },
  {
    "input": "input : list = [3, 5, 2, 2, -5]\noutput : list = [-14, -7, -7]",
    "output": "generated_output : list = take(add_n(take(sort_asc(add_n([3, 5, 2, 2, -5],-5)),3),-4),10)",
    "io_inp": [
      3,
      5,
      2,
      2,
      -5
    ],
    "io_out": [
      -14,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(add_n(input,-5)),3),-4),10)"
  },
  {
    "input": "input : list = [3, 3, -5, 1, 3, 5]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 3, -5, 1, 3, 5],1)",
    "io_inp": [
      3,
      3,
      -5,
      1,
      3,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -1, -3, -3, 4]\noutput : list = [0, 1, -1, -1, 6]",
    "output": "generated_output : list = add_n([-2, -1, -3, -3, 4],2)",
    "io_inp": [
      -2,
      -1,
      -3,
      -3,
      4
    ],
    "io_out": [
      0,
      1,
      -1,
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, 0, 5, 2]\noutput : list = [1, -2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(drop([-4, 0, 5, 2],2)),-3)),-1)",
    "io_inp": [
      -4,
      0,
      5,
      2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(drop(input,2)),-3)),-1)"
  },
  {
    "input": "input : list = [-1, 3, 1, -3]\noutput : list = [-5, -1, -3, -7]",
    "output": "generated_output : list = reverse(add_n(add_n(take(reverse([-1, 3, 1, -3]),19),-1),-3))",
    "io_inp": [
      -1,
      3,
      1,
      -3
    ],
    "io_out": [
      -5,
      -1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(reverse(input),19),-1),-3))"
  },
  {
    "input": "input : list = [1, -5, 4, 3, 0]\noutput : list = [3, -3, 6, 5, 2]",
    "output": "generated_output : list = add_n(add_n([1, -5, 4, 3, 0],5),-3)",
    "io_inp": [
      1,
      -5,
      4,
      3,
      0
    ],
    "io_out": [
      3,
      -3,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [5, -1, 5, 4, 1, 5]\noutput : list = [-1, 1, 4, 5, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([5, -1, 5, 4, 1, 5]))",
    "io_inp": [
      5,
      -1,
      5,
      4,
      1,
      5
    ],
    "io_out": [
      -1,
      1,
      4,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 1, 1, 4]\noutput : list = [-28, -10, -10, 26]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(sort_des([-5, 1, 1, 4]),-2),3),3),5)",
    "io_inp": [
      -5,
      1,
      1,
      4
    ],
    "io_out": [
      -28,
      -10,
      -10,
      26
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(sort_des(input),-2),3),3),5)"
  },
  {
    "input": "input : list = [3, 5, 4, 0]\noutput : list = [20, 18, 16, 10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(add_n([3, 5, 4, 0],5),7))),2)",
    "io_inp": [
      3,
      5,
      4,
      0
    ],
    "io_out": [
      20,
      18,
      16,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(add_n(input,5),7))),2)"
  },
  {
    "input": "input : list = [-2, 2, 4]\noutput : list = [0, 4, 6]",
    "output": "generated_output : list = sub_n([-2, 2, 4],-2)",
    "io_inp": [
      -2,
      2,
      4
    ],
    "io_out": [
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(drop([-5, 1, 4],1)),10)))",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(drop(input,1)),10)))"
  },
  {
    "input": "input : list = [-5, -4, -3, 2, -3, 1]\noutput : list = [16, 20, 24, 44, 24, 40]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(sub_n([-5, -4, -3, 2, -3, 1],-2),-1),1),-5),4)",
    "io_inp": [
      -5,
      -4,
      -3,
      2,
      -3,
      1
    ],
    "io_out": [
      16,
      20,
      24,
      44,
      24,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(sub_n(input,-2),-1),1),-5),4)"
  },
  {
    "input": "input : list = [2, -1, 4, 2]\noutput : list = [-8, -6, -11, -8]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(add_n([2, -1, 4, 2],-1)),-5),24),4)",
    "io_inp": [
      2,
      -1,
      4,
      2
    ],
    "io_out": [
      -8,
      -6,
      -11,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(add_n(input,-1)),-5),24),4)"
  },
  {
    "input": "input : list = [5, 4, 1, 5]\noutput : list = [6, 0, -2, -2]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(mul_n([5, 4, 1, 5],-2)),4),-5),1)",
    "io_inp": [
      5,
      4,
      1,
      5
    ],
    "io_out": [
      6,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(mul_n(input,-2)),4),-5),1)"
  },
  {
    "input": "input : list = [-2, 3, 1, 0]\noutput : list = [-3, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(take([-2, 3, 1, 0],2),-5)),-1))",
    "io_inp": [
      -2,
      3,
      1,
      0
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(take(input,2),-5)),-1))"
  },
  {
    "input": "input : list = [0, 0, 0, -4, 3, 1]\noutput : list = [-4, 0, 0, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([0, 0, 0, -4, 3, 1])",
    "io_inp": [
      0,
      0,
      0,
      -4,
      3,
      1
    ],
    "io_out": [
      -4,
      0,
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1, 2, -1]\noutput : list = [0, -60, -60, -120]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sub_n([-4, -1, 2, -1],2),-4))),-5)",
    "io_inp": [
      -4,
      -1,
      2,
      -1
    ],
    "io_out": [
      0,
      -60,
      -60,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(sub_n(input,2),-4))),-5)"
  },
  {
    "input": "input : list = [2, 1, -4, -1, -5, 2]\noutput : list = [2, -5, -1, -4, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, -4, -1, -5, 2])",
    "io_inp": [
      2,
      1,
      -4,
      -1,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -1,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1, -1, 1]\noutput : list = [2, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(take(take([-3, 1, -1, 1],2),8)),5),31)",
    "io_inp": [
      -3,
      1,
      -1,
      1
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(take(input,2),8)),5),31)"
  },
  {
    "input": "input : list = [-2, -5, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(take([-2, -5, -2],1)),27),-3),-4)",
    "io_inp": [
      -2,
      -5,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(take(input,1)),27),-3),-4)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [5, 3]",
    "output": "generated_output : list = take(reverse(add_n(drop(sort_asc([0, 2, 0]),1),3)),12)",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(drop(sort_asc(input),1),3)),12)"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-20, -12, 16]",
    "output": "generated_output : list = mul_n([-5, -3, 4],4)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -20,
      -12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [9, -6]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(reverse([3, -2]),10)),3))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(reverse(input),10)),3))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [0, -9]",
    "output": "generated_output : list = sub_n([5, -4],5)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, -1, -1, 4, 5]\noutput : list = [8, 4, 4, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_des([-2, -1, -1, 4, 5]))),-4))",
    "io_inp": [
      -2,
      -1,
      -1,
      4,
      5
    ],
    "io_out": [
      8,
      4,
      4,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(take(reverse([-5, 0]),6)),4))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(reverse(input),6)),4))"
  },
  {
    "input": "input : list = [0, 5, 2, 5, 2]\noutput : list = [2, 7, 4, 7, 4]",
    "output": "generated_output : list = add_n([0, 5, 2, 5, 2],2)",
    "io_inp": [
      0,
      5,
      2,
      5,
      2
    ],
    "io_out": [
      2,
      7,
      4,
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 2, 3, -5, 3, 2]\noutput : list = [135, 75, 105, -135, 105, 75]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n([4, 2, 3, -5, 3, 2],-5),-2),5),3)",
    "io_inp": [
      4,
      2,
      3,
      -5,
      3,
      2
    ],
    "io_out": [
      135,
      75,
      105,
      -135,
      105,
      75
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(input,-5),-2),5),3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des([-1, -2])",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [3, -2]",
    "output": "generated_output : list = take(reverse(sub_n(drop([-2, -4, 1],1),-2)),3)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(drop(input,1),-2)),3)"
  },
  {
    "input": "input : list = [-3, -4, 3, -3]\noutput : list = [-4, 3, -3]",
    "output": "generated_output : list = take(drop([-3, -4, 3, -3],1),11)",
    "io_inp": [
      -3,
      -4,
      3,
      -3
    ],
    "io_out": [
      -4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),11)"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [-5, 5, 1]",
    "output": "generated_output : list = reverse([1, 5, -5])",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, -5, 5, 0]\noutput : list = [10, 4, 0, -6, -10]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(mul_n([2, -3, -5, 5, 0],2)),34)))",
    "io_inp": [
      2,
      -3,
      -5,
      5,
      0
    ],
    "io_out": [
      10,
      4,
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(mul_n(input,2)),34)))"
  },
  {
    "input": "input : list = [1, -2, 0, -3]\noutput : list = [-7, -4]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(take([1, -2, 0, -3],2)),2),3),21)",
    "io_inp": [
      1,
      -2,
      0,
      -3
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(take(input,2)),2),3),21)"
  },
  {
    "input": "input : list = [3, 0, -5, 5]\noutput : list = [8, -2, 3, 6]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(reverse([3, 0, -5, 5]),1),-2)))",
    "io_inp": [
      3,
      0,
      -5,
      5
    ],
    "io_out": [
      8,
      -2,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(reverse(input),1),-2)))"
  },
  {
    "input": "input : list = [-2, -5, 3, -2, 1, -2]\noutput : list = [-7, -19, 13, -7, 5, -7]",
    "output": "generated_output : list = sub_n(mul_n([-2, -5, 3, -2, 1, -2],4),-1)",
    "io_inp": [
      -2,
      -5,
      3,
      -2,
      1,
      -2
    ],
    "io_out": [
      -7,
      -19,
      13,
      -7,
      5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),-1)"
  },
  {
    "input": "input : list = [1, -4, 3, 3, -5, 1]\noutput : list = [4, -1, 6, 6, -2, 4]",
    "output": "generated_output : list = add_n(add_n([1, -4, 3, 3, -5, 1],4),-1)",
    "io_inp": [
      1,
      -4,
      3,
      3,
      -5,
      1
    ],
    "io_out": [
      4,
      -1,
      6,
      6,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),-1)"
  },
  {
    "input": "input : list = [1, 4, 1, 1, 2, 1]\noutput : list = [-8, -20, -8, -8, -12, -8]",
    "output": "generated_output : list = mul_n(sub_n([1, 4, 1, 1, 2, 1],-1),-4)",
    "io_inp": [
      1,
      4,
      1,
      1,
      2,
      1
    ],
    "io_out": [
      -8,
      -20,
      -8,
      -8,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-4)"
  },
  {
    "input": "input : list = [1, -4, -3, 2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(take([1, -4, -3, 2],1),-2))))",
    "io_inp": [
      1,
      -4,
      -3,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(take(input,1),-2))))"
  },
  {
    "input": "input : list = [-4, -1, -5, -3, -1, 1]\noutput : list = [1, -1, -1, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-4, -1, -5, -3, -1, 1])",
    "io_inp": [
      -4,
      -1,
      -5,
      -3,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, 1]\noutput : list = [-16, 4, -28]",
    "output": "generated_output : list = take(mul_n(reverse(take(sub_n([4, -4, 1],-3),5)),-4),42)",
    "io_inp": [
      4,
      -4,
      1
    ],
    "io_out": [
      -16,
      4,
      -28
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(sub_n(input,-3),5)),-4),42)"
  },
  {
    "input": "input : list = [-5, -2, 0, 4, 2, -2]\noutput : list = [-20, -8, 0, 16, 8, -8]",
    "output": "generated_output : list = mul_n([-5, -2, 0, 4, 2, -2],4)",
    "io_inp": [
      -5,
      -2,
      0,
      4,
      2,
      -2
    ],
    "io_out": [
      -20,
      -8,
      0,
      16,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 0, 5, 1, 4, -2]\noutput : list = [3, 9, 6, 10, 5, 7]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse([2, 0, 5, 1, 4, -2]),1),-3),-5),3)",
    "io_inp": [
      2,
      0,
      5,
      1,
      4,
      -2
    ],
    "io_out": [
      3,
      9,
      6,
      10,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse(input),1),-3),-5),3)"
  },
  {
    "input": "input : list = [0, 2, 2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(drop([0, 2, 2],1),-3)))",
    "io_inp": [
      0,
      2,
      2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(drop(input,1),-3)))"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-3, -1, 2]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(sub_n([-3, -5, 0],-4)),11)),2)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(sub_n(input,-4)),11)),2)"
  },
  {
    "input": "input : list = [-4, 0, -3, -4, -4, -1]\noutput : list = [-4, -4, -4, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(mul_n([-4, 0, -3, -4, -4, -1],1))",
    "io_inp": [
      -4,
      0,
      -3,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [2, -2, -4, -4, 1]\noutput : list = [1, 0, -3, -5, -5]",
    "output": "generated_output : list = sub_n(take(take(sort_des(sub_n([2, -2, -4, -4, 1],-3)),32),13),4)",
    "io_inp": [
      2,
      -2,
      -4,
      -4,
      1
    ],
    "io_out": [
      1,
      0,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(sub_n(input,-3)),32),13),4)"
  },
  {
    "input": "input : list = [2, -1, -4, 5]\noutput : list = [53, -19, 5, 29]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(reverse([2, -1, -4, 5]),4),-5),2),-3)",
    "io_inp": [
      2,
      -1,
      -4,
      5
    ],
    "io_out": [
      53,
      -19,
      5,
      29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(reverse(input),4),-5),2),-3)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_des(take(reverse(sort_asc([5, 2])),20)),1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(sort_asc(input)),20)),1)"
  },
  {
    "input": "input : list = [3, -3, -3]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(reverse([3, -3, -3]),1),-5),-4),2)",
    "io_inp": [
      3,
      -3,
      -3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(reverse(input),1),-5),-4),2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [6, 9]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(add_n([2, -1],4),5),2)),5)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(add_n(input,4),5),2)),5)"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [3, -3, 6]",
    "output": "generated_output : list = sub_n(reverse([5, -4, 2]),-1)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      3,
      -3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-4, -2, 2, 3]\noutput : list = [3, 2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-4, -2, 2, 3])))",
    "io_inp": [
      -4,
      -2,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, 2, 4, -5, 4, -5]\noutput : list = [3, 6, 8, -1, 8, -1]",
    "output": "generated_output : list = add_n(sub_n([-1, 2, 4, -5, 4, -5],-5),-1)",
    "io_inp": [
      -1,
      2,
      4,
      -5,
      4,
      -5
    ],
    "io_out": [
      3,
      6,
      8,
      -1,
      8,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),-1)"
  },
  {
    "input": "input : list = [-1, 4, 0, -1]\noutput : list = [-2, -6, -7, -7]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(reverse([-1, 4, 0, -1]))),1),5)",
    "io_inp": [
      -1,
      4,
      0,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(reverse(input))),1),5)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [-10, -4, 10]",
    "output": "generated_output : list = mul_n(sort_asc([-2, 5, -5]),2)",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      -10,
      -4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [-4, -7]",
    "output": "generated_output : list = add_n(sort_des(take(drop(sort_asc([-5, 1, -2]),1),6)),-5)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(drop(sort_asc(input),1),6)),-5)"
  },
  {
    "input": "input : list = [-3, 0, 5, 5, 3]\noutput : list = [10, 10]",
    "output": "generated_output : list = reverse(take(take(add_n(sort_des([-3, 0, 5, 5, 3]),5),2),30))",
    "io_inp": [
      -3,
      0,
      5,
      5,
      3
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(sort_des(input),5),2),30))"
  },
  {
    "input": "input : list = [-3, 1, 2, 1, 5]\noutput : list = [20, 12, 14, 12, 4]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(sub_n([-3, 1, 2, 1, 5],-2),-3),16),2))",
    "io_inp": [
      -3,
      1,
      2,
      1,
      5
    ],
    "io_out": [
      20,
      12,
      14,
      12,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(sub_n(input,-2),-3),16),2))"
  },
  {
    "input": "input : list = [-4, -5, 4, 3, 2]\noutput : list = [32, 30, 28, 16, 14]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(add_n([-4, -5, 4, 3, 2],5),-4)),-3),2)",
    "io_inp": [
      -4,
      -5,
      4,
      3,
      2
    ],
    "io_out": [
      32,
      30,
      28,
      16,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(add_n(input,5),-4)),-3),2)"
  },
  {
    "input": "input : list = [5, 2, 5, -4]\noutput : list = [272, -160, -16, -160]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n([5, 2, 5, -4],3),-5)),-4),4)",
    "io_inp": [
      5,
      2,
      5,
      -4
    ],
    "io_out": [
      272,
      -160,
      -16,
      -160
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n(input,3),-5)),-4),4)"
  },
  {
    "input": "input : list = [4, 3, -3, -2]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n(add_n(drop(sub_n([4, 3, -3, -2],-5),2),1),1)",
    "io_inp": [
      4,
      3,
      -3,
      -2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(sub_n(input,-5),2),1),1)"
  },
  {
    "input": "input : list = [0, 5, -2, -2, -3]\noutput : list = [-3, -2, -2, 0, 5]",
    "output": "generated_output : list = sort_asc(mul_n([0, 5, -2, -2, -3],1))",
    "io_inp": [
      0,
      5,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-1, -3, -2, 3, 0]\noutput : list = [-3, -2, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc([-1, -3, -2, 3, 0])),1)))",
    "io_inp": [
      -1,
      -3,
      -2,
      3,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [5, -3, 4]\noutput : list = [4, -3, 5]",
    "output": "generated_output : list = reverse([5, -3, 4])",
    "io_inp": [
      5,
      -3,
      4
    ],
    "io_out": [
      4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, 4, 2, -1, -4]\noutput : list = [16, 14, 10, 4, 2, -2]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n([5, -2, 4, 2, -1, -4],-3),2)))",
    "io_inp": [
      5,
      -2,
      4,
      2,
      -1,
      -4
    ],
    "io_out": [
      16,
      14,
      10,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(input,-3),2)))"
  },
  {
    "input": "input : list = [-4, 1, -3, -5, -5, -5]\noutput : list = [-12, -12, -12, -11, -10, -6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(sub_n([-4, 1, -3, -5, -5, -5],2),17)),5))",
    "io_inp": [
      -4,
      1,
      -3,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -12,
      -12,
      -12,
      -11,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(sub_n(input,2),17)),5))"
  },
  {
    "input": "input : list = [-1, -2, 3, 4, -5, -5]\noutput : list = [-16, -12, 4, 8, 20, 20]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(mul_n([-1, -2, 3, 4, -5, -5],-1),22),4)),13)",
    "io_inp": [
      -1,
      -2,
      3,
      4,
      -5,
      -5
    ],
    "io_out": [
      -16,
      -12,
      4,
      8,
      20,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(mul_n(input,-1),22),4)),13)"
  },
  {
    "input": "input : list = [4, 5, 2, -1, 1]\noutput : list = [-5, 45, 70, 120, 145]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(mul_n([4, 5, 2, -1, 1],5),4)),5))",
    "io_inp": [
      4,
      5,
      2,
      -1,
      1
    ],
    "io_out": [
      -5,
      45,
      70,
      120,
      145
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(mul_n(input,5),4)),5))"
  },
  {
    "input": "input : list = [3, 2, 3, 1, -1]\noutput : list = [4, 6, 8]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(drop([3, 2, 3, 1, -1],2))),-5))",
    "io_inp": [
      3,
      2,
      3,
      1,
      -1
    ],
    "io_out": [
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(drop(input,2))),-5))"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_asc([5, -3, 3]),4),5)))",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(sort_asc(input),4),5)))"
  },
  {
    "input": "input : list = [-4, -1, -4, -3, -3, -5]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take([-4, -1, -4, -3, -3, -5],2)",
    "io_inp": [
      -4,
      -1,
      -4,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 2, -3, -2, -1, -3]\noutput : list = [-10, -8, -9]",
    "output": "generated_output : list = add_n(take(add_n(add_n(reverse([-1, 2, -3, -2, -1, -3]),-4),2),3),-5)",
    "io_inp": [
      -1,
      2,
      -3,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(reverse(input),-4),2),3),-5)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [0, 4]",
    "output": "generated_output : list = sub_n(sort_asc([1, 5]),1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-2, -3, -2, -3]\noutput : list = [-6, -7, -6, -7]",
    "output": "generated_output : list = add_n(add_n(add_n(take(sub_n([-2, -3, -2, -3],-4),23),-2),-1),-5)",
    "io_inp": [
      -2,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -7,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(sub_n(input,-4),23),-2),-1),-5)"
  },
  {
    "input": "input : list = [1, -4, -3, -1, 4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take(reverse([1, -4, -3, -1, 4, -4]),2)",
    "io_inp": [
      1,
      -4,
      -3,
      -1,
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),2)"
  },
  {
    "input": "input : list = [4, 2, 1, -3, -5]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = take([4, 2, 1, -3, -5],3)",
    "io_inp": [
      4,
      2,
      1,
      -3,
      -5
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [3, 11, 11]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_des([5, 5, -3]))),-5),-1)",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      3,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(sort_des(input))),-5),-1)"
  },
  {
    "input": "input : list = [4, 5, -1, 1, 5]\noutput : list = [20, 20, 16, 4, -4]",
    "output": "generated_output : list = sort_des(mul_n(reverse([4, 5, -1, 1, 5]),4))",
    "io_inp": [
      4,
      5,
      -1,
      1,
      5
    ],
    "io_out": [
      20,
      20,
      16,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),4))"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [-1, 1, 6]",
    "output": "generated_output : list = sub_n(sort_asc([5, -2, 0]),-1)",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [0, -3, 4, 0, -3, 4]\noutput : list = [-20, -20, 0, 0, 15, 15]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(reverse([0, -3, 4, 0, -3, 4])),36),-5))",
    "io_inp": [
      0,
      -3,
      4,
      0,
      -3,
      4
    ],
    "io_out": [
      -20,
      -20,
      0,
      0,
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(reverse(input)),36),-5))"
  },
  {
    "input": "input : list = [4, 4, 4, 5, -4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(take([4, 4, 4, 5, -4],2),21)),-5),-1)",
    "io_inp": [
      4,
      4,
      4,
      5,
      -4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(take(input,2),21)),-5),-1)"
  },
  {
    "input": "input : list = [-5, -4, 2, 5, 0]\noutput : list = [9]",
    "output": "generated_output : list = sub_n(reverse(reverse(drop(sort_asc([-5, -4, 2, 5, 0]),4))),-4)",
    "io_inp": [
      -5,
      -4,
      2,
      5,
      0
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(drop(sort_asc(input),4))),-4)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-19, 61]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(sort_asc([-4, 1])),-4),4),3)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -19,
      61
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(sort_asc(input)),-4),4),3)"
  },
  {
    "input": "input : list = [2, -4, -3, 4, -4, 1]\noutput : list = [-5, -5, -4, 0, 1, 3]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(add_n([2, -4, -3, 4, -4, 1],1))),1),-3)",
    "io_inp": [
      2,
      -4,
      -3,
      4,
      -4,
      1
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(add_n(input,1))),1),-3)"
  },
  {
    "input": "input : list = [3, -3, 2, 3, 3]\noutput : list = [-3, -3, -3, -2, 3]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(reverse([3, -3, 2, 3, 3]),14),-1)),20)",
    "io_inp": [
      3,
      -3,
      2,
      3,
      3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(reverse(input),14),-1)),20)"
  },
  {
    "input": "input : list = [1, -4, 3, 4, 2]\noutput : list = [-1, -2, -3, -4, -9]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(sub_n([1, -4, 3, 4, 2],5))),1))",
    "io_inp": [
      1,
      -4,
      3,
      4,
      2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(sub_n(input,5))),1))"
  },
  {
    "input": "input : list = [-2, 0, -3, -1, -5, 2]\noutput : list = [3, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(sort_des([-2, 0, -3, -1, -5, 2]),2)),3),-4)",
    "io_inp": [
      -2,
      0,
      -3,
      -1,
      -5,
      2
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(sort_des(input),2)),3),-4)"
  },
  {
    "input": "input : list = [0, -3, -1, 1, 1]\noutput : list = [2, 2, 0, -2, 1]",
    "output": "generated_output : list = reverse(add_n([0, -3, -1, 1, 1],1))",
    "io_inp": [
      0,
      -3,
      -1,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [-2, 1, 0, 1]\noutput : list = [1, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc([-2, 1, 0, 1]),3)),34)",
    "io_inp": [
      -2,
      1,
      0,
      1
    ],
    "io_out": [
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(input),3)),34)"
  },
  {
    "input": "input : list = [-5, 1, -5, -3, 2]\noutput : list = [-4, 20]",
    "output": "generated_output : list = take(mul_n(reverse(take(take([-5, 1, -5, -3, 2],2),17)),-4),35)",
    "io_inp": [
      -5,
      1,
      -5,
      -3,
      2
    ],
    "io_out": [
      -4,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(take(input,2),17)),-4),35)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 0]))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [-9, 0]",
    "output": "generated_output : list = take(drop(sort_asc(add_n([-4, -5, 5],-5)),1),5)",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(add_n(input,-5)),1),5)"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [0, 0, -7]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n([4, 4, -3],4))))",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      0,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(input,4))))"
  },
  {
    "input": "input : list = [3, 0, 2, -5, 0, 4]\noutput : list = [14, 6, -4, 10, 6, 12]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sub_n([3, 0, 2, -5, 0, 4],2),18)),-5),2)",
    "io_inp": [
      3,
      0,
      2,
      -5,
      0,
      4
    ],
    "io_out": [
      14,
      6,
      -4,
      10,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sub_n(input,2),18)),-5),2)"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [8, 6, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(add_n([-4, 3, 5],2)),-1)))",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      8,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(add_n(input,2)),-1)))"
  },
  {
    "input": "input : list = [-5, -3, -4, -1, 1, 5]\noutput : list = [-10, -6, -8, -2, 2, 10]",
    "output": "generated_output : list = mul_n(mul_n([-5, -3, -4, -1, 1, 5],1),2)",
    "io_inp": [
      -5,
      -3,
      -4,
      -1,
      1,
      5
    ],
    "io_out": [
      -10,
      -6,
      -8,
      -2,
      2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),2)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [1, -8]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des([-5, 5, -4]),2),-4))",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(input),2),-4))"
  },
  {
    "input": "input : list = [5, 3, -1, 5, -2]\noutput : list = [-3, -2, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(add_n([5, 3, -1, 5, -2],-5))),4))",
    "io_inp": [
      5,
      3,
      -1,
      5,
      -2
    ],
    "io_out": [
      -3,
      -2,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(add_n(input,-5))),4))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [18, -12]",
    "output": "generated_output : list = mul_n(take(mul_n(take(mul_n([-3, 2],1),6),-2),28),3)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      18,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(mul_n(input,1),6),-2),28),3)"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = mul_n(add_n(sub_n([-3, -1, 1],-5),-2),-1)",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,-5),-2),-1)"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([-1, -3, -3],1)",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(sort_des([3, -3]),3)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [1, -2, 3, -1, 1, 0]\noutput : list = [3, 1, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des([1, -2, 3, -1, 1, 0])",
    "io_inp": [
      1,
      -2,
      3,
      -1,
      1,
      0
    ],
    "io_out": [
      3,
      1,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, 1]\noutput : list = [1, 0, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(sort_asc([4, 5, 1]))),4))",
    "io_inp": [
      4,
      5,
      1
    ],
    "io_out": [
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [4, -2, 2, 5, -1, 1]\noutput : list = [5, -1, 3, 6, 0, 2]",
    "output": "generated_output : list = sub_n([4, -2, 2, 5, -1, 1],-1)",
    "io_inp": [
      4,
      -2,
      2,
      5,
      -1,
      1
    ],
    "io_out": [
      5,
      -1,
      3,
      6,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, 3, 4]\noutput : list = [8, 7, 6]",
    "output": "generated_output : list = sort_des(take(take(sort_des(add_n([2, 3, 4],4)),3),4))",
    "io_inp": [
      2,
      3,
      4
    ],
    "io_out": [
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(add_n(input,4)),3),4))"
  },
  {
    "input": "input : list = [4, 1, 2, -5, 2]\noutput : list = [-13, -7, -6, -6, -4]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(sort_asc([4, 1, 2, -5, 2]),3)),38),5)",
    "io_inp": [
      4,
      1,
      2,
      -5,
      2
    ],
    "io_out": [
      -13,
      -7,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(sort_asc(input),3)),38),5)"
  },
  {
    "input": "input : list = [0, 0, -2, -3, -5]\noutput : list = [0, -2]",
    "output": "generated_output : list = drop(sub_n([0, 0, -2, -3, -5],-3),3)",
    "io_inp": [
      0,
      0,
      -2,
      -3,
      -5
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-3),3)"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [-1, -4, -10]",
    "output": "generated_output : list = add_n(sort_des(sort_des([1, 4, -5])),-5)",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      -1,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n([0, 0],-5))))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(input,-5))))"
  },
  {
    "input": "input : list = [3, 0, 3, 4]\noutput : list = [0, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(add_n([3, 0, 3, 4],2),2),24),4))",
    "io_inp": [
      3,
      0,
      3,
      4
    ],
    "io_out": [
      0,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(add_n(input,2),2),24),4))"
  },
  {
    "input": "input : list = [5, 4, 3, 1, -5, 4]\noutput : list = [10, 15, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(take([5, 4, 3, 1, -5, 4],3),25),1)),5)",
    "io_inp": [
      5,
      4,
      3,
      1,
      -5,
      4
    ],
    "io_out": [
      10,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(take(input,3),25),1)),5)"
  },
  {
    "input": "input : list = [3, 0, -5, 2, -5]\noutput : list = [12, 8, 0, -20, -20]",
    "output": "generated_output : list = take(reverse(take(mul_n(sort_asc([3, 0, -5, 2, -5]),4),12)),17)",
    "io_inp": [
      3,
      0,
      -5,
      2,
      -5
    ],
    "io_out": [
      12,
      8,
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(sort_asc(input),4),12)),17)"
  },
  {
    "input": "input : list = [-2, 3, -3, 5, 5]\noutput : list = [5, 5, 3, -2, -3]",
    "output": "generated_output : list = sort_des([-2, 3, -3, 5, 5])",
    "io_inp": [
      -2,
      3,
      -3,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, -1, -4, 0, 5]\noutput : list = [5, 0, -4, -1, -5, -5]",
    "output": "generated_output : list = reverse([-5, -5, -1, -4, 0, 5])",
    "io_inp": [
      -5,
      -5,
      -1,
      -4,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -4,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, -4]\noutput : list = [9, 6, -15]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(drop(sort_asc([-3, -2, 5, -4]),1),-3)))",
    "io_inp": [
      -3,
      -2,
      5,
      -4
    ],
    "io_out": [
      9,
      6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(drop(sort_asc(input),1),-3)))"
  },
  {
    "input": "input : list = [3, -3, -5, 3]\noutput : list = [30, 30, 0, -10]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(sort_asc([3, -3, -5, 3]),2),5),-5))",
    "io_inp": [
      3,
      -3,
      -5,
      3
    ],
    "io_out": [
      30,
      30,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(sort_asc(input),2),5),-5))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [1, 2]",
    "output": "generated_output : list = add_n([2, 3],-1)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -2, 1, 4, 0]\noutput : list = [50, 20, 10, -10, -40]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n([-5, -2, 1, 4, 0],1),5),2))",
    "io_inp": [
      -5,
      -2,
      1,
      4,
      0
    ],
    "io_out": [
      50,
      20,
      10,
      -10,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(input,1),5),2))"
  },
  {
    "input": "input : list = [-4, -3, 1]\noutput : list = [13, 11, 3]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sort_des([-4, -3, 1])),-2),-1),-4)",
    "io_inp": [
      -4,
      -3,
      1
    ],
    "io_out": [
      13,
      11,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sort_des(input)),-2),-1),-4)"
  },
  {
    "input": "input : list = [5, 1, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(drop([5, 1, 3, 2],2))),34))",
    "io_inp": [
      5,
      1,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(drop(input,2))),34))"
  },
  {
    "input": "input : list = [-5, -4, 4]\noutput : list = [-5, -4, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc([-5, -4, 4]),-3),3)",
    "io_inp": [
      -5,
      -4,
      4
    ],
    "io_out": [
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),-3),3)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-18, -10, 6]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(mul_n([1, -3, -5],4)),-2),9))",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -18,
      -10,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(mul_n(input,4)),-2),9))"
  },
  {
    "input": "input : list = [-1, -3, 4]\noutput : list = [2, 4, 9]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(sort_asc([-1, -3, 4]),-3),-4),32),4)",
    "io_inp": [
      -1,
      -3,
      4
    ],
    "io_out": [
      2,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(sort_asc(input),-3),-4),32),4)"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [-5, -1, 7]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sort_asc([-3, 0, -1])),-4)),-5)",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      -5,
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sort_asc(input)),-4)),-5)"
  },
  {
    "input": "input : list = [0, 0, -2]\noutput : list = [3, 5]",
    "output": "generated_output : list = mul_n(add_n(drop([0, 0, -2],1),-3),-1)",
    "io_inp": [
      0,
      0,
      -2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,1),-3),-1)"
  },
  {
    "input": "input : list = [0, 0, 5, 2, -2]\noutput : list = [5, -5, -5, -15, -30]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n(add_n([0, 0, 5, 2, -2],1),-1)),25),5)",
    "io_inp": [
      0,
      0,
      5,
      2,
      -2
    ],
    "io_out": [
      5,
      -5,
      -5,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(add_n(input,1),-1)),25),5)"
  },
  {
    "input": "input : list = [4, 3, 1]\noutput : list = [0, -8, -24]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(sub_n([4, 3, 1],4),4),-1),-1),2)",
    "io_inp": [
      4,
      3,
      1
    ],
    "io_out": [
      0,
      -8,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(sub_n(input,4),4),-1),-1),2)"
  },
  {
    "input": "input : list = [-5, -2, 4, 0, 2, -2]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = take(sort_des(sub_n([-5, -2, 4, 0, 2, -2],3)),3)",
    "io_inp": [
      -5,
      -2,
      4,
      0,
      2,
      -2
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,3)),3)"
  },
  {
    "input": "input : list = [4, -5, -1, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(drop([4, -5, -1, -5, 0],3))),12))",
    "io_inp": [
      4,
      -5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(drop(input,3))),12))"
  },
  {
    "input": "input : list = [2, 1, 4, -3, -5]\noutput : list = [6, 7]",
    "output": "generated_output : list = take(reverse(take(take(sub_n([2, 1, 4, -3, -5],-5),22),2)),7)",
    "io_inp": [
      2,
      1,
      4,
      -3,
      -5
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(sub_n(input,-5),22),2)),7)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take(sub_n([-2, -2],2),7)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,2),7)"
  },
  {
    "input": "input : list = [2, -4, -4, 5, 5]\noutput : list = [5, 5, -4, -4, 2]",
    "output": "generated_output : list = reverse([2, -4, -4, 5, 5])",
    "io_inp": [
      2,
      -4,
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 3, 2, -1]\noutput : list = [-16, 8]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(drop([2, 3, 2, -1],2)),-2),4)",
    "io_inp": [
      2,
      3,
      2,
      -1
    ],
    "io_out": [
      -16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(drop(input,2)),-2),4)"
  },
  {
    "input": "input : list = [3, -1, -5, 2, -3]\noutput : list = [3, -1]",
    "output": "generated_output : list = take([3, -1, -5, 2, -3],2)",
    "io_inp": [
      3,
      -1,
      -5,
      2,
      -3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 3, 5, -5]\noutput : list = [5, 3, 2, -5]",
    "output": "generated_output : list = sort_des([2, 3, 5, -5])",
    "io_inp": [
      2,
      3,
      5,
      -5
    ],
    "io_out": [
      5,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1, -4, 1]\noutput : list = [-15, -18]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(take([2, 1, -4, 1],2),3),-1)),-3)",
    "io_inp": [
      2,
      1,
      -4,
      1
    ],
    "io_out": [
      -15,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(take(input,2),3),-1)),-3)"
  },
  {
    "input": "input : list = [3, 5, -5, 0]\noutput : list = [0, -15, 15, 9]",
    "output": "generated_output : list = mul_n(reverse([3, 5, -5, 0]),3)",
    "io_inp": [
      3,
      5,
      -5,
      0
    ],
    "io_out": [
      0,
      -15,
      15,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-4, -5, 1, -4, -4]\noutput : list = [3, -2, -2, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([-4, -5, 1, -4, -4]),2))",
    "io_inp": [
      -4,
      -5,
      1,
      -4,
      -4
    ],
    "io_out": [
      3,
      -2,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -1, 0],1)",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -2, -2, 1]\noutput : list = [-1, -3, -6, -6]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des([3, -2, -2, 1]))),-4)",
    "io_inp": [
      3,
      -2,
      -2,
      1
    ],
    "io_out": [
      -1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(input))),-4)"
  },
  {
    "input": "input : list = [4, -5, -4, 5, 4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_des(take([4, -5, -4, 5, 4],1)))",
    "io_inp": [
      4,
      -5,
      -4,
      5,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, 4, 1]\noutput : list = [3, 0, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_asc([1, -1, 4, 1]),-1))))",
    "io_inp": [
      1,
      -1,
      4,
      1
    ],
    "io_out": [
      3,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [1, 5, 5, 3, 2]\noutput : list = [1, 5, 5]",
    "output": "generated_output : list = take([1, 5, 5, 3, 2],3)",
    "io_inp": [
      1,
      5,
      5,
      3,
      2
    ],
    "io_out": [
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, -4, -4, -3]\noutput : list = [56, 44]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(drop([0, -4, -4, -3],2),-2),3),4),-4)",
    "io_inp": [
      0,
      -4,
      -4,
      -3
    ],
    "io_out": [
      56,
      44
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(drop(input,2),-2),3),4),-4)"
  },
  {
    "input": "input : list = [2, 1, 0, -5]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(take([2, 1, 0, -5],2))",
    "io_inp": [
      2,
      1,
      0,
      -5
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-4, 1, -4]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(take([-4, 1, -4],1),-1)),1))",
    "io_inp": [
      -4,
      1,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(take(input,1),-1)),1))"
  },
  {
    "input": "input : list = [-3, 3, 0, -1, -4]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(take([-3, 3, 0, -1, -4],2))",
    "io_inp": [
      -3,
      3,
      0,
      -1,
      -4
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [3, 3, -4, 2, -5]\noutput : list = [-5, -4, 2, 3, 3]",
    "output": "generated_output : list = reverse(sort_des([3, 3, -4, 2, -5]))",
    "io_inp": [
      3,
      3,
      -4,
      2,
      -5
    ],
    "io_out": [
      -5,
      -4,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [9, 4, 1]",
    "output": "generated_output : list = add_n([4, -1, -4],5)",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      9,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 3, 0, 4, -3, -2]\noutput : list = [5, -15, -3, -19, 9, 5]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n([-2, 3, 0, 4, -3, -2],-4),-4),-4),-3)",
    "io_inp": [
      -2,
      3,
      0,
      4,
      -3,
      -2
    ],
    "io_out": [
      5,
      -15,
      -3,
      -19,
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(input,-4),-4),-4),-3)"
  },
  {
    "input": "input : list = [-1, -4, 0, 1, -1]\noutput : list = [4, 5, 6, 9]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(drop([-1, -4, 0, 1, -1],1))),-1),-5)",
    "io_inp": [
      -1,
      -4,
      0,
      1,
      -1
    ],
    "io_out": [
      4,
      5,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(drop(input,1))),-1),-5)"
  },
  {
    "input": "input : list = [2, -5, -1, 5, -2]\noutput : list = [-5, -2, -1, 2, 5]",
    "output": "generated_output : list = take(take(reverse(sort_des([2, -5, -1, 5, -2])),14),28)",
    "io_inp": [
      2,
      -5,
      -1,
      5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(input)),14),28)"
  },
  {
    "input": "input : list = [-3, -5, -2, -5]\noutput : list = [-8, -5, -8, -6]",
    "output": "generated_output : list = reverse(sub_n([-3, -5, -2, -5],3))",
    "io_inp": [
      -3,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -5,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [4, -4, 5, -5, -5, 3]\noutput : list = [-15, -15, -10, 25, 30, 35]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_des([4, -4, 5, -5, -5, 3]),5),-3)),5)",
    "io_inp": [
      4,
      -4,
      5,
      -5,
      -5,
      3
    ],
    "io_out": [
      -15,
      -15,
      -10,
      25,
      30,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_des(input),5),-3)),5)"
  },
  {
    "input": "input : list = [-2, -3, -3, 0, 3]\noutput : list = [3, 0, -2, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_asc([-2, -3, -3, 0, 3]),21))))",
    "io_inp": [
      -2,
      -3,
      -3,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_asc(input),21))))"
  },
  {
    "input": "input : list = [1, 0, -4, -1]\noutput : list = [2, 0, -2, -8]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(sort_asc([1, 0, -4, -1]),2))),40)",
    "io_inp": [
      1,
      0,
      -4,
      -1
    ],
    "io_out": [
      2,
      0,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(sort_asc(input),2))),40)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sub_n([0, 2],2)))),3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sub_n(input,2)))),3)"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [3, 6, 9]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(mul_n([-2, -3, -1],-3),3))))",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(mul_n(input,-3),3))))"
  },
  {
    "input": "input : list = [4, -3, -2, -3, 2]\noutput : list = [-16, -8, 8, 12, 12]",
    "output": "generated_output : list = mul_n(sort_des([4, -3, -2, -3, 2]),-4)",
    "io_inp": [
      4,
      -3,
      -2,
      -3,
      2
    ],
    "io_out": [
      -16,
      -8,
      8,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, -5, 3, -4, -4]\noutput : list = [-3, -2, -2, 3, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([1, -5, 3, -4, -4]),1),-3)",
    "io_inp": [
      1,
      -5,
      3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),1),-3)"
  },
  {
    "input": "input : list = [-3, -5, -5]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(take([-3, -5, -5],1)),-2),-5),-1)",
    "io_inp": [
      -3,
      -5,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(take(input,1)),-2),-5),-1)"
  },
  {
    "input": "input : list = [3, -2, -2, -4, 4, 5]\noutput : list = [30, 25, -15, -5, -5, 20]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse([3, -2, -2, -4, 4, 5]),1),-5),-1)",
    "io_inp": [
      3,
      -2,
      -2,
      -4,
      4,
      5
    ],
    "io_out": [
      30,
      25,
      -15,
      -5,
      -5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(input),1),-5),-1)"
  },
  {
    "input": "input : list = [1, -3, -1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take([1, -3, -1],1))",
    "io_inp": [
      1,
      -3,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, -3, -3, -1, -5, -4]\noutput : list = [-3, -1, -5, -4]",
    "output": "generated_output : list = drop([-5, -3, -3, -1, -5, -4],2)",
    "io_inp": [
      -5,
      -3,
      -3,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -1,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 5, -4]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc([-1, 5, -4]),19))",
    "io_inp": [
      -1,
      5,
      -4
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),19))"
  },
  {
    "input": "input : list = [-3, 2, 3, 2]\noutput : list = [-6, -1, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_asc([-3, 2, 3, 2]))),3))",
    "io_inp": [
      -3,
      2,
      3,
      2
    ],
    "io_out": [
      -6,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [5, 2, 1, -4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 2, 1, -4],1)",
    "io_inp": [
      5,
      2,
      1,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-1, -1]),-4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, -4, -3, -2, 0]\noutput : list = [-8, -7, -6, -6, -4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(mul_n([-2, -4, -3, -2, 0],1)))),4)",
    "io_inp": [
      -2,
      -4,
      -3,
      -2,
      0
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(mul_n(input,1)))),4)"
  },
  {
    "input": "input : list = [0, 5, -4, -3, 1, -3]\noutput : list = [4, -96, 84, 64, -16, 64]",
    "output": "generated_output : list = take(add_n(take(mul_n(mul_n([0, 5, -4, -3, 1, -3],5),-4),19),4),8)",
    "io_inp": [
      0,
      5,
      -4,
      -3,
      1,
      -3
    ],
    "io_out": [
      4,
      -96,
      84,
      64,
      -16,
      64
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(mul_n(input,5),-4),19),4),8)"
  },
  {
    "input": "input : list = [-2, 2, 2, 2]\noutput : list = [10, 10, 10, 2]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_asc([-2, 2, 2, 2]),2),2),2))",
    "io_inp": [
      -2,
      2,
      2,
      2
    ],
    "io_out": [
      10,
      10,
      10,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_asc(input),2),2),2))"
  },
  {
    "input": "input : list = [0, 4, 0, -2, 1]\noutput : list = [4, 7, 8, 8, 10]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(sub_n([0, 4, 0, -2, 1],3),5))),-1)",
    "io_inp": [
      0,
      4,
      0,
      -2,
      1
    ],
    "io_out": [
      4,
      7,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(sub_n(input,3),5))),-1)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 1]\noutput : list = [-1, 0, 3, 4, 5]",
    "output": "generated_output : list = add_n(take(add_n(take(sort_asc([-5, -4, 0, -1, 1]),5),2),24),2)",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      1
    ],
    "io_out": [
      -1,
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sort_asc(input),5),2),24),2)"
  },
  {
    "input": "input : list = [0, -4, -3, -1, -3, -2]\noutput : list = [16, 20, 28, 32]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(take([0, -4, -3, -1, -3, -2],4),4))),-4)",
    "io_inp": [
      0,
      -4,
      -3,
      -1,
      -3,
      -2
    ],
    "io_out": [
      16,
      20,
      28,
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(take(input,4),4))),-4)"
  },
  {
    "input": "input : list = [1, -4, -3, -3, -2]\noutput : list = [0, -5, -4, -4, -3]",
    "output": "generated_output : list = add_n([1, -4, -3, -3, -2],-1)",
    "io_inp": [
      1,
      -4,
      -3,
      -3,
      -2
    ],
    "io_out": [
      0,
      -5,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 2, 3, 3, -3, 4]\noutput : list = [4, 3, 3, -3]",
    "output": "generated_output : list = sort_des(drop([-4, 2, 3, 3, -3, 4],2))",
    "io_inp": [
      -4,
      2,
      3,
      3,
      -3,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [1, -5, -3]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(drop([1, -5, -3],1),1))))",
    "io_inp": [
      1,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(sub_n([-3, -1],1)))))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [0, -1, 0, 3, -4]\noutput : list = [-4, -1, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des([0, -1, 0, 3, -4])),2),2))",
    "io_inp": [
      0,
      -1,
      0,
      3,
      -4
    ],
    "io_out": [
      -4,
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(sort_des(input)),2),2))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [5, 5, 5]",
    "output": "generated_output : list = sub_n(sub_n([-1, -1, -1],-3),-3)",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-3)"
  },
  {
    "input": "input : list = [-5, -3, -3, -4]\noutput : list = [-4, -3, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, -3, -4])",
    "io_inp": [
      -5,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [18, 10, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(add_n([-4, 5, 0],-2),-3)),-2))",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      18,
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(add_n(input,-2),-3)),-2))"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-10, -9, -1]",
    "output": "generated_output : list = add_n(sub_n([-4, -3, 5],2),-4)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -10,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-4)"
  },
  {
    "input": "input : list = [1, -5, 4, -3, 0, 4]\noutput : list = [10, 6, 0, -2, -8, -8]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(sort_des([1, -5, 4, -3, 0, 4]),21)),-2))",
    "io_inp": [
      1,
      -5,
      4,
      -3,
      0,
      4
    ],
    "io_out": [
      10,
      6,
      0,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(sort_des(input),21)),-2))"
  },
  {
    "input": "input : list = [-4, -5, 5, 3, 1]\noutput : list = [4, 6, 8, -2, -1]",
    "output": "generated_output : list = reverse(sub_n([-4, -5, 5, 3, 1],-3))",
    "io_inp": [
      -4,
      -5,
      5,
      3,
      1
    ],
    "io_out": [
      4,
      6,
      8,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [1, -4, 4]\noutput : list = [12, 2, 18]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(add_n([1, -4, 4],4),2),1),6),-2)",
    "io_inp": [
      1,
      -4,
      4
    ],
    "io_out": [
      12,
      2,
      18
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(add_n(input,4),2),1),6),-2)"
  },
  {
    "input": "input : list = [-2, -2, -5, 2]\noutput : list = [13, -3, -3, -15]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(reverse([-2, -2, -5, 2]),11)),4),5)",
    "io_inp": [
      -2,
      -2,
      -5,
      2
    ],
    "io_out": [
      13,
      -3,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(reverse(input),11)),4),5)"
  },
  {
    "input": "input : list = [1, -4, 1, 0, 3]\noutput : list = [16, 6, 6, 1, -19]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse([1, -4, 1, 0, 3]),5)),1))",
    "io_inp": [
      1,
      -4,
      1,
      0,
      3
    ],
    "io_out": [
      16,
      6,
      6,
      1,
      -19
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse(input),5)),1))"
  },
  {
    "input": "input : list = [-1, 2, -4, 1]\noutput : list = [0, 3, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(sort_des([-1, 2, -4, 1])),27)),4)",
    "io_inp": [
      -1,
      2,
      -4,
      1
    ],
    "io_out": [
      0,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(sort_des(input)),27)),4)"
  },
  {
    "input": "input : list = [4, -5, -4]\noutput : list = [-16]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(take([4, -5, -4],1),-4),1)))",
    "io_inp": [
      4,
      -5,
      -4
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(take(input,1),-4),1)))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [8, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_des([-2, 4]),2),9)))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(sort_des(input),2),9)))"
  },
  {
    "input": "input : list = [-3, 1, 4, 3, -1, 1]\noutput : list = [1, 4, 3, -1, 1]",
    "output": "generated_output : list = drop([-3, 1, 4, 3, -1, 1],1)",
    "io_inp": [
      -3,
      1,
      4,
      3,
      -1,
      1
    ],
    "io_out": [
      1,
      4,
      3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 0, 1, -1, 1, -3]\noutput : list = [5, 2, 3, 1, 3, -1]",
    "output": "generated_output : list = sub_n(take(add_n(take(add_n([3, 0, 1, -1, 1, -3],2),26),1),6),1)",
    "io_inp": [
      3,
      0,
      1,
      -1,
      1,
      -3
    ],
    "io_out": [
      5,
      2,
      3,
      1,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(add_n(input,2),26),1),6),1)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [2, 4, 7]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_asc([2, -3, -1])),-5),1))",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_asc(input)),-5),1))"
  },
  {
    "input": "input : list = [-5, -3, -4, 5, 0, -5]\noutput : list = [2, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(take([-5, -3, -4, 5, 0, -5],3),-5))",
    "io_inp": [
      -5,
      -3,
      -4,
      5,
      0,
      -5
    ],
    "io_out": [
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(input,3),-5))"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [-5, 4, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(reverse([-4, -4, 5]))),-1))",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      -5,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(reverse(input))),-1))"
  },
  {
    "input": "input : list = [1, -2, -5, -2, -2]\noutput : list = [-3, 6, 15, 6, 6]",
    "output": "generated_output : list = mul_n([1, -2, -5, -2, -2],-3)",
    "io_inp": [
      1,
      -2,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -3,
      6,
      15,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 5, 4, 2, -4, -2]\noutput : list = [-7, -5, -4, -1, 1, 2]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(add_n([-1, 5, 4, 2, -4, -2],-3)),7),4),4)",
    "io_inp": [
      -1,
      5,
      4,
      2,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(add_n(input,-3)),7),4),4)"
  },
  {
    "input": "input : list = [-2, 4, -3, -1]\noutput : list = [0, -5, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des([-2, 4, -3, -1]),4)",
    "io_inp": [
      -2,
      4,
      -3,
      -1
    ],
    "io_out": [
      0,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [4, -4, 0, -2, 0, -3]\noutput : list = [8, 4, 4, 2, 1, 0]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(add_n([4, -4, 0, -2, 0, -3],5),23))),-1)",
    "io_inp": [
      4,
      -4,
      0,
      -2,
      0,
      -3
    ],
    "io_out": [
      8,
      4,
      4,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(add_n(input,5),23))),-1)"
  },
  {
    "input": "input : list = [2, -1, 0]\noutput : list = [-6, -5, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_des([2, -1, 0]),2)),-1),-4)",
    "io_inp": [
      2,
      -1,
      0
    ],
    "io_out": [
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_des(input),2)),-1),-4)"
  },
  {
    "input": "input : list = [4, -4, 2, -4, -4, 1]\noutput : list = [21, -11]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(take([4, -4, 2, -4, -4, 1],2),4),1),1),4)",
    "io_inp": [
      4,
      -4,
      2,
      -4,
      -4,
      1
    ],
    "io_out": [
      21,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(take(input,2),4),1),1),4)"
  },
  {
    "input": "input : list = [-1, -3, -3, 0, -2, -4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(take([-1, -3, -3, 0, -2, -4],1),13),1)))",
    "io_inp": [
      -1,
      -3,
      -3,
      0,
      -2,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(take(input,1),13),1)))"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [-8, 1, 1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(add_n([-4, 5, 5],1),1)),-2),-3)",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      -8,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(add_n(input,1),1)),-2),-3)"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(add_n(take(reverse(drop([1, -1, -1],1)),24),1))",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(drop(input,1)),24),1))"
  },
  {
    "input": "input : list = [5, -3, -2, -3]\noutput : list = [4, -4, -3, -4]",
    "output": "generated_output : list = take(add_n(take(sub_n(sub_n([5, -3, -2, -3],-5),4),23),-2),20)",
    "io_inp": [
      5,
      -3,
      -2,
      -3
    ],
    "io_out": [
      4,
      -4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(sub_n(input,-5),4),23),-2),20)"
  },
  {
    "input": "input : list = [4, -4, -3, -5]\noutput : list = [-7, -5, -6, 2]",
    "output": "generated_output : list = add_n(reverse([4, -4, -3, -5]),-2)",
    "io_inp": [
      4,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [2, -3, 1, -1, -4, 2]\noutput : list = [-14, 46, 16, -4, 36, -14]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(mul_n([2, -3, 1, -1, -4, 2],2)),-5),-2),4)",
    "io_inp": [
      2,
      -3,
      1,
      -1,
      -4,
      2
    ],
    "io_out": [
      -14,
      46,
      16,
      -4,
      36,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(mul_n(input,2)),-5),-2),4)"
  },
  {
    "input": "input : list = [5, 0, 3, -2, 1, -2]\noutput : list = [12, -3, 12]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(drop([5, 0, 3, -2, 1, -2],3),14),-5),5),-3)",
    "io_inp": [
      5,
      0,
      3,
      -2,
      1,
      -2
    ],
    "io_out": [
      12,
      -3,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(drop(input,3),14),-5),5),-3)"
  },
  {
    "input": "input : list = [-3, -4, 1, -5, -5]\noutput : list = [-2, -1, -6, 0, 0]",
    "output": "generated_output : list = add_n(mul_n([-3, -4, 1, -5, -5],-1),-5)",
    "io_inp": [
      -3,
      -4,
      1,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -1,
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),-5)"
  },
  {
    "input": "input : list = [0, 4, -3, 3, 0]\noutput : list = [-2, -3, -6, -6, -9]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc([0, 4, -3, 3, 0]),-3)),3)",
    "io_inp": [
      0,
      4,
      -3,
      3,
      0
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(input),-3)),3)"
  },
  {
    "input": "input : list = [5, 1, 0, 0]\noutput : list = [-60, -40, -35, -35]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(mul_n([5, 1, 0, 0],-1),5),8),-2),5)",
    "io_inp": [
      5,
      1,
      0,
      0
    ],
    "io_out": [
      -60,
      -40,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(mul_n(input,-1),5),8),-2),5)"
  },
  {
    "input": "input : list = [3, 2, -1, -3]\noutput : list = [3, 2, -1, -3]",
    "output": "generated_output : list = sort_des(sort_asc([3, 2, -1, -3]))",
    "io_inp": [
      3,
      2,
      -1,
      -3
    ],
    "io_out": [
      3,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 4, -5, -5, -4, 2]\noutput : list = [-12, -12, -8, 0, 16, 24]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(reverse([-2, 4, -5, -5, -4, 2]),-2),4)))",
    "io_inp": [
      -2,
      4,
      -5,
      -5,
      -4,
      2
    ],
    "io_out": [
      -12,
      -12,
      -8,
      0,
      16,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(reverse(input),-2),4)))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [-19, -10, 8]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des([5, -4, 2]),-3),-5),-1)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      -19,
      -10,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(input),-3),-5),-1)"
  },
  {
    "input": "input : list = [-2, 5, -5, 2, 0, 1]\noutput : list = [3, 0, -1, -2, -4, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sort_asc([-2, 5, -5, 2, 0, 1])),2)))",
    "io_inp": [
      -2,
      5,
      -5,
      2,
      0,
      1
    ],
    "io_out": [
      3,
      0,
      -1,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [0, -2, 1, 0, 3, -4]\noutput : list = [0, 0, 1, 3]",
    "output": "generated_output : list = drop(sort_asc([0, -2, 1, 0, 3, -4]),2)",
    "io_inp": [
      0,
      -2,
      1,
      0,
      3,
      -4
    ],
    "io_out": [
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-2, 3, 3, -3, 1]\noutput : list = [-4, 12, -12, -12, 8]",
    "output": "generated_output : list = take(reverse(take(mul_n([-2, 3, 3, -3, 1],-4),7)),25)",
    "io_inp": [
      -2,
      3,
      3,
      -3,
      1
    ],
    "io_out": [
      -4,
      12,
      -12,
      -12,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(input,-4),7)),25)"
  },
  {
    "input": "input : list = [2, 0, 1]\noutput : list = [0, 4, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_asc([2, 0, 1]),4)),1),35)",
    "io_inp": [
      2,
      0,
      1
    ],
    "io_out": [
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_asc(input),4)),1),35)"
  },
  {
    "input": "input : list = [-2, -3, 5]\noutput : list = [21, 18, -3]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(sort_asc([-2, -3, 5]),-3),28),1),-3)",
    "io_inp": [
      -2,
      -3,
      5
    ],
    "io_out": [
      21,
      18,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(sort_asc(input),-3),28),1),-3)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([0, -3],-1),-1))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,-1),-1))"
  },
  {
    "input": "input : list = [5, 3, -1, 3, -1, -3]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(sort_asc([5, 3, -1, 3, -1, -3]),1))),-1)",
    "io_inp": [
      5,
      3,
      -1,
      3,
      -1,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(sort_asc(input),1))),-1)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [200, -200]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(reverse([-4, 4]),-5),-2),-5))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      200,
      -200
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(reverse(input),-5),-2),-5))"
  },
  {
    "input": "input : list = [2, 4, 3, -5, -3, 3]\noutput : list = [20, 10, -15, -20, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(mul_n([2, 4, 3, -5, -3, 3],-5)),5)))",
    "io_inp": [
      2,
      4,
      3,
      -5,
      -3,
      3
    ],
    "io_out": [
      20,
      10,
      -15,
      -20,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(mul_n(input,-5)),5)))"
  },
  {
    "input": "input : list = [2, -4, 5, -2, -5]\noutput : list = [-7, -6, -4, 0, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n([2, -4, 5, -2, -5],3)),28),-1)",
    "io_inp": [
      2,
      -4,
      5,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(input,3)),28),-1)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [-13, -13, -17]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(sort_asc([3, 1, 1]),5),1),-2),-1)",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      -13,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(sort_asc(input),5),1),-2),-1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [3, 24]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(sort_asc([4, -3]),4)),3))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      3,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(sort_asc(input),4)),3))"
  },
  {
    "input": "input : list = [-3, -1, -3, -5, 2]\noutput : list = [-80, -20, 20, 20, 60]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc([-3, -1, -3, -5, 2])),2),-5),4)",
    "io_inp": [
      -3,
      -1,
      -3,
      -5,
      2
    ],
    "io_out": [
      -80,
      -20,
      20,
      20,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_asc(input)),2),-5),4)"
  },
  {
    "input": "input : list = [-4, -4, -5, -3]\noutput : list = [10, 6]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(drop([-4, -4, -5, -3],2),7),-2),4),4)",
    "io_inp": [
      -4,
      -4,
      -5,
      -3
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(drop(input,2),7),-2),4),4)"
  },
  {
    "input": "input : list = [-3, -1, -5, 1]\noutput : list = [-7, -5, -3, -1]",
    "output": "generated_output : list = add_n(reverse(sort_des([-3, -1, -5, 1])),-2)",
    "io_inp": [
      -3,
      -1,
      -5,
      1
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(reverse([-5, -3])),5)),5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(reverse(input)),5)),5)"
  },
  {
    "input": "input : list = [-5, -1, 5, 3, -2]\noutput : list = [-7, -4, -3, 1, 3]",
    "output": "generated_output : list = take(reverse(add_n(take(sort_des([-5, -1, 5, 3, -2]),12),-2)),38)",
    "io_inp": [
      -5,
      -1,
      5,
      3,
      -2
    ],
    "io_out": [
      -7,
      -4,
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sort_des(input),12),-2)),38)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-14, -8]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(add_n([1, -5],-4)),-5)))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -14,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(add_n(input,-4)),-5)))"
  },
  {
    "input": "input : list = [-4, -2, -5, 1, 2, -1]\noutput : list = [-80, -64, -32]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(take([-4, -2, -5, 1, 2, -1],3))),-4),-4)",
    "io_inp": [
      -4,
      -2,
      -5,
      1,
      2,
      -1
    ],
    "io_out": [
      -80,
      -64,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(take(input,3))),-4),-4)"
  },
  {
    "input": "input : list = [3, -4, -4, -3, 3]\noutput : list = [3, 3, -9, -11, -11]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(mul_n([3, -4, -4, -3, 3],2),-3),16)))",
    "io_inp": [
      3,
      -4,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      3,
      -9,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(mul_n(input,2),-3),16)))"
  },
  {
    "input": "input : list = [-5, -3, -1, -5]\noutput : list = [-7, -3, -5, -7]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n([-5, -3, -1, -5],3),3)),2)",
    "io_inp": [
      -5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(input,3),3)),2)"
  },
  {
    "input": "input : list = [-1, -5, 4, -2]\noutput : list = [6, -4, -6, -12]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(sort_des([-1, -5, 4, -2]),-4),-5),2))",
    "io_inp": [
      -1,
      -5,
      4,
      -2
    ],
    "io_out": [
      6,
      -4,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(sort_des(input),-4),-5),2))"
  },
  {
    "input": "input : list = [-5, 1, -5, 2, -5]\noutput : list = [18, 15, -3, -3, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sub_n([-5, 1, -5, 2, -5],-4))),3))",
    "io_inp": [
      -5,
      1,
      -5,
      2,
      -5
    ],
    "io_out": [
      18,
      15,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sub_n(input,-4))),3))"
  },
  {
    "input": "input : list = [-1, -4, -3, 0]\noutput : list = [-3, -4, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc([-1, -4, -3, 0]),10))),3)",
    "io_inp": [
      -1,
      -4,
      -3,
      0
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc(input),10))),3)"
  },
  {
    "input": "input : list = [3, -3, -2, -5, 0, 4]\noutput : list = [0, 3, 4]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(sort_asc([3, -3, -2, -5, 0, 4])),3)),1)",
    "io_inp": [
      3,
      -3,
      -2,
      -5,
      0,
      4
    ],
    "io_out": [
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(sort_asc(input)),3)),1)"
  },
  {
    "input": "input : list = [1, -5, -1, 3]\noutput : list = [3, -1, -5, 1]",
    "output": "generated_output : list = reverse([1, -5, -1, 3])",
    "io_inp": [
      1,
      -5,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 4, -5, -3]\noutput : list = [-1, 1, 7, 8, 9]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(reverse([3, 5, 4, -5, -3]))),2),-2)",
    "io_inp": [
      3,
      5,
      4,
      -5,
      -3
    ],
    "io_out": [
      -1,
      1,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(reverse(input))),2),-2)"
  },
  {
    "input": "input : list = [-3, 2, 4, 5, 4, -2]\noutput : list = [6, -4, -8, -10, -8, 4]",
    "output": "generated_output : list = mul_n([-3, 2, 4, 5, 4, -2],-2)",
    "io_inp": [
      -3,
      2,
      4,
      5,
      4,
      -2
    ],
    "io_out": [
      6,
      -4,
      -8,
      -10,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 2, 3, -3, -5]\noutput : list = [5, 4, 3, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n(sort_des([4, 2, 3, -3, -5]),2),20)),1)",
    "io_inp": [
      4,
      2,
      3,
      -3,
      -5
    ],
    "io_out": [
      5,
      4,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(sort_des(input),2),20)),1)"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take(take([3, 2, 4],1),13))",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,1),13))"
  },
  {
    "input": "input : list = [2, -5, 1, 3]\noutput : list = [-6, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(reverse([2, -5, 1, 3]),5)),-4))",
    "io_inp": [
      2,
      -5,
      1,
      3
    ],
    "io_out": [
      -6,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(reverse(input),5)),-4))"
  },
  {
    "input": "input : list = [5, -4, 3, -5, -1]\noutput : list = [60, 48, 12, -36, -60]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([5, -4, 3, -5, -1],-3),4))",
    "io_inp": [
      5,
      -4,
      3,
      -5,
      -1
    ],
    "io_out": [
      60,
      48,
      12,
      -36,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-3),4))"
  },
  {
    "input": "input : list = [4, -5, -1, -1, 2, 1]\noutput : list = [39, -42, -6, -6, 21, 12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(reverse([4, -5, -1, -1, 2, 1]),3),-1)),3)",
    "io_inp": [
      4,
      -5,
      -1,
      -1,
      2,
      1
    ],
    "io_out": [
      39,
      -42,
      -6,
      -6,
      21,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(reverse(input),3),-1)),3)"
  },
  {
    "input": "input : list = [1, -3, -3, 2, 1]\noutput : list = [17, -3]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(take([1, -3, -3, 2, 1],2),5),-2),-1))",
    "io_inp": [
      1,
      -3,
      -3,
      2,
      1
    ],
    "io_out": [
      17,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(take(input,2),5),-2),-1))"
  },
  {
    "input": "input : list = [2, 2, 1, 1, -4]\noutput : list = [16, 16, 8, 8, -32]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([2, 2, 1, 1, -4]),2),4)",
    "io_inp": [
      2,
      2,
      1,
      1,
      -4
    ],
    "io_out": [
      16,
      16,
      8,
      8,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),2),4)"
  },
  {
    "input": "input : list = [3, 5, -2, 5]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(take([3, 5, -2, 5],1),-1),3),3),-1)",
    "io_inp": [
      3,
      5,
      -2,
      5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(take(input,1),-1),3),3),-1)"
  },
  {
    "input": "input : list = [-1, 4, 0]\noutput : list = [-15]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(sub_n([-1, 4, 0],2),1),5)),44)",
    "io_inp": [
      -1,
      4,
      0
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(sub_n(input,2),1),5)),44)"
  },
  {
    "input": "input : list = [4, 5, -1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sub_n(reverse(take([4, 5, -1],1)),2))",
    "io_inp": [
      4,
      5,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(input,1)),2))"
  },
  {
    "input": "input : list = [-5, 4, 4, 3]\noutput : list = [6, 6, 5, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(add_n([-5, 4, 4, 3],-1)))),-3)",
    "io_inp": [
      -5,
      4,
      4,
      3
    ],
    "io_out": [
      6,
      6,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(add_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [-5, -4, 5, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(take([-5, -4, 5, 3],1),-2),-3),-4))",
    "io_inp": [
      -5,
      -4,
      5,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(take(input,1),-2),-3),-4))"
  },
  {
    "input": "input : list = [-3, 2, -1, -2, -4, 0]\noutput : list = [2, 0, -1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(sort_des([-3, 2, -1, -2, -4, 0]),8))))",
    "io_inp": [
      -3,
      2,
      -1,
      -2,
      -4,
      0
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(sort_des(input),8))))"
  },
  {
    "input": "input : list = [-1, -5, 5, 5, 3]\noutput : list = [-5, -25]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(take([-1, -5, 5, 5, 3],2),16),5),-5),5)",
    "io_inp": [
      -1,
      -5,
      5,
      5,
      3
    ],
    "io_out": [
      -5,
      -25
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(take(input,2),16),5),-5),5)"
  },
  {
    "input": "input : list = [-3, 4, -3, -2]\noutput : list = [-7, -7, -6, 0]",
    "output": "generated_output : list = sort_asc(sub_n([-3, 4, -3, -2],4))",
    "io_inp": [
      -3,
      4,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [-1, -2, -2, 2, 2, 1]\noutput : list = [-5, -6, -6, -2, -2, -3]",
    "output": "generated_output : list = add_n([-1, -2, -2, 2, 2, 1],-4)",
    "io_inp": [
      -1,
      -2,
      -2,
      2,
      2,
      1
    ],
    "io_out": [
      -5,
      -6,
      -6,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(take([1, -2, -4],1),-1)),17))",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(take(input,1),-1)),17))"
  },
  {
    "input": "input : list = [5, 5, -5, -5, -3]\noutput : list = [-2, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(drop([5, 5, -5, -5, -3],3),1)),-1),3)",
    "io_inp": [
      5,
      5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(drop(input,3),1)),-1),3)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(sub_n([2, -5, -4],2),1),1),-3),4)",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(sub_n(input,2),1),1),-3),4)"
  },
  {
    "input": "input : list = [3, -2, 5, -1]\noutput : list = [-2, 5, -1]",
    "output": "generated_output : list = drop([3, -2, 5, -1],1)",
    "io_inp": [
      3,
      -2,
      5,
      -1
    ],
    "io_out": [
      -2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 2, -1, 4, 3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(take(add_n(sort_des(add_n([1, 2, -1, 4, 3],-5)),-1),6),2)",
    "io_inp": [
      1,
      2,
      -1,
      4,
      3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(add_n(input,-5)),-1),6),2)"
  },
  {
    "input": "input : list = [2, -2, 0, 4]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(drop(sub_n([2, -2, 0, 4],2),3)),16)",
    "io_inp": [
      2,
      -2,
      0,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(sub_n(input,2),3)),16)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [15, 10]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(sub_n([5, 0],-4),-1),-5)),14)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(sub_n(input,-4),-1),-5)),14)"
  },
  {
    "input": "input : list = [-5, -1, 2, 0]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, -1, 2, 0],1))",
    "io_inp": [
      -5,
      -1,
      2,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, 1, 0, -2, -2]\noutput : list = [-4, -7, -8, -10, -10]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(add_n([4, 1, 0, -2, -2],3),5),1),-5),-2)",
    "io_inp": [
      4,
      1,
      0,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -7,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(add_n(input,3),5),1),-5),-2)"
  },
  {
    "input": "input : list = [-5, 3, 0, 0, 3, -4]\noutput : list = [-1, -1, 2, 2, 6, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(reverse([-5, 3, 0, 0, 3, -4]),-2),-1)))",
    "io_inp": [
      -5,
      3,
      0,
      0,
      3,
      -4
    ],
    "io_out": [
      -1,
      -1,
      2,
      2,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(reverse(input),-2),-1)))"
  },
  {
    "input": "input : list = [-5, -1, -3, -3, 0]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(take([-5, -1, -3, -3, 0],1)),-4)),3)",
    "io_inp": [
      -5,
      -1,
      -3,
      -3,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(take(input,1)),-4)),3)"
  },
  {
    "input": "input : list = [5, -1, -5, 2, 0]\noutput : list = [7, 4, 2, 1, -3]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(reverse([5, -1, -5, 2, 0]))),2),11)",
    "io_inp": [
      5,
      -1,
      -5,
      2,
      0
    ],
    "io_out": [
      7,
      4,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(reverse(input))),2),11)"
  },
  {
    "input": "input : list = [4, -3, 0, -3]\noutput : list = [4, 0, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc([4, -3, 0, -3]))",
    "io_inp": [
      4,
      -3,
      0,
      -3
    ],
    "io_out": [
      4,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -2, 4, -5]\noutput : list = [-4, -4, 8, -10]",
    "output": "generated_output : list = mul_n([-2, -2, 4, -5],2)",
    "io_inp": [
      -2,
      -2,
      4,
      -5
    ],
    "io_out": [
      -4,
      -4,
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, -2, -3, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(take(drop(sub_n(sort_des([5, -2, -3, 0]),-1),2),13))",
    "io_inp": [
      5,
      -2,
      -3,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(sub_n(sort_des(input),-1),2),13))"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [0, -6, -12]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(sub_n([2, -1, -4],2)),-2),34),-1)",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      0,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(sub_n(input,2)),-2),34),-1)"
  },
  {
    "input": "input : list = [0, -1, -1, 0, 3, -3]\noutput : list = [-5, 55, 25, 15, 15, 25]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(add_n([0, -1, -1, 0, 3, -3],3),-2),-5),-5))",
    "io_inp": [
      0,
      -1,
      -1,
      0,
      3,
      -3
    ],
    "io_out": [
      -5,
      55,
      25,
      15,
      15,
      25
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(add_n(input,3),-2),-5),-5))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [0, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(reverse([1, 4])),-3)),2)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(reverse(input)),-3)),2)"
  },
  {
    "input": "input : list = [4, -2, -4, -1]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(drop([4, -2, -4, -1],1)),9),1))",
    "io_inp": [
      4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(drop(input,1)),9),1))"
  },
  {
    "input": "input : list = [-5, -4, -4, -3, -4]\noutput : list = [-10, -9, -10, -10, -11]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(add_n([-5, -4, -4, -3, -4],-4),2)),1),-5)",
    "io_inp": [
      -5,
      -4,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -10,
      -9,
      -10,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(add_n(input,-4),2)),1),-5)"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [8, 8, 0]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([3, 3, -5],-2),-3))",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      8,
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,-2),-3))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc([5, 4])",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, 1, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = drop([0, -4, 1, 2, -2],3)",
    "io_inp": [
      0,
      -4,
      1,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(reverse([0, 4]),-5)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [3, 7, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse([-1, 1, -5]),5))),-3)",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      3,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse(input),5))),-3)"
  },
  {
    "input": "input : list = [1, -5, -3, -5, -3, 1]\noutput : list = [-1, -7, -5, -7, -5, -1]",
    "output": "generated_output : list = sub_n([1, -5, -3, -5, -3, 1],2)",
    "io_inp": [
      1,
      -5,
      -3,
      -5,
      -3,
      1
    ],
    "io_out": [
      -1,
      -7,
      -5,
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, 0, 4, -3]\noutput : list = [0, -1, -5, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(sub_n([5, 0, 4, -3],2),-5)),-2),40)",
    "io_inp": [
      5,
      0,
      4,
      -3
    ],
    "io_out": [
      0,
      -1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(sub_n(input,2),-5)),-2),40)"
  },
  {
    "input": "input : list = [-1, 2, 5, 1]\noutput : list = [0, 2, 3, 6]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(add_n([-1, 2, 5, 1],-1)))),2)",
    "io_inp": [
      -1,
      2,
      5,
      1
    ],
    "io_out": [
      0,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(add_n(input,-1)))),2)"
  },
  {
    "input": "input : list = [0, 3, 4, -5, 4, 5]\noutput : list = [50, 45, 45, 40, 25, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(sub_n([0, 3, 4, -5, 4, 5],-5),5))))",
    "io_inp": [
      0,
      3,
      4,
      -5,
      4,
      5
    ],
    "io_out": [
      50,
      45,
      45,
      40,
      25,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(sub_n(input,-5),5))))"
  },
  {
    "input": "input : list = [5, -4, 0, -4, 0]\noutput : list = [0, -4, 0, -4, 5]",
    "output": "generated_output : list = reverse([5, -4, 0, -4, 0])",
    "io_inp": [
      5,
      -4,
      0,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      0,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, -2]\noutput : list = [-2, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(reverse([3, 1, -2]),5),3),3))",
    "io_inp": [
      3,
      1,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(reverse(input),5),3),3))"
  },
  {
    "input": "input : list = [4, -5, -4, -2]\noutput : list = [-2, -1, 1, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n([4, -5, -4, -2],-3),14)))",
    "io_inp": [
      4,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(input,-3),14)))"
  },
  {
    "input": "input : list = [2, 1, 3, 3, -3]\noutput : list = [-12, 4, 8, 12, 12]",
    "output": "generated_output : list = mul_n(sort_asc([2, 1, 3, 3, -3]),4)",
    "io_inp": [
      2,
      1,
      3,
      3,
      -3
    ],
    "io_out": [
      -12,
      4,
      8,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [0, 4, -1, 0, 0]\noutput : list = [-1, 0, 0, 0, 4]",
    "output": "generated_output : list = take(sort_asc([0, 4, -1, 0, 0]),18)",
    "io_inp": [
      0,
      4,
      -1,
      0,
      0
    ],
    "io_out": [
      -1,
      0,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),18)"
  },
  {
    "input": "input : list = [2, 0, -4]\noutput : list = [8, 0, -16]",
    "output": "generated_output : list = mul_n([2, 0, -4],4)",
    "io_inp": [
      2,
      0,
      -4
    ],
    "io_out": [
      8,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, 3, 0, -4, -2]\noutput : list = [-72, 54, 0, -72, -36]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse(reverse([-4, 3, 0, -4, -2])),-3),-2),3)",
    "io_inp": [
      -4,
      3,
      0,
      -4,
      -2
    ],
    "io_out": [
      -72,
      54,
      0,
      -72,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(reverse(input)),-3),-2),3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [18]",
    "output": "generated_output : list = sort_asc(mul_n(drop(sub_n(sort_des([-5, -3]),1),1),-3))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(sub_n(sort_des(input),1),1),-3))"
  },
  {
    "input": "input : list = [4, -3, 1, -1, -2, -3]\noutput : list = [-3, -2, -1, 1, -3, 4]",
    "output": "generated_output : list = reverse([4, -3, 1, -1, -2, -3])",
    "io_inp": [
      4,
      -3,
      1,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 3, 0]\noutput : list = [2, 5, 4]",
    "output": "generated_output : list = take(sub_n(take(reverse(add_n([2, 3, 0],3)),22),1),17)",
    "io_inp": [
      2,
      3,
      0
    ],
    "io_out": [
      2,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(add_n(input,3)),22),1),17)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-4, -4, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([1, -4, -4]))",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 1, -5, -1, -1, 1]\noutput : list = [-5, 1, 2]",
    "output": "generated_output : list = sort_asc(take([2, 1, -5, -1, -1, 1],3))",
    "io_inp": [
      2,
      1,
      -5,
      -1,
      -1,
      1
    ],
    "io_out": [
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [5, 4, 2, 1]\noutput : list = [-15, -12, -6, -3]",
    "output": "generated_output : list = sort_asc(mul_n([5, 4, 2, 1],-3))",
    "io_inp": [
      5,
      4,
      2,
      1
    ],
    "io_out": [
      -15,
      -12,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-2, 4, -5, 5, -3, 1]\noutput : list = [2, -2, 6, -4]",
    "output": "generated_output : list = reverse(add_n(drop([-2, 4, -5, 5, -3, 1],2),1))",
    "io_inp": [
      -2,
      4,
      -5,
      5,
      -3,
      1
    ],
    "io_out": [
      2,
      -2,
      6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(input,2),1))"
  },
  {
    "input": "input : list = [0, -2, 1, 3, 4]\noutput : list = [-3, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(take([0, -2, 1, 3, 4],3),20))),-1)",
    "io_inp": [
      0,
      -2,
      1,
      3,
      4
    ],
    "io_out": [
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(take(input,3),20))),-1)"
  },
  {
    "input": "input : list = [2, -2, -2]\noutput : list = [2, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des([2, -2, -2]))",
    "io_inp": [
      2,
      -2,
      -2
    ],
    "io_out": [
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = add_n(sort_asc([2, -1]),-1)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-5, 2, -4, 1, -1, 1]\noutput : list = [-6, -5, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(take([-5, 2, -4, 1, -1, 1],4)),5),-4))",
    "io_inp": [
      -5,
      2,
      -4,
      1,
      -1,
      1
    ],
    "io_out": [
      -6,
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(take(input,4)),5),-4))"
  },
  {
    "input": "input : list = [1, -1, -4, -5, -5, -3]\noutput : list = [6, 4, 2, 1, 0, 0]",
    "output": "generated_output : list = sort_des(add_n([1, -1, -4, -5, -5, -3],5))",
    "io_inp": [
      1,
      -1,
      -4,
      -5,
      -5,
      -3
    ],
    "io_out": [
      6,
      4,
      2,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [-4, 0, -3]",
    "output": "generated_output : list = sub_n(reverse(add_n([-4, -1, -5],4)),3)",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      -4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,4)),3)"
  },
  {
    "input": "input : list = [2, -3, 5, 1, -5]\noutput : list = [2, -3, 5]",
    "output": "generated_output : list = take([2, -3, 5, 1, -5],3)",
    "io_inp": [
      2,
      -3,
      5,
      1,
      -5
    ],
    "io_out": [
      2,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, -2, 4, 3, -1, -5]\noutput : list = [-7, -4, -3, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sub_n([5, -2, 4, 3, -1, -5],2))",
    "io_inp": [
      5,
      -2,
      4,
      3,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -4,
      -3,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [1, 2, 4, -2, 4, 0]\noutput : list = [-4, 12, -12, 12, 4, 0]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n(mul_n([1, 2, 4, -2, 4, 0],-2),4),-2)),-4)",
    "io_inp": [
      1,
      2,
      4,
      -2,
      4,
      0
    ],
    "io_out": [
      -4,
      12,
      -12,
      12,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(mul_n(input,-2),4),-2)),-4)"
  },
  {
    "input": "input : list = [1, 3, 2, -4, -4]\noutput : list = [-2, -3, -4, -9, -9]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(add_n([1, 3, 2, -4, -4],-2),2),-1),39))",
    "io_inp": [
      1,
      3,
      2,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(add_n(input,-2),2),-1),39))"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take([2, -4, 5],1)),-4))",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(input,1)),-4))"
  },
  {
    "input": "input : list = [1, -5, 2]\noutput : list = [-3, 4, -2]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sub_n([1, -5, 2],2),12)),-3),-1)",
    "io_inp": [
      1,
      -5,
      2
    ],
    "io_out": [
      -3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sub_n(input,2),12)),-3),-1)"
  },
  {
    "input": "input : list = [1, -2, -2, 4]\noutput : list = [3, 3, 6, 9]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse([1, -2, -2, 4]))),-5)",
    "io_inp": [
      1,
      -2,
      -2,
      4
    ],
    "io_out": [
      3,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(input))),-5)"
  },
  {
    "input": "input : list = [3, -1, 4, -1, -2, 4]\noutput : list = [9, 7, 7, -1, -3, -3]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(mul_n([3, -1, 4, -1, -2, 4],-2)),5)),43)",
    "io_inp": [
      3,
      -1,
      4,
      -1,
      -2,
      4
    ],
    "io_out": [
      9,
      7,
      7,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(mul_n(input,-2)),5)),43)"
  },
  {
    "input": "input : list = [0, 0, -3, 3, 1]\noutput : list = [4, 6, 0, 3, 3]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse([0, 0, -3, 3, 1]))),-3)",
    "io_inp": [
      0,
      0,
      -3,
      3,
      1
    ],
    "io_out": [
      4,
      6,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(input))),-3)"
  },
  {
    "input": "input : list = [0, -4, 0, -2, -1, -2]\noutput : list = [0, 0, -1, -2, -2, -4]",
    "output": "generated_output : list = sort_des([0, -4, 0, -2, -1, -2])",
    "io_inp": [
      0,
      -4,
      0,
      -2,
      -1,
      -2
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, 2, -3, -5]\noutput : list = [-6, -4, 1]",
    "output": "generated_output : list = add_n(reverse(drop([3, -2, 2, -3, -5],2)),-1)",
    "io_inp": [
      3,
      -2,
      2,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,2)),-1)"
  },
  {
    "input": "input : list = [3, -5, 1, 3, -3, 3]\noutput : list = [-6, -6, -6, -4, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n([3, -5, 1, 3, -3, 3],-3),-1),3)),-3)",
    "io_inp": [
      3,
      -5,
      1,
      3,
      -3,
      3
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n(input,-3),-1),3)),-3)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(sort_des([-4, -4]))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -5, 1, 5, -1]\noutput : list = [29, 44, 14, -6, 24]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(add_n([-2, -5, 1, 5, -1],-4),-5),1),-1),-1)",
    "io_inp": [
      -2,
      -5,
      1,
      5,
      -1
    ],
    "io_out": [
      29,
      44,
      14,
      -6,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(add_n(input,-4),-5),1),-1),-1)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -2, 4],1)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -3, 2, -1]\noutput : list = [8, 6, 3, 2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(sort_asc([3, -3, 2, -1]),-1),-1),-3),1)",
    "io_inp": [
      3,
      -3,
      2,
      -1
    ],
    "io_out": [
      8,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(sort_asc(input),-1),-1),-3),1)"
  },
  {
    "input": "input : list = [1, -3, 3, 5, -4, -5]\noutput : list = [0, -48, 24, 48, -60, -72]",
    "output": "generated_output : list = take(mul_n(add_n(take(mul_n([1, -3, 3, 5, -4, -5],-3),21),3),-4),57)",
    "io_inp": [
      1,
      -3,
      3,
      5,
      -4,
      -5
    ],
    "io_out": [
      0,
      -48,
      24,
      48,
      -60,
      -72
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(mul_n(input,-3),21),3),-4),57)"
  },
  {
    "input": "input : list = [2, 3, -4, -1, 0, 0]\noutput : list = [-4, -1, 0, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(reverse([2, 3, -4, -1, 0, 0])),12),7))",
    "io_inp": [
      2,
      3,
      -4,
      -1,
      0,
      0
    ],
    "io_out": [
      -4,
      -1,
      0,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(reverse(input)),12),7))"
  },
  {
    "input": "input : list = [-4, -3, -2, 0]\noutput : list = [0, -2, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, -2, 0])",
    "io_inp": [
      -4,
      -3,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n(take(reverse(drop([5, -3, -5],1)),20),-1)",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(drop(input,1)),20),-1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(reverse([3, 1]))),4))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(reverse(input))),4))"
  },
  {
    "input": "input : list = [-2, 4, -5, -5, 5]\noutput : list = [14, 14, -4, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(drop([-2, 4, -5, -5, 5],1),2))),-2)",
    "io_inp": [
      -2,
      4,
      -5,
      -5,
      5
    ],
    "io_out": [
      14,
      14,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(drop(input,1),2))),-2)"
  },
  {
    "input": "input : list = [-5, 5, 4, -1]\noutput : list = [-5, 20]",
    "output": "generated_output : list = reverse(drop(mul_n([-5, 5, 4, -1],5),2))",
    "io_inp": [
      -5,
      5,
      4,
      -1
    ],
    "io_out": [
      -5,
      20
    ],
    "output_masked": "generated_output : list = reverse(drop(mul_n(input,5),2))"
  },
  {
    "input": "input : list = [4, -1, -1, -2]\noutput : list = [8, 4, 4, -16]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(mul_n([4, -1, -1, -2],-4))),29))",
    "io_inp": [
      4,
      -1,
      -1,
      -2
    ],
    "io_out": [
      8,
      4,
      4,
      -16
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(mul_n(input,-4))),29))"
  },
  {
    "input": "input : list = [-1, 4, 3]\noutput : list = [62, 46, -18]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n([-1, 4, 3],4)),4),-2)",
    "io_inp": [
      -1,
      4,
      3
    ],
    "io_out": [
      62,
      46,
      -18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(input,4)),4),-2)"
  },
  {
    "input": "input : list = [1, 3, 0, -3, -2]\noutput : list = [-12, -8, 0, 4, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(sort_des([1, 3, 0, -3, -2])),4),30))",
    "io_inp": [
      1,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      -12,
      -8,
      0,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(sort_des(input)),4),30))"
  },
  {
    "input": "input : list = [-3, 4, -2, -2, 2, 0]\noutput : list = [-2, -1, -1, 1, 3, 5]",
    "output": "generated_output : list = add_n(sort_asc([-3, 4, -2, -2, 2, 0]),1)",
    "io_inp": [
      -3,
      4,
      -2,
      -2,
      2,
      0
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [0, 1, 2, -2]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(add_n(reverse(take([0, 1, 2, -2],1)),-5),1)",
    "io_inp": [
      0,
      1,
      2,
      -2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(input,1)),-5),1)"
  },
  {
    "input": "input : list = [-2, -2, -5, -3, 1, 3]\noutput : list = [-5, -3, -2, -2, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -2, -5, -3, 1, 3]))",
    "io_inp": [
      -2,
      -2,
      -5,
      -3,
      1,
      3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 4, 2, 0]\noutput : list = [-5, -2, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n([-3, 4, 2, 0],2))",
    "io_inp": [
      -3,
      4,
      2,
      0
    ],
    "io_out": [
      -5,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-3, -5, -8]",
    "output": "generated_output : list = add_n([0, -2, -5],-3)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 1, 1, -3, 0]\noutput : list = [-8, 2, 2, -6, 0]",
    "output": "generated_output : list = mul_n([-4, 1, 1, -3, 0],2)",
    "io_inp": [
      -4,
      1,
      1,
      -3,
      0
    ],
    "io_out": [
      -8,
      2,
      2,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, -4, -4, -2, 1]\noutput : list = [26, 21, 6, -4, -4]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(sub_n([2, -4, -4, -2, 1],-4),5),4),13))",
    "io_inp": [
      2,
      -4,
      -4,
      -2,
      1
    ],
    "io_out": [
      26,
      21,
      6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(sub_n(input,-4),5),4),13))"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 4, 5],1)",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 3, 5, -4]\noutput : list = [-4, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 3, 5, -4])",
    "io_inp": [
      3,
      3,
      5,
      -4
    ],
    "io_out": [
      -4,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, 2, 5, -4, -1]\noutput : list = [-7, -5, -4, -1, -1, 2]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(sub_n([3, -1, 2, 5, -4, -1],-3)),-1),-1),25)",
    "io_inp": [
      3,
      -1,
      2,
      5,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(sub_n(input,-3)),-1),-1),25)"
  },
  {
    "input": "input : list = [-3, 1, 4, -2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = mul_n(take([-3, 1, 4, -2],2),1)",
    "io_inp": [
      -3,
      1,
      4,
      -2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),1)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse([2, 4]),2),-3),5),1)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(reverse(input),2),-3),5),1)"
  },
  {
    "input": "input : list = [3, -5, -5]\noutput : list = [-5, -5, 11]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n(sort_des([3, -5, -5]),2)),-5),43)",
    "io_inp": [
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(sort_des(input),2)),-5),43)"
  },
  {
    "input": "input : list = [0, -3, 5, -1, -2]\noutput : list = [-12, -7, -2, 3, 28]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(mul_n([0, -3, 5, -1, -2],5),-3),22)),38)",
    "io_inp": [
      0,
      -3,
      5,
      -1,
      -2
    ],
    "io_out": [
      -12,
      -7,
      -2,
      3,
      28
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(mul_n(input,5),-3),22)),38)"
  },
  {
    "input": "input : list = [4, 5, 4, 0]\noutput : list = [0, -16, -16, -20]",
    "output": "generated_output : list = mul_n(sort_asc([4, 5, 4, 0]),-4)",
    "io_inp": [
      4,
      5,
      4,
      0
    ],
    "io_out": [
      0,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(sort_asc([2, 2]),-3))))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [-3, -2, -3, -3, -4, -2]\noutput : list = [-7, -6, -7, -7, -8, -6]",
    "output": "generated_output : list = add_n([-3, -2, -3, -3, -4, -2],-4)",
    "io_inp": [
      -3,
      -2,
      -3,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -7,
      -7,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -2, 2, -4]\noutput : list = [-9, -7, -6, -3]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(reverse([-1, -2, 2, -4]),-5),16)))",
    "io_inp": [
      -1,
      -2,
      2,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(reverse(input),-5),16)))"
  },
  {
    "input": "input : list = [-2, -3, -3, -5, 1, -3]\noutput : list = [3, -6, -9, -9, -9, -15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(mul_n([-2, -3, -3, -5, 1, -3],1)))),3)",
    "io_inp": [
      -2,
      -3,
      -3,
      -5,
      1,
      -3
    ],
    "io_out": [
      3,
      -6,
      -9,
      -9,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(mul_n(input,1)))),3)"
  },
  {
    "input": "input : list = [-4, -1, -5, -4]\noutput : list = [15, 12, 12, 3]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse([-4, -1, -5, -4]),11),-3))",
    "io_inp": [
      -4,
      -1,
      -5,
      -4
    ],
    "io_out": [
      15,
      12,
      12,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(input),11),-3))"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sort_des([-1, 0, -3]),5),24)))",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sort_des(input),5),24)))"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [-5, -25, -50]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(add_n([-4, 5, 0],4),-5),5)))",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      -5,
      -25,
      -50
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(add_n(input,4),-5),5)))"
  },
  {
    "input": "input : list = [1, -2, 1, 5, -1]\noutput : list = [-1, -5, -5, -7, -8]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sort_des([1, -2, 1, 5, -1]),-1),4),-4),-5)",
    "io_inp": [
      1,
      -2,
      1,
      5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sort_des(input),-1),4),-4),-5)"
  },
  {
    "input": "input : list = [4, -5, 3]\noutput : list = [7]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(take([4, -5, 3],1)),1)),3)",
    "io_inp": [
      4,
      -5,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(take(input,1)),1)),3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(sub_n([1, 4],2))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [3, 5, -3, 5, -4]\noutput : list = [11, 2]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(drop([3, 5, -3, 5, -4],3),-5),1),5),1)",
    "io_inp": [
      3,
      5,
      -3,
      5,
      -4
    ],
    "io_out": [
      11,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(drop(input,3),-5),1),5),1)"
  },
  {
    "input": "input : list = [4, 4, 4, 1, 1, 1]\noutput : list = [1, 1, 1, -2, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n([4, 4, 4, 1, 1, 1],1),2)))",
    "io_inp": [
      4,
      4,
      4,
      1,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(input,1),2)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-20, -28]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sub_n([-5, -4],-5),2),-5),-4))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -20,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sub_n(input,-5),2),-5),-4))"
  },
  {
    "input": "input : list = [1, -1, 5, 3]\noutput : list = [2, 4, 6, 8]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(sort_asc([1, -1, 5, 3]),1),3),2),-1)",
    "io_inp": [
      1,
      -1,
      5,
      3
    ],
    "io_out": [
      2,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(sort_asc(input),1),3),2),-1)"
  },
  {
    "input": "input : list = [4, 0, -3, -5]\noutput : list = [-2, 0, 3, 7]",
    "output": "generated_output : list = take(sort_asc(add_n(sub_n([4, 0, -3, -5],-4),-1)),31)",
    "io_inp": [
      4,
      0,
      -3,
      -5
    ],
    "io_out": [
      -2,
      0,
      3,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sub_n(input,-4),-1)),31)"
  },
  {
    "input": "input : list = [-4, 3, -5, 5, 1, 3]\noutput : list = [-5, -4, 1, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(reverse([-4, 3, -5, 5, 1, 3]))),29))",
    "io_inp": [
      -4,
      3,
      -5,
      5,
      1,
      3
    ],
    "io_out": [
      -5,
      -4,
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(reverse(input))),29))"
  },
  {
    "input": "input : list = [1, 5, 4]\noutput : list = [-20, -16, -4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_des([1, 5, 4])),-4)))",
    "io_inp": [
      1,
      5,
      4
    ],
    "io_out": [
      -20,
      -16,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-6, -10]",
    "output": "generated_output : list = sub_n(add_n([3, -1],-4),5)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),5)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-10, 0]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(sub_n([-4, 1],-5),-2),2),28))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(sub_n(input,-5),-2),2),28))"
  },
  {
    "input": "input : list = [3, 0, 0, -1]\noutput : list = [15]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(take([3, 0, 0, -1],1),-1),-4),3))",
    "io_inp": [
      3,
      0,
      0,
      -1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(take(input,1),-1),-4),3))"
  },
  {
    "input": "input : list = [-3, -4, -2, 1]\noutput : list = [0, -9, -15]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(drop([-3, -4, -2, 1],1),-1))),3)",
    "io_inp": [
      -3,
      -4,
      -2,
      1
    ],
    "io_out": [
      0,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(drop(input,1),-1))),3)"
  },
  {
    "input": "input : list = [2, -4, -1, 2]\noutput : list = [4, -2, 1, 4]",
    "output": "generated_output : list = add_n(add_n(add_n([2, -4, -1, 2],4),2),-4)",
    "io_inp": [
      2,
      -4,
      -1,
      2
    ],
    "io_out": [
      4,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,4),2),-4)"
  },
  {
    "input": "input : list = [3, 3, -3, -2, 3, -5]\noutput : list = [4, 6, 7, 12, 12, 12]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(add_n([3, 3, -3, -2, 3, -5],5)))),4)",
    "io_inp": [
      3,
      3,
      -3,
      -2,
      3,
      -5
    ],
    "io_out": [
      4,
      6,
      7,
      12,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(add_n(input,5)))),4)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-16, -14, -9]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n([-4, -2, 3],-5)),-2),5)",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -16,
      -14,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(input,-5)),-2),5)"
  },
  {
    "input": "input : list = [1, 3, 5, 2, 3]\noutput : list = [3, 4, 5, 5, 7]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sort_des([1, 3, 5, 2, 3])),3)),-1)",
    "io_inp": [
      1,
      3,
      5,
      2,
      3
    ],
    "io_out": [
      3,
      4,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sort_des(input)),3)),-1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [6, 2]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_des(sort_des([1, 5])),-3),2),40)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_des(sort_des(input)),-3),2),40)"
  },
  {
    "input": "input : list = [-5, -3, 2, 0, 4]\noutput : list = [-20, -12, -4, 8, 16]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(sub_n([-5, -3, 2, 0, 4],-1),4),16),-1))",
    "io_inp": [
      -5,
      -3,
      2,
      0,
      4
    ],
    "io_out": [
      -20,
      -12,
      -4,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(sub_n(input,-1),4),16),-1))"
  },
  {
    "input": "input : list = [5, -5, -1, 1, -1]\noutput : list = [-15, -3, -3, 3, 15]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(sort_des([5, -5, -1, 1, -1])))),3)",
    "io_inp": [
      5,
      -5,
      -1,
      1,
      -1
    ],
    "io_out": [
      -15,
      -3,
      -3,
      3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [4, 3, 2, 4]\noutput : list = [9, 8, 7, 9]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([4, 3, 2, 4],-1),1),-5)",
    "io_inp": [
      4,
      3,
      2,
      4
    ],
    "io_out": [
      9,
      8,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,-1),1),-5)"
  },
  {
    "input": "input : list = [3, 5, -3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(drop([3, 5, -3, 5],2),5)",
    "io_inp": [
      3,
      5,
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,2),5)"
  },
  {
    "input": "input : list = [-4, 0, -4, -1, 3]\noutput : list = [0, -3, -4, -7, -7]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(sort_des([-4, 0, -4, -1, 3])),-3)),23)",
    "io_inp": [
      -4,
      0,
      -4,
      -1,
      3
    ],
    "io_out": [
      0,
      -3,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(sort_des(input)),-3)),23)"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [6, 1, 5]",
    "output": "generated_output : list = take(sub_n(take(reverse(add_n([1, -3, 2],2)),5),-2),14)",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      6,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(add_n(input,2)),5),-2),14)"
  },
  {
    "input": "input : list = [1, 0, -1, 1, 3, 4]\noutput : list = [-2, -1, 0, 0, 2, 3]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sort_asc([1, 0, -1, 1, 3, 4]),-1),16),-5),-3)",
    "io_inp": [
      1,
      0,
      -1,
      1,
      3,
      4
    ],
    "io_out": [
      -2,
      -1,
      0,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sort_asc(input),-1),16),-5),-3)"
  },
  {
    "input": "input : list = [2, -4, -5, 0]\noutput : list = [2, 0, -4, -5]",
    "output": "generated_output : list = sort_des([2, -4, -5, 0])",
    "io_inp": [
      2,
      -4,
      -5,
      0
    ],
    "io_out": [
      2,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, -5, -4, 2, 2]\noutput : list = [5, 3, 2, 2, -4, -5]",
    "output": "generated_output : list = sort_des([3, 5, -5, -4, 2, 2])",
    "io_inp": [
      3,
      5,
      -5,
      -4,
      2,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 0]\noutput : list = [9, 9, 9]",
    "output": "generated_output : list = sub_n(reverse(mul_n(take(add_n([0, 0, 0],2),3),4)),-1)",
    "io_inp": [
      0,
      0,
      0
    ],
    "io_out": [
      9,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(take(add_n(input,2),3),4)),-1)"
  },
  {
    "input": "input : list = [5, 2, 0, 5, 4]\noutput : list = [3, 5, 7, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(add_n([5, 2, 0, 5, 4],3)))))",
    "io_inp": [
      5,
      2,
      0,
      5,
      4
    ],
    "io_out": [
      3,
      5,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(add_n(input,3)))))"
  },
  {
    "input": "input : list = [-3, 3, -3, -1, 4, -2]\noutput : list = [4, 3, -1, -2, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(sort_asc([-3, 3, -3, -1, 4, -2]),27))))",
    "io_inp": [
      -3,
      3,
      -3,
      -1,
      4,
      -2
    ],
    "io_out": [
      4,
      3,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(sort_asc(input),27))))"
  },
  {
    "input": "input : list = [-4, 3, 2]\noutput : list = [4, 5, -2]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse(sub_n([-4, 3, 2],5)),2),1),5)",
    "io_inp": [
      -4,
      3,
      2
    ],
    "io_out": [
      4,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(sub_n(input,5)),2),1),5)"
  },
  {
    "input": "input : list = [-4, 5, 4, 1]\noutput : list = [-9, -4, -1, 0]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(sort_des([-4, 5, 4, 1]),5))),23)",
    "io_inp": [
      -4,
      5,
      4,
      1
    ],
    "io_out": [
      -9,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(sort_des(input),5))),23)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des([4, 2])",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, -5, 2]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take([0, -1, -5, 2],1))",
    "io_inp": [
      0,
      -1,
      -5,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-2, -4, 1, 0, 2]\noutput : list = [-5, -3, -1, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc([-2, -4, 1, 0, 2]),-1)",
    "io_inp": [
      -2,
      -4,
      1,
      0,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [3, 0, 2, 1, 4, 1]\noutput : list = [2, 1, 0, -1, -1, -2]",
    "output": "generated_output : list = sort_des(add_n([3, 0, 2, 1, 4, 1],-2))",
    "io_inp": [
      3,
      0,
      2,
      1,
      4,
      1
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [-8, 0, -7]",
    "output": "generated_output : list = add_n([-5, 3, -4],-3)",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      -8,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 4, 2, 5, 5, 0]\noutput : list = [8, 8, 7, 5, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(drop([-2, 4, 2, 5, 5, 0],1))),-3))",
    "io_inp": [
      -2,
      4,
      2,
      5,
      5,
      0
    ],
    "io_out": [
      8,
      8,
      7,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(drop(input,1))),-3))"
  },
  {
    "input": "input : list = [0, 5, -1, 1, -2]\noutput : list = [9, 5, 4, 3, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(sub_n([0, 5, -1, 1, -2],-1),4)),-3),4)",
    "io_inp": [
      0,
      5,
      -1,
      1,
      -2
    ],
    "io_out": [
      9,
      5,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(sub_n(input,-1),4)),-3),4)"
  },
  {
    "input": "input : list = [-3, -5, 0, 4, -1, -1]\noutput : list = [0, -4, -5, -5, -7, -9]",
    "output": "generated_output : list = take(take(add_n(sort_des(reverse([-3, -5, 0, 4, -1, -1])),-4),13),8)",
    "io_inp": [
      -3,
      -5,
      0,
      4,
      -1,
      -1
    ],
    "io_out": [
      0,
      -4,
      -5,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(reverse(input)),-4),13),8)"
  },
  {
    "input": "input : list = [1, 3, 4, -5, -5, -4]\noutput : list = [-5, -5, -4, 1, 3, 4]",
    "output": "generated_output : list = sort_asc([1, 3, 4, -5, -5, -4])",
    "io_inp": [
      1,
      3,
      4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 1, -1]\noutput : list = [5, 3, 3, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-1, -4, 1, -1]),-5),-1)",
    "io_inp": [
      -1,
      -4,
      1,
      -1
    ],
    "io_out": [
      5,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),-5),-1)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [3, -15]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(mul_n([-1, 5],3)),-1)),18)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      3,
      -15
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(mul_n(input,3)),-1)),18)"
  },
  {
    "input": "input : list = [-5, -4, -2, 5, -5]\noutput : list = [-17, -17, -15, -11, 3]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(add_n([-5, -4, -2, 5, -5],-2),2),35)),3)",
    "io_inp": [
      -5,
      -4,
      -2,
      5,
      -5
    ],
    "io_out": [
      -17,
      -17,
      -15,
      -11,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(add_n(input,-2),2),35)),3)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sub_n([0, 0],1)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, -5, 4, 2, 5]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(take([0, -5, 4, 2, 5],1)),1)),-3)",
    "io_inp": [
      0,
      -5,
      4,
      2,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(take(input,1)),1)),-3)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [5, 1, 10]",
    "output": "generated_output : list = add_n([0, -4, 5],5)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      5,
      1,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, -1, -1, 4]\noutput : list = [18, -2, -2, -6]",
    "output": "generated_output : list = sub_n(take(mul_n(take(reverse([-2, -1, -1, 4]),15),4),19),-2)",
    "io_inp": [
      -2,
      -1,
      -1,
      4
    ],
    "io_out": [
      18,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(reverse(input),15),4),19),-2)"
  },
  {
    "input": "input : list = [-5, 2, 1, -1]\noutput : list = [6, -15]",
    "output": "generated_output : list = mul_n(reverse(take(take(take([-5, 2, 1, -1],2),12),26)),3)",
    "io_inp": [
      -5,
      2,
      1,
      -1
    ],
    "io_out": [
      6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(take(input,2),12),26)),3)"
  },
  {
    "input": "input : list = [2, 2, -4, -3, 1]\noutput : list = [-4, -8, -9, -3, -3]",
    "output": "generated_output : list = reverse(sub_n([2, 2, -4, -3, 1],5))",
    "io_inp": [
      2,
      2,
      -4,
      -3,
      1
    ],
    "io_out": [
      -4,
      -8,
      -9,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,5))"
  },
  {
    "input": "input : list = [-2, -2, -3, -5]\noutput : list = [-4, -4, -6, -10]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(sort_des([-2, -2, -3, -5]),10))),2)",
    "io_inp": [
      -2,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(sort_des(input),10))),2)"
  },
  {
    "input": "input : list = [2, 5, -4, -1, -4, 0]\noutput : list = [32, 8, -8, -16, -40, -40]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n([2, 5, -4, -1, -4, 0],-2)),-2),-4)",
    "io_inp": [
      2,
      5,
      -4,
      -1,
      -4,
      0
    ],
    "io_out": [
      32,
      8,
      -8,
      -16,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(input,-2)),-2),-4)"
  },
  {
    "input": "input : list = [4, 5, 0, -2]\noutput : list = [11, 1, -24, -19]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n([4, 5, 0, -2],-5),-3)),4)",
    "io_inp": [
      4,
      5,
      0,
      -2
    ],
    "io_out": [
      11,
      1,
      -24,
      -19
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(input,-5),-3)),4)"
  },
  {
    "input": "input : list = [5, 5, -4, 4, 4]\noutput : list = [6, 6, -3, 5, 5]",
    "output": "generated_output : list = sub_n([5, 5, -4, 4, 4],-1)",
    "io_inp": [
      5,
      5,
      -4,
      4,
      4
    ],
    "io_out": [
      6,
      6,
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -2, 5, 1, 1]\noutput : list = [-4, -2, 1, 1, 5]",
    "output": "generated_output : list = take(sort_asc([-4, -2, 5, 1, 1]),6)",
    "io_inp": [
      -4,
      -2,
      5,
      1,
      1
    ],
    "io_out": [
      -4,
      -2,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),6)"
  },
  {
    "input": "input : list = [4, -3, 2, -3]\noutput : list = [1, -6]",
    "output": "generated_output : list = sub_n(mul_n(take([4, -3, 2, -3],2),1),3)",
    "io_inp": [
      4,
      -3,
      2,
      -3
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,2),1),3)"
  },
  {
    "input": "input : list = [4, 0, 5, 0, -4]\noutput : list = [-4, 0, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 0, 5, 0, -4])",
    "io_inp": [
      4,
      0,
      5,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, -3, 4]\noutput : list = [-1, -1, 5, 6]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(reverse([3, -3, -3, 4]),2),19),4))",
    "io_inp": [
      3,
      -3,
      -3,
      4
    ],
    "io_out": [
      -1,
      -1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(reverse(input),2),19),4))"
  },
  {
    "input": "input : list = [0, -2, -5, -3, 5, -3]\noutput : list = [5, 0, -2, -3, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc([0, -2, -5, -3, 5, -3]))",
    "io_inp": [
      0,
      -2,
      -5,
      -3,
      5,
      -3
    ],
    "io_out": [
      5,
      0,
      -2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -2, -1, 3, -2]\noutput : list = [3, -1, -2, -2, -2]",
    "output": "generated_output : list = sort_des([-2, -2, -1, 3, -2])",
    "io_inp": [
      -2,
      -2,
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      -1,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(add_n(reverse(take(drop([1, 2, -2],1),13)),1),8)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(drop(input,1),13)),1),8)"
  },
  {
    "input": "input : list = [3, 3, 5, 4]\noutput : list = [5, 5, 6, 7]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(sort_asc([3, 3, 5, 4])),11),-2))",
    "io_inp": [
      3,
      3,
      5,
      4
    ],
    "io_out": [
      5,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(sort_asc(input)),11),-2))"
  },
  {
    "input": "input : list = [5, 4, 0, -2, 1]\noutput : list = [0, -2, -3, -6, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(reverse([5, 4, 0, -2, 1]))),-1),2)",
    "io_inp": [
      5,
      4,
      0,
      -2,
      1
    ],
    "io_out": [
      0,
      -2,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(reverse(input))),-1),2)"
  },
  {
    "input": "input : list = [0, -4, -4, 1]\noutput : list = [1, 0, -4, -4]",
    "output": "generated_output : list = sort_des([0, -4, -4, 1])",
    "io_inp": [
      0,
      -4,
      -4,
      1
    ],
    "io_out": [
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-15, -30]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_asc([2, 5]),-1)),-5),1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_asc(input),-1)),-5),1)"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [-6, -5, 2]",
    "output": "generated_output : list = sort_asc(add_n([-5, 3, -4],-1))",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [3, -3, 0, -3, -1, -3]\noutput : list = [59, 14, -1, -31, -31, -31]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sub_n([3, -3, 0, -3, -1, -3],-1),-5)),-3),-1)",
    "io_inp": [
      3,
      -3,
      0,
      -3,
      -1,
      -3
    ],
    "io_out": [
      59,
      14,
      -1,
      -31,
      -31,
      -31
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sub_n(input,-1),-5)),-3),-1)"
  },
  {
    "input": "input : list = [-4, -3, 0]\noutput : list = [51, 39, 3]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(mul_n([-4, -3, 0],-4),3)),-3))",
    "io_inp": [
      -4,
      -3,
      0
    ],
    "io_out": [
      51,
      39,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(mul_n(input,-4),3)),-3))"
  },
  {
    "input": "input : list = [-3, -4, 5, -3, -1, 1]\noutput : list = [-3, 1, 3, 5, 5, 6]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(add_n([-3, -4, 5, -3, -1, 1],-4)),-2)),-1)",
    "io_inp": [
      -3,
      -4,
      5,
      -3,
      -1,
      1
    ],
    "io_out": [
      -3,
      1,
      3,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(add_n(input,-4)),-2)),-1)"
  },
  {
    "input": "input : list = [-1, 1, -2, 0, 3]\noutput : list = [-6, -3, 0, 3, 9]",
    "output": "generated_output : list = sort_asc(mul_n([-1, 1, -2, 0, 3],3))",
    "io_inp": [
      -1,
      1,
      -2,
      0,
      3
    ],
    "io_out": [
      -6,
      -3,
      0,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,3))"
  },
  {
    "input": "input : list = [-2, -3, -4, -2, -5, 4]\noutput : list = [-9, -8, -7, -6, -6, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des([-2, -3, -4, -2, -5, 4]),4))",
    "io_inp": [
      -2,
      -3,
      -4,
      -2,
      -5,
      4
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [1, 5, -4, -5, -1, 0]\noutput : list = [-10, -2, 0, 2, 8, 10]",
    "output": "generated_output : list = mul_n(sort_des([1, 5, -4, -5, -1, 0]),-2)",
    "io_inp": [
      1,
      5,
      -4,
      -5,
      -1,
      0
    ],
    "io_out": [
      -10,
      -2,
      0,
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-2, 3, -5, -2, -2, -1]\noutput : list = [-1, 2, 2, 3]",
    "output": "generated_output : list = drop(add_n([-2, 3, -5, -2, -2, -1],4),2)",
    "io_inp": [
      -2,
      3,
      -5,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(add_n(input,4),2)"
  },
  {
    "input": "input : list = [-5, 0, -2, 4]\noutput : list = [-8, 0, 4, 10]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(mul_n([-5, 0, -2, 4],-2))),11))",
    "io_inp": [
      -5,
      0,
      -2,
      4
    ],
    "io_out": [
      -8,
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(mul_n(input,-2))),11))"
  },
  {
    "input": "input : list = [-2, 1, -3, 5, -5]\noutput : list = [15, 3, -6]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n([-2, 1, -3, 5, -5],3))),3)",
    "io_inp": [
      -2,
      1,
      -3,
      5,
      -5
    ],
    "io_out": [
      15,
      3,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(input,3))),3)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [-26, -11, 79]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(mul_n([5, -2, -1],-5)),-3)),-4)",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      -26,
      -11,
      79
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(mul_n(input,-5)),-3)),-4)"
  },
  {
    "input": "input : list = [2, -1, -1, -2]\noutput : list = [90, -45, -45, -90]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(mul_n([2, -1, -1, -2],3),5),3)))",
    "io_inp": [
      2,
      -1,
      -1,
      -2
    ],
    "io_out": [
      90,
      -45,
      -45,
      -90
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(mul_n(input,3),5),3)))"
  },
  {
    "input": "input : list = [-3, 2, -5, 0]\noutput : list = [-8, -3]",
    "output": "generated_output : list = take(sub_n(drop([-3, 2, -5, 0],2),3),10)",
    "io_inp": [
      -3,
      2,
      -5,
      0
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,2),3),10)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [-17]",
    "output": "generated_output : list = add_n(take(add_n(mul_n([-2, 2, -2],4),-4),1),-5)",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      -17
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(input,4),-4),1),-5)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des([4, 0, 1]),5)",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [2, -3, 2, -3, 0]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(sub_n([2, -3, 2, -3, 0],2),1))),-4)",
    "io_inp": [
      2,
      -3,
      2,
      -3,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(sub_n(input,2),1))),-4)"
  },
  {
    "input": "input : list = [4, 3, 3, 5]\noutput : list = [14, 12, 10, 10]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(sort_des([4, 3, 3, 5]),2),-1),11),5)",
    "io_inp": [
      4,
      3,
      3,
      5
    ],
    "io_out": [
      14,
      12,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(sort_des(input),2),-1),11),5)"
  },
  {
    "input": "input : list = [4, -2, -1, -4, -4, -1]\noutput : list = [4, -1, -1, -2, -4, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(reverse([4, -2, -1, -4, -4, -1]))),15))",
    "io_inp": [
      4,
      -2,
      -1,
      -4,
      -4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(reverse(input))),15))"
  },
  {
    "input": "input : list = [4, 0, -4, 3]\noutput : list = [-36, -32, -20, -4]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n([4, 0, -4, 3],1)),5),-4))",
    "io_inp": [
      4,
      0,
      -4,
      3
    ],
    "io_out": [
      -36,
      -32,
      -20,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n(input,1)),5),-4))"
  },
  {
    "input": "input : list = [5, 5, 1, 0, 2, 5]\noutput : list = [1, -2, -4, -3, 1, 1]",
    "output": "generated_output : list = sub_n(sub_n(reverse([5, 5, 1, 0, 2, 5]),2),2)",
    "io_inp": [
      5,
      5,
      1,
      0,
      2,
      5
    ],
    "io_out": [
      1,
      -2,
      -4,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),2),2)"
  },
  {
    "input": "input : list = [-3, -3, -4, -1, 2, 5]\noutput : list = [-16, -14, -14, -10, -4, 2]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(reverse([-3, -3, -4, -1, 2, 5]),-4)),17),2)",
    "io_inp": [
      -3,
      -3,
      -4,
      -1,
      2,
      5
    ],
    "io_out": [
      -16,
      -14,
      -14,
      -10,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(reverse(input),-4)),17),2)"
  },
  {
    "input": "input : list = [-4, 3, -1, -4]\noutput : list = [-4, -1, 3, -4]",
    "output": "generated_output : list = reverse([-4, 3, -1, -4])",
    "io_inp": [
      -4,
      3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0, 5, -4]\noutput : list = [-13, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(drop([3, 0, 5, -4],2),8)),-4),-5)",
    "io_inp": [
      3,
      0,
      5,
      -4
    ],
    "io_out": [
      -13,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(drop(input,2),8)),-4),-5)"
  },
  {
    "input": "input : list = [2, -1, -3, 2]\noutput : list = [-2, -5, -7, -2]",
    "output": "generated_output : list = add_n([2, -1, -3, 2],-4)",
    "io_inp": [
      2,
      -1,
      -3,
      2
    ],
    "io_out": [
      -2,
      -5,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, -5, 3, -2, -5, 1]\noutput : list = [-9, -3]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(drop([5, -5, 3, -2, -5, 1],4),4),18)))",
    "io_inp": [
      5,
      -5,
      3,
      -2,
      -5,
      1
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(drop(input,4),4),18)))"
  },
  {
    "input": "input : list = [-5, -3, 5]\noutput : list = [45, -27, -45]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n([-5, -3, 5],3))),3)",
    "io_inp": [
      -5,
      -3,
      5
    ],
    "io_out": [
      45,
      -27,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(input,3))),3)"
  },
  {
    "input": "input : list = [5, 4, 4, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(take([5, 4, 4, 4],2))",
    "io_inp": [
      5,
      4,
      4,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-4, 1, 1, -1, 2]\noutput : list = [-5, -2, 0, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n([-4, 1, 1, -1, 2],1))",
    "io_inp": [
      -4,
      1,
      1,
      -1,
      2
    ],
    "io_out": [
      -5,
      -2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [-5, -2, -5]",
    "output": "generated_output : list = take(add_n([0, 3, 0],-5),14)",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      -5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),14)"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = reverse(take(take(sort_asc(add_n([1, -3, -2],1)),23),30))",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(add_n(input,1)),23),30))"
  },
  {
    "input": "input : list = [-1, -2, -3, -5]\noutput : list = [-8, -12, -16, -24]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(mul_n([-1, -2, -3, -5],-2),-3),5),41),-2)",
    "io_inp": [
      -1,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -8,
      -12,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(mul_n(input,-2),-3),5),41),-2)"
  },
  {
    "input": "input : list = [2, 3, -4, -1, -5, -5]\noutput : list = [-5, -5, -1, -4, 3, 2]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(reverse([2, 3, -4, -1, -5, -5]),3),-2),-1),14)",
    "io_inp": [
      2,
      3,
      -4,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      -4,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(reverse(input),3),-2),-1),14)"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [1, -3, -5]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(reverse([-1, 5, 1]))),-2),-2)",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(reverse(input))),-2),-2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_asc([0, 2]))),3))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-8, 8]",
    "output": "generated_output : list = take(take(mul_n([-4, 4],2),4),12)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,2),4),12)"
  },
  {
    "input": "input : list = [5, -4, 5, -2, 0]\noutput : list = [0, 2, 4, 9, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(add_n([5, -4, 5, -2, 0],5),2)),-1))",
    "io_inp": [
      5,
      -4,
      5,
      -2,
      0
    ],
    "io_out": [
      0,
      2,
      4,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(add_n(input,5),2)),-1))"
  },
  {
    "input": "input : list = [5, 4, 4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(drop([5, 4, 4, -3],2),4)",
    "io_inp": [
      5,
      4,
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),4)"
  },
  {
    "input": "input : list = [3, 2, -5, 5, -2, 5]\noutput : list = [25, 10, -10, -15, -25, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_des([3, 2, -5, 5, -2, 5]))),-5))",
    "io_inp": [
      3,
      2,
      -5,
      5,
      -2,
      5
    ],
    "io_out": [
      25,
      10,
      -10,
      -15,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [-5, -2, -3, 0, 4, 3]\noutput : list = [-12, -10, -4, 0, 2, 6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(mul_n([-5, -2, -3, 0, 4, 3],-2),26)),4))",
    "io_inp": [
      -5,
      -2,
      -3,
      0,
      4,
      3
    ],
    "io_out": [
      -12,
      -10,
      -4,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(mul_n(input,-2),26)),4))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(add_n([-3, -1],-5)),-5)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(add_n(input,-5)),-5)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des([-3, -1])",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, 5, -2]\noutput : list = [0, 10, 14, 18]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(add_n([-4, 0, 5, -2],-3)),-2)),-4)",
    "io_inp": [
      -4,
      0,
      5,
      -2
    ],
    "io_out": [
      0,
      10,
      14,
      18
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(add_n(input,-3)),-2)),-4)"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [-10, -6, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(reverse([-5, -1, 5]),-2))),3)",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      -10,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(reverse(input),-2))),3)"
  },
  {
    "input": "input : list = [5, 5, -4, -4]\noutput : list = [4, 4, -14, -14]",
    "output": "generated_output : list = reverse(take(take(add_n(mul_n([5, 5, -4, -4],-2),-4),15),29))",
    "io_inp": [
      5,
      5,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(mul_n(input,-2),-4),15),29))"
  },
  {
    "input": "input : list = [4, -2, -4, 0, -5, -3]\noutput : list = [-7, -5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(drop([4, -2, -4, 0, -5, -3],4)),5)),3)",
    "io_inp": [
      4,
      -2,
      -4,
      0,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(drop(input,4)),5)),3)"
  },
  {
    "input": "input : list = [3, 5, -4, 3, 3]\noutput : list = [-35, -35, 70, -65, -35]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(reverse([3, 5, -4, 3, 3]),5),3),2),-5)",
    "io_inp": [
      3,
      5,
      -4,
      3,
      3
    ],
    "io_out": [
      -35,
      -35,
      70,
      -65,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(reverse(input),5),3),2),-5)"
  },
  {
    "input": "input : list = [-5, -3, -5, 2, 1, 1]\noutput : list = [-5, -5, -3, 1, 1, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(sort_asc([-5, -3, -5, 2, 1, 1])))))",
    "io_inp": [
      -5,
      -3,
      -5,
      2,
      1,
      1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 1, -3, 3, -3, 2]\noutput : list = [-7, -6, -6, -2, -1, 0]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(reverse([-4, 1, -3, 3, -3, 2]),3))),36)",
    "io_inp": [
      -4,
      1,
      -3,
      3,
      -3,
      2
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(reverse(input),3))),36)"
  },
  {
    "input": "input : list = [5, 4, 2, 4]\noutput : list = [5, 4, 4, 2]",
    "output": "generated_output : list = sort_des([5, 4, 2, 4])",
    "io_inp": [
      5,
      4,
      2,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, 2, -1, 4, -1]\noutput : list = [1, 3, 2, -1, 4, -1]",
    "output": "generated_output : list = sub_n(reverse(take(add_n(reverse([1, 3, 2, -1, 4, -1]),-4),13)),-4)",
    "io_inp": [
      1,
      3,
      2,
      -1,
      4,
      -1
    ],
    "io_out": [
      1,
      3,
      2,
      -1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(reverse(input),-4),13)),-4)"
  },
  {
    "input": "input : list = [4, -5, 1, -5, -3]\noutput : list = [-32]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(take([4, -5, 1, -5, -3],1),13)),4),-2)",
    "io_inp": [
      4,
      -5,
      1,
      -5,
      -3
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(take(input,1),13)),4),-2)"
  },
  {
    "input": "input : list = [1, -2, 0, -5, 1, -5]\noutput : list = [-15, -9, -15, -10, -12, -9]",
    "output": "generated_output : list = add_n(reverse(add_n(take(add_n([1, -2, 0, -5, 1, -5],-3),19),-4)),-3)",
    "io_inp": [
      1,
      -2,
      0,
      -5,
      1,
      -5
    ],
    "io_out": [
      -15,
      -9,
      -15,
      -10,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(add_n(input,-3),19),-4)),-3)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [20, 8, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc([2, 5, -3]),4)))",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      20,
      8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-1, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([0, -2, -5],-3),1))",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-3),1))"
  },
  {
    "input": "input : list = [1, 2, 1, 1, 2, -4]\noutput : list = [-7, -2, -2, -2, -1, -1]",
    "output": "generated_output : list = add_n(sort_asc([1, 2, 1, 1, 2, -4]),-3)",
    "io_inp": [
      1,
      2,
      1,
      1,
      2,
      -4
    ],
    "io_out": [
      -7,
      -2,
      -2,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-5, -4, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(take(reverse([-5, -4, -3]),6),1)",
    "io_inp": [
      -5,
      -4,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),6),1)"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des([-3, -4, 1]),12)))",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(input),12)))"
  },
  {
    "input": "input : list = [4, 1, 5, -4, -1]\noutput : list = [-7, -4, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(drop([4, 1, 5, -4, -1],2))),-3))",
    "io_inp": [
      4,
      1,
      5,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(drop(input,2))),-3))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sub_n([-1, -3],1)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, -4, 4, -2, -5, 5]\noutput : list = [-12, -12, -11, -9, -3, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sub_n([-5, -4, 4, -2, -5, 5],5),10))),2)",
    "io_inp": [
      -5,
      -4,
      4,
      -2,
      -5,
      5
    ],
    "io_out": [
      -12,
      -12,
      -11,
      -9,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sub_n(input,5),10))),2)"
  },
  {
    "input": "input : list = [-5, 1, -5, -1]\noutput : list = [5, 3, -1, -1]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(sort_asc([-5, 1, -5, -1]))),4),38)",
    "io_inp": [
      -5,
      1,
      -5,
      -1
    ],
    "io_out": [
      5,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(sort_asc(input))),4),38)"
  },
  {
    "input": "input : list = [-3, -5, 0, -5, 0, 4]\noutput : list = [0, -4, -9, -4, -9, -7]",
    "output": "generated_output : list = reverse(sub_n([-3, -5, 0, -5, 0, 4],4))",
    "io_inp": [
      -3,
      -5,
      0,
      -5,
      0,
      4
    ],
    "io_out": [
      0,
      -4,
      -9,
      -4,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [-2, 3, -2, 1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(add_n(take(sort_asc(drop([-2, 3, -2, 1],2)),18),-2),13)",
    "io_inp": [
      -2,
      3,
      -2,
      1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(drop(input,2)),18),-2),13)"
  },
  {
    "input": "input : list = [4, 3, 4, -1, -3]\noutput : list = [30, 25, 30, 5, -5]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse([4, 3, 4, -1, -3]),5)),-5),-5)",
    "io_inp": [
      4,
      3,
      4,
      -1,
      -3
    ],
    "io_out": [
      30,
      25,
      30,
      5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse(input),5)),-5),-5)"
  },
  {
    "input": "input : list = [-4, 0, 3, 2, 2, -1]\noutput : list = [2, 3, 5, 5, 6]",
    "output": "generated_output : list = add_n(reverse(take(take(sort_des([-4, 0, 3, 2, 2, -1]),5),22)),3)",
    "io_inp": [
      -4,
      0,
      3,
      2,
      2,
      -1
    ],
    "io_out": [
      2,
      3,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(sort_des(input),5),22)),3)"
  },
  {
    "input": "input : list = [-5, -4, 0, -3, 1, 5]\noutput : list = [-6, -5, -4, -1, 0, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(sub_n([-5, -4, 0, -3, 1, 5],-1))),2))",
    "io_inp": [
      -5,
      -4,
      0,
      -3,
      1,
      5
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(sub_n(input,-1))),2))"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [-6, -2]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(drop([-1, 4, 2],1),-5)),2))",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(drop(input,1),-5)),2))"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [3, 2, 2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse([-1, 0, -1])),-3))",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(input)),-3))"
  },
  {
    "input": "input : list = [0, 3, -3, 4]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(take([0, 3, -3, 4],2),18)",
    "io_inp": [
      0,
      3,
      -3,
      4
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(take(input,2),18)"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [-1, -3, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sub_n([4, -1, 2],4))),1))",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sub_n(input,4))),1))"
  },
  {
    "input": "input : list = [5, 0, 4]\noutput : list = [4, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, 4])",
    "io_inp": [
      5,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [6, 6, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sub_n([3, 3, 4],3),-3),2)))",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sub_n(input,3),-3),2)))"
  },
  {
    "input": "input : list = [0, 2, 5, -3, 5]\noutput : list = [-6, -18, -36, 12, -36]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(sub_n([0, 2, 5, -3, 5],-1),3))),-2)",
    "io_inp": [
      0,
      2,
      5,
      -3,
      5
    ],
    "io_out": [
      -6,
      -18,
      -36,
      12,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(sub_n(input,-1),3))),-2)"
  },
  {
    "input": "input : list = [-1, 0, -2, -4]\noutput : list = [5, 3, 2, 1]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sort_asc([-1, 0, -2, -4])),-1)),1)",
    "io_inp": [
      -1,
      0,
      -2,
      -4
    ],
    "io_out": [
      5,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sort_asc(input)),-1)),1)"
  },
  {
    "input": "input : list = [4, 5, -1]\noutput : list = [1, 7]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(drop([4, 5, -1],1),2),21)))",
    "io_inp": [
      4,
      5,
      -1
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(drop(input,1),2),21)))"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-12, -11, -11]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(sub_n([-2, -1, -1],2),-5),-3)))",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -12,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(sub_n(input,2),-5),-3)))"
  },
  {
    "input": "input : list = [0, 0, 5, 3]\noutput : list = [5, 3, 0, 0]",
    "output": "generated_output : list = sort_des([0, 0, 5, 3])",
    "io_inp": [
      0,
      0,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, -2, 5, -3]\noutput : list = [0, 8]",
    "output": "generated_output : list = sort_asc(add_n(reverse(drop([4, 5, -2, 5, -3],3)),3))",
    "io_inp": [
      4,
      5,
      -2,
      5,
      -3
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(drop(input,3)),3))"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = drop([3, 0, -1],1)",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -3, 3, -2, 2, 0]\noutput : list = [3, 2, 0, -2, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(add_n([-4, -3, 3, -2, 2, 0],-4)))),-4)",
    "io_inp": [
      -4,
      -3,
      3,
      -2,
      2,
      0
    ],
    "io_out": [
      3,
      2,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(add_n(input,-4)))),-4)"
  },
  {
    "input": "input : list = [0, -3, -3, 3, 1, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(take([0, -3, -3, 3, 1, 1],2))),-3))",
    "io_inp": [
      0,
      -3,
      -3,
      3,
      1,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(take(input,2))),-3))"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n([2, -4, -2],-1)))",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [8, -2]",
    "output": "generated_output : list = add_n([5, -5],3)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, 3, -5, -1, -5]\noutput : list = [8, 6, 4, 0, 0]",
    "output": "generated_output : list = take(sort_des(take(add_n(sort_asc([1, 3, -5, -1, -5]),5),19)),24)",
    "io_inp": [
      1,
      3,
      -5,
      -1,
      -5
    ],
    "io_out": [
      8,
      6,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(add_n(sort_asc(input),5),19)),24)"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [-2, -1, 8]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(add_n([5, -5, -4],3))),13))",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      -2,
      -1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(add_n(input,3))),13))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [5, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc([0, 2])),5)),2)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(sort_asc(input)),5)),2)"
  },
  {
    "input": "input : list = [2, 4, 3, -5]\noutput : list = [7, 9, 8, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n([2, 4, 3, -5],-1),-4),4),-4)",
    "io_inp": [
      2,
      4,
      3,
      -5
    ],
    "io_out": [
      7,
      9,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(input,-1),-4),4),-4)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [7, 4, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse(reverse([4, 1, -3]))),-3))",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(reverse(input))),-3))"
  },
  {
    "input": "input : list = [4, 5, 5]\noutput : list = [5, 7, 7]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sort_des([4, 5, 5]),2),21),3))",
    "io_inp": [
      4,
      5,
      5
    ],
    "io_out": [
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sort_des(input),2),21),3))"
  },
  {
    "input": "input : list = [1, 2, -5, 4, 0, 3]\noutput : list = [13, 12, 11, 10, 9, 4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(sub_n([1, 2, -5, 4, 0, 3],1),-5)),5))",
    "io_inp": [
      1,
      2,
      -5,
      4,
      0,
      3
    ],
    "io_out": [
      13,
      12,
      11,
      10,
      9,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(sub_n(input,1),-5)),5))"
  },
  {
    "input": "input : list = [-4, -5, -3, 2, -4]\noutput : list = [-7, -6, -6, -5, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des([-4, -5, -3, 2, -4]),3)),2),-3)",
    "io_inp": [
      -4,
      -5,
      -3,
      2,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des(input),3)),2),-3)"
  },
  {
    "input": "input : list = [-1, -2, 0, -4, -4]\noutput : list = [-17, -17, -7, -2, 3]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(mul_n([-1, -2, 0, -4, -4],5))),31),3)",
    "io_inp": [
      -1,
      -2,
      0,
      -4,
      -4
    ],
    "io_out": [
      -17,
      -17,
      -7,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(mul_n(input,5))),31),3)"
  },
  {
    "input": "input : list = [-1, 5, 2, 0]\noutput : list = [7, 4, 2, 1]",
    "output": "generated_output : list = take(take(add_n(sort_des(sort_asc([-1, 5, 2, 0])),2),30),48)",
    "io_inp": [
      -1,
      5,
      2,
      0
    ],
    "io_out": [
      7,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(sort_asc(input)),2),30),48)"
  },
  {
    "input": "input : list = [-3, -1, 2, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(take(take([-3, -1, 2, 2],2),7),27)",
    "io_inp": [
      -3,
      -1,
      2,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(input,2),7),27)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc([1, 3])",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1, 3, 5, 2, 2]\noutput : list = [-2, -4, -4, -6, -8, -10]",
    "output": "generated_output : list = sort_des(mul_n([4, 1, 3, 5, 2, 2],-2))",
    "io_inp": [
      4,
      1,
      3,
      5,
      2,
      2
    ],
    "io_out": [
      -2,
      -4,
      -4,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [3, 5, 2, 3, -3]\noutput : list = [5, 3, 3, 2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(sort_des([3, 5, 2, 3, -3]))),11))",
    "io_inp": [
      3,
      5,
      2,
      3,
      -3
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(sort_des(input))),11))"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [4, 8]",
    "output": "generated_output : list = take(mul_n(drop([-1, -1, -2],1),-4),6)",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,1),-4),6)"
  },
  {
    "input": "input : list = [-4, 5, 5, 2, 3, -1]\noutput : list = [7, 7, 5, 4, 1, -2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(add_n([-4, 5, 5, 2, 3, -1],1)),-1)))",
    "io_inp": [
      -4,
      5,
      5,
      2,
      3,
      -1
    ],
    "io_out": [
      7,
      7,
      5,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(add_n(input,1)),-1)))"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -1, -2],1)",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 4, 1, 1, -4]\noutput : list = [48, 48, -12, -12, -48]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_asc([-4, 4, 1, 1, -4]),4)),-3))",
    "io_inp": [
      -4,
      4,
      1,
      1,
      -4
    ],
    "io_out": [
      48,
      48,
      -12,
      -12,
      -48
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_asc(input),4)),-3))"
  },
  {
    "input": "input : list = [-3, 4, -2, -1, 1]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = take(sort_des([-3, 4, -2, -1, 1]),3)",
    "io_inp": [
      -3,
      4,
      -2,
      -1,
      1
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),3)"
  },
  {
    "input": "input : list = [-1, 3, -2, 5, 5]\noutput : list = [0, 1, 5, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc([-1, 3, -2, 5, 5]),-2)",
    "io_inp": [
      -1,
      3,
      -2,
      5,
      5
    ],
    "io_out": [
      0,
      1,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [3, 5, -2, -5]\noutput : list = [-3, -1, 4, 7]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(sort_asc([3, 5, -2, -5]),-1),3),5))",
    "io_inp": [
      3,
      5,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -1,
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(sort_asc(input),-1),3),5))"
  },
  {
    "input": "input : list = [-5, -2, -1, 1, -1]\noutput : list = [3, 1, 1, 0, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n([-5, -2, -1, 1, -1],-1)),1),1)",
    "io_inp": [
      -5,
      -2,
      -1,
      1,
      -1
    ],
    "io_out": [
      3,
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(input,-1)),1),1)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [-36, 48, 60]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_des([-3, 5, 4])),7),-4),-3)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      -36,
      48,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_des(input)),7),-4),-3)"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = reverse(sort_des([-3, 2, -4]))",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 4, 3, -2, -1, 2]\noutput : list = [4, 1, 0, 5]",
    "output": "generated_output : list = take(reverse(drop(add_n(sub_n([-5, 4, 3, -2, -1, 2],3),5),2)),20)",
    "io_inp": [
      -5,
      4,
      3,
      -2,
      -1,
      2
    ],
    "io_out": [
      4,
      1,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(drop(add_n(sub_n(input,3),5),2)),20)"
  },
  {
    "input": "input : list = [-4, 3, -1, -3, -1, -2]\noutput : list = [-4, -3, -2, -1, -1, 3]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(sort_des([-4, 3, -1, -3, -1, -2])))))",
    "io_inp": [
      -4,
      3,
      -1,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 3, 2, -3, 2]\noutput : list = [-5, -3, 2, 2, 3]",
    "output": "generated_output : list = sort_asc([-5, 3, 2, -3, 2])",
    "io_inp": [
      -5,
      3,
      2,
      -3,
      2
    ],
    "io_out": [
      -5,
      -3,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = drop(sort_des(reverse(sort_des(mul_n([1, 1, 1],1)))),1)",
    "io_inp": [
      1,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(sort_des(mul_n(input,1)))),1)"
  },
  {
    "input": "input : list = [-3, -3, 3, 5]\noutput : list = [-3, -3, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(reverse([-3, -3, 3, 5])),30)))",
    "io_inp": [
      -3,
      -3,
      3,
      5
    ],
    "io_out": [
      -3,
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(reverse(input)),30)))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sub_n(add_n([3, -2],-1),-1)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),-1)"
  },
  {
    "input": "input : list = [-3, -1, 3, -3, -3, 5]\noutput : list = [-3, -3, -3, -1, 3, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(sort_asc([-3, -1, 3, -3, -3, 5]))),13))",
    "io_inp": [
      -3,
      -1,
      3,
      -3,
      -3,
      5
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(sort_asc(input))),13))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(add_n(sort_des(drop(mul_n([0, 5],1),1)),3),-3)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(drop(mul_n(input,1),1)),3),-3)"
  },
  {
    "input": "input : list = [4, 3, -1, 1]\noutput : list = [10, 8, 6]",
    "output": "generated_output : list = drop(sort_des(add_n(reverse(add_n([4, 3, -1, 1],4)),3)),1)",
    "io_inp": [
      4,
      3,
      -1,
      1
    ],
    "io_out": [
      10,
      8,
      6
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(reverse(add_n(input,4)),3)),1)"
  },
  {
    "input": "input : list = [5, -3, 2, 2]\noutput : list = [24, 4, 4, -8]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(add_n([5, -3, 2, 2],-3),-4))))",
    "io_inp": [
      5,
      -3,
      2,
      2
    ],
    "io_out": [
      24,
      4,
      4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(add_n(input,-3),-4))))"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [-12, -12, -8]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n([1, 1, 2],4),2)),1),2)",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      -12,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n(input,4),2)),1),2)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [-4, -12]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(drop(sort_asc([-3, 4, 0]),1),-2)),4)",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(drop(sort_asc(input),1),-2)),4)"
  },
  {
    "input": "input : list = [5, -5, -4, 2, -4, -1]\noutput : list = [6, -4, -3, 3, -3, 0]",
    "output": "generated_output : list = add_n([5, -5, -4, 2, -4, -1],1)",
    "io_inp": [
      5,
      -5,
      -4,
      2,
      -4,
      -1
    ],
    "io_out": [
      6,
      -4,
      -3,
      3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [8, -10]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n([-4, 5],2)),5),-3)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(input,2)),5),-3)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-25, -5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(add_n([2, -2],-3))),5))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -25,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(add_n(input,-3))),5))"
  },
  {
    "input": "input : list = [3, -2, 4, 1]\noutput : list = [3, -2]",
    "output": "generated_output : list = take([3, -2, 4, 1],2)",
    "io_inp": [
      3,
      -2,
      4,
      1
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [0, 5, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-4, -1, 0],-5)))",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      0,
      5,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [9, 8, 6]",
    "output": "generated_output : list = sort_des(sub_n([5, 4, 2],-4))",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [3, -1, 2]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_des([3, -1, 2]),-2))",
    "io_inp": [
      3,
      -1,
      2
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_asc([0, 2])))))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -2, 0, -2]\noutput : list = [45, -3, 21, -3]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sub_n([2, -2, 0, -2],-2),-1),4),-3),3)",
    "io_inp": [
      2,
      -2,
      0,
      -2
    ],
    "io_out": [
      45,
      -3,
      21,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sub_n(input,-2),-1),4),-3),3)"
  },
  {
    "input": "input : list = [4, -4, -1, 4, -1, 4]\noutput : list = [-42, -2, -17, -42, -17, -42]",
    "output": "generated_output : list = add_n(mul_n(sub_n([4, -4, -1, 4, -1, 4],-4),-5),-2)",
    "io_inp": [
      4,
      -4,
      -1,
      4,
      -1,
      4
    ],
    "io_out": [
      -42,
      -2,
      -17,
      -42,
      -17,
      -42
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-4),-5),-2)"
  },
  {
    "input": "input : list = [-5, 1, 0, 2, 3]\noutput : list = [-5, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sub_n([-5, 1, 0, 2, 3],3)),-3)))",
    "io_inp": [
      -5,
      1,
      0,
      2,
      3
    ],
    "io_out": [
      -5,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_des(sub_n(input,3)),-3)))"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(drop([-4, 3, -2],1))),1),3)",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(drop(input,1))),1),3)"
  },
  {
    "input": "input : list = [3, -4, -1, -1, 1, 0]\noutput : list = [-5, -20, -20, -25, -30, -40]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n([3, -4, -1, -1, 1, 0],-5)),-5)",
    "io_inp": [
      3,
      -4,
      -1,
      -1,
      1,
      0
    ],
    "io_out": [
      -5,
      -20,
      -20,
      -25,
      -30,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(input,-5)),-5)"
  },
  {
    "input": "input : list = [-2, -1, 3, -4, 1, 3]\noutput : list = [12, 6, 3, -3, -9, -9]",
    "output": "generated_output : list = mul_n(sort_asc([-2, -1, 3, -4, 1, 3]),-3)",
    "io_inp": [
      -2,
      -1,
      3,
      -4,
      1,
      3
    ],
    "io_out": [
      12,
      6,
      3,
      -3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(reverse([2, 5, 4]))),1))",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(reverse(input))),1))"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [1, -2, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n([-4, 2, 5],1)),4))",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(input,1)),4))"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take([-3, -4, 1],1),1)",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),1)"
  },
  {
    "input": "input : list = [2, 4, -2, -5, -4, 0]\noutput : list = [7, 5, 3, 1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(add_n([2, 4, -2, -5, -4, 0],3)))))",
    "io_inp": [
      2,
      4,
      -2,
      -5,
      -4,
      0
    ],
    "io_out": [
      7,
      5,
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [-2, 2, -4, -2]\noutput : list = [-4, -8, 4, -4]",
    "output": "generated_output : list = mul_n(reverse([-2, 2, -4, -2]),2)",
    "io_inp": [
      -2,
      2,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -8,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [3, -4, 1]\noutput : list = [-5, 20, -15]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse([3, -4, 1]),5),4),-1)",
    "io_inp": [
      3,
      -4,
      1
    ],
    "io_out": [
      -5,
      20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(input),5),4),-1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [3, 3]",
    "output": "generated_output : list = mul_n([-1, -1],-3)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, 3, -3, 0]\noutput : list = [48, 36, 12, -24]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(add_n([2, 3, -3, 0],1),1),3),4))",
    "io_inp": [
      2,
      3,
      -3,
      0
    ],
    "io_out": [
      48,
      36,
      12,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(add_n(input,1),1),3),4))"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [2, -8, -10]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sort_asc([3, -3, 2]),3),1),-3),-2)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sort_asc(input),3),1),-3),-2)"
  },
  {
    "input": "input : list = [3, 2, 5, -2, 5, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(take([3, 2, 5, -2, 5, -2],2)),2),2))",
    "io_inp": [
      3,
      2,
      5,
      -2,
      5,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(take(input,2)),2),2))"
  },
  {
    "input": "input : list = [-1, -4, 2, -3, -4]\noutput : list = [-8, -8, -6, -2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse([-1, -4, 2, -3, -4]),5)),2))",
    "io_inp": [
      -1,
      -4,
      2,
      -3,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(reverse(input),5)),2))"
  },
  {
    "input": "input : list = [-3, -1, 0, 0, 4, -2]\noutput : list = [2, 3, 4, 5, 5, 9]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sort_des([-3, -1, 0, 0, 4, -2]),5))))",
    "io_inp": [
      -3,
      -1,
      0,
      0,
      4,
      -2
    ],
    "io_out": [
      2,
      3,
      4,
      5,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [-1, 4, -1, 5, 2, -5]\noutput : list = [4, 3, 1, -2, -2, -6]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(reverse([-1, 4, -1, 5, 2, -5]),-5),1),-4))",
    "io_inp": [
      -1,
      4,
      -1,
      5,
      2,
      -5
    ],
    "io_out": [
      4,
      3,
      1,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(reverse(input),-5),1),-4))"
  },
  {
    "input": "input : list = [-3, 4, 0, -1, 3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(drop([-3, 4, 0, -1, 3, 2],4))))",
    "io_inp": [
      -3,
      4,
      0,
      -1,
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(drop(input,4))))"
  },
  {
    "input": "input : list = [-1, 0, 4]\noutput : list = [4, 8, 24]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(sort_asc([-1, 0, 4]),4),3),-5),17)",
    "io_inp": [
      -1,
      0,
      4
    ],
    "io_out": [
      4,
      8,
      24
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(sort_asc(input),4),3),-5),17)"
  },
  {
    "input": "input : list = [-3, 2, 3, -3, -5, -4]\noutput : list = [15, -5, -9, 15, 23, 19]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(mul_n([-3, 2, 3, -3, -5, -4],2),-2),1),2),-5)",
    "io_inp": [
      -3,
      2,
      3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      15,
      -5,
      -9,
      15,
      23,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(mul_n(input,2),-2),1),2),-5)"
  },
  {
    "input": "input : list = [1, -4, 0, 4]\noutput : list = [0, 1]",
    "output": "generated_output : list = drop(take(take(sort_asc(reverse([1, -4, 0, 4])),24),3),1)",
    "io_inp": [
      1,
      -4,
      0,
      4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(take(take(sort_asc(reverse(input)),24),3),1)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-16, -14]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(sub_n([-4, -5],-1),4)),2),38)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -16,
      -14
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(sub_n(input,-1),4)),2),38)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [10, 10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(reverse([5, 5]),-1))),-2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(reverse(input),-1))),-2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(reverse([-4, -2]),1),5)),31)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(reverse(input),1),5)),31)"
  },
  {
    "input": "input : list = [-5, 0, 1, 0, 2, 5]\noutput : list = [10, 0, 0, -2, -4, -10]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sort_asc([-5, 0, 1, 0, 2, 5])))),-2)",
    "io_inp": [
      -5,
      0,
      1,
      0,
      2,
      5
    ],
    "io_out": [
      10,
      0,
      0,
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [-1, -4, 1, 4, 0]\noutput : list = [8, 2, 0, -2, -8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(sort_asc([-1, -4, 1, 4, 0])))),-2)",
    "io_inp": [
      -1,
      -4,
      1,
      4,
      0
    ],
    "io_out": [
      8,
      2,
      0,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n([1, -3],4),-1)))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(input,4),-1)))"
  },
  {
    "input": "input : list = [2, 3, -2, 5, 5]\noutput : list = [3, 2, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(take(take([2, 3, -2, 5, 5],3),4),3)))",
    "io_inp": [
      2,
      3,
      -2,
      5,
      5
    ],
    "io_out": [
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(take(input,3),4),3)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des([-5, 1])",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [5, 1, 0]",
    "output": "generated_output : list = sort_des([1, 0, 5])",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, -3, 0, -1]\noutput : list = [28, 16, 14]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(take([4, -2, -3, 0, -1],3),-5),5)),2)",
    "io_inp": [
      4,
      -2,
      -3,
      0,
      -1
    ],
    "io_out": [
      28,
      16,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(take(input,3),-5),5)),2)"
  },
  {
    "input": "input : list = [5, 4, -4, 0]\noutput : list = [4, -4, 0]",
    "output": "generated_output : list = drop([5, 4, -4, 0],1)",
    "io_inp": [
      5,
      4,
      -4,
      0
    ],
    "io_out": [
      4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -1, -3, 0, 1]\noutput : list = [7, 7, 9, 10, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_des([-3, -1, -3, 0, 1]),-5))),-5)",
    "io_inp": [
      -3,
      -1,
      -3,
      0,
      1
    ],
    "io_out": [
      7,
      7,
      9,
      10,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_des(input),-5))),-5)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sub_n([0, 0, -4],-5),2))))",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sub_n(input,-5),2))))"
  },
  {
    "input": "input : list = [5, 5, -4, 5, 5, 0]\noutput : list = [28, 28, 28, 28, 8, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_des([5, 5, -4, 5, 5, 0]),2),4)",
    "io_inp": [
      5,
      5,
      -4,
      5,
      5,
      0
    ],
    "io_out": [
      28,
      28,
      28,
      28,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),2),4)"
  },
  {
    "input": "input : list = [0, 2, -4]\noutput : list = [24, -12, 0]",
    "output": "generated_output : list = reverse(mul_n(mul_n([0, 2, -4],2),-3))",
    "io_inp": [
      0,
      2,
      -4
    ],
    "io_out": [
      24,
      -12,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,2),-3))"
  },
  {
    "input": "input : list = [2, -4, 0, 0]\noutput : list = [33, -21]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take([2, -4, 0, 0],2),3)),-1),-3)",
    "io_inp": [
      2,
      -4,
      0,
      0
    ],
    "io_out": [
      33,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take(input,2),3)),-1),-3)"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [-3, 0, 0]",
    "output": "generated_output : list = sort_asc([0, 0, -3])",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, -5, 3, -3, -3]\noutput : list = [-4, -4, 2, -6, -4, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(add_n([3, -3, -5, 3, -3, -3],1),-3)),-1),4)",
    "io_inp": [
      3,
      -3,
      -5,
      3,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      2,
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(add_n(input,1),-3)),-1),4)"
  },
  {
    "input": "input : list = [1, 2, 5, 1, -2, -4]\noutput : list = [-9]",
    "output": "generated_output : list = take(add_n(drop(reverse(sub_n([1, 2, 5, 1, -2, -4],5)),5),-5),3)",
    "io_inp": [
      1,
      2,
      5,
      1,
      -2,
      -4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(drop(reverse(sub_n(input,5)),5),-5),3)"
  },
  {
    "input": "input : list = [-2, 0, 1, 5]\noutput : list = [3, 5, 6, 10]",
    "output": "generated_output : list = sort_asc(add_n([-2, 0, 1, 5],5))",
    "io_inp": [
      -2,
      0,
      1,
      5
    ],
    "io_out": [
      3,
      5,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [5, -5, 0, -4]\noutput : list = [-5, 5]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(take([5, -5, 0, -4],2)))),1)",
    "io_inp": [
      5,
      -5,
      0,
      -4
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(take(input,2)))),1)"
  },
  {
    "input": "input : list = [-4, -4, -4, -2, -1]\noutput : list = [-2, -12, -32, -32, -32]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(mul_n([-4, -4, -4, -2, -1],5)),-4),2))",
    "io_inp": [
      -4,
      -4,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -12,
      -32,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(mul_n(input,5)),-4),2))"
  },
  {
    "input": "input : list = [-3, 1, 2, -1, 2]\noutput : list = [1, 3, 5, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_des(reverse([-3, 1, 2, -1, 2]))),4))",
    "io_inp": [
      -3,
      1,
      2,
      -1,
      2
    ],
    "io_out": [
      1,
      3,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([-1, 2],-1)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [3, 5, 3, -2]\noutput : list = [6, 4, 4, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(add_n([3, 5, 3, -2],1)))))",
    "io_inp": [
      3,
      5,
      3,
      -2
    ],
    "io_out": [
      6,
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(add_n(input,1)))))"
  },
  {
    "input": "input : list = [-2, -4, -5, -3, 5]\noutput : list = [12, 9, 6, 3, -18]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc([-2, -4, -5, -3, 5]),-3))),-3)",
    "io_inp": [
      -2,
      -4,
      -5,
      -3,
      5
    ],
    "io_out": [
      12,
      9,
      6,
      3,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc(input),-3))),-3)"
  },
  {
    "input": "input : list = [0, 4, 1, 2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 4, 1, 2],1)",
    "io_inp": [
      0,
      4,
      1,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 1, -4, 1]\noutput : list = [-5, 0, 0, 3]",
    "output": "generated_output : list = add_n(sub_n(take(add_n(sort_asc([4, 1, -4, 1]),1),28),5),3)",
    "io_inp": [
      4,
      1,
      -4,
      1
    ],
    "io_out": [
      -5,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(add_n(sort_asc(input),1),28),5),3)"
  },
  {
    "input": "input : list = [-5, 2, 4, -1]\noutput : list = [-12, -8, -5, -3]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_des([-5, 2, 4, -1])),2)),-5)",
    "io_inp": [
      -5,
      2,
      4,
      -1
    ],
    "io_out": [
      -12,
      -8,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_des(input)),2)),-5)"
  },
  {
    "input": "input : list = [0, -2, -3, 3, -5]\noutput : list = [3, 0, -2, -3, -5]",
    "output": "generated_output : list = sort_des([0, -2, -3, 3, -5])",
    "io_inp": [
      0,
      -2,
      -3,
      3,
      -5
    ],
    "io_out": [
      3,
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, 3, 0]\noutput : list = [-4, 0, 3, 4]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(reverse([-4, 4, 3, 0]))),21))",
    "io_inp": [
      -4,
      4,
      3,
      0
    ],
    "io_out": [
      -4,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(reverse(input))),21))"
  },
  {
    "input": "input : list = [-1, -3, 1, -2, -2]\noutput : list = [-3, -2, -2, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse([-1, -3, 1, -2, -2]))))",
    "io_inp": [
      -1,
      -3,
      1,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 2, 3],1)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 2, 1, 1, -4, 5]\noutput : list = [10, 8, 7, 7, 2, 11]",
    "output": "generated_output : list = add_n(add_n([4, 2, 1, 1, -4, 5],1),5)",
    "io_inp": [
      4,
      2,
      1,
      1,
      -4,
      5
    ],
    "io_out": [
      10,
      8,
      7,
      7,
      2,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,1),5)"
  },
  {
    "input": "input : list = [5, 0, 2, 4]\noutput : list = [5, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(drop([5, 0, 2, 4],1)),-4),3))",
    "io_inp": [
      5,
      0,
      2,
      4
    ],
    "io_out": [
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(drop(input,1)),-4),3))"
  },
  {
    "input": "input : list = [3, -5, -3, 0, -1]\noutput : list = [-1, -9, -7, -4, -5]",
    "output": "generated_output : list = add_n([3, -5, -3, 0, -1],-4)",
    "io_inp": [
      3,
      -5,
      -3,
      0,
      -1
    ],
    "io_out": [
      -1,
      -9,
      -7,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [6, -15]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sub_n([-4, 3],-2)))),-3)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sub_n(input,-2)))),-3)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [13, 7]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(mul_n([-2, -4],-3),1))))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      13,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(mul_n(input,-3),1))))"
  },
  {
    "input": "input : list = [5, -2, 2, -2, -2, 1]\noutput : list = [7, 4, 3, 0, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_asc([5, -2, 2, -2, -2, 1]),-3)),-1))",
    "io_inp": [
      5,
      -2,
      2,
      -2,
      -2,
      1
    ],
    "io_out": [
      7,
      4,
      3,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_asc(input),-3)),-1))"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [6, -1]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(drop([0, 5, -2],1),6)),-1),-4)",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(drop(input,1),6)),-1),-4)"
  },
  {
    "input": "input : list = [5, 4, 2, 3]\noutput : list = [6, 7, 8, 9]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc([5, 4, 2, 3]),5),-1))",
    "io_inp": [
      5,
      4,
      2,
      3
    ],
    "io_out": [
      6,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(input),5),-1))"
  },
  {
    "input": "input : list = [3, -3, -3, 5, -4, 1]\noutput : list = [-17, -5, -5, -21, -3, -13]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(mul_n([3, -3, -3, 5, -4, 1],-2),-1),3),5),2)",
    "io_inp": [
      3,
      -3,
      -3,
      5,
      -4,
      1
    ],
    "io_out": [
      -17,
      -5,
      -5,
      -21,
      -3,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(mul_n(input,-2),-1),3),5),2)"
  },
  {
    "input": "input : list = [-2, -5, -5, 1, -3, 4]\noutput : list = [7, 4, 1, 0, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n([-2, -5, -5, 1, -3, 4],-3))",
    "io_inp": [
      -2,
      -5,
      -5,
      1,
      -3,
      4
    ],
    "io_out": [
      7,
      4,
      1,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [3, 0, 1, 1, -3, -3]\noutput : list = [0, -2, -2, -3, -6, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([3, 0, 1, 1, -3, -3]),3))",
    "io_inp": [
      3,
      0,
      1,
      1,
      -3,
      -3
    ],
    "io_out": [
      0,
      -2,
      -2,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [2, 4, -1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(drop(reverse([2, 4, -1]),2))",
    "io_inp": [
      2,
      4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(reverse(input),2))"
  },
  {
    "input": "input : list = [5, 1, -2, -2, 1, 3]\noutput : list = [8, 4, 1, 1, 4, 6]",
    "output": "generated_output : list = mul_n(add_n([5, 1, -2, -2, 1, 3],3),1)",
    "io_inp": [
      5,
      1,
      -2,
      -2,
      1,
      3
    ],
    "io_out": [
      8,
      4,
      1,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),1)"
  },
  {
    "input": "input : list = [-5, -1, 4, -1, 3]\noutput : list = [-10, -6, -11, -6, -2]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(sub_n([-5, -1, 4, -1, 3],-5),-2),26)),-1)",
    "io_inp": [
      -5,
      -1,
      4,
      -1,
      3
    ],
    "io_out": [
      -10,
      -6,
      -11,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(sub_n(input,-5),-2),26)),-1)"
  },
  {
    "input": "input : list = [0, 5, -2, 1, 1, 1]\noutput : list = [1, 1, 1]",
    "output": "generated_output : list = sort_asc(drop([0, 5, -2, 1, 1, 1],3))",
    "io_inp": [
      0,
      5,
      -2,
      1,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [12, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(reverse([4, -4]))),3))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(reverse(input))),3))"
  },
  {
    "input": "input : list = [-2, 2, 5]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = sub_n(add_n([-2, 2, 5],1),1)",
    "io_inp": [
      -2,
      2,
      5
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),1)"
  },
  {
    "input": "input : list = [1, -5, 5, -2]\noutput : list = [10, 2, -4, -10]",
    "output": "generated_output : list = take(take(take(mul_n(sort_des([1, -5, 5, -2]),2),12),33),6)",
    "io_inp": [
      1,
      -5,
      5,
      -2
    ],
    "io_out": [
      10,
      2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(sort_des(input),2),12),33),6)"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(drop([-3, 1, -4],1),13)",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(input,1),13)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(sub_n([0, 4],1)))))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [3, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des(take(take(reverse([-1, -4, 5]),6),9)),2)",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(reverse(input),6),9)),2)"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [12, 9]",
    "output": "generated_output : list = reverse(mul_n(drop(sort_asc(sub_n([0, -5, 1],-3)),1),3))",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(sort_asc(sub_n(input,-3)),1),3))"
  },
  {
    "input": "input : list = [3, -1, -3, 0, 1]\noutput : list = [0, -8, -12, -6, -4]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(reverse([3, -1, -3, 0, 1]),3),1),2))",
    "io_inp": [
      3,
      -1,
      -3,
      0,
      1
    ],
    "io_out": [
      0,
      -8,
      -12,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(reverse(input),3),1),2))"
  },
  {
    "input": "input : list = [-2, -3, -1, -3]\noutput : list = [-3, -6, -9, -9]",
    "output": "generated_output : list = sort_des(take(mul_n([-2, -3, -1, -3],3),20))",
    "io_inp": [
      -2,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,3),20))"
  },
  {
    "input": "input : list = [-4, 5, 1, 3, 2, -1]\noutput : list = [-1, 2, 3, 1, 5, -4]",
    "output": "generated_output : list = reverse([-4, 5, 1, 3, 2, -1])",
    "io_inp": [
      -4,
      5,
      1,
      3,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      3,
      1,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-3, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(sort_des([2, -4]),-4),-1)))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(sort_des(input),-4),-1)))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(reverse([-1, 4]))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(add_n([0, -2],-3))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [-2, -2, -2, 1]\noutput : list = [8, 5, 5, 5]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_des([-2, -2, -2, 1])),-2)),-5)",
    "io_inp": [
      -2,
      -2,
      -2,
      1
    ],
    "io_out": [
      8,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_des(input)),-2)),-5)"
  },
  {
    "input": "input : list = [4, -4, 1, -3, 4, 0]\noutput : list = [-144, -108, 0, 36, 144, 144]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(mul_n([4, -4, 1, -3, 4, 0],4)),17),-3),-3)",
    "io_inp": [
      4,
      -4,
      1,
      -3,
      4,
      0
    ],
    "io_out": [
      -144,
      -108,
      0,
      36,
      144,
      144
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(mul_n(input,4)),17),-3),-3)"
  },
  {
    "input": "input : list = [4, -5, -1, 3, -1]\noutput : list = [20, -25, -5]",
    "output": "generated_output : list = take(mul_n(take([4, -5, -1, 3, -1],3),5),31)",
    "io_inp": [
      4,
      -5,
      -1,
      3,
      -1
    ],
    "io_out": [
      20,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,3),5),31)"
  },
  {
    "input": "input : list = [1, -3, 2, 4, 1]\noutput : list = [16, 8, 4, 4, -12]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(mul_n([1, -3, 2, 4, 1],4)))))",
    "io_inp": [
      1,
      -3,
      2,
      4,
      1
    ],
    "io_out": [
      16,
      8,
      4,
      4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-5, -5]))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -5, 0, -2, 5, 2]\noutput : list = [1, 4, 6, 8, 11, 11]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(add_n([5, -5, 0, -2, 5, 2],1),-3)),46),-2)",
    "io_inp": [
      5,
      -5,
      0,
      -2,
      5,
      2
    ],
    "io_out": [
      1,
      4,
      6,
      8,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(add_n(input,1),-3)),46),-2)"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [0, -9, -12]",
    "output": "generated_output : list = mul_n([0, -3, -4],3)",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      0,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, 0, -4, -3, -5, 2]\noutput : list = [6, 3, -3, -12, -15, -18]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(reverse([3, 0, -4, -3, -5, 2]),3),-2),1))",
    "io_inp": [
      3,
      0,
      -4,
      -3,
      -5,
      2
    ],
    "io_out": [
      6,
      3,
      -3,
      -12,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(reverse(input),3),-2),1))"
  },
  {
    "input": "input : list = [4, 4, 0, -1, -2]\noutput : list = [20, 16, 12, -4, -4]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(sort_asc([4, 4, 0, -1, -2]),1),-4),4),-1)",
    "io_inp": [
      4,
      4,
      0,
      -1,
      -2
    ],
    "io_out": [
      20,
      16,
      12,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(sort_asc(input),1),-4),4),-1)"
  },
  {
    "input": "input : list = [5, 5, 1, 1, 3, 4]\noutput : list = [5, 5, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(drop(sub_n(mul_n([5, 5, 1, 1, 3, 4],-2),-5),2),2))",
    "io_inp": [
      5,
      5,
      1,
      1,
      3,
      4
    ],
    "io_out": [
      5,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(sub_n(mul_n(input,-2),-5),2),2))"
  },
  {
    "input": "input : list = [-2, -1, -5, 5]\noutput : list = [8, 2, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(sub_n([-2, -1, -5, 5],-3)),26)))",
    "io_inp": [
      -2,
      -1,
      -5,
      5
    ],
    "io_out": [
      8,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(sub_n(input,-3)),26)))"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [0, 5, 7]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n([-4, 1, 3],-2),-3),25),-3)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      0,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(input,-2),-3),25),-3)"
  },
  {
    "input": "input : list = [3, -3, -5, -2, -1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(drop([3, -3, -5, -2, -1, 5],4))",
    "io_inp": [
      3,
      -3,
      -5,
      -2,
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,4))"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [50, 20, 0]",
    "output": "generated_output : list = take(mul_n(take(mul_n(sort_asc([-5, -2, 0]),5),16),-2),35)",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      50,
      20,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(sort_asc(input),5),16),-2),35)"
  },
  {
    "input": "input : list = [-5, 4, -2, 5]\noutput : list = [-8, -5, 1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(add_n([-5, 4, -2, 5],2)),-5),25))",
    "io_inp": [
      -5,
      4,
      -2,
      5
    ],
    "io_out": [
      -8,
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(add_n(input,2)),-5),25))"
  },
  {
    "input": "input : list = [5, -5, -1, -5]\noutput : list = [-5, -5, -1, 5]",
    "output": "generated_output : list = sort_asc([5, -5, -1, -5])",
    "io_inp": [
      5,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, -1, 1, 4, -1]\noutput : list = [8, 8, 10, 12, 13, 14]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(add_n([5, 3, -1, 1, 4, -1],4)),5),1))",
    "io_inp": [
      5,
      3,
      -1,
      1,
      4,
      -1
    ],
    "io_out": [
      8,
      8,
      10,
      12,
      13,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(add_n(input,4)),5),1))"
  },
  {
    "input": "input : list = [5, 2, 5, -2]\noutput : list = [-24, -24, -12, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(mul_n([5, 2, 5, -2],-4),-3))),1)",
    "io_inp": [
      5,
      2,
      5,
      -2
    ],
    "io_out": [
      -24,
      -24,
      -12,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(mul_n(input,-4),-3))),1)"
  },
  {
    "input": "input : list = [-1, 4, 3]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(take([-1, 4, 3],1),-2))),45)",
    "io_inp": [
      -1,
      4,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(take(input,1),-2))),45)"
  },
  {
    "input": "input : list = [4, 2, -4, -1, 0]\noutput : list = [8, 6, 0, 3, 4]",
    "output": "generated_output : list = sub_n(take(add_n([4, 2, -4, -1, 0],2),6),-2)",
    "io_inp": [
      4,
      2,
      -4,
      -1,
      0
    ],
    "io_out": [
      8,
      6,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,2),6),-2)"
  },
  {
    "input": "input : list = [3, -5, -5, -4, -4, -2]\noutput : list = [27, 7, 7, -3, -3, 77]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(reverse([3, -5, -5, -4, -4, -2]),-5),-5),-2),3)",
    "io_inp": [
      3,
      -5,
      -5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      27,
      7,
      7,
      -3,
      -3,
      77
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(reverse(input),-5),-5),-2),3)"
  },
  {
    "input": "input : list = [5, 1, 1, -5, -3]\noutput : list = [5, 1, 1, -3, -5]",
    "output": "generated_output : list = sort_des([5, 1, 1, -5, -3])",
    "io_inp": [
      5,
      1,
      1,
      -5,
      -3
    ],
    "io_out": [
      5,
      1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, -2, -3, 0]\noutput : list = [-4, -3, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(reverse([-4, 4, -2, -3, 0]))",
    "io_inp": [
      -4,
      4,
      -2,
      -3,
      0
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-4, -4, 5, 1, 3]\noutput : list = [-9, -9, 0, -4, -2]",
    "output": "generated_output : list = sub_n([-4, -4, 5, 1, 3],5)",
    "io_inp": [
      -4,
      -4,
      5,
      1,
      3
    ],
    "io_out": [
      -9,
      -9,
      0,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, 5, 4, -3, 5, -1]\noutput : list = [-10, -10, -5, -5, 20, 30]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(sub_n([4, 5, 4, -3, 5, -1],3),-5))))",
    "io_inp": [
      4,
      5,
      4,
      -3,
      5,
      -1
    ],
    "io_out": [
      -10,
      -10,
      -5,
      -5,
      20,
      30
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(sub_n(input,3),-5))))"
  },
  {
    "input": "input : list = [2, -1, 3, -5]\noutput : list = [-4, 0, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des(sort_asc([2, -1, 3, -5])))),1)",
    "io_inp": [
      2,
      -1,
      3,
      -5
    ],
    "io_out": [
      -4,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [2, 5, -4, -4]\noutput : list = [-4, -4, 2, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n([2, 5, -4, -4],4)),-4)",
    "io_inp": [
      2,
      5,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,4)),-4)"
  },
  {
    "input": "input : list = [4, -4, -5, -2, -1, 5]\noutput : list = [10, 5, -20, -25, -35, -40]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_asc(add_n([4, -4, -5, -2, -1, 5],-3)),18)),5)",
    "io_inp": [
      4,
      -4,
      -5,
      -2,
      -1,
      5
    ],
    "io_out": [
      10,
      5,
      -20,
      -25,
      -35,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_asc(add_n(input,-3)),18)),5)"
  },
  {
    "input": "input : list = [-3, 3, 4, -4, -3]\noutput : list = [7, 6, 6, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(mul_n([-3, 3, 4, -4, -3],-1)),5),-2))",
    "io_inp": [
      -3,
      3,
      4,
      -4,
      -3
    ],
    "io_out": [
      7,
      6,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(mul_n(input,-1)),5),-2))"
  },
  {
    "input": "input : list = [0, 0, -1, 4]\noutput : list = [18, 15, 15, 3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(add_n([0, 0, -1, 4],-5)),-3),2),2)",
    "io_inp": [
      0,
      0,
      -1,
      4
    ],
    "io_out": [
      18,
      15,
      15,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(add_n(input,-5)),-3),2),2)"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [2, -8]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(drop([-1, 1, -1],1)),-5),31),3)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(drop(input,1)),-5),31),3)"
  },
  {
    "input": "input : list = [0, 2, -1]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(drop([0, 2, -1],1),5))))",
    "io_inp": [
      0,
      2,
      -1
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(drop(input,1),5))))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [4, 7]",
    "output": "generated_output : list = sub_n([-1, 2],-5)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, 2, -5, 5]\noutput : list = [-5, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 2, -5, 5])",
    "io_inp": [
      3,
      2,
      -5,
      5
    ],
    "io_out": [
      -5,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1, -4, 4]\noutput : list = [-5, -20]",
    "output": "generated_output : list = mul_n(reverse(take(take(take([-4, -1, -4, 4],2),6),19)),5)",
    "io_inp": [
      -4,
      -1,
      -4,
      4
    ],
    "io_out": [
      -5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(take(input,2),6),19)),5)"
  },
  {
    "input": "input : list = [-2, -1, -1, 4, 0, -4]\noutput : list = [2, 4, 5, 5, 6, 10]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(sub_n([-2, -1, -1, 4, 0, -4],-4)),-2)))",
    "io_inp": [
      -2,
      -1,
      -1,
      4,
      0,
      -4
    ],
    "io_out": [
      2,
      4,
      5,
      5,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(sub_n(input,-4)),-2)))"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(sub_n([0, 4, 2],4),-1))),10)",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(sub_n(input,4),-1))),10)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [-7, -4, 1]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(add_n([4, -1, -4],-4))),11),1)",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(add_n(input,-4))),11),1)"
  },
  {
    "input": "input : list = [-5, 5, -4, 1, -1]\noutput : list = [-77, 73, -62, 13, -17]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(reverse([-5, 5, -4, 1, -1]),-5),-3)),-2)",
    "io_inp": [
      -5,
      5,
      -4,
      1,
      -1
    ],
    "io_out": [
      -77,
      73,
      -62,
      13,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(reverse(input),-5),-3)),-2)"
  },
  {
    "input": "input : list = [-3, -3, 5, -4, 5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(take([-3, -3, 5, -4, 5],2),3),4),30),1)",
    "io_inp": [
      -3,
      -3,
      5,
      -4,
      5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(take(input,2),3),4),30),1)"
  },
  {
    "input": "input : list = [-3, -3, 3, -4, -5]\noutput : list = [15, 20, 25, 25, 55]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(sub_n([-3, -3, 3, -4, -5],-5),-3)),5))",
    "io_inp": [
      -3,
      -3,
      3,
      -4,
      -5
    ],
    "io_out": [
      15,
      20,
      25,
      25,
      55
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(sub_n(input,-5),-3)),5))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [56, 16]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(sub_n([3, -2],-4)),-2)),-4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      56,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(sub_n(input,-4)),-2)),-4)"
  },
  {
    "input": "input : list = [2, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(drop([2, -4, -4],1))))",
    "io_inp": [
      2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(drop(input,1))))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(reverse([1, 0]))),1),1)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(reverse(input))),1),1)"
  },
  {
    "input": "input : list = [-5, -4, 2, -1, 5]\noutput : list = [5, 2, -1, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -4, 2, -1, 5])",
    "io_inp": [
      -5,
      -4,
      2,
      -1,
      5
    ],
    "io_out": [
      5,
      2,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = add_n([-1, 2, 4],-4)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sort_des([0, -3]))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -5, 2, -2, 0]\noutput : list = [9, -15, 6, -6, 0]",
    "output": "generated_output : list = mul_n([3, -5, 2, -2, 0],3)",
    "io_inp": [
      3,
      -5,
      2,
      -2,
      0
    ],
    "io_out": [
      9,
      -15,
      6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [4, 4, 5, -4]\noutput : list = [-3, -4, -4, -12]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(add_n([4, 4, 5, -4],-5)),3),29))",
    "io_inp": [
      4,
      4,
      5,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(add_n(input,-5)),3),29))"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [4, 4, 3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_des([0, -1, 0]),-5),1),1)",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_des(input),-5),1),1)"
  },
  {
    "input": "input : list = [-5, -3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = drop([-5, -3, 5],1)",
    "io_inp": [
      -5,
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 5, -1, -1, 3, 2]\noutput : list = [-1, 0, -4, -4, 2, -5]",
    "output": "generated_output : list = sub_n(reverse([-2, 5, -1, -1, 3, 2]),3)",
    "io_inp": [
      -2,
      5,
      -1,
      -1,
      3,
      2
    ],
    "io_out": [
      -1,
      0,
      -4,
      -4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-5, 0, -4, 1, 0]\noutput : list = [4, -6]",
    "output": "generated_output : list = mul_n(reverse(add_n(take([-5, 0, -4, 1, 0],2),2)),2)",
    "io_inp": [
      -5,
      0,
      -4,
      1,
      0
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(input,2),2)),2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(reverse([5, -1]))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sub_n([-3, 4],-2)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, 5, 0, 3, -2, -4]\noutput : list = [2, 5, 0]",
    "output": "generated_output : list = take([2, 5, 0, 3, -2, -4],3)",
    "io_inp": [
      2,
      5,
      0,
      3,
      -2,
      -4
    ],
    "io_out": [
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, -2, 1, -4, -2]\noutput : list = [-2, 1, 5]",
    "output": "generated_output : list = reverse(take(sort_des([5, -2, 1, -4, -2]),3))",
    "io_inp": [
      5,
      -2,
      1,
      -4,
      -2
    ],
    "io_out": [
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(input),3))"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [8, -16]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(drop([5, 5, -3],1),-3)),-1),16)",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(drop(input,1),-3)),-1),16)"
  },
  {
    "input": "input : list = [-3, 3, -4, -4, -2]\noutput : list = [3, -2, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(drop([-3, 3, -4, -4, -2],1)))))",
    "io_inp": [
      -3,
      3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      3,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -2, 4, -3, 3]\noutput : list = [3, -3, 4, -2, 2]",
    "output": "generated_output : list = reverse([2, -2, 4, -3, 3])",
    "io_inp": [
      2,
      -2,
      4,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 4, 3]\noutput : list = [90, 120, 150]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(mul_n([5, 4, 3],2),-5)),-1),3)",
    "io_inp": [
      5,
      4,
      3
    ],
    "io_out": [
      90,
      120,
      150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(mul_n(input,2),-5)),-1),3)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(take(reverse([-2, 2]),2))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),2))"
  },
  {
    "input": "input : list = [1, 4, -1]\noutput : list = [-3, 0, -5]",
    "output": "generated_output : list = add_n([1, 4, -1],-4)",
    "io_inp": [
      1,
      4,
      -1
    ],
    "io_out": [
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 2, 0, -1]\noutput : list = [-8, 0, 4, 20]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(mul_n([-5, 2, 0, -1],-4))),32))",
    "io_inp": [
      -5,
      2,
      0,
      -1
    ],
    "io_out": [
      -8,
      0,
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(mul_n(input,-4))),32))"
  },
  {
    "input": "input : list = [3, 0, 1, -3, -2, -2]\noutput : list = [3, 1, 0, -3]",
    "output": "generated_output : list = sort_des(take([3, 0, 1, -3, -2, -2],4))",
    "io_inp": [
      3,
      0,
      1,
      -3,
      -2,
      -2
    ],
    "io_out": [
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(take([1, 4, 1],1),4)),-1))",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(take(input,1),4)),-1))"
  },
  {
    "input": "input : list = [-5, 3, 3]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(drop([-5, 3, 3],1),2))))",
    "io_inp": [
      -5,
      3,
      3
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(drop(input,1),2))))"
  },
  {
    "input": "input : list = [0, -2, 3, -1, -3]\noutput : list = [20, 25, 40]",
    "output": "generated_output : list = mul_n(reverse(sub_n(take(sort_des([0, -2, 3, -1, -3]),3),-5)),5)",
    "io_inp": [
      0,
      -2,
      3,
      -1,
      -3
    ],
    "io_out": [
      20,
      25,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(take(sort_des(input),3),-5)),5)"
  },
  {
    "input": "input : list = [1, 2, -3, -2]\noutput : list = [7, 6, 3, 2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sub_n([1, 2, -3, -2],-4),-1))))",
    "io_inp": [
      1,
      2,
      -3,
      -2
    ],
    "io_out": [
      7,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sub_n(input,-4),-1))))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(sort_des([1, -2]))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(reverse([3, 2])),-1)),-2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(reverse(input)),-1)),-2)"
  },
  {
    "input": "input : list = [0, 5, 5, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = sub_n(take(take(sub_n(take([0, 5, 5, 5],2),4),16),26),-4)",
    "io_inp": [
      0,
      5,
      5,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sub_n(take(input,2),4),16),26),-4)"
  },
  {
    "input": "input : list = [-2, -3, 0, 2]\noutput : list = [2, 0, -3, -2]",
    "output": "generated_output : list = take(reverse([-2, -3, 0, 2]),14)",
    "io_inp": [
      -2,
      -3,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),14)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [6, 5, -2]",
    "output": "generated_output : list = sub_n(sort_des([-3, 5, 4]),-1)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      6,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [5, 2, -2]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = reverse([5, 2, -2])",
    "io_inp": [
      5,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [6, 5]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(sort_asc([-2, -1]),-4)),3),6)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(sort_asc(input),-4)),3),6)"
  },
  {
    "input": "input : list = [2, -5, -3, 3]\noutput : list = [-10, -8, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc([2, -5, -3, 3]),-5)",
    "io_inp": [
      2,
      -5,
      -3,
      3
    ],
    "io_out": [
      -10,
      -8,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [3, 2, -4, 4]\noutput : list = [160, -80, -160]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(drop([3, 2, -4, 4],1),4),-2)),5)",
    "io_inp": [
      3,
      2,
      -4,
      4
    ],
    "io_out": [
      160,
      -80,
      -160
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(drop(input,1),4),-2)),5)"
  },
  {
    "input": "input : list = [-2, -5, 0, -1]\noutput : list = [-15, 60, -65, -40]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n([-2, -5, 0, -1],1),5),4),4),-5)",
    "io_inp": [
      -2,
      -5,
      0,
      -1
    ],
    "io_out": [
      -15,
      60,
      -65,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n(input,1),5),4),4),-5)"
  },
  {
    "input": "input : list = [-2, 0, 4, 1, -4, 2]\noutput : list = [-6, 0, 12, 3, -12, 6]",
    "output": "generated_output : list = reverse(take(mul_n(reverse([-2, 0, 4, 1, -4, 2]),3),26))",
    "io_inp": [
      -2,
      0,
      4,
      1,
      -4,
      2
    ],
    "io_out": [
      -6,
      0,
      12,
      3,
      -12,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(input),3),26))"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [10, 9, 7]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(sort_des([5, 2, 4]),3),22),-2),-4)",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      10,
      9,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(sort_des(input),3),22),-2),-4)"
  },
  {
    "input": "input : list = [-3, -3, -1, -5, 3, 5]\noutput : list = [-10, -8, -8, -6, -2, 0]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(reverse([-3, -3, -1, -5, 3, 5]))),26),5)",
    "io_inp": [
      -3,
      -3,
      -1,
      -5,
      3,
      5
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(reverse(input))),26),5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse([3, -4])",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = sort_des([0, -4, -2])",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 4, 3, 1, -2]\noutput : list = [-20, -15, -5, 10, 10]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(sort_asc([-2, 4, 3, 1, -2]),-5)),34),28)",
    "io_inp": [
      -2,
      4,
      3,
      1,
      -2
    ],
    "io_out": [
      -20,
      -15,
      -5,
      10,
      10
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(sort_asc(input),-5)),34),28)"
  },
  {
    "input": "input : list = [0, 0, -4, -3, -4]\noutput : list = [-20, -20, -15, 0, 0]",
    "output": "generated_output : list = take(take(take(sort_asc(mul_n([0, 0, -4, -3, -4],5)),9),40),8)",
    "io_inp": [
      0,
      0,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -20,
      -20,
      -15,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(sort_asc(mul_n(input,5)),9),40),8)"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [0, -1, 6]",
    "output": "generated_output : list = take(sub_n(reverse([4, -3, -2]),-2),17)",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      0,
      -1,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),-2),17)"
  },
  {
    "input": "input : list = [-4, 4, 1, 4, 1, 1]\noutput : list = [-15, 9, 0, 9, 0, 0]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n([-4, 4, 1, 4, 1, 1],-1),-3),19),3)",
    "io_inp": [
      -4,
      4,
      1,
      4,
      1,
      1
    ],
    "io_out": [
      -15,
      9,
      0,
      9,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(input,-1),-3),19),3)"
  },
  {
    "input": "input : list = [1, -5, -3, 4, -5, 1]\noutput : list = [-4, -1, -1, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(mul_n([1, -5, -3, 4, -5, 1],-1))",
    "io_inp": [
      1,
      -5,
      -3,
      4,
      -5,
      1
    ],
    "io_out": [
      -4,
      -1,
      -1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-1, -2, 2]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-1, -2, 2]))",
    "io_inp": [
      -1,
      -2,
      2
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, 3],1)",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -2, -2, 3]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(drop([-5, -2, -2, 3],2)),1))",
    "io_inp": [
      -5,
      -2,
      -2,
      3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(drop(input,2)),1))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [2, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(sort_des([-2, 3]),-2)),-2))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(sort_des(input),-2)),-2))"
  },
  {
    "input": "input : list = [-4, 2, 4, -3, -1, -4]\noutput : list = [5, 11, 13, 6, 8, 5]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(sub_n([-4, 2, 4, -3, -1, -4],-5),4),-4),22),4)",
    "io_inp": [
      -4,
      2,
      4,
      -3,
      -1,
      -4
    ],
    "io_out": [
      5,
      11,
      13,
      6,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(sub_n(input,-5),4),-4),22),4)"
  },
  {
    "input": "input : list = [-1, -3, 2, -1, -4]\noutput : list = [-20, -15, -5, -5, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n([-1, -3, 2, -1, -4],5))))",
    "io_inp": [
      -1,
      -3,
      2,
      -1,
      -4
    ],
    "io_out": [
      -20,
      -15,
      -5,
      -5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(input,5))))"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [-9, -7, -2]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(add_n([-1, 4, -3],-1),2))),-3)",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      -9,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(add_n(input,-1),2))),-3)"
  },
  {
    "input": "input : list = [5, -5, -1, -1, 3, -5]\noutput : list = [0, 8, 4, 4, 0, 10]",
    "output": "generated_output : list = take(reverse(add_n(add_n([5, -5, -1, -1, 3, -5],2),3)),23)",
    "io_inp": [
      5,
      -5,
      -1,
      -1,
      3,
      -5
    ],
    "io_out": [
      0,
      8,
      4,
      4,
      0,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(add_n(input,2),3)),23)"
  },
  {
    "input": "input : list = [-5, -2, 1, -1, 4]\noutput : list = [-2, 1, 4, 2, 7]",
    "output": "generated_output : list = sub_n([-5, -2, 1, -1, 4],-3)",
    "io_inp": [
      -5,
      -2,
      1,
      -1,
      4
    ],
    "io_out": [
      -2,
      1,
      4,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, -3, 2, 5, -5, 2]\noutput : list = [-2, -7, 1]",
    "output": "generated_output : list = reverse(add_n(take([5, -3, 2, 5, -5, 2],3),-4))",
    "io_inp": [
      5,
      -3,
      2,
      5,
      -5,
      2
    ],
    "io_out": [
      -2,
      -7,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(input,3),-4))"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [5, 5, 2]",
    "output": "generated_output : list = add_n([0, 0, -3],5)",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-2, -7]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(sub_n([3, -2],5),-2))),2)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(sub_n(input,5),-2))),2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [6, -1]",
    "output": "generated_output : list = take(sub_n([5, -2],-1),3)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),3)"
  },
  {
    "input": "input : list = [4, -2, 0]\noutput : list = [16, 4, 8]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sub_n([4, -2, 0],-3),-1),2)))",
    "io_inp": [
      4,
      -2,
      0
    ],
    "io_out": [
      16,
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sub_n(input,-3),-1),2)))"
  },
  {
    "input": "input : list = [1, -5, -1, -3]\noutput : list = [-19, 21, 61, 101]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(mul_n([1, -5, -1, -3],-4)),-1),5),-4)",
    "io_inp": [
      1,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -19,
      21,
      61,
      101
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(mul_n(input,-4)),-1),5),-4)"
  },
  {
    "input": "input : list = [0, -1, 4, -3]\noutput : list = [4, 0, -1, -3]",
    "output": "generated_output : list = sort_des([0, -1, 4, -3])",
    "io_inp": [
      0,
      -1,
      4,
      -3
    ],
    "io_out": [
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, -3, 0]\noutput : list = [0, -2, -1, 2]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(reverse([-2, -4, -3, 0]),2),23),1))",
    "io_inp": [
      -2,
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(reverse(input),2),23),1))"
  },
  {
    "input": "input : list = [5, -3, -2, 3, 1, -1]\noutput : list = [-3, -2, -1, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([5, -3, -2, 3, 1, -1])",
    "io_inp": [
      5,
      -3,
      -2,
      3,
      1,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, 1, 5, 4]\noutput : list = [1, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc([5, 3, 1, 5, 4]))))",
    "io_inp": [
      5,
      3,
      1,
      5,
      4
    ],
    "io_out": [
      1,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [0, -3, -4, -4, 3, 5]\noutput : list = [5, 3, -4, -4, -3, 0]",
    "output": "generated_output : list = reverse([0, -3, -4, -4, 3, 5])",
    "io_inp": [
      0,
      -3,
      -4,
      -4,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -4,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, 0, -1, -5]\noutput : list = [-72, 3, 18, 18, 78]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(mul_n([5, -1, 0, -1, -5],-5),3),23),-3))",
    "io_inp": [
      5,
      -1,
      0,
      -1,
      -5
    ],
    "io_out": [
      -72,
      3,
      18,
      18,
      78
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(mul_n(input,-5),3),23),-3))"
  },
  {
    "input": "input : list = [3, -4, 0]\noutput : list = [0, -3, -7]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des([3, -4, 0]),-3))))",
    "io_inp": [
      3,
      -4,
      0
    ],
    "io_out": [
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [3, 4, -3, -5]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(take([3, 4, -3, -5],2),1))),4)",
    "io_inp": [
      3,
      4,
      -3,
      -5
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(take(input,2),1))),4)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [-1, -3, -6]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sort_des([1, -2, 3]),-4),18)))",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sort_des(input),-4),18)))"
  },
  {
    "input": "input : list = [-4, 2, 2, -3, 3, -1]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse(take([-4, 2, 2, -3, 3, -1],2))",
    "io_inp": [
      -4,
      2,
      2,
      -3,
      3,
      -1
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [0, 24]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([-4, 4],-4),-3))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      0,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,-4),-3))"
  },
  {
    "input": "input : list = [4, -1, 0, -3]\noutput : list = [-20, 0, 5, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc([4, -1, 0, -3]),-5)))",
    "io_inp": [
      4,
      -1,
      0,
      -3
    ],
    "io_out": [
      -20,
      0,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(input),-5)))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-6, 9]",
    "output": "generated_output : list = mul_n([2, -3],-3)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, 2, 0, -2]\noutput : list = [1, 1, -1, -3]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des([2, 2, 0, -2]),4),4),1)",
    "io_inp": [
      2,
      2,
      0,
      -2
    ],
    "io_out": [
      1,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(input),4),4),1)"
  },
  {
    "input": "input : list = [-2, 4, -5, 0]\noutput : list = [0, -20, -30, -45]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sub_n([-2, 4, -5, 0],4))),-5),-1)",
    "io_inp": [
      -2,
      4,
      -5,
      0
    ],
    "io_out": [
      0,
      -20,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sub_n(input,4))),-5),-1)"
  },
  {
    "input": "input : list = [1, -1, -1, 0, 0, 5]\noutput : list = [0, -2]",
    "output": "generated_output : list = sub_n(take([1, -1, -1, 0, 0, 5],2),1)",
    "io_inp": [
      1,
      -1,
      -1,
      0,
      0,
      5
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),1)"
  },
  {
    "input": "input : list = [0, -3, 0, -2, 1, 4]\noutput : list = [4, 1, 0, 0, -2, -3]",
    "output": "generated_output : list = sort_des([0, -3, 0, -2, 1, 4])",
    "io_inp": [
      0,
      -3,
      0,
      -2,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      0,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1, 5, -3]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(take([-1, -1, 5, -3],2),3))),4)",
    "io_inp": [
      -1,
      -1,
      5,
      -3
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(take(input,2),3))),4)"
  },
  {
    "input": "input : list = [-5, 0, 5, 4]\noutput : list = [3, -12, -24, -27]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(add_n([-5, 0, 5, 4],4),10))),-3)",
    "io_inp": [
      -5,
      0,
      5,
      4
    ],
    "io_out": [
      3,
      -12,
      -24,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(add_n(input,4),10))),-3)"
  },
  {
    "input": "input : list = [-1, -5, 4]\noutput : list = [-82, -18, 62]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(sort_asc([-1, -5, 4]),-4)),-4),2)",
    "io_inp": [
      -1,
      -5,
      4
    ],
    "io_out": [
      -82,
      -18,
      62
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(sort_asc(input),-4)),-4),2)"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [-3, -3, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(mul_n([-4, -4, -5],-1),-1),-2),-3))",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(mul_n(input,-1),-1),-2),-3))"
  },
  {
    "input": "input : list = [0, 4, -3, -3, -2, 5]\noutput : list = [0, 12, -9, -9, -6, 15]",
    "output": "generated_output : list = mul_n([0, 4, -3, -3, -2, 5],3)",
    "io_inp": [
      0,
      4,
      -3,
      -3,
      -2,
      5
    ],
    "io_out": [
      0,
      12,
      -9,
      -9,
      -6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, -2, 4, 2, 0]\noutput : list = [-2, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(drop([5, -2, 4, 2, 0],1),22))))",
    "io_inp": [
      5,
      -2,
      4,
      2,
      0
    ],
    "io_out": [
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(drop(input,1),22))))"
  },
  {
    "input": "input : list = [-5, 4, 3]\noutput : list = [8, 7]",
    "output": "generated_output : list = add_n(sort_des(take(sub_n(drop([-5, 4, 3],1),1),19)),5)",
    "io_inp": [
      -5,
      4,
      3
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sub_n(drop(input,1),1),19)),5)"
  },
  {
    "input": "input : list = [-3, 2, -1, -5, -3]\noutput : list = [-10, -6, -6, -2, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 2, -1, -5, -3],2))",
    "io_inp": [
      -3,
      2,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -10,
      -6,
      -6,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-5, 5, -2, -2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(drop([-5, 5, -2, -2],2),3),-1)),2)",
    "io_inp": [
      -5,
      5,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(drop(input,2),3),-1)),2)"
  },
  {
    "input": "input : list = [-4, -2, 4, 4, -5, 1]\noutput : list = [6, 24, -3, -3, 15, 21]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-4, -2, 4, 4, -5, 1],3)),-3)",
    "io_inp": [
      -4,
      -2,
      4,
      4,
      -5,
      1
    ],
    "io_out": [
      6,
      24,
      -3,
      -3,
      15,
      21
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,3)),-3)"
  },
  {
    "input": "input : list = [-2, 4, 4, -1, -2]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(take(sort_des([-2, 4, 4, -1, -2]),1),3)",
    "io_inp": [
      -2,
      4,
      4,
      -1,
      -2
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),1),3)"
  },
  {
    "input": "input : list = [1, 4, 2, -3, 2]\noutput : list = [6, 4, 4, 3, -1]",
    "output": "generated_output : list = take(take(take(sort_des(add_n([1, 4, 2, -3, 2],2)),22),25),24)",
    "io_inp": [
      1,
      4,
      2,
      -3,
      2
    ],
    "io_out": [
      6,
      4,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(sort_des(add_n(input,2)),22),25),24)"
  },
  {
    "input": "input : list = [3, 3, 5]\noutput : list = [21, 21, 27]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(reverse([3, 3, 5]),-4)),3))",
    "io_inp": [
      3,
      3,
      5
    ],
    "io_out": [
      21,
      21,
      27
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(reverse(input),-4)),3))"
  },
  {
    "input": "input : list = [-3, -5, 4, 0]\noutput : list = [17, 9, -3, -19]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(mul_n([-3, -5, 4, 0],-4))),41),-3)",
    "io_inp": [
      -3,
      -5,
      4,
      0
    ],
    "io_out": [
      17,
      9,
      -3,
      -19
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(mul_n(input,-4))),41),-3)"
  },
  {
    "input": "input : list = [-4, -1, 5, 4, 1, -3]\noutput : list = [-45, -33, -9, 15, 51, 63]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(mul_n([-4, -1, 5, 4, 1, -3],4)),3)),3)",
    "io_inp": [
      -4,
      -1,
      5,
      4,
      1,
      -3
    ],
    "io_out": [
      -45,
      -33,
      -9,
      15,
      51,
      63
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(mul_n(input,4)),3)),3)"
  },
  {
    "input": "input : list = [-1, -3, 0, 4, -5]\noutput : list = [-2, -4]",
    "output": "generated_output : list = add_n(take([-1, -3, 0, 4, -5],2),-1)",
    "io_inp": [
      -1,
      -3,
      0,
      4,
      -5
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [4, 0, -2, 1, 1, 2]\noutput : list = [-5, -3, -2, -2, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_des([4, 0, -2, 1, 1, 2]),3))))",
    "io_inp": [
      4,
      0,
      -2,
      1,
      1,
      2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [-3, 1, -1]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = sort_asc(add_n([-3, 1, -1],1))",
    "io_inp": [
      -3,
      1,
      -1
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [-4, -1, 4, -2, 1]\noutput : list = [1, 2, 4, 7]",
    "output": "generated_output : list = sub_n(drop(sort_asc(add_n([-4, -1, 4, -2, 1],5)),1),2)",
    "io_inp": [
      -4,
      -1,
      4,
      -2,
      1
    ],
    "io_out": [
      1,
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(add_n(input,5)),1),2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = mul_n([-4, 2],1)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -4, 0]\noutput : list = [-4, -5, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([1, -4, 0]),5))",
    "io_inp": [
      1,
      -4,
      0
    ],
    "io_out": [
      -4,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-5, 3, 5, -5, 2, 5]\noutput : list = [5, 2, -5, 5, 3, -5]",
    "output": "generated_output : list = reverse([-5, 3, 5, -5, 2, 5])",
    "io_inp": [
      -5,
      3,
      5,
      -5,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -5,
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = add_n([0, -1],-3)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(take([2, 3, -3],1)),-1)),-4)",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(take(input,1)),-1)),-4)"
  },
  {
    "input": "input : list = [-3, 4, 0, -3]\noutput : list = [-6, -10, -13]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(drop([-3, 4, 0, -3],1),1),-4),-5),1)",
    "io_inp": [
      -3,
      4,
      0,
      -3
    ],
    "io_out": [
      -6,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(drop(input,1),1),-4),-5),1)"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-3, 4, -3]",
    "output": "generated_output : list = add_n([-5, 2, -5],2)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -3,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, 2, -5, 4, 4, 5]\noutput : list = [-10, -6, -13, -4, -4, -3]",
    "output": "generated_output : list = sub_n(add_n([-2, 2, -5, 4, 4, 5],-5),3)",
    "io_inp": [
      -2,
      2,
      -5,
      4,
      4,
      5
    ],
    "io_out": [
      -10,
      -6,
      -13,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),3)"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(drop([2, 1, 5],1))),22))",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(drop(input,1))),22))"
  },
  {
    "input": "input : list = [-4, 1, 0, 5, 4, -3]\noutput : list = [1, 2, 5, 6, 9, 10]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(sub_n([-4, 1, 0, 5, 4, -3],-4),1))),18)",
    "io_inp": [
      -4,
      1,
      0,
      5,
      4,
      -3
    ],
    "io_out": [
      1,
      2,
      5,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(sub_n(input,-4),1))),18)"
  },
  {
    "input": "input : list = [-3, 4, 4, -4]\noutput : list = [-4, -3, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(reverse([-3, 4, 4, -4])))))",
    "io_inp": [
      -3,
      4,
      4,
      -4
    ],
    "io_out": [
      -4,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [0, -2, 0, -1, 5]\noutput : list = [0, -2, 0]",
    "output": "generated_output : list = take([0, -2, 0, -1, 5],3)",
    "io_inp": [
      0,
      -2,
      0,
      -1,
      5
    ],
    "io_out": [
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, -5, 2, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take(sort_asc([5, -5, 2, -3]),2)",
    "io_inp": [
      5,
      -5,
      2,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-3, -1, 4, 3, 5]\noutput : list = [4, 3, 2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sort_asc([-3, -1, 4, 3, 5]),1))))",
    "io_inp": [
      -3,
      -1,
      4,
      3,
      5
    ],
    "io_out": [
      4,
      3,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-4, 5, 0, 3, 1, -2]\noutput : list = [-1, -3, -5, -6, -8, -10]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(sort_asc([-4, 5, 0, 3, 1, -2]),-3),-2),-5))",
    "io_inp": [
      -4,
      5,
      0,
      3,
      1,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(sort_asc(input),-3),-2),-5))"
  },
  {
    "input": "input : list = [5, 0, -5, -2]\noutput : list = [5, 0, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([5, 0, -5, -2]))",
    "io_inp": [
      5,
      0,
      -5,
      -2
    ],
    "io_out": [
      5,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [6, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse([3, 0]))),3),2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse(input))),3),2)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([-3, 0, -5],1)",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(sub_n([4, 2],2))),1))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(sub_n(input,2))),1))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n([-5, -1],5)),2),-1)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(input,5)),2),-1)"
  },
  {
    "input": "input : list = [0, 0, -5, 3]\noutput : list = [3, 0, 0, -5]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(add_n([0, 0, -5, 3],3)),19),3))",
    "io_inp": [
      0,
      0,
      -5,
      3
    ],
    "io_out": [
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(add_n(input,3)),19),3))"
  },
  {
    "input": "input : list = [3, 0, 1, 1, 1, -2]\noutput : list = [6, 4, 4, 4, 3, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(reverse([3, 0, 1, 1, 1, -2]))),2),-1)",
    "io_inp": [
      3,
      0,
      1,
      1,
      1,
      -2
    ],
    "io_out": [
      6,
      4,
      4,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(reverse(input))),2),-1)"
  },
  {
    "input": "input : list = [-2, -4, -2, -3, -2]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = take(sort_asc(drop([-2, -4, -2, -3, -2],2)),18)",
    "io_inp": [
      -2,
      -4,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,2)),18)"
  },
  {
    "input": "input : list = [1, -3, -5, 1]\noutput : list = [9, 1, -3, 9]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n([1, -3, -5, 1],-2),2),-1),-4)",
    "io_inp": [
      1,
      -3,
      -5,
      1
    ],
    "io_out": [
      9,
      1,
      -3,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(input,-2),2),-1),-4)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_asc([-4, 0]),-5),4),3))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_asc(input),-5),4),3))"
  },
  {
    "input": "input : list = [-2, -2, -1, 3]\noutput : list = [-2, -2, -1, 3]",
    "output": "generated_output : list = add_n(take(add_n([-2, -2, -1, 3],-3),4),3)",
    "io_inp": [
      -2,
      -2,
      -1,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-3),4),3)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-49, -31]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n([5, 3],3),3),-3),-5)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -49,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(input,3),3),-3),-5)"
  },
  {
    "input": "input : list = [-1, 2, 1, 3, 0, -4]\noutput : list = [-4, -1, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([-1, 2, 1, 3, 0, -4]))",
    "io_inp": [
      -1,
      2,
      1,
      3,
      0,
      -4
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take(reverse([-2, -4]),4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),4)"
  },
  {
    "input": "input : list = [0, -4, 2, 4, -5, 5]\noutput : list = [5, 4, 2, 0, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_asc([0, -4, 2, 4, -5, 5])))))",
    "io_inp": [
      0,
      -4,
      2,
      4,
      -5,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, 1, 5, -1, 0]\noutput : list = [-5, -10, 20, 0, -5]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(sub_n([0, 1, 5, -1, 0],1),1),1),5))",
    "io_inp": [
      0,
      1,
      5,
      -1,
      0
    ],
    "io_out": [
      -5,
      -10,
      20,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(sub_n(input,1),1),1),5))"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [-8, -3, 17]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(reverse([-2, 3, -1])),5)),-2)",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      -8,
      -3,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(reverse(input)),5)),-2)"
  },
  {
    "input": "input : list = [3, 3, 0, 1, 5]\noutput : list = [5, 9, 17, 17, 25]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(mul_n([3, 3, 0, 1, 5],4)),7),-1),4)",
    "io_inp": [
      3,
      3,
      0,
      1,
      5
    ],
    "io_out": [
      5,
      9,
      17,
      17,
      25
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(mul_n(input,4)),7),-1),4)"
  },
  {
    "input": "input : list = [2, 2, -3, 3, 4, 2]\noutput : list = [-12, -32, -32, -32]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(sort_asc([2, 2, -3, 3, 4, 2]),-1),4),-5),-4)",
    "io_inp": [
      2,
      2,
      -3,
      3,
      4,
      2
    ],
    "io_out": [
      -12,
      -32,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(sort_asc(input),-1),4),-5),-4)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(add_n([0, -3],3))),7))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(add_n(input,3))),7))"
  },
  {
    "input": "input : list = [-3, 1, 0, 4]\noutput : list = [-3, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([-3, 1, 0, 4])",
    "io_inp": [
      -3,
      1,
      0,
      4
    ],
    "io_out": [
      -3,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, 0, 2, -1, 3]\noutput : list = [-5, -6, -6, -8, -8, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n([0, 2, 0, 2, -1, 3],5)),3))",
    "io_inp": [
      0,
      2,
      0,
      2,
      -1,
      3
    ],
    "io_out": [
      -5,
      -6,
      -6,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(input,5)),3))"
  },
  {
    "input": "input : list = [1, -2, 0, 2]\noutput : list = [-3, 0, 3, 9]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(mul_n([1, -2, 0, 2],-3))),14),3)",
    "io_inp": [
      1,
      -2,
      0,
      2
    ],
    "io_out": [
      -3,
      0,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(mul_n(input,-3))),14),3)"
  },
  {
    "input": "input : list = [0, -5, -5, 3]\noutput : list = [0, -3, -8, -8]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(reverse([0, -5, -5, 3]),21))),-3)",
    "io_inp": [
      0,
      -5,
      -5,
      3
    ],
    "io_out": [
      0,
      -3,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(reverse(input),21))),-3)"
  },
  {
    "input": "input : list = [1, -1, -5]\noutput : list = [-8, 4]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(drop([1, -1, -5],1),-3),-3),2)",
    "io_inp": [
      1,
      -1,
      -5
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(drop(input,1),-3),-3),2)"
  },
  {
    "input": "input : list = [4, 5, 0, 1]\noutput : list = [0, 4, 16, 20]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([4, 5, 0, 1],4)),1)",
    "io_inp": [
      4,
      5,
      0,
      1
    ],
    "io_out": [
      0,
      4,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,4)),1)"
  },
  {
    "input": "input : list = [-4, -5, 1, 5, 3, 0]\noutput : list = [14]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(take([-4, -5, 1, 5, 3, 0],1),-4),17),2))",
    "io_inp": [
      -4,
      -5,
      1,
      5,
      3,
      0
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(take(input,1),-4),17),2))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [7, 0]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(reverse([2, -5]),-5)),3))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(reverse(input),-5)),3))"
  },
  {
    "input": "input : list = [1, 0, 2]\noutput : list = [0, -3, -6]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(sort_asc([1, 0, 2]),12))),-3)",
    "io_inp": [
      1,
      0,
      2
    ],
    "io_out": [
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(sort_asc(input),12))),-3)"
  },
  {
    "input": "input : list = [1, 0, -4, 3, 1]\noutput : list = [-4, 3, 1]",
    "output": "generated_output : list = drop([1, 0, -4, 3, 1],2)",
    "io_inp": [
      1,
      0,
      -4,
      3,
      1
    ],
    "io_out": [
      -4,
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [0, -108]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([4, -5],4),-4),-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      0,
      -108
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,4),-4),-3)"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [0, -8, -10]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(mul_n([-4, 0, -5],2)))))",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      0,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [-2, -5, -1, -1, -5, 4]\noutput : list = [7, 2, 2, 1, -2, -2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_des([-2, -5, -1, -1, -5, 4])),-3)))",
    "io_inp": [
      -2,
      -5,
      -1,
      -1,
      -5,
      4
    ],
    "io_out": [
      7,
      2,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [1, -3, 3, 3, -1, 4]\noutput : list = [15, 5, -5, -15, -15, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n([1, -3, 3, 3, -1, 4],3)),3),-5)",
    "io_inp": [
      1,
      -3,
      3,
      3,
      -1,
      4
    ],
    "io_out": [
      15,
      5,
      -5,
      -15,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(input,3)),3),-5)"
  },
  {
    "input": "input : list = [4, 5, -1, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(sub_n(take(sort_des(take([4, 5, -1, 4],1)),9),4),37)",
    "io_inp": [
      4,
      5,
      -1,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(take(input,1)),9),4),37)"
  },
  {
    "input": "input : list = [5, -3, 5, 3, -2, 3]\noutput : list = [1, 1, -1, -1, -6, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(sub_n([5, -3, 5, 3, -2, 3],5),6))),-1)",
    "io_inp": [
      5,
      -3,
      5,
      3,
      -2,
      3
    ],
    "io_out": [
      1,
      1,
      -1,
      -1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(sub_n(input,5),6))),-1)"
  },
  {
    "input": "input : list = [4, 5, -2, 4, -5, -1]\noutput : list = [9]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(take([4, 5, -2, 4, -5, -1],1),3),-2)))",
    "io_inp": [
      4,
      5,
      -2,
      4,
      -5,
      -1
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(take(input,1),3),-2)))"
  },
  {
    "input": "input : list = [-4, 0, 2, -5, -3, 2]\noutput : list = [28, 23, 18, 3, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(mul_n([-4, 0, 2, -5, -3, 2],-5)))),-3)",
    "io_inp": [
      -4,
      0,
      2,
      -5,
      -3,
      2
    ],
    "io_out": [
      28,
      23,
      18,
      3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(mul_n(input,-5)))),-3)"
  },
  {
    "input": "input : list = [3, -5, 5, 5]\noutput : list = [-73, 77, 77]",
    "output": "generated_output : list = add_n(mul_n(drop(mul_n(mul_n([3, -5, 5, 5],5),-3),1),-1),2)",
    "io_inp": [
      3,
      -5,
      5,
      5
    ],
    "io_out": [
      -73,
      77,
      77
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(mul_n(mul_n(input,5),-3),1),-1),2)"
  },
  {
    "input": "input : list = [0, 3, 5, 4, 0, 1]\noutput : list = [-20, -15, -10, 0, 5, 5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_des([0, 3, 5, 4, 0, 1]),-1)),-5))",
    "io_inp": [
      0,
      3,
      5,
      4,
      0,
      1
    ],
    "io_out": [
      -20,
      -15,
      -10,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_des(input),-1)),-5))"
  },
  {
    "input": "input : list = [0, 3, 2, 0, 2]\noutput : list = [-1, -2, -2, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(reverse([0, 3, 2, 0, 2]),4))))",
    "io_inp": [
      0,
      3,
      2,
      0,
      2
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [5, -5, 3]\noutput : list = [63, -57, 39]",
    "output": "generated_output : list = add_n(mul_n(take(take(mul_n([5, -5, 3],4),6),3),3),3)",
    "io_inp": [
      5,
      -5,
      3
    ],
    "io_out": [
      63,
      -57,
      39
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(mul_n(input,4),6),3),3),3)"
  },
  {
    "input": "input : list = [-1, -3, -5, -4, -4, 5]\noutput : list = [3, -3, -5, -6, -6, -7]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n([-1, -3, -5, -4, -4, 5],2))),41)",
    "io_inp": [
      -1,
      -3,
      -5,
      -4,
      -4,
      5
    ],
    "io_out": [
      3,
      -3,
      -5,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(input,2))),41)"
  },
  {
    "input": "input : list = [-3, 2, 5, 3]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(sub_n(take([-3, 2, 5, 3],1),-3),-5)",
    "io_inp": [
      -3,
      2,
      5,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,1),-3),-5)"
  },
  {
    "input": "input : list = [-2, -5, -1, 1]\noutput : list = [22, 10, 6, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(mul_n([-2, -5, -1, 1],-4),-2))))",
    "io_inp": [
      -2,
      -5,
      -1,
      1
    ],
    "io_out": [
      22,
      10,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(mul_n(input,-4),-2))))"
  },
  {
    "input": "input : list = [-4, -1, 0, 2, 3, 5]\noutput : list = [6, 2, 0, -4, -6, -12]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(mul_n([-4, -1, 0, 2, 3, 5],-2),13),-1),4))",
    "io_inp": [
      -4,
      -1,
      0,
      2,
      3,
      5
    ],
    "io_out": [
      6,
      2,
      0,
      -4,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(mul_n(input,-2),13),-1),4))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [5, 4]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(reverse([4, 5]))),9))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(reverse(input))),9))"
  },
  {
    "input": "input : list = [3, -3, -2, -4, 1, 5]\noutput : list = [5, 3, 1, -2, -3, -4]",
    "output": "generated_output : list = take(sort_des([3, -3, -2, -4, 1, 5]),26)",
    "io_inp": [
      3,
      -3,
      -2,
      -4,
      1,
      5
    ],
    "io_out": [
      5,
      3,
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),26)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(take([-1, 0, 0],1)),4),3))",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(take(input,1)),4),3))"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [5, 4, 0]",
    "output": "generated_output : list = sub_n([4, 3, -1],-1)",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -2, -3, 5, 0]\noutput : list = [12, 6, 3, -3, -18]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(mul_n([-5, -2, -3, 5, 0],-3))),-3))",
    "io_inp": [
      -5,
      -2,
      -3,
      5,
      0
    ],
    "io_out": [
      12,
      6,
      3,
      -3,
      -18
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(mul_n(input,-3))),-3))"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [-5, -8, -8]",
    "output": "generated_output : list = add_n([0, -3, -3],-5)",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [-6, -5, 3]",
    "output": "generated_output : list = take(sort_asc(add_n([-4, 5, -3],-2)),24)",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      -6,
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-2)),24)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [20, -8]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(mul_n([-2, 5],4)))))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      20,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(sort_des(sub_n([-4, -2],-3)),23)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,-3)),23)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [3, 6]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(sub_n([2, -1],-2),6),-2)),15)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(sub_n(input,-2),6),-2)),15)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [-240, -120, 60]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(reverse([4, 2, -1]),-4)),3),5)",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      -240,
      -120,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(reverse(input),-4)),3),5)"
  },
  {
    "input": "input : list = [-5, 2, 5]\noutput : list = [-8, -1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(reverse([-5, 2, 5])))),3)",
    "io_inp": [
      -5,
      2,
      5
    ],
    "io_out": [
      -8,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-5, -4, -5, 2, 0, 0]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take([-5, -4, -5, 2, 0, 0],2)",
    "io_inp": [
      -5,
      -4,
      -5,
      2,
      0,
      0
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, -5, 4, 2]\noutput : list = [-16, -8, 4, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des([-1, -5, 4, 2]),-4)))",
    "io_inp": [
      -1,
      -5,
      4,
      2
    ],
    "io_out": [
      -16,
      -8,
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(input),-4)))"
  },
  {
    "input": "input : list = [-5, 2, 2, 0]\noutput : list = [-13]",
    "output": "generated_output : list = reverse(sub_n(drop(reverse(mul_n([-5, 2, 2, 0],3)),3),-2))",
    "io_inp": [
      -5,
      2,
      2,
      0
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(reverse(mul_n(input,3)),3),-2))"
  },
  {
    "input": "input : list = [-1, -2, -2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = drop([-1, -2, -2, -3],2)",
    "io_inp": [
      -1,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [-5, -1, 3]",
    "output": "generated_output : list = reverse(sort_des([-5, 3, -1]))",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [1, 5, -3, -3, -2, 3]\noutput : list = [1, -4, -5, -5, 3, -1]",
    "output": "generated_output : list = reverse(add_n([1, 5, -3, -3, -2, 3],-2))",
    "io_inp": [
      1,
      5,
      -3,
      -3,
      -2,
      3
    ],
    "io_out": [
      1,
      -4,
      -5,
      -5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [0, -1, -4, -1, 0, -2]\noutput : list = [-2, -2, -3, -3, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des([0, -1, -4, -1, 0, -2]))),-2)",
    "io_inp": [
      0,
      -1,
      -4,
      -1,
      0,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [5, 5, -3, 4]\noutput : list = [15, 15, -1, 13]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(mul_n([5, 5, -3, 4],2),-4),-1),3),-1)",
    "io_inp": [
      5,
      5,
      -3,
      4
    ],
    "io_out": [
      15,
      15,
      -1,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(mul_n(input,2),-4),-1),3),-1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_des([3, -1])))))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [-5, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, -5])",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = take(sub_n([1, -2],3),8)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),8)"
  },
  {
    "input": "input : list = [5, 2, -1, 3]\noutput : list = [-25, -10, 5, -15]",
    "output": "generated_output : list = mul_n([5, 2, -1, 3],-5)",
    "io_inp": [
      5,
      2,
      -1,
      3
    ],
    "io_out": [
      -25,
      -10,
      5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [5, -4, 2, -4, 1]\noutput : list = [2, -1, -2, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse([5, -4, 2, -4, 1])))),3)",
    "io_inp": [
      5,
      -4,
      2,
      -4,
      1
    ],
    "io_out": [
      2,
      -1,
      -2,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse(input)))),3)"
  },
  {
    "input": "input : list = [4, -5, 0, -3]\noutput : list = [-16, 0, 12, 20]",
    "output": "generated_output : list = mul_n(take(take(take(sort_des([4, -5, 0, -3]),13),14),40),-4)",
    "io_inp": [
      4,
      -5,
      0,
      -3
    ],
    "io_out": [
      -16,
      0,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(sort_des(input),13),14),40),-4)"
  },
  {
    "input": "input : list = [-1, 4, 0, 1, -1]\noutput : list = [20, 0, -5]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(take([-1, 4, 0, 1, -1],3)),5),11))",
    "io_inp": [
      -1,
      4,
      0,
      1,
      -1
    ],
    "io_out": [
      20,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(take(input,3)),5),11))"
  },
  {
    "input": "input : list = [0, 5, 0, 4]\noutput : list = [-1]",
    "output": "generated_output : list = drop(add_n([0, 5, 0, 4],-5),3)",
    "io_inp": [
      0,
      5,
      0,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-5),3)"
  },
  {
    "input": "input : list = [2, -5, 4, -1, -1, 5]\noutput : list = [-3, -10, -1, -6, -6, 0]",
    "output": "generated_output : list = add_n([2, -5, 4, -1, -1, 5],-5)",
    "io_inp": [
      2,
      -5,
      4,
      -1,
      -1,
      5
    ],
    "io_out": [
      -3,
      -10,
      -1,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 5, 5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = mul_n(reverse(drop(reverse(reverse([-5, 5, 5, -3])),2)),1)",
    "io_inp": [
      -5,
      5,
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(reverse(reverse(input)),2)),1)"
  },
  {
    "input": "input : list = [-4, 4, 4, 5, 1]\noutput : list = [4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(sort_des([-4, 4, 4, 5, 1]),1)),3),2)",
    "io_inp": [
      -4,
      4,
      4,
      5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(sort_des(input),1)),3),2)"
  },
  {
    "input": "input : list = [4, -5, 4, 3, 3, 3]\noutput : list = [-4, 4, 4, 4, 5]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(drop([4, -5, 4, 3, 3, 3],1),-1),10)),7)",
    "io_inp": [
      4,
      -5,
      4,
      3,
      3,
      3
    ],
    "io_out": [
      -4,
      4,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(drop(input,1),-1),10)),7)"
  },
  {
    "input": "input : list = [4, -5, -5, 3]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(take([4, -5, -5, 3],1),-3)",
    "io_inp": [
      4,
      -5,
      -5,
      3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [1, 1, 2, -2, -4]\noutput : list = [-9, -7]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(drop([1, 1, 2, -2, -4],3)),5)))",
    "io_inp": [
      1,
      1,
      2,
      -2,
      -4
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(drop(input,3)),5)))"
  },
  {
    "input": "input : list = [1, -2, -4, -2]\noutput : list = [4, 1, -1, 1]",
    "output": "generated_output : list = add_n([1, -2, -4, -2],3)",
    "io_inp": [
      1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      4,
      1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, 0, 0, -2]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(reverse(drop(mul_n([2, 0, 0, -2],-5),3)))",
    "io_inp": [
      2,
      0,
      0,
      -2
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(mul_n(input,-5),3)))"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take(sort_des(take(take([-5, 2, -3],1),7)),10))",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(take(input,1),7)),10))"
  },
  {
    "input": "input : list = [-2, -3, -4, 3]\noutput : list = [3, -2, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(reverse([-2, -3, -4, 3])))))",
    "io_inp": [
      -2,
      -3,
      -4,
      3
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [4, 2, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(take([4, 2, 5],1))",
    "io_inp": [
      4,
      2,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-1, 3, 3, 0]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(take([-1, 3, 3, 0],1),5))))",
    "io_inp": [
      -1,
      3,
      3,
      0
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(take(input,1),5))))"
  },
  {
    "input": "input : list = [5, -1, -1, 2, 5, -4]\noutput : list = [12, 3, 3, -6, -15, -15]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_asc([5, -1, -1, 2, 5, -4])),-3)))",
    "io_inp": [
      5,
      -1,
      -1,
      2,
      5,
      -4
    ],
    "io_out": [
      12,
      3,
      3,
      -6,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [0, -3, -3, -5, 0]\noutput : list = [-3, -6, -6, -8, -3]",
    "output": "generated_output : list = add_n([0, -3, -3, -5, 0],-3)",
    "io_inp": [
      0,
      -3,
      -3,
      -5,
      0
    ],
    "io_out": [
      -3,
      -6,
      -6,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, 4, 5, -4, -3]\noutput : list = [3, 3, 4, -5, -4]",
    "output": "generated_output : list = sub_n([4, 4, 5, -4, -3],1)",
    "io_inp": [
      4,
      4,
      5,
      -4,
      -3
    ],
    "io_out": [
      3,
      3,
      4,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, -4, -1, -5, 1]\noutput : list = [12, 10, 4, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(sub_n([-1, -4, -1, -5, 1],1),11)),-2))",
    "io_inp": [
      -1,
      -4,
      -1,
      -5,
      1
    ],
    "io_out": [
      12,
      10,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(sub_n(input,1),11)),-2))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [7, 23]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n([0, 4],4),5),2))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      7,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(input,4),5),2))"
  },
  {
    "input": "input : list = [4, -5, 1, 4, -2]\noutput : list = [-8, -5, -2, 1, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(add_n([4, -5, 1, 4, -2],-3))),27))",
    "io_inp": [
      4,
      -5,
      1,
      4,
      -2
    ],
    "io_out": [
      -8,
      -5,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(add_n(input,-3))),27))"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [20, -5, 5]",
    "output": "generated_output : list = mul_n([-4, 1, -1],-5)",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      20,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -5, -5, -2, 0, 1]\noutput : list = [-4, -4, -1, 1, 2, 3]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_asc([2, -5, -5, -2, 0, 1])),-2),1),34)",
    "io_inp": [
      2,
      -5,
      -5,
      -2,
      0,
      1
    ],
    "io_out": [
      -4,
      -4,
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(sort_asc(input)),-2),1),34)"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [-5, -10]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(drop([0, -2, 3],1),5),-3),23))",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(drop(input,1),5),-3),23))"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [-21, -6, 0]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(add_n([-5, 0, 2],-2)),8),20),3)",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      -21,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(add_n(input,-2)),8),20),3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [27, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n([5, -1],5))),2)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      27,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(input,5))),2)"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [2, 6]",
    "output": "generated_output : list = reverse(take(take(sub_n(reverse([1, 0, 4]),-2),14),2))",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(reverse(input),-2),14),2))"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-16, -24, -48]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(sort_asc([-2, -1, -5])),1),-4),-2)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -16,
      -24,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(sort_asc(input)),1),-4),-2)"
  },
  {
    "input": "input : list = [4, -2, -1, -3, -1, 4]\noutput : list = [40, 35, 30, 30, 5, 5]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(sub_n([4, -2, -1, -3, -1, 4],5))),-5),39)",
    "io_inp": [
      4,
      -2,
      -1,
      -3,
      -1,
      4
    ],
    "io_out": [
      40,
      35,
      30,
      30,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(sub_n(input,5))),-5),39)"
  },
  {
    "input": "input : list = [-1, -2, -2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(add_n(reverse(drop(sub_n([-1, -2, -2, -3],5),3)),5))",
    "io_inp": [
      -1,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(drop(sub_n(input,5),3)),5))"
  },
  {
    "input": "input : list = [2, 2, -5, 3]\noutput : list = [1, 0, 0, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc([2, 2, -5, 3]))),2)",
    "io_inp": [
      2,
      2,
      -5,
      3
    ],
    "io_out": [
      1,
      0,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(input))),2)"
  },
  {
    "input": "input : list = [5, 5, -4, -1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(sub_n(add_n(take([5, 5, -4, -1],2),-2),3),-2)",
    "io_inp": [
      5,
      5,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(input,2),-2),3),-2)"
  },
  {
    "input": "input : list = [1, 2, 4, -1, 3, 2]\noutput : list = [3, 5, 6, 6, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sort_des([1, 2, 4, -1, 3, 2])),-1)),5)",
    "io_inp": [
      1,
      2,
      4,
      -1,
      3,
      2
    ],
    "io_out": [
      3,
      5,
      6,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sort_des(input)),-1)),5)"
  },
  {
    "input": "input : list = [-2, 0, 1, 4, 3]\noutput : list = [-2, 0, 1, 3, 4]",
    "output": "generated_output : list = sort_asc([-2, 0, 1, 4, 3])",
    "io_inp": [
      -2,
      0,
      1,
      4,
      3
    ],
    "io_out": [
      -2,
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, 1, 4, 1, 1]\noutput : list = [-20, -12, -12, -12, -12, 0]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_des([1, -1, 1, 4, 1, 1]),4),4)),47)",
    "io_inp": [
      1,
      -1,
      1,
      4,
      1,
      1
    ],
    "io_out": [
      -20,
      -12,
      -12,
      -12,
      -12,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_des(input),4),4)),47)"
  },
  {
    "input": "input : list = [-3, 3, 2, 5, 4]\noutput : list = [9, 8, 7, 6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(drop([-3, 3, 2, 5, 4],1)),-4))",
    "io_inp": [
      -3,
      3,
      2,
      5,
      4
    ],
    "io_out": [
      9,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(drop(input,1)),-4))"
  },
  {
    "input": "input : list = [-4, 0, -5, 0]\noutput : list = [-3, -3, -7]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(sort_des([-4, 0, -5, 0])),1),3),2)",
    "io_inp": [
      -4,
      0,
      -5,
      0
    ],
    "io_out": [
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(sort_des(input)),1),3),2)"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [-5, -5, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n([-3, -3, 3],5),3)))",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      -5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(input,5),3)))"
  },
  {
    "input": "input : list = [2, 3, -5, 2]\noutput : list = [-75, 30, 45]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(drop([2, 3, -5, 2],1),3))),5)",
    "io_inp": [
      2,
      3,
      -5,
      2
    ],
    "io_out": [
      -75,
      30,
      45
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(drop(input,1),3))),5)"
  },
  {
    "input": "input : list = [-5, 1, 0, -1, 0, 4]\noutput : list = [7, 4, 3, 3, 2, -2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse([-5, 1, 0, -1, 0, 4])))),-3)",
    "io_inp": [
      -5,
      1,
      0,
      -1,
      0,
      4
    ],
    "io_out": [
      7,
      4,
      3,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse(input)))),-3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-17, -29]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(add_n([5, 1],4)),1),-3),5)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -17,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(add_n(input,4)),1),-3),5)"
  },
  {
    "input": "input : list = [-2, -5, -5, 4]\noutput : list = [20, -10, -25, -25]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(reverse([-2, -5, -5, 4]))),5))",
    "io_inp": [
      -2,
      -5,
      -5,
      4
    ],
    "io_out": [
      20,
      -10,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(reverse(input))),5))"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [-6, 12, 15]",
    "output": "generated_output : list = mul_n(take(sort_asc([-2, 5, 4]),7),3)",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      -6,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),7),3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc([-1, 4])),-2))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(input)),-2))"
  },
  {
    "input": "input : list = [-4, -5, 3, -5]\noutput : list = [-7, 1, -7, -6]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(reverse([-4, -5, 3, -5]),3),-1),1),22)",
    "io_inp": [
      -4,
      -5,
      3,
      -5
    ],
    "io_out": [
      -7,
      1,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(reverse(input),3),-1),1),22)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-9, -17]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(mul_n([-3, -1],4),1),2),-2))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -9,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(mul_n(input,4),1),2),-2))"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [-13, 14, 32]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(reverse([4, -1, 2])),-3),-3),-4)",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      -13,
      14,
      32
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(reverse(input)),-3),-3),-4)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sub_n([1, -3],-2)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 0, 4, 1, 3, 2]\noutput : list = [1, 2, 0, 3, -1, -1]",
    "output": "generated_output : list = reverse(sub_n([0, 0, 4, 1, 3, 2],1))",
    "io_inp": [
      0,
      0,
      4,
      1,
      3,
      2
    ],
    "io_out": [
      1,
      2,
      0,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [3, 4, 3, -5, -1, -4]\noutput : list = [4, 0, -3, -4]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(drop([3, 4, 3, -5, -1, -4],2)),-1)),2)",
    "io_inp": [
      3,
      4,
      3,
      -5,
      -1,
      -4
    ],
    "io_out": [
      4,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(drop(input,2)),-1)),2)"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [-2, 3, -3]",
    "output": "generated_output : list = add_n(sub_n(reverse([-4, 2, -3]),-5),-4)",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      -2,
      3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),-5),-4)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse(drop([-5, 5, 1],1))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [2, 0, -2, 3, 2, 5]\noutput : list = [10, 8, 7, 7, 5, 3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(reverse(add_n([2, 0, -2, 3, 2, 5],5)))))",
    "io_inp": [
      2,
      0,
      -2,
      3,
      2,
      5
    ],
    "io_out": [
      10,
      8,
      7,
      7,
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(reverse(add_n(input,5)))))"
  },
  {
    "input": "input : list = [1, 0, 2, -4, 4]\noutput : list = [180, 205, 155, 305, 105]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(add_n([1, 0, 2, -4, 4],-3),-5),-5),5),-5)",
    "io_inp": [
      1,
      0,
      2,
      -4,
      4
    ],
    "io_out": [
      180,
      205,
      155,
      305,
      105
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(add_n(input,-3),-5),-5),5),-5)"
  },
  {
    "input": "input : list = [-2, -3, 3, 1, -1, -5]\noutput : list = [-7, -5, -3, -1, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(drop([-2, -3, 3, 1, -1, -5],1))),2),36)",
    "io_inp": [
      -2,
      -3,
      3,
      1,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(drop(input,1))),2),36)"
  },
  {
    "input": "input : list = [2, -4, -1, -4]\noutput : list = [-3, -6, -9, -9]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc([2, -4, -1, -4])),-5))",
    "io_inp": [
      2,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(input)),-5))"
  },
  {
    "input": "input : list = [-4, 2, -2, 5, 5]\noutput : list = [5, 5, 2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(sort_asc([-4, 2, -2, 5, 5])),31)))",
    "io_inp": [
      -4,
      2,
      -2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(sort_asc(input)),31)))"
  },
  {
    "input": "input : list = [-5, -1, 4, 0, 3, -1]\noutput : list = [-4, 0, 5, 1, 4, 0]",
    "output": "generated_output : list = add_n([-5, -1, 4, 0, 3, -1],1)",
    "io_inp": [
      -5,
      -1,
      4,
      0,
      3,
      -1
    ],
    "io_out": [
      -4,
      0,
      5,
      1,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, -1, 2, 0, -5, 1]\noutput : list = [7, 5, -1, -3, -5, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc([-4, -1, 2, 0, -5, 1])),-2),3)",
    "io_inp": [
      -4,
      -1,
      2,
      0,
      -5,
      1
    ],
    "io_out": [
      7,
      5,
      -1,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(input)),-2),3)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [-6, -2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sort_asc([-5, -1, 3])),-3),4))",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sort_asc(input)),-3),4))"
  },
  {
    "input": "input : list = [0, 3, 5, -3, 2, 3]\noutput : list = [5, 3, 3, 2, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc([0, 3, 5, -3, 2, 3])),23)))",
    "io_inp": [
      0,
      3,
      5,
      -3,
      2,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc(input)),23)))"
  },
  {
    "input": "input : list = [-5, -4, -5, 3, 3]\noutput : list = [-30, -30, -25, 10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(sub_n([-5, -4, -5, 3, 3],1),19)),5))",
    "io_inp": [
      -5,
      -4,
      -5,
      3,
      3
    ],
    "io_out": [
      -30,
      -30,
      -25,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(sub_n(input,1),19)),5))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n([0, 0],2)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, 4, 0]\noutput : list = [13]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(drop(sub_n([-4, 4, 0],-5),2),-4)),-4)",
    "io_inp": [
      -4,
      4,
      0
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(drop(sub_n(input,-5),2),-4)),-4)"
  },
  {
    "input": "input : list = [0, 1, -1, 0, 3]\noutput : list = [21, 15, 12, 12, 9]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(mul_n([0, 1, -1, 0, 3],-1),4),5),-3))",
    "io_inp": [
      0,
      1,
      -1,
      0,
      3
    ],
    "io_out": [
      21,
      15,
      12,
      12,
      9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(mul_n(input,-1),4),5),-3))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [13, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(mul_n([-2, 1],-5),-3))))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      13,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(mul_n(input,-5),-3))))"
  },
  {
    "input": "input : list = [-3, 0, 3]\noutput : list = [-24, 0, 24]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sort_des([-3, 0, 3]),-1),2),4))",
    "io_inp": [
      -3,
      0,
      3
    ],
    "io_out": [
      -24,
      0,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(sort_des(input),-1),2),4))"
  },
  {
    "input": "input : list = [-2, 4, 2, 5, -1]\noutput : list = [20, 16, 8, -4, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-2, 4, 2, 5, -1]),4))",
    "io_inp": [
      -2,
      4,
      2,
      5,
      -1
    ],
    "io_out": [
      20,
      16,
      8,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [1, -3, 4, 2]\noutput : list = [1, 5, 7, 15]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(mul_n([1, -3, 4, 2],-2),7)),5),4)",
    "io_inp": [
      1,
      -3,
      4,
      2
    ],
    "io_out": [
      1,
      5,
      7,
      15
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(mul_n(input,-2),7)),5),4)"
  },
  {
    "input": "input : list = [-3, -2, 2, 5, 5]\noutput : list = [-8, -7, -3, 0, 0]",
    "output": "generated_output : list = add_n([-3, -2, 2, 5, 5],-5)",
    "io_inp": [
      -3,
      -2,
      2,
      5,
      5
    ],
    "io_out": [
      -8,
      -7,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [0, 3, -2]\noutput : list = [-4, -19, 6]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(mul_n([0, 3, -2],-5),1)),-3))",
    "io_inp": [
      0,
      3,
      -2
    ],
    "io_out": [
      -4,
      -19,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(mul_n(input,-5),1)),-3))"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(take([-2, 4, 0],1),-2)",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-2, -2, -3, 0, 5]\noutput : list = [-8, -7, -7, -5, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des([-2, -2, -3, 0, 5]),-5))",
    "io_inp": [
      -2,
      -2,
      -3,
      0,
      5
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [1, 5, 5, 1]\noutput : list = [192, 0, 0, 192]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(add_n([1, 5, 5, 1],-5),4),-1),-3),-4)",
    "io_inp": [
      1,
      5,
      5,
      1
    ],
    "io_out": [
      192,
      0,
      0,
      192
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(add_n(input,-5),4),-1),-3),-4)"
  },
  {
    "input": "input : list = [3, 1, 4, 1, -4]\noutput : list = [-6, -1, 2, -1, 1]",
    "output": "generated_output : list = take(add_n(add_n(reverse(sub_n([3, 1, 4, 1, -4],-4)),-2),-4),51)",
    "io_inp": [
      3,
      1,
      4,
      1,
      -4
    ],
    "io_out": [
      -6,
      -1,
      2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(sub_n(input,-4)),-2),-4),51)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(drop(reverse([5, 1, -5]),2),4),-1),5)",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(drop(reverse(input),2),4),-1),5)"
  },
  {
    "input": "input : list = [1, -4, -4, 3]\noutput : list = [5, 0, 0, 7]",
    "output": "generated_output : list = sub_n([1, -4, -4, 3],-4)",
    "io_inp": [
      1,
      -4,
      -4,
      3
    ],
    "io_out": [
      5,
      0,
      0,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, -2, 5, -1, 3, 0]\noutput : list = [1, -1, 6, 0, 4, 1]",
    "output": "generated_output : list = take(add_n([0, -2, 5, -1, 3, 0],1),19)",
    "io_inp": [
      0,
      -2,
      5,
      -1,
      3,
      0
    ],
    "io_out": [
      1,
      -1,
      6,
      0,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),19)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -3, -5],1)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -2, 5, 0, -4, -4]\noutput : list = [17, 5, -23, -3, 13, 13]",
    "output": "generated_output : list = sub_n(mul_n([-5, -2, 5, 0, -4, -4],-4),3)",
    "io_inp": [
      -5,
      -2,
      5,
      0,
      -4,
      -4
    ],
    "io_out": [
      17,
      5,
      -23,
      -3,
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),3)"
  },
  {
    "input": "input : list = [-4, 0, -1, -3, 0]\noutput : list = [-5, -5, -8, -14, -17]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(mul_n([-4, 0, -1, -3, 0],3))),2),3)",
    "io_inp": [
      -4,
      0,
      -1,
      -3,
      0
    ],
    "io_out": [
      -5,
      -5,
      -8,
      -14,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(mul_n(input,3))),2),3)"
  },
  {
    "input": "input : list = [2, -3, -2, 4, -5]\noutput : list = [4, 2, -2, -3, -5]",
    "output": "generated_output : list = sort_des([2, -3, -2, 4, -5])",
    "io_inp": [
      2,
      -3,
      -2,
      4,
      -5
    ],
    "io_out": [
      4,
      2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, -1, 5]\noutput : list = [80]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(take([2, -3, -1, 5],1),2),-5)),-4)",
    "io_inp": [
      2,
      -3,
      -1,
      5
    ],
    "io_out": [
      80
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(take(input,1),2),-5)),-4)"
  },
  {
    "input": "input : list = [-5, 2, -4, -4]\noutput : list = [-8, -7, -7, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc([-5, 2, -4, -4])),-3))",
    "io_inp": [
      -5,
      2,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [-4, 4, 5, 2, 3, 3]\noutput : list = [13, 5, 4, 7, 6, 6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse([-4, 4, 5, 2, 3, 3]),-1)),-5),-4)",
    "io_inp": [
      -4,
      4,
      5,
      2,
      3,
      3
    ],
    "io_out": [
      13,
      5,
      4,
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(reverse(input),-1)),-5),-4)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-4, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, -4])",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 2, -5, -2, 1]\noutput : list = [-7, -5, 1, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_asc([-4, 2, -5, -2, 1]),-2),11)),3)",
    "io_inp": [
      -4,
      2,
      -5,
      -2,
      1
    ],
    "io_out": [
      -7,
      -5,
      1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_asc(input),-2),11)),3)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n([1, 1],-5)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, 4, 1, -1]\noutput : list = [5, 4, 1, -1]",
    "output": "generated_output : list = sort_des([5, 4, 1, -1])",
    "io_inp": [
      5,
      4,
      1,
      -1
    ],
    "io_out": [
      5,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-60, -12]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(mul_n([-1, -5],4)))),3)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -60,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(mul_n(input,4)))),3)"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [3, 3, 12]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(reverse([-2, 1, 1])),6),2),-3)",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      3,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(reverse(input)),6),2),-3)"
  },
  {
    "input": "input : list = [5, 3, 4]\noutput : list = [11, 9, 10]",
    "output": "generated_output : list = sub_n(add_n([5, 3, 4],4),-2)",
    "io_inp": [
      5,
      3,
      4
    ],
    "io_out": [
      11,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),-2)"
  },
  {
    "input": "input : list = [5, 5, 2, 0, 5, 5]\noutput : list = [-4, -8, -14, -14, -14, -14]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(add_n([5, 5, 2, 0, 5, 5],4))),-2),4)",
    "io_inp": [
      5,
      5,
      2,
      0,
      5,
      5
    ],
    "io_out": [
      -4,
      -8,
      -14,
      -14,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(add_n(input,4))),-2),4)"
  },
  {
    "input": "input : list = [3, -2, -3, -4, -2, 5]\noutput : list = [-6, -5, -4, -4, 1, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n([3, -2, -3, -4, -2, 5],-1)),38),1)",
    "io_inp": [
      3,
      -2,
      -3,
      -4,
      -2,
      5
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(input,-1)),38),1)"
  },
  {
    "input": "input : list = [0, -5, -4, 5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(drop([0, -5, -4, 5, -1],3))",
    "io_inp": [
      0,
      -5,
      -4,
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [-1, 0, 3]\noutput : list = [0, 12, 48]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(mul_n([-1, 0, 3],4),4),25)),3)",
    "io_inp": [
      -1,
      0,
      3
    ],
    "io_out": [
      0,
      12,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(mul_n(input,4),4),25)),3)"
  },
  {
    "input": "input : list = [0, -4, 3, 4, -2, 4]\noutput : list = [-5, -25, 10, 15, -15, 15]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(reverse([0, -4, 3, 4, -2, 4])),1),5),1)",
    "io_inp": [
      0,
      -4,
      3,
      4,
      -2,
      4
    ],
    "io_out": [
      -5,
      -25,
      10,
      15,
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(reverse(input)),1),5),1)"
  },
  {
    "input": "input : list = [-3, -4, 2, -2, -3]\noutput : list = [-15, -10, 10]",
    "output": "generated_output : list = mul_n(reverse(drop([-3, -4, 2, -2, -3],2)),5)",
    "io_inp": [
      -3,
      -4,
      2,
      -2,
      -3
    ],
    "io_out": [
      -15,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,2)),5)"
  },
  {
    "input": "input : list = [-4, 1, -2, -5]\noutput : list = [3, 5, 8]",
    "output": "generated_output : list = sub_n(take(drop(sort_asc(sub_n([-4, 1, -2, -5],-3)),1),22),-4)",
    "io_inp": [
      -4,
      1,
      -2,
      -5
    ],
    "io_out": [
      3,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(sort_asc(sub_n(input,-3)),1),22),-4)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [0, -7]",
    "output": "generated_output : list = sub_n(sort_des([5, -2]),5)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [1, -5, 4, 3, -1, -1]\noutput : list = [-6, -24]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(take([1, -5, 4, 3, -1, -1],2),26),3)),3)",
    "io_inp": [
      1,
      -5,
      4,
      3,
      -1,
      -1
    ],
    "io_out": [
      -6,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(take(input,2),26),3)),3)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n([-1, 2],-3)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 5, 4, 2, -1]\noutput : list = [-2, -4, -7, -9, -10]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(reverse([-3, 5, 4, 2, -1])),2),-1),-3)",
    "io_inp": [
      -3,
      5,
      4,
      2,
      -1
    ],
    "io_out": [
      -2,
      -4,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(reverse(input)),2),-1),-3)"
  },
  {
    "input": "input : list = [-3, -5, 2, -5, -3]\noutput : list = [-3, -5, 2]",
    "output": "generated_output : list = take([-3, -5, 2, -5, -3],3)",
    "io_inp": [
      -3,
      -5,
      2,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, 4, -2, -4]\noutput : list = [4, 5, -1, -3]",
    "output": "generated_output : list = add_n([3, 4, -2, -4],1)",
    "io_inp": [
      3,
      4,
      -2,
      -4
    ],
    "io_out": [
      4,
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, 4, 1]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sort_asc(take([-3, 4, 1],1)))",
    "io_inp": [
      -3,
      4,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [1, 0, 2, 4]\noutput : list = [-8, -7, -6, -4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n([1, 0, 2, 4],3),-5)))",
    "io_inp": [
      1,
      0,
      2,
      4
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(input,3),-5)))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = add_n([-4, -2],2)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, 0, -3, 3, 0, 2]\noutput : list = [2, 1, -1, -1, -3, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n([-2, 0, -3, 3, 0, 2],-5),4))",
    "io_inp": [
      -2,
      0,
      -3,
      3,
      0,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,-5),4))"
  },
  {
    "input": "input : list = [-3, -4, 4, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(drop([-3, -4, 4, 3, -1],3))",
    "io_inp": [
      -3,
      -4,
      4,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [-625, 375, -375]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(mul_n([3, -3, 5],5),-5),21),5))",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      -625,
      375,
      -375
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(mul_n(input,5),-5),21),5))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [7, 1]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(add_n([-3, -1],2),3),4)),1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(add_n(input,2),3),4)),1)"
  },
  {
    "input": "input : list = [-2, 3, 5, -2, 3, 2]\noutput : list = [4, -6, -10, 4, -6, -4]",
    "output": "generated_output : list = mul_n([-2, 3, 5, -2, 3, 2],-2)",
    "io_inp": [
      -2,
      3,
      5,
      -2,
      3,
      2
    ],
    "io_out": [
      4,
      -6,
      -10,
      4,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, -2, 3, -5]\noutput : list = [-7, -1, 9, 9]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des([3, -2, 3, -5]),2)),3)",
    "io_inp": [
      3,
      -2,
      3,
      -5
    ],
    "io_out": [
      -7,
      -1,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(input),2)),3)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(sort_asc([-4, -4])),17),-1),3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(sort_asc(input)),17),-1),3)"
  },
  {
    "input": "input : list = [3, 0, -2, -2, -2, -2]\noutput : list = [0, -10, -10, -10, -10]",
    "output": "generated_output : list = mul_n(mul_n(drop([3, 0, -2, -2, -2, -2],1),-5),-1)",
    "io_inp": [
      3,
      0,
      -2,
      -2,
      -2,
      -2
    ],
    "io_out": [
      0,
      -10,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(input,1),-5),-1)"
  },
  {
    "input": "input : list = [2, 4, -1, 5]\noutput : list = [3, 2, 0, -3]",
    "output": "generated_output : list = sort_des(add_n([2, 4, -1, 5],-2))",
    "io_inp": [
      2,
      4,
      -1,
      5
    ],
    "io_out": [
      3,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [1, -5, 5, 4]\noutput : list = [1, 0, -3, -9]",
    "output": "generated_output : list = take(sub_n(sort_des([1, -5, 5, 4]),4),28)",
    "io_inp": [
      1,
      -5,
      5,
      4
    ],
    "io_out": [
      1,
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),4),28)"
  },
  {
    "input": "input : list = [-2, -4, 3, -2]\noutput : list = [3, -2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse([-2, -4, 3, -2]),10)))",
    "io_inp": [
      -2,
      -4,
      3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(input),10)))"
  },
  {
    "input": "input : list = [-5, -2, 0, -3, 3, 3]\noutput : list = [-4, -6, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(take([-5, -2, 0, -3, 3, 3],4))),4))",
    "io_inp": [
      -5,
      -2,
      0,
      -3,
      3,
      3
    ],
    "io_out": [
      -4,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(take(input,4))),4))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse([-4, 2])",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -4, 2, 1, 3, 5]\noutput : list = [1, -1, -2, -3, -8, -9]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(add_n([-5, -4, 2, 1, 3, 5],-3),25)),1))",
    "io_inp": [
      -5,
      -4,
      2,
      1,
      3,
      5
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(add_n(input,-3),25)),1))"
  },
  {
    "input": "input : list = [-3, -5, 5, 3]\noutput : list = [4, -4, 36, 28]",
    "output": "generated_output : list = mul_n(add_n([-3, -5, 5, 3],4),4)",
    "io_inp": [
      -3,
      -5,
      5,
      3
    ],
    "io_out": [
      4,
      -4,
      36,
      28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),4)"
  },
  {
    "input": "input : list = [1, 1, -2, -3, 0, 3]\noutput : list = [6, 4, 0, -2, -2, -6]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(reverse([1, 1, -2, -3, 0, 3]),-2))))",
    "io_inp": [
      1,
      1,
      -2,
      -3,
      0,
      3
    ],
    "io_out": [
      6,
      4,
      0,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [-3, 6, 3]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(add_n([-3, -2, -5],2),-1)),1),3)",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      -3,
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(add_n(input,2),-1)),1),3)"
  },
  {
    "input": "input : list = [4, -5, -4, 1]\noutput : list = [-8, -28]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse(drop([4, -5, -4, 1],2)),-3),4))",
    "io_inp": [
      4,
      -5,
      -4,
      1
    ],
    "io_out": [
      -8,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(drop(input,2)),-3),4))"
  },
  {
    "input": "input : list = [0, -3, -5, 5]\noutput : list = [3, -2, -5, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([0, -3, -5, 5])),-2)",
    "io_inp": [
      0,
      -3,
      -5,
      5
    ],
    "io_out": [
      3,
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-4, 4, 2, 5]\noutput : list = [3, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(drop([-4, 4, 2, 5],2),2),21)),3)",
    "io_inp": [
      -4,
      4,
      2,
      5
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(drop(input,2),2),21)),3)"
  },
  {
    "input": "input : list = [-3, 5, -5, 4, 3, 0]\noutput : list = [-10, 30, -20, 25, 20, 5]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sub_n([-3, 5, -5, 4, 3, 0],1),-3),4),5),-5)",
    "io_inp": [
      -3,
      5,
      -5,
      4,
      3,
      0
    ],
    "io_out": [
      -10,
      30,
      -20,
      25,
      20,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sub_n(input,1),-3),4),5),-5)"
  },
  {
    "input": "input : list = [-1, -1, -3, 4]\noutput : list = [2, 4, 4, 9]",
    "output": "generated_output : list = add_n(sort_asc(add_n([-1, -1, -3, 4],4)),1)",
    "io_inp": [
      -1,
      -1,
      -3,
      4
    ],
    "io_out": [
      2,
      4,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,4)),1)"
  },
  {
    "input": "input : list = [3, 3, 4, -3, 5, -3]\noutput : list = [3, 3, 4]",
    "output": "generated_output : list = take(take(take(reverse(reverse([3, 3, 4, -3, 5, -3])),20),43),3)",
    "io_inp": [
      3,
      3,
      4,
      -3,
      5,
      -3
    ],
    "io_out": [
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(reverse(input)),20),43),3)"
  },
  {
    "input": "input : list = [-4, -3, -1, 5]\noutput : list = [20, -4, -12, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(reverse([-4, -3, -1, 5]),1)),4))",
    "io_inp": [
      -4,
      -3,
      -1,
      5
    ],
    "io_out": [
      20,
      -4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(reverse(input),1)),4))"
  },
  {
    "input": "input : list = [4, 4, -4, 1, 2, 5]\noutput : list = [-4, 1, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 4, -4, 1, 2, 5])",
    "io_inp": [
      4,
      4,
      -4,
      1,
      2,
      5
    ],
    "io_out": [
      -4,
      1,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, 2, 4, 2]\noutput : list = [4, -5, -2, -4, -2]",
    "output": "generated_output : list = mul_n([-4, 5, 2, 4, 2],-1)",
    "io_inp": [
      -4,
      5,
      2,
      4,
      2
    ],
    "io_out": [
      4,
      -5,
      -2,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 1, -5, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(take(drop([-5, 1, -5, 0, -4],3),18)),31))",
    "io_inp": [
      -5,
      1,
      -5,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(drop(input,3),18)),31))"
  },
  {
    "input": "input : list = [-5, 0, -1, 3, -2, -1]\noutput : list = [-2, 4, 6, 6, 8, 14]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(sub_n([-5, 0, -1, 3, -2, -1],-3),5),-4)),2)",
    "io_inp": [
      -5,
      0,
      -1,
      3,
      -2,
      -1
    ],
    "io_out": [
      -2,
      4,
      6,
      6,
      8,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(sub_n(input,-3),5),-4)),2)"
  },
  {
    "input": "input : list = [-1, -3, 0, 0, -1, 5]\noutput : list = [80, 0, 0, -16, -16, -48]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_asc([-1, -3, 0, 0, -1, 5])),-4)),-4)",
    "io_inp": [
      -1,
      -3,
      0,
      0,
      -1,
      5
    ],
    "io_out": [
      80,
      0,
      0,
      -16,
      -16,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_asc(input)),-4)),-4)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = add_n([-2, -1, -1],-1)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, -2, -2, 4]\noutput : list = [-2, -2, 4]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(drop([2, -2, -2, 4],1)),20)))",
    "io_inp": [
      2,
      -2,
      -2,
      4
    ],
    "io_out": [
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(drop(input,1)),20)))"
  },
  {
    "input": "input : list = [1, 3, 2]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sort_des(add_n([1, 3, 2],1))",
    "io_inp": [
      1,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse([4, 1]),1))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),1))"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([2, 1, -2]))",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 2, 2, -4, 1, -5]\noutput : list = [50, 50, 25, -75, -100, -125]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(mul_n([-3, 2, 2, -4, 1, -5],-5)))),-5)",
    "io_inp": [
      -3,
      2,
      2,
      -4,
      1,
      -5
    ],
    "io_out": [
      50,
      50,
      25,
      -75,
      -100,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(mul_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [-1, 3, 1, 0, 0]\noutput : list = [-3, 9, 3, 0, 0]",
    "output": "generated_output : list = mul_n([-1, 3, 1, 0, 0],3)",
    "io_inp": [
      -1,
      3,
      1,
      0,
      0
    ],
    "io_out": [
      -3,
      9,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, -4, -4, -1, 1, -1]\noutput : list = [-5, -4, -4]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(take([-5, -4, -4, -1, 1, -1],3),1),11)))",
    "io_inp": [
      -5,
      -4,
      -4,
      -1,
      1,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(take(input,3),1),11)))"
  },
  {
    "input": "input : list = [-3, -4, -4, 3, 1]\noutput : list = [-3, -4, -4]",
    "output": "generated_output : list = sort_des(take([-3, -4, -4, 3, 1],3))",
    "io_inp": [
      -3,
      -4,
      -4,
      3,
      1
    ],
    "io_out": [
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-4, 16]",
    "output": "generated_output : list = mul_n([-1, 4],4)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, 1, -3, -2]\noutput : list = [-2, 6, 4]",
    "output": "generated_output : list = mul_n(take(drop([4, 1, -3, -2],1),8),-2)",
    "io_inp": [
      4,
      1,
      -3,
      -2
    ],
    "io_out": [
      -2,
      6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(input,1),8),-2)"
  },
  {
    "input": "input : list = [-4, -2, -1, 3, 0, -2]\noutput : list = [-4, -2, -2, -1, 0, 3]",
    "output": "generated_output : list = sort_asc([-4, -2, -1, 3, 0, -2])",
    "io_inp": [
      -4,
      -2,
      -1,
      3,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -5, -4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(drop([1, -5, -4, 4],2)))))",
    "io_inp": [
      1,
      -5,
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [-5, 4, 5, -3]\noutput : list = [-18, -15, 6, 12]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([-5, 4, 5, -3],-3),3))",
    "io_inp": [
      -5,
      4,
      5,
      -3
    ],
    "io_out": [
      -18,
      -15,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,-3),3))"
  },
  {
    "input": "input : list = [-1, -2, -4, 1, 0, -2]\noutput : list = [-3, -1, 0]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(take([-1, -2, -4, 1, 0, -2],3)),-3),42),-4)",
    "io_inp": [
      -1,
      -2,
      -4,
      1,
      0,
      -2
    ],
    "io_out": [
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(take(input,3)),-3),42),-4)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des([2, 5])",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 3, 2, 2, 1]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(take([5, 3, 2, 2, 1],2),1))",
    "io_inp": [
      5,
      3,
      2,
      2,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,2),1))"
  },
  {
    "input": "input : list = [5, 1, -3, -3, 1, -5]\noutput : list = [-40, -24, -8, -8, -24, 0]",
    "output": "generated_output : list = mul_n(sub_n([5, 1, -3, -3, 1, -5],-5),-4)",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      1,
      -5
    ],
    "io_out": [
      -40,
      -24,
      -8,
      -8,
      -24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),-4)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n([-3, 1],-4)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, -4, -2, 1, 5, 0]\noutput : list = [-7, -7, -9, -11]",
    "output": "generated_output : list = drop(reverse(sub_n(sub_n(sort_asc([0, -4, -2, 1, 5, 0]),2),5)),2)",
    "io_inp": [
      0,
      -4,
      -2,
      1,
      5,
      0
    ],
    "io_out": [
      -7,
      -7,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = drop(reverse(sub_n(sub_n(sort_asc(input),2),5)),2)"
  },
  {
    "input": "input : list = [1, 0, -4, 5]\noutput : list = [-4, 0, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des([1, 0, -4, 5]))",
    "io_inp": [
      1,
      0,
      -4,
      5
    ],
    "io_out": [
      -4,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(sort_des([-5, 1]),11),2)))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(sort_des(input),11),2)))"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [-9, -3, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_des(add_n([5, 1, -5],-4)),17)))",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      -9,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_des(add_n(input,-4)),17)))"
  },
  {
    "input": "input : list = [-1, 1, -1, 0, 4]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take([-1, 1, -1, 0, 4],2)",
    "io_inp": [
      -1,
      1,
      -1,
      0,
      4
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [0]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(take([-3, 0, 2],1),3))),22)",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(take(input,1),3))),22)"
  },
  {
    "input": "input : list = [3, -5, -2, 5, 4, 3]\noutput : list = [5, 4, 3, -2, -5]",
    "output": "generated_output : list = mul_n(take(sort_des(drop([3, -5, -2, 5, 4, 3],1)),18),1)",
    "io_inp": [
      3,
      -5,
      -2,
      5,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(drop(input,1)),18),1)"
  },
  {
    "input": "input : list = [3, 3, 0]\noutput : list = [0, 3, 3]",
    "output": "generated_output : list = take(take(reverse(sort_des(reverse([3, 3, 0]))),17),27)",
    "io_inp": [
      3,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(reverse(input))),17),27)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des([0, -5])",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [-10, -10, 6]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_des([3, 3, -5]),1),2),3),-2)",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      -10,
      -10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_des(input),1),2),3),-2)"
  },
  {
    "input": "input : list = [4, 1, 3, 5]\noutput : list = [2, 0, -2, 1]",
    "output": "generated_output : list = add_n(reverse([4, 1, 3, 5]),-3)",
    "io_inp": [
      4,
      1,
      3,
      5
    ],
    "io_out": [
      2,
      0,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [1, 2, 3, -4, -3, 2]\noutput : list = [-7, -5, 3, 5, 5, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(reverse([1, 2, 3, -4, -3, 2]),2))),1)",
    "io_inp": [
      1,
      2,
      3,
      -4,
      -3,
      2
    ],
    "io_out": [
      -7,
      -5,
      3,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(reverse(input),2))),1)"
  },
  {
    "input": "input : list = [-4, -1, 4, 4]\noutput : list = [-16, -16, -6, 0]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(sub_n([-4, -1, 4, 4],-5),-2),-4)),2)",
    "io_inp": [
      -4,
      -1,
      4,
      4
    ],
    "io_out": [
      -16,
      -16,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(sub_n(input,-5),-2),-4)),2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(reverse([-1, 4]))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, 4, -5, 1, 2]\noutput : list = [24, 9, -6, -11, -21]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_asc([-2, 4, -5, 1, 2]),-5),15),1),20)",
    "io_inp": [
      -2,
      4,
      -5,
      1,
      2
    ],
    "io_out": [
      24,
      9,
      -6,
      -11,
      -21
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_asc(input),-5),15),1),20)"
  },
  {
    "input": "input : list = [-3, -2, 4, 4, -2]\noutput : list = [-12, -8, 16, 16, -8]",
    "output": "generated_output : list = mul_n([-3, -2, 4, 4, -2],4)",
    "io_inp": [
      -3,
      -2,
      4,
      4,
      -2
    ],
    "io_out": [
      -12,
      -8,
      16,
      16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-15, -15]",
    "output": "generated_output : list = take(sort_des(mul_n([5, 5],-3)),9)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,-3)),9)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse([3, 1])",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(add_n([0, 2],-3),10)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),10)"
  },
  {
    "input": "input : list = [4, 1, 2, -3, 5]\noutput : list = [5, 4, 2, 1, -3]",
    "output": "generated_output : list = sort_des([4, 1, 2, -3, 5])",
    "io_inp": [
      4,
      1,
      2,
      -3,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [7, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(drop([-4, 1, 3],1),3)),2),4)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(drop(input,1),3)),2),4)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n([-2, -3],1)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [9, 8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([3, 4]),-5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [-1, 5, 1, -1, -1]\noutput : list = [10, 10, 10, 6, -2]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(sub_n([-1, 5, 1, -1, -1],2)),-2)),-4)",
    "io_inp": [
      -1,
      5,
      1,
      -1,
      -1
    ],
    "io_out": [
      10,
      10,
      10,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(sub_n(input,2)),-2)),-4)"
  },
  {
    "input": "input : list = [2, -1, 5, 3, -2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(take([2, -1, 5, 3, -2],1)),4)),4)",
    "io_inp": [
      2,
      -1,
      5,
      3,
      -2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(take(input,1)),4)),4)"
  },
  {
    "input": "input : list = [2, -3, 2, 5, 4]\noutput : list = [8, -12, 8, 20, 16]",
    "output": "generated_output : list = take(mul_n([2, -3, 2, 5, 4],4),19)",
    "io_inp": [
      2,
      -3,
      2,
      5,
      4
    ],
    "io_out": [
      8,
      -12,
      8,
      20,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),19)"
  },
  {
    "input": "input : list = [-2, -1, -3, 1, -3]\noutput : list = [-2, -2, -3, -4, -6]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(mul_n([-2, -1, -3, 1, -3],-1)),5)))",
    "io_inp": [
      -2,
      -1,
      -3,
      1,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(mul_n(input,-1)),5)))"
  },
  {
    "input": "input : list = [-1, 5, -2, -4, 1]\noutput : list = [24, 8, -4, -12]",
    "output": "generated_output : list = sort_des(mul_n(reverse(drop(sub_n([-1, 5, -2, -4, 1],-1),1)),4))",
    "io_inp": [
      -1,
      5,
      -2,
      -4,
      1
    ],
    "io_out": [
      24,
      8,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(drop(sub_n(input,-1),1)),4))"
  },
  {
    "input": "input : list = [-1, -2, -4, 5, 5, 0]\noutput : list = [2, 2, -3, -4, -5, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n([-1, -2, -4, 5, 5, 0],3))))",
    "io_inp": [
      -1,
      -2,
      -4,
      5,
      5,
      0
    ],
    "io_out": [
      2,
      2,
      -3,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(input,3))))"
  },
  {
    "input": "input : list = [1, 0, -1, -1, -4]\noutput : list = [32, 20, 20, 16, 12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sub_n([1, 0, -1, -1, -4],4)),-4)))",
    "io_inp": [
      1,
      0,
      -1,
      -1,
      -4
    ],
    "io_out": [
      32,
      20,
      20,
      16,
      12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sub_n(input,4)),-4)))"
  },
  {
    "input": "input : list = [1, 2, -2, 1, 3, 5]\noutput : list = [3, 6, 6, 7, 8, 10]",
    "output": "generated_output : list = sub_n(reverse(take(take(sort_des([1, 2, -2, 1, 3, 5]),22),20)),-5)",
    "io_inp": [
      1,
      2,
      -2,
      1,
      3,
      5
    ],
    "io_out": [
      3,
      6,
      6,
      7,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(sort_des(input),22),20)),-5)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des([3, -2])",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3, -4]\noutput : list = [34, 6, 2]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(sub_n([4, 3, -4],4)),-4),32),2)",
    "io_inp": [
      4,
      3,
      -4
    ],
    "io_out": [
      34,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(sub_n(input,4)),-4),32),2)"
  },
  {
    "input": "input : list = [3, -5, 5, 0]\noutput : list = [-3, 2, -8, 0]",
    "output": "generated_output : list = sub_n(take(take(reverse([3, -5, 5, 0]),16),10),3)",
    "io_inp": [
      3,
      -5,
      5,
      0
    ],
    "io_out": [
      -3,
      2,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(input),16),10),3)"
  },
  {
    "input": "input : list = [-2, -5, -1, -2, 1, -1]\noutput : list = [11, 9, 9, 8, 8, 5]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des([-2, -5, -1, -2, 1, -1]),-5)),-5)",
    "io_inp": [
      -2,
      -5,
      -1,
      -2,
      1,
      -1
    ],
    "io_out": [
      11,
      9,
      9,
      8,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(input),-5)),-5)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-6, -2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(sort_des([-2, 2]),-4))))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(sort_des([2, -4]))),-2))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [5, -5, 5, -5, -1]\noutput : list = [16, 16, 4, -4, -4]",
    "output": "generated_output : list = mul_n(add_n(sort_des([5, -5, 5, -5, -1]),3),2)",
    "io_inp": [
      5,
      -5,
      5,
      -5,
      -1
    ],
    "io_out": [
      16,
      16,
      4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),3),2)"
  },
  {
    "input": "input : list = [5, -3, -1, 0, 0]\noutput : list = [1, -4, -4, -5, -7]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n([5, -3, -1, 0, 0],-4))))",
    "io_inp": [
      5,
      -3,
      -1,
      0,
      0
    ],
    "io_out": [
      1,
      -4,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(input,-4))))"
  },
  {
    "input": "input : list = [-1, 0, -5, 5, -5, -5]\noutput : list = [-5, -5, 5, -5, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, -5, 5, -5, -5])",
    "io_inp": [
      -1,
      0,
      -5,
      5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      5,
      -5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4, 3, 3, -3]\noutput : list = [2, 1, -4, -5, -5]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc([2, -4, 3, 3, -3]),13)),-2),-1)",
    "io_inp": [
      2,
      -4,
      3,
      3,
      -3
    ],
    "io_out": [
      2,
      1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc(input),13)),-2),-1)"
  },
  {
    "input": "input : list = [-4, 5, 2, 1, -4]\noutput : list = [8, -1]",
    "output": "generated_output : list = take(sub_n(reverse(take(take([-4, 5, 2, 1, -4],2),5)),-3),47)",
    "io_inp": [
      -4,
      5,
      2,
      1,
      -4
    ],
    "io_out": [
      8,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(take(input,2),5)),-3),47)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sub_n(sort_asc([1, 4]),5)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-1, -3, 2, -3, -5, 2]\noutput : list = [0, -14]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(drop([-1, -3, 2, -3, -5, 2],4),-2))),2)",
    "io_inp": [
      -1,
      -3,
      2,
      -3,
      -5,
      2
    ],
    "io_out": [
      0,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(drop(input,4),-2))),2)"
  },
  {
    "input": "input : list = [1, -2, 4, 3]\noutput : list = [4, 1, 7, 6]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(add_n([1, -2, 4, 3],5),-3),7),-2),-3)",
    "io_inp": [
      1,
      -2,
      4,
      3
    ],
    "io_out": [
      4,
      1,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(add_n(input,5),-3),7),-2),-3)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [11, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(sub_n([-4, 5],-3)))),-3)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      11,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(sub_n(input,-3)))),-3)"
  },
  {
    "input": "input : list = [-5, -2, -2, 4, -3, -3]\noutput : list = [4, -2, -2, -3, -3, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(take(reverse([-5, -2, -2, 4, -3, -3]),24))),22)",
    "io_inp": [
      -5,
      -2,
      -2,
      4,
      -3,
      -3
    ],
    "io_out": [
      4,
      -2,
      -2,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(reverse(input),24))),22)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(sub_n([1, 1],-5)))))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [-4, 0, -4, -3, -5]\noutput : list = [0, -4, -3, -5]",
    "output": "generated_output : list = drop([-4, 0, -4, -3, -5],1)",
    "io_inp": [
      -4,
      0,
      -4,
      -3,
      -5
    ],
    "io_out": [
      0,
      -4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [20, -25, 0]",
    "output": "generated_output : list = mul_n([4, -5, 0],5)",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      20,
      -25,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, 3, -1, 2]\noutput : list = [0, -2, -3, -6]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(sort_des([5, 3, -1, 2]),-4),1)))",
    "io_inp": [
      5,
      3,
      -1,
      2
    ],
    "io_out": [
      0,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(sort_des(input),-4),1)))"
  },
  {
    "input": "input : list = [-3, 2, 2, 1]\noutput : list = [9, 11]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n(drop([-3, 2, 2, 1],2),5),2)),3)",
    "io_inp": [
      -3,
      2,
      2,
      1
    ],
    "io_out": [
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(drop(input,2),5),2)),3)"
  },
  {
    "input": "input : list = [5, 0, 1, 3]\noutput : list = [7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(take([5, 0, 1, 3],1)),3),-5))",
    "io_inp": [
      5,
      0,
      1,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(take(input,1)),3),-5))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_des([-2, -4]),1)),-5),-1)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_des(input),1)),-5),-1)"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [-4, -2, 3]",
    "output": "generated_output : list = mul_n(take(take(sort_des(sort_des([2, -3, 4])),26),29),-1)",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      -4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(sort_des(input)),26),29),-1)"
  },
  {
    "input": "input : list = [-5, -1, -5, 1, 3]\noutput : list = [-1, -1, 3, 5, 7]",
    "output": "generated_output : list = take(sort_asc(add_n(take(reverse([-5, -1, -5, 1, 3]),16),4)),8)",
    "io_inp": [
      -5,
      -1,
      -5,
      1,
      3
    ],
    "io_out": [
      -1,
      -1,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(reverse(input),16),4)),8)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(reverse([-4, -5]))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, 3, 3, 5, 3]\noutput : list = [5, 3, 3, 5, 3]",
    "output": "generated_output : list = take(reverse(reverse([5, 3, 3, 5, 3])),19)",
    "io_inp": [
      5,
      3,
      3,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),19)"
  },
  {
    "input": "input : list = [0, 2, -4, 1, 0]\noutput : list = [45, 25, 25, 20, 15]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc([0, 2, -4, 1, 0]),24)),5),-5)",
    "io_inp": [
      0,
      2,
      -4,
      1,
      0
    ],
    "io_out": [
      45,
      25,
      25,
      20,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_asc(input),24)),5),-5)"
  },
  {
    "input": "input : list = [-3, -2, 4, 2, -5, 5]\noutput : list = [5, 4, 2, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -2, 4, 2, -5, 5])",
    "io_inp": [
      -3,
      -2,
      4,
      2,
      -5,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = mul_n(mul_n([2, 2],-1),3)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),3)"
  },
  {
    "input": "input : list = [-1, -3, 2, -5]\noutput : list = [7, 4, 2, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sub_n([-1, -3, 2, -5],-2))),-3))",
    "io_inp": [
      -1,
      -3,
      2,
      -5
    ],
    "io_out": [
      7,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(sub_n(input,-2))),-3))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-6, -4]",
    "output": "generated_output : list = mul_n([-3, -2],2)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, 0, -1, -1, -1]\noutput : list = [-14, -15]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(take([-1, 0, -1, -1, -1],2),5),-4),5))",
    "io_inp": [
      -1,
      0,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -14,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(take(input,2),5),-4),5))"
  },
  {
    "input": "input : list = [4, 0, -5, 4]\noutput : list = [-6, -6, 2, 12]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(sort_des([4, 0, -5, 4]),-1)),-2))",
    "io_inp": [
      4,
      0,
      -5,
      4
    ],
    "io_out": [
      -6,
      -6,
      2,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(sort_des(input),-1)),-2))"
  },
  {
    "input": "input : list = [4, -4, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = drop([4, -4, 0, 3],2)",
    "io_inp": [
      4,
      -4,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -4, -3, 2, 0, 5]\noutput : list = [-3, -5, -6, -8, -11, -12]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(sort_asc([3, -4, -3, 2, 0, 5]),21)),-5),3)",
    "io_inp": [
      3,
      -4,
      -3,
      2,
      0,
      5
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -8,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(sort_asc(input),21)),-5),3)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [0, -10, -30]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-5, -1, 1]),1),5)",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      0,
      -10,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),1),5)"
  },
  {
    "input": "input : list = [-2, 3, 0, 5, 4, 2]\noutput : list = [36, 16]",
    "output": "generated_output : list = mul_n(sub_n(take(drop(mul_n([-2, 3, 0, 5, 4, 2],5),4),5),2),2)",
    "io_inp": [
      -2,
      3,
      0,
      5,
      4,
      2
    ],
    "io_out": [
      36,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(drop(mul_n(input,5),4),5),2),2)"
  },
  {
    "input": "input : list = [4, 0, -5, 2]\noutput : list = [-27, -12, -6, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(add_n([4, 0, -5, 2],-2),3)),3),3)",
    "io_inp": [
      4,
      0,
      -5,
      2
    ],
    "io_out": [
      -27,
      -12,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(add_n(input,-2),3)),3),3)"
  },
  {
    "input": "input : list = [-3, 2, 0, 1]\noutput : list = [-3, 2, 0, 1]",
    "output": "generated_output : list = reverse(reverse([-3, 2, 0, 1]))",
    "io_inp": [
      -3,
      2,
      0,
      1
    ],
    "io_out": [
      -3,
      2,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, -5, -3]\noutput : list = [-36, -28, -12]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(sort_asc([1, -5, -3]),5),4),-4))",
    "io_inp": [
      1,
      -5,
      -3
    ],
    "io_out": [
      -36,
      -28,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(sort_asc(input),5),4),-4))"
  },
  {
    "input": "input : list = [3, 4, -4, 3, -3]\noutput : list = [-3, 3, -4, 4, 3]",
    "output": "generated_output : list = reverse([3, 4, -4, 3, -3])",
    "io_inp": [
      3,
      4,
      -4,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      -4,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, 4, 0]\noutput : list = [-6, -1]",
    "output": "generated_output : list = sub_n(take(add_n([0, 5, 4, 0],-4),2),2)",
    "io_inp": [
      0,
      5,
      4,
      0
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,-4),2),2)"
  },
  {
    "input": "input : list = [2, -4, -5, 1, -2, 0]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(take([2, -4, -5, 1, -2, 0],2)),2),1))",
    "io_inp": [
      2,
      -4,
      -5,
      1,
      -2,
      0
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(take(input,2)),2),1))"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(take([1, 2, 3],1),4),5)))",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(take(input,1),4),5)))"
  },
  {
    "input": "input : list = [-5, -1, -4, 4, 3, -4]\noutput : list = [-4, -4, 3, 4]",
    "output": "generated_output : list = sort_asc(drop([-5, -1, -4, 4, 3, -4],2))",
    "io_inp": [
      -5,
      -1,
      -4,
      4,
      3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc([4, 0])",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, 5]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(reverse(take(take(take([-5, -3, 5],1),13),18)),1)",
    "io_inp": [
      -5,
      -3,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(take(input,1),13),18)),1)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [4, -2]",
    "output": "generated_output : list = sub_n(sort_des([2, -4]),-2)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-6, 10]",
    "output": "generated_output : list = mul_n([-3, 5],2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [3, 0, 4]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = sort_des(sort_des([3, 0, 4]))",
    "io_inp": [
      3,
      0,
      4
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [2, -5]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse([4, -3])),19),2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(input)),19),2)"
  },
  {
    "input": "input : list = [-2, 5, -2, -3]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = sort_asc(drop([-2, 5, -2, -3],1))",
    "io_inp": [
      -2,
      5,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-4, -1, 3, -4, 2, -1]\noutput : list = [4, 7, 1, 8, 4, 1]",
    "output": "generated_output : list = sub_n(reverse([-4, -1, 3, -4, 2, -1]),-5)",
    "io_inp": [
      -4,
      -1,
      3,
      -4,
      2,
      -1
    ],
    "io_out": [
      4,
      7,
      1,
      8,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [3, 4, -1, -2, 4]\noutput : list = [6, 8]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(take([3, 4, -1, -2, 4],2)))),2)",
    "io_inp": [
      3,
      4,
      -1,
      -2,
      4
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(take(input,2)))),2)"
  },
  {
    "input": "input : list = [5, 3, -2, -2, -3, 5]\noutput : list = [15, 9, -6, -6, -9, 15]",
    "output": "generated_output : list = mul_n([5, 3, -2, -2, -3, 5],3)",
    "io_inp": [
      5,
      3,
      -2,
      -2,
      -3,
      5
    ],
    "io_out": [
      15,
      9,
      -6,
      -6,
      -9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, -5, -4]\noutput : list = [6, 7, 11]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(sub_n([0, -5, -4],-1)),5)),-5)",
    "io_inp": [
      0,
      -5,
      -4
    ],
    "io_out": [
      6,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(sub_n(input,-1)),5)),-5)"
  },
  {
    "input": "input : list = [0, 0, 3]\noutput : list = [5, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(drop([0, 0, 3],1),-4))),5)",
    "io_inp": [
      0,
      0,
      3
    ],
    "io_out": [
      5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(drop(input,1),-4))),5)"
  },
  {
    "input": "input : list = [-4, 1, -3, -5, 5, -4]\noutput : list = [-28, -12, 4, 8, 8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([-4, 1, -3, -5, 5, -4],-2),-4))",
    "io_inp": [
      -4,
      1,
      -3,
      -5,
      5,
      -4
    ],
    "io_out": [
      -28,
      -12,
      4,
      8,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,-2),-4))"
  },
  {
    "input": "input : list = [-5, -1, -2, -4]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = sort_des(drop([-5, -1, -2, -4],1))",
    "io_inp": [
      -5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, -1, 0, -2]\noutput : list = [17, 11, 8, 5]",
    "output": "generated_output : list = take(sort_des(add_n(take(mul_n([-4, -1, 0, -2],-3),17),5)),34)",
    "io_inp": [
      -4,
      -1,
      0,
      -2
    ],
    "io_out": [
      17,
      11,
      8,
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(mul_n(input,-3),17),5)),34)"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [2, -38, -38]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(sort_des([2, 0, 2]),-5),4),2))",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      2,
      -38,
      -38
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(sort_des(input),-5),4),2))"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [-8, -8, -20]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sub_n([2, 2, 5],-5),5),-4),1))",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      -8,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sub_n(input,-5),5),-4),1))"
  },
  {
    "input": "input : list = [1, -3, 3, -1, 5]\noutput : list = [6, -6, 2, -10, -2]",
    "output": "generated_output : list = take(sub_n(reverse(take(mul_n([1, -3, 3, -1, 5],2),12)),4),22)",
    "io_inp": [
      1,
      -3,
      3,
      -1,
      5
    ],
    "io_out": [
      6,
      -6,
      2,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(mul_n(input,2),12)),4),22)"
  },
  {
    "input": "input : list = [0, -3, -3, -1]\noutput : list = [7, 6, 4, 4]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n([0, -3, -3, -1],-5)),2))",
    "io_inp": [
      0,
      -3,
      -3,
      -1
    ],
    "io_out": [
      7,
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(input,-5)),2))"
  },
  {
    "input": "input : list = [3, -4, -2, -4, -1, 0]\noutput : list = [135, -180, -90, -180, -45, 0]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(reverse([3, -4, -2, -4, -1, 0]),3),5),3))",
    "io_inp": [
      3,
      -4,
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      135,
      -180,
      -90,
      -180,
      -45,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(reverse(input),3),5),3))"
  },
  {
    "input": "input : list = [-5, -4, 5, -5]\noutput : list = [5, -4, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(reverse([-5, -4, 5, -5])))))",
    "io_inp": [
      -5,
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, -2, -3, 2, -5]\noutput : list = [4, -4, -4, -6, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(mul_n([-2, -2, -3, 2, -5],-2)),-1)))",
    "io_inp": [
      -2,
      -2,
      -3,
      2,
      -5
    ],
    "io_out": [
      4,
      -4,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(mul_n(input,-2)),-1)))"
  },
  {
    "input": "input : list = [-1, -5, 2, -3, 3]\noutput : list = [12, 8, -4, -12, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([-1, -5, 2, -3, 3])),4)",
    "io_inp": [
      -1,
      -5,
      2,
      -3,
      3
    ],
    "io_out": [
      12,
      8,
      -4,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-3, -3, -2, 5]\noutput : list = [-65, -30, -25, -25]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(add_n([-3, -3, -2, 5],5),-5),2)),-5)",
    "io_inp": [
      -3,
      -3,
      -2,
      5
    ],
    "io_out": [
      -65,
      -30,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(add_n(input,5),-5),2)),-5)"
  },
  {
    "input": "input : list = [3, -5, -3, 0]\noutput : list = [3, 0, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse([3, -5, -3, 0]))))",
    "io_inp": [
      3,
      -5,
      -3,
      0
    ],
    "io_out": [
      3,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(take(sort_asc(sort_asc(sort_asc([5, -3]))),23),22)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_asc(sort_asc(input))),23),22)"
  },
  {
    "input": "input : list = [-3, 2, -4, -5]\noutput : list = [4, -8, -10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(drop([-3, 2, -4, -5],1)),2)))",
    "io_inp": [
      -3,
      2,
      -4,
      -5
    ],
    "io_out": [
      4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(drop(input,1)),2)))"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = drop([5, -3, 5],1)",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 0, 2, 3, -3]\noutput : list = [11, 11, 10, 8, 5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(sub_n([3, 0, 2, 3, -3],-5))),-3))",
    "io_inp": [
      3,
      0,
      2,
      3,
      -3
    ],
    "io_out": [
      11,
      11,
      10,
      8,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(sub_n(input,-5))),-3))"
  },
  {
    "input": "input : list = [0, 4, 1, 1, 3, -4]\noutput : list = [-16, -8, -6, -6, -2, 0]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc([0, 4, 1, 1, 3, -4]),13),4),2)",
    "io_inp": [
      0,
      4,
      1,
      1,
      3,
      -4
    ],
    "io_out": [
      -16,
      -8,
      -6,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(input),13),4),2)"
  },
  {
    "input": "input : list = [1, -3, 3]\noutput : list = [1]",
    "output": "generated_output : list = take(take([1, -3, 3],1),15)",
    "io_inp": [
      1,
      -3,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(input,1),15)"
  },
  {
    "input": "input : list = [4, -3, -4, 3]\noutput : list = [11, 4, 5, 12]",
    "output": "generated_output : list = add_n(add_n(reverse([4, -3, -4, 3]),3),5)",
    "io_inp": [
      4,
      -3,
      -4,
      3
    ],
    "io_out": [
      11,
      4,
      5,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),3),5)"
  },
  {
    "input": "input : list = [-1, -3, 0]\noutput : list = [0, -3, -1]",
    "output": "generated_output : list = reverse([-1, -3, 0])",
    "io_inp": [
      -1,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-9, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([2, -5],4)))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,4)))"
  },
  {
    "input": "input : list = [0, -4, 5, 0, 4]\noutput : list = [5, 4, 0, 0, -4]",
    "output": "generated_output : list = reverse(reverse(take(take(sort_des([0, -4, 5, 0, 4]),21),13)))",
    "io_inp": [
      0,
      -4,
      5,
      0,
      4
    ],
    "io_out": [
      5,
      4,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(sort_des(input),21),13)))"
  },
  {
    "input": "input : list = [-5, 3, -1, -5]\noutput : list = [1, 5]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(mul_n([-5, 3, -1, -5],-1))),4),2)",
    "io_inp": [
      -5,
      3,
      -1,
      -5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(mul_n(input,-1))),4),2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(sub_n([4, -5],-1),-4))),-5)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(sub_n(input,-1),-4))),-5)"
  },
  {
    "input": "input : list = [0, -1, -5, 2, 5, 1]\noutput : list = [5, 2, 1, 0, -1, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(sort_des([0, -1, -5, 2, 5, 1]))),6))",
    "io_inp": [
      0,
      -1,
      -5,
      2,
      5,
      1
    ],
    "io_out": [
      5,
      2,
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(sort_des(input))),6))"
  },
  {
    "input": "input : list = [5, -5, 0, -4, -5, 5]\noutput : list = [-11, -6, -1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(sub_n([5, -5, 0, -4, -5, 5],4),3)),-2))",
    "io_inp": [
      5,
      -5,
      0,
      -4,
      -5,
      5
    ],
    "io_out": [
      -11,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(sub_n(input,4),3)),-2))"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [-2, -9]",
    "output": "generated_output : list = drop(take(reverse(add_n(reverse([4, 2, -5]),-4)),17),1)",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = drop(take(reverse(add_n(reverse(input),-4)),17),1)"
  },
  {
    "input": "input : list = [-3, 0, 1, -3]\noutput : list = [-5, -2, -1, -5]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse([-3, 0, 1, -3]),-4),2))",
    "io_inp": [
      -3,
      0,
      1,
      -3
    ],
    "io_out": [
      -5,
      -2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(input),-4),2))"
  },
  {
    "input": "input : list = [3, -2, -4, 0, 0]\noutput : list = [-3, -1, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(take([3, -2, -4, 0, 0],3),-1))))",
    "io_inp": [
      3,
      -2,
      -4,
      0,
      0
    ],
    "io_out": [
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(take(input,3),-1))))"
  },
  {
    "input": "input : list = [4, 4, 1, 0, -5]\noutput : list = [1, 0, -5]",
    "output": "generated_output : list = drop([4, 4, 1, 0, -5],2)",
    "io_inp": [
      4,
      4,
      1,
      0,
      -5
    ],
    "io_out": [
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 1, 3, 0, 3]\noutput : list = [3, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(take([0, 1, 3, 0, 3],3)))))",
    "io_inp": [
      0,
      1,
      3,
      0,
      3
    ],
    "io_out": [
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(take(input,3)))))"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [30, 15, 15]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(reverse([-1, -4, -1]),5),-3),-5))",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      30,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(reverse(input),5),-3),-5))"
  },
  {
    "input": "input : list = [3, -5, -5, 4, -1, -2]\noutput : list = [30, 27, 12, 39, 39, 15]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(reverse([3, -5, -5, 4, -1, -2]),-5),-3),-3),19)",
    "io_inp": [
      3,
      -5,
      -5,
      4,
      -1,
      -2
    ],
    "io_out": [
      30,
      27,
      12,
      39,
      39,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(reverse(input),-5),-3),-3),19)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [4, -24]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(mul_n([2, -5],4),4)),4))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      4,
      -24
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(mul_n(input,4),4)),4))"
  },
  {
    "input": "input : list = [3, -3, 5, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(reverse(take([3, -3, 5, 0],1)))",
    "io_inp": [
      3,
      -3,
      5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [5, -1, -1, -3, 4]\noutput : list = [8, 1, 3, 3, 9]",
    "output": "generated_output : list = reverse(sub_n([5, -1, -1, -3, 4],-4))",
    "io_inp": [
      5,
      -1,
      -1,
      -3,
      4
    ],
    "io_out": [
      8,
      1,
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-2, -4, 3, 0]\noutput : list = [-10, -8]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(take([-2, -4, 3, 0],2),1),-2),3))",
    "io_inp": [
      -2,
      -4,
      3,
      0
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(take(input,2),1),-2),3))"
  },
  {
    "input": "input : list = [-2, 3, -4, -5, -1]\noutput : list = [3, -1, -2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des([-2, 3, -4, -5, -1]))",
    "io_inp": [
      -2,
      3,
      -4,
      -5,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, -2, -3, -1, -3]\noutput : list = [12, 5, 4, 6, 4]",
    "output": "generated_output : list = sub_n(sub_n([5, -2, -3, -1, -3],-2),-5)",
    "io_inp": [
      5,
      -2,
      -3,
      -1,
      -3
    ],
    "io_out": [
      12,
      5,
      4,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-5)"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [0, 0, 12]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(mul_n([0, 0, -3],-4)),1),17),35)",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      0,
      12
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(mul_n(input,-4)),1),17),35)"
  },
  {
    "input": "input : list = [-3, 5, 3, 2, 5]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = sort_asc(drop([-3, 5, 3, 2, 5],2))",
    "io_inp": [
      -3,
      5,
      3,
      2,
      5
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-1, 5, 0, 1, 1, 3]\noutput : list = [10, 6, 5, 4]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n([-1, 5, 0, 1, 1, 3],1),4),5))",
    "io_inp": [
      -1,
      5,
      0,
      1,
      1,
      3
    ],
    "io_out": [
      10,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(input,1),4),5))"
  },
  {
    "input": "input : list = [3, -2, -2, -3]\noutput : list = [0, -5, -5, -6]",
    "output": "generated_output : list = add_n([3, -2, -2, -3],-3)",
    "io_inp": [
      3,
      -2,
      -2,
      -3
    ],
    "io_out": [
      0,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, -3, -4]\noutput : list = [0, -6, -7]",
    "output": "generated_output : list = sub_n(add_n(sort_des([3, -3, -4]),1),4)",
    "io_inp": [
      3,
      -3,
      -4
    ],
    "io_out": [
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),1),4)"
  },
  {
    "input": "input : list = [0, -4, 0]\noutput : list = [-18, -6, -18]",
    "output": "generated_output : list = mul_n(add_n(add_n(reverse([0, -4, 0]),3),3),-3)",
    "io_inp": [
      0,
      -4,
      0
    ],
    "io_out": [
      -18,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(reverse(input),3),3),-3)"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [-17, -9, 23]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([-3, 5, -5],4)),3)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      -17,
      -9,
      23
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,4)),3)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-14, -26]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(sub_n([0, -4],4),3),5),17),-3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -14,
      -26
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(sub_n(input,4),3),5),17),-3)"
  },
  {
    "input": "input : list = [4, 4, -3, -2]\noutput : list = [12]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(take([4, 4, -3, -2],1)),20),3))",
    "io_inp": [
      4,
      4,
      -3,
      -2
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(take(input,1)),20),3))"
  },
  {
    "input": "input : list = [5, -2, -1, 1]\noutput : list = [-11, -10, -8, -4]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(add_n([5, -2, -1, 1],-4),16),5)),19)",
    "io_inp": [
      5,
      -2,
      -1,
      1
    ],
    "io_out": [
      -11,
      -10,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(add_n(input,-4),16),5)),19)"
  },
  {
    "input": "input : list = [-3, 2, 4, -1, 0, 5]\noutput : list = [8, 12, 2, 4, 14]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(drop([-3, 2, 4, -1, 0, 5],1),7),-1),2),2)",
    "io_inp": [
      -3,
      2,
      4,
      -1,
      0,
      5
    ],
    "io_out": [
      8,
      12,
      2,
      4,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(drop(input,1),7),-1),2),2)"
  },
  {
    "input": "input : list = [1, 2, -5, -4, -2, -5]\noutput : list = [-5, -5, -4, -2, 1, 2]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc([1, 2, -5, -4, -2, -5]),4),4),22)",
    "io_inp": [
      1,
      2,
      -5,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(input),4),4),22)"
  },
  {
    "input": "input : list = [0, -4, -5]\noutput : list = [-5, -4, 0]",
    "output": "generated_output : list = sort_asc([0, -4, -5])",
    "io_inp": [
      0,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(take([3, 5, -2],1),-5)),6))",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(take(input,1),-5)),6))"
  },
  {
    "input": "input : list = [5, 4, -4, -1, 4]\noutput : list = [0, 3, 8, 8, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([5, 4, -4, -1, 4])),-4)",
    "io_inp": [
      5,
      4,
      -4,
      -1,
      4
    ],
    "io_out": [
      0,
      3,
      8,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [-2, 5, 4, -4]\noutput : list = [-5, -3, 3, 4]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des([-2, 5, 4, -4])),1),36)",
    "io_inp": [
      -2,
      5,
      4,
      -4
    ],
    "io_out": [
      -5,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(input)),1),36)"
  },
  {
    "input": "input : list = [-4, -4, 2, 0]\noutput : list = [-14, -14, -6, -2]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(sort_asc([-4, -4, 2, 0]),-1),3),1),-2)",
    "io_inp": [
      -4,
      -4,
      2,
      0
    ],
    "io_out": [
      -14,
      -14,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(sort_asc(input),-1),3),1),-2)"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [-5, -2, 2]",
    "output": "generated_output : list = sort_asc([-5, -2, 2])",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(sort_des([0, -5])),-2)),-1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(sort_des(input)),-2)),-1)"
  },
  {
    "input": "input : list = [-5, -2, 5]\noutput : list = [-15, 6, 15]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(reverse([-5, -2, 5]))),-3),24)",
    "io_inp": [
      -5,
      -2,
      5
    ],
    "io_out": [
      -15,
      6,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(reverse(input))),-3),24)"
  },
  {
    "input": "input : list = [0, -5, 0, 2, -1]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, -5, 0, 2, -1],1),-4)",
    "io_inp": [
      0,
      -5,
      0,
      2,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-4, 4, -1, -5, 3]\noutput : list = [-525, 75, -300, -600, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(add_n([-4, 4, -1, -5, 3],-1),-2),5),-3),-5)",
    "io_inp": [
      -4,
      4,
      -1,
      -5,
      3
    ],
    "io_out": [
      -525,
      75,
      -300,
      -600,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(add_n(input,-1),-2),5),-3),-5)"
  },
  {
    "input": "input : list = [0, -5, 5, -5, -2, 2]\noutput : list = [-6, -6, -3, -1, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc([0, -5, 5, -5, -2, 2]),1)",
    "io_inp": [
      0,
      -5,
      5,
      -5,
      -2,
      2
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [4, 0, 2, 1, -1]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(take([4, 0, 2, 1, -1],3)),-1)))",
    "io_inp": [
      4,
      0,
      2,
      1,
      -1
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(take(input,3)),-1)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [25, 20]",
    "output": "generated_output : list = mul_n([-5, -4],-5)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -2, -3, -2]\noutput : list = [-3, -2, -3, -2]",
    "output": "generated_output : list = reverse(reverse([-3, -2, -3, -2]))",
    "io_inp": [
      -3,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, 4, -3, -3, 2, 2]\noutput : list = [-15, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(take([5, 4, -3, -3, 2, 2],3)),5),1))",
    "io_inp": [
      5,
      4,
      -3,
      -3,
      2,
      2
    ],
    "io_out": [
      -15,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(take(input,3)),5),1))"
  },
  {
    "input": "input : list = [1, -3, -2, 2]\noutput : list = [3, 2, -1, -2]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sub_n([1, -3, -2, 2],2)),-3)),27)",
    "io_inp": [
      1,
      -3,
      -2,
      2
    ],
    "io_out": [
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sub_n(input,2)),-3)),27)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [11, 3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n([5, -3],-4),-2)))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      11,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(input,-4),-2)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([1, -1]),1))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),1))"
  },
  {
    "input": "input : list = [-2, 4, -4, -1]\noutput : list = [-1, -4, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, -4, -1])",
    "io_inp": [
      -2,
      4,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 0, 4]\noutput : list = [4, 0, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 0, 4])",
    "io_inp": [
      2,
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, -2, -2, 0, 5]\noutput : list = [-2, 0, -5, -5, -3, 2]",
    "output": "generated_output : list = add_n(reverse(reverse([1, 3, -2, -2, 0, 5])),-3)",
    "io_inp": [
      1,
      3,
      -2,
      -2,
      0,
      5
    ],
    "io_out": [
      -2,
      0,
      -5,
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-5, -2, 3, -5]\noutput : list = [3, -2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -2, 3, -5])",
    "io_inp": [
      -5,
      -2,
      3,
      -5
    ],
    "io_out": [
      3,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 2, -1, 3, 5]\noutput : list = [5, 3, 2, -1, -4]",
    "output": "generated_output : list = sort_des([-4, 2, -1, 3, 5])",
    "io_inp": [
      -4,
      2,
      -1,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(drop([0, 4, 0],1),1)),1))",
    "io_inp": [
      0,
      4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(drop(input,1),1)),1))"
  },
  {
    "input": "input : list = [5, 4, 4, 2]\noutput : list = [2, 4, 4, 5]",
    "output": "generated_output : list = reverse([5, 4, 4, 2])",
    "io_inp": [
      5,
      4,
      4,
      2
    ],
    "io_out": [
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(sort_des([3, 0]),2)),1),25)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(sort_des(input),2)),1),25)"
  },
  {
    "input": "input : list = [4, 4, 3, 1, 5]\noutput : list = [7, 3, 5, 6, 6]",
    "output": "generated_output : list = add_n(reverse([4, 4, 3, 1, 5]),2)",
    "io_inp": [
      4,
      4,
      3,
      1,
      5
    ],
    "io_out": [
      7,
      3,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [1, -2, 4, -2, 4]\noutput : list = [4, 4, 1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n([1, -2, 4, -2, 4],1))))",
    "io_inp": [
      1,
      -2,
      4,
      -2,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(input,1))))"
  },
  {
    "input": "input : list = [4, 5, 0, 3, -3]\noutput : list = [-1, 2, 5, 6, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n(reverse([4, 5, 0, 3, -3]),4))),-2)",
    "io_inp": [
      4,
      5,
      0,
      3,
      -3
    ],
    "io_out": [
      -1,
      2,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(reverse(input),4))),-2)"
  },
  {
    "input": "input : list = [-2, 3, -2, 3, 1, -1]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(take([-2, 3, -2, 3, 1, -1],1),5))),5)",
    "io_inp": [
      -2,
      3,
      -2,
      3,
      1,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(take(input,1),5))),5)"
  },
  {
    "input": "input : list = [-5, 5, -2, -4, -5, 4]\noutput : list = [-4, -1, 6]",
    "output": "generated_output : list = reverse(sort_des(add_n(take([-5, 5, -2, -4, -5, 4],3),1)))",
    "io_inp": [
      -5,
      5,
      -2,
      -4,
      -5,
      4
    ],
    "io_out": [
      -4,
      -1,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(input,3),1)))"
  },
  {
    "input": "input : list = [-3, 5, 0, 1, -4]\noutput : list = [-3, 1, 2, 6]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(drop([-3, 5, 0, 1, -4],1),2),1),-2))",
    "io_inp": [
      -3,
      5,
      0,
      1,
      -4
    ],
    "io_out": [
      -3,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(drop(input,1),2),1),-2))"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [0, 3, 7]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(sort_asc([0, -3, 4]),8),2),4),3)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      0,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(sort_asc(input),8),2),4),3)"
  },
  {
    "input": "input : list = [-5, 5, 5, -2, -5]\noutput : list = [-5, -5, -2, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([-5, 5, 5, -2, -5]))",
    "io_inp": [
      -5,
      5,
      5,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-20, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(mul_n([5, -1],-4)))),26)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -20,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(mul_n(input,-4)))),26)"
  },
  {
    "input": "input : list = [-4, 1, 0, 3, 5]\noutput : list = [11, 5, -1, -4, -16]",
    "output": "generated_output : list = take(sort_des(add_n(take(mul_n([-4, 1, 0, 3, 5],3),19),-4)),43)",
    "io_inp": [
      -4,
      1,
      0,
      3,
      5
    ],
    "io_out": [
      11,
      5,
      -1,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(mul_n(input,3),19),-4)),43)"
  },
  {
    "input": "input : list = [-5, -1, -2]\noutput : list = [-64, -32, -160]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(mul_n([-5, -1, -2],-4),3),4),-2))",
    "io_inp": [
      -5,
      -1,
      -2
    ],
    "io_out": [
      -64,
      -32,
      -160
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(mul_n(input,-4),3),4),-2))"
  },
  {
    "input": "input : list = [3, -3, -4, -2]\noutput : list = [15, 33, 24, -30]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n(reverse([3, -3, -4, -2]),3),-1),4),-3)",
    "io_inp": [
      3,
      -3,
      -4,
      -2
    ],
    "io_out": [
      15,
      33,
      24,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(reverse(input),3),-1),4),-3)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [-2, -7, -10]",
    "output": "generated_output : list = sub_n([3, -2, -5],5)",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, -3, 1, 1]\noutput : list = [9, 7, 7, 3]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(sort_asc([3, -3, 1, 1])),1),5),18)",
    "io_inp": [
      3,
      -3,
      1,
      1
    ],
    "io_out": [
      9,
      7,
      7,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(sort_asc(input)),1),5),18)"
  },
  {
    "input": "input : list = [2, 0, -2, 1, 0, -3]\noutput : list = [-7, -8, -9, -9, -11]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(sort_des([2, 0, -2, 1, 0, -3]),1),-5),-4),5)",
    "io_inp": [
      2,
      0,
      -2,
      1,
      0,
      -3
    ],
    "io_out": [
      -7,
      -8,
      -9,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(sort_des(input),1),-5),-4),5)"
  },
  {
    "input": "input : list = [-5, -3, 3, -4, -2]\noutput : list = [2, -3, -4]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(sort_asc([-5, -3, 3, -4, -2]),3)),4),3)",
    "io_inp": [
      -5,
      -3,
      3,
      -4,
      -2
    ],
    "io_out": [
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(sort_asc(input),3)),4),3)"
  },
  {
    "input": "input : list = [0, 1, 2, 4]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(reverse(take([0, 1, 2, 4],1)),3)",
    "io_inp": [
      0,
      1,
      2,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,1)),3)"
  },
  {
    "input": "input : list = [-1, 1, -4, 0, -4, 1]\noutput : list = [-6, -6, -2, 2, 14, 14]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(sort_asc([-1, 1, -4, 0, -4, 1])),-4),-3),1)",
    "io_inp": [
      -1,
      1,
      -4,
      0,
      -4,
      1
    ],
    "io_out": [
      -6,
      -6,
      -2,
      2,
      14,
      14
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(sort_asc(input)),-4),-3),1)"
  },
  {
    "input": "input : list = [-3, 1, -2, 0, 4]\noutput : list = [-2, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(drop([-3, 1, -2, 0, 4],1)))))",
    "io_inp": [
      -3,
      1,
      -2,
      0,
      4
    ],
    "io_out": [
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [10, -15]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(mul_n([2, -3],-5)),5),15))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(mul_n(input,-5)),5),15))"
  },
  {
    "input": "input : list = [2, -2, -5, -5]\noutput : list = [22, 22, 7, -13]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(mul_n([2, -2, -5, -5],-5)),3),30))",
    "io_inp": [
      2,
      -2,
      -5,
      -5
    ],
    "io_out": [
      22,
      22,
      7,
      -13
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(mul_n(input,-5)),3),30))"
  },
  {
    "input": "input : list = [4, 4, -2, -2, -3, -4]\noutput : list = [-4, -3, -2, -2, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sub_n([4, 4, -2, -2, -3, -4],-5)))),5)",
    "io_inp": [
      4,
      4,
      -2,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_des(sub_n(input,-5)))),5)"
  },
  {
    "input": "input : list = [4, -3, -3, -4, 4]\noutput : list = [-4, -3, -3, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(sort_asc([4, -3, -3, -4, 4])))))",
    "io_inp": [
      4,
      -3,
      -3,
      -4,
      4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, -3, -5, -1, 3, 1]\noutput : list = [19, 15, 23, 7, -9, -1]",
    "output": "generated_output : list = add_n(add_n(mul_n([-4, -3, -5, -1, 3, 1],-4),1),2)",
    "io_inp": [
      -4,
      -3,
      -5,
      -1,
      3,
      1
    ],
    "io_out": [
      19,
      15,
      23,
      7,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,-4),1),2)"
  },
  {
    "input": "input : list = [-2, 2, 3, 5, 1, -3]\noutput : list = [0, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(take([-2, 2, 3, 5, 1, -3],2)))),2)",
    "io_inp": [
      -2,
      2,
      3,
      5,
      1,
      -3
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(take(input,2)))),2)"
  },
  {
    "input": "input : list = [5, 3, -2, 3, -1, 5]\noutput : list = [7, 1, 5, 0, 5, 7]",
    "output": "generated_output : list = sub_n(reverse([5, 3, -2, 3, -1, 5]),-2)",
    "io_inp": [
      5,
      3,
      -2,
      3,
      -1,
      5
    ],
    "io_out": [
      7,
      1,
      5,
      0,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-1, -1, 2, -4]\noutput : list = [-9, 9]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(drop([-1, -1, 2, -4],2),1),3),26))",
    "io_inp": [
      -1,
      -1,
      2,
      -4
    ],
    "io_out": [
      -9,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(drop(input,2),1),3),26))"
  },
  {
    "input": "input : list = [-2, -5, 2, 2]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(take([-2, -5, 2, 2],1)),10)),4)",
    "io_inp": [
      -2,
      -5,
      2,
      2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(take(input,1)),10)),4)"
  },
  {
    "input": "input : list = [-2, -4, -2, -3]\noutput : list = [6, 4, 8, 4]",
    "output": "generated_output : list = reverse(mul_n([-2, -4, -2, -3],-2))",
    "io_inp": [
      -2,
      -4,
      -2,
      -3
    ],
    "io_out": [
      6,
      4,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 4, 4, -1, 1, 1]\noutput : list = [-5, 1, 1, -4, -2, -2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n([-2, 4, 4, -1, 1, 1],4)),2)),-3)",
    "io_inp": [
      -2,
      4,
      4,
      -1,
      1,
      1
    ],
    "io_out": [
      -5,
      1,
      1,
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n(input,4)),2)),-3)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [-3, -7, -4]",
    "output": "generated_output : list = take(add_n(mul_n(take(reverse([2, 5, 1]),16),-1),-2),3)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      -3,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(reverse(input),16),-1),-2),3)"
  },
  {
    "input": "input : list = [-2, -5, -1, -5]\noutput : list = [1, 4, 0, 4]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(sub_n([-2, -5, -1, -5],3),-1)),-4))",
    "io_inp": [
      -2,
      -5,
      -1,
      -5
    ],
    "io_out": [
      1,
      4,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(sub_n(input,3),-1)),-4))"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [-8, 24, 16]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sub_n([-5, 3, 1],-2),-1),15),23),4)",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      -8,
      24,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sub_n(input,-2),-1),15),23),4)"
  },
  {
    "input": "input : list = [-4, -5, 2]\noutput : list = [2, 3, -4]",
    "output": "generated_output : list = mul_n(take(add_n(add_n([-4, -5, 2],3),-1),20),-1)",
    "io_inp": [
      -4,
      -5,
      2
    ],
    "io_out": [
      2,
      3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(input,3),-1),20),-1)"
  },
  {
    "input": "input : list = [-3, 4, -2, 1, 2, 0]\noutput : list = [-7, 0, -6, -3, -2, -4]",
    "output": "generated_output : list = take(sub_n([-3, 4, -2, 1, 2, 0],4),11)",
    "io_inp": [
      -3,
      4,
      -2,
      1,
      2,
      0
    ],
    "io_out": [
      -7,
      0,
      -6,
      -3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),11)"
  },
  {
    "input": "input : list = [-1, -3, 5, -5]\noutput : list = [-25, -15, -5, 25]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_des([-1, -3, 5, -5]),-1),-5)))",
    "io_inp": [
      -1,
      -3,
      5,
      -5
    ],
    "io_out": [
      -25,
      -15,
      -5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_des(input),-1),-5)))"
  },
  {
    "input": "input : list = [-1, 5, -5, 4, -5]\noutput : list = [2, 2, 6, 11, 12]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sub_n([-1, 5, -5, 4, -5],-2)),-2),3))",
    "io_inp": [
      -1,
      5,
      -5,
      4,
      -5
    ],
    "io_out": [
      2,
      2,
      6,
      11,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sub_n(input,-2)),-2),3))"
  },
  {
    "input": "input : list = [-1, -3, 2]\noutput : list = [4, -11, -5]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n([-1, -3, 2],3),11),2))",
    "io_inp": [
      -1,
      -3,
      2
    ],
    "io_out": [
      4,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(input,3),11),2))"
  },
  {
    "input": "input : list = [-1, 1, -4, 4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = drop([-1, 1, -4, 4, -2],3)",
    "io_inp": [
      -1,
      1,
      -4,
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 3, 0, -4, 3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = take(take(mul_n(drop(sort_asc([-5, 3, 0, -4, 3]),3),-2),14),12)",
    "io_inp": [
      -5,
      3,
      0,
      -4,
      3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(drop(sort_asc(input),3),-2),14),12)"
  },
  {
    "input": "input : list = [0, 5, 5, 3, 1]\noutput : list = [23, 23, 13, 3, -2]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([0, 5, 5, 3, 1],5)),2)",
    "io_inp": [
      0,
      5,
      5,
      3,
      1
    ],
    "io_out": [
      23,
      23,
      13,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,5)),2)"
  },
  {
    "input": "input : list = [3, -2, 0, -5, 3, -2]\noutput : list = [-5, 3, -2]",
    "output": "generated_output : list = drop([3, -2, 0, -5, 3, -2],3)",
    "io_inp": [
      3,
      -2,
      0,
      -5,
      3,
      -2
    ],
    "io_out": [
      -5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 0, -5, 4]\noutput : list = [-34, 6, 38, 46]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(mul_n([5, 0, -5, 4],-4),15),3),-2))",
    "io_inp": [
      5,
      0,
      -5,
      4
    ],
    "io_out": [
      -34,
      6,
      38,
      46
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(mul_n(input,-4),15),3),-2))"
  },
  {
    "input": "input : list = [-4, 0, -3, 3]\noutput : list = [-395]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(take([-4, 0, -3, 3],1),-5),4),-5),-5)",
    "io_inp": [
      -4,
      0,
      -3,
      3
    ],
    "io_out": [
      -395
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(take(input,1),-5),4),-5),-5)"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [0, 0, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des([2, 5, 5]),4)),1))",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sort_des(input),4)),1))"
  },
  {
    "input": "input : list = [5, -1, 2, 1]\noutput : list = [-4, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_des([5, -1, 2, 1])),-3),32))",
    "io_inp": [
      5,
      -1,
      2,
      1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_des(input)),-3),32))"
  },
  {
    "input": "input : list = [-2, -1, 1, 5, 4, 5]\noutput : list = [5, 4, 1, -1, -2]",
    "output": "generated_output : list = take(drop(sub_n(sub_n(sort_des([-2, -1, 1, 5, 4, 5]),3),-3),1),8)",
    "io_inp": [
      -2,
      -1,
      1,
      5,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(sub_n(sort_des(input),3),-3),1),8)"
  },
  {
    "input": "input : list = [-5, -3, 2, -3, -2, -4]\noutput : list = [5, 1, 0, 0, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des([-5, -3, 2, -3, -2, -4]),3)))",
    "io_inp": [
      -5,
      -3,
      2,
      -3,
      -2,
      -4
    ],
    "io_out": [
      5,
      1,
      0,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(input),3)))"
  },
  {
    "input": "input : list = [-3, 4, 0, 1, 1]\noutput : list = [-3, 4, 0, 1, 1]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(sub_n([-3, 4, 0, 1, 1],1),-2),3),40),-4)",
    "io_inp": [
      -3,
      4,
      0,
      1,
      1
    ],
    "io_out": [
      -3,
      4,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(sub_n(input,1),-2),3),40),-4)"
  },
  {
    "input": "input : list = [1, -2, -5, -4]\noutput : list = [-16]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(take([1, -2, -5, -4],1),3),4),2))",
    "io_inp": [
      1,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(take(input,1),3),4),2))"
  },
  {
    "input": "input : list = [2, -1, -1, -5, 5]\noutput : list = [5, -1, -5]",
    "output": "generated_output : list = sort_des(reverse(drop([2, -1, -1, -5, 5],2)))",
    "io_inp": [
      2,
      -1,
      -1,
      -5,
      5
    ],
    "io_out": [
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [1, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, 1])",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 0, 3]\noutput : list = [3, 0, -2]",
    "output": "generated_output : list = take(reverse([-2, 0, 3]),6)",
    "io_inp": [
      -2,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [3, 0, -4, 5, -2, -4]\noutput : list = [16, 8, -20, 16, 0, -12]",
    "output": "generated_output : list = mul_n(reverse([3, 0, -4, 5, -2, -4]),-4)",
    "io_inp": [
      3,
      0,
      -4,
      5,
      -2,
      -4
    ],
    "io_out": [
      16,
      8,
      -20,
      16,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-1, 5, -4, 4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(take(reverse([-1, 5, -4, 4, 2]),1),4)))",
    "io_inp": [
      -1,
      5,
      -4,
      4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(take(reverse(input),1),4)))"
  },
  {
    "input": "input : list = [2, 5, 1, -1, -1]\noutput : list = [2, 2, -2, -4, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse(sort_asc([2, 5, 1, -1, -1]))),-2))",
    "io_inp": [
      2,
      5,
      1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [1, 2, -2, 2]\noutput : list = [2, 2, 1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(sort_asc([1, 2, -2, 2])))))",
    "io_inp": [
      1,
      2,
      -2,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -1, 0, -2, -2]\noutput : list = [-5, -5, -15, -10, 10]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(sub_n([-5, -1, 0, -2, -2],-2)),-5),2),3)",
    "io_inp": [
      -5,
      -1,
      0,
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -15,
      -10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(sub_n(input,-2)),-5),2),3)"
  },
  {
    "input": "input : list = [0, 0, -3, 4, -1, 0]\noutput : list = [0, 0, -3, 4]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(take([0, 0, -3, 4, -1, 0],4)),1),-1))",
    "io_inp": [
      0,
      0,
      -3,
      4,
      -1,
      0
    ],
    "io_out": [
      0,
      0,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(take(input,4)),1),-1))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-4, -24]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_des([0, 4]),-5)),-3),-1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -4,
      -24
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(sort_des(input),-5)),-3),-1)"
  },
  {
    "input": "input : list = [1, -5, -1, -5, 3]\noutput : list = [-5, -5, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -5, -1, -5, 3])",
    "io_inp": [
      1,
      -5,
      -1,
      -5,
      3
    ],
    "io_out": [
      -5,
      -5,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, -5, -5, -2, 2]\noutput : list = [11, 10, 8, 4, 1, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(sort_des([4, 5, -5, -5, -2, 2]),25)),-2),-4)",
    "io_inp": [
      4,
      5,
      -5,
      -5,
      -2,
      2
    ],
    "io_out": [
      11,
      10,
      8,
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(sort_des(input),25)),-2),-4)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sort_asc([4, -4])),3)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [4, 2, -3, -3, -5]\noutput : list = [-6, -4, -4, 1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(add_n([4, 2, -3, -3, -5],-4)),2),-1))",
    "io_inp": [
      4,
      2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(add_n(input,-4)),2),-1))"
  },
  {
    "input": "input : list = [-4, -1, -2, -3, 3, 2]\noutput : list = [6, 5, 2, 1, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(add_n([-4, -1, -2, -3, 3, 2],3)))))",
    "io_inp": [
      -4,
      -1,
      -2,
      -3,
      3,
      2
    ],
    "io_out": [
      6,
      5,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [4, -1, -5, -4, -4]\noutput : list = [-5, -4, -4, -1, 4]",
    "output": "generated_output : list = take(take(sort_asc([4, -1, -5, -4, -4]),7),17)",
    "io_inp": [
      4,
      -1,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),7),17)"
  },
  {
    "input": "input : list = [2, 2, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, 2, -1],1))",
    "io_inp": [
      2,
      2,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [5, 4, -3, 0]\noutput : list = [-5, -2, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(sort_des([5, 4, -3, 0])))),2)",
    "io_inp": [
      5,
      4,
      -3,
      0
    ],
    "io_out": [
      -5,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [-5, 1, -5, 1]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n(reverse(take(take(take([-5, 1, -5, 1],2),11),15)),1)",
    "io_inp": [
      -5,
      1,
      -5,
      1
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(take(input,2),11),15)),1)"
  },
  {
    "input": "input : list = [4, 2, 5, 5, -5, -1]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(take([4, 2, 5, 5, -5, -1],2),2))),1)",
    "io_inp": [
      4,
      2,
      5,
      5,
      -5,
      -1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(take(input,2),2))),1)"
  },
  {
    "input": "input : list = [3, -4, 4, -2]\noutput : list = [-12, -4, 16, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(add_n([3, -4, 4, -2],1))),4))",
    "io_inp": [
      3,
      -4,
      4,
      -2
    ],
    "io_out": [
      -12,
      -4,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(add_n(input,1))),4))"
  },
  {
    "input": "input : list = [-4, 0, -4, 0, -5]\noutput : list = [10, 10, 6, 6, 5]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(add_n([-4, 0, -4, 0, -5],4)),-2),-4))",
    "io_inp": [
      -4,
      0,
      -4,
      0,
      -5
    ],
    "io_out": [
      10,
      10,
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(add_n(input,4)),-2),-4))"
  },
  {
    "input": "input : list = [-1, -2, 2, 3]\noutput : list = [18, 9, -18, -27]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des([-1, -2, 2, 3]),-2),-3),3),-3)",
    "io_inp": [
      -1,
      -2,
      2,
      3
    ],
    "io_out": [
      18,
      9,
      -18,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des(input),-2),-3),3),-3)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take(reverse(add_n(reverse(reverse([-1, -2])),-1)),43)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(reverse(input)),-1)),43)"
  },
  {
    "input": "input : list = [5, 3, 1, 1, -2, -2]\noutput : list = [-2, -2, 1, 1, 3, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(sub_n([5, 3, 1, 1, -2, -2],3))),-1),-4)",
    "io_inp": [
      5,
      3,
      1,
      1,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(sub_n(input,3))),-1),-4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(reverse([-3, -4]),-1))))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [12, -8]",
    "output": "generated_output : list = reverse(take(mul_n([-2, 3],4),6))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,4),6))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-20]",
    "output": "generated_output : list = sort_des(mul_n(drop(sort_des(reverse([2, -5])),1),4))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(sort_des(reverse(input)),1),4))"
  },
  {
    "input": "input : list = [-4, 4, 0, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take(sub_n(take(drop([-4, 4, 0, -1],2),16),1),15)",
    "io_inp": [
      -4,
      4,
      0,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(drop(input,2),16),1),15)"
  },
  {
    "input": "input : list = [-2, 0, -1, 4, -5]\noutput : list = [-7, -4, -3, -2, 2]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc(sort_des([-2, 0, -1, 4, -5])),-2),1),10)",
    "io_inp": [
      -2,
      0,
      -1,
      4,
      -5
    ],
    "io_out": [
      -7,
      -4,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(sort_des(input)),-2),1),10)"
  },
  {
    "input": "input : list = [-5, 2, -3, -1, -3]\noutput : list = [4, 1, -1, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n([-5, 2, -3, -1, -3],-2))",
    "io_inp": [
      -5,
      2,
      -3,
      -1,
      -3
    ],
    "io_out": [
      4,
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3, 0]\noutput : list = [-4, -28, -28]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(sort_des([-3, -3, 0]),-2),-4),4),6)",
    "io_inp": [
      -3,
      -3,
      0
    ],
    "io_out": [
      -4,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(sort_des(input),-2),-4),4),6)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(add_n([1, 0],3),5))),5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(add_n(input,3),5))),5)"
  },
  {
    "input": "input : list = [1, 3, -3, 2, -1, 5]\noutput : list = [6, 4]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n(take([1, 3, -3, 2, -1, 5],2),-4)),1),1)",
    "io_inp": [
      1,
      3,
      -3,
      2,
      -1,
      5
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(take(input,2),-4)),1),1)"
  },
  {
    "input": "input : list = [4, 3, 0, 5, -3]\noutput : list = [-1, 2, 5, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(sub_n([4, 3, 0, 5, -3],-3),-2))),-1)",
    "io_inp": [
      4,
      3,
      0,
      5,
      -3
    ],
    "io_out": [
      -1,
      2,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(sub_n(input,-3),-2))),-1)"
  },
  {
    "input": "input : list = [3, -1, -4, 4, -1]\noutput : list = [0, -1, -5, -5, -8]",
    "output": "generated_output : list = add_n(sort_des(sort_des([3, -1, -4, 4, -1])),-4)",
    "io_inp": [
      3,
      -1,
      -4,
      4,
      -1
    ],
    "io_out": [
      0,
      -1,
      -5,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [0, 3, -4, -5]\noutput : list = [6, 0, -8, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_des([0, 3, -4, -5])))),2)",
    "io_inp": [
      0,
      3,
      -4,
      -5
    ],
    "io_out": [
      6,
      0,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(reverse([-4, -5])),21),3))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(reverse(input)),21),3))"
  },
  {
    "input": "input : list = [-4, 3, 3, 2]\noutput : list = [0, 1, 1, -6]",
    "output": "generated_output : list = sub_n(reverse([-4, 3, 3, 2]),2)",
    "io_inp": [
      -4,
      3,
      3,
      2
    ],
    "io_out": [
      0,
      1,
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-1, -2, 3, 1, 5]\noutput : list = [13, 11]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(take([-1, -2, 3, 1, 5],2),-3),-2)),-3)",
    "io_inp": [
      -1,
      -2,
      3,
      1,
      5
    ],
    "io_out": [
      13,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(take(input,2),-3),-2)),-3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des([-4, 0])",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -3, 4, 4, 1]\noutput : list = [2, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(drop([-2, -3, 4, 4, 1],2)))),2)",
    "io_inp": [
      -2,
      -3,
      4,
      4,
      1
    ],
    "io_out": [
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(drop(input,2)))),2)"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = drop([3, 5, -5],1)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -1, 3, 2]\noutput : list = [4, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(drop([2, -1, 3, 2],2)),3),1)",
    "io_inp": [
      2,
      -1,
      3,
      2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(drop(input,2)),3),1)"
  },
  {
    "input": "input : list = [-4, 4, -3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(drop([-4, 4, -3, -2],2),8))),37)",
    "io_inp": [
      -4,
      4,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(drop(input,2),8))),37)"
  },
  {
    "input": "input : list = [-5, 2, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([-5, 2, -5, -4],2)))",
    "io_inp": [
      -5,
      2,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(mul_n([-1, 1],-1),-1),6),-1))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(mul_n(input,-1),-1),6),-1))"
  },
  {
    "input": "input : list = [-1, -5, 2, 0]\noutput : list = [1, -5, -8, -20]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(sub_n([-1, -5, 2, 0],1),3),2)))",
    "io_inp": [
      -1,
      -5,
      2,
      0
    ],
    "io_out": [
      1,
      -5,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(sub_n(input,1),3),2)))"
  },
  {
    "input": "input : list = [4, -1, 5]\noutput : list = [-3, 2, -4]",
    "output": "generated_output : list = mul_n(take(add_n([4, -1, 5],-1),13),-1)",
    "io_inp": [
      4,
      -1,
      5
    ],
    "io_out": [
      -3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,-1),13),-1)"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [-1, -4, -10]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(sub_n([4, 1, -5],5)),12)))",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      -1,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(sub_n(input,5)),12)))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [3, 1]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-4, -2]),-5),1)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-5),1)"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_asc(reverse(drop(sort_asc([5, 2, 4]),2))),43)",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(drop(sort_asc(input),2))),43)"
  },
  {
    "input": "input : list = [4, 2, 1, -5, -3, 5]\noutput : list = [-19, -11]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(take([4, 2, 1, -5, -3, 5],2),-4),-2),-1))",
    "io_inp": [
      4,
      2,
      1,
      -5,
      -3,
      5
    ],
    "io_out": [
      -19,
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(take(input,2),-4),-2),-1))"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-3, -3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-3, 4, -3])))",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [4, 4, 1, 2, 3, -2]\noutput : list = [6, 6, 3, 0, -3, -12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(add_n([4, 4, 1, 2, 3, -2],-2),18))),3)",
    "io_inp": [
      4,
      4,
      1,
      2,
      3,
      -2
    ],
    "io_out": [
      6,
      6,
      3,
      0,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(add_n(input,-2),18))),3)"
  },
  {
    "input": "input : list = [0, 1, -5, 3, 3]\noutput : list = [-5, 1, 0]",
    "output": "generated_output : list = drop(reverse([0, 1, -5, 3, 3]),2)",
    "io_inp": [
      0,
      1,
      -5,
      3,
      3
    ],
    "io_out": [
      -5,
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(reverse(input),2)"
  },
  {
    "input": "input : list = [-3, -2, 1, -4, 4]\noutput : list = [-4, -3, -2, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-3, -2, 1, -4, 4]))",
    "io_inp": [
      -3,
      -2,
      1,
      -4,
      4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -3, -5]\noutput : list = [-9, -9, -7]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-5, -3, -5]),4))",
    "io_inp": [
      -5,
      -3,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-2, 1, -5, -5, 1, -1]\noutput : list = [-2, -2, 1, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-2, 1, -5, -5, 1, -1],-3)))",
    "io_inp": [
      -2,
      1,
      -5,
      -5,
      1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [1, 3, 3, 4, 1, -5]\noutput : list = [-60, -100, -100, -120, -60, 60]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n([1, 3, 3, 4, 1, -5],3),5),-5),4)",
    "io_inp": [
      1,
      3,
      3,
      4,
      1,
      -5
    ],
    "io_out": [
      -60,
      -100,
      -100,
      -120,
      -60,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(input,3),5),-5),4)"
  },
  {
    "input": "input : list = [5, -4, 4, 1, 1, -3]\noutput : list = [0, 108, 12, 48, 48, 96]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(sub_n([5, -4, 4, 1, 1, -3],3),-2),-4),3),49)",
    "io_inp": [
      5,
      -4,
      4,
      1,
      1,
      -3
    ],
    "io_out": [
      0,
      108,
      12,
      48,
      48,
      96
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(sub_n(input,3),-2),-4),3),49)"
  },
  {
    "input": "input : list = [-1, -5, 1, -2, 0]\noutput : list = [-5, -2, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(add_n([-1, -5, 1, -2, 0],3),1)),2))",
    "io_inp": [
      -1,
      -5,
      1,
      -2,
      0
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(add_n(input,3),1)),2))"
  },
  {
    "input": "input : list = [-3, 0, 3, 5, -4]\noutput : list = [-3, 0, 3, 5, -4]",
    "output": "generated_output : list = reverse(reverse([-3, 0, 3, 5, -4]))",
    "io_inp": [
      -3,
      0,
      3,
      5,
      -4
    ],
    "io_out": [
      -3,
      0,
      3,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [-398, -498, 202]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(mul_n([4, 5, -2],-5),5),-1),4),2)",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      -398,
      -498,
      202
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(mul_n(input,-5),5),-1),4),2)"
  },
  {
    "input": "input : list = [-4, -1, -5, 0, -5, -4]\noutput : list = [1, 0, -3, -3, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse([-4, -1, -5, 0, -5, -4])))),-1)",
    "io_inp": [
      -4,
      -1,
      -5,
      0,
      -5,
      -4
    ],
    "io_out": [
      1,
      0,
      -3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-4, -2, 4, 1, 5]\noutput : list = [-30, -26, -14, -2, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(reverse([-4, -2, 4, 1, 5]),-4)),-5),5)",
    "io_inp": [
      -4,
      -2,
      4,
      1,
      5
    ],
    "io_out": [
      -30,
      -26,
      -14,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(reverse(input),-4)),-5),5)"
  },
  {
    "input": "input : list = [5, 2, 5, 5, 1]\noutput : list = [6, 6, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(drop([5, 2, 5, 5, 1],2)))),1)",
    "io_inp": [
      5,
      2,
      5,
      5,
      1
    ],
    "io_out": [
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(drop(input,2)))),1)"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take([0, -4, 4],1))",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [1, -1, -3, -4, -1, 0]\noutput : list = [1, -1, -3, -4, -1, 0]",
    "output": "generated_output : list = take(reverse(reverse([1, -1, -3, -4, -1, 0])),23)",
    "io_inp": [
      1,
      -1,
      -3,
      -4,
      -1,
      0
    ],
    "io_out": [
      1,
      -1,
      -3,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),23)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-10, -2]",
    "output": "generated_output : list = sub_n(sort_asc([-5, 3]),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(reverse([-2, 3]),1))))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [-4, -3, -2, 5, -4]\noutput : list = [1, 1, 2, 3, 10]",
    "output": "generated_output : list = sort_asc(add_n([-4, -3, -2, 5, -4],5))",
    "io_inp": [
      -4,
      -3,
      -2,
      5,
      -4
    ],
    "io_out": [
      1,
      1,
      2,
      3,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(take([-3, -3, 5],1)),2)),-5)",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(take(input,1)),2)),-5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(take(sort_asc([-3, 2]),12),1)),42)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(sort_asc(input),12),1)),42)"
  },
  {
    "input": "input : list = [2, -2, 0, 4]\noutput : list = [-2, 0, 2, 4]",
    "output": "generated_output : list = reverse(sort_des([2, -2, 0, 4]))",
    "io_inp": [
      2,
      -2,
      0,
      4
    ],
    "io_out": [
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 1, 1, -3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(drop([-3, 1, 1, -3],2))),-2)",
    "io_inp": [
      -3,
      1,
      1,
      -3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(drop(input,2))),-2)"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take(sort_asc(take(take([-3, -2, 3],1),17)),16))",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(take(input,1),17)),16))"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [4, 3, -2]",
    "output": "generated_output : list = sort_des([3, 4, -2])",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 4, -2, 5]\noutput : list = [-2, 0, 0, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n(reverse(sub_n([0, 0, 4, -2, 5],-5)),-5)))",
    "io_inp": [
      0,
      0,
      4,
      -2,
      5
    ],
    "io_out": [
      -2,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(reverse(sub_n(input,-5)),-5)))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_des(sort_des([4, 4])),-4),-3))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_des(sort_des(input)),-4),-3))"
  },
  {
    "input": "input : list = [-2, 3, -4, -1, -2, -5]\noutput : list = [21, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(drop([-2, 3, -4, -1, -2, -5],4),-4)),2),3)",
    "io_inp": [
      -2,
      3,
      -4,
      -1,
      -2,
      -5
    ],
    "io_out": [
      21,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(drop(input,4),-4)),2),3)"
  },
  {
    "input": "input : list = [-1, 0, -2, 2, 1]\noutput : list = [0, -2, 2, 1]",
    "output": "generated_output : list = drop([-1, 0, -2, 2, 1],1)",
    "io_inp": [
      -1,
      0,
      -2,
      2,
      1
    ],
    "io_out": [
      0,
      -2,
      2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -3, -1, -3, 4, 0]\noutput : list = [-2, -4, -6, -7, -9, -9]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(sub_n([2, -3, -1, -3, 4, 0],4),4))),-2)",
    "io_inp": [
      2,
      -3,
      -1,
      -3,
      4,
      0
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(sub_n(input,4),4))),-2)"
  },
  {
    "input": "input : list = [4, -5, 2, -3, 1, -4]\noutput : list = [-16, -8, -4, 12, 16, 20]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(reverse([4, -5, 2, -3, 1, -4])),14)),-4)",
    "io_inp": [
      4,
      -5,
      2,
      -3,
      1,
      -4
    ],
    "io_out": [
      -16,
      -8,
      -4,
      12,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(reverse(input)),14)),-4)"
  },
  {
    "input": "input : list = [-4, -2, 4, -4]\noutput : list = [-4, -4, -2, 4]",
    "output": "generated_output : list = sort_asc([-4, -2, 4, -4])",
    "io_inp": [
      -4,
      -2,
      4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -5, 1, -2, 2, 4]\noutput : list = [7, 5, 4, 1, -2, -2]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(sort_asc([-5, -5, 1, -2, 2, 4]),4),-2),5))",
    "io_inp": [
      -5,
      -5,
      1,
      -2,
      2,
      4
    ],
    "io_out": [
      7,
      5,
      4,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(sort_asc(input),4),-2),5))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-17, -14]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n([-5, -4],3),-2),17))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -17,
      -14
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(input,3),-2),17))"
  },
  {
    "input": "input : list = [2, -4, 1, -4]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sort_des(add_n(add_n(drop([2, -4, 1, -4],2),-4),1))",
    "io_inp": [
      2,
      -4,
      1,
      -4
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(drop(input,2),-4),1))"
  },
  {
    "input": "input : list = [-2, 4, -1, 1, -3]\noutput : list = [2, -1, -3, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(reverse([-2, 4, -1, 1, -3])),1)),-1)",
    "io_inp": [
      -2,
      4,
      -1,
      1,
      -3
    ],
    "io_out": [
      2,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(reverse(input)),1)),-1)"
  },
  {
    "input": "input : list = [5, 3, 1, -4]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(take([5, 3, 1, -4],1),-2),-4)))",
    "io_inp": [
      5,
      3,
      1,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(take(input,1),-2),-4)))"
  },
  {
    "input": "input : list = [5, 1, 0, 0, 5]\noutput : list = [-12, 0, 3, 3, -12]",
    "output": "generated_output : list = take(add_n(take(take(mul_n([5, 1, 0, 0, 5],-3),16),14),3),38)",
    "io_inp": [
      5,
      1,
      0,
      0,
      5
    ],
    "io_out": [
      -12,
      0,
      3,
      3,
      -12
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(mul_n(input,-3),16),14),3),38)"
  },
  {
    "input": "input : list = [4, 0, 0, 1, -2, 1]\noutput : list = [9, 6, 6, 5, 5, 3]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(reverse([4, 0, 0, 1, -2, 1])),-5)))",
    "io_inp": [
      4,
      0,
      0,
      1,
      -2,
      1
    ],
    "io_out": [
      9,
      6,
      6,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [25, 10]",
    "output": "generated_output : list = mul_n(sub_n([0, -3],-5),5)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),5)"
  },
  {
    "input": "input : list = [-3, -5, -3, -1, -1]\noutput : list = [-1, -1, -3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([-3, -5, -3, -1, -1]))",
    "io_inp": [
      -3,
      -5,
      -3,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [-5, -3, 3]",
    "output": "generated_output : list = reverse([3, -3, -5])",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sub_n(add_n([1, 0],1),5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),5)"
  },
  {
    "input": "input : list = [-2, 4, -3, -4, -2]\noutput : list = [2, -4, 3, 4, 2]",
    "output": "generated_output : list = mul_n([-2, 4, -3, -4, -2],-1)",
    "io_inp": [
      -2,
      4,
      -3,
      -4,
      -2
    ],
    "io_out": [
      2,
      -4,
      3,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, 1, -4, -1, 0, -2]\noutput : list = [-4, -2, -1, 0, 0, 1]",
    "output": "generated_output : list = sort_asc([0, 1, -4, -1, 0, -2])",
    "io_inp": [
      0,
      1,
      -4,
      -1,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, 1, 5]\noutput : list = [5, 1, 0, 0]",
    "output": "generated_output : list = reverse([0, 0, 1, 5])",
    "io_inp": [
      0,
      0,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, -3, -2, 5, 2]\noutput : list = [-25, 10, 15, 10, -25, -10]",
    "output": "generated_output : list = mul_n([5, -2, -3, -2, 5, 2],-5)",
    "io_inp": [
      5,
      -2,
      -3,
      -2,
      5,
      2
    ],
    "io_out": [
      -25,
      10,
      15,
      10,
      -25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -4, -4, 2, -3]\noutput : list = [1, 1, 7, 2]",
    "output": "generated_output : list = mul_n(take(sub_n(drop(add_n([-1, -4, -4, 2, -3],3),1),-2),19),1)",
    "io_inp": [
      -1,
      -4,
      -4,
      2,
      -3
    ],
    "io_out": [
      1,
      1,
      7,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(drop(add_n(input,3),1),-2),19),1)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc([2, -1]),-2),-4),3)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(input),-2),-4),3)"
  },
  {
    "input": "input : list = [-3, 5, -1, -2, 3, 3]\noutput : list = [5, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take([-3, 5, -1, -2, 3, 3],3))))",
    "io_inp": [
      -3,
      5,
      -1,
      -2,
      3,
      3
    ],
    "io_out": [
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(input,3))))"
  },
  {
    "input": "input : list = [-5, 5, -1, -5]\noutput : list = [28, 4, -12, -12]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n([-5, 5, -1, -5],3)),4),-4))",
    "io_inp": [
      -5,
      5,
      -1,
      -5
    ],
    "io_out": [
      28,
      4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(add_n(input,3)),4),-4))"
  },
  {
    "input": "input : list = [3, -5, 1, 2, -4, 2]\noutput : list = [-5, -4, 1, 2, 2, 3]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(reverse([3, -5, 1, 2, -4, 2]),3)),35),3)",
    "io_inp": [
      3,
      -5,
      1,
      2,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4,
      1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(reverse(input),3)),35),3)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [12, 20]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(mul_n([2, 4],-4),13),-1),-1),-3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      12,
      20
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(mul_n(input,-4),13),-1),-1),-3)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [2, 7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_asc([-2, 3]),-4),-1),-1))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(sort_asc(input),-4),-1),-1))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse([-2, -4])",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, -2, -2, 2]\noutput : list = [6, 2, 2, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n(drop([4, -3, -2, -2, 2],1),-4)),5),-5)",
    "io_inp": [
      4,
      -3,
      -2,
      -2,
      2
    ],
    "io_out": [
      6,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(drop(input,1),-4)),5),-5)"
  },
  {
    "input": "input : list = [-1, 4, 5, 1]\noutput : list = [-2, 8]",
    "output": "generated_output : list = mul_n(take([-1, 4, 5, 1],2),2)",
    "io_inp": [
      -1,
      4,
      5,
      1
    ],
    "io_out": [
      -2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),2)"
  },
  {
    "input": "input : list = [1, -5, -1, 5]\noutput : list = [-1, -7, -3, 3]",
    "output": "generated_output : list = sub_n([1, -5, -1, 5],2)",
    "io_inp": [
      1,
      -5,
      -1,
      5
    ],
    "io_out": [
      -1,
      -7,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -1, -3]\noutput : list = [-3, -1, -4]",
    "output": "generated_output : list = reverse([-4, -1, -3])",
    "io_inp": [
      -4,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [2, 9]",
    "output": "generated_output : list = sub_n(drop([-5, -3, 4],1),-5)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [2, 3, 4, 5, -1]\noutput : list = [2, -1, -2, -3, -4]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_des([2, 3, 4, 5, -1])),1),24),-1)",
    "io_inp": [
      2,
      3,
      4,
      5,
      -1
    ],
    "io_out": [
      2,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_des(input)),1),24),-1)"
  },
  {
    "input": "input : list = [2, 2, 4, 1]\noutput : list = [1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 2, 4, 1])",
    "io_inp": [
      2,
      2,
      4,
      1
    ],
    "io_out": [
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, 5, -4]\noutput : list = [12, -2, -8, 10]",
    "output": "generated_output : list = sub_n(mul_n(mul_n([-5, 2, 5, -4],-1),2),-2)",
    "io_inp": [
      -5,
      2,
      5,
      -4
    ],
    "io_out": [
      12,
      -2,
      -8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(input,-1),2),-2)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = reverse(sub_n(add_n([-5, -3],-5),-2))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-5),-2))"
  },
  {
    "input": "input : list = [-5, -2, -1, -2]\noutput : list = [-3, -4, -4, -7]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(add_n([-5, -2, -1, -2],-3),3),14)),-4)",
    "io_inp": [
      -5,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(add_n(input,-3),3),14)),-4)"
  },
  {
    "input": "input : list = [4, 0, 2]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 0, 2],1)",
    "io_inp": [
      4,
      0,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [12, 12, 6]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(reverse([2, 2, 1]),-2)),-3),17)",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      12,
      12,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(reverse(input),-2)),-3),17)"
  },
  {
    "input": "input : list = [-3, -4, -2, -1, 1, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = take([-3, -4, -2, -1, 1, -3],2)",
    "io_inp": [
      -3,
      -4,
      -2,
      -1,
      1,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 1, 4, 3, -5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = drop([4, 1, 4, 3, -5, 3],4)",
    "io_inp": [
      4,
      1,
      4,
      3,
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = reverse(add_n([5, 4],-1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [2, -2, -3, 4, 3, -2]\noutput : list = [-11, -6, -6, 14, 19, 24]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des(reverse([2, -2, -3, 4, 3, -2])),5),4))",
    "io_inp": [
      2,
      -2,
      -3,
      4,
      3,
      -2
    ],
    "io_out": [
      -11,
      -6,
      -6,
      14,
      19,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(reverse(input)),5),4))"
  },
  {
    "input": "input : list = [0, 5, 2, 4, 1]\noutput : list = [0, 1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_asc([0, 5, 2, 4, 1])))))",
    "io_inp": [
      0,
      5,
      2,
      4,
      1
    ],
    "io_out": [
      0,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, -4, -5, 3]\noutput : list = [0, -7, -7, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n(sub_n([-4, -4, -5, 3],5),1))),2)",
    "io_inp": [
      -4,
      -4,
      -5,
      3
    ],
    "io_out": [
      0,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(sub_n(input,5),1))),2)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [8, -12]",
    "output": "generated_output : list = mul_n(drop([2, 2, -3],1),4)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [-3, 5, -4, -3, -2]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sub_n(take(drop([-3, 5, -4, -3, -2],3),6),-2)",
    "io_inp": [
      -3,
      5,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,3),6),-2)"
  },
  {
    "input": "input : list = [5, 3, -1, -4, 3, 0]\noutput : list = [-15, -9, -9, 0, 3, 12]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n([5, 3, -1, -4, 3, 0],-1)),3),34)",
    "io_inp": [
      5,
      3,
      -1,
      -4,
      3,
      0
    ],
    "io_out": [
      -15,
      -9,
      -9,
      0,
      3,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(input,-1)),3),34)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [6, 3]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(sub_n([0, 3],-3),4),4),5))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(sub_n(input,-3),4),4),5))"
  },
  {
    "input": "input : list = [-2, -5, -4, -4]\noutput : list = [-20, -32, -28, -28]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(reverse([-2, -5, -4, -4])),1),2),4)",
    "io_inp": [
      -2,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -20,
      -32,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(reverse(input)),1),2),4)"
  },
  {
    "input": "input : list = [-4, 1, 0, -1, 3]\noutput : list = [-4, -1, 0, 1, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse([-4, 1, 0, -1, 3])))",
    "io_inp": [
      -4,
      1,
      0,
      -1,
      3
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [1, 4, -4, -2]\noutput : list = [-1, 2, -6]",
    "output": "generated_output : list = take(take(add_n([1, 4, -4, -2],-2),3),25)",
    "io_inp": [
      1,
      4,
      -4,
      -2
    ],
    "io_out": [
      -1,
      2,
      -6
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-2),3),25)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n([-1, -5],2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [3, 2, -3, 5, 5]\noutput : list = [55, 40, -35, 85, 85]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n([3, 2, -3, 5, 5],-3),-2),-5),22)",
    "io_inp": [
      3,
      2,
      -3,
      5,
      5
    ],
    "io_out": [
      55,
      40,
      -35,
      85,
      85
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(input,-3),-2),-5),22)"
  },
  {
    "input": "input : list = [-1, 5, 4, -1, 4, -2]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_des(drop(take(take([-1, 5, 4, -1, 4, -2],3),8),2)))",
    "io_inp": [
      -1,
      5,
      4,
      -1,
      4,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(take(take(input,3),8),2)))"
  },
  {
    "input": "input : list = [2, 5, 2, 0]\noutput : list = [0, 2, 2, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse([2, 5, 2, 0]),-1)),1)",
    "io_inp": [
      2,
      5,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(input),-1)),1)"
  },
  {
    "input": "input : list = [-2, 0, -4, -3, 5]\noutput : list = [0, -10, 10, 5, -35]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n([-2, 0, -4, -3, 5],-2),23),-1),5)",
    "io_inp": [
      -2,
      0,
      -4,
      -3,
      5
    ],
    "io_out": [
      0,
      -10,
      10,
      5,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(input,-2),23),-1),5)"
  },
  {
    "input": "input : list = [2, 1, 2, 1]\noutput : list = [2, 2, 1, 1]",
    "output": "generated_output : list = sort_des(sort_des(reverse([2, 1, 2, 1])))",
    "io_inp": [
      2,
      1,
      2,
      1
    ],
    "io_out": [
      2,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [0, -2, 0, -2, 2, 2]\noutput : list = [2, 2, -2, 0, -2, 0]",
    "output": "generated_output : list = reverse([0, -2, 0, -2, 2, 2])",
    "io_inp": [
      0,
      -2,
      0,
      -2,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -2,
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [-1, -7, -3]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(sub_n([-1, -5, 1],2),-4)),-4),15)",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      -1,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(sub_n(input,2),-4)),-4),15)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sub_n([3, 0],4),-4)),-4),1)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sub_n(input,4),-4)),-4),1)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [4, -8]",
    "output": "generated_output : list = mul_n([2, -4],2)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [12, 42]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n([1, 3],-5),3),-3),3)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      12,
      42
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(input,-5),3),-3),3)"
  },
  {
    "input": "input : list = [-2, -2, 0, -1, 4]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = sort_asc(drop([-2, -2, 0, -1, 4],2))",
    "io_inp": [
      -2,
      -2,
      0,
      -1,
      4
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [13, 6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(add_n([3, -4],5))),-5))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      13,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(add_n(input,5))),-5))"
  },
  {
    "input": "input : list = [3, -2, -1, -5, -2, -1]\noutput : list = [-2, -6, -6, -7, -7, -10]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sort_asc([3, -2, -1, -5, -2, -1]),15),10),5))",
    "io_inp": [
      3,
      -2,
      -1,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -6,
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sort_asc(input),15),10),5))"
  },
  {
    "input": "input : list = [-5, 5, -2, 4, -4, 4]\noutput : list = [-16, 16, -16, 8, -20, 20]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-5, 5, -2, 4, -4, 4],-2)),2)",
    "io_inp": [
      -5,
      5,
      -2,
      4,
      -4,
      4
    ],
    "io_out": [
      -16,
      16,
      -16,
      8,
      -20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-2)),2)"
  },
  {
    "input": "input : list = [-4, -4, 0, -5, 5, 5]\noutput : list = [-9, -9, -5, -10, 0, 0]",
    "output": "generated_output : list = sub_n([-4, -4, 0, -5, 5, 5],5)",
    "io_inp": [
      -4,
      -4,
      0,
      -5,
      5,
      5
    ],
    "io_out": [
      -9,
      -9,
      -5,
      -10,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, 5, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = drop([3, 5, 0, -1],2)",
    "io_inp": [
      3,
      5,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(take([4, 1, 5],1)))),-1)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(take(input,1)))),-1)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [0, 4, 12]",
    "output": "generated_output : list = take(take(mul_n(sort_des(add_n([-3, -5, -2],2)),-4),7),16)",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      0,
      4,
      12
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(add_n(input,2)),-4),7),16)"
  },
  {
    "input": "input : list = [3, 1, 2, -4, -3, 2]\noutput : list = [1, 0, 0, -1, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(sub_n([3, 1, 2, -4, -3, 2],2),-5),-3)),-2)",
    "io_inp": [
      3,
      1,
      2,
      -4,
      -3,
      2
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(sub_n(input,2),-5),-3)),-2)"
  },
  {
    "input": "input : list = [-4, 1, -1, 0]\noutput : list = [4, 5, 6]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(sort_des([-4, 1, -1, 0]),-5),3)))",
    "io_inp": [
      -4,
      1,
      -1,
      0
    ],
    "io_out": [
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(sort_des(input),-5),3)))"
  },
  {
    "input": "input : list = [1, 5, 3, -5]\noutput : list = [3, 1, -1, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(mul_n([1, 5, 3, -5],1),12),-3),-1))",
    "io_inp": [
      1,
      5,
      3,
      -5
    ],
    "io_out": [
      3,
      1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(mul_n(input,1),12),-3),-1))"
  },
  {
    "input": "input : list = [2, -1, 1, -2]\noutput : list = [-2, -1, 1, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des([2, -1, 1, -2])),12)",
    "io_inp": [
      2,
      -1,
      1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),12)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [15, 10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des([2, 3])),5)))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1, 8]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n([-2, 5],4),-3),22),4)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(input,4),-3),22),4)"
  },
  {
    "input": "input : list = [-3, -5, 0, 1, -2, 3]\noutput : list = [2, -3, 0, -1, -6, -4]",
    "output": "generated_output : list = sub_n(reverse([-3, -5, 0, 1, -2, 3]),1)",
    "io_inp": [
      -3,
      -5,
      0,
      1,
      -2,
      3
    ],
    "io_out": [
      2,
      -3,
      0,
      -1,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [5, -5, 2, 3, -5, 0]\noutput : list = [5, 3, 2, 0, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([5, -5, 2, 3, -5, 0]))",
    "io_inp": [
      5,
      -5,
      2,
      3,
      -5,
      0
    ],
    "io_out": [
      5,
      3,
      2,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc([2, -1])",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, 5, -4, 0, -5]\noutput : list = [5, 0, 0, -4, -4, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des([0, -4, 5, -4, 0, -5])),37))",
    "io_inp": [
      0,
      -4,
      5,
      -4,
      0,
      -5
    ],
    "io_out": [
      5,
      0,
      0,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(input)),37))"
  },
  {
    "input": "input : list = [5, -2, 4, 3, -3, 1]\noutput : list = [-3, -7, -1, 0, -6, 1]",
    "output": "generated_output : list = reverse(add_n([5, -2, 4, 3, -3, 1],-4))",
    "io_inp": [
      5,
      -2,
      4,
      3,
      -3,
      1
    ],
    "io_out": [
      -3,
      -7,
      -1,
      0,
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [-4, 1, -2, -2]\noutput : list = [-1, 1, 1, 4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(add_n([-4, 1, -2, -2],4)),4),3),2)",
    "io_inp": [
      -4,
      1,
      -2,
      -2
    ],
    "io_out": [
      -1,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(add_n(input,4)),4),3),2)"
  },
  {
    "input": "input : list = [-3, -1, 1, -3, -4, -1]\noutput : list = [12, 10, 6, 2]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(drop([-3, -1, 1, -3, -4, -1],2),26),-2),-2))",
    "io_inp": [
      -3,
      -1,
      1,
      -3,
      -4,
      -1
    ],
    "io_out": [
      12,
      10,
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(drop(input,2),26),-2),-2))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-43, 7]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(add_n([5, -5],-4),5)),32),-2)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -43,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(add_n(input,-4),5)),32),-2)"
  },
  {
    "input": "input : list = [5, 5, -1, -1]\noutput : list = [-20, -20, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(mul_n([5, 5, -1, -1],-4)),19)))",
    "io_inp": [
      5,
      5,
      -1,
      -1
    ],
    "io_out": [
      -20,
      -20,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(mul_n(input,-4)),19)))"
  },
  {
    "input": "input : list = [5, 2, 1, -1, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(sub_n(take(drop(sub_n([5, 2, 1, -1, 1],5),4),12),5),-4)",
    "io_inp": [
      5,
      2,
      1,
      -1,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(drop(sub_n(input,5),4),12),5),-4)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(take(add_n([-1, 0],-1),6))))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(add_n(input,-1),6))))"
  },
  {
    "input": "input : list = [3, 0, -5, 2]\noutput : list = [13, 3, -1, -3]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des([3, 0, -5, 2]),-2)),3)",
    "io_inp": [
      3,
      0,
      -5,
      2
    ],
    "io_out": [
      13,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(input),-2)),3)"
  },
  {
    "input": "input : list = [-5, 0, 0, 5]\noutput : list = [-1, -6, -6, -11]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(add_n([-5, 0, 0, 5],4),2),-4)),-4)",
    "io_inp": [
      -5,
      0,
      0,
      5
    ],
    "io_out": [
      -1,
      -6,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(add_n(input,4),2),-4)),-4)"
  },
  {
    "input": "input : list = [-1, 1, -1, 1]\noutput : list = [-3, -5, -3]",
    "output": "generated_output : list = drop(add_n([-1, 1, -1, 1],-4),1)",
    "io_inp": [
      -1,
      1,
      -1,
      1
    ],
    "io_out": [
      -3,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-4),1)"
  },
  {
    "input": "input : list = [-5, 0, -4, -5, 3]\noutput : list = [5, 30]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(take([-5, 0, -4, -5, 3],2),-1)),-5))",
    "io_inp": [
      -5,
      0,
      -4,
      -5,
      3
    ],
    "io_out": [
      5,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(take(input,2),-1)),-5))"
  },
  {
    "input": "input : list = [2, 3, -1, 5, 4, 2]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(take([2, 3, -1, 5, 4, 2],2)),9),2))",
    "io_inp": [
      2,
      3,
      -1,
      5,
      4,
      2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(take(input,2)),9),2))"
  },
  {
    "input": "input : list = [-5, -5, 3, 3, -2]\noutput : list = [-5, -5, -2, 3, 3]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(reverse([-5, -5, 3, 3, -2])),11),22))",
    "io_inp": [
      -5,
      -5,
      3,
      3,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(reverse(input)),11),22))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [10, 4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(add_n([5, -1],-4),-1))),5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(add_n(input,-4),-1))),5)"
  },
  {
    "input": "input : list = [1, 1, -2, 5, 3]\noutput : list = [7, 9, 2, 5, 5]",
    "output": "generated_output : list = sub_n(reverse([1, 1, -2, 5, 3]),-4)",
    "io_inp": [
      1,
      1,
      -2,
      5,
      3
    ],
    "io_out": [
      7,
      9,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-2, 5, -3, 4]\noutput : list = [-3, -2, 4, 5]",
    "output": "generated_output : list = sort_asc([-2, 5, -3, 4])",
    "io_inp": [
      -2,
      5,
      -3,
      4
    ],
    "io_out": [
      -3,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [-1, 5, 8]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_des(sort_asc([4, -5, 1]))),-4))",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      -1,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [-1, -4, 5, -3, -4]\noutput : list = [27, -3, -13, -18, -18]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse([-1, -4, 5, -3, -4]),5),2))",
    "io_inp": [
      -1,
      -4,
      5,
      -3,
      -4
    ],
    "io_out": [
      27,
      -3,
      -13,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(input),5),2))"
  },
  {
    "input": "input : list = [-2, 5, 4, -2, 2, 5]\noutput : list = [0, 0, 8, 12, 14, 14]",
    "output": "generated_output : list = take(add_n(take(sort_asc(mul_n([-2, 5, 4, -2, 2, 5],2)),27),4),32)",
    "io_inp": [
      -2,
      5,
      4,
      -2,
      2,
      5
    ],
    "io_out": [
      0,
      0,
      8,
      12,
      14,
      14
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(mul_n(input,2)),27),4),32)"
  },
  {
    "input": "input : list = [2, 5, -2, 2, -1, 5]\noutput : list = [-15, 0, -35, -15, -30, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(sub_n([2, 5, -2, 2, -1, 5],5),-1)),-5))",
    "io_inp": [
      2,
      5,
      -2,
      2,
      -1,
      5
    ],
    "io_out": [
      -15,
      0,
      -35,
      -15,
      -30,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(sub_n(input,5),-1)),-5))"
  },
  {
    "input": "input : list = [2, 0, -5, -1, -2]\noutput : list = [2, 0, -1, -2, -5]",
    "output": "generated_output : list = take(take(take(sort_des(sort_des([2, 0, -5, -1, -2])),8),24),39)",
    "io_inp": [
      2,
      0,
      -5,
      -1,
      -2
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(take(sort_des(sort_des(input)),8),24),39)"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [18, 13, 3]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(reverse([-3, 0, -2])),-5)),-3)",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      18,
      13,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(reverse(input)),-5)),-3)"
  },
  {
    "input": "input : list = [-1, 0, 1]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = sort_asc([-1, 0, 1])",
    "io_inp": [
      -1,
      0,
      1
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5, 5, 5, 0, 4]\noutput : list = [-3, 2, 6, 6, 7, 7]",
    "output": "generated_output : list = sub_n(take(sort_asc([4, -5, 5, 5, 0, 4]),21),-2)",
    "io_inp": [
      4,
      -5,
      5,
      5,
      0,
      4
    ],
    "io_out": [
      -3,
      2,
      6,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),21),-2)"
  },
  {
    "input": "input : list = [1, 3, -2, -5, -2]\noutput : list = [15, 6, 6, -3, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(mul_n([1, 3, -2, -5, -2],-3),16))))",
    "io_inp": [
      1,
      3,
      -2,
      -5,
      -2
    ],
    "io_out": [
      15,
      6,
      6,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(mul_n(input,-3),16))))"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [15, 45, 75]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(sort_des([-5, -1, -3]),5)),-3),8)",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      15,
      45,
      75
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(sort_des(input),5)),-3),8)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des([0, -4])",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, -5, 1]\noutput : list = [-5, 25, 20, -5]",
    "output": "generated_output : list = reverse(mul_n([1, -4, -5, 1],-5))",
    "io_inp": [
      1,
      -4,
      -5,
      1
    ],
    "io_out": [
      -5,
      25,
      20,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [2, -3, 5, -1, 3]\noutput : list = [9, 7, 6, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(reverse([2, -3, 5, -1, 3])))),-4)",
    "io_inp": [
      2,
      -3,
      5,
      -1,
      3
    ],
    "io_out": [
      9,
      7,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(sub_n([0, 4, 1],3),-1),-3)))",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(sub_n(input,3),-1),-3)))"
  },
  {
    "input": "input : list = [3, -5, 1, 5, -5]\noutput : list = [1, -1, -3, -9, -9]",
    "output": "generated_output : list = sort_des(sub_n([3, -5, 1, 5, -5],4))",
    "io_inp": [
      3,
      -5,
      1,
      5,
      -5
    ],
    "io_out": [
      1,
      -1,
      -3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [-12, -9, -6]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(reverse([4, 5, 3]),-3),7)),3)",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      -12,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(reverse(input),-3),7)),3)"
  },
  {
    "input": "input : list = [-1, 1, 4]\noutput : list = [-5, 5, 20]",
    "output": "generated_output : list = mul_n([-1, 1, 4],5)",
    "io_inp": [
      -1,
      1,
      4
    ],
    "io_out": [
      -5,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc([1, 3])",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, 4, 1, -4]\noutput : list = [55, -20, -35, 10, 85]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(mul_n([-2, 3, 4, 1, -4],3),-5),-5),-3),-3)",
    "io_inp": [
      -2,
      3,
      4,
      1,
      -4
    ],
    "io_out": [
      55,
      -20,
      -35,
      10,
      85
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(mul_n(input,3),-5),-5),-3),-3)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des([-2, 0])",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [14, -4, 8]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n([3, -3, 1],1),3),3),5)",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      14,
      -4,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(input,1),3),3),5)"
  },
  {
    "input": "input : list = [0, 1, -5]\noutput : list = [-8, -3]",
    "output": "generated_output : list = take(sort_asc(drop(sort_des(sub_n([0, 1, -5],3)),1)),28)",
    "io_inp": [
      0,
      1,
      -5
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(sort_des(sub_n(input,3)),1)),28)"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(drop(reverse(sub_n(sort_asc([0, 1, -1]),-4)),2))",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(drop(reverse(sub_n(sort_asc(input),-4)),2))"
  },
  {
    "input": "input : list = [-5, -5, 2, 2, 4]\noutput : list = [2, 0, 0, -7, -7]",
    "output": "generated_output : list = reverse(add_n([-5, -5, 2, 2, 4],-2))",
    "io_inp": [
      -5,
      -5,
      2,
      2,
      4
    ],
    "io_out": [
      2,
      0,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [3, 5, -4, 0, 3]\noutput : list = [-4, 0, 0, 6, 14]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(mul_n([3, 5, -4, 0, 3],-1),2)),-2),4)",
    "io_inp": [
      3,
      5,
      -4,
      0,
      3
    ],
    "io_out": [
      -4,
      0,
      0,
      6,
      14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(mul_n(input,-1),2)),-2),4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(sub_n([-2, 5, -4],1),2),3),-2))",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(sub_n(input,1),2),3),-2))"
  },
  {
    "input": "input : list = [-3, 5, -3, 5, 4, -5]\noutput : list = [5, 5, 4, -3, -3, -5]",
    "output": "generated_output : list = sort_des([-3, 5, -3, 5, 4, -5])",
    "io_inp": [
      -3,
      5,
      -3,
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      5,
      4,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -2, 5, 5, -3]\noutput : list = [-30, -30, -6, -2, -2, 2]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(mul_n([-2, -1, -2, 5, 5, -3],2)),5),-2))",
    "io_inp": [
      -2,
      -1,
      -2,
      5,
      5,
      -3
    ],
    "io_out": [
      -30,
      -30,
      -6,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(mul_n(input,2)),5),-2))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sort_asc([-1, 1]),5),4),13))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sort_asc(input),5),4),13))"
  },
  {
    "input": "input : list = [-1, -2, -3]\noutput : list = [-2, -3, -4]",
    "output": "generated_output : list = sub_n([-1, -2, -3],1)",
    "io_inp": [
      -1,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 1, -4, -3, 1]\noutput : list = [2, -6, -26, -22, -6]",
    "output": "generated_output : list = add_n(mul_n(sub_n([3, 1, -4, -3, 1],3),4),2)",
    "io_inp": [
      3,
      1,
      -4,
      -3,
      1
    ],
    "io_out": [
      2,
      -6,
      -26,
      -22,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,3),4),2)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-2, -6]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(add_n([-5, -3],3),-2)),-2),-1)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(add_n(input,3),-2)),-2),-1)"
  },
  {
    "input": "input : list = [2, 3, 1, 4, -5, -2]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take([2, 3, 1, 4, -5, -2],3))))",
    "io_inp": [
      2,
      3,
      1,
      4,
      -5,
      -2
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(input,3))))"
  },
  {
    "input": "input : list = [-5, -5, 5, -3]\noutput : list = [-15, 9, 15, 15]",
    "output": "generated_output : list = take(mul_n(sort_des(take(reverse([-5, -5, 5, -3]),10)),-3),44)",
    "io_inp": [
      -5,
      -5,
      5,
      -3
    ],
    "io_out": [
      -15,
      9,
      15,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(reverse(input),10)),-3),44)"
  },
  {
    "input": "input : list = [5, 4, 1, 2, 5, 1]\noutput : list = [6, 5, 2, 3, 6, 2]",
    "output": "generated_output : list = sub_n([5, 4, 1, 2, 5, 1],-1)",
    "io_inp": [
      5,
      4,
      1,
      2,
      5,
      1
    ],
    "io_out": [
      6,
      5,
      2,
      3,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [10, 19]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(drop([1, -4, -1],1)),-3),3),-4)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      10,
      19
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(drop(input,1)),-3),3),-4)"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [7, 8]",
    "output": "generated_output : list = add_n(take(drop([1, 4, 5],1),13),3)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,1),13),3)"
  },
  {
    "input": "input : list = [0, 0, 3, -4, -3, 0]\noutput : list = [-4, -3, 0, 0, 0, 3]",
    "output": "generated_output : list = take(sort_asc([0, 0, 3, -4, -3, 0]),21)",
    "io_inp": [
      0,
      0,
      3,
      -4,
      -3,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),21)"
  },
  {
    "input": "input : list = [1, -3, -4, -4, -1, -1]\noutput : list = [8, -8, -12, -12, 0, 0]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(reverse([1, -3, -4, -4, -1, -1]),1),4),14))",
    "io_inp": [
      1,
      -3,
      -4,
      -4,
      -1,
      -1
    ],
    "io_out": [
      8,
      -8,
      -12,
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(reverse(input),1),4),14))"
  },
  {
    "input": "input : list = [1, 4, 0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(drop([1, 4, 0, 1],2))",
    "io_inp": [
      1,
      4,
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-1, -2, 5, 4, -4, -5]\noutput : list = [-34, -28, -16, -10, 20, 26]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc([-1, -2, 5, 4, -4, -5]),3),-2),2)",
    "io_inp": [
      -1,
      -2,
      5,
      4,
      -4,
      -5
    ],
    "io_out": [
      -34,
      -28,
      -16,
      -10,
      20,
      26
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(input),3),-2),2)"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [2, 14, 8]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(reverse([-1, 3, 1]),3)),4),-1)",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      2,
      14,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(reverse(input),3)),4),-1)"
  },
  {
    "input": "input : list = [-4, -5, -1, -2, -2, -1]\noutput : list = [-9, -10, -6, -7, -7, -6]",
    "output": "generated_output : list = sub_n([-4, -5, -1, -2, -2, -1],5)",
    "io_inp": [
      -4,
      -5,
      -1,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -10,
      -6,
      -7,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [2, 27]",
    "output": "generated_output : list = add_n(add_n(mul_n(drop([1, 0, -5],1),-5),-2),4)",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      2,
      27
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(drop(input,1),-5),-2),4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-8, 12]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(sort_des([5, -5]),7)),2),2)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -8,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(sort_des(input),7)),2),2)"
  },
  {
    "input": "input : list = [4, 5, -5, 5]\noutput : list = [4]",
    "output": "generated_output : list = reverse(take([4, 5, -5, 5],1))",
    "io_inp": [
      4,
      5,
      -5,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [2, -4, -1, -2]\noutput : list = [10, 1, -2, -8]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(mul_n([2, -4, -1, -2],3)),1),16),3)",
    "io_inp": [
      2,
      -4,
      -1,
      -2
    ],
    "io_out": [
      10,
      1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(mul_n(input,3)),1),16),3)"
  },
  {
    "input": "input : list = [0, 1, -1, 4, 1, 4]\noutput : list = [10]",
    "output": "generated_output : list = reverse(drop(sub_n(add_n(add_n([0, 1, -1, 4, 1, 4],-2),4),-4),5))",
    "io_inp": [
      0,
      1,
      -1,
      4,
      1,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(drop(sub_n(add_n(add_n(input,-2),4),-4),5))"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(sort_des([0, 1, -1]),2),4),26))",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(sort_des(input),2),4),26))"
  },
  {
    "input": "input : list = [-4, -1, -2, 2, -3, 0]\noutput : list = [5, 1, -1, -3, -5, -7]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(sort_asc([-4, -1, -2, 2, -3, 0]),2)),39),1)",
    "io_inp": [
      -4,
      -1,
      -2,
      2,
      -3,
      0
    ],
    "io_out": [
      5,
      1,
      -1,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(sort_asc(input),2)),39),1)"
  },
  {
    "input": "input : list = [-5, 4, 0, -5]\noutput : list = [-12]",
    "output": "generated_output : list = drop(add_n(add_n(reverse(mul_n([-5, 4, 0, -5],3)),5),-2),3)",
    "io_inp": [
      -5,
      4,
      0,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(reverse(mul_n(input,3)),5),-2),3)"
  },
  {
    "input": "input : list = [-4, 3, 2, 0, 1, 0]\noutput : list = [-6, -2, -2, -1, 0, 1]",
    "output": "generated_output : list = reverse(take(add_n(reverse(sort_asc([-4, 3, 2, 0, 1, 0])),-2),35))",
    "io_inp": [
      -4,
      3,
      2,
      0,
      1,
      0
    ],
    "io_out": [
      -6,
      -2,
      -2,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(sort_asc(input)),-2),35))"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(sort_asc([-2, 5, -3]))),10),2)",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(sort_asc(input))),10),2)"
  },
  {
    "input": "input : list = [3, 4, -4, -2, -3]\noutput : list = [10]",
    "output": "generated_output : list = add_n(drop(sub_n(sort_asc(sort_des([3, 4, -4, -2, -3])),-2),4),4)",
    "io_inp": [
      3,
      4,
      -4,
      -2,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(drop(sub_n(sort_asc(sort_des(input)),-2),4),4)"
  },
  {
    "input": "input : list = [4, 4, -5, 3, 2, 1]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = take(drop([4, 4, -5, 3, 2, 1],3),6)",
    "io_inp": [
      4,
      4,
      -5,
      3,
      2,
      1
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(drop(input,3),6)"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [1, -4, 3]",
    "output": "generated_output : list = mul_n([-1, 4, -3],-1)",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      1,
      -4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 5, -4, 4, -2, 0]\noutput : list = [8, 40, -32, 32, -16, 0]",
    "output": "generated_output : list = mul_n(mul_n([1, 5, -4, 4, -2, 0],-2),-4)",
    "io_inp": [
      1,
      5,
      -4,
      4,
      -2,
      0
    ],
    "io_out": [
      8,
      40,
      -32,
      32,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),-4)"
  },
  {
    "input": "input : list = [-4, -5, -1, -4, 1]\noutput : list = [-2, -1, -1, 2, 4]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_asc([-4, -5, -1, -4, 1]),-1),1),2),-1)",
    "io_inp": [
      -4,
      -5,
      -1,
      -4,
      1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_asc(input),-1),1),2),-1)"
  },
  {
    "input": "input : list = [1, 0, 2]\noutput : list = [0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([1, 0, 2]))",
    "io_inp": [
      1,
      0,
      2
    ],
    "io_out": [
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 1, -2, -1]\noutput : list = [24, -1, 14, 9]",
    "output": "generated_output : list = add_n(sub_n(mul_n([-4, 1, -2, -1],-5),-1),3)",
    "io_inp": [
      -4,
      1,
      -2,
      -1
    ],
    "io_out": [
      24,
      -1,
      14,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-5),-1),3)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-3, 1]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([4, 0],2),-1),-1)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,2),-1),-1)"
  },
  {
    "input": "input : list = [4, -3, -5, 1]\noutput : list = [-7, 5]",
    "output": "generated_output : list = add_n(sort_asc(drop(mul_n(sub_n([4, -3, -5, 1],-5),-2),2)),5)",
    "io_inp": [
      4,
      -3,
      -5,
      1
    ],
    "io_out": [
      -7,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(mul_n(sub_n(input,-5),-2),2)),5)"
  },
  {
    "input": "input : list = [-4, 2, 5, -2]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = reverse(drop(sort_des([-4, 2, 5, -2]),1))",
    "io_inp": [
      -4,
      2,
      5,
      -2
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(input),1))"
  },
  {
    "input": "input : list = [-3, 5, 1, 5, 4]\noutput : list = [-6, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(take([-3, 5, 1, 5, 4],2),4),2))",
    "io_inp": [
      -3,
      5,
      1,
      5,
      4
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(input,2),4),2))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 6]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse([4, 1]),2)))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(input),2)))"
  },
  {
    "input": "input : list = [2, -4, -4, 3]\noutput : list = [-9, -6, 12, 12]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([2, -4, -4, 3])),-3)",
    "io_inp": [
      2,
      -4,
      -4,
      3
    ],
    "io_out": [
      -9,
      -6,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [-2, 3, -2, -1, -5]\noutput : list = [-6, -3, -3, -2, 2]",
    "output": "generated_output : list = sort_asc(take(take(add_n(sort_des([-2, 3, -2, -1, -5]),-1),25),19))",
    "io_inp": [
      -2,
      3,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(sort_des(input),-1),25),19))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-2, -8]",
    "output": "generated_output : list = add_n([1, -5],-3)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, -3, 2, -1, 3]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(add_n([0, -3, 2, -1, 3],1)),3),1),1)",
    "io_inp": [
      0,
      -3,
      2,
      -1,
      3
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(add_n(input,1)),3),1),1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sort_des([0, 3])),2),24))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sort_des(input)),2),24))"
  },
  {
    "input": "input : list = [-2, -1, -5, -3, 5, 0]\noutput : list = [1, 21]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n(drop([-2, -1, -5, -3, 5, 0],4),4)),-1),43)",
    "io_inp": [
      -2,
      -1,
      -5,
      -3,
      5,
      0
    ],
    "io_out": [
      1,
      21
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(drop(input,4),4)),-1),43)"
  },
  {
    "input": "input : list = [-5, -2, 3, 4]\noutput : list = [-3, 0, 5, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-5, -2, 3, 4]),-1),1)",
    "io_inp": [
      -5,
      -2,
      3,
      4
    ],
    "io_out": [
      -3,
      0,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-1),1)"
  },
  {
    "input": "input : list = [-3, 1, -2, -4, 1, 1]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = take(sort_des(drop([-3, 1, -2, -4, 1, 1],3)),10)",
    "io_inp": [
      -3,
      1,
      -2,
      -4,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,3)),10)"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [20, 0, -20]",
    "output": "generated_output : list = mul_n(mul_n([2, 0, -2],-2),-5)",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      20,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),-5)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(sub_n([1, 0, -5],-1),7))))",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(sub_n(input,-1),7))))"
  },
  {
    "input": "input : list = [-1, 3, 1, 4, -3]\noutput : list = [-4, 12, 4, 16, -12]",
    "output": "generated_output : list = mul_n([-1, 3, 1, 4, -3],4)",
    "io_inp": [
      -1,
      3,
      1,
      4,
      -3
    ],
    "io_out": [
      -4,
      12,
      4,
      16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, -4, 2, 2, -2, -2]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sub_n(drop(sort_des(sort_des(mul_n([-4, -4, 2, 2, -2, -2],-3))),4),4)",
    "io_inp": [
      -4,
      -4,
      2,
      2,
      -2,
      -2
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(sort_des(mul_n(input,-3))),4),4)"
  },
  {
    "input": "input : list = [4, 1, 2, -3, 4, 2]\noutput : list = [-3, 1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc(drop(take(add_n(add_n([4, 1, 2, -3, 4, 2],-2),2),34),1))",
    "io_inp": [
      4,
      1,
      2,
      -3,
      4,
      2
    ],
    "io_out": [
      -3,
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(take(add_n(add_n(input,-2),2),34),1))"
  },
  {
    "input": "input : list = [0, 3, 5, 5, -1]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(take([0, 3, 5, 5, -1],1),-3),1)),-4)",
    "io_inp": [
      0,
      3,
      5,
      5,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(take(input,1),-3),1)),-4)"
  },
  {
    "input": "input : list = [0, 0, 0, 2, 2]\noutput : list = [0, 0, 0, 2, 2]",
    "output": "generated_output : list = sort_asc([0, 0, 0, 2, 2])",
    "io_inp": [
      0,
      0,
      0,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1, 2, -3]\noutput : list = [9, -3, -6]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(drop([5, 1, 2, -3],1)),-3)),10)",
    "io_inp": [
      5,
      1,
      2,
      -3
    ],
    "io_out": [
      9,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(drop(input,1)),-3)),10)"
  },
  {
    "input": "input : list = [-3, -3, -5, -5]\noutput : list = [-9]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(take([-3, -3, -5, -5],1),4),3)),6)",
    "io_inp": [
      -3,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(take(input,1),4),3)),6)"
  },
  {
    "input": "input : list = [5, -4, 3, 4, -2]\noutput : list = [2, -10, -8, 6, -12]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n([5, -4, 3, 4, -2],-1)),-2),12)",
    "io_inp": [
      5,
      -4,
      3,
      4,
      -2
    ],
    "io_out": [
      2,
      -10,
      -8,
      6,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(input,-1)),-2),12)"
  },
  {
    "input": "input : list = [-4, -4, 1, -4]\noutput : list = [-4, -4, -4, 1]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_des([-4, -4, 1, -4])))),29)",
    "io_inp": [
      -4,
      -4,
      1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_des(input)))),29)"
  },
  {
    "input": "input : list = [-2, 4, 3, -4, 0]\noutput : list = [-15, -10, 5, 15, 25]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(mul_n([-2, 4, 3, -4, 0],-5)),-5)))",
    "io_inp": [
      -2,
      4,
      3,
      -4,
      0
    ],
    "io_out": [
      -15,
      -10,
      5,
      15,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(mul_n(input,-5)),-5)))"
  },
  {
    "input": "input : list = [3, 2, 5, -1]\noutput : list = [3, 2, 5, -1]",
    "output": "generated_output : list = reverse(reverse([3, 2, 5, -1]))",
    "io_inp": [
      3,
      2,
      5,
      -1
    ],
    "io_out": [
      3,
      2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 3, -2, 3]\noutput : list = [-45, -45, 30, 75]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(mul_n([-5, 3, -2, 3],5),-3),1),32))",
    "io_inp": [
      -5,
      3,
      -2,
      3
    ],
    "io_out": [
      -45,
      -45,
      30,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(mul_n(input,5),-3),1),32))"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(drop([3, -1, 1],1)))))",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [3, 1, 3, 1]\noutput : list = [6, 6, 8, 8]",
    "output": "generated_output : list = sub_n(sort_asc([3, 1, 3, 1]),-5)",
    "io_inp": [
      3,
      1,
      3,
      1
    ],
    "io_out": [
      6,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [240, -144]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(mul_n([5, -3],-1),-4)),-4),-3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      240,
      -144
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(mul_n(input,-1),-4)),-4),-3)"
  },
  {
    "input": "input : list = [5, -2, 5, -5, 5]\noutput : list = [4, -6]",
    "output": "generated_output : list = sort_des(take(reverse(take(add_n([5, -2, 5, -5, 5],-1),11)),2))",
    "io_inp": [
      5,
      -2,
      5,
      -5,
      5
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(add_n(input,-1),11)),2))"
  },
  {
    "input": "input : list = [0, 3, 1, -2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(drop([0, 3, 1, -2, 2],3)),16),3),-3)",
    "io_inp": [
      0,
      3,
      1,
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(drop(input,3)),16),3),-3)"
  },
  {
    "input": "input : list = [4, 5, 1, 1, -5, -3]\noutput : list = [5, 4, 1, 1, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(sort_des([4, 5, 1, 1, -5, -3]),-2),5),-3))",
    "io_inp": [
      4,
      5,
      1,
      1,
      -5,
      -3
    ],
    "io_out": [
      5,
      4,
      1,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(sort_des(input),-2),5),-3))"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [20, 0, -30]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(mul_n([2, 0, -3],-2)),5)),-1)",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      20,
      0,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(mul_n(input,-2)),5)),-1)"
  },
  {
    "input": "input : list = [-4, 1, -3, -4, 4, 5]\noutput : list = [-20, -16, -4, 12, 16, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sort_asc([-4, 1, -3, -4, 4, 5]),-4))))",
    "io_inp": [
      -4,
      1,
      -3,
      -4,
      4,
      5
    ],
    "io_out": [
      -20,
      -16,
      -4,
      12,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [-10, -8, 10]",
    "output": "generated_output : list = sort_asc(mul_n([-4, -5, 5],2))",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      -10,
      -8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-2, -5, 0, 4, 3, -4]\noutput : list = [-3, -2, 0, 2, 5, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(sub_n([-2, -5, 0, 4, 3, -4],-1),-3))),-4)",
    "io_inp": [
      -2,
      -5,
      0,
      4,
      3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      0,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(sub_n(input,-1),-3))),-4)"
  },
  {
    "input": "input : list = [5, 5, 4]\noutput : list = [4, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, 4])",
    "io_inp": [
      5,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, 1, 4]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_des(take([-1, 4, 1, 4],2)),-3),7))",
    "io_inp": [
      -1,
      4,
      1,
      4
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_des(take(input,2)),-3),7))"
  },
  {
    "input": "input : list = [-5, -4, -5]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([-5, -4, -5]),-2))",
    "io_inp": [
      -5,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-80, -100]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(mul_n([4, 5],5)))),-4)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -80,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(mul_n(input,5)))),-4)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [48, 48]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(sort_asc([4, 4]),-2),4),-4),24)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      48,
      48
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(sort_asc(input),-2),4),-4),24)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n([1, 1],3)),19))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(input,3)),19))"
  },
  {
    "input": "input : list = [1, 0, -2, -3]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(drop([1, 0, -2, -3],1)))))",
    "io_inp": [
      1,
      0,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [3, -2, 5, 3, 0]\noutput : list = [5, 3, 3, 0, -2]",
    "output": "generated_output : list = sort_des([3, -2, 5, 3, 0])",
    "io_inp": [
      3,
      -2,
      5,
      3,
      0
    ],
    "io_out": [
      5,
      3,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -5, 2, -4, -4, 2]\noutput : list = [1, 1, 2, 7, 7, 8]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(mul_n([1, -5, 2, -4, -4, 2],-1))),-1),-4)",
    "io_inp": [
      1,
      -5,
      2,
      -4,
      -4,
      2
    ],
    "io_out": [
      1,
      1,
      2,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(mul_n(input,-1))),-1),-4)"
  },
  {
    "input": "input : list = [0, 3, -5, 3, 1]\noutput : list = [-9, -7]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(drop([0, 3, -5, 3, 1],3),-1)),5),-1)",
    "io_inp": [
      0,
      3,
      -5,
      3,
      1
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(drop(input,3),-1)),5),-1)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [2, -22]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(sort_asc([-4, 0]),3),2),2))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      2,
      -22
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(sort_asc(input),3),2),2))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(sort_asc([5, -2]),3),1),1),15)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(sort_asc(input),3),1),1),15)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [5, 6]",
    "output": "generated_output : list = sort_asc(add_n(add_n([4, 3],-3),5))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,-3),5))"
  },
  {
    "input": "input : list = [-1, 4, 1, 3, 3, -1]\noutput : list = [-2, 8, 2, 6, 6, -2]",
    "output": "generated_output : list = mul_n([-1, 4, 1, 3, 3, -1],2)",
    "io_inp": [
      -1,
      4,
      1,
      3,
      3,
      -1
    ],
    "io_out": [
      -2,
      8,
      2,
      6,
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, -1, -5, 4, 3]\noutput : list = [14, 12, 20, 2, 4]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-2, -1, -5, 4, 3],-5),2),-1)",
    "io_inp": [
      -2,
      -1,
      -5,
      4,
      3
    ],
    "io_out": [
      14,
      12,
      20,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-5),2),-1)"
  },
  {
    "input": "input : list = [-1, -2, 4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(reverse(take([-1, -2, 4, -3],2)),1)),2)",
    "io_inp": [
      -1,
      -2,
      4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(reverse(take(input,2)),1)),2)"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(reverse(take(take([4, 0, -4],1),3))),27)",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(take(input,1),3))),27)"
  },
  {
    "input": "input : list = [5, 3, -4, -4, 2, -5]\noutput : list = [-1, -8, -2, -2, -9, -11]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(add_n([5, 3, -4, -4, 2, -5],4)),-1),2),4)",
    "io_inp": [
      5,
      3,
      -4,
      -4,
      2,
      -5
    ],
    "io_out": [
      -1,
      -8,
      -2,
      -2,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(add_n(input,4)),-1),2),4)"
  },
  {
    "input": "input : list = [4, 0, 0, -3, 5]\noutput : list = [0, 6, 6, 14, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sort_asc([4, 0, 0, -3, 5]),3)),2))",
    "io_inp": [
      4,
      0,
      0,
      -3,
      5
    ],
    "io_out": [
      0,
      6,
      6,
      14,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sort_asc(input),3)),2))"
  },
  {
    "input": "input : list = [-4, -4, -4, 3]\noutput : list = [14, 0, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-4, -4, -4, 3],-4)),2)",
    "io_inp": [
      -4,
      -4,
      -4,
      3
    ],
    "io_out": [
      14,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-4)),2)"
  },
  {
    "input": "input : list = [-3, -5, -4]\noutput : list = [-8, -7, -6]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(sort_asc([-3, -5, -4]),3)),26),9)",
    "io_inp": [
      -3,
      -5,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(sort_asc(input),3)),26),9)"
  },
  {
    "input": "input : list = [-5, 0, 4, 4, -3, -4]\noutput : list = [1, 1, -3, -6, -7, -8]",
    "output": "generated_output : list = add_n(add_n(sort_des(reverse(sub_n([-5, 0, 4, 4, -3, -4],5))),4),-2)",
    "io_inp": [
      -5,
      0,
      4,
      4,
      -3,
      -4
    ],
    "io_out": [
      1,
      1,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(reverse(sub_n(input,5))),4),-2)"
  },
  {
    "input": "input : list = [3, 1, 1, -3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 1, 1, -3],1)",
    "io_inp": [
      3,
      1,
      1,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc([-5, 2])",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 4, 3, 3]\noutput : list = [-10, 0, -1, -2, -2]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(reverse([-5, 5, 4, 3, 3]))),5))",
    "io_inp": [
      -5,
      5,
      4,
      3,
      3
    ],
    "io_out": [
      -10,
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(reverse(input))),5))"
  },
  {
    "input": "input : list = [-1, -3, 5, -2, -1]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(drop([-1, -3, 5, -2, -1],3),8)),2),-5)",
    "io_inp": [
      -1,
      -3,
      5,
      -2,
      -1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(drop(input,3),8)),2),-5)"
  },
  {
    "input": "input : list = [3, -1, -4, 4]\noutput : list = [4, -4, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, -4, 4])",
    "io_inp": [
      3,
      -1,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, -5, -1, -5, -1]\noutput : list = [-6, -6, -6, -2, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(mul_n(add_n([-1, -5, -5, -1, -5, -1],-3),1),2)))",
    "io_inp": [
      -1,
      -5,
      -5,
      -1,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(mul_n(add_n(input,-3),1),2)))"
  },
  {
    "input": "input : list = [-3, -3, -1, 2, 3, -4]\noutput : list = [3, 2, -4]",
    "output": "generated_output : list = take(sort_des(reverse(take(drop([-3, -3, -1, 2, 3, -4],3),9))),15)",
    "io_inp": [
      -3,
      -3,
      -1,
      2,
      3,
      -4
    ],
    "io_out": [
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(drop(input,3),9))),15)"
  },
  {
    "input": "input : list = [-2, 5, 1, 2, -5, 4]\noutput : list = [5, 1, 2, -5, 4]",
    "output": "generated_output : list = drop([-2, 5, 1, 2, -5, 4],1)",
    "io_inp": [
      -2,
      5,
      1,
      2,
      -5,
      4
    ],
    "io_out": [
      5,
      1,
      2,
      -5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 1, 2]\noutput : list = [7, 3, 4]",
    "output": "generated_output : list = add_n(take(sub_n(take(sub_n([5, 1, 2],1),5),-2),15),1)",
    "io_inp": [
      5,
      1,
      2
    ],
    "io_out": [
      7,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(sub_n(input,1),5),-2),15),1)"
  },
  {
    "input": "input : list = [0, 4, 0, -1]\noutput : list = [7, 3, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sort_des([0, 4, 0, -1]),18),-2)),1)",
    "io_inp": [
      0,
      4,
      0,
      -1
    ],
    "io_out": [
      7,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sort_des(input),18),-2)),1)"
  },
  {
    "input": "input : list = [2, 3, 0, 2]\noutput : list = [-11]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(take([2, 3, 0, 2],1),-5),1)))",
    "io_inp": [
      2,
      3,
      0,
      2
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(take(input,1),-5),1)))"
  },
  {
    "input": "input : list = [0, 4, 0, -5, -2, 2]\noutput : list = [0, -4, 0, 5, 2, -2]",
    "output": "generated_output : list = mul_n([0, 4, 0, -5, -2, 2],-1)",
    "io_inp": [
      0,
      4,
      0,
      -5,
      -2,
      2
    ],
    "io_out": [
      0,
      -4,
      0,
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, 2, -5]\noutput : list = [80, -32, -64]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(mul_n([4, 2, -5],-4),5),4)))",
    "io_inp": [
      4,
      2,
      -5
    ],
    "io_out": [
      80,
      -32,
      -64
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(mul_n(input,-4),5),4)))"
  },
  {
    "input": "input : list = [-1, 5, 3, -4, 4, -5]\noutput : list = [-6, 3, -5, 2, 4, -2]",
    "output": "generated_output : list = sub_n(reverse([-1, 5, 3, -4, 4, -5]),1)",
    "io_inp": [
      -1,
      5,
      3,
      -4,
      4,
      -5
    ],
    "io_out": [
      -6,
      3,
      -5,
      2,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, -4, 2]\noutput : list = [-30, 0, 0]",
    "output": "generated_output : list = reverse(mul_n(add_n([-4, -4, 2],4),-5))",
    "io_inp": [
      -4,
      -4,
      2
    ],
    "io_out": [
      -30,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,4),-5))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(sort_asc([-2, -3]),3))))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-1, -5, 2, 3, -1, 4]\noutput : list = [4, 0, 7, 8, 4, 9]",
    "output": "generated_output : list = sub_n([-1, -5, 2, 3, -1, 4],-5)",
    "io_inp": [
      -1,
      -5,
      2,
      3,
      -1,
      4
    ],
    "io_out": [
      4,
      0,
      7,
      8,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -2, -5, 1, 5, -5]\noutput : list = [28, 28, 23, 13]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(mul_n([-4, -2, -5, 1, 5, -5],-5),-1)),4),4)",
    "io_inp": [
      -4,
      -2,
      -5,
      1,
      5,
      -5
    ],
    "io_out": [
      28,
      28,
      23,
      13
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(mul_n(input,-5),-1)),4),4)"
  },
  {
    "input": "input : list = [4, -2, -3, 1]\noutput : list = [-1, -4, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n([4, -2, -3, 1],5))",
    "io_inp": [
      4,
      -2,
      -3,
      1
    ],
    "io_out": [
      -1,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [4, 0, 5, -4, -4]\noutput : list = [5, 4, 0, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc([4, 0, 5, -4, -4]))",
    "io_inp": [
      4,
      0,
      5,
      -4,
      -4
    ],
    "io_out": [
      5,
      4,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -1, 3, 5]\noutput : list = [5, 3, 2, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_des([2, -1, 3, 5])))",
    "io_inp": [
      2,
      -1,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-5, 0, -1, 4, 4]\noutput : list = [-2, 6, 8, 16, 16]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(add_n([-5, 0, -1, 4, 4],-1),5),2)),37)",
    "io_inp": [
      -5,
      0,
      -1,
      4,
      4
    ],
    "io_out": [
      -2,
      6,
      8,
      16,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(add_n(input,-1),5),2)),37)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n([2, 2],-4))),-5),5)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n(input,-4))),-5),5)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sub_n([-4, 1],1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-7, 2]",
    "output": "generated_output : list = take(take(add_n(take(sort_asc([4, -5]),7),-2),7),19)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(sort_asc(input),7),-2),7),19)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(take([1, -5, -2],1),-4)",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-1, -1, -3, 5, -3, 5]\noutput : list = [100, 100, 50, 50, -100, -100]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n([-1, -1, -3, 5, -3, 5],1),5),-5))",
    "io_inp": [
      -1,
      -1,
      -3,
      5,
      -3,
      5
    ],
    "io_out": [
      100,
      100,
      50,
      50,
      -100,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(input,1),5),-5))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc([-1, -3])",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-20, -20]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(reverse([5, 5]),11),2)),-2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(reverse(input),11),2)),-2)"
  },
  {
    "input": "input : list = [4, 0, -3, -4]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(sort_asc(take(sort_des([4, 0, -3, -4]),1))),31)",
    "io_inp": [
      4,
      0,
      -3,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(sort_des(input),1))),31)"
  },
  {
    "input": "input : list = [-2, -5, -3, 3]\noutput : list = [-4, -2, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(add_n([-2, -5, -3, 3],1)))))",
    "io_inp": [
      -2,
      -5,
      -3,
      3
    ],
    "io_out": [
      -4,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(add_n(input,1)))))"
  },
  {
    "input": "input : list = [1, 2, -1, 5, 0]\noutput : list = [0, 5, -1, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, -1, 5, 0])",
    "io_inp": [
      1,
      2,
      -1,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      -1,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 1, 5, -1, -5, 0]\noutput : list = [-9, -7, -3, -9, -13, -8]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(add_n([-1, 1, 5, -1, -5, 0],-3),-3)),2))",
    "io_inp": [
      -1,
      1,
      5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -9,
      -7,
      -3,
      -9,
      -13,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(add_n(input,-3),-3)),2))"
  },
  {
    "input": "input : list = [-4, -4, -3, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = drop([-4, -4, -3, -3, 3],3)",
    "io_inp": [
      -4,
      -4,
      -3,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, -2, -3, 5, -3]\noutput : list = [-3, -3, -2, -1, 5]",
    "output": "generated_output : list = sort_asc([-1, -2, -3, 5, -3])",
    "io_inp": [
      -1,
      -2,
      -3,
      5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, -2, 3, 0, -3]\noutput : list = [12, 9, 6, 3, 0, -9]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(sort_des([-1, -4, -2, 3, 0, -3])),-3),15))",
    "io_inp": [
      -1,
      -4,
      -2,
      3,
      0,
      -3
    ],
    "io_out": [
      12,
      9,
      6,
      3,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(sort_des(input)),-3),15))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n([-4, -4],1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [23, 38, 18]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(add_n([2, 5, 1],5),5),4),3),5)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      23,
      38,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(add_n(input,5),5),4),3),5)"
  },
  {
    "input": "input : list = [-1, 5, -1, 3, 0]\noutput : list = [-1, 3, 0]",
    "output": "generated_output : list = drop([-1, 5, -1, 3, 0],2)",
    "io_inp": [
      -1,
      5,
      -1,
      3,
      0
    ],
    "io_out": [
      -1,
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, -4, -1, 1, 5]\noutput : list = [-20, -4]",
    "output": "generated_output : list = reverse(mul_n(drop([-5, -4, -1, 1, 5],3),-4))",
    "io_inp": [
      -5,
      -4,
      -1,
      1,
      5
    ],
    "io_out": [
      -20,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,3),-4))"
  },
  {
    "input": "input : list = [5, 1, 5, 1, 5]\noutput : list = [-100, -100, -100, -20, -20]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(mul_n([5, 1, 5, 1, 5],5))),36),-4)",
    "io_inp": [
      5,
      1,
      5,
      1,
      5
    ],
    "io_out": [
      -100,
      -100,
      -100,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(mul_n(input,5))),36),-4)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [18, -12]",
    "output": "generated_output : list = mul_n(reverse(add_n([-5, 5],1)),3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      18,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,1)),3)"
  },
  {
    "input": "input : list = [4, 5, 5]\noutput : list = [7, 7, 6]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des([4, 5, 5]),15)),-2),1)",
    "io_inp": [
      4,
      5,
      5
    ],
    "io_out": [
      7,
      7,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des(input),15)),-2),1)"
  },
  {
    "input": "input : list = [3, 3, -1]\noutput : list = [-1, 3, 3]",
    "output": "generated_output : list = reverse([3, 3, -1])",
    "io_inp": [
      3,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des([-4, -4, 3]))",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(add_n([5, 3],-4))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [-3, 0, -2, -5]\noutput : list = [5, -35, -55, -95]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(mul_n([-3, 0, -2, -5],-4),-5)),5))",
    "io_inp": [
      -3,
      0,
      -2,
      -5
    ],
    "io_out": [
      5,
      -35,
      -55,
      -95
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(mul_n(input,-4),-5)),5))"
  },
  {
    "input": "input : list = [-4, -5, -3, 4]\noutput : list = [16, -12, -16, -20]",
    "output": "generated_output : list = mul_n(sort_des(reverse([-4, -5, -3, 4])),4)",
    "io_inp": [
      -4,
      -5,
      -3,
      4
    ],
    "io_out": [
      16,
      -12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),4)"
  },
  {
    "input": "input : list = [-2, -1, 0, 4, -2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sort_asc(drop(reverse(mul_n([-2, -1, 0, 4, -2],4)),3))",
    "io_inp": [
      -2,
      -1,
      0,
      4,
      -2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(mul_n(input,4)),3))"
  },
  {
    "input": "input : list = [0, -2, 4, 5, 4, -4]\noutput : list = [4, 3, 3, -1, -3, -5]",
    "output": "generated_output : list = sort_des(add_n([0, -2, 4, 5, 4, -4],-1))",
    "io_inp": [
      0,
      -2,
      4,
      5,
      4,
      -4
    ],
    "io_out": [
      4,
      3,
      3,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 1, -1],1)",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -3, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = drop(sort_des(add_n(mul_n(reverse([-1, 5, -3, -4]),1),-1)),2)",
    "io_inp": [
      -1,
      5,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(mul_n(reverse(input),1),-1)),2)"
  },
  {
    "input": "input : list = [-3, -3, 0]\noutput : list = [12, 12, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(sort_des([-3, -3, 0]),8)),-4))",
    "io_inp": [
      -3,
      -3,
      0
    ],
    "io_out": [
      12,
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(sort_des(input),8)),-4))"
  },
  {
    "input": "input : list = [5, 2, -1, -5]\noutput : list = [-2, 2, 5, 8]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(sort_asc([5, 2, -1, -5]),3),8)))",
    "io_inp": [
      5,
      2,
      -1,
      -5
    ],
    "io_out": [
      -2,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(sort_asc(input),3),8)))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([4, 1]),3))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [4, 1, 4, -2]\noutput : list = [4, 4, 1, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(sort_des([4, 1, 4, -2])))),31)",
    "io_inp": [
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      4,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(sort_des(input)))),31)"
  },
  {
    "input": "input : list = [1, 3, -5, -3, 0, 2]\noutput : list = [-5, -3, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc([1, 3, -5, -3, 0, 2])",
    "io_inp": [
      1,
      3,
      -5,
      -3,
      0,
      2
    ],
    "io_out": [
      -5,
      -3,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-9, -8, 0]",
    "output": "generated_output : list = sub_n(sort_asc([-4, -3, 5]),5)",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -9,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [0, 0, -4, -3]\noutput : list = [4, 3, 0, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_asc(sort_des([0, 0, -4, -3])),-1),19))",
    "io_inp": [
      0,
      0,
      -4,
      -3
    ],
    "io_out": [
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_asc(sort_des(input)),-1),19))"
  },
  {
    "input": "input : list = [-1, 3, -4, 3]\noutput : list = [-7, -4, 0, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des([-1, 3, -4, 3])),3)",
    "io_inp": [
      -1,
      3,
      -4,
      3
    ],
    "io_out": [
      -7,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(input)),3)"
  },
  {
    "input": "input : list = [5, -5, -4, -5]\noutput : list = [5, -4, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([5, -5, -4, -5]))",
    "io_inp": [
      5,
      -5,
      -4,
      -5
    ],
    "io_out": [
      5,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [-6, -5, 2]",
    "output": "generated_output : list = sub_n([-4, -3, 4],2)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      -6,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, 1, 0, 4]\noutput : list = [0, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(drop([3, 1, 0, 4],2),11))),5)",
    "io_inp": [
      3,
      1,
      0,
      4
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(drop(input,2),11))),5)"
  },
  {
    "input": "input : list = [-4, -5, -3]\noutput : list = [-51, -41, -31]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n([-4, -5, -3],-5)),-2),1)",
    "io_inp": [
      -4,
      -5,
      -3
    ],
    "io_out": [
      -51,
      -41,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(input,-5)),-2),1)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(reverse([-3, -4, 0]),12))),-3)",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(reverse(input),12))),-3)"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [40, -140, -20]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(add_n([2, -4, 5],-2),4),-4)),5)",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      40,
      -140,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(add_n(input,-2),4),-4)),5)"
  },
  {
    "input": "input : list = [2, 0, 0]\noutput : list = [9, 7, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(sort_des([2, 0, 0]),10)),5),-2)",
    "io_inp": [
      2,
      0,
      0
    ],
    "io_out": [
      9,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(sort_des(input),10)),5),-2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [2, -7]",
    "output": "generated_output : list = sub_n(sub_n(reverse([-4, 5]),2),1)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),2),1)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [1, -4, -4]",
    "output": "generated_output : list = reverse(reverse([1, -4, -4]))",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -2, 5, -1]\noutput : list = [10, 4, 3, 2]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(reverse([-3, -2, 5, -1])),1)),-5)",
    "io_inp": [
      -3,
      -2,
      5,
      -1
    ],
    "io_out": [
      10,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(reverse(input)),1)),-5)"
  },
  {
    "input": "input : list = [3, 2, 0]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(take([3, 2, 0],1),-5)",
    "io_inp": [
      3,
      2,
      0
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(add_n([-1, 3],-1),10),4)))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(add_n(input,-1),10),4)))"
  },
  {
    "input": "input : list = [-1, 2, 2, 2, -5, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sub_n(take(take(sort_des([-1, 2, 2, 2, -5, 0]),1),12),2),3)",
    "io_inp": [
      -1,
      2,
      2,
      2,
      -5,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(sort_des(input),1),12),2),3)"
  },
  {
    "input": "input : list = [-2, -1, 5]\noutput : list = [10]",
    "output": "generated_output : list = drop(mul_n([-2, -1, 5],2),2)",
    "io_inp": [
      -2,
      -1,
      5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,2),2)"
  },
  {
    "input": "input : list = [2, 4, -4, 4]\noutput : list = [8, 16]",
    "output": "generated_output : list = mul_n(sort_asc(take([2, 4, -4, 4],2)),4)",
    "io_inp": [
      2,
      4,
      -4,
      4
    ],
    "io_out": [
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,2)),4)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [-6, 9, 9]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse([-3, -3, 2]),-3),3))",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      -6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(input),-3),3))"
  },
  {
    "input": "input : list = [-4, -1, 0, 0]\noutput : list = [1, 1, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(add_n([-4, -1, 0, 0],-1)),2)))",
    "io_inp": [
      -4,
      -1,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(add_n(input,-1)),2)))"
  },
  {
    "input": "input : list = [3, 1, 0, -1, -4]\noutput : list = [15, 5, 0, -5, -20]",
    "output": "generated_output : list = mul_n([3, 1, 0, -1, -4],5)",
    "io_inp": [
      3,
      1,
      0,
      -1,
      -4
    ],
    "io_out": [
      15,
      5,
      0,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 0, -5, -3, -5]\noutput : list = [6, 12, 6, 21, 24]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n([1, 0, -5, -3, -5],4),3)),3)",
    "io_inp": [
      1,
      0,
      -5,
      -3,
      -5
    ],
    "io_out": [
      6,
      12,
      6,
      21,
      24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(input,4),3)),3)"
  },
  {
    "input": "input : list = [0, 4, -2, 1, 4]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(take([0, 4, -2, 1, 4],1)),1)))",
    "io_inp": [
      0,
      4,
      -2,
      1,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(take(input,1)),1)))"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [16, -12, -12]",
    "output": "generated_output : list = mul_n([4, -3, -3],4)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      16,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, 5, 2, -5, 4, -2]\noutput : list = [-10, -7, -7, -3, -1, 0]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(reverse([-2, 5, 2, -5, 4, -2])),-5),22))",
    "io_inp": [
      -2,
      5,
      2,
      -5,
      4,
      -2
    ],
    "io_out": [
      -10,
      -7,
      -7,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(reverse(input)),-5),22))"
  },
  {
    "input": "input : list = [4, 1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(drop([4, 1, 3],1))",
    "io_inp": [
      4,
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [2, 3, 2, 5]\noutput : list = [3, 0, 1, 0]",
    "output": "generated_output : list = take(reverse(add_n([2, 3, 2, 5],-2)),26)",
    "io_inp": [
      2,
      3,
      2,
      5
    ],
    "io_out": [
      3,
      0,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,-2)),26)"
  },
  {
    "input": "input : list = [-2, -1, -3, -4, -3, -2]\noutput : list = [-5, -6, -7, -6, -4, -5]",
    "output": "generated_output : list = reverse(add_n([-2, -1, -3, -4, -3, -2],-3))",
    "io_inp": [
      -2,
      -1,
      -3,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -6,
      -7,
      -6,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [3, -1, 5, 3, -1, 0]\noutput : list = [7, 3, 9, 7]",
    "output": "generated_output : list = sub_n(mul_n(take(take(sub_n([3, -1, 5, 3, -1, 0],-3),4),18),1),-1)",
    "io_inp": [
      3,
      -1,
      5,
      3,
      -1,
      0
    ],
    "io_out": [
      7,
      3,
      9,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(take(sub_n(input,-3),4),18),1),-1)"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = sort_asc([2, -2, -4])",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, 1, -2, 1, 4]\noutput : list = [-4, -1, -1, 1, 2]",
    "output": "generated_output : list = take(add_n(sort_asc(drop(sort_asc([3, -2, 1, -2, 1, 4]),1)),-2),31)",
    "io_inp": [
      3,
      -2,
      1,
      -2,
      1,
      4
    ],
    "io_out": [
      -4,
      -1,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(drop(sort_asc(input),1)),-2),31)"
  },
  {
    "input": "input : list = [-4, -3, 2, 4, 4]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = take([-4, -3, 2, 4, 4],3)",
    "io_inp": [
      -4,
      -3,
      2,
      4,
      4
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, -2, -2, -2, -1]\noutput : list = [0, 4, 4, 4, 4]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(mul_n([-2, -2, -2, -2, -1],-4)),4)),6)",
    "io_inp": [
      -2,
      -2,
      -2,
      -2,
      -1
    ],
    "io_out": [
      0,
      4,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(mul_n(input,-4)),4)),6)"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = drop([-3, -1, 1],1)",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -2, 5, 3]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n(take([0, -2, 5, 3],1),-4)),22),5)",
    "io_inp": [
      0,
      -2,
      5,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(take(input,1),-4)),22),5)"
  },
  {
    "input": "input : list = [-1, 2, 5]\noutput : list = [48, 36, 24]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(mul_n([-1, 2, 5],1),-3),-4),4))",
    "io_inp": [
      -1,
      2,
      5
    ],
    "io_out": [
      48,
      36,
      24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(mul_n(input,1),-3),-4),4))"
  },
  {
    "input": "input : list = [4, -3, -5]\noutput : list = [-22, 13, 23]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(sort_asc([4, -3, -5]))),-5),2)",
    "io_inp": [
      4,
      -3,
      -5
    ],
    "io_out": [
      -22,
      13,
      23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(sort_asc(input))),-5),2)"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [-8, -5, 1]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n([2, -4, 5],2)),-1),-1))",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      -8,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n(input,2)),-1),-1))"
  },
  {
    "input": "input : list = [5, -5, -1, 1, -3]\noutput : list = [-6, -4, 0]",
    "output": "generated_output : list = sub_n(take(drop(sort_asc(reverse([5, -5, -1, 1, -3])),2),33),5)",
    "io_inp": [
      5,
      -5,
      -1,
      1,
      -3
    ],
    "io_out": [
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(sort_asc(reverse(input)),2),33),5)"
  },
  {
    "input": "input : list = [-5, -4, -2, -1, -5]\noutput : list = [-5, -6, -8, -9]",
    "output": "generated_output : list = sub_n(sort_des(drop([-5, -4, -2, -1, -5],1)),4)",
    "io_inp": [
      -5,
      -4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),4)"
  },
  {
    "input": "input : list = [5, -4, -4, -1, 1]\noutput : list = [-26, -26, -8, 4, 28]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(sort_des([5, -4, -4, -1, 1])),3),1),2)",
    "io_inp": [
      5,
      -4,
      -4,
      -1,
      1
    ],
    "io_out": [
      -26,
      -26,
      -8,
      4,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(sort_des(input)),3),1),2)"
  },
  {
    "input": "input : list = [0, 4, -4, -5, -1]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take([0, 4, -4, -5, -1],1),2),3),-5))",
    "io_inp": [
      0,
      4,
      -4,
      -5,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take(input,1),2),3),-5))"
  },
  {
    "input": "input : list = [-1, -5, -2, 5, -3, -3]\noutput : list = [4, -3, -4, -4, -6]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(drop([-1, -5, -2, 5, -3, -3],1)),37)),-1)",
    "io_inp": [
      -1,
      -5,
      -2,
      5,
      -3,
      -3
    ],
    "io_out": [
      4,
      -3,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(drop(input,1)),37)),-1)"
  },
  {
    "input": "input : list = [-2, -4, 5, -4, -5]\noutput : list = [5, -2, -4, -4, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_des([-2, -4, 5, -4, -5]))),43))",
    "io_inp": [
      -2,
      -4,
      5,
      -4,
      -5
    ],
    "io_out": [
      5,
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_des(input))),43))"
  },
  {
    "input": "input : list = [-1, 0, -2, -5, 5]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(add_n(sub_n(take(take([-1, 0, -2, -5, 5],1),10),2),-5),-3)",
    "io_inp": [
      -1,
      0,
      -2,
      -5,
      5
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(take(take(input,1),10),2),-5),-3)"
  },
  {
    "input": "input : list = [2, -5, 2, 4, 3]\noutput : list = [-3, -10]",
    "output": "generated_output : list = sub_n(take(take([2, -5, 2, 4, 3],2),8),5)",
    "io_inp": [
      2,
      -5,
      2,
      4,
      3
    ],
    "io_out": [
      -3,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,2),8),5)"
  },
  {
    "input": "input : list = [5, 1, 4, 1, 1]\noutput : list = [4, 3, 0, 0, 0]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_des([5, 1, 4, 1, 1]))),3),4)",
    "io_inp": [
      5,
      1,
      4,
      1,
      1
    ],
    "io_out": [
      4,
      3,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_des(input))),3),4)"
  },
  {
    "input": "input : list = [3, 2, -2, -4]\noutput : list = [-22, -17, 3, 13]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des([3, 2, -2, -4])),2),-5),-3)",
    "io_inp": [
      3,
      2,
      -2,
      -4
    ],
    "io_out": [
      -22,
      -17,
      3,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des(input)),2),-5),-3)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [-4, -1, 3]",
    "output": "generated_output : list = take(reverse([3, -1, -4]),8)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(input),8)"
  },
  {
    "input": "input : list = [2, 4, 1]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = sort_asc(add_n([2, 4, 1],1))",
    "io_inp": [
      2,
      4,
      1
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [-5, -3, -5]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse(add_n(take(reverse(drop([-5, -3, -5],1)),15),4))",
    "io_inp": [
      -5,
      -3,
      -5
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(drop(input,1)),15),4))"
  },
  {
    "input": "input : list = [-4, -5, 3, 4, 3, -2]\noutput : list = [-2, 3, 4, 3, -5, -4]",
    "output": "generated_output : list = take(reverse(reverse(reverse([-4, -5, 3, 4, 3, -2]))),24)",
    "io_inp": [
      -4,
      -5,
      3,
      4,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      4,
      3,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(input))),24)"
  },
  {
    "input": "input : list = [-1, -3, 0, -2, -2, 2]\noutput : list = [5, 3, 2, 1, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des([-1, -3, 0, -2, -2, 2]),-3)",
    "io_inp": [
      -1,
      -3,
      0,
      -2,
      -2,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-5, 5, 4, -4]\noutput : list = [5, 4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 5, 4, -4])",
    "io_inp": [
      -5,
      5,
      4,
      -4
    ],
    "io_out": [
      5,
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -4, -4]\noutput : list = [-1, -1, -1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([0, -4, -4, -4]),-3))",
    "io_inp": [
      0,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [-5, 2, 5, 3]\noutput : list = [5, 3, 2, -5]",
    "output": "generated_output : list = sort_des([-5, 2, 5, 3])",
    "io_inp": [
      -5,
      2,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, -4, -3, 2]\noutput : list = [10, -15, -20, 0, 10]",
    "output": "generated_output : list = reverse(mul_n([2, 0, -4, -3, 2],5))",
    "io_inp": [
      2,
      0,
      -4,
      -3,
      2
    ],
    "io_out": [
      10,
      -15,
      -20,
      0,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [2, 3, 1]",
    "output": "generated_output : list = add_n([4, 5, 3],-2)",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      2,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, -1, -3, 5]\noutput : list = [2, 0, -4, -6]",
    "output": "generated_output : list = reverse(add_n(sort_asc([3, -1, -3, 5]),-3))",
    "io_inp": [
      3,
      -1,
      -3,
      5
    ],
    "io_out": [
      2,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(input),-3))"
  },
  {
    "input": "input : list = [-2, -4, 0, 1]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = reverse(reverse(sort_asc(drop(reverse([-2, -4, 0, 1]),1))))",
    "io_inp": [
      -2,
      -4,
      0,
      1
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(drop(reverse(input),1))))"
  },
  {
    "input": "input : list = [4, 3, -4, 0, -5]\noutput : list = [0, -3, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(drop([4, 3, -4, 0, -5],1)),3)))",
    "io_inp": [
      4,
      3,
      -4,
      0,
      -5
    ],
    "io_out": [
      0,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(drop(input,1)),3)))"
  },
  {
    "input": "input : list = [-3, -5, 2, 4, 3, -5]\noutput : list = [21, 37]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(take([-3, -5, 2, 4, 3, -5],2),-2),4),3),28)",
    "io_inp": [
      -3,
      -5,
      2,
      4,
      3,
      -5
    ],
    "io_out": [
      21,
      37
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(take(input,2),-2),4),3),28)"
  },
  {
    "input": "input : list = [-3, -3, -1, -4, -3]\noutput : list = [-1, -3, -3, -3, -4]",
    "output": "generated_output : list = sort_des([-3, -3, -1, -4, -3])",
    "io_inp": [
      -3,
      -3,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [3, -6]",
    "output": "generated_output : list = mul_n(sort_des(reverse(drop([1, 1, -2],1))),3)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(drop(input,1))),3)"
  },
  {
    "input": "input : list = [-2, 3, -2, -3, 2, -3]\noutput : list = [60, 44, -36, 44]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(take([-2, 3, -2, -3, 2, -3],4)),4),-3),-4)",
    "io_inp": [
      -2,
      3,
      -2,
      -3,
      2,
      -3
    ],
    "io_out": [
      60,
      44,
      -36,
      44
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(take(input,4)),4),-3),-4)"
  },
  {
    "input": "input : list = [5, 4, 0, 4, 4]\noutput : list = [4, 3, 3, 3, -1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_des([5, 4, 0, 4, 4]))),-1))",
    "io_inp": [
      5,
      4,
      0,
      4,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [15, -15]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(sort_des([2, 0]),3),-3)),-5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(sort_des(input),3),-3)),-5)"
  },
  {
    "input": "input : list = [-4, 2, -2, 4, 0]\noutput : list = [4, 2, 0, -2, -4]",
    "output": "generated_output : list = sort_des([-4, 2, -2, 4, 0])",
    "io_inp": [
      -4,
      2,
      -2,
      4,
      0
    ],
    "io_out": [
      4,
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 5, 5, 2, -2]\noutput : list = [-7, -23, -27, -35, -35]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(add_n(reverse([3, 5, 5, 2, -2]),5)),-4),5)",
    "io_inp": [
      3,
      5,
      5,
      2,
      -2
    ],
    "io_out": [
      -7,
      -23,
      -27,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(add_n(reverse(input),5)),-4),5)"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [1, -1, -7]",
    "output": "generated_output : list = add_n([5, 3, -3],-4)",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 5, -4],1)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -1, -4]\noutput : list = [2, -4, -4, -7]",
    "output": "generated_output : list = sub_n(sort_des(add_n([-1, 5, -1, -4],-1)),2)",
    "io_inp": [
      -1,
      5,
      -1,
      -4
    ],
    "io_out": [
      2,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(input,-1)),2)"
  },
  {
    "input": "input : list = [4, 5, -3, -5, -4, -5]\noutput : list = [32, 32, 28, 24, -4, -8]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(sub_n([4, 5, -3, -5, -4, -5],2))),-1),-4)",
    "io_inp": [
      4,
      5,
      -3,
      -5,
      -4,
      -5
    ],
    "io_out": [
      32,
      32,
      28,
      24,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(sub_n(input,2))),-1),-4)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [5, 15]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(sort_asc([0, -2])),-1),-5),27)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      5,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(sort_asc(input)),-1),-5),27)"
  },
  {
    "input": "input : list = [4, -2, 0, 3, -3, -2]\noutput : list = [10, 4, 6, 9, 3, 4]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(sub_n([4, -2, 0, 3, -3, -2],-4))),35),-2)",
    "io_inp": [
      4,
      -2,
      0,
      3,
      -3,
      -2
    ],
    "io_out": [
      10,
      4,
      6,
      9,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(sub_n(input,-4))),35),-2)"
  },
  {
    "input": "input : list = [-3, -1, -4, 5]\noutput : list = [21, 18, 12, -6]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(sort_asc([-3, -1, -4, 5]),4),26),-1),-3)",
    "io_inp": [
      -3,
      -1,
      -4,
      5
    ],
    "io_out": [
      21,
      18,
      12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(sort_asc(input),4),26),-1),-3)"
  },
  {
    "input": "input : list = [0, -1, -3, -3, 5]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = take([0, -1, -3, -3, 5],3)",
    "io_inp": [
      0,
      -1,
      -3,
      -3,
      5
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-6, 0]",
    "output": "generated_output : list = mul_n(take(sub_n([-4, -1],-1),8),2)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-1),8),2)"
  },
  {
    "input": "input : list = [-5, -1, 4, 4, -3]\noutput : list = [4, 4, -1, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -1, 4, 4, -3])",
    "io_inp": [
      -5,
      -1,
      4,
      4,
      -3
    ],
    "io_out": [
      4,
      4,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [4, 4]",
    "output": "generated_output : list = add_n(reverse([5, 5]),-1)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [1, -4, -2, 5]\noutput : list = [5, 1, -2, -4]",
    "output": "generated_output : list = sort_des([1, -4, -2, 5])",
    "io_inp": [
      1,
      -4,
      -2,
      5
    ],
    "io_out": [
      5,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = sort_asc([3, 0, 1])",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -2, -4, -3, -4, -1]\noutput : list = [0, 4, 8, 12, 16, 16]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(sort_asc([0, -2, -4, -3, -4, -1]),15))),-4)",
    "io_inp": [
      0,
      -2,
      -4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      0,
      4,
      8,
      12,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(sort_asc(input),15))),-4)"
  },
  {
    "input": "input : list = [3, 4, -4, -1]\noutput : list = [3, 2, -2, -5]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(sub_n([3, 4, -4, -1],-2)),-3),-4),-4)",
    "io_inp": [
      3,
      4,
      -4,
      -1
    ],
    "io_out": [
      3,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(sub_n(input,-2)),-3),-4),-4)"
  },
  {
    "input": "input : list = [4, -4, -3, -1, -3, 0]\noutput : list = [5, 1, 0, -2, -2, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(take(sub_n([4, -4, -3, -1, -3, 0],2),20)),34),-3)",
    "io_inp": [
      4,
      -4,
      -3,
      -1,
      -3,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(sub_n(input,2),20)),34),-3)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sub_n(sort_des(drop([3, -4, -2],1)),-1)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [5, 0, 3, -5, 5, 3]\noutput : list = [-5, 0, 3, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(reverse([5, 0, 3, -5, 5, 3]),7))))",
    "io_inp": [
      5,
      0,
      3,
      -5,
      5,
      3
    ],
    "io_out": [
      -5,
      0,
      3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(reverse(input),7))))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [19, 9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(reverse([4, 2]),5)),-1))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      19,
      9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(reverse(input),5)),-1))"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [-20, 0, 0]",
    "output": "generated_output : list = mul_n([-5, 0, 0],4)",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      -20,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, -9]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(add_n([0, 3],-3),-3),-5)),-4)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(add_n(input,-3),-3),-5)),-4)"
  },
  {
    "input": "input : list = [4, -4, 1, 2, 1]\noutput : list = [0, -40, -15, -10, -15]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(add_n([4, -4, 1, 2, 1],-3),5),-5),1),1)",
    "io_inp": [
      4,
      -4,
      1,
      2,
      1
    ],
    "io_out": [
      0,
      -40,
      -15,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(add_n(input,-3),5),-5),1),1)"
  },
  {
    "input": "input : list = [1, 4, -2, -5, 3, -4]\noutput : list = [-4, -16, 8, 20, -12, 16]",
    "output": "generated_output : list = mul_n([1, 4, -2, -5, 3, -4],-4)",
    "io_inp": [
      1,
      4,
      -2,
      -5,
      3,
      -4
    ],
    "io_out": [
      -4,
      -16,
      8,
      20,
      -12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -3, -4, 4, 1, 2]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = drop(reverse([-2, -3, -4, 4, 1, 2]),3)",
    "io_inp": [
      -2,
      -3,
      -4,
      4,
      1,
      2
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = drop(reverse(input),3)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [6, 1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_des([3, -2])),1)),-4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_des(input)),1)),-4)"
  },
  {
    "input": "input : list = [-3, -4, -2, -4, -2, 3]\noutput : list = [3, 5, 1, 5, 1, -9]",
    "output": "generated_output : list = add_n(take(take(sub_n(mul_n([-3, -4, -2, -4, -2, 3],-2),-2),15),37),-5)",
    "io_inp": [
      -3,
      -4,
      -2,
      -4,
      -2,
      3
    ],
    "io_out": [
      3,
      5,
      1,
      5,
      1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(mul_n(input,-2),-2),15),37),-5)"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [-2, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 4, -2])",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, -4, 0, -2, -4]\noutput : list = [-6, -5, -8, -4, -6, -8]",
    "output": "generated_output : list = sub_n([-2, -1, -4, 0, -2, -4],4)",
    "io_inp": [
      -2,
      -1,
      -4,
      0,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -8,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [4, 11]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(sub_n([3, -4],-5),-3)),10),2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      4,
      11
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(sub_n(input,-5),-3)),10),2)"
  },
  {
    "input": "input : list = [-2, -3, 3, -2, -3]\noutput : list = [-2, -7, -7, -8, -8]",
    "output": "generated_output : list = sort_des(add_n([-2, -3, 3, -2, -3],-5))",
    "io_inp": [
      -2,
      -3,
      3,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -7,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [-4, -5, -1]\noutput : list = [-5, -4, -1]",
    "output": "generated_output : list = sort_asc([-4, -5, -1])",
    "io_inp": [
      -4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, 3, 2, 3]\noutput : list = [0, -10, -15, -15, -25]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sort_asc([5, 0, 3, 2, 3])))),-5)",
    "io_inp": [
      5,
      0,
      3,
      2,
      3
    ],
    "io_out": [
      0,
      -10,
      -15,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [-3, 4, -4, 3, -1, -3]\noutput : list = [-18, -15, -15, -9, 3, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sub_n([-3, 4, -4, 3, -1, -3],1)),1),3))",
    "io_inp": [
      -3,
      4,
      -4,
      3,
      -1,
      -3
    ],
    "io_out": [
      -18,
      -15,
      -15,
      -9,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sub_n(input,1)),1),3))"
  },
  {
    "input": "input : list = [-1, -5, -3]\noutput : list = [-5, -15, -25]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc([-1, -5, -3]),5)))",
    "io_inp": [
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [2, 3, -2, -4, 0, -2]\noutput : list = [2, 7, 17, 27, 27, 37]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(add_n([2, 3, -2, -4, 0, -2],-4),19),-5),3))",
    "io_inp": [
      2,
      3,
      -2,
      -4,
      0,
      -2
    ],
    "io_out": [
      2,
      7,
      17,
      27,
      27,
      37
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(add_n(input,-4),19),-5),3))"
  },
  {
    "input": "input : list = [4, 2, -1, 3, -1, 5]\noutput : list = [3, 2, 1, 0, -3, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_asc(reverse([4, 2, -1, 3, -1, 5]))),22),2)",
    "io_inp": [
      4,
      2,
      -1,
      3,
      -1,
      5
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_asc(reverse(input))),22),2)"
  },
  {
    "input": "input : list = [-4, 0, 0, -5, -2, -4]\noutput : list = [0, -5, -2, -4]",
    "output": "generated_output : list = drop([-4, 0, 0, -5, -2, -4],2)",
    "io_inp": [
      -4,
      0,
      0,
      -5,
      -2,
      -4
    ],
    "io_out": [
      0,
      -5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, -8]",
    "output": "generated_output : list = take(sub_n(reverse([-3, 2]),5),23)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),5),23)"
  },
  {
    "input": "input : list = [-3, -3, 0, 3, -2]\noutput : list = [-4, 1, -2, -5, -5]",
    "output": "generated_output : list = reverse(add_n(reverse(take(reverse([-3, -3, 0, 3, -2]),14)),-2))",
    "io_inp": [
      -3,
      -3,
      0,
      3,
      -2
    ],
    "io_out": [
      -4,
      1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(reverse(input),14)),-2))"
  },
  {
    "input": "input : list = [0, -2, 4, -1, 4]\noutput : list = [0, -5, 0, -6, -4]",
    "output": "generated_output : list = reverse(sub_n(sub_n([0, -2, 4, -1, 4],-1),5))",
    "io_inp": [
      0,
      -2,
      4,
      -1,
      4
    ],
    "io_out": [
      0,
      -5,
      0,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,-1),5))"
  },
  {
    "input": "input : list = [-1, -3, 5, 3]\noutput : list = [0, -2, -6, -8]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(sub_n([-1, -3, 5, 3],4),10),-1)))",
    "io_inp": [
      -1,
      -3,
      5,
      3
    ],
    "io_out": [
      0,
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(sub_n(input,4),10),-1)))"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take(reverse(take(reverse(drop([1, -5, 5],1)),3)),6)",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(drop(input,1)),3)),6)"
  },
  {
    "input": "input : list = [5, 5, -4, -5]\noutput : list = [-6, -5, 4, 4]",
    "output": "generated_output : list = add_n(take(take(add_n(reverse([5, 5, -4, -5]),-2),20),22),1)",
    "io_inp": [
      5,
      5,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -5,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(reverse(input),-2),20),22),1)"
  },
  {
    "input": "input : list = [0, -3, 0]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(take([0, -3, 0],1)),-1)))",
    "io_inp": [
      0,
      -3,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(take(input,1)),-1)))"
  },
  {
    "input": "input : list = [5, -2, 3, -2, -5]\noutput : list = [5, 3, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([5, -2, 3, -2, -5])))",
    "io_inp": [
      5,
      -2,
      3,
      -2,
      -5
    ],
    "io_out": [
      5,
      3,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-4, 3, -5, -2, 4, 0]\noutput : list = [-2, -9, -10]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(take([-4, 3, -5, -2, 4, 0],3)))),5)",
    "io_inp": [
      -4,
      3,
      -5,
      -2,
      4,
      0
    ],
    "io_out": [
      -2,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(take(input,3)))),5)"
  },
  {
    "input": "input : list = [-1, 5, -1, -4, 4, 3]\noutput : list = [84, 72, 60, 12, 12, -24]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(add_n([-1, 5, -1, -4, 4, 3],2)),18),-4),-3)",
    "io_inp": [
      -1,
      5,
      -1,
      -4,
      4,
      3
    ],
    "io_out": [
      84,
      72,
      60,
      12,
      12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(add_n(input,2)),18),-4),-3)"
  },
  {
    "input": "input : list = [5, 5, 0, 3]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(take([5, 5, 0, 3],2))",
    "io_inp": [
      5,
      5,
      0,
      3
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-5, -1, 0, -5]\noutput : list = [0, 0, 4, 5]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n(sort_des([-5, -1, 0, -5]),1))),5)",
    "io_inp": [
      -5,
      -1,
      0,
      -5
    ],
    "io_out": [
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(sort_des(input),1))),5)"
  },
  {
    "input": "input : list = [-2, -3, -2]\noutput : list = [-6, -5, -5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n([-2, -3, -2],-3))))",
    "io_inp": [
      -2,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(input,-3))))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [20, 4]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(reverse([5, 1]),4),6)))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      20,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(reverse(input),4),6)))"
  },
  {
    "input": "input : list = [-4, 4, 3, 0, -2]\noutput : list = [-4, 4, 3]",
    "output": "generated_output : list = take([-4, 4, 3, 0, -2],3)",
    "io_inp": [
      -4,
      4,
      3,
      0,
      -2
    ],
    "io_out": [
      -4,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -1, -4, -2]\noutput : list = [1, 0, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(reverse([-5, -1, -4, -2]),-1))),3)",
    "io_inp": [
      -5,
      -1,
      -4,
      -2
    ],
    "io_out": [
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(reverse(input),-1))),3)"
  },
  {
    "input": "input : list = [-2, -4, 1, -3, 0, 1]\noutput : list = [6, 5, 2, 6, 1, 3]",
    "output": "generated_output : list = sub_n(reverse([-2, -4, 1, -3, 0, 1]),-5)",
    "io_inp": [
      -2,
      -4,
      1,
      -3,
      0,
      1
    ],
    "io_out": [
      6,
      5,
      2,
      6,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [0, 5, -4, 3, 1]\noutput : list = [-1, 3, 4, 6, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(sort_des([0, 5, -4, 3, 1]),1),-4)))",
    "io_inp": [
      0,
      5,
      -4,
      3,
      1
    ],
    "io_out": [
      -1,
      3,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(sort_des(input),1),-4)))"
  },
  {
    "input": "input : list = [-5, 3, 4, -2, 3, -3]\noutput : list = [18, -18, 12, -24, -18, 30]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-5, 3, 4, -2, 3, -3],-2)),3)",
    "io_inp": [
      -5,
      3,
      4,
      -2,
      3,
      -3
    ],
    "io_out": [
      18,
      -18,
      12,
      -24,
      -18,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-2)),3)"
  },
  {
    "input": "input : list = [3, 0, 5, -1, 1, -4]\noutput : list = [1, -2, 3, -3, -1, -6]",
    "output": "generated_output : list = sub_n([3, 0, 5, -1, 1, -4],2)",
    "io_inp": [
      3,
      0,
      5,
      -1,
      1,
      -4
    ],
    "io_out": [
      1,
      -2,
      3,
      -3,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -3, 3, 3]\noutput : list = [-2, -2, -2, -8]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(sort_des([3, -3, 3, 3]),3),-3)),-1)",
    "io_inp": [
      3,
      -3,
      3,
      3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(sort_des(input),3),-3)),-1)"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [5, -11]",
    "output": "generated_output : list = sub_n(mul_n(drop([2, 0, 4],1),-4),-5)",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,1),-4),-5)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [-5, -4, 3]",
    "output": "generated_output : list = sort_asc([-4, -5, 3])",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, -4, 3, 3, 3]\noutput : list = [-2, 2, 4, 5, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc([0, 2, -4, 3, 3, 3]),-2)",
    "io_inp": [
      0,
      2,
      -4,
      3,
      3,
      3
    ],
    "io_out": [
      -2,
      2,
      4,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-15, -9, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(mul_n([1, -3, -5],3)))))",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -15,
      -9,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [1, -5, -3, -1, -5]\noutput : list = [-29, -9, -19, -29, 1]",
    "output": "generated_output : list = take(sub_n(reverse(add_n(mul_n([1, -5, -3, -1, -5],5),-3)),1),7)",
    "io_inp": [
      1,
      -5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -29,
      -9,
      -19,
      -29,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(add_n(mul_n(input,5),-3)),1),7)"
  },
  {
    "input": "input : list = [-5, -4, -4, 1, 4]\noutput : list = [14, 8, -2, -2, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(mul_n([-5, -4, -4, 1, 4],2))),4),-2)",
    "io_inp": [
      -5,
      -4,
      -4,
      1,
      4
    ],
    "io_out": [
      14,
      8,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(mul_n(input,2))),4),-2)"
  },
  {
    "input": "input : list = [-4, -2, 4]\noutput : list = [8, 2]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(drop([-4, -2, 4],1)),-4)),40)",
    "io_inp": [
      -4,
      -2,
      4
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(drop(input,1)),-4)),40)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [-1, -13, -13]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(reverse([4, -2, 4]),-2))),5)",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      -1,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(reverse(input),-2))),5)"
  },
  {
    "input": "input : list = [1, 3, 0, -2]\noutput : list = [3, 0, -2]",
    "output": "generated_output : list = drop([1, 3, 0, -2],1)",
    "io_inp": [
      1,
      3,
      0,
      -2
    ],
    "io_out": [
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -3, 1]\noutput : list = [8, 20, 4]",
    "output": "generated_output : list = mul_n(add_n([0, -3, 1],-2),-4)",
    "io_inp": [
      0,
      -3,
      1
    ],
    "io_out": [
      8,
      20,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-4)"
  },
  {
    "input": "input : list = [-1, 2, 1, 5, 2]\noutput : list = [-5, -14, -2, -5, 4]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sub_n([-1, 2, 1, 5, 2],1),-3),8),2))",
    "io_inp": [
      -1,
      2,
      1,
      5,
      2
    ],
    "io_out": [
      -5,
      -14,
      -2,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sub_n(input,1),-3),8),2))"
  },
  {
    "input": "input : list = [4, 3, 3, 2, -3]\noutput : list = [13, -7, -11, -11, -15]",
    "output": "generated_output : list = add_n(sort_des(mul_n([4, 3, 3, 2, -3],-4)),1)",
    "io_inp": [
      4,
      3,
      3,
      2,
      -3
    ],
    "io_out": [
      13,
      -7,
      -11,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,-4)),1)"
  },
  {
    "input": "input : list = [-4, -2, -5, -1, 0]\noutput : list = [-12, -6, -15, -3, 0]",
    "output": "generated_output : list = mul_n([-4, -2, -5, -1, 0],3)",
    "io_inp": [
      -4,
      -2,
      -5,
      -1,
      0
    ],
    "io_out": [
      -12,
      -6,
      -15,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [-5, 16]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(reverse([1, 5, -2]),2),3)),1)",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      -5,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(reverse(input),2),3)),1)"
  },
  {
    "input": "input : list = [5, -4, -5, -3, -4]\noutput : list = [-7, -8, -6]",
    "output": "generated_output : list = sub_n(mul_n(take(drop([5, -4, -5, -3, -4],1),3),1),3)",
    "io_inp": [
      5,
      -4,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(drop(input,1),3),1),3)"
  },
  {
    "input": "input : list = [2, -5, 1, 3, 1, 2]\noutput : list = [-8, -8, -16, -24]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(drop([2, -5, 1, 3, 1, 2],2),2)),-4)",
    "io_inp": [
      2,
      -5,
      1,
      3,
      1,
      2
    ],
    "io_out": [
      -8,
      -8,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(drop(input,2),2)),-4)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = sort_asc([2, 2, -3])",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, 0, 3]\noutput : list = [13, 11, 5, -1]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(sort_asc([4, -3, 0, 3]),2),5),15))",
    "io_inp": [
      4,
      -3,
      0,
      3
    ],
    "io_out": [
      13,
      11,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(sort_asc(input),2),5),15))"
  },
  {
    "input": "input : list = [-3, -3, -5, -5, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(take([-3, -3, -5, -5, 1],3)),1),10))",
    "io_inp": [
      -3,
      -3,
      -5,
      -5,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(take(input,3)),1),10))"
  },
  {
    "input": "input : list = [-5, -4, 2, -5]\noutput : list = [-6, -6, -5, 1]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(sort_asc([-5, -4, 2, -5]),1))))",
    "io_inp": [
      -5,
      -4,
      2,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-5, 0, -5, -3, 3]\noutput : list = [-3, 12, -3, 3, 21]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(reverse([-5, 0, -5, -3, 3])),4),19),3)",
    "io_inp": [
      -5,
      0,
      -5,
      -3,
      3
    ],
    "io_out": [
      -3,
      12,
      -3,
      3,
      21
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(reverse(input)),4),19),3)"
  },
  {
    "input": "input : list = [3, -3, -4, 0, 0, -3]\noutput : list = [-4, -3, -3, 0, 0, 3]",
    "output": "generated_output : list = sort_asc([3, -3, -4, 0, 0, -3])",
    "io_inp": [
      3,
      -3,
      -4,
      0,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1, 5, -2, -2]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take([-4, -1, 5, -2, -2],2)",
    "io_inp": [
      -4,
      -1,
      5,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 0, 1, -2, -3]\noutput : list = [-6, -4, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_asc([-5, 0, 1, -2, -3]),22)),1))",
    "io_inp": [
      -5,
      0,
      1,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(sort_asc(input),22)),1))"
  },
  {
    "input": "input : list = [4, 5, -1]\noutput : list = [8, 7, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(add_n([4, 5, -1],-2)),4)),-1)",
    "io_inp": [
      4,
      5,
      -1
    ],
    "io_out": [
      8,
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(add_n(input,-2)),4)),-1)"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [0]",
    "output": "generated_output : list = take(reverse(reverse(reverse(take([0, -4, -3],1)))),21)",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(take(input,1)))),21)"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(take(take([2, -1, 1],1),7),4)",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,1),7),4)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = take(sort_des(reverse([2, -4])),22)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),22)"
  },
  {
    "input": "input : list = [-2, -1, 2]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = take(sub_n([-2, -1, 2],-1),15)",
    "io_inp": [
      -2,
      -1,
      2
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),15)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc([-2, -4])),15)))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(sort_asc(input)),15)))"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(take([4, 5, -3],1)))),23)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(take(input,1)))),23)"
  },
  {
    "input": "input : list = [2, 5, 5, -1, 5]\noutput : list = [3, 9]",
    "output": "generated_output : list = take(sort_asc(sort_des(drop(add_n([2, 5, 5, -1, 5],4),3))),48)",
    "io_inp": [
      2,
      5,
      5,
      -1,
      5
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(drop(add_n(input,4),3))),48)"
  },
  {
    "input": "input : list = [0, 5, -2, -5]\noutput : list = [-10, -7, 0, -5]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(reverse([0, 5, -2, -5]),4),4),19),3)",
    "io_inp": [
      0,
      5,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(reverse(input),4),4),19),3)"
  },
  {
    "input": "input : list = [-3, 4, 5, -3, -1]\noutput : list = [-35, -35, -27, -7, -3]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(sub_n([-3, 4, 5, -3, -1],4),-2),4),1))",
    "io_inp": [
      -3,
      4,
      5,
      -3,
      -1
    ],
    "io_out": [
      -35,
      -35,
      -27,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(sub_n(input,4),-2),4),1))"
  },
  {
    "input": "input : list = [3, 2, 1, 0, 3, -5]\noutput : list = [-14, -9, -8, -7, -6, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sub_n([3, 2, 1, 0, 3, -5],4)),5)))",
    "io_inp": [
      3,
      2,
      1,
      0,
      3,
      -5
    ],
    "io_out": [
      -14,
      -9,
      -8,
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sub_n(input,4)),5)))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(sort_des([-5, -5]),-2),16),2))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(sort_des(input),-2),16),2))"
  },
  {
    "input": "input : list = [-3, -2, 5, 0, 0, 3]\noutput : list = [-6, -5, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(take([-3, -2, 5, 0, 0, 3],3)),-3))",
    "io_inp": [
      -3,
      -2,
      5,
      0,
      0,
      3
    ],
    "io_out": [
      -6,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(input,3)),-3))"
  },
  {
    "input": "input : list = [3, 5, -4]\noutput : list = [8, 10, 1]",
    "output": "generated_output : list = sub_n([3, 5, -4],-5)",
    "io_inp": [
      3,
      5,
      -4
    ],
    "io_out": [
      8,
      10,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [-60, 90, 150]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(mul_n([2, -5, -3],5))),2),-3)",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      -60,
      90,
      150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(mul_n(input,5))),2),-3)"
  },
  {
    "input": "input : list = [4, -1, 4, -2, -1]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(take([4, -1, 4, -2, -1],3)),1),-2),49)",
    "io_inp": [
      4,
      -1,
      4,
      -2,
      -1
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(take(input,3)),1),-2),49)"
  },
  {
    "input": "input : list = [-5, 1, -3]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(drop([-5, 1, -3],1),-4))))",
    "io_inp": [
      -5,
      1,
      -3
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(drop(input,1),-4))))"
  },
  {
    "input": "input : list = [1, -4, 1, 3, 1, 5]\noutput : list = [1, 1, 1, -4]",
    "output": "generated_output : list = reverse(take(sort_asc([1, -4, 1, 3, 1, 5]),4))",
    "io_inp": [
      1,
      -4,
      1,
      3,
      1,
      5
    ],
    "io_out": [
      1,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-4, -1, -5, -1, -2]\noutput : list = [14, 8, 6, 6]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(drop([-4, -1, -5, -1, -2],1)),-2),-4))",
    "io_inp": [
      -4,
      -1,
      -5,
      -1,
      -2
    ],
    "io_out": [
      14,
      8,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(drop(input,1)),-2),-4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n(add_n([2, 5],-1),3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),3)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [-10, 2, 18]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(mul_n([4, 1, -3],-4)),-3)),3)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      -10,
      2,
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(mul_n(input,-4)),-3)),3)"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [-23, -7, 9]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(add_n([0, -4, 4],2),-4),-3)),4)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      -23,
      -7,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(add_n(input,2),-4),-3)),4)"
  },
  {
    "input": "input : list = [-3, -2, 5, -2, -2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = drop([-3, -2, 5, -2, -2, 1],4)",
    "io_inp": [
      -3,
      -2,
      5,
      -2,
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-3, 5, -4, -2]\noutput : list = [-79, 33, 49, 65]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(mul_n([-3, 5, -4, -2],-4)),4),-1))",
    "io_inp": [
      -3,
      5,
      -4,
      -2
    ],
    "io_out": [
      -79,
      33,
      49,
      65
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(mul_n(input,-4)),4),-1))"
  },
  {
    "input": "input : list = [-2, 1, 2, 1]\noutput : list = [3, -3, -3, -5]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(mul_n([-2, 1, 2, 1],-2)),25),2),3)",
    "io_inp": [
      -2,
      1,
      2,
      1
    ],
    "io_out": [
      3,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(mul_n(input,-2)),25),2),3)"
  },
  {
    "input": "input : list = [1, 4, 1, 0, -3, 2]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(take([1, 4, 1, 0, -3, 2],2),11)",
    "io_inp": [
      1,
      4,
      1,
      0,
      -3,
      2
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(take(input,2),11)"
  },
  {
    "input": "input : list = [-5, -2, -3, 1]\noutput : list = [-20, -12, -8, 4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(reverse([-5, -2, -3, 1])),4)))",
    "io_inp": [
      -5,
      -2,
      -3,
      1
    ],
    "io_out": [
      -20,
      -12,
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(reverse(input)),4)))"
  },
  {
    "input": "input : list = [4, 5, 0]\noutput : list = [-52, -42, -2]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n([4, 5, 0],-2)),5),2))",
    "io_inp": [
      4,
      5,
      0
    ],
    "io_out": [
      -52,
      -42,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n(input,-2)),5),2))"
  },
  {
    "input": "input : list = [-3, 5, 3, 1, 4, 1]\noutput : list = [4, 12, 10, 8, 11, 8]",
    "output": "generated_output : list = sub_n(sub_n([-3, 5, 3, 1, 4, 1],-5),-2)",
    "io_inp": [
      -3,
      5,
      3,
      1,
      4,
      1
    ],
    "io_out": [
      4,
      12,
      10,
      8,
      11,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),-2)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n(reverse([-2, -2]),-3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [128, 0, -16]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(add_n([-4, 4, 5],-4)),-4),4))",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      128,
      0,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(add_n(input,-4)),-4),4))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-5, 7]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(sort_asc([-1, 2]),2),-2),4),-1)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -5,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(sort_asc(input),2),-2),4),-1)"
  },
  {
    "input": "input : list = [-1, 5, -2, 4]\noutput : list = [27, 22, -3, -8]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(reverse([-1, 5, -2, 4])),5),2),6)",
    "io_inp": [
      -1,
      5,
      -2,
      4
    ],
    "io_out": [
      27,
      22,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(reverse(input)),5),2),6)"
  },
  {
    "input": "input : list = [-1, -3, 1, 3]\noutput : list = [2, 0, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(sub_n([-1, -3, 1, 3],1)))))",
    "io_inp": [
      -1,
      -3,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [2, 4, 1, 0, 4, 3]\noutput : list = [0, -5, -10, -15, -20, -20]",
    "output": "generated_output : list = take(take(sort_des(reverse(mul_n([2, 4, 1, 0, 4, 3],-5))),37),39)",
    "io_inp": [
      2,
      4,
      1,
      0,
      4,
      3
    ],
    "io_out": [
      0,
      -5,
      -10,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(mul_n(input,-5))),37),39)"
  },
  {
    "input": "input : list = [4, 0, 4, -3, -5]\noutput : list = [-5, -3, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, 0, 4, -3, -5]))",
    "io_inp": [
      4,
      0,
      4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, -5, -1, -3]\noutput : list = [-15, -39, 9, -87]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(sub_n([3, -5, -1, -3],-4),4),-3),-3))",
    "io_inp": [
      3,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -15,
      -39,
      9,
      -87
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(sub_n(input,-4),4),-3),-3))"
  },
  {
    "input": "input : list = [-3, 5, 4, -1, 1, 5]\noutput : list = [5, 1, -1, 4, 5]",
    "output": "generated_output : list = reverse(drop([-3, 5, 4, -1, 1, 5],1))",
    "io_inp": [
      -3,
      5,
      4,
      -1,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [3, 5, -2, 0, 2]\noutput : list = [-5, -3, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(sub_n([3, 5, -2, 0, 2],3)))))",
    "io_inp": [
      3,
      5,
      -2,
      0,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [-4, -2, -3]\noutput : list = [0, 1, 2]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc([-4, -2, -3]),-3),-1)),36)",
    "io_inp": [
      -4,
      -2,
      -3
    ],
    "io_out": [
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(sort_asc(input),-3),-1)),36)"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [4, 2, -1]",
    "output": "generated_output : list = sort_des([-1, 2, 4])",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, 1, -3]\noutput : list = [29, -11, 9, -11]",
    "output": "generated_output : list = take(sub_n(mul_n([5, -3, 1, -3],5),-4),28)",
    "io_inp": [
      5,
      -3,
      1,
      -3
    ],
    "io_out": [
      29,
      -11,
      9,
      -11
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,5),-4),28)"
  },
  {
    "input": "input : list = [-2, 3, 3, -2, -4, 1]\noutput : list = [2, 7, 7, 2, 0, 5]",
    "output": "generated_output : list = reverse(take(reverse(add_n([-2, 3, 3, -2, -4, 1],4)),28))",
    "io_inp": [
      -2,
      3,
      3,
      -2,
      -4,
      1
    ],
    "io_out": [
      2,
      7,
      7,
      2,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(input,4)),28))"
  },
  {
    "input": "input : list = [-3, 2, -3, 3, 5, -3]\noutput : list = [-5, -7, -8, -13, -13, -13]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(reverse([-3, 2, -3, 3, 5, -3]),-5)),2),3)",
    "io_inp": [
      -3,
      2,
      -3,
      3,
      5,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -13,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(reverse(input),-5)),2),3)"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [20, 8, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse(reverse([2, -2, 5]))),4))",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      20,
      8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(reverse(input))),4))"
  },
  {
    "input": "input : list = [-4, 1, 0]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take([-4, 1, 0],1),2)",
    "io_inp": [
      -4,
      1,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),2)"
  },
  {
    "input": "input : list = [1, 1, -5, -2]\noutput : list = [-1, -7, -4]",
    "output": "generated_output : list = add_n(add_n(take(drop([1, 1, -5, -2],1),16),-5),3)",
    "io_inp": [
      1,
      1,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(drop(input,1),16),-5),3)"
  },
  {
    "input": "input : list = [5, -2, -3, 3, 4, 2]\noutput : list = [-10, 4, 6]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(take([5, -2, -3, 3, 4, 2],3)),30),-2))",
    "io_inp": [
      5,
      -2,
      -3,
      3,
      4,
      2
    ],
    "io_out": [
      -10,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(take(input,3)),30),-2))"
  },
  {
    "input": "input : list = [5, 4, 4, -5, -3, -1]\noutput : list = [-7, -5, -3, 2, 2, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(sort_asc([5, 4, 4, -5, -3, -1]),24))),-2)",
    "io_inp": [
      5,
      4,
      4,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -3,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(sort_asc(input),24))),-2)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-7, 1]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(add_n([-3, 1],1),2),2),7),1)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(add_n(input,1),2),2),7),1)"
  },
  {
    "input": "input : list = [5, 2, 2, 3, -5]\noutput : list = [-20, -8, -8, -12, 20]",
    "output": "generated_output : list = mul_n([5, 2, 2, 3, -5],-4)",
    "io_inp": [
      5,
      2,
      2,
      3,
      -5
    ],
    "io_out": [
      -20,
      -8,
      -8,
      -12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -3, 5, -5]\noutput : list = [5, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(drop([-4, -3, 5, -5],1)))",
    "io_inp": [
      -4,
      -3,
      5,
      -5
    ],
    "io_out": [
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-16, 8]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des([0, 2]),-2),-3),4),4)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des(input),-2),-3),4),4)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc([1, -1])",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 1, 0, -3, 3]\noutput : list = [1, 0, -3, 3]",
    "output": "generated_output : list = drop([0, 1, 0, -3, 3],1)",
    "io_inp": [
      0,
      1,
      0,
      -3,
      3
    ],
    "io_out": [
      1,
      0,
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-3, -8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(reverse([3, -2]))),-1),5)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(reverse(input))),-1),5)"
  },
  {
    "input": "input : list = [-2, -3, -3, -5]\noutput : list = [-10, -8, -8, -7]",
    "output": "generated_output : list = take(sort_asc(sort_asc(add_n([-2, -3, -3, -5],-5))),30)",
    "io_inp": [
      -2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(add_n(input,-5))),30)"
  },
  {
    "input": "input : list = [2, 3, 5, 5, 4]\noutput : list = [6, 9, 12, 15, 15]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(reverse([2, 3, 5, 5, 4])),3),17),13)",
    "io_inp": [
      2,
      3,
      5,
      5,
      4
    ],
    "io_out": [
      6,
      9,
      12,
      15,
      15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(reverse(input)),3),17),13)"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(drop([5, -2, 5],1))",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, -5, -2, 1]\noutput : list = [-2, -11, -20]",
    "output": "generated_output : list = take(take(reverse(sub_n(mul_n([-5, -5, -2, 1],3),5)),40),3)",
    "io_inp": [
      -5,
      -5,
      -2,
      1
    ],
    "io_out": [
      -2,
      -11,
      -20
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(mul_n(input,3),5)),40),3)"
  },
  {
    "input": "input : list = [-4, 2, -3, -2, -1]\noutput : list = [-6, -7, -8, -3, -9]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n(reverse([-4, 2, -3, -2, -1]),3),-2)))",
    "io_inp": [
      -4,
      2,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(reverse(input),3),-2)))"
  },
  {
    "input": "input : list = [-2, -5, -3, 3]\noutput : list = [24, -16, -24, -40]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n([-2, -5, -3, 3],-2),1)),13),-4)",
    "io_inp": [
      -2,
      -5,
      -3,
      3
    ],
    "io_out": [
      24,
      -16,
      -24,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(mul_n(input,-2),1)),13),-4)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(reverse([-1, -5, -4])))),-1)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [2, 0, -4, -2, 1, 0]\noutput : list = [7, 6, 5, 5, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n([2, 0, -4, -2, 1, 0],-5))",
    "io_inp": [
      2,
      0,
      -4,
      -2,
      1,
      0
    ],
    "io_out": [
      7,
      6,
      5,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-1, 0, -4, 1, -4]\noutput : list = [0, 5, 0, 4, 3]",
    "output": "generated_output : list = add_n(take(reverse([-1, 0, -4, 1, -4]),13),4)",
    "io_inp": [
      -1,
      0,
      -4,
      1,
      -4
    ],
    "io_out": [
      0,
      5,
      0,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),13),4)"
  },
  {
    "input": "input : list = [4, -5, -2, -4, 4]\noutput : list = [1, 7, 9]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(drop([4, -5, -2, -4, 4],2),-1),4),1))",
    "io_inp": [
      4,
      -5,
      -2,
      -4,
      4
    ],
    "io_out": [
      1,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(drop(input,2),-1),4),1))"
  },
  {
    "input": "input : list = [4, 3, -4, 4, -3]\noutput : list = [4, 4, 3, -3, -4]",
    "output": "generated_output : list = sort_des([4, 3, -4, 4, -3])",
    "io_inp": [
      4,
      3,
      -4,
      4,
      -3
    ],
    "io_out": [
      4,
      4,
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [2, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse([2, 2, 5]))",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [3, -4, -3, -5]\noutput : list = [-5, -4, -3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(sort_des([3, -4, -3, -5]),5),10)))",
    "io_inp": [
      3,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(sort_des(input),5),10)))"
  },
  {
    "input": "input : list = [-5, 4, -5, -3]\noutput : list = [-50, -50, -40, -5]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(reverse([-5, 4, -5, -3]),11),-5)),5)",
    "io_inp": [
      -5,
      4,
      -5,
      -3
    ],
    "io_out": [
      -50,
      -50,
      -40,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(reverse(input),11),-5)),5)"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(sort_asc([0, 1, -1]))),-4))",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des([0, 0])",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-1, 4, 9]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(add_n([-5, 0, 5],1)))),3)",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -1,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(add_n(input,1)))),3)"
  },
  {
    "input": "input : list = [-3, 5, 4, 5, -4, 4]\noutput : list = [2, 2, 1, 1, -6, -7]",
    "output": "generated_output : list = add_n(take(sort_des(sub_n(sub_n([-3, 5, 4, 5, -4, 4],-4),2)),7),-5)",
    "io_inp": [
      -3,
      5,
      4,
      5,
      -4,
      4
    ],
    "io_out": [
      2,
      2,
      1,
      1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sub_n(sub_n(input,-4),2)),7),-5)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n(drop([-2, -5, 1],1),-4)",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [2, -2, -4, 3]\noutput : list = [-2, -4, 3]",
    "output": "generated_output : list = drop([2, -2, -4, 3],1)",
    "io_inp": [
      2,
      -2,
      -4,
      3
    ],
    "io_out": [
      -2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 0, -5, 2, -2, -5]\noutput : list = [12, 18, 24, 30, 39, 39]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sub_n([4, 0, -5, 2, -2, -5],5),3)),-3))",
    "io_inp": [
      4,
      0,
      -5,
      2,
      -2,
      -5
    ],
    "io_out": [
      12,
      18,
      24,
      30,
      39,
      39
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sub_n(input,5),3)),-3))"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = add_n(sort_des([3, 1, -5]),1)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [4, -3, 3]\noutput : list = [12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(take([4, -3, 3],1),-1)),-3))",
    "io_inp": [
      4,
      -3,
      3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(take(input,1),-1)),-3))"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [-10, 6, -10]",
    "output": "generated_output : list = reverse(mul_n([5, -3, 5],-2))",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      -10,
      6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [4, -3, -4, -2, 0, 4]\noutput : list = [-26, -26, -6, 4, 9, 14]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des([4, -3, -4, -2, 0, 4])),2),-5),-4)",
    "io_inp": [
      4,
      -3,
      -4,
      -2,
      0,
      4
    ],
    "io_out": [
      -26,
      -26,
      -6,
      4,
      9,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des(input)),2),-5),-4)"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [-5, 0, -5]",
    "output": "generated_output : list = sub_n([-2, 3, -2],3)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      -5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, 3, 0, 3, 2]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(take(sub_n(drop(sort_des([5, 3, 0, 3, 2]),4),-2),14),-2)",
    "io_inp": [
      5,
      3,
      0,
      3,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(drop(sort_des(input),4),-2),14),-2)"
  },
  {
    "input": "input : list = [3, -1, 1]\noutput : list = [5, -5, -15]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n(add_n([3, -1, 1],-2),2)),4),-5)",
    "io_inp": [
      3,
      -1,
      1
    ],
    "io_out": [
      5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(add_n(input,-2),2)),4),-5)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [3, 5]",
    "output": "generated_output : list = reverse(sub_n([1, -1],-4))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [5, 1, -4, 3, -4]\noutput : list = [-2, 5, -2, 3, 7]",
    "output": "generated_output : list = reverse(sub_n([5, 1, -4, 3, -4],-2))",
    "io_inp": [
      5,
      1,
      -4,
      3,
      -4
    ],
    "io_out": [
      -2,
      5,
      -2,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [2, 1, 5, -3, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = drop([2, 1, 5, -3, -4, -4],4)",
    "io_inp": [
      2,
      1,
      5,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, 5, 4]\noutput : list = [19]",
    "output": "generated_output : list = add_n(drop(reverse(mul_n(add_n([4, 5, 4],-1),5)),2),4)",
    "io_inp": [
      4,
      5,
      4
    ],
    "io_out": [
      19
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(mul_n(add_n(input,-1),5)),2),4)"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [8, 1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(drop([-1, 3, -4],1),6),-3)),-2)",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(drop(input,1),6),-3)),-2)"
  },
  {
    "input": "input : list = [-1, -4, 3, 3, -2, 3]\noutput : list = [-10, 5]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(take([-1, -4, 3, 3, -2, 3],2),-2)),22),5)",
    "io_inp": [
      -1,
      -4,
      3,
      3,
      -2,
      3
    ],
    "io_out": [
      -10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(take(input,2),-2)),22),5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [30, 45]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sub_n([0, 3],-5),-1),1),-5))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      30,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sub_n(input,-5),-1),1),-5))"
  },
  {
    "input": "input : list = [-1, -1, 5, 5]\noutput : list = [5, 5, -1, -1]",
    "output": "generated_output : list = reverse(sort_asc([-1, -1, 5, 5]))",
    "io_inp": [
      -1,
      -1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [6, -6]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(reverse([3, -3]),-2),9)))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(reverse(input),-2),9)))"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [-2, 2]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(drop([3, 4, 0],1),11),-4),-2))",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(drop(input,1),11),-4),-2))"
  },
  {
    "input": "input : list = [3, -1, -2, 0, -1]\noutput : list = [-95, -15, 5]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n(take([3, -1, -2, 0, -1],3),-1),4),3),-5)",
    "io_inp": [
      3,
      -1,
      -2,
      0,
      -1
    ],
    "io_out": [
      -95,
      -15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(take(input,3),-1),4),3),-5)"
  },
  {
    "input": "input : list = [4, 0, -1, -2]\noutput : list = [-30, -25, -20, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse([4, 0, -1, -2]),4),5)",
    "io_inp": [
      4,
      0,
      -1,
      -2
    ],
    "io_out": [
      -30,
      -25,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),4),5)"
  },
  {
    "input": "input : list = [1, 0, 4, 3, -1]\noutput : list = [0, 1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_des([1, 0, 4, 3, -1]))),1))",
    "io_inp": [
      1,
      0,
      4,
      3,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-3, 0, 5, 1]\noutput : list = [-15, 0, 25, 5]",
    "output": "generated_output : list = mul_n([-3, 0, 5, 1],5)",
    "io_inp": [
      -3,
      0,
      5,
      1
    ],
    "io_out": [
      -15,
      0,
      25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-2, -3, -5, 2, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, -3, -5, 2, 5],1),7)",
    "io_inp": [
      -2,
      -3,
      -5,
      2,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),7)"
  },
  {
    "input": "input : list = [2, 1, 3, -3, -1]\noutput : list = [9, 6, 3, -3, -9]",
    "output": "generated_output : list = mul_n(take(sort_des([2, 1, 3, -3, -1]),8),3)",
    "io_inp": [
      2,
      1,
      3,
      -3,
      -1
    ],
    "io_out": [
      9,
      6,
      3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),8),3)"
  },
  {
    "input": "input : list = [-5, 0, 0, -5]\noutput : list = [-3, -3, -8, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc(reverse([-5, 0, 0, -5]))),-3))",
    "io_inp": [
      -5,
      0,
      0,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-3, 2, 5, 5, 1, 4]\noutput : list = [-2, 0, 4, 6, 6]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(drop([-3, 2, 5, 5, 1, 4],1))),2),-4)",
    "io_inp": [
      -3,
      2,
      5,
      5,
      1,
      4
    ],
    "io_out": [
      -2,
      0,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(drop(input,1))),2),-4)"
  },
  {
    "input": "input : list = [5, 5, 2, -4, 5, -1]\noutput : list = [5, 5, 5, 2, -1, -4]",
    "output": "generated_output : list = take(sort_des(sort_des([5, 5, 2, -4, 5, -1])),22)",
    "io_inp": [
      5,
      5,
      2,
      -4,
      5,
      -1
    ],
    "io_out": [
      5,
      5,
      5,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),22)"
  },
  {
    "input": "input : list = [-5, 2, -4, -4]\noutput : list = [-4, -4, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, -4, -4])",
    "io_inp": [
      -5,
      2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -1, -1, 2]\noutput : list = [-7, 5, 5, 21]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(mul_n([-5, -1, -1, 2],-4)),2),9),1)",
    "io_inp": [
      -5,
      -1,
      -1,
      2
    ],
    "io_out": [
      -7,
      5,
      5,
      21
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(mul_n(input,-4)),2),9),1)"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [16, 8, -12]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n([4, -3, -1],-4),5),-4))",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      16,
      8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(input,-4),5),-4))"
  },
  {
    "input": "input : list = [-4, -1, -5, -3]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take([-4, -1, -5, -3],1),4),1))",
    "io_inp": [
      -4,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(input,1),4),1))"
  },
  {
    "input": "input : list = [-4, 0, -5, -4, -2, 1]\noutput : list = [7, 1]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(drop([-4, 0, -5, -4, -2, 1],4)),30),-2),3)",
    "io_inp": [
      -4,
      0,
      -5,
      -4,
      -2,
      1
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(drop(input,4)),30),-2),3)"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [10, 5, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(sub_n([-4, 2, -3],4),-4)),5),-3)",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      10,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(sub_n(input,4),-4)),5),-3)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [9, 11]",
    "output": "generated_output : list = add_n(take(take(sub_n(reverse([5, 3]),-2),6),20),4)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      9,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(reverse(input),-2),6),20),4)"
  },
  {
    "input": "input : list = [5, -3, -5, -2, -2]\noutput : list = [-1, 1, 2, 2, 9]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([5, -3, -5, -2, -2],1)),5)",
    "io_inp": [
      5,
      -3,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -1,
      1,
      2,
      2,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,1)),5)"
  },
  {
    "input": "input : list = [-4, 5, -5, 2, -1]\noutput : list = [14, 11, 8, 5, 4]",
    "output": "generated_output : list = add_n(add_n(sort_des(reverse(sort_asc([-4, 5, -5, 2, -1]))),5),4)",
    "io_inp": [
      -4,
      5,
      -5,
      2,
      -1
    ],
    "io_out": [
      14,
      11,
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(reverse(sort_asc(input))),5),4)"
  },
  {
    "input": "input : list = [-5, 3, 2, 5]\noutput : list = [8, 1, 0, -2]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(reverse([-5, 3, 2, 5]))),-1),3)",
    "io_inp": [
      -5,
      3,
      2,
      5
    ],
    "io_out": [
      8,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(reverse(input))),-1),3)"
  },
  {
    "input": "input : list = [5, 1, 1, -4, -2, 4]\noutput : list = [1, -4, -2, 4]",
    "output": "generated_output : list = drop([5, 1, 1, -4, -2, 4],2)",
    "io_inp": [
      5,
      1,
      1,
      -4,
      -2,
      4
    ],
    "io_out": [
      1,
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -1, -3, 1, 5, 1]\noutput : list = [-4, -2, 0, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n([5, -1, -3, 1, 5, 1],-1),17)))",
    "io_inp": [
      5,
      -1,
      -3,
      1,
      5,
      1
    ],
    "io_out": [
      -4,
      -2,
      0,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(input,-1),17)))"
  },
  {
    "input": "input : list = [1, -3, -1, 4]\noutput : list = [3, 0, -2, -4]",
    "output": "generated_output : list = sub_n(add_n(take(take(sort_des([1, -3, -1, 4]),5),18),2),3)",
    "io_inp": [
      1,
      -3,
      -1,
      4
    ],
    "io_out": [
      3,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(sort_des(input),5),18),2),3)"
  },
  {
    "input": "input : list = [3, -3, -2, -3, -2, 2]\noutput : list = [1, 0, -4, -4, -5, -5]",
    "output": "generated_output : list = take(sort_des(sub_n(take(sort_des([3, -3, -2, -3, -2, 2]),14),2)),34)",
    "io_inp": [
      3,
      -3,
      -2,
      -3,
      -2,
      2
    ],
    "io_out": [
      1,
      0,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(sort_des(input),14),2)),34)"
  },
  {
    "input": "input : list = [1, 5, -2, 2]\noutput : list = [0, -3, -4, -7]",
    "output": "generated_output : list = sort_des(mul_n(add_n([1, 5, -2, 2],2),-1))",
    "io_inp": [
      1,
      5,
      -2,
      2
    ],
    "io_out": [
      0,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,2),-1))"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [-8, 7, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n([4, 3, -2],3),-3),5))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      -8,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(input,3),-3),5))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [1, -6]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(sort_asc([5, -2])),-4),16))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(sort_asc(input)),-4),16))"
  },
  {
    "input": "input : list = [3, 4, 5, 3, 2, 2]\noutput : list = [-25, -20, -15, -15, -10, -10]",
    "output": "generated_output : list = sort_asc(mul_n([3, 4, 5, 3, 2, 2],-5))",
    "io_inp": [
      3,
      4,
      5,
      3,
      2,
      2
    ],
    "io_out": [
      -25,
      -20,
      -15,
      -15,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-5, -3, -3, -3, 1, 1]\noutput : list = [-8, -6, -6, -6, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sort_asc([-5, -3, -3, -3, 1, 1])),-3)))",
    "io_inp": [
      -5,
      -3,
      -3,
      -3,
      1,
      1
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [-4, -3, 5, 1, -4, 1]\noutput : list = [-1, 0, 8, 4, -1, 4]",
    "output": "generated_output : list = sub_n([-4, -3, 5, 1, -4, 1],-3)",
    "io_inp": [
      -4,
      -3,
      5,
      1,
      -4,
      1
    ],
    "io_out": [
      -1,
      0,
      8,
      4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([0, -2]),-1))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [5, -3, 1, -1, 5]\noutput : list = [5, -1, -7, -19, -19]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(mul_n([5, -3, 1, -1, 5],-1),3),4)))",
    "io_inp": [
      5,
      -3,
      1,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -7,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(mul_n(input,-1),3),4)))"
  },
  {
    "input": "input : list = [0, 1, 0, -2, 0, -4]\noutput : list = [-9, -7, -5, -5, -5, -4]",
    "output": "generated_output : list = take(sort_asc(take(add_n([0, 1, 0, -2, 0, -4],-5),13)),11)",
    "io_inp": [
      0,
      1,
      0,
      -2,
      0,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(input,-5),13)),11)"
  },
  {
    "input": "input : list = [4, 0, 1, 5, 0, -1]\noutput : list = [-1, 0, 0, 1, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(take(take(sort_des([4, 0, 1, 5, 0, -1]),26),34)))",
    "io_inp": [
      4,
      0,
      1,
      5,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(sort_des(input),26),34)))"
  },
  {
    "input": "input : list = [-3, 0, 3, 1, 1, 0]\noutput : list = [-12, -9, -9, -8, -8, -6]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(reverse([-3, 0, 3, 1, 1, 0]),-4)),5))",
    "io_inp": [
      -3,
      0,
      3,
      1,
      1,
      0
    ],
    "io_out": [
      -12,
      -9,
      -9,
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(reverse(input),-4)),5))"
  },
  {
    "input": "input : list = [3, -2, 1, 0, 4, 2]\noutput : list = [-2, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(take([3, -2, 1, 0, 4, 2],4))",
    "io_inp": [
      3,
      -2,
      1,
      0,
      4,
      2
    ],
    "io_out": [
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,4))"
  },
  {
    "input": "input : list = [5, -3, 5, 4, 5]\noutput : list = [-37, -13, -37, -34, -37]",
    "output": "generated_output : list = sub_n(mul_n(take(sub_n(add_n([5, -3, 5, 4, 5],1),-5),20),-3),4)",
    "io_inp": [
      5,
      -3,
      5,
      4,
      5
    ],
    "io_out": [
      -37,
      -13,
      -37,
      -34,
      -37
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sub_n(add_n(input,1),-5),20),-3),4)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-7, -7]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(mul_n([4, 4],-3),-5),1),26))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(mul_n(input,-3),-5),1),26))"
  },
  {
    "input": "input : list = [4, -5, -3, 5, 5]\noutput : list = [13, -14]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(take([4, -5, -3, 5, 5],2),3),2),-2),-1)",
    "io_inp": [
      4,
      -5,
      -3,
      5,
      5
    ],
    "io_out": [
      13,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(take(input,2),3),2),-2),-1)"
  },
  {
    "input": "input : list = [1, 5, 0, 5, 0]\noutput : list = [10, 10, -30, -40, -40]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(sub_n([1, 5, 0, 5, 0],4))),2),5)",
    "io_inp": [
      1,
      5,
      0,
      5,
      0
    ],
    "io_out": [
      10,
      10,
      -30,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(sub_n(input,4))),2),5)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = reverse(sort_des([5, -3]))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 2, 5, -1]\noutput : list = [1, 4, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n([2, 2, 5, -1],-1),1)))",
    "io_inp": [
      2,
      2,
      5,
      -1
    ],
    "io_out": [
      1,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(input,-1),1)))"
  },
  {
    "input": "input : list = [4, -3, 0]\noutput : list = [1, -2, 5]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(add_n([4, -3, 0],2)),-1)))",
    "io_inp": [
      4,
      -3,
      0
    ],
    "io_out": [
      1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(add_n(input,2)),-1)))"
  },
  {
    "input": "input : list = [-2, -5, 4, -1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = drop([-2, -5, 4, -1, 0],3)",
    "io_inp": [
      -2,
      -5,
      4,
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 0, -5, 3, 4, 4]\noutput : list = [3, 6, 8, 11, 12, 12]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sort_asc([-2, 0, -5, 3, 4, 4])),-5),-3))",
    "io_inp": [
      -2,
      0,
      -5,
      3,
      4,
      4
    ],
    "io_out": [
      3,
      6,
      8,
      11,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sort_asc(input)),-5),-3))"
  },
  {
    "input": "input : list = [0, 5, 2, 0, -5]\noutput : list = [-10, -4, 0, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([0, 5, 2, 0, -5]),-2))",
    "io_inp": [
      0,
      5,
      2,
      0,
      -5
    ],
    "io_out": [
      -10,
      -4,
      0,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [2, -4, 4, -4, -1]\noutput : list = [32, 16, -8, -32, -32]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([2, -4, 4, -4, -1],4),2))",
    "io_inp": [
      2,
      -4,
      4,
      -4,
      -1
    ],
    "io_out": [
      32,
      16,
      -8,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,4),2))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [15, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(sub_n([-2, -3],2),1),-5),2))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(sub_n(input,2),1),-5),2))"
  },
  {
    "input": "input : list = [4, 3, 4, -4, 4]\noutput : list = [-8, 6, 8, 8, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc([4, 3, 4, -4, 4]),2),12)",
    "io_inp": [
      4,
      3,
      4,
      -4,
      4
    ],
    "io_out": [
      -8,
      6,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),2),12)"
  },
  {
    "input": "input : list = [5, -2, 4]\noutput : list = [-75, 15]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(drop([5, -2, 4],1),4),1),-3),-5)",
    "io_inp": [
      5,
      -2,
      4
    ],
    "io_out": [
      -75,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(drop(input,1),4),1),-3),-5)"
  },
  {
    "input": "input : list = [1, 2, 4, 1]\noutput : list = [-2, 1, -1, -2]",
    "output": "generated_output : list = take(add_n(sub_n(take(reverse([1, 2, 4, 1]),5),4),1),15)",
    "io_inp": [
      1,
      2,
      4,
      1
    ],
    "io_out": [
      -2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(take(reverse(input),5),4),1),15)"
  },
  {
    "input": "input : list = [4, 1, -4, 5, 0, 3]\noutput : list = [7, 6, 5, 3, 2, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(add_n([4, 1, -4, 5, 0, 3],1),2))),-3)",
    "io_inp": [
      4,
      1,
      -4,
      5,
      0,
      3
    ],
    "io_out": [
      7,
      6,
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(add_n(input,1),2))),-3)"
  },
  {
    "input": "input : list = [-1, -5, 3, -1]\noutput : list = [7, 3, 3, -1]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(sort_asc([-1, -5, 3, -1])),26),4))",
    "io_inp": [
      -1,
      -5,
      3,
      -1
    ],
    "io_out": [
      7,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(sort_asc(input)),26),4))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [15, -5]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([3, -1],-5)),-1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-5)),-1)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [16, 8, 8]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-2, -4, -2]),-4))",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      16,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [8, 0, 6]",
    "output": "generated_output : list = sub_n(sub_n([5, -3, 3],2),-5)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      8,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),-5)"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [-7, -5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(drop([0, -3, -1],1),-2),-5)),3)",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(drop(input,1),-2),-5)),3)"
  },
  {
    "input": "input : list = [-1, -5, 2, 0, -1]\noutput : list = [0, 4, 4, 5, 7]",
    "output": "generated_output : list = reverse(add_n(take(take(sort_des([-1, -5, 2, 0, -1]),17),35),5))",
    "io_inp": [
      -1,
      -5,
      2,
      0,
      -1
    ],
    "io_out": [
      0,
      4,
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(sort_des(input),17),35),5))"
  },
  {
    "input": "input : list = [1, 1, 2, -4, -2, -1]\noutput : list = [0, 2, 3, 5, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(add_n([1, 1, 2, -4, -2, -1],5),-1))))",
    "io_inp": [
      1,
      1,
      2,
      -4,
      -2,
      -1
    ],
    "io_out": [
      0,
      2,
      3,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(add_n(input,5),-1))))"
  },
  {
    "input": "input : list = [-5, -5, 0, 3, 3, 2]\noutput : list = [-6, -6, -1, 1, 2, 2]",
    "output": "generated_output : list = add_n(sort_asc([-5, -5, 0, 3, 3, 2]),-1)",
    "io_inp": [
      -5,
      -5,
      0,
      3,
      3,
      2
    ],
    "io_out": [
      -6,
      -6,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [3, 0, 5, 1, -4]\noutput : list = [-9, -3, 3, 6, 18]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(mul_n([3, 0, 5, 1, -4],-3),-1))),5)",
    "io_inp": [
      3,
      0,
      5,
      1,
      -4
    ],
    "io_out": [
      -9,
      -3,
      3,
      6,
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(mul_n(input,-3),-1))),5)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [6, -2, -2]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(sort_des([-2, 2, -2]),1),19)),2)",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(sort_des(input),1),19)),2)"
  },
  {
    "input": "input : list = [0, -3, -5]\noutput : list = [10, 34, 50]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des(mul_n([0, -3, -5],4)),5),2),-1)",
    "io_inp": [
      0,
      -3,
      -5
    ],
    "io_out": [
      10,
      34,
      50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(mul_n(input,4)),5),2),-1)"
  },
  {
    "input": "input : list = [5, 4, -1, -3, 3]\noutput : list = [0, 4, 24, 32, 8]",
    "output": "generated_output : list = mul_n(mul_n(add_n([5, 4, -1, -3, 3],-5),-4),1)",
    "io_inp": [
      5,
      4,
      -1,
      -3,
      3
    ],
    "io_out": [
      0,
      4,
      24,
      32,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-5),-4),1)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(sort_asc([0, -1]),3))),9)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(sort_asc(input),3))),9)"
  },
  {
    "input": "input : list = [3, -3, -4, 0, -1]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(take([3, -3, -4, 0, -1],2),1))))",
    "io_inp": [
      3,
      -3,
      -4,
      0,
      -1
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(take(input,2),1))))"
  },
  {
    "input": "input : list = [2, -2, 3, 1]\noutput : list = [6, 2]",
    "output": "generated_output : list = add_n(take([2, -2, 3, 1],2),4)",
    "io_inp": [
      2,
      -2,
      3,
      1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),4)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [2, 2, 1]",
    "output": "generated_output : list = take(take(sort_des(add_n(sort_des([-2, -1, -1]),3)),32),44)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(sort_des(input),3)),32),44)"
  },
  {
    "input": "input : list = [-1, -4, -3, -1, -5]\noutput : list = [-14, -14, -24, -29, -34]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(sub_n([-1, -4, -3, -1, -5],2),5),1),1))",
    "io_inp": [
      -1,
      -4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -14,
      -14,
      -24,
      -29,
      -34
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(sub_n(input,2),5),1),1))"
  },
  {
    "input": "input : list = [0, 4, 5]\noutput : list = [9, 8, 4]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(reverse([0, 4, 5]),1),4),-1))",
    "io_inp": [
      0,
      4,
      5
    ],
    "io_out": [
      9,
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(reverse(input),1),4),-1))"
  },
  {
    "input": "input : list = [2, -3, -2, 5, -3, 5]\noutput : list = [-13, -12, -8]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(take([2, -3, -2, 5, -3, 5],3)),-5)),-5)",
    "io_inp": [
      2,
      -3,
      -2,
      5,
      -3,
      5
    ],
    "io_out": [
      -13,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(take(input,3)),-5)),-5)"
  },
  {
    "input": "input : list = [1, -2, -5]\noutput : list = [-7, -4, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_des([1, -2, -5])),2)),8)",
    "io_inp": [
      1,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_des(input)),2)),8)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sub_n(reverse([5, -3]),-2)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-4, -1, 3]\noutput : list = [-11, -8, -4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(sort_des([-4, -1, 3]),3)),4),1)",
    "io_inp": [
      -4,
      -1,
      3
    ],
    "io_out": [
      -11,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(sort_des(input),3)),4),1)"
  },
  {
    "input": "input : list = [-2, 0, 2]\noutput : list = [-55]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(take([-2, 0, 2],1),-5)),4),5)",
    "io_inp": [
      -2,
      0,
      2
    ],
    "io_out": [
      -55
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(take(input,1),-5)),4),5)"
  },
  {
    "input": "input : list = [-3, 4, -1, 3, 4]\noutput : list = [4, 4, 3, -1, -3]",
    "output": "generated_output : list = sort_des([-3, 4, -1, 3, 4])",
    "io_inp": [
      -3,
      4,
      -1,
      3,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-100]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(mul_n([5, 0],5),1),19),-4))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -100
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(mul_n(input,5),1),19),-4))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [2, -5]",
    "output": "generated_output : list = take(sort_des(reverse([-5, 2])),17)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),17)"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [-7, -6, -4]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(reverse([-4, -2, -5]),-2),1),30))",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(reverse(input),-2),1),30))"
  },
  {
    "input": "input : list = [-5, -1, -1, 5]\noutput : list = [-1]",
    "output": "generated_output : list = drop(reverse(sort_asc(drop([-5, -1, -1, 5],2))),1)",
    "io_inp": [
      -5,
      -1,
      -1,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_asc(drop(input,2))),1)"
  },
  {
    "input": "input : list = [1, 0, 5, 3]\noutput : list = [0, -1, 4, 2]",
    "output": "generated_output : list = take(add_n([1, 0, 5, 3],-1),11)",
    "io_inp": [
      1,
      0,
      5,
      3
    ],
    "io_out": [
      0,
      -1,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),11)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n([1, 1],-5)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = sort_asc(sub_n([-4, -2, -5],-2))",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 0, 3, -5, 2, -2]\noutput : list = [16, 4, 0, -4, -12, -16]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(reverse([-1, 0, 3, -5, 2, -2])),20),1),-4)",
    "io_inp": [
      -1,
      0,
      3,
      -5,
      2,
      -2
    ],
    "io_out": [
      16,
      4,
      0,
      -4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(reverse(input)),20),1),-4)"
  },
  {
    "input": "input : list = [5, 3, -5, 2, 2]\noutput : list = [-10, 4, 4, 6, 10]",
    "output": "generated_output : list = reverse(sort_des(mul_n([5, 3, -5, 2, 2],2)))",
    "io_inp": [
      5,
      3,
      -5,
      2,
      2
    ],
    "io_out": [
      -10,
      4,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,2)))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [24, -4]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(sub_n([-4, 3],-1),3),14)),-4)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      24,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(sub_n(input,-1),3),14)),-4)"
  },
  {
    "input": "input : list = [0, 3, 1, 5]\noutput : list = [-10, -2]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(drop([0, 3, 1, 5],2))),36),-2)",
    "io_inp": [
      0,
      3,
      1,
      5
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(drop(input,2))),36),-2)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [3, 11]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(drop([-1, 5, -3],1)),-5),-1))",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      3,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(drop(input,1)),-5),-1))"
  },
  {
    "input": "input : list = [-4, -4, 2, -2]\noutput : list = [-8, 0, 16]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(drop([-4, -4, 2, -2],1),2),28)),4)",
    "io_inp": [
      -4,
      -4,
      2,
      -2
    ],
    "io_out": [
      -8,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(drop(input,1),2),28)),4)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [0, 3, 10]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_asc([-2, -5, 5])),-5)))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      0,
      3,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [10, 12]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(reverse([5, 3]),-4))),3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      10,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(reverse(input),-4))),3)"
  },
  {
    "input": "input : list = [-4, 2, 4, 4, -3]\noutput : list = [12, -6, -12, -12, 9]",
    "output": "generated_output : list = mul_n([-4, 2, 4, 4, -3],-3)",
    "io_inp": [
      -4,
      2,
      4,
      4,
      -3
    ],
    "io_out": [
      12,
      -6,
      -12,
      -12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -4, 3]\noutput : list = [-11, -10, -4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(add_n([-3, -4, 3],2),4)),5))",
    "io_inp": [
      -3,
      -4,
      3
    ],
    "io_out": [
      -11,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(add_n(input,2),4)),5))"
  },
  {
    "input": "input : list = [0, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([0, 0, -5],1)",
    "io_inp": [
      0,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -3, 0, 0]\noutput : list = [0, 2, 5, 5]",
    "output": "generated_output : list = sub_n([-5, -3, 0, 0],-5)",
    "io_inp": [
      -5,
      -3,
      0,
      0
    ],
    "io_out": [
      0,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -2, 4, 5, -2, 2]\noutput : list = [25, 10, 10, -10, -20, -25]",
    "output": "generated_output : list = add_n(sort_des(sort_des(add_n(mul_n([-5, -2, 4, 5, -2, 2],-5),-3))),3)",
    "io_inp": [
      -5,
      -2,
      4,
      5,
      -2,
      2
    ],
    "io_out": [
      25,
      10,
      10,
      -10,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(add_n(mul_n(input,-5),-3))),3)"
  },
  {
    "input": "input : list = [4, -2, 2, -4]\noutput : list = [4, 2, -2, -4]",
    "output": "generated_output : list = sort_des([4, -2, 2, -4])",
    "io_inp": [
      4,
      -2,
      2,
      -4
    ],
    "io_out": [
      4,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 2, 5]\noutput : list = [-5, 2, 5]",
    "output": "generated_output : list = reverse(reverse([-5, 2, 5]))",
    "io_inp": [
      -5,
      2,
      5
    ],
    "io_out": [
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-2, 1, -3, 3]\noutput : list = [3]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(take([-2, 1, -3, 3],1))),-5))",
    "io_inp": [
      -2,
      1,
      -3,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(take(input,1))),-5))"
  },
  {
    "input": "input : list = [-1, 1, 1]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(sub_n(sub_n(drop([-1, 1, 1],1),-1),-2))",
    "io_inp": [
      -1,
      1,
      1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(drop(input,1),-1),-2))"
  },
  {
    "input": "input : list = [3, -3, -3, 0]\noutput : list = [-3, -3, 0, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des([3, -3, -3, 0]),-4),4))",
    "io_inp": [
      3,
      -3,
      -3,
      0
    ],
    "io_out": [
      -3,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(input),-4),4))"
  },
  {
    "input": "input : list = [0, 0, -3, 5, 0, 1]\noutput : list = [0, 0, -3, 5]",
    "output": "generated_output : list = take([0, 0, -3, 5, 0, 1],4)",
    "io_inp": [
      0,
      0,
      -3,
      5,
      0,
      1
    ],
    "io_out": [
      0,
      0,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [-3, 3, 1]",
    "output": "generated_output : list = mul_n(reverse([-1, -3, 3]),-1)",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      -3,
      3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-2, -4, 5, -5, -2]\noutput : list = [-1, -3, 6, -4]",
    "output": "generated_output : list = reverse(drop(sub_n(sub_n(reverse([-2, -4, 5, -5, -2]),2),-3),1))",
    "io_inp": [
      -2,
      -4,
      5,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -3,
      6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(sub_n(sub_n(reverse(input),2),-3),1))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc([-1, -5]),-1),-3))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(input),-1),-3))"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [32, 72, 24]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sub_n([0, -5, 1],4),4),2),-1),29)",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      32,
      72,
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sub_n(input,4),4),2),-1),29)"
  },
  {
    "input": "input : list = [3, 1, 3, -2]\noutput : list = [3, 1]",
    "output": "generated_output : list = take([3, 1, 3, -2],2)",
    "io_inp": [
      3,
      1,
      3,
      -2
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -4, 4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_des(drop([1, -4, 4, 3],2)))))",
    "io_inp": [
      1,
      -4,
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [0, -1, 2, 2, -3]\noutput : list = [1, 3, -3, -3, 7]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(sub_n([0, -1, 2, 2, -3],2),-4),-5),-2),-5)",
    "io_inp": [
      0,
      -1,
      2,
      2,
      -3
    ],
    "io_out": [
      1,
      3,
      -3,
      -3,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(sub_n(input,2),-4),-5),-2),-5)"
  },
  {
    "input": "input : list = [0, -4, 5, -3, 2]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(drop([0, -4, 5, -3, 2],3)),-5),26))",
    "io_inp": [
      0,
      -4,
      5,
      -3,
      2
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(drop(input,3)),-5),26))"
  },
  {
    "input": "input : list = [0, -4, 1, -5]\noutput : list = [0, -4, 1, -5]",
    "output": "generated_output : list = reverse(reverse([0, -4, 1, -5]))",
    "io_inp": [
      0,
      -4,
      1,
      -5
    ],
    "io_out": [
      0,
      -4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-15, -15, -20]",
    "output": "generated_output : list = mul_n(sub_n(reverse([1, 0, 0]),-3),-5)",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -15,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-3),-5)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [27, 27]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(reverse([3, 3])),3),3))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      27,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(reverse(input)),3),3))"
  },
  {
    "input": "input : list = [5, 4, -3]\noutput : list = [-60, 80, 100]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(reverse([5, 4, -3]),4)),33),5)",
    "io_inp": [
      5,
      4,
      -3
    ],
    "io_out": [
      -60,
      80,
      100
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(reverse(input),4)),33),5)"
  },
  {
    "input": "input : list = [2, 5, -4, 4, 3]\noutput : list = [-4, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([2, 5, -4, 4, 3]))",
    "io_inp": [
      2,
      5,
      -4,
      4,
      3
    ],
    "io_out": [
      -4,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-5, -4, 3, -3, -5, -4]\noutput : list = [-41, -41, -33, -33, -25, 23]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(mul_n([-5, -4, 3, -3, -5, -4],1)),-4),-2),-1)",
    "io_inp": [
      -5,
      -4,
      3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -41,
      -41,
      -33,
      -33,
      -25,
      23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(mul_n(input,1)),-4),-2),-1)"
  },
  {
    "input": "input : list = [-1, -5, -2, -5, -5]\noutput : list = [2, -2]",
    "output": "generated_output : list = add_n(take(sort_des(take(take([-1, -5, -2, -5, -5],2),17)),26),3)",
    "io_inp": [
      -1,
      -5,
      -2,
      -5,
      -5
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(take(input,2),17)),26),3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sub_n(sort_des([-5, -2]),-1)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [4, -2, 4, 2, -4]\noutput : list = [10, -20]",
    "output": "generated_output : list = take(mul_n(drop([4, -2, 4, 2, -4],1),-5),2)",
    "io_inp": [
      4,
      -2,
      4,
      2,
      -4
    ],
    "io_out": [
      10,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,1),-5),2)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n([0, 0],-5),9),-1))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(input,-5),9),-1))"
  },
  {
    "input": "input : list = [-1, 5, 1, 4, -3, -4]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(take([-1, 5, 1, 4, -3, -4],2))",
    "io_inp": [
      -1,
      5,
      1,
      4,
      -3,
      -4
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [8, 5, 1]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(sort_asc([1, -3, 4]),1)),4),33)",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(sort_asc(input),1)),4),33)"
  },
  {
    "input": "input : list = [-5, 3, -3]\noutput : list = [3, -3, -5]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(sort_asc([-5, 3, -3]))),1))",
    "io_inp": [
      -5,
      3,
      -3
    ],
    "io_out": [
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [-3, -4, 2, 4, -3]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(take([-3, -4, 2, 4, -3],2),-3))",
    "io_inp": [
      -3,
      -4,
      2,
      4,
      -3
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(input,2),-3))"
  },
  {
    "input": "input : list = [5, -4, 0, 0]\noutput : list = [-8, -4, -4, 1]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des([5, -4, 0, 0])),4),22)",
    "io_inp": [
      5,
      -4,
      0,
      0
    ],
    "io_out": [
      -8,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(input)),4),22)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-16, 24]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des([-5, 5]),1)),4))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -16,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des(input),1)),4))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(sort_asc([2, 1]),1)),-4))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(sort_asc(input),1)),-4))"
  },
  {
    "input": "input : list = [-5, 5, -5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(take([-5, 5, -5, 3],1))),27))",
    "io_inp": [
      -5,
      5,
      -5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(take(input,1))),27))"
  },
  {
    "input": "input : list = [3, -5, 4, -4, 0, 1]\noutput : list = [-9, -8, -4, -3, -1, 0]",
    "output": "generated_output : list = take(mul_n(take(sub_n(sort_asc([3, -5, 4, -4, 0, 1]),4),31),1),47)",
    "io_inp": [
      3,
      -5,
      4,
      -4,
      0,
      1
    ],
    "io_out": [
      -9,
      -8,
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(sort_asc(input),4),31),1),47)"
  },
  {
    "input": "input : list = [5, 2, 0]\noutput : list = [0, -10, -25]",
    "output": "generated_output : list = mul_n(sort_asc([5, 2, 0]),-5)",
    "io_inp": [
      5,
      2,
      0
    ],
    "io_out": [
      0,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-5, 2, -3, -1, 3, -2]\noutput : list = [-6, 1, -4, -2, 2, -3]",
    "output": "generated_output : list = add_n([-5, 2, -3, -1, 3, -2],-1)",
    "io_inp": [
      -5,
      2,
      -3,
      -1,
      3,
      -2
    ],
    "io_out": [
      -6,
      1,
      -4,
      -2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, 0, 2, 1, 4, -5]\noutput : list = [2, 2, 0, -1, -2, -7]",
    "output": "generated_output : list = sort_des(add_n([4, 0, 2, 1, 4, -5],-2))",
    "io_inp": [
      4,
      0,
      2,
      1,
      4,
      -5
    ],
    "io_out": [
      2,
      2,
      0,
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -3]))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(add_n([-3, -2],1)),16)))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(add_n(input,1)),16)))"
  },
  {
    "input": "input : list = [4, 3, 0, 4, 2]\noutput : list = [30, 25, 10, 30, 20]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(reverse([4, 3, 0, 4, 2]),-2),4)),5)",
    "io_inp": [
      4,
      3,
      0,
      4,
      2
    ],
    "io_out": [
      30,
      25,
      10,
      30,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(reverse(input),-2),4)),5)"
  },
  {
    "input": "input : list = [4, 0, -5, -2, 4]\noutput : list = [11, 2, -16]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(drop([4, 0, -5, -2, 4],2)),-3),-4)",
    "io_inp": [
      4,
      0,
      -5,
      -2,
      4
    ],
    "io_out": [
      11,
      2,
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(drop(input,2)),-3),-4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [11]",
    "output": "generated_output : list = take(add_n(add_n(take(add_n([5, 0],3),1),5),-2),11)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(add_n(input,3),1),5),-2),11)"
  },
  {
    "input": "input : list = [-3, 3, -1, 2]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_des(drop([-3, 3, -1, 2],1)),3))",
    "io_inp": [
      -3,
      3,
      -1,
      2
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(drop(input,1)),3))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([5, 2])))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, -5, 2, 1]\noutput : list = [5, 25, -10, -5]",
    "output": "generated_output : list = mul_n(mul_n([-1, -5, 2, 1],1),-5)",
    "io_inp": [
      -1,
      -5,
      2,
      1
    ],
    "io_out": [
      5,
      25,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse([-3, 5])),2))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(input)),2))"
  },
  {
    "input": "input : list = [-2, 1, 4]\noutput : list = [1, 7, 13]",
    "output": "generated_output : list = add_n(take(sort_asc(mul_n(reverse([-2, 1, 4]),2)),20),5)",
    "io_inp": [
      -2,
      1,
      4
    ],
    "io_out": [
      1,
      7,
      13
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(mul_n(reverse(input),2)),20),5)"
  },
  {
    "input": "input : list = [3, 3, -3, -3, -5]\noutput : list = [3, 3, -3, -3, -5]",
    "output": "generated_output : list = sort_des([3, 3, -3, -3, -5])",
    "io_inp": [
      3,
      3,
      -3,
      -3,
      -5
    ],
    "io_out": [
      3,
      3,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5, 0]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take([2, 5, 0],1))",
    "io_inp": [
      2,
      5,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-2, -3, 5, -2, -4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(take([-2, -3, 5, -2, -4],2),13))))",
    "io_inp": [
      -2,
      -3,
      5,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(take(input,2),13))))"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [-55, -25, 5]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(mul_n([2, 0, 4],3),-1))),-5)",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      -55,
      -25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(mul_n(input,3),-1))),-5)"
  },
  {
    "input": "input : list = [0, 4, -2, -1, -1, -1]\noutput : list = [-2, -1, -1, -1]",
    "output": "generated_output : list = drop([0, 4, -2, -1, -1, -1],2)",
    "io_inp": [
      0,
      4,
      -2,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -5, -1, -1]\noutput : list = [0, -1, -1, -5]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(sort_asc([0, -5, -1, -1]))),10))",
    "io_inp": [
      0,
      -5,
      -1,
      -1
    ],
    "io_out": [
      0,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(sort_asc(input))),10))"
  },
  {
    "input": "input : list = [1, 2, 0, 4]\noutput : list = [0, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(sort_asc([1, 2, 0, 4]),19)),7))",
    "io_inp": [
      1,
      2,
      0,
      4
    ],
    "io_out": [
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(sort_asc(input),19)),7))"
  },
  {
    "input": "input : list = [3, 3, 3, 0]\noutput : list = [0, 3, 3]",
    "output": "generated_output : list = sort_asc(drop([3, 3, 3, 0],1))",
    "io_inp": [
      3,
      3,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sub_n([1, 4],4),-2),4)))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sub_n(input,4),-2),4)))"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [-6, -2, -6]",
    "output": "generated_output : list = sub_n(reverse([-3, 1, -3]),3)",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      -6,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [7, 4]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc([2, -1]),5)))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [-5, -5, -5, -4, 0, 3]\noutput : list = [-75, -75, -75, -60, 0, 45]",
    "output": "generated_output : list = mul_n(mul_n([-5, -5, -5, -4, 0, 3],-5),-3)",
    "io_inp": [
      -5,
      -5,
      -5,
      -4,
      0,
      3
    ],
    "io_out": [
      -75,
      -75,
      -75,
      -60,
      0,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-2, 1, 0, -3]\noutput : list = [3, 0, -6, -9]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-2, 1, 0, -3])),3)",
    "io_inp": [
      -2,
      1,
      0,
      -3
    ],
    "io_out": [
      3,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = take(take(sub_n(sort_des([-2, -3, 4]),2),23),26)",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(input),2),23),26)"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [12, 10, 6]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc(mul_n([5, 4, 2],2))),2))",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      12,
      10,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(mul_n(input,2))),2))"
  },
  {
    "input": "input : list = [-5, 1, 3, 0]\noutput : list = [12, 4, 0, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(sort_asc([-5, 1, 3, 0]),14))),4)",
    "io_inp": [
      -5,
      1,
      3,
      0
    ],
    "io_out": [
      12,
      4,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(sort_asc(input),14))),4)"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(take(drop([5, -3, -5],1),10))",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,1),10))"
  },
  {
    "input": "input : list = [0, 2, -5, 1, 2]\noutput : list = [-5, 0, 1, 2, 2]",
    "output": "generated_output : list = sort_asc([0, 2, -5, 1, 2])",
    "io_inp": [
      0,
      2,
      -5,
      1,
      2
    ],
    "io_out": [
      -5,
      0,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -4, 3]\noutput : list = [3, -2, 5]",
    "output": "generated_output : list = add_n([1, -4, 3],2)",
    "io_inp": [
      1,
      -4,
      3
    ],
    "io_out": [
      3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [-4, -8, -7]",
    "output": "generated_output : list = add_n(reverse([-3, -4, 0]),-4)",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      -4,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(sort_des([3, -1])),14),-4))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(sort_des(input)),14),-4))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(add_n(reverse([2, -2]),-2))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [5, 5, 0, 3, 0]\noutput : list = [3, 3, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(sub_n([5, 5, 0, 3, 0],-4),13)),1))",
    "io_inp": [
      5,
      5,
      0,
      3,
      0
    ],
    "io_out": [
      3,
      3,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(sub_n(input,-4),13)),1))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-7, -7]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(add_n([-1, -1],-2),4))),40)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(add_n(input,-2),4))),40)"
  },
  {
    "input": "input : list = [-4, 4, 2, 0, 3, -4]\noutput : list = [4, 6, -2]",
    "output": "generated_output : list = take(take(add_n(reverse(take([-4, 4, 2, 0, 3, -4],3)),2),14),18)",
    "io_inp": [
      -4,
      4,
      2,
      0,
      3,
      -4
    ],
    "io_out": [
      4,
      6,
      -2
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(take(input,3)),2),14),18)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [3, 6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([-4, -1],-3),-3),-1)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,-3),-3),-1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-60, 40]",
    "output": "generated_output : list = mul_n(add_n(mul_n([2, -3],4),4),-5)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -60,
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,4),4),-5)"
  },
  {
    "input": "input : list = [4, -1, -4, 5, 3, -4]\noutput : list = [12, -9, -15, 12, 3, -12]",
    "output": "generated_output : list = mul_n(reverse([4, -1, -4, 5, 3, -4]),-3)",
    "io_inp": [
      4,
      -1,
      -4,
      5,
      3,
      -4
    ],
    "io_out": [
      12,
      -9,
      -15,
      12,
      3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [-5, -7, -13]",
    "output": "generated_output : list = add_n(add_n(sort_des(reverse(sort_asc([3, -5, 1]))),-3),-5)",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      -5,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(reverse(sort_asc(input))),-3),-5)"
  },
  {
    "input": "input : list = [-2, -1, 1, 3, 5, 2]\noutput : list = [-8, -6, -2, 0, 2, 6]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(sort_des([-2, -1, 1, 3, 5, 2]))),2),-4)",
    "io_inp": [
      -2,
      -1,
      1,
      3,
      5,
      2
    ],
    "io_out": [
      -8,
      -6,
      -2,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(sort_des(input))),2),-4)"
  },
  {
    "input": "input : list = [-1, 1, -3]\noutput : list = [-3, -1, 1]",
    "output": "generated_output : list = sort_asc([-1, 1, -3])",
    "io_inp": [
      -1,
      1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(sub_n([2, 1],1),1)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),1)"
  },
  {
    "input": "input : list = [0, -3, -2, 2]\noutput : list = [6, 4, 2, 1]",
    "output": "generated_output : list = sort_des(add_n([0, -3, -2, 2],4))",
    "io_inp": [
      0,
      -3,
      -2,
      2
    ],
    "io_out": [
      6,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,4))"
  },
  {
    "input": "input : list = [5, -1, 4, -4]\noutput : list = [-7, -6, -1, 2]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(mul_n([5, -1, 4, -4],-1),-3)),-1),1)",
    "io_inp": [
      5,
      -1,
      4,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(mul_n(input,-1),-3)),-1),1)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(take([0, 3, -3],1),5)),-5))",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(take(input,1),5)),-5))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc([0, 4])",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 3, -2, -4, -5, -4]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(drop([-1, 3, -2, -4, -5, -4],4),3),1),5))",
    "io_inp": [
      -1,
      3,
      -2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(drop(input,4),3),1),5))"
  },
  {
    "input": "input : list = [0, 4, 1, -3]\noutput : list = [-4, 0, -3, -7]",
    "output": "generated_output : list = sub_n(add_n([0, 4, 1, -3],-5),-1)",
    "io_inp": [
      0,
      4,
      1,
      -3
    ],
    "io_out": [
      -4,
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),-1)"
  },
  {
    "input": "input : list = [-3, 5, -4, 5]\noutput : list = [-5, -14]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(drop([-3, 5, -4, 5],2)),2),5),-3)",
    "io_inp": [
      -3,
      5,
      -4,
      5
    ],
    "io_out": [
      -5,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(drop(input,2)),2),5),-3)"
  },
  {
    "input": "input : list = [5, 2, 2]\noutput : list = [-10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take([5, 2, 2],1),-2)))",
    "io_inp": [
      5,
      2,
      2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(input,1),-2)))"
  },
  {
    "input": "input : list = [2, -2, -1, 3, 0]\noutput : list = [0, 4, 12, 16, 20]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n([2, -2, -1, 3, 0],2)),-4)),-4)",
    "io_inp": [
      2,
      -2,
      -1,
      3,
      0
    ],
    "io_out": [
      0,
      4,
      12,
      16,
      20
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n(input,2)),-4)),-4)"
  },
  {
    "input": "input : list = [4, 2, 0, -5, -2]\noutput : list = [-35, -83, -3, 29, 61]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(mul_n([4, 2, 0, -5, -2],-4),-4)),18),-3)",
    "io_inp": [
      4,
      2,
      0,
      -5,
      -2
    ],
    "io_out": [
      -35,
      -83,
      -3,
      29,
      61
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(mul_n(input,-4),-4)),18),-3)"
  },
  {
    "input": "input : list = [2, 5, 2, -2]\noutput : list = [-90, -60, -60, -20]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n([2, 5, 2, -2],-4),-5)),2),45)",
    "io_inp": [
      2,
      5,
      2,
      -2
    ],
    "io_out": [
      -90,
      -60,
      -60,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n(input,-4),-5)),2),45)"
  },
  {
    "input": "input : list = [0, -3, -3]\noutput : list = [30, 21, 21]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(add_n([0, -3, -3],4),5),3),-3))",
    "io_inp": [
      0,
      -3,
      -3
    ],
    "io_out": [
      30,
      21,
      21
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(add_n(input,4),5),3),-3))"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [5, 5, 25]",
    "output": "generated_output : list = reverse(mul_n([-5, -1, -1],-5))",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      5,
      5,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [4, 3, 0, 1, 4]\noutput : list = [8, 7, 4, 5, 8]",
    "output": "generated_output : list = add_n([4, 3, 0, 1, 4],4)",
    "io_inp": [
      4,
      3,
      0,
      1,
      4
    ],
    "io_out": [
      8,
      7,
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, 4, 2, -1, 5]\noutput : list = [0, -1, -2, -3, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(reverse([3, 4, 2, -1, 5])),5)),11)",
    "io_inp": [
      3,
      4,
      2,
      -1,
      5
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(reverse(input)),5)),11)"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [2, -5, -5]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(sort_asc([5, 5, -2])),27),-1))",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(sort_asc(input)),27),-1))"
  },
  {
    "input": "input : list = [4, -4, 3, -3]\noutput : list = [-1, -9, -2, -8]",
    "output": "generated_output : list = sub_n([4, -4, 3, -3],5)",
    "io_inp": [
      4,
      -4,
      3,
      -3
    ],
    "io_out": [
      -1,
      -9,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, -5, 4, 0, -3, -4]\noutput : list = [10, 10, 6, 3, 2, 1]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(reverse([4, -5, 4, 0, -3, -4])),2)),4)",
    "io_inp": [
      4,
      -5,
      4,
      0,
      -3,
      -4
    ],
    "io_out": [
      10,
      10,
      6,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(reverse(input)),2)),4)"
  },
  {
    "input": "input : list = [-5, 2, 1, 0, 0]\noutput : list = [-1, -2, -3, -3, -8]",
    "output": "generated_output : list = take(sort_des(add_n([-5, 2, 1, 0, 0],-3)),34)",
    "io_inp": [
      -5,
      2,
      1,
      0,
      0
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-3)),34)"
  },
  {
    "input": "input : list = [-3, 4, 3, -4]\noutput : list = [-4, -3, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc([-3, 4, 3, -4]))))",
    "io_inp": [
      -3,
      4,
      3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [1, 0, 3]",
    "output": "generated_output : list = add_n(add_n([2, 1, 4],2),-3)",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      1,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-3)"
  },
  {
    "input": "input : list = [1, -2, 2, 5, -1]\noutput : list = [-2, -5, -1, 2, -4]",
    "output": "generated_output : list = sub_n([1, -2, 2, 5, -1],3)",
    "io_inp": [
      1,
      -2,
      2,
      5,
      -1
    ],
    "io_out": [
      -2,
      -5,
      -1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, -2, -2, -1, 2]\noutput : list = [-24, -12, -8, -8, -4]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(sub_n([-3, -2, -2, -1, 2],-4),-4),12)))",
    "io_inp": [
      -3,
      -2,
      -2,
      -1,
      2
    ],
    "io_out": [
      -24,
      -12,
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(sub_n(input,-4),-4),12)))"
  },
  {
    "input": "input : list = [1, -4, -4, -3]\noutput : list = [-2, -6, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(sort_asc([1, -4, -4, -3]),13)),3))",
    "io_inp": [
      1,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(sort_asc(input),13)),3))"
  },
  {
    "input": "input : list = [3, 4, -4, -3, -2]\noutput : list = [4, 3, -2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc([3, 4, -4, -3, -2]))",
    "io_inp": [
      3,
      4,
      -4,
      -3,
      -2
    ],
    "io_out": [
      4,
      3,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 3, 3, -3, -1]\noutput : list = [-2, 0, 0, -6, -4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(sub_n([1, 3, 3, -3, -1],5),7),-2),5),-5)",
    "io_inp": [
      1,
      3,
      3,
      -3,
      -1
    ],
    "io_out": [
      -2,
      0,
      0,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(sub_n(input,5),7),-2),5),-5)"
  },
  {
    "input": "input : list = [4, 0, 3]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sub_n([4, 0, 3],5)))))",
    "io_inp": [
      4,
      0,
      3
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sub_n(input,5)))))"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [-20, 10, 20]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(sort_asc([2, 4, -4]),5))),5)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      -20,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(sort_asc(input),5))),5)"
  },
  {
    "input": "input : list = [5, 1, -5, 5]\noutput : list = [25, -5, -25, -25]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(mul_n([5, 1, -5, 5],-5)))))",
    "io_inp": [
      5,
      1,
      -5,
      5
    ],
    "io_out": [
      25,
      -5,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [5, -4, -4]\noutput : list = [4, -5, -5]",
    "output": "generated_output : list = sub_n([5, -4, -4],1)",
    "io_inp": [
      5,
      -4,
      -4
    ],
    "io_out": [
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [12, 22]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(mul_n([-3, -1],-5)),2)),5)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      12,
      22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(mul_n(input,-5)),2)),5)"
  },
  {
    "input": "input : list = [-5, 0, -5, 5, 2, -2]\noutput : list = [25, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(take([-5, 0, -5, 5, 2, -2],2)),16),-5))",
    "io_inp": [
      -5,
      0,
      -5,
      5,
      2,
      -2
    ],
    "io_out": [
      25,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(take(input,2)),16),-5))"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [-6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(take([-3, -1, 1],1),1)),3),-1)",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(take(input,1),1)),3),-1)"
  },
  {
    "input": "input : list = [-4, 1, -3, 3, 5, -4]\noutput : list = [-7, -7, -6, -2, 0, 2]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(add_n([-4, 1, -3, 3, 5, -4],-2)),13),1))",
    "io_inp": [
      -4,
      1,
      -3,
      3,
      5,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(add_n(input,-2)),13),1))"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [-2, 7, 2]",
    "output": "generated_output : list = take(take(sub_n(add_n(sub_n([-4, 5, 0],-2),-1),-1),3),13)",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      -2,
      7,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(sub_n(input,-2),-1),-1),3),13)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(reverse([-3, 4]))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-4, -14]",
    "output": "generated_output : list = mul_n(sub_n([2, -3],4),2)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -4,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,4),2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-5, -9]",
    "output": "generated_output : list = add_n(sort_des([0, -4]),-5)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-6, 10]",
    "output": "generated_output : list = take(mul_n(reverse([5, -3]),2),19)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),2),19)"
  },
  {
    "input": "input : list = [-2, -1, 1, -2, -5, 3]\noutput : list = [-24, -9, -9, -4, 6, 16]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([-2, -1, 1, -2, -5, 3]),5),1)",
    "io_inp": [
      -2,
      -1,
      1,
      -2,
      -5,
      3
    ],
    "io_out": [
      -24,
      -9,
      -9,
      -4,
      6,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),5),1)"
  },
  {
    "input": "input : list = [0, 2, -1, 0, 0, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(take([0, 2, -1, 0, 0, -2],1),2),10)))",
    "io_inp": [
      0,
      2,
      -1,
      0,
      0,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(take(input,1),2),10)))"
  },
  {
    "input": "input : list = [5, 2, -4]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(take([5, 2, -4],1)))))",
    "io_inp": [
      5,
      2,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [4, 1, 0]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = take(sort_asc([4, 1, 0]),11)",
    "io_inp": [
      4,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [3, 2, 2, -1]\noutput : list = [8]",
    "output": "generated_output : list = take(take(sub_n([3, 2, 2, -1],-5),1),23)",
    "io_inp": [
      3,
      2,
      2,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,-5),1),23)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [86, 41]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n([-2, -5],-3),-3)),5),4)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      86,
      41
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n(input,-3),-3)),5),4)"
  },
  {
    "input": "input : list = [5, -5, 1]\noutput : list = [-11, -3, 9]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(add_n([5, -5, 1],-2))),-2),-5)",
    "io_inp": [
      5,
      -5,
      1
    ],
    "io_out": [
      -11,
      -3,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(add_n(input,-2))),-2),-5)"
  },
  {
    "input": "input : list = [-4, 0, 3, -3, -2]\noutput : list = [0, 1, 3, 6]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(reverse([-4, 0, 3, -3, -2]),4)),-3),52)",
    "io_inp": [
      -4,
      0,
      3,
      -3,
      -2
    ],
    "io_out": [
      0,
      1,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(reverse(input),4)),-3),52)"
  },
  {
    "input": "input : list = [-3, 4, 0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(drop([-3, 4, 0, 3],2))",
    "io_inp": [
      -3,
      4,
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-5, 4, 2, -2, -5, 4]\noutput : list = [5, 5, 3, -1, -4, -4]",
    "output": "generated_output : list = sort_des(add_n([-5, 4, 2, -2, -5, 4],1))",
    "io_inp": [
      -5,
      4,
      2,
      -2,
      -5,
      4
    ],
    "io_out": [
      5,
      5,
      3,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [-2, -2, 1, 3, -2]\noutput : list = [-12, 6, 18]",
    "output": "generated_output : list = mul_n(take(drop(take(mul_n([-2, -2, 1, 3, -2],2),4),1),19),3)",
    "io_inp": [
      -2,
      -2,
      1,
      3,
      -2
    ],
    "io_out": [
      -12,
      6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(take(mul_n(input,2),4),1),19),3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [4, 8]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(mul_n([-1, -3],1)),-2),2))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(mul_n(input,1)),-2),2))"
  },
  {
    "input": "input : list = [0, -5, 0, 5, 5]\noutput : list = [-7, -2, -2, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(add_n([0, -5, 0, 5, 5],-3),-1))))",
    "io_inp": [
      0,
      -5,
      0,
      5,
      5
    ],
    "io_out": [
      -7,
      -2,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(add_n(input,-3),-1))))"
  },
  {
    "input": "input : list = [5, 3, -3, -3, -3, 2]\noutput : list = [-1, -3, -4, -9, -9, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(reverse([5, 3, -3, -3, -3, 2]),4)),-2))",
    "io_inp": [
      5,
      3,
      -3,
      -3,
      -3,
      2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(reverse(input),4)),-2))"
  },
  {
    "input": "input : list = [-2, 1, 5, 2, -1]\noutput : list = [6, 3, 0, 4, 7]",
    "output": "generated_output : list = sub_n(mul_n(reverse([-2, 1, 5, 2, -1]),-1),-5)",
    "io_inp": [
      -2,
      1,
      5,
      2,
      -1
    ],
    "io_out": [
      6,
      3,
      0,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),-1),-5)"
  },
  {
    "input": "input : list = [3, -5, -2, -5]\noutput : list = [3, -2, -5, -5]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(reverse([3, -5, -2, -5]))),26),1)",
    "io_inp": [
      3,
      -5,
      -2,
      -5
    ],
    "io_out": [
      3,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(reverse(input))),26),1)"
  },
  {
    "input": "input : list = [5, -5, 3, -5, 4]\noutput : list = [5, -5, 3]",
    "output": "generated_output : list = take([5, -5, 3, -5, 4],3)",
    "io_inp": [
      5,
      -5,
      3,
      -5,
      4
    ],
    "io_out": [
      5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, -3, 2, 3]\noutput : list = [48, 72]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(drop([-2, -3, 2, 3],2),4),-2),-1),3)",
    "io_inp": [
      -2,
      -3,
      2,
      3
    ],
    "io_out": [
      48,
      72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(drop(input,2),4),-2),-1),3)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [-10, -15, -5]",
    "output": "generated_output : list = mul_n([2, 3, 1],-5)",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      -10,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, 2, 0, -1]\noutput : list = [3, 0, -6, -9]",
    "output": "generated_output : list = take(mul_n(reverse([3, 2, 0, -1]),-3),4)",
    "io_inp": [
      3,
      2,
      0,
      -1
    ],
    "io_out": [
      3,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),-3),4)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc([-1, 2])",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [2, 2]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(reverse([1, 1]),4))),2)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(reverse(input),4))),2)"
  },
  {
    "input": "input : list = [2, 0, 5, 4, -1]\noutput : list = [-42, -18, -78, -66, -6]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(add_n([2, 0, 5, 4, -1],1),-3),4),-5),-1)",
    "io_inp": [
      2,
      0,
      5,
      4,
      -1
    ],
    "io_out": [
      -42,
      -18,
      -78,
      -66,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(add_n(input,1),-3),4),-5),-1)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [2, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(sort_asc([3, 0, 1])),24)),-1)",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(sort_asc(input)),24)),-1)"
  },
  {
    "input": "input : list = [1, -5, 1, 3, 2]\noutput : list = [-10, 2, 2, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(mul_n([1, -5, 1, 3, 2],1),2))))",
    "io_inp": [
      1,
      -5,
      1,
      3,
      2
    ],
    "io_out": [
      -10,
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(mul_n(input,1),2))))"
  },
  {
    "input": "input : list = [-3, -3, 0, -4]\noutput : list = [-4, -4, -1, -5]",
    "output": "generated_output : list = add_n([-3, -3, 0, -4],-1)",
    "io_inp": [
      -3,
      -3,
      0,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 4, 4, -5, 0, 2]\noutput : list = [-20, -16, 0, 8, 16, 16]",
    "output": "generated_output : list = sort_asc(mul_n([-4, 4, 4, -5, 0, 2],4))",
    "io_inp": [
      -4,
      4,
      4,
      -5,
      0,
      2
    ],
    "io_out": [
      -20,
      -16,
      0,
      8,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [3, 2, 1, -4, 2, 3]\noutput : list = [-4, 1, 2, 2, 3, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([3, 2, 1, -4, 2, 3])))",
    "io_inp": [
      3,
      2,
      1,
      -4,
      2,
      3
    ],
    "io_out": [
      -4,
      1,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-3, -3, -5, -1, -5, 1]\noutput : list = [1, -1, -3, -3, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(reverse([-3, -3, -5, -1, -5, 1])),28)))",
    "io_inp": [
      -3,
      -3,
      -5,
      -1,
      -5,
      1
    ],
    "io_out": [
      1,
      -1,
      -3,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(reverse(input)),28)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sub_n([5, 2],1)))))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-2, 0, -1, 0, -4]\noutput : list = [-2, 0, -1]",
    "output": "generated_output : list = take([-2, 0, -1, 0, -4],3)",
    "io_inp": [
      -2,
      0,
      -1,
      0,
      -4
    ],
    "io_out": [
      -2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, 3, -5, -2]\noutput : list = [-11, -8, -3, -3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(sort_asc([3, 3, -5, -2]),5),1),-5))",
    "io_inp": [
      3,
      3,
      -5,
      -2
    ],
    "io_out": [
      -11,
      -8,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(sort_asc(input),5),1),-5))"
  },
  {
    "input": "input : list = [2, 2, 4, -3]\noutput : list = [6, 6, 12, -9]",
    "output": "generated_output : list = mul_n([2, 2, 4, -3],3)",
    "io_inp": [
      2,
      2,
      4,
      -3
    ],
    "io_out": [
      6,
      6,
      12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, 3, 5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(drop([-2, 3, 5],1),12),4),-1),-4)",
    "io_inp": [
      -2,
      3,
      5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(drop(input,1),12),4),-1),-4)"
  },
  {
    "input": "input : list = [5, 4, -3, 2, 3, -1]\noutput : list = [20, -8, 12, 16, 0]",
    "output": "generated_output : list = reverse(reverse(drop(add_n(mul_n([5, 4, -3, 2, 3, -1],4),4),1)))",
    "io_inp": [
      5,
      4,
      -3,
      2,
      3,
      -1
    ],
    "io_out": [
      20,
      -8,
      12,
      16,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(add_n(mul_n(input,4),4),1)))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(sort_asc([0, 3]),4),4),1))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(sort_asc(input),4),4),1))"
  },
  {
    "input": "input : list = [-2, 4, 4, -5]\noutput : list = [-5, -2, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(reverse([-2, 4, 4, -5])))))",
    "io_inp": [
      -2,
      4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n([-2, 2, -1],-3))",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [3, 5, -5, -5, -4, -2]\noutput : list = [-10, -10, -9, -7, -2, 0]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(add_n([3, 5, -5, -5, -4, -2],-5),15))))",
    "io_inp": [
      3,
      5,
      -5,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(add_n(input,-5),15))))"
  },
  {
    "input": "input : list = [0, -3, -4, -4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(take([0, -3, -4, -4],1))),5))",
    "io_inp": [
      0,
      -3,
      -4,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(take(input,1))),5))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = mul_n([-1, -2],3)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des([-4, -1])",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 0, -4]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(take([1, 5, 0, -4],1)),-3),26))",
    "io_inp": [
      1,
      5,
      0,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(take(input,1)),-3),26))"
  },
  {
    "input": "input : list = [2, 2, 3, -5, 3, 3]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(take([2, 2, 3, -5, 3, 3],3)))),3)",
    "io_inp": [
      2,
      2,
      3,
      -5,
      3,
      3
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(take(input,3)))),3)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-19, 11]",
    "output": "generated_output : list = take(reverse(take(sub_n(mul_n([-3, 3],-5),4),16)),37)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -19,
      11
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(mul_n(input,-5),4),16)),37)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-12, -8]",
    "output": "generated_output : list = mul_n([-3, -2],4)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, -3, -5, -1, -3]\noutput : list = [-1, -3, -3, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -3, -5, -1, -3])",
    "io_inp": [
      -3,
      -3,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse([-5, 0]))))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [-11, -11, -27]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(sub_n([-2, -2, 2],-5),4),-4),-1))",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      -11,
      -11,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(sub_n(input,-5),4),-4),-1))"
  },
  {
    "input": "input : list = [2, 3, 4]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sort_des([2, 3, 4])",
    "io_inp": [
      2,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-15, -3]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc([-5, -2]),4),3),-2)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -15,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(input),4),3),-2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(reverse(mul_n([2, 2],2)),22)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,2)),22)"
  },
  {
    "input": "input : list = [5, -1, 5, -5, -1, 5]\noutput : list = [8, 8, 8, 2, 2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(reverse([5, -1, 5, -5, -1, 5]),12)),-3))",
    "io_inp": [
      5,
      -1,
      5,
      -5,
      -1,
      5
    ],
    "io_out": [
      8,
      8,
      8,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(reverse(input),12)),-3))"
  },
  {
    "input": "input : list = [-3, 2, -1, 2]\noutput : list = [34, 10, -26, -26]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n([-3, 2, -1, 2],3))),-4),-2)",
    "io_inp": [
      -3,
      2,
      -1,
      2
    ],
    "io_out": [
      34,
      10,
      -26,
      -26
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n(input,3))),-4),-2)"
  },
  {
    "input": "input : list = [3, 5, -2, 2, 2, -5]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(take([3, 5, -2, 2, 2, -5],2),-4),-3)))",
    "io_inp": [
      3,
      5,
      -2,
      2,
      2,
      -5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(take(input,2),-4),-3)))"
  },
  {
    "input": "input : list = [-2, 0, -3, 3, 1, -1]\noutput : list = [8, 6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(drop([-2, 0, -3, 3, 1, -1],4)),5),2),-4)",
    "io_inp": [
      -2,
      0,
      -3,
      3,
      1,
      -1
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(drop(input,4)),5),2),-4)"
  },
  {
    "input": "input : list = [1, -4, -1, 0, 2]\noutput : list = [-10, -5, 0, 5, 20]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(reverse([1, -4, -1, 0, 2]),-5),27)),28)",
    "io_inp": [
      1,
      -4,
      -1,
      0,
      2
    ],
    "io_out": [
      -10,
      -5,
      0,
      5,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(reverse(input),-5),27)),28)"
  },
  {
    "input": "input : list = [-3, -1, -1, -5, 5, -3]\noutput : list = [5, -1, -1, -3, -3, -5]",
    "output": "generated_output : list = take(reverse(reverse(take(sort_des([-3, -1, -1, -5, 5, -3]),27))),11)",
    "io_inp": [
      -3,
      -1,
      -1,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      -1,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(sort_des(input),27))),11)"
  },
  {
    "input": "input : list = [-1, -5, -2, 0, 0]\noutput : list = [2, 2, -78, -198, -38]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(mul_n([-1, -5, -2, 0, 0],5),4)),2),2)",
    "io_inp": [
      -1,
      -5,
      -2,
      0,
      0
    ],
    "io_out": [
      2,
      2,
      -78,
      -198,
      -38
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(mul_n(input,5),4)),2),2)"
  },
  {
    "input": "input : list = [5, -1, 2, -1]\noutput : list = [6, 3, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sort_asc([5, -1, 2, -1])),-3)),2)",
    "io_inp": [
      5,
      -1,
      2,
      -1
    ],
    "io_out": [
      6,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sort_asc(input)),-3)),2)"
  },
  {
    "input": "input : list = [-3, 4, -3, 5, -4, 4]\noutput : list = [0, -8, 1]",
    "output": "generated_output : list = sub_n(take(reverse([-3, 4, -3, 5, -4, 4]),3),4)",
    "io_inp": [
      -3,
      4,
      -3,
      5,
      -4,
      4
    ],
    "io_out": [
      0,
      -8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),3),4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(add_n([0, 4],-2))),-3))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(add_n(input,-2))),-3))"
  },
  {
    "input": "input : list = [-2, -1, 1, 2, -1]\noutput : list = [3, 2, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(take(add_n(sub_n([-2, -1, 1, 2, -1],1),3),4),-1))",
    "io_inp": [
      -2,
      -1,
      1,
      2,
      -1
    ],
    "io_out": [
      3,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(add_n(sub_n(input,1),3),4),-1))"
  },
  {
    "input": "input : list = [-5, 3, 5, -4, 3]\noutput : list = [9, 5, 5, -9, -11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc([-5, 3, 5, -4, 3]),2),1))",
    "io_inp": [
      -5,
      3,
      5,
      -4,
      3
    ],
    "io_out": [
      9,
      5,
      5,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(input),2),1))"
  },
  {
    "input": "input : list = [0, 5, 2, -2, 3, 3]\noutput : list = [6, 4, 2, 1, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(mul_n([0, 5, 2, -2, 3, 3],-1)),-1)),-3)",
    "io_inp": [
      0,
      5,
      2,
      -2,
      3,
      3
    ],
    "io_out": [
      6,
      4,
      2,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(mul_n(input,-1)),-1)),-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-35, -45]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(mul_n([4, 2],1)),-5),32),-5)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -35,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(mul_n(input,1)),-5),32),-5)"
  },
  {
    "input": "input : list = [-3, 4, -5, -3, 2]\noutput : list = [20, 12, 12, -8, -16]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(mul_n([-3, 4, -5, -3, 2],-4)))),18)",
    "io_inp": [
      -3,
      4,
      -5,
      -3,
      2
    ],
    "io_out": [
      20,
      12,
      12,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(mul_n(input,-4)))),18)"
  },
  {
    "input": "input : list = [-2, 2, -3, 3, -3]\noutput : list = [2, 10, 0, 12, 0]",
    "output": "generated_output : list = add_n(mul_n(add_n([-2, 2, -3, 3, -3],2),2),2)",
    "io_inp": [
      -2,
      2,
      -3,
      3,
      -3
    ],
    "io_out": [
      2,
      10,
      0,
      12,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,2),2),2)"
  },
  {
    "input": "input : list = [2, 5, 3, 0, 2, 5]\noutput : list = [2, 5, 3, 0, 2, 5]",
    "output": "generated_output : list = mul_n([2, 5, 3, 0, 2, 5],1)",
    "io_inp": [
      2,
      5,
      3,
      0,
      2,
      5
    ],
    "io_out": [
      2,
      5,
      3,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-5, 5, 2, 0]\noutput : list = [-30, -15, -5, 20]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_asc([-5, 5, 2, 0]),-1))),-5)",
    "io_inp": [
      -5,
      5,
      2,
      0
    ],
    "io_out": [
      -30,
      -15,
      -5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_asc(input),-1))),-5)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = add_n(add_n([-3, 1],-4),-1)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),-1)"
  },
  {
    "input": "input : list = [-2, 0, 1, 2]\noutput : list = [20, 10, 0, -20]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-2, 0, 1, 2]),-2),-5)",
    "io_inp": [
      -2,
      0,
      1,
      2
    ],
    "io_out": [
      20,
      10,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-2),-5)"
  },
  {
    "input": "input : list = [2, 2, 2, -1, 3, 5]\noutput : list = [2, 2, 2, -1, 3, 5]",
    "output": "generated_output : list = sub_n(sub_n([2, 2, 2, -1, 3, 5],-5),5)",
    "io_inp": [
      2,
      2,
      2,
      -1,
      3,
      5
    ],
    "io_out": [
      2,
      2,
      2,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),5)"
  },
  {
    "input": "input : list = [-1, -1, 2, 1, 2]\noutput : list = [2, -4, -2, -4]",
    "output": "generated_output : list = add_n(mul_n(take(add_n(drop([-1, -1, 2, 1, 2],1),-2),33),-2),-4)",
    "io_inp": [
      -1,
      -1,
      2,
      1,
      2
    ],
    "io_out": [
      2,
      -4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(add_n(drop(input,1),-2),33),-2),-4)"
  },
  {
    "input": "input : list = [3, -5, -3, 2, -4, -3]\noutput : list = [2, 34, 26, 6, 30, 26]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(sub_n([3, -5, -3, 2, -4, -3],2),-3),-1),-4),2)",
    "io_inp": [
      3,
      -5,
      -3,
      2,
      -4,
      -3
    ],
    "io_out": [
      2,
      34,
      26,
      6,
      30,
      26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(sub_n(input,2),-3),-1),-4),2)"
  },
  {
    "input": "input : list = [-4, 5, 1, -3, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(take(drop(drop([-4, 5, 1, -3, 1],1),3),23),10)",
    "io_inp": [
      -4,
      5,
      1,
      -3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(drop(drop(input,1),3),23),10)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc([0, 2])",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = add_n([-4, 0, 3],2)",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 5, 5, 5]\noutput : list = [5, 5, 5, 4]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(sort_asc([4, 5, 5, 5]),-4),-4)))",
    "io_inp": [
      4,
      5,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(sort_asc(input),-4),-4)))"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [30]",
    "output": "generated_output : list = take(mul_n(drop(mul_n(sort_des([1, 5, -5]),-3),2),2),42)",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(mul_n(sort_des(input),-3),2),2),42)"
  },
  {
    "input": "input : list = [-2, -4, 1, 2]\noutput : list = [0, -1, -4, -6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(sort_des([-2, -4, 1, 2]),-3),-1),-5),5)",
    "io_inp": [
      -2,
      -4,
      1,
      2
    ],
    "io_out": [
      0,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(sort_des(input),-3),-1),-5),5)"
  },
  {
    "input": "input : list = [2, 5, 3, 5]\noutput : list = [2, 2, 0]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(drop([2, 5, 3, 5],1),7)),-4),1)",
    "io_inp": [
      2,
      5,
      3,
      5
    ],
    "io_out": [
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(drop(input,1),7)),-4),1)"
  },
  {
    "input": "input : list = [2, 2, -2, -3]\noutput : list = [15, 10, -10, -10]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(mul_n([2, 2, -2, -3],-1))),5))",
    "io_inp": [
      2,
      2,
      -2,
      -3
    ],
    "io_out": [
      15,
      10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(mul_n(input,-1))),5))"
  },
  {
    "input": "input : list = [-2, -2, -4, -4, -5]\noutput : list = [0, 4, 4, 12, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(sub_n([-2, -2, -4, -4, -5],-2),-3)),4))",
    "io_inp": [
      -2,
      -2,
      -4,
      -4,
      -5
    ],
    "io_out": [
      0,
      4,
      4,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(sub_n(input,-2),-3)),4))"
  },
  {
    "input": "input : list = [2, 5, -5]\noutput : list = [-5, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des([2, 5, -5]))",
    "io_inp": [
      2,
      5,
      -5
    ],
    "io_out": [
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [3, 5, 5, 4]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(mul_n([3, 5, 5, 4],1)),-5),3),2)",
    "io_inp": [
      3,
      5,
      5,
      4
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(mul_n(input,1)),-5),3),2)"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [2, -1, -4]",
    "output": "generated_output : list = sort_des(reverse([-1, -4, 2]))",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, -2, -4, -4, 5]\noutput : list = [10, 10, 20, 20, -25]",
    "output": "generated_output : list = mul_n(mul_n([-2, -2, -4, -4, 5],-1),5)",
    "io_inp": [
      -2,
      -2,
      -4,
      -4,
      5
    ],
    "io_out": [
      10,
      10,
      20,
      20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(sort_asc([-1, -2])))),1)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [2, -1, 1, 3]\noutput : list = [-5, -8, -6, -4]",
    "output": "generated_output : list = add_n(sub_n([2, -1, 1, 3],2),-5)",
    "io_inp": [
      2,
      -1,
      1,
      3
    ],
    "io_out": [
      -5,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-5)"
  },
  {
    "input": "input : list = [-2, -2, 5, 1, -5, 2]\noutput : list = [7, 4, 3, 0, 0, -3]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(add_n([-2, -2, 5, 1, -5, 2],-4)),5),-1),1)",
    "io_inp": [
      -2,
      -2,
      5,
      1,
      -5,
      2
    ],
    "io_out": [
      7,
      4,
      3,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(add_n(input,-4)),5),-1),1)"
  },
  {
    "input": "input : list = [-5, 4, 1, -3, 0, -4]\noutput : list = [-3, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(take([-5, 4, 1, -3, 0, -4],2)),2)))",
    "io_inp": [
      -5,
      4,
      1,
      -3,
      0,
      -4
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(take(input,2)),2)))"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [45, 30]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(sub_n([1, -2, -4],-3),2)),-5),5)",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      45,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(sub_n(input,-3),2)),-5),5)"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = reverse(take(drop([-3, -3, 5],1),3))",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),3))"
  },
  {
    "input": "input : list = [0, -5, 3, -3]\noutput : list = [-5, -3, 0, 3]",
    "output": "generated_output : list = reverse(sort_des([0, -5, 3, -3]))",
    "io_inp": [
      0,
      -5,
      3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [-2, -4, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des([-3, -4, -1]),-2),3),5))",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des(input),-2),3),5))"
  },
  {
    "input": "input : list = [3, 3, 1, 1, 4]\noutput : list = [15]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(take([3, 3, 1, 1, 4],1),5))))",
    "io_inp": [
      3,
      3,
      1,
      1,
      4
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(take(input,1),5))))"
  },
  {
    "input": "input : list = [-4, 2, 2, 1]\noutput : list = [-8, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-4, 2, 2, 1],2))",
    "io_inp": [
      -4,
      2,
      2,
      1
    ],
    "io_out": [
      -8,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [2, -2, 1, 0, -2]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = drop([2, -2, 1, 0, -2],2)",
    "io_inp": [
      2,
      -2,
      1,
      0,
      -2
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -3, 3, 4, 5, 4]\noutput : list = [3, 9, 9, 10, 10, 11]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(sort_des([3, -3, 3, 4, 5, 4]))),3),3)",
    "io_inp": [
      3,
      -3,
      3,
      4,
      5,
      4
    ],
    "io_out": [
      3,
      9,
      9,
      10,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(sort_des(input))),3),3)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(sort_asc(reverse([-4, -5])),2)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(input)),2)"
  },
  {
    "input": "input : list = [2, 5, 2, 2]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 5, 2, 2],1)",
    "io_inp": [
      2,
      5,
      2,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 1, 5]\noutput : list = [3, 5, 9]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc(sub_n([-1, 1, 5],-4)),-1),3),-4)",
    "io_inp": [
      -1,
      1,
      5
    ],
    "io_out": [
      3,
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(sub_n(input,-4)),-1),3),-4)"
  },
  {
    "input": "input : list = [3, 5, 0, 4, 0, -5]\noutput : list = [-2, 3, 3, 6, 7, 8]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(sort_des([3, 5, 0, 4, 0, -5])),3)),48)",
    "io_inp": [
      3,
      5,
      0,
      4,
      0,
      -5
    ],
    "io_out": [
      -2,
      3,
      3,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(sort_des(input)),3)),48)"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [-2, -2, -6]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(sort_des([-1, 3, 3])),5)),36)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(sort_des(input)),5)),36)"
  },
  {
    "input": "input : list = [5, -2, 3, 1, -2]\noutput : list = [75, 75, 0, -50, -100]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(reverse([5, -2, 3, 1, -2]),-5)),-5),5)",
    "io_inp": [
      5,
      -2,
      3,
      1,
      -2
    ],
    "io_out": [
      75,
      75,
      0,
      -50,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(reverse(input),-5)),-5),5)"
  },
  {
    "input": "input : list = [2, -4, -4]\noutput : list = [13, 13]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(drop([2, -4, -4],1),-3))),1)",
    "io_inp": [
      2,
      -4,
      -4
    ],
    "io_out": [
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(drop(input,1),-3))),1)"
  },
  {
    "input": "input : list = [-4, -4, -5, -2]\noutput : list = [6, 30, 22, 22]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(mul_n([-4, -4, -5, -2],-4),5),2)),47)",
    "io_inp": [
      -4,
      -4,
      -5,
      -2
    ],
    "io_out": [
      6,
      30,
      22,
      22
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(mul_n(input,-4),5),2)),47)"
  },
  {
    "input": "input : list = [-2, 2, -4]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(take([-2, 2, -4],1)))),4)",
    "io_inp": [
      -2,
      2,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(take(input,1)))),4)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [8, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(reverse([-4, -2]),3),-5)),-4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(reverse(input),3),-5)),-4)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-6, -12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sub_n([-3, 3],-5),4),-1)))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sub_n(input,-5),4),-1)))"
  },
  {
    "input": "input : list = [1, 5, 0, 5]\noutput : list = [3, 3, -1, -2]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(sort_des([1, 5, 0, 5])),-5),31),-3)",
    "io_inp": [
      1,
      5,
      0,
      5
    ],
    "io_out": [
      3,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(sort_des(input)),-5),31),-3)"
  },
  {
    "input": "input : list = [-5, -1, -2, 5, 5, 2]\noutput : list = [0, 4, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(drop([-5, -1, -2, 5, 5, 2],2),2))",
    "io_inp": [
      -5,
      -1,
      -2,
      5,
      5,
      2
    ],
    "io_out": [
      0,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,2),2))"
  },
  {
    "input": "input : list = [2, 1, -5, 3, 2]\noutput : list = [5, 4, 4, 3, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n([2, 1, -5, 3, 2],-2)))",
    "io_inp": [
      2,
      1,
      -5,
      3,
      2
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-5, 5, 5, -3]\noutput : list = [10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(take([-5, 5, 5, -3],1),4),-2)))",
    "io_inp": [
      -5,
      5,
      5,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(take(input,1),4),-2)))"
  },
  {
    "input": "input : list = [1, 4, 1, 3, 2, 1]\noutput : list = [8, 7, 5, 5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(take([1, 4, 1, 3, 2, 1],4))),1),4)",
    "io_inp": [
      1,
      4,
      1,
      3,
      2,
      1
    ],
    "io_out": [
      8,
      7,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(take(input,4))),1),4)"
  },
  {
    "input": "input : list = [4, 0, -1, -4, -3]\noutput : list = [-12, -9]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(drop([4, 0, -1, -4, -3],3),3))))",
    "io_inp": [
      4,
      0,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(drop(input,3),3))))"
  },
  {
    "input": "input : list = [-4, -1, 5, 5, -2]\noutput : list = [-4, -2, -1, 5, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(reverse([-4, -1, 5, 5, -2]))),27))",
    "io_inp": [
      -4,
      -1,
      5,
      5,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(reverse(input))),27))"
  },
  {
    "input": "input : list = [-4, 2, 2, 0, 2, 5]\noutput : list = [-12, 6, 6, 0, 6, 15]",
    "output": "generated_output : list = mul_n([-4, 2, 2, 0, 2, 5],3)",
    "io_inp": [
      -4,
      2,
      2,
      0,
      2,
      5
    ],
    "io_out": [
      -12,
      6,
      6,
      0,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, -3, -4, -4, 5]\noutput : list = [4, -4, -4, -5, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(add_n([-3, -3, -4, -4, 5],3)))),-4)",
    "io_inp": [
      -3,
      -3,
      -4,
      -4,
      5
    ],
    "io_out": [
      4,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(add_n(input,3)))),-4)"
  },
  {
    "input": "input : list = [3, -2, -1, 4]\noutput : list = [-60, -55, -35, -30]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(sub_n([3, -2, -1, 4],-5),-3),-5)))",
    "io_inp": [
      3,
      -2,
      -1,
      4
    ],
    "io_out": [
      -60,
      -55,
      -35,
      -30
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(sub_n(input,-5),-3),-5)))"
  },
  {
    "input": "input : list = [1, -2, 1, 0, 5]\noutput : list = [-9, 0, -3, 12]",
    "output": "generated_output : list = mul_n(take(sub_n(take(drop([1, -2, 1, 0, 5],1),19),1),36),3)",
    "io_inp": [
      1,
      -2,
      1,
      0,
      5
    ],
    "io_out": [
      -9,
      0,
      -3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(drop(input,1),19),1),36),3)"
  },
  {
    "input": "input : list = [4, 4, 5, 1, 5, -2]\noutput : list = [0, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(drop([4, 4, 5, 1, 5, -2],4),2))))",
    "io_inp": [
      4,
      4,
      5,
      1,
      5,
      -2
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(drop(input,4),2))))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-7, 8]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc([-2, 1]),5),8),3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -7,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(input),5),8),3)"
  },
  {
    "input": "input : list = [5, -5, -3, 0, 0]\noutput : list = [2, -8, -6, -3, -3]",
    "output": "generated_output : list = sub_n(add_n([5, -5, -3, 0, 0],-2),1)",
    "io_inp": [
      5,
      -5,
      -3,
      0,
      0
    ],
    "io_out": [
      2,
      -8,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),1)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-1, -6, -5]",
    "output": "generated_output : list = reverse(add_n([-2, -3, 2],-3))",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -1,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [1, 0, 5, 5, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(take([1, 0, 5, 5, 1],2))),3))",
    "io_inp": [
      1,
      0,
      5,
      5,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(take(input,2))),3))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-1, 0]",
    "output": "generated_output : list = add_n(sort_asc([3, 2]),-3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [1, 2, 0, -3, -5, -1]\noutput : list = [16, 24, 32]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(drop([1, 2, 0, -3, -5, -1],3),-5),-4),4))",
    "io_inp": [
      1,
      2,
      0,
      -3,
      -5,
      -1
    ],
    "io_out": [
      16,
      24,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(drop(input,3),-5),-4),4))"
  },
  {
    "input": "input : list = [-4, -2, -4, 5, 2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(take([-4, -2, -4, 5, 2],2)),2)))",
    "io_inp": [
      -4,
      -2,
      -4,
      5,
      2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(take(input,2)),2)))"
  },
  {
    "input": "input : list = [4, 5, 2, -3, -2]\noutput : list = [-4, -3, 1, 3, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc([4, 5, 2, -3, -2]))),1)",
    "io_inp": [
      4,
      5,
      2,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(input))),1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(sort_asc([-2, 2]),5)),4),-1)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(sort_asc(input),5)),4),-1)"
  },
  {
    "input": "input : list = [1, 4, -2, 4, -3, 0]\noutput : list = [-4, 2, 4, 8, 10]",
    "output": "generated_output : list = drop(sort_asc(sort_des(add_n(mul_n([1, 4, -2, 4, -3, 0],-2),4))),1)",
    "io_inp": [
      1,
      4,
      -2,
      4,
      -3,
      0
    ],
    "io_out": [
      -4,
      2,
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_des(add_n(mul_n(input,-2),4))),1)"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(sort_des([0, 4, 3]),9))))",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(sort_des(input),9))))"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [0, 3, 15]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(mul_n([1, 5, 0],-1)))),-3)",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      0,
      3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(mul_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [5, -4, -5, 4, 3, 0]\noutput : list = [-10, 8, 10, -8, -6, 0]",
    "output": "generated_output : list = mul_n([5, -4, -5, 4, 3, 0],-2)",
    "io_inp": [
      5,
      -4,
      -5,
      4,
      3,
      0
    ],
    "io_out": [
      -10,
      8,
      10,
      -8,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 3, 3, 2, 5, 0]\noutput : list = [2, 12, 17, 17, 22, 27]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(mul_n([4, 3, 3, 2, 5, 0],5)),-2)))",
    "io_inp": [
      4,
      3,
      3,
      2,
      5,
      0
    ],
    "io_out": [
      2,
      12,
      17,
      17,
      22,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(mul_n(input,5)),-2)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sub_n([-2, 5],3)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(drop([1, -5, -1],1)),-4)))",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(drop(input,1)),-4)))"
  },
  {
    "input": "input : list = [-2, -5, 3, -5, -2, -5]\noutput : list = [-3, -12, 12, -12, -3, -12]",
    "output": "generated_output : list = sub_n(mul_n([-2, -5, 3, -5, -2, -5],3),-3)",
    "io_inp": [
      -2,
      -5,
      3,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -12,
      12,
      -12,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),-3)"
  },
  {
    "input": "input : list = [0, 3, 3, 0, 1, 4]\noutput : list = [0, 0, -4, -12, -12, -16]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([0, 3, 3, 0, 1, 4],1),-4))",
    "io_inp": [
      0,
      3,
      3,
      0,
      1,
      4
    ],
    "io_out": [
      0,
      0,
      -4,
      -12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,1),-4))"
  },
  {
    "input": "input : list = [2, 1, -4, -1, 0, -1]\noutput : list = [2, 1]",
    "output": "generated_output : list = take([2, 1, -4, -1, 0, -1],2)",
    "io_inp": [
      2,
      1,
      -4,
      -1,
      0,
      -1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -1, 5]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = add_n([-2, -1, 5],-2)",
    "io_inp": [
      -2,
      -1,
      5
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, -1, 3, 4, 2]\noutput : list = [82, -62, 82, 118, 46]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n(mul_n([3, -1, 3, 4, 2],3),2),4),3),-2)",
    "io_inp": [
      3,
      -1,
      3,
      4,
      2
    ],
    "io_out": [
      82,
      -62,
      82,
      118,
      46
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(mul_n(input,3),2),4),3),-2)"
  },
  {
    "input": "input : list = [-5, -5, 3, 5]\noutput : list = [5, 5, 13, 15]",
    "output": "generated_output : list = reverse(sort_des(add_n(reverse(add_n([-5, -5, 3, 5],5)),5)))",
    "io_inp": [
      -5,
      -5,
      3,
      5
    ],
    "io_out": [
      5,
      5,
      13,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(reverse(add_n(input,5)),5)))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = mul_n([-3, 3],-1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 4, -3, 2]\noutput : list = [-2, 0, 5, 7]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_asc([-5, 4, -3, 2]),-3)),29))",
    "io_inp": [
      -5,
      4,
      -3,
      2
    ],
    "io_out": [
      -2,
      0,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(sort_asc(input),-3)),29))"
  },
  {
    "input": "input : list = [0, 0, -4, 3, -4]\noutput : list = [12, 0, 0, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des([0, 0, -4, 3, -4])),4))",
    "io_inp": [
      0,
      0,
      -4,
      3,
      -4
    ],
    "io_out": [
      12,
      0,
      0,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(input)),4))"
  },
  {
    "input": "input : list = [-2, -1, -5, 2, -1]\noutput : list = [-5, -2, -1, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-2, -1, -5, 2, -1])))",
    "io_inp": [
      -2,
      -1,
      -5,
      2,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [3, 4, -1, -3]\noutput : list = [17, 22]",
    "output": "generated_output : list = take(drop(sort_asc(add_n(mul_n([3, 4, -1, -3],5),2)),2),37)",
    "io_inp": [
      3,
      4,
      -1,
      -3
    ],
    "io_out": [
      17,
      22
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(add_n(mul_n(input,5),2)),2),37)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [1, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n([-3, -3, 2],-4),11)),5)",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(input,-4),11)),5)"
  },
  {
    "input": "input : list = [5, 4, 1]\noutput : list = [-20, -80, -100]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sort_asc([5, 4, 1]),-4),5)))",
    "io_inp": [
      5,
      4,
      1
    ],
    "io_out": [
      -20,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sort_asc(input),-4),5)))"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, 1, -5],1),12)",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),12)"
  },
  {
    "input": "input : list = [-3, 2, 3, 1, 5, -3]\noutput : list = [-8, -8, -4, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-3, 2, 3, 1, 5, -3],5)))",
    "io_inp": [
      -3,
      2,
      3,
      1,
      5,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,5)))"
  },
  {
    "input": "input : list = [3, -2, -2, -4, 4, -2]\noutput : list = [20, 10, -20]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(drop([3, -2, -2, -4, 4, -2],3)),-5),1))",
    "io_inp": [
      3,
      -2,
      -2,
      -4,
      4,
      -2
    ],
    "io_out": [
      20,
      10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(drop(input,3)),-5),1))"
  },
  {
    "input": "input : list = [1, -1, -2, -3, 0, 2]\noutput : list = [-8, -4, 2, 0, -2, -6]",
    "output": "generated_output : list = sub_n(take(mul_n(take(reverse([1, -1, -2, -3, 0, 2]),9),-2),24),4)",
    "io_inp": [
      1,
      -1,
      -2,
      -3,
      0,
      2
    ],
    "io_out": [
      -8,
      -4,
      2,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(reverse(input),9),-2),24),4)"
  },
  {
    "input": "input : list = [4, 4, -5, 0, 3, 4]\noutput : list = [-35, -35, 10, -15, -30, -35]",
    "output": "generated_output : list = mul_n(sub_n(add_n([4, 4, -5, 0, 3, 4],5),2),-5)",
    "io_inp": [
      4,
      4,
      -5,
      0,
      3,
      4
    ],
    "io_out": [
      -35,
      -35,
      10,
      -15,
      -30,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,5),2),-5)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [76, -20]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(mul_n([-1, 5],4)),2),2),2)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      76,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(mul_n(input,4)),2),2),2)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(add_n(add_n(reverse(drop([1, 3, 4],1)),-5),4),3)",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(reverse(drop(input,1)),-5),4),3)"
  },
  {
    "input": "input : list = [-5, -3, 3, -3, -4]\noutput : list = [30, 20, -10, 20, 25]",
    "output": "generated_output : list = mul_n(sub_n([-5, -3, 3, -3, -4],1),-5)",
    "io_inp": [
      -5,
      -3,
      3,
      -3,
      -4
    ],
    "io_out": [
      30,
      20,
      -10,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [4, 2, 0, 2, 2]\noutput : list = [4, 2, 2, 2, 0]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(reverse([4, 2, 0, 2, 2])),19)),51)",
    "io_inp": [
      4,
      2,
      0,
      2,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(reverse(input)),19)),51)"
  },
  {
    "input": "input : list = [-2, 1, 4, -5, 5]\noutput : list = [-5, -2, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, 1, 4, -5, 5]))",
    "io_inp": [
      -2,
      1,
      4,
      -5,
      5
    ],
    "io_out": [
      -5,
      -2,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [4, -4, -1, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = take([4, -4, -1, -4],2)",
    "io_inp": [
      4,
      -4,
      -1,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -5, 4, -1, 3]\noutput : list = [3, -1, 4, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 4, -1, 3])",
    "io_inp": [
      2,
      -5,
      4,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, -1, -2, -1, 1]\noutput : list = [2, 0, 0, 0, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse([-1, -1, -1, -2, -1, 1]))),1)",
    "io_inp": [
      -1,
      -1,
      -1,
      -2,
      -1,
      1
    ],
    "io_out": [
      2,
      0,
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(input))),1)"
  },
  {
    "input": "input : list = [-3, 2, 2]\noutput : list = [-9, -4, -4]",
    "output": "generated_output : list = take(add_n(take(take(add_n([-3, 2, 2],-4),14),20),-2),41)",
    "io_inp": [
      -3,
      2,
      2
    ],
    "io_out": [
      -9,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(add_n(input,-4),14),20),-2),41)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take([-2, -5, 5],1),2))))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take(input,1),2))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-9, -4]",
    "output": "generated_output : list = sub_n(sort_asc([1, -4]),5)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [3, 5, 1, -5, 0]\noutput : list = [-6, -1]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(drop([3, 5, 1, -5, 0],3)),2),1))",
    "io_inp": [
      3,
      5,
      1,
      -5,
      0
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(drop(input,3)),2),1))"
  },
  {
    "input": "input : list = [2, 1, -3, 4]\noutput : list = [0, -7, -3, -2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n([2, 1, -3, 4],5),3),4)),2)",
    "io_inp": [
      2,
      1,
      -3,
      4
    ],
    "io_out": [
      0,
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n(input,5),3),4)),2)"
  },
  {
    "input": "input : list = [-3, 0, 3, 0, 5]\noutput : list = [5, 0, 3, 0, -3]",
    "output": "generated_output : list = take(reverse([-3, 0, 3, 0, 5]),14)",
    "io_inp": [
      -3,
      0,
      3,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),14)"
  },
  {
    "input": "input : list = [-1, -5, 2, -1, -2, -3]\noutput : list = [24, 18, 15, 12, 12, 3]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(add_n([-1, -5, 2, -1, -2, -3],-3)),39),44),-3)",
    "io_inp": [
      -1,
      -5,
      2,
      -1,
      -2,
      -3
    ],
    "io_out": [
      24,
      18,
      15,
      12,
      12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(add_n(input,-3)),39),44),-3)"
  },
  {
    "input": "input : list = [-1, 2, 4, -2]\noutput : list = [-16, 20]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(drop([-1, 2, 4, -2],2),-2),-3),4))",
    "io_inp": [
      -1,
      2,
      4,
      -2
    ],
    "io_out": [
      -16,
      20
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(drop(input,2),-2),-3),4))"
  },
  {
    "input": "input : list = [1, 0, 4, 0, 2]\noutput : list = [6, 5, 9, 5, 7]",
    "output": "generated_output : list = add_n([1, 0, 4, 0, 2],5)",
    "io_inp": [
      1,
      0,
      4,
      0,
      2
    ],
    "io_out": [
      6,
      5,
      9,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [40, -100]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-5, 2],4)),5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      40,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,4)),5)"
  },
  {
    "input": "input : list = [3, 1, -1, 1, -4, 4]\noutput : list = [2, 6, 10, 6, 16, 0]",
    "output": "generated_output : list = mul_n(sub_n(take(take(add_n([3, 1, -1, 1, -4, 4],1),13),18),5),-2)",
    "io_inp": [
      3,
      1,
      -1,
      1,
      -4,
      4
    ],
    "io_out": [
      2,
      6,
      10,
      6,
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(add_n(input,1),13),18),5),-2)"
  },
  {
    "input": "input : list = [4, -4, -2, -2, 0, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_des(take(take(take([4, -4, -2, -2, 0, 1],1),6),27)))",
    "io_inp": [
      4,
      -4,
      -2,
      -2,
      0,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(take(input,1),6),27)))"
  },
  {
    "input": "input : list = [-5, -5, -4, -4, 3, 3]\noutput : list = [-25, -25, -20, -20, 15, 15]",
    "output": "generated_output : list = mul_n([-5, -5, -4, -4, 3, 3],5)",
    "io_inp": [
      -5,
      -5,
      -4,
      -4,
      3,
      3
    ],
    "io_out": [
      -25,
      -25,
      -20,
      -20,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 2, -3, -3, 0]\noutput : list = [11, 11, -7, -13, -19]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_asc([1, 2, -3, -3, 0]),-2),3),3),-2)",
    "io_inp": [
      1,
      2,
      -3,
      -3,
      0
    ],
    "io_out": [
      11,
      11,
      -7,
      -13,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sort_asc(input),-2),3),3),-2)"
  },
  {
    "input": "input : list = [-5, 3, 3, 2]\noutput : list = [7, 7, 4, -17]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(sort_asc([-5, 3, 3, 2]),3),7)),-2)",
    "io_inp": [
      -5,
      3,
      3,
      2
    ],
    "io_out": [
      7,
      7,
      4,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(sort_asc(input),3),7)),-2)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-8, 2]",
    "output": "generated_output : list = mul_n(reverse(mul_n([1, -4],2)),1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,2)),1)"
  },
  {
    "input": "input : list = [-2, -5, 2, -4, 4]\noutput : list = [5, 45, 15, 50, 35]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-2, -5, 2, -4, 4],5)),-5)",
    "io_inp": [
      -2,
      -5,
      2,
      -4,
      4
    ],
    "io_out": [
      5,
      45,
      15,
      50,
      35
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,5)),-5)"
  },
  {
    "input": "input : list = [-3, -4, 4, -3, -4]\noutput : list = [0, 0, 1, 1, 8]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(add_n([-3, -4, 4, -3, -4],5),1)),40))",
    "io_inp": [
      -3,
      -4,
      4,
      -3,
      -4
    ],
    "io_out": [
      0,
      0,
      1,
      1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(add_n(input,5),1)),40))"
  },
  {
    "input": "input : list = [-5, -1, 2, -2, 0]\noutput : list = [-10, -20, -25, -30, -45]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse(reverse([-5, -1, 2, -2, 0]))),4),5)",
    "io_inp": [
      -5,
      -1,
      2,
      -2,
      0
    ],
    "io_out": [
      -10,
      -20,
      -25,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(reverse(input))),4),5)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [5, 0]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(reverse([3, -2])),-3),-5),21)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(reverse(input)),-3),-5),21)"
  },
  {
    "input": "input : list = [1, -3, 4, 3, -3, -5]\noutput : list = [1, 0, -2, -6, -6, -8]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(sort_asc([1, -3, 4, 3, -3, -5])),5),5),3)",
    "io_inp": [
      1,
      -3,
      4,
      3,
      -3,
      -5
    ],
    "io_out": [
      1,
      0,
      -2,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(sort_asc(input)),5),5),3)"
  },
  {
    "input": "input : list = [-3, -1, 0, 1, 1, -5]\noutput : list = [-13, -8, -7, -7]",
    "output": "generated_output : list = sub_n(take(sort_asc(drop(sub_n([-3, -1, 0, 1, 1, -5],5),2)),27),3)",
    "io_inp": [
      -3,
      -1,
      0,
      1,
      1,
      -5
    ],
    "io_out": [
      -13,
      -8,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(drop(sub_n(input,5),2)),27),3)"
  },
  {
    "input": "input : list = [-2, -4, 2, -5, 5, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(take([-2, -4, 2, -5, 5, -5],1),11)),5),-4)",
    "io_inp": [
      -2,
      -4,
      2,
      -5,
      5,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(take(input,1),11)),5),-4)"
  },
  {
    "input": "input : list = [-4, -2, 2, -3, 0]\noutput : list = [2, -3, 0]",
    "output": "generated_output : list = drop([-4, -2, 2, -3, 0],2)",
    "io_inp": [
      -4,
      -2,
      2,
      -3,
      0
    ],
    "io_out": [
      2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, -2, 2, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(take([-4, -2, 2, -3],1)),14)),-3)",
    "io_inp": [
      -4,
      -2,
      2,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(take(input,1)),14)),-3)"
  },
  {
    "input": "input : list = [4, -5, 0, -3, -3]\noutput : list = [6, 2, -1, -1, -3]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(add_n([4, -5, 0, -3, -3],-2),-1),2)),3)",
    "io_inp": [
      4,
      -5,
      0,
      -3,
      -3
    ],
    "io_out": [
      6,
      2,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(add_n(input,-2),-1),2)),3)"
  },
  {
    "input": "input : list = [-4, -4, -5, -3, -1, 0]\noutput : list = [-9, -9, -10, -8, -6, -5]",
    "output": "generated_output : list = sub_n([-4, -4, -5, -3, -1, 0],5)",
    "io_inp": [
      -4,
      -4,
      -5,
      -3,
      -1,
      0
    ],
    "io_out": [
      -9,
      -9,
      -10,
      -8,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, -16]",
    "output": "generated_output : list = mul_n([0, 4],-4)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [4, -2, -2, 0]\noutput : list = [8, 2, 2, 4]",
    "output": "generated_output : list = add_n([4, -2, -2, 0],4)",
    "io_inp": [
      4,
      -2,
      -2,
      0
    ],
    "io_out": [
      8,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, -1, -5, 2, 0, 4]\noutput : list = [2, -6, 22, 6]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(drop([-1, -1, -5, 2, 0, 4],1),4),-4),-2))",
    "io_inp": [
      -1,
      -1,
      -5,
      2,
      0,
      4
    ],
    "io_out": [
      2,
      -6,
      22,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(drop(input,1),4),-4),-2))"
  },
  {
    "input": "input : list = [2, 4, -3, 5]\noutput : list = [-4, -8, 6, -10]",
    "output": "generated_output : list = mul_n([2, 4, -3, 5],-2)",
    "io_inp": [
      2,
      4,
      -3,
      5
    ],
    "io_out": [
      -4,
      -8,
      6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 0, -3, 2, -1]\noutput : list = [2, 7, 4]",
    "output": "generated_output : list = sub_n(drop([-1, 0, -3, 2, -1],2),-5)",
    "io_inp": [
      -1,
      0,
      -3,
      2,
      -1
    ],
    "io_out": [
      2,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [0, 5, -2, 4, -4, 4]\noutput : list = [-10, -5, -5, 15, 25, 35]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_asc([0, 5, -2, 4, -4, 4]),1),2)),-5)",
    "io_inp": [
      0,
      5,
      -2,
      4,
      -4,
      4
    ],
    "io_out": [
      -10,
      -5,
      -5,
      15,
      25,
      35
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_asc(input),1),2)),-5)"
  },
  {
    "input": "input : list = [5, 2, 0, 0, 5, -2]\noutput : list = [1, 1, -2, -4, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(mul_n([5, 2, 0, 0, 5, -2],1)),-4)",
    "io_inp": [
      5,
      2,
      0,
      0,
      5,
      -2
    ],
    "io_out": [
      1,
      1,
      -2,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,1)),-4)"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [12, 3, -6]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([2, -1, -4],-3),1))",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      12,
      3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-3),1))"
  },
  {
    "input": "input : list = [-3, 3, 4, -5, 3, 0]\noutput : list = [-10, -8, -5, -2, -2, -1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n([-3, 3, 4, -5, 3, 0],4)),-5),4)",
    "io_inp": [
      -3,
      3,
      4,
      -5,
      3,
      0
    ],
    "io_out": [
      -10,
      -8,
      -5,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(input,4)),-5),4)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-12, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(add_n([-3, 0],5)),5)),4)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(add_n(input,5)),5)),4)"
  },
  {
    "input": "input : list = [-2, 5, 4, -5, 4, -1]\noutput : list = [-5, -1, 4]",
    "output": "generated_output : list = reverse(sort_des(take(take(drop([-2, 5, 4, -5, 4, -1],3),23),26)))",
    "io_inp": [
      -2,
      5,
      4,
      -5,
      4,
      -1
    ],
    "io_out": [
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(drop(input,3),23),26)))"
  },
  {
    "input": "input : list = [-1, -4, -4, 0, -1, 4]\noutput : list = [1, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(take([-1, -4, -4, 0, -1, 4],4),-5))))",
    "io_inp": [
      -1,
      -4,
      -4,
      0,
      -1,
      4
    ],
    "io_out": [
      1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(take(input,4),-5))))"
  },
  {
    "input": "input : list = [2, -3, 2, -4, -5]\noutput : list = [10, 13]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(drop([2, -3, 2, -4, -5],3),-3)),-2),46)",
    "io_inp": [
      2,
      -3,
      2,
      -4,
      -5
    ],
    "io_out": [
      10,
      13
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(drop(input,3),-3)),-2),46)"
  },
  {
    "input": "input : list = [0, 4, 2, 0]\noutput : list = [-4, -4, -2, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(sort_asc([0, 4, 2, 0]),4),4),3),1)",
    "io_inp": [
      0,
      4,
      2,
      0
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(sort_asc(input),4),4),3),1)"
  },
  {
    "input": "input : list = [-3, 5, 0, -4, -2, 1]\noutput : list = [9]",
    "output": "generated_output : list = add_n(reverse(drop(sort_asc(reverse([-3, 5, 0, -4, -2, 1])),5)),4)",
    "io_inp": [
      -3,
      5,
      0,
      -4,
      -2,
      1
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(sort_asc(reverse(input)),5)),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [3, -13]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sub_n([-5, 3],-5)),-2),2),-1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      3,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sub_n(input,-5)),-2),2),-1)"
  },
  {
    "input": "input : list = [-3, -1, -2, -3, -3]\noutput : list = [-1, 0, 1, 1, 1]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-3, -1, -2, -3, -3]),-1),2)",
    "io_inp": [
      -3,
      -1,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -1,
      0,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-1),2)"
  },
  {
    "input": "input : list = [0, -4, -1, -3, 5, 1]\noutput : list = [0, 8, 2, 6, -10, -2]",
    "output": "generated_output : list = mul_n([0, -4, -1, -3, 5, 1],-2)",
    "io_inp": [
      0,
      -4,
      -1,
      -3,
      5,
      1
    ],
    "io_out": [
      0,
      8,
      2,
      6,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [10, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(sub_n([2, 0],2)),10),-5))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(sub_n(input,2)),10),-5))"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [2, 2, 0]",
    "output": "generated_output : list = take(sub_n([-3, -3, -5],-5),11)",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),11)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des([-2, 3]),-3)),3)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(input),-3)),3)"
  },
  {
    "input": "input : list = [-1, 4, 4, 2, -1, 5]\noutput : list = [5, 4, 4, 2, -1, -1]",
    "output": "generated_output : list = sort_des([-1, 4, 4, 2, -1, 5])",
    "io_inp": [
      -1,
      4,
      4,
      2,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, 2, 3, 1]\noutput : list = [7, 5, 8, 9, 7]",
    "output": "generated_output : list = take(add_n(sub_n([1, -1, 2, 3, 1],-5),1),22)",
    "io_inp": [
      1,
      -1,
      2,
      3,
      1
    ],
    "io_out": [
      7,
      5,
      8,
      9,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,-5),1),22)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = mul_n([-3, -1],2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 5]\noutput : list = [7, 2, 1, -2, -3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_asc([-5, -4, 0, -1, 5]))),2))",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      5
    ],
    "io_out": [
      7,
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(sort_asc([-1, -4, 4]),-4),1)),4)",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(sort_asc(input),-4),1)),4)"
  },
  {
    "input": "input : list = [2, 0, 0, -1]\noutput : list = [4, 5, 5, 7]",
    "output": "generated_output : list = add_n(sort_asc(take(take(sort_asc([2, 0, 0, -1]),10),7)),5)",
    "io_inp": [
      2,
      0,
      0,
      -1
    ],
    "io_out": [
      4,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(sort_asc(input),10),7)),5)"
  },
  {
    "input": "input : list = [5, -5, 4, -1]\noutput : list = [-5, -1, 4, 5]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sort_asc([5, -5, 4, -1]),19)),1))",
    "io_inp": [
      5,
      -5,
      4,
      -1
    ],
    "io_out": [
      -5,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sort_asc(input),19)),1))"
  },
  {
    "input": "input : list = [3, -1, -3, -4, -5, -4]\noutput : list = [-16, 0, 8, 12, 12, 16]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(sort_des([3, -1, -3, -4, -5, -4]))),-4),-4)",
    "io_inp": [
      3,
      -1,
      -3,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -16,
      0,
      8,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(sort_des(input))),-4),-4)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([-3, 1])))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [3, -1, 3, -4, -1]\noutput : list = [8, 8, 4, 4, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(sub_n([3, -1, 3, -4, -1],-3)),-1),-1))",
    "io_inp": [
      3,
      -1,
      3,
      -4,
      -1
    ],
    "io_out": [
      8,
      8,
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(sub_n(input,-3)),-1),-1))"
  },
  {
    "input": "input : list = [4, -4, 1, -1]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(take([4, -4, 1, -1],2))",
    "io_inp": [
      4,
      -4,
      1,
      -1
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = drop([-5, 1, 1],1)",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 3, 3, -5]\noutput : list = [2, 3, 10, 10]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(add_n([-4, 3, 3, -5],5)),2),37))",
    "io_inp": [
      -4,
      3,
      3,
      -5
    ],
    "io_out": [
      2,
      3,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(add_n(input,5)),2),37))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(reverse([2, 2])),12),-4))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(reverse(input)),12),-4))"
  },
  {
    "input": "input : list = [4, 0, -2, 1, -5, 0]\noutput : list = [-6, -3, -1, -1, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc([4, 0, -2, 1, -5, 0]),1)",
    "io_inp": [
      4,
      0,
      -2,
      1,
      -5,
      0
    ],
    "io_out": [
      -6,
      -3,
      -1,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [4, 0, -2, 4, -4, -1]\noutput : list = [-101, -51, -26, -1, 99, 99]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(mul_n([4, 0, -2, 4, -4, -1],5)),5)),1)",
    "io_inp": [
      4,
      0,
      -2,
      4,
      -4,
      -1
    ],
    "io_out": [
      -101,
      -51,
      -26,
      -1,
      99,
      99
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(mul_n(input,5)),5)),1)"
  },
  {
    "input": "input : list = [3, -3, 3, -3]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(take([3, -3, 3, -3],1),3)",
    "io_inp": [
      3,
      -3,
      3,
      -3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-5, -2, 1, -5]\noutput : list = [-5, -5, -2, 1]",
    "output": "generated_output : list = sort_asc([-5, -2, 1, -5])",
    "io_inp": [
      -5,
      -2,
      1,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, 0, 0, 5]\noutput : list = [-32, -32, -12, -12, 8]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n([5, -5, 0, 0, 5],3)),-4),20)",
    "io_inp": [
      5,
      -5,
      0,
      0,
      5
    ],
    "io_out": [
      -32,
      -32,
      -12,
      -12,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(input,3)),-4),20)"
  },
  {
    "input": "input : list = [-5, -2, -5, 3, 1, 1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(drop([-5, -2, -5, 3, 1, 1],4)),-4)),21)",
    "io_inp": [
      -5,
      -2,
      -5,
      3,
      1,
      1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(drop(input,4)),-4)),21)"
  },
  {
    "input": "input : list = [2, 0, 5, -3, -2, -3]\noutput : list = [8, 5, 3, 1, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([2, 0, 5, -3, -2, -3]),3))",
    "io_inp": [
      2,
      0,
      5,
      -3,
      -2,
      -3
    ],
    "io_out": [
      8,
      5,
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [17, 2, -4]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(sort_des([-2, 5, 0]),12),3)),-2)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      17,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(sort_des(input),12),3)),-2)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [2, -6, -6]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(mul_n([-3, -3, 1],-1),-2))))",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(mul_n(input,-1),-2))))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [24, 20]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(sub_n([5, 1],-4),5),-2),-3),-5)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      24,
      20
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(sub_n(input,-4),5),-2),-3),-5)"
  },
  {
    "input": "input : list = [3, -4, -1, -3, 3, 1]\noutput : list = [16, 12, 4, -4, -12, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_des([3, -4, -1, -3, 3, 1])))),-4)",
    "io_inp": [
      3,
      -4,
      -1,
      -3,
      3,
      1
    ],
    "io_out": [
      16,
      12,
      4,
      -4,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [-4, -3, -3, -5, -1, 4]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(take([-4, -3, -3, -5, -1, 4],3)),5),44),-5)",
    "io_inp": [
      -4,
      -3,
      -3,
      -5,
      -1,
      4
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(take(input,3)),5),44),-5)"
  },
  {
    "input": "input : list = [4, -2, -2, 4, -2]\noutput : list = [0, 0, -30, -30, -30]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(sort_des([4, -2, -2, 4, -2])),-3),5),-5)",
    "io_inp": [
      4,
      -2,
      -2,
      4,
      -2
    ],
    "io_out": [
      0,
      0,
      -30,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(sort_des(input)),-3),5),-5)"
  },
  {
    "input": "input : list = [-4, 0, -1, -2]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 0, -1, -2],1)",
    "io_inp": [
      -4,
      0,
      -1,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 2, 5, 3, -5]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = take([-2, 2, 5, 3, -5],3)",
    "io_inp": [
      -2,
      2,
      5,
      3,
      -5
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, -2, -5, 4]\noutput : list = [5, 2, -2, -4]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse([2, -2, -5, 4]),11)),-1)",
    "io_inp": [
      2,
      -2,
      -5,
      4
    ],
    "io_out": [
      5,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(input),11)),-1)"
  },
  {
    "input": "input : list = [2, 2, -3, 2]\noutput : list = [6, 1, 6, 6]",
    "output": "generated_output : list = reverse(sub_n([2, 2, -3, 2],-4))",
    "io_inp": [
      2,
      2,
      -3,
      2
    ],
    "io_out": [
      6,
      1,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [4, 5, 5, -4, -4, 3]\noutput : list = [-18, -18, -11]",
    "output": "generated_output : list = add_n(drop(add_n(sub_n(add_n([4, 5, 5, -4, -4, 3],-2),5),-3),3),-4)",
    "io_inp": [
      4,
      5,
      5,
      -4,
      -4,
      3
    ],
    "io_out": [
      -18,
      -18,
      -11
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(sub_n(add_n(input,-2),5),-3),3),-4)"
  },
  {
    "input": "input : list = [0, 0, 4, 5, 3]\noutput : list = [0, 0, -4, -5, -3]",
    "output": "generated_output : list = mul_n([0, 0, 4, 5, 3],-1)",
    "io_inp": [
      0,
      0,
      4,
      5,
      3
    ],
    "io_out": [
      0,
      0,
      -4,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [3, 0, 5, 2, 0, -4]\noutput : list = [-1, 3, 3, 5, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n([3, 0, 5, 2, 0, -4],3))",
    "io_inp": [
      3,
      0,
      5,
      2,
      0,
      -4
    ],
    "io_out": [
      -1,
      3,
      3,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, 1, 1, -2]\noutput : list = [79, -17, -17, 31]",
    "output": "generated_output : list = sub_n(take(mul_n(take(mul_n([-5, 1, 1, -2],4),5),-4),19),1)",
    "io_inp": [
      -5,
      1,
      1,
      -2
    ],
    "io_out": [
      79,
      -17,
      -17,
      31
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(mul_n(input,4),5),-4),19),1)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [-7, -3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(drop([0, 0, -4],1),15),5),-2))",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(drop(input,1),15),5),-2))"
  },
  {
    "input": "input : list = [-4, 1, -2, -3]\noutput : list = [-3, -6, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-4, 1, -2, -3],-4)))",
    "io_inp": [
      -4,
      1,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take([3, 3, -5],1),-1),4),-5)",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(input,1),-1),4),-5)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [20, -10]",
    "output": "generated_output : list = mul_n([4, -2],5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 2, 4, -4]\noutput : list = [-8, -2, -1, 0]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des([3, 2, 4, -4])),25),4)",
    "io_inp": [
      3,
      2,
      4,
      -4
    ],
    "io_out": [
      -8,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(input)),25),4)"
  },
  {
    "input": "input : list = [-3, -5, 0, -5, 5]\noutput : list = [5, -5, 0, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, 0, -5, 5])",
    "io_inp": [
      -3,
      -5,
      0,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      0,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(sort_des([0, 5])),-4)))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-5, 5, 0, 5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sub_n(sub_n(drop([-5, 5, 0, 5],2),4),-2)",
    "io_inp": [
      -5,
      5,
      0,
      5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,2),4),-2)"
  },
  {
    "input": "input : list = [4, 3, 2, 5, 4, 1]\noutput : list = [-1, -2, -3, 0, -1, -4]",
    "output": "generated_output : list = sub_n([4, 3, 2, 5, 4, 1],5)",
    "io_inp": [
      4,
      3,
      2,
      5,
      4,
      1
    ],
    "io_out": [
      -1,
      -2,
      -3,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, -3, 4, -4, 2]\noutput : list = [-4, -4, -3, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc([-4, -3, 4, -4, 2])))))",
    "io_inp": [
      -4,
      -3,
      4,
      -4,
      2
    ],
    "io_out": [
      -4,
      -4,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -3, 0, -4, -4]\noutput : list = [-20, -20]",
    "output": "generated_output : list = mul_n(take(take(take(drop([5, -3, 0, -4, -4],3),17),17),25),5)",
    "io_inp": [
      5,
      -3,
      0,
      -4,
      -4
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(drop(input,3),17),17),25),5)"
  },
  {
    "input": "input : list = [-1, 3, 5, -2, -2]\noutput : list = [-10, -2, 2, -12, -12]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n([-1, 3, 5, -2, -2],2),2),34),4)",
    "io_inp": [
      -1,
      3,
      5,
      -2,
      -2
    ],
    "io_out": [
      -10,
      -2,
      2,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(input,2),2),34),4)"
  },
  {
    "input": "input : list = [2, -4, -4, -4]\noutput : list = [4, 4, 4, 10]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(sort_des([2, -4, -4, -4]),-4))),4)",
    "io_inp": [
      2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      4,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(sort_des(input),-4))),4)"
  },
  {
    "input": "input : list = [-4, 1, -2, 1]\noutput : list = [-5, -2, -2]",
    "output": "generated_output : list = add_n(add_n(sort_asc(drop([-4, 1, -2, 1],1)),-1),-2)",
    "io_inp": [
      -4,
      1,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(drop(input,1)),-1),-2)"
  },
  {
    "input": "input : list = [-3, 0, 5, -5, 2, -5]\noutput : list = [-2, 5, -2, 8, 3, 0]",
    "output": "generated_output : list = reverse(add_n(sub_n([-3, 0, 5, -5, 2, -5],-2),1))",
    "io_inp": [
      -3,
      0,
      5,
      -5,
      2,
      -5
    ],
    "io_out": [
      -2,
      5,
      -2,
      8,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-2),1))"
  },
  {
    "input": "input : list = [4, -4, -5, -3, 3, 1]\noutput : list = [-3, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc([4, -4, -5, -3, 3, 1])),4)))",
    "io_inp": [
      4,
      -4,
      -5,
      -3,
      3,
      1
    ],
    "io_out": [
      -3,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-2, -4, -1, 4, -1]\noutput : list = [3, -2, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sub_n([-2, -4, -1, 4, -1],1)))))",
    "io_inp": [
      -2,
      -4,
      -1,
      4,
      -1
    ],
    "io_out": [
      3,
      -2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [5, -3, -1, 5, 2]\noutput : list = [-3, -1, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse([5, -3, -1, 5, 2]))",
    "io_inp": [
      5,
      -3,
      -1,
      5,
      2
    ],
    "io_out": [
      -3,
      -1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, -1, 4, 0, 3]\noutput : list = [4, 3, 0, -1, -3]",
    "output": "generated_output : list = sort_des([-3, -1, 4, 0, 3])",
    "io_inp": [
      -3,
      -1,
      4,
      0,
      3
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 0, 3, -2, 0]\noutput : list = [3, 0, 1]",
    "output": "generated_output : list = drop(reverse([1, 0, 3, -2, 0]),2)",
    "io_inp": [
      1,
      0,
      3,
      -2,
      0
    ],
    "io_out": [
      3,
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(reverse(input),2)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [2, -6]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(drop([-3, -1, 3],1)),8)),-2)",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(drop(input,1)),8)),-2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(sort_asc([5, 4]),-4)),-5))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(sort_asc(input),-4)),-5))"
  },
  {
    "input": "input : list = [1, 2, 2, 1, -3]\noutput : list = [-13, 7, 7, 12, 12]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(mul_n([1, 2, 2, 1, -3],5))),2),28)",
    "io_inp": [
      1,
      2,
      2,
      1,
      -3
    ],
    "io_out": [
      -13,
      7,
      7,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(mul_n(input,5))),2),28)"
  },
  {
    "input": "input : list = [-2, -5, -2, 0, 3]\noutput : list = [-23, 4, 22, 22, 49]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(mul_n([-2, -5, -2, 0, 3],-3),3))),4)",
    "io_inp": [
      -2,
      -5,
      -2,
      0,
      3
    ],
    "io_out": [
      -23,
      4,
      22,
      22,
      49
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(mul_n(input,-3),3))),4)"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [-3, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 0, 0],1))",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n([-2, -5],-5)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [0, -75]",
    "output": "generated_output : list = sort_des(drop(mul_n(mul_n(mul_n([-2, 5, 0],1),3),-5),1))",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      0,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(drop(mul_n(mul_n(mul_n(input,1),3),-5),1))"
  },
  {
    "input": "input : list = [-3, 2, -2, -3, 0, -3]\noutput : list = [4, 2, 0, -1, -1, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(add_n([-3, 2, -2, -3, 0, -3],2),26))))",
    "io_inp": [
      -3,
      2,
      -2,
      -3,
      0,
      -3
    ],
    "io_out": [
      4,
      2,
      0,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(add_n(input,2),26))))"
  },
  {
    "input": "input : list = [-4, -5, -2, 4, -4, -4]\noutput : list = [-3, -4, -1, 5, -3, -3]",
    "output": "generated_output : list = add_n([-4, -5, -2, 4, -4, -4],1)",
    "io_inp": [
      -4,
      -5,
      -2,
      4,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -1,
      5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, -4, -2, -3, 0, -1]\noutput : list = [-21, -21, -17, -13, -9, -5]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(reverse([-4, -4, -2, -3, 0, -1]),4)),-5))",
    "io_inp": [
      -4,
      -4,
      -2,
      -3,
      0,
      -1
    ],
    "io_out": [
      -21,
      -21,
      -17,
      -13,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(reverse(input),4)),-5))"
  },
  {
    "input": "input : list = [1, -4, 5, -4, -4]\noutput : list = [-3, -3, 6]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n([1, -4, 5, -4, -4],-2),1)),3)",
    "io_inp": [
      1,
      -4,
      5,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(input,-2),1)),3)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-32, -20]",
    "output": "generated_output : list = mul_n(add_n(sort_des([0, 3]),5),-4)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -32,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),5),-4)"
  },
  {
    "input": "input : list = [-4, -1, -5, -3, 2]\noutput : list = [8, 28]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(drop([-4, -1, -5, -3, 2],3)),-5)),4)",
    "io_inp": [
      -4,
      -1,
      -5,
      -3,
      2
    ],
    "io_out": [
      8,
      28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(drop(input,3)),-5)),4)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [0, 12, 18]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(sort_asc([-2, 4, 0]),-4),4)),-3)",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      0,
      12,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(sort_asc(input),-4),4)),-3)"
  },
  {
    "input": "input : list = [-5, -1, 0, 4, 3, 1]\noutput : list = [6, 5, 3, 2, 1, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(reverse([-5, -1, 0, 4, 3, 1]),1))),-1)",
    "io_inp": [
      -5,
      -1,
      0,
      4,
      3,
      1
    ],
    "io_out": [
      6,
      5,
      3,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(reverse(input),1))),-1)"
  },
  {
    "input": "input : list = [-5, -3, -3, 3, 3]\noutput : list = [-6, -6, -36, -36, -46]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_asc(sub_n([-5, -3, -3, 3, 3],5)),5),4))",
    "io_inp": [
      -5,
      -3,
      -3,
      3,
      3
    ],
    "io_out": [
      -6,
      -6,
      -36,
      -36,
      -46
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_asc(sub_n(input,5)),5),4))"
  },
  {
    "input": "input : list = [4, -2, 4, -5, 2]\noutput : list = [20, 8, -8, -16, -16]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sort_asc([4, -2, 4, -5, 2]),-4))))",
    "io_inp": [
      4,
      -2,
      4,
      -5,
      2
    ],
    "io_out": [
      20,
      8,
      -8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [-2, 5, -4, -4, 1]\noutput : list = [-5, -5, -3, 0, 4]",
    "output": "generated_output : list = take(take(sort_asc(reverse(add_n([-2, 5, -4, -4, 1],-1))),24),35)",
    "io_inp": [
      -2,
      5,
      -4,
      -4,
      1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(add_n(input,-1))),24),35)"
  },
  {
    "input": "input : list = [0, 1, -4, -3]\noutput : list = [-3, 1, -19, -15]",
    "output": "generated_output : list = sub_n(mul_n([0, 1, -4, -3],4),3)",
    "io_inp": [
      0,
      1,
      -4,
      -3
    ],
    "io_out": [
      -3,
      1,
      -19,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),3)"
  },
  {
    "input": "input : list = [-5, -3, -5, 5]\noutput : list = [50, 50, 40, 0]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sub_n([-5, -3, -5, 5],5),-5))),38)",
    "io_inp": [
      -5,
      -3,
      -5,
      5
    ],
    "io_out": [
      50,
      50,
      40,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sub_n(input,5),-5))),38)"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(sort_des(take([1, 5, 0],1)),4)",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(input,1)),4)"
  },
  {
    "input": "input : list = [0, 4, 4, 0, 4, 1]\noutput : list = [0, 8]",
    "output": "generated_output : list = mul_n(reverse(reverse(take([0, 4, 4, 0, 4, 1],2))),2)",
    "io_inp": [
      0,
      4,
      4,
      0,
      4,
      1
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(input,2))),2)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sub_n(take([-5, -1, 1],1),-3),-3)",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,1),-3),-3)"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [5, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, 5])",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, -1, 4]\noutput : list = [-18, -14, 6, 6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(mul_n([5, -1, -1, 4],-4))),-2))",
    "io_inp": [
      5,
      -1,
      -1,
      4
    ],
    "io_out": [
      -18,
      -14,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(mul_n(input,-4))),-2))"
  },
  {
    "input": "input : list = [-3, 3, 1, 4, -4]\noutput : list = [12, 9, 3, -9, -12]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(mul_n([-3, 3, 1, 4, -4],3)),32)))",
    "io_inp": [
      -3,
      3,
      1,
      4,
      -4
    ],
    "io_out": [
      12,
      9,
      3,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(mul_n(input,3)),32)))"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [-18]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(mul_n([5, -5, -3],-3),3),1)))",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      -18
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(mul_n(input,-3),3),1)))"
  },
  {
    "input": "input : list = [-3, 2, 4, 4]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(reverse(add_n(drop(add_n([-3, 2, 4, 4],1),2),3)),5)",
    "io_inp": [
      -3,
      2,
      4,
      4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(drop(add_n(input,1),2),3)),5)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [85, -15]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n(sort_asc([1, -3]),-5),2),30),5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      85,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(sort_asc(input),-5),2),30),5)"
  },
  {
    "input": "input : list = [-5, -5, -1, -3, 0]\noutput : list = [-2, -3, -5, -7, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n([-5, -5, -1, -3, 0],4)),-2))",
    "io_inp": [
      -5,
      -5,
      -1,
      -3,
      0
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(input,4)),-2))"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [-1, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(sort_des([-4, 0, -4])),1)))",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-9, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([4, -5]),-5),-1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),-5),-1)"
  },
  {
    "input": "input : list = [-3, 5, -3, 2, 1, -1]\noutput : list = [-3, -3, -1, 1, 2, 5]",
    "output": "generated_output : list = take(sort_asc([-3, 5, -3, 2, 1, -1]),15)",
    "io_inp": [
      -3,
      5,
      -3,
      2,
      1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),15)"
  },
  {
    "input": "input : list = [3, -5, 0]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -5, 0],1)",
    "io_inp": [
      3,
      -5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 0, 0, 5, 3]\noutput : list = [0, 0, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([3, 0, 0, 5, 3])))",
    "io_inp": [
      3,
      0,
      0,
      5,
      3
    ],
    "io_out": [
      0,
      0,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-3, -4, 4, 4, 4]\noutput : list = [5, 5, 5, -2, -3]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(sort_asc([-3, -4, 4, 4, 4]),2)),3),8)",
    "io_inp": [
      -3,
      -4,
      4,
      4,
      4
    ],
    "io_out": [
      5,
      5,
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(sort_asc(input),2)),3),8)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [-5, 0, -1]",
    "output": "generated_output : list = add_n(sub_n(reverse([-1, 0, -5]),5),5)",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),5),5)"
  },
  {
    "input": "input : list = [-4, 5, 5, 3, 3, 3]\noutput : list = [-3, 4, 4, 4, 6, 6]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(sub_n([-4, 5, 5, 3, 3, 3],-5),1)),11),4)",
    "io_inp": [
      -4,
      5,
      5,
      3,
      3,
      3
    ],
    "io_out": [
      -3,
      4,
      4,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(sub_n(input,-5),1)),11),4)"
  },
  {
    "input": "input : list = [5, 1, 1, -1, -4, -5]\noutput : list = [5, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(sort_des([5, 1, 1, -1, -4, -5]),2)),5))",
    "io_inp": [
      5,
      1,
      1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      5,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(sort_des(input),2)),5))"
  },
  {
    "input": "input : list = [-2, 4, -1, 4]\noutput : list = [-12, -8, 12, 12]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(mul_n([-2, 4, -1, 4],-4)),-1),-4))",
    "io_inp": [
      -2,
      4,
      -1,
      4
    ],
    "io_out": [
      -12,
      -8,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(mul_n(input,-4)),-1),-4))"
  },
  {
    "input": "input : list = [-2, -3, -1, -3, -1, 3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take([-2, -3, -1, -3, -1, 3],2)",
    "io_inp": [
      -2,
      -3,
      -1,
      -3,
      -1,
      3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [1, 0, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n([1, 2, -3],-1)))",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-1)))"
  },
  {
    "input": "input : list = [-1, 2, 0, 1, -1]\noutput : list = [-1, -3, -5, -7, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(mul_n([-1, 2, 0, 1, -1],2),14))),5)",
    "io_inp": [
      -1,
      2,
      0,
      1,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(mul_n(input,2),14))),5)"
  },
  {
    "input": "input : list = [-4, 3, 0, 5, 0]\noutput : list = [-20, -6, -12, -2, -12]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sub_n([-4, 3, 0, 5, 0],1),5),2)))",
    "io_inp": [
      -4,
      3,
      0,
      5,
      0
    ],
    "io_out": [
      -20,
      -6,
      -12,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sub_n(input,1),5),2)))"
  },
  {
    "input": "input : list = [0, 0, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(take([0, 0, -5],1),2))",
    "io_inp": [
      0,
      0,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),2))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc([2, -2])",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(mul_n([5, 4],-1)))))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = reverse([-1, 0])",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [-1, -8, 0]",
    "output": "generated_output : list = sub_n([2, -5, 3],3)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      -1,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, -3, -3, -4, 2, 4]\noutput : list = [16, 12, 12, -8, -12, -16]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(reverse([3, -3, -3, -4, 2, 4]))),-4),1)",
    "io_inp": [
      3,
      -3,
      -3,
      -4,
      2,
      4
    ],
    "io_out": [
      16,
      12,
      12,
      -8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(reverse(input))),-4),1)"
  },
  {
    "input": "input : list = [4, 0, 1, -5]\noutput : list = [5, 2, 1, -4]",
    "output": "generated_output : list = sub_n(sort_des([4, 0, 1, -5]),-1)",
    "io_inp": [
      4,
      0,
      1,
      -5
    ],
    "io_out": [
      5,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [-11, 5, -9]",
    "output": "generated_output : list = sub_n(mul_n(add_n([3, -5, 2],2),-2),1)",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      -11,
      5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,2),-2),1)"
  },
  {
    "input": "input : list = [5, -2, 4, -5]\noutput : list = [10, 3, 9, 0]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(reverse([5, -2, 4, -5])),5)))",
    "io_inp": [
      5,
      -2,
      4,
      -5
    ],
    "io_out": [
      10,
      3,
      9,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(reverse(input)),5)))"
  },
  {
    "input": "input : list = [-5, -1, -4, -1, 3]\noutput : list = [-2, -6, -6, -9, -10]",
    "output": "generated_output : list = add_n(sort_des([-5, -1, -4, -1, 3]),-5)",
    "io_inp": [
      -5,
      -1,
      -4,
      -1,
      3
    ],
    "io_out": [
      -2,
      -6,
      -6,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [1, 5, -5, 5]\noutput : list = [20, 20, 4, -20]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(sort_des([1, 5, -5, 5]))),-4),-1)",
    "io_inp": [
      1,
      5,
      -5,
      5
    ],
    "io_out": [
      20,
      20,
      4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(sort_des(input))),-4),-1)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [40]",
    "output": "generated_output : list = mul_n(add_n(add_n(drop(sort_des([1, -3]),1),-2),-3),-5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(drop(sort_des(input),1),-2),-3),-5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [25, -10]",
    "output": "generated_output : list = mul_n([-5, 2],-5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 0, 4, 5, -5]\noutput : list = [5, 4, 0, -1, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sort_asc([-1, 0, 4, 5, -5])))),1)",
    "io_inp": [
      -1,
      0,
      4,
      5,
      -5
    ],
    "io_out": [
      5,
      4,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [2, -3, -3, -4]\noutput : list = [3, 0, 0, -15]",
    "output": "generated_output : list = sort_des(take(take(mul_n(sub_n([2, -3, -3, -4],-3),-3),17),28))",
    "io_inp": [
      2,
      -3,
      -3,
      -4
    ],
    "io_out": [
      3,
      0,
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(sub_n(input,-3),-3),17),28))"
  },
  {
    "input": "input : list = [4, -5, -3, 3, -2]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(take([4, -5, -3, 3, -2],1),-1))),3)",
    "io_inp": [
      4,
      -5,
      -3,
      3,
      -2
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(take(input,1),-1))),3)"
  },
  {
    "input": "input : list = [-4, -4, 5, -3, 5, -5]\noutput : list = [1, 1, -7, -8, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n([-4, -4, 5, -3, 5, -5],5),2)),-1))",
    "io_inp": [
      -4,
      -4,
      5,
      -3,
      5,
      -5
    ],
    "io_out": [
      1,
      1,
      -7,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n(input,5),2)),-1))"
  },
  {
    "input": "input : list = [-4, -4, -5, -5, 4, 0]\noutput : list = [24, 0, -24, -24, -30, -30]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(reverse([-4, -4, -5, -5, 4, 0]),-2),-3)))",
    "io_inp": [
      -4,
      -4,
      -5,
      -5,
      4,
      0
    ],
    "io_out": [
      24,
      0,
      -24,
      -24,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(reverse(input),-2),-3)))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-300, 300]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(add_n([-1, 5],-2),-5),2),5),-2)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -300,
      300
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(add_n(input,-2),-5),2),5),-2)"
  },
  {
    "input": "input : list = [5, 1, 2, -2, -2, -2]\noutput : list = [-2, -2, -2, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, 1, 2, -2, -2, -2]))",
    "io_inp": [
      5,
      1,
      2,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -2,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [12, 6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc([3, -3]),6),-4),5))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc(input),6),-4),5))"
  },
  {
    "input": "input : list = [2, 2, -5, 0, 0, -4]\noutput : list = [0, 1, 5, 5, 7, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(sub_n([2, 2, -5, 0, 0, -4],-2),14)),1),-4)",
    "io_inp": [
      2,
      2,
      -5,
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      1,
      5,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(sub_n(input,-2),14)),1),-4)"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [-5, 4, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n([-5, -3, 0],-3)),5))",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      -5,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(input,-3)),5))"
  },
  {
    "input": "input : list = [1, 4, -5, -3, 0]\noutput : list = [-2, -5, -7, 2, -1]",
    "output": "generated_output : list = add_n(reverse([1, 4, -5, -3, 0]),-2)",
    "io_inp": [
      1,
      4,
      -5,
      -3,
      0
    ],
    "io_out": [
      -2,
      -5,
      -7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-3, 3, 3, 5, 1]\noutput : list = [-14, -2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(take([-3, 3, 3, 5, 1],2)),-4)),2)",
    "io_inp": [
      -3,
      3,
      3,
      5,
      1
    ],
    "io_out": [
      -14,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(take(input,2)),-4)),2)"
  },
  {
    "input": "input : list = [0, -4, -5, 4, 2, 1]\noutput : list = [-5, -4, 0, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([0, -4, -5, 4, 2, 1])",
    "io_inp": [
      0,
      -4,
      -5,
      4,
      2,
      1
    ],
    "io_out": [
      -5,
      -4,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -1, 2, -5]\noutput : list = [75]",
    "output": "generated_output : list = drop(mul_n(mul_n(mul_n(drop([-4, -1, 2, -5],1),1),-3),5),2)",
    "io_inp": [
      -4,
      -1,
      2,
      -5
    ],
    "io_out": [
      75
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(mul_n(drop(input,1),1),-3),5),2)"
  },
  {
    "input": "input : list = [1, -3, 4, -5, -5, -5]\noutput : list = [20, 20, 20, 12, -4, -16]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(reverse([1, -3, 4, -5, -5, -5]))),-4))",
    "io_inp": [
      1,
      -3,
      4,
      -5,
      -5,
      -5
    ],
    "io_out": [
      20,
      20,
      20,
      12,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(reverse(input))),-4))"
  },
  {
    "input": "input : list = [-1, 0, -2, 3]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_des(take([-1, 0, -2, 3],1)),-5)),5)",
    "io_inp": [
      -1,
      0,
      -2,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_des(take(input,1)),-5)),5)"
  },
  {
    "input": "input : list = [-2, -1, 0, 1]\noutput : list = [2, 0, -2, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(take(mul_n([-2, -1, 0, 1],2),16))),23)",
    "io_inp": [
      -2,
      -1,
      0,
      1
    ],
    "io_out": [
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(mul_n(input,2),16))),23)"
  },
  {
    "input": "input : list = [2, -5, -2, 5, -3, -3]\noutput : list = [0, 2, 2, 3, 7, 10]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(sub_n([2, -5, -2, 5, -3, -3],-5),15))))",
    "io_inp": [
      2,
      -5,
      -2,
      5,
      -3,
      -3
    ],
    "io_out": [
      0,
      2,
      2,
      3,
      7,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(sub_n(input,-5),15))))"
  },
  {
    "input": "input : list = [-3, 3, 2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(drop([-3, 3, 2, -5],2),1)))",
    "io_inp": [
      -3,
      3,
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(drop(input,2),1)))"
  },
  {
    "input": "input : list = [4, 3, -1, -3, 5, -5]\noutput : list = [4, 8, 24, 32, 0, 40]",
    "output": "generated_output : list = mul_n(add_n([4, 3, -1, -3, 5, -5],-5),-4)",
    "io_inp": [
      4,
      3,
      -1,
      -3,
      5,
      -5
    ],
    "io_out": [
      4,
      8,
      24,
      32,
      0,
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),-4)"
  },
  {
    "input": "input : list = [2, -3, -5, -1]\noutput : list = [24, 16, 8]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(drop([2, -3, -5, -1],1))),1),-4)",
    "io_inp": [
      2,
      -3,
      -5,
      -1
    ],
    "io_out": [
      24,
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(drop(input,1))),1),-4)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sub_n(sort_asc([5, -1]),3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-5, 4, -2, -2]\noutput : list = [-4, 14, 2, 2]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse([-5, 4, -2, -2])),3),2)",
    "io_inp": [
      -5,
      4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      14,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(input)),3),2)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(mul_n([0, -3],-1),2),2)))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(mul_n(input,-1),2),2)))"
  },
  {
    "input": "input : list = [0, -3, -3, 4, 3, 0]\noutput : list = [3, 2, -1, -1, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_asc([0, -3, -3, 4, 3, 0])))),1)",
    "io_inp": [
      0,
      -3,
      -3,
      4,
      3,
      0
    ],
    "io_out": [
      3,
      2,
      -1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [5, -5, 4, 0, -5, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n(sub_n(take(drop(sort_des([5, -5, 4, 0, -5, -4]),4),26),-1),-4)",
    "io_inp": [
      5,
      -5,
      4,
      0,
      -5,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(drop(sort_des(input),4),26),-1),-4)"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [-7, -3, -2]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-2, 2, 3]),-5))",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [1, 2, 2, -1, 3, 1]\noutput : list = [-4, -8, -8, -10, -10, -12]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n([1, 2, 2, -1, 3, 1],3),2))),-1)",
    "io_inp": [
      1,
      2,
      2,
      -1,
      3,
      1
    ],
    "io_out": [
      -4,
      -8,
      -8,
      -10,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(add_n(input,3),2))),-1)"
  },
  {
    "input": "input : list = [-4, -3, -3, -1]\noutput : list = [-2, -1, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n([-4, -3, -3, -1],2))),-4)",
    "io_inp": [
      -4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(input,2))),-4)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [7, -11]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(mul_n([5, -4],2)),-1)),-1)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      7,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(mul_n(input,2)),-1)),-1)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [-4, -9]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(drop([-1, 0, -5],1),10),-4)))",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(drop(input,1),10),-4)))"
  },
  {
    "input": "input : list = [1, 5, -5, 2, 4, 3]\noutput : list = [14, 13, 12, 11, 10, 4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(sub_n([1, 5, -5, 2, 4, 3],-3),1),-5)))",
    "io_inp": [
      1,
      5,
      -5,
      2,
      4,
      3
    ],
    "io_out": [
      14,
      13,
      12,
      11,
      10,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(sub_n(input,-3),1),-5)))"
  },
  {
    "input": "input : list = [-1, -4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n(drop([-1, -4, 0],1),4)",
    "io_inp": [
      -1,
      -4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [2, -2, -1, -4]\noutput : list = [-24]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(take([2, -2, -1, -4],1),4)),-4),-3)",
    "io_inp": [
      2,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(take(input,1),4)),-4),-3)"
  },
  {
    "input": "input : list = [-4, -1, 4]\noutput : list = [-1, 2, 7]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(sort_asc([-4, -1, 4])),-4)),-1)",
    "io_inp": [
      -4,
      -1,
      4
    ],
    "io_out": [
      -1,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(sort_asc(input)),-4)),-1)"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sub_n(reverse(drop([-4, 0, -4],1)),5)",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,1)),5)"
  },
  {
    "input": "input : list = [2, -2, -5, 0]\noutput : list = [-4, -8, -11, -6]",
    "output": "generated_output : list = add_n(sub_n([2, -2, -5, 0],2),-4)",
    "io_inp": [
      2,
      -2,
      -5,
      0
    ],
    "io_out": [
      -4,
      -8,
      -11,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-4)"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [26, 14, 11]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n(sub_n([1, 5, 0],1),-5)),3),1)",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      26,
      14,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(sub_n(input,1),-5)),3),1)"
  },
  {
    "input": "input : list = [3, 4, -5, -3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(take([3, 4, -5, -3],2))",
    "io_inp": [
      3,
      4,
      -5,
      -3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-4, 1, 3, 1, 3]\noutput : list = [-12, -12, -8]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(sub_n([-4, 1, 3, 1, 3],-3),-2))),3)",
    "io_inp": [
      -4,
      1,
      3,
      1,
      3
    ],
    "io_out": [
      -12,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(sub_n(input,-3),-2))),3)"
  },
  {
    "input": "input : list = [1, 0, 4, -1]\noutput : list = [0, 1, 2, 5]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(reverse([1, 0, 4, -1]))),32),-1)",
    "io_inp": [
      1,
      0,
      4,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(reverse(input))),32),-1)"
  },
  {
    "input": "input : list = [-2, 3, 0]\noutput : list = [3, 5, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(sort_des([-2, 3, 0])),5),31))",
    "io_inp": [
      -2,
      3,
      0
    ],
    "io_out": [
      3,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(sort_des(input)),5),31))"
  },
  {
    "input": "input : list = [-5, 1, -2, -3, -5, -5]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_des(sub_n(reverse(drop(sort_des([-5, 1, -2, -3, -5, -5]),4)),-1))",
    "io_inp": [
      -5,
      1,
      -2,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(drop(sort_des(input),4)),-1))"
  },
  {
    "input": "input : list = [-4, 3, 4, 4, -4]\noutput : list = [4, 4, 3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc([-4, 3, 4, 4, -4]),8)))",
    "io_inp": [
      -4,
      3,
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(input),8)))"
  },
  {
    "input": "input : list = [4, 1, 4, -4, -5]\noutput : list = [-5, -4, 1, 4, 4]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(reverse([4, 1, 4, -4, -5]))),32))",
    "io_inp": [
      4,
      1,
      4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(reverse(input))),32))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-14, -11]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(sort_asc([-4, -5]),3),-3),20),-4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -14,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(sort_asc(input),3),-3),20),-4)"
  },
  {
    "input": "input : list = [5, 0, -1, -5, 1, 5]\noutput : list = [2, 6, 7, 8, 12, 12]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([5, 0, -1, -5, 1, 5],-2),5))",
    "io_inp": [
      5,
      0,
      -1,
      -5,
      1,
      5
    ],
    "io_out": [
      2,
      6,
      7,
      8,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-2),5))"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [0, -1, 5]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sub_n([2, -4, -3],-4),18)),1),1)",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      0,
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sub_n(input,-4),18)),1),1)"
  },
  {
    "input": "input : list = [4, 5, -1, 2, 2]\noutput : list = [-4, -1, -1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(add_n([4, 5, -1, 2, 2],-3)))))",
    "io_inp": [
      4,
      5,
      -1,
      2,
      2
    ],
    "io_out": [
      -4,
      -1,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [1, 5, 3, -3, -5]\noutput : list = [1, 5]",
    "output": "generated_output : list = take([1, 5, 3, -3, -5],2)",
    "io_inp": [
      1,
      5,
      3,
      -3,
      -5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [3, -2, -6]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(reverse([-5, 4, -1]),-4),-3),1))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      3,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(reverse(input),-4),-3),1))"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [-30, -5, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sub_n([-3, -4, 2],-4))),-1),5)",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      -30,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sub_n(input,-4))),-1),5)"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_des([2, -2, 5])))))",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, 4, 3, -4, 3]\noutput : list = [19, 15, 15, 11, -13]",
    "output": "generated_output : list = sort_des(add_n(mul_n([2, 4, 3, -4, 3],4),3))",
    "io_inp": [
      2,
      4,
      3,
      -4,
      3
    ],
    "io_out": [
      19,
      15,
      15,
      11,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,4),3))"
  },
  {
    "input": "input : list = [0, 0, 2]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = sort_des([0, 0, 2])",
    "io_inp": [
      0,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -4, -2]\noutput : list = [-4, -4, -2, 0]",
    "output": "generated_output : list = reverse(sort_des([0, -4, -4, -2]))",
    "io_inp": [
      0,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, 1, -4, -4, 5, 3]\noutput : list = [-4, -4, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_des([4, 1, -4, -4, 5, 3])))))",
    "io_inp": [
      4,
      1,
      -4,
      -4,
      5,
      3
    ],
    "io_out": [
      -4,
      -4,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, 1, 5, 2, -1]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = take([-3, 1, 5, 2, -1],3)",
    "io_inp": [
      -3,
      1,
      5,
      2,
      -1
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, -1, -5, 4, -5, 5]\noutput : list = [-66, -57, -12, -12, 24, 24]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_des([-1, -1, -5, 4, -5, 5]),3),4),-3),-3)",
    "io_inp": [
      -1,
      -1,
      -5,
      4,
      -5,
      5
    ],
    "io_out": [
      -66,
      -57,
      -12,
      -12,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(sort_des(input),3),4),-3),-3)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [20, -16]",
    "output": "generated_output : list = mul_n([5, -4],4)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 4, 1]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = take(sort_des([2, 4, 1]),17)",
    "io_inp": [
      2,
      4,
      1
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),17)"
  },
  {
    "input": "input : list = [0, 5, 4, 5, -5]\noutput : list = [0, -5, -4, -5, 5]",
    "output": "generated_output : list = mul_n([0, 5, 4, 5, -5],-1)",
    "io_inp": [
      0,
      5,
      4,
      5,
      -5
    ],
    "io_out": [
      0,
      -5,
      -4,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, 1, 2, 1, -2]\noutput : list = [2, -1, 0, -1, -4]",
    "output": "generated_output : list = sub_n(add_n([4, 1, 2, 1, -2],-5),-3)",
    "io_inp": [
      4,
      1,
      2,
      1,
      -2
    ],
    "io_out": [
      2,
      -1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),-3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(reverse(take(reverse(reverse([-1, 5])),9)))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(reverse(input)),9)))"
  },
  {
    "input": "input : list = [4, -5, 2, -1]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(take(sub_n(reverse(drop([4, -5, 2, -1],2)),-3),32),7)",
    "io_inp": [
      4,
      -5,
      2,
      -1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(drop(input,2)),-3),32),7)"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [-1, -6, -7]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(add_n([-3, -4, 2],-1),4))),2)",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      -1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(add_n(input,-1),4))),2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse([-4, -3])",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-13, -4]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(add_n([-4, 5],-2),-3)),23),-4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -13,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(add_n(input,-2),-3)),23),-4)"
  },
  {
    "input": "input : list = [-5, -2, 3]\noutput : list = [21, 6, -19]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(mul_n([-5, -2, 3],-5))),4))",
    "io_inp": [
      -5,
      -2,
      3
    ],
    "io_out": [
      21,
      6,
      -19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(mul_n(input,-5))),4))"
  },
  {
    "input": "input : list = [-1, 3, -3, -3, -1, -3]\noutput : list = [8, 4, 4, 2, 2, 2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(sort_asc([-1, 3, -3, -3, -1, -3]),26),5)))",
    "io_inp": [
      -1,
      3,
      -3,
      -3,
      -1,
      -3
    ],
    "io_out": [
      8,
      4,
      4,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(sort_asc(input),26),5)))"
  },
  {
    "input": "input : list = [2, -4, 3, -2]\noutput : list = [-2, -8, -1, -6]",
    "output": "generated_output : list = sub_n([2, -4, 3, -2],4)",
    "io_inp": [
      2,
      -4,
      3,
      -2
    ],
    "io_out": [
      -2,
      -8,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 2, 1, 3, -5, 1]\noutput : list = [-25, 5, 5, 10, 10, 15]",
    "output": "generated_output : list = mul_n(sort_asc([2, 2, 1, 3, -5, 1]),5)",
    "io_inp": [
      2,
      2,
      1,
      3,
      -5,
      1
    ],
    "io_out": [
      -25,
      5,
      5,
      10,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [2, 4, 5, -3, 2, 5]\noutput : list = [-15, -5, 0, -40, -15, 0]",
    "output": "generated_output : list = mul_n(sub_n([2, 4, 5, -3, 2, 5],5),5)",
    "io_inp": [
      2,
      4,
      5,
      -3,
      2,
      5
    ],
    "io_out": [
      -15,
      -5,
      0,
      -40,
      -15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),5)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = add_n(sort_des(sub_n([-5, 1],3)),3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,3)),3)"
  },
  {
    "input": "input : list = [1, 1, -5, -4, 3]\noutput : list = [-15, -5, -5, 20, 25]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(mul_n([1, 1, -5, -4, 3],5)),-1)),31)",
    "io_inp": [
      1,
      1,
      -5,
      -4,
      3
    ],
    "io_out": [
      -15,
      -5,
      -5,
      20,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(mul_n(input,5)),-1)),31)"
  },
  {
    "input": "input : list = [2, -5, -3, -2, 4]\noutput : list = [-5]",
    "output": "generated_output : list = drop(sort_des(drop([2, -5, -3, -2, 4],1)),3)",
    "io_inp": [
      2,
      -5,
      -3,
      -2,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(drop(input,1)),3)"
  },
  {
    "input": "input : list = [-5, 1, 1, -3]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(drop(reverse(sort_des(mul_n([-5, 1, 1, -3],-1))),2),39)",
    "io_inp": [
      -5,
      1,
      1,
      -3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(drop(reverse(sort_des(mul_n(input,-1))),2),39)"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(take([4, 1, -5],1)),-3)),16)",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(take(input,1)),-3)),16)"
  },
  {
    "input": "input : list = [-4, -5, 1, 0, -5]\noutput : list = [-6, -7]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(take([-4, -5, 1, 0, -5],2)),-2),-4))",
    "io_inp": [
      -4,
      -5,
      1,
      0,
      -5
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(take(input,2)),-2),-4))"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [1, -6, -7]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n([-5, -4, 3],1),1)),3)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(input,1),1)),3)"
  },
  {
    "input": "input : list = [3, -4, 5, 5, 2]\noutput : list = [10, 10, 7]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(drop([3, -4, 5, 5, 2],2),3),16),1),-1)",
    "io_inp": [
      3,
      -4,
      5,
      5,
      2
    ],
    "io_out": [
      10,
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(drop(input,2),3),16),1),-1)"
  },
  {
    "input": "input : list = [-1, 2, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n([-1, 2, 2],4)),1))",
    "io_inp": [
      -1,
      2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(input,4)),1))"
  },
  {
    "input": "input : list = [-3, 2, 4, 3, 3, -2]\noutput : list = [4, -6]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(take([-3, 2, 4, 3, 3, -2],2)))),2)",
    "io_inp": [
      -3,
      2,
      4,
      3,
      3,
      -2
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(take(input,2)))),2)"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [75, 50, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n([1, -2, 0],2),5),5))",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      75,
      50,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(input,2),5),5))"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [32, -32, 48]",
    "output": "generated_output : list = mul_n(take(mul_n([2, -2, 3],4),11),4)",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      32,
      -32,
      48
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,4),11),4)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n([1, -2],5),1),-2))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(input,5),1),-2))"
  },
  {
    "input": "input : list = [-4, 4, -1, 1]\noutput : list = [-20, -5, 5, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([-4, 4, -1, 1]),5))",
    "io_inp": [
      -4,
      4,
      -1,
      1
    ],
    "io_out": [
      -20,
      -5,
      5,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [13, -7]",
    "output": "generated_output : list = add_n(mul_n(take(take(drop([5, -2, 3],1),10),18),-4),5)",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      13,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(drop(input,1),10),18),-4),5)"
  },
  {
    "input": "input : list = [-4, -1, 1, -1]\noutput : list = [5, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(take([-4, -1, 1, -1],2),-3),-5)),-4)",
    "io_inp": [
      -4,
      -1,
      1,
      -1
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(take(input,2),-3),-5)),-4)"
  },
  {
    "input": "input : list = [-5, 0, 3, 2, 1]\noutput : list = [1, 0, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(drop(sort_des([-5, 0, 3, 2, 1]),2))),5)",
    "io_inp": [
      -5,
      0,
      3,
      2,
      1
    ],
    "io_out": [
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(drop(sort_des(input),2))),5)"
  },
  {
    "input": "input : list = [-2, -1, 3, 2, -3, -2]\noutput : list = [3, 2, -3, -2]",
    "output": "generated_output : list = drop([-2, -1, 3, 2, -3, -2],2)",
    "io_inp": [
      -2,
      -1,
      3,
      2,
      -3,
      -2
    ],
    "io_out": [
      3,
      2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, 3, 3, 2, 0]\noutput : list = [3, 1, 0, 0, -2]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(sort_asc([5, 3, 3, 2, 0])),-3),-1))",
    "io_inp": [
      5,
      3,
      3,
      2,
      0
    ],
    "io_out": [
      3,
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(sort_asc(input)),-3),-1))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(reverse(sort_asc([0, 2])),20)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),20)"
  },
  {
    "input": "input : list = [-4, 1, -2, 0]\noutput : list = [-3, -21, 6, -39]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n([-4, 1, -2, 0],3),-1)),1),3)",
    "io_inp": [
      -4,
      1,
      -2,
      0
    ],
    "io_out": [
      -3,
      -21,
      6,
      -39
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n(input,3),-1)),1),3)"
  },
  {
    "input": "input : list = [-4, 3, -2, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(reverse(drop([-4, 3, -2, -5, 5],3)))",
    "io_inp": [
      -4,
      3,
      -2,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,3)))"
  },
  {
    "input": "input : list = [-5, -2, 4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(take(add_n(reverse(add_n([-5, -2, 4],-3)),3),1))",
    "io_inp": [
      -5,
      -2,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(add_n(input,-3)),3),1))"
  },
  {
    "input": "input : list = [5, -1, -3, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(take([5, -1, -3, -5],2)),-5)),26)",
    "io_inp": [
      5,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(take(input,2)),-5)),26)"
  },
  {
    "input": "input : list = [-5, -2, -4, -2, -5]\noutput : list = [-8, -8, 0, 4, 4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_asc([-5, -2, -4, -2, -5])),-4)),-4)",
    "io_inp": [
      -5,
      -2,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -8,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_asc(input)),-4)),-4)"
  },
  {
    "input": "input : list = [-3, -2, -4, 2]\noutput : list = [-4, -3, -2, 2]",
    "output": "generated_output : list = sort_asc([-3, -2, -4, 2])",
    "io_inp": [
      -3,
      -2,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 2, -5, -2, 5]\noutput : list = [8, 5]",
    "output": "generated_output : list = reverse(add_n(take(add_n(take([-1, 2, -5, -2, 5],2),5),7),1))",
    "io_inp": [
      -1,
      2,
      -5,
      -2,
      5
    ],
    "io_out": [
      8,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(take(input,2),5),7),1))"
  },
  {
    "input": "input : list = [1, 4, -2, 2]\noutput : list = [-7, -3, -1]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(drop([1, 4, -2, 2],1),-5)),4))",
    "io_inp": [
      1,
      4,
      -2,
      2
    ],
    "io_out": [
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(drop(input,1),-5)),4))"
  },
  {
    "input": "input : list = [-4, 5, 4, 5, -3]\noutput : list = [10, 10, 9, 2, 1]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc([-4, 5, 4, 5, -3]),16),-5))",
    "io_inp": [
      -4,
      5,
      4,
      5,
      -3
    ],
    "io_out": [
      10,
      10,
      9,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(input),16),-5))"
  },
  {
    "input": "input : list = [1, -5, 2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(drop([1, -5, 2, -2],2))",
    "io_inp": [
      1,
      -5,
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-1, 2, 5, 1, -5]\noutput : list = [-22, 8, 28, 13, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(add_n(mul_n([-1, 2, 5, 1, -5],5),3))))",
    "io_inp": [
      -1,
      2,
      5,
      1,
      -5
    ],
    "io_out": [
      -22,
      8,
      28,
      13,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(add_n(mul_n(input,5),3))))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = reverse([1, -3])",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, -2, -2, -2, 3]\noutput : list = [-15]",
    "output": "generated_output : list = sort_asc(mul_n(take([5, 5, -2, -2, -2, 3],1),-3))",
    "io_inp": [
      5,
      5,
      -2,
      -2,
      -2,
      3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),-3))"
  },
  {
    "input": "input : list = [4, -4, 1, -4, -3, 0]\noutput : list = [3, 0, -1, -4]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n([4, -4, 1, -4, -3, 0],4),3)),4)",
    "io_inp": [
      4,
      -4,
      1,
      -4,
      -3,
      0
    ],
    "io_out": [
      3,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(input,4),3)),4)"
  },
  {
    "input": "input : list = [-2, 2, 1]\noutput : list = [-36, -12]",
    "output": "generated_output : list = take(mul_n(mul_n(take(sub_n([-2, 2, 1],4),2),2),3),28)",
    "io_inp": [
      -2,
      2,
      1
    ],
    "io_out": [
      -36,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(sub_n(input,4),2),2),3),28)"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = reverse(take(sort_des(take(reverse([-1, -3, -4]),8)),11))",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(reverse(input),8)),11))"
  },
  {
    "input": "input : list = [3, -5, -3, 0]\noutput : list = [8, 0, 2, 5]",
    "output": "generated_output : list = add_n([3, -5, -3, 0],5)",
    "io_inp": [
      3,
      -5,
      -3,
      0
    ],
    "io_out": [
      8,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 0, 4, 3, -3]\noutput : list = [10, 2, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(take([0, 0, 4, 3, -3],3),2)),2))",
    "io_inp": [
      0,
      0,
      4,
      3,
      -3
    ],
    "io_out": [
      10,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(take(input,3),2)),2))"
  },
  {
    "input": "input : list = [1, 2, 0]\noutput : list = [-9, -8, -7]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n([1, 2, 0],1),3),5))",
    "io_inp": [
      1,
      2,
      0
    ],
    "io_out": [
      -9,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(input,1),3),5))"
  },
  {
    "input": "input : list = [1, -1, 5, 4]\noutput : list = [35, 45, 60, 65]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n([1, -1, 5, 4],4),4))),5)",
    "io_inp": [
      1,
      -1,
      5,
      4
    ],
    "io_out": [
      35,
      45,
      60,
      65
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n(input,4),4))),5)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(add_n([4, 4],2)))))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(add_n(input,2)))))"
  },
  {
    "input": "input : list = [1, 3, -2, 5]\noutput : list = [28, 18, 8, -7]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(mul_n([1, 3, -2, 5],-5)),-1),-1),-4)",
    "io_inp": [
      1,
      3,
      -2,
      5
    ],
    "io_out": [
      28,
      18,
      8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(mul_n(input,-5)),-1),-1),-4)"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [-4, 2, 6]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 1, 3],2))",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      -4,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(mul_n([-1, 1],5))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [3, -4, 3, 2, 1]\noutput : list = [8, 8, 4, 0, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(mul_n([3, -4, 3, 2, 1],4),4),1)))",
    "io_inp": [
      3,
      -4,
      3,
      2,
      1
    ],
    "io_out": [
      8,
      8,
      4,
      0,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(mul_n(input,4),4),1)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(sort_asc([-3, -1]))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 0, 2, 5, -2]\noutput : list = [5, 2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(drop([-3, 0, 2, 5, -2],2)),24)))",
    "io_inp": [
      -3,
      0,
      2,
      5,
      -2
    ],
    "io_out": [
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(drop(input,2)),24)))"
  },
  {
    "input": "input : list = [2, -1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(drop([2, -1, -3],1))",
    "io_inp": [
      2,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [1, 4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = drop([1, 4, 0],1)",
    "io_inp": [
      1,
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [-4, 16, -19]",
    "output": "generated_output : list = add_n(sub_n(mul_n([0, -4, 3],-5),5),1)",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      -4,
      16,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-5),5),1)"
  },
  {
    "input": "input : list = [5, 4, -2, -2, -1, -5]\noutput : list = [9, 8, 2, 2, 3, -1]",
    "output": "generated_output : list = sub_n([5, 4, -2, -2, -1, -5],-4)",
    "io_inp": [
      5,
      4,
      -2,
      -2,
      -1,
      -5
    ],
    "io_out": [
      9,
      8,
      2,
      2,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3, 5]\noutput : list = [3, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 3, 5])",
    "io_inp": [
      3,
      3,
      5
    ],
    "io_out": [
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 4, 3, 0, -4]\noutput : list = [-7, 3, 2, 1, -2, -6]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(sub_n([-5, 5, 4, 3, 0, -4],4),2),-3),1),7)",
    "io_inp": [
      -5,
      5,
      4,
      3,
      0,
      -4
    ],
    "io_out": [
      -7,
      3,
      2,
      1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(sub_n(input,4),2),-3),1),7)"
  },
  {
    "input": "input : list = [-3, 3, -4, -3, -1]\noutput : list = [-2, -6, -8, -8, -9]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_asc([-3, 3, -4, -3, -1]),-5))))",
    "io_inp": [
      -3,
      3,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -6,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_asc(input),-5))))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des([-2, -1])",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sub_n([-5, 5],3),4))))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sub_n(input,3),4))))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, 4, 5, -2]\noutput : list = [8, 7, 5, 0]",
    "output": "generated_output : list = sort_des(take(sub_n(take(add_n([2, -3, 4, 5, -2],-2),25),-5),4))",
    "io_inp": [
      2,
      -3,
      4,
      5,
      -2
    ],
    "io_out": [
      8,
      7,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(add_n(input,-2),25),-5),4))"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [-2, 3, 5]",
    "output": "generated_output : list = reverse([5, 3, -2])",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -5, -4, 5, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(add_n(sort_des(take(sort_asc([-3, -5, -4, 5, 1]),17)),-4),1)",
    "io_inp": [
      -3,
      -5,
      -4,
      5,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(sort_asc(input),17)),-4),1)"
  },
  {
    "input": "input : list = [5, -1, -2, -1, -5, -5]\noutput : list = [-25, -25, -10, -5, -5, 25]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(sort_des([5, -1, -2, -1, -5, -5])),5),2),-2)",
    "io_inp": [
      5,
      -1,
      -2,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -25,
      -25,
      -10,
      -5,
      -5,
      25
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(sort_des(input)),5),2),-2)"
  },
  {
    "input": "input : list = [4, 2, -2, 4, 3, -3]\noutput : list = [1, -1, -5, 1, 0, -6]",
    "output": "generated_output : list = take(add_n([4, 2, -2, 4, 3, -3],-3),28)",
    "io_inp": [
      4,
      2,
      -2,
      4,
      3,
      -3
    ],
    "io_out": [
      1,
      -1,
      -5,
      1,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),28)"
  },
  {
    "input": "input : list = [1, 5, 3, -1, -5, 3]\noutput : list = [4, 8, 6, 2, -2, 6]",
    "output": "generated_output : list = add_n([1, 5, 3, -1, -5, 3],3)",
    "io_inp": [
      1,
      5,
      3,
      -1,
      -5,
      3
    ],
    "io_out": [
      4,
      8,
      6,
      2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, 5, 4, -4, -1]\noutput : list = [-20, -5, 5, 20, 25]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(mul_n([1, 5, 4, -4, -1],-1),-5)),2),-2)",
    "io_inp": [
      1,
      5,
      4,
      -4,
      -1
    ],
    "io_out": [
      -20,
      -5,
      5,
      20,
      25
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(mul_n(input,-1),-5)),2),-2)"
  },
  {
    "input": "input : list = [-3, -1, -5, 0]\noutput : list = [-1, 1, -3, 2]",
    "output": "generated_output : list = take(take(add_n(add_n(sub_n([-3, -1, -5, 0],-1),3),-2),21),45)",
    "io_inp": [
      -3,
      -1,
      -5,
      0
    ],
    "io_out": [
      -1,
      1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(sub_n(input,-1),3),-2),21),45)"
  },
  {
    "input": "input : list = [5, -3, 3, 2, -1]\noutput : list = [1, -7, -1, -2, -5]",
    "output": "generated_output : list = add_n([5, -3, 3, 2, -1],-4)",
    "io_inp": [
      5,
      -3,
      3,
      2,
      -1
    ],
    "io_out": [
      1,
      -7,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, -1, 4, 2]\noutput : list = [4, 3, 2, -1]",
    "output": "generated_output : list = sort_des(sort_asc([3, -1, 4, 2]))",
    "io_inp": [
      3,
      -1,
      4,
      2
    ],
    "io_out": [
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 1, -2, 0, 5]\noutput : list = [-4, 0, 2, 4, 10]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n([2, 1, -2, 0, 5],2),14)))",
    "io_inp": [
      2,
      1,
      -2,
      0,
      5
    ],
    "io_out": [
      -4,
      0,
      2,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(input,2),14)))"
  },
  {
    "input": "input : list = [-3, 3, 1, 5, -5]\noutput : list = [-8, -6, -2, 0, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(add_n([-3, 3, 1, 5, -5],-4)))),-1)",
    "io_inp": [
      -3,
      3,
      1,
      5,
      -5
    ],
    "io_out": [
      -8,
      -6,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(add_n(input,-4)))),-1)"
  },
  {
    "input": "input : list = [-3, -3, -3, -4]\noutput : list = [-12, -11, -11, -11]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n([-3, -3, -3, -4],1),3),-5))",
    "io_inp": [
      -3,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -12,
      -11,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(input,1),3),-5))"
  },
  {
    "input": "input : list = [-4, 1, 1, -2, -3]\noutput : list = [-4, -4, 8, 12, 16]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n([-4, 1, 1, -2, -3],-4))),23))",
    "io_inp": [
      -4,
      1,
      1,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -4,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n(input,-4))),23))"
  },
  {
    "input": "input : list = [5, -1, -5, 1, -5, 2]\noutput : list = [5, 2, 1, -1, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc([5, -1, -5, 1, -5, 2]))",
    "io_inp": [
      5,
      -1,
      -5,
      1,
      -5,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -1, -1, 4, -4, 2]\noutput : list = [2, -4, 4, -1, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -1, 4, -4, 2])",
    "io_inp": [
      5,
      -1,
      -1,
      4,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      4,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [9, -1]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(sort_des([0, -5])),1),-2),1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      9,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(sort_des(input)),1),-2),1)"
  },
  {
    "input": "input : list = [-2, 4, 0, 2]\noutput : list = [44, 4, -36, -76]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(sort_des([-2, 4, 0, 2]),5),-4)),4)",
    "io_inp": [
      -2,
      4,
      0,
      2
    ],
    "io_out": [
      44,
      4,
      -36,
      -76
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(sort_des(input),5),-4)),4)"
  },
  {
    "input": "input : list = [5, 5, 4, 0]\noutput : list = [0, 400, 500, 500]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(mul_n([5, 5, 4, 0],5)),5),4),24)",
    "io_inp": [
      5,
      5,
      4,
      0
    ],
    "io_out": [
      0,
      400,
      500,
      500
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(mul_n(input,5)),5),4),24)"
  },
  {
    "input": "input : list = [4, -5, 1, -5]\noutput : list = [32, 20, -4, -4]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n([4, -5, 1, -5],-2)),2),4))",
    "io_inp": [
      4,
      -5,
      1,
      -5
    ],
    "io_out": [
      32,
      20,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(sub_n(input,-2)),2),4))"
  },
  {
    "input": "input : list = [-2, 1, 0, 4]\noutput : list = [4, 1, 0, -2]",
    "output": "generated_output : list = sort_des([-2, 1, 0, 4])",
    "io_inp": [
      -2,
      1,
      0,
      4
    ],
    "io_out": [
      4,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, -4, 1]\noutput : list = [3, -2, 7, 3]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(sub_n([1, 5, -4, 1],-1),9)),-4),-3)",
    "io_inp": [
      1,
      5,
      -4,
      1
    ],
    "io_out": [
      3,
      -2,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(sub_n(input,-1),9)),-4),-3)"
  },
  {
    "input": "input : list = [0, 5, -1, -4, -3]\noutput : list = [3, 78]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(take([0, 5, -1, -4, -3],2),17),3),5),-3)",
    "io_inp": [
      0,
      5,
      -1,
      -4,
      -3
    ],
    "io_out": [
      3,
      78
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(take(input,2),17),3),5),-3)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(sort_des([-4, 1]),2),-4),-5),13)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(sort_des(input),2),-4),-5),13)"
  },
  {
    "input": "input : list = [2, -5, 1, -2]\noutput : list = [1, 0, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_asc([2, -5, 1, -2]),7))),1)",
    "io_inp": [
      2,
      -5,
      1,
      -2
    ],
    "io_out": [
      1,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_asc(input),7))),1)"
  },
  {
    "input": "input : list = [-2, -2, -1]\noutput : list = [1, 1, -7]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_asc([-2, -2, -1]),-2),-3),4),3)",
    "io_inp": [
      -2,
      -2,
      -1
    ],
    "io_out": [
      1,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_asc(input),-2),-3),4),3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [5, 6]",
    "output": "generated_output : list = sub_n([1, 2],-4)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [5, -3, 4, -3]\noutput : list = [-4, -3, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(mul_n([5, -3, 4, -3],-1),6),-1)))",
    "io_inp": [
      5,
      -3,
      4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(mul_n(input,-1),6),-1)))"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sort_des([0, 2, 3])",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0, 1, 2]\noutput : list = [6, 4, 5, 6]",
    "output": "generated_output : list = sub_n([2, 0, 1, 2],-4)",
    "io_inp": [
      2,
      0,
      1,
      2
    ],
    "io_out": [
      6,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, -5, -2, 1]\noutput : list = [-11, -19, -16, -13]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(sub_n([3, -5, -2, 1],5))),-5),-4)",
    "io_inp": [
      3,
      -5,
      -2,
      1
    ],
    "io_out": [
      -11,
      -19,
      -16,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(sub_n(input,5))),-5),-4)"
  },
  {
    "input": "input : list = [1, 2, 2, -1]\noutput : list = [-1, -1, 2, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n([1, 2, 2, -1],-3))),-5)",
    "io_inp": [
      1,
      2,
      2,
      -1
    ],
    "io_out": [
      -1,
      -1,
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(input,-3))),-5)"
  },
  {
    "input": "input : list = [-2, -4, -1, -3, 1, -2]\noutput : list = [0, 4, 8, 12]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(take([-2, -4, -1, -3, 1, -2],4)),6),-4),-4)",
    "io_inp": [
      -2,
      -4,
      -1,
      -3,
      1,
      -2
    ],
    "io_out": [
      0,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(take(input,4)),6),-4),-4)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n([-1, 0],4))),5)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(input,4))),5)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [0, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(reverse([3, 1]),1),2)),3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(reverse(input),1),2)),3)"
  },
  {
    "input": "input : list = [-3, 4, 4, 5, 5]\noutput : list = [70, 70, 65, 65, 30]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_des([-3, 4, 4, 5, 5]),3),5),5),-5)",
    "io_inp": [
      -3,
      4,
      4,
      5,
      5
    ],
    "io_out": [
      70,
      70,
      65,
      65,
      30
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_des(input),3),5),5),-5)"
  },
  {
    "input": "input : list = [-1, -3, -1, 3, -4, 1]\noutput : list = [2, -4, -10, -10, -16, -19]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(mul_n([-1, -3, -1, 3, -4, 1],3),3),-4)))",
    "io_inp": [
      -1,
      -3,
      -1,
      3,
      -4,
      1
    ],
    "io_out": [
      2,
      -4,
      -10,
      -10,
      -16,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(mul_n(input,3),3),-4)))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = take(take(sort_asc([0, -4]),4),18)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),4),18)"
  },
  {
    "input": "input : list = [3, -4, 5, 3, -1, -5]\noutput : list = [0, 4, 8, 10, 1, 8]",
    "output": "generated_output : list = reverse(take(sub_n([3, -4, 5, 3, -1, -5],-5),10))",
    "io_inp": [
      3,
      -4,
      5,
      3,
      -1,
      -5
    ],
    "io_out": [
      0,
      4,
      8,
      10,
      1,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-5),10))"
  },
  {
    "input": "input : list = [3, 3, -5, 4, -4]\noutput : list = [-8, 0, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(take([3, 3, -5, 4, -4],3))),3)",
    "io_inp": [
      3,
      3,
      -5,
      4,
      -4
    ],
    "io_out": [
      -8,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(take(input,3))),3)"
  },
  {
    "input": "input : list = [3, 0, -1, -1, -3, 3]\noutput : list = [6, 6, 3, 2, 2, 0]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(sub_n([3, 0, -1, -1, -3, 3],3)),-2)),4)",
    "io_inp": [
      3,
      0,
      -1,
      -1,
      -3,
      3
    ],
    "io_out": [
      6,
      6,
      3,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(sub_n(input,3)),-2)),4)"
  },
  {
    "input": "input : list = [1, 4, -2, 5, 4, -5]\noutput : list = [-24, 36, -84, 56, 36, -144]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n([1, 4, -2, 5, 4, -5],3),5),4),4)",
    "io_inp": [
      1,
      4,
      -2,
      5,
      4,
      -5
    ],
    "io_out": [
      -24,
      36,
      -84,
      56,
      36,
      -144
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(input,3),5),4),4)"
  },
  {
    "input": "input : list = [4, -1, 5, 2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(drop([4, -1, 5, 2],2),-4),-2)))",
    "io_inp": [
      4,
      -1,
      5,
      2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(drop(input,2),-4),-2)))"
  },
  {
    "input": "input : list = [-1, -2, -5]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(reverse([-1, -2, -5]),-2)),2))",
    "io_inp": [
      -1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(reverse(input),-2)),2))"
  },
  {
    "input": "input : list = [-3, 2, 4, 0]\noutput : list = [-4, 0, -2, -7]",
    "output": "generated_output : list = reverse(sub_n(sub_n([-3, 2, 4, 0],2),2))",
    "io_inp": [
      -3,
      2,
      4,
      0
    ],
    "io_out": [
      -4,
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,2),2))"
  },
  {
    "input": "input : list = [-2, -5, -3, 2, 0, -2]\noutput : list = [10, 8, 6, 6, 5, 3]",
    "output": "generated_output : list = add_n(sort_des(sub_n([-2, -5, -3, 2, 0, -2],-3)),5)",
    "io_inp": [
      -2,
      -5,
      -3,
      2,
      0,
      -2
    ],
    "io_out": [
      10,
      8,
      6,
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,-3)),5)"
  },
  {
    "input": "input : list = [-1, 1, 3, -3]\noutput : list = [3, 1, -1, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(reverse([-1, 1, 3, -3]))),8))",
    "io_inp": [
      -1,
      1,
      3,
      -3
    ],
    "io_out": [
      3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(reverse(input))),8))"
  },
  {
    "input": "input : list = [4, 2, 4, 3, -2]\noutput : list = [-2, 2, 3, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 2, 4, 3, -2])",
    "io_inp": [
      4,
      2,
      4,
      3,
      -2
    ],
    "io_out": [
      -2,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = take(sort_des(add_n(take(sub_n([-3, -4, -4],2),11),4)),20)",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(sub_n(input,2),11),4)),20)"
  },
  {
    "input": "input : list = [0, 4, 4]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = reverse([0, 4, 4])",
    "io_inp": [
      0,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2, 2, -4, 1, 2]\noutput : list = [-2, -1, 4, 5, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc([-5, 2, 2, -4, 1, 2]),3)",
    "io_inp": [
      -5,
      2,
      2,
      -4,
      1,
      2
    ],
    "io_out": [
      -2,
      -1,
      4,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [2, -5, 2, -5]\noutput : list = [-3, -3, 4, 4]",
    "output": "generated_output : list = sub_n(sort_asc([2, -5, 2, -5]),-2)",
    "io_inp": [
      2,
      -5,
      2,
      -5
    ],
    "io_out": [
      -3,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [-1, 5, 8]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(sub_n([4, 1, -5],4)),-5),9),-3)",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      -1,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(sub_n(input,4)),-5),9),-3)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [-12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(take([3, -1, -4],1),5)),-4))",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(take(input,1),5)),-4))"
  },
  {
    "input": "input : list = [1, -1, 3, -4, 3]\noutput : list = [-12, -12, -6, 0, 9]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n([1, -1, 3, -4, 3],-1)))),-3)",
    "io_inp": [
      1,
      -1,
      3,
      -4,
      3
    ],
    "io_out": [
      -12,
      -12,
      -6,
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-1, -3, -4],-1)))",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-1)))"
  },
  {
    "input": "input : list = [-5, 1, 0, -1, 3, -2]\noutput : list = [-21, 3, -1, -5, 11, -9]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(reverse([-5, 1, 0, -1, 3, -2]),4)),-1),18)",
    "io_inp": [
      -5,
      1,
      0,
      -1,
      3,
      -2
    ],
    "io_out": [
      -21,
      3,
      -1,
      -5,
      11,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(reverse(input),4)),-1),18)"
  },
  {
    "input": "input : list = [-3, -1, -3, 5, -2, 3]\noutput : list = [-23, -15, 1, 5, 9, 9]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n(reverse([-3, -1, -3, 5, -2, 3]),-4)),-3))",
    "io_inp": [
      -3,
      -1,
      -3,
      5,
      -2,
      3
    ],
    "io_out": [
      -23,
      -15,
      1,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(reverse(input),-4)),-3))"
  },
  {
    "input": "input : list = [-5, -5, 4, 2, -4]\noutput : list = [0, 0, -6, -42, -54]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(sort_des([-5, -5, 4, 2, -4])),-5),-2),3)",
    "io_inp": [
      -5,
      -5,
      4,
      2,
      -4
    ],
    "io_out": [
      0,
      0,
      -6,
      -42,
      -54
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(sort_des(input)),-5),-2),3)"
  },
  {
    "input": "input : list = [-1, 0, -1, 0, 5]\noutput : list = [1, -4, -4, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(sort_des([-1, 0, -1, 0, 5])),-4)))",
    "io_inp": [
      -1,
      0,
      -1,
      0,
      5
    ],
    "io_out": [
      1,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [1, -5, -2, 3]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(drop([1, -5, -2, 3],2))),-2))",
    "io_inp": [
      1,
      -5,
      -2,
      3
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(drop(input,2))),-2))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_asc([1, 2]))),5),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(sort_asc(input))),5),3)"
  },
  {
    "input": "input : list = [2, 3, 4, -1, -2]\noutput : list = [-20, -15, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(take([2, 3, 4, -1, -2],3)))),-5)",
    "io_inp": [
      2,
      3,
      4,
      -1,
      -2
    ],
    "io_out": [
      -20,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(take(input,3)))),-5)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = mul_n(reverse([4, -4]),-1)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(sort_asc([-3, -3]))),-3),2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(sort_asc(input))),-3),2)"
  },
  {
    "input": "input : list = [1, -2, -3, 1]\noutput : list = [1, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n([1, -2, -3, 1],4))",
    "io_inp": [
      1,
      -2,
      -3,
      1
    ],
    "io_out": [
      1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(take(sort_des(drop([0, 5, 2],1)),19),15)",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(drop(input,1)),19),15)"
  },
  {
    "input": "input : list = [-4, 3, 3, 5]\noutput : list = [10, 6]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(sort_asc([-4, 3, 3, 5])),2)),2)",
    "io_inp": [
      -4,
      3,
      3,
      5
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(sort_asc(input)),2)),2)"
  },
  {
    "input": "input : list = [5, 1, -2, -2, -2]\noutput : list = [-2, 2, 5, 5, 5]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(sub_n([5, 1, -2, -2, -2],2),-1),3),4),30)",
    "io_inp": [
      5,
      1,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -2,
      2,
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(sub_n(input,2),-1),3),4),30)"
  },
  {
    "input": "input : list = [-5, -5, 3, 0]\noutput : list = [-2, -2, 3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_asc([-5, -5, 3, 0]))),-3))",
    "io_inp": [
      -5,
      -5,
      3,
      0
    ],
    "io_out": [
      -2,
      -2,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(reverse([-4, 5])),1)))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(reverse(input)),1)))"
  },
  {
    "input": "input : list = [-2, -3, -4, -1]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -3, -4, -1],1)",
    "io_inp": [
      -2,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [2, 2, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(reverse([5, 5, -5]))),-3))",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      2,
      2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-2, 5, 1, 3, 3]\noutput : list = [1, -1, -1, -3, -6]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(sub_n([-2, 5, 1, 3, 3],4)),22)))",
    "io_inp": [
      -2,
      5,
      1,
      3,
      3
    ],
    "io_out": [
      1,
      -1,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(sub_n(input,4)),22)))"
  },
  {
    "input": "input : list = [-3, 1, -1, -2, -1, 5]\noutput : list = [5, 1, -1, -1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse([-3, 1, -1, -2, -1, 5]))",
    "io_inp": [
      -3,
      1,
      -1,
      -2,
      -1,
      5
    ],
    "io_out": [
      5,
      1,
      -1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-2, 0, -1, 4, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(take([-2, 0, -1, 4, 2],2))),1))",
    "io_inp": [
      -2,
      0,
      -1,
      4,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(take(input,2))),1))"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(drop([2, -4, -2],1))),27))",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(drop(input,1))),27))"
  },
  {
    "input": "input : list = [-3, -2, 4, -2, 3]\noutput : list = [-1, 0, 0, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sort_des([-3, -2, 4, -2, 3])),-2)))",
    "io_inp": [
      -3,
      -2,
      4,
      -2,
      3
    ],
    "io_out": [
      -1,
      0,
      0,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [5, -1, 0, 5, -1]\noutput : list = [-12, -12, -9, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n([5, -1, 0, 5, -1],3),4)),-5))",
    "io_inp": [
      5,
      -1,
      0,
      5,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -9,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(mul_n(input,3),4)),-5))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(sort_des([2, 3]),4),2)))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(sort_des(input),4),2)))"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(sort_des([1, -2, -1]),-4),3)),-1)",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(sort_des(input),-4),3)),-1)"
  },
  {
    "input": "input : list = [-1, 5, 3]\noutput : list = [13, 11, 7]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(add_n([-1, 5, 3],4)),-4)),32)",
    "io_inp": [
      -1,
      5,
      3
    ],
    "io_out": [
      13,
      11,
      7
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(add_n(input,4)),-4)),32)"
  },
  {
    "input": "input : list = [0, -2, -4, -2, 4]\noutput : list = [1, 3, 3, 5, 9]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(sub_n([0, -2, -4, -2, 4],-3)),3),5),14)",
    "io_inp": [
      0,
      -2,
      -4,
      -2,
      4
    ],
    "io_out": [
      1,
      3,
      3,
      5,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(sub_n(input,-3)),3),5),14)"
  },
  {
    "input": "input : list = [-5, -1, 3, -5]\noutput : list = [-4, -20, -36, -36]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc([-5, -1, 3, -5])),-4),4)",
    "io_inp": [
      -5,
      -1,
      3,
      -5
    ],
    "io_out": [
      -4,
      -20,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(input)),-4),4)"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(take([-3, 3, 0],1)),14)))",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(take(input,1)),14)))"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [-12, -4, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des([-4, 4, 5])),5),3)",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      -12,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(input)),5),3)"
  },
  {
    "input": "input : list = [-1, 5, 1, 5]\noutput : list = [-4, 6, 26, 26]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(reverse([-1, 5, 1, 5]),5)),-1))",
    "io_inp": [
      -1,
      5,
      1,
      5
    ],
    "io_out": [
      -4,
      6,
      26,
      26
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(reverse(input),5)),-1))"
  },
  {
    "input": "input : list = [-3, -3, 1, 0, 3, 5]\noutput : list = [-3, 0, 1, 3, 5]",
    "output": "generated_output : list = drop(sort_asc(reverse([-3, -3, 1, 0, 3, 5])),1)",
    "io_inp": [
      -3,
      -3,
      1,
      0,
      3,
      5
    ],
    "io_out": [
      -3,
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(reverse(input)),1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, 0]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse([-2, -2, 0]))",
    "io_inp": [
      -2,
      -2,
      0
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, 4, -2]\noutput : list = [6, -12, 9]",
    "output": "generated_output : list = reverse(mul_n([-3, 4, -2],-3))",
    "io_inp": [
      -3,
      4,
      -2
    ],
    "io_out": [
      6,
      -12,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-5, -4, 0, -5, 3]\noutput : list = [-10]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take([-5, -4, 0, -5, 3],1)),2))",
    "io_inp": [
      -5,
      -4,
      0,
      -5,
      3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(input,1)),2))"
  },
  {
    "input": "input : list = [-2, 4, -2, -4, 4]\noutput : list = [1, 3, 3, 9, 9]",
    "output": "generated_output : list = add_n(sort_asc([-2, 4, -2, -4, 4]),5)",
    "io_inp": [
      -2,
      4,
      -2,
      -4,
      4
    ],
    "io_out": [
      1,
      3,
      3,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [-1, -3, 3, 5, 5, 2]\noutput : list = [-13, -22, -22, -16, 2, -4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(mul_n([-1, -3, 3, 5, 5, 2],-3)),4),2),-1)",
    "io_inp": [
      -1,
      -3,
      3,
      5,
      5,
      2
    ],
    "io_out": [
      -13,
      -22,
      -22,
      -16,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(mul_n(input,-3)),4),2),-1)"
  },
  {
    "input": "input : list = [-1, -2, 5, -5, 2, -4]\noutput : list = [-5, -2, -1, 5]",
    "output": "generated_output : list = reverse(take(take(sort_des(take([-1, -2, 5, -5, 2, -4],4)),4),33))",
    "io_inp": [
      -1,
      -2,
      5,
      -5,
      2,
      -4
    ],
    "io_out": [
      -5,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(take(input,4)),4),33))"
  },
  {
    "input": "input : list = [2, -4, 0, -2, 5, -4]\noutput : list = [-1, -4, -6, -8, -10, -10]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sub_n([2, -4, 0, -2, 5, -4],4))),2),23)",
    "io_inp": [
      2,
      -4,
      0,
      -2,
      5,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sub_n(input,4))),2),23)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [42, -48]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(mul_n([5, -5],-3),3)),-4),1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      42,
      -48
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(mul_n(input,-3),3)),-4),1)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(reverse([-4, -5])),22),3),-3)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(reverse(input)),22),3),-3)"
  },
  {
    "input": "input : list = [-2, 2, 1, 3]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(sub_n([-2, 2, 1, 3],-1),-4)),3),5)",
    "io_inp": [
      -2,
      2,
      1,
      3
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(sub_n(input,-1),-4)),3),5)"
  },
  {
    "input": "input : list = [-3, -5, 0, -5]\noutput : list = [-5, -5, -3, 0]",
    "output": "generated_output : list = sort_asc(mul_n([-3, -5, 0, -5],1))",
    "io_inp": [
      -3,
      -5,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-3, 5, -1, 3]\noutput : list = [5, 3, -1, -3]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(sort_des([-3, 5, -1, 3])),9),1))",
    "io_inp": [
      -3,
      5,
      -1,
      3
    ],
    "io_out": [
      5,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(sort_des(input)),9),1))"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [-12, -12, -7]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(sub_n([0, 5, 5],-1)),-2),-1),4)",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      -12,
      -12,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(sub_n(input,-1)),-2),-1),4)"
  },
  {
    "input": "input : list = [-4, 0, 1]\noutput : list = [-9, -12, -24]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(add_n([-4, 0, 1],-5)),-1)),3)",
    "io_inp": [
      -4,
      0,
      1
    ],
    "io_out": [
      -9,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(add_n(input,-5)),-1)),3)"
  },
  {
    "input": "input : list = [5, -3, -5, 1, -1]\noutput : list = [50, 40, 30, 20, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des([5, -3, -5, 1, -1])),-5),-5)",
    "io_inp": [
      5,
      -3,
      -5,
      1,
      -1
    ],
    "io_out": [
      50,
      40,
      30,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(input)),-5),-5)"
  },
  {
    "input": "input : list = [-1, 1, -2]\noutput : list = [-2, -1, 1]",
    "output": "generated_output : list = reverse(sort_des([-1, 1, -2]))",
    "io_inp": [
      -1,
      1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -5, 5, 1, -4]\noutput : list = [6, 11, 15, 5, 8]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n([-2, -5, 5, 1, -4],-5)),-4),1)",
    "io_inp": [
      -2,
      -5,
      5,
      1,
      -4
    ],
    "io_out": [
      6,
      11,
      15,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(input,-5)),-4),1)"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [-6, -12, -24]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n(reverse([-1, 1, -5]),-3)),22),3)",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      -6,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(reverse(input),-3)),22),3)"
  },
  {
    "input": "input : list = [5, 4, -2, 3, 3, -5]\noutput : list = [125, 100, 75, 75]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_des([5, 4, -2, 3, 3, -5]),5),4)),5)",
    "io_inp": [
      5,
      4,
      -2,
      3,
      3,
      -5
    ],
    "io_out": [
      125,
      100,
      75,
      75
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_des(input),5),4)),5)"
  },
  {
    "input": "input : list = [5, -5, 1, 5, -3]\noutput : list = [2, -8, -2, 2, -6]",
    "output": "generated_output : list = sub_n([5, -5, 1, 5, -3],3)",
    "io_inp": [
      5,
      -5,
      1,
      5,
      -3
    ],
    "io_out": [
      2,
      -8,
      -2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, 1, 0, 0, -3, -5]\noutput : list = [29, 19, 4, 4, 4, -1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sort_asc([0, 1, 0, 0, -3, -5]),-5),-1)),-3)",
    "io_inp": [
      0,
      1,
      0,
      0,
      -3,
      -5
    ],
    "io_out": [
      29,
      19,
      4,
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sort_asc(input),-5),-1)),-3)"
  },
  {
    "input": "input : list = [2, 5, 2, -3]\noutput : list = [-1, 4, 4, 7]",
    "output": "generated_output : list = sort_asc(add_n([2, 5, 2, -3],2))",
    "io_inp": [
      2,
      5,
      2,
      -3
    ],
    "io_out": [
      -1,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(take(take(add_n(reverse([4, 4]),-2),10),21),1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(reverse(input),-2),10),21),1)"
  },
  {
    "input": "input : list = [-4, -4, 0]\noutput : list = [-5, -5, 15]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(sub_n([-4, -4, 0],-4),6),-3),-2),5)",
    "io_inp": [
      -4,
      -4,
      0
    ],
    "io_out": [
      -5,
      -5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(sub_n(input,-4),6),-3),-2),5)"
  },
  {
    "input": "input : list = [1, 2, -3, -3]\noutput : list = [-5, -5, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n(sub_n([1, 2, -3, -3],3),-2))),3)",
    "io_inp": [
      1,
      2,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(sub_n(input,3),-2))),3)"
  },
  {
    "input": "input : list = [-1, -5, 1, 3, 5]\noutput : list = [1, -3, 3, 5, 7]",
    "output": "generated_output : list = add_n([-1, -5, 1, 3, 5],2)",
    "io_inp": [
      -1,
      -5,
      1,
      3,
      5
    ],
    "io_out": [
      1,
      -3,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [0, -2, -3, 4, -3, -5]\noutput : list = [-14, -12, -5, -12, -11, -9]",
    "output": "generated_output : list = add_n(reverse(sub_n([0, -2, -3, 4, -3, -5],5)),-4)",
    "io_inp": [
      0,
      -2,
      -3,
      4,
      -3,
      -5
    ],
    "io_out": [
      -14,
      -12,
      -5,
      -12,
      -11,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,5)),-4)"
  },
  {
    "input": "input : list = [-2, 4, 4, 4, -1, 1]\noutput : list = [-2, 4, 4, 4, -1, 1]",
    "output": "generated_output : list = take(reverse(reverse([-2, 4, 4, 4, -1, 1])),32)",
    "io_inp": [
      -2,
      4,
      4,
      4,
      -1,
      1
    ],
    "io_out": [
      -2,
      4,
      4,
      4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),32)"
  },
  {
    "input": "input : list = [2, -5, 2, -2, 3]\noutput : list = [-5, 30, -5]",
    "output": "generated_output : list = drop(take(sub_n(mul_n(reverse([2, -5, 2, -2, 3]),-5),-5),35),2)",
    "io_inp": [
      2,
      -5,
      2,
      -2,
      3
    ],
    "io_out": [
      -5,
      30,
      -5
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(mul_n(reverse(input),-5),-5),35),2)"
  },
  {
    "input": "input : list = [-2, 2, 3, 3, -4, 5]\noutput : list = [5, 3, 3, 2, -2, -4]",
    "output": "generated_output : list = sort_des([-2, 2, 3, 3, -4, 5])",
    "io_inp": [
      -2,
      2,
      3,
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      3,
      3,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, -4],1)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -5, -3, 1, 0, -5]\noutput : list = [0, 0, 2, 3, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n([-2, -5, -3, 1, 0, -5],-5))",
    "io_inp": [
      -2,
      -5,
      -3,
      1,
      0,
      -5
    ],
    "io_out": [
      0,
      0,
      2,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [5, -5, -4, 1, 1]\noutput : list = [-16, 20, 24]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(take([5, -5, -4, 1, 1],3)),1),-4))",
    "io_inp": [
      5,
      -5,
      -4,
      1,
      1
    ],
    "io_out": [
      -16,
      20,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(take(input,3)),1),-4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [29, 74]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_des([2, 5]),5),3),-1))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      29,
      74
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_des(input),5),3),-1))"
  },
  {
    "input": "input : list = [-2, 1, -3, -5, 1, 4]\noutput : list = [6]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(take([-2, 1, -3, -5, 1, 4],1),-3),35)))",
    "io_inp": [
      -2,
      1,
      -3,
      -5,
      1,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(take(input,1),-3),35)))"
  },
  {
    "input": "input : list = [2, 2, -2, -2]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 2, -2, -2],1)",
    "io_inp": [
      2,
      2,
      -2,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 2, -4, 0, 3]\noutput : list = [3, 2, 0, -3, -4]",
    "output": "generated_output : list = sort_des([-3, 2, -4, 0, 3])",
    "io_inp": [
      -3,
      2,
      -4,
      0,
      3
    ],
    "io_out": [
      3,
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 2, 3, 1, 3]\noutput : list = [3, 3, 2, 1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(add_n([0, 0, 2, 3, 1, 3],2),20))),2)",
    "io_inp": [
      0,
      0,
      2,
      3,
      1,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(add_n(input,2),20))),2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-140, -140]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n([3, 3],4),5),-4))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -140,
      -140
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(input,4),5),-4))"
  },
  {
    "input": "input : list = [3, 0, 0, 3, -5]\noutput : list = [-1, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(take([3, 0, 0, 3, -5],3),-3),-4)))",
    "io_inp": [
      3,
      0,
      0,
      3,
      -5
    ],
    "io_out": [
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(take(input,3),-3),-4)))"
  },
  {
    "input": "input : list = [3, 2, -1, 3, -1]\noutput : list = [-8, -20, -24]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(take([3, 2, -1, 3, -1],3),3),3),-4))",
    "io_inp": [
      3,
      2,
      -1,
      3,
      -1
    ],
    "io_out": [
      -8,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(take(input,3),3),3),-4))"
  },
  {
    "input": "input : list = [-5, 1, 2, 2, 5, 2]\noutput : list = [30, 18, 18, 18, 14, -10]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n([-5, 1, 2, 2, 5, 2],4),-5))),5)",
    "io_inp": [
      -5,
      1,
      2,
      2,
      5,
      2
    ],
    "io_out": [
      30,
      18,
      18,
      18,
      14,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(mul_n(input,4),-5))),5)"
  },
  {
    "input": "input : list = [-4, 3, -3, 1]\noutput : list = [-32, -14, 22, 31]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc([-4, 3, -3, 1])),3),-3),-5)",
    "io_inp": [
      -4,
      3,
      -3,
      1
    ],
    "io_out": [
      -32,
      -14,
      22,
      31
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sort_asc(input)),3),-3),-5)"
  },
  {
    "input": "input : list = [2, -1, 3, 4, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take(sub_n(sort_asc([2, -1, 3, 4, 1]),4),1)",
    "io_inp": [
      2,
      -1,
      3,
      4,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),4),1)"
  },
  {
    "input": "input : list = [-5, -5, -2]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(add_n(take(take([-5, -5, -2],1),15),1),1)",
    "io_inp": [
      -5,
      -5,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(input,1),15),1),1)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [7, 9]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_des(reverse([-1, 1])),-4),4))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_des(reverse(input)),-4),4))"
  },
  {
    "input": "input : list = [-1, 3, -2, 2, 1, 0]\noutput : list = [2, 3, 4, 5, 6, 7]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(add_n([-1, 3, -2, 2, 1, 0],2)),2)),26)",
    "io_inp": [
      -1,
      3,
      -2,
      2,
      1,
      0
    ],
    "io_out": [
      2,
      3,
      4,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(add_n(input,2)),2)),26)"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [4, 1, 8]",
    "output": "generated_output : list = sub_n(sub_n([-1, -4, 3],-1),-4)",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      4,
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),-4)"
  },
  {
    "input": "input : list = [-4, -3, -2, 5, 2]\noutput : list = [5, 2, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-4, -3, -2, 5, 2])",
    "io_inp": [
      -4,
      -3,
      -2,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2, 0]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(drop([-3, 2, 0],1),11)),-4),4)",
    "io_inp": [
      -3,
      2,
      0
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(drop(input,1),11)),-4),4)"
  },
  {
    "input": "input : list = [1, -1, -5, 3, -2]\noutput : list = [-2, 1, 2, 4, 6]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n([1, -1, -5, 3, -2],-1),4)))",
    "io_inp": [
      1,
      -1,
      -5,
      3,
      -2
    ],
    "io_out": [
      -2,
      1,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(input,-1),4)))"
  },
  {
    "input": "input : list = [-5, -2, 3, 1, -2]\noutput : list = [-2, 1, 3, -2, -5]",
    "output": "generated_output : list = reverse([-5, -2, 3, 1, -2])",
    "io_inp": [
      -5,
      -2,
      3,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3, 0, 1, 0, 2]\noutput : list = [1, -2, -3, -4, -4, -7]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(reverse([5, -3, 0, 1, 0, 2])),4)),44)",
    "io_inp": [
      5,
      -3,
      0,
      1,
      0,
      2
    ],
    "io_out": [
      1,
      -2,
      -3,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(reverse(input)),4)),44)"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [19, 11, 7]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(reverse([-2, -1, -4]),-4),22)),-3)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      19,
      11,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(reverse(input),-4),22)),-3)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [3, -24]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(reverse([4, -5]),-4),6),-3))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      3,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(reverse(input),-4),6),-3))"
  },
  {
    "input": "input : list = [-1, 3, 0, 4, 0]\noutput : list = [4, 5, 5, 8, 9]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(reverse([-1, 3, 0, 4, 0]))),5),5)",
    "io_inp": [
      -1,
      3,
      0,
      4,
      0
    ],
    "io_out": [
      4,
      5,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(reverse(input))),5),5)"
  },
  {
    "input": "input : list = [0, 5, -4, 1]\noutput : list = [10, 1, 6]",
    "output": "generated_output : list = take(add_n(drop([0, 5, -4, 1],1),5),13)",
    "io_inp": [
      0,
      5,
      -4,
      1
    ],
    "io_out": [
      10,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,1),5),13)"
  },
  {
    "input": "input : list = [4, 4, 2, 2, -5, 2]\noutput : list = [-3, 4, 4, 4, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n([4, 4, 2, 2, -5, 2],-2)))",
    "io_inp": [
      4,
      4,
      2,
      2,
      -5,
      2
    ],
    "io_out": [
      -3,
      4,
      4,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = add_n(take(reverse(reverse(add_n([-3, 4],-1))),2),1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(add_n(input,-1))),2),1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sort_asc([-5, 1])))))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, 4, 3, 4, -4]\noutput : list = [-16, -12, 16]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(drop([-5, 4, 3, 4, -4],2),-1))),4)",
    "io_inp": [
      -5,
      4,
      3,
      4,
      -4
    ],
    "io_out": [
      -16,
      -12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(drop(input,2),-1))),4)"
  },
  {
    "input": "input : list = [-5, -4, 1, -1, 4, 5]\noutput : list = [5, -5, -20, -25]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(drop([-5, -4, 1, -1, 4, 5],2)),-5),16))",
    "io_inp": [
      -5,
      -4,
      1,
      -1,
      4,
      5
    ],
    "io_out": [
      5,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(drop(input,2)),-5),16))"
  },
  {
    "input": "input : list = [-3, 1, -5, -2, 5, -5]\noutput : list = [-5, -2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(drop([-3, 1, -5, -2, 5, -5],3),1)))",
    "io_inp": [
      -3,
      1,
      -5,
      -2,
      5,
      -5
    ],
    "io_out": [
      -5,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(drop(input,3),1)))"
  },
  {
    "input": "input : list = [5, 2, 2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(drop([5, 2, 2],1))),-5),-5)",
    "io_inp": [
      5,
      2,
      2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(drop(input,1))),-5),-5)"
  },
  {
    "input": "input : list = [-2, 1, 1, 3]\noutput : list = [-4, 2, 2, 6]",
    "output": "generated_output : list = mul_n([-2, 1, 1, 3],2)",
    "io_inp": [
      -2,
      1,
      1,
      3
    ],
    "io_out": [
      -4,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 0, 2, 5, 3, 1]\noutput : list = [16, -4, -8, -12, -16, -24]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sort_asc([-5, 0, 2, 5, 3, 1]),-1),-4)))",
    "io_inp": [
      -5,
      0,
      2,
      5,
      3,
      1
    ],
    "io_out": [
      16,
      -4,
      -8,
      -12,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sort_asc(input),-1),-4)))"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [-2, 5, 5]",
    "output": "generated_output : list = reverse(sort_des([-2, 5, 5]))",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, -4, 1, 3, 0]\noutput : list = [5, 5, 3, 2, -2]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sort_asc([3, -4, 1, 3, 0])),-2)),37)",
    "io_inp": [
      3,
      -4,
      1,
      3,
      0
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sort_asc(input)),-2)),37)"
  },
  {
    "input": "input : list = [4, -1, 4, -4]\noutput : list = [-2, 22, 62, 62]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sub_n([4, -1, 4, -4],-4),4),1)),2)",
    "io_inp": [
      4,
      -1,
      4,
      -4
    ],
    "io_out": [
      -2,
      22,
      62,
      62
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sub_n(input,-4),4),1)),2)"
  },
  {
    "input": "input : list = [3, 2, 1, -2, -3, -3]\noutput : list = [-12, -12, -11, -8, -7, -6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n([3, 2, 1, -2, -3, -3],-5))),-4))",
    "io_inp": [
      3,
      2,
      1,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -12,
      -12,
      -11,
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(add_n(input,-5))),-4))"
  },
  {
    "input": "input : list = [-1, 0, -4, -2]\noutput : list = [-1, -3, 1, 0]",
    "output": "generated_output : list = reverse(sub_n([-1, 0, -4, -2],-1))",
    "io_inp": [
      -1,
      0,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -3,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-4, -4, -4]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = sort_asc([-4, -4, -4])",
    "io_inp": [
      -4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -3, 0, -5, 0]\noutput : list = [-3, -5, -5, -8, -10]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(sort_des([2, -3, 0, -5, 0])))),-5)",
    "io_inp": [
      2,
      -3,
      0,
      -5,
      0
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_asc(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [0, -1, 0, -5, -4, -3]\noutput : list = [-5, -6]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(drop([0, -1, 0, -5, -4, -3],4),19),2),1))",
    "io_inp": [
      0,
      -1,
      0,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(drop(input,4),19),2),1))"
  },
  {
    "input": "input : list = [-4, 4, -1, -4, 3]\noutput : list = [5, -2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(drop([-4, 4, -1, -4, 3],3)),3),4),-1)",
    "io_inp": [
      -4,
      4,
      -1,
      -4,
      3
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(drop(input,3)),3),4),-1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sort_des([-4, 1]))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, -4, 1, -3, 0, -3]\noutput : list = [8, 5, 5, -4, -4, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(mul_n([0, -4, 1, -3, 0, -3],3)),5)))",
    "io_inp": [
      0,
      -4,
      1,
      -3,
      0,
      -3
    ],
    "io_out": [
      8,
      5,
      5,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(mul_n(input,3)),5)))"
  },
  {
    "input": "input : list = [-1, 0, -1, -2]\noutput : list = [0, 1, 0, -1]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(add_n([-1, 0, -1, -2],-3),1),5),5),-3)",
    "io_inp": [
      -1,
      0,
      -1,
      -2
    ],
    "io_out": [
      0,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(add_n(input,-3),1),5),5),-3)"
  },
  {
    "input": "input : list = [4, 5, -2, -3]\noutput : list = [30, 25, -5, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n(sub_n([4, 5, -2, -3],-2),-5)),-5))",
    "io_inp": [
      4,
      5,
      -2,
      -3
    ],
    "io_out": [
      30,
      25,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(sub_n(input,-2),-5)),-5))"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [16, 11, 11]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(reverse([3, 3, 4])),5),-4))",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      16,
      11,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(reverse(input)),5),-4))"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [1, 1, -6]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_des([-4, -4, 3]),-2),5)),-1)",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      1,
      1,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(sort_des(input),-2),5)),-1)"
  },
  {
    "input": "input : list = [4, 5, -1, 1, -1]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(drop([4, 5, -1, 1, -1],3)),3))",
    "io_inp": [
      4,
      5,
      -1,
      1,
      -1
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(drop(input,3)),3))"
  },
  {
    "input": "input : list = [-3, -4, -3, -5, -2, 4]\noutput : list = [-8, -16, -8, -24, 0, 48]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(add_n([-3, -4, -3, -5, -2, 4],2))),4),2)",
    "io_inp": [
      -3,
      -4,
      -3,
      -5,
      -2,
      4
    ],
    "io_out": [
      -8,
      -16,
      -8,
      -24,
      0,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(add_n(input,2))),4),2)"
  },
  {
    "input": "input : list = [4, 3, 3, -4, -3, 3]\noutput : list = [3, 2, -4, -4, -4, -5]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sort_des([4, 3, 3, -4, -3, 3])),-1),3),4)",
    "io_inp": [
      4,
      3,
      3,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      2,
      -4,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sort_des(input)),-1),3),4)"
  },
  {
    "input": "input : list = [4, 4, -3, 1]\noutput : list = [-7]",
    "output": "generated_output : list = take(take(sub_n(take(drop([4, 4, -3, 1],2),1),4),11),13)",
    "io_inp": [
      4,
      4,
      -3,
      1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(drop(input,2),1),4),11),13)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-16, -8]",
    "output": "generated_output : list = mul_n([4, 2],-4)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -3, -3, 4, 0, 5]\noutput : list = [33, 13, 29, 1, 1, -7]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sub_n(sub_n([-5, -3, -3, 4, 0, 5],-1),-3),4)),3)",
    "io_inp": [
      -5,
      -3,
      -3,
      4,
      0,
      5
    ],
    "io_out": [
      33,
      13,
      29,
      1,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sub_n(sub_n(input,-1),-3),4)),3)"
  },
  {
    "input": "input : list = [1, 3, 1, -5, -1, -4]\noutput : list = [11, 3, 3, -5, -17, -21]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc([1, 3, 1, -5, -1, -4]),4),37),1))",
    "io_inp": [
      1,
      3,
      1,
      -5,
      -1,
      -4
    ],
    "io_out": [
      11,
      3,
      3,
      -5,
      -17,
      -21
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc(input),4),37),1))"
  },
  {
    "input": "input : list = [-3, -2, 0]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(reverse([-3, -2, 0]),-5),-1)))",
    "io_inp": [
      -3,
      -2,
      0
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(reverse(input),-5),-1)))"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [5, 0, -2]",
    "output": "generated_output : list = sort_des([5, -2, 0])",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 1, -1, -5]\noutput : list = [41, 33, 25, 17]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(sub_n([-3, 1, -1, -5],5),-4))),-1)",
    "io_inp": [
      -3,
      1,
      -1,
      -5
    ],
    "io_out": [
      41,
      33,
      25,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(sub_n(input,5),-4))),-1)"
  },
  {
    "input": "input : list = [3, 3, -1]\noutput : list = [0, -20, -20]",
    "output": "generated_output : list = add_n(take(take(mul_n(sort_asc([3, 3, -1]),-5),15),23),-5)",
    "io_inp": [
      3,
      3,
      -1
    ],
    "io_out": [
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(sort_asc(input),-5),15),23),-5)"
  },
  {
    "input": "input : list = [5, -4, 5, 3, 3]\noutput : list = [5, 3, 3, -4]",
    "output": "generated_output : list = reverse(sort_asc(drop([5, -4, 5, 3, 3],1)))",
    "io_inp": [
      5,
      -4,
      5,
      3,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [10, 18, -2]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(mul_n([-2, -4, 1],1),-2),2),-4),-2)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      10,
      18,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(mul_n(input,1),-2),2),-4),-2)"
  },
  {
    "input": "input : list = [1, -5, 0]\noutput : list = [-3, -9, -4]",
    "output": "generated_output : list = sub_n([1, -5, 0],4)",
    "io_inp": [
      1,
      -5,
      0
    ],
    "io_out": [
      -3,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, 4, 0, -4, -5, 0]\noutput : list = [25, 20, 0, 0, -15, -20]",
    "output": "generated_output : list = mul_n(sort_asc([3, 4, 0, -4, -5, 0]),-5)",
    "io_inp": [
      3,
      4,
      0,
      -4,
      -5,
      0
    ],
    "io_out": [
      25,
      20,
      0,
      0,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 10]",
    "output": "generated_output : list = take(add_n(take(mul_n(sort_asc([2, 4]),3),5),-2),34)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sort_asc(input),3),5),-2),34)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sub_n(take(sub_n([-3, -3],4),11),3)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,4),11),3)"
  },
  {
    "input": "input : list = [0, -5, 2, -5]\noutput : list = [2, -5, 2, -3]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse([0, -5, 2, -5]),15),-1),3)",
    "io_inp": [
      0,
      -5,
      2,
      -5
    ],
    "io_out": [
      2,
      -5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(input),15),-1),3)"
  },
  {
    "input": "input : list = [1, -2, -4, -2, 4]\noutput : list = [45, 30, 15, 15, 5]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc(sub_n([1, -2, -4, -2, 4],-5))),5),51)",
    "io_inp": [
      1,
      -2,
      -4,
      -2,
      4
    ],
    "io_out": [
      45,
      30,
      15,
      15,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(sub_n(input,-5))),5),51)"
  },
  {
    "input": "input : list = [-3, 1, 5, -1, -5, -5]\noutput : list = [-1, -1, 3, 9, 5, 1]",
    "output": "generated_output : list = reverse(take(add_n([-3, 1, 5, -1, -5, -5],4),29))",
    "io_inp": [
      -3,
      1,
      5,
      -1,
      -5,
      -5
    ],
    "io_out": [
      -1,
      -1,
      3,
      9,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,4),29))"
  },
  {
    "input": "input : list = [-4, 3, 0, 0, -2, -1]\noutput : list = [-4, -2, -1, 0, 0, 3]",
    "output": "generated_output : list = sort_asc([-4, 3, 0, 0, -2, -1])",
    "io_inp": [
      -4,
      3,
      0,
      0,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, 4, 1]\noutput : list = [-5, -3, 1, 4]",
    "output": "generated_output : list = sort_asc(take(take(reverse(reverse([-3, -5, 4, 1])),19),9))",
    "io_inp": [
      -3,
      -5,
      4,
      1
    ],
    "io_out": [
      -5,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(reverse(input)),19),9))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(sort_des([-1, 2])),-3)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [2, 0]",
    "output": "generated_output : list = mul_n(add_n(drop([-1, 2, 3],1),-3),-2)",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(input,1),-3),-2)"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sub_n([-5, -4, -1],-1)),5)))",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sub_n(input,-1)),5)))"
  },
  {
    "input": "input : list = [-2, 2, 1, -4, 0]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(take([-2, 2, 1, -4, 0],2)),3),4),-1)",
    "io_inp": [
      -2,
      2,
      1,
      -4,
      0
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(take(input,2)),3),4),-1)"
  },
  {
    "input": "input : list = [1, 1, 5, 5, 3, -4]\noutput : list = [8, 8, 12, 12, 10, 3]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n([1, 1, 5, 5, 3, -4],2),-2),-3)))",
    "io_inp": [
      1,
      1,
      5,
      5,
      3,
      -4
    ],
    "io_out": [
      8,
      8,
      12,
      12,
      10,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(add_n(input,2),-2),-3)))"
  },
  {
    "input": "input : list = [-5, 3, -3, -1, -2]\noutput : list = [-4, -2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_asc([-5, 3, -3, -1, -2]),-1))))",
    "io_inp": [
      -5,
      3,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(drop(sort_asc(sort_asc(sub_n([-2, 1],-1))),1),3)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(sort_asc(sub_n(input,-1))),1),3)"
  },
  {
    "input": "input : list = [0, -1, -2, 3, 5, -2]\noutput : list = [-3, -6, -9, -18, -24]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(sub_n([0, -1, -2, 3, 5, -2],-3),5),15)),-3)",
    "io_inp": [
      0,
      -1,
      -2,
      3,
      5,
      -2
    ],
    "io_out": [
      -3,
      -6,
      -9,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(sub_n(input,-3),5),15)),-3)"
  },
  {
    "input": "input : list = [2, -1, 0, 4, 0]\noutput : list = [0, 4, 4, 12, 20]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_des([2, -1, 0, 4, 0])),-1)),4)",
    "io_inp": [
      2,
      -1,
      0,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      4,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_des(input)),-1)),4)"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [5, 0, -4]",
    "output": "generated_output : list = sort_des(reverse([-4, 0, 5]))",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, 4, 5, -1, -2]\noutput : list = [-5, -20, -25, 5, 10]",
    "output": "generated_output : list = mul_n([1, 4, 5, -1, -2],-5)",
    "io_inp": [
      1,
      4,
      5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -20,
      -25,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, 2, 3, 5]\noutput : list = [5, 3, 3, 2]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(sort_des([3, 2, 3, 5]),1),29),1))",
    "io_inp": [
      3,
      2,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(sort_des(input),1),29),1))"
  },
  {
    "input": "input : list = [-2, -3, -2, 1, 1, 3]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(take([-2, -3, -2, 1, 1, 3],3),7),3)),-4)",
    "io_inp": [
      -2,
      -3,
      -2,
      1,
      1,
      3
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(take(input,3),7),3)),-4)"
  },
  {
    "input": "input : list = [-5, -5, -5, 0]\noutput : list = [-10, -10]",
    "output": "generated_output : list = mul_n(sort_asc(drop(sort_des(sort_asc([-5, -5, -5, 0])),2)),2)",
    "io_inp": [
      -5,
      -5,
      -5,
      0
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(sort_des(sort_asc(input)),2)),2)"
  },
  {
    "input": "input : list = [-5, 4, -2, -1, 5]\noutput : list = [5, 4, -1, -2, -5]",
    "output": "generated_output : list = take(sort_des(sort_des([-5, 4, -2, -1, 5])),18)",
    "io_inp": [
      -5,
      4,
      -2,
      -1,
      5
    ],
    "io_out": [
      5,
      4,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),18)"
  },
  {
    "input": "input : list = [1, 0, 5, 3, 5]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(take([1, 0, 5, 3, 5],2),13)",
    "io_inp": [
      1,
      0,
      5,
      3,
      5
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(take(input,2),13)"
  },
  {
    "input": "input : list = [0, 5, 5, 2, 2]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(take([0, 5, 5, 2, 2],1)))),35)",
    "io_inp": [
      0,
      5,
      5,
      2,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(take(input,1)))),35)"
  },
  {
    "input": "input : list = [-5, -5, -2, -1, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = add_n(drop(mul_n(sort_asc([-5, -5, -2, -1, -3]),1),3),-1)",
    "io_inp": [
      -5,
      -5,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(mul_n(sort_asc(input),1),3),-1)"
  },
  {
    "input": "input : list = [2, 2, -5, 4, 0]\noutput : list = [6, 4, 4, 2, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(add_n([2, 2, -5, 4, 0],-3)),33),-5))",
    "io_inp": [
      2,
      2,
      -5,
      4,
      0
    ],
    "io_out": [
      6,
      4,
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(add_n(input,-3)),33),-5))"
  },
  {
    "input": "input : list = [4, 3, 2, 4]\noutput : list = [7, 8, 9, 9]",
    "output": "generated_output : list = sub_n(sort_asc([4, 3, 2, 4]),-5)",
    "io_inp": [
      4,
      3,
      2,
      4
    ],
    "io_out": [
      7,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-10, 25]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(mul_n([3, -4],-5))),-5))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -10,
      25
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(mul_n(input,-5))),-5))"
  },
  {
    "input": "input : list = [4, 3, -1, 3, 5, -4]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = sort_des(sort_des(drop(sort_asc(sort_asc([4, 3, -1, 3, 5, -4])),3)))",
    "io_inp": [
      4,
      3,
      -1,
      3,
      5,
      -4
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-5, 0, -4, 5]\noutput : list = [10, 5, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_des([-5, 0, -4, 5]),-1),-4)))",
    "io_inp": [
      -5,
      0,
      -4,
      5
    ],
    "io_out": [
      10,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_des(input),-1),-4)))"
  },
  {
    "input": "input : list = [-3, 2, -2, -1]\noutput : list = [68, 43, 18, -57]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_asc([-3, 2, -2, -1]),-5),5),-5),-2)",
    "io_inp": [
      -3,
      2,
      -2,
      -1
    ],
    "io_out": [
      68,
      43,
      18,
      -57
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_asc(input),-5),5),-5),-2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(add_n([5, 4],-3))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [1, 4, 5, -2]\noutput : list = [10, -5, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n([1, 4, 5, -2],-5))",
    "io_inp": [
      1,
      4,
      5,
      -2
    ],
    "io_out": [
      10,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-4, -1, 0, -3]\noutput : list = [0, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des([-4, -1, 0, -3]))",
    "io_inp": [
      -4,
      -1,
      0,
      -3
    ],
    "io_out": [
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 1, -2]\noutput : list = [5, 5, 8]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse([-2, 1, -2]),-3),4))",
    "io_inp": [
      -2,
      1,
      -2
    ],
    "io_out": [
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(input),-3),4))"
  },
  {
    "input": "input : list = [2, 5, 2, 3]\noutput : list = [2, 2, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des([2, 5, 2, 3]))))",
    "io_inp": [
      2,
      5,
      2,
      3
    ],
    "io_out": [
      2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [5, -2, -5, 2, 5, -3]\noutput : list = [27, 27, 12, -8, -13, -23]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n([5, -2, -5, 2, 5, -3],5))),-2)",
    "io_inp": [
      5,
      -2,
      -5,
      2,
      5,
      -3
    ],
    "io_out": [
      27,
      27,
      12,
      -8,
      -13,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(input,5))),-2)"
  },
  {
    "input": "input : list = [-4, -1, 1]\noutput : list = [-2, -4, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-4, -1, 1])),3)",
    "io_inp": [
      -4,
      -1,
      1
    ],
    "io_out": [
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),3)"
  },
  {
    "input": "input : list = [0, 3, 1, -5, 2, -2]\noutput : list = [9, 2, 8, 10, 7]",
    "output": "generated_output : list = sub_n(sub_n(reverse(take(add_n([0, 3, 1, -5, 2, -2],2),5)),-2),-3)",
    "io_inp": [
      0,
      3,
      1,
      -5,
      2,
      -2
    ],
    "io_out": [
      9,
      2,
      8,
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(take(add_n(input,2),5)),-2),-3)"
  },
  {
    "input": "input : list = [-2, -3, 2, 5, -1]\noutput : list = [-100, -40, 20, 40, 60]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(sort_des([-2, -3, 2, 5, -1]),4),-5)))",
    "io_inp": [
      -2,
      -3,
      2,
      5,
      -1
    ],
    "io_out": [
      -100,
      -40,
      20,
      40,
      60
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(sort_des(input),4),-5)))"
  },
  {
    "input": "input : list = [4, -5, 5, 3, -1, 4]\noutput : list = [4, 3, 3, 2, -2, -6]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(add_n([4, -5, 5, 3, -1, 4],-1))),7))",
    "io_inp": [
      4,
      -5,
      5,
      3,
      -1,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(add_n(input,-1))),7))"
  },
  {
    "input": "input : list = [5, 4, 1, 2, 4]\noutput : list = [50, 40]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(take([5, 4, 1, 2, 4],2)),2),11),5)",
    "io_inp": [
      5,
      4,
      1,
      2,
      4
    ],
    "io_out": [
      50,
      40
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(take(input,2)),2),11),5)"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [100, -25, -50]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([-2, -1, 4],5)),5)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      100,
      -25,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,5)),5)"
  },
  {
    "input": "input : list = [4, 5, -5, 5, -1, -5]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(take([4, 5, -5, 5, -1, -5],1),19))))",
    "io_inp": [
      4,
      5,
      -5,
      5,
      -1,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(take(input,1),19))))"
  },
  {
    "input": "input : list = [4, -4, -3, -4, -5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(take([4, -4, -3, -4, -5],1),5),1),2))",
    "io_inp": [
      4,
      -4,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(take(input,1),5),1),2))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [6, 2]",
    "output": "generated_output : list = mul_n([3, 1],2)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = sort_asc([1, -2, 1])",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, 0, -5]\noutput : list = [-5, -5, -2, 0]",
    "output": "generated_output : list = reverse(sort_des([-5, -2, 0, -5]))",
    "io_inp": [
      -5,
      -2,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 1, -5, 0, -5]\noutput : list = [-5, 0, -5, 1, -1]",
    "output": "generated_output : list = add_n(take(sub_n(reverse([-1, 1, -5, 0, -5]),2),15),2)",
    "io_inp": [
      -1,
      1,
      -5,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(input),2),15),2)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(reverse([5, 4]),4),3)),5)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(reverse(input),4),3)),5)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_des([0, 5]),4))),28)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_des(input),4))),28)"
  },
  {
    "input": "input : list = [-2, -1, -2, -5, 4]\noutput : list = [4, -5, -2, -1, -2]",
    "output": "generated_output : list = reverse([-2, -1, -2, -5, 4])",
    "io_inp": [
      -2,
      -1,
      -2,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      -2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [10, 1]",
    "output": "generated_output : list = take(take(add_n([5, -4],5),13),22)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      10,
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,5),13),22)"
  },
  {
    "input": "input : list = [-5, 2, 3, 1, -2]\noutput : list = [-10, -7, -4, -3, -2]",
    "output": "generated_output : list = sub_n(sort_asc([-5, 2, 3, 1, -2]),5)",
    "io_inp": [
      -5,
      2,
      3,
      1,
      -2
    ],
    "io_out": [
      -10,
      -7,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [0, -2, 2, 4, -5]\noutput : list = [2, -2, 0]",
    "output": "generated_output : list = take(take(take(reverse(take([0, -2, 2, 4, -5],3)),5),15),47)",
    "io_inp": [
      0,
      -2,
      2,
      4,
      -5
    ],
    "io_out": [
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(take(input,3)),5),15),47)"
  },
  {
    "input": "input : list = [-3, 3, -1, 3, 1, 5]\noutput : list = [-24, 24, -8, 24, 8, 40]",
    "output": "generated_output : list = take(mul_n(mul_n([-3, 3, -1, 3, 1, 5],-4),-2),33)",
    "io_inp": [
      -3,
      3,
      -1,
      3,
      1,
      5
    ],
    "io_out": [
      -24,
      24,
      -8,
      24,
      8,
      40
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-4),-2),33)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n(sort_des([-2, 0]),-1)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [5, 2, 4, -4]\noutput : list = [-4, 4, 2]",
    "output": "generated_output : list = reverse(drop([5, 2, 4, -4],1))",
    "io_inp": [
      5,
      2,
      4,
      -4
    ],
    "io_out": [
      -4,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 2, 2, 3, -2, -4]\noutput : list = [2, 1, 1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(sort_des([-1, 2, 2, 3, -2, -4]),1))))",
    "io_inp": [
      -1,
      2,
      2,
      3,
      -2,
      -4
    ],
    "io_out": [
      2,
      1,
      1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-5, -5, -3, -1, 3]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(take([-5, -5, -3, -1, 3],1),3),-5)))",
    "io_inp": [
      -5,
      -5,
      -3,
      -1,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(take(input,1),3),-5)))"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-2, -5, -6]",
    "output": "generated_output : list = add_n(sort_des([-1, -5, -4]),-1)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [3]",
    "output": "generated_output : list = reverse(sub_n(take([1, 5, -1],1),-2))",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,1),-2))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(mul_n([-3, 2],1),-4))),-5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(mul_n(input,1),-4))),-5)"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [15, 12, 6]",
    "output": "generated_output : list = sort_des(mul_n([4, 5, 2],3))",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      15,
      12,
      6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [2, -3, 4, -2]\noutput : list = [-1, -7]",
    "output": "generated_output : list = take(take(add_n(take(drop([2, -3, 4, -2],2),10),-5),25),46)",
    "io_inp": [
      2,
      -3,
      4,
      -2
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(drop(input,2),10),-5),25),46)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [11, -19]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(add_n([3, -3],1),8),-5)),1)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      11,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(add_n(input,1),8),-5)),1)"
  },
  {
    "input": "input : list = [-5, -4, -1, 3, -2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -4, -1, 3, -2],1)",
    "io_inp": [
      -5,
      -4,
      -1,
      3,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 1, -3, -1, -5]\noutput : list = [16, 1, -9, -19, -29]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(sort_asc([4, 1, -3, -1, -5]),-1)),5),1)",
    "io_inp": [
      4,
      1,
      -3,
      -1,
      -5
    ],
    "io_out": [
      16,
      1,
      -9,
      -19,
      -29
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(sort_asc(input),-1)),5),1)"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-9, -4, -3]",
    "output": "generated_output : list = reverse(take(take(add_n(reverse([-5, 0, 1]),-4),3),24))",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -9,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(reverse(input),-4),3),24))"
  },
  {
    "input": "input : list = [0, 5, -5, 3]\noutput : list = [-5, 0, 3, 5]",
    "output": "generated_output : list = sort_asc([0, 5, -5, 3])",
    "io_inp": [
      0,
      5,
      -5,
      3
    ],
    "io_out": [
      -5,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-32, -17]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(sub_n([-3, 0],3),12),5),-2))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -32,
      -17
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(sub_n(input,3),12),5),-2))"
  },
  {
    "input": "input : list = [-5, 3, 0, -4]\noutput : list = [0, -100]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(drop([-5, 3, 0, -4],2),-5)),-5))",
    "io_inp": [
      -5,
      3,
      0,
      -4
    ],
    "io_out": [
      0,
      -100
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(drop(input,2),-5)),-5))"
  },
  {
    "input": "input : list = [0, -5, 2, 1]\noutput : list = [20, -4, -8]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(drop([0, -5, 2, 1],1)),22),-4))",
    "io_inp": [
      0,
      -5,
      2,
      1
    ],
    "io_out": [
      20,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(drop(input,1)),22),-4))"
  },
  {
    "input": "input : list = [3, -4, 2, -1, -4]\noutput : list = [7, 10, 13]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(drop([3, -4, 2, -1, -4],2),-3),-3)),5)",
    "io_inp": [
      3,
      -4,
      2,
      -1,
      -4
    ],
    "io_out": [
      7,
      10,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(drop(input,2),-3),-3)),5)"
  },
  {
    "input": "input : list = [1, 3, 1, -5, -4, 0]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(take([1, 3, 1, -5, -4, 0],2),-4)",
    "io_inp": [
      1,
      3,
      1,
      -5,
      -4,
      0
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [12, 3]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n([-1, -4],-3),8)))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      12,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(input,-3),8)))"
  },
  {
    "input": "input : list = [2, 4, 0, -5]\noutput : list = [-8, -16, 0, 20]",
    "output": "generated_output : list = mul_n([2, 4, 0, -5],-4)",
    "io_inp": [
      2,
      4,
      0,
      -5
    ],
    "io_out": [
      -8,
      -16,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, -1, 0]\noutput : list = [-4, -5, -6]",
    "output": "generated_output : list = add_n(add_n(sort_des(sub_n(sort_asc([1, -1, 0]),1)),-5),1)",
    "io_inp": [
      1,
      -1,
      0
    ],
    "io_out": [
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sub_n(sort_asc(input),1)),-5),1)"
  },
  {
    "input": "input : list = [-3, 1, 2, -1, -2, 0]\noutput : list = [-3, -2, -1, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-3, 1, 2, -1, -2, 0]))",
    "io_inp": [
      -3,
      1,
      2,
      -1,
      -2,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [2, -1, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n([-4, 0, 3],1)))",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-4, 0, -2]\noutput : list = [8]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(sort_des([-4, 0, -2]),-2),1),5),3)",
    "io_inp": [
      -4,
      0,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(sort_des(input),-2),1),5),3)"
  },
  {
    "input": "input : list = [-4, 4, 1, -4, 1]\noutput : list = [-5, -45, -30, -5, -30]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(sub_n([-4, 4, 1, -4, 1],2),-3),5),5),-5)",
    "io_inp": [
      -4,
      4,
      1,
      -4,
      1
    ],
    "io_out": [
      -5,
      -45,
      -30,
      -5,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(sub_n(input,2),-3),5),5),-5)"
  },
  {
    "input": "input : list = [-2, -5, -1, 0, -3]\noutput : list = [-3, 0, -1, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, -1, 0, -3])",
    "io_inp": [
      -2,
      -5,
      -1,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      -1,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 1, -4, 0, -1]\noutput : list = [-1, -21, -25]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(take([-5, 1, -4, 0, -1],3),2),4),-3))",
    "io_inp": [
      -5,
      1,
      -4,
      0,
      -1
    ],
    "io_out": [
      -1,
      -21,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(take(input,3),2),4),-3))"
  },
  {
    "input": "input : list = [1, -2, -5, 1, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = reverse(reverse(drop([1, -2, -5, 1, 3, -2],4)))",
    "io_inp": [
      1,
      -2,
      -5,
      1,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,4)))"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(take([0, 1, -2],1))),-1),-5)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(take(input,1))),-1),-5)"
  },
  {
    "input": "input : list = [0, 0, -2, -2]\noutput : list = [-6, -6, -10]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(drop([0, 0, -2, -2],1),-5),-2))",
    "io_inp": [
      0,
      0,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(drop(input,1),-5),-2))"
  },
  {
    "input": "input : list = [-5, -3, 5, -2]\noutput : list = [40, 32, 0, 28]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(add_n([-5, -3, 5, -2],-3),3),4),-4),4)",
    "io_inp": [
      -5,
      -3,
      5,
      -2
    ],
    "io_out": [
      40,
      32,
      0,
      28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(add_n(input,-3),3),4),-4),4)"
  },
  {
    "input": "input : list = [3, 5, -5, 1, 1]\noutput : list = [-330, -180, -30, -30, 420]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(mul_n([3, 5, -5, 1, 1],5),3),3)),-5)",
    "io_inp": [
      3,
      5,
      -5,
      1,
      1
    ],
    "io_out": [
      -330,
      -180,
      -30,
      -30,
      420
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(mul_n(input,5),3),3)),-5)"
  },
  {
    "input": "input : list = [-3, 3, -3, 5, 4, -2]\noutput : list = [-2, 4, 5, -3, 3, -3]",
    "output": "generated_output : list = take(reverse([-3, 3, -3, 5, 4, -2]),11)",
    "io_inp": [
      -3,
      3,
      -3,
      5,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      5,
      -3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),11)"
  },
  {
    "input": "input : list = [3, 0, 2, 1, -5]\noutput : list = [48, 23, 18, 13, 8]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(add_n(sort_des([3, 0, 2, 1, -5]),-5)),-5),-2)",
    "io_inp": [
      3,
      0,
      2,
      1,
      -5
    ],
    "io_out": [
      48,
      23,
      18,
      13,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(add_n(sort_des(input),-5)),-5),-2)"
  },
  {
    "input": "input : list = [4, 1, -3, -4, -3, -5]\noutput : list = [-44, -14, 26, 26, 36, 46]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(mul_n([4, 1, -3, -4, -3, -5],-2)),5),4))",
    "io_inp": [
      4,
      1,
      -3,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -44,
      -14,
      26,
      26,
      36,
      46
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(mul_n(input,-2)),5),4))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [8, 8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(sort_asc([2, 2]),10))),4)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(sort_asc(input),10))),4)"
  },
  {
    "input": "input : list = [0, 5, 3, -1]\noutput : list = [-3, -2, 1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([0, 5, 3, -1],-3),5))",
    "io_inp": [
      0,
      5,
      3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-3),5))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sub_n([-3, 1],2)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-4, 4]",
    "output": "generated_output : list = take(reverse(take(mul_n([1, -1],4),4)),29)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(input,4),4)),29)"
  },
  {
    "input": "input : list = [0, 1, -4, 4, -2]\noutput : list = [2, -1, -2, -4, -6]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(sub_n([0, 1, -4, 4, -2],2)),32)))",
    "io_inp": [
      0,
      1,
      -4,
      4,
      -2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(sub_n(input,2)),32)))"
  },
  {
    "input": "input : list = [-5, -2, 5, 5]\noutput : list = [0, 0, -7, -10]",
    "output": "generated_output : list = sort_des(sub_n([-5, -2, 5, 5],5))",
    "io_inp": [
      -5,
      -2,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [6, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(sort_asc([-3, -3, 3]),3),-4),4))",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      6,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(sort_asc(input),3),-4),4))"
  },
  {
    "input": "input : list = [1, -5, 4, -5, -4]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sort_des([1, -5, 4, -5, -4]),2))))",
    "io_inp": [
      1,
      -5,
      4,
      -5,
      -4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sort_des(input),2))))"
  },
  {
    "input": "input : list = [-4, -4, -2, -1, 1, -2]\noutput : list = [3, 3, 5, 5, 6, 8]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(sub_n([-4, -4, -2, -1, 1, -2],-3),-4)),13),14)",
    "io_inp": [
      -4,
      -4,
      -2,
      -1,
      1,
      -2
    ],
    "io_out": [
      3,
      3,
      5,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(sub_n(input,-3),-4)),13),14)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(sub_n([0, 0],4)))))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [4, -1, 1, -1]\noutput : list = [5, 0, 2, 0]",
    "output": "generated_output : list = sub_n(sub_n([4, -1, 1, -1],1),-2)",
    "io_inp": [
      4,
      -1,
      1,
      -1
    ],
    "io_out": [
      5,
      0,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-2)"
  },
  {
    "input": "input : list = [0, -2, -5, 3]\noutput : list = [-1, -3, -6, 2]",
    "output": "generated_output : list = add_n([0, -2, -5, 3],-1)",
    "io_inp": [
      0,
      -2,
      -5,
      3
    ],
    "io_out": [
      -1,
      -3,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [28, -2]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(sub_n([-3, 3],3),9),-5)),-2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      28,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(sub_n(input,3),9),-5)),-2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n([3, -5],1)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, -2, -3, 4, -1]\noutput : list = [-3, -2, -1, 1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(reverse([1, -2, -3, 4, -1])))),27)",
    "io_inp": [
      1,
      -2,
      -3,
      4,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(reverse(input)))),27)"
  },
  {
    "input": "input : list = [-1, 2, -1, -5, 3]\noutput : list = [3, -5, -1, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, -1, -5, 3])",
    "io_inp": [
      -1,
      2,
      -1,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      -1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2, -2]\noutput : list = [0]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(take([-1, 2, -2],1)),9),-1),9)",
    "io_inp": [
      -1,
      2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(take(input,1)),9),-1),9)"
  },
  {
    "input": "input : list = [-3, -4, -1, 1, -2, -1]\noutput : list = [0]",
    "output": "generated_output : list = add_n(add_n(take(take(drop([-3, -4, -1, 1, -2, -1],4),6),1),-2),4)",
    "io_inp": [
      -3,
      -4,
      -1,
      1,
      -2,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(drop(input,4),6),1),-2),4)"
  },
  {
    "input": "input : list = [5, -1, 0]\noutput : list = [32, 12, 8]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(add_n([5, -1, 0],1),-2)),4),4)",
    "io_inp": [
      5,
      -1,
      0
    ],
    "io_out": [
      32,
      12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(add_n(input,1),-2)),4),4)"
  },
  {
    "input": "input : list = [3, -2, 4, -4, 4]\noutput : list = [-15, 10, -20, 20, -20]",
    "output": "generated_output : list = mul_n([3, -2, 4, -4, 4],-5)",
    "io_inp": [
      3,
      -2,
      4,
      -4,
      4
    ],
    "io_out": [
      -15,
      10,
      -20,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-12, -3]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc([4, 1]))),3),-1)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc(input))),3),-1)"
  },
  {
    "input": "input : list = [-3, -2, -4]\noutput : list = [-1, 0, -2]",
    "output": "generated_output : list = add_n(mul_n([-3, -2, -4],1),2)",
    "io_inp": [
      -3,
      -2,
      -4
    ],
    "io_out": [
      -1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),2)"
  },
  {
    "input": "input : list = [-4, -2, -2, 5, 2, 0]\noutput : list = [24, 16, 16, 8, 0, -12]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des([-4, -2, -2, 5, 2, 0]),2),-4),1))",
    "io_inp": [
      -4,
      -2,
      -2,
      5,
      2,
      0
    ],
    "io_out": [
      24,
      16,
      16,
      8,
      0,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des(input),2),-4),1))"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = sort_asc([-4, 3, -3])",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 2, 0, 4, 4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(drop([-4, 2, 0, 4, 4, -3],4))),13))",
    "io_inp": [
      -4,
      2,
      0,
      4,
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(drop(input,4))),13))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [32, 24]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n([-3, -4],-2),-1)),-4)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      32,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(input,-2),-1)),-4)"
  },
  {
    "input": "input : list = [-4, 2, 2, 1, 0, 5]\noutput : list = [1, 7, 7, 6, 5, 10]",
    "output": "generated_output : list = sub_n(reverse(reverse([-4, 2, 2, 1, 0, 5])),-5)",
    "io_inp": [
      -4,
      2,
      2,
      1,
      0,
      5
    ],
    "io_out": [
      1,
      7,
      7,
      6,
      5,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-5)"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [96, -12, -12]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_des([-1, 5, -1]),-3),1),3),-2)",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      96,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_des(input),-3),1),3),-2)"
  },
  {
    "input": "input : list = [-3, 5, 3, 0]\noutput : list = [11, 9, 6, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_des([-3, 5, 3, 0])),2)),-4)",
    "io_inp": [
      -3,
      5,
      3,
      0
    ],
    "io_out": [
      11,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_des(input)),2)),-4)"
  },
  {
    "input": "input : list = [-5, 3, -5, 5, 5]\noutput : list = [-8, 0, -8, 2, 2]",
    "output": "generated_output : list = add_n([-5, 3, -5, 5, 5],-3)",
    "io_inp": [
      -5,
      3,
      -5,
      5,
      5
    ],
    "io_out": [
      -8,
      0,
      -8,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [5, -3, -3]\noutput : list = [-3, -3, 5]",
    "output": "generated_output : list = sort_asc([5, -3, -3])",
    "io_inp": [
      5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [-133, -73, -28]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sub_n([-3, 4, 0],-5),-5),3),2))",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      -133,
      -73,
      -28
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sub_n(input,-5),-5),3),2))"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [60]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(take([-4, 0, 5],1),-3)),3),4)",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      60
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(take(input,1),-3)),3),4)"
  },
  {
    "input": "input : list = [-3, 1, -1, 1]\noutput : list = [-7, -3, -5, -3]",
    "output": "generated_output : list = take(add_n([-3, 1, -1, 1],-4),12)",
    "io_inp": [
      -3,
      1,
      -1,
      1
    ],
    "io_out": [
      -7,
      -3,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),12)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [125, 5]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(add_n([-5, 3],5)),-5),-3),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      125,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(add_n(input,5)),-5),-3),5)"
  },
  {
    "input": "input : list = [-5, -5, 4, -3]\noutput : list = [-16, 19, -26, -26]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(add_n([-5, -5, 4, -3],5),-5),5)),-1)",
    "io_inp": [
      -5,
      -5,
      4,
      -3
    ],
    "io_out": [
      -16,
      19,
      -26,
      -26
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(add_n(input,5),-5),5)),-1)"
  },
  {
    "input": "input : list = [4, -1, -3, 5]\noutput : list = [3, 8]",
    "output": "generated_output : list = take(drop(sub_n(take(reverse([4, -1, -3, 5]),15),-4),2),26)",
    "io_inp": [
      4,
      -1,
      -3,
      5
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(take(reverse(input),15),-4),2),26)"
  },
  {
    "input": "input : list = [0, -1, 1, 5, 0, -5]\noutput : list = [-4, 0, 1, 1, 2, 6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse([0, -1, 1, 5, 0, -5]),-1)),2)",
    "io_inp": [
      0,
      -1,
      1,
      5,
      0,
      -5
    ],
    "io_out": [
      -4,
      0,
      1,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(input),-1)),2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [61, -19]",
    "output": "generated_output : list = add_n(take(sub_n(mul_n(mul_n([3, -1],4),5),-5),8),-4)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      61,
      -19
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(mul_n(mul_n(input,4),5),-5),8),-4)"
  },
  {
    "input": "input : list = [5, -5, -5, 5, -2]\noutput : list = [-5, -5, -2, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(add_n(add_n([5, -5, -5, 5, -2],-2),2),1)))",
    "io_inp": [
      5,
      -5,
      -5,
      5,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(add_n(add_n(input,-2),2),1)))"
  },
  {
    "input": "input : list = [-5, -5, 4, -3, -1]\noutput : list = [-2, 0, 2, 7]",
    "output": "generated_output : list = take(sort_asc(sub_n(drop([-5, -5, 4, -3, -1],1),-3)),10)",
    "io_inp": [
      -5,
      -5,
      4,
      -3,
      -1
    ],
    "io_out": [
      -2,
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(drop(input,1),-3)),10)"
  },
  {
    "input": "input : list = [5, 5, 0, 4]\noutput : list = [20, 20, 16, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(reverse([5, 5, 0, 4]),-1))),-4)",
    "io_inp": [
      5,
      5,
      0,
      4
    ],
    "io_out": [
      20,
      20,
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(reverse(input),-1))),-4)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([1, 3]),3))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-5, 1, 4, -5, -4]\noutput : list = [-78, -78, -63, 12, 57]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n([-5, 1, 4, -5, -4],-5),-3),3))",
    "io_inp": [
      -5,
      1,
      4,
      -5,
      -4
    ],
    "io_out": [
      -78,
      -78,
      -63,
      12,
      57
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(input,-5),-3),3))"
  },
  {
    "input": "input : list = [-5, -4, -1, -5]\noutput : list = [-1, -4, -5, -5]",
    "output": "generated_output : list = sort_des(take(reverse([-5, -4, -1, -5]),12))",
    "io_inp": [
      -5,
      -4,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),12))"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [16, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(sort_des([0, 4, -1])),16),4))",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      16,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(sort_des(input)),16),4))"
  },
  {
    "input": "input : list = [5, -2, -1, -1]\noutput : list = [11, 9, 9, -3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(mul_n([5, -2, -1, -1],-2),-2),-2)),3)",
    "io_inp": [
      5,
      -2,
      -1,
      -1
    ],
    "io_out": [
      11,
      9,
      9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(mul_n(input,-2),-2),-2)),3)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(sort_des([3, 3]),-3),1)))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(sort_des(input),-3),1)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-35, -40]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(sub_n([3, 4],-4)),23)),-5)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -35,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(sub_n(input,-4)),23)),-5)"
  },
  {
    "input": "input : list = [-1, 4, 3, -3, -2, 3]\noutput : list = [-6, -1, -2, -8, -7, -2]",
    "output": "generated_output : list = add_n([-1, 4, 3, -3, -2, 3],-5)",
    "io_inp": [
      -1,
      4,
      3,
      -3,
      -2,
      3
    ],
    "io_out": [
      -6,
      -1,
      -2,
      -8,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -4, 3, -2, -1, 1]\noutput : list = [0, -2, -4, -5, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([-5, -4, 3, -2, -1, 1],1),2))",
    "io_inp": [
      -5,
      -4,
      3,
      -2,
      -1,
      1
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,1),2))"
  },
  {
    "input": "input : list = [4, 4, -4, 0, -1, 3]\noutput : list = [-15, 5, 0, 20, -20, -20]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n([4, 4, -4, 0, -1, 3],1),-5),-5))",
    "io_inp": [
      4,
      4,
      -4,
      0,
      -1,
      3
    ],
    "io_out": [
      -15,
      5,
      0,
      20,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(input,1),-5),-5))"
  },
  {
    "input": "input : list = [-5, 2, -5, 2, -4]\noutput : list = [-6, 1, -6, 1, -5]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(sub_n([-5, 2, -5, 2, -4],-4)),7)),5)",
    "io_inp": [
      -5,
      2,
      -5,
      2,
      -4
    ],
    "io_out": [
      -6,
      1,
      -6,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(sub_n(input,-4)),7)),5)"
  },
  {
    "input": "input : list = [1, 5, 3]\noutput : list = [6, 8, 10]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([1, 5, 3],5)))",
    "io_inp": [
      1,
      5,
      3
    ],
    "io_out": [
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,5)))"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [24, -48]",
    "output": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n([-2, 4, 3],-3),4),2)))",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      24,
      -48
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(mul_n(mul_n(input,-3),4),2)))"
  },
  {
    "input": "input : list = [4, 5, 5, 3]\noutput : list = [2, 2, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([4, 5, 5, 3])),-3)",
    "io_inp": [
      4,
      5,
      5,
      3
    ],
    "io_out": [
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),-3)"
  },
  {
    "input": "input : list = [2, 1, 5, 1]\noutput : list = [6, 3, 2, 2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sub_n([2, 1, 5, 1],1),-2))))",
    "io_inp": [
      2,
      1,
      5,
      1
    ],
    "io_out": [
      6,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sub_n(input,1),-2))))"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [22, 30, 34]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sub_n([0, -2, -3],5),-4),4),1),2)",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      22,
      30,
      34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sub_n(input,5),-4),4),1),2)"
  },
  {
    "input": "input : list = [-5, -4, 0]\noutput : list = [15, 12, 0]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(reverse([-5, -4, 0]),-3),9)))",
    "io_inp": [
      -5,
      -4,
      0
    ],
    "io_out": [
      15,
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(reverse(input),-3),9)))"
  },
  {
    "input": "input : list = [-5, -4, 5]\noutput : list = [6, -3, -4]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sub_n([-5, -4, 5],1)),25),-2),-4)",
    "io_inp": [
      -5,
      -4,
      5
    ],
    "io_out": [
      6,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sub_n(input,1)),25),-2),-4)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-200, -40, 80]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(mul_n([1, -2, 5],5))),-4),2)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -200,
      -40,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(mul_n(input,5))),-4),2)"
  },
  {
    "input": "input : list = [5, -2, -2, 5, 0, -1]\noutput : list = [18, 3, 0]",
    "output": "generated_output : list = drop(add_n(mul_n([5, -2, -2, 5, 0, -1],3),3),3)",
    "io_inp": [
      5,
      -2,
      -2,
      5,
      0,
      -1
    ],
    "io_out": [
      18,
      3,
      0
    ],
    "output_masked": "generated_output : list = drop(add_n(mul_n(input,3),3),3)"
  },
  {
    "input": "input : list = [5, 2, -2, -2]\noutput : list = [4, 1, -3, -3]",
    "output": "generated_output : list = take(sub_n([5, 2, -2, -2],1),12)",
    "io_inp": [
      5,
      2,
      -2,
      -2
    ],
    "io_out": [
      4,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),12)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [-12, 0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(sort_asc([0, -4, 2]),18),-3),-1))",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      -12,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(sort_asc(input),18),-3),-1))"
  },
  {
    "input": "input : list = [0, -4, 1, 4, -3, -2]\noutput : list = [-1, -5, 0, 3, -4, -3]",
    "output": "generated_output : list = sub_n([0, -4, 1, 4, -3, -2],1)",
    "io_inp": [
      0,
      -4,
      1,
      4,
      -3,
      -2
    ],
    "io_out": [
      -1,
      -5,
      0,
      3,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-1, -3, 0, 1, 0]\noutput : list = [-3, -1, 0, 0, 1]",
    "output": "generated_output : list = sort_asc([-1, -3, 0, 1, 0])",
    "io_inp": [
      -1,
      -3,
      0,
      1,
      0
    ],
    "io_out": [
      -3,
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, -5]\noutput : list = [22, -13]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(drop([0, 2, -5],1),-5),26),-3))",
    "io_inp": [
      0,
      2,
      -5
    ],
    "io_out": [
      22,
      -13
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(drop(input,1),-5),26),-3))"
  },
  {
    "input": "input : list = [-4, 3, 0, -3, 2, -2]\noutput : list = [1, 8, 5, 2, 7, 3]",
    "output": "generated_output : list = add_n(add_n([-4, 3, 0, -3, 2, -2],3),2)",
    "io_inp": [
      -4,
      3,
      0,
      -3,
      2,
      -2
    ],
    "io_out": [
      1,
      8,
      5,
      2,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),2)"
  },
  {
    "input": "input : list = [-4, 4, 4, -3, 1, -3]\noutput : list = [-11, -3, -3]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(take([-4, 4, 4, -3, 1, -3],3),5),3),-2),1)",
    "io_inp": [
      -4,
      4,
      4,
      -3,
      1,
      -3
    ],
    "io_out": [
      -11,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(take(input,3),5),3),-2),1)"
  },
  {
    "input": "input : list = [1, 1, 1, 4]\noutput : list = [10, 10]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(take([1, 1, 1, 4],2),17),2),5))",
    "io_inp": [
      1,
      1,
      1,
      4
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(take(input,2),17),2),5))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([3, 2])))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-4, -3, -3, -3, -5, 2]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take([-4, -3, -3, -3, -5, 2],2)",
    "io_inp": [
      -4,
      -3,
      -3,
      -3,
      -5,
      2
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [1, 5, 13]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n([1, 0, 3],-4)),-1),-1))",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      1,
      5,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n(input,-4)),-1),-1))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(drop(sort_des([1, 3]),1)),32))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(drop(sort_des(input),1)),32))"
  },
  {
    "input": "input : list = [-2, 1, -2, 0]\noutput : list = [1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n([-2, 1, -2, 0],4),-1)))",
    "io_inp": [
      -2,
      1,
      -2,
      0
    ],
    "io_out": [
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(input,4),-1)))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(sort_asc([1, 2])),-2),-4))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(sort_asc(input)),-2),-4))"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [-10, 4, 2]",
    "output": "generated_output : list = mul_n([-5, 2, 1],2)",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      -10,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, -2, -3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = drop([-5, -2, -3, 1],2)",
    "io_inp": [
      -5,
      -2,
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -1, 1, 0]\noutput : list = [2, 0, -1, -2]",
    "output": "generated_output : list = add_n(sort_des([3, -1, 1, 0]),-1)",
    "io_inp": [
      3,
      -1,
      1,
      0
    ],
    "io_out": [
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-5, 2, 3, 2]\noutput : list = [-13, -6, -6, -5]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(sort_asc([-5, 2, 3, 2]),3)),-5))",
    "io_inp": [
      -5,
      2,
      3,
      2
    ],
    "io_out": [
      -13,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(sort_asc(input),3)),-5))"
  },
  {
    "input": "input : list = [2, 4, -4, -2, 5, 5]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = sort_des(sort_des(drop([2, 4, -4, -2, 5, 5],3)))",
    "io_inp": [
      2,
      4,
      -4,
      -2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,3)))"
  },
  {
    "input": "input : list = [-3, 2, 1]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(sub_n([-3, 2, 1],-5),1),-1)))",
    "io_inp": [
      -3,
      2,
      1
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(sub_n(input,-5),1),-1)))"
  },
  {
    "input": "input : list = [-1, 4, -2, 1, -5, -4]\noutput : list = [5, -20, 10, -5, 25, 20]",
    "output": "generated_output : list = mul_n([-1, 4, -2, 1, -5, -4],-5)",
    "io_inp": [
      -1,
      4,
      -2,
      1,
      -5,
      -4
    ],
    "io_out": [
      5,
      -20,
      10,
      -5,
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 2, 2, 5, -1, 5]\noutput : list = [9, 3, 9, 6, 6, 0]",
    "output": "generated_output : list = add_n(reverse(add_n([-4, 2, 2, 5, -1, 5],3)),1)",
    "io_inp": [
      -4,
      2,
      2,
      5,
      -1,
      5
    ],
    "io_out": [
      9,
      3,
      9,
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(input,3)),1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(take(add_n(add_n([-4, -1],4),-2),24))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(input,4),-2),24))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-16, -8]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([0, -2],-2)),4)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,-2)),4)"
  },
  {
    "input": "input : list = [1, 5, -1, -2, 0, -3]\noutput : list = [4, 5, 6, 7, 8, 12]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(add_n([1, 5, -1, -2, 0, -3],-2),4),5)))",
    "io_inp": [
      1,
      5,
      -1,
      -2,
      0,
      -3
    ],
    "io_out": [
      4,
      5,
      6,
      7,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(add_n(input,-2),4),5)))"
  },
  {
    "input": "input : list = [2, -3, -5, -1]\noutput : list = [2]",
    "output": "generated_output : list = take(take([2, -3, -5, -1],1),14)",
    "io_inp": [
      2,
      -3,
      -5,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(input,1),14)"
  },
  {
    "input": "input : list = [-2, 1, -5, 4, 4]\noutput : list = [16, -8, 40, -32, -32]",
    "output": "generated_output : list = mul_n(mul_n([-2, 1, -5, 4, 4],4),-2)",
    "io_inp": [
      -2,
      1,
      -5,
      4,
      4
    ],
    "io_out": [
      16,
      -8,
      40,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),-2)"
  },
  {
    "input": "input : list = [-2, 0, -1]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(drop(sub_n([-2, 0, -1],5),2),-3)))",
    "io_inp": [
      -2,
      0,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(drop(sub_n(input,5),2),-3)))"
  },
  {
    "input": "input : list = [0, -4, -2]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(add_n([0, -4, -2],-1),-4)),5),42)",
    "io_inp": [
      0,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(add_n(input,-1),-4)),5),42)"
  },
  {
    "input": "input : list = [1, 4, 3, 2]\noutput : list = [-6, -7, -8]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(drop([1, 4, 3, 2],1)),-3),3),-4)",
    "io_inp": [
      1,
      4,
      3,
      2
    ],
    "io_out": [
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(drop(input,1)),-3),3),-4)"
  },
  {
    "input": "input : list = [-1, -4, 0, 0, -2]\noutput : list = [0, 0, -2]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(reverse([-1, -4, 0, 0, -2])),-2),3),-1)",
    "io_inp": [
      -1,
      -4,
      0,
      0,
      -2
    ],
    "io_out": [
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(reverse(input)),-2),3),-1)"
  },
  {
    "input": "input : list = [0, 2, -5, -3]\noutput : list = [8, 0]",
    "output": "generated_output : list = take(mul_n(take(sort_des(take([0, 2, -5, -3],2)),27),4),16)",
    "io_inp": [
      0,
      2,
      -5,
      -3
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(take(input,2)),27),4),16)"
  },
  {
    "input": "input : list = [-1, -3, -1, 2]\noutput : list = [-3, -9, -3, 6]",
    "output": "generated_output : list = mul_n([-1, -3, -1, 2],3)",
    "io_inp": [
      -1,
      -3,
      -1,
      2
    ],
    "io_out": [
      -3,
      -9,
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, 4, -4, 0, 1]\noutput : list = [-9, 0, -8, -4, -3]",
    "output": "generated_output : list = take(sub_n([-5, 4, -4, 0, 1],4),18)",
    "io_inp": [
      -5,
      4,
      -4,
      0,
      1
    ],
    "io_out": [
      -9,
      0,
      -8,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),18)"
  },
  {
    "input": "input : list = [3, -4, 0, -5, 2, -2]\noutput : list = [8, 6, 2, -2, -6, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(sort_asc([3, -4, 0, -5, 2, -2]),-1))),-2)",
    "io_inp": [
      3,
      -4,
      0,
      -5,
      2,
      -2
    ],
    "io_out": [
      8,
      6,
      2,
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(sort_asc(input),-1))),-2)"
  },
  {
    "input": "input : list = [-2, -1, -1, -5, 5]\noutput : list = [1, 1, 0]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(take([-2, -1, -1, -5, 5],3)),-2),37))",
    "io_inp": [
      -2,
      -1,
      -1,
      -5,
      5
    ],
    "io_out": [
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(take(input,3)),-2),37))"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(sort_des([0, -1, 3]),-1))),32)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(sort_des(input),-1))),32)"
  },
  {
    "input": "input : list = [-1, 1, 4, 3, -3, 4]\noutput : list = [-24, -28, -28]",
    "output": "generated_output : list = drop(sort_des(mul_n(reverse(add_n([-1, 1, 4, 3, -3, 4],3)),-4)),3)",
    "io_inp": [
      -1,
      1,
      4,
      3,
      -3,
      4
    ],
    "io_out": [
      -24,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = drop(sort_des(mul_n(reverse(add_n(input,3)),-4)),3)"
  },
  {
    "input": "input : list = [-1, -4, 1, -4]\noutput : list = [2, 0, -3, -3]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(sort_asc([-1, -4, 1, -4])),-1)),51)",
    "io_inp": [
      -1,
      -4,
      1,
      -4
    ],
    "io_out": [
      2,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(sort_asc(input)),-1)),51)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-5, -15]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(sort_des([-3, -1]),5),1),2),2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(sort_des(input),5),1),2),2)"
  },
  {
    "input": "input : list = [4, -4, -3, -4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(reverse([4, -4, -3, -4, -2]),2)",
    "io_inp": [
      4,
      -4,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),2)"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [-2, -2, 3]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sort_asc([-2, -2, 3])),21)))",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sort_asc(input)),21)))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-10, -15]",
    "output": "generated_output : list = mul_n([-2, -3],5)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [17, 11]",
    "output": "generated_output : list = add_n(add_n(sub_n(take(mul_n([5, 3],3),11),-3),2),-3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      17,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(take(mul_n(input,3),11),-3),2),-3)"
  },
  {
    "input": "input : list = [2, 5, -1, -1, 4]\noutput : list = [6, 15]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(take([2, 5, -1, -1, 4],2),3))),37)",
    "io_inp": [
      2,
      5,
      -1,
      -1,
      4
    ],
    "io_out": [
      6,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(take(input,2),3))),37)"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [-12]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(take([-3, 0, -2],1),3),-3)))",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(take(input,1),3),-3)))"
  },
  {
    "input": "input : list = [-5, -4, -4, -2, -1, 5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take([-5, -4, -4, -2, -1, 5],1),5)",
    "io_inp": [
      -5,
      -4,
      -4,
      -2,
      -1,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-1, 0, -1, -4, 3]\noutput : list = [-4, -1, -1, 0, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc([-1, 0, -1, -4, 3]))),38)",
    "io_inp": [
      -1,
      0,
      -1,
      -4,
      3
    ],
    "io_out": [
      -4,
      -1,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(input))),38)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take(take(take(take([-4, -3, 4],1),12),10),15))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(take(input,1),12),10),15))"
  },
  {
    "input": "input : list = [5, -3, -3, 5, -3]\noutput : list = [2, 2, -6, -6, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_asc([5, -3, -3, 5, -3]))),1),2)",
    "io_inp": [
      5,
      -3,
      -3,
      5,
      -3
    ],
    "io_out": [
      2,
      2,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_asc(input))),1),2)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [9, 18]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n([2, 1],3),-1)),-3)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      9,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(input,3),-1)),-3)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-5, -10]",
    "output": "generated_output : list = sub_n(take(sort_des(take(reverse([-5, 0]),8)),15),5)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(reverse(input),8)),15),5)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [2, 4]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(sort_des([3, 5])),4),1))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(sort_des(input)),4),1))"
  },
  {
    "input": "input : list = [3, 5, -4]\noutput : list = [-4, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 5, -4])",
    "io_inp": [
      3,
      5,
      -4
    ],
    "io_out": [
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-6, -4, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(reverse([-2, -1, -4])),-4)),-2)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(reverse(input)),-4)),-2)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(add_n([-3, 4],1),12))))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(add_n(input,1),12))))"
  },
  {
    "input": "input : list = [-4, 3, 5, -4, 0]\noutput : list = [1, 8, 10, 1, 5]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(add_n([-4, 3, 5, -4, 0],-2),-3),2),-3),-1)",
    "io_inp": [
      -4,
      3,
      5,
      -4,
      0
    ],
    "io_out": [
      1,
      8,
      10,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(add_n(input,-2),-3),2),-3),-1)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(sort_asc([-2, -2]),5)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),5)"
  },
  {
    "input": "input : list = [4, 3, 5, -5, 0]\noutput : list = [2, -3, 7, 5, 6]",
    "output": "generated_output : list = reverse(add_n([4, 3, 5, -5, 0],2))",
    "io_inp": [
      4,
      3,
      5,
      -5,
      0
    ],
    "io_out": [
      2,
      -3,
      7,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [2, -5, 3, -3, 5, 3]\noutput : list = [3, -4, 4, -2]",
    "output": "generated_output : list = sub_n(take(take([2, -5, 3, -3, 5, 3],4),26),-1)",
    "io_inp": [
      2,
      -5,
      3,
      -3,
      5,
      3
    ],
    "io_out": [
      3,
      -4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,4),26),-1)"
  },
  {
    "input": "input : list = [0, 4, 4, 1]\noutput : list = [0, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([0, 4, 4, 1])",
    "io_inp": [
      0,
      4,
      4,
      1
    ],
    "io_out": [
      0,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, -4, -4, -2, -5]\noutput : list = [1, 2, 2, 4, 6, 11]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(sub_n([5, 0, -4, -4, -2, -5],-1)))),5)",
    "io_inp": [
      5,
      0,
      -4,
      -4,
      -2,
      -5
    ],
    "io_out": [
      1,
      2,
      2,
      4,
      6,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(sub_n(input,-1)))),5)"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(mul_n(take([-4, -4, 4],1),-5),1)",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),-5),1)"
  },
  {
    "input": "input : list = [1, 5, 2, 1, 4]\noutput : list = [12, 3, 6, 15, 3]",
    "output": "generated_output : list = reverse(take(take(take(mul_n([1, 5, 2, 1, 4],3),10),24),6))",
    "io_inp": [
      1,
      5,
      2,
      1,
      4
    ],
    "io_out": [
      12,
      3,
      6,
      15,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(mul_n(input,3),10),24),6))"
  },
  {
    "input": "input : list = [-3, 0, 3, -1, 0, -5]\noutput : list = [-1, 2, 5, 1, 2, -3]",
    "output": "generated_output : list = add_n([-3, 0, 3, -1, 0, -5],2)",
    "io_inp": [
      -3,
      0,
      3,
      -1,
      0,
      -5
    ],
    "io_out": [
      -1,
      2,
      5,
      1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [0, -5, 5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = take(sort_des(drop([0, -5, 5, -4],2)),11)",
    "io_inp": [
      0,
      -5,
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,2)),11)"
  },
  {
    "input": "input : list = [2, 4, 2, 3]\noutput : list = [4, 3, 2, 2]",
    "output": "generated_output : list = reverse(sort_asc([2, 4, 2, 3]))",
    "io_inp": [
      2,
      4,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 1, 0, -3]\noutput : list = [-9, -3, -4, -7]",
    "output": "generated_output : list = sub_n(add_n([-5, 1, 0, -3],-5),-1)",
    "io_inp": [
      -5,
      1,
      0,
      -3
    ],
    "io_out": [
      -9,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),-1)"
  },
  {
    "input": "input : list = [-5, 2, 0, 0, -4, -5]\noutput : list = [12]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(sub_n([-5, 2, 0, 0, -4, -5],-4)),-4),3),1)",
    "io_inp": [
      -5,
      2,
      0,
      0,
      -4,
      -5
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(sub_n(input,-4)),-4),3),1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(reverse([-3, 4]))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, -2, 3, -4]\noutput : list = [-7, 0, -5]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(drop([5, -2, 3, -4],1)),-3)))",
    "io_inp": [
      5,
      -2,
      3,
      -4
    ],
    "io_out": [
      -7,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(drop(input,1)),-3)))"
  },
  {
    "input": "input : list = [0, -4, -5]\noutput : list = [-5, -4, 0]",
    "output": "generated_output : list = sort_asc(reverse([0, -4, -5]))",
    "io_inp": [
      0,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [3, 2, -4, 3, -1]\noutput : list = [-21, -6, 9, 14, 14]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n([3, 2, -4, 3, -1],5))),3),-2)",
    "io_inp": [
      3,
      2,
      -4,
      3,
      -1
    ],
    "io_out": [
      -21,
      -6,
      9,
      14,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n(input,5))),3),-2)"
  },
  {
    "input": "input : list = [-3, 0, 1, -5, -5]\noutput : list = [-5, -5, -3, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(sort_asc([-3, 0, 1, -5, -5]),15))))",
    "io_inp": [
      -3,
      0,
      1,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(sort_asc(input),15))))"
  },
  {
    "input": "input : list = [5, 5, -1]\noutput : list = [-12, 60, 60]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sort_asc([5, 5, -1]))),-4),-3)",
    "io_inp": [
      5,
      5,
      -1
    ],
    "io_out": [
      -12,
      60,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(sort_asc(input))),-4),-3)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [-5, 5, 1]",
    "output": "generated_output : list = reverse(reverse([-5, 5, 1]))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      -5,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des([-1, -4])",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 2, 4, 4, 2]\noutput : list = [4, 4, 2]",
    "output": "generated_output : list = drop([-4, 2, 4, 4, 2],2)",
    "io_inp": [
      -4,
      2,
      4,
      4,
      2
    ],
    "io_out": [
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -1, -1, 1]\noutput : list = [-7, -1]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_des(take([5, -1, -1, 1],2)),4),-2))",
    "io_inp": [
      5,
      -1,
      -1,
      1
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_des(take(input,2)),4),-2))"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [1, -1, -7]",
    "output": "generated_output : list = add_n(add_n(sort_des(sub_n(add_n([3, -5, 1],-4),-3)),2),-3)",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sub_n(add_n(input,-4),-3)),2),-3)"
  },
  {
    "input": "input : list = [-5, -5, 5, 2]\noutput : list = [-5, -5, 2, 5]",
    "output": "generated_output : list = sort_asc([-5, -5, 5, 2])",
    "io_inp": [
      -5,
      -5,
      5,
      2
    ],
    "io_out": [
      -5,
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2, 0, 4, 1]\noutput : list = [10, 0, -5, -10, -20]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(mul_n([2, -2, 0, 4, 1],-5)),23)))",
    "io_inp": [
      2,
      -2,
      0,
      4,
      1
    ],
    "io_out": [
      10,
      0,
      -5,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(mul_n(input,-5)),23)))"
  },
  {
    "input": "input : list = [-3, 2, 3, 4]\noutput : list = [31, 11, 7, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(sub_n([-3, 2, 3, 4],4),-4)),5),2)",
    "io_inp": [
      -3,
      2,
      3,
      4
    ],
    "io_out": [
      31,
      11,
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(sub_n(input,4),-4)),5),2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(sub_n([-4, 1],2)),-3),8),-2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(sub_n(input,2)),-3),8),-2)"
  },
  {
    "input": "input : list = [5, 0, 0, 0, 4]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take([5, 0, 0, 0, 4],1))",
    "io_inp": [
      5,
      0,
      0,
      0,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-9, -6]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(mul_n([2, 5],-1)),-4)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(mul_n(input,-1)),-4)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-30, -70]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(sub_n([-1, -5],2),5),1)),2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -30,
      -70
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(sub_n(input,2),5),1)),2)"
  },
  {
    "input": "input : list = [1, 3, 1, -3, -1, -3]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(drop(sort_des([1, 3, 1, -3, -1, -3]),3))),5)",
    "io_inp": [
      1,
      3,
      1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(drop(sort_des(input),3))),5)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-16, 16]",
    "output": "generated_output : list = reverse(reverse(mul_n([4, -4],-4)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -16,
      16
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(drop(add_n(add_n(add_n([-5, 5],-1),4),-4),1))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(add_n(add_n(input,-1),4),-4),1))"
  },
  {
    "input": "input : list = [3, -4, 3, 5, 5]\noutput : list = [-4, 3, 5, 5]",
    "output": "generated_output : list = take(drop([3, -4, 3, 5, 5],1),6)",
    "io_inp": [
      3,
      -4,
      3,
      5,
      5
    ],
    "io_out": [
      -4,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),6)"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(add_n([-3, 2, 4],-5)),3)))",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(add_n(input,-5)),3)))"
  },
  {
    "input": "input : list = [3, -2, 2]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(reverse([3, -2, 2]),6),1)))",
    "io_inp": [
      3,
      -2,
      2
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(reverse(input),6),1)))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([1, 0]))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [5, 9]",
    "output": "generated_output : list = add_n([0, 4],5)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, -1, 4]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = sort_asc([0, -1, 4])",
    "io_inp": [
      0,
      -1,
      4
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, 2, -5, 2]\noutput : list = [-4, -4, -2, 3, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des([-5, -3, 2, -5, 2])),31),-1)",
    "io_inp": [
      -5,
      -3,
      2,
      -5,
      2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(input)),31),-1)"
  },
  {
    "input": "input : list = [4, 3, 1, -4]\noutput : list = [8, 7, 5, 0]",
    "output": "generated_output : list = add_n([4, 3, 1, -4],4)",
    "io_inp": [
      4,
      3,
      1,
      -4
    ],
    "io_out": [
      8,
      7,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, 3, -3, -3, -4, 1]\noutput : list = [16, -4, 20, 20, 24, 4]",
    "output": "generated_output : list = take(mul_n(add_n([-2, 3, -3, -3, -4, 1],-2),-4),12)",
    "io_inp": [
      -2,
      3,
      -3,
      -3,
      -4,
      1
    ],
    "io_out": [
      16,
      -4,
      20,
      20,
      24,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-2),-4),12)"
  },
  {
    "input": "input : list = [-3, 2, 4, 4, 0, -2]\noutput : list = [-5, 1, 13, 13, 7, -8]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(reverse([-3, 2, 4, 4, 0, -2]),7),3),5),4)",
    "io_inp": [
      -3,
      2,
      4,
      4,
      0,
      -2
    ],
    "io_out": [
      -5,
      1,
      13,
      13,
      7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(reverse(input),7),3),5),4)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des([-4, -5])",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, 2]\noutput : list = [-125, -105, -5]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(add_n([-4, -3, 2],-2),-4),-5),5),15)",
    "io_inp": [
      -4,
      -3,
      2
    ],
    "io_out": [
      -125,
      -105,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(add_n(input,-2),-4),-5),5),15)"
  },
  {
    "input": "input : list = [1, 2, -5, -3, -4, 3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 2, -5, -3, -4, 3],1)",
    "io_inp": [
      1,
      2,
      -5,
      -3,
      -4,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 5, 0, 5, -4, 1]\noutput : list = [23, 23, 3, -2, -22, -22]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(sort_des([-4, 5, 0, 5, -4, 1]),5),2)))",
    "io_inp": [
      -4,
      5,
      0,
      5,
      -4,
      1
    ],
    "io_out": [
      23,
      23,
      3,
      -2,
      -22,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(sort_des(input),5),2)))"
  },
  {
    "input": "input : list = [4, 2, -5, 1, 1, 3]\noutput : list = [-4, -3, -2, -1, -1, 5]",
    "output": "generated_output : list = mul_n(sort_des([4, 2, -5, 1, 1, 3]),-1)",
    "io_inp": [
      4,
      2,
      -5,
      1,
      1,
      3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-1, -2, -2, 4]\noutput : list = [14, -6, -10, -10]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(mul_n([-1, -2, -2, 4],4)),2)))",
    "io_inp": [
      -1,
      -2,
      -2,
      4
    ],
    "io_out": [
      14,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(mul_n(input,4)),2)))"
  },
  {
    "input": "input : list = [0, 3, 3]\noutput : list = [0, -6, -6]",
    "output": "generated_output : list = mul_n([0, 3, 3],-2)",
    "io_inp": [
      0,
      3,
      3
    ],
    "io_out": [
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, 5, 3, -4, 5, -2]\noutput : list = [-6, -4, -1, 1, 3, 3]",
    "output": "generated_output : list = sub_n(sort_asc([1, 5, 3, -4, 5, -2]),2)",
    "io_inp": [
      1,
      5,
      3,
      -4,
      5,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-5, -7]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(mul_n([3, 2],-2))),1))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(mul_n(input,-2))),1))"
  },
  {
    "input": "input : list = [-1, 4, -3, -3, -5]\noutput : list = [2, -3, -5, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n([-1, 4, -3, -3, -5],-1),20),3))",
    "io_inp": [
      -1,
      4,
      -3,
      -3,
      -5
    ],
    "io_out": [
      2,
      -3,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(input,-1),20),3))"
  },
  {
    "input": "input : list = [3, 4, -2, 2, -5, 1]\noutput : list = [-297, -342, -72, -252, 63, -207]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sub_n([3, 4, -2, 2, -5, 1],-3),-5),3),3),3)",
    "io_inp": [
      3,
      4,
      -2,
      2,
      -5,
      1
    ],
    "io_out": [
      -297,
      -342,
      -72,
      -252,
      63,
      -207
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sub_n(input,-3),-5),3),3),3)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des([-4, 0])",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 2, -5, 3]\noutput : list = [6, -6, -8, -10, -14]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(add_n([1, 5, 2, -5, 3],-1),1),-2),-4))",
    "io_inp": [
      1,
      5,
      2,
      -5,
      3
    ],
    "io_out": [
      6,
      -6,
      -8,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(add_n(input,-1),1),-2),-4))"
  },
  {
    "input": "input : list = [4, -3, 0, -1]\noutput : list = [8, -6, 0, -2]",
    "output": "generated_output : list = mul_n([4, -3, 0, -1],2)",
    "io_inp": [
      4,
      -3,
      0,
      -1
    ],
    "io_out": [
      8,
      -6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, 0, 5, 3, 3]\noutput : list = [-4, 11, 11, 21]",
    "output": "generated_output : list = drop(reverse(add_n(sort_des(mul_n([0, 0, 5, 3, 3],5)),-4)),1)",
    "io_inp": [
      0,
      0,
      5,
      3,
      3
    ],
    "io_out": [
      -4,
      11,
      11,
      21
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(sort_des(mul_n(input,5)),-4)),1)"
  },
  {
    "input": "input : list = [-5, -4, 3, -5, 4, 2]\noutput : list = [25, 25, 21, -3, -7, -11]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(reverse([-5, -4, 3, -5, 4, 2]))),-4),-5)",
    "io_inp": [
      -5,
      -4,
      3,
      -5,
      4,
      2
    ],
    "io_out": [
      25,
      25,
      21,
      -3,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(reverse(input))),-4),-5)"
  },
  {
    "input": "input : list = [3, 3, -5, 3, -3]\noutput : list = [-1, 1, 7, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(reverse([3, 3, -5, 3, -3])),-2)),-2)",
    "io_inp": [
      3,
      3,
      -5,
      3,
      -3
    ],
    "io_out": [
      -1,
      1,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(reverse(input)),-2)),-2)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-5, -10, -10]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des([-5, -5, 0]),1),12),4)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(input),1),12),4)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(drop([5, 1, 3],1),5),-3),2))",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(drop(input,1),5),-3),2))"
  },
  {
    "input": "input : list = [-2, -2, -3, 3, -3, 5]\noutput : list = [-9, -9, -7, -7, 3, 7]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(reverse([-2, -2, -3, 3, -3, 5])),2),-2),-1)",
    "io_inp": [
      -2,
      -2,
      -3,
      3,
      -3,
      5
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -7,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(reverse(input)),2),-2),-1)"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [1, 0, -3]",
    "output": "generated_output : list = sub_n([0, -1, -4],-1)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, -2, 3, -4]\noutput : list = [-18, -12, 3, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(sort_asc([4, -2, 3, -4])),-2),3))",
    "io_inp": [
      4,
      -2,
      3,
      -4
    ],
    "io_out": [
      -18,
      -12,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(sort_asc(input)),-2),3))"
  },
  {
    "input": "input : list = [-3, -2, -3, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des(drop(sort_asc([-3, -2, -3, 4]),2))))",
    "io_inp": [
      -3,
      -2,
      -3,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(drop(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [-4, 2, 4, 5, -1]\noutput : list = [-6, -3, 0, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-4, 2, 4, 5, -1])),2)",
    "io_inp": [
      -4,
      2,
      4,
      5,
      -1
    ],
    "io_out": [
      -6,
      -3,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-5, 1, 2, 4]\noutput : list = [30, 0, -5, -15]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(sub_n([-5, 1, 2, 4],5),4)),4),-5)",
    "io_inp": [
      -5,
      1,
      2,
      4
    ],
    "io_out": [
      30,
      0,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(sub_n(input,5),4)),4),-5)"
  },
  {
    "input": "input : list = [-5, 5, 4]\noutput : list = [-10, -8, 10]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(mul_n([-5, 5, 4],-2))),28),29)",
    "io_inp": [
      -5,
      5,
      4
    ],
    "io_out": [
      -10,
      -8,
      10
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(mul_n(input,-2))),28),29)"
  },
  {
    "input": "input : list = [5, 0, -3, 1]\noutput : list = [0, -3, 1]",
    "output": "generated_output : list = drop([5, 0, -3, 1],1)",
    "io_inp": [
      5,
      0,
      -3,
      1
    ],
    "io_out": [
      0,
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -2, -3, 5]\noutput : list = [-12, 60, 72, 84, 108]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(sub_n([-1, -5, -2, -3, 5],4),-4))),3)",
    "io_inp": [
      -1,
      -5,
      -2,
      -3,
      5
    ],
    "io_out": [
      -12,
      60,
      72,
      84,
      108
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(sub_n(input,4),-4))),3)"
  },
  {
    "input": "input : list = [2, -3, -1, 3]\noutput : list = [6, 2, -4, -6]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_des([2, -3, -1, 3])))),-2)",
    "io_inp": [
      2,
      -3,
      -1,
      3
    ],
    "io_out": [
      6,
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [1, 2, 1, -4, -3]\noutput : list = [-3, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des(drop([1, 2, 1, -4, -3],2)),4)",
    "io_inp": [
      1,
      2,
      1,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,2)),4)"
  },
  {
    "input": "input : list = [-2, -4, -3, 5]\noutput : list = [21, 0, -3, -6]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse([-2, -4, -3, 5]),2)),3)",
    "io_inp": [
      -2,
      -4,
      -3,
      5
    ],
    "io_out": [
      21,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(input),2)),3)"
  },
  {
    "input": "input : list = [3, -1, 0, 1, 1, -4]\noutput : list = [0, -4, -3, -2, -2, -7]",
    "output": "generated_output : list = sub_n([3, -1, 0, 1, 1, -4],3)",
    "io_inp": [
      3,
      -1,
      0,
      1,
      1,
      -4
    ],
    "io_out": [
      0,
      -4,
      -3,
      -2,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, 3, -2, 1, 5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc(drop(add_n(reverse(take([-5, 3, -2, 1, 5, -3],3)),2),1))",
    "io_inp": [
      -5,
      3,
      -2,
      1,
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(reverse(take(input,3)),2),1))"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [20, 20, 4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(mul_n([5, 5, 1],4),6))))",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      20,
      20,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(mul_n(input,4),6))))"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [8, -20, -24]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(sort_asc([2, 3, -5]),-3)),-4))",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      8,
      -20,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(sort_asc(input),-3)),-4))"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [-11, -9, -7]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(sub_n([0, -2, -4],2))),-2),3)",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      -11,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(sub_n(input,2))),-2),3)"
  },
  {
    "input": "input : list = [2, 3, -4, -1, -4, -5]\noutput : list = [-5, -4, -1, -4, 3, 2]",
    "output": "generated_output : list = reverse([2, 3, -4, -1, -4, -5])",
    "io_inp": [
      2,
      3,
      -4,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      -4,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, 1, 4, 2]\noutput : list = [9, 8, 6, 5, 4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des([0, 5, 1, 4, 2]),-4)))",
    "io_inp": [
      0,
      5,
      1,
      4,
      2
    ],
    "io_out": [
      9,
      8,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(input),-4)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [16, -48]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(mul_n([-1, 3],-4)),4),1))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      16,
      -48
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(mul_n(input,-4)),4),1))"
  },
  {
    "input": "input : list = [-5, -3, 4, -1, -4]\noutput : list = [-12, 0, 20, -8, -16]",
    "output": "generated_output : list = reverse(add_n(mul_n([-5, -3, 4, -1, -4],4),4))",
    "io_inp": [
      -5,
      -3,
      4,
      -1,
      -4
    ],
    "io_out": [
      -12,
      0,
      20,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,4),4))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = mul_n([-1, -2],3)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [4, -5, 2, 4]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(take(add_n(add_n(drop([4, -5, 2, 4],2),5),-4),28),36)",
    "io_inp": [
      4,
      -5,
      2,
      4
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(drop(input,2),5),-4),28),36)"
  },
  {
    "input": "input : list = [1, 1, -1, 2, -3, -1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take([1, 1, -1, 2, -3, -1],2),5))))",
    "io_inp": [
      1,
      1,
      -1,
      2,
      -3,
      -1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take(input,2),5))))"
  },
  {
    "input": "input : list = [-5, -4, -3, 1, -2]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(add_n(mul_n(sub_n(take([-5, -4, -3, 1, -2],1),-4),1),-5),3)",
    "io_inp": [
      -5,
      -4,
      -3,
      1,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sub_n(take(input,1),-4),1),-5),3)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [9, 6]",
    "output": "generated_output : list = take(sort_des(take(take(sub_n([2, 5],-4),3),9)),30)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(sub_n(input,-4),3),9)),30)"
  },
  {
    "input": "input : list = [0, -3, -3, -3, 3, -3]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take([0, -3, -3, -3, 3, -3],2),5),4))",
    "io_inp": [
      0,
      -3,
      -3,
      -3,
      3,
      -3
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(input,2),5),4))"
  },
  {
    "input": "input : list = [-1, -3, 5, 3, 0]\noutput : list = [45, 15, 0, -45, -75]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(mul_n([-1, -3, 5, 3, 0],-3))),5))",
    "io_inp": [
      -1,
      -3,
      5,
      3,
      0
    ],
    "io_out": [
      45,
      15,
      0,
      -45,
      -75
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(mul_n(input,-3))),5))"
  },
  {
    "input": "input : list = [1, -1, 0, 5, -5, 3]\noutput : list = [-40, -30, -20, -15, -10, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(sub_n([1, -1, 0, 5, -5, 3],-5),27)),2),-5)",
    "io_inp": [
      1,
      -1,
      0,
      5,
      -5,
      3
    ],
    "io_out": [
      -40,
      -30,
      -20,
      -15,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(sub_n(input,-5),27)),2),-5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(sort_asc([0, 1]),-2))),18)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(sort_asc(input),-2))),18)"
  },
  {
    "input": "input : list = [0, -2, -5, 1]\noutput : list = [0, -2, -5, 1]",
    "output": "generated_output : list = reverse(reverse([0, -2, -5, 1]))",
    "io_inp": [
      0,
      -2,
      -5,
      1
    ],
    "io_out": [
      0,
      -2,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-4, 2, 2, 3, -3]\noutput : list = [1, 2, 7, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n([-4, 2, 2, 3, -3],-5),1))))",
    "io_inp": [
      -4,
      2,
      2,
      3,
      -3
    ],
    "io_out": [
      1,
      2,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n(input,-5),1))))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-20, -100]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(sort_des([-5, -1]),5),25),4))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -20,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(sort_des(input),5),25),4))"
  },
  {
    "input": "input : list = [2, -1, -4, -3]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(drop([2, -1, -4, -3],2),5),1)),24)",
    "io_inp": [
      2,
      -1,
      -4,
      -3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(drop(input,2),5),1)),24)"
  },
  {
    "input": "input : list = [4, 3, 0, 3, 5, 3]\noutput : list = [0, -3, -3, -3, -4, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(sort_des([4, 3, 0, 3, 5, 3]),14))),-1)",
    "io_inp": [
      4,
      3,
      0,
      3,
      5,
      3
    ],
    "io_out": [
      0,
      -3,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(sort_des(input),14))),-1)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [6, 10, 12]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sort_des([4, 2, -2])),5),-4),4)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      6,
      10,
      12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sort_des(input)),5),-4),4)"
  },
  {
    "input": "input : list = [5, -1, -5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = reverse(sub_n(take([5, -1, -5, 1],2),4))",
    "io_inp": [
      5,
      -1,
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,2),4))"
  },
  {
    "input": "input : list = [2, -5, 4, 5, 3]\noutput : list = [25, -10, -15, -20, -25]",
    "output": "generated_output : list = mul_n(reverse(sort_des([2, -5, 4, 5, 3])),-5)",
    "io_inp": [
      2,
      -5,
      4,
      5,
      3
    ],
    "io_out": [
      25,
      -10,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [-1, 1, -4, -3]\noutput : list = [-4, -3, -1, 1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(reverse([-1, 1, -4, -3])),-5),5))",
    "io_inp": [
      -1,
      1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(reverse(input)),-5),5))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(sub_n([-1, -5],-5)))),3)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(sub_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [1, -3, 4, 4, -4]\noutput : list = [14, 14, -1, -21, -26]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(mul_n([1, -3, 4, 4, -4],5),1)),5))",
    "io_inp": [
      1,
      -3,
      4,
      4,
      -4
    ],
    "io_out": [
      14,
      14,
      -1,
      -21,
      -26
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(mul_n(input,5),1)),5))"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [12, -4, -12]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(reverse([-1, 5, 1])),-2)),4)",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      12,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(reverse(input)),-2)),4)"
  },
  {
    "input": "input : list = [3, -5, -2]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(reverse([3, -5, -2]))),2),2)",
    "io_inp": [
      3,
      -5,
      -2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(reverse(input))),2),2)"
  },
  {
    "input": "input : list = [5, 3, 3]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = add_n([5, 3, 3],-1)",
    "io_inp": [
      5,
      3,
      3
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [1, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, 1])",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [10, 10]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(sort_des([2, 2])),5)),14)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(sort_des(input)),5)),14)"
  },
  {
    "input": "input : list = [-2, -4, 5, -1, 5, -2]\noutput : list = [0, 0, -6, -7, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n([-2, -4, 5, -1, 5, -2],5))",
    "io_inp": [
      -2,
      -4,
      5,
      -1,
      5,
      -2
    ],
    "io_out": [
      0,
      0,
      -6,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [5, 5, -5, 1, -4, 5]\noutput : list = [3, 4, 9, 13, 13, 13]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(sort_asc([5, 5, -5, 1, -4, 5]),-3),2)),3)",
    "io_inp": [
      5,
      5,
      -5,
      1,
      -4,
      5
    ],
    "io_out": [
      3,
      4,
      9,
      13,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(sort_asc(input),-3),2)),3)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-120, -120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(sub_n([4, 4],-2),-1),-4),-2),-3)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -120,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(sub_n(input,-2),-1),-4),-2),-3)"
  },
  {
    "input": "input : list = [-2, 0, 4, 5, -5]\noutput : list = [-25, -10, 0, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n([-2, 0, 4, 5, -5],-3),25),-3),5))",
    "io_inp": [
      -2,
      0,
      4,
      5,
      -5
    ],
    "io_out": [
      -25,
      -10,
      0,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n(input,-3),25),-3),5))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [8]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(sub_n([-2, 1],-5),1))),5)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(sub_n(input,-5),1))),5)"
  },
  {
    "input": "input : list = [-4, 5, -3, -2]\noutput : list = [8, -10, 6, 4]",
    "output": "generated_output : list = mul_n([-4, 5, -3, -2],-2)",
    "io_inp": [
      -4,
      5,
      -3,
      -2
    ],
    "io_out": [
      8,
      -10,
      6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 5, -4, 4, -2]\noutput : list = [2, 5, -4, 4, -2]",
    "output": "generated_output : list = take(mul_n([2, 5, -4, 4, -2],1),5)",
    "io_inp": [
      2,
      5,
      -4,
      4,
      -2
    ],
    "io_out": [
      2,
      5,
      -4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,1),5)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [9]",
    "output": "generated_output : list = reverse(mul_n(add_n(drop(reverse([-2, 3]),1),-1),-3))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(drop(reverse(input),1),-1),-3))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [3, 5]",
    "output": "generated_output : list = reverse([5, 3])",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2, 1, 1]\noutput : list = [1, 1, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, 1, 1])",
    "io_inp": [
      -1,
      2,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -1, -2, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(take([0, -1, -2, 5],1),-4)),35))",
    "io_inp": [
      0,
      -1,
      -2,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(take(input,1),-4)),35))"
  },
  {
    "input": "input : list = [-5, 1, -3, 0, 1, -3]\noutput : list = [-3, 1, 0, -3, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, -3, 0, 1, -3])",
    "io_inp": [
      -5,
      1,
      -3,
      0,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      0,
      -3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, -4, 4]\noutput : list = [-10, -10, -8, 8]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(reverse([5, 5, -4, 4])),2),26),-1)",
    "io_inp": [
      5,
      5,
      -4,
      4
    ],
    "io_out": [
      -10,
      -10,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(reverse(input)),2),26),-1)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [-9, 3, 15]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n([0, 3, -3],4),-4)),-1))",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      -9,
      3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n(input,4),-4)),-1))"
  },
  {
    "input": "input : list = [5, -1, 0, 0]\noutput : list = [-9, -3, -4, -4]",
    "output": "generated_output : list = take(sub_n(mul_n(reverse(reverse([5, -1, 0, 0])),-1),4),44)",
    "io_inp": [
      5,
      -1,
      0,
      0
    ],
    "io_out": [
      -9,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(reverse(reverse(input)),-1),4),44)"
  },
  {
    "input": "input : list = [4, -3, 2, 3, 0]\noutput : list = [-16, -4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(drop([4, -3, 2, 3, 0],3),-2),3),-4))",
    "io_inp": [
      4,
      -3,
      2,
      3,
      0
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(drop(input,3),-2),3),-4))"
  },
  {
    "input": "input : list = [-3, -5, 1, 4]\noutput : list = [18, 12, 0, -9]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(reverse([-3, -5, 1, 4]),-1),14)),-3)",
    "io_inp": [
      -3,
      -5,
      1,
      4
    ],
    "io_out": [
      18,
      12,
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(reverse(input),-1),14)),-3)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [-14, -6, -2]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([1, -1, 5],-2),-4))",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      -14,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,-2),-4))"
  },
  {
    "input": "input : list = [2, 0, 0, 1, -3]\noutput : list = [-7, -9, -9, -8, -12]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(sub_n([2, 0, 0, 1, -3],3),-4),4),24),2)",
    "io_inp": [
      2,
      0,
      0,
      1,
      -3
    ],
    "io_out": [
      -7,
      -9,
      -9,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(sub_n(input,3),-4),4),24),2)"
  },
  {
    "input": "input : list = [-4, -3, -3, 0, 5, -3]\noutput : list = [5, 0, -3, -3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-4, -3, -3, 0, 5, -3])))",
    "io_inp": [
      -4,
      -3,
      -3,
      0,
      5,
      -3
    ],
    "io_out": [
      5,
      0,
      -3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, -3, 3, -4]\noutput : list = [4, -3]",
    "output": "generated_output : list = take([4, -3, 3, -4],2)",
    "io_inp": [
      4,
      -3,
      3,
      -4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-50, -35]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(add_n([-5, -2],-3),-2)),5))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -50,
      -35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(add_n(input,-3),-2)),5))"
  },
  {
    "input": "input : list = [-4, 5, -4, -5]\noutput : list = [-112, 32, 32, 48]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_des([-4, 5, -4, -5]),-5),-3),-4),4)",
    "io_inp": [
      -4,
      5,
      -4,
      -5
    ],
    "io_out": [
      -112,
      32,
      32,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_des(input),-5),-3),-4),4)"
  },
  {
    "input": "input : list = [-3, 2, -5, -2, -2]\noutput : list = [-15, 10, -25, -10, -10]",
    "output": "generated_output : list = mul_n([-3, 2, -5, -2, -2],5)",
    "io_inp": [
      -3,
      2,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -15,
      10,
      -25,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [2, -2, -10]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(sort_des([-4, 2, 0]),3),2),21),2)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      2,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(sort_des(input),3),2),21),2)"
  },
  {
    "input": "input : list = [1, -1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(take([1, -1, -2],1),-2))))",
    "io_inp": [
      1,
      -1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(take(input,1),-2))))"
  },
  {
    "input": "input : list = [-1, 3, 5, -5, 4]\noutput : list = [-4, 0, 2, -8, 1]",
    "output": "generated_output : list = add_n([-1, 3, 5, -5, 4],-3)",
    "io_inp": [
      -1,
      3,
      5,
      -5,
      4
    ],
    "io_out": [
      -4,
      0,
      2,
      -8,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -3, 4]\noutput : list = [-36, -12, 48]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(mul_n([-1, -3, 4],-4)))),-3)",
    "io_inp": [
      -1,
      -3,
      4
    ],
    "io_out": [
      -36,
      -12,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(mul_n(input,-4)))),-3)"
  },
  {
    "input": "input : list = [2, -4, 1, 4, 2]\noutput : list = [-5, 0, -6]",
    "output": "generated_output : list = drop(sub_n(reverse(take(mul_n([2, -4, 1, 4, 2],-1),9)),4),2)",
    "io_inp": [
      2,
      -4,
      1,
      4,
      2
    ],
    "io_out": [
      -5,
      0,
      -6
    ],
    "output_masked": "generated_output : list = drop(sub_n(reverse(take(mul_n(input,-1),9)),4),2)"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [20, 4, 12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n([0, -1, 1],-2),-2),5)),-4)",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      20,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n(input,-2),-2),5)),-4)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-6, -5, -4]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(sort_asc([1, 0, -1])),13),5))",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(sort_asc(input)),13),5))"
  },
  {
    "input": "input : list = [-3, 3, 1, -5, 3, -3]\noutput : list = [-5, -3, -3, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([-3, 3, 1, -5, 3, -3])))",
    "io_inp": [
      -3,
      3,
      1,
      -5,
      3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, 2, 4, -4]\noutput : list = [4, 4, 2, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(sub_n([4, 2, 4, -4],4)),-4)),42)",
    "io_inp": [
      4,
      2,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(sub_n(input,4)),-4)),42)"
  },
  {
    "input": "input : list = [-4, 0, -3, -3, 4]\noutput : list = [-28, 7, 7, -8, 12]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n([-4, 0, -3, -3, 4],1)),-5),-3)",
    "io_inp": [
      -4,
      0,
      -3,
      -3,
      4
    ],
    "io_out": [
      -28,
      7,
      7,
      -8,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(input,1)),-5),-3)"
  },
  {
    "input": "input : list = [2, -2, 5, 0, 5]\noutput : list = [5, 0, 5]",
    "output": "generated_output : list = drop([2, -2, 5, 0, 5],2)",
    "io_inp": [
      2,
      -2,
      5,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [12]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n([-2, 0],-5),2),1))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(input,-5),2),1))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-25, -20]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(add_n([4, 3],1)),-5)))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -25,
      -20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(add_n(input,1)),-5)))"
  },
  {
    "input": "input : list = [4, 3, 3]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n(sort_asc([4, 3, 3]),-3)),1),-2)",
    "io_inp": [
      4,
      3,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(sort_asc(input),-3)),1),-2)"
  },
  {
    "input": "input : list = [-2, 0, -1, 3, 1, 1]\noutput : list = [-20, -14, -17, -5, -11, -11]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n([-2, 0, -1, 3, 1, 1],-4),3),1),-2),1)",
    "io_inp": [
      -2,
      0,
      -1,
      3,
      1,
      1
    ],
    "io_out": [
      -20,
      -14,
      -17,
      -5,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n(input,-4),3),1),-2),1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-8, -12]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(sort_asc([-2, -1]),4),-4)),7)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -8,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(sort_asc(input),4),-4)),7)"
  },
  {
    "input": "input : list = [0, -5, -1, -2, -4, 0]\noutput : list = [-1, 0, 2, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(reverse([0, -5, -1, -2, -4, 0]),2)),2))",
    "io_inp": [
      0,
      -5,
      -1,
      -2,
      -4,
      0
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(reverse(input),2)),2))"
  },
  {
    "input": "input : list = [2, -5, 1, 3, 2]\noutput : list = [2, -5]",
    "output": "generated_output : list = take([2, -5, 1, 3, 2],2)",
    "io_inp": [
      2,
      -5,
      1,
      3,
      2
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 1, -3, -3]\noutput : list = [6, 6, 6, -6]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(sort_asc([-3, 1, -3, -3]),-1),3),3),17)",
    "io_inp": [
      -3,
      1,
      -3,
      -3
    ],
    "io_out": [
      6,
      6,
      6,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(sort_asc(input),-1),3),3),17)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = sort_asc(reverse([-5, -3, 2]))",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, -1, 5, 0, -4, 0]\noutput : list = [8, 8, 3, 3, 2, -1]",
    "output": "generated_output : list = add_n(sort_des([5, -1, 5, 0, -4, 0]),3)",
    "io_inp": [
      5,
      -1,
      5,
      0,
      -4,
      0
    ],
    "io_out": [
      8,
      8,
      3,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-1, 5, 0, 1]\noutput : list = [0, 1, 2, 6]",
    "output": "generated_output : list = add_n(take(sort_asc([-1, 5, 0, 1]),19),1)",
    "io_inp": [
      -1,
      5,
      0,
      1
    ],
    "io_out": [
      0,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),19),1)"
  },
  {
    "input": "input : list = [-4, -2, -4, 2, -4]\noutput : list = [5, 1, -1, -1, -1]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc([-4, -2, -4, 2, -4]),-1)),2)",
    "io_inp": [
      -4,
      -2,
      -4,
      2,
      -4
    ],
    "io_out": [
      5,
      1,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(input),-1)),2)"
  },
  {
    "input": "input : list = [2, -3, -2, 4, -2, 3]\noutput : list = [8, 6, 4, -4, -4, -6]",
    "output": "generated_output : list = sort_des(take(sort_des(take(mul_n([2, -3, -2, 4, -2, 3],2),13)),28))",
    "io_inp": [
      2,
      -3,
      -2,
      4,
      -2,
      3
    ],
    "io_out": [
      8,
      6,
      4,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(mul_n(input,2),13)),28))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [13, 13]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(reverse([4, 4])),22),5),-4)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(reverse(input)),22),5),-4)"
  },
  {
    "input": "input : list = [3, -5, -4, 3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(take([3, -5, -4, 3],1)),-2)))",
    "io_inp": [
      3,
      -5,
      -4,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(take(input,1)),-2)))"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [6, 4]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(drop([1, -1, -3],1),-2),12),5),-4)",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(drop(input,1),-2),12),5),-4)"
  },
  {
    "input": "input : list = [-2, -1, 2, 3, -1, 0]\noutput : list = [-4, -3, 0, 1, -3, -2]",
    "output": "generated_output : list = add_n([-2, -1, 2, 3, -1, 0],-2)",
    "io_inp": [
      -2,
      -1,
      2,
      3,
      -1,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      1,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, 5, -5, 5, 1, -5]\noutput : list = [-2, 4, 8, -2, 8]",
    "output": "generated_output : list = reverse(drop(add_n([3, 5, -5, 5, 1, -5],3),1))",
    "io_inp": [
      3,
      5,
      -5,
      5,
      1,
      -5
    ],
    "io_out": [
      -2,
      4,
      8,
      -2,
      8
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(input,3),1))"
  },
  {
    "input": "input : list = [-4, 0, 2, -5, 2, -3]\noutput : list = [2, 2, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc([-4, 0, 2, -5, 2, -3]),15))))",
    "io_inp": [
      -4,
      0,
      2,
      -5,
      2,
      -3
    ],
    "io_out": [
      2,
      2,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc(input),15))))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [12, 6]",
    "output": "generated_output : list = mul_n(sort_asc([-2, -4]),-3)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-2, 0, 5, -2, 4, -4]\noutput : list = [-4, -2, -2, 0, 4, 5]",
    "output": "generated_output : list = sort_asc([-2, 0, 5, -2, 4, -4])",
    "io_inp": [
      -2,
      0,
      5,
      -2,
      4,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, -5, -4]\noutput : list = [3, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc([3, -3, -5, -4])),16)))",
    "io_inp": [
      3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(sort_asc(input)),16)))"
  },
  {
    "input": "input : list = [-2, 3, 4, 0]\noutput : list = [-11, -9, -3, 1]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(sort_asc([-2, 3, 4, 0])),-2),-1),2)",
    "io_inp": [
      -2,
      3,
      4,
      0
    ],
    "io_out": [
      -11,
      -9,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(sort_asc(input)),-2),-1),2)"
  },
  {
    "input": "input : list = [-3, 2, -5, 2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(drop([-3, 2, -5, 2, 0],3)))))",
    "io_inp": [
      -3,
      2,
      -5,
      2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(drop(input,3)))))"
  },
  {
    "input": "input : list = [3, 3, 2, 4]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(drop([3, 3, 2, 4],2),1))))",
    "io_inp": [
      3,
      3,
      2,
      4
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(drop(input,2),1))))"
  },
  {
    "input": "input : list = [-2, -1, -2, 0, 0]\noutput : list = [-2, -2, -1, 0, 0]",
    "output": "generated_output : list = take(take(take(take(sort_asc([-2, -1, -2, 0, 0]),13),10),6),6)",
    "io_inp": [
      -2,
      -1,
      -2,
      0,
      0
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(take(sort_asc(input),13),10),6),6)"
  },
  {
    "input": "input : list = [-3, 4, -3, 1, -2, -2]\noutput : list = [7, 0, 0]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(take([-3, 4, -3, 1, -2, -2],3))),-3))",
    "io_inp": [
      -3,
      4,
      -3,
      1,
      -2,
      -2
    ],
    "io_out": [
      7,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(take(input,3))),-3))"
  },
  {
    "input": "input : list = [-3, -4, -5, -2, -3]\noutput : list = [2, -1, -1, -4, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des([-3, -4, -5, -2, -3]),3)),3),1)",
    "io_inp": [
      -3,
      -4,
      -5,
      -2,
      -3
    ],
    "io_out": [
      2,
      -1,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des(input),3)),3),1)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [4, 20, 28]",
    "output": "generated_output : list = mul_n(sub_n(reverse([3, 1, -3]),-4),4)",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      4,
      20,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-4),4)"
  },
  {
    "input": "input : list = [-3, -1, 4, 5]\noutput : list = [-8, -10]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(drop([-3, -1, 4, 5],2)),19)),-2)",
    "io_inp": [
      -3,
      -1,
      4,
      5
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(drop(input,2)),19)),-2)"
  },
  {
    "input": "input : list = [5, 4, 5, -5]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(take([5, 4, 5, -5],1))),32),1)",
    "io_inp": [
      5,
      4,
      5,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(take(input,1))),32),1)"
  },
  {
    "input": "input : list = [1, 3, 2, 5, 3]\noutput : list = [-2, 0, -1, 2, 0]",
    "output": "generated_output : list = sub_n([1, 3, 2, 5, 3],3)",
    "io_inp": [
      1,
      3,
      2,
      5,
      3
    ],
    "io_out": [
      -2,
      0,
      -1,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 1, 4, 1, 2]\noutput : list = [6, 4, 3, 3, 3]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(sort_asc([1, 1, 4, 1, 2]),1),-3)),29)",
    "io_inp": [
      1,
      1,
      4,
      1,
      2
    ],
    "io_out": [
      6,
      4,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(sort_asc(input),1),-3)),29)"
  },
  {
    "input": "input : list = [3, -3, -5, 0]\noutput : list = [-16, -12, -6, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n([3, -3, -5, 0],-5)),-2),2))",
    "io_inp": [
      3,
      -3,
      -5,
      0
    ],
    "io_out": [
      -16,
      -12,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(add_n(input,-5)),-2),2))"
  },
  {
    "input": "input : list = [-2, -1, 0, -3, 5, -3]\noutput : list = [0, -1, -2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(take(take([-2, -1, 0, -3, 5, -3],4),24)),43))",
    "io_inp": [
      -2,
      -1,
      0,
      -3,
      5,
      -3
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(take(input,4),24)),43))"
  },
  {
    "input": "input : list = [-3, -3, -3, 5, 5]\noutput : list = [5, 5, -3, -3, -3]",
    "output": "generated_output : list = sort_des([-3, -3, -3, 5, 5])",
    "io_inp": [
      -3,
      -3,
      -3,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([1, 2])))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, 1, -4, 1, 3]\noutput : list = [10, 7, 2, 7, 9]",
    "output": "generated_output : list = sub_n(sub_n([4, 1, -4, 1, 3],-2),-4)",
    "io_inp": [
      4,
      1,
      -4,
      1,
      3
    ],
    "io_out": [
      10,
      7,
      2,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-4)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = reverse(sort_des([-2, -1, 3]))",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sub_n([0, -5],1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -5, -2, 2]\noutput : list = [-23]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(take([-3, -5, -2, 2],1),3),-2),-2),-1)",
    "io_inp": [
      -3,
      -5,
      -2,
      2
    ],
    "io_out": [
      -23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(take(input,1),3),-2),-2),-1)"
  },
  {
    "input": "input : list = [1, -4, -5, 4, -4, 2]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(take([1, -4, -5, 4, -4, 2],2),13)",
    "io_inp": [
      1,
      -4,
      -5,
      4,
      -4,
      2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,2),13)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take(drop(sort_asc([3, 1]),1),18))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(sort_asc(input),1),18))"
  },
  {
    "input": "input : list = [4, -1, -2, 1]\noutput : list = [4, 1, -1, -2]",
    "output": "generated_output : list = sort_des([4, -1, -2, 1])",
    "io_inp": [
      4,
      -1,
      -2,
      1
    ],
    "io_out": [
      4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, 2]\noutput : list = [-45, -30, -15]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(add_n([-4, -1, 2],5),5),7),5),5)",
    "io_inp": [
      -4,
      -1,
      2
    ],
    "io_out": [
      -45,
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(add_n(input,5),5),7),5),5)"
  },
  {
    "input": "input : list = [2, -5, 5, 1]\noutput : list = [1, 5, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 5, 1])",
    "io_inp": [
      2,
      -5,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 2, -4, -3, -3, 0]\noutput : list = [-3, -2, 4]",
    "output": "generated_output : list = mul_n(take([3, 2, -4, -3, -3, 0],3),-1)",
    "io_inp": [
      3,
      2,
      -4,
      -3,
      -3,
      0
    ],
    "io_out": [
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-1)"
  },
  {
    "input": "input : list = [1, 1, -1]\noutput : list = [-3, -3, -11]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(add_n([1, 1, -1],-3),4))),-5)",
    "io_inp": [
      1,
      1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(add_n(input,-3),4))),-5)"
  },
  {
    "input": "input : list = [-3, -2, 5, -5]\noutput : list = [-5, -3, -2, 5]",
    "output": "generated_output : list = sort_asc([-3, -2, 5, -5])",
    "io_inp": [
      -3,
      -2,
      5,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse([2, 5])",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, 5, 0, 3, -1]\noutput : list = [5, 4, 4, 3]",
    "output": "generated_output : list = take(drop(add_n(sort_des(sort_des([0, 1, 5, 0, 3, -1])),4),2),52)",
    "io_inp": [
      0,
      1,
      5,
      0,
      3,
      -1
    ],
    "io_out": [
      5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(drop(add_n(sort_des(sort_des(input)),4),2),52)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-15, 15]",
    "output": "generated_output : list = take(mul_n(reverse(take(reverse([-5, 5]),8)),3),18)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -15,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(reverse(input),8)),3),18)"
  },
  {
    "input": "input : list = [4, -2, -1, -1]\noutput : list = [-2, -1, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, -2, -1, -1]))",
    "io_inp": [
      4,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, -3, 3, -4]\noutput : list = [9, 7, 3, 2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(add_n([1, -3, 3, -4],4))),-2))",
    "io_inp": [
      1,
      -3,
      3,
      -4
    ],
    "io_out": [
      9,
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(add_n(input,4))),-2))"
  },
  {
    "input": "input : list = [-1, 4, -5, -1, 0, 5]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(take([-1, 4, -5, -1, 0, 5],1)),-5)))",
    "io_inp": [
      -1,
      4,
      -5,
      -1,
      0,
      5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(take(input,1)),-5)))"
  },
  {
    "input": "input : list = [5, 0, -2, 0]\noutput : list = [-2, 0, 0, 5]",
    "output": "generated_output : list = sort_asc([5, 0, -2, 0])",
    "io_inp": [
      5,
      0,
      -2,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, 5]\noutput : list = [-6, 1, 1]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_des(add_n([-2, 5, 5],-4)))))",
    "io_inp": [
      -2,
      5,
      5
    ],
    "io_out": [
      -6,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_des(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [2, -5, 0, -4, 1, 4]\noutput : list = [5, 3, 2, 1, -3, -4]",
    "output": "generated_output : list = add_n(sort_des([2, -5, 0, -4, 1, 4]),1)",
    "io_inp": [
      2,
      -5,
      0,
      -4,
      1,
      4
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [3, 5, 0, 1, 1]\noutput : list = [3, 5, 0, 1, 1]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(sub_n([3, 5, 0, 1, 1],-2),-1),-1),1),26)",
    "io_inp": [
      3,
      5,
      0,
      1,
      1
    ],
    "io_out": [
      3,
      5,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(sub_n(input,-2),-1),-1),1),26)"
  },
  {
    "input": "input : list = [-4, -3, -4, 5, 1, 2]\noutput : list = [8, 8, 6, -2, -4, -10]",
    "output": "generated_output : list = sort_des(mul_n([-4, -3, -4, 5, 1, 2],-2))",
    "io_inp": [
      -4,
      -3,
      -4,
      5,
      1,
      2
    ],
    "io_out": [
      8,
      8,
      6,
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [12, 42]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(sub_n([-3, 2],-1),4),14),3),2)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      12,
      42
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(sub_n(input,-1),4),14),3),2)"
  },
  {
    "input": "input : list = [-3, -5, 3, -2, 1, -3]\noutput : list = [-14, -10, -10, -8, -2, 2]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([-3, -5, 3, -2, 1, -3]),2),-4)",
    "io_inp": [
      -3,
      -5,
      3,
      -2,
      1,
      -3
    ],
    "io_out": [
      -14,
      -10,
      -10,
      -8,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),2),-4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [13, 9]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(reverse([0, 4]),-5)),4),30)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      13,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(reverse(input),-5)),4),30)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [0, 15]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(mul_n([5, 0],3)),3)),3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(mul_n(input,3)),3)),3)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n([2, 1],3),3)))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(input,3),3)))"
  },
  {
    "input": "input : list = [1, -2, -4, 4, 1, 4]\noutput : list = [-2, 2, 8, 8, 14, 14]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n([1, -2, -4, 4, 1, 4],-4),10),-1),2))",
    "io_inp": [
      1,
      -2,
      -4,
      4,
      1,
      4
    ],
    "io_out": [
      -2,
      2,
      8,
      8,
      14,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(sub_n(input,-4),10),-1),2))"
  },
  {
    "input": "input : list = [1, 2, 0, -1, 3]\noutput : list = [15, 16, 14, 13, 17]",
    "output": "generated_output : list = sub_n(add_n(sub_n([1, 2, 0, -1, 3],-4),5),-5)",
    "io_inp": [
      1,
      2,
      0,
      -1,
      3
    ],
    "io_out": [
      15,
      16,
      14,
      13,
      17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-4),5),-5)"
  },
  {
    "input": "input : list = [-2, 1, 4, -2, -1, 0]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse(drop([-2, 1, 4, -2, -1, 0],3)),-2))",
    "io_inp": [
      -2,
      1,
      4,
      -2,
      -1,
      0
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(drop(input,3)),-2))"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [5, 5, -1]",
    "output": "generated_output : list = sort_des([-1, 5, 5])",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1, -5, -4]\noutput : list = [-3, -3, -6, -7]",
    "output": "generated_output : list = take(sort_des(reverse(take(add_n([-1, -1, -5, -4],-2),21))),11)",
    "io_inp": [
      -1,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(add_n(input,-2),21))),11)"
  },
  {
    "input": "input : list = [3, 5, 3, 0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(drop([3, 5, 3, 0, -2],3)))",
    "io_inp": [
      3,
      5,
      3,
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,3)))"
  },
  {
    "input": "input : list = [1, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = drop([1, 1, 1],1)",
    "io_inp": [
      1,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 5, 2, 0, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take([-3, 5, 2, 0, -1],1)),1),-2)",
    "io_inp": [
      -3,
      5,
      2,
      0,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(input,1)),1),-2)"
  },
  {
    "input": "input : list = [1, -1, 0, -2, -5, -3]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(reverse(drop(reverse(mul_n([1, -1, 0, -2, -5, -3],3)),5)),-4)",
    "io_inp": [
      1,
      -1,
      0,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(reverse(mul_n(input,3)),5)),-4)"
  },
  {
    "input": "input : list = [5, -1, 2, -5, -3, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = add_n(reverse(take([5, -1, 2, -5, -3, 1],2)),-4)",
    "io_inp": [
      5,
      -1,
      2,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,2)),-4)"
  },
  {
    "input": "input : list = [0, -3, -4, -2, 0, 5]\noutput : list = [0, 4, 8, 16, 16, 36]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(add_n([0, -3, -4, -2, 0, 5],4),4))))",
    "io_inp": [
      0,
      -3,
      -4,
      -2,
      0,
      5
    ],
    "io_out": [
      0,
      4,
      8,
      16,
      16,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(add_n(input,4),4))))"
  },
  {
    "input": "input : list = [-5, 4, 0, -1]\noutput : list = [15, -12, 0, 3]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(mul_n([-5, 4, 0, -1],-3),-2))),2)",
    "io_inp": [
      -5,
      4,
      0,
      -1
    ],
    "io_out": [
      15,
      -12,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(mul_n(input,-3),-2))),2)"
  },
  {
    "input": "input : list = [-2, -2, -5, 2]\noutput : list = [-17, -9, -9, -3]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(add_n([-2, -2, -5, 2],4)),-2),5))",
    "io_inp": [
      -2,
      -2,
      -5,
      2
    ],
    "io_out": [
      -17,
      -9,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(add_n(input,4)),-2),5))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [17, 1]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(mul_n([-3, 1],-4),12)),-5))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      17,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(mul_n(input,-4),12)),-5))"
  },
  {
    "input": "input : list = [1, -2, 1, 2]\noutput : list = [16, -2, -2, -8]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(mul_n([1, -2, 1, 2],-3)),-2),15),2)",
    "io_inp": [
      1,
      -2,
      1,
      2
    ],
    "io_out": [
      16,
      -2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(mul_n(input,-3)),-2),15),2)"
  },
  {
    "input": "input : list = [-3, 1, 1]\noutput : list = [-3, 1, 1]",
    "output": "generated_output : list = mul_n([-3, 1, 1],1)",
    "io_inp": [
      -3,
      1,
      1
    ],
    "io_out": [
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -4, 3, -1, 0, 2]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = take(drop(take(add_n(drop([1, -4, 3, -1, 0, 2],2),3),17),1),9)",
    "io_inp": [
      1,
      -4,
      3,
      -1,
      0,
      2
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(drop(take(add_n(drop(input,2),3),17),1),9)"
  },
  {
    "input": "input : list = [-4, 2, -2, -4]\noutput : list = [-10, -8, -4, -10]",
    "output": "generated_output : list = sub_n(add_n(reverse(sub_n(sub_n([-4, 2, -2, -4],1),-1)),-1),5)",
    "io_inp": [
      -4,
      2,
      -2,
      -4
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sub_n(sub_n(input,1),-1)),-1),5)"
  },
  {
    "input": "input : list = [4, 1, 4, -3]\noutput : list = [-23, -23, -8, 12]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([4, 1, 4, -3],-5)),3)",
    "io_inp": [
      4,
      1,
      4,
      -3
    ],
    "io_out": [
      -23,
      -23,
      -8,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,-5)),3)"
  },
  {
    "input": "input : list = [-3, -2, -4, -1, 2, -2]\noutput : list = [-5, -1, -4, -7, -5]",
    "output": "generated_output : list = take(add_n(take(take(reverse([-3, -2, -4, -1, 2, -2]),18),5),-3),31)",
    "io_inp": [
      -3,
      -2,
      -4,
      -1,
      2,
      -2
    ],
    "io_out": [
      -5,
      -1,
      -4,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(reverse(input),18),5),-3),31)"
  },
  {
    "input": "input : list = [-4, -5, 1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take(drop(reverse(take(sub_n([-4, -5, 1, -1],-3),19)),3),11)",
    "io_inp": [
      -4,
      -5,
      1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(drop(reverse(take(sub_n(input,-3),19)),3),11)"
  },
  {
    "input": "input : list = [1, -4, 0, -2]\noutput : list = [5, -20, 0, -10]",
    "output": "generated_output : list = mul_n([1, -4, 0, -2],5)",
    "io_inp": [
      1,
      -4,
      0,
      -2
    ],
    "io_out": [
      5,
      -20,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [21, -15, 25]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse([-4, 5, -5]),-4)),5)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      21,
      -15,
      25
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(input),-4)),5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [1, -3]",
    "output": "generated_output : list = mul_n(take(sub_n([3, -1],2),6),1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,2),6),1)"
  },
  {
    "input": "input : list = [-4, 3, 2, -4, 4, 1]\noutput : list = [-10, -10, -5, -4, -3]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(reverse([-4, 3, 2, -4, 4, 1])),5),-2),4)",
    "io_inp": [
      -4,
      3,
      2,
      -4,
      4,
      1
    ],
    "io_out": [
      -10,
      -10,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(reverse(input)),5),-2),4)"
  },
  {
    "input": "input : list = [-3, 5, -3, -1, -2, 3]\noutput : list = [-1, -3, 5, -3]",
    "output": "generated_output : list = reverse(take([-3, 5, -3, -1, -2, 3],4))",
    "io_inp": [
      -3,
      5,
      -3,
      -1,
      -2,
      3
    ],
    "io_out": [
      -1,
      -3,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,4))"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [-8, 2, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(mul_n([4, -3, 2],2),-1),3)))",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      -8,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(mul_n(input,2),-1),3)))"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [-2, -1, -8]",
    "output": "generated_output : list = sub_n([1, 2, -5],3)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      -2,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [1, -5]",
    "output": "generated_output : list = sub_n(add_n(reverse([-4, 2]),-4),-3)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-4),-3)"
  },
  {
    "input": "input : list = [-4, 5, 2, 4, 4, -1]\noutput : list = [-4, -1, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, 2, 4, 4, -1])",
    "io_inp": [
      -4,
      5,
      2,
      4,
      4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2, -2, -4, -4, -4]\noutput : list = [4, 4, 4, 8, 16]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(drop([0, 2, -2, -4, -4, -4],1),4)),2),4)",
    "io_inp": [
      0,
      2,
      -2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      4,
      8,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(drop(input,1),4)),2),4)"
  },
  {
    "input": "input : list = [4, -1, -3, -1]\noutput : list = [16, -4, -12, -4]",
    "output": "generated_output : list = mul_n([4, -1, -3, -1],4)",
    "io_inp": [
      4,
      -1,
      -3,
      -1
    ],
    "io_out": [
      16,
      -4,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, 0, -3, -2]\noutput : list = [15, 10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(drop([1, 0, -3, -2],2))),-5)",
    "io_inp": [
      1,
      0,
      -3,
      -2
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(drop(input,2))),-5)"
  },
  {
    "input": "input : list = [-1, -3, -2, 3, 3, 0]\noutput : list = [-3]",
    "output": "generated_output : list = drop(add_n([-1, -3, -2, 3, 3, 0],-3),5)",
    "io_inp": [
      -1,
      -3,
      -2,
      3,
      3,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-3),5)"
  },
  {
    "input": "input : list = [-3, 0, -2, 5]\noutput : list = [-96]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(take([-3, 0, -2, 5],1),-4),2),11),-4)",
    "io_inp": [
      -3,
      0,
      -2,
      5
    ],
    "io_out": [
      -96
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(take(input,1),-4),2),11),-4)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 1, 5],1)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, -4, -2, 1, 5]\noutput : list = [-31, -31, -19, -1, -1, 23]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(mul_n([1, -4, -4, -2, 1, 5],-3),-5),-2),-3))",
    "io_inp": [
      1,
      -4,
      -4,
      -2,
      1,
      5
    ],
    "io_out": [
      -31,
      -31,
      -19,
      -1,
      -1,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(mul_n(input,-3),-5),-2),-3))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(sort_asc([1, -1]),3)),1))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(sort_asc(input),3)),1))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(add_n([0, -2],-1))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [1, 1, 0]\noutput : list = [0, 1, 1]",
    "output": "generated_output : list = reverse([1, 1, 0])",
    "io_inp": [
      1,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, -2, -4, -4, -4]\noutput : list = [3, 7, 1, -1, -1, -1]",
    "output": "generated_output : list = add_n([0, 4, -2, -4, -4, -4],3)",
    "io_inp": [
      0,
      4,
      -2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      3,
      7,
      1,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [9]",
    "output": "generated_output : list = add_n(reverse(take(reverse(reverse([5, -5])),1)),4)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(reverse(input)),1)),4)"
  },
  {
    "input": "input : list = [-2, -3, 4, -4, -3, 4]\noutput : list = [-16, -16, 8, 12, 12, 16]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_des([-2, -3, 4, -4, -3, 4])),-4)))",
    "io_inp": [
      -2,
      -3,
      4,
      -4,
      -3,
      4
    ],
    "io_out": [
      -16,
      -16,
      8,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-4, -4, 4, -5]\noutput : list = [-20, 25]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(drop([-4, -4, 4, -5],2))),25),-5)",
    "io_inp": [
      -4,
      -4,
      4,
      -5
    ],
    "io_out": [
      -20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(drop(input,2))),25),-5)"
  },
  {
    "input": "input : list = [1, 2, 1, 3]\noutput : list = [45, 30, 15, 15]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n([1, 2, 1, 3],1)),-5),5),-3)",
    "io_inp": [
      1,
      2,
      1,
      3
    ],
    "io_out": [
      45,
      30,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n(input,1)),-5),5),-3)"
  },
  {
    "input": "input : list = [-1, 5, -3, -3, -5]\noutput : list = [5, -1, -3, -3, -5]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des([-1, 5, -3, -3, -5]))),1)",
    "io_inp": [
      -1,
      5,
      -3,
      -3,
      -5
    ],
    "io_out": [
      5,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(input))),1)"
  },
  {
    "input": "input : list = [-3, -2, -1, 2, -5, -5]\noutput : list = [-2, -5, -6, -7, -9, -9]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-3, -2, -1, 2, -5, -5]),2),-2)",
    "io_inp": [
      -3,
      -2,
      -1,
      2,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -5,
      -6,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),2),-2)"
  },
  {
    "input": "input : list = [3, -4, 2, 3]\noutput : list = [-12, 6, 9, 9]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(reverse([3, -4, 2, 3]))),3))",
    "io_inp": [
      3,
      -4,
      2,
      3
    ],
    "io_out": [
      -12,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(reverse(input))),3))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [0, 7]",
    "output": "generated_output : list = sub_n(take(add_n(take(add_n([-2, 5],3),4),3),7),4)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(add_n(input,3),4),3),7),4)"
  },
  {
    "input": "input : list = [1, 5, 0, 1]\noutput : list = [0, 4, 4, 20]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(reverse([1, 5, 0, 1]),4),5)),4)",
    "io_inp": [
      1,
      5,
      0,
      1
    ],
    "io_out": [
      0,
      4,
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(reverse(input),4),5)),4)"
  },
  {
    "input": "input : list = [4, -1, 0, -5, 5]\noutput : list = [-5, -1, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n([4, -1, 0, -5, 5],3),3)),32))",
    "io_inp": [
      4,
      -1,
      0,
      -5,
      5
    ],
    "io_out": [
      -5,
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n(input,3),3)),32))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n([0, 1],1))),3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(input,1))),3)"
  },
  {
    "input": "input : list = [4, -2, 0, -5, 3]\noutput : list = [-6, -3, -1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(add_n([4, -2, 0, -5, 3],3),14))),4)",
    "io_inp": [
      4,
      -2,
      0,
      -5,
      3
    ],
    "io_out": [
      -6,
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(add_n(input,3),14))),4)"
  },
  {
    "input": "input : list = [1, -3, -2, 1, 4, 4]\noutput : list = [16, 16, 4, 4, -8, -12]",
    "output": "generated_output : list = take(take(mul_n(sort_des(reverse([1, -3, -2, 1, 4, 4])),4),24),49)",
    "io_inp": [
      1,
      -3,
      -2,
      1,
      4,
      4
    ],
    "io_out": [
      16,
      16,
      4,
      4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(reverse(input)),4),24),49)"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(reverse([-1, 0, -3]),-2))),-2)",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(reverse(input),-2))),-2)"
  },
  {
    "input": "input : list = [3, -1, -2, 2, 2, -4]\noutput : list = [7, 6, 6, 3, 2, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(sort_asc([3, -1, -2, 2, 2, -4]))),-4),49)",
    "io_inp": [
      3,
      -1,
      -2,
      2,
      2,
      -4
    ],
    "io_out": [
      7,
      6,
      6,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(sort_asc(input))),-4),49)"
  },
  {
    "input": "input : list = [0, -1, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(sort_des([0, -1, 2]),3),1),-3))",
    "io_inp": [
      0,
      -1,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(sort_des(input),3),1),-3))"
  },
  {
    "input": "input : list = [-4, 2, 2, -3, 1, 2]\noutput : list = [-2, 2, 18, -2, -2, 22]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(reverse([-4, 2, 2, -3, 1, 2]),-4),5),1),53)",
    "io_inp": [
      -4,
      2,
      2,
      -3,
      1,
      2
    ],
    "io_out": [
      -2,
      2,
      18,
      -2,
      -2,
      22
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(reverse(input),-4),5),1),53)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc([4, -5]),-4),-4))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(input),-4),-4))"
  },
  {
    "input": "input : list = [-4, -3, 0, -2, 0, -2]\noutput : list = [12, 9, 0, 6]",
    "output": "generated_output : list = mul_n(take([-4, -3, 0, -2, 0, -2],4),-3)",
    "io_inp": [
      -4,
      -3,
      0,
      -2,
      0,
      -2
    ],
    "io_out": [
      12,
      9,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),-3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse([-1, -3])",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1, -3, 4, -2, 1]\noutput : list = [-6, -6, -5, -2, -2, 1]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(add_n([-3, 1, -3, 4, -2, 1],2)),-5),32))",
    "io_inp": [
      -3,
      1,
      -3,
      4,
      -2,
      1
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(add_n(input,2)),-5),32))"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [12, 6, 6]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(mul_n([-1, -3, -1],-3),8)),3))",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      12,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(mul_n(input,-3),8)),3))"
  },
  {
    "input": "input : list = [-3, 5, 0, -1, -2, -3]\noutput : list = [-4, -3, -2, -1, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(drop([-3, 5, 0, -1, -2, -3],1),1))),1)",
    "io_inp": [
      -3,
      5,
      0,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(drop(input,1),1))),1)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-1, -7]",
    "output": "generated_output : list = add_n(sub_n(reverse([-1, 5]),3),-3)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),3),-3)"
  },
  {
    "input": "input : list = [-2, -3, 1]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc([-2, -3, 1])),-4))",
    "io_inp": [
      -2,
      -3,
      1
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(input)),-4))"
  },
  {
    "input": "input : list = [-2, 0, 5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = add_n(take(add_n(take(drop([-2, 0, 5, -2],2),6),1),33),-1)",
    "io_inp": [
      -2,
      0,
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(drop(input,2),6),1),33),-1)"
  },
  {
    "input": "input : list = [1, -5, 2]\noutput : list = [-4, -2, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des([1, -5, 2]),15),-2))",
    "io_inp": [
      1,
      -5,
      2
    ],
    "io_out": [
      -4,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(input),15),-2))"
  },
  {
    "input": "input : list = [-4, 3, -5, -3, 1, -5]\noutput : list = [-26]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(take([-4, 3, -5, -3, 1, -5],1)),-2),5),-2)",
    "io_inp": [
      -4,
      3,
      -5,
      -3,
      1,
      -5
    ],
    "io_out": [
      -26
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(take(input,1)),-2),5),-2)"
  },
  {
    "input": "input : list = [-5, -5, -2, -1, 2, -3]\noutput : list = [2, 2, -4, -6, -12, -2]",
    "output": "generated_output : list = mul_n(sub_n([-5, -5, -2, -1, 2, -3],-4),-2)",
    "io_inp": [
      -5,
      -5,
      -2,
      -1,
      2,
      -3
    ],
    "io_out": [
      2,
      2,
      -4,
      -6,
      -12,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),-2)"
  },
  {
    "input": "input : list = [-2, 4, -4, -5, -3, -2]\noutput : list = [-9, -8, -7, -6, -6, 0]",
    "output": "generated_output : list = sub_n(sort_asc([-2, 4, -4, -5, -3, -2]),4)",
    "io_inp": [
      -2,
      4,
      -4,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-5, 1, -1, -3, 5]\noutput : list = [8, 4, 2, 0, -2]",
    "output": "generated_output : list = take(sub_n(add_n(take(sort_des([-5, 1, -1, -3, 5]),7),-2),-5),17)",
    "io_inp": [
      -5,
      1,
      -1,
      -3,
      5
    ],
    "io_out": [
      8,
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(sort_des(input),7),-2),-5),17)"
  },
  {
    "input": "input : list = [-1, -1, 1, -1]\noutput : list = [2, 2, 8, 2]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(sub_n([-1, -1, 1, -1],-2),-1),6),-3),1)",
    "io_inp": [
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      2,
      2,
      8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(sub_n(input,-2),-1),6),-3),1)"
  },
  {
    "input": "input : list = [-2, -1, 5, 4, -2, 2]\noutput : list = [-5, -5, -4, -1, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc([-2, -1, 5, 4, -2, 2]),3)",
    "io_inp": [
      -2,
      -1,
      5,
      4,
      -2,
      2
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-5, -3, 0, 0, 3, 3]\noutput : list = [3, 3, -6, -6]",
    "output": "generated_output : list = add_n(mul_n(drop([-5, -3, 0, 0, 3, 3],2),-3),3)",
    "io_inp": [
      -5,
      -3,
      0,
      0,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,2),-3),3)"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [-3, -4, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(take(sort_des([-1, -2, -2]),7),2)),27)",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(sort_des(input),7),2)),27)"
  },
  {
    "input": "input : list = [2, -1, 3, -2]\noutput : list = [-2, -1, 2, 3]",
    "output": "generated_output : list = sort_asc([2, -1, 3, -2])",
    "io_inp": [
      2,
      -1,
      3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2, 0, -1, -4, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(sort_des(take([2, -2, 0, -1, -4, -1],2)))",
    "io_inp": [
      2,
      -2,
      0,
      -1,
      -4,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [5, 3, -4, 1, 2, -2]\noutput : list = [-8, 8, 4, -16, 12]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(drop([5, 3, -4, 1, 2, -2],1)),4),3),3)",
    "io_inp": [
      5,
      3,
      -4,
      1,
      2,
      -2
    ],
    "io_out": [
      -8,
      8,
      4,
      -16,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(drop(input,1)),4),3),3)"
  },
  {
    "input": "input : list = [-1, 0, 5, -4]\noutput : list = [5, 0, -25, 20]",
    "output": "generated_output : list = mul_n([-1, 0, 5, -4],-5)",
    "io_inp": [
      -1,
      0,
      5,
      -4
    ],
    "io_out": [
      5,
      0,
      -25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -3, 4, -5]\noutput : list = [-6, 3, -4, -2]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sub_n([-1, -3, 4, -5],3)),28),4),2)",
    "io_inp": [
      -1,
      -3,
      4,
      -5
    ],
    "io_out": [
      -6,
      3,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sub_n(input,3)),28),4),2)"
  },
  {
    "input": "input : list = [-4, -3, -3, -5, 5, 1]\noutput : list = [8, 6, 6, 10, -10, -2]",
    "output": "generated_output : list = mul_n([-4, -3, -3, -5, 5, 1],-2)",
    "io_inp": [
      -4,
      -3,
      -3,
      -5,
      5,
      1
    ],
    "io_out": [
      8,
      6,
      6,
      10,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 5, -5, 3, 0, 5]\noutput : list = [-17, -5, 3, 15, 23, 23]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n([-2, 5, -5, 3, 0, 5],4)),2),-5))",
    "io_inp": [
      -2,
      5,
      -5,
      3,
      0,
      5
    ],
    "io_out": [
      -17,
      -5,
      3,
      15,
      23,
      23
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n(input,4)),2),-5))"
  },
  {
    "input": "input : list = [4, -1, 1, 3, -1, -1]\noutput : list = [4, 3, 1, -1, -1, -1]",
    "output": "generated_output : list = sort_des([4, -1, 1, 3, -1, -1])",
    "io_inp": [
      4,
      -1,
      1,
      3,
      -1,
      -1
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 0, 3, 4, 1]\noutput : list = [-2, 2, 0, 6, 8]",
    "output": "generated_output : list = take(take(mul_n([-1, 1, 0, 3, 4, 1],2),5),22)",
    "io_inp": [
      -1,
      1,
      0,
      3,
      4,
      1
    ],
    "io_out": [
      -2,
      2,
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,2),5),22)"
  },
  {
    "input": "input : list = [3, -3, -3, -3]\noutput : list = [48, 48, 48, -48]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_des(mul_n([3, -3, -3, -3],-4)),-4),17),-1)",
    "io_inp": [
      3,
      -3,
      -3,
      -3
    ],
    "io_out": [
      48,
      48,
      48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_des(mul_n(input,-4)),-4),17),-1)"
  },
  {
    "input": "input : list = [-2, -1, 3, -1]\noutput : list = [6, 10, 6, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse([-2, -1, 3, -1]),4),-3)",
    "io_inp": [
      -2,
      -1,
      3,
      -1
    ],
    "io_out": [
      6,
      10,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),4),-3)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [3, 3, 2]",
    "output": "generated_output : list = sort_des(add_n(take(add_n(sort_des([-1, 0, 0]),2),26),1))",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(add_n(sort_des(input),2),26),1))"
  },
  {
    "input": "input : list = [0, 0, -1, -2, 0, -2]\noutput : list = [0, 0, 0, -2, -4, -4]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_des([0, 0, -1, -2, 0, -2])),-2)),-1)",
    "io_inp": [
      0,
      0,
      -1,
      -2,
      0,
      -2
    ],
    "io_out": [
      0,
      0,
      0,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_des(input)),-2)),-1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [11, 2]",
    "output": "generated_output : list = sub_n(add_n(add_n([4, -5],3),1),-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      11,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,3),1),-3)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2, 4, 1, 0]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = drop(reverse(add_n(sort_asc([5, 2, 4, 1, 0]),-3)),2)",
    "io_inp": [
      5,
      2,
      4,
      1,
      0
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(sort_asc(input),-3)),2)"
  },
  {
    "input": "input : list = [5, 5, -2, -3]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 5, -2, -3],1)",
    "io_inp": [
      5,
      5,
      -2,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(reverse(add_n(take(reverse([0, -2]),12),2)))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(reverse(input),12),2)))"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [-3, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(reverse([5, 3, -2])),-3),-2))",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(reverse(input)),-3),-2))"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [-2, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_asc([5, 2, -1]),1))))",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-4, -1, -2]\noutput : list = [45, 30, 35]",
    "output": "generated_output : list = mul_n(add_n([-4, -1, -2],-5),-5)",
    "io_inp": [
      -4,
      -1,
      -2
    ],
    "io_out": [
      45,
      30,
      35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),-5)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [14, 10, 8]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_asc([-2, 4, 0]))),-5),-5)",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      14,
      10,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(sort_asc(input))),-5),-5)"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-4, -8, -16]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(sort_des([-2, -1, -4]),4))))",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([5, 0, 1])),3)",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [3, 0, 3, 4, 4]\noutput : list = [-12, -12, -9, -9, 0]",
    "output": "generated_output : list = sort_asc(mul_n([3, 0, 3, 4, 4],-3))",
    "io_inp": [
      3,
      0,
      3,
      4,
      4
    ],
    "io_out": [
      -12,
      -12,
      -9,
      -9,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [3, -3, -5, -5]\noutput : list = [2, 2, 4, 10]",
    "output": "generated_output : list = take(add_n(take(reverse(sub_n([3, -3, -5, -5],-5)),23),2),23)",
    "io_inp": [
      3,
      -3,
      -5,
      -5
    ],
    "io_out": [
      2,
      2,
      4,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(sub_n(input,-5)),23),2),23)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [9, 11]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(reverse([3, 1]),3),-4),-3),-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      9,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(reverse(input),3),-4),-3),-4)"
  },
  {
    "input": "input : list = [-3, 4, -4, 3]\noutput : list = [-1, 0, 6, 7]",
    "output": "generated_output : list = take(sort_asc(sub_n([-3, 4, -4, 3],-3)),7)",
    "io_inp": [
      -3,
      4,
      -4,
      3
    ],
    "io_out": [
      -1,
      0,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,-3)),7)"
  },
  {
    "input": "input : list = [0, -5, -5, 1, -5, 4]\noutput : list = [9, 6, 5, 0, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(sort_des([0, -5, -5, 1, -5, 4])),13),5))",
    "io_inp": [
      0,
      -5,
      -5,
      1,
      -5,
      4
    ],
    "io_out": [
      9,
      6,
      5,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(sort_des(input)),13),5))"
  },
  {
    "input": "input : list = [-2, 4, -1, -5]\noutput : list = [-1, -6, -10]",
    "output": "generated_output : list = sub_n(sort_des(drop([-2, 4, -1, -5],1)),5)",
    "io_inp": [
      -2,
      4,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),5)"
  },
  {
    "input": "input : list = [-2, 4, 2, 1, 4, 4]\noutput : list = [20, 10, -10]",
    "output": "generated_output : list = mul_n(sort_des(take([-2, 4, 2, 1, 4, 4],3)),5)",
    "io_inp": [
      -2,
      4,
      2,
      1,
      4,
      4
    ],
    "io_out": [
      20,
      10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,3)),5)"
  },
  {
    "input": "input : list = [5, 4, -3, -1, 1, -3]\noutput : list = [3, 2, -1, -3, -5, -5]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(add_n([5, 4, -3, -1, 1, -3],2),-1)),2),5)",
    "io_inp": [
      5,
      4,
      -3,
      -1,
      1,
      -3
    ],
    "io_out": [
      3,
      2,
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(add_n(input,2),-1)),2),5)"
  },
  {
    "input": "input : list = [2, -5, -3, -3, 0]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(sort_asc(drop(sort_asc(take([2, -5, -3, -3, 0],2)),1)))",
    "io_inp": [
      2,
      -5,
      -3,
      -3,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(sort_asc(take(input,2)),1)))"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(reverse([3, 0, -1]),1))))",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [1, -2, -5, -5, 5]\noutput : list = [12, -18, -18]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(drop([1, -2, -5, -5, 5],2)),3)),-3)",
    "io_inp": [
      1,
      -2,
      -5,
      -5,
      5
    ],
    "io_out": [
      12,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(drop(input,2)),3)),-3)"
  },
  {
    "input": "input : list = [-1, 5, 1, -1, 3]\noutput : list = [-20, -20, -10, 0, 10]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_asc([-1, 5, 1, -1, 3]),3)),5),1)",
    "io_inp": [
      -1,
      5,
      1,
      -1,
      3
    ],
    "io_out": [
      -20,
      -20,
      -10,
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_asc(input),3)),5),1)"
  },
  {
    "input": "input : list = [2, 3, -2, 4, 1, 1]\noutput : list = [-6, -3, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sort_asc([2, 3, -2, 4, 1, 1]),12),-4),8))",
    "io_inp": [
      2,
      3,
      -2,
      4,
      1,
      1
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sort_asc(input),12),-4),8))"
  },
  {
    "input": "input : list = [1, -4, 0, -5, -1, 4]\noutput : list = [16, 4, 0, -4, -16, -20]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(mul_n([1, -4, 0, -5, -1, 4],4),6))))",
    "io_inp": [
      1,
      -4,
      0,
      -5,
      -1,
      4
    ],
    "io_out": [
      16,
      4,
      0,
      -4,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(mul_n(input,4),6))))"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 1, -3])",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5, 2, -4, -2, -1]\noutput : list = [9, 0, 7, 1, 3, 4]",
    "output": "generated_output : list = sub_n([4, -5, 2, -4, -2, -1],-5)",
    "io_inp": [
      4,
      -5,
      2,
      -4,
      -2,
      -1
    ],
    "io_out": [
      9,
      0,
      7,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 0, 0, 1, 2, 2]\noutput : list = [-13, -8, -8, -7, -6, -6]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n([-5, 0, 0, 1, 2, 2],5),10),-3))",
    "io_inp": [
      -5,
      0,
      0,
      1,
      2,
      2
    ],
    "io_out": [
      -13,
      -8,
      -8,
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(input,5),10),-3))"
  },
  {
    "input": "input : list = [0, 3, -3, -1, -3]\noutput : list = [-1, -1, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(sort_des([0, 3, -3, -1, -3]),1),3)))",
    "io_inp": [
      0,
      3,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(sort_des(input),1),3)))"
  },
  {
    "input": "input : list = [-4, 1, 0, 1, 1]\noutput : list = [-5, -4, -4]",
    "output": "generated_output : list = sub_n(drop([-4, 1, 0, 1, 1],2),5)",
    "io_inp": [
      -4,
      1,
      0,
      1,
      1
    ],
    "io_out": [
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [-2, 3, 4, -3]\noutput : list = [6, -9, -12, 9]",
    "output": "generated_output : list = mul_n([-2, 3, 4, -3],-3)",
    "io_inp": [
      -2,
      3,
      4,
      -3
    ],
    "io_out": [
      6,
      -9,
      -12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [0, 0, 20]",
    "output": "generated_output : list = mul_n([0, 0, -4],-5)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [5, -4, -4, -2, -4, 2]\noutput : list = [-4, -4, -4, -2, 2, 5]",
    "output": "generated_output : list = sort_asc([5, -4, -4, -2, -4, 2])",
    "io_inp": [
      5,
      -4,
      -4,
      -2,
      -4,
      2
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, -4, -4, -5, 3]\noutput : list = [-6, -8, -7, -7, -8, 0]",
    "output": "generated_output : list = sub_n(sub_n([-3, -5, -4, -4, -5, 3],5),-2)",
    "io_inp": [
      -3,
      -5,
      -4,
      -4,
      -5,
      3
    ],
    "io_out": [
      -6,
      -8,
      -7,
      -7,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),-2)"
  },
  {
    "input": "input : list = [-5, 5, 0, 5, -3, -1]\noutput : list = [-9, -7, -5, -4, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(add_n([-5, 5, 0, 5, -3, -1],-5)))),-1)",
    "io_inp": [
      -5,
      5,
      0,
      5,
      -3,
      -1
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(add_n(input,-5)))),-1)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(drop(sort_des([4, 5]),1)),-4),-2)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(drop(sort_des(input),1)),-4),-2)"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [-25, 25, -25]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n(mul_n([0, -1, 0],5),-1),-2),-3),5)",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      -25,
      25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(mul_n(input,5),-1),-2),-3),5)"
  },
  {
    "input": "input : list = [0, 3, 1, 2, -4, 5]\noutput : list = [0, -2, -3, -4, -5, -9]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(reverse([0, 3, 1, 2, -4, 5]),-4)),-4),-3)",
    "io_inp": [
      0,
      3,
      1,
      2,
      -4,
      5
    ],
    "io_out": [
      0,
      -2,
      -3,
      -4,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(reverse(input),-4)),-4),-3)"
  },
  {
    "input": "input : list = [5, 0, -1, 4, -4]\noutput : list = [100, 80, 0, -20, -80]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(mul_n([5, 0, -1, 4, -4],-5),-4))),34)",
    "io_inp": [
      5,
      0,
      -1,
      4,
      -4
    ],
    "io_out": [
      100,
      80,
      0,
      -20,
      -80
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(mul_n(input,-5),-4))),34)"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [5, 17, -1]",
    "output": "generated_output : list = take(take(add_n(reverse(mul_n([2, -4, 0],-3)),5),11),25)",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      5,
      17,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(mul_n(input,-3)),5),11),25)"
  },
  {
    "input": "input : list = [-1, 2, 2, 4, 3]\noutput : list = [-16, -12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(drop([-1, 2, 2, 4, 3],3),3),4),4))",
    "io_inp": [
      -1,
      2,
      2,
      4,
      3
    ],
    "io_out": [
      -16,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(drop(input,3),3),4),4))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 16]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(mul_n([4, 1],4),1))),31)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(mul_n(input,4),1))),31)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [13, 12]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(add_n([0, 1],4),-5),3)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      13,
      12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(add_n(input,4),-5),3)))"
  },
  {
    "input": "input : list = [2, 4, -2, -1]\noutput : list = [-4, -3, 0, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse([2, 4, -2, -1]),-3))),-1)",
    "io_inp": [
      2,
      4,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse(input),-3))),-1)"
  },
  {
    "input": "input : list = [1, 0, -4, 1, 5, -1]\noutput : list = [14, 6, 6, 4, 2, -4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(sort_des([1, 0, -4, 1, 5, -1]),-2))),2)",
    "io_inp": [
      1,
      0,
      -4,
      1,
      5,
      -1
    ],
    "io_out": [
      14,
      6,
      6,
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(sort_des(input),-2))),2)"
  },
  {
    "input": "input : list = [4, 5, 3, -2]\noutput : list = [4, 24, 28, 32]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse([4, 5, 3, -2]),3),4))",
    "io_inp": [
      4,
      5,
      3,
      -2
    ],
    "io_out": [
      4,
      24,
      28,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(input),3),4))"
  },
  {
    "input": "input : list = [3, -3, -3, 1, -3, 5]\noutput : list = [-3, -3, 1, -3, 5]",
    "output": "generated_output : list = drop([3, -3, -3, 1, -3, 5],1)",
    "io_inp": [
      3,
      -3,
      -3,
      1,
      -3,
      5
    ],
    "io_out": [
      -3,
      -3,
      1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -2, 2, -5]\noutput : list = [4, 4, 0, -3]",
    "output": "generated_output : list = sub_n(sort_des([2, -2, 2, -5]),-2)",
    "io_inp": [
      2,
      -2,
      2,
      -5
    ],
    "io_out": [
      4,
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [4, 5, 0, 5, 3, -5]\noutput : list = [5, 0, -3, -4, -5, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(reverse([4, 5, 0, 5, 3, -5])))),-1)",
    "io_inp": [
      4,
      5,
      0,
      5,
      3,
      -5
    ],
    "io_out": [
      5,
      0,
      -3,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [2, 4, -2, -3]\noutput : list = [9, 6, -6, -12]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_asc([2, 4, -2, -3]))),-3))",
    "io_inp": [
      2,
      4,
      -2,
      -3
    ],
    "io_out": [
      9,
      6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [5, 2, 2, 3]\noutput : list = [8, 11]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(take([5, 2, 2, 3],2)),1)),5)",
    "io_inp": [
      5,
      2,
      2,
      3
    ],
    "io_out": [
      8,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(take(input,2)),1)),5)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-6, 15]",
    "output": "generated_output : list = mul_n([2, -5],-3)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, 4, -5, 5, 1, 0]\noutput : list = [4, 8, -10]",
    "output": "generated_output : list = mul_n(take([2, 4, -5, 5, 1, 0],3),2)",
    "io_inp": [
      2,
      4,
      -5,
      5,
      1,
      0
    ],
    "io_out": [
      4,
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),2)"
  },
  {
    "input": "input : list = [-2, -4, -4, -1]\noutput : list = [-6, -6, -4, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des([-2, -4, -4, -1])),2))",
    "io_inp": [
      -2,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -6,
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(input)),2))"
  },
  {
    "input": "input : list = [-3, -5, 2, 3, 4]\noutput : list = [4, 3, 2, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, 2, 3, 4])",
    "io_inp": [
      -3,
      -5,
      2,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2, -3, -5]\noutput : list = [-8, 4, 12, 20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(reverse([-1, 2, -3, -5]),13))),-4)",
    "io_inp": [
      -1,
      2,
      -3,
      -5
    ],
    "io_out": [
      -8,
      4,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(reverse(input),13))),-4)"
  },
  {
    "input": "input : list = [1, 2, -2, -3, -2]\noutput : list = [4, 2, -4, -4, -6]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_des([1, 2, -2, -3, -2]))),2))",
    "io_inp": [
      1,
      2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      4,
      2,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_des(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-4, 1, 3, 1, 1]\noutput : list = [3, 1, 1, 1, -4]",
    "output": "generated_output : list = sort_des([-4, 1, 3, 1, 1])",
    "io_inp": [
      -4,
      1,
      3,
      1,
      1
    ],
    "io_out": [
      3,
      1,
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(take([-2, -5, -5],1),3))),5)",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(take(input,1),3))),5)"
  },
  {
    "input": "input : list = [-3, 2, 1, -2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = take([-3, 2, 1, -2],2)",
    "io_inp": [
      -3,
      2,
      1,
      -2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -3, 5, -2, 5]\noutput : list = [5, -2, 5]",
    "output": "generated_output : list = drop([5, -3, 5, -2, 5],2)",
    "io_inp": [
      5,
      -3,
      5,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2, 2, -5, -2]\noutput : list = [-27]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(take([-4, 2, 2, -5, -2],1),5)),-3),-4)",
    "io_inp": [
      -4,
      2,
      2,
      -5,
      -2
    ],
    "io_out": [
      -27
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(take(input,1),5)),-3),-4)"
  },
  {
    "input": "input : list = [2, 3, 1, 5, -3, -5]\noutput : list = [20, 30, 10, 50, -30, -50]",
    "output": "generated_output : list = mul_n(take(mul_n([2, 3, 1, 5, -3, -5],-2),6),-5)",
    "io_inp": [
      2,
      3,
      1,
      5,
      -3,
      -5
    ],
    "io_out": [
      20,
      30,
      10,
      50,
      -30,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-2),6),-5)"
  },
  {
    "input": "input : list = [3, -2, -3, -5, 5]\noutput : list = [-25, -15, -10, 15, 25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(sort_asc([3, -2, -3, -5, 5])))),5)",
    "io_inp": [
      3,
      -2,
      -3,
      -5,
      5
    ],
    "io_out": [
      -25,
      -15,
      -10,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [5, -4, 4, -1, -1]\noutput : list = [17, 17, -83, 77, -103]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n([5, -4, 4, -1, -1],4),-5)),3)",
    "io_inp": [
      5,
      -4,
      4,
      -1,
      -1
    ],
    "io_out": [
      17,
      17,
      -83,
      77,
      -103
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(input,4),-5)),3)"
  },
  {
    "input": "input : list = [5, 2, 1, 1, -5]\noutput : list = [5, -1, -1, -2, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_des([5, 2, 1, 1, -5])),-1)",
    "io_inp": [
      5,
      2,
      1,
      1,
      -5
    ],
    "io_out": [
      5,
      -1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [2, -2, 0, 1, 1]\noutput : list = [2, 0, 0, -2, -6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc([2, -2, 0, 1, 1])),-1),2)",
    "io_inp": [
      2,
      -2,
      0,
      1,
      1
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(input)),-1),2)"
  },
  {
    "input": "input : list = [-2, 3, 0, -3, 5, -4]\noutput : list = [10, 1]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(drop([-2, 3, 0, -3, 5, -4],4))),-5),27)",
    "io_inp": [
      -2,
      3,
      0,
      -3,
      5,
      -4
    ],
    "io_out": [
      10,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(drop(input,4))),-5),27)"
  },
  {
    "input": "input : list = [5, -3, 3, 0, 3, 1]\noutput : list = [4, -4, 2, -1, 2, 0]",
    "output": "generated_output : list = add_n([5, -3, 3, 0, 3, 1],-1)",
    "io_inp": [
      5,
      -3,
      3,
      0,
      3,
      1
    ],
    "io_out": [
      4,
      -4,
      2,
      -1,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-9, -6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(add_n([1, 4],-5)),-4),1))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(add_n(input,-5)),-4),1))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(add_n([-3, 3],-3),5),21)),-2)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(add_n(input,-3),5),21)),-2)"
  },
  {
    "input": "input : list = [4, 4, 2, 2]\noutput : list = [5, 5, 7, 7]",
    "output": "generated_output : list = add_n(reverse([4, 4, 2, 2]),3)",
    "io_inp": [
      4,
      4,
      2,
      2
    ],
    "io_out": [
      5,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, -10]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sub_n([4, -3],3))),4))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(reverse(sub_n(input,3))),4))"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [4, -31, -41]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sub_n([-4, -2, 5],5)),5)),4)",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      4,
      -31,
      -41
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sub_n(input,5)),5)),4)"
  },
  {
    "input": "input : list = [-2, -3, 1, -4]\noutput : list = [-2, -5, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des([-2, -3, 1, -4]),3)",
    "io_inp": [
      -2,
      -3,
      1,
      -4
    ],
    "io_out": [
      -2,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-1, -4, 3, -1]\noutput : list = [-9, -6, -6, -2]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n([-1, -4, 3, -1],5)),27))",
    "io_inp": [
      -1,
      -4,
      3,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(input,5)),27))"
  },
  {
    "input": "input : list = [5, -5, 3, -3, 5]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -5, 3, -3, 5],1)",
    "io_inp": [
      5,
      -5,
      3,
      -3,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(mul_n([-3, -4],2),5))))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(mul_n(input,2),5))))"
  },
  {
    "input": "input : list = [-1, 2, 0, -5]\noutput : list = [3, 1, -4]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(drop([-1, 2, 0, -5],1))),24),1)",
    "io_inp": [
      -1,
      2,
      0,
      -5
    ],
    "io_out": [
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(drop(input,1))),24),1)"
  },
  {
    "input": "input : list = [5, 2, 0, 4]\noutput : list = [1, -2, -4, 0]",
    "output": "generated_output : list = sub_n([5, 2, 0, 4],4)",
    "io_inp": [
      5,
      2,
      0,
      4
    ],
    "io_out": [
      1,
      -2,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 0, -5, -5, 1, 2]\noutput : list = [7, 5, 0, 0, 6, 7]",
    "output": "generated_output : list = add_n([2, 0, -5, -5, 1, 2],5)",
    "io_inp": [
      2,
      0,
      -5,
      -5,
      1,
      2
    ],
    "io_out": [
      7,
      5,
      0,
      0,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, 1, 1, -3, -4]\noutput : list = [-17, -14, -2, -2, 10]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([5, 1, 1, -3, -4],3),-5))",
    "io_inp": [
      5,
      1,
      1,
      -3,
      -4
    ],
    "io_out": [
      -17,
      -14,
      -2,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,3),-5))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-12, 15]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(mul_n([5, -4],-3),-3)),21))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(mul_n(input,-3),-3)),21))"
  },
  {
    "input": "input : list = [-1, -4, -3, -3]\noutput : list = [-1, -3, -3, -4]",
    "output": "generated_output : list = sort_des([-1, -4, -3, -3])",
    "io_inp": [
      -1,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [1, -2, 1]",
    "output": "generated_output : list = reverse([1, -2, 1])",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, 0, -5, 0]\noutput : list = [-8, -8, 0, 0, 40]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse([1, 1, 0, -5, 0])),4),-2)",
    "io_inp": [
      1,
      1,
      0,
      -5,
      0
    ],
    "io_out": [
      -8,
      -8,
      0,
      0,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(input)),4),-2)"
  },
  {
    "input": "input : list = [2, -2, -5, -2, 2, 4]\noutput : list = [48, 24, 24, -24, -24, -60]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_asc([2, -2, -5, -2, 2, 4])),-3)),-4)",
    "io_inp": [
      2,
      -2,
      -5,
      -2,
      2,
      4
    ],
    "io_out": [
      48,
      24,
      24,
      -24,
      -24,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sort_asc(input)),-3)),-4)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -1, 2],1)",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 4, 2]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 4, 2],1)",
    "io_inp": [
      -3,
      4,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse([1, 0])",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 2, 3, 4, 0, 1]\noutput : list = [16, 0, -8, -16, -24, -32]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sort_asc([-2, 2, 3, 4, 0, 1])),4)),-2)",
    "io_inp": [
      -2,
      2,
      3,
      4,
      0,
      1
    ],
    "io_out": [
      16,
      0,
      -8,
      -16,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sort_asc(input)),4)),-2)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-125, -50]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([2, 5],-5)),5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -125,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-5)),5)"
  },
  {
    "input": "input : list = [4, -1, 1, -4, -4]\noutput : list = [4, 4, -1, 1, -4]",
    "output": "generated_output : list = reverse(mul_n([4, -1, 1, -4, -4],-1))",
    "io_inp": [
      4,
      -1,
      1,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      -1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [-7, -2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(drop([3, 0, -5],1)),-2)),1)",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(drop(input,1)),-2)),1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-300, 120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse(sort_asc([5, -2])),-4),-3),-5)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -300,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(sort_asc(input)),-4),-3),-5)"
  },
  {
    "input": "input : list = [-2, -2, 4, 0]\noutput : list = [0, 0, 2, 6]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(sort_des([-2, -2, 4, 0])),-4),-3),-5)",
    "io_inp": [
      -2,
      -2,
      4,
      0
    ],
    "io_out": [
      0,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(sort_des(input)),-4),-3),-5)"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [10, 8, 3]",
    "output": "generated_output : list = sub_n(sort_des([5, -2, 3]),-5)",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      10,
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-2, -2, -5, 5, 2]\noutput : list = [-2, 1, 1, 5, 8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(sort_des([-2, -2, -5, 5, 2]),5),2),-5))",
    "io_inp": [
      -2,
      -2,
      -5,
      5,
      2
    ],
    "io_out": [
      -2,
      1,
      1,
      5,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(sort_des(input),5),2),-5))"
  },
  {
    "input": "input : list = [-4, 3, -5, 1, -4]\noutput : list = [8, -20]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(take([-4, 3, -5, 1, -4],2))),4),4)",
    "io_inp": [
      -4,
      3,
      -5,
      1,
      -4
    ],
    "io_out": [
      8,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(take(input,2))),4),4)"
  },
  {
    "input": "input : list = [0, -5, -2, 3]\noutput : list = [-10, -20, -14, -4]",
    "output": "generated_output : list = mul_n(add_n([0, -5, -2, 3],-5),2)",
    "io_inp": [
      0,
      -5,
      -2,
      3
    ],
    "io_out": [
      -10,
      -20,
      -14,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = reverse(sort_asc([1, 0]))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n([-2, 0],2)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, -3, 4]\noutput : list = [-2, -2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-3, -3, 4],-1)))",
    "io_inp": [
      -3,
      -3,
      4
    ],
    "io_out": [
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [4, 3, 2, -1, -2]\noutput : list = [12, 9, 6, -3, -6]",
    "output": "generated_output : list = mul_n([4, 3, 2, -1, -2],3)",
    "io_inp": [
      4,
      3,
      2,
      -1,
      -2
    ],
    "io_out": [
      12,
      9,
      6,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, 4, -4, -5, -1, 2]\noutput : list = [6, 3, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(drop([-2, 4, -4, -5, -1, 2],3))),-4)",
    "io_inp": [
      -2,
      4,
      -4,
      -5,
      -1,
      2
    ],
    "io_out": [
      6,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(drop(input,3))),-4)"
  },
  {
    "input": "input : list = [0, 0, -2, 4, -1]\noutput : list = [-5, -9, -9, -10, -11]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(add_n([0, 0, -2, 4, -1],-5),4))))",
    "io_inp": [
      0,
      0,
      -2,
      4,
      -1
    ],
    "io_out": [
      -5,
      -9,
      -9,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(add_n(input,-5),4))))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [6, 2]",
    "output": "generated_output : list = reverse(take(add_n([-2, 2],4),4))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,4),4))"
  },
  {
    "input": "input : list = [0, 2, 1, 3]\noutput : list = [0, 3, 6, 9]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(mul_n([0, 2, 1, 3],3)))))",
    "io_inp": [
      0,
      2,
      1,
      3
    ],
    "io_out": [
      0,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [1, -4, -1, 4]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(drop([1, -4, -1, 4],2)),3)))",
    "io_inp": [
      1,
      -4,
      -1,
      4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(drop(input,2)),3)))"
  },
  {
    "input": "input : list = [-3, 5, -2, -5]\noutput : list = [-1, 1, 2, 9]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(sort_des([-3, 5, -2, -5])))),4)",
    "io_inp": [
      -3,
      5,
      -2,
      -5
    ],
    "io_out": [
      -1,
      1,
      2,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(sort_des(input)))),4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [123, 198]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_asc([3, 0]),5),5),5),2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      123,
      198
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_asc(input),5),5),5),2)"
  },
  {
    "input": "input : list = [-3, 5, 3, -4]\noutput : list = [-4, 4, 2, -5]",
    "output": "generated_output : list = sub_n([-3, 5, 3, -4],1)",
    "io_inp": [
      -3,
      5,
      3,
      -4
    ],
    "io_out": [
      -4,
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-6, 0]",
    "output": "generated_output : list = take(sub_n(take(mul_n([4, 1],-2),4),-2),3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(input,-2),4),-2),3)"
  },
  {
    "input": "input : list = [1, -2, -1, 0, -4, -4]\noutput : list = [-4, -3, -7, -7]",
    "output": "generated_output : list = add_n(take(take(take(drop([1, -2, -1, 0, -4, -4],2),23),18),21),-3)",
    "io_inp": [
      1,
      -2,
      -1,
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(take(drop(input,2),23),18),21),-3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc(sub_n([1, 4],-1))),5))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(sub_n(input,-1))),5))"
  },
  {
    "input": "input : list = [-5, 4, 2, 1, -3]\noutput : list = [-5, 4, 2]",
    "output": "generated_output : list = take([-5, 4, 2, 1, -3],3)",
    "io_inp": [
      -5,
      4,
      2,
      1,
      -3
    ],
    "io_out": [
      -5,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(reverse([-1, 3])),2)))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(reverse(input)),2)))"
  },
  {
    "input": "input : list = [5, -3, 3, 5, 2]\noutput : list = [-6, -14, -8, -6, -9]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(reverse([5, -3, 3, 5, 2]),-5),1),5))",
    "io_inp": [
      5,
      -3,
      3,
      5,
      2
    ],
    "io_out": [
      -6,
      -14,
      -8,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(reverse(input),-5),1),5))"
  },
  {
    "input": "input : list = [4, -4, 3, 2]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(take([4, -4, 3, 2],1)),2)))",
    "io_inp": [
      4,
      -4,
      3,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(take(input,1)),2)))"
  },
  {
    "input": "input : list = [0, 4, 3, 2, -3, 0]\noutput : list = [-16, -28, -28, -36, -40, -44]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(add_n([0, 4, 3, 2, -3, 0],2),-5)),1),-4)",
    "io_inp": [
      0,
      4,
      3,
      2,
      -3,
      0
    ],
    "io_out": [
      -16,
      -28,
      -28,
      -36,
      -40,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(add_n(input,2),-5)),1),-4)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [-5, 5, 5]",
    "output": "generated_output : list = sort_asc([-5, 5, 5])",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      -5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, -2, -5]\noutput : list = [1, -6, -3, -6]",
    "output": "generated_output : list = sub_n([2, -5, -2, -5],1)",
    "io_inp": [
      2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      1,
      -6,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, 2, 3, -2]\noutput : list = [2, 3, -2]",
    "output": "generated_output : list = drop([0, 2, 3, -2],1)",
    "io_inp": [
      0,
      2,
      3,
      -2
    ],
    "io_out": [
      2,
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 0, -5, 1, 5, 1]\noutput : list = [1, 5, 1, -5, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, -5, 1, 5, 1])",
    "io_inp": [
      4,
      0,
      -5,
      1,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      1,
      -5,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 2, -2]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = sort_asc([5, 2, -2])",
    "io_inp": [
      5,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, 2, -4, -4, 1]\noutput : list = [30, 30]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(take([-3, -3, 2, -4, -4, 1],2)),5),-2),47)",
    "io_inp": [
      -3,
      -3,
      2,
      -4,
      -4,
      1
    ],
    "io_out": [
      30,
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(take(input,2)),5),-2),47)"
  },
  {
    "input": "input : list = [-3, 4, -4, 3, -5, -2]\noutput : list = [4, 3, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse([-3, 4, -4, 3, -5, -2])))",
    "io_inp": [
      -3,
      4,
      -4,
      3,
      -5,
      -2
    ],
    "io_out": [
      4,
      3,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-4, -4, 2, -4, 2]\noutput : list = [-4]",
    "output": "generated_output : list = take(take([-4, -4, 2, -4, 2],1),6)",
    "io_inp": [
      -4,
      -4,
      2,
      -4,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,1),6)"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [4, 0, -5]",
    "output": "generated_output : list = sort_des(mul_n([4, 0, -5],1))",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [0, -2, 1, 1]\noutput : list = [-4, -6, -3, -3]",
    "output": "generated_output : list = sub_n([0, -2, 1, 1],4)",
    "io_inp": [
      0,
      -2,
      1,
      1
    ],
    "io_out": [
      -4,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 2, -2, -5, -1]\noutput : list = [2, 2, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des([2, 2, -2, -5, -1]),4)))",
    "io_inp": [
      2,
      2,
      -2,
      -5,
      -1
    ],
    "io_out": [
      2,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(input),4)))"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [-3, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des([1, -1, -3]))",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -5, -4, -1, -2, 1]\noutput : list = [-5, -7, -6, -3, -4, -1]",
    "output": "generated_output : list = add_n([-3, -5, -4, -1, -2, 1],-2)",
    "io_inp": [
      -3,
      -5,
      -4,
      -1,
      -2,
      1
    ],
    "io_out": [
      -5,
      -7,
      -6,
      -3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, 0, -3, 4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = drop([3, 0, -3, 4, 3],3)",
    "io_inp": [
      3,
      0,
      -3,
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [9, -6]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n([-2, 3],3)),22)))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n(input,3)),22)))"
  },
  {
    "input": "input : list = [4, -1, 5, -4, 4]\noutput : list = [5, 4, 4, -1, -4]",
    "output": "generated_output : list = sort_des([4, -1, 5, -4, 4])",
    "io_inp": [
      4,
      -1,
      5,
      -4,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, -5, 1, 1, -1]\noutput : list = [1, -1, -1]",
    "output": "generated_output : list = mul_n(sort_asc(drop([3, 0, -5, 1, 1, -1],3)),-1)",
    "io_inp": [
      3,
      0,
      -5,
      1,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,3)),-1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = take(mul_n(take(take(sort_asc([4, 4]),12),16),-1),30)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(sort_asc(input),12),16),-1),30)"
  },
  {
    "input": "input : list = [-1, 2, -2]\noutput : list = [1, 4, 0]",
    "output": "generated_output : list = add_n([-1, 2, -2],2)",
    "io_inp": [
      -1,
      2,
      -2
    ],
    "io_out": [
      1,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, -1, -3, 4, -1, -2]\noutput : list = [20, 8, 16, -12, 8, 12]",
    "output": "generated_output : list = sub_n(take(sub_n(take(mul_n([-4, -1, -3, 4, -1, -2],-4),15),-5),21),1)",
    "io_inp": [
      -4,
      -1,
      -3,
      4,
      -1,
      -2
    ],
    "io_out": [
      20,
      8,
      16,
      -12,
      8,
      12
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(mul_n(input,-4),15),-5),21),1)"
  },
  {
    "input": "input : list = [3, 2, 5, -4]\noutput : list = [7, 5, 4, -2]",
    "output": "generated_output : list = sort_des(take(take(sub_n(sort_des([3, 2, 5, -4]),-2),22),4))",
    "io_inp": [
      3,
      2,
      5,
      -4
    ],
    "io_out": [
      7,
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(sort_des(input),-2),22),4))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sort_des(drop(take(sort_des([-2, -4]),14),1)))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(take(sort_des(input),14),1)))"
  },
  {
    "input": "input : list = [2, 2, -1, -3, 3]\noutput : list = [-2, -2, -5, -7, -1]",
    "output": "generated_output : list = sub_n([2, 2, -1, -3, 3],4)",
    "io_inp": [
      2,
      2,
      -1,
      -3,
      3
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, -4, 0]\noutput : list = [1, 17, 17]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(sort_des([-4, -4, 0]),9),-4),-1),2)",
    "io_inp": [
      -4,
      -4,
      0
    ],
    "io_out": [
      1,
      17,
      17
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(sort_des(input),9),-4),-1),2)"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [3, 2, 4]",
    "output": "generated_output : list = reverse(reverse(reverse([4, 2, 3])))",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [-24, -8, 32]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(mul_n([4, -3, -1],-1),2))),-4)",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      -24,
      -8,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(mul_n(input,-1),2))),-4)"
  },
  {
    "input": "input : list = [-5, 1, -5]\noutput : list = [-8, -2, -8]",
    "output": "generated_output : list = reverse(sub_n(reverse([-5, 1, -5]),3))",
    "io_inp": [
      -5,
      1,
      -5
    ],
    "io_out": [
      -8,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-3, 4, 1, 3, 0, -3]\noutput : list = [-9, -9, 0, 3, 9, 12]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(reverse([-3, 4, 1, 3, 0, -3]),3),24)),51)",
    "io_inp": [
      -3,
      4,
      1,
      3,
      0,
      -3
    ],
    "io_out": [
      -9,
      -9,
      0,
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(reverse(input),3),24)),51)"
  },
  {
    "input": "input : list = [-5, -5, 2, -5]\noutput : list = [8, -55, -55, -55]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sub_n([-5, -5, 2, -5],1),-3),-3)),1)",
    "io_inp": [
      -5,
      -5,
      2,
      -5
    ],
    "io_out": [
      8,
      -55,
      -55,
      -55
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sub_n(input,1),-3),-3)),1)"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [-10, -10, 4]",
    "output": "generated_output : list = mul_n(take(sort_des([5, -2, 5]),13),-2)",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      -10,
      -10,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),13),-2)"
  },
  {
    "input": "input : list = [1, -5, -3, -4, 2, 5]\noutput : list = [4, -2, 0, -1, 5, 8]",
    "output": "generated_output : list = reverse(add_n(reverse(reverse(reverse([1, -5, -3, -4, 2, 5]))),3))",
    "io_inp": [
      1,
      -5,
      -3,
      -4,
      2,
      5
    ],
    "io_out": [
      4,
      -2,
      0,
      -1,
      5,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(reverse(reverse(input))),3))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-3, -7]",
    "output": "generated_output : list = add_n(reverse(reverse([0, -4])),-3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [5, 1, 4, 5]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = drop([5, 1, 4, 5],1)",
    "io_inp": [
      5,
      1,
      4,
      5
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [-8, 0, -2]",
    "output": "generated_output : list = add_n(reverse([3, 5, -3]),-5)",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      -8,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [1, -2, 5, 1, -3, 5]\noutput : list = [-6, -2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(drop([1, -2, 5, 1, -3, 5],3))),3))",
    "io_inp": [
      1,
      -2,
      5,
      1,
      -3,
      5
    ],
    "io_out": [
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(drop(input,3))),3))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0, 6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(reverse([5, -1])),5)),-4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(reverse(input)),5)),-4)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(reverse(take(mul_n(reverse([1, -3]),-1),21)),7)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(reverse(input),-1),21)),7)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [6, 9, 12]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([3, 5, 4],-1),3))",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,-1),3))"
  },
  {
    "input": "input : list = [-3, 5, -5]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(take([-3, 5, -5],1),3)",
    "io_inp": [
      -3,
      5,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sort_asc([-2, -4])),1),4),-4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sort_asc(input)),1),4),-4)"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [-4, -4, 1]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(add_n([0, -5, -5],-3),1)),9),-3)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(add_n(input,-3),1)),9),-3)"
  },
  {
    "input": "input : list = [-4, -5, -1, -5, -3, 0]\noutput : list = [-2, -3, -5, -6, -7, -7]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_des(add_n([-4, -5, -1, -5, -3, 0],-2)))))",
    "io_inp": [
      -4,
      -5,
      -1,
      -5,
      -3,
      0
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_des(add_n(input,-2)))))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [0, -8]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(mul_n([-5, -1],2),-2),1)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(mul_n(input,2),-2),1)))"
  },
  {
    "input": "input : list = [-1, 5, -4, 5, 5]\noutput : list = [-9, 9, 9]",
    "output": "generated_output : list = add_n(add_n(mul_n(drop([-1, 5, -4, 5, 5],2),2),2),-3)",
    "io_inp": [
      -1,
      5,
      -4,
      5,
      5
    ],
    "io_out": [
      -9,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(drop(input,2),2),2),-3)"
  },
  {
    "input": "input : list = [4, 3, -1, 3]\noutput : list = [2, -18, -18, -23]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse([4, 3, -1, 3]),-5)),-3))",
    "io_inp": [
      4,
      3,
      -1,
      3
    ],
    "io_out": [
      2,
      -18,
      -18,
      -23
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse(input),-5)),-3))"
  },
  {
    "input": "input : list = [4, -5, -5, -2, 2]\noutput : list = [16, 8, -8, -20, -20]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc([4, -5, -5, -2, 2])),1),4)",
    "io_inp": [
      4,
      -5,
      -5,
      -2,
      2
    ],
    "io_out": [
      16,
      8,
      -8,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(input)),1),4)"
  },
  {
    "input": "input : list = [-5, -2, -4, -5, 5]\noutput : list = [-10, -10, -9, -7, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(sub_n([-5, -2, -4, -5, 5],4)))),-1)",
    "io_inp": [
      -5,
      -2,
      -4,
      -5,
      5
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -7,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(sub_n(input,4)))),-1)"
  },
  {
    "input": "input : list = [4, 5, -5, 2, 0]\noutput : list = [0, 5, 7, 9, 10]",
    "output": "generated_output : list = sub_n(sort_asc([4, 5, -5, 2, 0]),-5)",
    "io_inp": [
      4,
      5,
      -5,
      2,
      0
    ],
    "io_out": [
      0,
      5,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [2, 0, 0]\noutput : list = [-1, -1, 39]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(reverse([2, 0, 0]),-5),-4),26),1)",
    "io_inp": [
      2,
      0,
      0
    ],
    "io_out": [
      -1,
      -1,
      39
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(reverse(input),-5),-4),26),1)"
  },
  {
    "input": "input : list = [2, -5, -2]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(drop([2, -5, -2],1))),-5)",
    "io_inp": [
      2,
      -5,
      -2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(drop(input,1))),-5)"
  },
  {
    "input": "input : list = [2, 1, 5, -3, 3, 5]\noutput : list = [40, 32, 8, 40, 24, 28]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(sub_n([2, 1, 5, -3, 3, 5],-4),-1),4),8))",
    "io_inp": [
      2,
      1,
      5,
      -3,
      3,
      5
    ],
    "io_out": [
      40,
      32,
      8,
      40,
      24,
      28
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(sub_n(input,-4),-1),4),8))"
  },
  {
    "input": "input : list = [-3, 0, 5, -5, 0]\noutput : list = [1, -4, -4, -7, -9]",
    "output": "generated_output : list = sub_n(sort_des([-3, 0, 5, -5, 0]),4)",
    "io_inp": [
      -3,
      0,
      5,
      -5,
      0
    ],
    "io_out": [
      1,
      -4,
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [5, 5, 2, -3]\noutput : list = [3, -2, -5, -5]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(sort_des([5, 5, 2, -3]))),-1),10)",
    "io_inp": [
      5,
      5,
      2,
      -3
    ],
    "io_out": [
      3,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(sort_des(input))),-1),10)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, 1],1)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(reverse([-4, 2])),13)))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(reverse(input)),13)))"
  },
  {
    "input": "input : list = [-1, 5, 0, -3, -4, 4]\noutput : list = [-2, -3, -7, -8, -10, -11]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(add_n([-1, 5, 0, -3, -4, 4],-1),-2)),-2),-2)",
    "io_inp": [
      -1,
      5,
      0,
      -3,
      -4,
      4
    ],
    "io_out": [
      -2,
      -3,
      -7,
      -8,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(add_n(input,-1),-2)),-2),-2)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [40, -16, -40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc([-2, -5, 5]))),4),2)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      40,
      -16,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc(input))),4),2)"
  },
  {
    "input": "input : list = [-2, 0, -4, 1]\noutput : list = [-1, -2, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sort_asc([-2, 0, -4, 1]),15),22),2))",
    "io_inp": [
      -2,
      0,
      -4,
      1
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sort_asc(input),15),22),2))"
  },
  {
    "input": "input : list = [-4, 1, 4, -1]\noutput : list = [-3, 2, 5, 0]",
    "output": "generated_output : list = add_n([-4, 1, 4, -1],1)",
    "io_inp": [
      -4,
      1,
      4,
      -1
    ],
    "io_out": [
      -3,
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 0, 5, 1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(drop(sort_des([4, 0, 5, 1]),3),-3)),-4)",
    "io_inp": [
      4,
      0,
      5,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(drop(sort_des(input),3),-3)),-4)"
  },
  {
    "input": "input : list = [2, 1, 2, 2, -5]\noutput : list = [-5, 2, 2, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, 2, 2, -5])",
    "io_inp": [
      2,
      1,
      2,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      2,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-8, -7]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(reverse([-1, -2]),-4)),-2))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(reverse(input),-4)),-2))"
  },
  {
    "input": "input : list = [-2, -1, 1, 1]\noutput : list = [-4, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sort_asc([-2, -1, 1, 1])),2)))",
    "io_inp": [
      -2,
      -1,
      1,
      1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [-6, 2, 4]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des([0, -5, -1]),2),4))",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      -6,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(input),2),4))"
  },
  {
    "input": "input : list = [4, 5, -4, 5, 0, -4]\noutput : list = [9, 10, 1, 10, 5, 1]",
    "output": "generated_output : list = sub_n([4, 5, -4, 5, 0, -4],-5)",
    "io_inp": [
      4,
      5,
      -4,
      5,
      0,
      -4
    ],
    "io_out": [
      9,
      10,
      1,
      10,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [0, -7]",
    "output": "generated_output : list = sub_n([4, -3],4)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, 2, -5, 3, 5]\noutput : list = [75, -30, -45, -60, -75]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(mul_n([4, 2, -5, 3, 5],-3),5))))",
    "io_inp": [
      4,
      2,
      -5,
      3,
      5
    ],
    "io_out": [
      75,
      -30,
      -45,
      -60,
      -75
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(mul_n(input,-3),5))))"
  },
  {
    "input": "input : list = [4, -1, -4, -3, 0, 3]\noutput : list = [4, 3, 0, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([4, -1, -4, -3, 0, 3]))",
    "io_inp": [
      4,
      -1,
      -4,
      -3,
      0,
      3
    ],
    "io_out": [
      4,
      3,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -3, 1, 3, -2, -3]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(drop([-4, -3, 1, 3, -2, -3],4)))),3)",
    "io_inp": [
      -4,
      -3,
      1,
      3,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(drop(input,4)))),3)"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [-40]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(take([5, 4, 5],1)),3),-5))",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(take(input,1)),3),-5))"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [5, 4, 4]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(reverse([2, 1, 1]))),-3))",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(reverse(input))),-3))"
  },
  {
    "input": "input : list = [0, 1, 1, 1, 3]\noutput : list = [0, -5, -5, -5, -15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([0, 1, 1, 1, 3])),-5)",
    "io_inp": [
      0,
      1,
      1,
      1,
      3
    ],
    "io_out": [
      0,
      -5,
      -5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [4, 3, 1, 1, 0]\noutput : list = [0, 1, 1, 3, 4]",
    "output": "generated_output : list = take(reverse([4, 3, 1, 1, 0]),12)",
    "io_inp": [
      4,
      3,
      1,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),12)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(add_n([0, -2],-4))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [-15, 0, 15]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_des([5, 0, -5]))),30),3)",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      -15,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_des(input))),30),3)"
  },
  {
    "input": "input : list = [-3, -5, -1]\noutput : list = [-11, -9, -7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sub_n([-3, -5, -1],-2),3)),5))",
    "io_inp": [
      -3,
      -5,
      -1
    ],
    "io_out": [
      -11,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sub_n(input,-2),3)),5))"
  },
  {
    "input": "input : list = [-1, 3, 5, 0, -5, 1]\noutput : list = [5, 3, 1, 0, -1, -5]",
    "output": "generated_output : list = reverse(sort_asc([-1, 3, 5, 0, -5, 1]))",
    "io_inp": [
      -1,
      3,
      5,
      0,
      -5,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = add_n([3, -1],-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-36, -16]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(sort_asc([-1, 4])),-5),-4))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -36,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(sort_asc(input)),-5),-4))"
  },
  {
    "input": "input : list = [-1, -4, 1]\noutput : list = [9, 18, 3]",
    "output": "generated_output : list = take(mul_n(add_n([-1, -4, 1],-2),-3),8)",
    "io_inp": [
      -1,
      -4,
      1
    ],
    "io_out": [
      9,
      18,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-2),-3),8)"
  },
  {
    "input": "input : list = [5, 3, 3, 4, 2, 2]\noutput : list = [3, 3, 4, 4, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(reverse(sort_des([5, 3, 3, 4, 2, 2])))),1)",
    "io_inp": [
      5,
      3,
      3,
      4,
      2,
      2
    ],
    "io_out": [
      3,
      3,
      4,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(reverse(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(mul_n([5, -1],1)),2),3))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(mul_n(input,1)),2),3))"
  },
  {
    "input": "input : list = [-3, 2, -4, 2, -1, 0]\noutput : list = [11, 11, 19, 23, 31, 35]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sub_n([-3, 2, -4, 2, -1, 0],4)),-4)),3)",
    "io_inp": [
      -3,
      2,
      -4,
      2,
      -1,
      0
    ],
    "io_out": [
      11,
      11,
      19,
      23,
      31,
      35
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sub_n(input,4)),-4)),3)"
  },
  {
    "input": "input : list = [-5, -5, 0, 5]\noutput : list = [-1, -1, 4, 9]",
    "output": "generated_output : list = add_n([-5, -5, 0, 5],4)",
    "io_inp": [
      -5,
      -5,
      0,
      5
    ],
    "io_out": [
      -1,
      -1,
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, 3, -4, 4, -3]\noutput : list = [-18, -18, -16]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(sub_n([-4, 3, -4, 4, -3],5),2))),3)",
    "io_inp": [
      -4,
      3,
      -4,
      4,
      -3
    ],
    "io_out": [
      -18,
      -18,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(sub_n(input,5),2))),3)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n([-1, 2],-4)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, -5, 2, 3, -3]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(take(take([5, -5, 2, 3, -3],1),12),4))",
    "io_inp": [
      5,
      -5,
      2,
      3,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(input,1),12),4))"
  },
  {
    "input": "input : list = [4, -2, -1, -3, 5, 0]\noutput : list = [3, -1, -17, -21, -25, -29]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(sort_des([4, -2, -1, -3, 5, 0]),-4),4),1),24)",
    "io_inp": [
      4,
      -2,
      -1,
      -3,
      5,
      0
    ],
    "io_out": [
      3,
      -1,
      -17,
      -21,
      -25,
      -29
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(sort_des(input),-4),4),1),24)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = mul_n(reverse([-5, 4]),-1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-1, -5, -3]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc([-1, -5, -3]))",
    "io_inp": [
      -1,
      -5,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 4, 0, -2, -2, -5]\noutput : list = [-1, 2, 2, 4, 5, 8]",
    "output": "generated_output : list = reverse(sort_des(add_n(reverse(sort_asc([1, 4, 0, -2, -2, -5])),4)))",
    "io_inp": [
      1,
      4,
      0,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -1,
      2,
      2,
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(reverse(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-4, 4, 0, -1, -5]\noutput : list = [-10, -9, -6, -5, -1]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_des([-4, 4, 0, -1, -5])),-4)),1)",
    "io_inp": [
      -4,
      4,
      0,
      -1,
      -5
    ],
    "io_out": [
      -10,
      -9,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(sort_des(input)),-4)),1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [15]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(drop(sort_des([5, -3]),1)),-5))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(drop(sort_des(input),1)),-5))"
  },
  {
    "input": "input : list = [-4, -5, 3, 1, -4, -2]\noutput : list = [105, 125, -35, 5, 105, 65]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(mul_n([-4, -5, 3, 1, -4, -2],-4),5),33),-1),-5)",
    "io_inp": [
      -4,
      -5,
      3,
      1,
      -4,
      -2
    ],
    "io_out": [
      105,
      125,
      -35,
      5,
      105,
      65
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(mul_n(input,-4),5),33),-1),-5)"
  },
  {
    "input": "input : list = [4, -5, -1, 3, -4, 4]\noutput : list = [-16, 11, -1, -13, 8, -16]",
    "output": "generated_output : list = take(add_n(mul_n([4, -5, -1, 3, -4, 4],-3),-4),6)",
    "io_inp": [
      4,
      -5,
      -1,
      3,
      -4,
      4
    ],
    "io_out": [
      -16,
      11,
      -1,
      -13,
      8,
      -16
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,-3),-4),6)"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [-8, -1, -1]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc([4, 4, -3]),-5)),14))",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      -8,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(sort_asc(input),-5)),14))"
  },
  {
    "input": "input : list = [-5, 3, -3, -4, -1, 1]\noutput : list = [3, 1, -1, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, 3, -3, -4, -1, 1]))",
    "io_inp": [
      -5,
      3,
      -3,
      -4,
      -1,
      1
    ],
    "io_out": [
      3,
      1,
      -1,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [9, 1]",
    "output": "generated_output : list = sort_des(take(reverse(reverse(add_n([-3, 5],4))),2))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(reverse(add_n(input,4))),2))"
  },
  {
    "input": "input : list = [3, 5, 4, -3, 3, -1]\noutput : list = [-3, 9]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(drop([3, 5, 4, -3, 3, -1],4),-3),-1))",
    "io_inp": [
      3,
      5,
      4,
      -3,
      3,
      -1
    ],
    "io_out": [
      -3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(drop(input,4),-3),-1))"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [-9, -4, -4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(add_n([3, 3, -2],-5)))),2)",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      -9,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(add_n(input,-5)))),2)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n([3, 1],-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, -3, -2, 4, 5, 0]\noutput : list = [0, 1, 3, 3, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse([0, -3, -2, 4, 5, 0]),-3)))",
    "io_inp": [
      0,
      -3,
      -2,
      4,
      5,
      0
    ],
    "io_out": [
      0,
      1,
      3,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(input),-3)))"
  },
  {
    "input": "input : list = [-4, 4, -3]\noutput : list = [-2, 6, -1]",
    "output": "generated_output : list = add_n(add_n([-4, 4, -3],-3),5)",
    "io_inp": [
      -4,
      4,
      -3
    ],
    "io_out": [
      -2,
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),5)"
  },
  {
    "input": "input : list = [-1, 3, -5, 1, -3, 5]\noutput : list = [5, -3, 1, -5, 3, -1]",
    "output": "generated_output : list = reverse([-1, 3, -5, 1, -3, 5])",
    "io_inp": [
      -1,
      3,
      -5,
      1,
      -3,
      5
    ],
    "io_out": [
      5,
      -3,
      1,
      -5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4, -4]\noutput : list = [-5, -5, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n([-4, 4, -4],-4),-5)))",
    "io_inp": [
      -4,
      4,
      -4
    ],
    "io_out": [
      -5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(input,-4),-5)))"
  },
  {
    "input": "input : list = [-5, 3, -1, 0, 0, 0]\noutput : list = [8, 12, 4]",
    "output": "generated_output : list = take(add_n(add_n(reverse(take([-5, 3, -1, 0, 0, 0],3)),5),4),52)",
    "io_inp": [
      -5,
      3,
      -1,
      0,
      0,
      0
    ],
    "io_out": [
      8,
      12,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(take(input,3)),5),4),52)"
  },
  {
    "input": "input : list = [2, 1, 3, 1, 1, -5]\noutput : list = [1, 0, -1, -1, -1, -7]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des([2, 1, 3, 1, 1, -5]))),-2)",
    "io_inp": [
      2,
      1,
      3,
      1,
      1,
      -5
    ],
    "io_out": [
      1,
      0,
      -1,
      -1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [2, -5, -2]\noutput : list = [-1, 2, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(sub_n([2, -5, -2],-1),-3))))",
    "io_inp": [
      2,
      -5,
      -2
    ],
    "io_out": [
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(sub_n(input,-1),-3))))"
  },
  {
    "input": "input : list = [4, 5, -5, 1, 0, -5]\noutput : list = [1, 7, 6]",
    "output": "generated_output : list = sub_n(add_n(take(drop([4, 5, -5, 1, 0, -5],2),3),1),-5)",
    "io_inp": [
      4,
      5,
      -5,
      1,
      0,
      -5
    ],
    "io_out": [
      1,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(drop(input,2),3),1),-5)"
  },
  {
    "input": "input : list = [1, -2, -2, -4, 1, 4]\noutput : list = [8, 4, 4, -2, -2, -8]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sort_des([1, -2, -2, -4, 1, 4])),-2)))",
    "io_inp": [
      1,
      -2,
      -2,
      -4,
      1,
      4
    ],
    "io_out": [
      8,
      4,
      4,
      -2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [4, 1, -1, -1, 4]\noutput : list = [-16, -16, -4, 4, 4]",
    "output": "generated_output : list = reverse(mul_n(take(take(sort_asc([4, 1, -1, -1, 4]),12),22),-4))",
    "io_inp": [
      4,
      1,
      -1,
      -1,
      4
    ],
    "io_out": [
      -16,
      -16,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sort_asc(input),12),22),-4))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [4, 6]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n([-3, -1],3))),-1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(input,3))),-1)"
  },
  {
    "input": "input : list = [0, -1, 2, -3, -5, 5]\noutput : list = [-5, -2, 0, 1, 3, 5]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(reverse([0, -1, 2, -3, -5, 5]),-1))),13)",
    "io_inp": [
      0,
      -1,
      2,
      -3,
      -5,
      5
    ],
    "io_out": [
      -5,
      -2,
      0,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(reverse(input),-1))),13)"
  },
  {
    "input": "input : list = [4, -5, 1, 1, 5]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(take([4, -5, 1, 1, 5],1)),32)",
    "io_inp": [
      4,
      -5,
      1,
      1,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(input,1)),32)"
  },
  {
    "input": "input : list = [0, -2, -5, 1, 0]\noutput : list = [-2, -3, -3, -5, -8]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(reverse([0, -2, -5, 1, 0]),3))))",
    "io_inp": [
      0,
      -2,
      -5,
      1,
      0
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [4, -4, 0, -3]\noutput : list = [15, 30]",
    "output": "generated_output : list = mul_n(sub_n(drop([4, -4, 0, -3],2),3),-5)",
    "io_inp": [
      4,
      -4,
      0,
      -3
    ],
    "io_out": [
      15,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,2),3),-5)"
  },
  {
    "input": "input : list = [3, -4, 0, 0]\noutput : list = [-20, 8, -8, -8]",
    "output": "generated_output : list = mul_n(add_n([3, -4, 0, 0],2),-4)",
    "io_inp": [
      3,
      -4,
      0,
      0
    ],
    "io_out": [
      -20,
      8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),-4)"
  },
  {
    "input": "input : list = [-4, -1, 2, 4]\noutput : list = [-4, -1, 2, 4]",
    "output": "generated_output : list = sort_asc([-4, -1, 2, 4])",
    "io_inp": [
      -4,
      -1,
      2,
      4
    ],
    "io_out": [
      -4,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -1, 3, -4]\noutput : list = [-3, -3, -2, 1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(mul_n([2, 3, -1, 3, -4],-1)))),34)",
    "io_inp": [
      2,
      3,
      -1,
      3,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(mul_n(input,-1)))),34)"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(drop(sort_des([-1, 3, 1]),1))))",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(drop(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [14, -2]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des([-1, 3]),5),4),-2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      14,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(input),5),4),-2)"
  },
  {
    "input": "input : list = [2, 4, 1, 4]\noutput : list = [-7, -4, -4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(drop([2, 4, 1, 4],1),3))),-5)",
    "io_inp": [
      2,
      4,
      1,
      4
    ],
    "io_out": [
      -7,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(drop(input,1),3))),-5)"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(sort_asc(drop(drop([2, 2, 1],1),1)),-2)",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(drop(input,1),1)),-2)"
  },
  {
    "input": "input : list = [-1, 3, 1, -2, -4, -2]\noutput : list = [-3, -1, -1, 0, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(add_n([-1, 3, 1, -2, -4, -2],-4),5),33)))",
    "io_inp": [
      -1,
      3,
      1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1,
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(add_n(input,-4),5),33)))"
  },
  {
    "input": "input : list = [4, 0, -5, 5, 0]\noutput : list = [5, 4, 0, 0, -5]",
    "output": "generated_output : list = sort_des([4, 0, -5, 5, 0])",
    "io_inp": [
      4,
      0,
      -5,
      5,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, 3, 1, -5, 5]\noutput : list = [-20, -20, -20, -12, -4, 20]",
    "output": "generated_output : list = mul_n(take(take(sort_des(sort_asc([5, 5, 3, 1, -5, 5])),25),39),-4)",
    "io_inp": [
      5,
      5,
      3,
      1,
      -5,
      5
    ],
    "io_out": [
      -20,
      -20,
      -20,
      -12,
      -4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(sort_asc(input)),25),39),-4)"
  },
  {
    "input": "input : list = [4, -3, -4, 2, 0, -1]\noutput : list = [0, -7, -8]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(take([4, -3, -4, 2, 0, -1],3),5)),-4))",
    "io_inp": [
      4,
      -3,
      -4,
      2,
      0,
      -1
    ],
    "io_out": [
      0,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(take(input,3),5)),-4))"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(drop([2, -4, -1],1)))))",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [-4, -2, -4, 4, 2, 0]\noutput : list = [-7, -5, -7, 1, -1, -3]",
    "output": "generated_output : list = sub_n([-4, -2, -4, 4, 2, 0],3)",
    "io_inp": [
      -4,
      -2,
      -4,
      4,
      2,
      0
    ],
    "io_out": [
      -7,
      -5,
      -7,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, -1, 2, 4, 3]\noutput : list = [1, -9, -14, -19, -24]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sort_des([1, -1, 2, 4, 3])),-5),-1),3)",
    "io_inp": [
      1,
      -1,
      2,
      4,
      3
    ],
    "io_out": [
      1,
      -9,
      -14,
      -19,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sort_des(input)),-5),-1),3)"
  },
  {
    "input": "input : list = [-2, 0, -5, -5, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(sort_des([-2, 0, -5, -5, 1]),2),2)))",
    "io_inp": [
      -2,
      0,
      -5,
      -5,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(sort_des(input),2),2)))"
  },
  {
    "input": "input : list = [-2, -3, 1, -3, 4]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(reverse(add_n(take([-2, -3, 1, -3, 4],2),1)),5)",
    "io_inp": [
      -2,
      -3,
      1,
      -3,
      4
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(input,2),1)),5)"
  },
  {
    "input": "input : list = [-5, 4, -1, 3, -4, -5]\noutput : list = [-125, -125, -100, -25, 75, 100]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc([-5, 4, -1, 3, -4, -5])),5),5)",
    "io_inp": [
      -5,
      4,
      -1,
      3,
      -4,
      -5
    ],
    "io_out": [
      -125,
      -125,
      -100,
      -25,
      75,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(input)),5),5)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 3, 2, 1, 5, 1]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(take([2, 3, 2, 1, 5, 1],1)),-3)),1)",
    "io_inp": [
      2,
      3,
      2,
      1,
      5,
      1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(take(input,1)),-3)),1)"
  },
  {
    "input": "input : list = [-3, 1, -5, 2, -3]\noutput : list = [1, 5, -1, 6, 1]",
    "output": "generated_output : list = mul_n(sub_n([-3, 1, -5, 2, -3],-4),1)",
    "io_inp": [
      -3,
      1,
      -5,
      2,
      -3
    ],
    "io_out": [
      1,
      5,
      -1,
      6,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),1)"
  },
  {
    "input": "input : list = [-2, 0, -2, 5, -4]\noutput : list = [-1, 1, -1, 6, -3]",
    "output": "generated_output : list = sub_n([-2, 0, -2, 5, -4],-1)",
    "io_inp": [
      -2,
      0,
      -2,
      5,
      -4
    ],
    "io_out": [
      -1,
      1,
      -1,
      6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse([5, -2])",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -1, 3, 0, 1, 3]\noutput : list = [-2, -6, -8]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(take([-3, -1, 3, 0, 1, 3],3)),5)))",
    "io_inp": [
      -3,
      -1,
      3,
      0,
      1,
      3
    ],
    "io_out": [
      -2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(take(input,3)),5)))"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des([-2, -1, 0]),5),1),1)",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(input),5),1),1)"
  },
  {
    "input": "input : list = [1, -3, 4, 3, 2]\noutput : list = [-6, 2, 4, 6, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(mul_n([1, -3, 4, 3, 2],2)),1)),14)",
    "io_inp": [
      1,
      -3,
      4,
      3,
      2
    ],
    "io_out": [
      -6,
      2,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(mul_n(input,2)),1)),14)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(take(sub_n(sub_n(sort_des([4, 5]),-2),4),14),25)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(sort_des(input),-2),4),14),25)"
  },
  {
    "input": "input : list = [3, -3, 1, -3, 5, -4]\noutput : list = [-3, -2, -2, 2, 4, 6]",
    "output": "generated_output : list = reverse(take(add_n(sort_des([3, -3, 1, -3, 5, -4]),1),19))",
    "io_inp": [
      3,
      -3,
      1,
      -3,
      5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(input),1),19))"
  },
  {
    "input": "input : list = [3, -2, 2]\noutput : list = [1, -4, 0]",
    "output": "generated_output : list = add_n([3, -2, 2],-2)",
    "io_inp": [
      3,
      -2,
      2
    ],
    "io_out": [
      1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = add_n(take(sort_asc([1, -3]),9),2)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),9),2)"
  },
  {
    "input": "input : list = [0, 4, -3, 5, 0]\noutput : list = [-32, -24, 8, 8, 32]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(mul_n([0, 4, -3, 5, 0],-4))),-4),2)",
    "io_inp": [
      0,
      4,
      -3,
      5,
      0
    ],
    "io_out": [
      -32,
      -24,
      8,
      8,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(mul_n(input,-4))),-4),2)"
  },
  {
    "input": "input : list = [-5, -3, 0, 4, 4, 2]\noutput : list = [2, 2, 0, -2, -5, -7]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n(sub_n([-5, -3, 0, 4, 4, 2],4),2))))",
    "io_inp": [
      -5,
      -3,
      0,
      4,
      4,
      2
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(sub_n(input,4),2))))"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(take([4, 0, -1],1),1)),1),-1)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(take(input,1),1)),1),-1)"
  },
  {
    "input": "input : list = [4, 4, 2, 1, -4]\noutput : list = [-64, 16, 32, 64, 64]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(reverse([4, 4, 2, 1, -4])),-4),-4))",
    "io_inp": [
      4,
      4,
      2,
      1,
      -4
    ],
    "io_out": [
      -64,
      16,
      32,
      64,
      64
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(reverse(input)),-4),-4))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-1, -7]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des([4, -2])),5),29)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(input)),5),29)"
  },
  {
    "input": "input : list = [5, 5, -5, 1]\noutput : list = [-9, -3, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([5, 5, -5, 1],1)),4)",
    "io_inp": [
      5,
      5,
      -5,
      1
    ],
    "io_out": [
      -9,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,1)),4)"
  },
  {
    "input": "input : list = [-3, 5, -3, -1]\noutput : list = [-25, 5, 15, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(reverse([-3, 5, -3, -1]),-5),24)))",
    "io_inp": [
      -3,
      5,
      -3,
      -1
    ],
    "io_out": [
      -25,
      5,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(reverse(input),-5),24)))"
  },
  {
    "input": "input : list = [-4, 4, -1, -3]\noutput : list = [2, -3, -5, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(sub_n([-4, 4, -1, -3],-1)))),3)",
    "io_inp": [
      -4,
      4,
      -1,
      -3
    ],
    "io_out": [
      2,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(sub_n(input,-1)))),3)"
  },
  {
    "input": "input : list = [3, 0, -4, 4, -3, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(take([3, 0, -4, 4, -3, 1],2))",
    "io_inp": [
      3,
      0,
      -4,
      4,
      -3,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-5, -1, 2, 0, -1]\noutput : list = [-25, -5, 10, 0, -5]",
    "output": "generated_output : list = mul_n([-5, -1, 2, 0, -1],5)",
    "io_inp": [
      -5,
      -1,
      2,
      0,
      -1
    ],
    "io_out": [
      -25,
      -5,
      10,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-1, -2, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sub_n([4, 0, -1],-2)))),-1)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sub_n(input,-2)))),-1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc([5, -4]))))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [-3, 5, 4, -3, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(take([-3, 5, 4, -3, 2],1),-5),27),1))",
    "io_inp": [
      -3,
      5,
      4,
      -3,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(take(input,1),-5),27),1))"
  },
  {
    "input": "input : list = [5, -3, 2, 5]\noutput : list = [-12, -3, 12, -12]",
    "output": "generated_output : list = add_n(mul_n(reverse([5, -3, 2, 5]),-3),3)",
    "io_inp": [
      5,
      -3,
      2,
      5
    ],
    "io_out": [
      -12,
      -3,
      12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),-3),3)"
  },
  {
    "input": "input : list = [-3, -1, 4, -4, -5, 1]\noutput : list = [-22, -18, -14, -6, 2, 14]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(mul_n([-3, -1, 4, -4, -5, 1],4)),2)))",
    "io_inp": [
      -3,
      -1,
      4,
      -4,
      -5,
      1
    ],
    "io_out": [
      -22,
      -18,
      -14,
      -6,
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(mul_n(input,4)),2)))"
  },
  {
    "input": "input : list = [1, -4, 2, -4, 4, 4]\noutput : list = [-24, -24, 0, -18, 0, -15]",
    "output": "generated_output : list = reverse(mul_n(add_n([1, -4, 2, -4, 4, 4],4),-3))",
    "io_inp": [
      1,
      -4,
      2,
      -4,
      4,
      4
    ],
    "io_out": [
      -24,
      -24,
      0,
      -18,
      0,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,4),-3))"
  },
  {
    "input": "input : list = [2, 0, -2, -2]\noutput : list = [2, 0, -2, -2]",
    "output": "generated_output : list = reverse(sort_asc([2, 0, -2, -2]))",
    "io_inp": [
      2,
      0,
      -2,
      -2
    ],
    "io_out": [
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 2, 1, -2, 5, 2]\noutput : list = [40, 20, -20]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(take([-1, 2, 1, -2, 5, 2],3),5),4),19))",
    "io_inp": [
      -1,
      2,
      1,
      -2,
      5,
      2
    ],
    "io_out": [
      40,
      20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(take(input,3),5),4),19))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-95, 5]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(mul_n([0, 5],4),5)),-5),-5)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -95,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(mul_n(input,4),5)),-5),-5)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3, 4, -4, -2]\noutput : list = [1, 0, -5, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(drop(sub_n([-5, 3, 4, -4, -2],3),1))))",
    "io_inp": [
      -5,
      3,
      4,
      -4,
      -2
    ],
    "io_out": [
      1,
      0,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(drop(sub_n(input,3),1))))"
  },
  {
    "input": "input : list = [1, 0, -1, -1, 5]\noutput : list = [-1, -1, 0, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc([1, 0, -1, -1, 5])),27)))",
    "io_inp": [
      1,
      0,
      -1,
      -1,
      5
    ],
    "io_out": [
      -1,
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc(input)),27)))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-20, -20]",
    "output": "generated_output : list = take(sort_des(mul_n(take(sort_des([5, 5]),10),-4)),29)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(sort_des(input),10),-4)),29)"
  },
  {
    "input": "input : list = [-4, -3, 3, 5]\noutput : list = [12, 10, -2, -6]",
    "output": "generated_output : list = sort_des(add_n(mul_n([-4, -3, 3, 5],-2),4))",
    "io_inp": [
      -4,
      -3,
      3,
      5
    ],
    "io_out": [
      12,
      10,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,-2),4))"
  },
  {
    "input": "input : list = [-2, -4, -3, -4, -4]\noutput : list = [16, 16, 13, 16, 10]",
    "output": "generated_output : list = reverse(take(sub_n(take(mul_n([-2, -4, -3, -4, -4],-3),7),-4),45))",
    "io_inp": [
      -2,
      -4,
      -3,
      -4,
      -4
    ],
    "io_out": [
      16,
      16,
      13,
      16,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(mul_n(input,-3),7),-4),45))"
  },
  {
    "input": "input : list = [4, -4, 3]\noutput : list = [0, -56, -64]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n([4, -4, 3],-4),4))),-2)",
    "io_inp": [
      4,
      -4,
      3
    ],
    "io_out": [
      0,
      -56,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n(input,-4),4))),-2)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [7, 5, 1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(add_n([0, -4, 2],1)))),-4)",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(add_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [5, -3, 5, 1, -1]\noutput : list = [4, -4, 4, 0, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse([5, -3, 5, 1, -1])),1)",
    "io_inp": [
      5,
      -3,
      5,
      1,
      -1
    ],
    "io_out": [
      4,
      -4,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),1)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [23, 14]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(add_n([1, 4],3),7),3)),-2)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      23,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(add_n(input,3),7),3)),-2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [6, -1]",
    "output": "generated_output : list = sub_n([2, -5],-4)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 2, 4, -4, 5]\noutput : list = [-4, -10, -13]",
    "output": "generated_output : list = take(sub_n(drop(sort_des(mul_n([-2, 2, 4, -4, 5],-3)),2),-2),47)",
    "io_inp": [
      -2,
      2,
      4,
      -4,
      5
    ],
    "io_out": [
      -4,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(sort_des(mul_n(input,-3)),2),-2),47)"
  },
  {
    "input": "input : list = [-5, 5, -5, -2, 0, 0]\noutput : list = [-25, 0, 0, 10, 25, 25]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([-5, 5, -5, -2, 0, 0],1),-5))",
    "io_inp": [
      -5,
      5,
      -5,
      -2,
      0,
      0
    ],
    "io_out": [
      -25,
      0,
      0,
      10,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,1),-5))"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 3, -1],1)",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -5, 3, 3, -3, 4]\noutput : list = [1, -1, 7, 7, 1, 8]",
    "output": "generated_output : list = mul_n(add_n([-3, -5, 3, 3, -3, 4],4),1)",
    "io_inp": [
      -3,
      -5,
      3,
      3,
      -3,
      4
    ],
    "io_out": [
      1,
      -1,
      7,
      7,
      1,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),1)"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [3, 3, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(mul_n([0, 1, 0],-2),3))))",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(mul_n(input,-2),3))))"
  },
  {
    "input": "input : list = [1, 4, 2, 0, 1]\noutput : list = [-9, -27]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(take([1, 4, 2, 0, 1],2),-2),4),-5),3)",
    "io_inp": [
      1,
      4,
      2,
      0,
      1
    ],
    "io_out": [
      -9,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(take(input,2),-2),4),-5),3)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse([3, 4])",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3, -1, 0, -5]\noutput : list = [-5, -3, -3, -1, 0]",
    "output": "generated_output : list = sort_asc([-3, -3, -1, 0, -5])",
    "io_inp": [
      -3,
      -3,
      -1,
      0,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -5, -2, 1]\noutput : list = [6, 12, 18, 18]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(sort_des([-5, -5, -2, 1]),4),-2)))",
    "io_inp": [
      -5,
      -5,
      -2,
      1
    ],
    "io_out": [
      6,
      12,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(sort_des(input),4),-2)))"
  },
  {
    "input": "input : list = [5, 3, 3, 0]\noutput : list = [4, 2, 2, -1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(reverse([5, 3, 3, 0])),-1)))",
    "io_inp": [
      5,
      3,
      3,
      0
    ],
    "io_out": [
      4,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = drop([-4, -4, 3],1)",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(reverse(reverse([-5, -4, 3])),23)))",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(reverse(reverse(input)),23)))"
  },
  {
    "input": "input : list = [3, -1, -5, -2, 3]\noutput : list = [4, 4, 0, -1, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n([3, -1, -5, -2, 3],-4)))),3)",
    "io_inp": [
      3,
      -1,
      -5,
      -2,
      3
    ],
    "io_out": [
      4,
      4,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n(input,-4)))),3)"
  },
  {
    "input": "input : list = [2, -2, -1, 3]\noutput : list = [-5, -21, -25, -9]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(add_n([2, -2, -1, 3],-5),9)),4),-3)",
    "io_inp": [
      2,
      -2,
      -1,
      3
    ],
    "io_out": [
      -5,
      -21,
      -25,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(add_n(input,-5),9)),4),-3)"
  },
  {
    "input": "input : list = [2, 3, -5, 3, 1, -3]\noutput : list = [3, 3, 2, 1, -3, -5]",
    "output": "generated_output : list = sort_des([2, 3, -5, 3, 1, -3])",
    "io_inp": [
      2,
      3,
      -5,
      3,
      1,
      -3
    ],
    "io_out": [
      3,
      3,
      2,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [3, 15]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(mul_n([-5, 1],-1),2),-5),27))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      3,
      15
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(mul_n(input,-1),2),-5),27))"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [5, -15, -15]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(sort_des([0, 0, -4])),22),3),-5)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(sort_des(input)),22),3),-5)"
  },
  {
    "input": "input : list = [-4, 1, 0, 4]\noutput : list = [-24, -6, 0, 24]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_des(mul_n([-4, 1, 0, 4],-3)),7)),2)",
    "io_inp": [
      -4,
      1,
      0,
      4
    ],
    "io_out": [
      -24,
      -6,
      0,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_des(mul_n(input,-3)),7)),2)"
  },
  {
    "input": "input : list = [2, -3, 5, 0, 5]\noutput : list = [10, 10, 7, 5, 2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(reverse([2, -3, 5, 0, 5]),-3),-2)))",
    "io_inp": [
      2,
      -3,
      5,
      0,
      5
    ],
    "io_out": [
      10,
      10,
      7,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(reverse(input),-3),-2)))"
  },
  {
    "input": "input : list = [-4, -1, -3]\noutput : list = [-16, -4, -12]",
    "output": "generated_output : list = mul_n([-4, -1, -3],4)",
    "io_inp": [
      -4,
      -1,
      -3
    ],
    "io_out": [
      -16,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, 0, 5, 3]\noutput : list = [4, 9]",
    "output": "generated_output : list = take(sub_n(take(take(drop([-2, 0, 5, 3],1),2),6),-4),43)",
    "io_inp": [
      -2,
      0,
      5,
      3
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(drop(input,1),2),6),-4),43)"
  },
  {
    "input": "input : list = [1, -4, -3, 4]\noutput : list = [-1, -4, -8, -9]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(add_n([1, -4, -3, 4],-5))),8))",
    "io_inp": [
      1,
      -4,
      -3,
      4
    ],
    "io_out": [
      -1,
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(add_n(input,-5))),8))"
  },
  {
    "input": "input : list = [0, 5, 3]\noutput : list = [24, 16, 4]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n([0, 5, 3],4),7)),-4)",
    "io_inp": [
      0,
      5,
      3
    ],
    "io_out": [
      24,
      16,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(input,4),7)),-4)"
  },
  {
    "input": "input : list = [3, -2, -3, -1, -3]\noutput : list = [3, -1, -2, -3, -3]",
    "output": "generated_output : list = sort_des([3, -2, -3, -1, -3])",
    "io_inp": [
      3,
      -2,
      -3,
      -1,
      -3
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [15, 6]",
    "output": "generated_output : list = mul_n(sort_des(reverse([2, 5])),3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),3)"
  },
  {
    "input": "input : list = [0, 1, -5]\noutput : list = [1, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc([0, 1, -5]))",
    "io_inp": [
      0,
      1,
      -5
    ],
    "io_out": [
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -4, 4, 2, 5, 1]\noutput : list = [-11, -9, -5, -3, 7, 7]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([-4, -4, 4, 2, 5, 1]),-2),1)",
    "io_inp": [
      -4,
      -4,
      4,
      2,
      5,
      1
    ],
    "io_out": [
      -11,
      -9,
      -5,
      -3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-2),1)"
  },
  {
    "input": "input : list = [0, -1, 2]\noutput : list = [0, -3, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse([0, -1, 2]),-1),1)",
    "io_inp": [
      0,
      -1,
      2
    ],
    "io_out": [
      0,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-1),1)"
  },
  {
    "input": "input : list = [0, -4, 1, -3, 3, -4]\noutput : list = [0, -8, 2, -6, 6, -8]",
    "output": "generated_output : list = mul_n([0, -4, 1, -3, 3, -4],2)",
    "io_inp": [
      0,
      -4,
      1,
      -3,
      3,
      -4
    ],
    "io_out": [
      0,
      -8,
      2,
      -6,
      6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(sort_asc([-1, 1])),-2),3),3)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(sort_asc(input)),-2),3),3)"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [20, -5]",
    "output": "generated_output : list = mul_n(drop([-3, -4, 1],1),-5)",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-1, 5, -3, 1, 2]\noutput : list = [-3, -1, 1, 2, 5]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(sort_asc([-1, 5, -3, 1, 2])))))",
    "io_inp": [
      -1,
      5,
      -3,
      1,
      2
    ],
    "io_out": [
      -3,
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, 1, -1, -5, -2, 0]\noutput : list = [2, 1, 0, -3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(drop([1, 1, -1, -5, -2, 0],2),4)),2))",
    "io_inp": [
      1,
      1,
      -1,
      -5,
      -2,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(drop(input,2),4)),2))"
  },
  {
    "input": "input : list = [5, -2, -4, -5, 5, -2]\noutput : list = [-4, -5, 5, -2]",
    "output": "generated_output : list = reverse(reverse(drop([5, -2, -4, -5, 5, -2],2)))",
    "io_inp": [
      5,
      -2,
      -4,
      -5,
      5,
      -2
    ],
    "io_out": [
      -4,
      -5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [2, -3, 0, 0]\noutput : list = [11, 1, 1, -14]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(mul_n([2, -3, 0, 0],5)),4),-5),1)",
    "io_inp": [
      2,
      -3,
      0,
      0
    ],
    "io_out": [
      11,
      1,
      1,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(mul_n(input,5)),4),-5),1)"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [-10, -4, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(reverse([2, -2, 5]),12)),-2))",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      -10,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(reverse(input),12)),-2))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-16, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n([-3, 0],5))),5),-4)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -16,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n(input,5))),5),-4)"
  },
  {
    "input": "input : list = [2, 3, -2, 5, 2]\noutput : list = [5, 3, 2, 2, -2]",
    "output": "generated_output : list = sort_des([2, 3, -2, 5, 2])",
    "io_inp": [
      2,
      3,
      -2,
      5,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, -4, 3, -2, 0]\noutput : list = [-2, -2, 7]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(take([-4, 5, -4, 3, -2, 0],3),-2)),43))",
    "io_inp": [
      -4,
      5,
      -4,
      3,
      -2,
      0
    ],
    "io_out": [
      -2,
      -2,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(take(input,3),-2)),43))"
  },
  {
    "input": "input : list = [-4, 2, 4, 5, 5]\noutput : list = [5, 5, 4, 2, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-4, 2, 4, 5, 5])))",
    "io_inp": [
      -4,
      2,
      4,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [1, 3, 4, -2, -3, 1]\noutput : list = [-4, -20, -16, 8, 4, -4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(take(sub_n([1, 3, 4, -2, -3, 1],-2),7),4)),4)",
    "io_inp": [
      1,
      3,
      4,
      -2,
      -3,
      1
    ],
    "io_out": [
      -4,
      -20,
      -16,
      8,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(take(sub_n(input,-2),7),4)),4)"
  },
  {
    "input": "input : list = [2, -1, -3, -3]\noutput : list = [0, -3, -5, -5]",
    "output": "generated_output : list = sub_n([2, -1, -3, -3],2)",
    "io_inp": [
      2,
      -1,
      -3,
      -3
    ],
    "io_out": [
      0,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, -1, 1, 2, 5, -2]\noutput : list = [-22, -10, -6, 2, 6, 18]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(mul_n([-5, -1, 1, 2, 5, -2],-4),14),-2)))",
    "io_inp": [
      -5,
      -1,
      1,
      2,
      5,
      -2
    ],
    "io_out": [
      -22,
      -10,
      -6,
      2,
      6,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(mul_n(input,-4),14),-2)))"
  },
  {
    "input": "input : list = [-5, 4, 1, -1]\noutput : list = [5, -10, -20, -40]",
    "output": "generated_output : list = mul_n(sort_des(take(reverse(sub_n([-5, 4, 1, -1],3)),10)),5)",
    "io_inp": [
      -5,
      4,
      1,
      -1
    ],
    "io_out": [
      5,
      -10,
      -20,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(reverse(sub_n(input,3)),10)),5)"
  },
  {
    "input": "input : list = [-5, -5, 4, -4, 4, -5]\noutput : list = [-20, -20, -18, -2, -2]",
    "output": "generated_output : list = take(sort_asc(mul_n(add_n(drop([-5, -5, 4, -4, 4, -5],1),-5),2)),47)",
    "io_inp": [
      -5,
      -5,
      4,
      -4,
      4,
      -5
    ],
    "io_out": [
      -20,
      -20,
      -18,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(add_n(drop(input,1),-5),2)),47)"
  },
  {
    "input": "input : list = [5, 2, 2, -2, -1, 5]\noutput : list = [4, 1, 1, -3, -2, 4]",
    "output": "generated_output : list = sub_n([5, 2, 2, -2, -1, 5],1)",
    "io_inp": [
      5,
      2,
      2,
      -2,
      -1,
      5
    ],
    "io_out": [
      4,
      1,
      1,
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-1, 24]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sort_asc([0, -5]),-5))),-1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -1,
      24
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sort_asc(input),-5))),-1)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [52, 47]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(drop([2, 4, 5],1)),5),5),-2)",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      52,
      47
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(drop(input,1)),5),5),-2)"
  },
  {
    "input": "input : list = [-3, 5, 0, -5, -2, 1]\noutput : list = [15, 0, -25]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(take([-3, 5, 0, -5, -2, 1],3)),-5)),42)",
    "io_inp": [
      -3,
      5,
      0,
      -5,
      -2,
      1
    ],
    "io_out": [
      15,
      0,
      -25
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(take(input,3)),-5)),42)"
  },
  {
    "input": "input : list = [0, -5, -1, 3, -3, 4]\noutput : list = [-5, -3, -1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_des([0, -5, -1, 3, -3, 4])),9)))",
    "io_inp": [
      0,
      -5,
      -1,
      3,
      -3,
      4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_des(input)),9)))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des([3, 0])",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2, 2, 5, 5, -5]\noutput : list = [-4, -4, -4, -7, -7, -14]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc([5, 2, 2, 5, 5, -5])),-4),5)",
    "io_inp": [
      5,
      2,
      2,
      5,
      5,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -7,
      -7,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(input)),-4),5)"
  },
  {
    "input": "input : list = [-1, -5, 0, 4, -2, 4]\noutput : list = [8, 2, 0, -2, -10, -10]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_asc(sort_des([-1, -5, 0, 4, -2, 4])),-2),-2))",
    "io_inp": [
      -1,
      -5,
      0,
      4,
      -2,
      4
    ],
    "io_out": [
      8,
      2,
      0,
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_asc(sort_des(input)),-2),-2))"
  },
  {
    "input": "input : list = [-2, 1, 2, -4, -1]\noutput : list = [-2, -4, -8, -10]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(sort_des([-2, 1, 2, -4, -1]),4),2),-2),-4)",
    "io_inp": [
      -2,
      1,
      2,
      -4,
      -1
    ],
    "io_out": [
      -2,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(sort_des(input),4),2),-2),-4)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [45, -18]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(mul_n([-2, 5],-3))),-3),23)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      45,
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(mul_n(input,-3))),-3),23)"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [-7, -3, -3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(reverse([-4, 0, 0])),-2),1))",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      -7,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(reverse(input)),-2),1))"
  },
  {
    "input": "input : list = [0, 0, 4, 5, -3, -5]\noutput : list = [-1, 1, 9]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(drop([0, 0, 4, 5, -3, -5],3),-4))))",
    "io_inp": [
      0,
      0,
      4,
      5,
      -3,
      -5
    ],
    "io_out": [
      -1,
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(drop(input,3),-4))))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [2, 2]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n([5, 5],1),-3)),2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(input,1),-3)),2)"
  },
  {
    "input": "input : list = [-3, -4, 3]\noutput : list = [-21]",
    "output": "generated_output : list = mul_n(mul_n(add_n(drop(drop([-3, -4, 3],1),1),4),-1),3)",
    "io_inp": [
      -3,
      -4,
      3
    ],
    "io_out": [
      -21
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(drop(drop(input,1),1),4),-1),3)"
  },
  {
    "input": "input : list = [-5, 5, 0, 5, -5, -2]\noutput : list = [20, 20, 8, 0, -20, -20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n([-5, 5, 0, 5, -5, -2],-4)))",
    "io_inp": [
      -5,
      5,
      0,
      5,
      -5,
      -2
    ],
    "io_out": [
      20,
      20,
      8,
      0,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-4, 4, 4, -1, -1, 0]\noutput : list = [16, 16, 0, -4, -4, -16]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n([-4, 4, 4, -1, -1, 0],4)),2),-2)",
    "io_inp": [
      -4,
      4,
      4,
      -1,
      -1,
      0
    ],
    "io_out": [
      16,
      16,
      0,
      -4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(input,4)),2),-2)"
  },
  {
    "input": "input : list = [-1, 4, 1, -1, -5]\noutput : list = [12, 9, 7, 7, 3]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(sort_asc([-1, 4, 1, -1, -5]))),3),5)",
    "io_inp": [
      -1,
      4,
      1,
      -1,
      -5
    ],
    "io_out": [
      12,
      9,
      7,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(sort_asc(input))),3),5)"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sub_n(drop([5, -5, -3],1),-3)",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [-3, -3, -2, -4]\noutput : list = [29, 21, 25, 25]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(reverse([-3, -3, -2, -4]),2),-4),4),-5)",
    "io_inp": [
      -3,
      -3,
      -2,
      -4
    ],
    "io_out": [
      29,
      21,
      25,
      25
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(reverse(input),2),-4),4),-5)"
  },
  {
    "input": "input : list = [-4, -3, -2]\noutput : list = [-7, -6, -5]",
    "output": "generated_output : list = add_n([-4, -3, -2],-3)",
    "io_inp": [
      -4,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, 1, -4, 5, -2, 1]\noutput : list = [1, 3, 5, 6, 6, 10]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc([0, 1, -4, 5, -2, 1]))),-5)",
    "io_inp": [
      0,
      1,
      -4,
      5,
      -2,
      1
    ],
    "io_out": [
      1,
      3,
      5,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [25, -5]",
    "output": "generated_output : list = mul_n([-5, 1],-5)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 0, 0, 5]\noutput : list = [0, -40, -40, -24]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(add_n([2, 0, 0, 5],-5),8),-2)),-4)",
    "io_inp": [
      2,
      0,
      0,
      5
    ],
    "io_out": [
      0,
      -40,
      -40,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(add_n(input,-5),8),-2)),-4)"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [-19, 13, 21]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(sort_asc([3, 5, -5]),3),4),1))",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      -19,
      13,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(sort_asc(input),3),4),1))"
  },
  {
    "input": "input : list = [-3, -1, 2, 2]\noutput : list = [-1, 2, 2]",
    "output": "generated_output : list = mul_n(drop([-3, -1, 2, 2],1),1)",
    "io_inp": [
      -3,
      -1,
      2,
      2
    ],
    "io_out": [
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [0, -1, -2, 3, -2, 4]\noutput : list = [-8, -5, 4, 7, 10, 10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(mul_n([0, -1, -2, 3, -2, 4],-3),-4)),3),-3)",
    "io_inp": [
      0,
      -1,
      -2,
      3,
      -2,
      4
    ],
    "io_out": [
      -8,
      -5,
      4,
      7,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(mul_n(input,-3),-4)),3),-3)"
  },
  {
    "input": "input : list = [-2, 2, 5]\noutput : list = [11]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(take([-2, 2, 5],1),-5),20),1))",
    "io_inp": [
      -2,
      2,
      5
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(take(input,1),-5),20),1))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [4, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(reverse([-3, -1]),4)),-4))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(reverse(input),4)),-4))"
  },
  {
    "input": "input : list = [0, 3, 3, -4, 0]\noutput : list = [-2, -2, -5, -5, -9]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse([0, 3, 3, -4, 0]),1)),-5))",
    "io_inp": [
      0,
      3,
      3,
      -4,
      0
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(reverse(input),1)),-5))"
  },
  {
    "input": "input : list = [2, -4, 2, 5, 3]\noutput : list = [-4, 2, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([2, -4, 2, 5, 3])",
    "io_inp": [
      2,
      -4,
      2,
      5,
      3
    ],
    "io_out": [
      -4,
      2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, -5, -4]\noutput : list = [-23, 13, -27, -23]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(mul_n([-4, 5, -5, -4],4),5),1),24),-1)",
    "io_inp": [
      -4,
      5,
      -5,
      -4
    ],
    "io_out": [
      -23,
      13,
      -27,
      -23
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(mul_n(input,4),5),1),24),-1)"
  },
  {
    "input": "input : list = [2, 0, 0]\noutput : list = [6, 4, 4]",
    "output": "generated_output : list = add_n([2, 0, 0],4)",
    "io_inp": [
      2,
      0,
      0
    ],
    "io_out": [
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-4, 5, 0, 3, 2]\noutput : list = [-9, -3, 0, 6, 18]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(sub_n([-4, 5, 0, 3, 2],2),-1),15),3))",
    "io_inp": [
      -4,
      5,
      0,
      3,
      2
    ],
    "io_out": [
      -9,
      -3,
      0,
      6,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(sub_n(input,2),-1),15),3))"
  },
  {
    "input": "input : list = [3, 0, 2, 2]\noutput : list = [-43, -28, -28, 2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(mul_n(mul_n([3, 0, 2, 2],5),-3),2)))",
    "io_inp": [
      3,
      0,
      2,
      2
    ],
    "io_out": [
      -43,
      -28,
      -28,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(mul_n(mul_n(input,5),-3),2)))"
  },
  {
    "input": "input : list = [-2, -3, -4, 1, -1]\noutput : list = [35, 30, 25, 20, 10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(reverse(sub_n([-2, -3, -4, 1, -1],3)),-5)))",
    "io_inp": [
      -2,
      -3,
      -4,
      1,
      -1
    ],
    "io_out": [
      35,
      30,
      25,
      20,
      10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(reverse(sub_n(input,3)),-5)))"
  },
  {
    "input": "input : list = [-1, 4, -3, 1, 5]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_des([-1, 4, -3, 1, 5])),-4)),2)",
    "io_inp": [
      -1,
      4,
      -3,
      1,
      5
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(sort_des(input)),-4)),2)"
  },
  {
    "input": "input : list = [-5, -3, 1, -1, -5]\noutput : list = [-20]",
    "output": "generated_output : list = drop(mul_n([-5, -3, 1, -1, -5],4),4)",
    "io_inp": [
      -5,
      -3,
      1,
      -1,
      -5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,4),4)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse([0, 0])),-5))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(input)),-5))"
  },
  {
    "input": "input : list = [5, -5, 4, -2]\noutput : list = [-3, 3, -6, 4]",
    "output": "generated_output : list = sub_n(reverse([5, -5, 4, -2]),1)",
    "io_inp": [
      5,
      -5,
      4,
      -2
    ],
    "io_out": [
      -3,
      3,
      -6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, 1, -1, 2, -3, 0]\noutput : list = [2, 1, 0, -1, -3, -4]",
    "output": "generated_output : list = take(reverse(sort_asc([-4, 1, -1, 2, -3, 0])),9)",
    "io_inp": [
      -4,
      1,
      -1,
      2,
      -3,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),9)"
  },
  {
    "input": "input : list = [5, 0, 0]\noutput : list = [3, 8, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(mul_n([5, 0, 0],-1),-5))),-3)",
    "io_inp": [
      5,
      0,
      0
    ],
    "io_out": [
      3,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(mul_n(input,-1),-5))),-3)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_des([-2, -2])),5),2))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sort_des(input)),5),2))"
  },
  {
    "input": "input : list = [-1, 1, 0, 5, -5, -5]\noutput : list = [-1, 0, 1, 5]",
    "output": "generated_output : list = sort_asc(take([-1, 1, 0, 5, -5, -5],4))",
    "io_inp": [
      -1,
      1,
      0,
      5,
      -5,
      -5
    ],
    "io_out": [
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,4))"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [3, 1, 8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(add_n([3, -4, -2],1),-1),1),-4))",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      3,
      1,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(add_n(input,1),-1),1),-4))"
  },
  {
    "input": "input : list = [0, 3, 4, -2]\noutput : list = [2, 5, 6, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(reverse([0, 3, 4, -2]),4),-1),-3))",
    "io_inp": [
      0,
      3,
      4,
      -2
    ],
    "io_out": [
      2,
      5,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(reverse(input),4),-1),-3))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [8, 4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(sub_n([5, 3],5),8),-3),2),2)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(sub_n(input,5),8),-3),2),2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-12, 20]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(sort_des([3, -5])),-4),26))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -12,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(sort_des(input)),-4),26))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-36, -8]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(reverse([-4, 3]))),5),4)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -36,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(reverse(input))),5),4)"
  },
  {
    "input": "input : list = [-1, 4, -1, -2, 5]\noutput : list = [1, 2, 2, 7, 8]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des([-1, 4, -1, -2, 5])),-3),44)",
    "io_inp": [
      -1,
      4,
      -1,
      -2,
      5
    ],
    "io_out": [
      1,
      2,
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(input)),-3),44)"
  },
  {
    "input": "input : list = [-3, -2, -2, -4, 1]\noutput : list = [2, -1, -1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(sub_n([-3, -2, -2, -4, 1],3)),-4)))",
    "io_inp": [
      -3,
      -2,
      -2,
      -4,
      1
    ],
    "io_out": [
      2,
      -1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(sub_n(input,3)),-4)))"
  },
  {
    "input": "input : list = [-2, -2, 4, 5]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(drop([-2, -2, 4, 5],2),3),5),-3))",
    "io_inp": [
      -2,
      -2,
      4,
      5
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(drop(input,2),3),5),-3))"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop(mul_n([4, -1, 2],2),1)",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,2),1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-2, -9]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc([4, -3])),-1),-5)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(input)),-1),-5)"
  },
  {
    "input": "input : list = [2, 3, -5, 5, 4]\noutput : list = [-3, -2, -10, 0, -1]",
    "output": "generated_output : list = sub_n([2, 3, -5, 5, 4],5)",
    "io_inp": [
      2,
      3,
      -5,
      5,
      4
    ],
    "io_out": [
      -3,
      -2,
      -10,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(reverse([4, 3])),8),2))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(reverse(input)),8),2))"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [-32, -32, -12]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(reverse([2, 2, -3]),-2),4)),-4)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      -32,
      -32,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(reverse(input),-2),4)),-4)"
  },
  {
    "input": "input : list = [4, -3, 1, 3]\noutput : list = [-12, -9, -3, 9]",
    "output": "generated_output : list = mul_n(sort_des([4, -3, 1, 3]),-3)",
    "io_inp": [
      4,
      -3,
      1,
      3
    ],
    "io_out": [
      -12,
      -9,
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-2, -5, 1, -4, -2, -3]\noutput : list = [5, 4, 3, 2, 2, -1]",
    "output": "generated_output : list = mul_n(sort_asc([-2, -5, 1, -4, -2, -3]),-1)",
    "io_inp": [
      -2,
      -5,
      1,
      -4,
      -2,
      -3
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sort_asc([-2, -1, -5]))),-5),-4)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(sort_asc(input))),-5),-4)"
  },
  {
    "input": "input : list = [4, -4, 4, 0]\noutput : list = [2, 6, -2, 6]",
    "output": "generated_output : list = reverse(add_n([4, -4, 4, 0],2))",
    "io_inp": [
      4,
      -4,
      4,
      0
    ],
    "io_out": [
      2,
      6,
      -2,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [4, 4, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(sub_n([5, 5, -2],-2))),2),5)",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(sub_n(input,-2))),2),5)"
  },
  {
    "input": "input : list = [3, 0, -4, -5, -5]\noutput : list = [60, 0]",
    "output": "generated_output : list = take(mul_n(take(mul_n(take([3, 0, -4, -5, -5],2),-5),12),-4),2)",
    "io_inp": [
      3,
      0,
      -4,
      -5,
      -5
    ],
    "io_out": [
      60,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(take(input,2),-5),12),-4),2)"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [36, -4, 16]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(mul_n([-2, 0, -4],2)),6),-5),4)",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      36,
      -4,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(mul_n(input,2)),6),-5),4)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-10, -5]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sub_n([0, -5],-2),5)),-2))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sub_n(input,-2),5)),-2))"
  },
  {
    "input": "input : list = [3, -4, 3]\noutput : list = [2, 2, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_des([3, -4, 3]),1))))",
    "io_inp": [
      3,
      -4,
      3
    ],
    "io_out": [
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-1, 5, -4]\noutput : list = [9, 3, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(add_n([-1, 5, -4],1),1))),-4)",
    "io_inp": [
      -1,
      5,
      -4
    ],
    "io_out": [
      9,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(add_n(input,1),1))),-4)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [4, 0]",
    "output": "generated_output : list = add_n(sub_n([3, -1],-4),-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-3)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-15, -12]",
    "output": "generated_output : list = mul_n([-5, -4],3)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [7, 1]",
    "output": "generated_output : list = sub_n(reverse([-1, 5]),-2)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [1, -1, -5, 1, 4]\noutput : list = [-7, -3, -1, -1, 2]",
    "output": "generated_output : list = take(take(add_n(sort_asc([1, -1, -5, 1, 4]),-2),14),17)",
    "io_inp": [
      1,
      -1,
      -5,
      1,
      4
    ],
    "io_out": [
      -7,
      -3,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(input),-2),14),17)"
  },
  {
    "input": "input : list = [0, -4, -2, 2, 1, 0]\noutput : list = [-2, 0, 2, 2, 3, 4]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n([0, -4, -2, 2, 1, 0],-2)),4))",
    "io_inp": [
      0,
      -4,
      -2,
      2,
      1,
      0
    ],
    "io_out": [
      -2,
      0,
      2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(input,-2)),4))"
  },
  {
    "input": "input : list = [-3, 5, 4, 1, 4, 1]\noutput : list = [4, -2, 4, -2, -4, 12]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n([-3, 5, 4, 1, 4, 1],-3),-2)),4),-4)",
    "io_inp": [
      -3,
      5,
      4,
      1,
      4,
      1
    ],
    "io_out": [
      4,
      -2,
      4,
      -2,
      -4,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n(input,-3),-2)),4),-4)"
  },
  {
    "input": "input : list = [2, -1, 3, -1, -2]\noutput : list = [-9, -8, -8, -4]",
    "output": "generated_output : list = add_n(sort_asc(drop(add_n(mul_n([2, -1, 3, -1, -2],1),-2),1)),-5)",
    "io_inp": [
      2,
      -1,
      3,
      -1,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(add_n(mul_n(input,1),-2),1)),-5)"
  },
  {
    "input": "input : list = [-2, 4, 0, 0, -5]\noutput : list = [-25, -10, 0, 0, 20]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(reverse([-2, 4, 0, 0, -5]),5))))",
    "io_inp": [
      -2,
      4,
      0,
      0,
      -5
    ],
    "io_out": [
      -25,
      -10,
      0,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-3, -2, 0, -2, 4]\noutput : list = [-56, -36, -36, 4, 84]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(sort_asc([-3, -2, 0, -2, 4]),4),5),4),27)",
    "io_inp": [
      -3,
      -2,
      0,
      -2,
      4
    ],
    "io_out": [
      -56,
      -36,
      -36,
      4,
      84
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(sort_asc(input),4),5),4),27)"
  },
  {
    "input": "input : list = [-2, 1, -1]\noutput : list = [-5, -4, -2]",
    "output": "generated_output : list = sort_asc(sub_n([-2, 1, -1],3))",
    "io_inp": [
      -2,
      1,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-1, -3, -2]\noutput : list = [-7, -5, -3]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(mul_n([-1, -3, -2],2),-3),7)),-4)",
    "io_inp": [
      -1,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(mul_n(input,2),-3),7)),-4)"
  },
  {
    "input": "input : list = [5, -2, 5, 5]\noutput : list = [4, -3, 4, 4]",
    "output": "generated_output : list = add_n([5, -2, 5, 5],-1)",
    "io_inp": [
      5,
      -2,
      5,
      5
    ],
    "io_out": [
      4,
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [7, 8, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n([4, 5, -3],-1),-3),5)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      7,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,-1),-3),5)"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(add_n([0, 2, 3],1)))),11)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(add_n(input,1)))),11)"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [-15, 12, 12]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(mul_n([-4, -4, 5],1),15))),-3)",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      -15,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(mul_n(input,1),15))),-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = take(reverse([4, 2]),9)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [-5, -5, -5, 1, 3, -1]\noutput : list = [-11, -11]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(take([-5, -5, -5, 1, 3, -1],2),18),-5)),1)",
    "io_inp": [
      -5,
      -5,
      -5,
      1,
      3,
      -1
    ],
    "io_out": [
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(take(input,2),18),-5)),1)"
  },
  {
    "input": "input : list = [0, 4, -1, 5]\noutput : list = [0, -6]",
    "output": "generated_output : list = sub_n(reverse(drop([0, 4, -1, 5],2)),5)",
    "io_inp": [
      0,
      4,
      -1,
      5
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(input,2)),5)"
  },
  {
    "input": "input : list = [-3, 5, -5, 1, 1, -4]\noutput : list = [3, -5]",
    "output": "generated_output : list = add_n(sort_des(take([-3, 5, -5, 1, 1, -4],2)),-2)",
    "io_inp": [
      -3,
      5,
      -5,
      1,
      1,
      -4
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,2)),-2)"
  },
  {
    "input": "input : list = [-1, 0, -2, -3, -4]\noutput : list = [-24, -32]",
    "output": "generated_output : list = take(mul_n(take(drop(mul_n([-1, 0, -2, -3, -4],4),3),12),2),51)",
    "io_inp": [
      -1,
      0,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -24,
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(take(drop(mul_n(input,4),3),12),2),51)"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [2, 4, 9]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sort_des([-3, 4, -1])),2),-3))",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      2,
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sort_des(input)),2),-3))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [9, -1]",
    "output": "generated_output : list = sort_des(take(take(add_n(mul_n([-1, 4],2),1),13),21))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      9,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(mul_n(input,2),1),13),21))"
  },
  {
    "input": "input : list = [-2, 1, 3, 2, 4, 3]\noutput : list = [-2, 1, 3]",
    "output": "generated_output : list = take([-2, 1, 3, 2, 4, 3],3)",
    "io_inp": [
      -2,
      1,
      3,
      2,
      4,
      3
    ],
    "io_out": [
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, 3, -2, -3, 4, -4]\noutput : list = [4, 3, 2, 2, -3, -4]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(reverse([-2, 3, -2, -3, 4, -4]),21),12)),-1)",
    "io_inp": [
      -2,
      3,
      -2,
      -3,
      4,
      -4
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(reverse(input),21),12)),-1)"
  },
  {
    "input": "input : list = [-5, -1, 0, 4, 5]\noutput : list = [-3, -4, -8, -9]",
    "output": "generated_output : list = sort_des(sort_des(add_n(drop(sub_n([-5, -1, 0, 4, 5],5),1),-3)))",
    "io_inp": [
      -5,
      -1,
      0,
      4,
      5
    ],
    "io_out": [
      -3,
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(drop(sub_n(input,5),1),-3)))"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [-12, -10, -9]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_asc(sub_n([0, 1, -2],5)),-5)))",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      -12,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_asc(sub_n(input,5)),-5)))"
  },
  {
    "input": "input : list = [2, 1, 3, 3, 3]\noutput : list = [-8, -8, -8, -9, -10]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des([2, 1, 3, 3, 3]),-5)),-5),-1)",
    "io_inp": [
      2,
      1,
      3,
      3,
      3
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(sort_des(input),-5)),-5),-1)"
  },
  {
    "input": "input : list = [3, 0, -3]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(take([3, 0, -3],1)),-5),2),-2)",
    "io_inp": [
      3,
      0,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(take(input,1)),-5),2),-2)"
  },
  {
    "input": "input : list = [0, -5, -5, 5]\noutput : list = [-5, -5, 5]",
    "output": "generated_output : list = drop([0, -5, -5, 5],1)",
    "io_inp": [
      0,
      -5,
      -5,
      5
    ],
    "io_out": [
      -5,
      -5,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -1, 0, -3]\noutput : list = [-8, -5, -6, -9]",
    "output": "generated_output : list = add_n(reverse([-4, -1, 0, -3]),-5)",
    "io_inp": [
      -4,
      -1,
      0,
      -3
    ],
    "io_out": [
      -8,
      -5,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [1, -4, -2, -2, -1]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(drop([1, -4, -2, -2, -1],2)),3)),3)",
    "io_inp": [
      1,
      -4,
      -2,
      -2,
      -1
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(drop(input,2)),3)),3)"
  },
  {
    "input": "input : list = [-4, 2, -3, -1, 2, 0]\noutput : list = [0, -8, 4, 12, -8, 16]",
    "output": "generated_output : list = mul_n(reverse([-4, 2, -3, -1, 2, 0]),-4)",
    "io_inp": [
      -4,
      2,
      -3,
      -1,
      2,
      0
    ],
    "io_out": [
      0,
      -8,
      4,
      12,
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [1, 3, 4, 1]\noutput : list = [2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([1, 3, 4, 1],-5),4))",
    "io_inp": [
      1,
      3,
      4,
      1
    ],
    "io_out": [
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-5),4))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [1, 9]",
    "output": "generated_output : list = sub_n(sort_asc([4, -4]),-5)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [0, 2, -5, 1, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 2, -5, 1, -2],1)",
    "io_inp": [
      0,
      2,
      -5,
      1,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 2, 0, -4, 1, -4]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = take([3, 2, 0, -4, 1, -4],3)",
    "io_inp": [
      3,
      2,
      0,
      -4,
      1,
      -4
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [29, 13, -3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_des([-3, 1, 5]),2),4),-3),-2)",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      29,
      13,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_des(input),2),4),-3),-2)"
  },
  {
    "input": "input : list = [4, 4, 0]\noutput : list = [-2, -10, -10]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(reverse([4, 4, 0])),-1),20),-2)",
    "io_inp": [
      4,
      4,
      0
    ],
    "io_out": [
      -2,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(reverse(input)),-1),20),-2)"
  },
  {
    "input": "input : list = [-5, 0, 2, -5]\noutput : list = [48, 28, 20, 48]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(add_n([-5, 0, 2, -5],-5),-2),-4)))",
    "io_inp": [
      -5,
      0,
      2,
      -5
    ],
    "io_out": [
      48,
      28,
      20,
      48
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(add_n(input,-5),-2),-4)))"
  },
  {
    "input": "input : list = [-5, -4, 3, 5, 5]\noutput : list = [9, 9]",
    "output": "generated_output : list = drop(sub_n([-5, -4, 3, 5, 5],-4),3)",
    "io_inp": [
      -5,
      -4,
      3,
      5,
      5
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-4),3)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des([4, -4])",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3, -4, 4]\noutput : list = [-3]",
    "output": "generated_output : list = take(take([-3, -3, -4, 4],1),13)",
    "io_inp": [
      -3,
      -3,
      -4,
      4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(input,1),13)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(mul_n(add_n(take([-3, 1, 2],1),-3),1))",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(input,1),-3),1))"
  },
  {
    "input": "input : list = [0, 1, 1, 1]\noutput : list = [-8, -7, -7, -7]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(sub_n([0, 1, 1, 1],5),-2))),5)",
    "io_inp": [
      0,
      1,
      1,
      1
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(sub_n(input,5),-2))),5)"
  },
  {
    "input": "input : list = [-3, 3, -3, 5]\noutput : list = [-10, 2, -10, 6]",
    "output": "generated_output : list = mul_n(add_n([-3, 3, -3, 5],-2),2)",
    "io_inp": [
      -3,
      3,
      -3,
      5
    ],
    "io_out": [
      -10,
      2,
      -10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),2)"
  },
  {
    "input": "input : list = [3, 2, 1, 3]\noutput : list = [-7, -7, -6, -5]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(add_n([3, 2, 1, 3],4)),-1),10))",
    "io_inp": [
      3,
      2,
      1,
      3
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(add_n(input,4)),-1),10))"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = reverse(sort_asc([-1, 2, 1]))",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 5, -3, 3]\noutput : list = [-15, 15, 25, 25]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(sort_des([5, 5, -3, 3])),19)),5)",
    "io_inp": [
      5,
      5,
      -3,
      3
    ],
    "io_out": [
      -15,
      15,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(sort_des(input)),19)),5)"
  },
  {
    "input": "input : list = [1, 3, -4, 0, 4, -5]\noutput : list = [5, 4, 2, 1, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sub_n([1, 3, -4, 0, 4, -5],3),5)),1))",
    "io_inp": [
      1,
      3,
      -4,
      0,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sub_n(input,3),5)),1))"
  },
  {
    "input": "input : list = [-3, -3, -3, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take([-3, -3, -3, 0],1))",
    "io_inp": [
      -3,
      -3,
      -3,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-2, -5, 1, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = drop([-2, -5, 1, -5, 0],3)",
    "io_inp": [
      -2,
      -5,
      1,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [6, 21]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(add_n([0, 5],2)),14),-3),-1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      6,
      21
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(add_n(input,2)),14),-3),-1)"
  },
  {
    "input": "input : list = [4, -4, -4, 3]\noutput : list = [-3, -3, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(add_n([4, -4, -4, 3],-2),3))))",
    "io_inp": [
      4,
      -4,
      -4,
      3
    ],
    "io_out": [
      -3,
      -3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(add_n(input,-2),3))))"
  },
  {
    "input": "input : list = [-2, -5, -3, 5]\noutput : list = [-21, -17, -15, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n(add_n([-2, -5, -3, 5],-4),2)),-3))",
    "io_inp": [
      -2,
      -5,
      -3,
      5
    ],
    "io_out": [
      -21,
      -17,
      -15,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(add_n(input,-4),2)),-3))"
  },
  {
    "input": "input : list = [-4, 1, 0, 4, -3, 0]\noutput : list = [-8, -7, -4, -4, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_des([-4, 1, 0, 4, -3, 0]))),4))",
    "io_inp": [
      -4,
      1,
      0,
      4,
      -3,
      0
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_des(input))),4))"
  },
  {
    "input": "input : list = [-1, 5, 4, 4, -2]\noutput : list = [3, 4, 9, 9, 10]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sort_asc([-1, 5, 4, 4, -2])),-3)),2)",
    "io_inp": [
      -1,
      5,
      4,
      4,
      -2
    ],
    "io_out": [
      3,
      4,
      9,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sort_asc(input)),-3)),2)"
  },
  {
    "input": "input : list = [1, 4, 1, 3]\noutput : list = [-2, -4]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(drop([1, 4, 1, 3],2))),1),-5)",
    "io_inp": [
      1,
      4,
      1,
      3
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(drop(input,2))),1),-5)"
  },
  {
    "input": "input : list = [0, 0, -3, -5, 4]\noutput : list = [7, 3, 3, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([0, 0, -3, -5, 4]),-3))",
    "io_inp": [
      0,
      0,
      -3,
      -5,
      4
    ],
    "io_out": [
      7,
      3,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [1, 0, -4]\noutput : list = [4, 0, -16]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([1, 0, -4],4),1),-1)",
    "io_inp": [
      1,
      0,
      -4
    ],
    "io_out": [
      4,
      0,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,4),1),-1)"
  },
  {
    "input": "input : list = [4, 2, 0, 1, -5, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = take([4, 2, 0, 1, -5, 2],2)",
    "io_inp": [
      4,
      2,
      0,
      1,
      -5,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -3, 3, 1, 0, 4]\noutput : list = [4, 4, 3, 1, 0, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(reverse([4, -3, 3, 1, 0, 4])))))",
    "io_inp": [
      4,
      -3,
      3,
      1,
      0,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [13, 8, -27]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(mul_n([-2, 5, -3],-5)),2)))",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      13,
      8,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(mul_n(input,-5)),2)))"
  },
  {
    "input": "input : list = [5, -5, -1, 2, 0]\noutput : list = [-5, -1, 2, 0]",
    "output": "generated_output : list = drop([5, -5, -1, 2, 0],1)",
    "io_inp": [
      5,
      -5,
      -1,
      2,
      0
    ],
    "io_out": [
      -5,
      -1,
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -3, 2, -3]\noutput : list = [1, 1, 4, 6]",
    "output": "generated_output : list = sort_asc(add_n([0, -3, 2, -3],4))",
    "io_inp": [
      0,
      -3,
      2,
      -3
    ],
    "io_out": [
      1,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [1, 2, 2]\noutput : list = [4, 5, 5]",
    "output": "generated_output : list = sub_n([1, 2, 2],-3)",
    "io_inp": [
      1,
      2,
      2
    ],
    "io_out": [
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -2, 1, 3, 0, -1]\noutput : list = [3, 4, 4, 5, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(add_n([-1, -2, 1, 3, 0, -1],5),4),-2),-2))",
    "io_inp": [
      -1,
      -2,
      1,
      3,
      0,
      -1
    ],
    "io_out": [
      3,
      4,
      4,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(add_n(input,5),4),-2),-2))"
  },
  {
    "input": "input : list = [-2, 3, 2]\noutput : list = [-6, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc([-2, 3, 2]),-4)",
    "io_inp": [
      -2,
      3,
      2
    ],
    "io_out": [
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [3, 0, -4, -4, 1, 5]\noutput : list = [5, 3, 1, 0, -4, -4]",
    "output": "generated_output : list = sort_des([3, 0, -4, -4, 1, 5])",
    "io_inp": [
      3,
      0,
      -4,
      -4,
      1,
      5
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -3, -1, -5, 2, -1]\noutput : list = [6, 0, 2, -2, 5, 2]",
    "output": "generated_output : list = take(add_n([3, -3, -1, -5, 2, -1],3),15)",
    "io_inp": [
      3,
      -3,
      -1,
      -5,
      2,
      -1
    ],
    "io_out": [
      6,
      0,
      2,
      -2,
      5,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,3),15)"
  },
  {
    "input": "input : list = [1, -1, 3, -3, 1]\noutput : list = [4, 2, 6, 0, 4]",
    "output": "generated_output : list = take(add_n(reverse(reverse(sub_n([1, -1, 3, -3, 1],-1))),2),49)",
    "io_inp": [
      1,
      -1,
      3,
      -3,
      1
    ],
    "io_out": [
      4,
      2,
      6,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(sub_n(input,-1))),2),49)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [7, -1]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(add_n([-3, 5],5),-3),9)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(add_n(input,5),-3),9)))"
  },
  {
    "input": "input : list = [-1, 1, 2, -1, -5, -2]\noutput : list = [-2, 1, 2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sub_n([-1, 1, 2, -1, -5, -2],-3)),-4),4))",
    "io_inp": [
      -1,
      1,
      2,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -2,
      1,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sub_n(input,-3)),-4),4))"
  },
  {
    "input": "input : list = [0, -3, 4, 1, 0]\noutput : list = [0, 6, -8, -2, 0]",
    "output": "generated_output : list = mul_n([0, -3, 4, 1, 0],-2)",
    "io_inp": [
      0,
      -3,
      4,
      1,
      0
    ],
    "io_out": [
      0,
      6,
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(add_n([1, 2],-5))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [0, -3, -1, 4, -2, -1]\noutput : list = [11, 7, 6, 6, 5, 4]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(sort_des([0, -3, -1, 4, -2, -1]),4))),3)",
    "io_inp": [
      0,
      -3,
      -1,
      4,
      -2,
      -1
    ],
    "io_out": [
      11,
      7,
      6,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(sort_des(input),4))),3)"
  },
  {
    "input": "input : list = [4, 4, -2, -2, 1, 1]\noutput : list = [10, 10, 7, 7, 4, 4]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc([4, 4, -2, -2, 1, 1]),3),5),-1)",
    "io_inp": [
      4,
      4,
      -2,
      -2,
      1,
      1
    ],
    "io_out": [
      10,
      10,
      7,
      7,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(input),3),5),-1)"
  },
  {
    "input": "input : list = [1, 2, 1, 3, 1, -1]\noutput : list = [20, 10, 0, 0, 0, -20]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sub_n([1, 2, 1, 3, 1, -1],1)),2)),5)",
    "io_inp": [
      1,
      2,
      1,
      3,
      1,
      -1
    ],
    "io_out": [
      20,
      10,
      0,
      0,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sub_n(input,1)),2)),5)"
  },
  {
    "input": "input : list = [0, -5, -5, -2]\noutput : list = [-5, -5, -2, 0]",
    "output": "generated_output : list = sort_asc([0, -5, -5, -2])",
    "io_inp": [
      0,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(drop([1, 5, -3, 4],2))",
    "io_inp": [
      1,
      5,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [3, -1, 1, -3]\noutput : list = [-32]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(take([3, -1, 1, -3],1),-5)),-4))",
    "io_inp": [
      3,
      -1,
      1,
      -3
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(take(input,1),-5)),-4))"
  },
  {
    "input": "input : list = [5, -2, -4, 4, -4]\noutput : list = [1, 1, 3, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sort_des([5, -2, -4, 4, -4])),5)))",
    "io_inp": [
      5,
      -2,
      -4,
      4,
      -4
    ],
    "io_out": [
      1,
      1,
      3,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-2, 5, -4, -5, -1]\noutput : list = [-20, -16, -8, -4, 20]",
    "output": "generated_output : list = sort_asc(mul_n([-2, 5, -4, -5, -1],4))",
    "io_inp": [
      -2,
      5,
      -4,
      -5,
      -1
    ],
    "io_out": [
      -20,
      -16,
      -8,
      -4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [5, 3, 5, 2, 1]\noutput : list = [7, 7, 5, 4, 3]",
    "output": "generated_output : list = sort_des(sub_n([5, 3, 5, 2, 1],-2))",
    "io_inp": [
      5,
      3,
      5,
      2,
      1
    ],
    "io_out": [
      7,
      7,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [4, -5, 3, 4, 4, 5]\noutput : list = [40, 36, 36, 36, 32, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(add_n(reverse([4, -5, 3, 4, 4, 5]),5)),4))",
    "io_inp": [
      4,
      -5,
      3,
      4,
      4,
      5
    ],
    "io_out": [
      40,
      36,
      36,
      36,
      32,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(add_n(reverse(input),5)),4))"
  },
  {
    "input": "input : list = [-2, -1, -4, 4]\noutput : list = [35, 30, 45, 5]",
    "output": "generated_output : list = take(take(mul_n(sub_n(mul_n([-2, -1, -4, 4],1),5),-5),37),43)",
    "io_inp": [
      -2,
      -1,
      -4,
      4
    ],
    "io_out": [
      35,
      30,
      45,
      5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sub_n(mul_n(input,1),5),-5),37),43)"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [16]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(take([-4, -4, -1],1))),-4))",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(take(input,1))),-4))"
  },
  {
    "input": "input : list = [1, -5, -3]\noutput : list = [-2, 6, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc([1, -5, -3])),-2)))",
    "io_inp": [
      1,
      -5,
      -3
    ],
    "io_out": [
      -2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-2, -2, -2, 2, 3, -1]\noutput : list = [-2, -2, -2, 2]",
    "output": "generated_output : list = take([-2, -2, -2, 2, 3, -1],4)",
    "io_inp": [
      -2,
      -2,
      -2,
      2,
      3,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = sort_asc([2, -4, 0])",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(sort_asc([5, 1]),-5)),30))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(sort_asc(input),-5)),30))"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_des(drop([-4, 3, -2],1))),5)",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(drop(input,1))),5)"
  },
  {
    "input": "input : list = [1, 1, -1, 0]\noutput : list = [-3, 0, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([1, 1, -1, 0],3)))",
    "io_inp": [
      1,
      1,
      -1,
      0
    ],
    "io_out": [
      -3,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,3)))"
  },
  {
    "input": "input : list = [2, -5, 4, 1]\noutput : list = [33, 27, 24, 6]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(reverse([2, -5, 4, 1]),2)),-5),3)",
    "io_inp": [
      2,
      -5,
      4,
      1
    ],
    "io_out": [
      33,
      27,
      24,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(reverse(input),2)),-5),3)"
  },
  {
    "input": "input : list = [0, 2, -1, 1, -3, 1]\noutput : list = [13, -14, 4, -32, 4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(mul_n(drop([0, 2, -1, 1, -3, 1],1),-3),-3),-3),4)",
    "io_inp": [
      0,
      2,
      -1,
      1,
      -3,
      1
    ],
    "io_out": [
      13,
      -14,
      4,
      -32,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(mul_n(drop(input,1),-3),-3),-3),4)"
  },
  {
    "input": "input : list = [-2, 5, -3, 5, -4, -5]\noutput : list = [1, 8]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(take([-2, 5, -3, 5, -4, -5],2),-3))),38)",
    "io_inp": [
      -2,
      5,
      -3,
      5,
      -4,
      -5
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(take(input,2),-3))),38)"
  },
  {
    "input": "input : list = [2, 1, -3, 4, 1]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(take([2, 1, -3, 4, 1],2),1),-4)))",
    "io_inp": [
      2,
      1,
      -3,
      4,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(take(input,2),1),-4)))"
  },
  {
    "input": "input : list = [-3, -1, -4, 2]\noutput : list = [7, 4, 2, 1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(add_n([-3, -1, -4, 2],5))))",
    "io_inp": [
      -3,
      -1,
      -4,
      2
    ],
    "io_out": [
      7,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(add_n(input,5))))"
  },
  {
    "input": "input : list = [0, -3, 2, -1, -3]\noutput : list = [5, 3, 2, 0, 0]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc([0, -3, 2, -1, -3]),25)),3)",
    "io_inp": [
      0,
      -3,
      2,
      -1,
      -3
    ],
    "io_out": [
      5,
      3,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(input),25)),3)"
  },
  {
    "input": "input : list = [-5, 5, 4, 0, 1, -5]\noutput : list = [25, -25, -20]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(take([-5, 5, 4, 0, 1, -5],3),-5),-2),-2),19)",
    "io_inp": [
      -5,
      5,
      4,
      0,
      1,
      -5
    ],
    "io_out": [
      25,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(take(input,3),-5),-2),-2),19)"
  },
  {
    "input": "input : list = [-3, 0, -5, 1, 1, -2]\noutput : list = [-29, 1, 1, -14]",
    "output": "generated_output : list = add_n(mul_n(drop([-3, 0, -5, 1, 1, -2],2),5),-4)",
    "io_inp": [
      -3,
      0,
      -5,
      1,
      1,
      -2
    ],
    "io_out": [
      -29,
      1,
      1,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,2),5),-4)"
  },
  {
    "input": "input : list = [1, 0, -3, 2]\noutput : list = [-3, 0, 1, 2]",
    "output": "generated_output : list = sort_asc([1, 0, -3, 2])",
    "io_inp": [
      1,
      0,
      -3,
      2
    ],
    "io_out": [
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(reverse([1, 2])))),34)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(reverse(input)))),34)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [6, 10]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(sort_asc([2, -2])),3)),-5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(sort_asc(input)),3)),-5)"
  },
  {
    "input": "input : list = [4, 4, 3, 2, 0]\noutput : list = [27, 27, 24, 21, 15]",
    "output": "generated_output : list = mul_n(add_n([4, 4, 3, 2, 0],5),3)",
    "io_inp": [
      4,
      4,
      3,
      2,
      0
    ],
    "io_out": [
      27,
      27,
      24,
      21,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),3)"
  },
  {
    "input": "input : list = [5, -5, -5, 5]\noutput : list = [-5, -15, -15, -5]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(add_n([5, -5, -5, 5],-3),22),-2),-5),1)",
    "io_inp": [
      5,
      -5,
      -5,
      5
    ],
    "io_out": [
      -5,
      -15,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(add_n(input,-3),22),-2),-5),1)"
  },
  {
    "input": "input : list = [-5, -2, 1, 4]\noutput : list = [0, -9, -18, -27]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(sort_des([-5, -2, 1, 4]),4),-3),3))",
    "io_inp": [
      -5,
      -2,
      1,
      4
    ],
    "io_out": [
      0,
      -9,
      -18,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(sort_des(input),4),-3),3))"
  },
  {
    "input": "input : list = [-3, 0, 1, 1, -2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(drop(take([-3, 0, 1, 1, -2],3),1),2)),-4)",
    "io_inp": [
      -3,
      0,
      1,
      1,
      -2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(drop(take(input,3),1),2)),-4)"
  },
  {
    "input": "input : list = [4, 2, -3, -5, -1]\noutput : list = [10, 8, 3, 1, 5]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(reverse([4, 2, -3, -5, -1]),-2)),-2),2)",
    "io_inp": [
      4,
      2,
      -3,
      -5,
      -1
    ],
    "io_out": [
      10,
      8,
      3,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(reverse(input),-2)),-2),2)"
  },
  {
    "input": "input : list = [-1, -2, -4, -1]\noutput : list = [-1, -2, -4, -1]",
    "output": "generated_output : list = mul_n([-1, -2, -4, -1],1)",
    "io_inp": [
      -1,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-5, 0, -3, -1, 1]\noutput : list = [1, -1, -3, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, -3, -1, 1])",
    "io_inp": [
      -5,
      0,
      -3,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, -4, -3, 4]\noutput : list = [112, 0, -16, 112, 112]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(reverse([4, 4, -4, -3, 4]),3),2),-2),-4)",
    "io_inp": [
      4,
      4,
      -4,
      -3,
      4
    ],
    "io_out": [
      112,
      0,
      -16,
      112,
      112
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(reverse(input),3),2),-2),-4)"
  },
  {
    "input": "input : list = [-1, 2, -4, -5, -3, 4]\noutput : list = [-23, -17, -8, -2, 1, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(add_n([-1, 2, -4, -5, -3, 4],4),-3))),-1)",
    "io_inp": [
      -1,
      2,
      -4,
      -5,
      -3,
      4
    ],
    "io_out": [
      -23,
      -17,
      -8,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(add_n(input,4),-3))),-1)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [11, 9]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n(mul_n([2, 3],2),-4),2)),-1)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      11,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(mul_n(input,2),-4),2)),-1)"
  },
  {
    "input": "input : list = [2, -1, 2, 1]\noutput : list = [1, -2, 1]",
    "output": "generated_output : list = take(take(add_n([2, -1, 2, 1],-1),3),17)",
    "io_inp": [
      2,
      -1,
      2,
      1
    ],
    "io_out": [
      1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-1),3),17)"
  },
  {
    "input": "input : list = [-2, -5, 2, -1, 2, -4]\noutput : list = [2, 2, -1, -2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(sort_des([-2, -5, 2, -1, 2, -4])))))",
    "io_inp": [
      -2,
      -5,
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      2,
      2,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, -1, -3, 3, -2]\noutput : list = [4, -1]",
    "output": "generated_output : list = drop(sub_n([1, -1, -3, 3, -2],-1),3)",
    "io_inp": [
      1,
      -1,
      -3,
      3,
      -2
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-1),3)"
  },
  {
    "input": "input : list = [3, -3, 1, 0, 4]\noutput : list = [-10, -1, 2, 8, 11]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n([3, -3, 1, 0, 4],-1)),-3),1)",
    "io_inp": [
      3,
      -3,
      1,
      0,
      4
    ],
    "io_out": [
      -10,
      -1,
      2,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(input,-1)),-3),1)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [5, 4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(reverse([4, 5, -5])))))",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, 2, -5, -4, 5]\noutput : list = [12, 10, 4, -2, -8]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sort_des([-1, 2, -5, -4, 5])),-1),40),-2)",
    "io_inp": [
      -1,
      2,
      -5,
      -4,
      5
    ],
    "io_out": [
      12,
      10,
      4,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sort_des(input)),-1),40),-2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [70, 30]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sub_n([3, -1],-4),2),5)))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      70,
      30
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sub_n(input,-4),2),5)))"
  },
  {
    "input": "input : list = [-3, -1, -2, 2, -3, -3]\noutput : list = [-3, -3, -3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc([-3, -1, -2, 2, -3, -3])",
    "io_inp": [
      -3,
      -1,
      -2,
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [-6, -9, -15]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(sort_asc([5, 3, 2])),-3),18),26)",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      -6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(sort_asc(input)),-3),18),26)"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-175, 200, 450]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(mul_n([-1, 2, 4],5),2),5),5),1)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -175,
      200,
      450
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(mul_n(input,5),2),5),5),1)"
  },
  {
    "input": "input : list = [-2, -3, -1, -1, 2]\noutput : list = [2, -1, -1, -3, -2]",
    "output": "generated_output : list = reverse([-2, -3, -1, -1, 2])",
    "io_inp": [
      -2,
      -3,
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      -1,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4, -4, 2, 2, -5]\noutput : list = [-6, 1, 1, -5, -5, 1]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n([2, -4, -4, 2, 2, -5],1),1)),2),-1)",
    "io_inp": [
      2,
      -4,
      -4,
      2,
      2,
      -5
    ],
    "io_out": [
      -6,
      1,
      1,
      -5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sub_n(input,1),1)),2),-1)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([3, -2],2)))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,2)))"
  },
  {
    "input": "input : list = [-3, 1, -5]\noutput : list = [1, 7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(drop([-3, 1, -5],1))),5),1)",
    "io_inp": [
      -3,
      1,
      -5
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(drop(input,1))),5),1)"
  },
  {
    "input": "input : list = [-2, 3, 5, -2]\noutput : list = [-1, 4, 6, -1]",
    "output": "generated_output : list = sub_n([-2, 3, 5, -2],-1)",
    "io_inp": [
      -2,
      3,
      5,
      -2
    ],
    "io_out": [
      -1,
      4,
      6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(add_n([4, 3],1),-1)),-2),43)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(add_n(input,1),-1)),-2),43)"
  },
  {
    "input": "input : list = [-2, 2, 1, 3]\noutput : list = [-4, 0, -1, 1]",
    "output": "generated_output : list = add_n([-2, 2, 1, 3],-2)",
    "io_inp": [
      -2,
      2,
      1,
      3
    ],
    "io_out": [
      -4,
      0,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [-4, -5, -2]",
    "output": "generated_output : list = add_n([1, 0, 3],-5)",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      -4,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 2, -5, 4, 1, -3]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = sort_des(add_n(drop(sort_des(sub_n([-2, 2, -5, 4, 1, -3],-3)),3),-3))",
    "io_inp": [
      -2,
      2,
      -5,
      4,
      1,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(sort_des(sub_n(input,-3)),3),-3))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse([-2, -4])",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [8, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(add_n([-1, -5, -5],2),13),-3)),2)",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(add_n(input,2),13),-3)),2)"
  },
  {
    "input": "input : list = [5, 0, 4, 4, -2]\noutput : list = [6, 3, 3, -9, -15]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(sort_des([5, 0, 4, 4, -2]),-3),-2),2),3)",
    "io_inp": [
      5,
      0,
      4,
      4,
      -2
    ],
    "io_out": [
      6,
      3,
      3,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(sort_des(input),-3),-2),2),3)"
  },
  {
    "input": "input : list = [-5, -5, -3]\noutput : list = [-6, -6, -4]",
    "output": "generated_output : list = sub_n([-5, -5, -3],1)",
    "io_inp": [
      -5,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 2, -5, 5, -4, -5]\noutput : list = [8, 6, -1, 9, 0, -1]",
    "output": "generated_output : list = add_n([4, 2, -5, 5, -4, -5],4)",
    "io_inp": [
      4,
      2,
      -5,
      5,
      -4,
      -5
    ],
    "io_out": [
      8,
      6,
      -1,
      9,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-5, -5, -2, 1]\noutput : list = [0, -3, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(add_n([-5, -5, -2, 1],2),2),-5),-4))",
    "io_inp": [
      -5,
      -5,
      -2,
      1
    ],
    "io_out": [
      0,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(add_n(input,2),2),-5),-4))"
  },
  {
    "input": "input : list = [-2, -3, 2, -4, -5, -4]\noutput : list = [2, -2, -3, -4, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(sort_des([-2, -3, 2, -4, -5, -4])))))",
    "io_inp": [
      -2,
      -3,
      2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sub_n([4, 5],3),1),-3),1),2)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sub_n(input,3),1),-3),1),2)"
  },
  {
    "input": "input : list = [1, 3, -2, -1, 4]\noutput : list = [2, 3, 5, 7, 8]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(reverse([1, 3, -2, -1, 4]),8)),-4),50)",
    "io_inp": [
      1,
      3,
      -2,
      -1,
      4
    ],
    "io_out": [
      2,
      3,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(reverse(input),8)),-4),50)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [7, 4]",
    "output": "generated_output : list = sub_n(add_n([2, -1],2),-3)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),-3)"
  },
  {
    "input": "input : list = [-4, -3, -1, -3, 2]\noutput : list = [-1, -4, -6, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n([-4, -3, -1, -3, 2],-3)))",
    "io_inp": [
      -4,
      -3,
      -1,
      -3,
      2
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-3)))"
  },
  {
    "input": "input : list = [0, 3, 1, -3, -5, 3]\noutput : list = [0, 0, -2, -3, -6, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(take(sort_des([0, 3, 1, -3, -5, 3]),25)),3),41)",
    "io_inp": [
      0,
      3,
      1,
      -3,
      -5,
      3
    ],
    "io_out": [
      0,
      0,
      -2,
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(sort_des(input),25)),3),41)"
  },
  {
    "input": "input : list = [-1, 5, -2, -4]\noutput : list = [5, -1, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sub_n([-1, 5, -2, -4],-2)),-3)),5)",
    "io_inp": [
      -1,
      5,
      -2,
      -4
    ],
    "io_out": [
      5,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(sub_n(input,-2)),-3)),5)"
  },
  {
    "input": "input : list = [-4, 0, -5, 1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(drop([-4, 0, -5, 1, -4],3))",
    "io_inp": [
      -4,
      0,
      -5,
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_asc([3, -2]))),-3))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-2, -6]",
    "output": "generated_output : list = add_n(reverse([-3, 1]),-3)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-18, -24]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([1, 3],5)),-3)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -18,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,5)),-3)"
  },
  {
    "input": "input : list = [-1, 4, -5, -4, -2]\noutput : list = [-3, -2, 0, 1, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n([-1, 4, -5, -4, -2],4)),-2))",
    "io_inp": [
      -1,
      4,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(input,4)),-2))"
  },
  {
    "input": "input : list = [4, -1, -1, -4, 5]\noutput : list = [-4, -1, -1, 4, 5]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(sort_asc([4, -1, -1, -4, 5]))),43))",
    "io_inp": [
      4,
      -1,
      -1,
      -4,
      5
    ],
    "io_out": [
      -4,
      -1,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(sort_asc(input))),43))"
  },
  {
    "input": "input : list = [4, 2, 1, -3, -3]\noutput : list = [-180, -180, 60, 120, 240]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n([4, 2, 1, -3, -3],3),-4)),-5)",
    "io_inp": [
      4,
      2,
      1,
      -3,
      -3
    ],
    "io_out": [
      -180,
      -180,
      60,
      120,
      240
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(input,3),-4)),-5)"
  },
  {
    "input": "input : list = [-2, 5, -4, -1, 2, 0]\noutput : list = [-11, -5, -2, 16]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des(take([-2, 5, -4, -1, 2, 0],4)),3),1))",
    "io_inp": [
      -2,
      5,
      -4,
      -1,
      2,
      0
    ],
    "io_out": [
      -11,
      -5,
      -2,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(take(input,4)),3),1))"
  },
  {
    "input": "input : list = [2, 2, 1, 0, -3, -4]\noutput : list = [12, 12, 10, 8, 2, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(sort_asc([2, 2, 1, 0, -3, -4])),4)),2)",
    "io_inp": [
      2,
      2,
      1,
      0,
      -3,
      -4
    ],
    "io_out": [
      12,
      12,
      10,
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(sort_asc(input)),4)),2)"
  },
  {
    "input": "input : list = [2, -3, 3, 4, -1, 5]\noutput : list = [-11, -10, -9, -5, -3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(drop([2, -3, 3, 4, -1, 5],1),-1),-5),1))",
    "io_inp": [
      2,
      -3,
      3,
      4,
      -1,
      5
    ],
    "io_out": [
      -11,
      -10,
      -9,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(drop(input,1),-1),-5),1))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(sort_asc([0, 0]))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -3, 5, -3, 3]\noutput : list = [-2, -2, 2, 4, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse([1, -3, 5, -3, 3]),2),-3),10))",
    "io_inp": [
      1,
      -3,
      5,
      -3,
      3
    ],
    "io_out": [
      -2,
      -2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse(input),2),-3),10))"
  },
  {
    "input": "input : list = [1, 1, -4, -5, -5, 3]\noutput : list = [6, 6, -9, -12, -12, 12]",
    "output": "generated_output : list = mul_n(add_n([1, 1, -4, -5, -5, 3],1),3)",
    "io_inp": [
      1,
      1,
      -4,
      -5,
      -5,
      3
    ],
    "io_out": [
      6,
      6,
      -9,
      -12,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),3)"
  },
  {
    "input": "input : list = [-3, 2, 3]\noutput : list = [3, 2, -3]",
    "output": "generated_output : list = sort_des(sort_asc([-3, 2, 3]))",
    "io_inp": [
      -3,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [25, -20]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(mul_n([-5, 4],-5)))))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      25,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [-3, -4, -5, 3, -5, -3]\noutput : list = [-12, -18, 6]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(drop([-3, -4, -5, 3, -5, -3],3),1)),1),3)",
    "io_inp": [
      -3,
      -4,
      -5,
      3,
      -5,
      -3
    ],
    "io_out": [
      -12,
      -18,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(drop(input,3),1)),1),3)"
  },
  {
    "input": "input : list = [-2, 5, 4, -4]\noutput : list = [8, -6, -4, 12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n([-2, 5, 4, -4],-1),1),-3),2)",
    "io_inp": [
      -2,
      5,
      4,
      -4
    ],
    "io_out": [
      8,
      -6,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(input,-1),1),-3),2)"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [-2, 6, 38]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(mul_n([0, -5, -1],4)),-2),1),3)",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      -2,
      6,
      38
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(mul_n(input,4)),-2),1),3)"
  },
  {
    "input": "input : list = [2, 3, -4, 3]\noutput : list = [-4, -6, 8, -6]",
    "output": "generated_output : list = mul_n([2, 3, -4, 3],-2)",
    "io_inp": [
      2,
      3,
      -4,
      3
    ],
    "io_out": [
      -4,
      -6,
      8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [5, 2]",
    "output": "generated_output : list = sub_n(mul_n([-2, -1],-3),1)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),1)"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [48, 56, 48]",
    "output": "generated_output : list = mul_n(sub_n(add_n([3, 5, 3],5),-4),4)",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      48,
      56,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,5),-4),4)"
  },
  {
    "input": "input : list = [5, -1, -2, -4, 1, -5]\noutput : list = [-10, -8, -4, -2, 2, 10]",
    "output": "generated_output : list = sort_asc(mul_n([5, -1, -2, -4, 1, -5],2))",
    "io_inp": [
      5,
      -1,
      -2,
      -4,
      1,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -2,
      2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [3, 3, -4, 2, -5, 0]\noutput : list = [-4, 0, 2, 3, 3]",
    "output": "generated_output : list = drop(sort_asc([3, 3, -4, 2, -5, 0]),1)",
    "io_inp": [
      3,
      3,
      -4,
      2,
      -5,
      0
    ],
    "io_out": [
      -4,
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [4, 6]",
    "output": "generated_output : list = sub_n([3, 5],-1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -3, 5, 4, 2, 3]\noutput : list = [5, 4, 3, 2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc([-4, -3, 5, 4, 2, 3]))",
    "io_inp": [
      -4,
      -3,
      5,
      4,
      2,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [0, 35]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n([-4, 3],4),-1),-5),-5),-5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      0,
      35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(add_n(input,4),-1),-5),-5),-5)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-36, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_des(mul_n([4, 0],-3)))),3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -36,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_des(mul_n(input,-3)))),3)"
  },
  {
    "input": "input : list = [4, -1, 1, 2, -5, -4]\noutput : list = [1, 2, -5, -4]",
    "output": "generated_output : list = mul_n(drop([4, -1, 1, 2, -5, -4],2),1)",
    "io_inp": [
      4,
      -1,
      1,
      2,
      -5,
      -4
    ],
    "io_out": [
      1,
      2,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),1)"
  },
  {
    "input": "input : list = [1, -5, 4, -2]\noutput : list = [8, 5, 2, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(mul_n([1, -5, 4, -2],-1)),-3)))",
    "io_inp": [
      1,
      -5,
      4,
      -2
    ],
    "io_out": [
      8,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(mul_n(input,-1)),-3)))"
  },
  {
    "input": "input : list = [-5, 0, -4, -3, 2]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(take([-5, 0, -4, -3, 2],1),2),-1)),2)",
    "io_inp": [
      -5,
      0,
      -4,
      -3,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(take(input,1),2),-1)),2)"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [8]",
    "output": "generated_output : list = take(take(add_n(mul_n(drop([3, -2, -4],1),-3),2),1),35)",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(drop(input,1),-3),2),1),35)"
  },
  {
    "input": "input : list = [-3, 1, -3, -4]\noutput : list = [6, 3]",
    "output": "generated_output : list = mul_n(take(sub_n(drop([-3, 1, -3, -4],2),-5),16),3)",
    "io_inp": [
      -3,
      1,
      -3,
      -4
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(drop(input,2),-5),16),3)"
  },
  {
    "input": "input : list = [3, 0, -1, 2, -5, -4]\noutput : list = [1, 2, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(sort_des([3, 0, -1, 2, -5, -4]),27),4)),-2)",
    "io_inp": [
      3,
      0,
      -1,
      2,
      -5,
      -4
    ],
    "io_out": [
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(sort_des(input),27),4)),-2)"
  },
  {
    "input": "input : list = [3, -1, 3, 5, -1]\noutput : list = [-5, 3, -5, -9, 3]",
    "output": "generated_output : list = add_n(mul_n([3, -1, 3, 5, -1],-2),1)",
    "io_inp": [
      3,
      -1,
      3,
      5,
      -1
    ],
    "io_out": [
      -5,
      3,
      -5,
      -9,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),1)"
  },
  {
    "input": "input : list = [5, -5, 1, 1]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(take([5, -5, 1, 1],2))",
    "io_inp": [
      5,
      -5,
      1,
      1
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-1, -2, 3, 4]\noutput : list = [-4, -5, -10, -9]",
    "output": "generated_output : list = sub_n(sub_n(reverse([-1, -2, 3, 4]),5),3)",
    "io_inp": [
      -1,
      -2,
      3,
      4
    ],
    "io_out": [
      -4,
      -5,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),5),3)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [39, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse([4, 0]),-5)),-2),-1)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      39,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse(input),-5)),-2),-1)"
  },
  {
    "input": "input : list = [5, -1, 5, 0, -3]\noutput : list = [10, 4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(add_n([5, -1, 5, 0, -3],5),2))))",
    "io_inp": [
      5,
      -1,
      5,
      0,
      -3
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(add_n(input,5),2))))"
  },
  {
    "input": "input : list = [0, 5, 5, -4, 3]\noutput : list = [5, 5, -4, 3]",
    "output": "generated_output : list = drop([0, 5, 5, -4, 3],1)",
    "io_inp": [
      0,
      5,
      5,
      -4,
      3
    ],
    "io_out": [
      5,
      5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -4, 0, -4, -1]\noutput : list = [-15, -90, 10, -90, -115]",
    "output": "generated_output : list = mul_n(mul_n(add_n(mul_n(reverse([-5, -4, 0, -4, -1]),-5),-2),-5),1)",
    "io_inp": [
      -5,
      -4,
      0,
      -4,
      -1
    ],
    "io_out": [
      -15,
      -90,
      10,
      -90,
      -115
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(mul_n(reverse(input),-5),-2),-5),1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(add_n([3, 4],-4),-3),-1)),35)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(add_n(input,-4),-3),-1)),35)"
  },
  {
    "input": "input : list = [1, 3, 4, -5, 0]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(add_n([1, 3, 4, -5, 0],2),2),6),1))",
    "io_inp": [
      1,
      3,
      4,
      -5,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(add_n(input,2),2),6),1))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-8, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse([-4, 2]),2)))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(input),2)))"
  },
  {
    "input": "input : list = [1, -5, 3]\noutput : list = [-12, -6, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sub_n([1, -5, 3],-1)),-3)))",
    "io_inp": [
      1,
      -5,
      3
    ],
    "io_out": [
      -12,
      -6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_asc(sub_n(input,-1)),-3)))"
  },
  {
    "input": "input : list = [-5, 0, 5, 2, 4, -2]\noutput : list = [9, 8, 6, 4, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([-5, 0, 5, 2, 4, -2])),-4)",
    "io_inp": [
      -5,
      0,
      5,
      2,
      4,
      -2
    ],
    "io_out": [
      9,
      8,
      6,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [4, 1, 4, -2]\noutput : list = [2, -1, 2, -4]",
    "output": "generated_output : list = sub_n(sub_n([4, 1, 4, -2],5),-3)",
    "io_inp": [
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      2,
      -1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),-3)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [-4, 1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(reverse([-5, 0, 0])),1),-1))",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(reverse(input)),1),-1))"
  },
  {
    "input": "input : list = [-2, -3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = drop([-2, -3, -2],1)",
    "io_inp": [
      -2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-7, -5]",
    "output": "generated_output : list = add_n([-3, -1],-4)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 5, -4, 1, 1]\noutput : list = [-4, -2, 1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(take(sort_asc([-2, 5, -4, 1, 1]),5))))",
    "io_inp": [
      -2,
      5,
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      -2,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(take(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [-3, 3, -5, -5, 2]\noutput : list = [-45, -30, 45, 75, 75]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n([-3, 3, -5, -5, 2],5),-3)))",
    "io_inp": [
      -3,
      3,
      -5,
      -5,
      2
    ],
    "io_out": [
      -45,
      -30,
      45,
      75,
      75
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(input,5),-3)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-16, 8]",
    "output": "generated_output : list = sort_asc(mul_n([-4, 2],4))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -16,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [5, 0, -2, 3]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(take([5, 0, -2, 3],1),2)",
    "io_inp": [
      5,
      0,
      -2,
      3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),2)"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [5, -5, 1]",
    "output": "generated_output : list = reverse([1, -5, 5])",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop([0, 1, -1],1)",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -5, 1, -2]\noutput : list = [0, 3, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(drop([2, -5, 1, -2],1),1))),-4)",
    "io_inp": [
      2,
      -5,
      1,
      -2
    ],
    "io_out": [
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(drop(input,1),1))),-4)"
  },
  {
    "input": "input : list = [2, -2, 5, 5]\noutput : list = [-6, -6, 1, -3]",
    "output": "generated_output : list = sub_n(mul_n(reverse([2, -2, 5, 5]),-1),1)",
    "io_inp": [
      2,
      -2,
      5,
      5
    ],
    "io_out": [
      -6,
      -6,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),-1),1)"
  },
  {
    "input": "input : list = [1, -3, 1, -4]\noutput : list = [1, 1, -3, -4]",
    "output": "generated_output : list = sort_des([1, -3, 1, -4])",
    "io_inp": [
      1,
      -3,
      1,
      -4
    ],
    "io_out": [
      1,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5, -4, -3, 3]\noutput : list = [0, 8, 4, 0, -24]",
    "output": "generated_output : list = mul_n(mul_n(add_n([-3, -5, -4, -3, 3],3),1),-4)",
    "io_inp": [
      -3,
      -5,
      -4,
      -3,
      3
    ],
    "io_out": [
      0,
      8,
      4,
      0,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,3),1),-4)"
  },
  {
    "input": "input : list = [-3, -4, 2, 0, -5]\noutput : list = [-7]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(take([-3, -4, 2, 0, -5],1)),4)),18)",
    "io_inp": [
      -3,
      -4,
      2,
      0,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(take(input,1)),4)),18)"
  },
  {
    "input": "input : list = [-3, 4, -1, -4, 2, -1]\noutput : list = [0, -2, -5, -5, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des([-3, 4, -1, -4, 2, -1]),4)",
    "io_inp": [
      -3,
      4,
      -1,
      -4,
      2,
      -1
    ],
    "io_out": [
      0,
      -2,
      -5,
      -5,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-3, -5, -3, 3]\noutput : list = [-10, -6, -6, 6]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_des([-3, -5, -3, 3])),-2),-1))",
    "io_inp": [
      -3,
      -5,
      -3,
      3
    ],
    "io_out": [
      -10,
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_des(input)),-2),-1))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(sub_n([-3, -5],-1))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [-20, 0, 15]",
    "output": "generated_output : list = mul_n(mul_n([-4, 0, 3],-5),-1)",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      -20,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-1)"
  },
  {
    "input": "input : list = [-4, 3, -3, -1, 5, 3]\noutput : list = [-20, 15, -15, -5, 25, 15]",
    "output": "generated_output : list = mul_n([-4, 3, -3, -1, 5, 3],5)",
    "io_inp": [
      -4,
      3,
      -3,
      -1,
      5,
      3
    ],
    "io_out": [
      -20,
      15,
      -15,
      -5,
      25,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [0, 2, -2, -1]\noutput : list = [-4, 4, -12, -8]",
    "output": "generated_output : list = sub_n(mul_n([0, 2, -2, -1],4),4)",
    "io_inp": [
      0,
      2,
      -2,
      -1
    ],
    "io_out": [
      -4,
      4,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),4)"
  },
  {
    "input": "input : list = [5, 0, 5, 0]\noutput : list = [1, 1, -4, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc([5, 0, 5, 0])),-1)),1)",
    "io_inp": [
      5,
      0,
      5,
      0
    ],
    "io_out": [
      1,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc(input)),-1)),1)"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [2, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_asc([-2, -3, 3])))),1)",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [-6, -3, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des([-1, 2, 4])),1),4)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(input)),1),4)"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [-120, -160]",
    "output": "generated_output : list = mul_n(add_n(mul_n(add_n(drop([-3, 2, 4],1),3),4),4),-5)",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      -120,
      -160
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(add_n(drop(input,1),3),4),4),-5)"
  },
  {
    "input": "input : list = [-3, 3, -4, -4, -4, 5]\noutput : list = [11, -7, 14, 14, 14, -13]",
    "output": "generated_output : list = add_n(mul_n([-3, 3, -4, -4, -4, 5],-3),2)",
    "io_inp": [
      -3,
      3,
      -4,
      -4,
      -4,
      5
    ],
    "io_out": [
      11,
      -7,
      14,
      14,
      14,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),2)"
  },
  {
    "input": "input : list = [-2, 3, -4, 3, -3, -1]\noutput : list = [-4, -3, -2, -1, 3, 3]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des([-2, 3, -4, 3, -3, -1])),1),17)",
    "io_inp": [
      -2,
      3,
      -4,
      3,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(input)),1),17)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [3, -12]",
    "output": "generated_output : list = mul_n([1, -4],3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, 1, 3, -2, 1]\noutput : list = [-2, -4, -6, -6, -9]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc([5, 1, 3, -2, 1]),4),-3)),31)",
    "io_inp": [
      5,
      1,
      3,
      -2,
      1
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc(input),4),-3)),31)"
  },
  {
    "input": "input : list = [3, -4, -3, 1]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(drop(sub_n(sub_n(reverse([3, -4, -3, 1]),-5),2),3))",
    "io_inp": [
      3,
      -4,
      -3,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(sub_n(reverse(input),-5),2),3))"
  },
  {
    "input": "input : list = [-1, -5, 5, -3, -1]\noutput : list = [2, 0, 8, -2]",
    "output": "generated_output : list = reverse(drop(add_n(add_n(sub_n([-1, -5, 5, -3, -1],1),1),3),1))",
    "io_inp": [
      -1,
      -5,
      5,
      -3,
      -1
    ],
    "io_out": [
      2,
      0,
      8,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(add_n(sub_n(input,1),1),3),1))"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [-5, -14, -17]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n([1, 4, 5],2),-3),14),-4)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      -5,
      -14,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(input,2),-3),14),-4)"
  },
  {
    "input": "input : list = [3, -4, 3, 2, 0, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = take([3, -4, 3, 2, 0, 3],2)",
    "io_inp": [
      3,
      -4,
      3,
      2,
      0,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -4, 4, -4, 1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take([-2, -4, 4, -4, 1],2)",
    "io_inp": [
      -2,
      -4,
      4,
      -4,
      1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sub_n(take(sub_n([-4, 0],4),8),1)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,4),8),1)"
  },
  {
    "input": "input : list = [4, -1, 3, 5, -1, 4]\noutput : list = [7, 7, -9, -13, -13, -17]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_asc([4, -1, 3, 5, -1, 4])),-4)),3)",
    "io_inp": [
      4,
      -1,
      3,
      5,
      -1,
      4
    ],
    "io_out": [
      7,
      7,
      -9,
      -13,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_asc(input)),-4)),3)"
  },
  {
    "input": "input : list = [1, 1, 1, -4, 2]\noutput : list = [5, 5, 5]",
    "output": "generated_output : list = take(mul_n(add_n([1, 1, 1, -4, 2],-2),-5),3)",
    "io_inp": [
      1,
      1,
      1,
      -4,
      2
    ],
    "io_out": [
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-2),-5),3)"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [2, 10, 2]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-1, -5, -1],-1)),2)",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      2,
      10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-1)),2)"
  },
  {
    "input": "input : list = [0, -2, -3, -3, 3]\noutput : list = [0, 0, 4, 24]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(drop([0, -2, -3, -3, 3],1),3),4)))",
    "io_inp": [
      0,
      -2,
      -3,
      -3,
      3
    ],
    "io_out": [
      0,
      0,
      4,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(drop(input,1),3),4)))"
  },
  {
    "input": "input : list = [3, -3, -2, 1, -1]\noutput : list = [7, 8, 9, 11, 13]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(add_n([3, -3, -2, 1, -1],3),-5)),-2))",
    "io_inp": [
      3,
      -3,
      -2,
      1,
      -1
    ],
    "io_out": [
      7,
      8,
      9,
      11,
      13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(add_n(input,3),-5)),-2))"
  },
  {
    "input": "input : list = [-5, 1, 5, -2]\noutput : list = [23, -1, -17, 11]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([-5, 1, 5, -2],-4),-4),1)",
    "io_inp": [
      -5,
      1,
      5,
      -2
    ],
    "io_out": [
      23,
      -1,
      -17,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,-4),-4),1)"
  },
  {
    "input": "input : list = [1, 3, -2]\noutput : list = [-6, -16, -12]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse(reverse([1, 3, -2]))),5),-2)",
    "io_inp": [
      1,
      3,
      -2
    ],
    "io_out": [
      -6,
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(reverse(input))),5),-2)"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [-10, -2, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_des([5, -4, 4])),3)),3)",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      -10,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_des(input)),3)),3)"
  },
  {
    "input": "input : list = [3, 1, 0, 2, -2]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(drop([3, 1, 0, 2, -2],3),-1))))",
    "io_inp": [
      3,
      1,
      0,
      2,
      -2
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(drop(input,3),-1))))"
  },
  {
    "input": "input : list = [2, 3, -3, 3, 1]\noutput : list = [3, 1, -9]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(take([2, 3, -3, 3, 1],3)),-4),2),-5)",
    "io_inp": [
      2,
      3,
      -3,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(take(input,3)),-4),2),-5)"
  },
  {
    "input": "input : list = [1, 2, 1, 0]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(drop([1, 2, 1, 0],2),-3)",
    "io_inp": [
      1,
      2,
      1,
      0
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-2, 3, -2, -5]\noutput : list = [3, -2, -2, -5]",
    "output": "generated_output : list = sort_des([-2, 3, -2, -5])",
    "io_inp": [
      -2,
      3,
      -2,
      -5
    ],
    "io_out": [
      3,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, -2, -5, 2]\noutput : list = [8]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(take([4, 4, -2, -5, 2],1),4),4)))",
    "io_inp": [
      4,
      4,
      -2,
      -5,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(take(input,1),4),4)))"
  },
  {
    "input": "input : list = [2, 0, 1, -2, -3]\noutput : list = [11, 10, 9, 7, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(sub_n([2, 0, 1, -2, -3],-5),-4)),-4),-4)",
    "io_inp": [
      2,
      0,
      1,
      -2,
      -3
    ],
    "io_out": [
      11,
      10,
      9,
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(sub_n(input,-5),-4)),-4),-4)"
  },
  {
    "input": "input : list = [5, -4, -2, -4, 2]\noutput : list = [3, -6, -4, -6, 0]",
    "output": "generated_output : list = sub_n([5, -4, -2, -4, 2],2)",
    "io_inp": [
      5,
      -4,
      -2,
      -4,
      2
    ],
    "io_out": [
      3,
      -6,
      -4,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, -5, 0, -4, 2]\noutput : list = [-2, 3, 8]",
    "output": "generated_output : list = sort_asc(drop(reverse(add_n([5, -5, 0, -4, 2],3)),2))",
    "io_inp": [
      5,
      -5,
      0,
      -4,
      2
    ],
    "io_out": [
      -2,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(add_n(input,3)),2))"
  },
  {
    "input": "input : list = [5, 3, -4, -1]\noutput : list = [-1, 2, 6, 8]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(sub_n([5, 3, -4, -1],-4)),1)),40)",
    "io_inp": [
      5,
      3,
      -4,
      -1
    ],
    "io_out": [
      -1,
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(sub_n(input,-4)),1)),40)"
  },
  {
    "input": "input : list = [1, -3, 1, -1]\noutput : list = [-3, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(reverse([1, -3, 1, -1]))",
    "io_inp": [
      1,
      -3,
      1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [4, -5, -1]\noutput : list = [-5, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, -5, -1]))",
    "io_inp": [
      4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -1, -5, -1]\noutput : list = [3, 23, 3, 8]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n([-2, -1, -5, -1],1),-5)),2),-5)",
    "io_inp": [
      -2,
      -1,
      -5,
      -1
    ],
    "io_out": [
      3,
      23,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n(input,1),-5)),2),-5)"
  },
  {
    "input": "input : list = [2, -4, -3, -4]\noutput : list = [-10, -10, -9, -4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(add_n([2, -4, -3, -4],-1)),-5)))",
    "io_inp": [
      2,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(add_n(input,-1)),-5)))"
  },
  {
    "input": "input : list = [-2, 3, -3, 3, 0]\noutput : list = [-6, -5, -3, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(add_n([-2, 3, -3, 3, 0],-3)),17)))",
    "io_inp": [
      -2,
      3,
      -3,
      3,
      0
    ],
    "io_out": [
      -6,
      -5,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(add_n(input,-3)),17)))"
  },
  {
    "input": "input : list = [4, -3, 0]\noutput : list = [12, 0, -9]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(sort_asc([4, -3, 0])))),3)",
    "io_inp": [
      4,
      -3,
      0
    ],
    "io_out": [
      12,
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(sort_asc(input)))),3)"
  },
  {
    "input": "input : list = [4, 3, 5, -3, 4]\noutput : list = [-3, 3, 4, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([4, 3, 5, -3, 4]))",
    "io_inp": [
      4,
      3,
      5,
      -3,
      4
    ],
    "io_out": [
      -3,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [0, 2, -4, 3, -5, 1]\noutput : list = [-60, -40, -20, 0, 80, 100]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(sort_asc([0, 2, -4, 3, -5, 1]),4))),-5)",
    "io_inp": [
      0,
      2,
      -4,
      3,
      -5,
      1
    ],
    "io_out": [
      -60,
      -40,
      -20,
      0,
      80,
      100
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(sort_asc(input),4))),-5)"
  },
  {
    "input": "input : list = [5, -4, 3, 5, -5]\noutput : list = [9, 0]",
    "output": "generated_output : list = sort_des(add_n(take(take(take([5, -4, 3, 5, -5],2),10),13),4))",
    "io_inp": [
      5,
      -4,
      3,
      5,
      -5
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(take(input,2),10),13),4))"
  },
  {
    "input": "input : list = [2, 3, -2, -1]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(drop([2, 3, -2, -1],2)),-4),7))",
    "io_inp": [
      2,
      3,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(drop(input,2)),-4),7))"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [0, 8, 0]",
    "output": "generated_output : list = add_n([-5, 3, -5],5)",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      0,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = add_n([-5, -4],2)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, -5, 5, 3]\noutput : list = [5, 3, 2, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_asc([2, -5, 5, 3])),24)),22)",
    "io_inp": [
      2,
      -5,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_asc(input)),24)),22)"
  },
  {
    "input": "input : list = [4, -3, 4, 0, 4, -1]\noutput : list = [3, -4, 3, -1, 3, -2]",
    "output": "generated_output : list = sub_n(add_n([4, -3, 4, 0, 4, -1],1),2)",
    "io_inp": [
      4,
      -3,
      4,
      0,
      4,
      -1
    ],
    "io_out": [
      3,
      -4,
      3,
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 1, -1, -2, 5]\noutput : list = [-16, -8, -12, -14, 0]",
    "output": "generated_output : list = mul_n(add_n([-3, 1, -1, -2, 5],-5),2)",
    "io_inp": [
      -3,
      1,
      -1,
      -2,
      5
    ],
    "io_out": [
      -16,
      -8,
      -12,
      -14,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),2)"
  },
  {
    "input": "input : list = [-3, 2, 5, -1, -2, -2]\noutput : list = [3, 0, -3, -4, -4, -5]",
    "output": "generated_output : list = sort_des(add_n([-3, 2, 5, -1, -2, -2],-2))",
    "io_inp": [
      -3,
      2,
      5,
      -1,
      -2,
      -2
    ],
    "io_out": [
      3,
      0,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 2, -1, 5]\noutput : list = [-16, 32, 8, 40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n([-2, 2, -1, 5],-3)),-4),2)",
    "io_inp": [
      -2,
      2,
      -1,
      5
    ],
    "io_out": [
      -16,
      32,
      8,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(input,-3)),-4),2)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-24, -24]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(drop([1, -4, -4],1),1),-3),29),3)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(drop(input,1),1),-3),29),3)"
  },
  {
    "input": "input : list = [5, 1, 2, 4]\noutput : list = [3, 0, -6, -9]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(reverse([5, 1, 2, 4])),28),4),3)",
    "io_inp": [
      5,
      1,
      2,
      4
    ],
    "io_out": [
      3,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(reverse(input)),28),4),3)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-45]",
    "output": "generated_output : list = mul_n(take(mul_n(take([-3, -1, -1],1),5),11),3)",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -45
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(input,1),5),11),3)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(sort_des([-1, 5]),4))))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-4, -1, 1, 2, 4]\noutput : list = [-12, -6, -3, 3, 12]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(sort_des([-4, -1, 1, 2, 4]),1)),-3))",
    "io_inp": [
      -4,
      -1,
      1,
      2,
      4
    ],
    "io_out": [
      -12,
      -6,
      -3,
      3,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(sort_des(input),1)),-3))"
  },
  {
    "input": "input : list = [-4, -5, 1, 5, 3, 1]\noutput : list = [-4, -5, 1]",
    "output": "generated_output : list = take([-4, -5, 1, 5, 3, 1],3)",
    "io_inp": [
      -4,
      -5,
      1,
      5,
      3,
      1
    ],
    "io_out": [
      -4,
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, -2, -5, 2, 2, 1]\noutput : list = [6, 7, 7, 0, 3]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(drop([3, -2, -5, 2, 2, 1],1),4),-1),2))",
    "io_inp": [
      3,
      -2,
      -5,
      2,
      2,
      1
    ],
    "io_out": [
      6,
      7,
      7,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(drop(input,1),4),-1),2))"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-3, -1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(sort_des([-5, -3, 2]),-1),22),-1))",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(sort_des(input),-1),22),-1))"
  },
  {
    "input": "input : list = [-4, 3, 3]\noutput : list = [-9, -2, -2]",
    "output": "generated_output : list = sub_n([-4, 3, 3],5)",
    "io_inp": [
      -4,
      3,
      3
    ],
    "io_out": [
      -9,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, -1, 0, 5, 3]\noutput : list = [29, 9, 4, -11, -21]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(mul_n([-5, -1, 0, 5, 3],-5)),4)),48)",
    "io_inp": [
      -5,
      -1,
      0,
      5,
      3
    ],
    "io_out": [
      29,
      9,
      4,
      -11,
      -21
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(mul_n(input,-5)),4)),48)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [6, 1]",
    "output": "generated_output : list = sub_n(take(add_n(take(sort_des([0, 5]),5),-3),31),-4)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sort_des(input),5),-3),31),-4)"
  },
  {
    "input": "input : list = [-1, 4, 2, -1]\noutput : list = [2, 5, 7, 2]",
    "output": "generated_output : list = reverse(add_n([-1, 4, 2, -1],3))",
    "io_inp": [
      -1,
      4,
      2,
      -1
    ],
    "io_out": [
      2,
      5,
      7,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, -5, 3, 3]\noutput : list = [-12, -12, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_des([-5, -5, 3, 3]))),-4))",
    "io_inp": [
      -5,
      -5,
      3,
      3
    ],
    "io_out": [
      -12,
      -12,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [4, -1, -2, 2, 1]\noutput : list = [1, 2, 7]",
    "output": "generated_output : list = take(reverse(sub_n(take([4, -1, -2, 2, 1],3),-3)),28)",
    "io_inp": [
      4,
      -1,
      -2,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(input,3),-3)),28)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-2]",
    "output": "generated_output : list = take(drop(add_n(take(add_n([5, -5, 2],-1),3),-3),2),4)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(drop(add_n(take(add_n(input,-1),3),-3),2),4)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sub_n([5, 1],3)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 5, 3, 3]\noutput : list = [-6, 6, 0, 0]",
    "output": "generated_output : list = mul_n(add_n(add_n([1, 5, 3, 3],-5),2),3)",
    "io_inp": [
      1,
      5,
      3,
      3
    ],
    "io_out": [
      -6,
      6,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-5),2),3)"
  },
  {
    "input": "input : list = [0, 0, -4, 4]\noutput : list = [-4, 0, -8]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(drop([0, 0, -4, 4],1),10),2),-1),2)",
    "io_inp": [
      0,
      0,
      -4,
      4
    ],
    "io_out": [
      -4,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(drop(input,1),10),2),-1),2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, -6]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(reverse([-4, 1])),6)),-2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(reverse(input)),6)),-2)"
  },
  {
    "input": "input : list = [-1, 2, -5]\noutput : list = [-24, -12, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(sub_n([-1, 2, -5],-4),2),-2),-4))",
    "io_inp": [
      -1,
      2,
      -5
    ],
    "io_out": [
      -24,
      -12,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(sub_n(input,-4),2),-2),-4))"
  },
  {
    "input": "input : list = [3, 5, 2]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(sort_des([3, 5, 2])),-1)))",
    "io_inp": [
      3,
      5,
      2
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [3, -2, 5, 2]\noutput : list = [5, 3, 2, -2]",
    "output": "generated_output : list = sort_des([3, -2, 5, 2])",
    "io_inp": [
      3,
      -2,
      5,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 0, -4]\noutput : list = [48, 18, -6]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(sub_n([5, 0, -4],-3),6)),2),3)",
    "io_inp": [
      5,
      0,
      -4
    ],
    "io_out": [
      48,
      18,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(sub_n(input,-3),6)),2),3)"
  },
  {
    "input": "input : list = [-2, -2, -4, -3, -2]\noutput : list = [1, 1, 1, 0, -1]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(sub_n([-2, -2, -4, -3, -2],-3))),1))",
    "io_inp": [
      -2,
      -2,
      -4,
      -3,
      -2
    ],
    "io_out": [
      1,
      1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(sub_n(input,-3))),1))"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [-4, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse([3, -4, 5]))",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, 1, 1, 4, 0]\noutput : list = [-9, -9, -8, -8, -5]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sub_n([0, 1, 1, 4, 0],5))),-3),-1)",
    "io_inp": [
      0,
      1,
      1,
      4,
      0
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sub_n(input,5))),-3),-1)"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take([1, -3, 2],1))))",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(input,1))))"
  },
  {
    "input": "input : list = [-3, 5, 1, -2]\noutput : list = [-3, -2, 1, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des([-3, 5, 1, -2])),10))",
    "io_inp": [
      -3,
      5,
      1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(input)),10))"
  },
  {
    "input": "input : list = [2, -4, -3, 3]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(take([2, -4, -3, 3],2),4)",
    "io_inp": [
      2,
      -4,
      -3,
      3
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),4)"
  },
  {
    "input": "input : list = [1, -3, 5, 3, 2, 4]\noutput : list = [48, 80, -48, 16]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(drop(reverse([1, -3, 5, 3, 2, 4]),2),-4),-2),2)",
    "io_inp": [
      1,
      -3,
      5,
      3,
      2,
      4
    ],
    "io_out": [
      48,
      80,
      -48,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(drop(reverse(input),2),-4),-2),2)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_des([-3, 4])),9)))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_des(input)),9)))"
  },
  {
    "input": "input : list = [-4, 3, 2, 1]\noutput : list = [-100, 25, 50, 75]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([-4, 3, 2, 1],5),5))",
    "io_inp": [
      -4,
      3,
      2,
      1
    ],
    "io_out": [
      -100,
      25,
      50,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,5),5))"
  },
  {
    "input": "input : list = [2, -1, -5, -4]\noutput : list = [-4, -10, -16, -18]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(sort_des([2, -1, -5, -4]),-3),5),-4),2)",
    "io_inp": [
      2,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -10,
      -16,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(sort_des(input),-3),5),-4),2)"
  },
  {
    "input": "input : list = [-3, -4, 5, 3, 3]\noutput : list = [2, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(take([-3, -4, 5, 3, 3],3),3))))",
    "io_inp": [
      -3,
      -4,
      5,
      3,
      3
    ],
    "io_out": [
      2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(take(input,3),3))))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n([-4, -2],-5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [7, 3, 0]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(add_n([3, -1, -4],3))),1),33)",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      7,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(add_n(input,3))),1),33)"
  },
  {
    "input": "input : list = [1, -1, -2, 3, 4]\noutput : list = [16, 12, 4, -4, -8]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n(add_n([1, -1, -2, 3, 4],-3),-1),6),-4))",
    "io_inp": [
      1,
      -1,
      -2,
      3,
      4
    ],
    "io_out": [
      16,
      12,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(add_n(input,-3),-1),6),-4))"
  },
  {
    "input": "input : list = [3, -5, -2, 2, 2]\noutput : list = [0, 3, 7, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des([3, -5, -2, 2, 2]),5)))",
    "io_inp": [
      3,
      -5,
      -2,
      2,
      2
    ],
    "io_out": [
      0,
      3,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(input),5)))"
  },
  {
    "input": "input : list = [-4, -3, -2, -5]\noutput : list = [-7, -6, -5, -4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-4, -3, -2, -5],2)))",
    "io_inp": [
      -4,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,2)))"
  },
  {
    "input": "input : list = [1, 2, 0]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(take([1, 2, 0],1),3),-4),16))",
    "io_inp": [
      1,
      2,
      0
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(take(input,1),3),-4),16))"
  },
  {
    "input": "input : list = [5, 1, -1, -5]\noutput : list = [-3, -5, -9]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n(sort_des([5, 1, -1, -5]),4)),3))",
    "io_inp": [
      5,
      1,
      -1,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(sort_des(input),4)),3))"
  },
  {
    "input": "input : list = [-3, 2, -1, -4, -2]\noutput : list = [-7, -6, -5, -4, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(mul_n([-3, 2, -1, -4, -2],1))),-3))",
    "io_inp": [
      -3,
      2,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(mul_n(input,1))),-3))"
  },
  {
    "input": "input : list = [0, 5, 5, 2, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(take([0, 5, 5, 2, 2],1)),5)))",
    "io_inp": [
      0,
      5,
      5,
      2,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(take(input,1)),5)))"
  },
  {
    "input": "input : list = [-5, -3, 5, 0, 4]\noutput : list = [10, 9, 5, 2, 0]",
    "output": "generated_output : list = sort_des(add_n([-5, -3, 5, 0, 4],5))",
    "io_inp": [
      -5,
      -3,
      5,
      0,
      4
    ],
    "io_out": [
      10,
      9,
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [-3, -5, -5]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(sub_n([-3, -5, -5],3),-4))),3)",
    "io_inp": [
      -3,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(sub_n(input,3),-4))),3)"
  },
  {
    "input": "input : list = [-3, 5, -2, -1, -3, 5]\noutput : list = [0, -6, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(drop([-3, 5, -2, -1, -3, 5],2),-4),-1)))",
    "io_inp": [
      -3,
      5,
      -2,
      -1,
      -3,
      5
    ],
    "io_out": [
      0,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(drop(input,2),-4),-1)))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n([0, -2],2)))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,2)))"
  },
  {
    "input": "input : list = [1, -4, -5, 4, 5]\noutput : list = [0, -10, -12, 6, 8]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n([1, -4, -5, 4, 5],5),-4),2),39)",
    "io_inp": [
      1,
      -4,
      -5,
      4,
      5
    ],
    "io_out": [
      0,
      -10,
      -12,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(input,5),-4),2),39)"
  },
  {
    "input": "input : list = [-1, -5, -3, -5, 3, 2]\noutput : list = [-4, -6, 10, 6, 10, 2]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(reverse([-1, -5, -3, -5, 3, 2]),24))),-2)",
    "io_inp": [
      -1,
      -5,
      -3,
      -5,
      3,
      2
    ],
    "io_out": [
      -4,
      -6,
      10,
      6,
      10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(reverse(input),24))),-2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(mul_n([1, 1],-5),4)),3),4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(mul_n(input,-5),4)),3),4)"
  },
  {
    "input": "input : list = [-5, 3, -2, 0, 1]\noutput : list = [-10, 6, -4, 0, 2]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(reverse([-5, 3, -2, 0, 1]))),2))",
    "io_inp": [
      -5,
      3,
      -2,
      0,
      1
    ],
    "io_out": [
      -10,
      6,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(reverse(input))),2))"
  },
  {
    "input": "input : list = [-3, 0, -2, -3, 3, -4]\noutput : list = [3, 12, 6, 3, 21, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse([-3, 0, -2, -3, 3, -4])),-4),3)",
    "io_inp": [
      -3,
      0,
      -2,
      -3,
      3,
      -4
    ],
    "io_out": [
      3,
      12,
      6,
      3,
      21,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(input)),-4),3)"
  },
  {
    "input": "input : list = [-3, 0, 3, 1, -3]\noutput : list = [-1, -3, -4, -7, -7]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(reverse([-3, 0, 3, 1, -3]),-5)),-1),37)",
    "io_inp": [
      -3,
      0,
      3,
      1,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(reverse(input),-5)),-1),37)"
  },
  {
    "input": "input : list = [-3, -4, -3, -1, -5]\noutput : list = [-10, -8, -6, -6, -2]",
    "output": "generated_output : list = sort_asc(mul_n([-3, -4, -3, -1, -5],2))",
    "io_inp": [
      -3,
      -4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-3, 3, -5, -4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = take([-3, 3, -5, -4],2)",
    "io_inp": [
      -3,
      3,
      -5,
      -4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 5, 3]\noutput : list = [10, 16, 12]",
    "output": "generated_output : list = take(add_n(add_n(add_n(mul_n([2, 5, 3],2),-3),4),5),15)",
    "io_inp": [
      2,
      5,
      3
    ],
    "io_out": [
      10,
      16,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(mul_n(input,2),-3),4),5),15)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-3, -15]",
    "output": "generated_output : list = sub_n(mul_n([-1, -4],4),-1)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -3,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),-1)"
  },
  {
    "input": "input : list = [-1, -5, 5, -5]\noutput : list = [2, -4, -8, -8]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(sort_asc([-1, -5, 5, -5]),1),1)),3)",
    "io_inp": [
      -1,
      -5,
      5,
      -5
    ],
    "io_out": [
      2,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(sort_asc(input),1),1)),3)"
  },
  {
    "input": "input : list = [-1, 0, -1, 4, -5, -5]\noutput : list = [-20, -4, 0, 0]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(take([-1, 0, -1, 4, -5, -5],4)),-4)),-4)",
    "io_inp": [
      -1,
      0,
      -1,
      4,
      -5,
      -5
    ],
    "io_out": [
      -20,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(take(input,4)),-4)),-4)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(take(sort_des(take(sort_asc([-4, 2]),10)),26))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(sort_asc(input),10)),26))"
  },
  {
    "input": "input : list = [-1, -2, 0, 0, 5]\noutput : list = [10, 5, 5, 4, 3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(add_n([-1, -2, 0, 0, 5],5),5)),-5))",
    "io_inp": [
      -1,
      -2,
      0,
      0,
      5
    ],
    "io_out": [
      10,
      5,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(add_n(input,5),5)),-5))"
  },
  {
    "input": "input : list = [4, -5, -4, -3, -4]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(sort_des([4, -5, -4, -3, -4]),2)",
    "io_inp": [
      4,
      -5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),2)"
  },
  {
    "input": "input : list = [-4, -4, 1, 3]\noutput : list = [4, 2, -3, -3]",
    "output": "generated_output : list = sub_n(sort_des([-4, -4, 1, 3]),-1)",
    "io_inp": [
      -4,
      -4,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [3, -1, 1, -5, 2]\noutput : list = [1, -5, 2]",
    "output": "generated_output : list = sub_n(add_n(drop([3, -1, 1, -5, 2],2),5),5)",
    "io_inp": [
      3,
      -1,
      1,
      -5,
      2
    ],
    "io_out": [
      1,
      -5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(input,2),5),5)"
  },
  {
    "input": "input : list = [-5, -2, -5, 0]\noutput : list = [-62, -37]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(drop([-5, -2, -5, 0],2),4),4),5),-3)",
    "io_inp": [
      -5,
      -2,
      -5,
      0
    ],
    "io_out": [
      -62,
      -37
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(drop(input,2),4),4),5),-3)"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(sort_des([5, 5, -2]),5),3),-2),41)",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(sort_des(input),5),3),-2),41)"
  },
  {
    "input": "input : list = [-1, 3, 1, 0, -4]\noutput : list = [-1, -5]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(take([-1, 3, 1, 0, -4],2),-1)),-2))",
    "io_inp": [
      -1,
      3,
      1,
      0,
      -4
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(take(input,2),-1)),-2))"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [-4, -10, -12]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_des([-1, 3, 0])),-5)),2)",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      -4,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_des(input)),-5)),2)"
  },
  {
    "input": "input : list = [4, 1, 4, 0, 2]\noutput : list = [-4, 0, 4, 12, 12]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(add_n([4, 1, 4, 0, 2],-2),4),4)))",
    "io_inp": [
      4,
      1,
      4,
      0,
      2
    ],
    "io_out": [
      -4,
      0,
      4,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(add_n(input,-2),4),4)))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-3, -8]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(reverse([3, -2]),-5)),-2),1)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(reverse(input),-5)),-2),1)"
  },
  {
    "input": "input : list = [-2, 4, -3, 1, 5]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(add_n([-2, 4, -3, 1, 5],-2),1))),1)",
    "io_inp": [
      -2,
      4,
      -3,
      1,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(add_n(input,-2),1))),1)"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [-4, 0, -5]",
    "output": "generated_output : list = sub_n([-1, 3, -2],3)",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      -4,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-1, 4]",
    "output": "generated_output : list = add_n(reverse(sub_n([5, 0],-2)),-3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-2)),-3)"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [0, -6, -10]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(reverse([-5, 5, -1]),-5)),31))",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(reverse(input),-5)),31))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_asc([4, 3])),1),-4))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [-2, 2, 4, -3, 4]\noutput : list = [-17, -17, -3]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(drop([-2, 2, 4, -3, 4],2),-2),-5)),-4)",
    "io_inp": [
      -2,
      2,
      4,
      -3,
      4
    ],
    "io_out": [
      -17,
      -17,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(drop(input,2),-2),-5)),-4)"
  },
  {
    "input": "input : list = [5, 0, -1, 5]\noutput : list = [12, 2, 0, 12]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(sub_n([5, 0, -1, 5],-3),2)),-4))",
    "io_inp": [
      5,
      0,
      -1,
      5
    ],
    "io_out": [
      12,
      2,
      0,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(sub_n(input,-3),2)),-4))"
  },
  {
    "input": "input : list = [-2, -4, -3, 3, 5, 0]\noutput : list = [7, 5, 6, 12]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(take([-2, -4, -3, 3, 5, 0],4),5),-4)))",
    "io_inp": [
      -2,
      -4,
      -3,
      3,
      5,
      0
    ],
    "io_out": [
      7,
      5,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(take(input,4),5),-4)))"
  },
  {
    "input": "input : list = [-5, -5, -3, -4, -1, 0]\noutput : list = [-77, -77, -62, -47, -17, -2]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(mul_n([-5, -5, -3, -4, -1, 0],-3)),-5),-2))",
    "io_inp": [
      -5,
      -5,
      -3,
      -4,
      -1,
      0
    ],
    "io_out": [
      -77,
      -77,
      -62,
      -47,
      -17,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(mul_n(input,-3)),-5),-2))"
  },
  {
    "input": "input : list = [-2, 1, -1, 3, 1]\noutput : list = [-10, -15, -25, -25, -35]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(reverse([-2, 1, -1, 3, 1]))),-4),-5)",
    "io_inp": [
      -2,
      1,
      -1,
      3,
      1
    ],
    "io_out": [
      -10,
      -15,
      -25,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(reverse(input))),-4),-5)"
  },
  {
    "input": "input : list = [-1, 1, -1, -1]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(take([-1, 1, -1, -1],1),-1))),1)",
    "io_inp": [
      -1,
      1,
      -1,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(take(input,1),-1))),1)"
  },
  {
    "input": "input : list = [0, -3, 0, 0]\noutput : list = [0, 0, -15, 0]",
    "output": "generated_output : list = mul_n(reverse([0, -3, 0, 0]),5)",
    "io_inp": [
      0,
      -3,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = drop([-1, -5, 3],1)",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 0, -4]\noutput : list = [-4, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des([-3, 0, -4]),4)",
    "io_inp": [
      -3,
      0,
      -4
    ],
    "io_out": [
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [4, 5, 2, 2, 2, -5]\noutput : list = [-5, 2, 2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 5, 2, 2, 2, -5])",
    "io_inp": [
      4,
      5,
      2,
      2,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -4, 0]\noutput : list = [-12, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(drop([3, -4, 0],1),-2),2)))",
    "io_inp": [
      3,
      -4,
      0
    ],
    "io_out": [
      -12,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(drop(input,1),-2),2)))"
  },
  {
    "input": "input : list = [0, 2, -4, 2, -2, 1]\noutput : list = [-12, -8, -20, -8, -16, -10]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse(sub_n([0, 2, -4, 2, -2, 1],4))),-2),2)",
    "io_inp": [
      0,
      2,
      -4,
      2,
      -2,
      1
    ],
    "io_out": [
      -12,
      -8,
      -20,
      -8,
      -16,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(sub_n(input,4))),-2),2)"
  },
  {
    "input": "input : list = [4, -2, -3, 3, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = take(reverse(take([4, -2, -3, 3, -2],2)),31)",
    "io_inp": [
      4,
      -2,
      -3,
      3,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,2)),31)"
  },
  {
    "input": "input : list = [-5, 4, 3, 4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = drop([-5, 4, 3, 4, 2],3)",
    "io_inp": [
      -5,
      4,
      3,
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, -1, 3, -2]\noutput : list = [12, -8]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(drop([5, -1, 3, -2],2),1)),-4),43)",
    "io_inp": [
      5,
      -1,
      3,
      -2
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(drop(input,2),1)),-4),43)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-10, -7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(mul_n([-2, -5],1))),-4),1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(mul_n(input,1))),-4),1)"
  },
  {
    "input": "input : list = [1, 1, -1, 5, 5, 2]\noutput : list = [2, 5, 5, -1, 1, 1]",
    "output": "generated_output : list = take(take(reverse([1, 1, -1, 5, 5, 2]),23),20)",
    "io_inp": [
      1,
      1,
      -1,
      5,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      5,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),23),20)"
  },
  {
    "input": "input : list = [5, -5, 4]\noutput : list = [8, -1, 9]",
    "output": "generated_output : list = take(add_n(reverse([5, -5, 4]),4),14)",
    "io_inp": [
      5,
      -5,
      4
    ],
    "io_out": [
      8,
      -1,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),4),14)"
  },
  {
    "input": "input : list = [-5, -2, -3, -4, -3]\noutput : list = [-5, -4, -3, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(reverse([-5, -2, -3, -4, -3])))))",
    "io_inp": [
      -5,
      -2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 5, 2, -5, -5]\noutput : list = [14, 14, 10, 0, -6]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sub_n([-3, 5, 2, -5, -5],2)),1)),-2)",
    "io_inp": [
      -3,
      5,
      2,
      -5,
      -5
    ],
    "io_out": [
      14,
      14,
      10,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sub_n(input,2)),1)),-2)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [13, 5]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(sub_n([5, -3],-4),5),3),4),22)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      13,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(sub_n(input,-4),5),3),4),22)"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(take([-1, -2, 0],1),3))))",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(take(input,1),3))))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([-2, 5])))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([-3, 3])",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, 4, -4, 5, 4]\noutput : list = [-17, -16, -15, -8, -8, -7]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(sub_n([-5, -3, 4, -4, 5, 4],3),-5))),-4)",
    "io_inp": [
      -5,
      -3,
      4,
      -4,
      5,
      4
    ],
    "io_out": [
      -17,
      -16,
      -15,
      -8,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(sub_n(input,3),-5))),-4)"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [-1, -4]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(drop([-3, 0, -3],1),2))),-3)",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(drop(input,1),2))),-3)"
  },
  {
    "input": "input : list = [3, -2, 0, -5, 3, 2]\noutput : list = [3, 2, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(drop([3, -2, 0, -5, 3, 2],2)))",
    "io_inp": [
      3,
      -2,
      0,
      -5,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [-4, 0, 2, 4]\noutput : list = [-7, -3, -1, 1]",
    "output": "generated_output : list = add_n([-4, 0, 2, 4],-3)",
    "io_inp": [
      -4,
      0,
      2,
      4
    ],
    "io_out": [
      -7,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 5, 4, -2]\noutput : list = [-2, -2, 4, 5]",
    "output": "generated_output : list = sort_asc([-2, 5, 4, -2])",
    "io_inp": [
      -2,
      5,
      4,
      -2
    ],
    "io_out": [
      -2,
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, -3, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(drop(reverse(sort_asc(drop([-4, -4, -3, -3],1))),1))",
    "io_inp": [
      -4,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(sort_asc(drop(input,1))),1))"
  },
  {
    "input": "input : list = [-1, 0, 0, 4, 3, -3]\noutput : list = [11, 10, 7, 7, 6, 4]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(sort_des([-1, 0, 0, 4, 3, -3]),4)),3),54)",
    "io_inp": [
      -1,
      0,
      0,
      4,
      3,
      -3
    ],
    "io_out": [
      11,
      10,
      7,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(sort_des(input),4)),3),54)"
  },
  {
    "input": "input : list = [-5, 2, -3, -3, 4]\noutput : list = [16, 6, 6, -19, -29]",
    "output": "generated_output : list = add_n(add_n(reverse(mul_n(sort_des([-5, 2, -3, -3, 4]),-5)),-5),-4)",
    "io_inp": [
      -5,
      2,
      -3,
      -3,
      4
    ],
    "io_out": [
      16,
      6,
      6,
      -19,
      -29
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(mul_n(sort_des(input),-5)),-5),-4)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [3, 1]",
    "output": "generated_output : list = mul_n([-3, -1],-1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, 1, -5, 2, -3, 2]\noutput : list = [-60, -60, -30, 0, 90, 150]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_asc([0, 1, -5, 2, -3, 2]),-2),3),5))",
    "io_inp": [
      0,
      1,
      -5,
      2,
      -3,
      2
    ],
    "io_out": [
      -60,
      -60,
      -30,
      0,
      90,
      150
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_asc(input),-2),3),5))"
  },
  {
    "input": "input : list = [3, -1, 0, -4, 3, -2]\noutput : list = [63, -17, 3, -77, 63, -37]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(mul_n([3, -1, 0, -4, 3, -2],4),5),2),1),7)",
    "io_inp": [
      3,
      -1,
      0,
      -4,
      3,
      -2
    ],
    "io_out": [
      63,
      -17,
      3,
      -77,
      63,
      -37
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(mul_n(input,4),5),2),1),7)"
  },
  {
    "input": "input : list = [4, -3, -4]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = add_n(reverse([4, -3, -4]),1)",
    "io_inp": [
      4,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [4, 1, -4]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = sort_asc([4, 1, -4])",
    "io_inp": [
      4,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, -1, -2]\noutput : list = [-12, -16, -16, -28]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(add_n([-5, -2, -1, -2],-2)),4),42))",
    "io_inp": [
      -5,
      -2,
      -1,
      -2
    ],
    "io_out": [
      -12,
      -16,
      -16,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(add_n(input,-2)),4),42))"
  },
  {
    "input": "input : list = [-1, 3, 4, -1]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop(reverse(sort_des([-1, 3, 4, -1])),2)",
    "io_inp": [
      -1,
      3,
      4,
      -1
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_des(input)),2)"
  },
  {
    "input": "input : list = [-1, 5, -5, -4, 1]\noutput : list = [-5, -4, -1, 1, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, -5, -4, 1])",
    "io_inp": [
      -1,
      5,
      -5,
      -4,
      1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, 2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(drop(sort_des(reverse(reverse([-2, -1, 2]))),2))",
    "io_inp": [
      -2,
      -1,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(reverse(reverse(input))),2))"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [7, 7, 2]",
    "output": "generated_output : list = sort_des(take(take(add_n(sort_des([2, 2, -3]),5),13),12))",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      7,
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(sort_des(input),5),13),12))"
  },
  {
    "input": "input : list = [4, 1, -4]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = sort_asc([4, 1, -4])",
    "io_inp": [
      4,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, -3]\noutput : list = [-16]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(take([5, -4, -3],1),-5),2),-2))",
    "io_inp": [
      5,
      -4,
      -3
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(take(input,1),-5),2),-2))"
  },
  {
    "input": "input : list = [2, 2, 0, -4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(drop([2, 2, 0, -4, 1],3)),18)))",
    "io_inp": [
      2,
      2,
      0,
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(drop(input,3)),18)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [7, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n([-1, 3],1))),2),-2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n(input,1))),2),-2)"
  },
  {
    "input": "input : list = [-5, 5, -2, 4]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take([-5, 5, -2, 4],2)",
    "io_inp": [
      -5,
      5,
      -2,
      4
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(take([-2, 0, -2],1)),4)),-2)",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(take(input,1)),4)),-2)"
  },
  {
    "input": "input : list = [4, 2, 5, -5, -5]\noutput : list = [-14]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(take([4, 2, 5, -5, -5],1),-2),-4),4),2)",
    "io_inp": [
      4,
      2,
      5,
      -5,
      -5
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(take(input,1),-2),-4),4),2)"
  },
  {
    "input": "input : list = [-4, -3, -5]\noutput : list = [-6, -5, -4]",
    "output": "generated_output : list = sort_asc(sub_n([-4, -3, -5],1))",
    "io_inp": [
      -4,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [-2, 4, -5, 2, -4, -4]\noutput : list = [4, 2, -2, -4, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([-2, 4, -5, 2, -4, -4]))",
    "io_inp": [
      -2,
      4,
      -5,
      2,
      -4,
      -4
    ],
    "io_out": [
      4,
      2,
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [-8, 4]",
    "output": "generated_output : list = mul_n(drop(sub_n(sort_asc(sort_asc([0, -3, -4])),-1),1),4)",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(sort_asc(sort_asc(input)),-1),1),4)"
  },
  {
    "input": "input : list = [5, 4, 0, 4]\noutput : list = [0, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 4, 0, 4])",
    "io_inp": [
      5,
      4,
      0,
      4
    ],
    "io_out": [
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 4, 1, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(take([5, 4, 1, 4],2)))))",
    "io_inp": [
      5,
      4,
      1,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [5, 5, 1, 0]\noutput : list = [15, 15, 11, 10]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse([5, 5, 1, 0])),5),-5)",
    "io_inp": [
      5,
      5,
      1,
      0
    ],
    "io_out": [
      15,
      15,
      11,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(input)),5),-5)"
  },
  {
    "input": "input : list = [-2, -2, -2, -4, 3, 0]\noutput : list = [8, 5, 3, 3, 3, 1]",
    "output": "generated_output : list = sort_des(add_n([-2, -2, -2, -4, 3, 0],5))",
    "io_inp": [
      -2,
      -2,
      -2,
      -4,
      3,
      0
    ],
    "io_out": [
      8,
      5,
      3,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [-1, -2, 2, 4, 2, -3]\noutput : list = [-3, -2, -1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([-1, -2, 2, 4, 2, -3])",
    "io_inp": [
      -1,
      -2,
      2,
      4,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 3, -4, 5]\noutput : list = [24, -21, 14]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(drop([-5, 5, 3, -4, 5],2),5),2)),-1)",
    "io_inp": [
      -5,
      5,
      3,
      -4,
      5
    ],
    "io_out": [
      24,
      -21,
      14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(drop(input,2),5),2)),-1)"
  },
  {
    "input": "input : list = [-4, -2, -4, 2, 2, -5]\noutput : list = [8, 8, 4, 2, 2, 1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(sub_n([-4, -2, -4, 2, 2, -5],-3),22))),3)",
    "io_inp": [
      -4,
      -2,
      -4,
      2,
      2,
      -5
    ],
    "io_out": [
      8,
      8,
      4,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(sub_n(input,-3),22))),3)"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [-6, -7, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(sort_asc([1, -2, 0]),5)),-2))",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(sort_asc(input),5)),-2))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-5, 4])))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, -3, -1]\noutput : list = [0, -3, -9]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sub_n([-4, -3, -1],-3)),2),-3),-3)",
    "io_inp": [
      -4,
      -3,
      -1
    ],
    "io_out": [
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(sub_n(input,-3)),2),-3),-3)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, 2]",
    "output": "generated_output : list = mul_n([0, -1],-2)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 1, 2, 4, 5, 0]\noutput : list = [-17, -13, -5, -1, 3, 19]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(mul_n([-4, 1, 2, 4, 5, 0],-4),14),-1),-2))",
    "io_inp": [
      -4,
      1,
      2,
      4,
      5,
      0
    ],
    "io_out": [
      -17,
      -13,
      -5,
      -1,
      3,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(mul_n(input,-4),14),-1),-2))"
  },
  {
    "input": "input : list = [-4, -2, -2, 0, 3]\noutput : list = [4, 16, 24, 24, 32]",
    "output": "generated_output : list = take(mul_n(add_n(reverse([-4, -2, -2, 0, 3]),-4),-4),20)",
    "io_inp": [
      -4,
      -2,
      -2,
      0,
      3
    ],
    "io_out": [
      4,
      16,
      24,
      24,
      32
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(input),-4),-4),20)"
  },
  {
    "input": "input : list = [0, 0, -5, -5]\noutput : list = [4, 4, -1, -1]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(sort_des([0, 0, -5, -5]),-4)),21))",
    "io_inp": [
      0,
      0,
      -5,
      -5
    ],
    "io_out": [
      4,
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(sort_des(input),-4)),21))"
  },
  {
    "input": "input : list = [3, 5, -1, -2, 1, 4]\noutput : list = [10, 8, 2, -2, -4]",
    "output": "generated_output : list = sort_des(mul_n(drop([3, 5, -1, -2, 1, 4],1),2))",
    "io_inp": [
      3,
      5,
      -1,
      -2,
      1,
      4
    ],
    "io_out": [
      10,
      8,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,1),2))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sub_n([4, 4],2),1),5)),3)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sub_n(input,2),1),5)),3)"
  },
  {
    "input": "input : list = [-2, 0, -1]\noutput : list = [-10, 0, -5]",
    "output": "generated_output : list = mul_n([-2, 0, -1],5)",
    "io_inp": [
      -2,
      0,
      -1
    ],
    "io_out": [
      -10,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, 5, 4, -1, -4, -4]\noutput : list = [2, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take([-5, 5, 4, -1, -4, -4],2)),-3))",
    "io_inp": [
      -5,
      5,
      4,
      -1,
      -4,
      -4
    ],
    "io_out": [
      2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(input,2)),-3))"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(take([-4, 0, 2],1),3)),-5),-4)",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(take(input,1),3)),-5),-4)"
  },
  {
    "input": "input : list = [-5, -4, 2, -5]\noutput : list = [-6, -5, 1, -6]",
    "output": "generated_output : list = add_n(add_n([-5, -4, 2, -5],2),-3)",
    "io_inp": [
      -5,
      -4,
      2,
      -5
    ],
    "io_out": [
      -6,
      -5,
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-3)"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [-1, 4, 1]",
    "output": "generated_output : list = add_n([0, 5, 2],-1)",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      -1,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [4, 0, 4]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(add_n([2, 0, 2],-5),5)),-2),-1)",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      4,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(add_n(input,-5),5)),-2),-1)"
  },
  {
    "input": "input : list = [5, 4, 0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(take(take(drop(sort_des([5, 4, 0, 3]),2),13),7))",
    "io_inp": [
      5,
      4,
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(take(drop(sort_des(input),2),13),7))"
  },
  {
    "input": "input : list = [-4, -3, 1, 3, 0, 5]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = take(take([-4, -3, 1, 3, 0, 5],3),7)",
    "io_inp": [
      -4,
      -3,
      1,
      3,
      0,
      5
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(take(input,3),7)"
  },
  {
    "input": "input : list = [-4, 0, 1, 0, 0, 5]\noutput : list = [-12, 4, 8, 4, 4, 24]",
    "output": "generated_output : list = reverse(add_n(take(reverse(mul_n([-4, 0, 1, 0, 0, 5],4)),19),4))",
    "io_inp": [
      -4,
      0,
      1,
      0,
      0,
      5
    ],
    "io_out": [
      -12,
      4,
      8,
      4,
      4,
      24
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(mul_n(input,4)),19),4))"
  },
  {
    "input": "input : list = [2, 2, 0, -5, -4]\noutput : list = [-4, -4, 0, 8, 10]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse([2, 2, 0, -5, -4]),-2),34))",
    "io_inp": [
      2,
      2,
      0,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(input),-2),34))"
  },
  {
    "input": "input : list = [1, -3, -3, 2]\noutput : list = [-2, -6, -6, -1]",
    "output": "generated_output : list = add_n([1, -3, -3, 2],-3)",
    "io_inp": [
      1,
      -3,
      -3,
      2
    ],
    "io_out": [
      -2,
      -6,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, 4, 2, -2]\noutput : list = [2, 1, 1, 0, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_asc([3, 3, 4, 2, -2]),2))),22)",
    "io_inp": [
      3,
      3,
      4,
      2,
      -2
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(sort_asc(input),2))),22)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse([-4, 2])",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 1, 0]\noutput : list = [34, 24, 19]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(add_n([-2, 1, 0],-4),-5)),1),5)",
    "io_inp": [
      -2,
      1,
      0
    ],
    "io_out": [
      34,
      24,
      19
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(add_n(input,-4),-5)),1),5)"
  },
  {
    "input": "input : list = [2, -1, 3, 0, -3, -4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(mul_n([2, -1, 3, 0, -3, -4],1))),1))",
    "io_inp": [
      2,
      -1,
      3,
      0,
      -3,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(mul_n(input,1))),1))"
  },
  {
    "input": "input : list = [-3, 2, 3, -4]\noutput : list = [-6, 9]",
    "output": "generated_output : list = sub_n(mul_n(take([-3, 2, 3, -4],2),3),-3)",
    "io_inp": [
      -3,
      2,
      3,
      -4
    ],
    "io_out": [
      -6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,2),3),-3)"
  },
  {
    "input": "input : list = [-4, 1, 3, 0]\noutput : list = [4, -6, -10, -4]",
    "output": "generated_output : list = add_n(mul_n([-4, 1, 3, 0],-2),-4)",
    "io_inp": [
      -4,
      1,
      3,
      0
    ],
    "io_out": [
      4,
      -6,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),-4)"
  },
  {
    "input": "input : list = [0, 2, -5, -4, -4]\noutput : list = [4, 8, -6, -4, -4]",
    "output": "generated_output : list = mul_n(sub_n([0, 2, -5, -4, -4],-2),2)",
    "io_inp": [
      0,
      2,
      -5,
      -4,
      -4
    ],
    "io_out": [
      4,
      8,
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),2)"
  },
  {
    "input": "input : list = [1, -5, 2, 3]\noutput : list = [-9, -3, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n([1, -5, 2, 3],-4))))",
    "io_inp": [
      1,
      -5,
      2,
      3
    ],
    "io_out": [
      -9,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(input,-4))))"
  },
  {
    "input": "input : list = [2, -5, -3, 1]\noutput : list = [10, 6, -2, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(mul_n([2, -5, -3, 1],-2),9))))",
    "io_inp": [
      2,
      -5,
      -3,
      1
    ],
    "io_out": [
      10,
      6,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(mul_n(input,-2),9))))"
  },
  {
    "input": "input : list = [1, -4, -2, -1, -5]\noutput : list = [5, 3]",
    "output": "generated_output : list = mul_n(reverse(drop(sort_asc(sub_n([1, -4, -2, -1, -5],-4)),3)),1)",
    "io_inp": [
      1,
      -4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(sort_asc(sub_n(input,-4)),3)),1)"
  },
  {
    "input": "input : list = [-3, -5, 4, -2]\noutput : list = [-85, -55, -40, 50]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(reverse([-3, -5, 4, -2])),-3),2),-5)",
    "io_inp": [
      -3,
      -5,
      4,
      -2
    ],
    "io_out": [
      -85,
      -55,
      -40,
      50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(reverse(input)),-3),2),-5)"
  },
  {
    "input": "input : list = [4, -2, 2, -5]\noutput : list = [5, -9, -1, -13]",
    "output": "generated_output : list = add_n(reverse(take(take(mul_n([4, -2, 2, -5],-2),13),16)),-5)",
    "io_inp": [
      4,
      -2,
      2,
      -5
    ],
    "io_out": [
      5,
      -9,
      -1,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(take(mul_n(input,-2),13),16)),-5)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(add_n([5, -4],-2),4),-3),-5))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(add_n(input,-2),4),-3),-5))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sub_n([-2, -5],5))),-5))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sub_n(input,5))),-5))"
  },
  {
    "input": "input : list = [4, 2, 5, -5]\noutput : list = [16, 8, 20, -20]",
    "output": "generated_output : list = mul_n([4, 2, 5, -5],4)",
    "io_inp": [
      4,
      2,
      5,
      -5
    ],
    "io_out": [
      16,
      8,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, -2, -1, -5]\noutput : list = [96, 36, 16]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(drop([2, -2, -1, -5],1),-5),4),-4))",
    "io_inp": [
      2,
      -2,
      -1,
      -5
    ],
    "io_out": [
      96,
      36,
      16
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(drop(input,1),-5),4),-4))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(reverse([4, 3]))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, -4, 3, -5, -2]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(add_n([4, -4, 3, -5, -2],3)),2),2))",
    "io_inp": [
      4,
      -4,
      3,
      -5,
      -2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(add_n(input,3)),2),2))"
  },
  {
    "input": "input : list = [-2, 3, 2, -4, 5, -1]\noutput : list = [1, 3, 4, 7, 8, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([-2, 3, 2, -4, 5, -1])),-5)",
    "io_inp": [
      -2,
      3,
      2,
      -4,
      5,
      -1
    ],
    "io_out": [
      1,
      3,
      4,
      7,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [-3, 5, 1, 1]\noutput : list = [2, -2, -2, -6]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_asc([-3, 5, 1, 1]))),-1),-1)",
    "io_inp": [
      -3,
      5,
      1,
      1
    ],
    "io_out": [
      2,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(sort_asc(input))),-1),-1)"
  },
  {
    "input": "input : list = [-1, -3, 1]\noutput : list = [-8, -6, -4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(add_n([-1, -3, 1],3),-3),5)))",
    "io_inp": [
      -1,
      -3,
      1
    ],
    "io_out": [
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(add_n(input,3),-3),5)))"
  },
  {
    "input": "input : list = [5, -5, -3, 3, 2, -4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(drop([5, -5, -3, 3, 2, -4],4),-4),5),3))",
    "io_inp": [
      5,
      -5,
      -3,
      3,
      2,
      -4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(drop(input,4),-4),5),3))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-7, -37]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(sort_des([-1, 5]),-3)),-5),3)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -7,
      -37
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(sort_des(input),-3)),-5),3)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(sub_n([-3, -2],-1)))),40)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(sub_n(input,-1)))),40)"
  },
  {
    "input": "input : list = [-2, -1, 3, -4]\noutput : list = [-6, -3, 1]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(drop([-2, -1, 3, -4],1)),-2)),8)",
    "io_inp": [
      -2,
      -1,
      3,
      -4
    ],
    "io_out": [
      -6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(drop(input,1)),-2)),8)"
  },
  {
    "input": "input : list = [3, -1, 3, 1, -2]\noutput : list = [6, 2, 6, 4, 1]",
    "output": "generated_output : list = add_n([3, -1, 3, 1, -2],3)",
    "io_inp": [
      3,
      -1,
      3,
      1,
      -2
    ],
    "io_out": [
      6,
      2,
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, -3, 4, 3]\noutput : list = [-1, 5, 6, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n([4, -3, 4, 3],-2)),1))",
    "io_inp": [
      4,
      -3,
      4,
      3
    ],
    "io_out": [
      -1,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(input,-2)),1))"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [-13, -6, -5]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_asc([3, -4, 4])),-5)),4)",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      -13,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_asc(input)),-5)),4)"
  },
  {
    "input": "input : list = [2, 0, -4, 3, -1, 4]\noutput : list = [4, 2, -2, 5, 1, 6]",
    "output": "generated_output : list = add_n([2, 0, -4, 3, -1, 4],2)",
    "io_inp": [
      2,
      0,
      -4,
      3,
      -1,
      4
    ],
    "io_out": [
      4,
      2,
      -2,
      5,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, 1, 0, 1, 2, -3]\noutput : list = [-4, -1, -2, -1, 0, -5]",
    "output": "generated_output : list = sub_n([-2, 1, 0, 1, 2, -3],2)",
    "io_inp": [
      -2,
      1,
      0,
      1,
      2,
      -3
    ],
    "io_out": [
      -4,
      -1,
      -2,
      -1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, -5, 2]\noutput : list = [6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(take([-1, -5, 2],1),-4))),-3)",
    "io_inp": [
      -1,
      -5,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(take(input,1),-4))),-3)"
  },
  {
    "input": "input : list = [3, -5, -4, -2]\noutput : list = [-45, -20, -10, -5]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(add_n([3, -5, -4, -2],5)),-5),-1),-4)",
    "io_inp": [
      3,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -45,
      -20,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(add_n(input,5)),-5),-1),-4)"
  },
  {
    "input": "input : list = [1, -4, -1, 1, -2]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(sort_des(drop([1, -4, -1, 1, -2],1)),2)",
    "io_inp": [
      1,
      -4,
      -1,
      1,
      -2
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,1)),2)"
  },
  {
    "input": "input : list = [2, -3, 4, -5, 4]\noutput : list = [-5, -3, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des([2, -3, 4, -5, 4]),10))",
    "io_inp": [
      2,
      -3,
      4,
      -5,
      4
    ],
    "io_out": [
      -5,
      -3,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),10))"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [-29]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(take([-5, 3, -5],1),5),3),-3),-4)",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      -29
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(take(input,1),5),3),-3),-4)"
  },
  {
    "input": "input : list = [2, 4, -4, 1]\noutput : list = [20, 0, -10, -60]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n([2, 4, -4, 1],-2)),-5),-2))",
    "io_inp": [
      2,
      4,
      -4,
      1
    ],
    "io_out": [
      20,
      0,
      -10,
      -60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n(input,-2)),-5),-2))"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [20, 20, 8]",
    "output": "generated_output : list = mul_n(sort_des(reverse([2, 5, 5])),4)",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      20,
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),4)"
  },
  {
    "input": "input : list = [2, -3, -3, 5]\noutput : list = [6]",
    "output": "generated_output : list = add_n(drop(take(sub_n(sub_n([2, -3, -3, 5],1),-1),22),3),1)",
    "io_inp": [
      2,
      -3,
      -3,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(drop(take(sub_n(sub_n(input,1),-1),22),3),1)"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = add_n([-2, 1, 2],1)",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, 2, 0, 1, -2]\noutput : list = [6, -12]",
    "output": "generated_output : list = mul_n(drop(mul_n([5, 2, 0, 1, -2],-3),3),-2)",
    "io_inp": [
      5,
      2,
      0,
      1,
      -2
    ],
    "io_out": [
      6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(drop(mul_n(input,-3),3),-2)"
  },
  {
    "input": "input : list = [-2, -5, -2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = drop([-2, -5, -2, -5],2)",
    "io_inp": [
      -2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, 0, -4, 3]\noutput : list = [-8, 6]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(drop([0, 0, -4, 3],2),2)),16))",
    "io_inp": [
      0,
      0,
      -4,
      3
    ],
    "io_out": [
      -8,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(drop(input,2),2)),16))"
  },
  {
    "input": "input : list = [1, -5, 5, 2, -5, -3]\noutput : list = [-7, -7, -5, -1, 0, 3]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc([1, -5, 5, 2, -5, -3]))),2))",
    "io_inp": [
      1,
      -5,
      5,
      2,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [5, 3, -5, -5, 5, 4]\noutput : list = [110, 110, -50, -70, -90, -90]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(mul_n([5, 3, -5, -5, 5, 4],-4),-2)),5))",
    "io_inp": [
      5,
      3,
      -5,
      -5,
      5,
      4
    ],
    "io_out": [
      110,
      110,
      -50,
      -70,
      -90,
      -90
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(mul_n(input,-4),-2)),5))"
  },
  {
    "input": "input : list = [5, -4, 3, 3, 1]\noutput : list = [-61, 19, 51, 51, 83]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(reverse([5, -4, 3, 3, 1]),4)),4),-3)",
    "io_inp": [
      5,
      -4,
      3,
      3,
      1
    ],
    "io_out": [
      -61,
      19,
      51,
      51,
      83
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(reverse(input),4)),4),-3)"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(add_n([-1, 4, 1],3),8),-3)),1)",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(add_n(input,3),8),-3)),1)"
  },
  {
    "input": "input : list = [1, -2, 5, -4, -4]\noutput : list = [-16, -28, 0, -36, -36]",
    "output": "generated_output : list = take(mul_n(take(add_n(add_n([1, -2, 5, -4, -4],-2),-3),5),4),8)",
    "io_inp": [
      1,
      -2,
      5,
      -4,
      -4
    ],
    "io_out": [
      -16,
      -28,
      0,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = take(mul_n(take(add_n(add_n(input,-2),-3),5),4),8)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(take(take(take(mul_n([3, 3],-1),14),6),1),1)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(take(take(mul_n(input,-1),14),6),1),1)"
  },
  {
    "input": "input : list = [5, -3, 2, -1, -2]\noutput : list = [5, -3]",
    "output": "generated_output : list = take([5, -3, 2, -1, -2],2)",
    "io_inp": [
      5,
      -3,
      2,
      -1,
      -2
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -1, -2, 3, 5, -4]\noutput : list = [4, 16, 22, -8, -20, 34]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n(mul_n([1, -1, -2, 3, 5, -4],3),5)),-2))",
    "io_inp": [
      1,
      -1,
      -2,
      3,
      5,
      -4
    ],
    "io_out": [
      4,
      16,
      22,
      -8,
      -20,
      34
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(mul_n(input,3),5)),-2))"
  },
  {
    "input": "input : list = [1, -5, 1, -4, 1]\noutput : list = [5, -1, 5, 0, 5]",
    "output": "generated_output : list = reverse(reverse(take(sub_n([1, -5, 1, -4, 1],-4),18)))",
    "io_inp": [
      1,
      -5,
      1,
      -4,
      1
    ],
    "io_out": [
      5,
      -1,
      5,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sub_n(input,-4),18)))"
  },
  {
    "input": "input : list = [5, 5, 4, 1, 5, 5]\noutput : list = [6, 9, 10, 10, 10, 10]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(sort_asc([5, 5, 4, 1, 5, 5]),-4),-2),3))",
    "io_inp": [
      5,
      5,
      4,
      1,
      5,
      5
    ],
    "io_out": [
      6,
      9,
      10,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(sort_asc(input),-4),-2),3))"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [3, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 5, 3])",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, -5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(drop([-3, 3, -5],1)))))",
    "io_inp": [
      -3,
      3,
      -5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [1, -3, -3, -1, 2, 5]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(add_n(add_n(take(sort_des([1, -3, -3, -1, 2, 5]),2),-4),3),-4)",
    "io_inp": [
      1,
      -3,
      -3,
      -1,
      2,
      5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(sort_des(input),2),-4),3),-4)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc([1, 0]))))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-8, 0]",
    "output": "generated_output : list = add_n([-5, 3],-3)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [-2, -8, -14]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(mul_n([-5, 1, -2],2)),4)))",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      -2,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(mul_n(input,2)),4)))"
  },
  {
    "input": "input : list = [-4, 0, 3, -3]\noutput : list = [25, 20, 5, -10]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(reverse([-4, 0, 3, -3]))),1),-5)",
    "io_inp": [
      -4,
      0,
      3,
      -3
    ],
    "io_out": [
      25,
      20,
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(reverse(input))),1),-5)"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [-3, -1, 2]",
    "output": "generated_output : list = take(sub_n(mul_n(take(sort_des([0, 2, -3]),11),-1),1),8)",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(sort_des(input),11),-1),1),8)"
  },
  {
    "input": "input : list = [2, -1, 0, 5, -2]\noutput : list = [15, 6, 0, -3, -6]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_des([2, -1, 0, 5, -2])),1),3))",
    "io_inp": [
      2,
      -1,
      0,
      5,
      -2
    ],
    "io_out": [
      15,
      6,
      0,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_des(input)),1),3))"
  },
  {
    "input": "input : list = [2, -4, 2, -3, 0, 4]\noutput : list = [11, 9, 9, 7, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc([2, -4, 2, -3, 0, 4]),4)),-3)",
    "io_inp": [
      2,
      -4,
      2,
      -3,
      0,
      4
    ],
    "io_out": [
      11,
      9,
      9,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(input),4)),-3)"
  },
  {
    "input": "input : list = [-2, -2, -1, 2, 4]\noutput : list = [-2, -2, -1, 2, 4]",
    "output": "generated_output : list = sort_asc([-2, -2, -1, 2, 4])",
    "io_inp": [
      -2,
      -2,
      -1,
      2,
      4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [3, -9, -9]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(mul_n([-2, -2, 4],2),16),5)))",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(mul_n(input,2),16),5)))"
  },
  {
    "input": "input : list = [-2, 1, 1, -1, 2]\noutput : list = [8, 4, 4, -4, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(sort_des([-2, 1, 1, -1, 2]),12))),4)",
    "io_inp": [
      -2,
      1,
      1,
      -1,
      2
    ],
    "io_out": [
      8,
      4,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(sort_des(input),12))),4)"
  },
  {
    "input": "input : list = [-1, -2, 1]\noutput : list = [8, 7, 5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(mul_n([-1, -2, 1],-1),4)),-2))",
    "io_inp": [
      -1,
      -2,
      1
    ],
    "io_out": [
      8,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(mul_n(input,-1),4)),-2))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(add_n(take(sort_asc(mul_n([-1, 0],2)),17),5),28)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(mul_n(input,2)),17),5),28)"
  },
  {
    "input": "input : list = [-4, 1, 2, -5, -5, 3]\noutput : list = [-4, -4, -3, 2, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([-4, 1, 2, -5, -5, 3])),1)",
    "io_inp": [
      -4,
      1,
      2,
      -5,
      -5,
      3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [9, -3]",
    "output": "generated_output : list = mul_n(sort_des([3, -1]),3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-4, -1, 2, -3, -1, -2]\noutput : list = [-5, -2, 1, -4, -2, -3]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n([-4, -1, 2, -3, -1, -2],-3),-5),4),-3)",
    "io_inp": [
      -4,
      -1,
      2,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      1,
      -4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(input,-3),-5),4),-3)"
  },
  {
    "input": "input : list = [2, -1, 0, -5, 3]\noutput : list = [2, 1, -1, -2, -6]",
    "output": "generated_output : list = sort_des(take(add_n([2, -1, 0, -5, 3],-1),7))",
    "io_inp": [
      2,
      -1,
      0,
      -5,
      3
    ],
    "io_out": [
      2,
      1,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,-1),7))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-100, -90]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(add_n(sort_des([4, 3]),3),-3),-2),5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -100,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(add_n(sort_des(input),3),-3),-2),5)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-11, -13]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n([-3, -1],-5)),-5))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(input,-5)),-5))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-8, -10]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-5, -3],-5)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-5)))"
  },
  {
    "input": "input : list = [3, 3, 4, 4, -4, -3]\noutput : list = [4, 4, 3, -3, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc(drop([3, 3, 4, 4, -4, -3],1))),18))",
    "io_inp": [
      3,
      3,
      4,
      4,
      -4,
      -3
    ],
    "io_out": [
      4,
      4,
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(drop(input,1))),18))"
  },
  {
    "input": "input : list = [2, 3, -4, -1, 3, 3]\noutput : list = [11, 11, 7, 4, 11, 10]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(reverse([2, 3, -4, -1, 3, 3]),-5))),3)",
    "io_inp": [
      2,
      3,
      -4,
      -1,
      3,
      3
    ],
    "io_out": [
      11,
      11,
      7,
      4,
      11,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(reverse(input),-5))),3)"
  },
  {
    "input": "input : list = [-2, -3, 4, -2, -1, -1]\noutput : list = [-10, 0]",
    "output": "generated_output : list = sort_asc(drop(mul_n(add_n(sort_asc([-2, -3, 4, -2, -1, -1]),-4),2),4))",
    "io_inp": [
      -2,
      -3,
      4,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(add_n(sort_asc(input),-4),2),4))"
  },
  {
    "input": "input : list = [-2, -3, 2, 4, 0]\noutput : list = [-65, -90, 35, 85, -15]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n([-2, -3, 2, 4, 0],5),-3),21),5)",
    "io_inp": [
      -2,
      -3,
      2,
      4,
      0
    ],
    "io_out": [
      -65,
      -90,
      35,
      85,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(input,5),-3),21),5)"
  },
  {
    "input": "input : list = [-3, 0, 2, 5, 2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(drop([-3, 0, 2, 5, 2, -4],4))",
    "io_inp": [
      -3,
      0,
      2,
      5,
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,4))"
  },
  {
    "input": "input : list = [4, -4, -1, -3]\noutput : list = [63, 23, 83]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(drop([4, -4, -1, -3],1),-4),5),-3))",
    "io_inp": [
      4,
      -4,
      -1,
      -3
    ],
    "io_out": [
      63,
      23,
      83
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(drop(input,1),-4),5),-3))"
  },
  {
    "input": "input : list = [-5, -3, -2, -1, 4, 4]\noutput : list = [2, 2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(drop([-5, -3, -2, -1, 4, 4],2)),-2)))",
    "io_inp": [
      -5,
      -3,
      -2,
      -1,
      4,
      4
    ],
    "io_out": [
      2,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(drop(input,2)),-2)))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(add_n([-1, -4],-1)),-2)))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(add_n(input,-1)),-2)))"
  },
  {
    "input": "input : list = [-1, -4, 0, 3]\noutput : list = [3, 12, 0, -9]",
    "output": "generated_output : list = mul_n([-1, -4, 0, 3],-3)",
    "io_inp": [
      -1,
      -4,
      0,
      3
    ],
    "io_out": [
      3,
      12,
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, 2, 5, 3, 5, 5]\noutput : list = [0, 0, 1, 3, 3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n([2, 2, 5, 3, 5, 5],3)),5))",
    "io_inp": [
      2,
      2,
      5,
      3,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      1,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(input,3)),5))"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [0, -2, 1]",
    "output": "generated_output : list = sub_n([2, 0, 3],2)",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      0,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, 5, -5, -5, -3]\noutput : list = [2, 2, 4, 8, 12]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_des([1, 5, -5, -5, -3])),3)),-4)",
    "io_inp": [
      1,
      5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      2,
      2,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_des(input)),3)),-4)"
  },
  {
    "input": "input : list = [-5, 3, -2, -5]\noutput : list = [-5, 3, -2, -5]",
    "output": "generated_output : list = mul_n([-5, 3, -2, -5],1)",
    "io_inp": [
      -5,
      3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [5, -5, 0, -5, 4, -5]\noutput : list = [-5, -10, -10, -10]",
    "output": "generated_output : list = drop(add_n(sort_des(reverse(sort_asc([5, -5, 0, -5, 4, -5]))),-5),2)",
    "io_inp": [
      5,
      -5,
      0,
      -5,
      4,
      -5
    ],
    "io_out": [
      -5,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_des(reverse(sort_asc(input))),-5),2)"
  },
  {
    "input": "input : list = [4, -3, 0, -3, -1]\noutput : list = [2, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(add_n([4, -3, 0, -3, -1],-2),5))))",
    "io_inp": [
      4,
      -3,
      0,
      -3,
      -1
    ],
    "io_out": [
      2,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(add_n(input,-2),5))))"
  },
  {
    "input": "input : list = [5, -3, 2]\noutput : list = [20, 8, -12]",
    "output": "generated_output : list = take(sort_des(take(mul_n([5, -3, 2],4),12)),17)",
    "io_inp": [
      5,
      -3,
      2
    ],
    "io_out": [
      20,
      8,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(input,4),12)),17)"
  },
  {
    "input": "input : list = [-2, 0, -5, 0, -3]\noutput : list = [-6, -6, -8, -9, -11]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sub_n([-2, 0, -5, 0, -3],4),-1),3),1))",
    "io_inp": [
      -2,
      0,
      -5,
      0,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sub_n(input,4),-1),3),1))"
  },
  {
    "input": "input : list = [3, 1, 1, -1, 1, 1]\noutput : list = [4, 2, 2, 2, 2, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_des(add_n(sort_asc([3, 1, 1, -1, 1, 1]),2))),-1)",
    "io_inp": [
      3,
      1,
      1,
      -1,
      1,
      1
    ],
    "io_out": [
      4,
      2,
      2,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(add_n(sort_asc(input),2))),-1)"
  },
  {
    "input": "input : list = [5, 5, 3, -2, 3, 2]\noutput : list = [-2, 2, 3, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 5, 3, -2, 3, 2])",
    "io_inp": [
      5,
      5,
      3,
      -2,
      3,
      2
    ],
    "io_out": [
      -2,
      2,
      3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, 5, 3]\noutput : list = [8, 4]",
    "output": "generated_output : list = sub_n(sort_des(take([3, -1, 5, 3],2)),-5)",
    "io_inp": [
      3,
      -1,
      5,
      3
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(input,2)),-5)"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [-3, 0, 5]",
    "output": "generated_output : list = sort_asc([5, -3, 0])",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1, 1, -5]\noutput : list = [3, 3, 3, -3]",
    "output": "generated_output : list = sub_n([1, 1, 1, -5],-2)",
    "io_inp": [
      1,
      1,
      1,
      -5
    ],
    "io_out": [
      3,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -1, -4, 1]\noutput : list = [-4, -1, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse([2, -1, -4, 1])))",
    "io_inp": [
      2,
      -1,
      -4,
      1
    ],
    "io_out": [
      -4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [0, 3]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([2, -1]),1),1)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),1),1)"
  },
  {
    "input": "input : list = [4, -1, -2, -3, -5]\noutput : list = [5]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_asc([4, -1, -2, -3, -5])),-1),1),1)",
    "io_inp": [
      4,
      -1,
      -2,
      -3,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(sort_asc(input)),-1),1),1)"
  },
  {
    "input": "input : list = [-1, 1, 0]\noutput : list = [-6, -4, -5]",
    "output": "generated_output : list = reverse(reverse(sub_n([-1, 1, 0],5)))",
    "io_inp": [
      -1,
      1,
      0
    ],
    "io_out": [
      -6,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,5)))"
  },
  {
    "input": "input : list = [4, -5, 3, 2, 1]\noutput : list = [-33, -24, -15, -6, 48]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sort_des([4, -5, 3, 2, 1]),1),-3),3),-3)",
    "io_inp": [
      4,
      -5,
      3,
      2,
      1
    ],
    "io_out": [
      -33,
      -24,
      -15,
      -6,
      48
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sort_des(input),1),-3),3),-3)"
  },
  {
    "input": "input : list = [-1, 1, 1, -4, -3]\noutput : list = [-4, -3, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 1, 1, -4, -3]))",
    "io_inp": [
      -1,
      1,
      1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 1, 3, -3]\noutput : list = [9, 5, 7, 1]",
    "output": "generated_output : list = mul_n(sub_n([5, 1, 3, -3],-4),1)",
    "io_inp": [
      5,
      1,
      3,
      -3
    ],
    "io_out": [
      9,
      5,
      7,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),1)"
  },
  {
    "input": "input : list = [3, 2, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = drop([3, 2, 1, -5],2)",
    "io_inp": [
      3,
      2,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 3, 2, 2, -2]\noutput : list = [12]",
    "output": "generated_output : list = sort_des(mul_n(take([-4, 3, 2, 2, -2],1),-3))",
    "io_inp": [
      -4,
      3,
      2,
      2,
      -2
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),-3))"
  },
  {
    "input": "input : list = [2, -4, 2, 1, 2, -2]\noutput : list = [3, 5, 8, 9, 9, 9]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sort_des([2, -4, 2, 1, 2, -2]),5),1),-1))",
    "io_inp": [
      2,
      -4,
      2,
      1,
      2,
      -2
    ],
    "io_out": [
      3,
      5,
      8,
      9,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sort_des(input),5),1),-1))"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(add_n([0, 3, 0],-1),2)),3),11)",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(add_n(input,-1),2)),3),11)"
  },
  {
    "input": "input : list = [-2, 0, -3, -5]\noutput : list = [10, 14, 16, 20]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(sort_asc([-2, 0, -3, -5]),-4)),-2),-2)",
    "io_inp": [
      -2,
      0,
      -3,
      -5
    ],
    "io_out": [
      10,
      14,
      16,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(sort_asc(input),-4)),-2),-2)"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [-8, 16, 20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_des([2, 3, -4]),-2)),1),4)",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      -8,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sort_des(input),-2)),1),4)"
  },
  {
    "input": "input : list = [-1, -1, -2, -3, 0]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(take(reverse(reverse([-1, -1, -2, -3, 0])),2))",
    "io_inp": [
      -1,
      -1,
      -2,
      -3,
      0
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(reverse(input)),2))"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [24, 8, 24]",
    "output": "generated_output : list = mul_n(mul_n([3, 1, 3],-4),-2)",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      24,
      8,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),-2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-5, 10]",
    "output": "generated_output : list = mul_n([1, -2],-5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-6, -1]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(drop([-3, 3, -2],1)),2),2),22)",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(drop(input,1)),2),2),22)"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(drop([-3, 0, -3],1),-4),2)),13)",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(drop(input,1),-4),2)),13)"
  },
  {
    "input": "input : list = [-4, 3, -5, 4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 3, -5, 4],1)",
    "io_inp": [
      -4,
      3,
      -5,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [5, 4, 1]",
    "output": "generated_output : list = sort_des([1, 4, 5])",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, 4, 5, -2, 2]\noutput : list = [-8, -1]",
    "output": "generated_output : list = sort_asc(sub_n(take(take(take([4, -3, 4, 5, -2, 2],2),9),34),5))",
    "io_inp": [
      4,
      -3,
      4,
      5,
      -2,
      2
    ],
    "io_out": [
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(take(input,2),9),34),5))"
  },
  {
    "input": "input : list = [-1, 4, 5, 0, -1, 1]\noutput : list = [-6, -6, 0, 6, 24, 30]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(mul_n([-1, 4, 5, 0, -1, 1],2)))),3)",
    "io_inp": [
      -1,
      4,
      5,
      0,
      -1,
      1
    ],
    "io_out": [
      -6,
      -6,
      0,
      6,
      24,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(mul_n(input,2)))),3)"
  },
  {
    "input": "input : list = [0, -4, 1, 5, -1]\noutput : list = [26, 18, 16, 14, 8]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(add_n([0, -4, 1, 5, -1],5),5),2),4))",
    "io_inp": [
      0,
      -4,
      1,
      5,
      -1
    ],
    "io_out": [
      26,
      18,
      16,
      14,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(add_n(input,5),5),2),4))"
  },
  {
    "input": "input : list = [-4, 2, -1]\noutput : list = [4, 1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(reverse([-4, 2, -1]),10),-2)))",
    "io_inp": [
      -4,
      2,
      -1
    ],
    "io_out": [
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(reverse(input),10),-2)))"
  },
  {
    "input": "input : list = [5, 4, -2, 3, -5, -4]\noutput : list = [5, 4, -2, 3]",
    "output": "generated_output : list = take([5, 4, -2, 3, -5, -4],4)",
    "io_inp": [
      5,
      4,
      -2,
      3,
      -5,
      -4
    ],
    "io_out": [
      5,
      4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [0, -3, -2]\noutput : list = [-9, -12, -3]",
    "output": "generated_output : list = take(take(mul_n(add_n(reverse([0, -3, -2]),-1),3),9),3)",
    "io_inp": [
      0,
      -3,
      -2
    ],
    "io_out": [
      -9,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(reverse(input),-1),3),9),3)"
  },
  {
    "input": "input : list = [4, -1, 3, -5, 1, -3]\noutput : list = [10, 4, -2, -8, -14, -17]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(sort_des([4, -1, 3, -5, 1, -3])),10),-3),-5)",
    "io_inp": [
      4,
      -1,
      3,
      -5,
      1,
      -3
    ],
    "io_out": [
      10,
      4,
      -2,
      -8,
      -14,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(sort_des(input)),10),-3),-5)"
  },
  {
    "input": "input : list = [-1, -3, -3, 1, -4, 3]\noutput : list = [-1, -8, -3, -7, -7]",
    "output": "generated_output : list = take(add_n(take(add_n(reverse([-1, -3, -3, 1, -4, 3]),1),5),-5),37)",
    "io_inp": [
      -1,
      -3,
      -3,
      1,
      -4,
      3
    ],
    "io_out": [
      -1,
      -8,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(reverse(input),1),5),-5),37)"
  },
  {
    "input": "input : list = [-4, 1, 4, -1]\noutput : list = [-1, 2, 4, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n([-4, 1, 4, -1],5))),-2)",
    "io_inp": [
      -4,
      1,
      4,
      -1
    ],
    "io_out": [
      -1,
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(input,5))),-2)"
  },
  {
    "input": "input : list = [3, 1, 5, 2, 5, 3]\noutput : list = [1, 2, 3, 3, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([3, 1, 5, 2, 5, 3]))",
    "io_inp": [
      3,
      1,
      5,
      2,
      5,
      3
    ],
    "io_out": [
      1,
      2,
      3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [2, -4, -5, 5, 4, 4]\noutput : list = [0, -6, -7, 3, 2]",
    "output": "generated_output : list = take(add_n([2, -4, -5, 5, 4, 4],-2),5)",
    "io_inp": [
      2,
      -4,
      -5,
      5,
      4,
      4
    ],
    "io_out": [
      0,
      -6,
      -7,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),5)"
  },
  {
    "input": "input : list = [-2, -5, 2, -3]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(take([-2, -5, 2, -3],2))),-1))",
    "io_inp": [
      -2,
      -5,
      2,
      -3
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(take(input,2))),-1))"
  },
  {
    "input": "input : list = [2, 1, -3, -3, -3]\noutput : list = [2, 1, -3, -3, -3]",
    "output": "generated_output : list = sort_des(take(reverse([2, 1, -3, -3, -3]),13))",
    "io_inp": [
      2,
      1,
      -3,
      -3,
      -3
    ],
    "io_out": [
      2,
      1,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),13))"
  },
  {
    "input": "input : list = [2, -5, 4, -4, -3]\noutput : list = [-12, -11, -10, -5, -3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(sub_n([2, -5, 4, -4, -3],2))),-5))",
    "io_inp": [
      2,
      -5,
      4,
      -4,
      -3
    ],
    "io_out": [
      -12,
      -11,
      -10,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(sub_n(input,2))),-5))"
  },
  {
    "input": "input : list = [1, -5, 1, -5]\noutput : list = [-4, 20, -4, 20]",
    "output": "generated_output : list = mul_n([1, -5, 1, -5],-4)",
    "io_inp": [
      1,
      -5,
      1,
      -5
    ],
    "io_out": [
      -4,
      20,
      -4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -1, 4, -2, 1, 5]\noutput : list = [-20]",
    "output": "generated_output : list = take(drop(mul_n(mul_n(reverse([-5, -1, 4, -2, 1, 5]),-2),-2),5),53)",
    "io_inp": [
      -5,
      -1,
      4,
      -2,
      1,
      5
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(mul_n(reverse(input),-2),-2),5),53)"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [-5, -5, 0]",
    "output": "generated_output : list = mul_n([-1, -1, 0],5)",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-4, 4, 2, 3, -2, -4]\noutput : list = [4, 3, 2, -2, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-4, 4, 2, 3, -2, -4]))",
    "io_inp": [
      -4,
      4,
      2,
      3,
      -2,
      -4
    ],
    "io_out": [
      4,
      3,
      2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-7]",
    "output": "generated_output : list = drop(take(sort_des(sort_asc(add_n([5, -5],-2))),30),1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = drop(take(sort_des(sort_asc(add_n(input,-2))),30),1)"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [-8, -4, -4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(reverse([-1, -1, -2])),4)))",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [4, 1, 4, -2]\noutput : list = [30, 75, 120, 120]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sub_n([4, 1, 4, -2],-4),-5)),-3),1)",
    "io_inp": [
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      30,
      75,
      120,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(sub_n(input,-4),-5)),-3),1)"
  },
  {
    "input": "input : list = [5, -3, 1, 2]\noutput : list = [-7, -4, -3, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des(mul_n(add_n([5, -3, 1, 2],2),-1)),35))",
    "io_inp": [
      5,
      -3,
      1,
      2
    ],
    "io_out": [
      -7,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(mul_n(add_n(input,2),-1)),35))"
  },
  {
    "input": "input : list = [5, -3, 4]\noutput : list = [-2, -9]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(drop([5, -3, 4],1),-1))),5)",
    "io_inp": [
      5,
      -3,
      4
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(drop(input,1),-1))),5)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([0, -5]),-5))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-1, 2, 2, 2]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take([-1, 2, 2, 2],2)",
    "io_inp": [
      -1,
      2,
      2,
      2
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 0, 0, -3]\noutput : list = [-1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(add_n([-5, 0, 0, -3],4),9))))",
    "io_inp": [
      -5,
      0,
      0,
      -3
    ],
    "io_out": [
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(add_n(input,4),9))))"
  },
  {
    "input": "input : list = [1, 2, 5, -3]\noutput : list = [-3, 1, 2, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_asc([1, 2, 5, -3])))),11)",
    "io_inp": [
      1,
      2,
      5,
      -3
    ],
    "io_out": [
      -3,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_asc(input)))),11)"
  },
  {
    "input": "input : list = [5, -5, 0, 2, 4, -3]\noutput : list = [16, 14, 10, 6, 0, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(add_n([5, -5, 0, 2, 4, -3],2),2),-3)),5)",
    "io_inp": [
      5,
      -5,
      0,
      2,
      4,
      -3
    ],
    "io_out": [
      16,
      14,
      10,
      6,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(add_n(input,2),2),-3)),5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-9, 0]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des([4, -5]),4)))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(input),4)))"
  },
  {
    "input": "input : list = [-4, -1, -2, -1, -1]\noutput : list = [-1, 1, 2, 2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_des(sub_n([-4, -1, -2, -1, -1],-2)),14),-1))",
    "io_inp": [
      -4,
      -1,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -1,
      1,
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_des(sub_n(input,-2)),14),-1))"
  },
  {
    "input": "input : list = [-4, -5, -1, -1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(reverse(take([-4, -5, -1, -1],2)))",
    "io_inp": [
      -4,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [0, 5, -2, 0, 2, 2]\noutput : list = [10, 7, 7, 5, 5, 3]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sub_n([0, 5, -2, 0, 2, 2],-4))),4),5)",
    "io_inp": [
      0,
      5,
      -2,
      0,
      2,
      2
    ],
    "io_out": [
      10,
      7,
      7,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sub_n(input,-4))),4),5)"
  },
  {
    "input": "input : list = [0, 0, -1, -5, 3, -1]\noutput : list = [3, -9, -9, -12, -12, -21]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(sub_n([0, 0, -1, -5, 3, -1],-3),-1),3)),-3)",
    "io_inp": [
      0,
      0,
      -1,
      -5,
      3,
      -1
    ],
    "io_out": [
      3,
      -9,
      -9,
      -12,
      -12,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(sub_n(input,-3),-1),3)),-3)"
  },
  {
    "input": "input : list = [2, -4, -3, -5]\noutput : list = [13, -7, -11, -15]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(sort_des([2, -4, -3, -5]),4),1),-4))",
    "io_inp": [
      2,
      -4,
      -3,
      -5
    ],
    "io_out": [
      13,
      -7,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(sort_des(input),4),1),-4))"
  },
  {
    "input": "input : list = [2, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = drop([2, 1, 3],1)",
    "io_inp": [
      2,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -3, -2, -1]\noutput : list = [-4, -24, -44, -44]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n([-3, -3, -2, -1],5),4)),4)",
    "io_inp": [
      -3,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -24,
      -44,
      -44
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(input,5),4)),4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(reverse([0, -4]))),23),-4)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(reverse(input))),23),-4)"
  },
  {
    "input": "input : list = [-3, -5, -2, -4, 1, 2]\noutput : list = [-2, -1, 2, 3]",
    "output": "generated_output : list = drop(sort_asc(add_n(sort_des(sub_n([-3, -5, -2, -4, 1, 2],-3)),-2)),2)",
    "io_inp": [
      -3,
      -5,
      -2,
      -4,
      1,
      2
    ],
    "io_out": [
      -2,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(sort_des(sub_n(input,-3)),-2)),2)"
  },
  {
    "input": "input : list = [-4, -3, 5, 5, 5, -4]\noutput : list = [0, 0, 0, -8, -9, -9]",
    "output": "generated_output : list = add_n(take(sort_des(sub_n(sort_asc([-4, -3, 5, 5, 5, -4]),3)),16),-2)",
    "io_inp": [
      -4,
      -3,
      5,
      5,
      5,
      -4
    ],
    "io_out": [
      0,
      0,
      0,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sub_n(sort_asc(input),3)),16),-2)"
  },
  {
    "input": "input : list = [-3, -2, -4, -4, -2, -5]\noutput : list = [-7, -6, -8, -8, -6, -9]",
    "output": "generated_output : list = sub_n([-3, -2, -4, -4, -2, -5],4)",
    "io_inp": [
      -3,
      -2,
      -4,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -7,
      -6,
      -8,
      -8,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 5, -5, 4, -3]\noutput : list = [-3, 4, -5, 5, -5]",
    "output": "generated_output : list = take(take(reverse([-5, 5, -5, 4, -3]),8),5)",
    "io_inp": [
      -5,
      5,
      -5,
      4,
      -3
    ],
    "io_out": [
      -3,
      4,
      -5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(take(reverse(input),8),5)"
  },
  {
    "input": "input : list = [3, -2, -4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -2, -4],1)",
    "io_inp": [
      3,
      -2,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -3, -4]\noutput : list = [12, 5, 4]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n([4, -3, -4],5),2),1))",
    "io_inp": [
      4,
      -3,
      -4
    ],
    "io_out": [
      12,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(input,5),2),1))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-12, -12]",
    "output": "generated_output : list = mul_n([-3, -3],4)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, -3, -1]\noutput : list = [-34, -18, -2]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n([1, -3, -1],-4),5),-2)))",
    "io_inp": [
      1,
      -3,
      -1
    ],
    "io_out": [
      -34,
      -18,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(mul_n(input,-4),5),-2)))"
  },
  {
    "input": "input : list = [1, 0, 4, 4]\noutput : list = [4, 4, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des([1, 0, 4, 4]))",
    "io_inp": [
      1,
      0,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -2, 4, 3]\noutput : list = [5, 4, 3, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(mul_n([2, -2, 4, 3],1)))),1)",
    "io_inp": [
      2,
      -2,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(mul_n(input,1)))),1)"
  },
  {
    "input": "input : list = [-3, 5, -1, 0]\noutput : list = [-5, 20, 25, 35]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([-3, 5, -1, 0],4),-5))",
    "io_inp": [
      -3,
      5,
      -1,
      0
    ],
    "io_out": [
      -5,
      20,
      25,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,4),-5))"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [10, 7, 2]",
    "output": "generated_output : list = sub_n([5, 2, -3],-5)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      10,
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -1, 4, -3, 5, 3]\noutput : list = [2, 4, 8, 8, 9, 10]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(sort_asc([3, -1, 4, -3, 5, 3])),26)),5)",
    "io_inp": [
      3,
      -1,
      4,
      -3,
      5,
      3
    ],
    "io_out": [
      2,
      4,
      8,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(sort_asc(input)),26)),5)"
  },
  {
    "input": "input : list = [-3, -1, -3, 1]\noutput : list = [0, 10, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(add_n([-3, -1, -3, 1],-5),1),4),-5))",
    "io_inp": [
      -3,
      -1,
      -3,
      1
    ],
    "io_out": [
      0,
      10,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(add_n(input,-5),1),4),-5))"
  },
  {
    "input": "input : list = [5, 5, -3, -1, 2, -2]\noutput : list = [8, 8, 5, 2, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sub_n([5, 5, -3, -1, 2, -2],-3)))))",
    "io_inp": [
      5,
      5,
      -3,
      -1,
      2,
      -2
    ],
    "io_out": [
      8,
      8,
      5,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [-4, -5, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(drop([-4, -5, 1, -1],2)))))",
    "io_inp": [
      -4,
      -5,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse([1, -4])",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4, 2, -5, 2, -1]\noutput : list = [1, 2, 5, 8, 8, 8]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(sub_n([2, -4, 2, -5, 2, -1],-3),4),19),1))",
    "io_inp": [
      2,
      -4,
      2,
      -5,
      2,
      -1
    ],
    "io_out": [
      1,
      2,
      5,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(sub_n(input,-3),4),19),1))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [0, -6]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(sort_des([2, -4])),2)),35)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(sort_des(input)),2)),35)"
  },
  {
    "input": "input : list = [5, -1, -5, 4]\noutput : list = [-3, 1, 6, 7]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(sort_asc([5, -1, -5, 4]),-2))))",
    "io_inp": [
      5,
      -1,
      -5,
      4
    ],
    "io_out": [
      -3,
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [1, 6]",
    "output": "generated_output : list = sub_n([0, 5],-1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -3, 5, 2, 1, -5]\noutput : list = [-36, -6, -1]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n(drop([-1, -3, 5, 2, 1, -5],3),-2),5),1))",
    "io_inp": [
      -1,
      -3,
      5,
      2,
      1,
      -5
    ],
    "io_out": [
      -36,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(drop(input,3),-2),5),1))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n(take(reverse([1, 0]),7),5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),7),5)"
  },
  {
    "input": "input : list = [-4, 4, 1, 3, 3]\noutput : list = [0, 5, 7, 7, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(sub_n([-4, 4, 1, 3, 3],-3))),37),-1)",
    "io_inp": [
      -4,
      4,
      1,
      3,
      3
    ],
    "io_out": [
      0,
      5,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(sub_n(input,-3))),37),-1)"
  },
  {
    "input": "input : list = [-4, 4, 3, -5, -1]\noutput : list = [2, 1, -3, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des([-4, 4, 3, -5, -1]),2)",
    "io_inp": [
      -4,
      4,
      3,
      -5,
      -1
    ],
    "io_out": [
      2,
      1,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-5, 2, 0, -5, 4]\noutput : list = [-5, 2, 0, -5, 4]",
    "output": "generated_output : list = mul_n(take(mul_n([-5, 2, 0, -5, 4],-1),5),-1)",
    "io_inp": [
      -5,
      2,
      0,
      -5,
      4
    ],
    "io_out": [
      -5,
      2,
      0,
      -5,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-1),5),-1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(add_n([3, 4],-1),5)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(mul_n([-4, -4],-2)),5),-1))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(mul_n(input,-2)),5),-1))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [10, 2]",
    "output": "generated_output : list = take(mul_n([-5, -1],-2),4)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-2),4)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [7, 4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(reverse([0, -3])),-5),-4),-2)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(reverse(input)),-5),-4),-2)"
  },
  {
    "input": "input : list = [4, 2, 4, -5, -5]\noutput : list = [5, 3, 5, -4, -4]",
    "output": "generated_output : list = sub_n([4, 2, 4, -5, -5],-1)",
    "io_inp": [
      4,
      2,
      4,
      -5,
      -5
    ],
    "io_out": [
      5,
      3,
      5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, -5, -5, -2, 5]\noutput : list = [5, -4, -4]",
    "output": "generated_output : list = add_n(take(take(take([4, -5, -5, -2, 5],3),19),22),1)",
    "io_inp": [
      4,
      -5,
      -5,
      -2,
      5
    ],
    "io_out": [
      5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(take(take(input,3),19),22),1)"
  },
  {
    "input": "input : list = [-5, 4, -1, 2, 0]\noutput : list = [-15, -3, 0, 6, 12]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(mul_n([-5, 4, -1, 2, 0],3),19))),14)",
    "io_inp": [
      -5,
      4,
      -1,
      2,
      0
    ],
    "io_out": [
      -15,
      -3,
      0,
      6,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(mul_n(input,3),19))),14)"
  },
  {
    "input": "input : list = [-4, 0, 3]\noutput : list = [5, 8]",
    "output": "generated_output : list = sub_n(drop([-4, 0, 3],1),-5)",
    "io_inp": [
      -4,
      0,
      3
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [5, -3, 3, 2]\noutput : list = [9, 7, 6, 1]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([5, -3, 3, 2]),-4),1)",
    "io_inp": [
      5,
      -3,
      3,
      2
    ],
    "io_out": [
      9,
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),-4),1)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-12, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(reverse([-2, 4]),-5),-5)))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(reverse(input),-5),-5)))"
  },
  {
    "input": "input : list = [3, 4, 4, -4, -2]\noutput : list = [-8, -4, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(sort_des([3, 4, 4, -4, -2])),20),2))",
    "io_inp": [
      3,
      4,
      4,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -4,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(sort_des(input)),20),2))"
  },
  {
    "input": "input : list = [-1, -3, 3]\noutput : list = [-1, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_des([-1, -3, 3]),3)),4))",
    "io_inp": [
      -1,
      -3,
      3
    ],
    "io_out": [
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_des(input),3)),4))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(reverse([0, -5])))),7)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(reverse(input)))),7)"
  },
  {
    "input": "input : list = [1, 0, -5, 3, -3, 2]\noutput : list = [-2, -3, -8, 0, -6, -1]",
    "output": "generated_output : list = sub_n([1, 0, -5, 3, -3, 2],3)",
    "io_inp": [
      1,
      0,
      -5,
      3,
      -3,
      2
    ],
    "io_out": [
      -2,
      -3,
      -8,
      0,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, -3, 1, 5, 5]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(sub_n(drop([4, -3, 1, 5, 5],3),5))",
    "io_inp": [
      4,
      -3,
      1,
      5,
      5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,3),5))"
  },
  {
    "input": "input : list = [1, 4, -4, -4, 4]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(mul_n(take([1, 4, -4, -4, 4],1),3))",
    "io_inp": [
      1,
      4,
      -4,
      -4,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),3))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n(sub_n([0, 2],3),-2)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),-2)"
  },
  {
    "input": "input : list = [-1, 2, 1, -4, -3, -1]\noutput : list = [5, 4, 2, 2, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(reverse([-1, 2, 1, -4, -3, -1])),3)))",
    "io_inp": [
      -1,
      2,
      1,
      -4,
      -3,
      -1
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(reverse(input)),3)))"
  },
  {
    "input": "input : list = [2, -3, 3, 4, 3]\noutput : list = [-16, 9, 14, 14, 19]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(mul_n([2, -3, 3, 4, 3],5))),-1))",
    "io_inp": [
      2,
      -3,
      3,
      4,
      3
    ],
    "io_out": [
      -16,
      9,
      14,
      14,
      19
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(mul_n(input,5))),-1))"
  },
  {
    "input": "input : list = [4, -2, 4, -1, -4]\noutput : list = [4, 4, -16, -20, -28]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n([4, -2, 4, -1, -4],3)),4))",
    "io_inp": [
      4,
      -2,
      4,
      -1,
      -4
    ],
    "io_out": [
      4,
      4,
      -16,
      -20,
      -28
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(input,3)),4))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-8, -11]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_des([0, -3]),4)),-4))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_des(input),4)),-4))"
  },
  {
    "input": "input : list = [-1, -5, 0]\noutput : list = [-6, -2, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sort_des([-1, -5, 0]),5)),-5),-4)",
    "io_inp": [
      -1,
      -5,
      0
    ],
    "io_out": [
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sort_des(input),5)),-5),-4)"
  },
  {
    "input": "input : list = [4, 1, -4, 4, 1]\noutput : list = [8, 8, 5, 5, 0]",
    "output": "generated_output : list = take(reverse(take(sort_asc(add_n([4, 1, -4, 4, 1],4)),25)),41)",
    "io_inp": [
      4,
      1,
      -4,
      4,
      1
    ],
    "io_out": [
      8,
      8,
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(add_n(input,4)),25)),41)"
  },
  {
    "input": "input : list = [1, -4, 4, 3, -2]\noutput : list = [-8, 12, 16, -16, 4]",
    "output": "generated_output : list = mul_n(reverse([1, -4, 4, 3, -2]),4)",
    "io_inp": [
      1,
      -4,
      4,
      3,
      -2
    ],
    "io_out": [
      -8,
      12,
      16,
      -16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([0, -1],4)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [1, 5, -2, 4, 4]\noutput : list = [10, 10, 4, 11]",
    "output": "generated_output : list = sub_n(take(reverse(add_n([1, 5, -2, 4, 4],1)),4),-5)",
    "io_inp": [
      1,
      5,
      -2,
      4,
      4
    ],
    "io_out": [
      10,
      10,
      4,
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(input,1)),4),-5)"
  },
  {
    "input": "input : list = [-3, -4, 5, 4, 1]\noutput : list = [1, 4, 5, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, 5, 4, 1])",
    "io_inp": [
      -3,
      -4,
      5,
      4,
      1
    ],
    "io_out": [
      1,
      4,
      5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, 0, -5]\noutput : list = [22, 18, 2, -18]",
    "output": "generated_output : list = sort_des(add_n(mul_n([-4, 5, 0, -5],-4),2))",
    "io_inp": [
      -4,
      5,
      0,
      -5
    ],
    "io_out": [
      22,
      18,
      2,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,-4),2))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [1, -8]",
    "output": "generated_output : list = sub_n([4, -5],3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, 5, 2]\noutput : list = [-4, -6, -10]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des([3, 5, 2]),-2),23)))",
    "io_inp": [
      3,
      5,
      2
    ],
    "io_out": [
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(sort_des(input),-2),23)))"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [-5, 3, 5]",
    "output": "generated_output : list = reverse([5, 3, -5])",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 2, 5, 5]\noutput : list = [9, 15, 18, 18]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(add_n([4, 2, 5, 5],2)),3),3))",
    "io_inp": [
      4,
      2,
      5,
      5
    ],
    "io_out": [
      9,
      15,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(add_n(input,2)),3),3))"
  },
  {
    "input": "input : list = [2, 1, 3, 2, -3, 2]\noutput : list = [5, 9, 10, 10, 10, 11]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(add_n([2, 1, 3, 2, -3, 2],2))),-3),3)",
    "io_inp": [
      2,
      1,
      3,
      2,
      -3,
      2
    ],
    "io_out": [
      5,
      9,
      10,
      10,
      10,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(add_n(input,2))),-3),3)"
  },
  {
    "input": "input : list = [-1, 2, -2, 2, 0, -3]\noutput : list = [-3, -2, -1, 0, 2, 2]",
    "output": "generated_output : list = sort_asc([-1, 2, -2, 2, 0, -3])",
    "io_inp": [
      -1,
      2,
      -2,
      2,
      0,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sort_asc([-3, 0]),8))))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sort_asc(input),8))))"
  },
  {
    "input": "input : list = [-1, -3, 2]\noutput : list = [-11, -2, 4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n([-1, -3, 2],-3),5),1),1))",
    "io_inp": [
      -1,
      -3,
      2
    ],
    "io_out": [
      -11,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n(input,-3),5),1),1))"
  },
  {
    "input": "input : list = [1, 1, -1, -4]\noutput : list = [-2, -2, 2, 8]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(reverse([1, 1, -1, -4])),-2)))",
    "io_inp": [
      1,
      1,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -2,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [-5, -1, -3, -3, 3, -2]\noutput : list = [-5, -3, -3, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(sort_des([-5, -1, -3, -3, 3, -2])))))",
    "io_inp": [
      -5,
      -1,
      -3,
      -3,
      3,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, -3, 5, 2, 2]\noutput : list = [-5, -4, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n([-2, -3, 5, 2, 2],-2))",
    "io_inp": [
      -2,
      -3,
      5,
      2,
      2
    ],
    "io_out": [
      -5,
      -4,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-12, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(mul_n([-4, 3],3)),2)))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -12,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(mul_n(input,3)),2)))"
  },
  {
    "input": "input : list = [-1, -1, 1, 5, 4]\noutput : list = [-9, -9, -15]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(take([-1, -1, 1, 5, 4],3))),-4),-3)",
    "io_inp": [
      -1,
      -1,
      1,
      5,
      4
    ],
    "io_out": [
      -9,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(take(input,3))),-4),-3)"
  },
  {
    "input": "input : list = [-3, -4, 4, -3, 4, 5]\noutput : list = [-10, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(drop([-3, -4, 4, -3, 4, 5],3),5),5)),3)",
    "io_inp": [
      -3,
      -4,
      4,
      -3,
      4,
      5
    ],
    "io_out": [
      -10,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(drop(input,3),5),5)),3)"
  },
  {
    "input": "input : list = [1, -5, -5, -3]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = add_n(sub_n(drop([1, -5, -5, -3],1),2),4)",
    "io_inp": [
      1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),2),4)"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [-6, -2, -5]",
    "output": "generated_output : list = sub_n(sub_n([-3, 1, -2],4),-1)",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      -6,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),-1)"
  },
  {
    "input": "input : list = [-3, 5, 1, 0]\noutput : list = [-45, 0, 15, 75]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(mul_n([-3, 5, 1, 0],3),5))))",
    "io_inp": [
      -3,
      5,
      1,
      0
    ],
    "io_out": [
      -45,
      0,
      15,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(mul_n(input,3),5))))"
  },
  {
    "input": "input : list = [2, -4, 3, -1, 0]\noutput : list = [7, 1, 8, 4, 5]",
    "output": "generated_output : list = add_n([2, -4, 3, -1, 0],5)",
    "io_inp": [
      2,
      -4,
      3,
      -1,
      0
    ],
    "io_out": [
      7,
      1,
      8,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-1, -5, -5, 3, -5, 4]\noutput : list = [20, 36, 36, 4, 36, 0]",
    "output": "generated_output : list = take(take(mul_n(take(add_n([-1, -5, -5, 3, -5, 4],-4),28),-4),36),25)",
    "io_inp": [
      -1,
      -5,
      -5,
      3,
      -5,
      4
    ],
    "io_out": [
      20,
      36,
      36,
      4,
      36,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(add_n(input,-4),28),-4),36),25)"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = reverse(drop([-3, 3, 0],1))",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [0, -1, -4, 5, -5]\noutput : list = [0]",
    "output": "generated_output : list = reverse(mul_n(take(reverse(take([0, -1, -4, 5, -5],1)),11),-5))",
    "io_inp": [
      0,
      -1,
      -4,
      5,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(take(input,1)),11),-5))"
  },
  {
    "input": "input : list = [0, -3, -1, 1]\noutput : list = [3, 0, 2, 4]",
    "output": "generated_output : list = sub_n([0, -3, -1, 1],-3)",
    "io_inp": [
      0,
      -3,
      -1,
      1
    ],
    "io_out": [
      3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 2, 3, -4, -2, 0]\noutput : list = [-8, -1, 0, -7]",
    "output": "generated_output : list = reverse(reverse(take(add_n(take([-5, 2, 3, -4, -2, 0],4),-3),6)))",
    "io_inp": [
      -5,
      2,
      3,
      -4,
      -2,
      0
    ],
    "io_out": [
      -8,
      -1,
      0,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(take(input,4),-3),6)))"
  },
  {
    "input": "input : list = [3, 0, 4, 2, -5, 5]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(reverse([3, 0, 4, 2, -5, 5]),19))),3)",
    "io_inp": [
      3,
      0,
      4,
      2,
      -5,
      5
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(reverse(input),19))),3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(reverse([-1, -3]),2)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, -4, -2, 2]\noutput : list = [-8, 0, 4, 4]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(mul_n([-4, -4, -2, 2],-2))),-4),29)",
    "io_inp": [
      -4,
      -4,
      -2,
      2
    ],
    "io_out": [
      -8,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(mul_n(input,-2))),-4),29)"
  },
  {
    "input": "input : list = [5, 1, -2, 0, 3, 0]\noutput : list = [6, 4, 2, 1, 1, -1]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des([5, 1, -2, 0, 3, 0])),1),12))",
    "io_inp": [
      5,
      1,
      -2,
      0,
      3,
      0
    ],
    "io_out": [
      6,
      4,
      2,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sort_des(input)),1),12))"
  },
  {
    "input": "input : list = [-1, 5, -3, 1]\noutput : list = [1, -3, 5, -1]",
    "output": "generated_output : list = reverse([-1, 5, -3, 1])",
    "io_inp": [
      -1,
      5,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, 2, 5]\noutput : list = [-8, -16]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(take([3, 1, 2, 5],2),3),4),4),-4)",
    "io_inp": [
      3,
      1,
      2,
      5
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(take(input,2),3),4),4),-4)"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([3, -4, -5]))",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(add_n([4, 5, -2],-2),2),2)))",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(add_n(input,-2),2),2)))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(add_n([4, -4],-1))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [1, 5, 2, 5, 3]\noutput : list = [-7, -10, -13, -19, -19]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(sub_n([1, 5, 2, 5, 3],-1),-3),1)),11)",
    "io_inp": [
      1,
      5,
      2,
      5,
      3
    ],
    "io_out": [
      -7,
      -10,
      -13,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(sub_n(input,-1),-3),1)),11)"
  },
  {
    "input": "input : list = [-4, 5, -2, -3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take([-4, 5, -2, -3],1))",
    "io_inp": [
      -4,
      5,
      -2,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-3, 0, 0, -3]\noutput : list = [1, 4]",
    "output": "generated_output : list = add_n(sort_asc(take(take(drop([-3, 0, 0, -3],2),7),9)),4)",
    "io_inp": [
      -3,
      0,
      0,
      -3
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(drop(input,2),7),9)),4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-20, 12]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(add_n([0, 4],-1),4)),-2),-2)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(add_n(input,-1),4)),-2),-2)"
  },
  {
    "input": "input : list = [3, -1, 2, 2, -2]\noutput : list = [-6, -12, -12, -30, -36]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(add_n([3, -1, 2, 2, -2],-4),2)),1),3)",
    "io_inp": [
      3,
      -1,
      2,
      2,
      -2
    ],
    "io_out": [
      -6,
      -12,
      -12,
      -30,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(add_n(input,-4),2)),1),3)"
  },
  {
    "input": "input : list = [0, -4, -1]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(drop(reverse([0, -4, -1]),2),-5)),-2)",
    "io_inp": [
      0,
      -4,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(drop(reverse(input),2),-5)),-2)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [4, 7]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(mul_n([-1, 2],-1),2),-3),1))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(mul_n(input,-1),2),-3),1))"
  },
  {
    "input": "input : list = [-1, -5, -3, 4, -4]\noutput : list = [4, 0, 2, 9, 1]",
    "output": "generated_output : list = add_n(sub_n(add_n([-1, -5, -3, 4, -4],5),1),1)",
    "io_inp": [
      -1,
      -5,
      -3,
      4,
      -4
    ],
    "io_out": [
      4,
      0,
      2,
      9,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,5),1),1)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [1]",
    "output": "generated_output : list = take(drop(add_n(add_n(reverse([-3, 0]),2),2),1),10)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(drop(add_n(add_n(reverse(input),2),2),1),10)"
  },
  {
    "input": "input : list = [2, -5, 3, 1]\noutput : list = [-5, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([2, -5, 3, 1])))",
    "io_inp": [
      2,
      -5,
      3,
      1
    ],
    "io_out": [
      -5,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-1, 5]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n(mul_n([1, -2],2),-2),-1)),33)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(mul_n(input,2),-2),-1)),33)"
  },
  {
    "input": "input : list = [3, -1, 2, -1, 5, 3]\noutput : list = [-1, -1, 2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([3, -1, 2, -1, 5, 3])))",
    "io_inp": [
      3,
      -1,
      2,
      -1,
      5,
      3
    ],
    "io_out": [
      -1,
      -1,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, -5, 4, -5, -2]\noutput : list = [5, 4, -2, -5, -5]",
    "output": "generated_output : list = sort_des([5, -5, 4, -5, -2])",
    "io_inp": [
      5,
      -5,
      4,
      -5,
      -2
    ],
    "io_out": [
      5,
      4,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2, 1, 2]\noutput : list = [8, 6, 6, 4]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(add_n([3, 2, 1, 2],-4),1),-2)))",
    "io_inp": [
      3,
      2,
      1,
      2
    ],
    "io_out": [
      8,
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(add_n(input,-4),1),-2)))"
  },
  {
    "input": "input : list = [5, 4, 0]\noutput : list = [2, 6, 7]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([5, 4, 0],2)),1)",
    "io_inp": [
      5,
      4,
      0
    ],
    "io_out": [
      2,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,2)),1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-6, 24]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(sort_asc([-5, 5]),-2),-5)),3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -6,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(sort_asc(input),-2),-5)),3)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [8, -6]",
    "output": "generated_output : list = mul_n([4, -3],2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, -2, 4, -3, -4]\noutput : list = [-2, 4, -3, -4]",
    "output": "generated_output : list = drop([-2, -2, 4, -3, -4],1)",
    "io_inp": [
      -2,
      -2,
      4,
      -3,
      -4
    ],
    "io_out": [
      -2,
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -4, 2]\noutput : list = [-24, -12, -16]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(sub_n([-2, -4, 2],-5),-5),10)),-2)",
    "io_inp": [
      -2,
      -4,
      2
    ],
    "io_out": [
      -24,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(sub_n(input,-5),-5),10)),-2)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des([0, 0, -1]))",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(drop([-1, 5, -5],1))",
    "io_inp": [
      -1,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 1, -1, -3, -1, -5]\noutput : list = [-1]",
    "output": "generated_output : list = mul_n(take(drop(sort_asc(sort_des([-4, 1, -1, -3, -1, -5])),5),33),-1)",
    "io_inp": [
      -4,
      1,
      -1,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(sort_asc(sort_des(input)),5),33),-1)"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [13, -2, 16]",
    "output": "generated_output : list = add_n(mul_n([-4, 1, -5],-3),1)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      13,
      -2,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),1)"
  },
  {
    "input": "input : list = [4, 3, 2, -5, 2]\noutput : list = [24, 20, 16, 16, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_des([4, 3, 2, -5, 2]),-2)),4))",
    "io_inp": [
      4,
      3,
      2,
      -5,
      2
    ],
    "io_out": [
      24,
      20,
      16,
      16,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_des(input),-2)),4))"
  },
  {
    "input": "input : list = [0, 4, -5, -2, -3, 1]\noutput : list = [1, -3, -2, -5, 4, 0]",
    "output": "generated_output : list = reverse([0, 4, -5, -2, -3, 1])",
    "io_inp": [
      0,
      4,
      -5,
      -2,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -2,
      -5,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc([-2, -5]),7)))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(input),7)))"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse([0, -2, -2]))",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, -3, -5, 3]\noutput : list = [-13, -10, 5, 11]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(sort_asc([2, -3, -5, 3]))),-3),4)",
    "io_inp": [
      2,
      -3,
      -5,
      3
    ],
    "io_out": [
      -13,
      -10,
      5,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(sort_asc(input))),-3),4)"
  },
  {
    "input": "input : list = [0, -5, 0, 5, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(reverse([0, -5, 0, 5, -5])),3),2))",
    "io_inp": [
      0,
      -5,
      0,
      5,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(reverse(input)),3),2))"
  },
  {
    "input": "input : list = [2, -4, 2, 4]\noutput : list = [-4, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, -4, 2, 4])",
    "io_inp": [
      2,
      -4,
      2,
      4
    ],
    "io_out": [
      -4,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -2, -3]\noutput : list = [-32, -52, 48, 68]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(mul_n([2, 3, -2, -3],5),3),-4),4),16)",
    "io_inp": [
      2,
      3,
      -2,
      -3
    ],
    "io_out": [
      -32,
      -52,
      48,
      68
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(mul_n(input,5),3),-4),4),16)"
  },
  {
    "input": "input : list = [1, -5, -4]\noutput : list = [1, -5, -4]",
    "output": "generated_output : list = mul_n([1, -5, -4],1)",
    "io_inp": [
      1,
      -5,
      -4
    ],
    "io_out": [
      1,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, -1, 1, -1]\noutput : list = [-4, -4, 0, 4]",
    "output": "generated_output : list = sort_asc(mul_n([0, -1, 1, -1],4))",
    "io_inp": [
      0,
      -1,
      1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [6, 8]",
    "output": "generated_output : list = mul_n([3, 4],2)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-1, -2, 3, -1, -3, -3]\noutput : list = [0, -4, -6, -6]",
    "output": "generated_output : list = add_n(drop([-1, -2, 3, -1, -3, -3],2),-3)",
    "io_inp": [
      -1,
      -2,
      3,
      -1,
      -3,
      -3
    ],
    "io_out": [
      0,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [3, 4, -1, 2, 1]\noutput : list = [0, 3, 2]",
    "output": "generated_output : list = add_n(drop([3, 4, -1, 2, 1],2),1)",
    "io_inp": [
      3,
      4,
      -1,
      2,
      1
    ],
    "io_out": [
      0,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),1)"
  },
  {
    "input": "input : list = [-1, 5, 3, 0]\noutput : list = [20, 12, 0, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(mul_n([-1, 5, 3, 0],4),15))))",
    "io_inp": [
      -1,
      5,
      3,
      0
    ],
    "io_out": [
      20,
      12,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(mul_n(input,4),15))))"
  },
  {
    "input": "input : list = [1, -3, -4]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(drop([1, -3, -4],1),-1)",
    "io_inp": [
      1,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-1, -5, 3, 0, -2, 2]\noutput : list = [4, 0]",
    "output": "generated_output : list = add_n(mul_n(drop([-1, -5, 3, 0, -2, 2],4),-1),2)",
    "io_inp": [
      -1,
      -5,
      3,
      0,
      -2,
      2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,4),-1),2)"
  },
  {
    "input": "input : list = [-1, -5, 5, -5, 3, 2]\noutput : list = [44, 28, 20, -4, -36, -36]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc([-1, -5, 5, -5, 3, 2]),-2),-1),-4))",
    "io_inp": [
      -1,
      -5,
      5,
      -5,
      3,
      2
    ],
    "io_out": [
      44,
      28,
      20,
      -4,
      -36,
      -36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc(input),-2),-1),-4))"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [0, -2, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse([-3, -5, 1])),-3)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      0,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-3)"
  },
  {
    "input": "input : list = [3, 0, 5, -5, 4]\noutput : list = [8, 7, 6, 3, -2]",
    "output": "generated_output : list = sort_des(add_n([3, 0, 5, -5, 4],3))",
    "io_inp": [
      3,
      0,
      5,
      -5,
      4
    ],
    "io_out": [
      8,
      7,
      6,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-3, 2, -2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = drop(sort_asc([-3, 2, -2, 0]),2)",
    "io_inp": [
      -3,
      2,
      -2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-1, 3, -3, 1]\noutput : list = [1, 5, -1, 3]",
    "output": "generated_output : list = sub_n([-1, 3, -3, 1],-2)",
    "io_inp": [
      -1,
      3,
      -3,
      1
    ],
    "io_out": [
      1,
      5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, 3, 5, -5, -3]\noutput : list = [15, 5, -20, -25, -35]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(reverse([2, 3, 5, -5, -3]),1)),-3),-5)",
    "io_inp": [
      2,
      3,
      5,
      -5,
      -3
    ],
    "io_out": [
      15,
      5,
      -20,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(reverse(input),1)),-3),-5)"
  },
  {
    "input": "input : list = [4, 5, 1, -5]\noutput : list = [2, 1, -2, -8]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_des([4, 5, 1, -5])))),-3)",
    "io_inp": [
      4,
      5,
      1,
      -5
    ],
    "io_out": [
      2,
      1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [2, 4, 1, -4, -3, -4]\noutput : list = [-19, -19, -17, -9, -7, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(sub_n([2, 4, 1, -4, -3, -4],3),8)),2),-5)",
    "io_inp": [
      2,
      4,
      1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -19,
      -19,
      -17,
      -9,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(sub_n(input,3),8)),2),-5)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(add_n([4, 4],-1),-2))))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(add_n(input,-1),-2))))"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [6, 4, -2]",
    "output": "generated_output : list = add_n(sort_des(take(take(sort_asc([5, -3, 3]),5),5)),1)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(sort_asc(input),5),5)),1)"
  },
  {
    "input": "input : list = [-5, 2, -4, 4, 2]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = reverse(sort_asc(take(drop([-5, 2, -4, 4, 2],2),22)))",
    "io_inp": [
      -5,
      2,
      -4,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(drop(input,2),22)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [5, 1]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(sort_asc([-1, 3]),-4),12)),2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(sort_asc(input),-4),12)),2)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des([4, -3])",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, 3, 2]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(reverse(reverse(take([1, 3, 3, 2],2))),30)",
    "io_inp": [
      1,
      3,
      3,
      2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(input,2))),30)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(add_n([-3, -5],4))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [11, 11]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(mul_n([0, 0],5),3),-3),5),27)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      11,
      11
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(mul_n(input,5),3),-3),5),27)"
  },
  {
    "input": "input : list = [1, 1, 0, -1]\noutput : list = [-15, -15, 0, 15]",
    "output": "generated_output : list = mul_n(mul_n([1, 1, 0, -1],3),-5)",
    "io_inp": [
      1,
      1,
      0,
      -1
    ],
    "io_out": [
      -15,
      -15,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),-5)"
  },
  {
    "input": "input : list = [-5, 2, 4, 2, -2, -3]\noutput : list = [-7, -5, -4, 0, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc([-5, 2, 4, 2, -2, -3]),-5),5)),-2)",
    "io_inp": [
      -5,
      2,
      4,
      2,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -4,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sort_asc(input),-5),5)),-2)"
  },
  {
    "input": "input : list = [-2, -2, -2, -2, 2]\noutput : list = [-6, -6, -6, -6, -2]",
    "output": "generated_output : list = add_n([-2, -2, -2, -2, 2],-4)",
    "io_inp": [
      -2,
      -2,
      -2,
      -2,
      2
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 1, -2, 1]\noutput : list = [-15, -9, 0, 0]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(reverse([-4, 1, -2, 1]),3))),-3)",
    "io_inp": [
      -4,
      1,
      -2,
      1
    ],
    "io_out": [
      -15,
      -9,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(reverse(input),3))),-3)"
  },
  {
    "input": "input : list = [2, -2, 3, -1, -4, 5]\noutput : list = [7, 5, 4, 1, 0, -2]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(sub_n([2, -2, 3, -1, -4, 5],1)),-3)),8)",
    "io_inp": [
      2,
      -2,
      3,
      -1,
      -4,
      5
    ],
    "io_out": [
      7,
      5,
      4,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(sub_n(input,1)),-3)),8)"
  },
  {
    "input": "input : list = [4, -2, -5, 5, 5]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(reverse(take(take(take([4, -2, -5, 5, 5],1),11),6)),5)",
    "io_inp": [
      4,
      -2,
      -5,
      5,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(take(input,1),11),6)),5)"
  },
  {
    "input": "input : list = [3, 3, 4, -3, 4, -4]\noutput : list = [-9, -9, -12]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(take([3, 3, 4, -3, 4, -4],3),-3)),30))",
    "io_inp": [
      3,
      3,
      4,
      -3,
      4,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(take(input,3),-3)),30))"
  },
  {
    "input": "input : list = [0, -5, -5, 3, -2, 3]\noutput : list = [4, 6, 9, 9]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(add_n([0, -5, -5, 3, -2, 3],3)),4),3))",
    "io_inp": [
      0,
      -5,
      -5,
      3,
      -2,
      3
    ],
    "io_out": [
      4,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(add_n(input,3)),4),3))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, -6]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(mul_n([3, 0],-2)),9)))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(mul_n(input,-2)),9)))"
  },
  {
    "input": "input : list = [-4, 5, -2]\noutput : list = [9, 2]",
    "output": "generated_output : list = add_n(sort_des(drop([-4, 5, -2],1)),4)",
    "io_inp": [
      -4,
      5,
      -2
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,1)),4)"
  },
  {
    "input": "input : list = [-4, -2, 1, 3, -4, -5]\noutput : list = [-6, -4, -1, 1, -6, -7]",
    "output": "generated_output : list = add_n([-4, -2, 1, 3, -4, -5],-2)",
    "io_inp": [
      -4,
      -2,
      1,
      3,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -1,
      1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 0, 3, 1, 2]\noutput : list = [-3, 0, 3, 1, 2]",
    "output": "generated_output : list = mul_n([-3, 0, 3, 1, 2],1)",
    "io_inp": [
      -3,
      0,
      3,
      1,
      2
    ],
    "io_out": [
      -3,
      0,
      3,
      1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [4, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(reverse([3, 5])),20)),1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(reverse(input)),20)),1)"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [-9, 11, 21]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sort_asc([-3, -5, 1])),-5)),-4)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      -9,
      11,
      21
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sort_asc(input)),-5)),-4)"
  },
  {
    "input": "input : list = [-5, 1, -5, -3, 0, 4]\noutput : list = [-9, -3, -9, -7, -4, 0]",
    "output": "generated_output : list = sub_n([-5, 1, -5, -3, 0, 4],4)",
    "io_inp": [
      -5,
      1,
      -5,
      -3,
      0,
      4
    ],
    "io_out": [
      -9,
      -3,
      -9,
      -7,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-12, 36]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_asc([-3, 5]),-3)),3),-2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -12,
      36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_asc(input),-3)),3),-2)"
  },
  {
    "input": "input : list = [1, -4, 3, 5, 0, 0]\noutput : list = [-19, -13, -7, -4, -4, 8]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(mul_n([1, -4, 3, 5, 0, 0],-3)),4)),1)",
    "io_inp": [
      1,
      -4,
      3,
      5,
      0,
      0
    ],
    "io_out": [
      -19,
      -13,
      -7,
      -4,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(mul_n(input,-3)),4)),1)"
  },
  {
    "input": "input : list = [-1, -2, -4]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([-1, -2, -4])))",
    "io_inp": [
      -1,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, 2, 4, 2, 3, 4]\noutput : list = [11, 6, 1, 11]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(drop([3, 2, 4, 2, 3, 4],2)),2),5),-1)",
    "io_inp": [
      3,
      2,
      4,
      2,
      3,
      4
    ],
    "io_out": [
      11,
      6,
      1,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(drop(input,2)),2),5),-1)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [-14, -4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(reverse([5, -4, 1]),-3),2)))",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      -14,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(reverse(input),-3),2)))"
  },
  {
    "input": "input : list = [4, 1, 2]\noutput : list = [12, 3, 6]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(reverse([4, 1, 2]),-3),3)),3)",
    "io_inp": [
      4,
      1,
      2
    ],
    "io_out": [
      12,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(reverse(input),-3),3)),3)"
  },
  {
    "input": "input : list = [-3, 5, -4, -1, 1]\noutput : list = [5, 1, -1, -3, -4]",
    "output": "generated_output : list = sort_des([-3, 5, -4, -1, 1])",
    "io_inp": [
      -3,
      5,
      -4,
      -1,
      1
    ],
    "io_out": [
      5,
      1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 1, -1, 3, 3, 1]\noutput : list = [-25, -16, -10, -10, -4, -4]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(sort_asc([-4, 1, -1, 3, 3, 1]),-4),25),3),1)",
    "io_inp": [
      -4,
      1,
      -1,
      3,
      3,
      1
    ],
    "io_out": [
      -25,
      -16,
      -10,
      -10,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(sort_asc(input),-4),25),3),1)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n([3, 3],-1),4)),14))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(sub_n(input,-1),4)),14))"
  },
  {
    "input": "input : list = [-2, 5, 5, 4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(take([-2, 5, 5, 4],1),3)),-5))",
    "io_inp": [
      -2,
      5,
      5,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(take(input,1),3)),-5))"
  },
  {
    "input": "input : list = [-4, -4, 3, -3]\noutput : list = [-5, -5, 0, 30]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse([-4, -4, 3, -3]),-3),5)),40)",
    "io_inp": [
      -4,
      -4,
      3,
      -3
    ],
    "io_out": [
      -5,
      -5,
      0,
      30
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse(input),-3),5)),40)"
  },
  {
    "input": "input : list = [-1, -1, -1, 2, 2, 3]\noutput : list = [3, 2, 2, -1, -1, -1]",
    "output": "generated_output : list = reverse([-1, -1, -1, 2, 2, 3])",
    "io_inp": [
      -1,
      -1,
      -1,
      2,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      2,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, 5, -3, 4]\noutput : list = [5, 4, 4, 2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc([2, 4, 5, -3, 4]))))",
    "io_inp": [
      2,
      4,
      5,
      -3,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [-3, 0, -1, -4, 5]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(take([-3, 0, -1, -4, 5],1),5)),-3),28)",
    "io_inp": [
      -3,
      0,
      -1,
      -4,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(take(input,1),5)),-3),28)"
  },
  {
    "input": "input : list = [4, 0, 1, 2, 4]\noutput : list = [-3, -2, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_des([4, 0, 1, 2, 4]),3))))",
    "io_inp": [
      4,
      0,
      1,
      2,
      4
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(take([-5, 4, -1],1),-2),3)))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(take(input,1),-2),3)))"
  },
  {
    "input": "input : list = [0, 0, -3, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = drop([0, 0, -3, -3, 3],3)",
    "io_inp": [
      0,
      0,
      -3,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 2, -5, 5, -1, 0]\noutput : list = [-7, -3, -2, 0, 3]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(drop([-2, 2, -5, 5, -1, 0],1))),2),21)",
    "io_inp": [
      -2,
      2,
      -5,
      5,
      -1,
      0
    ],
    "io_out": [
      -7,
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(drop(input,1))),2),21)"
  },
  {
    "input": "input : list = [4, 0, 0, 2, -3]\noutput : list = [-1, 2, 2, 4, 6]",
    "output": "generated_output : list = take(sub_n(add_n(take(sort_asc([4, 0, 0, 2, -3]),9),5),3),48)",
    "io_inp": [
      4,
      0,
      0,
      2,
      -3
    ],
    "io_out": [
      -1,
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(sort_asc(input),9),5),3),48)"
  },
  {
    "input": "input : list = [2, -3, -1, -1]\noutput : list = [-5, -3, -3, 0]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(sort_asc([2, -3, -1, -1]),-2),1)),-5)",
    "io_inp": [
      2,
      -3,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(sort_asc(input),-2),1)),-5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-4, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(take(reverse([-1, -5]),8),3)),38)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(reverse(input),8),3)),38)"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [-3, -4, -8]",
    "output": "generated_output : list = sub_n(sort_des(add_n(take(sort_asc([3, 2, -2]),15),-4)),2)",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(take(sort_asc(input),15),-4)),2)"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [1, -1, 4]",
    "output": "generated_output : list = reverse(reverse([1, -1, 4]))",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -1, -4, 5, 3, -4]\noutput : list = [29, 23, 11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(take([-3, -1, -4, 5, 3, -4],3),-2),3),-5))",
    "io_inp": [
      -3,
      -1,
      -4,
      5,
      3,
      -4
    ],
    "io_out": [
      29,
      23,
      11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(take(input,3),-2),3),-5))"
  },
  {
    "input": "input : list = [0, 5, -5, 5, 4, -1]\noutput : list = [12, -48, -60, 60, -60, 0]",
    "output": "generated_output : list = take(mul_n(take(reverse(mul_n([0, 5, -5, 5, 4, -1],4)),36),-3),12)",
    "io_inp": [
      0,
      5,
      -5,
      5,
      4,
      -1
    ],
    "io_out": [
      12,
      -48,
      -60,
      60,
      -60,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(mul_n(input,4)),36),-3),12)"
  },
  {
    "input": "input : list = [5, -5, 1, 0]\noutput : list = [-5, 5, -1, 0]",
    "output": "generated_output : list = take(mul_n([5, -5, 1, 0],-1),10)",
    "io_inp": [
      5,
      -5,
      1,
      0
    ],
    "io_out": [
      -5,
      5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),10)"
  },
  {
    "input": "input : list = [4, 2, 5, -4]\noutput : list = [1, -1, 2, -7]",
    "output": "generated_output : list = sub_n(sub_n([4, 2, 5, -4],1),2)",
    "io_inp": [
      4,
      2,
      5,
      -4
    ],
    "io_out": [
      1,
      -1,
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),2)"
  },
  {
    "input": "input : list = [-5, -2, -2, -5, 0]\noutput : list = [0, -2, -2, -5, -5]",
    "output": "generated_output : list = take(reverse(take(sort_asc(mul_n([-5, -2, -2, -5, 0],1)),14)),49)",
    "io_inp": [
      -5,
      -2,
      -2,
      -5,
      0
    ],
    "io_out": [
      0,
      -2,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(mul_n(input,1)),14)),49)"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = drop(mul_n([-3, -3, -1],1),1)",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,1),1)"
  },
  {
    "input": "input : list = [-5, 4, 5, 5]\noutput : list = [-5, 4, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(sort_asc([-5, 4, 5, 5]),1),-1)))",
    "io_inp": [
      -5,
      4,
      5,
      5
    ],
    "io_out": [
      -5,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(sort_asc(input),1),-1)))"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(drop([-3, -2, -2],1)))),28)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(drop(input,1)))),28)"
  },
  {
    "input": "input : list = [-1, -3, -4, -1]\noutput : list = [-21, -18, -12]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(drop([-1, -3, -4, -1],1)),3),5),4)",
    "io_inp": [
      -1,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -21,
      -18,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(drop(input,1)),3),5),4)"
  },
  {
    "input": "input : list = [-4, -1, -3]\noutput : list = [-2, -12, 3]",
    "output": "generated_output : list = add_n(sub_n(reverse(mul_n(sub_n([-4, -1, -3],-3),-5)),4),2)",
    "io_inp": [
      -4,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -12,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(mul_n(sub_n(input,-3),-5)),4),2)"
  },
  {
    "input": "input : list = [-2, -5, 2, 2, 5, -2]\noutput : list = [9, 6, 6, 2, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_asc([-2, -5, 2, 2, 5, -2])))),-4)",
    "io_inp": [
      -2,
      -5,
      2,
      2,
      5,
      -2
    ],
    "io_out": [
      9,
      6,
      6,
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [-1, -3, -5, 1, -3]\noutput : list = [-5, 1, -3]",
    "output": "generated_output : list = drop([-1, -3, -5, 1, -3],2)",
    "io_inp": [
      -1,
      -3,
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [6, 0]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(sort_asc([-4, 2])),4)),29)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(sort_asc(input)),4)),29)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n(sub_n([-4, -2],-1),-2)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),-2)"
  },
  {
    "input": "input : list = [0, 0, 1, -3, 1, -5]\noutput : list = [-10, -6, 0, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(mul_n([0, 0, 1, -3, 1, -5],2)),28)))",
    "io_inp": [
      0,
      0,
      1,
      -3,
      1,
      -5
    ],
    "io_out": [
      -10,
      -6,
      0,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(mul_n(input,2)),28)))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 1, -4],1)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 3, -3, 1, -5]\noutput : list = [0, -2, -4, -8, -10]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc([5, 3, -3, 1, -5]),4),1))",
    "io_inp": [
      5,
      3,
      -3,
      1,
      -5
    ],
    "io_out": [
      0,
      -2,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(input),4),1))"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-6, 9, 12]",
    "output": "generated_output : list = reverse(take(add_n(mul_n([-3, -2, 3],-3),3),12))",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -6,
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(input,-3),3),12))"
  },
  {
    "input": "input : list = [3, 2, -5, 1]\noutput : list = [3, 2, 1, -5]",
    "output": "generated_output : list = sort_des([3, 2, -5, 1])",
    "io_inp": [
      3,
      2,
      -5,
      1
    ],
    "io_out": [
      3,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, 1, 1, 4, 1]\noutput : list = [-3, -6, -6, -6, -3]",
    "output": "generated_output : list = take(add_n(sub_n([4, 1, 1, 1, 4, 1],2),-5),5)",
    "io_inp": [
      4,
      1,
      1,
      1,
      4,
      1
    ],
    "io_out": [
      -3,
      -6,
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,2),-5),5)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [7, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sort_des([-5, 2, -3]),-4),3)),-4)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      7,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sort_des(input),-4),3)),-4)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0, -54]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc([5, -1]),3),-3),-3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0,
      -54
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(input),3),-3),-3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [24, -8]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(reverse([-1, 3])),-4)),-2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      24,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(reverse(input)),-4)),-2)"
  },
  {
    "input": "input : list = [-1, 5, 4, 1, 5, 2]\noutput : list = [3, 9, 8, 5, 9, 6]",
    "output": "generated_output : list = sub_n([-1, 5, 4, 1, 5, 2],-4)",
    "io_inp": [
      -1,
      5,
      4,
      1,
      5,
      2
    ],
    "io_out": [
      3,
      9,
      8,
      5,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [2, -1, 1, 1]\noutput : list = [3, 5, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc([2, -1, 1, 1]),4)",
    "io_inp": [
      2,
      -1,
      1,
      1
    ],
    "io_out": [
      3,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [15, -41, -65]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sort_des([-2, 5, -5]),3),4),2),1)",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      15,
      -41,
      -65
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sort_des(input),3),4),2),1)"
  },
  {
    "input": "input : list = [0, 1, -3, 1, -3, 0]\noutput : list = [68, 83, 23, 83, 23, 68]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sub_n([0, 1, -3, 1, -3, 0],-4),5),3),-5),-3)",
    "io_inp": [
      0,
      1,
      -3,
      1,
      -3,
      0
    ],
    "io_out": [
      68,
      83,
      23,
      83,
      23,
      68
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sub_n(input,-4),5),3),-5),-3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-7, 1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n([-5, 3],-3)),3),4)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(input,-3)),3),4)"
  },
  {
    "input": "input : list = [-3, 4, -2, 4, -4]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take(sub_n([-3, 4, -2, 4, -4],-4),1))",
    "io_inp": [
      -3,
      4,
      -2,
      4,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,-4),1))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [4, -10]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(sort_asc([5, -2]),-2),2),10),-2)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      4,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(sort_asc(input),-2),2),10),-2)"
  },
  {
    "input": "input : list = [-3, -3, -5, -4, -5, -2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = take(sort_des(drop(sort_des(reverse([-3, -3, -5, -4, -5, -2])),4)),30)",
    "io_inp": [
      -3,
      -3,
      -5,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(sort_des(reverse(input)),4)),30)"
  },
  {
    "input": "input : list = [-1, -1, 1, 4, 5, 4]\noutput : list = [8, 7, 7, 4, 2, 2]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([-1, -1, 1, 4, 5, 4]),-3))",
    "io_inp": [
      -1,
      -1,
      1,
      4,
      5,
      4
    ],
    "io_out": [
      8,
      7,
      7,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),-3))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-1, -2]))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = mul_n(reverse([-4, 3]),-1)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(take([-3, -4, 2],1),-4)",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-5, -5, 5, -2, 5]\noutput : list = [75, 75, -30, -75, -75]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(sort_asc([-5, -5, 5, -2, 5]),-3),-5)),24)",
    "io_inp": [
      -5,
      -5,
      5,
      -2,
      5
    ],
    "io_out": [
      75,
      75,
      -30,
      -75,
      -75
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(sort_asc(input),-3),-5)),24)"
  },
  {
    "input": "input : list = [-4, -5, 1, 5, -5]\noutput : list = [2, -2, -7, -8, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(sort_des([-4, -5, 1, 5, -5]),-3)),24))",
    "io_inp": [
      -4,
      -5,
      1,
      5,
      -5
    ],
    "io_out": [
      2,
      -2,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(sort_des(input),-3)),24))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-4, 10]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(sort_asc([2, -5]),2),7),-1))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -4,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(sort_asc(input),2),7),-1))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [4, 2]",
    "output": "generated_output : list = take(reverse(sub_n(take(reverse([-1, -3]),15),-5)),3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(reverse(input),15),-5)),3)"
  },
  {
    "input": "input : list = [-4, -5, -1, 4, 3, 1]\noutput : list = [-9, -8, -5, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(sort_asc([-4, -5, -1, 4, 3, 1])),4)))",
    "io_inp": [
      -4,
      -5,
      -1,
      4,
      3,
      1
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [4, -5, -3, -1, -2, -3]\noutput : list = [3, -2, -3, -4, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(sort_asc([4, -5, -3, -1, -2, -3]),2),38)),-1)",
    "io_inp": [
      4,
      -5,
      -3,
      -1,
      -2,
      -3
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(sort_asc(input),2),38)),-1)"
  },
  {
    "input": "input : list = [2, 3, -5, 5, -3]\noutput : list = [1, 9, -1, 7, 6]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n([2, 3, -5, 5, -3],-1),-1)),-4)",
    "io_inp": [
      2,
      3,
      -5,
      5,
      -3
    ],
    "io_out": [
      1,
      9,
      -1,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(input,-1),-1)),-4)"
  },
  {
    "input": "input : list = [-3, -2, -2, 5, -4, -3]\noutput : list = [6, -1, -1, -2, -2, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(reverse([-3, -2, -2, 5, -4, -3])))),-1)",
    "io_inp": [
      -3,
      -2,
      -2,
      5,
      -4,
      -3
    ],
    "io_out": [
      6,
      -1,
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-4, 0, 0, -5]\noutput : list = [-4, 0, 0, -5]",
    "output": "generated_output : list = reverse(reverse([-4, 0, 0, -5]))",
    "io_inp": [
      -4,
      0,
      0,
      -5
    ],
    "io_out": [
      -4,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 5, 1, -3, 4, -5]\noutput : list = [6, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(drop(take([-3, 5, 1, -3, 4, -5],4),2)),1),-5)",
    "io_inp": [
      -3,
      5,
      1,
      -3,
      4,
      -5
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(drop(take(input,4),2)),1),-5)"
  },
  {
    "input": "input : list = [-1, 5, 0, -3]\noutput : list = [0, -5, -6, -8]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(mul_n([-1, 5, 0, -3],1)))),5)",
    "io_inp": [
      -1,
      5,
      0,
      -3
    ],
    "io_out": [
      0,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(mul_n(input,1)))),5)"
  },
  {
    "input": "input : list = [-5, -4, 2]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -4, 2])",
    "io_inp": [
      -5,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, -3, 0]\noutput : list = [-5, -8, -4, -10]",
    "output": "generated_output : list = sub_n(take(reverse([-5, 1, -3, 0]),19),5)",
    "io_inp": [
      -5,
      1,
      -3,
      0
    ],
    "io_out": [
      -5,
      -8,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),19),5)"
  },
  {
    "input": "input : list = [-5, 5, -4, -2, 0]\noutput : list = [0, 10, 1, 3, 5]",
    "output": "generated_output : list = sub_n([-5, 5, -4, -2, 0],-5)",
    "io_inp": [
      -5,
      5,
      -4,
      -2,
      0
    ],
    "io_out": [
      0,
      10,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 2, -5, -5, 3, 0]\noutput : list = [2, 2, -8, -14]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(drop([-5, 2, -5, -5, 3, 0],2))),4),-2)",
    "io_inp": [
      -5,
      2,
      -5,
      -5,
      3,
      0
    ],
    "io_out": [
      2,
      2,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(drop(input,2))),4),-2)"
  },
  {
    "input": "input : list = [3, 5, -2, 4]\noutput : list = [-40, -50, -15, -45]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(reverse([3, 5, -2, 4]),-4)),-1),-5)",
    "io_inp": [
      3,
      5,
      -2,
      4
    ],
    "io_out": [
      -40,
      -50,
      -15,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(reverse(input),-4)),-1),-5)"
  },
  {
    "input": "input : list = [-1, 3, 1, -5, 3]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(take([-1, 3, 1, -5, 3],2),1))),37)",
    "io_inp": [
      -1,
      3,
      1,
      -5,
      3
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(take(input,2),1))),37)"
  },
  {
    "input": "input : list = [1, 1, 3, 5, -4, 0]\noutput : list = [-10, 8, 0]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(drop([1, 1, 3, 5, -4, 0],3)),-2)),20)",
    "io_inp": [
      1,
      1,
      3,
      5,
      -4,
      0
    ],
    "io_out": [
      -10,
      8,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(drop(input,3)),-2)),20)"
  },
  {
    "input": "input : list = [1, -5, -5, 4, -3]\noutput : list = [-16, -16, -14, -10, -7]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(sub_n([1, -5, -5, 4, -3],3)),5),-1),2)",
    "io_inp": [
      1,
      -5,
      -5,
      4,
      -3
    ],
    "io_out": [
      -16,
      -16,
      -14,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(sub_n(input,3)),5),-1),2)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [8, 2, 7]",
    "output": "generated_output : list = sub_n([3, -3, 2],-5)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      8,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, -3, -3, -5, -4]\noutput : list = [8, -12, -12, -16, -20]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc([2, -3, -3, -5, -4])),10),4)",
    "io_inp": [
      2,
      -3,
      -3,
      -5,
      -4
    ],
    "io_out": [
      8,
      -12,
      -12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(input)),10),4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [14, 4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([5, -5],-3),-3),-3)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      14,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,-3),-3),-3)"
  },
  {
    "input": "input : list = [5, -1, -3]\noutput : list = [-25]",
    "output": "generated_output : list = sort_des(mul_n(take([5, -1, -3],1),-5))",
    "io_inp": [
      5,
      -1,
      -3
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),-5))"
  },
  {
    "input": "input : list = [-5, 1, 5, 2]\noutput : list = [-8, -20]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(drop([-5, 1, 5, 2],2))),-4),1)",
    "io_inp": [
      -5,
      1,
      5,
      2
    ],
    "io_out": [
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(drop(input,2))),-4),1)"
  },
  {
    "input": "input : list = [5, -1, -5, -3, 0, 2]\noutput : list = [5, -1, -5, -3]",
    "output": "generated_output : list = take([5, -1, -5, -3, 0, 2],4)",
    "io_inp": [
      5,
      -1,
      -5,
      -3,
      0,
      2
    ],
    "io_out": [
      5,
      -1,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-2, 0, -4, -4, -4, 3]\noutput : list = [-1, -4, -6, -8, -8, -8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sort_des([-2, 0, -4, -4, -4, 3]),13),-1)),-5)",
    "io_inp": [
      -2,
      0,
      -4,
      -4,
      -4,
      3
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sort_des(input),13),-1)),-5)"
  },
  {
    "input": "input : list = [-1, 3, -1, 1, 2]\noutput : list = [3, -1]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc(take([-1, 3, -1, 1, 2],2))),16),1)",
    "io_inp": [
      -1,
      3,
      -1,
      1,
      2
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(take(input,2))),16),1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [7, 1]",
    "output": "generated_output : list = add_n(reverse(take(reverse(sub_n([5, -1],3)),20)),5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(sub_n(input,3)),20)),5)"
  },
  {
    "input": "input : list = [3, -3, 4, -5, -3]\noutput : list = [-7, -13, -6, -15, -13]",
    "output": "generated_output : list = sub_n(sub_n([3, -3, 4, -5, -3],5),5)",
    "io_inp": [
      3,
      -3,
      4,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -13,
      -6,
      -15,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),5)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-2, -5]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(add_n([1, 4],3),-5),-4)),5)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(add_n(input,3),-5),-4)),5)"
  },
  {
    "input": "input : list = [1, 2, -3, 4, -3]\noutput : list = [3, 3, -1, -2, -4]",
    "output": "generated_output : list = take(sort_des(mul_n(take(sort_des([1, 2, -3, 4, -3]),17),-1)),48)",
    "io_inp": [
      1,
      2,
      -3,
      4,
      -3
    ],
    "io_out": [
      3,
      3,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(sort_des(input),17),-1)),48)"
  },
  {
    "input": "input : list = [5, 4, -2, 4, 0]\noutput : list = [2, 0, -4, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(reverse([5, 4, -2, 4, 0]),-1))))",
    "io_inp": [
      5,
      4,
      -2,
      4,
      0
    ],
    "io_out": [
      2,
      0,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(sub_n(take(sub_n(sort_asc([-3, -2]),5),21),-4),35)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(sort_asc(input),5),21),-4),35)"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n(take([5, 5, -5],1),3),3),6))",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(take(input,1),3),3),6))"
  },
  {
    "input": "input : list = [1, -1, -1, -2]\noutput : list = [-2, -1, -1, 1]",
    "output": "generated_output : list = reverse(sort_des([1, -1, -1, -2]))",
    "io_inp": [
      1,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 4, 1]\noutput : list = [-4, -8, -16]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(sort_asc([2, 4, 1])),1),-4))",
    "io_inp": [
      2,
      4,
      1
    ],
    "io_out": [
      -4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [2, 0, 5, 5, 1, 1]\noutput : list = [10, 0, 25, 25, 5, 5]",
    "output": "generated_output : list = mul_n(mul_n([2, 0, 5, 5, 1, 1],-1),-5)",
    "io_inp": [
      2,
      0,
      5,
      5,
      1,
      1
    ],
    "io_out": [
      10,
      0,
      25,
      25,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),-5)"
  },
  {
    "input": "input : list = [2, 3, 3, -5, 0, 0]\noutput : list = [-27, -3, -3, -6]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(take([2, 3, 3, -5, 0, 0],4),21)),-4),3)",
    "io_inp": [
      2,
      3,
      3,
      -5,
      0,
      0
    ],
    "io_out": [
      -27,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(take(input,4),21)),-4),3)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [3, -5]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(drop([2, 4, -4],1)),-1),1)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(drop(input,1)),-1),1)"
  },
  {
    "input": "input : list = [-5, 5, 5, 4, 4, -4]\noutput : list = [-2, 8, 8]",
    "output": "generated_output : list = sub_n(take([-5, 5, 5, 4, 4, -4],3),-3)",
    "io_inp": [
      -5,
      5,
      5,
      4,
      4,
      -4
    ],
    "io_out": [
      -2,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [-5, -3, -1, 2]\noutput : list = [2, -1, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, -1, 2])",
    "io_inp": [
      -5,
      -3,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [20, 15]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([4, 3])),5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      20,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [-2, -2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([5, -2, -2])))",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, 0, -3]\noutput : list = [-6]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(take([-5, 0, -3],1),3),4)),8)",
    "io_inp": [
      -5,
      0,
      -3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(take(input,1),3),4)),8)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [5, 10]",
    "output": "generated_output : list = mul_n(take(add_n(drop([1, 0, 5],1),5),4),1)",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(drop(input,1),5),4),1)"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [30, 5, -15]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(add_n([-4, 5, 1],-4),-2)),-4),-5)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      30,
      5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(add_n(input,-4),-2)),-4),-5)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [-2, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(add_n([1, -2, 2],-5),-5),3)),1)",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(add_n(input,-5),-5),3)),1)"
  },
  {
    "input": "input : list = [3, -4, -1, 5]\noutput : list = [8, 2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(drop([3, -4, -1, 5],2),11)),-3))",
    "io_inp": [
      3,
      -4,
      -1,
      5
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(drop(input,2),11)),-3))"
  },
  {
    "input": "input : list = [5, -2, 0, 0, -3]\noutput : list = [-1, 1, 1, -2]",
    "output": "generated_output : list = reverse(reverse(sub_n(drop(add_n([5, -2, 0, 0, -3],-4),1),-5)))",
    "io_inp": [
      5,
      -2,
      0,
      0,
      -3
    ],
    "io_out": [
      -1,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(drop(add_n(input,-4),1),-5)))"
  },
  {
    "input": "input : list = [4, 2, 4, -2, 3]\noutput : list = [-4, -14, -2, -6, -2]",
    "output": "generated_output : list = reverse(mul_n(take(take(sub_n([4, 2, 4, -2, 3],5),9),21),2))",
    "io_inp": [
      4,
      2,
      4,
      -2,
      3
    ],
    "io_out": [
      -4,
      -14,
      -2,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(sub_n(input,5),9),21),2))"
  },
  {
    "input": "input : list = [-5, 3, -4, -4, 3]\noutput : list = [-5, 3, -4]",
    "output": "generated_output : list = take([-5, 3, -4, -4, 3],3)",
    "io_inp": [
      -5,
      3,
      -4,
      -4,
      3
    ],
    "io_out": [
      -5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [10, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([3, 4],-2),5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-2),5))"
  },
  {
    "input": "input : list = [3, -2, -2, 4, -2]\noutput : list = [-2, 4, -2]",
    "output": "generated_output : list = reverse(reverse(drop([3, -2, -2, 4, -2],2)))",
    "io_inp": [
      3,
      -2,
      -2,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([4, 4])))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, -1, 2, -3, 0, 5]\noutput : list = [3, 0, -3, -6, -12, -21]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(add_n([-2, -1, 2, -3, 0, 5],3),1),-3)))",
    "io_inp": [
      -2,
      -1,
      2,
      -3,
      0,
      5
    ],
    "io_out": [
      3,
      0,
      -3,
      -6,
      -12,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(add_n(input,3),1),-3)))"
  },
  {
    "input": "input : list = [-5, 3, 1, 5, 1, 5]\noutput : list = [0, 6, 6, 8]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(add_n([-5, 3, 1, 5, 1, 5],5)),29),4))",
    "io_inp": [
      -5,
      3,
      1,
      5,
      1,
      5
    ],
    "io_out": [
      0,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(add_n(input,5)),29),4))"
  },
  {
    "input": "input : list = [-1, 0, 0, 0, -5]\noutput : list = [-1, -1, -1, 2, 14]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(mul_n([-1, 0, 0, 0, -5],-1),-2),3),5))",
    "io_inp": [
      -1,
      0,
      0,
      0,
      -5
    ],
    "io_out": [
      -1,
      -1,
      -1,
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(mul_n(input,-1),-2),3),5))"
  },
  {
    "input": "input : list = [1, -4, -4, -1, 5, 5]\noutput : list = [5, 5, 1, -1, -4, -4]",
    "output": "generated_output : list = sort_des([1, -4, -4, -1, 5, 5])",
    "io_inp": [
      1,
      -4,
      -4,
      -1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -1, 1, 1, -4, 3]\noutput : list = [3, -4, 1, 1, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, 1, 1, -4, 3])",
    "io_inp": [
      5,
      -1,
      1,
      1,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      1,
      1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(sort_asc([5, 4])))))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [6, -8, -8]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(reverse([-4, 3, -4]),7),2)))",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(reverse(input),7),2)))"
  },
  {
    "input": "input : list = [-5, 5, -1, -5, -2, -2]\noutput : list = [20, 20, 8, 24, 48, 8]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(sub_n([-5, 5, -1, -5, -2, -2],-2),-5),36)),4)",
    "io_inp": [
      -5,
      5,
      -1,
      -5,
      -2,
      -2
    ],
    "io_out": [
      20,
      20,
      8,
      24,
      48,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(sub_n(input,-2),-5),36)),4)"
  },
  {
    "input": "input : list = [0, 3, 3]\noutput : list = [0, 3, 3]",
    "output": "generated_output : list = sort_asc(mul_n([0, 3, 3],1))",
    "io_inp": [
      0,
      3,
      3
    ],
    "io_out": [
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-5, 2, 2, -3, -5, -4]\noutput : list = [4, 4, -3]",
    "output": "generated_output : list = reverse(sub_n(take([-5, 2, 2, -3, -5, -4],3),-2))",
    "io_inp": [
      -5,
      2,
      2,
      -3,
      -5,
      -4
    ],
    "io_out": [
      4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,3),-2))"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sort_asc([-1, -1, 0])",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, 3, 5, 3, 1]\noutput : list = [2, 23, -1, -7, -1, 5]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n(sub_n([2, -5, 3, 5, 3, 1],1),3),-3),-1),3)",
    "io_inp": [
      2,
      -5,
      3,
      5,
      3,
      1
    ],
    "io_out": [
      2,
      23,
      -1,
      -7,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(sub_n(input,1),3),-3),-1),3)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -2]))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(add_n([-4, 4],-2)),1),-1),-2)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(add_n(input,-2)),1),-1),-2)"
  },
  {
    "input": "input : list = [1, 2, -1, 4]\noutput : list = [55, 35]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(take([1, 2, -1, 4],2),4)),-3),5)",
    "io_inp": [
      1,
      2,
      -1,
      4
    ],
    "io_out": [
      55,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(take(input,2),4)),-3),5)"
  },
  {
    "input": "input : list = [-4, 2, -3, 2, -5]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = take(reverse(drop(sort_des(sub_n([-4, 2, -3, 2, -5],-4)),2)),29)",
    "io_inp": [
      -4,
      2,
      -3,
      2,
      -5
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(drop(sort_des(sub_n(input,-4)),2)),29)"
  },
  {
    "input": "input : list = [-2, 1, 0, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(drop([-2, 1, 0, -2],2),-1)),4))",
    "io_inp": [
      -2,
      1,
      0,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(drop(input,2),-1)),4))"
  },
  {
    "input": "input : list = [-3, -3, 4, -5, 4]\noutput : list = [26, 18, 18, -10, -10]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc([-3, -3, 4, -5, 4]),-4),4),-2)",
    "io_inp": [
      -3,
      -3,
      4,
      -5,
      4
    ],
    "io_out": [
      26,
      18,
      18,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(input),-4),4),-2)"
  },
  {
    "input": "input : list = [1, 5, 0, -5, -5, 2]\noutput : list = [-11]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(mul_n([1, 5, 0, -5, -5, 2],-3),-4),1)),1)",
    "io_inp": [
      1,
      5,
      0,
      -5,
      -5,
      2
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(mul_n(input,-3),-4),1)),1)"
  },
  {
    "input": "input : list = [5, 0, -3, 3]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(take([5, 0, -3, 3],1)))))",
    "io_inp": [
      5,
      0,
      -3,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [5, -19]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse([-1, 5])),-4),5),-1)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      5,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse(input)),-4),5),-1)"
  },
  {
    "input": "input : list = [3, 0, 4, 1]\noutput : list = [0, -3, -9, -12]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_asc([3, 0, 4, 1]))),37),-3)",
    "io_inp": [
      3,
      0,
      4,
      1
    ],
    "io_out": [
      0,
      -3,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(sort_asc(input))),37),-3)"
  },
  {
    "input": "input : list = [5, 0, 5, 1, -4]\noutput : list = [10, 10, 6, 5, 1]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(sort_asc([5, 0, 5, 1, -4])),2),3))",
    "io_inp": [
      5,
      0,
      5,
      1,
      -4
    ],
    "io_out": [
      10,
      10,
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(sort_asc(input)),2),3))"
  },
  {
    "input": "input : list = [-5, -4, -3, -3, -4]\noutput : list = [-4, -3, -3, -2, -2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(reverse([-5, -4, -3, -3, -4])),2),1))",
    "io_inp": [
      -5,
      -4,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(reverse(input)),2),1))"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [-4, 4, -4]",
    "output": "generated_output : list = mul_n([-1, 1, -1],4)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      -4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, 4, 0, -1, 2]\noutput : list = [-6, -18, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(take([-2, 4, 0, -1, 2],3),2)),-3)",
    "io_inp": [
      -2,
      4,
      0,
      -1,
      2
    ],
    "io_out": [
      -6,
      -18,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(input,3),2)),-3)"
  },
  {
    "input": "input : list = [0, -1, -5, -4, -2, 2]\noutput : list = [2, 0, -1, -2, -4, -5]",
    "output": "generated_output : list = sort_des([0, -1, -5, -4, -2, 2])",
    "io_inp": [
      0,
      -1,
      -5,
      -4,
      -2,
      2
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, 1, 0]\noutput : list = [-12, 12, 18, 18]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(mul_n([1, -4, 1, 0],-1),2),-3)),2)",
    "io_inp": [
      1,
      -4,
      1,
      0
    ],
    "io_out": [
      -12,
      12,
      18,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(mul_n(input,-1),2),-3)),2)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse([3, 1])",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, 3, -3, 0]\noutput : list = [-10, -37, 17, 17, -55]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(add_n([-5, 3, 3, -3, 0],-1),-3)),-3),-1)",
    "io_inp": [
      -5,
      3,
      3,
      -3,
      0
    ],
    "io_out": [
      -10,
      -37,
      17,
      17,
      -55
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(add_n(input,-1),-3)),-3),-1)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [5, 1, -5]",
    "output": "generated_output : list = take(reverse([-5, 1, 5]),11)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(input),11)"
  },
  {
    "input": "input : list = [-2, 5, 0, -3, -4, 1]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sort_asc(take(reverse(take(sub_n([-2, 5, 0, -3, -4, 1],-1),2)),6))",
    "io_inp": [
      -2,
      5,
      0,
      -3,
      -4,
      1
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(sub_n(input,-1),2)),6))"
  },
  {
    "input": "input : list = [-2, -1, 4, -2]\noutput : list = [-3, -4]",
    "output": "generated_output : list = take(reverse(sub_n(take([-2, -1, 4, -2],2),2)),7)",
    "io_inp": [
      -2,
      -1,
      4,
      -2
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(input,2),2)),7)"
  },
  {
    "input": "input : list = [-3, 0, 3, 1, 3, 4]\noutput : list = [-2, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(take([-3, 0, 3, 1, 3, 4],4)),1)))",
    "io_inp": [
      -3,
      0,
      3,
      1,
      3,
      4
    ],
    "io_out": [
      -2,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(take(input,4)),1)))"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [-2, -3, -4]",
    "output": "generated_output : list = reverse(reverse([-2, -3, -4]))",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -2, -1]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(add_n(sort_des(take([4, -2, -1],1)),-5),37),9)",
    "io_inp": [
      4,
      -2,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(take(input,1)),-5),37),9)"
  },
  {
    "input": "input : list = [-2, -4, -5]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = sub_n(add_n(add_n(reverse(mul_n([-2, -4, -5],1)),3),-3),-1)",
    "io_inp": [
      -2,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(reverse(mul_n(input,1)),3),-3),-1)"
  },
  {
    "input": "input : list = [-3, -4, -5, 1, -1]\noutput : list = [-1, -3, -5, -6, -7]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(add_n([-3, -4, -5, 1, -1],-2)),36)))",
    "io_inp": [
      -3,
      -4,
      -5,
      1,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(add_n(input,-2)),36)))"
  },
  {
    "input": "input : list = [4, 4, -3, -2]\noutput : list = [-12, -15, 6, 6]",
    "output": "generated_output : list = reverse(mul_n(sub_n([4, 4, -3, -2],2),3))",
    "io_inp": [
      4,
      4,
      -3,
      -2
    ],
    "io_out": [
      -12,
      -15,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,2),3))"
  },
  {
    "input": "input : list = [0, 4, -4, -3, -5]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(take([0, 4, -4, -3, -5],3)),-1)),9)",
    "io_inp": [
      0,
      4,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(take(input,3)),-1)),9)"
  },
  {
    "input": "input : list = [4, 2, -3, 0, 1, -5]\noutput : list = [-6, -4, -1, 0, 1, 3]",
    "output": "generated_output : list = add_n(sort_asc([4, 2, -3, 0, 1, -5]),-1)",
    "io_inp": [
      4,
      2,
      -3,
      0,
      1,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [3, 2, -2, 5]\noutput : list = [-3, -5, -6, -10]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(sort_des([3, 2, -2, 5]))),-3),-5)",
    "io_inp": [
      3,
      2,
      -2,
      5
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(sort_des(input))),-3),-5)"
  },
  {
    "input": "input : list = [-3, 2, 3, 5, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse(take([-3, 2, 3, 5, -5],2)),2))",
    "io_inp": [
      -3,
      2,
      3,
      5,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(input,2)),2))"
  },
  {
    "input": "input : list = [0, 2, 5, 0, -5]\noutput : list = [-10, 0, 0, 4, 10]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n(sort_asc([0, 2, 5, 0, -5]),2))))",
    "io_inp": [
      0,
      2,
      5,
      0,
      -5
    ],
    "io_out": [
      -10,
      0,
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(sub_n([-1, -1, 0],1),3),-1)))",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(sub_n(input,1),3),-1)))"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [-2, 0, 0]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_asc([-4, -2, -2])),8),-2))",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sort_asc(input)),8),-2))"
  },
  {
    "input": "input : list = [0, -3, -3, -4, 4, 1]\noutput : list = [-12, -9, -9]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(sort_asc([0, -3, -3, -4, 4, 1]))),3),3)",
    "io_inp": [
      0,
      -3,
      -3,
      -4,
      4,
      1
    ],
    "io_out": [
      -12,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(sort_asc(input))),3),3)"
  },
  {
    "input": "input : list = [3, -1, -3, 3, -4]\noutput : list = [-9, 3, 9, -9, 12]",
    "output": "generated_output : list = mul_n([3, -1, -3, 3, -4],-3)",
    "io_inp": [
      3,
      -1,
      -3,
      3,
      -4
    ],
    "io_out": [
      -9,
      3,
      9,
      -9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, 4, 5, 5]\noutput : list = [9, 8, 9, 9]",
    "output": "generated_output : list = sub_n(sub_n([5, 4, 5, 5],1),-5)",
    "io_inp": [
      5,
      4,
      5,
      5
    ],
    "io_out": [
      9,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [10, 2]",
    "output": "generated_output : list = mul_n([-5, -1],-2)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [7, 6, 6]",
    "output": "generated_output : list = sub_n([5, 4, 4],-2)",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n([4, -4],2)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [1, -3, -5, 5, -3, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(take([1, -3, -5, 5, -3, 5],1),4),10)))",
    "io_inp": [
      1,
      -3,
      -5,
      5,
      -3,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(take(input,1),4),10)))"
  },
  {
    "input": "input : list = [1, 4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(reverse(drop([1, 4, 3],1)))",
    "io_inp": [
      1,
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, -5, -4, 1, 3, -2]\noutput : list = [-9, -10, -9, -4, -2, -7]",
    "output": "generated_output : list = mul_n(reverse(add_n(reverse([-4, -5, -4, 1, 3, -2]),-5)),1)",
    "io_inp": [
      -4,
      -5,
      -4,
      1,
      3,
      -2
    ],
    "io_out": [
      -9,
      -10,
      -9,
      -4,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(reverse(input),-5)),1)"
  },
  {
    "input": "input : list = [-5, 2, 0, -4, -1]\noutput : list = [-5, -4, -1, 0, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc([-5, 2, 0, -4, -1]))),43)",
    "io_inp": [
      -5,
      2,
      0,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(input))),43)"
  },
  {
    "input": "input : list = [1, 3, 1, -3, -3]\noutput : list = [-7, -7, -3, -3, -1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des([1, 3, 1, -3, -3]),4)))",
    "io_inp": [
      1,
      3,
      1,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(input),4)))"
  },
  {
    "input": "input : list = [4, 4, -3, 5]\noutput : list = [1, -6, 2]",
    "output": "generated_output : list = add_n(drop([4, 4, -3, 5],1),-3)",
    "io_inp": [
      4,
      4,
      -3,
      5
    ],
    "io_out": [
      1,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [1, 1, -5, 4, 0, 2]\noutput : list = [-5, 4, 0, 2]",
    "output": "generated_output : list = drop([1, 1, -5, 4, 0, 2],2)",
    "io_inp": [
      1,
      1,
      -5,
      4,
      0,
      2
    ],
    "io_out": [
      -5,
      4,
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 1, 3, 5, 5, 0]\noutput : list = [-3, -18, -18, -12, -6, 12]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-5, 1, 3, 5, 5, 0],-3),3))",
    "io_inp": [
      -5,
      1,
      3,
      5,
      5,
      0
    ],
    "io_out": [
      -3,
      -18,
      -18,
      -12,
      -6,
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-3),3))"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [-9, 9, 12]",
    "output": "generated_output : list = reverse(mul_n([4, 3, -3],3))",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      -9,
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse([1, 2])",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [-2, -2, -5]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(add_n([-3, 0, 0],5),-2),5),1))",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(add_n(input,5),-2),5),1))"
  },
  {
    "input": "input : list = [-5, 5, -1, -4, -5]\noutput : list = [-7, -7, -6, -3, 3]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(sub_n([-5, 5, -1, -4, -5],-2),-3),-1)),14)",
    "io_inp": [
      -5,
      5,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(sub_n(input,-2),-3),-1)),14)"
  },
  {
    "input": "input : list = [-2, -3, 2, -1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take(take(drop([-2, -3, 2, -1, 3],3),23),6)",
    "io_inp": [
      -2,
      -3,
      2,
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(take(drop(input,3),23),6)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-2, -11]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(sub_n([-4, 5],-1)),-5),-1),40)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -2,
      -11
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(sub_n(input,-1)),-5),-1),40)"
  },
  {
    "input": "input : list = [-4, -1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = drop([-4, -1, 4],1)",
    "io_inp": [
      -4,
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_des([-2, 3, -1])))))",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 4, 3, 4, -3]\noutput : list = [7, 6, 7, 0]",
    "output": "generated_output : list = sub_n(drop([-5, 4, 3, 4, -3],1),-3)",
    "io_inp": [
      -5,
      4,
      3,
      4,
      -3
    ],
    "io_out": [
      7,
      6,
      7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [-3, 1, -2, -1, -5]\noutput : list = [-3, -5, -6, -7, -9]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_des([-3, 1, -2, -1, -5]),4))))",
    "io_inp": [
      -3,
      1,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-3, -5, 4, 0, -1, -2]\noutput : list = [1, -4, -9]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(drop([-3, -5, 4, 0, -1, -2],3),5),36),1),-1)",
    "io_inp": [
      -3,
      -5,
      4,
      0,
      -1,
      -2
    ],
    "io_out": [
      1,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(drop(input,3),5),36),1),-1)"
  },
  {
    "input": "input : list = [-4, -3, -3, 4, -2, 1]\noutput : list = [4, 1, -2, -3, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(add_n([-4, -3, -3, 4, -2, 1],-4)))),4)",
    "io_inp": [
      -4,
      -3,
      -3,
      4,
      -2,
      1
    ],
    "io_out": [
      4,
      1,
      -2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(add_n(input,-4)))),4)"
  },
  {
    "input": "input : list = [-3, -4, -4, -5]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(sort_asc([-3, -4, -4, -5])),3),-3))",
    "io_inp": [
      -3,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(sort_asc(input)),3),-3))"
  },
  {
    "input": "input : list = [-4, 5, 1, -4, 3]\noutput : list = [46, -44, -4, 46, -24]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(mul_n([-4, 5, 1, -4, 3],5),-3),-2)))",
    "io_inp": [
      -4,
      5,
      1,
      -4,
      3
    ],
    "io_out": [
      46,
      -44,
      -4,
      46,
      -24
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(mul_n(input,5),-3),-2)))"
  },
  {
    "input": "input : list = [5, 3, -3]\noutput : list = [-3, -5, -11]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(add_n([5, 3, -3],-3),6)),-5))",
    "io_inp": [
      5,
      3,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(add_n(input,-3),6)),-5))"
  },
  {
    "input": "input : list = [3, -5, 4, 0]\noutput : list = [12, 9, 0, -15]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc([3, -5, 4, 0]))),3)",
    "io_inp": [
      3,
      -5,
      4,
      0
    ],
    "io_out": [
      12,
      9,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(input))),3)"
  },
  {
    "input": "input : list = [3, 2, 1, -4, 1]\noutput : list = [0, 10, 10, 12, 14]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(reverse([3, 2, 1, -4, 1]),-4))),2)",
    "io_inp": [
      3,
      2,
      1,
      -4,
      1
    ],
    "io_out": [
      0,
      10,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(reverse(input),-4))),2)"
  },
  {
    "input": "input : list = [0, 1, -4, -1, 5]\noutput : list = [5, 8, 9, 10, 14]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([0, 1, -4, -1, 5]),5),-4)",
    "io_inp": [
      0,
      1,
      -4,
      -1,
      5
    ],
    "io_out": [
      5,
      8,
      9,
      10,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),5),-4)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [5, 4, 4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([2, 3, 2]),-2))",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [0, -1, -5, 3]\noutput : list = [-5, -1, 0, 3]",
    "output": "generated_output : list = take(take(sort_asc(reverse(sort_asc([0, -1, -5, 3]))),35),34)",
    "io_inp": [
      0,
      -1,
      -5,
      3
    ],
    "io_out": [
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(sort_asc(input))),35),34)"
  },
  {
    "input": "input : list = [2, -4, 5, -1, 4, 2]\noutput : list = [3, -3, 6]",
    "output": "generated_output : list = sub_n(reverse(take(drop(reverse([2, -4, 5, -1, 4, 2]),3),27)),-1)",
    "io_inp": [
      2,
      -4,
      5,
      -1,
      4,
      2
    ],
    "io_out": [
      3,
      -3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(drop(reverse(input),3),27)),-1)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(take([-1, 5, 4],1))",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, 2, 4, -5]\noutput : list = [-4, 1, 3, -6]",
    "output": "generated_output : list = sub_n([-3, 2, 4, -5],1)",
    "io_inp": [
      -3,
      2,
      4,
      -5
    ],
    "io_out": [
      -4,
      1,
      3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, -1, 0, -1, 1]\noutput : list = [1, 1, 2, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(reverse([2, -1, 0, -1, 1])),21)),2)",
    "io_inp": [
      2,
      -1,
      0,
      -1,
      1
    ],
    "io_out": [
      1,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(reverse(input)),21)),2)"
  },
  {
    "input": "input : list = [-2, 5, 5, 0, 0]\noutput : list = [-21, 9, 9, 84, 84]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(mul_n([-2, 5, 5, 0, 0],-5),3))),-3)",
    "io_inp": [
      -2,
      5,
      5,
      0,
      0
    ],
    "io_out": [
      -21,
      9,
      9,
      84,
      84
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(mul_n(input,-5),3))),-3)"
  },
  {
    "input": "input : list = [-4, 1, 4, -1, -5]\noutput : list = [-7, -2, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(take([-4, 1, 4, -1, -5],3)))),3)",
    "io_inp": [
      -4,
      1,
      4,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(take(input,3)))),3)"
  },
  {
    "input": "input : list = [-4, -2, -3, -5]\noutput : list = [-5, -4, -3, -2]",
    "output": "generated_output : list = sort_asc([-4, -2, -3, -5])",
    "io_inp": [
      -4,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, -1, -1, 2, -2]\noutput : list = [-7, 0, -4, -4, -1, -5]",
    "output": "generated_output : list = take(add_n([-4, 3, -1, -1, 2, -2],-3),6)",
    "io_inp": [
      -4,
      3,
      -1,
      -1,
      2,
      -2
    ],
    "io_out": [
      -7,
      0,
      -4,
      -4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),6)"
  },
  {
    "input": "input : list = [4, 3, 0, -2, -5]\noutput : list = [-15, -6, 0, 9, 12]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sort_des([4, 3, 0, -2, -5])),11),19),3)",
    "io_inp": [
      4,
      3,
      0,
      -2,
      -5
    ],
    "io_out": [
      -15,
      -6,
      0,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sort_des(input)),11),19),3)"
  },
  {
    "input": "input : list = [2, 3, -4, 1]\noutput : list = [0, -5, 2, 1]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(add_n([2, 3, -4, 1],-4)),-1),-2),2)",
    "io_inp": [
      2,
      3,
      -4,
      1
    ],
    "io_out": [
      0,
      -5,
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(add_n(input,-4)),-1),-2),2)"
  },
  {
    "input": "input : list = [5, 0, 5, 2, -4, 1]\noutput : list = [-9, -5, -4, -3, 0, 0]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(add_n([5, 0, 5, 2, -4, 1],-1)),-4)),14)",
    "io_inp": [
      5,
      0,
      5,
      2,
      -4,
      1
    ],
    "io_out": [
      -9,
      -5,
      -4,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(add_n(input,-1)),-4)),14)"
  },
  {
    "input": "input : list = [-1, 3, 0, -3, 3]\noutput : list = [9, 9, 3, 1, -3]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc([-1, 3, 0, -3, 3]),2)),-3)",
    "io_inp": [
      -1,
      3,
      0,
      -3,
      3
    ],
    "io_out": [
      9,
      9,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(input),2)),-3)"
  },
  {
    "input": "input : list = [3, 1, 0, -5, 1, -5]\noutput : list = [8, 6, 6, 5, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(reverse([3, 1, 0, -5, 1, -5]),1))),-4)",
    "io_inp": [
      3,
      1,
      0,
      -5,
      1,
      -5
    ],
    "io_out": [
      8,
      6,
      6,
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(reverse(input),1))),-4)"
  },
  {
    "input": "input : list = [0, -2, -5, 1]\noutput : list = [-1, -2, -4, -7]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_asc([0, -2, -5, 1]),2),4),1))",
    "io_inp": [
      0,
      -2,
      -5,
      1
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(sort_asc(input),2),4),1))"
  },
  {
    "input": "input : list = [1, -5, 1, -3, 4]\noutput : list = [48, 36, 36, 20, 12]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sub_n([1, -5, 1, -3, 4],-4),-5),4),4))",
    "io_inp": [
      1,
      -5,
      1,
      -3,
      4
    ],
    "io_out": [
      48,
      36,
      36,
      20,
      12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sub_n(input,-4),-5),4),4))"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [-5, 0, 3]",
    "output": "generated_output : list = reverse([3, 0, -5])",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 1, 4, -3, -4, -3]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sub_n(drop([4, 1, 4, -3, -4, -3],4),-2)",
    "io_inp": [
      4,
      1,
      4,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),-2)"
  },
  {
    "input": "input : list = [1, -2, 4, 3]\noutput : list = [-3, 6, 12, 15]",
    "output": "generated_output : list = add_n(take(take(mul_n(sort_asc([1, -2, 4, 3]),3),13),36),3)",
    "io_inp": [
      1,
      -2,
      4,
      3
    ],
    "io_out": [
      -3,
      6,
      12,
      15
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(sort_asc(input),3),13),36),3)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([2, -4],3)))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,3)))"
  },
  {
    "input": "input : list = [-4, -1, 1, 3]\noutput : list = [-4, -1, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(sort_des([-4, -1, 1, 3]),14),1)))",
    "io_inp": [
      -4,
      -1,
      1,
      3
    ],
    "io_out": [
      -4,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(sort_des(input),14),1)))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(mul_n([4, 4],-1)))))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [-1, 6, 5]",
    "output": "generated_output : list = add_n([-3, 4, 3],2)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      -1,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-5, 1, -1]\noutput : list = [51]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(take([-5, 1, -1],1),3),-2),-3))",
    "io_inp": [
      -5,
      1,
      -1
    ],
    "io_out": [
      51
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(take(input,1),3),-2),-3))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sub_n([2, -4],4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, 3, 5]\noutput : list = [0, 1, 2]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(add_n([4, 3, 5],-4),3)),1),3)",
    "io_inp": [
      4,
      3,
      5
    ],
    "io_out": [
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(add_n(input,-4),3)),1),3)"
  },
  {
    "input": "input : list = [-2, -3, 5, 4]\noutput : list = [-53, -48, -18, -13]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(sort_des([-2, -3, 5, 4]),5),28),-5),3)",
    "io_inp": [
      -2,
      -3,
      5,
      4
    ],
    "io_out": [
      -53,
      -48,
      -18,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(sort_des(input),5),28),-5),3)"
  },
  {
    "input": "input : list = [-4, -4, 2, -1, -3]\noutput : list = [-10, 5, 15, 20, 20]",
    "output": "generated_output : list = mul_n(sort_des([-4, -4, 2, -1, -3]),-5)",
    "io_inp": [
      -4,
      -4,
      2,
      -1,
      -3
    ],
    "io_out": [
      -10,
      5,
      15,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(sort_asc([5, 5]),3),-4),2),1)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(sort_asc(input),3),-4),2),1)"
  },
  {
    "input": "input : list = [3, -1, -4, 5, 2, 4]\noutput : list = [20, 5, -10, -15, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(mul_n([3, -1, -4, 5, 2, 4],-5),7))))",
    "io_inp": [
      3,
      -1,
      -4,
      5,
      2,
      4
    ],
    "io_out": [
      20,
      5,
      -10,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(mul_n(input,-5),7))))"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(take([-5, -3, 0],1))),30),-2)",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(take(input,1))),30),-2)"
  },
  {
    "input": "input : list = [4, 1, -4, 0]\noutput : list = [-2, 2, 3, 6]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(reverse([4, 1, -4, 0])))),2)",
    "io_inp": [
      4,
      1,
      -4,
      0
    ],
    "io_out": [
      -2,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(reverse(input)))),2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [2, 7]",
    "output": "generated_output : list = sort_asc(sub_n([-1, 4],-3))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-4, 4, 4, 3, -2, 1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(take([-4, 4, 4, 3, -2, 1],1),-4),4),4))",
    "io_inp": [
      -4,
      4,
      4,
      3,
      -2,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(take(input,1),-4),4),4))"
  },
  {
    "input": "input : list = [1, -1, -2, -3]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_des(mul_n(take([1, -1, -2, -3],1),-1)),25)",
    "io_inp": [
      1,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(input,1),-1)),25)"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n(drop([4, 2, 0],1),-3)",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse([-2, -5])",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -1, -3, 1]\noutput : list = [3, 2, -1, -3, -5]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(sort_des([4, 5, -1, -3, 1]),-3),-5)))",
    "io_inp": [
      4,
      5,
      -1,
      -3,
      1
    ],
    "io_out": [
      3,
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(sort_des(input),-3),-5)))"
  },
  {
    "input": "input : list = [-4, 3, 1, -2]\noutput : list = [1, -1, -4, -6]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(add_n([-4, 3, 1, -2],-2),10))))",
    "io_inp": [
      -4,
      3,
      1,
      -2
    ],
    "io_out": [
      1,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(add_n(input,-2),10))))"
  },
  {
    "input": "input : list = [-5, 0, 2, 3]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 0, 2, 3],1)",
    "io_inp": [
      -5,
      0,
      2,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -1, 5, 4, 1, 4]\noutput : list = [-8, -2, -8, -10, 2, -6]",
    "output": "generated_output : list = mul_n(reverse([3, -1, 5, 4, 1, 4]),-2)",
    "io_inp": [
      3,
      -1,
      5,
      4,
      1,
      4
    ],
    "io_out": [
      -8,
      -2,
      -8,
      -10,
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [5, -1, -4]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(drop([5, -1, -4],1),3),1),3))",
    "io_inp": [
      5,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(drop(input,1),3),1),3))"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [5, 5, 10]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc([-1, -2, -1]),-5)))",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      5,
      5,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(input),-5)))"
  },
  {
    "input": "input : list = [0, -5, -1, -1]\noutput : list = [-3, -3, -7, -2]",
    "output": "generated_output : list = reverse(add_n([0, -5, -1, -1],-2))",
    "io_inp": [
      0,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -4, 2, 2, 5]\noutput : list = [10, 20, -10, -10, -25]",
    "output": "generated_output : list = mul_n([-2, -4, 2, 2, 5],-5)",
    "io_inp": [
      -2,
      -4,
      2,
      2,
      5
    ],
    "io_out": [
      10,
      20,
      -10,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, -5, 1, -1]\noutput : list = [2, 4, 6, 10]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(mul_n([3, -5, 1, -1],-1)),-5),24))",
    "io_inp": [
      3,
      -5,
      1,
      -1
    ],
    "io_out": [
      2,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(mul_n(input,-1)),-5),24))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = reverse(reverse([3, -2]))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, 3, -5, 4, 1, 2]\noutput : list = [-4, -4, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sort_asc([-5, 3, -5, 4, 1, 2])),1)))",
    "io_inp": [
      -5,
      3,
      -5,
      4,
      1,
      2
    ],
    "io_out": [
      -4,
      -4,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [-1, -5, -5, 4, 4, -3]\noutput : list = [-4, -8, -8, 1, 1, -6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(add_n([-1, -5, -5, 4, 4, -3],-2),-5),3),-2),1)",
    "io_inp": [
      -1,
      -5,
      -5,
      4,
      4,
      -3
    ],
    "io_out": [
      -4,
      -8,
      -8,
      1,
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(add_n(input,-2),-5),3),-2),1)"
  },
  {
    "input": "input : list = [-5, 5, -1, -2, -2, 5]\noutput : list = [4, -3, -3, -2, 4, -6]",
    "output": "generated_output : list = add_n(reverse([-5, 5, -1, -2, -2, 5]),-1)",
    "io_inp": [
      -5,
      5,
      -1,
      -2,
      -2,
      5
    ],
    "io_out": [
      4,
      -3,
      -3,
      -2,
      4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [1, -1, 4, 1, -3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -1, 4, 1, -3],1)",
    "io_inp": [
      1,
      -1,
      4,
      1,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -5, 1]\noutput : list = [-4, -10, -10]",
    "output": "generated_output : list = add_n(sort_des([-5, -5, 1]),-5)",
    "io_inp": [
      -5,
      -5,
      1
    ],
    "io_out": [
      -4,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-3, 1, 2, -2]\noutput : list = [2, 1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(reverse([-3, 1, 2, -2])))))",
    "io_inp": [
      -3,
      1,
      2,
      -2
    ],
    "io_out": [
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -4, -3],1)",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 2, 3, -3]\noutput : list = [-3, -2, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(sort_des([-4, 2, 3, -3]),21),-1),11))",
    "io_inp": [
      -4,
      2,
      3,
      -3
    ],
    "io_out": [
      -3,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(sort_des(input),21),-1),11))"
  },
  {
    "input": "input : list = [-1, -2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(take([-1, -2, 2],1)),16),-4),-4)",
    "io_inp": [
      -1,
      -2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(take(input,1)),16),-4),-4)"
  },
  {
    "input": "input : list = [1, 0, 0, 0]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n(sort_asc(take([1, 0, 0, 0],2)),4)",
    "io_inp": [
      1,
      0,
      0,
      0
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,2)),4)"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(take([0, 5, 2],1),-4)),3),-2)",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(take(input,1),-4)),3),-2)"
  },
  {
    "input": "input : list = [0, 4, 4]\noutput : list = [4, 8, 8]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des([0, 4, 4]),1)),-3)",
    "io_inp": [
      0,
      4,
      4
    ],
    "io_out": [
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(input),1)),-3)"
  },
  {
    "input": "input : list = [4, 4, 1, -5, -3, -1]\noutput : list = [40, 40, 25, -5, 5, 15]",
    "output": "generated_output : list = mul_n(sub_n([4, 4, 1, -5, -3, -1],-4),5)",
    "io_inp": [
      4,
      4,
      1,
      -5,
      -3,
      -1
    ],
    "io_out": [
      40,
      40,
      25,
      -5,
      5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),5)"
  },
  {
    "input": "input : list = [-3, -4, -4, 1, 3, 3]\noutput : list = [-4, -4, -3, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([-3, -4, -4, 1, 3, 3])",
    "io_inp": [
      -3,
      -4,
      -4,
      1,
      3,
      3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(sort_asc([0, 1]))),1))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [1, -1, 0, 1]\noutput : list = [-4, 4, 0, -4]",
    "output": "generated_output : list = mul_n([1, -1, 0, 1],-4)",
    "io_inp": [
      1,
      -1,
      0,
      1
    ],
    "io_out": [
      -4,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 0, -2, 5, 0, 0]\noutput : list = [-29, -4, -4, -4, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(drop([-2, 0, -2, 5, 0, 0],1),-5),25)),-4)",
    "io_inp": [
      -2,
      0,
      -2,
      5,
      0,
      0
    ],
    "io_out": [
      -29,
      -4,
      -4,
      -4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(drop(input,1),-5),25)),-4)"
  },
  {
    "input": "input : list = [-5, 1, -4, 2, -4]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, 1, -4, 2, -4],1))",
    "io_inp": [
      -5,
      1,
      -4,
      2,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [2, 0, -2, 3, -5]\noutput : list = [46, 31, 1, -29, -74]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(mul_n([2, 0, -2, 3, -5],-5)),-3),6),-1)",
    "io_inp": [
      2,
      0,
      -2,
      3,
      -5
    ],
    "io_out": [
      46,
      31,
      1,
      -29,
      -74
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(mul_n(input,-5)),-3),6),-1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = mul_n(reverse([3, 5]),1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([5, -2, 5])))",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [-4, 4, 16]",
    "output": "generated_output : list = mul_n(sort_des([1, -4, -1]),-4)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      -4,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, -1, 1, 4]\noutput : list = [4, 1, 1, -1]",
    "output": "generated_output : list = sort_des([1, -1, 1, 4])",
    "io_inp": [
      1,
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, 5]\noutput : list = [-7, 1, 1]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(sort_des([5, -3, 5]),1)),3),10)",
    "io_inp": [
      5,
      -3,
      5
    ],
    "io_out": [
      -7,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(sort_des(input),1)),3),10)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(sort_asc([5, 5])),-4)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-5, -4, -5, 4, -2]\noutput : list = [15, 19, -17]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(drop([-5, -4, -5, 4, -2],1),3),-4),-2),1)",
    "io_inp": [
      -5,
      -4,
      -5,
      4,
      -2
    ],
    "io_out": [
      15,
      19,
      -17
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(drop(input,1),3),-4),-2),1)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [30, 30, 10]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sub_n([0, 0, -4],-5),-1),10),33),5)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      30,
      30,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sub_n(input,-5),-1),10),33),5)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse([0, 5]))))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [3, 3, 0, 0, 1]\noutput : list = [0, 0, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, 3, 0, 0, 1]))",
    "io_inp": [
      3,
      3,
      0,
      0,
      1
    ],
    "io_out": [
      0,
      0,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 0, -3, 3, 0]\noutput : list = [-8, -5, -5, -5, -2]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(reverse([0, 0, -3, 3, 0])),30),5),49)",
    "io_inp": [
      0,
      0,
      -3,
      3,
      0
    ],
    "io_out": [
      -8,
      -5,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(reverse(input)),30),5),49)"
  },
  {
    "input": "input : list = [0, -4, 5, 3]\noutput : list = [0, -8, 10, 6]",
    "output": "generated_output : list = take(mul_n([0, -4, 5, 3],2),13)",
    "io_inp": [
      0,
      -4,
      5,
      3
    ],
    "io_out": [
      0,
      -8,
      10,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),13)"
  },
  {
    "input": "input : list = [-5, -4, -3, -2, 0]\noutput : list = [-35, -30, -25, -20, -10]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(add_n([-5, -4, -3, -2, 0],-2)))),5)",
    "io_inp": [
      -5,
      -4,
      -3,
      -2,
      0
    ],
    "io_out": [
      -35,
      -30,
      -25,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(add_n(input,-2)))),5)"
  },
  {
    "input": "input : list = [-5, 4, -4, 4, -4]\noutput : list = [4, -4, 4, -4]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n(drop([-5, 4, -4, 4, -4],1),-3),1),36),-4)",
    "io_inp": [
      -5,
      4,
      -4,
      4,
      -4
    ],
    "io_out": [
      4,
      -4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(drop(input,1),-3),1),36),-4)"
  },
  {
    "input": "input : list = [-1, -1, 3, 0]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(drop([-1, -1, 3, 0],1),-1),3)),1)",
    "io_inp": [
      -1,
      -1,
      3,
      0
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(drop(input,1),-1),3)),1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-2, 2]",
    "output": "generated_output : list = add_n([1, 5],-3)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, 5, 2, 5, -5]\noutput : list = [-7, 0, 1, 3, 3]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(sort_des([3, 5, 2, 5, -5]),-1),25),3))",
    "io_inp": [
      3,
      5,
      2,
      5,
      -5
    ],
    "io_out": [
      -7,
      0,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(sort_des(input),-1),25),3))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-4, 1]),-3),2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-3),2)"
  },
  {
    "input": "input : list = [-3, 0, -4]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = take(sort_des([-3, 0, -4]),10)",
    "io_inp": [
      -3,
      0,
      -4
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),10)"
  },
  {
    "input": "input : list = [0, 2, -4]\noutput : list = [-4, 2, 0]",
    "output": "generated_output : list = reverse([0, 2, -4])",
    "io_inp": [
      0,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [6, 1, 1]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(sort_asc([-2, 3, -2]),-1)),1),3)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      6,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(sort_asc(input),-1)),1),3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [10, 35]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n([-3, 2],-5),5)))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      10,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(input,-5),5)))"
  },
  {
    "input": "input : list = [-5, 3, -2, 5]\noutput : list = [-8, -5, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([-5, 3, -2, 5])),-3)",
    "io_inp": [
      -5,
      3,
      -2,
      5
    ],
    "io_out": [
      -8,
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [-3, -2, -5, 3, -3]\noutput : list = [7, -9, 3]",
    "output": "generated_output : list = add_n(mul_n(drop([-3, -2, -5, 3, -3],2),-2),-3)",
    "io_inp": [
      -3,
      -2,
      -5,
      3,
      -3
    ],
    "io_out": [
      7,
      -9,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,2),-2),-3)"
  },
  {
    "input": "input : list = [4, 2, -3, 1, -2]\noutput : list = [4, 2, 1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse([4, 2, -3, 1, -2]))",
    "io_inp": [
      4,
      2,
      -3,
      1,
      -2
    ],
    "io_out": [
      4,
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [0, -2, -2, 5, -2, -5]\noutput : list = [5, 3, 3, 10]",
    "output": "generated_output : list = add_n(take([0, -2, -2, 5, -2, -5],4),5)",
    "io_inp": [
      0,
      -2,
      -2,
      5,
      -2,
      -5
    ],
    "io_out": [
      5,
      3,
      3,
      10
    ],
    "output_masked": "generated_output : list = add_n(take(input,4),5)"
  },
  {
    "input": "input : list = [-3, 4, -3, -5, 0, 4]\noutput : list = [4, 0, -5, -3, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, -3, -5, 0, 4])",
    "io_inp": [
      -3,
      4,
      -3,
      -5,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -5,
      -3,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(sort_des([-4, -4]))),10))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(sort_des(input))),10))"
  },
  {
    "input": "input : list = [4, 1, -5, -4, 1]\noutput : list = [-6, -5, 0]",
    "output": "generated_output : list = sort_asc(drop(add_n([4, 1, -5, -4, 1],-1),2))",
    "io_inp": [
      4,
      1,
      -5,
      -4,
      1
    ],
    "io_out": [
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(input,-1),2))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [7, -2]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(reverse([4, -5]),1),2),-1))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(reverse(input),1),2),-1))"
  },
  {
    "input": "input : list = [0, -1, -1, 3, 1, -4]\noutput : list = [22, 26, 26, 10, 18, 38]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(add_n([0, -1, -1, 3, 1, -4],-5),-4),2),-3),-3)",
    "io_inp": [
      0,
      -1,
      -1,
      3,
      1,
      -4
    ],
    "io_out": [
      22,
      26,
      26,
      10,
      18,
      38
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(add_n(input,-5),-4),2),-3),-3)"
  },
  {
    "input": "input : list = [-5, -2, 4, 3, -4]\noutput : list = [-5, -4, -2, 3, 4]",
    "output": "generated_output : list = take(reverse(sort_des([-5, -2, 4, 3, -4])),25)",
    "io_inp": [
      -5,
      -2,
      4,
      3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),25)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [9, -1]",
    "output": "generated_output : list = take(sub_n(sort_des(take(sort_des([-5, 5]),9)),-4),3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      9,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(sort_des(input),9)),-4),3)"
  },
  {
    "input": "input : list = [-3, 5, 3, -1, -4, -5]\noutput : list = [-3, -1, 3, 5, 6, 7]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(sort_des([-3, 5, 3, -1, -4, -5]))),2),-1)",
    "io_inp": [
      -3,
      5,
      3,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -3,
      -1,
      3,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(sort_des(input))),2),-1)"
  },
  {
    "input": "input : list = [-1, 1, 4, 3, -3, 4]\noutput : list = [4, 4, 3, 1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sort_des([-1, 1, 4, 3, -3, 4])))))",
    "io_inp": [
      -1,
      1,
      4,
      3,
      -3,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 4, 4]\noutput : list = [4, 4, -5]",
    "output": "generated_output : list = sort_des([-5, 4, 4])",
    "io_inp": [
      -5,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, 4, 0, 3]\noutput : list = [-4, 0, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, 4, 4, 0, 3]))",
    "io_inp": [
      -4,
      4,
      4,
      0,
      3
    ],
    "io_out": [
      -4,
      0,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -3, -3, -5, 4]\noutput : list = [4, -5, -3, -3, -4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(reverse([-4, -3, -3, -5, 4])),-5)),5)",
    "io_inp": [
      -4,
      -3,
      -3,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(reverse(input)),-5)),5)"
  },
  {
    "input": "input : list = [-4, 2, 0, 5, -4, 5]\noutput : list = [-6, -2, 3, 3]",
    "output": "generated_output : list = sort_asc(drop(add_n([-4, 2, 0, 5, -4, 5],-2),2))",
    "io_inp": [
      -4,
      2,
      0,
      5,
      -4,
      5
    ],
    "io_out": [
      -6,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(input,-2),2))"
  },
  {
    "input": "input : list = [-1, -2, 4, 1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(take([-1, -2, 4, 1],1),19),3)))",
    "io_inp": [
      -1,
      -2,
      4,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(take(input,1),19),3)))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sub_n([0, 1],3)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, -3, 5, 3, 2, -2]\noutput : list = [-2, 2, 3, 5, -3, 5]",
    "output": "generated_output : list = reverse([5, -3, 5, 3, 2, -2])",
    "io_inp": [
      5,
      -3,
      5,
      3,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      3,
      5,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, 3, 3, 5, 0]\noutput : list = [10, 6, 6, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(drop([-2, -4, 3, 3, 5, 0],2)),2)))",
    "io_inp": [
      -2,
      -4,
      3,
      3,
      5,
      0
    ],
    "io_out": [
      10,
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(drop(input,2)),2)))"
  },
  {
    "input": "input : list = [-5, -5, 0, -3, 4, -3]\noutput : list = [-10, -10, -8, -8, -5, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(sort_asc([-5, -5, 0, -3, 4, -3]),22),5),38))",
    "io_inp": [
      -5,
      -5,
      0,
      -3,
      4,
      -3
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -8,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(sort_asc(input),22),5),38))"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [-11, -2, -11]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(add_n([-5, 4, -5],1),3),1),-4),35)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      -11,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(add_n(input,1),3),1),-4),35)"
  },
  {
    "input": "input : list = [4, 3, 1]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = reverse([4, 3, 1])",
    "io_inp": [
      4,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, 5]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(take([-2, -3, 5],1),14),3)),2)",
    "io_inp": [
      -2,
      -3,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(take(input,1),14),3)),2)"
  },
  {
    "input": "input : list = [3, 5, 4, 3, 1]\noutput : list = [3, 5, 5, 6, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(reverse([3, 5, 4, 3, 1]),-2))))",
    "io_inp": [
      3,
      5,
      4,
      3,
      1
    ],
    "io_out": [
      3,
      5,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc([1, 2]))),-4),-5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc(input))),-4),-5)"
  },
  {
    "input": "input : list = [-4, -3, -4, -2]\noutput : list = [32, 32, 24, 16]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n([-4, -3, -4, -2],2),-4)))",
    "io_inp": [
      -4,
      -3,
      -4,
      -2
    ],
    "io_out": [
      32,
      32,
      24,
      16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(input,2),-4)))"
  },
  {
    "input": "input : list = [2, -4, -1, -5, -5, 1]\noutput : list = [-6, -8, -12, -18, -20, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n([2, -4, -1, -5, -5, 1],2)),3),2)",
    "io_inp": [
      2,
      -4,
      -1,
      -5,
      -5,
      1
    ],
    "io_out": [
      -6,
      -8,
      -12,
      -18,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(input,2)),3),2)"
  },
  {
    "input": "input : list = [5, 0, 0, -2, 2]\noutput : list = [0, 4, -4]",
    "output": "generated_output : list = take(sub_n(sub_n(drop(mul_n([5, 0, 0, -2, 2],-2),2),-2),2),15)",
    "io_inp": [
      5,
      0,
      0,
      -2,
      2
    ],
    "io_out": [
      0,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(drop(mul_n(input,-2),2),-2),2),15)"
  },
  {
    "input": "input : list = [-1, -1, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, 4],1)",
    "io_inp": [
      -1,
      -1,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take([3, -1, 4],1),4)",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [12, 20]",
    "output": "generated_output : list = mul_n([-3, -5],-4)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, 1, -5, 2]\noutput : list = [4, 1, 0, -6]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(sort_asc([5, 1, -5, 2])),1)),23)",
    "io_inp": [
      5,
      1,
      -5,
      2
    ],
    "io_out": [
      4,
      1,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(sort_asc(input)),1)),23)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-4, 5, -3]",
    "output": "generated_output : list = reverse([-3, 5, -4])",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -5, 2, 0, 4]\noutput : list = [6, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(drop([3, -5, 2, 0, 4],3),1))),2)",
    "io_inp": [
      3,
      -5,
      2,
      0,
      4
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(drop(input,3),1))),2)"
  },
  {
    "input": "input : list = [3, 2, 1, 5, 5]\noutput : list = [6, 5, 4]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(take([3, 2, 1, 5, 5],3),7),1),-3))",
    "io_inp": [
      3,
      2,
      1,
      5,
      5
    ],
    "io_out": [
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(take(input,3),7),1),-3))"
  },
  {
    "input": "input : list = [4, -1, 4, -4, 2]\noutput : list = [-5, -2, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(reverse([4, -1, 4, -4, 2])),-1)))",
    "io_inp": [
      4,
      -1,
      4,
      -4,
      2
    ],
    "io_out": [
      -5,
      -2,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-2, -5, -4]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(take([-2, -5, -4],1),9)),-3))",
    "io_inp": [
      -2,
      -5,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(take(input,1),9)),-3))"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [-30, 5, 0]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(add_n([-5, 2, 1],3)),-4),5))",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      -30,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(add_n(input,3)),-4),5))"
  },
  {
    "input": "input : list = [-3, -2, -2, -4, -4]\noutput : list = [-139, -119, -119, -159, -159]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(add_n([-3, -2, -2, -4, -4],-4),19),-5),-4),-1)",
    "io_inp": [
      -3,
      -2,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -139,
      -119,
      -119,
      -159,
      -159
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(add_n(input,-4),19),-5),-4),-1)"
  },
  {
    "input": "input : list = [-5, 4, -5, 5, 2, -3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse(sort_des(drop([-5, 4, -5, 5, 2, -3],4)))",
    "io_inp": [
      -5,
      4,
      -5,
      5,
      2,
      -3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,4)))"
  },
  {
    "input": "input : list = [-3, 5, 5, -5, -2]\noutput : list = [2]",
    "output": "generated_output : list = add_n(drop(sort_des(sort_des(take([-3, 5, 5, -5, -2],3))),2),5)",
    "io_inp": [
      -3,
      5,
      5,
      -5,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_des(sort_des(take(input,3))),2),5)"
  },
  {
    "input": "input : list = [-5, 1, 4, -4, -1, -4]\noutput : list = [-46, -36, -36, -6, 14, 44]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n([-5, 1, 4, -4, -1, -4],2))),5),4)",
    "io_inp": [
      -5,
      1,
      4,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -46,
      -36,
      -36,
      -6,
      14,
      44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n(input,2))),5),4)"
  },
  {
    "input": "input : list = [-1, 3, 1, -3]\noutput : list = [3, 7, 5, 1]",
    "output": "generated_output : list = sub_n([-1, 3, 1, -3],-4)",
    "io_inp": [
      -1,
      3,
      1,
      -3
    ],
    "io_out": [
      3,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [0, -3]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(drop([0, -2, -5],1),1),2),-1),1)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(drop(input,1),1),2),-1),1)"
  },
  {
    "input": "input : list = [2, -1, -5]\noutput : list = [4]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(take([2, -1, -5],1)),22),1),2)",
    "io_inp": [
      2,
      -1,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(take(input,1)),22),1),2)"
  },
  {
    "input": "input : list = [3, 4, 5, -5, 1]\noutput : list = [-5, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([3, 4, 5, -5, 1])",
    "io_inp": [
      3,
      4,
      5,
      -5,
      1
    ],
    "io_out": [
      -5,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, -3, -5]\noutput : list = [5, -3, -5, -5]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(reverse([5, -5, -3, -5])))),13)",
    "io_inp": [
      5,
      -5,
      -3,
      -5
    ],
    "io_out": [
      5,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(reverse(input)))),13)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_asc(sort_des([-4, 5])))))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, 4, -2, 3, 4]\noutput : list = [1, 3, 8, 9, 9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([-4, 4, -2, 3, 4],2)),-3)",
    "io_inp": [
      -4,
      4,
      -2,
      3,
      4
    ],
    "io_out": [
      1,
      3,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,2)),-3)"
  },
  {
    "input": "input : list = [3, 0, 1, -3, -4]\noutput : list = [11, 3, -1, -13, -17]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(add_n([3, 0, 1, -3, -4],-1)),4)),-3)",
    "io_inp": [
      3,
      0,
      1,
      -3,
      -4
    ],
    "io_out": [
      11,
      3,
      -1,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(add_n(input,-1)),4)),-3)"
  },
  {
    "input": "input : list = [5, 2, -3, -5, -3]\noutput : list = [25, 10, -15, -25, -15]",
    "output": "generated_output : list = mul_n([5, 2, -3, -5, -3],5)",
    "io_inp": [
      5,
      2,
      -3,
      -5,
      -3
    ],
    "io_out": [
      25,
      10,
      -15,
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [0, 1, -1, -1]\noutput : list = [-1, -1, 3, 7]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(mul_n([0, 1, -1, -1],4)),-3)))",
    "io_inp": [
      0,
      1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(mul_n(input,4)),-3)))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(sort_asc([2, 4]))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 1, -5, 2]\noutput : list = [16, -5]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sub_n(drop([-5, 1, -5, 2],2),-3),3)),-1)",
    "io_inp": [
      -5,
      1,
      -5,
      2
    ],
    "io_out": [
      16,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sub_n(drop(input,2),-3),3)),-1)"
  },
  {
    "input": "input : list = [4, 3, -1, 4]\noutput : list = [-27, -3, 3, 3]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(mul_n([4, 3, -1, 4],2)),5),2),3)",
    "io_inp": [
      4,
      3,
      -1,
      4
    ],
    "io_out": [
      -27,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_asc(mul_n(input,2)),5),2),3)"
  },
  {
    "input": "input : list = [3, -3, -2, 1]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = sort_asc(reverse(drop([3, -3, -2, 1],1)))",
    "io_inp": [
      3,
      -3,
      -2,
      1
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [0, 1, -1, 3, 2]\noutput : list = [3, 2, 1, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([0, 1, -1, 3, 2])))",
    "io_inp": [
      0,
      1,
      -1,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, 2, -2, -2, -5]\noutput : list = [-5, -2, -2, -1, 2]",
    "output": "generated_output : list = sort_asc([-1, 2, -2, -2, -5])",
    "io_inp": [
      -1,
      2,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2, -1, -1, 1, 3]\noutput : list = [-10, 2, 4]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(take([5, -2, -1, -1, 1, 3],3),-2),31)),50)",
    "io_inp": [
      5,
      -2,
      -1,
      -1,
      1,
      3
    ],
    "io_out": [
      -10,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(take(input,3),-2),31)),50)"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [-4, 0, -6]",
    "output": "generated_output : list = reverse(mul_n([3, 0, 2],-2))",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      -4,
      0,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -3, 0, 2, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(take([-2, -3, 0, 2, 3],1))),-2))",
    "io_inp": [
      -2,
      -3,
      0,
      2,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_asc(take(input,1))),-2))"
  },
  {
    "input": "input : list = [-1, -4, -2, 5]\noutput : list = [-19, 11, 16, 26]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(mul_n([-1, -4, -2, 5],-5),-2)),5),1)",
    "io_inp": [
      -1,
      -4,
      -2,
      5
    ],
    "io_out": [
      -19,
      11,
      16,
      26
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(mul_n(input,-5),-2)),5),1)"
  },
  {
    "input": "input : list = [-2, -3, -2]\noutput : list = [-3, -2, -3]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(add_n([-2, -3, -2],2),-3)),18),-1)",
    "io_inp": [
      -2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(add_n(input,2),-3)),18),-1)"
  },
  {
    "input": "input : list = [-4, 3, 4, 2, -5, 1]\noutput : list = [-5, -4, 1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(take(reverse([-4, 3, 4, 2, -5, 1]),24))",
    "io_inp": [
      -4,
      3,
      4,
      2,
      -5,
      1
    ],
    "io_out": [
      -5,
      -4,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),24))"
  },
  {
    "input": "input : list = [-4, 0, 5, 2, 4, -4]\noutput : list = [-3, -3, 1, 3, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([-4, 0, 5, 2, 4, -4],1)))",
    "io_inp": [
      -4,
      0,
      5,
      2,
      4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      1,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,1)))"
  },
  {
    "input": "input : list = [1, -4, -4, 5]\noutput : list = [-4, -4, 1, 5]",
    "output": "generated_output : list = sort_asc(reverse([1, -4, -4, 5]))",
    "io_inp": [
      1,
      -4,
      -4,
      5
    ],
    "io_out": [
      -4,
      -4,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [1, -3, 0, -4, -5, 0]\noutput : list = [1, 0, -3, -4]",
    "output": "generated_output : list = sort_des(take(mul_n(take(take([1, -3, 0, -4, -5, 0],4),8),1),35))",
    "io_inp": [
      1,
      -3,
      0,
      -4,
      -5,
      0
    ],
    "io_out": [
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(take(input,4),8),1),35))"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [4, 4, 32]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(reverse([-4, 3, -4])),7),5),4)",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      4,
      4,
      32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(reverse(input)),7),5),4)"
  },
  {
    "input": "input : list = [-1, 0, -4]\noutput : list = [2, -14]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(drop([-1, 0, -4],1),-2)),-2),2)",
    "io_inp": [
      -1,
      0,
      -4
    ],
    "io_out": [
      2,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(drop(input,1),-2)),-2),2)"
  },
  {
    "input": "input : list = [0, 0, -3, -1, -5]\noutput : list = [5, 5, 20, 10, 30]",
    "output": "generated_output : list = mul_n(add_n([0, 0, -3, -1, -5],-1),-5)",
    "io_inp": [
      0,
      0,
      -3,
      -1,
      -5
    ],
    "io_out": [
      5,
      5,
      20,
      10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-5)"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 3, -3],1)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc([2, -2, -5]))",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(sub_n([2, -2],-3),-4),4)),-2)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(sub_n(input,-3),-4),4)),-2)"
  },
  {
    "input": "input : list = [5, 1, -4]\noutput : list = [-7, -2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sub_n([5, 1, -4],3)))))",
    "io_inp": [
      5,
      1,
      -4
    ],
    "io_out": [
      -7,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [4, 5, 5, 0, 3]\noutput : list = [9, 10, 10, 5, 8]",
    "output": "generated_output : list = sub_n([4, 5, 5, 0, 3],-5)",
    "io_inp": [
      4,
      5,
      5,
      0,
      3
    ],
    "io_out": [
      9,
      10,
      10,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [0, 3, 9]",
    "output": "generated_output : list = add_n(take(mul_n([4, 1, -5],-1),6),4)",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      0,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,-1),6),4)"
  },
  {
    "input": "input : list = [1, -4, 1, -2, -1, -2]\noutput : list = [1, -4, 1, -2]",
    "output": "generated_output : list = take([1, -4, 1, -2, -1, -2],4)",
    "io_inp": [
      1,
      -4,
      1,
      -2,
      -1,
      -2
    ],
    "io_out": [
      1,
      -4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-4, -2, -4, 5, -2]\noutput : list = [-2, -4, 5, -2]",
    "output": "generated_output : list = drop([-4, -2, -4, 5, -2],1)",
    "io_inp": [
      -4,
      -2,
      -4,
      5,
      -2
    ],
    "io_out": [
      -2,
      -4,
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5, 5, 0, -1]\noutput : list = [2, 4, 14]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(drop([-1, -5, 5, 0, -1],2),2)),35),-4)",
    "io_inp": [
      -1,
      -5,
      5,
      0,
      -1
    ],
    "io_out": [
      2,
      4,
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(drop(input,2),2)),35),-4)"
  },
  {
    "input": "input : list = [1, -1, -2, 1]\noutput : list = [5, 5, -5, -10]",
    "output": "generated_output : list = sort_des(take(mul_n(take(sort_des([1, -1, -2, 1]),10),5),23))",
    "io_inp": [
      1,
      -1,
      -2,
      1
    ],
    "io_out": [
      5,
      5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(sort_des(input),10),5),23))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-75, -75]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_des([5, 5])),20),-5),3)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -75,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(sort_des(input)),20),-5),3)"
  },
  {
    "input": "input : list = [-1, 3, -4, 1, 1, 3]\noutput : list = [-7, -11]",
    "output": "generated_output : list = drop(add_n(mul_n([-1, 3, -4, 1, 1, 3],-2),-5),4)",
    "io_inp": [
      -1,
      3,
      -4,
      1,
      1,
      3
    ],
    "io_out": [
      -7,
      -11
    ],
    "output_masked": "generated_output : list = drop(add_n(mul_n(input,-2),-5),4)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [0, 12, 14]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(mul_n([4, -2, -3],-2),5)),3))",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      0,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(mul_n(input,-2),5)),3))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [1]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(sort_des([0, 4]),1),2)),-1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(sort_des(input),1),2)),-1)"
  },
  {
    "input": "input : list = [-5, 2, -3, 4, -2, -2]\noutput : list = [30, -5, 20, -15, 15, 15]",
    "output": "generated_output : list = mul_n(take(take(add_n([-5, 2, -3, 4, -2, -2],-1),14),35),-5)",
    "io_inp": [
      -5,
      2,
      -3,
      4,
      -2,
      -2
    ],
    "io_out": [
      30,
      -5,
      20,
      -15,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(input,-1),14),35),-5)"
  },
  {
    "input": "input : list = [1, 0, 1, 0, 2, -1]\noutput : list = [-15, -10, -10, -5, -5, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_des([1, 0, 1, 0, 2, -1]),-5),-1),5),-1)",
    "io_inp": [
      1,
      0,
      1,
      0,
      2,
      -1
    ],
    "io_out": [
      -15,
      -10,
      -10,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_des(input),-5),-1),5),-1)"
  },
  {
    "input": "input : list = [-5, 1, -4, 5, -3]\noutput : list = [-22, -6, 10, 14, 18]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([-5, 1, -4, 5, -3],-4)),2)",
    "io_inp": [
      -5,
      1,
      -4,
      5,
      -3
    ],
    "io_out": [
      -22,
      -6,
      10,
      14,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,-4)),2)"
  },
  {
    "input": "input : list = [-2, 5, -4, 2, 3, -2]\noutput : list = [14, 12, 11, 7, 7, 5]",
    "output": "generated_output : list = sort_des(add_n(take(take(sub_n([-2, 5, -4, 2, 3, -2],-5),12),12),4))",
    "io_inp": [
      -2,
      5,
      -4,
      2,
      3,
      -2
    ],
    "io_out": [
      14,
      12,
      11,
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(sub_n(input,-5),12),12),4))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [45, -15]",
    "output": "generated_output : list = mul_n(mul_n(add_n([0, -4],3),-5),-3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      45,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,3),-5),-3)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [12, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc([2, -2])),2),3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(input)),2),3)"
  },
  {
    "input": "input : list = [0, -4, -2, -3, 4]\noutput : list = [1, -3, -1, -2, 5]",
    "output": "generated_output : list = take(mul_n(sub_n([0, -4, -2, -3, 4],-1),1),16)",
    "io_inp": [
      0,
      -4,
      -2,
      -3,
      4
    ],
    "io_out": [
      1,
      -3,
      -1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,-1),1),16)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(add_n([2, 2],1),5),-2),32))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(add_n(input,1),5),-2),32))"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = take(take(reverse(reverse(sort_des([2, 4, -4]))),33),31)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(sort_des(input))),33),31)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [15, 15]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(mul_n([-3, -3],-5)),23)))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(mul_n(input,-5)),23)))"
  },
  {
    "input": "input : list = [-5, 1, -4, -4]\noutput : list = [1, -4, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-5, 1, -4, -4])))",
    "io_inp": [
      -5,
      1,
      -4,
      -4
    ],
    "io_out": [
      1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [-8, 10, -8]",
    "output": "generated_output : list = reverse(mul_n([4, -5, 4],-2))",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      -8,
      10,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-5, 1, -2, -1, 2]\noutput : list = [10, -2, 4, 2, -4]",
    "output": "generated_output : list = mul_n([-5, 1, -2, -1, 2],-2)",
    "io_inp": [
      -5,
      1,
      -2,
      -1,
      2
    ],
    "io_out": [
      10,
      -2,
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-12, -8]",
    "output": "generated_output : list = take(take(sort_asc(mul_n([-2, -3],4)),7),2)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(input,4)),7),2)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [2, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc([5, 5, 2])))))",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -4, -4, -3]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sub_n(take([-2, -4, -4, -3],2),2)",
    "io_inp": [
      -2,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),2)"
  },
  {
    "input": "input : list = [-3, -5, 4, 4]\noutput : list = [-16, -16, 12, 20]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(sort_asc([-3, -5, 4, 4])),-4)),11)",
    "io_inp": [
      -3,
      -5,
      4,
      4
    ],
    "io_out": [
      -16,
      -16,
      12,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(sort_asc(input)),-4)),11)"
  },
  {
    "input": "input : list = [-1, -3, 4, 2]\noutput : list = [16, 6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(drop([-1, -3, 4, 2],2),5))),4)",
    "io_inp": [
      -1,
      -3,
      4,
      2
    ],
    "io_out": [
      16,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(drop(input,2),5))),4)"
  },
  {
    "input": "input : list = [-3, 1, -2, 0]\noutput : list = [1, 0, -2, -3]",
    "output": "generated_output : list = sort_des(reverse([-3, 1, -2, 0]))",
    "io_inp": [
      -3,
      1,
      -2,
      0
    ],
    "io_out": [
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, 0, 3, 1, 5, 0]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = add_n(reverse(add_n(take(sort_asc([3, 0, 3, 1, 5, 0]),3),-1)),1)",
    "io_inp": [
      3,
      0,
      3,
      1,
      5,
      0
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(sort_asc(input),3),-1)),1)"
  },
  {
    "input": "input : list = [0, -1, 0, -1, 1, 5]\noutput : list = [0, 3, 0, 3, -3, -15]",
    "output": "generated_output : list = mul_n([0, -1, 0, -1, 1, 5],-3)",
    "io_inp": [
      0,
      -1,
      0,
      -1,
      1,
      5
    ],
    "io_out": [
      0,
      3,
      0,
      3,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -1, 5, -5]\noutput : list = [-8]",
    "output": "generated_output : list = take(take(reverse(sub_n([-5, -1, 5, -5],3)),1),26)",
    "io_inp": [
      -5,
      -1,
      5,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(input,3)),1),26)"
  },
  {
    "input": "input : list = [5, 0, -4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(reverse(drop([5, 0, -4, 2],2)))",
    "io_inp": [
      5,
      0,
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take([-1, 2, 1],1),5))),4)",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(mul_n(take(input,1),5))),4)"
  },
  {
    "input": "input : list = [-4, 3, 1, 5]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(take([-4, 3, 1, 5],1))),16))",
    "io_inp": [
      -4,
      3,
      1,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(take(input,1))),16))"
  },
  {
    "input": "input : list = [2, 0, 5, 0, -5, -5]\noutput : list = [-8, -8, -3, -3, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(sub_n([2, 0, 5, 0, -5, -5],3)))",
    "io_inp": [
      2,
      0,
      5,
      0,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,3)))"
  },
  {
    "input": "input : list = [-3, -1, -1, -3, -5]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(sort_des(take(sort_des(take([-3, -1, -1, -3, -5],1)),26)),-1)",
    "io_inp": [
      -3,
      -1,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sort_des(take(input,1)),26)),-1)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-8, -8]",
    "output": "generated_output : list = mul_n(take(add_n(take(sub_n([3, 3],1),7),-4),17),4)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(sub_n(input,1),7),-4),17),4)"
  },
  {
    "input": "input : list = [1, 2, -2, 5]\noutput : list = [5, -2, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, -2, 5])",
    "io_inp": [
      1,
      2,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 3, 5, 2]\noutput : list = [6, 7, 9, 6]",
    "output": "generated_output : list = add_n(sub_n([2, 3, 5, 2],-1),3)",
    "io_inp": [
      2,
      3,
      5,
      2
    ],
    "io_out": [
      6,
      7,
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),3)"
  },
  {
    "input": "input : list = [-5, 4, 3, 1, 5]\noutput : list = [-5, 4, 3]",
    "output": "generated_output : list = take([-5, 4, 3, 1, 5],3)",
    "io_inp": [
      -5,
      4,
      3,
      1,
      5
    ],
    "io_out": [
      -5,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-3, 1, 0]\noutput : list = [0, 1, -3]",
    "output": "generated_output : list = reverse([-3, 1, 0])",
    "io_inp": [
      -3,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [10, 10, 9]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(sub_n([2, 1, 2],-4))),5),1)",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      10,
      10,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(sub_n(input,-4))),5),1)"
  },
  {
    "input": "input : list = [-2, -3, 2, -1, -1]\noutput : list = [-3, -1, -1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(drop([-2, -3, 2, -1, -1],1),2))),2)",
    "io_inp": [
      -2,
      -3,
      2,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(drop(input,1),2))),2)"
  },
  {
    "input": "input : list = [1, 3, 0, -5]\noutput : list = [-5, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_asc([1, 3, 0, -5])))))",
    "io_inp": [
      1,
      3,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [13, 13, -7]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(mul_n([2, -3, -3],-2),2),8)),-1)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      13,
      13,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(mul_n(input,-2),2),8)),-1)"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [-41, -36, -6]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(add_n([5, 4, -2],3)),-5),3),1)",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      -41,
      -36,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(add_n(input,3)),-5),3),1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-21, -21]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(sort_asc([4, 4])),-5)),-1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -21,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(sort_asc(input)),-5)),-1)"
  },
  {
    "input": "input : list = [-3, -3, -1, 4]\noutput : list = [0, 0, 2, 7]",
    "output": "generated_output : list = sub_n([-3, -3, -1, 4],-3)",
    "io_inp": [
      -3,
      -3,
      -1,
      4
    ],
    "io_out": [
      0,
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, 2, -3, 1]\noutput : list = [4, 2]",
    "output": "generated_output : list = take([4, 2, -3, 1],2)",
    "io_inp": [
      4,
      2,
      -3,
      1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -5, -2, -3, 5]\noutput : list = [5, -2, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc([-4, -5, -2, -3, 5]),1)))",
    "io_inp": [
      -4,
      -5,
      -2,
      -3,
      5
    ],
    "io_out": [
      5,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(input),1)))"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [8, 4, -8]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(sort_asc([-2, 1, 2])),26),4))",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      8,
      4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(sort_asc(input)),26),4))"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [3, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n([4, 5, 2],-5)),-4)))",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sub_n(input,-5)),-4)))"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [-25]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(take([5, 1, -5],1),-5)),25))",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(take(input,1),-5)),25))"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [8, -2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(drop([5, -5, 5],1),2)),-3))",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(drop(input,1),2)),-3))"
  },
  {
    "input": "input : list = [-5, 2, 2, 4, 0]\noutput : list = [-1, -1, 20]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(take([-5, 2, 2, 4, 0],3),-3),5)))",
    "io_inp": [
      -5,
      2,
      2,
      4,
      0
    ],
    "io_out": [
      -1,
      -1,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(take(input,3),-3),5)))"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [-6, 0, 4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_des([1, 5, -5]),5),4))",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      -6,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_des(input),5),4))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(sort_asc([1, -4]),2))))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [0, 2, -2, -2]\noutput : list = [2, 0, -2, -2]",
    "output": "generated_output : list = sort_des([0, 2, -2, -2])",
    "io_inp": [
      0,
      2,
      -2,
      -2
    ],
    "io_out": [
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-9, -8]",
    "output": "generated_output : list = sort_asc(sub_n([-4, -5],4))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -9,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [-2, 5, 0, -1]\noutput : list = [13, 8, 7, 6]",
    "output": "generated_output : list = sort_des(add_n(add_n([-2, 5, 0, -1],5),3))",
    "io_inp": [
      -2,
      5,
      0,
      -1
    ],
    "io_out": [
      13,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,5),3))"
  },
  {
    "input": "input : list = [-4, -4, 3, 2, 5, 3]\noutput : list = [-15, -25, -10, -15, 20, 20]",
    "output": "generated_output : list = take(reverse(mul_n([-4, -4, 3, 2, 5, 3],-5)),8)",
    "io_inp": [
      -4,
      -4,
      3,
      2,
      5,
      3
    ],
    "io_out": [
      -15,
      -25,
      -10,
      -15,
      20,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,-5)),8)"
  },
  {
    "input": "input : list = [2, 1, -5, 2, -4]\noutput : list = [-3, -9]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n(drop([2, 1, -5, 2, -4],3),-2),5),15),-2)",
    "io_inp": [
      2,
      1,
      -5,
      2,
      -4
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(drop(input,3),-2),5),15),-2)"
  },
  {
    "input": "input : list = [-1, -5, 5, -3, -2]\noutput : list = [3, 1, 0, -1, -7]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(reverse([-1, -5, 5, -3, -2]),1),1)),-1)",
    "io_inp": [
      -1,
      -5,
      5,
      -3,
      -2
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(reverse(input),1),1)),-1)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-8, 4]",
    "output": "generated_output : list = mul_n([2, -1],-4)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, -2, 1, 0]\noutput : list = [-14, -2, 1, 7]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(mul_n([5, -2, 1, 0],-3)),-4)),5)",
    "io_inp": [
      5,
      -2,
      1,
      0
    ],
    "io_out": [
      -14,
      -2,
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(mul_n(input,-3)),-4)),5)"
  },
  {
    "input": "input : list = [0, 0, 4]\noutput : list = [-6, -6, 6]",
    "output": "generated_output : list = mul_n(add_n([0, 0, 4],-2),3)",
    "io_inp": [
      0,
      0,
      4
    ],
    "io_out": [
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des([-4, -5])",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -4, 2, 5]\noutput : list = [1, -2, -5, -6, -8]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(reverse([-2, -1, -4, 2, 5])),-4)))",
    "io_inp": [
      -2,
      -1,
      -4,
      2,
      5
    ],
    "io_out": [
      1,
      -2,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-3, 2, -3, -1]\noutput : list = [12, 28, -12, 28]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(mul_n([-3, 2, -3, -1],-2),1),4),15))",
    "io_inp": [
      -3,
      2,
      -3,
      -1
    ],
    "io_out": [
      12,
      28,
      -12,
      28
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(mul_n(input,-2),1),4),15))"
  },
  {
    "input": "input : list = [0, -4, -1, -5, -4, 0]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(drop([0, -4, -1, -5, -4, 0],1),-2),24)),3)",
    "io_inp": [
      0,
      -4,
      -1,
      -5,
      -4,
      0
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(drop(input,1),-2),24)),3)"
  },
  {
    "input": "input : list = [-2, -5, -2]\noutput : list = [-6, -9, -6]",
    "output": "generated_output : list = sub_n([-2, -5, -2],4)",
    "io_inp": [
      -2,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_asc([-1, 0]),-4)),8))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_asc(input),-4)),8))"
  },
  {
    "input": "input : list = [1, 5, 4, 5, 4, 2]\noutput : list = [5, 9, 8, 9, 8, 6]",
    "output": "generated_output : list = add_n(mul_n([1, 5, 4, 5, 4, 2],1),4)",
    "io_inp": [
      1,
      5,
      4,
      5,
      4,
      2
    ],
    "io_out": [
      5,
      9,
      8,
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),4)"
  },
  {
    "input": "input : list = [-3, -2, 3, -2, -5]\noutput : list = [7, 11, 31, 11, -1]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sub_n([-3, -2, 3, -2, -5],-3),-2),5),-2),3)",
    "io_inp": [
      -3,
      -2,
      3,
      -2,
      -5
    ],
    "io_out": [
      7,
      11,
      31,
      11,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sub_n(input,-3),-2),5),-2),3)"
  },
  {
    "input": "input : list = [-4, -1, -3, 5, 1, 3]\noutput : list = [3, 1, 5, -3, -1, -4]",
    "output": "generated_output : list = reverse([-4, -1, -3, 5, 1, 3])",
    "io_inp": [
      -4,
      -1,
      -3,
      5,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      5,
      -3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [20, 0, -30]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(mul_n([2, 0, -3],5),1),1),35),2)",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      20,
      0,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(mul_n(input,5),1),1),35),2)"
  },
  {
    "input": "input : list = [1, 5, -1, 5, 3, 4]\noutput : list = [5, 5, 4, 3, 1, -1]",
    "output": "generated_output : list = sort_des([1, 5, -1, 5, 3, 4])",
    "io_inp": [
      1,
      5,
      -1,
      5,
      3,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [-3, -1, 4]",
    "output": "generated_output : list = reverse([4, -1, -3])",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, 0, 1, 3]\noutput : list = [-8, -1, -5, -4, -2]",
    "output": "generated_output : list = add_n([-3, 4, 0, 1, 3],-5)",
    "io_inp": [
      -3,
      4,
      0,
      1,
      3
    ],
    "io_out": [
      -8,
      -1,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 2, 3, -4, -4, 0]\noutput : list = [-20, -20, -4, 4, 4, 8]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_des([2, 2, 3, -4, -4, 0])),1),4),50)",
    "io_inp": [
      2,
      2,
      3,
      -4,
      -4,
      0
    ],
    "io_out": [
      -20,
      -20,
      -4,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_des(input)),1),4),50)"
  },
  {
    "input": "input : list = [0, -3, -3, -4]\noutput : list = [-4, -3, -3, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(sort_asc([0, -3, -3, -4])))),14)",
    "io_inp": [
      0,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(sort_asc(input)))),14)"
  },
  {
    "input": "input : list = [2, -4, -2, 3, -3]\noutput : list = [6, -9, 9]",
    "output": "generated_output : list = add_n(mul_n(add_n(drop([2, -4, -2, 3, -3],2),-1),-3),-3)",
    "io_inp": [
      2,
      -4,
      -2,
      3,
      -3
    ],
    "io_out": [
      6,
      -9,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(drop(input,2),-1),-3),-3)"
  },
  {
    "input": "input : list = [1, 4, 3, -4, 1, 2]\noutput : list = [-5, -2, -3, -10, -5, -4]",
    "output": "generated_output : list = take(take(add_n(sub_n([1, 4, 3, -4, 1, 2],2),-4),19),19)",
    "io_inp": [
      1,
      4,
      3,
      -4,
      1,
      2
    ],
    "io_out": [
      -5,
      -2,
      -3,
      -10,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(input,2),-4),19),19)"
  },
  {
    "input": "input : list = [5, 5, 0, 2, -3]\noutput : list = [-15, 0, 10, 25, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(sort_asc([5, 5, 0, 2, -3]),11)),5))",
    "io_inp": [
      5,
      5,
      0,
      2,
      -3
    ],
    "io_out": [
      -15,
      0,
      10,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(sort_asc(input),11)),5))"
  },
  {
    "input": "input : list = [1, -5, 3, -2, -5]\noutput : list = [-17, -8, 7, -17, 1]",
    "output": "generated_output : list = take(add_n(mul_n(take(reverse([1, -5, 3, -2, -5]),20),3),-2),16)",
    "io_inp": [
      1,
      -5,
      3,
      -2,
      -5
    ],
    "io_out": [
      -17,
      -8,
      7,
      -17,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(reverse(input),20),3),-2),16)"
  },
  {
    "input": "input : list = [-2, 2, 2, 0, -4]\noutput : list = [6, 6, 4, 2, 0]",
    "output": "generated_output : list = take(take(mul_n(add_n(sort_des([-2, 2, 2, 0, -4]),4),1),16),6)",
    "io_inp": [
      -2,
      2,
      2,
      0,
      -4
    ],
    "io_out": [
      6,
      6,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(sort_des(input),4),1),16),6)"
  },
  {
    "input": "input : list = [-3, -4, 4, 4, 2]\noutput : list = [13, 13, 9, -1, -3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(sort_des([-3, -4, 4, 4, 2]),-3),-4),2),-3)",
    "io_inp": [
      -3,
      -4,
      4,
      4,
      2
    ],
    "io_out": [
      13,
      13,
      9,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(sort_des(input),-3),-4),2),-3)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [-10, -16, -19]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(mul_n([2, 4, 5],-1),3),-3),29),1)",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      -10,
      -16,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(mul_n(input,-1),3),-3),29),1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [6, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n([4, -2],2),-3)),3)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(input,2),-3)),3)"
  },
  {
    "input": "input : list = [4, 3, -5, -4, -4]\noutput : list = [-23, -19, -19, 9, 13]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(mul_n([4, 3, -5, -4, -4],4),22)),-3),1)",
    "io_inp": [
      4,
      3,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -23,
      -19,
      -19,
      9,
      13
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(mul_n(input,4),22)),-3),1)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [10, 40]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(sub_n([-1, -4],-2),-2),2),32),-5)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      10,
      40
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(sub_n(input,-2),-2),2),32),-5)"
  },
  {
    "input": "input : list = [2, 5, 5, 3]\noutput : list = [8, 8, 6, 5]",
    "output": "generated_output : list = sort_des(reverse(add_n([2, 5, 5, 3],3)))",
    "io_inp": [
      2,
      5,
      5,
      3
    ],
    "io_out": [
      8,
      8,
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,3)))"
  },
  {
    "input": "input : list = [-2, 5, 0, -3, -5]\noutput : list = [0, 2, 5, 10, 3]",
    "output": "generated_output : list = reverse(add_n([-2, 5, 0, -3, -5],5))",
    "io_inp": [
      -2,
      5,
      0,
      -3,
      -5
    ],
    "io_out": [
      0,
      2,
      5,
      10,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,5))"
  },
  {
    "input": "input : list = [4, 5, 2]\noutput : list = [-12, -21, -18]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(add_n([4, 5, 2],4)),-3),4),-2)",
    "io_inp": [
      4,
      5,
      2
    ],
    "io_out": [
      -12,
      -21,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(add_n(input,4)),-3),4),-2)"
  },
  {
    "input": "input : list = [0, 2, 2, 2, 4, 2]\noutput : list = [-1, 1, 1, 1, 3, 1]",
    "output": "generated_output : list = sub_n([0, 2, 2, 2, 4, 2],1)",
    "io_inp": [
      0,
      2,
      2,
      2,
      4,
      2
    ],
    "io_out": [
      -1,
      1,
      1,
      1,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [7, 11, 11]",
    "output": "generated_output : list = add_n(mul_n(add_n([0, 1, 1],3),4),-5)",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      7,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,3),4),-5)"
  },
  {
    "input": "input : list = [5, -3, -2, 1, 4]\noutput : list = [4, 1, -2, -3, 5]",
    "output": "generated_output : list = reverse(reverse(reverse([5, -3, -2, 1, 4])))",
    "io_inp": [
      5,
      -3,
      -2,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      -2,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-11, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(mul_n([-2, 3],-3),5)),-2))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -11,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(mul_n(input,-3),5)),-2))"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [6, 6, 13]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(sub_n([3, -4, -4],-5),5))))",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      6,
      6,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(sub_n(input,-5),5))))"
  },
  {
    "input": "input : list = [5, 4, 0]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take([5, 4, 0],1))))",
    "io_inp": [
      5,
      4,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(input,1))))"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(take([4, 0, -5],1),12)),-4))",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(take(input,1),12)),-4))"
  },
  {
    "input": "input : list = [3, 4, -1]\noutput : list = [-28, -24, -8]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(sort_asc([3, 4, -1]),-1),-3)),4)",
    "io_inp": [
      3,
      4,
      -1
    ],
    "io_out": [
      -28,
      -24,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(sort_asc(input),-1),-3)),4)"
  },
  {
    "input": "input : list = [2, -5, -3, 0, -3]\noutput : list = [-15, -9, -9, 0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([2, -5, -3, 0, -3]),3))",
    "io_inp": [
      2,
      -5,
      -3,
      0,
      -3
    ],
    "io_out": [
      -15,
      -9,
      -9,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-5, -1, -3, 1]\noutput : list = [-5, -3, -1, 1]",
    "output": "generated_output : list = reverse(reverse(take(take(sort_asc([-5, -1, -3, 1]),5),11)))",
    "io_inp": [
      -5,
      -1,
      -3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(sort_asc(input),5),11)))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(sort_asc([1, 1]),3))))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [5, 5, 0, 4, -5]\noutput : list = [-5, 0, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 5, 0, 4, -5]))",
    "io_inp": [
      5,
      5,
      0,
      4,
      -5
    ],
    "io_out": [
      -5,
      0,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -5, -2]\noutput : list = [-5, -2, -1]",
    "output": "generated_output : list = sort_asc([-1, -5, -2])",
    "io_inp": [
      -1,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-8, -1]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n([5, -2],-5),-1),-2),21)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -8,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(input,-5),-1),-2),21)"
  },
  {
    "input": "input : list = [-1, -5, 0, -4]\noutput : list = [-5, -4, -1, 0]",
    "output": "generated_output : list = sort_asc([-1, -5, 0, -4])",
    "io_inp": [
      -1,
      -5,
      0,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_asc([3, 4]),1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),1)"
  },
  {
    "input": "input : list = [2, 5, -5, 5, 4]\noutput : list = [10, 25, -25, 25, 20]",
    "output": "generated_output : list = mul_n([2, 5, -5, 5, 4],5)",
    "io_inp": [
      2,
      5,
      -5,
      5,
      4
    ],
    "io_out": [
      10,
      25,
      -25,
      25,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-2, -5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = drop([-2, -5, -1],1)",
    "io_inp": [
      -2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -5, -2, 3]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(take([4, -5, -2, 3],1),-4),-3)))",
    "io_inp": [
      4,
      -5,
      -2,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(take(input,1),-4),-3)))"
  },
  {
    "input": "input : list = [0, -2, 3, -1, 1, 5]\noutput : list = [6, 2, 0, 4, -1, 1]",
    "output": "generated_output : list = reverse(take(add_n([0, -2, 3, -1, 1, 5],1),23))",
    "io_inp": [
      0,
      -2,
      3,
      -1,
      1,
      5
    ],
    "io_out": [
      6,
      2,
      0,
      4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,1),23))"
  },
  {
    "input": "input : list = [-1, -2, -2, -1, -3, 5]\noutput : list = [10, 4, 4, 3, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_des([-1, -2, -2, -1, -3, 5])),5)",
    "io_inp": [
      -1,
      -2,
      -2,
      -1,
      -3,
      5
    ],
    "io_out": [
      10,
      4,
      4,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-1, 5, -2, 0, -2]\noutput : list = [-7, -5, -7]",
    "output": "generated_output : list = add_n(drop([-1, 5, -2, 0, -2],2),-5)",
    "io_inp": [
      -1,
      5,
      -2,
      0,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [2, 0, 1, -2, 1]\noutput : list = [-3, -1, 0, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n([2, 0, 1, -2, 1],-1))",
    "io_inp": [
      2,
      0,
      1,
      -2,
      1
    ],
    "io_out": [
      -3,
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [-4, 3, -5, -1]\noutput : list = [-3, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(reverse([-4, 3, -5, -1])),-1)))",
    "io_inp": [
      -4,
      3,
      -5,
      -1
    ],
    "io_out": [
      -3,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-16, -1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(mul_n([-5, 0, 1],-3),-1))),-1)",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -16,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(mul_n(input,-3),-1))),-1)"
  },
  {
    "input": "input : list = [4, 4, 0, 0, -5]\noutput : list = [-30, -30, -18, -18, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(add_n([4, 4, 0, 0, -5],5),-3)),5),-2)",
    "io_inp": [
      4,
      4,
      0,
      0,
      -5
    ],
    "io_out": [
      -30,
      -30,
      -18,
      -18,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(add_n(input,5),-3)),5),-2)"
  },
  {
    "input": "input : list = [5, 5, 1, 3, -4, 3]\noutput : list = [27, 27, 17, 17, 7, -18]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(mul_n([5, 5, 1, 3, -4, 3],5))),41),2)",
    "io_inp": [
      5,
      5,
      1,
      3,
      -4,
      3
    ],
    "io_out": [
      27,
      27,
      17,
      17,
      7,
      -18
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(mul_n(input,5))),41),2)"
  },
  {
    "input": "input : list = [5, -5, -1, 5, 3, 0]\noutput : list = [0, -60, -100, 20]",
    "output": "generated_output : list = reverse(drop(take(mul_n(mul_n([5, -5, -1, 5, 3, 0],-4),5),19),2))",
    "io_inp": [
      5,
      -5,
      -1,
      5,
      3,
      0
    ],
    "io_out": [
      0,
      -60,
      -100,
      20
    ],
    "output_masked": "generated_output : list = reverse(drop(take(mul_n(mul_n(input,-4),5),19),2))"
  },
  {
    "input": "input : list = [-2, 0, 0, -5, -1]\noutput : list = [-5, -2, -1, 0, 0]",
    "output": "generated_output : list = sort_asc([-2, 0, 0, -5, -1])",
    "io_inp": [
      -2,
      0,
      0,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1, -4, -3, -1, 2]\noutput : list = [1, -2, -7, -6, -4, -1]",
    "output": "generated_output : list = sub_n(add_n([4, 1, -4, -3, -1, 2],-2),1)",
    "io_inp": [
      4,
      1,
      -4,
      -3,
      -1,
      2
    ],
    "io_out": [
      1,
      -2,
      -7,
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),1)"
  },
  {
    "input": "input : list = [2, 5, 1, -4, -2, -1]\noutput : list = [-13, -21, -37, 3, 35, 11]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(reverse([2, 5, 1, -4, -2, -1]),4),2),1),-4)",
    "io_inp": [
      2,
      5,
      1,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -13,
      -21,
      -37,
      3,
      35,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(reverse(input),4),2),1),-4)"
  },
  {
    "input": "input : list = [5, -5, 5, 3, -2]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -5, 5, 3, -2],1)",
    "io_inp": [
      5,
      -5,
      5,
      3,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [-3, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-2, 2, -1])),5)",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),5)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([-1, 1]),4))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [5, -5, 1, 0, 4]\noutput : list = [4, -6, 0, -1]",
    "output": "generated_output : list = add_n(add_n(sub_n(take(sub_n([5, -5, 1, 0, 4],5),4),3),4),3)",
    "io_inp": [
      5,
      -5,
      1,
      0,
      4
    ],
    "io_out": [
      4,
      -6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(take(sub_n(input,5),4),3),4),3)"
  },
  {
    "input": "input : list = [-2, 5, -5, 5]\noutput : list = [0, 12, 40, 40]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(add_n([-2, 5, -5, 5],5),17))),4)",
    "io_inp": [
      -2,
      5,
      -5,
      5
    ],
    "io_out": [
      0,
      12,
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(add_n(input,5),17))),4)"
  },
  {
    "input": "input : list = [4, 5, -5, -4]\noutput : list = [-4, -5, 5, 4]",
    "output": "generated_output : list = reverse([4, 5, -5, -4])",
    "io_inp": [
      4,
      5,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [0]",
    "output": "generated_output : list = reverse(reverse(add_n(take(take([5, 5, 5],1),3),-5)))",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(take(input,1),3),-5)))"
  },
  {
    "input": "input : list = [4, 0, 4, 5, -5, -5]\noutput : list = [0, 5, 5, 25, 50, 50]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(mul_n([4, 0, 4, 5, -5, -5],1),5),1),-5))",
    "io_inp": [
      4,
      0,
      4,
      5,
      -5,
      -5
    ],
    "io_out": [
      0,
      5,
      5,
      25,
      50,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(mul_n(input,1),5),1),-5))"
  },
  {
    "input": "input : list = [1, -5, -1, 3]\noutput : list = [20, 12, 4, -12]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des([1, -5, -1, 3]),1),-1),1),-4)",
    "io_inp": [
      1,
      -5,
      -1,
      3
    ],
    "io_out": [
      20,
      12,
      4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(sort_des(input),1),-1),1),-4)"
  },
  {
    "input": "input : list = [5, -5, 4, 5, -3]\noutput : list = [15, -25]",
    "output": "generated_output : list = mul_n(reverse(take(take(drop([5, -5, 4, 5, -3],3),9),29)),-5)",
    "io_inp": [
      5,
      -5,
      4,
      5,
      -3
    ],
    "io_out": [
      15,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(drop(input,3),9),29)),-5)"
  },
  {
    "input": "input : list = [-4, 0, 0, 4, 3, -2]\noutput : list = [-9, -7, -5, -5, -2, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(reverse([-4, 0, 0, 4, 3, -2]))),5))",
    "io_inp": [
      -4,
      0,
      0,
      4,
      3,
      -2
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(reverse(input))),5))"
  },
  {
    "input": "input : list = [-4, -2, -3, 5, -3, 2]\noutput : list = [-12, -6, -9, 15, -9, 6]",
    "output": "generated_output : list = mul_n([-4, -2, -3, 5, -3, 2],3)",
    "io_inp": [
      -4,
      -2,
      -3,
      5,
      -3,
      2
    ],
    "io_out": [
      -12,
      -6,
      -9,
      15,
      -9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-1, 1, -1, -1, 3]\noutput : list = [-4, 4, -4, -4, 12]",
    "output": "generated_output : list = mul_n([-1, 1, -1, -1, 3],4)",
    "io_inp": [
      -1,
      1,
      -1,
      -1,
      3
    ],
    "io_out": [
      -4,
      4,
      -4,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [20, 4, -16]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n([-4, 1, 5],4)))))",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      20,
      4,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = reverse([5, 2])",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2, -2, 3, 5]\noutput : list = [2, 5, 1, 6, 8]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(reverse([-1, 2, -2, 3, 5]),-5),-4),2))",
    "io_inp": [
      -1,
      2,
      -2,
      3,
      5
    ],
    "io_out": [
      2,
      5,
      1,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(reverse(input),-5),-4),2))"
  },
  {
    "input": "input : list = [2, 2, 3]\noutput : list = [2, 3]",
    "output": "generated_output : list = reverse(take(sort_des([2, 2, 3]),2))",
    "io_inp": [
      2,
      2,
      3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(input),2))"
  },
  {
    "input": "input : list = [5, -1, 3, -2]\noutput : list = [8, 4, -12, -20]",
    "output": "generated_output : list = mul_n(sort_asc([5, -1, 3, -2]),-4)",
    "io_inp": [
      5,
      -1,
      3,
      -2
    ],
    "io_out": [
      8,
      4,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [0, 2, 5, -1]\noutput : list = [-20, -8, 0, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(mul_n([0, 2, 5, -1],-4),4))),-4)",
    "io_inp": [
      0,
      2,
      5,
      -1
    ],
    "io_out": [
      -20,
      -8,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(mul_n(input,-4),4))),-4)"
  },
  {
    "input": "input : list = [-4, -1, 0, -4, 4, -5]\noutput : list = [-5, -4, -4, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([-4, -1, 0, -4, 4, -5])",
    "io_inp": [
      -4,
      -1,
      0,
      -4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, 4, 2]\noutput : list = [-8, -4, -3, -2]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(add_n([3, -2, 4, 2],-4)),-2)),25)",
    "io_inp": [
      3,
      -2,
      4,
      2
    ],
    "io_out": [
      -8,
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(add_n(input,-4)),-2)),25)"
  },
  {
    "input": "input : list = [2, 3, -3, -4, -1, -4]\noutput : list = [1, -2]",
    "output": "generated_output : list = sub_n(drop([2, 3, -3, -4, -1, -4],4),-2)",
    "io_inp": [
      2,
      3,
      -3,
      -4,
      -1,
      -4
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),-2)"
  },
  {
    "input": "input : list = [0, -4, -1]\noutput : list = [2, -4, -6]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse([0, -4, -1]))),3),-2)",
    "io_inp": [
      0,
      -4,
      -1
    ],
    "io_out": [
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse(input))),3),-2)"
  },
  {
    "input": "input : list = [4, -3, 0]\noutput : list = [-3, 0, 4]",
    "output": "generated_output : list = sort_asc([4, -3, 0])",
    "io_inp": [
      4,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -2, -2, -2]\noutput : list = [-5, -5, -5, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(sort_des([-2, -2, -2, -2]),-4))),-1)",
    "io_inp": [
      -2,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(sort_des(input),-4))),-1)"
  },
  {
    "input": "input : list = [5, -5, 2]\noutput : list = [-7, 0, 3]",
    "output": "generated_output : list = add_n(take(reverse(take(sort_des([5, -5, 2]),13)),24),-2)",
    "io_inp": [
      5,
      -5,
      2
    ],
    "io_out": [
      -7,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sort_des(input),13)),24),-2)"
  },
  {
    "input": "input : list = [-4, -2, 2, -2, 5, 4]\noutput : list = [1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(take([-4, -2, 2, -2, 5, 4],1)))),5)",
    "io_inp": [
      -4,
      -2,
      2,
      -2,
      5,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(take(input,1)))),5)"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [-1, 8, 3]",
    "output": "generated_output : list = sub_n(add_n([-4, 5, 0],-2),-5)",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      -1,
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-2),-5)"
  },
  {
    "input": "input : list = [-1, -4, -3, -4, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = drop([-1, -4, -3, -4, -1, 1],4)",
    "io_inp": [
      -1,
      -4,
      -3,
      -4,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(sort_des([0, 5, 4])))),15)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(sort_des(input)))),15)"
  },
  {
    "input": "input : list = [-1, 4, -3, -4, 4, -3]\noutput : list = [4, 9, 2, 1, 9, 2]",
    "output": "generated_output : list = add_n([-1, 4, -3, -4, 4, -3],5)",
    "io_inp": [
      -1,
      4,
      -3,
      -4,
      4,
      -3
    ],
    "io_out": [
      4,
      9,
      2,
      1,
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-4, 1],5),4))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,5),4))"
  },
  {
    "input": "input : list = [-1, -4, -1, -5, 5, 0]\noutput : list = [-20, 0, 4, 4, 16, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(mul_n([-1, -4, -1, -5, 5, 0],-4)),28)))",
    "io_inp": [
      -1,
      -4,
      -1,
      -5,
      5,
      0
    ],
    "io_out": [
      -20,
      0,
      4,
      4,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(mul_n(input,-4)),28)))"
  },
  {
    "input": "input : list = [4, 0, 4, 1, 5]\noutput : list = [5, 1, 4]",
    "output": "generated_output : list = take(reverse(drop([4, 0, 4, 1, 5],2)),25)",
    "io_inp": [
      4,
      0,
      4,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(drop(input,2)),25)"
  },
  {
    "input": "input : list = [-3, 3, -2, 0, 0, -2]\noutput : list = [0, 2, 2, 0, 5, -1]",
    "output": "generated_output : list = take(add_n(take(reverse([-3, 3, -2, 0, 0, -2]),11),2),9)",
    "io_inp": [
      -3,
      3,
      -2,
      0,
      0,
      -2
    ],
    "io_out": [
      0,
      2,
      2,
      0,
      5,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(reverse(input),11),2),9)"
  },
  {
    "input": "input : list = [2, 2, 1, -2, 1]\noutput : list = [-1, 2, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([2, 2, 1, -2, 1],-1)))",
    "io_inp": [
      2,
      2,
      1,
      -2,
      1
    ],
    "io_out": [
      -1,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [4, -4, 2, 0, 5]\noutput : list = [20, 16, 8, 0, -16]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n([4, -4, 2, 0, 5],3))),3),4)",
    "io_inp": [
      4,
      -4,
      2,
      0,
      5
    ],
    "io_out": [
      20,
      16,
      8,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(add_n(input,3))),3),4)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse([2, 0])),-1))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(input)),-1))"
  },
  {
    "input": "input : list = [-4, 2, 2]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(drop([-4, 2, 2],1)),1),2))",
    "io_inp": [
      -4,
      2,
      2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(drop(input,1)),1),2))"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n([0, -1, 0],5),4),1)))",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n(input,5),4),1)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [19, 22]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des([-5, -4])),-3),4),3)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      19,
      22
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(sort_des(input)),-3),4),3)"
  },
  {
    "input": "input : list = [5, -3, 2]\noutput : list = [-18, 2, 14]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(mul_n([5, -3, 2],2),-2),-5),2))",
    "io_inp": [
      5,
      -3,
      2
    ],
    "io_out": [
      -18,
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(mul_n(input,2),-2),-5),2))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-12, -15]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_des([-2, -3]))),-2),3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_des(input))),-2),3)"
  },
  {
    "input": "input : list = [3, 4, -1, -3]\noutput : list = [-8, -6, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse([3, 4, -1, -3])),-5))",
    "io_inp": [
      3,
      4,
      -1,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(input)),-5))"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-8, -6, -6]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(sub_n([-2, -4, -2],-1))),-5),17)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(sub_n(input,-1))),-5),17)"
  },
  {
    "input": "input : list = [5, -1, -1, 0, 3, -1]\noutput : list = [-3, 0, 1, 1, 1]",
    "output": "generated_output : list = drop(sort_asc(mul_n([5, -1, -1, 0, 3, -1],-1)),1)",
    "io_inp": [
      5,
      -1,
      -1,
      0,
      3,
      -1
    ],
    "io_out": [
      -3,
      0,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(mul_n(input,-1)),1)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(sort_asc([1, 2, -3]))),13))",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(sort_asc(input))),13))"
  },
  {
    "input": "input : list = [-3, -2, -1, 5, -2]\noutput : list = [-3, -2, -2, -1, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des([-3, -2, -1, 5, -2]),12)))",
    "io_inp": [
      -3,
      -2,
      -1,
      5,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(input),12)))"
  },
  {
    "input": "input : list = [-5, 5, 5, -5, -3]\noutput : list = [1, 1, -7, -9, -9]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n([-5, 5, 5, -5, -3],1),3)))",
    "io_inp": [
      -5,
      5,
      5,
      -5,
      -3
    ],
    "io_out": [
      1,
      1,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(input,1),3)))"
  },
  {
    "input": "input : list = [-5, 2, 3, -4, 1, 3]\noutput : list = [16, -40, -48, 8, -32, -48]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n([-5, 2, 3, -4, 1, 3],-2),-4),-2),4)",
    "io_inp": [
      -5,
      2,
      3,
      -4,
      1,
      3
    ],
    "io_out": [
      16,
      -40,
      -48,
      8,
      -32,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(input,-2),-4),-2),4)"
  },
  {
    "input": "input : list = [2, 3, -5, -5, -2, 5]\noutput : list = [3, 4, -4, -4, -1, 6]",
    "output": "generated_output : list = sub_n([2, 3, -5, -5, -2, 5],-1)",
    "io_inp": [
      2,
      3,
      -5,
      -5,
      -2,
      5
    ],
    "io_out": [
      3,
      4,
      -4,
      -4,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, -4, -4, 5]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -4, -4, 5],1)",
    "io_inp": [
      0,
      -4,
      -4,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(add_n([4, 4],2)))))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(add_n(input,2)))))"
  },
  {
    "input": "input : list = [-3, 1, 0, -3, 0, 5]\noutput : list = [-20, -4, 0, 0, 12, 12]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(mul_n([-3, 1, 0, -3, 0, 5],-4)))),6)",
    "io_inp": [
      -3,
      1,
      0,
      -3,
      0,
      5
    ],
    "io_out": [
      -20,
      -4,
      0,
      0,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(mul_n(input,-4)))),6)"
  },
  {
    "input": "input : list = [2, -2, 4, 4, -1, -4]\noutput : list = [5, 5, 3, 0, -1, -3]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(sort_des([2, -2, 4, 4, -1, -4])),-1),2))",
    "io_inp": [
      2,
      -2,
      4,
      4,
      -1,
      -4
    ],
    "io_out": [
      5,
      5,
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(sort_des(input)),-1),2))"
  },
  {
    "input": "input : list = [-1, 0, -3, -5]\noutput : list = [-20, -12, -4, 0]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc([-1, 0, -3, -5])),-2)),-2)",
    "io_inp": [
      -1,
      0,
      -3,
      -5
    ],
    "io_out": [
      -20,
      -12,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc(input)),-2)),-2)"
  },
  {
    "input": "input : list = [-1, 3, -3, 0, 4, -5]\noutput : list = [20, -16, 0, 12, -12, 4]",
    "output": "generated_output : list = take(mul_n(reverse([-1, 3, -3, 0, 4, -5]),-4),8)",
    "io_inp": [
      -1,
      3,
      -3,
      0,
      4,
      -5
    ],
    "io_out": [
      20,
      -16,
      0,
      12,
      -12,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),-4),8)"
  },
  {
    "input": "input : list = [0, -5, 5]\noutput : list = [-1, 4, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(mul_n([0, -5, 5],1)))),-4)",
    "io_inp": [
      0,
      -5,
      5
    ],
    "io_out": [
      -1,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(mul_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [-3, 5, -5, -3, 2]\noutput : list = [-5, -3, -3, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([-3, 5, -5, -3, 2])))",
    "io_inp": [
      -3,
      5,
      -5,
      -3,
      2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [5, -2, -3, 4, 5]\noutput : list = [-20, -20, -16, 8, 12]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(sort_asc([5, -2, -3, 4, 5])),-4)))",
    "io_inp": [
      5,
      -2,
      -3,
      4,
      5
    ],
    "io_out": [
      -20,
      -20,
      -16,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [1, -2, -5, -3, 2]\noutput : list = [-30, -20, -15, 0, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n([1, -2, -5, -3, 2],5))),5)",
    "io_inp": [
      1,
      -2,
      -5,
      -3,
      2
    ],
    "io_out": [
      -30,
      -20,
      -15,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(input,5))),5)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(take([-2, 2, -2],1)),10),-3),-2)",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(take(input,1)),10),-3),-2)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 5, -4],1)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [5, 0, 0]",
    "output": "generated_output : list = sort_des([0, 5, 0])",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, -2, 4]\noutput : list = [12, -6, 3, 0]",
    "output": "generated_output : list = mul_n(reverse([0, 1, -2, 4]),3)",
    "io_inp": [
      0,
      1,
      -2,
      4
    ],
    "io_out": [
      12,
      -6,
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [6, 5]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n([1, 2],1))),3))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(add_n(input,1))),3))"
  },
  {
    "input": "input : list = [2, -5, -4, -3]\noutput : list = [-4, -3, -2, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n([2, -5, -4, -3],-4),-3)))",
    "io_inp": [
      2,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(input,-4),-3)))"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = take(drop([3, -1, 5],1),9)",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),9)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [18, 24, 30]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(reverse([-1, -3, -5]),1),5),-3))",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      18,
      24,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(reverse(input),1),5),-3))"
  },
  {
    "input": "input : list = [-2, -4, -5, -4, -3]\noutput : list = [3, 4, 4, 5, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_des([-2, -4, -5, -4, -3])),4)),-4)",
    "io_inp": [
      -2,
      -4,
      -5,
      -4,
      -3
    ],
    "io_out": [
      3,
      4,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sort_des(input)),4)),-4)"
  },
  {
    "input": "input : list = [0, -3, 3, 0, -3, 5]\noutput : list = [15, -9, 0, 9, -9, 0]",
    "output": "generated_output : list = mul_n(reverse([0, -3, 3, 0, -3, 5]),3)",
    "io_inp": [
      0,
      -3,
      3,
      0,
      -3,
      5
    ],
    "io_out": [
      15,
      -9,
      0,
      9,
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [3, -4, 4, -4, -2, 4]\noutput : list = [-2, -2, -5, -20, -26, -26]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(add_n([3, -4, 4, -4, -2, 4],-4)),-3),-2),-1)",
    "io_inp": [
      3,
      -4,
      4,
      -4,
      -2,
      4
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -20,
      -26,
      -26
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(add_n(input,-4)),-3),-2),-1)"
  },
  {
    "input": "input : list = [3, 2, 1, -4]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = reverse(sort_des(drop(sub_n(reverse([3, 2, 1, -4]),4),1)))",
    "io_inp": [
      3,
      2,
      1,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(sub_n(reverse(input),4),1)))"
  },
  {
    "input": "input : list = [2, 2, 0]\noutput : list = [7]",
    "output": "generated_output : list = add_n(take(sort_asc(take([2, 2, 0],1)),19),5)",
    "io_inp": [
      2,
      2,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(input,1)),19),5)"
  },
  {
    "input": "input : list = [3, 1, 4, -3]\noutput : list = [6, 4, 7, 0]",
    "output": "generated_output : list = take(sub_n([3, 1, 4, -3],-3),15)",
    "io_inp": [
      3,
      1,
      4,
      -3
    ],
    "io_out": [
      6,
      4,
      7,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),15)"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [-1, 2, 3]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_asc([-4, 0, -3]))),1),-1)",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_asc(input))),1),-1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(reverse([-2, -1]),1))))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(reverse(input),1))))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [4, -1]",
    "output": "generated_output : list = add_n(sort_des([5, 0]),-1)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc([-2, -5])",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(reverse([-4, -4])),2)))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(reverse(input)),2)))"
  },
  {
    "input": "input : list = [-1, 1, 4, -4, -2, -1]\noutput : list = [-4, -10, -19, 5, -1, -4]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(mul_n([-1, 1, 4, -4, -2, -1],-3)),-2)),-5)",
    "io_inp": [
      -1,
      1,
      4,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -10,
      -19,
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(mul_n(input,-3)),-2)),-5)"
  },
  {
    "input": "input : list = [-1, -3, 0, 2]\noutput : list = [-13, -5, -1, 7]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(sub_n([-1, -3, 0, 2],-1),4)),5),31)",
    "io_inp": [
      -1,
      -3,
      0,
      2
    ],
    "io_out": [
      -13,
      -5,
      -1,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(sub_n(input,-1),4)),5),31)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [-2, -2, -2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(sort_asc([2, 2, 2]),15)),-1))",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(sort_asc(input),15)),-1))"
  },
  {
    "input": "input : list = [2, -2, 5, -1, -1, 0]\noutput : list = [2, -2]",
    "output": "generated_output : list = take([2, -2, 5, -1, -1, 0],2)",
    "io_inp": [
      2,
      -2,
      5,
      -1,
      -1,
      0
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 3, 0, -1, 4]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(take(add_n(take(take([1, 3, 0, -1, 4],1),9),1),22),-3)",
    "io_inp": [
      1,
      3,
      0,
      -1,
      4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(take(input,1),9),1),22),-3)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [3, -5, -4]",
    "output": "generated_output : list = sub_n([5, -3, -2],2)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      3,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, 0, -3, -5]\noutput : list = [0, 0, 6, 10]",
    "output": "generated_output : list = mul_n(take(take(reverse(reverse([0, 0, -3, -5])),24),12),-2)",
    "io_inp": [
      0,
      0,
      -3,
      -5
    ],
    "io_out": [
      0,
      0,
      6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(reverse(input)),24),12),-2)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [7, -3]",
    "output": "generated_output : list = sub_n([5, -5],-2)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -4, -1, 3, -3, 5]\noutput : list = [75, 45, 30, -15, -45, -60]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse([2, -4, -1, 3, -3, 5]),3)),5)",
    "io_inp": [
      2,
      -4,
      -1,
      3,
      -3,
      5
    ],
    "io_out": [
      75,
      45,
      30,
      -15,
      -45,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(input),3)),5)"
  },
  {
    "input": "input : list = [5, 1, 3, 3, -1, 4]\noutput : list = [-6, -4, -2, -2, -1, 0]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n([5, 1, 3, 3, -1, 4],2)),8),1),-2)",
    "io_inp": [
      5,
      1,
      3,
      3,
      -1,
      4
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(sub_n(input,2)),8),1),-2)"
  },
  {
    "input": "input : list = [-4, -1, 1, -5]\noutput : list = [-3, -5, -8, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take(sort_asc([-4, -1, 1, -5]),12))),4)",
    "io_inp": [
      -4,
      -1,
      1,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(sort_asc(input),12))),4)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [2, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(sort_des([5, -4])),-3)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [3, -1, -5, -3, 1]\noutput : list = [-5, -3, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([3, -1, -5, -3, 1])",
    "io_inp": [
      3,
      -1,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, 3, -5, -1, 4]\noutput : list = [0, -1, -4, -5, -5, -9]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(sub_n([-1, 0, 3, -5, -1, 4],4),-2),-1)),-3)",
    "io_inp": [
      -1,
      0,
      3,
      -5,
      -1,
      4
    ],
    "io_out": [
      0,
      -1,
      -4,
      -5,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(sub_n(input,4),-2),-1)),-3)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-9, -5]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(sort_des([-1, -5])),4),16))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(sort_des(input)),4),16))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse([-1, 2])),-1))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(input)),-1))"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [1, 1, 2]",
    "output": "generated_output : list = take(take(sub_n(sub_n(sort_asc([0, 1, 0]),4),-5),25),23)",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(sort_asc(input),4),-5),25),23)"
  },
  {
    "input": "input : list = [-4, 3, 1, -3, -5]\noutput : list = [-5, 100, 70, 10, -20]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(mul_n([-4, 3, 1, -3, -5],-3),-4),-4),3),-5)",
    "io_inp": [
      -4,
      3,
      1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      100,
      70,
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(mul_n(input,-3),-4),-4),3),-5)"
  },
  {
    "input": "input : list = [2, 5, -1, -1, 5]\noutput : list = [0, 0, -3, -6, -6]",
    "output": "generated_output : list = sort_des(add_n(take(sort_asc(reverse([2, 5, -1, -1, 5])),19),-5))",
    "io_inp": [
      2,
      5,
      -1,
      -1,
      5
    ],
    "io_out": [
      0,
      0,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_asc(reverse(input)),19),-5))"
  },
  {
    "input": "input : list = [-2, 4, 0, 0, 1]\noutput : list = [1, 0, 0, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, 0, 0, 1])",
    "io_inp": [
      -2,
      4,
      0,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      0,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -5, 2]\noutput : list = [16, -8, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(sub_n([1, -5, 2],-1),10))),-4)",
    "io_inp": [
      1,
      -5,
      2
    ],
    "io_out": [
      16,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(sub_n(input,-1),10))),-4)"
  },
  {
    "input": "input : list = [0, 1, 1, 3, 2]\noutput : list = [-2, -1, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(add_n([0, 1, 1, 3, 2],-2)),11)))",
    "io_inp": [
      0,
      1,
      1,
      3,
      2
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(add_n(input,-2)),11)))"
  },
  {
    "input": "input : list = [2, -5, 5, 3, 5, 2]\noutput : list = [4, 11, 11, 12, 14, 14]",
    "output": "generated_output : list = add_n(add_n(add_n(take(sort_asc([2, -5, 5, 3, 5, 2]),22),2),4),3)",
    "io_inp": [
      2,
      -5,
      5,
      3,
      5,
      2
    ],
    "io_out": [
      4,
      11,
      11,
      12,
      14,
      14
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(sort_asc(input),22),2),4),3)"
  },
  {
    "input": "input : list = [5, 4, 2, -4, -4]\noutput : list = [4, 4, -2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(sort_asc([5, 4, 2, -4, -4])),-1)))",
    "io_inp": [
      5,
      4,
      2,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc([0, -2]),1),5),-4))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sort_asc(input),1),5),-4))"
  },
  {
    "input": "input : list = [2, 1, -3, 1]\noutput : list = [-9, -5, -5, -4]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(reverse([2, 1, -3, 1]),3),9),3))",
    "io_inp": [
      2,
      1,
      -3,
      1
    ],
    "io_out": [
      -9,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(reverse(input),3),9),3))"
  },
  {
    "input": "input : list = [-5, -4, -3, 1]\noutput : list = [4, -12, -16]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(drop([-5, -4, -3, 1],1),20),-1)),-4)",
    "io_inp": [
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(drop(input,1),20),-1)),-4)"
  },
  {
    "input": "input : list = [1, 0, 2]\noutput : list = [2, 0, 1]",
    "output": "generated_output : list = add_n(reverse(sub_n([1, 0, 2],2)),2)",
    "io_inp": [
      1,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,2)),2)"
  },
  {
    "input": "input : list = [-5, -4, 1, 0]\noutput : list = [5, 4, 0, -1]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc([-5, -4, 1, 0])),4),15)",
    "io_inp": [
      -5,
      -4,
      1,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(input)),4),15)"
  },
  {
    "input": "input : list = [1, 2, 5, 1, -3, 4]\noutput : list = [55, 60, 75, 55, 35, 70]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n([1, 2, 5, 1, -3, 4],-5),-5),-1),-5)",
    "io_inp": [
      1,
      2,
      5,
      1,
      -3,
      4
    ],
    "io_out": [
      55,
      60,
      75,
      55,
      35,
      70
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(input,-5),-5),-1),-5)"
  },
  {
    "input": "input : list = [3, 0, 1, -4]\noutput : list = [-20, -24, -4]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(reverse([3, 0, 1, -4]),5),3)),-4)",
    "io_inp": [
      3,
      0,
      1,
      -4
    ],
    "io_out": [
      -20,
      -24,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(reverse(input),5),3)),-4)"
  },
  {
    "input": "input : list = [-5, -5, 1, -5, 4, 4]\noutput : list = [-3, -3, -3, 3, 6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des([-5, -5, 1, -5, 4, 4]),3),-5))",
    "io_inp": [
      -5,
      -5,
      1,
      -5,
      4,
      4
    ],
    "io_out": [
      -3,
      -3,
      -3,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(input),3),-5))"
  },
  {
    "input": "input : list = [-5, -1, -2, 3, -1, -4]\noutput : list = [15, -5, -5, -10, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n([-5, -1, -2, 3, -1, -4],5))))",
    "io_inp": [
      -5,
      -1,
      -2,
      3,
      -1,
      -4
    ],
    "io_out": [
      15,
      -5,
      -5,
      -10,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(input,5))))"
  },
  {
    "input": "input : list = [0, 5, -5, 2, -2, 1]\noutput : list = [0, -8, -16, -40]",
    "output": "generated_output : list = mul_n(mul_n(drop(mul_n(sort_asc([0, 5, -5, 2, -2, 1]),-2),2),2),2)",
    "io_inp": [
      0,
      5,
      -5,
      2,
      -2,
      1
    ],
    "io_out": [
      0,
      -8,
      -16,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(mul_n(sort_asc(input),-2),2),2),2)"
  },
  {
    "input": "input : list = [0, 3, 5, 4, 1, -2]\noutput : list = [-35, -20]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(take([0, 3, 5, 4, 1, -2],2),4),-5)),21)",
    "io_inp": [
      0,
      3,
      5,
      4,
      1,
      -2
    ],
    "io_out": [
      -35,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(take(input,2),4),-5)),21)"
  },
  {
    "input": "input : list = [3, -5, -4, -4, 4, -2]\noutput : list = [-6, -6, -4, 2]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(drop([3, -5, -4, -4, 4, -2],2))),-2))",
    "io_inp": [
      3,
      -5,
      -4,
      -4,
      4,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(drop(input,2))),-2))"
  },
  {
    "input": "input : list = [-2, 4, 4, 4, 5]\noutput : list = [-7, -6, -6, -6, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(add_n([-2, 4, 4, 4, 5],2),20)),-1))",
    "io_inp": [
      -2,
      4,
      4,
      4,
      5
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(add_n(input,2),20)),-1))"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(drop([-5, -2, -1],1),14))))",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(drop(input,1),14))))"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [12, 0, -2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(sort_asc([1, 2, -5]))),-2),-2)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      12,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(sort_asc(input))),-2),-2)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sub_n([1, -4],3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, -2, 4, 4]\noutput : list = [6, 6, 0, 6]",
    "output": "generated_output : list = take(add_n(reverse([4, -2, 4, 4]),2),10)",
    "io_inp": [
      4,
      -2,
      4,
      4
    ],
    "io_out": [
      6,
      6,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),2),10)"
  },
  {
    "input": "input : list = [-5, 0, -2, 0, -5, -5]\noutput : list = [-5, -5, 0, -2, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, -2, 0, -5, -5])",
    "io_inp": [
      -5,
      0,
      -2,
      0,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      0,
      -2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -4, -5, 1, -3]\noutput : list = [16, 16, 36, 41, 46]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_des(sub_n([1, -4, -5, 1, -3],3)),-5),-5),1)",
    "io_inp": [
      1,
      -4,
      -5,
      1,
      -3
    ],
    "io_out": [
      16,
      16,
      36,
      41,
      46
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_des(sub_n(input,3)),-5),-5),1)"
  },
  {
    "input": "input : list = [5, 4, -4, 0, 2, 0]\noutput : list = [6, 5, 3, 1, 1, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(add_n(sort_des([5, 4, -4, 0, 2, 0]),5),-4)))",
    "io_inp": [
      5,
      4,
      -4,
      0,
      2,
      0
    ],
    "io_out": [
      6,
      5,
      3,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(add_n(sort_des(input),5),-4)))"
  },
  {
    "input": "input : list = [-2, -4, 4, 0, -2]\noutput : list = [7, 3, 1, 1, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(add_n([-2, -4, 4, 0, -2],-2)))),5)",
    "io_inp": [
      -2,
      -4,
      4,
      0,
      -2
    ],
    "io_out": [
      7,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(add_n(input,-2)))),5)"
  },
  {
    "input": "input : list = [0, -2, 4, -5, -5, -1]\noutput : list = [32, 48, 0, 72, 72, 40]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(sub_n([0, -2, 4, -5, -5, -1],4),4)),-2))",
    "io_inp": [
      0,
      -2,
      4,
      -5,
      -5,
      -1
    ],
    "io_out": [
      32,
      48,
      0,
      72,
      72,
      40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(sub_n(input,4),4)),-2))"
  },
  {
    "input": "input : list = [0, 0, 5, 1]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 0, 5, 1],1)",
    "io_inp": [
      0,
      0,
      5,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [19, 19]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n(mul_n([-3, -3],-4),-5),18),2))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      19,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(mul_n(input,-4),-5),18),2))"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [0, 3, -5]",
    "output": "generated_output : list = reverse([-5, 3, 0])",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [2, -2]",
    "output": "generated_output : list = sub_n(take(reverse([-1, 3]),9),1)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),9),1)"
  },
  {
    "input": "input : list = [-1, -3, -4, 5, -5]\noutput : list = [60]",
    "output": "generated_output : list = take(sort_des(mul_n(mul_n(sub_n([-1, -3, -4, 5, -5],1),-5),-3)),1)",
    "io_inp": [
      -1,
      -3,
      -4,
      5,
      -5
    ],
    "io_out": [
      60
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(mul_n(sub_n(input,1),-5),-3)),1)"
  },
  {
    "input": "input : list = [2, 3, -1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = drop([2, 3, -1, -1],2)",
    "io_inp": [
      2,
      3,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -1, -2, -3, -5, -3]\noutput : list = [6, 2, 1, 0, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(sort_asc([3, -1, -2, -3, -5, -3])),3)))",
    "io_inp": [
      3,
      -1,
      -2,
      -3,
      -5,
      -3
    ],
    "io_out": [
      6,
      2,
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [0, -5, -5, 5]\noutput : list = [-1, -6]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(take([0, -5, -5, 5],2),-2),-3),-1),-1)",
    "io_inp": [
      0,
      -5,
      -5,
      5
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(take(input,2),-2),-3),-1),-1)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sort_des([4, 0, -1])),-1)))",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [6, 0]",
    "output": "generated_output : list = mul_n(add_n([0, 2],-2),-3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-3)"
  },
  {
    "input": "input : list = [4, -2, 0, 3]\noutput : list = [-36, 0, 24]",
    "output": "generated_output : list = reverse(sort_des(mul_n(drop(mul_n([4, -2, 0, 3],4),1),-3)))",
    "io_inp": [
      4,
      -2,
      0,
      3
    ],
    "io_out": [
      -36,
      0,
      24
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(drop(mul_n(input,4),1),-3)))"
  },
  {
    "input": "input : list = [2, 5, 5, -5]\noutput : list = [-25, 10, 25, 25]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(sort_des([2, 5, 5, -5])),5),12),1)",
    "io_inp": [
      2,
      5,
      5,
      -5
    ],
    "io_out": [
      -25,
      10,
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(sort_des(input)),5),12),1)"
  },
  {
    "input": "input : list = [2, -5, -1, 0]\noutput : list = [-5, -1, 0, 2]",
    "output": "generated_output : list = reverse(sort_des([2, -5, -1, 0]))",
    "io_inp": [
      2,
      -5,
      -1,
      0
    ],
    "io_out": [
      -5,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -2, 1, 5]\noutput : list = [-8, -6]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(take([-4, -2, 1, 5],2),-3),4),-3),1)",
    "io_inp": [
      -4,
      -2,
      1,
      5
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(take(input,2),-3),4),-3),1)"
  },
  {
    "input": "input : list = [4, -1, 5, 3, -3]\noutput : list = [15, 13, 11, 3, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(sort_asc([4, -1, 5, 3, -3]),2)),1),-4)",
    "io_inp": [
      4,
      -1,
      5,
      3,
      -3
    ],
    "io_out": [
      15,
      13,
      11,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(sort_asc(input),2)),1),-4)"
  },
  {
    "input": "input : list = [-3, 2, 3, 2, 3, -5]\noutput : list = [-5, 3, 2, 3, 2, -3]",
    "output": "generated_output : list = reverse([-3, 2, 3, 2, 3, -5])",
    "io_inp": [
      -3,
      2,
      3,
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      3,
      2,
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 4, -5, -5, -3]\noutput : list = [3, 2, -7, -7, -5]",
    "output": "generated_output : list = add_n([5, 4, -5, -5, -3],-2)",
    "io_inp": [
      5,
      4,
      -5,
      -5,
      -3
    ],
    "io_out": [
      3,
      2,
      -7,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [-3, -1, 5]",
    "output": "generated_output : list = sort_asc([-1, -3, 5])",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2, -5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sub_n(sub_n(drop([1, -2, -5],1),-5),-2)",
    "io_inp": [
      1,
      -2,
      -5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),-5),-2)"
  },
  {
    "input": "input : list = [4, 1, 5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = drop([4, 1, 5, -2],2)",
    "io_inp": [
      4,
      1,
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [4, 2]",
    "output": "generated_output : list = add_n([0, -2],4)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [2, -2, 0, 3, -2]\noutput : list = [3, 2, 0, -2, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc([2, -2, 0, 3, -2]))))",
    "io_inp": [
      2,
      -2,
      0,
      3,
      -2
    ],
    "io_out": [
      3,
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [-2, -3, -3, -3, 0, 2]\noutput : list = [19, 24, 24, 24, 9, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n([-2, -3, -3, -3, 0, 2],-5),5),2),2)",
    "io_inp": [
      -2,
      -3,
      -3,
      -3,
      0,
      2
    ],
    "io_out": [
      19,
      24,
      24,
      24,
      9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(input,-5),5),2),2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_asc([5, -4]),1))))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [-2, 4, 2, 3, -4]\noutput : list = [-2, -4, -6, -14, -18]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(take(add_n([-2, 4, 2, 3, -4],-5),10)),2))",
    "io_inp": [
      -2,
      4,
      2,
      3,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(take(add_n(input,-5),10)),2))"
  },
  {
    "input": "input : list = [0, 5, -3, 4, 5, 3]\noutput : list = [-3, 0, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([0, 5, -3, 4, 5, 3]))",
    "io_inp": [
      0,
      5,
      -3,
      4,
      5,
      3
    ],
    "io_out": [
      -3,
      0,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, 2, 4, 2, 2, 0]\noutput : list = [12, 12, 4, 4, 4, -4]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(sort_des([4, 2, 4, 2, 2, 0]),1),4)),8)",
    "io_inp": [
      4,
      2,
      4,
      2,
      2,
      0
    ],
    "io_out": [
      12,
      12,
      4,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(sort_des(input),1),4)),8)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-27, -27]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(mul_n([-3, -3],3)),3)))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -27,
      -27
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(mul_n(input,3)),3)))"
  },
  {
    "input": "input : list = [1, -4, -4, 2, 0]\noutput : list = [16, 15, 14, 10, 10]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sub_n([1, -4, -4, 2, 0],-4),-5))),5)",
    "io_inp": [
      1,
      -4,
      -4,
      2,
      0
    ],
    "io_out": [
      16,
      15,
      14,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sub_n(input,-4),-5))),5)"
  },
  {
    "input": "input : list = [0, 0, 5, 4, -4, 1]\noutput : list = [-13, -1, -1, 2, 11, 14]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des([0, 0, 5, 4, -4, 1]),3)),-1)",
    "io_inp": [
      0,
      0,
      5,
      4,
      -4,
      1
    ],
    "io_out": [
      -13,
      -1,
      -1,
      2,
      11,
      14
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(input),3)),-1)"
  },
  {
    "input": "input : list = [-4, -5, -4, -4, -3]\noutput : list = [11, 15, 15]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse([-4, -5, -4, -4, -3]),-4),3),1)",
    "io_inp": [
      -4,
      -5,
      -4,
      -4,
      -3
    ],
    "io_out": [
      11,
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(input),-4),3),1)"
  },
  {
    "input": "input : list = [5, -3, 5, -1, 5, 4]\noutput : list = [-8, 2, 4, 4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(drop([5, -3, 5, -1, 5, 4],2)),-3)),2)",
    "io_inp": [
      5,
      -3,
      5,
      -1,
      5,
      4
    ],
    "io_out": [
      -8,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(drop(input,2)),-3)),2)"
  },
  {
    "input": "input : list = [3, 1, 5, 0, 4, 1]\noutput : list = [1, -5, 3, -7, 1, -3]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(reverse([3, 1, 5, 0, 4, 1]),-1),-2),5),-4)",
    "io_inp": [
      3,
      1,
      5,
      0,
      4,
      1
    ],
    "io_out": [
      1,
      -5,
      3,
      -7,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(reverse(input),-1),-2),5),-4)"
  },
  {
    "input": "input : list = [-5, -3, -1, 4]\noutput : list = [-5, -3, -1, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des([-5, -3, -1, 4])))",
    "io_inp": [
      -5,
      -3,
      -1,
      4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, 3, 4, 1]\noutput : list = [13, 1, -7, -11]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(mul_n([-2, 3, 4, 1],-4),-3))),2)",
    "io_inp": [
      -2,
      3,
      4,
      1
    ],
    "io_out": [
      13,
      1,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(mul_n(input,-4),-3))),2)"
  },
  {
    "input": "input : list = [2, -2, 5]\noutput : list = [8, 4, 11]",
    "output": "generated_output : list = sub_n(sub_n([2, -2, 5],-2),-4)",
    "io_inp": [
      2,
      -2,
      5
    ],
    "io_out": [
      8,
      4,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-4)"
  },
  {
    "input": "input : list = [-3, 1, 5, -4, 3, 3]\noutput : list = [8, 7, 3, 1, 1, -1]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n([-3, 1, 5, -4, 3, 3],-1)),25),4)",
    "io_inp": [
      -3,
      1,
      5,
      -4,
      3,
      3
    ],
    "io_out": [
      8,
      7,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(input,-1)),25),4)"
  },
  {
    "input": "input : list = [1, 1, 0, -5]\noutput : list = [1, 0, -5]",
    "output": "generated_output : list = drop([1, 1, 0, -5],1)",
    "io_inp": [
      1,
      1,
      0,
      -5
    ],
    "io_out": [
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = add_n([1, -1],-3)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [20, -30]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(mul_n([-3, 2],5)))),2)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      20,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(mul_n(input,5)))),2)"
  },
  {
    "input": "input : list = [-2, -3, 5, -4]\noutput : list = [2, 1, 9, 0]",
    "output": "generated_output : list = sub_n([-2, -3, 5, -4],-4)",
    "io_inp": [
      -2,
      -3,
      5,
      -4
    ],
    "io_out": [
      2,
      1,
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(sort_asc([0, 4, 2]))),1),5)",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(sort_asc(input))),1),5)"
  },
  {
    "input": "input : list = [-2, -3, 1, -4]\noutput : list = [-4, -3, -2, 1]",
    "output": "generated_output : list = sort_asc([-2, -3, 1, -4])",
    "io_inp": [
      -2,
      -3,
      1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -1, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([-5, -1, -3, -3],2)",
    "io_inp": [
      -5,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(sub_n([3, 4],2)))),11)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(sub_n(input,2)))),11)"
  },
  {
    "input": "input : list = [5, -2, 0, 4, -4]\noutput : list = [22, 1, 7, 19, -5]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(mul_n([5, -2, 0, 4, -4],3)),-4)),-3)",
    "io_inp": [
      5,
      -2,
      0,
      4,
      -4
    ],
    "io_out": [
      22,
      1,
      7,
      19,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(mul_n(input,3)),-4)),-3)"
  },
  {
    "input": "input : list = [5, 2, 0]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc([5, 2, 0])))))",
    "io_inp": [
      5,
      2,
      0
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, 1, 3, 2, -3]\noutput : list = [-4, 0, 0, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([1, 1, 3, 2, -3],-1)),-2)",
    "io_inp": [
      1,
      1,
      3,
      2,
      -3
    ],
    "io_out": [
      -4,
      0,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,-1)),-2)"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [-15, 0, 3]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(reverse([5, 0, -1]),-3)),4))",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      -15,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(reverse(input),-3)),4))"
  },
  {
    "input": "input : list = [-1, 2, 2, -2, 0, -1]\noutput : list = [-1, 0, -2]",
    "output": "generated_output : list = reverse(drop([-1, 2, 2, -2, 0, -1],3))",
    "io_inp": [
      -1,
      2,
      2,
      -2,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [4, -2, 3, 3, -1, -5]\noutput : list = [1, -5, 0, 0, -4, -8]",
    "output": "generated_output : list = add_n([4, -2, 3, 3, -1, -5],-3)",
    "io_inp": [
      4,
      -2,
      3,
      3,
      -1,
      -5
    ],
    "io_out": [
      1,
      -5,
      0,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = sort_des([-4, -5, 3])",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_asc(sub_n([1, 1, 5],3)),-2),-4),1)",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_asc(sub_n(input,3)),-2),-4),1)"
  },
  {
    "input": "input : list = [5, 0, -2, 5, 5, -5]\noutput : list = [2, 2, 2, -3, -5, -8]",
    "output": "generated_output : list = add_n(sort_des(sort_des([5, 0, -2, 5, 5, -5])),-3)",
    "io_inp": [
      5,
      0,
      -2,
      5,
      5,
      -5
    ],
    "io_out": [
      2,
      2,
      2,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [-5, 0, 1, -4, -1]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(reverse(reverse(take([-5, 0, 1, -4, -1],2))))",
    "io_inp": [
      -5,
      0,
      1,
      -4,
      -1
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(input,2))))"
  },
  {
    "input": "input : list = [-1, 2, -3, 2, 1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(drop([-1, 2, -3, 2, 1, -3],4))",
    "io_inp": [
      -1,
      2,
      -3,
      2,
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,4))"
  },
  {
    "input": "input : list = [3, -2, 5]\noutput : list = [14, 10, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse(sort_des([3, -2, 5]))),2),2)",
    "io_inp": [
      3,
      -2,
      5
    ],
    "io_out": [
      14,
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(sort_des(input))),2),2)"
  },
  {
    "input": "input : list = [-5, -4, -3, 3, -4, 5]\noutput : list = [-5, -4, -4, -3, 3, 5]",
    "output": "generated_output : list = sort_asc([-5, -4, -3, 3, -4, 5])",
    "io_inp": [
      -5,
      -4,
      -3,
      3,
      -4,
      5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2, 5, -1, -5, 5]\noutput : list = [5, -5, -1, 5, 2, -2]",
    "output": "generated_output : list = take(reverse([-2, 2, 5, -1, -5, 5]),17)",
    "io_inp": [
      -2,
      2,
      5,
      -1,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      -1,
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),17)"
  },
  {
    "input": "input : list = [-1, -4, 2, 2]\noutput : list = [0, 0, -6]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(drop([-1, -4, 2, 2],1),2),1)))",
    "io_inp": [
      -1,
      -4,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(drop(input,1),2),1)))"
  },
  {
    "input": "input : list = [4, -4, 1, -1, 4, 1]\noutput : list = [22, -18, 7, -3, 22, 7]",
    "output": "generated_output : list = sub_n(mul_n([4, -4, 1, -1, 4, 1],5),-2)",
    "io_inp": [
      4,
      -4,
      1,
      -1,
      4,
      1
    ],
    "io_out": [
      22,
      -18,
      7,
      -3,
      22,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-2)"
  },
  {
    "input": "input : list = [0, 1, -5, 0]\noutput : list = [13, 8, 14, 13]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(reverse([0, 1, -5, 0]),13),-3),5),-5)",
    "io_inp": [
      0,
      1,
      -5,
      0
    ],
    "io_out": [
      13,
      8,
      14,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(reverse(input),13),-3),5),-5)"
  },
  {
    "input": "input : list = [4, -3, 3, -1, 0]\noutput : list = [15, 13, 7, 5, 1]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_des(sort_asc([4, -3, 3, -1, 0])),-1),2),5)",
    "io_inp": [
      4,
      -3,
      3,
      -1,
      0
    ],
    "io_out": [
      15,
      13,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_des(sort_asc(input)),-1),2),5)"
  },
  {
    "input": "input : list = [-4, 5, -2, 0, -1, 5]\noutput : list = [5, -1, 0, -2, 5]",
    "output": "generated_output : list = reverse(drop([-4, 5, -2, 0, -1, 5],1))",
    "io_inp": [
      -4,
      5,
      -2,
      0,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      0,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 1, 1, 0]\noutput : list = [-17, -2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(take([-4, 1, 1, 0],2),3))),-5)",
    "io_inp": [
      -4,
      1,
      1,
      0
    ],
    "io_out": [
      -17,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(take(input,2),3))),-5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(mul_n([-2, -1],-1))),2),2)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(mul_n(input,-1))),2),2)"
  },
  {
    "input": "input : list = [5, -2, -2, 5, -2, 4]\noutput : list = [15, 15, 12, -6, -6, -6]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse([5, -2, -2, 5, -2, 4])),11),3)",
    "io_inp": [
      5,
      -2,
      -2,
      5,
      -2,
      4
    ],
    "io_out": [
      15,
      15,
      12,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(input)),11),3)"
  },
  {
    "input": "input : list = [-4, -3, -1]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(take(take(sort_des([-4, -3, -1]),9),25)))",
    "io_inp": [
      -4,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(sort_des(input),9),25)))"
  },
  {
    "input": "input : list = [1, 0, -2, -5, 5, 5]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(take(take([1, 0, -2, -5, 5, 5],2),22)))",
    "io_inp": [
      1,
      0,
      -2,
      -5,
      5,
      5
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(input,2),22)))"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(drop([-5, -1, -1],1),7),-1)))",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(drop(input,1),7),-1)))"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [5, -3, 1]",
    "output": "generated_output : list = add_n(sub_n([3, -5, -1],2),4)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),4)"
  },
  {
    "input": "input : list = [5, 5, -1, 3, 3]\noutput : list = [-6, -14, -14, -18]",
    "output": "generated_output : list = sort_des(take(drop(mul_n(add_n([5, 5, -1, 3, 3],4),-2),1),14))",
    "io_inp": [
      5,
      5,
      -1,
      3,
      3
    ],
    "io_out": [
      -6,
      -14,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(mul_n(add_n(input,4),-2),1),14))"
  },
  {
    "input": "input : list = [0, 3, 2, -1]\noutput : list = [0, 3]",
    "output": "generated_output : list = take([0, 3, 2, -1],2)",
    "io_inp": [
      0,
      3,
      2,
      -1
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sub_n([-4, -2],-2),3),-4),-3),-5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sub_n(input,-2),3),-4),-3),-5)"
  },
  {
    "input": "input : list = [-5, 1, 0, 0, -4]\noutput : list = [-1, 0, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n([-5, 1, 0, 0, -4],4))",
    "io_inp": [
      -5,
      1,
      0,
      0,
      -4
    ],
    "io_out": [
      -1,
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [-1, -4, 5, -1, -4]\noutput : list = [-9, -9, -6, -6, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_des([-1, -4, 5, -1, -4])))),-5)",
    "io_inp": [
      -1,
      -4,
      5,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [-4, 0, 3, 4, -3, -3]\noutput : list = [12, 11, 8, 5, 5, 4]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_des([-4, 0, 3, 4, -3, -3]))),3),-5)",
    "io_inp": [
      -4,
      0,
      3,
      4,
      -3,
      -3
    ],
    "io_out": [
      12,
      11,
      8,
      5,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_des(input))),3),-5)"
  },
  {
    "input": "input : list = [4, -5, 4, 4]\noutput : list = [4, -5, 4, 4]",
    "output": "generated_output : list = take(reverse(reverse(reverse(reverse([4, -5, 4, 4])))),18)",
    "io_inp": [
      4,
      -5,
      4,
      4
    ],
    "io_out": [
      4,
      -5,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(reverse(input)))),18)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_des([2, 4])),-3),-1),-2)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(sort_des(input)),-3),-1),-2)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [0, 8, 36]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n([-2, 5, -4],-4),2))),2)",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      0,
      8,
      36
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sub_n(input,-4),2))),2)"
  },
  {
    "input": "input : list = [-3, -3, 0, 3]\noutput : list = [-10, -10, -7, -4]",
    "output": "generated_output : list = sub_n(add_n(add_n([-3, -3, 0, 3],-3),-2),2)",
    "io_inp": [
      -3,
      -3,
      0,
      3
    ],
    "io_out": [
      -10,
      -10,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-3),-2),2)"
  },
  {
    "input": "input : list = [5, -2, 2, 1, -3, 3]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -2, 2, 1, -3, 3],1)",
    "io_inp": [
      5,
      -2,
      2,
      1,
      -3,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -3, 3, -1, 1, 3]\noutput : list = [-3, -1, 1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([2, -3, 3, -1, 1, 3])",
    "io_inp": [
      2,
      -3,
      3,
      -1,
      1,
      3
    ],
    "io_out": [
      -3,
      -1,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -1, 1, 1, 3]\noutput : list = [-8, 8]",
    "output": "generated_output : list = drop(mul_n(mul_n(sort_des(mul_n([2, -1, 1, 1, 3],1)),4),-2),3)",
    "io_inp": [
      2,
      -1,
      1,
      1,
      3
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(sort_des(mul_n(input,1)),4),-2),3)"
  },
  {
    "input": "input : list = [-2, -1, -2, -5]\noutput : list = [4]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(take([-2, -1, -2, -5],1)),-1),2),5)",
    "io_inp": [
      -2,
      -1,
      -2,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(take(input,1)),-1),2),5)"
  },
  {
    "input": "input : list = [0, -1, -3]\noutput : list = [1, -2, -8]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(sort_asc([0, -1, -3])),3)),-1)",
    "io_inp": [
      0,
      -1,
      -3
    ],
    "io_out": [
      1,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(sort_asc(input)),3)),-1)"
  },
  {
    "input": "input : list = [5, 0, -4, 3, 3]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(drop(sort_des(take(reverse([5, 0, -4, 3, 3]),18)),4),-1)",
    "io_inp": [
      5,
      0,
      -4,
      3,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_des(take(reverse(input),18)),4),-1)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [5, 2]",
    "output": "generated_output : list = sub_n([3, 0],-2)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -5, -2]\noutput : list = [-10, -13, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n([-5, -5, -2],-3))),1),-4)",
    "io_inp": [
      -5,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n(input,-3))),1),-4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [17, -13]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([4, -2],5)),3)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      17,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,5)),3)"
  },
  {
    "input": "input : list = [-1, -1, 0, 5, -2]\noutput : list = [-10, 18, -2, -6, -6]",
    "output": "generated_output : list = reverse(add_n(mul_n([-1, -1, 0, 5, -2],4),-2))",
    "io_inp": [
      -1,
      -1,
      0,
      5,
      -2
    ],
    "io_out": [
      -10,
      18,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,4),-2))"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(take([-1, 3, -5],1),3),3)),-1)",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(take(input,1),3),3)),-1)"
  },
  {
    "input": "input : list = [-1, 3, 2, 3, 5, 1]\noutput : list = [16, 6, 1, -4, -4, -14]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(sort_des([-1, 3, 2, 3, 5, 1]),-2)),-5),-1)",
    "io_inp": [
      -1,
      3,
      2,
      3,
      5,
      1
    ],
    "io_out": [
      16,
      6,
      1,
      -4,
      -4,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(sort_des(input),-2)),-5),-1)"
  },
  {
    "input": "input : list = [-1, 5, 0, 4, 0, -2]\noutput : list = [-2, -1, 0, 0, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_des([-1, 5, 0, 4, 0, -2])))),17)",
    "io_inp": [
      -1,
      5,
      0,
      4,
      0,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_des(input)))),17)"
  },
  {
    "input": "input : list = [4, -3, 3, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(take([4, -3, 3, -3],1),3)),1))",
    "io_inp": [
      4,
      -3,
      3,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(take(input,1),3)),1))"
  },
  {
    "input": "input : list = [0, 0, -1, -3, -1]\noutput : list = [-180, -60, -60, 0, 0]",
    "output": "generated_output : list = mul_n(mul_n(take(mul_n(sort_asc([0, 0, -1, -3, -1]),-3),21),4),-5)",
    "io_inp": [
      0,
      0,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -180,
      -60,
      -60,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(mul_n(sort_asc(input),-3),21),4),-5)"
  },
  {
    "input": "input : list = [-2, 1, 1, 2, -1, -1]\noutput : list = [8, 4, 4, -4, -4, -8]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(reverse([-2, 1, 1, 2, -1, -1]))),-4),36)",
    "io_inp": [
      -2,
      1,
      1,
      2,
      -1,
      -1
    ],
    "io_out": [
      8,
      4,
      4,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(reverse(input))),-4),36)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [9, 0, 45]",
    "output": "generated_output : list = mul_n(mul_n([1, 0, 5],3),3)",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      9,
      0,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,3),3)"
  },
  {
    "input": "input : list = [0, 2, -1, -4, -4, -5]\noutput : list = [-3, 3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(take([0, 2, -1, -4, -4, -5],3),-3),21),-3))",
    "io_inp": [
      0,
      2,
      -1,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(take(input,3),-3),21),-3))"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-4, -5, -5]",
    "output": "generated_output : list = sub_n([-3, -4, -4],1)",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, 4, -1, 0, 5, -3]\noutput : list = [0, -1, -5, -6, -7, -8]",
    "output": "generated_output : list = take(reverse(add_n(take(sort_asc([-2, 4, -1, 0, 5, -3]),8),-5)),45)",
    "io_inp": [
      -2,
      4,
      -1,
      0,
      5,
      -3
    ],
    "io_out": [
      0,
      -1,
      -5,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sort_asc(input),8),-5)),45)"
  },
  {
    "input": "input : list = [-3, 4, 5, -3, -1, 2]\noutput : list = [-1]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_des([-3, 4, 5, -3, -1, 2])),-4),-1),1)",
    "io_inp": [
      -3,
      4,
      5,
      -3,
      -1,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_des(input)),-4),-1),1)"
  },
  {
    "input": "input : list = [-2, 5, 3, 2, -1, -4]\noutput : list = [-8, 4, 16]",
    "output": "generated_output : list = take(mul_n(drop([-2, 5, 3, 2, -1, -4],3),-4),5)",
    "io_inp": [
      -2,
      5,
      3,
      2,
      -1,
      -4
    ],
    "io_out": [
      -8,
      4,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,3),-4),5)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [-2, 5, -2]",
    "output": "generated_output : list = take(reverse(reverse([-2, 5, -2])),18)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),18)"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [-3, -1, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(add_n([-2, 5, -4],-4),-5)),32))",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      -3,
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(add_n(input,-4),-5)),32))"
  },
  {
    "input": "input : list = [0, -3, 0, -1]\noutput : list = [2, -1, 2, 1]",
    "output": "generated_output : list = sub_n([0, -3, 0, -1],-2)",
    "io_inp": [
      0,
      -3,
      0,
      -1
    ],
    "io_out": [
      2,
      -1,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [4, -1, 5, 2, 3]\noutput : list = [8, 3, 9, 6, 7]",
    "output": "generated_output : list = add_n([4, -1, 5, 2, 3],4)",
    "io_inp": [
      4,
      -1,
      5,
      2,
      3
    ],
    "io_out": [
      8,
      3,
      9,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [1, 4, 3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sub_n(take([1, 4, 3],1),-5),-4)",
    "io_inp": [
      1,
      4,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,1),-5),-4)"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [3, -6, -12]",
    "output": "generated_output : list = mul_n([1, -2, -4],3)",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      3,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, -1, -5, 0]\noutput : list = [-8, -4, -3, -3]",
    "output": "generated_output : list = add_n(take(reverse(take(sort_des([0, -1, -5, 0]),21)),26),-3)",
    "io_inp": [
      0,
      -1,
      -5,
      0
    ],
    "io_out": [
      -8,
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sort_des(input),21)),26),-3)"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-32]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(take([-3, -3, 1],1),3),5),8),2)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(take(input,1),3),5),8),2)"
  },
  {
    "input": "input : list = [2, 1, -5, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse(take(drop(sort_asc([2, 1, -5, -2]),2),29))",
    "io_inp": [
      2,
      1,
      -5,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(drop(sort_asc(input),2),29))"
  },
  {
    "input": "input : list = [5, -1, -3, -5]\noutput : list = [-3, -1, 1, 7]",
    "output": "generated_output : list = take(sub_n(sub_n(sort_asc(add_n([5, -1, -3, -5],-1)),2),-5),42)",
    "io_inp": [
      5,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -1,
      1,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sort_asc(add_n(input,-1)),2),-5),42)"
  },
  {
    "input": "input : list = [-3, 4, -3, -3, 5, -1]\noutput : list = [-3, -3, -3, -1, 4, 5]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(reverse([-3, 4, -3, -3, 5, -1])))),44)",
    "io_inp": [
      -3,
      4,
      -3,
      -3,
      5,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(reverse(input)))),44)"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [-2, -2, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(mul_n([-5, -4, -4],1))),-2))",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(mul_n(input,1))),-2))"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = sort_des([-3, -4, -3])",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(sort_des([-1, -1]),16),-2)))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(sort_des(input),16),-2)))"
  },
  {
    "input": "input : list = [2, 0, -2]\noutput : list = [-6, -8]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(drop([2, 0, -2],1))),4),-2)",
    "io_inp": [
      2,
      0,
      -2
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(drop(input,1))),4),-2)"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [-36, -28, -12]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n([2, -4, -2],3),4),-3)),-5)",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      -36,
      -28,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n(input,3),4),-3)),-5)"
  },
  {
    "input": "input : list = [4, -2, 3, -5, 1, 2]\noutput : list = [-7, -12, -6]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(take([4, -2, 3, -5, 1, 2],3),5)),-5),42)",
    "io_inp": [
      4,
      -2,
      3,
      -5,
      1,
      2
    ],
    "io_out": [
      -7,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(take(input,3),5)),-5),42)"
  },
  {
    "input": "input : list = [-4, 0, -4, 2, -2, -3]\noutput : list = [5]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(take([-4, 0, -4, 2, -2, -3],1)),4),3),5)",
    "io_inp": [
      -4,
      0,
      -4,
      2,
      -2,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(take(input,1)),4),3),5)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [1, -4, 1]",
    "output": "generated_output : list = reverse([1, -4, 1])",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, -2, 5, 0, 4]\noutput : list = [2, 34, 26, -2, 18, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(add_n([4, -4, -2, 5, 0, 4],-2),-4),3),5),2)",
    "io_inp": [
      4,
      -4,
      -2,
      5,
      0,
      4
    ],
    "io_out": [
      2,
      34,
      26,
      -2,
      18,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(add_n(input,-2),-4),3),5),2)"
  },
  {
    "input": "input : list = [-3, 4, -3, -2, 2, 1]\noutput : list = [7, -7, 7, 5, -3, -1]",
    "output": "generated_output : list = sub_n(take(sub_n(take(mul_n([-3, 4, -3, -2, 2, 1],-2),23),-4),24),3)",
    "io_inp": [
      -3,
      4,
      -3,
      -2,
      2,
      1
    ],
    "io_out": [
      7,
      -7,
      7,
      5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(mul_n(input,-2),23),-4),24),3)"
  },
  {
    "input": "input : list = [2, 3, -1, 0, 4, -4]\noutput : list = [16, 12, 8, 0, -4, -16]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(reverse([2, 3, -1, 0, 4, -4]),10)),4))",
    "io_inp": [
      2,
      3,
      -1,
      0,
      4,
      -4
    ],
    "io_out": [
      16,
      12,
      8,
      0,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(reverse(input),10)),4))"
  },
  {
    "input": "input : list = [-3, 4, 5, 4]\noutput : list = [4, 5, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, 5, 4])",
    "io_inp": [
      -3,
      4,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, -3, 5, 2, -5]\noutput : list = [-7, -8, 0, -3, -10]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(drop([3, -2, -3, 5, 2, -5],1),21),5)))",
    "io_inp": [
      3,
      -2,
      -3,
      5,
      2,
      -5
    ],
    "io_out": [
      -7,
      -8,
      0,
      -3,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(drop(input,1),21),5)))"
  },
  {
    "input": "input : list = [1, -5, -1, -3, -3, 4]\noutput : list = [0, 2, 2, 4, 6, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([1, -5, -1, -3, -3, 4]),5))",
    "io_inp": [
      1,
      -5,
      -1,
      -3,
      -3,
      4
    ],
    "io_out": [
      0,
      2,
      2,
      4,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),5))"
  },
  {
    "input": "input : list = [-3, -1, -3, 1, -4, -2]\noutput : list = [-3, -5, 0]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(mul_n([-3, -1, -3, 1, -4, -2],1)),-2),3),-1)",
    "io_inp": [
      -3,
      -1,
      -3,
      1,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(mul_n(input,1)),-2),3),-1)"
  },
  {
    "input": "input : list = [0, -3, -4, -4, 0, 1]\noutput : list = [0, 5, 5, 20, 25, 25]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(sub_n([0, -3, -4, -4, 0, 1],1),3),-3),-5))",
    "io_inp": [
      0,
      -3,
      -4,
      -4,
      0,
      1
    ],
    "io_out": [
      0,
      5,
      5,
      20,
      25,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(sub_n(input,1),3),-3),-5))"
  },
  {
    "input": "input : list = [-3, -3, -4, -4]\noutput : list = [2, 2, 3, 3]",
    "output": "generated_output : list = add_n(mul_n([-3, -3, -4, -4],-1),-1)",
    "io_inp": [
      -3,
      -3,
      -4,
      -4
    ],
    "io_out": [
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),-1)"
  },
  {
    "input": "input : list = [-2, 3, 2, -5, -1, -1]\noutput : list = [3, 2, -1, -1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([-2, 3, 2, -5, -1, -1]))",
    "io_inp": [
      -2,
      3,
      2,
      -5,
      -1,
      -1
    ],
    "io_out": [
      3,
      2,
      -1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -1, 1, -3, 5]\noutput : list = [0, 0, 2, 4, 8]",
    "output": "generated_output : list = sub_n(sort_asc([-3, -1, 1, -3, 5]),-3)",
    "io_inp": [
      -3,
      -1,
      1,
      -3,
      5
    ],
    "io_out": [
      0,
      0,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = reverse(take(take(sort_asc([1, 0]),12),14))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(input),12),14))"
  },
  {
    "input": "input : list = [0, -4, 3, -4]\noutput : list = [40, -100, 40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(drop([0, -4, 3, -4],1),-2)),-5),4)",
    "io_inp": [
      0,
      -4,
      3,
      -4
    ],
    "io_out": [
      40,
      -100,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(drop(input,1),-2)),-5),4)"
  },
  {
    "input": "input : list = [4, -3, -4, -3, 1, 3]\noutput : list = [4]",
    "output": "generated_output : list = take(take(reverse(sort_des(take([4, -3, -4, -3, 1, 3],1))),14),45)",
    "io_inp": [
      4,
      -3,
      -4,
      -3,
      1,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(take(input,1))),14),45)"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [5, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des([-4, 5, -5]))",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [15, 10]",
    "output": "generated_output : list = reverse(take(mul_n(reverse([-3, -2]),-5),6))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(input),-5),6))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [12, -13]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(sort_des([-2, 3])),5),-1),2)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      12,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(sort_des(input)),5),-1),2)"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [11, 2, 2]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(mul_n([2, -1, -1],3)),-5),27))",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      11,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(mul_n(input,3)),-5),27))"
  },
  {
    "input": "input : list = [5, 2, -5, -1, 5]\noutput : list = [-2, 2, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(drop([5, 2, -5, -1, 5],2),1),-4)))",
    "io_inp": [
      5,
      2,
      -5,
      -1,
      5
    ],
    "io_out": [
      -2,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(drop(input,2),1),-4)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = reverse([2, -4])",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 1, -3, 2, -3]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(drop([-3, 1, -3, 2, -3],3)))),3)",
    "io_inp": [
      -3,
      1,
      -3,
      2,
      -3
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(drop(input,3)))),3)"
  },
  {
    "input": "input : list = [5, -5, 2, 4]\noutput : list = [-5, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse([5, -5, 2, 4]))",
    "io_inp": [
      5,
      -5,
      2,
      4
    ],
    "io_out": [
      -5,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, 0, -5, -3, -5]\noutput : list = [0, -1, -3, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([-1, 0, -5, -3, -5])))",
    "io_inp": [
      -1,
      0,
      -5,
      -3,
      -5
    ],
    "io_out": [
      0,
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [5, 4, -1, 0, -1, -3]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = drop([5, 4, -1, 0, -1, -3],3)",
    "io_inp": [
      5,
      4,
      -1,
      0,
      -1,
      -3
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, 4, -2, 4, -3, 2]\noutput : list = [-1, 0, -6, 0, -7, -2]",
    "output": "generated_output : list = sub_n([3, 4, -2, 4, -3, 2],4)",
    "io_inp": [
      3,
      4,
      -2,
      4,
      -3,
      2
    ],
    "io_out": [
      -1,
      0,
      -6,
      0,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, -5, 4, 5]\noutput : list = [8]",
    "output": "generated_output : list = reverse(add_n(drop(reverse([4, -5, 4, 5]),3),4))",
    "io_inp": [
      4,
      -5,
      4,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(reverse(input),3),4))"
  },
  {
    "input": "input : list = [-3, -5, -4, 4]\noutput : list = [-9, -7]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(take([-3, -5, -4, 4],2)),-4),-3),3)",
    "io_inp": [
      -3,
      -5,
      -4,
      4
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(take(input,2)),-4),-3),3)"
  },
  {
    "input": "input : list = [-1, -3, -2, 2]\noutput : list = [4]",
    "output": "generated_output : list = add_n(take(take(reverse(take([-1, -3, -2, 2],1)),28),27),5)",
    "io_inp": [
      -1,
      -3,
      -2,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(take(input,1)),28),27),5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des([-1, 4])",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, -4]\noutput : list = [-4, -2, -5]",
    "output": "generated_output : list = reverse([-5, -2, -4])",
    "io_inp": [
      -5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2, -2, -4]\noutput : list = [5, 5, 15]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(sort_des([-4, -2, -2, -4]),3)),-5),-5)",
    "io_inp": [
      -4,
      -2,
      -2,
      -4
    ],
    "io_out": [
      5,
      5,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(sort_des(input),3)),-5),-5)"
  },
  {
    "input": "input : list = [-5, 5, -1, 2, -5]\noutput : list = [-6, -6, -2, 1, 4]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(mul_n([-5, 5, -1, 2, -5],1)),2),-3))",
    "io_inp": [
      -5,
      5,
      -1,
      2,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(mul_n(input,1)),2),-3))"
  },
  {
    "input": "input : list = [1, -5, -3, -4, -1]\noutput : list = [-2, 2, 6, 8, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n([1, -5, -3, -4, -1],-2)),8)",
    "io_inp": [
      1,
      -5,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -2,
      2,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-2)),8)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [15, 19]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(mul_n([-4, -3],-4),16))),-3)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      15,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(mul_n(input,-4),16))),-3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [12, 13]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take(reverse([4, 3]),4),5),-4))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      12,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(reverse(input),4),5),-4))"
  },
  {
    "input": "input : list = [-4, 3, 1, -4, 0]\noutput : list = [5, 5, -3, -5, -9]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(sort_des([-4, 3, 1, -4, 0]),15),-2)),-3)",
    "io_inp": [
      -4,
      3,
      1,
      -4,
      0
    ],
    "io_out": [
      5,
      5,
      -3,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(sort_des(input),15),-2)),-3)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(take(take(drop(reverse([-5, 5, 5]),2),22),24))",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(drop(reverse(input),2),22),24))"
  },
  {
    "input": "input : list = [5, 2, 3]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(take(reverse(add_n([5, 2, 3],4)),1),3)",
    "io_inp": [
      5,
      2,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(input,4)),1),3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(sort_asc([-5, 1])))))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 2, -3, 2, -3]\noutput : list = [-4, -3, -3, 2, 2]",
    "output": "generated_output : list = sort_asc([-4, 2, -3, 2, -3])",
    "io_inp": [
      -4,
      2,
      -3,
      2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, -1, -1, -3, -5]\noutput : list = [6, 12, 18]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(drop([2, 0, -1, -1, -3, -5],3))),-3),3)",
    "io_inp": [
      2,
      0,
      -1,
      -1,
      -3,
      -5
    ],
    "io_out": [
      6,
      12,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(drop(input,3))),-3),3)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = sort_asc([0, 2, 0])",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 1, 5, -4, 5]\noutput : list = [5, -4, 5, 1, -4]",
    "output": "generated_output : list = reverse([-4, 1, 5, -4, 5])",
    "io_inp": [
      -4,
      1,
      5,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -4, 5, 0, 0]\noutput : list = [5, 0, 0]",
    "output": "generated_output : list = reverse(take(sort_asc(take(drop([-1, -4, 5, 0, 0],2),23)),4))",
    "io_inp": [
      -1,
      -4,
      5,
      0,
      0
    ],
    "io_out": [
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(drop(input,2),23)),4))"
  },
  {
    "input": "input : list = [4, -1, -5, -2, 1]\noutput : list = [-10, -7, -6, -4, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(sort_des([4, -1, -5, -2, 1]),4),1),37))",
    "io_inp": [
      4,
      -1,
      -5,
      -2,
      1
    ],
    "io_out": [
      -10,
      -7,
      -6,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(sort_des(input),4),1),37))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = sort_asc([-1, 4, 1])",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 2, -4, -3, -3, -4]\noutput : list = [-12, -12, -9, -9, 6, 12]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(sort_asc([4, 2, -4, -3, -3, -4]),3),23)))",
    "io_inp": [
      4,
      2,
      -4,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -9,
      -9,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(sort_asc(input),3),23)))"
  },
  {
    "input": "input : list = [-2, -1, -5, -1, 2, 1]\noutput : list = [0, -12, -16, -16, -24, -28]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(sub_n([-2, -1, -5, -1, 2, 1],-5),29)),-4))",
    "io_inp": [
      -2,
      -1,
      -5,
      -1,
      2,
      1
    ],
    "io_out": [
      0,
      -12,
      -16,
      -16,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(sub_n(input,-5),29)),-4))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = take(reverse(sort_des([-5, 1])),11)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(input)),11)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [0, -4]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n([-3, 1],-2))),-4),-1)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n(input,-2))),-4),-1)"
  },
  {
    "input": "input : list = [2, 0, -4, -3, 4, 1]\noutput : list = [4, 5, 8, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(take([2, 0, -4, -3, 4, 1],4)),-3)),-5)",
    "io_inp": [
      2,
      0,
      -4,
      -3,
      4,
      1
    ],
    "io_out": [
      4,
      5,
      8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(take(input,4)),-3)),-5)"
  },
  {
    "input": "input : list = [-4, 0, 4, 2, -3]\noutput : list = [8, 13]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(drop([-4, 0, 4, 2, -3],3),-5)),3),3)",
    "io_inp": [
      -4,
      0,
      4,
      2,
      -3
    ],
    "io_out": [
      8,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(drop(input,3),-5)),3),3)"
  },
  {
    "input": "input : list = [-1, 0, 4, -4, 2]\noutput : list = [8, 4, 0, -2, -8]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(sort_asc([-1, 0, 4, -4, 2])),2)))",
    "io_inp": [
      -1,
      0,
      4,
      -4,
      2
    ],
    "io_out": [
      8,
      4,
      0,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [3, -4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = drop([3, -4, -5],1)",
    "io_inp": [
      3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -1, 1, 2]\noutput : list = [8, 4, 2, -2]",
    "output": "generated_output : list = sort_des(mul_n([4, -1, 1, 2],2))",
    "io_inp": [
      4,
      -1,
      1,
      2
    ],
    "io_out": [
      8,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(take([-2, 1, -3],1)))),26)",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(take(input,1)))),26)"
  },
  {
    "input": "input : list = [3, -3, -3]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = sub_n([3, -3, -3],-1)",
    "io_inp": [
      3,
      -3,
      -3
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [1, 4, -4, -2, 0, 4]\noutput : list = [-2, 1, -7, -5, -3, 1]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(add_n([1, 4, -4, -2, 0, 4],2),-1),-2),-5),-3)",
    "io_inp": [
      1,
      4,
      -4,
      -2,
      0,
      4
    ],
    "io_out": [
      -2,
      1,
      -7,
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(add_n(input,2),-1),-2),-5),-3)"
  },
  {
    "input": "input : list = [4, 5, 5, 4, -5]\noutput : list = [-6, 3, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n([4, 5, 5, 4, -5],1))",
    "io_inp": [
      4,
      5,
      5,
      4,
      -5
    ],
    "io_out": [
      -6,
      3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-16, 14]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(reverse([3, -3]),-5),-3),4))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -16,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(reverse(input),-5),-3),4))"
  },
  {
    "input": "input : list = [0, 4, 1, -2, -3, 0]\noutput : list = [0, 4, 1]",
    "output": "generated_output : list = take([0, 4, 1, -2, -3, 0],3)",
    "io_inp": [
      0,
      4,
      1,
      -2,
      -3,
      0
    ],
    "io_out": [
      0,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, 0, -5, -4]\noutput : list = [4, 0, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n([4, 0, -5, -4],2),-2)))",
    "io_inp": [
      4,
      0,
      -5,
      -4
    ],
    "io_out": [
      4,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(input,2),-2)))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(sort_des([-1, -2])),10)))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(sort_des(input)),10)))"
  },
  {
    "input": "input : list = [3, 4, -3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(take([3, 4, -3, 4],2),-5)),-5),5)",
    "io_inp": [
      3,
      4,
      -3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(take(input,2),-5)),-5),5)"
  },
  {
    "input": "input : list = [0, -2, 1, 5, -3, -2]\noutput : list = [-48, -36, -36, -12, 0, 48]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(reverse([0, -2, 1, 5, -3, -2]),-1),4),3))",
    "io_inp": [
      0,
      -2,
      1,
      5,
      -3,
      -2
    ],
    "io_out": [
      -48,
      -36,
      -36,
      -12,
      0,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(reverse(input),-1),4),3))"
  },
  {
    "input": "input : list = [1, -3, 4, -1, 3, 0]\noutput : list = [14, 10, 2, -2, -6, -14]",
    "output": "generated_output : list = reverse(add_n(take(sort_asc(mul_n([1, -3, 4, -1, 3, 0],4)),37),-2))",
    "io_inp": [
      1,
      -3,
      4,
      -1,
      3,
      0
    ],
    "io_out": [
      14,
      10,
      2,
      -2,
      -6,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_asc(mul_n(input,4)),37),-2))"
  },
  {
    "input": "input : list = [5, 1, -1]\noutput : list = [2, -2, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(reverse([5, 1, -1]))),-3))",
    "io_inp": [
      5,
      1,
      -1
    ],
    "io_out": [
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-2, -4, 3]\noutput : list = [4, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(sort_des([-2, -4, 3]),1))))",
    "io_inp": [
      -2,
      -4,
      3
    ],
    "io_out": [
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [2, -4, -2, -3]\noutput : list = [11, 8, 5, -7]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([2, -4, -2, -3]),-3),-1)",
    "io_inp": [
      2,
      -4,
      -2,
      -3
    ],
    "io_out": [
      11,
      8,
      5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),-3),-1)"
  },
  {
    "input": "input : list = [-5, -5, -5, 5, -2, 2]\noutput : list = [-1, -1, -1, 9, 2, 6]",
    "output": "generated_output : list = add_n([-5, -5, -5, 5, -2, 2],4)",
    "io_inp": [
      -5,
      -5,
      -5,
      5,
      -2,
      2
    ],
    "io_out": [
      -1,
      -1,
      -1,
      9,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [1, 3, 4, -4, -1, -5]\noutput : list = [8, 7, 5, 3, 0, -1]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n([1, 3, 4, -4, -1, -5],-2),1),-3)),5)",
    "io_inp": [
      1,
      3,
      4,
      -4,
      -1,
      -5
    ],
    "io_out": [
      8,
      7,
      5,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n(input,-2),1),-3)),5)"
  },
  {
    "input": "input : list = [-3, -5, 4, 3, 4, -1]\noutput : list = [9, -16, -11, -16, 29, 19]",
    "output": "generated_output : list = sub_n(reverse(mul_n([-3, -5, 4, 3, 4, -1],-5)),-4)",
    "io_inp": [
      -3,
      -5,
      4,
      3,
      4,
      -1
    ],
    "io_out": [
      9,
      -16,
      -11,
      -16,
      29,
      19
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,-5)),-4)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-15]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(drop(mul_n([-2, -5],3),1),-4)),4)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(drop(mul_n(input,3),1),-4)),4)"
  },
  {
    "input": "input : list = [2, 1, 4, -3, 5, 1]\noutput : list = [1, 0, 3, -4, 4, 0]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([2, 1, 4, -3, 5, 1],1),5),-4)",
    "io_inp": [
      2,
      1,
      4,
      -3,
      5,
      1
    ],
    "io_out": [
      1,
      0,
      3,
      -4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,1),5),-4)"
  },
  {
    "input": "input : list = [1, -2, -4, 1, -4]\noutput : list = [0, 0, -6, -10, -10]",
    "output": "generated_output : list = sort_des(add_n(reverse(mul_n(mul_n([1, -2, -4, 1, -4],2),1)),-2))",
    "io_inp": [
      1,
      -2,
      -4,
      1,
      -4
    ],
    "io_out": [
      0,
      0,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(mul_n(mul_n(input,2),1)),-2))"
  },
  {
    "input": "input : list = [0, -3, -1, -3, -3, 2]\noutput : list = [-2, -2, -2, 0, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(drop([0, -3, -1, -3, -3, 2],1),-1)),29))",
    "io_inp": [
      0,
      -3,
      -1,
      -3,
      -3,
      2
    ],
    "io_out": [
      -2,
      -2,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(drop(input,1),-1)),29))"
  },
  {
    "input": "input : list = [4, -4, 2, 0, 1]\noutput : list = [5, 3, 2, 1, -3]",
    "output": "generated_output : list = add_n(add_n(take(reverse(sort_asc([4, -4, 2, 0, 1])),15),4),-3)",
    "io_inp": [
      4,
      -4,
      2,
      0,
      1
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(sort_asc(input)),15),4),-3)"
  },
  {
    "input": "input : list = [-4, -2, 3, -5, -1]\noutput : list = [4, 0, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_des([-4, -2, 3, -5, -1])),25),-1))",
    "io_inp": [
      -4,
      -2,
      3,
      -5,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(sort_des(input)),25),-1))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(sub_n([3, -1],3))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [-16, -4]",
    "output": "generated_output : list = mul_n(drop([5, -4, -1],1),4)",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [-4, -5, 4, -4]\noutput : list = [-1, 0, 0, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(reverse([-4, -5, 4, -4]),19),4)))",
    "io_inp": [
      -4,
      -5,
      4,
      -4
    ],
    "io_out": [
      -1,
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(reverse(input),19),4)))"
  },
  {
    "input": "input : list = [3, 1, 3, 4, 3]\noutput : list = [9, 8, 8, 8, 6]",
    "output": "generated_output : list = sort_des(take(take(add_n(sort_asc([3, 1, 3, 4, 3]),5),15),26))",
    "io_inp": [
      3,
      1,
      3,
      4,
      3
    ],
    "io_out": [
      9,
      8,
      8,
      8,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(sort_asc(input),5),15),26))"
  },
  {
    "input": "input : list = [-2, 3, -5, 1]\noutput : list = [4, 2, -1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc([-2, 3, -5, 1])))),1)",
    "io_inp": [
      -2,
      3,
      -5,
      1
    ],
    "io_out": [
      4,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [-5, -1, -3, 0, -1]\noutput : list = [-5, -3, -1, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sort_des([-5, -1, -3, 0, -1])))))",
    "io_inp": [
      -5,
      -1,
      -3,
      0,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, -3, 5, 5, 1]\noutput : list = [-7, -3, -2, 1, 1]",
    "output": "generated_output : list = take(sort_asc(sub_n([2, -3, 5, 5, 1],4)),28)",
    "io_inp": [
      2,
      -3,
      5,
      5,
      1
    ],
    "io_out": [
      -7,
      -3,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,4)),28)"
  },
  {
    "input": "input : list = [-4, -4, -4, 5, -1, 0]\noutput : list = [-4, -4, -4, -1, 0, 5]",
    "output": "generated_output : list = sort_asc([-4, -4, -4, 5, -1, 0])",
    "io_inp": [
      -4,
      -4,
      -4,
      5,
      -1,
      0
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 2, 2, -4, -4]\noutput : list = [18, 18, 0, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(drop([-5, 2, 2, -4, -4],1),-3),-5)),-3)",
    "io_inp": [
      -5,
      2,
      2,
      -4,
      -4
    ],
    "io_out": [
      18,
      18,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(drop(input,1),-3),-5)),-3)"
  },
  {
    "input": "input : list = [-5, -2, 4, -5]\noutput : list = [4, -2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -2, 4, -5])",
    "io_inp": [
      -5,
      -2,
      4,
      -5
    ],
    "io_out": [
      4,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -3, 4, 4]\noutput : list = [4, 4, -1, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc([-1, -3, 4, 4])),-1),-1)",
    "io_inp": [
      -1,
      -3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(input)),-1),-1)"
  },
  {
    "input": "input : list = [1, -3, 4, -5, -5, 5]\noutput : list = [-1, -2, -5, -9, -11, -11]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sub_n([1, -3, 4, -5, -5, 5],5)),1)))",
    "io_inp": [
      1,
      -3,
      4,
      -5,
      -5,
      5
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -9,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(sub_n(input,5)),1)))"
  },
  {
    "input": "input : list = [-3, -1, -3]\noutput : list = [-2, -2, 0]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(reverse([-3, -1, -3])))),1)",
    "io_inp": [
      -3,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(reverse(input)))),1)"
  },
  {
    "input": "input : list = [3, -4, 2]\noutput : list = [20, -10, -15]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(mul_n([3, -4, 2],-5)))))",
    "io_inp": [
      3,
      -4,
      2
    ],
    "io_out": [
      20,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [4, -5, -3, -2]\noutput : list = [-9, -7, -6, 0]",
    "output": "generated_output : list = reverse(take(add_n(sort_des([4, -5, -3, -2]),-4),12))",
    "io_inp": [
      4,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -9,
      -7,
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(input),-4),12))"
  },
  {
    "input": "input : list = [-1, -3, -1, -3]\noutput : list = [-2, -2, -4, -4]",
    "output": "generated_output : list = take(sort_des(take(sub_n(reverse([-1, -3, -1, -3]),1),23)),46)",
    "io_inp": [
      -1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(reverse(input),1),23)),46)"
  },
  {
    "input": "input : list = [-1, -1, -3]\noutput : list = [5, 5, 15]",
    "output": "generated_output : list = mul_n([-1, -1, -3],-5)",
    "io_inp": [
      -1,
      -1,
      -3
    ],
    "io_out": [
      5,
      5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [1, 5]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_asc([2, 4]),2)),1),3)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_asc(input),2)),1),3)"
  },
  {
    "input": "input : list = [-1, -2, -1]\noutput : list = [-2, -3, -2]",
    "output": "generated_output : list = sub_n([-1, -2, -1],1)",
    "io_inp": [
      -1,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 2, 1, -2, 0, 0]\noutput : list = [0, 0, -2, 1, 2, 0]",
    "output": "generated_output : list = reverse([0, 2, 1, -2, 0, 0])",
    "io_inp": [
      0,
      2,
      1,
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -2,
      1,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, -5, 4]\noutput : list = [40, 24, 0, -32]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(reverse([-3, 0, -5, 4]),4),-2)))",
    "io_inp": [
      -3,
      0,
      -5,
      4
    ],
    "io_out": [
      40,
      24,
      0,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(reverse(input),4),-2)))"
  },
  {
    "input": "input : list = [-5, 3, -2, 4, 0, 3]\noutput : list = [-8, -3, -3, 12, 22, 37]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(add_n([-5, 3, -2, 4, 0, 3],-2),-5)),2))",
    "io_inp": [
      -5,
      3,
      -2,
      4,
      0,
      3
    ],
    "io_out": [
      -8,
      -3,
      -3,
      12,
      22,
      37
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(add_n(input,-2),-5)),2))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-4, 0],-2),-1))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,-2),-1))"
  },
  {
    "input": "input : list = [-5, 1, -3, -1]\noutput : list = [-2, 0, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(mul_n([-5, 1, -3, -1],-1),1))))",
    "io_inp": [
      -5,
      1,
      -3,
      -1
    ],
    "io_out": [
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(mul_n(input,-1),1))))"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [-8, 8]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(drop([0, -4, 4],1),2),24)),36)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(drop(input,1),2),24)),36)"
  },
  {
    "input": "input : list = [4, -1, -4, -2]\noutput : list = [7, 5, 4, -1]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(sub_n([4, -1, -4, -2],-2),-1),5)),22)",
    "io_inp": [
      4,
      -1,
      -4,
      -2
    ],
    "io_out": [
      7,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(sub_n(input,-2),-1),5)),22)"
  },
  {
    "input": "input : list = [5, -2, -3, 3, 1]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(take([5, -2, -3, 3, 1],2))",
    "io_inp": [
      5,
      -2,
      -3,
      3,
      1
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-1, 5, -4, -3, -2]\noutput : list = [-2, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(drop([-1, 5, -4, -3, -2],2),18))))",
    "io_inp": [
      -1,
      5,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(drop(input,2),18))))"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(take([2, -2, -3],1))),-4),5)",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(take(input,1))),-4),5)"
  },
  {
    "input": "input : list = [5, -3, 5, -5]\noutput : list = [10, 10, -6, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n([5, -3, 5, -5],1))),2))",
    "io_inp": [
      5,
      -3,
      5,
      -5
    ],
    "io_out": [
      10,
      10,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n(input,1))),2))"
  },
  {
    "input": "input : list = [5, 2, -4, 3, 5, 4]\noutput : list = [8, 9, 7, 0, 6, 9]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(sub_n([5, 2, -4, 3, 5, 4],-5),4),-3),27))",
    "io_inp": [
      5,
      2,
      -4,
      3,
      5,
      4
    ],
    "io_out": [
      8,
      9,
      7,
      0,
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(sub_n(input,-5),4),-3),27))"
  },
  {
    "input": "input : list = [3, 5, -3, -4, 3]\noutput : list = [-13, -10, 8]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(drop([3, 5, -3, -4, 3],2)),3)),1)",
    "io_inp": [
      3,
      5,
      -3,
      -4,
      3
    ],
    "io_out": [
      -13,
      -10,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(drop(input,2)),3)),1)"
  },
  {
    "input": "input : list = [3, -1, -3]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = sort_des([3, -1, -3])",
    "io_inp": [
      3,
      -1,
      -3
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [-11, -9, -4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(add_n([3, -4, -2],-4),3))))",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      -11,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(add_n(input,-4),3))))"
  },
  {
    "input": "input : list = [-2, 0, 2, 0, -1, -3]\noutput : list = [4, 2, 2, 1, 0, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc([-2, 0, 2, 0, -1, -3])),-4)),2)",
    "io_inp": [
      -2,
      0,
      2,
      0,
      -1,
      -3
    ],
    "io_out": [
      4,
      2,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc(input)),-4)),2)"
  },
  {
    "input": "input : list = [4, 4, -4, -5, -5, 3]\noutput : list = [8]",
    "output": "generated_output : list = take(mul_n([4, 4, -4, -5, -5, 3],2),1)",
    "io_inp": [
      4,
      4,
      -4,
      -5,
      -5,
      3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),1)"
  },
  {
    "input": "input : list = [3, 1, -1, 4, 4, -4]\noutput : list = [0, -2, -4, 1, 1, -7]",
    "output": "generated_output : list = sub_n([3, 1, -1, 4, 4, -4],3)",
    "io_inp": [
      3,
      1,
      -1,
      4,
      4,
      -4
    ],
    "io_out": [
      0,
      -2,
      -4,
      1,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, -5, -2, 4, -3]\noutput : list = [16, -8, -12, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(drop([-1, -5, -2, 4, -3],1),8)),4))",
    "io_inp": [
      -1,
      -5,
      -2,
      4,
      -3
    ],
    "io_out": [
      16,
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(drop(input,1),8)),4))"
  },
  {
    "input": "input : list = [0, -3, 5, 5, 5]\noutput : list = [-2, 1, 6, 6, 6]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(sort_des([0, -3, 5, 5, 5]))),5),-4)",
    "io_inp": [
      0,
      -3,
      5,
      5,
      5
    ],
    "io_out": [
      -2,
      1,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(sort_des(input))),5),-4)"
  },
  {
    "input": "input : list = [5, 1, -3, -1, 0]\noutput : list = [-28, -8]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(sort_asc([5, 1, -3, -1, 0]),-5)),-3),2)",
    "io_inp": [
      5,
      1,
      -3,
      -1,
      0
    ],
    "io_out": [
      -28,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(sort_asc(input),-5)),-3),2)"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [8, -12]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(drop([-3, -4, 1],1))),4),4)",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      8,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(drop(input,1))),4),4)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [7, 3]",
    "output": "generated_output : list = take(take(sub_n(reverse(add_n([-5, -1],4)),-4),18),22)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(add_n(input,4)),-4),18),22)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc([-5, -4])",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, 4, 0]\noutput : list = [1, 4, 0]",
    "output": "generated_output : list = drop([-2, 1, 4, 0],1)",
    "io_inp": [
      -2,
      1,
      4,
      0
    ],
    "io_out": [
      1,
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [4, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(reverse(mul_n([1, -2, 2],-1)),2)))",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(reverse(mul_n(input,-1)),2)))"
  },
  {
    "input": "input : list = [-4, 3, 3, 4, -2, -1]\noutput : list = [-1, -1, 0, -6, -5]",
    "output": "generated_output : list = add_n(drop([-4, 3, 3, 4, -2, -1],1),-4)",
    "io_inp": [
      -4,
      3,
      3,
      4,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -1,
      0,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [5, 5, 5, 5]\noutput : list = [-20, -20, -20, -20]",
    "output": "generated_output : list = take(sort_asc(mul_n([5, 5, 5, 5],-4)),10)",
    "io_inp": [
      5,
      5,
      5,
      5
    ],
    "io_out": [
      -20,
      -20,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-4)),10)"
  },
  {
    "input": "input : list = [-4, 0, -1, -3, 2]\noutput : list = [0, -5, -3, -2, -6]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n([-4, 0, -1, -3, 2],-2),-5),-5))",
    "io_inp": [
      -4,
      0,
      -1,
      -3,
      2
    ],
    "io_out": [
      0,
      -5,
      -3,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(input,-2),-5),-5))"
  },
  {
    "input": "input : list = [3, 0, 0, 5]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(take([3, 0, 0, 5],2),15))))",
    "io_inp": [
      3,
      0,
      0,
      5
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(take(input,2),15))))"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [0, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([-1, 3, 2],1)))",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,1)))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [32, -48]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_asc([5, -5]),1)),-2),-4)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      32,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(sort_asc(input),1)),-2),-4)"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(drop([-4, -1, 0],1)),-1),4))",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(drop(input,1)),-1),4))"
  },
  {
    "input": "input : list = [-5, 1, -1, -1, -1]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(mul_n(drop([-5, 1, -1, -1, -1],3),-3),-4)))",
    "io_inp": [
      -5,
      1,
      -1,
      -1,
      -1
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(mul_n(drop(input,3),-3),-4)))"
  },
  {
    "input": "input : list = [2, 1, -4, -3]\noutput : list = [-2, -1, 3, 4]",
    "output": "generated_output : list = sort_asc(mul_n([2, 1, -4, -3],-1))",
    "io_inp": [
      2,
      1,
      -4,
      -3
    ],
    "io_out": [
      -2,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-3, -3, 4, 2]\noutput : list = [-6, -6, 8, 4]",
    "output": "generated_output : list = take(mul_n([-3, -3, 4, 2],2),11)",
    "io_inp": [
      -3,
      -3,
      4,
      2
    ],
    "io_out": [
      -6,
      -6,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),11)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sort_des([-3, -3]),16))))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(sort_des(input),16))))"
  },
  {
    "input": "input : list = [5, -4, -1, -5, -5, 0]\noutput : list = [7, -8, -11, -20, -23, -23]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(add_n([5, -4, -1, -5, -5, 0],-1)),3),5))",
    "io_inp": [
      5,
      -4,
      -1,
      -5,
      -5,
      0
    ],
    "io_out": [
      7,
      -8,
      -11,
      -20,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(add_n(input,-1)),3),5))"
  },
  {
    "input": "input : list = [-1, 5, -2, 5, 0]\noutput : list = [-3, 15, -6, 15, 0]",
    "output": "generated_output : list = mul_n([-1, 5, -2, 5, 0],3)",
    "io_inp": [
      -1,
      5,
      -2,
      5,
      0
    ],
    "io_out": [
      -3,
      15,
      -6,
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1, 5, 0, 4, -3]\noutput : list = [48, 0, -16, -32, -64, -80]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(mul_n([2, 1, 5, 0, 4, -3],-4)),4)))",
    "io_inp": [
      2,
      1,
      5,
      0,
      4,
      -3
    ],
    "io_out": [
      48,
      0,
      -16,
      -32,
      -64,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(mul_n(input,-4)),4)))"
  },
  {
    "input": "input : list = [-5, -3, 3, 2]\noutput : list = [-5, -3, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(reverse([-5, -3, 3, 2])))",
    "io_inp": [
      -5,
      -3,
      3,
      2
    ],
    "io_out": [
      -5,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [-1, -11, -19]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(sort_des([-5, 4, -1]),5),2)),1)",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      -1,
      -11,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(sort_des(input),5),2)),1)"
  },
  {
    "input": "input : list = [-1, -2, -4, 4, 3, 0]\noutput : list = [0, 3, 4]",
    "output": "generated_output : list = reverse(drop([-1, -2, -4, 4, 3, 0],3))",
    "io_inp": [
      -1,
      -2,
      -4,
      4,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [-4, 0, 0, -4]\noutput : list = [60, 60, 120, 120]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des(add_n([-4, 0, 0, -4],-4)),5)),-3)",
    "io_inp": [
      -4,
      0,
      0,
      -4
    ],
    "io_out": [
      60,
      60,
      120,
      120
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(add_n(input,-4)),5)),-3)"
  },
  {
    "input": "input : list = [1, 4, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = drop([1, 4, 5, -5],2)",
    "io_inp": [
      1,
      4,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -5, 4, -5]\noutput : list = [-6, -9, 0, -9]",
    "output": "generated_output : list = add_n([-2, -5, 4, -5],-4)",
    "io_inp": [
      -2,
      -5,
      4,
      -5
    ],
    "io_out": [
      -6,
      -9,
      0,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, 1, 1, -4, -3]\noutput : list = [-20, -20, -25, -40, -45]",
    "output": "generated_output : list = mul_n(reverse(sub_n(reverse(sort_des([0, 1, 1, -4, -3])),5)),5)",
    "io_inp": [
      0,
      1,
      1,
      -4,
      -3
    ],
    "io_out": [
      -20,
      -20,
      -25,
      -40,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(reverse(sort_des(input)),5)),5)"
  },
  {
    "input": "input : list = [-1, 5, -1, -2, -3, -1]\noutput : list = [-3, -2, -1, -1, -1, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, -1, -2, -3, -1])",
    "io_inp": [
      -1,
      5,
      -1,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(sub_n([1, 0],-4))),-1))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(sub_n(input,-4))),-1))"
  },
  {
    "input": "input : list = [4, -1, -3, -2, 0, -4]\noutput : list = [-4, -3, -2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([4, -1, -3, -2, 0, -4])",
    "io_inp": [
      4,
      -1,
      -3,
      -2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [5]",
    "output": "generated_output : list = take([5, 3, 0],1)",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(sort_asc([-3, -5, 1]))),8),-1)",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(sort_asc(input))),8),-1)"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [6, 9, 18]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sort_des([1, 5, 2]),13)),-1),3)",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      6,
      9,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sort_des(input),13)),-1),3)"
  },
  {
    "input": "input : list = [3, 1, -2, 1]\noutput : list = [3, 1, 1, -2]",
    "output": "generated_output : list = take(take(sort_des(take(sort_des([3, 1, -2, 1]),21)),12),23)",
    "io_inp": [
      3,
      1,
      -2,
      1
    ],
    "io_out": [
      3,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(sort_des(input),21)),12),23)"
  },
  {
    "input": "input : list = [2, -1, 2, -3, 2, -5]\noutput : list = [5, 5, 5, -10, -20, -30]",
    "output": "generated_output : list = take(add_n(take(mul_n(sort_des([2, -1, 2, -3, 2, -5]),5),6),-5),31)",
    "io_inp": [
      2,
      -1,
      2,
      -3,
      2,
      -5
    ],
    "io_out": [
      5,
      5,
      5,
      -10,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sort_des(input),5),6),-5),31)"
  },
  {
    "input": "input : list = [-3, 2, -1, 0]\noutput : list = [-6, -11, -8, -9]",
    "output": "generated_output : list = take(add_n(take(mul_n(sub_n([-3, 2, -1, 0],-5),-1),22),-4),12)",
    "io_inp": [
      -3,
      2,
      -1,
      0
    ],
    "io_out": [
      -6,
      -11,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sub_n(input,-5),-1),22),-4),12)"
  },
  {
    "input": "input : list = [0, -4, 0, 5, -2]\noutput : list = [2, 6, 10, 10, 20]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(reverse([0, -4, 0, 5, -2]),-5),25),2))",
    "io_inp": [
      0,
      -4,
      0,
      5,
      -2
    ],
    "io_out": [
      2,
      6,
      10,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(reverse(input),-5),25),2))"
  },
  {
    "input": "input : list = [-2, -4, 3, 5]\noutput : list = [-4, 3, 5]",
    "output": "generated_output : list = drop([-2, -4, 3, 5],1)",
    "io_inp": [
      -2,
      -4,
      3,
      5
    ],
    "io_out": [
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 5, -5, -4, -5]\noutput : list = [-30, 15, 20, 20, 20]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(mul_n([-5, 5, -5, -4, -5],-5)),5)))",
    "io_inp": [
      -5,
      5,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -30,
      15,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(mul_n(input,-5)),5)))"
  },
  {
    "input": "input : list = [-1, 0, 4, -3, -3, -5]\noutput : list = [10, 6, 5, 3, 3, 1]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(sub_n([-1, 0, 4, -3, -3, -5],-1)),1)),5)",
    "io_inp": [
      -1,
      0,
      4,
      -3,
      -3,
      -5
    ],
    "io_out": [
      10,
      6,
      5,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(sub_n(input,-1)),1)),5)"
  },
  {
    "input": "input : list = [5, 3, 5]\noutput : list = [24, 14, 24]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(sub_n([5, 3, 5],1),-1)),5),1)",
    "io_inp": [
      5,
      3,
      5
    ],
    "io_out": [
      24,
      14,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(sub_n(input,1),-1)),5),1)"
  },
  {
    "input": "input : list = [-5, 0, -5, 3, 0]\noutput : list = [-5, -8, -8, -13, -13]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc(sort_des([-5, 0, -5, 3, 0])),-4),4))",
    "io_inp": [
      -5,
      0,
      -5,
      3,
      0
    ],
    "io_out": [
      -5,
      -8,
      -8,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(sort_des(input)),-4),4))"
  },
  {
    "input": "input : list = [4, 3, -3, -5, 2, 3]\noutput : list = [4, 3, 3, 2, -3, -5]",
    "output": "generated_output : list = sort_des([4, 3, -3, -5, 2, 3])",
    "io_inp": [
      4,
      3,
      -3,
      -5,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 10]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse([2, 0]),5),21),1)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(input),5),21),1)"
  },
  {
    "input": "input : list = [-3, -5, -2, -4, -2]\noutput : list = [-2, -4, -2, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, -2, -4, -2])",
    "io_inp": [
      -3,
      -5,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -2,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, 4, 4, -4]\noutput : list = [1, 8, 7, 7, -1]",
    "output": "generated_output : list = sub_n([-2, 5, 4, 4, -4],-3)",
    "io_inp": [
      -2,
      5,
      4,
      4,
      -4
    ],
    "io_out": [
      1,
      8,
      7,
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -3, 5, -1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(sort_des(drop([-4, -3, 5, -1],2)))",
    "io_inp": [
      -4,
      -3,
      5,
      -1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-9, -12]",
    "output": "generated_output : list = mul_n([3, 4],-3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, 1, 5, -5, 0, 0]\noutput : list = [-17, -7, -7, -5, -3, 3]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n([2, 1, 5, -5, 0, 0],2)),4),3))",
    "io_inp": [
      2,
      1,
      5,
      -5,
      0,
      0
    ],
    "io_out": [
      -17,
      -7,
      -7,
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n(input,2)),4),3))"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(reverse([0, 4, 3]))),8))",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(reverse(input))),8))"
  },
  {
    "input": "input : list = [-5, 1, -3, 1, 4, 3]\noutput : list = [2]",
    "output": "generated_output : list = take(sub_n(sort_des(take(sort_asc([-5, 1, -3, 1, 4, 3]),11)),2),1)",
    "io_inp": [
      -5,
      1,
      -3,
      1,
      4,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(sort_asc(input),11)),2),1)"
  },
  {
    "input": "input : list = [0, 3, 5, 5, -5]\noutput : list = [25, 25, 15, 0, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sort_asc([0, 3, 5, 5, -5]))),5))",
    "io_inp": [
      0,
      3,
      5,
      5,
      -5
    ],
    "io_out": [
      25,
      25,
      15,
      0,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-3, -3, -5, 2, 3]\noutput : list = [-2, 0, 0, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(add_n([-3, -3, -5, 2, 3],4)),-1)))",
    "io_inp": [
      -3,
      -3,
      -5,
      2,
      3
    ],
    "io_out": [
      -2,
      0,
      0,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(add_n(input,4)),-1)))"
  },
  {
    "input": "input : list = [-2, -2, -5]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(take([-2, -2, -5],1))),-2),4)",
    "io_inp": [
      -2,
      -2,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(take(input,1))),-2),4)"
  },
  {
    "input": "input : list = [-3, 0, 4, 1, 4, -5]\noutput : list = [8, 8, -1, -4, -13, -19]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_des([-3, 0, 4, 1, 4, -5]),3),2),1),5)",
    "io_inp": [
      -3,
      0,
      4,
      1,
      4,
      -5
    ],
    "io_out": [
      8,
      8,
      -1,
      -4,
      -13,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_des(input),3),2),1),5)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-5, -6]",
    "output": "generated_output : list = reverse(take(add_n(sub_n([-4, -3],-2),-4),12))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(input,-2),-4),12))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n([4, 4],-5)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-9, -9]",
    "output": "generated_output : list = take(sub_n(reverse([-5, -5]),4),15)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),4),15)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(reverse([3, 3]),-3),5),5))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(reverse(input),-3),5),5))"
  },
  {
    "input": "input : list = [4, -1, -4, 0]\noutput : list = [-5, -13, -7, 3]",
    "output": "generated_output : list = reverse(sub_n(mul_n([4, -1, -4, 0],2),5))",
    "io_inp": [
      4,
      -1,
      -4,
      0
    ],
    "io_out": [
      -5,
      -13,
      -7,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,2),5))"
  },
  {
    "input": "input : list = [2, -2, 1, -1, -2]\noutput : list = [12, 12, 8, 0, -4]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n([2, -2, 1, -1, -2],1)),-1),4)",
    "io_inp": [
      2,
      -2,
      1,
      -1,
      -2
    ],
    "io_out": [
      12,
      12,
      8,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(input,1)),-1),4)"
  },
  {
    "input": "input : list = [-1, 3, 0, -4, -2, -4]\noutput : list = [3, 0, -1, -2, -4, -4]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des([-1, 3, 0, -4, -2, -4]))),22)",
    "io_inp": [
      -1,
      3,
      0,
      -4,
      -2,
      -4
    ],
    "io_out": [
      3,
      0,
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(input))),22)"
  },
  {
    "input": "input : list = [-3, -2, -5, 0, -1]\noutput : list = [-23, -11, -15]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(take([-3, -2, -5, 0, -1],3)),-2),-2),3)",
    "io_inp": [
      -3,
      -2,
      -5,
      0,
      -1
    ],
    "io_out": [
      -23,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(take(input,3)),-2),-2),3)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [0, -6]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(drop([1, -1, 5],1),-5),1)),12)",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(drop(input,1),-5),1)),12)"
  },
  {
    "input": "input : list = [-5, -2, 5, -5, 4, 2]\noutput : list = [12, 0]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n(take([-5, -2, 5, -5, 4, 2],2),5),4)))",
    "io_inp": [
      -5,
      -2,
      5,
      -5,
      4,
      2
    ],
    "io_out": [
      12,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(take(input,2),5),4)))"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(reverse([-1, -2, 0])),3),1))",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(reverse(input)),3),1))"
  },
  {
    "input": "input : list = [-2, -5, 0, 2, 3]\noutput : list = [-11, -2]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take([-2, -5, 0, 2, 3],2),3)),-4),1)",
    "io_inp": [
      -2,
      -5,
      0,
      2,
      3
    ],
    "io_out": [
      -11,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take(input,2),3)),-4),1)"
  },
  {
    "input": "input : list = [4, -3, -4, -3, -2, 1]\noutput : list = [11, 7, 3, -9]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(drop([4, -3, -4, -3, -2, 1],2),2),-4),3))",
    "io_inp": [
      4,
      -3,
      -4,
      -3,
      -2,
      1
    ],
    "io_out": [
      11,
      7,
      3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(drop(input,2),2),-4),3))"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [-4, -4, -10]",
    "output": "generated_output : list = reverse(sort_asc(add_n([1, 1, -5],-5)))",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-5)))"
  },
  {
    "input": "input : list = [2, 1, 5, 5, 1]\noutput : list = [-20, -20, -8, -4, -4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([2, 1, 5, 5, 1],-4)))",
    "io_inp": [
      2,
      1,
      5,
      5,
      1
    ],
    "io_out": [
      -20,
      -20,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [0, -2]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_asc(sub_n([-1, -3],5))),4),2)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_asc(sub_n(input,5))),4),2)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(take([1, -2, 2],1))),-1))",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(take(input,1))),-1))"
  },
  {
    "input": "input : list = [3, -2, -3, 5, 4]\noutput : list = [1, 0, -1, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(sub_n([3, -2, -3, 5, 4],3))),1))",
    "io_inp": [
      3,
      -2,
      -3,
      5,
      4
    ],
    "io_out": [
      1,
      0,
      -1,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(sub_n(input,3))),1))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [3, -77]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(mul_n([5, 1],-4),-4),5)),3)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      3,
      -77
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(mul_n(input,-4),-4),5)),3)"
  },
  {
    "input": "input : list = [3, 3, -1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take([3, 3, -1],1),3)))",
    "io_inp": [
      3,
      3,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(input,1),3)))"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [5, -25, 15]",
    "output": "generated_output : list = mul_n(reverse([3, -5, 1]),5)",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      5,
      -25,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-5, -4, 2, -4, 0]\noutput : list = [-9, -8, -2, -8, -4]",
    "output": "generated_output : list = add_n(add_n(add_n([-5, -4, 2, -4, 0],-3),-4),3)",
    "io_inp": [
      -5,
      -4,
      2,
      -4,
      0
    ],
    "io_out": [
      -9,
      -8,
      -2,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-3),-4),3)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-62, 73]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(mul_n([-4, 5],-3),-5),2)))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -62,
      73
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(mul_n(input,-3),-5),2)))"
  },
  {
    "input": "input : list = [-2, 0, -3, -3]\noutput : list = [-3, -3, -2, 0]",
    "output": "generated_output : list = take(sort_asc(take(reverse(mul_n([-2, 0, -3, -3],1)),12)),28)",
    "io_inp": [
      -2,
      0,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(mul_n(input,1)),12)),28)"
  },
  {
    "input": "input : list = [-3, 3, -4, 3]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(take([-3, 3, -4, 3],2)),1)),3)",
    "io_inp": [
      -3,
      3,
      -4,
      3
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(take(input,2)),1)),3)"
  },
  {
    "input": "input : list = [-3, -3, 1, -4]\noutput : list = [1, -3, -3, -4]",
    "output": "generated_output : list = sort_des([-3, -3, 1, -4])",
    "io_inp": [
      -3,
      -3,
      1,
      -4
    ],
    "io_out": [
      1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [13, 11]",
    "output": "generated_output : list = add_n(sort_des(take(drop(sub_n([0, 3, 5],-3),1),12)),5)",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      13,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(drop(sub_n(input,-3),1),12)),5)"
  },
  {
    "input": "input : list = [-1, -4, -3, -1, 4, 5]\noutput : list = [-5, -4, -2, -2, 3, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(sub_n(reverse([-1, -4, -3, -1, 4, 5]),3),2)),14)",
    "io_inp": [
      -1,
      -4,
      -3,
      -1,
      4,
      5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sub_n(reverse(input),3),2)),14)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [9, 8]",
    "output": "generated_output : list = take(reverse(add_n([4, 5],4)),17)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      9,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,4)),17)"
  },
  {
    "input": "input : list = [0, -2, -3]\noutput : list = [5, 10, 20]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([0, -2, -3],4)),5)",
    "io_inp": [
      0,
      -2,
      -3
    ],
    "io_out": [
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,4)),5)"
  },
  {
    "input": "input : list = [-4, 5, -1, 1, 5, 3]\noutput : list = [11, -1, -9, -17, -25, -25]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n([-4, 5, -1, 1, 5, 3],-4),-2)),-3)",
    "io_inp": [
      -4,
      5,
      -1,
      1,
      5,
      3
    ],
    "io_out": [
      11,
      -1,
      -9,
      -17,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(input,-4),-2)),-3)"
  },
  {
    "input": "input : list = [5, -3, -4, -3]\noutput : list = [-4, -3, -3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(drop([5, -3, -4, -3],1))),27))",
    "io_inp": [
      5,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(drop(input,1))),27))"
  },
  {
    "input": "input : list = [1, -2, -2, -2]\noutput : list = [-1, -1, -1, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n([1, -2, -2, -2],-2))),3),2)",
    "io_inp": [
      1,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n(input,-2))),3),2)"
  },
  {
    "input": "input : list = [1, -2, 4, -5, 3]\noutput : list = [3, 0, 6, -3, 5]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(reverse([1, -2, 4, -5, 3])),2),1),-3)",
    "io_inp": [
      1,
      -2,
      4,
      -5,
      3
    ],
    "io_out": [
      3,
      0,
      6,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(reverse(input)),2),1),-3)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [4, 3, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(reverse([2, -3, 3])),1)))",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(reverse(input)),1)))"
  },
  {
    "input": "input : list = [0, -3, -3, -3]\noutput : list = [1, -2, -2, -2]",
    "output": "generated_output : list = take(add_n([0, -3, -3, -3],1),21)",
    "io_inp": [
      0,
      -3,
      -3,
      -3
    ],
    "io_out": [
      1,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),21)"
  },
  {
    "input": "input : list = [-5, -1, -3, -5]\noutput : list = [4, 8, 12, 12]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse([-5, -1, -3, -5]),-2),-2),37))",
    "io_inp": [
      -5,
      -1,
      -3,
      -5
    ],
    "io_out": [
      4,
      8,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse(input),-2),-2),37))"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [0, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n([-4, -2, -2],2),4),4)))",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n(input,2),4),4)))"
  },
  {
    "input": "input : list = [4, -2, 5, -5, -5]\noutput : list = [-2, 5, -5, -5]",
    "output": "generated_output : list = drop([4, -2, 5, -5, -5],1)",
    "io_inp": [
      4,
      -2,
      5,
      -5,
      -5
    ],
    "io_out": [
      -2,
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -2, -3, -5]\noutput : list = [-120, -70, -45, 80, -45]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(mul_n([-2, 3, -2, -3, -5],-5),2),-5),5))",
    "io_inp": [
      -2,
      3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -120,
      -70,
      -45,
      80,
      -45
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(mul_n(input,-5),2),-5),5))"
  },
  {
    "input": "input : list = [-4, -4, -3]\noutput : list = [3, 3, 0]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(reverse([-4, -4, -3]),4),-3),-3))",
    "io_inp": [
      -4,
      -4,
      -3
    ],
    "io_out": [
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(reverse(input),4),-3),-3))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des([1, -4]),4))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),4))"
  },
  {
    "input": "input : list = [3, -1, 5, -1, -1]\noutput : list = [-4, -4, -4, 0, 2]",
    "output": "generated_output : list = add_n(sort_asc([3, -1, 5, -1, -1]),-3)",
    "io_inp": [
      3,
      -1,
      5,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [0, -3, 2, -3]\noutput : list = [12, -13, 12, -3]",
    "output": "generated_output : list = reverse(sub_n(take(take(mul_n([0, -3, 2, -3],-5),14),9),3))",
    "io_inp": [
      0,
      -3,
      2,
      -3
    ],
    "io_out": [
      12,
      -13,
      12,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(mul_n(input,-5),14),9),3))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(reverse([-4, 0]),12))))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(reverse(input),12))))"
  },
  {
    "input": "input : list = [1, 1, -1, -4, 3, 3]\noutput : list = [-12, -3, 9, 9]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(drop([1, 1, -1, -4, 3, 3],2))),11),3)",
    "io_inp": [
      1,
      1,
      -1,
      -4,
      3,
      3
    ],
    "io_out": [
      -12,
      -3,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(drop(input,2))),11),3)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [8, 2, 1]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(sub_n([5, -2, -1],-3)))),38)",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      8,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(sub_n(input,-3)))),38)"
  },
  {
    "input": "input : list = [-3, 3, 1]\noutput : list = [-2, 4, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sub_n([-3, 3, 1],2),-5),-1),4),5)",
    "io_inp": [
      -3,
      3,
      1
    ],
    "io_out": [
      -2,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sub_n(input,2),-5),-1),4),5)"
  },
  {
    "input": "input : list = [-2, 5, 3, 0, 4]\noutput : list = [-6, 1, -1, -4, 0]",
    "output": "generated_output : list = add_n([-2, 5, 3, 0, 4],-4)",
    "io_inp": [
      -2,
      5,
      3,
      0,
      4
    ],
    "io_out": [
      -6,
      1,
      -1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(mul_n([1, 3, -4],5),1),1)))",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(mul_n(input,5),1),1)))"
  },
  {
    "input": "input : list = [0, -2, 0, 1]\noutput : list = [1, 0, 0, -2]",
    "output": "generated_output : list = take(take(sort_des([0, -2, 0, 1]),9),27)",
    "io_inp": [
      0,
      -2,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),9),27)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-2, 3]",
    "output": "generated_output : list = reverse(take(take(sort_des(sub_n([-4, 1],-2)),22),13))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(sub_n(input,-2)),22),13))"
  },
  {
    "input": "input : list = [-4, -4, -4]\noutput : list = [-5, -5, -5]",
    "output": "generated_output : list = sub_n(sort_des([-4, -4, -4]),1)",
    "io_inp": [
      -4,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [3, -4, 2, 1]\noutput : list = [3, -4]",
    "output": "generated_output : list = take([3, -4, 2, 1],2)",
    "io_inp": [
      3,
      -4,
      2,
      1
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, 0, 0, -4, -3]\noutput : list = [3, 4, 0, 0, 0]",
    "output": "generated_output : list = reverse(mul_n([0, 0, 0, -4, -3],-1))",
    "io_inp": [
      0,
      0,
      0,
      -4,
      -3
    ],
    "io_out": [
      3,
      4,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [3, 3, -5, 0, 5, 0]\noutput : list = [5, 3, 3, 0, 0, -5]",
    "output": "generated_output : list = sort_des([3, 3, -5, 0, 5, 0])",
    "io_inp": [
      3,
      3,
      -5,
      0,
      5,
      0
    ],
    "io_out": [
      5,
      3,
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, 1, -2, -5, -3]\noutput : list = [9, -9, 0, -9, -18, -12]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(mul_n([4, -2, 1, -2, -5, -3],3),-3))),1)",
    "io_inp": [
      4,
      -2,
      1,
      -2,
      -5,
      -3
    ],
    "io_out": [
      9,
      -9,
      0,
      -9,
      -18,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(mul_n(input,3),-3))),1)"
  },
  {
    "input": "input : list = [5, 0, -4, 3]\noutput : list = [-9, -5, -2, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n([5, 0, -4, 3],5))))",
    "io_inp": [
      5,
      0,
      -4,
      3
    ],
    "io_out": [
      -9,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(input,5))))"
  },
  {
    "input": "input : list = [2, -3, 5, 2, 3, 2]\noutput : list = [-2, 3, 3, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(sub_n([2, -3, 5, 2, 3, 2],-1))",
    "io_inp": [
      2,
      -3,
      5,
      2,
      3,
      2
    ],
    "io_out": [
      -2,
      3,
      3,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [3, -1, -2, -4]\noutput : list = [8, 4]",
    "output": "generated_output : list = sub_n(take(sort_des([3, -1, -2, -4]),2),-5)",
    "io_inp": [
      3,
      -1,
      -2,
      -4
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),2),-5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(add_n([5, 5],-4),-5),11),4))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(add_n(input,-4),-5),11),4))"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [-60, -60, -100]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(mul_n([-5, -3, -3],1))),-4),-5)",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      -60,
      -60,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(mul_n(input,1))),-4),-5)"
  },
  {
    "input": "input : list = [1, 1, 1, -3]\noutput : list = [14, 14, 14, 10]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(add_n([1, 1, 1, -3],3)),5)),-5)",
    "io_inp": [
      1,
      1,
      1,
      -3
    ],
    "io_out": [
      14,
      14,
      14,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(add_n(input,3)),5)),-5)"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [3, 8, 6]",
    "output": "generated_output : list = add_n([-1, 4, 2],4)",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      3,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [1, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([3, -5])),2)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),2)"
  },
  {
    "input": "input : list = [2, -1, -5, -1, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, -1, -5, -1, 2],1))",
    "io_inp": [
      2,
      -1,
      -5,
      -1,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [3, 5]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n([2, 0],-2),4))),5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n(input,-2),4))),5)"
  },
  {
    "input": "input : list = [-3, -1, 2, 5, -3, -2]\noutput : list = [7, 4, 1, 0, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(reverse([-3, -1, 2, 5, -3, -2]),5)),-3))",
    "io_inp": [
      -3,
      -1,
      2,
      5,
      -3,
      -2
    ],
    "io_out": [
      7,
      4,
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(reverse(input),5)),-3))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [4, 6]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(add_n([5, 3],-3),5),-1)),3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(add_n(input,-3),5),-1)),3)"
  },
  {
    "input": "input : list = [0, -4, -5, 1, -3]\noutput : list = [-3, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc(drop(add_n(sort_asc([0, -4, -5, 1, -3]),-3),2)),3)",
    "io_inp": [
      0,
      -4,
      -5,
      1,
      -3
    ],
    "io_out": [
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(add_n(sort_asc(input),-3),2)),3)"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [-11, -11, -7]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(sort_des([-4, 0, -4])),4)),-3)",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      -11,
      -11,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(sort_des(input)),4)),-3)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [3, 8, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(reverse([2, -3, 3])),-1)),-5)",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      3,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(reverse(input)),-1)),-5)"
  },
  {
    "input": "input : list = [-1, 2, 3, 5]\noutput : list = [13, 11, 10, 7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(add_n([-1, 2, 3, 5],-1)),-4)),-5)",
    "io_inp": [
      -1,
      2,
      3,
      5
    ],
    "io_out": [
      13,
      11,
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(add_n(input,-1)),-4)),-5)"
  },
  {
    "input": "input : list = [5, -5, -2, 4, 1]\noutput : list = [24, 54, 45, 27, 36]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n([5, -5, -2, 4, 1],5),3),5),8),-3)",
    "io_inp": [
      5,
      -5,
      -2,
      4,
      1
    ],
    "io_out": [
      24,
      54,
      45,
      27,
      36
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n(input,5),3),5),8),-3)"
  },
  {
    "input": "input : list = [5, -3, 2, 1, -2, -1]\noutput : list = [5, -3, 2, 1, -2, -1]",
    "output": "generated_output : list = reverse(reverse([5, -3, 2, 1, -2, -1]))",
    "io_inp": [
      5,
      -3,
      2,
      1,
      -2,
      -1
    ],
    "io_out": [
      5,
      -3,
      2,
      1,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take([4, -5, 1],1),-3)",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [3, 2, -3]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = add_n(reverse(reverse(take(sort_asc([3, 2, -3]),13))),-2)",
    "io_inp": [
      3,
      2,
      -3
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(sort_asc(input),13))),-2)"
  },
  {
    "input": "input : list = [1, 1, -4, 2, 4, -1]\noutput : list = [2, 4, -1]",
    "output": "generated_output : list = drop([1, 1, -4, 2, 4, -1],3)",
    "io_inp": [
      1,
      1,
      -4,
      2,
      4,
      -1
    ],
    "io_out": [
      2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, -2, 1, 1, -5, -5]\noutput : list = [2, 2, 4, 5, 8, 8]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(add_n([-3, -2, 1, 1, -5, -5],2)),29)),-5)",
    "io_inp": [
      -3,
      -2,
      1,
      1,
      -5,
      -5
    ],
    "io_out": [
      2,
      2,
      4,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(add_n(input,2)),29)),-5)"
  },
  {
    "input": "input : list = [3, -2, -3, -2, -5]\noutput : list = [6, 9, 8, 9]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(drop([3, -2, -3, -2, -5],1),2),5)),-4)",
    "io_inp": [
      3,
      -2,
      -3,
      -2,
      -5
    ],
    "io_out": [
      6,
      9,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(drop(input,1),2),5)),-4)"
  },
  {
    "input": "input : list = [5, -1, 3, -1, 2]\noutput : list = [3, 1, 0, -3, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n([5, -1, 3, -1, 2],3))),-5)",
    "io_inp": [
      5,
      -1,
      3,
      -1,
      2
    ],
    "io_out": [
      3,
      1,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(input,3))),-5)"
  },
  {
    "input": "input : list = [3, 1, -2]\noutput : list = [3, 0]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(drop([3, 1, -2],1),-2)),4),31)",
    "io_inp": [
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(drop(input,1),-2)),4),31)"
  },
  {
    "input": "input : list = [5, -5, 5, -1, -1, -1]\noutput : list = [3, -3, -3, -3, -7]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(drop([5, -5, 5, -1, -1, -1],1)),4),7),-2)",
    "io_inp": [
      5,
      -5,
      5,
      -1,
      -1,
      -1
    ],
    "io_out": [
      3,
      -3,
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(drop(input,1)),4),7),-2)"
  },
  {
    "input": "input : list = [-5, 5, -2, 0, -5, -3]\noutput : list = [0, -5, -3]",
    "output": "generated_output : list = take(drop([-5, 5, -2, 0, -5, -3],3),14)",
    "io_inp": [
      -5,
      5,
      -2,
      0,
      -5,
      -3
    ],
    "io_out": [
      0,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(drop(input,3),14)"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [8, -12, -12]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(add_n([2, -3, 2],1),-1),-4),-4))",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(add_n(input,1),-1),-4),-4))"
  },
  {
    "input": "input : list = [0, 2, 3]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = take(sort_des([0, 2, 3]),7)",
    "io_inp": [
      0,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [-1, -4, 0, 2, 5]\noutput : list = [7, 4, 2, 1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(add_n([-1, -4, 0, 2, 5],-1)),-3)))",
    "io_inp": [
      -1,
      -4,
      0,
      2,
      5
    ],
    "io_out": [
      7,
      4,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(add_n(input,-1)),-3)))"
  },
  {
    "input": "input : list = [1, -3, 2, -1, 3, -5]\noutput : list = [2, -2, 3, 0, 4, -4]",
    "output": "generated_output : list = add_n([1, -3, 2, -1, 3, -5],1)",
    "io_inp": [
      1,
      -3,
      2,
      -1,
      3,
      -5
    ],
    "io_out": [
      2,
      -2,
      3,
      0,
      4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [13, -5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(sub_n([-5, 4],-3))),2),-1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      13,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(sub_n(input,-3))),2),-1)"
  },
  {
    "input": "input : list = [-2, 3, -1, 4, -3, -3]\noutput : list = [-2, -2, 5, 0, 4, -1]",
    "output": "generated_output : list = add_n(reverse([-2, 3, -1, 4, -3, -3]),1)",
    "io_inp": [
      -2,
      3,
      -1,
      4,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      5,
      0,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-2, 5, 4, -2, 0]\noutput : list = [-19, -16, -4, 2, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(mul_n([-2, 5, 4, -2, 0],-3),4))))",
    "io_inp": [
      -2,
      5,
      4,
      -2,
      0
    ],
    "io_out": [
      -19,
      -16,
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(mul_n(input,-3),4))))"
  },
  {
    "input": "input : list = [-3, -2, -4]\noutput : list = [1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-3, -2, -4]),-5)",
    "io_inp": [
      -3,
      -2,
      -4
    ],
    "io_out": [
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc([-4, 2])",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -2, -3]\noutput : list = [12, 10, 8]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(sort_asc([-4, -2, -3]),-5),28),-3),-2)",
    "io_inp": [
      -4,
      -2,
      -3
    ],
    "io_out": [
      12,
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(sort_asc(input),-5),28),-3),-2)"
  },
  {
    "input": "input : list = [-2, -3, 0, 1]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(sub_n(take([-2, -3, 0, 1],2),-1),1)",
    "io_inp": [
      -2,
      -3,
      0,
      1
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,2),-1),1)"
  },
  {
    "input": "input : list = [-1, -1, 1]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sort_asc([-1, -1, 1]),-1))))",
    "io_inp": [
      -1,
      -1,
      1
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [-3, -2, 4, 2, -1, 3]\noutput : list = [9, 5, 8, 10, 4, 3]",
    "output": "generated_output : list = reverse(take(take(add_n(add_n([-3, -2, 4, 2, -1, 3],3),3),6),15))",
    "io_inp": [
      -3,
      -2,
      4,
      2,
      -1,
      3
    ],
    "io_out": [
      9,
      5,
      8,
      10,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(add_n(input,3),3),6),15))"
  },
  {
    "input": "input : list = [-4, -1, 0]\noutput : list = [-4, -7, -16]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(reverse([-4, -1, 0]))),3),4)",
    "io_inp": [
      -4,
      -1,
      0
    ],
    "io_out": [
      -4,
      -7,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(reverse(input))),3),4)"
  },
  {
    "input": "input : list = [1, -5, 5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(sort_des(drop([1, -5, 5, 4],2)))",
    "io_inp": [
      1,
      -5,
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [-2, -4, 1, -2]\noutput : list = [4, 6, 6, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n([-2, -4, 1, -2],5)),17),-3)",
    "io_inp": [
      -2,
      -4,
      1,
      -2
    ],
    "io_out": [
      4,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(input,5)),17),-3)"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [0, 0, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_des([-2, 4, -2])),1)),-3)",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_des(input)),1)),-3)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(reverse([-5, -4]),14))))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(reverse(input),14))))"
  },
  {
    "input": "input : list = [5, 2, -5, -1, 5, -4]\noutput : list = [29]",
    "output": "generated_output : list = sub_n(mul_n(take(take(mul_n([5, 2, -5, -1, 5, -4],-2),1),12),-3),1)",
    "io_inp": [
      5,
      2,
      -5,
      -1,
      5,
      -4
    ],
    "io_out": [
      29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(take(mul_n(input,-2),1),12),-3),1)"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [7, 19, 23]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n(sort_asc([1, 0, 4]),5)),-4),3)",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      7,
      19,
      23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(sort_asc(input),5)),-4),3)"
  },
  {
    "input": "input : list = [5, -5, 5, -3, 2, 0]\noutput : list = [6, -4, 6, -2, 3, 1]",
    "output": "generated_output : list = add_n([5, -5, 5, -3, 2, 0],1)",
    "io_inp": [
      5,
      -5,
      5,
      -3,
      2,
      0
    ],
    "io_out": [
      6,
      -4,
      6,
      -2,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 2, 1, 0, -4, -1]\noutput : list = [-4, -1, 0, 1, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc([3, 2, 1, 0, -4, -1]))))",
    "io_inp": [
      3,
      2,
      1,
      0,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [8, 5, 4]",
    "output": "generated_output : list = sort_des(sub_n([1, 5, 2],-3))",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(sort_des([5, -1]),7),-2),4),-1)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(sort_des(input),7),-2),4),-1)"
  },
  {
    "input": "input : list = [-5, -5, 2, -4, 0, 4]\noutput : list = [2, -2, -6, 0, -7, -7]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n([-5, -5, 2, -4, 0, 4],1),1)),43)",
    "io_inp": [
      -5,
      -5,
      2,
      -4,
      0,
      4
    ],
    "io_out": [
      2,
      -2,
      -6,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(input,1),1)),43)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(reverse([1, 3]),-1),4)))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(reverse(input),-1),4)))"
  },
  {
    "input": "input : list = [1, 2, 4, 0, -5]\noutput : list = [-5, 0, 4, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, 4, 0, -5])",
    "io_inp": [
      1,
      2,
      4,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 2, -4, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(sort_des([3, 2, -4, 4])))),2)",
    "io_inp": [
      3,
      2,
      -4,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [1, -3, 3, 4]\noutput : list = [-5, -3, 9, 1]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(reverse(add_n([1, -3, 3, 4],-1)),2),1),-1)",
    "io_inp": [
      1,
      -3,
      3,
      4
    ],
    "io_out": [
      -5,
      -3,
      9,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(reverse(add_n(input,-1)),2),1),-1)"
  },
  {
    "input": "input : list = [-2, 2, 2, -2, -5, 3]\noutput : list = [2, 6, 6]",
    "output": "generated_output : list = sub_n(take([-2, 2, 2, -2, -5, 3],3),-4)",
    "io_inp": [
      -2,
      2,
      2,
      -2,
      -5,
      3
    ],
    "io_out": [
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-4)"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [7, 4, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(add_n([-5, 1, 4],3)))))",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      7,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [-2, 5, -1, 1]\noutput : list = [3, -1, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(sub_n([-2, 5, -1, 1],2),15))))",
    "io_inp": [
      -2,
      5,
      -1,
      1
    ],
    "io_out": [
      3,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(sub_n(input,2),15))))"
  },
  {
    "input": "input : list = [-3, -5, 0, -5, -4]\noutput : list = [4, 5]",
    "output": "generated_output : list = mul_n(reverse(drop([-3, -5, 0, -5, -4],3)),-1)",
    "io_inp": [
      -3,
      -5,
      0,
      -5,
      -4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(input,3)),-1)"
  },
  {
    "input": "input : list = [2, 2, 0, 1, -3, 1]\noutput : list = [3, 4, 5, 5]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_asc(take([2, 2, 0, 1, -3, 1],4)),-3),-3),3)",
    "io_inp": [
      2,
      2,
      0,
      1,
      -3,
      1
    ],
    "io_out": [
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_asc(take(input,4)),-3),-3),3)"
  },
  {
    "input": "input : list = [0, 2, -2, -2]\noutput : list = [-12, -20, -28, -28]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(add_n([0, 2, -2, -2],-3),-2)),4),10)",
    "io_inp": [
      0,
      2,
      -2,
      -2
    ],
    "io_out": [
      -12,
      -20,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(add_n(input,-3),-2)),4),10)"
  },
  {
    "input": "input : list = [0, -1, -3, -2, 0]\noutput : list = [-3, -2, -1, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(add_n([0, -1, -3, -2, 0],-2),-2))))",
    "io_inp": [
      0,
      -1,
      -3,
      -2,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(add_n(input,-2),-2))))"
  },
  {
    "input": "input : list = [1, -5, -2, 3]\noutput : list = [-2, 1, 4, 6]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc([1, -5, -2, 3]))),-3))",
    "io_inp": [
      1,
      -5,
      -2,
      3
    ],
    "io_out": [
      -2,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-8, -9]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(reverse([-1, -2]),5),2),19))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(reverse(input),5),2),19))"
  },
  {
    "input": "input : list = [4, 3, -1, 4, -2, 1]\noutput : list = [4, 3, -1, 4, -2, 1]",
    "output": "generated_output : list = mul_n([4, 3, -1, 4, -2, 1],1)",
    "io_inp": [
      4,
      3,
      -1,
      4,
      -2,
      1
    ],
    "io_out": [
      4,
      3,
      -1,
      4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, -5, -1, 4, 3]\noutput : list = [0, -8, -4, 1, 0]",
    "output": "generated_output : list = add_n([3, -5, -1, 4, 3],-3)",
    "io_inp": [
      3,
      -5,
      -1,
      4,
      3
    ],
    "io_out": [
      0,
      -8,
      -4,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [5, -5, 2, -2, -3]\noutput : list = [5, 2, -2, -3, -5]",
    "output": "generated_output : list = sort_des([5, -5, 2, -2, -3])",
    "io_inp": [
      5,
      -5,
      2,
      -2,
      -3
    ],
    "io_out": [
      5,
      2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [9, 11, 13]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_asc([-2, -1, 0]),2),-2),-5))",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      9,
      11,
      13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_asc(input),2),-2),-5))"
  },
  {
    "input": "input : list = [-2, -4, -1, 4]\noutput : list = [2, 0, 3, 8]",
    "output": "generated_output : list = sub_n([-2, -4, -1, 4],-4)",
    "io_inp": [
      -2,
      -4,
      -1,
      4
    ],
    "io_out": [
      2,
      0,
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 5, 4, -2, 0, 3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 5, 4, -2, 0, 3],1)",
    "io_inp": [
      3,
      5,
      4,
      -2,
      0,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 2, 2, 3, -4, -2]\noutput : list = [2, 4, 7, 8, 8, 9]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_des([1, 2, 2, 3, -4, -2])),-2)),4)",
    "io_inp": [
      1,
      2,
      2,
      3,
      -4,
      -2
    ],
    "io_out": [
      2,
      4,
      7,
      8,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_des(input)),-2)),4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-7, -6]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(sub_n([-3, -4],2),-5)),29),4)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(sub_n(input,2),-5)),29),4)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [7, 1]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(reverse([2, -4])),14),-4),-1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(reverse(input)),14),-4),-1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [8, 9]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(sort_asc([3, 4]),5))))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [1, -3, 0, 2, -5, -3]\noutput : list = [0, 24, 6, -6, 36, 24]",
    "output": "generated_output : list = take(mul_n(sub_n(take(mul_n([1, -3, 0, 2, -5, -3],-3),18),-3),2),52)",
    "io_inp": [
      1,
      -3,
      0,
      2,
      -5,
      -3
    ],
    "io_out": [
      0,
      24,
      6,
      -6,
      36,
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(mul_n(input,-3),18),-3),2),52)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [3, -4]",
    "output": "generated_output : list = take(add_n(take(sort_des(mul_n([2, -5],-1)),16),-2),16)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(mul_n(input,-1)),16),-2),16)"
  },
  {
    "input": "input : list = [-1, 1, -2]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = sub_n(sort_des([-1, 1, -2]),1)",
    "io_inp": [
      -1,
      1,
      -2
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-4, 4, 5, 3, 0, 0]\noutput : list = [-5, 3, 4, 2, -1, -1]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(reverse([-4, 4, 5, 3, 0, 0]),1),9),2))",
    "io_inp": [
      -4,
      4,
      5,
      3,
      0,
      0
    ],
    "io_out": [
      -5,
      3,
      4,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(reverse(input),1),9),2))"
  },
  {
    "input": "input : list = [-4, 4, 0, 1, -2, -5]\noutput : list = [-4, 4, 0, 1, -2, -5]",
    "output": "generated_output : list = sub_n(sub_n([-4, 4, 0, 1, -2, -5],-1),1)",
    "io_inp": [
      -4,
      4,
      0,
      1,
      -2,
      -5
    ],
    "io_out": [
      -4,
      4,
      0,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),1)"
  },
  {
    "input": "input : list = [5, 1, -2]\noutput : list = [-18, -12, -4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(add_n([5, 1, -2],-4),-1)),4),2)",
    "io_inp": [
      5,
      1,
      -2
    ],
    "io_out": [
      -18,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(add_n(input,-4),-1)),4),2)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [4, 12]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_asc([1, 3])),12)),4)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_asc(input)),12)),4)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n([-4, -2],5))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(input,5))))"
  },
  {
    "input": "input : list = [-1, -5, -4, 0, -3]\noutput : list = [-7, -1, -9, -11, -3]",
    "output": "generated_output : list = sub_n(take(take(reverse(mul_n([-1, -5, -4, 0, -3],2)),25),43),1)",
    "io_inp": [
      -1,
      -5,
      -4,
      0,
      -3
    ],
    "io_out": [
      -7,
      -1,
      -9,
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(mul_n(input,2)),25),43),1)"
  },
  {
    "input": "input : list = [0, -5, -4, 3, 3, -2]\noutput : list = [-1, -4, -6, -8, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(drop(sort_des([0, -5, -4, 3, 3, -2]),1))),-4)",
    "io_inp": [
      0,
      -5,
      -4,
      3,
      3,
      -2
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(drop(sort_des(input),1))),-4)"
  },
  {
    "input": "input : list = [-3, 2, 0, -5]\noutput : list = [-6, 4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take([-3, 2, 0, -5],2)),1),-2)",
    "io_inp": [
      -3,
      2,
      0,
      -5
    ],
    "io_out": [
      -6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(input,2)),1),-2)"
  },
  {
    "input": "input : list = [-4, 2, 5, 0, -2]\noutput : list = [4, 1, -1, -3, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n([-4, 2, 5, 0, -2],1))))",
    "io_inp": [
      -4,
      2,
      5,
      0,
      -2
    ],
    "io_out": [
      4,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(input,1))))"
  },
  {
    "input": "input : list = [-3, -4, -4, 1]\noutput : list = [-3, -3, -2, 2]",
    "output": "generated_output : list = take(sub_n(take(add_n(sort_asc([-3, -4, -4, 1]),-4),28),-5),42)",
    "io_inp": [
      -3,
      -4,
      -4,
      1
    ],
    "io_out": [
      -3,
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(sort_asc(input),-4),28),-5),42)"
  },
  {
    "input": "input : list = [-1, -4, 4]\noutput : list = [-1, -6, -9]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(sort_des([-1, -4, 4]),2),3)),10)",
    "io_inp": [
      -1,
      -4,
      4
    ],
    "io_out": [
      -1,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(sort_des(input),2),3)),10)"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [-10, -6, 6]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([5, -3, 3])),-2)",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      -10,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-2)"
  },
  {
    "input": "input : list = [0, 4, 1, -1]\noutput : list = [-3, -5, -7, -13]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(sort_des([0, 4, 1, -1])),3),-2),-1)",
    "io_inp": [
      0,
      4,
      1,
      -1
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(sort_des(input)),3),-2),-1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(sub_n([-1, 3],5),1)),-1),-1)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(sub_n(input,5),1)),-1),-1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des([-3, 1])",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5, -3, 4, -3, -2]\noutput : list = [25, 20, -10, -10, -15, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(sort_asc([-2, 5, -3, 4, -3, -2])),5)))",
    "io_inp": [
      -2,
      5,
      -3,
      4,
      -3,
      -2
    ],
    "io_out": [
      25,
      20,
      -10,
      -10,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([2, 2]),3))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),3))"
  },
  {
    "input": "input : list = [2, 1, 3, 0, -2]\noutput : list = [-2, 0, 1, 2, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(sub_n([2, 1, 3, 0, -2],-4))),9),4)",
    "io_inp": [
      2,
      1,
      3,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(sub_n(input,-4))),9),4)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-5, -10]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(sort_asc([-5, 0]),-4)),1))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(sort_asc(input),-4)),1))"
  },
  {
    "input": "input : list = [-5, 5, -3, -5]\noutput : list = [-17, -1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(mul_n([-5, 5, -3, -5],-2),-2),-5)))",
    "io_inp": [
      -5,
      5,
      -3,
      -5
    ],
    "io_out": [
      -17,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(mul_n(input,-2),-2),-5)))"
  },
  {
    "input": "input : list = [-5, 1, -5, 3]\noutput : list = [6, 2]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc([-5, 1, -5, 3])),2),2)",
    "io_inp": [
      -5,
      1,
      -5,
      3
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(input)),2),2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(sort_asc([-5, 2])),13),1),-4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(sort_asc(input)),13),1),-4)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [4, 5, 2]",
    "output": "generated_output : list = reverse([2, 5, 4])",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4, 5, 4, 0, 0]\noutput : list = [3, 3, 6, 7, 7, 8]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(add_n([3, 4, 5, 4, 0, 0],4)),-1)))",
    "io_inp": [
      3,
      4,
      5,
      4,
      0,
      0
    ],
    "io_out": [
      3,
      3,
      6,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(add_n(input,4)),-1)))"
  },
  {
    "input": "input : list = [-4, 1, -1, 4]\noutput : list = [-20, -2, 10, 28]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(mul_n([-4, 1, -1, 4],3)),2)),-2)",
    "io_inp": [
      -4,
      1,
      -1,
      4
    ],
    "io_out": [
      -20,
      -2,
      10,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(mul_n(input,3)),2)),-2)"
  },
  {
    "input": "input : list = [-2, 2, -2, 3, -3, 1]\noutput : list = [1, -3, 3, -2, 2, -2]",
    "output": "generated_output : list = reverse([-2, 2, -2, 3, -3, 1])",
    "io_inp": [
      -2,
      2,
      -2,
      3,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      3,
      -2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(add_n(add_n([5, -1],-3),-2),-1)))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(add_n(add_n(input,-3),-2),-1)))"
  },
  {
    "input": "input : list = [-3, 3, 1, 1, -5]\noutput : list = [32, 2, 2, -8, 22]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n([-3, 3, 1, 1, -5],1),-5)),2)",
    "io_inp": [
      -3,
      3,
      1,
      1,
      -5
    ],
    "io_out": [
      32,
      2,
      2,
      -8,
      22
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(input,1),-5)),2)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take([-1, 3, -5],1))))",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(input,1))))"
  },
  {
    "input": "input : list = [-2, -3, -5, 2, -1]\noutput : list = [9, 3, 1, -1, -5]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_asc([-2, -3, -5, 2, -1]),-5),2),5))",
    "io_inp": [
      -2,
      -3,
      -5,
      2,
      -1
    ],
    "io_out": [
      9,
      3,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_asc(input),-5),2),5))"
  },
  {
    "input": "input : list = [2, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(drop([2, 1, -5],1))",
    "io_inp": [
      2,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [0, -2, -2, 1, -1, 4]\noutput : list = [-11, -12, -14, -14]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(take([0, -2, -2, 1, -1, 4],4)),4),-4),4)",
    "io_inp": [
      0,
      -2,
      -2,
      1,
      -1,
      4
    ],
    "io_out": [
      -11,
      -12,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(take(input,4)),4),-4),4)"
  },
  {
    "input": "input : list = [-2, 2, 2, 0, -4]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(sort_des(drop([-2, 2, 2, 0, -4],3)))",
    "io_inp": [
      -2,
      2,
      2,
      0,
      -4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,3)))"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [-8, -11, -6]",
    "output": "generated_output : list = reverse(take(sub_n(sub_n(reverse([1, -2, 3]),5),4),4))",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      -8,
      -11,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sub_n(reverse(input),5),4),4))"
  },
  {
    "input": "input : list = [3, 5, 5, 4, -1]\noutput : list = [5, 5, 4, 3, -1]",
    "output": "generated_output : list = take(take(reverse(sort_asc(sort_asc([3, 5, 5, 4, -1]))),21),22)",
    "io_inp": [
      3,
      5,
      5,
      4,
      -1
    ],
    "io_out": [
      5,
      5,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(sort_asc(input))),21),22)"
  },
  {
    "input": "input : list = [-5, 0, -5, -1, -5]\noutput : list = [-10, -5, -10, -6, -10]",
    "output": "generated_output : list = add_n(sub_n([-5, 0, -5, -1, -5],2),-3)",
    "io_inp": [
      -5,
      0,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -10,
      -5,
      -10,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),-3)"
  },
  {
    "input": "input : list = [-4, 2, -5, 5, 0]\noutput : list = [6, 3, 1, -3, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_asc([-4, 2, -5, 5, 0]))),1),-2)",
    "io_inp": [
      -4,
      2,
      -5,
      5,
      0
    ],
    "io_out": [
      6,
      3,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_asc(input))),1),-2)"
  },
  {
    "input": "input : list = [-4, -3, -4, -5, -1, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(take([-4, -3, -4, -5, -1, -3],1)),1)),-4)",
    "io_inp": [
      -4,
      -3,
      -4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(take(input,1)),1)),-4)"
  },
  {
    "input": "input : list = [-2, 1, -4, 1]\noutput : list = [2, -3, 2, -1]",
    "output": "generated_output : list = reverse(add_n([-2, 1, -4, 1],1))",
    "io_inp": [
      -2,
      1,
      -4,
      1
    ],
    "io_out": [
      2,
      -3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [2, -5, 1, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([2, -5, 1, 4, -4],3)",
    "io_inp": [
      2,
      -5,
      1,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, 5, -4, -3]\noutput : list = [-3, -2, 1, 6]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(sub_n([0, 5, -4, -3],4),5),14)))",
    "io_inp": [
      0,
      5,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2,
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(sub_n(input,4),5),14)))"
  },
  {
    "input": "input : list = [5, 4, 2, -1, 5, -2]\noutput : list = [15, 12, 6, -3, 15, -6]",
    "output": "generated_output : list = mul_n([5, 4, 2, -1, 5, -2],3)",
    "io_inp": [
      5,
      4,
      2,
      -1,
      5,
      -2
    ],
    "io_out": [
      15,
      12,
      6,
      -3,
      15,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, 1, -4, 0]\noutput : list = [2, 1, -3]",
    "output": "generated_output : list = add_n(take(sort_des(sort_asc(drop([-2, 1, -4, 0],1))),13),1)",
    "io_inp": [
      -2,
      1,
      -4,
      0
    ],
    "io_out": [
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_asc(drop(input,1))),13),1)"
  },
  {
    "input": "input : list = [-5, 5, -5, -5, 2]\noutput : list = [2, -5, -5, 5, -5]",
    "output": "generated_output : list = reverse(reverse(reverse([-5, 5, -5, -5, 2])))",
    "io_inp": [
      -5,
      5,
      -5,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [1, 4, 3, -1, 2]\noutput : list = [6, 24, 0, -6, 12]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(sub_n([1, 4, 3, -1, 2],2)),-1),-3),2)",
    "io_inp": [
      1,
      4,
      3,
      -1,
      2
    ],
    "io_out": [
      6,
      24,
      0,
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(sub_n(input,2)),-1),-3),2)"
  },
  {
    "input": "input : list = [3, -5, 0, 4]\noutput : list = [-2, -7, -22, -47]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(sub_n([3, -5, 0, 4],4),5),-2)),11)",
    "io_inp": [
      3,
      -5,
      0,
      4
    ],
    "io_out": [
      -2,
      -7,
      -22,
      -47
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(sub_n(input,4),5),-2)),11)"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [4, 0, 12]",
    "output": "generated_output : list = mul_n([1, 0, 3],4)",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      4,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, -4, 2, -1]\noutput : list = [0, 0, 3, 6]",
    "output": "generated_output : list = sub_n(take(add_n(take(sort_asc([-4, -4, 2, -1]),4),1),16),-3)",
    "io_inp": [
      -4,
      -4,
      2,
      -1
    ],
    "io_out": [
      0,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sort_asc(input),4),1),16),-3)"
  },
  {
    "input": "input : list = [5, 5, 0, 3, 4, -1]\noutput : list = [1, -1, -7, -9, -11, -11]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n([5, 5, 0, 3, 4, -1],-2)))),1)",
    "io_inp": [
      5,
      5,
      0,
      3,
      4,
      -1
    ],
    "io_out": [
      1,
      -1,
      -7,
      -9,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n(input,-2)))),1)"
  },
  {
    "input": "input : list = [-4, -2, 5, 0, 0]\noutput : list = [5, 0, 0]",
    "output": "generated_output : list = take(sort_des(drop([-4, -2, 5, 0, 0],2)),15)",
    "io_inp": [
      -4,
      -2,
      5,
      0,
      0
    ],
    "io_out": [
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,2)),15)"
  },
  {
    "input": "input : list = [-4, 5, -1, 3]\noutput : list = [-20]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(drop(sort_asc([-4, 5, -1, 3]),3),1),-5))",
    "io_inp": [
      -4,
      5,
      -1,
      3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(drop(sort_asc(input),3),1),-5))"
  },
  {
    "input": "input : list = [-2, -4, 0, -5]\noutput : list = [-20, -28, -36, -40]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n([-2, -4, 0, -5],-5),-4),-1))",
    "io_inp": [
      -2,
      -4,
      0,
      -5
    ],
    "io_out": [
      -20,
      -28,
      -36,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(input,-5),-4),-1))"
  },
  {
    "input": "input : list = [-5, 3, 1, 1]\noutput : list = [1, -1, -1]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(drop([-5, 3, 1, 1],1),2)),26))",
    "io_inp": [
      -5,
      3,
      1,
      1
    ],
    "io_out": [
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(drop(input,1),2)),26))"
  },
  {
    "input": "input : list = [4, -1, 5, 3, -1]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(drop(take(sub_n(sort_des([4, -1, 5, 3, -1]),3),25),4))",
    "io_inp": [
      4,
      -1,
      5,
      3,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(take(sub_n(sort_des(input),3),25),4))"
  },
  {
    "input": "input : list = [-2, -1, -2, 4]\noutput : list = [-2, -2, -1, 4]",
    "output": "generated_output : list = sort_asc(mul_n([-2, -1, -2, 4],1))",
    "io_inp": [
      -2,
      -1,
      -2,
      4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [225, 50]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(add_n([-3, 4],5))),5),5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      225,
      50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(add_n(input,5))),5),5)"
  },
  {
    "input": "input : list = [-2, -5, -3, 2, 3]\noutput : list = [-8, -6, -5, -1, 0]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(sub_n([-2, -5, -3, 2, 3],3))),13))",
    "io_inp": [
      -2,
      -5,
      -3,
      2,
      3
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(sub_n(input,3))),13))"
  },
  {
    "input": "input : list = [-3, 4, -1, 1, 5, -1]\noutput : list = [-10, -8, -8, -6, -3, -2]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(add_n([-3, 4, -1, 1, 5, -1],-5)),2),18))",
    "io_inp": [
      -3,
      4,
      -1,
      1,
      5,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(add_n(input,-5)),2),18))"
  },
  {
    "input": "input : list = [1, 0, -1, -1, -2, 2]\noutput : list = [2, 3, 3, 4, 5, 6]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(add_n([1, 0, -1, -1, -2, 2],5),3)),12),-4)",
    "io_inp": [
      1,
      0,
      -1,
      -1,
      -2,
      2
    ],
    "io_out": [
      2,
      3,
      3,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(add_n(input,5),3)),12),-4)"
  },
  {
    "input": "input : list = [4, -4, -3, -2, 1]\noutput : list = [-4, -7, -10]",
    "output": "generated_output : list = sub_n(reverse(drop(sort_asc(add_n([4, -4, -3, -2, 1],-5)),2)),3)",
    "io_inp": [
      4,
      -4,
      -3,
      -2,
      1
    ],
    "io_out": [
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(drop(sort_asc(add_n(input,-5)),2)),3)"
  },
  {
    "input": "input : list = [-3, 5, 3, 4]\noutput : list = [-1, 5, 6, 7]",
    "output": "generated_output : list = sub_n(take(take(sort_asc([-3, 5, 3, 4]),14),27),-2)",
    "io_inp": [
      -3,
      5,
      3,
      4
    ],
    "io_out": [
      -1,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(input),14),27),-2)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(add_n([2, 2],-3),-1))))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(add_n(input,-3),-1))))"
  },
  {
    "input": "input : list = [-3, 0, -3, 1, -3, 4]\noutput : list = [-3, -3, -3, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, 0, -3, 1, -3, 4]))",
    "io_inp": [
      -3,
      0,
      -3,
      1,
      -3,
      4
    ],
    "io_out": [
      -3,
      -3,
      -3,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -1, -2, 2, 0]\noutput : list = [-2, -1, 5]",
    "output": "generated_output : list = sort_asc(take([5, -1, -2, 2, 0],3))",
    "io_inp": [
      5,
      -1,
      -2,
      2,
      0
    ],
    "io_out": [
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [-1, -3, 0, 5]\noutput : list = [-12, -10, -9, -4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(add_n([-1, -3, 0, 5],-4),17)),5))",
    "io_inp": [
      -1,
      -3,
      0,
      5
    ],
    "io_out": [
      -12,
      -10,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(add_n(input,-4),17)),5))"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_asc([5, 2, -1])),1)))",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [-4, 1, -3, 4, 5]\noutput : list = [4, 3, 0, -4, -5]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n([-4, 1, -3, 4, 5],1)),-5)),-5)",
    "io_inp": [
      -4,
      1,
      -3,
      4,
      5
    ],
    "io_out": [
      4,
      3,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(sub_n(input,1)),-5)),-5)"
  },
  {
    "input": "input : list = [-3, -2, 3, 1, -3]\noutput : list = [0, 1, 6, 4, 0]",
    "output": "generated_output : list = sub_n([-3, -2, 3, 1, -3],-3)",
    "io_inp": [
      -3,
      -2,
      3,
      1,
      -3
    ],
    "io_out": [
      0,
      1,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([3, -4]))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [10, 10, 1]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(add_n([-5, 4, -5],-4),-1),-1),33))",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      10,
      10,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(add_n(input,-4),-1),-1),33))"
  },
  {
    "input": "input : list = [1, 3, 3, -2, 4]\noutput : list = [5, -10, -10, -13]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(drop([1, 3, 3, -2, 4],1)),-3),1),14)",
    "io_inp": [
      1,
      3,
      3,
      -2,
      4
    ],
    "io_out": [
      5,
      -10,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(drop(input,1)),-3),1),14)"
  },
  {
    "input": "input : list = [0, 4, 3, -5]\noutput : list = [-11, -6, -3, -2]",
    "output": "generated_output : list = reverse(take(sub_n(sort_des(add_n([0, 4, 3, -5],-2)),4),36))",
    "io_inp": [
      0,
      4,
      3,
      -5
    ],
    "io_out": [
      -11,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_des(add_n(input,-2)),4),36))"
  },
  {
    "input": "input : list = [-5, -5, -3, -1, 0]\noutput : list = [-21, -21, -15, -9, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(add_n([-5, -5, -3, -1, 0],3)),5)),3)",
    "io_inp": [
      -5,
      -5,
      -3,
      -1,
      0
    ],
    "io_out": [
      -21,
      -21,
      -15,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(add_n(input,3)),5)),3)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [7, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n([1, -1],-4))),-3)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(input,-4))),-3)"
  },
  {
    "input": "input : list = [5, -4, -5, -2]\noutput : list = [15, -20, -30, -35]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(sort_asc([5, -4, -5, -2]),-4)),2),5)",
    "io_inp": [
      5,
      -4,
      -5,
      -2
    ],
    "io_out": [
      15,
      -20,
      -30,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(sort_asc(input),-4)),2),5)"
  },
  {
    "input": "input : list = [3, -2, -2]\noutput : list = [-19, -19, 6]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(sub_n([3, -2, -2],1),5),-1),3))",
    "io_inp": [
      3,
      -2,
      -2
    ],
    "io_out": [
      -19,
      -19,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(sub_n(input,1),5),-1),3))"
  },
  {
    "input": "input : list = [1, 5, 0, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(drop([1, 5, 0, 0],1),2))))",
    "io_inp": [
      1,
      5,
      0,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(drop(input,1),2))))"
  },
  {
    "input": "input : list = [2, 2, 3, -2, 2]\noutput : list = [-4, -12, -12, -12, -14]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(sub_n([2, 2, 3, -2, 2],-2),2)),8),-2)",
    "io_inp": [
      2,
      2,
      3,
      -2,
      2
    ],
    "io_out": [
      -4,
      -12,
      -12,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(sub_n(input,-2),2)),8),-2)"
  },
  {
    "input": "input : list = [2, 0, -4, -5, 5, -1]\noutput : list = [-4, 0, 6]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(drop([2, 0, -4, -5, 5, -1],3))),-1),19)",
    "io_inp": [
      2,
      0,
      -4,
      -5,
      5,
      -1
    ],
    "io_out": [
      -4,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(drop(input,3))),-1),19)"
  },
  {
    "input": "input : list = [-3, -1, -1, 5]\noutput : list = [-8, -6, -6, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(add_n([-3, -1, -1, 5],-5),14)),1))",
    "io_inp": [
      -3,
      -1,
      -1,
      5
    ],
    "io_out": [
      -8,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(add_n(input,-5),14)),1))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [9, 10]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(reverse([3, 2]),5),1)),2)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(reverse(input),5),1)),2)"
  },
  {
    "input": "input : list = [-2, -1, 0, 3, -3]\noutput : list = [-4, -3, -2, 1, -5]",
    "output": "generated_output : list = add_n(take(add_n([-2, -1, 0, 3, -3],-3),18),1)",
    "io_inp": [
      -2,
      -1,
      0,
      3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-3),18),1)"
  },
  {
    "input": "input : list = [0, 5, 1, 1]\noutput : list = [-10, -2, -2, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(mul_n([0, 5, 1, 1],-2)))))",
    "io_inp": [
      0,
      5,
      1,
      1
    ],
    "io_out": [
      -10,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(mul_n(input,-2)))))"
  },
  {
    "input": "input : list = [4, -1, 3, 2]\noutput : list = [-6, -11, -7, -8]",
    "output": "generated_output : list = sub_n(sub_n(add_n([4, -1, 3, 2],-3),2),5)",
    "io_inp": [
      4,
      -1,
      3,
      2
    ],
    "io_out": [
      -6,
      -11,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,-3),2),5)"
  },
  {
    "input": "input : list = [-5, -1, 3, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sub_n(sub_n(take([-5, -1, 3, -1],2),-1),4)",
    "io_inp": [
      -5,
      -1,
      3,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,2),-1),4)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n([-5, 2],-1)),1))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(input,-1)),1))"
  },
  {
    "input": "input : list = [-3, 0, 4, -1, 0]\noutput : list = [-6, 0, 0, 24]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(drop(mul_n([-3, 0, 4, -1, 0],-2),1)),-3))",
    "io_inp": [
      -3,
      0,
      4,
      -1,
      0
    ],
    "io_out": [
      -6,
      0,
      0,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(drop(mul_n(input,-2),1)),-3))"
  },
  {
    "input": "input : list = [3, 4, 4, 5]\noutput : list = [6, 8, 8, 10]",
    "output": "generated_output : list = mul_n([3, 4, 4, 5],2)",
    "io_inp": [
      3,
      4,
      4,
      5
    ],
    "io_out": [
      6,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(add_n([4, 3],2),2)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),2)"
  },
  {
    "input": "input : list = [1, 3, 3, 1, -4]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = add_n(take([1, 3, 3, 1, -4],3),-4)",
    "io_inp": [
      1,
      3,
      3,
      1,
      -4
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sort_asc(reverse(sub_n([-3, -5],1)))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-2, 3, -5, 4, 1]\noutput : list = [6, 3, 0, -2, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(sub_n([-2, 3, -5, 4, 1],4),11)),-1),-3)",
    "io_inp": [
      -2,
      3,
      -5,
      4,
      1
    ],
    "io_out": [
      6,
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(sub_n(input,4),11)),-1),-3)"
  },
  {
    "input": "input : list = [5, -4, -5, 3, 2]\noutput : list = [-20, -12, -8, 16, 20]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(add_n([5, -4, -5, 3, 2],-3)),7),-3),-4)",
    "io_inp": [
      5,
      -4,
      -5,
      3,
      2
    ],
    "io_out": [
      -20,
      -12,
      -8,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(add_n(input,-3)),7),-3),-4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [2, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(sort_des([3, 5]),2))),1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(sort_des(input),2))),1)"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [2, -2, 8]",
    "output": "generated_output : list = mul_n(take(reverse([4, -1, 1]),3),2)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      2,
      -2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),3),2)"
  },
  {
    "input": "input : list = [-2, -5, 4, -3]\noutput : list = [4, -2, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc([-2, -5, 4, -3])))))",
    "io_inp": [
      -2,
      -5,
      4,
      -3
    ],
    "io_out": [
      4,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, 1, 2, -5, 4]\noutput : list = [-2, -4, -3, -10, -1]",
    "output": "generated_output : list = sub_n([3, 1, 2, -5, 4],5)",
    "io_inp": [
      3,
      1,
      2,
      -5,
      4
    ],
    "io_out": [
      -2,
      -4,
      -3,
      -10,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse([0, -1])",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -1, -1, 2, 3, -1]\noutput : list = [15, 11, 9, 3, 3, 3]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(mul_n([5, -1, -1, 2, 3, -1],2),24),1)),5)",
    "io_inp": [
      5,
      -1,
      -1,
      2,
      3,
      -1
    ],
    "io_out": [
      15,
      11,
      9,
      3,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(mul_n(input,2),24),1)),5)"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-5, 9, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n([-5, 2, -5],-2))),15),1)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -5,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n(input,-2))),15),1)"
  },
  {
    "input": "input : list = [3, 1, -4, 3]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = sort_asc(take(take(reverse(sort_asc([3, 1, -4, 3])),20),3))",
    "io_inp": [
      3,
      1,
      -4,
      3
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(sort_asc(input)),20),3))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-8, -14]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse([-3, -1]),3),3),-4)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -8,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(input),3),3),-4)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [9, -6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(mul_n([-3, 2],1),-3),2),-5),3)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(mul_n(input,1),-3),2),-5),3)"
  },
  {
    "input": "input : list = [2, -5, 4, -2, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sort_asc([2, -5, 4, -2, -1]),2),3),-4),38)",
    "io_inp": [
      2,
      -5,
      4,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sort_asc(input),2),3),-4),38)"
  },
  {
    "input": "input : list = [-3, -3, 2, 1, 5]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = take(sub_n(drop(reverse(sort_des([-3, -3, 2, 1, 5])),2),4),33)",
    "io_inp": [
      -3,
      -3,
      2,
      1,
      5
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(reverse(sort_des(input)),2),4),33)"
  },
  {
    "input": "input : list = [-2, -4, -1, 0]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(take([-2, -4, -1, 0],1),-4))),5)",
    "io_inp": [
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(take(input,1),-4))),5)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-30, -15]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(reverse([-1, -4])),2),5))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -30,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(reverse(input)),2),5))"
  },
  {
    "input": "input : list = [-1, -5, 4, 0, 0]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(take([-1, -5, 4, 0, 0],2))",
    "io_inp": [
      -1,
      -5,
      4,
      0,
      0
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [5, 2, -4]\noutput : list = [-14, -8, 4]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n(sort_asc([5, 2, -4]),2),12),-2))",
    "io_inp": [
      5,
      2,
      -4
    ],
    "io_out": [
      -14,
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(sort_asc(input),2),12),-2))"
  },
  {
    "input": "input : list = [-2, -4, 5, -1, 0, -3]\noutput : list = [18, 3, 0, -3, -6, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(sort_asc([-2, -4, 5, -1, 0, -3]),3),3)))",
    "io_inp": [
      -2,
      -4,
      5,
      -1,
      0,
      -3
    ],
    "io_out": [
      18,
      3,
      0,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(sort_asc(input),3),3)))"
  },
  {
    "input": "input : list = [0, 3, -5, -1, 1, 3]\noutput : list = [3, -3, 13, 5, 1, -3]",
    "output": "generated_output : list = add_n(add_n(sub_n(take(mul_n([0, 3, -5, -1, 1, 3],-2),21),-5),1),-3)",
    "io_inp": [
      0,
      3,
      -5,
      -1,
      1,
      3
    ],
    "io_out": [
      3,
      -3,
      13,
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(take(mul_n(input,-2),21),-5),1),-3)"
  },
  {
    "input": "input : list = [4, -3, -4]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(reverse(take([4, -3, -4],1)))",
    "io_inp": [
      4,
      -3,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [0, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(sub_n([2, -2, 3],4)),1)))",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(sub_n(input,4)),1)))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [0, 7]",
    "output": "generated_output : list = take(take(add_n(reverse(sort_des([-4, 3])),4),24),22)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(sort_des(input)),4),24),22)"
  },
  {
    "input": "input : list = [-2, 1, 3]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, 3])",
    "io_inp": [
      -2,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, 2, 4, -5, 3]\noutput : list = [-10, -10, -6, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(add_n([-1, -5, 2, 4, -5, 3],-1)),1),3))",
    "io_inp": [
      -1,
      -5,
      2,
      4,
      -5,
      3
    ],
    "io_out": [
      -10,
      -10,
      -6,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(add_n(input,-1)),1),3))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-8, -6]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse([-3, -5]),3)))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(input),3)))"
  },
  {
    "input": "input : list = [-4, -1, 5, -2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(drop(sub_n(sort_des(sort_des([-4, -1, 5, -2, 4])),3),4),-3)",
    "io_inp": [
      -4,
      -1,
      5,
      -2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(sort_des(sort_des(input)),3),4),-3)"
  },
  {
    "input": "input : list = [3, -4, -3, -1, 1]\noutput : list = [-1, -5, -9, -13, -15]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(mul_n([3, -4, -3, -1, 1],2),-3),-4)))",
    "io_inp": [
      3,
      -4,
      -3,
      -1,
      1
    ],
    "io_out": [
      -1,
      -5,
      -9,
      -13,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(mul_n(input,2),-3),-4)))"
  },
  {
    "input": "input : list = [-3, 3, -5, 2, -3, 0]\noutput : list = [1, 0, -2, -5, -5, -7]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(sort_asc([-3, 3, -5, 2, -3, 0]))),-2))",
    "io_inp": [
      -3,
      3,
      -5,
      2,
      -3,
      0
    ],
    "io_out": [
      1,
      0,
      -2,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-5, 4, -3, 0, 2, -1]\noutput : list = [-10, -6, -2, 0, 4, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc([-5, 4, -3, 0, 2, -1]),2),31)",
    "io_inp": [
      -5,
      4,
      -3,
      0,
      2,
      -1
    ],
    "io_out": [
      -10,
      -6,
      -2,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),2),31)"
  },
  {
    "input": "input : list = [2, -3, 0, 0, -5]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(drop([2, -3, 0, 0, -5],3),-4)),-3),-5)",
    "io_inp": [
      2,
      -3,
      0,
      0,
      -5
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(drop(input,3),-4)),-3),-5)"
  },
  {
    "input": "input : list = [-2, -4, -5, 0, 4, 0]\noutput : list = [-32, -16, -16, -8, 0, 4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(add_n([-2, -4, -5, 0, 4, 0],3),-1))),-4)",
    "io_inp": [
      -2,
      -4,
      -5,
      0,
      4,
      0
    ],
    "io_out": [
      -32,
      -16,
      -16,
      -8,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(add_n(input,3),-1))),-4)"
  },
  {
    "input": "input : list = [-1, -4, 5, 2, 1, -1]\noutput : list = [4, -2, -2, -6, -8, -14]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(mul_n([-1, -4, 5, 2, 1, -1],2))),-1),4)",
    "io_inp": [
      -1,
      -4,
      5,
      2,
      1,
      -1
    ],
    "io_out": [
      4,
      -2,
      -2,
      -6,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(mul_n(input,2))),-1),4)"
  },
  {
    "input": "input : list = [-5, 4, -5, 3, 1, 4]\noutput : list = [25, 25, -5, -15, -20, -20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([-5, 4, -5, 3, 1, 4],-5)))",
    "io_inp": [
      -5,
      4,
      -5,
      3,
      1,
      4
    ],
    "io_out": [
      25,
      25,
      -5,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [5, -4, 2, 1, 5]\noutput : list = [1, 6, 7, 10, 10]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(sort_asc([5, -4, 2, 1, 5]),1),1),42),-4)",
    "io_inp": [
      5,
      -4,
      2,
      1,
      5
    ],
    "io_out": [
      1,
      6,
      7,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(sort_asc(input),1),1),42),-4)"
  },
  {
    "input": "input : list = [1, -4, 0, 4]\noutput : list = [2, -8, 0, 8]",
    "output": "generated_output : list = mul_n([1, -4, 0, 4],2)",
    "io_inp": [
      1,
      -4,
      0,
      4
    ],
    "io_out": [
      2,
      -8,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, -2, 0, 5, 2]\noutput : list = [0, 10, 4]",
    "output": "generated_output : list = mul_n(drop([0, -2, 0, 5, 2],2),2)",
    "io_inp": [
      0,
      -2,
      0,
      5,
      2
    ],
    "io_out": [
      0,
      10,
      4
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),2)"
  },
  {
    "input": "input : list = [4, -5, -2]\noutput : list = [-27, -18, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(reverse([4, -5, -2]),-4),3)))",
    "io_inp": [
      4,
      -5,
      -2
    ],
    "io_out": [
      -27,
      -18,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(reverse(input),-4),3)))"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [6, 2, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc([-2, -5, 2])),4)",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      6,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-3, 5, 3, -1]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_des(take([-3, 5, 3, -1],1)),2),2),-4)",
    "io_inp": [
      -3,
      5,
      3,
      -1
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_des(take(input,1)),2),2),-4)"
  },
  {
    "input": "input : list = [5, 2, 2, 5, 3, 1]\noutput : list = [2, 5, 5, 2, 4, 6]",
    "output": "generated_output : list = add_n(mul_n(add_n([5, 2, 2, 5, 3, 1],-2),-1),5)",
    "io_inp": [
      5,
      2,
      2,
      5,
      3,
      1
    ],
    "io_out": [
      2,
      5,
      5,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-2),-1),5)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [4, 7, -1]",
    "output": "generated_output : list = add_n([2, 5, -3],2)",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      4,
      7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [4, 3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n([-1, -2],4)),1))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(input,4)),1))"
  },
  {
    "input": "input : list = [-5, 2, 0, 2, -1, -5]\noutput : list = [-9, -5, -2, -4, -2, -9]",
    "output": "generated_output : list = reverse(add_n([-5, 2, 0, 2, -1, -5],-4))",
    "io_inp": [
      -5,
      2,
      0,
      2,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -5,
      -2,
      -4,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [1, 1, -5, -5, 3]\noutput : list = [-5, 1, 1]",
    "output": "generated_output : list = take(sort_asc(take([1, 1, -5, -5, 3],3)),19)",
    "io_inp": [
      1,
      1,
      -5,
      -5,
      3
    ],
    "io_out": [
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,3)),19)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-9, -4]",
    "output": "generated_output : list = take(add_n(take(sort_asc(sort_des([-5, 0])),22),-4),11)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(sort_des(input)),22),-4),11)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-12, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sort_des([3, 5])))),-4)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(take([3, 1, -3],1),2))))",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(take(input,1),2))))"
  },
  {
    "input": "input : list = [-5, 0, 4, 2, 4, 5]\noutput : list = [-5, 0, 2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([-5, 0, 4, 2, 4, 5])",
    "io_inp": [
      -5,
      0,
      4,
      2,
      4,
      5
    ],
    "io_out": [
      -5,
      0,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [-13, -5, -8]",
    "output": "generated_output : list = add_n(mul_n(sub_n(reverse(sub_n([2, 5, -3],3)),4),1),-3)",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      -13,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(reverse(sub_n(input,3)),4),1),-3)"
  },
  {
    "input": "input : list = [5, 0, -5, -1, -3, -1]\noutput : list = [-1, -3, -1, -5, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, -5, -1, -3, -1])",
    "io_inp": [
      5,
      0,
      -5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -1,
      -5,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-8, -9]",
    "output": "generated_output : list = add_n(sort_des([-4, -3]),-5)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [5, 1, -5, -1, 2]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(drop([5, 1, -5, -1, 2],3)))),1)",
    "io_inp": [
      5,
      1,
      -5,
      -1,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(drop(input,3)))),1)"
  },
  {
    "input": "input : list = [-2, 4, -5, -3]\noutput : list = [4, -2, -3, -5]",
    "output": "generated_output : list = take(sort_des(take(reverse(mul_n([-2, 4, -5, -3],1)),27)),24)",
    "io_inp": [
      -2,
      4,
      -5,
      -3
    ],
    "io_out": [
      4,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(mul_n(input,1)),27)),24)"
  },
  {
    "input": "input : list = [1, 2, -4]\noutput : list = [0, -15, -18]",
    "output": "generated_output : list = sort_des(mul_n(add_n(reverse([1, 2, -4]),4),-3))",
    "io_inp": [
      1,
      2,
      -4
    ],
    "io_out": [
      0,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(reverse(input),4),-3))"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [10, 6, 2]",
    "output": "generated_output : list = mul_n([5, 3, 1],2)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      10,
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, 5, -4, 5, 1]\noutput : list = [14, 14, 6, 4, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(reverse([0, 5, -4, 5, 1])),2)),4)",
    "io_inp": [
      0,
      5,
      -4,
      5,
      1
    ],
    "io_out": [
      14,
      14,
      6,
      4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(reverse(input)),2)),4)"
  },
  {
    "input": "input : list = [-5, -3, -1]\noutput : list = [-7]",
    "output": "generated_output : list = reverse(add_n(take([-5, -3, -1],1),-2))",
    "io_inp": [
      -5,
      -3,
      -1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(input,1),-2))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse([1, -4])",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 1, -2, 4, -4, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(sub_n([5, 1, -2, 4, -4, 2],-4)),2),1))",
    "io_inp": [
      5,
      1,
      -2,
      4,
      -4,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(sub_n(input,-4)),2),1))"
  },
  {
    "input": "input : list = [4, -1, -4, -4, 1, -4]\noutput : list = [-22, -7, 3, 18, 18, 18]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(mul_n([4, -1, -4, -4, 1, -4],-5)),4),-3),1)",
    "io_inp": [
      4,
      -1,
      -4,
      -4,
      1,
      -4
    ],
    "io_out": [
      -22,
      -7,
      3,
      18,
      18,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(mul_n(input,-5)),4),-3),1)"
  },
  {
    "input": "input : list = [-3, -3, 4, -1, 4]\noutput : list = [6, 6, 8, 13]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(sub_n([-3, -3, 4, -1, 4],-2)),4),2),-5)",
    "io_inp": [
      -3,
      -3,
      4,
      -1,
      4
    ],
    "io_out": [
      6,
      6,
      8,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(sub_n(input,-2)),4),2),-5)"
  },
  {
    "input": "input : list = [-2, 3, -2, -3]\noutput : list = [-2, -7, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(sort_asc([-2, 3, -2, -3]))),5))",
    "io_inp": [
      -2,
      3,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [2, 3, -2]\noutput : list = [31, 19, -29]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(mul_n([2, 3, -2],-3),-4),-4),-1))",
    "io_inp": [
      2,
      3,
      -2
    ],
    "io_out": [
      31,
      19,
      -29
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(mul_n(input,-3),-4),-4),-1))"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = sort_des([-5, 2, 4])",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, -4, -1, 0]\noutput : list = [-20, -8, -4, -4, 0]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(sort_asc([0, 1, -4, -1, 0])),4),-5),1)",
    "io_inp": [
      0,
      1,
      -4,
      -1,
      0
    ],
    "io_out": [
      -20,
      -8,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(sort_asc(input)),4),-5),1)"
  },
  {
    "input": "input : list = [4, 2, 3, -1, 5, -5]\noutput : list = [4, 2, 3, -1, 5, -5]",
    "output": "generated_output : list = take(add_n(sub_n([4, 2, 3, -1, 5, -5],-3),-3),20)",
    "io_inp": [
      4,
      2,
      3,
      -1,
      5,
      -5
    ],
    "io_out": [
      4,
      2,
      3,
      -1,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,-3),-3),20)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(reverse([1, -1])),-1),-2))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(reverse(input)),-1),-2))"
  },
  {
    "input": "input : list = [1, -5, -4, 4]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(take([1, -5, -4, 4],1),-5),1)),-4)",
    "io_inp": [
      1,
      -5,
      -4,
      4
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(take(input,1),-5),1)),-4)"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [-3, 0, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-3, 0, 4])),18)",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),18)"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = drop([-1, 3, -2],1)",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -5, 0, -2, -2]\noutput : list = [25, 30, 5, 15, 15]",
    "output": "generated_output : list = mul_n(sub_n([-4, -5, 0, -2, -2],1),-5)",
    "io_inp": [
      -4,
      -5,
      0,
      -2,
      -2
    ],
    "io_out": [
      25,
      30,
      5,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [-12, -6, 6]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(mul_n([-3, -1, 3],3)),15),3),13)",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      -12,
      -6,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(mul_n(input,3)),15),3),13)"
  },
  {
    "input": "input : list = [-1, -1, -5, -1, -3, 1]\noutput : list = [2, -2, -2, -2, -6, -10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([-1, -1, -5, -1, -3, 1],2)))",
    "io_inp": [
      -1,
      -1,
      -5,
      -1,
      -3,
      1
    ],
    "io_out": [
      2,
      -2,
      -2,
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,2)))"
  },
  {
    "input": "input : list = [5, -5, -2, -4, -1, 4]\noutput : list = [-5, -4, -2, -1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -5, -2, -4, -1, 4]))",
    "io_inp": [
      5,
      -5,
      -2,
      -4,
      -1,
      4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 4, -2]\noutput : list = [-6, 0, -2]",
    "output": "generated_output : list = add_n(reverse([2, 4, -2]),-4)",
    "io_inp": [
      2,
      4,
      -2
    ],
    "io_out": [
      -6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [0, -3, 5, -1, 5, 1]\noutput : list = [1, 1, -3, -4, -5, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n([0, -3, 5, -1, 5, 1],3),3)),4))",
    "io_inp": [
      0,
      -3,
      5,
      -1,
      5,
      1
    ],
    "io_out": [
      1,
      1,
      -3,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n(input,3),3)),4))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = mul_n([3, 2],-1)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [7, 9, 1]",
    "output": "generated_output : list = sub_n([2, 4, -4],-5)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      7,
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -4, 0, 5, -2]\noutput : list = [-3, -2, 0, 2, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse([-5, -4, 0, 5, -2])),-2))",
    "io_inp": [
      -5,
      -4,
      0,
      5,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(input)),-2))"
  },
  {
    "input": "input : list = [4, 4, 3, 0, -4]\noutput : list = [6, 6, 5, 2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(add_n([4, 4, 3, 0, -4],2)))))",
    "io_inp": [
      4,
      4,
      3,
      0,
      -4
    ],
    "io_out": [
      6,
      6,
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(add_n(input,2)))))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [12, -6]",
    "output": "generated_output : list = sub_n(mul_n([-5, 4],-2),-2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      12,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),-2)"
  },
  {
    "input": "input : list = [2, -4, -3, -4]\noutput : list = [14, 4, 2, 2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n([2, -4, -3, -4],2),-5),5))",
    "io_inp": [
      2,
      -4,
      -3,
      -4
    ],
    "io_out": [
      14,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(input,2),-5),5))"
  },
  {
    "input": "input : list = [-4, 5, -1, -5, 4, 4]\noutput : list = [15, -3, 24]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(take([-4, 5, -1, -5, 4, 4],3),4),-3)),12)",
    "io_inp": [
      -4,
      5,
      -1,
      -5,
      4,
      4
    ],
    "io_out": [
      15,
      -3,
      24
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(take(input,3),4),-3)),12)"
  },
  {
    "input": "input : list = [4, 1, 4, 4, -3]\noutput : list = [-24, 40, 88, 88, 88]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n([4, 1, 4, 4, -3],-4),5),-4)),4)",
    "io_inp": [
      4,
      1,
      4,
      4,
      -3
    ],
    "io_out": [
      -24,
      40,
      88,
      88,
      88
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(mul_n(input,-4),5),-4)),4)"
  },
  {
    "input": "input : list = [5, 0, -5, 1, -3]\noutput : list = [-18, -12, -3, 0, 12]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(reverse([5, 0, -5, 1, -3]),3),3)))",
    "io_inp": [
      5,
      0,
      -5,
      1,
      -3
    ],
    "io_out": [
      -18,
      -12,
      -3,
      0,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(reverse(input),3),3)))"
  },
  {
    "input": "input : list = [1, -3, -1, 4]\noutput : list = [4, 1, -1, -3]",
    "output": "generated_output : list = sort_des([1, -3, -1, 4])",
    "io_inp": [
      1,
      -3,
      -1,
      4
    ],
    "io_out": [
      4,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 1, -4, -1, -5, 5]\noutput : list = [1, -5, -9]",
    "output": "generated_output : list = sort_des(reverse(sub_n(drop([-4, 1, -4, -1, -5, 5],3),4)))",
    "io_inp": [
      -4,
      1,
      -4,
      -1,
      -5,
      5
    ],
    "io_out": [
      1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(drop(input,3),4)))"
  },
  {
    "input": "input : list = [-2, -4, -1, -4]\noutput : list = [2, 4, 1, 4]",
    "output": "generated_output : list = mul_n([-2, -4, -1, -4],-1)",
    "io_inp": [
      -2,
      -4,
      -1,
      -4
    ],
    "io_out": [
      2,
      4,
      1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 3, 4, 2, -1, -4]\noutput : list = [20, -12, -16, -8, 4, 16]",
    "output": "generated_output : list = mul_n([-5, 3, 4, 2, -1, -4],-4)",
    "io_inp": [
      -5,
      3,
      4,
      2,
      -1,
      -4
    ],
    "io_out": [
      20,
      -12,
      -16,
      -8,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n([1, 1],2)))))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n(input,2)))))"
  },
  {
    "input": "input : list = [-4, -4, 5, 2]\noutput : list = [60, 60, -30]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(sort_asc([-4, -4, 5, 2]),-3),3),5))",
    "io_inp": [
      -4,
      -4,
      5,
      2
    ],
    "io_out": [
      60,
      60,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(sort_asc(input),-3),3),5))"
  },
  {
    "input": "input : list = [-1, 0, 5, 3, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take([-1, 0, 5, 3, 1],2),2)))",
    "io_inp": [
      -1,
      0,
      5,
      3,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(input,2),2)))"
  },
  {
    "input": "input : list = [-5, 0, 0, 0]\noutput : list = [-17, -12, -12, -12]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(reverse([-5, 0, 0, 0]),-5),2),-5))",
    "io_inp": [
      -5,
      0,
      0,
      0
    ],
    "io_out": [
      -17,
      -12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(reverse(input),-5),2),-5))"
  },
  {
    "input": "input : list = [4, -1, -1, 0, -1]\noutput : list = [3, 4, 3, 3, 8]",
    "output": "generated_output : list = reverse(add_n(sub_n([4, -1, -1, 0, -1],-1),3))",
    "io_inp": [
      4,
      -1,
      -1,
      0,
      -1
    ],
    "io_out": [
      3,
      4,
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-1),3))"
  },
  {
    "input": "input : list = [0, 5, 3, -1]\noutput : list = [-3, 2, 0, -4]",
    "output": "generated_output : list = sub_n([0, 5, 3, -1],3)",
    "io_inp": [
      0,
      5,
      3,
      -1
    ],
    "io_out": [
      -3,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, 2, -5, 0]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(sort_asc([-1, 2, -5, 0])),1)),1)",
    "io_inp": [
      -1,
      2,
      -5,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(sort_asc(input)),1)),1)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(sub_n([-2, -3],-3))),-2),34)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(sub_n(input,-3))),-2),34)"
  },
  {
    "input": "input : list = [-2, 4, -2, 1, 1, -4]\noutput : list = [-3, 3, -3, 0, 0, -5]",
    "output": "generated_output : list = reverse(take(sub_n(reverse([-2, 4, -2, 1, 1, -4]),1),6))",
    "io_inp": [
      -2,
      4,
      -2,
      1,
      1,
      -4
    ],
    "io_out": [
      -3,
      3,
      -3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(input),1),6))"
  },
  {
    "input": "input : list = [1, 1, 2, 2, 2]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(drop([1, 1, 2, 2, 2],3)))),-1)",
    "io_inp": [
      1,
      1,
      2,
      2,
      2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(drop(input,3)))),-1)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des([-2, -2]))),3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(input))),3)"
  },
  {
    "input": "input : list = [4, 1, 2, 1, -3, 1]\noutput : list = [1, -3, 1, 2, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, 2, 1, -3, 1])",
    "io_inp": [
      4,
      1,
      2,
      1,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      1,
      2,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc(take([2, -3, 1],1)),6)),3)",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(take(input,1)),6)),3)"
  },
  {
    "input": "input : list = [-3, 1, -1]\noutput : list = [16, 8]",
    "output": "generated_output : list = add_n(drop(take(mul_n(add_n([-3, 1, -1],4),4),22),1),-4)",
    "io_inp": [
      -3,
      1,
      -1
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = add_n(drop(take(mul_n(add_n(input,4),4),22),1),-4)"
  },
  {
    "input": "input : list = [5, 4, 2, 3, 5]\noutput : list = [2, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 4, 2, 3, 5]))",
    "io_inp": [
      5,
      4,
      2,
      3,
      5
    ],
    "io_out": [
      2,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -3, -1, -2]\noutput : list = [15, 15, 23, 31]",
    "output": "generated_output : list = add_n(add_n(sort_asc(mul_n(mul_n([-1, -3, -1, -2],2),-4)),4),3)",
    "io_inp": [
      -1,
      -3,
      -1,
      -2
    ],
    "io_out": [
      15,
      15,
      23,
      31
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(mul_n(mul_n(input,2),-4)),4),3)"
  },
  {
    "input": "input : list = [-2, 2, 4, -2]\noutput : list = [8, 24, 32, 8]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(reverse([-2, 2, 4, -2]),-4)),12),4)",
    "io_inp": [
      -2,
      2,
      4,
      -2
    ],
    "io_out": [
      8,
      24,
      32,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(reverse(input),-4)),12),4)"
  },
  {
    "input": "input : list = [-5, 0, 3, 2, 2, 5]\noutput : list = [-100, -60, -40, -40, 0, 100]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(sort_des([-5, 0, 3, 2, 2, 5]),-5))),4)",
    "io_inp": [
      -5,
      0,
      3,
      2,
      2,
      5
    ],
    "io_out": [
      -100,
      -60,
      -40,
      -40,
      0,
      100
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(sort_des(input),-5))),4)"
  },
  {
    "input": "input : list = [1, -1, -5, 0, 2, 3]\noutput : list = [-4, 4, 20, 0, -8, -12]",
    "output": "generated_output : list = mul_n([1, -1, -5, 0, 2, 3],-4)",
    "io_inp": [
      1,
      -1,
      -5,
      0,
      2,
      3
    ],
    "io_out": [
      -4,
      4,
      20,
      0,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, 4, -5, 4, -3]\noutput : list = [4, 4, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-2, 4, -5, 4, -3])",
    "io_inp": [
      -2,
      4,
      -5,
      4,
      -3
    ],
    "io_out": [
      4,
      4,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, 1, 4, -1]\noutput : list = [6, 1, 4, 7, 2]",
    "output": "generated_output : list = reverse(take(reverse(take(sub_n([3, -2, 1, 4, -1],-3),15)),30))",
    "io_inp": [
      3,
      -2,
      1,
      4,
      -1
    ],
    "io_out": [
      6,
      1,
      4,
      7,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(sub_n(input,-3),15)),30))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n([1, 3],3),-1),-4)),3)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n(input,3),-1),-4)),3)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [8, 4]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n([1, 5],-4)),-1)),-5)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n(input,-4)),-1)),-5)"
  },
  {
    "input": "input : list = [-1, 5, 1, 3, -3]\noutput : list = [-3, -1, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([-1, 5, 1, 3, -3]))",
    "io_inp": [
      -1,
      5,
      1,
      3,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [4, -5, 1, -2, 4, -5]\noutput : list = [-4, -4, -1, 2, 5, 5]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des([4, -5, 1, -2, 4, -5]),6)),-1)",
    "io_inp": [
      4,
      -5,
      1,
      -2,
      4,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(input),6)),-1)"
  },
  {
    "input": "input : list = [-4, 2, 3, 2, -2, 3]\noutput : list = [2, 3, 2, -2, 3]",
    "output": "generated_output : list = drop([-4, 2, 3, 2, -2, 3],1)",
    "io_inp": [
      -4,
      2,
      3,
      2,
      -2,
      3
    ],
    "io_out": [
      2,
      3,
      2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [-5, -8, -11]",
    "output": "generated_output : list = take(add_n(mul_n(take(sort_des([-3, -4, -2]),4),3),1),7)",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(sort_des(input),4),3),1),7)"
  },
  {
    "input": "input : list = [-5, 0, -1, -2, -4, -1]\noutput : list = [3, 2, 2, 1, -1, -2]",
    "output": "generated_output : list = add_n(sort_des([-5, 0, -1, -2, -4, -1]),3)",
    "io_inp": [
      -5,
      0,
      -1,
      -2,
      -4,
      -1
    ],
    "io_out": [
      3,
      2,
      2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-5, 1, 2, -4, 0, -2]\noutput : list = [-1, 0, 2, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n([-5, 1, 2, -4, 0, -2],-4),1)))",
    "io_inp": [
      -5,
      1,
      2,
      -4,
      0,
      -2
    ],
    "io_out": [
      -1,
      0,
      2,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(input,-4),1)))"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take(take([-1, 5, 4],1),6)",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(input,1),6)"
  },
  {
    "input": "input : list = [0, 1, -3, -4, 2]\noutput : list = [-9, -3]",
    "output": "generated_output : list = add_n(drop([0, 1, -3, -4, 2],3),-5)",
    "io_inp": [
      0,
      1,
      -3,
      -4,
      2
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-5)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse(sort_des([-2, -3]))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, 4, -4, 3]\noutput : list = [19, 22, -2, 19]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(add_n([3, 4, -4, 3],5))),3),5)",
    "io_inp": [
      3,
      4,
      -4,
      3
    ],
    "io_out": [
      19,
      22,
      -2,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(add_n(input,5))),3),5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-15, 17]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(mul_n([-5, 3],4)),-5)),32)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -15,
      17
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(mul_n(input,4)),-5)),32)"
  },
  {
    "input": "input : list = [-5, -4, -4, -5, -4]\noutput : list = [-4, -4, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -4, -4, -5, -4])",
    "io_inp": [
      -5,
      -4,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, -5, 2]\noutput : list = [18, -45, 0, 27]",
    "output": "generated_output : list = take(take(mul_n(reverse(mul_n([3, 0, -5, 2],-3)),-3),38),24)",
    "io_inp": [
      3,
      0,
      -5,
      2
    ],
    "io_out": [
      18,
      -45,
      0,
      27
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(mul_n(input,-3)),-3),38),24)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [-5, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_des([-1, 3, -5]))",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -4, 1, -5]\noutput : list = [-15, 3, -12, -3]",
    "output": "generated_output : list = reverse(mul_n([-1, -4, 1, -5],3))",
    "io_inp": [
      -1,
      -4,
      1,
      -5
    ],
    "io_out": [
      -15,
      3,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [0, -1, 1, -5, -1]\noutput : list = [-1, 1, -5, -1]",
    "output": "generated_output : list = drop([0, -1, 1, -5, -1],1)",
    "io_inp": [
      0,
      -1,
      1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, -4, 0, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = drop(sort_asc(mul_n(mul_n(reverse([0, -4, 0, -3]),-5),-4)),2)",
    "io_inp": [
      0,
      -4,
      0,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(sort_asc(mul_n(mul_n(reverse(input),-5),-4)),2)"
  },
  {
    "input": "input : list = [-2, -4, -1, -4, -3]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(take([-2, -4, -1, -4, -3],1),9),4)))",
    "io_inp": [
      -2,
      -4,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(take(input,1),9),4)))"
  },
  {
    "input": "input : list = [4, -4, -5]\noutput : list = [4, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(sort_asc([4, -4, -5])))))",
    "io_inp": [
      4,
      -4,
      -5
    ],
    "io_out": [
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -3, 5, -1, -3, -1]\noutput : list = [-1, -2, 6, 0, -2, 0]",
    "output": "generated_output : list = take(reverse(add_n(reverse([-2, -3, 5, -1, -3, -1]),1)),38)",
    "io_inp": [
      -2,
      -3,
      5,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -2,
      6,
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(input),1)),38)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [5, 3, -3]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(sort_des([-3, 3, 5])))),38)",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(sort_des(input)))),38)"
  },
  {
    "input": "input : list = [-3, -1, 0]\noutput : list = [-12, -8, -6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(add_n([-3, -1, 0],-3),19)),2))",
    "io_inp": [
      -3,
      -1,
      0
    ],
    "io_out": [
      -12,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(add_n(input,-3),19)),2))"
  },
  {
    "input": "input : list = [-2, -3, 4, 3, -1, 3]\noutput : list = [35, 30, 30, 10]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(reverse([-2, -3, 4, 3, -1, 3]),3),4)),5)",
    "io_inp": [
      -2,
      -3,
      4,
      3,
      -1,
      3
    ],
    "io_out": [
      35,
      30,
      30,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(reverse(input),3),4)),5)"
  },
  {
    "input": "input : list = [1, -1, 5, 0, -2]\noutput : list = [5, 1, 0, -1, -2]",
    "output": "generated_output : list = sort_des([1, -1, 5, 0, -2])",
    "io_inp": [
      1,
      -1,
      5,
      0,
      -2
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(add_n([-5, -4, 3],-5)),-4)),3)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(add_n(input,-5)),-4)),3)"
  },
  {
    "input": "input : list = [-4, 5, 2, -3, -1, -2]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(take([-4, 5, 2, -3, -1, -2],4)))),2)",
    "io_inp": [
      -4,
      5,
      2,
      -3,
      -1,
      -2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(take(input,4)))),2)"
  },
  {
    "input": "input : list = [4, 1, -2, 1, -1]\noutput : list = [-20, -5, 10, -5, 5]",
    "output": "generated_output : list = mul_n([4, 1, -2, 1, -1],-5)",
    "io_inp": [
      4,
      1,
      -2,
      1,
      -1
    ],
    "io_out": [
      -20,
      -5,
      10,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [-8, -8, -4]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_des(sort_des([4, 0, 0]))),4),-4)",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_des(sort_des(input))),4),-4)"
  },
  {
    "input": "input : list = [5, 4, 5, 3, -5, 2]\noutput : list = [-16, -16, -12, -8, -4, 24]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n([5, 4, 5, 3, -5, 2],-4),-1),5))",
    "io_inp": [
      5,
      4,
      5,
      3,
      -5,
      2
    ],
    "io_out": [
      -16,
      -16,
      -12,
      -8,
      -4,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(input,-4),-1),5))"
  },
  {
    "input": "input : list = [4, 3, 3, -1, 0, 4]\noutput : list = [3, 3, 2, 2, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([4, 3, 3, -1, 0, 4],-1)))",
    "io_inp": [
      4,
      3,
      3,
      -1,
      0,
      4
    ],
    "io_out": [
      3,
      3,
      2,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-1)))"
  },
  {
    "input": "input : list = [-5, -5, 0, -4, 0]\noutput : list = [-9, -9, -4, -8, -4]",
    "output": "generated_output : list = sub_n([-5, -5, 0, -4, 0],4)",
    "io_inp": [
      -5,
      -5,
      0,
      -4,
      0
    ],
    "io_out": [
      -9,
      -9,
      -4,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [5, -2, -1, -3, -2, -1]\noutput : list = [-6, -5, -5, -4, -4, 2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n([5, -2, -1, -3, -2, -1],4),1),-1)),2)",
    "io_inp": [
      5,
      -2,
      -1,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n(input,4),1),-1)),2)"
  },
  {
    "input": "input : list = [-4, -2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(drop([-4, -2, 1],1))",
    "io_inp": [
      -4,
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [4, 5, 2, 3, -3]\noutput : list = [12, -6, -3, -12, -9]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(mul_n([4, 5, 2, 3, -3],-3)))),3)",
    "io_inp": [
      4,
      5,
      2,
      3,
      -3
    ],
    "io_out": [
      12,
      -6,
      -3,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(mul_n(input,-3)))),3)"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [-6, -6, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse([-4, -4, 5]))),-2)",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      -6,
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(input))),-2)"
  },
  {
    "input": "input : list = [-4, 0, -1, 0, 5]\noutput : list = [7, 2, 2, 1, -2]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(reverse([-4, 0, -1, 0, 5])),1),-4),-5)",
    "io_inp": [
      -4,
      0,
      -1,
      0,
      5
    ],
    "io_out": [
      7,
      2,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(reverse(input)),1),-4),-5)"
  },
  {
    "input": "input : list = [1, -2, 4, -4, -1, 3]\noutput : list = [-4, -5, -7, -9, -10, -12]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(add_n([1, -2, 4, -4, -1, 3],-5),-3),23)))",
    "io_inp": [
      1,
      -2,
      4,
      -4,
      -1,
      3
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -9,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(add_n(input,-5),-3),23)))"
  },
  {
    "input": "input : list = [-1, 2, 0, 1]\noutput : list = [0]",
    "output": "generated_output : list = take(take(drop(sort_des(drop([-1, 2, 0, 1],2)),1),15),18)",
    "io_inp": [
      -1,
      2,
      0,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(take(drop(sort_des(drop(input,2)),1),15),18)"
  },
  {
    "input": "input : list = [0, 2, -4]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc(take([0, 2, -4],1)),15),-1),1)",
    "io_inp": [
      0,
      2,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(take(input,1)),15),-1),1)"
  },
  {
    "input": "input : list = [4, -5, 1, -5]\noutput : list = [7, 4, -2, -2]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(reverse([4, -5, 1, -5])),3)),5)",
    "io_inp": [
      4,
      -5,
      1,
      -5
    ],
    "io_out": [
      7,
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(reverse(input)),3)),5)"
  },
  {
    "input": "input : list = [-2, 1, -3, 0]\noutput : list = [0, -3, 1, -2]",
    "output": "generated_output : list = take(reverse([-2, 1, -3, 0]),21)",
    "io_inp": [
      -2,
      1,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),21)"
  },
  {
    "input": "input : list = [3, -2, -5, -2, -1]\noutput : list = [-25, -10, -10, -5, 15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des([3, -2, -5, -2, -1]))),5)",
    "io_inp": [
      3,
      -2,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -25,
      -10,
      -10,
      -5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(input))),5)"
  },
  {
    "input": "input : list = [2, 1, 2, 0]\noutput : list = [4, 3, 4, 2]",
    "output": "generated_output : list = add_n([2, 1, 2, 0],2)",
    "io_inp": [
      2,
      1,
      2,
      0
    ],
    "io_out": [
      4,
      3,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, -5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -5, -4],1)",
    "io_inp": [
      -4,
      -5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 5, -5, 4, 1, 3]\noutput : list = [-2, 3, 4, 6, 7, 8]",
    "output": "generated_output : list = add_n(reverse(take(sort_des([0, 5, -5, 4, 1, 3]),19)),3)",
    "io_inp": [
      0,
      5,
      -5,
      4,
      1,
      3
    ],
    "io_out": [
      -2,
      3,
      4,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(input),19)),3)"
  },
  {
    "input": "input : list = [2, -2, -3, -2, 3, -4]\noutput : list = [5, 1, 0, 1]",
    "output": "generated_output : list = sub_n(take([2, -2, -3, -2, 3, -4],4),-3)",
    "io_inp": [
      2,
      -2,
      -3,
      -2,
      3,
      -4
    ],
    "io_out": [
      5,
      1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,4),-3)"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [192, 192, 96]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(add_n([4, 4, 1],2),-4),-2),4))",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      192,
      192,
      96
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(add_n(input,2),-4),-2),4))"
  },
  {
    "input": "input : list = [3, 5, 1, -4]\noutput : list = [10, 6, 2, -8]",
    "output": "generated_output : list = sort_des(mul_n([3, 5, 1, -4],2))",
    "io_inp": [
      3,
      5,
      1,
      -4
    ],
    "io_out": [
      10,
      6,
      2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,2))"
  },
  {
    "input": "input : list = [-1, -1, -3, 4, -3, 1]\noutput : list = [3, 3, 1, 8, 1, 5]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(add_n([-1, -1, -3, 4, -3, 1],5),3),-3),-5),39)",
    "io_inp": [
      -1,
      -1,
      -3,
      4,
      -3,
      1
    ],
    "io_out": [
      3,
      3,
      1,
      8,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(add_n(input,5),3),-3),-5),39)"
  },
  {
    "input": "input : list = [-4, -5, -5]\noutput : list = [-8, -8, -7]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des([-4, -5, -5]),17)),3)",
    "io_inp": [
      -4,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(input),17)),3)"
  },
  {
    "input": "input : list = [-4, 0, -2]\noutput : list = [2, 4, 0]",
    "output": "generated_output : list = reverse(take(sub_n([-4, 0, -2],-4),8))",
    "io_inp": [
      -4,
      0,
      -2
    ],
    "io_out": [
      2,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-4),8))"
  },
  {
    "input": "input : list = [-4, 4, -4]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(take([-4, 4, -4],1))),5),1)",
    "io_inp": [
      -4,
      4,
      -4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(take(input,1))),5),1)"
  },
  {
    "input": "input : list = [4, -4, -3]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(take([4, -4, -3],1))),3),1)",
    "io_inp": [
      4,
      -4,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(take(input,1))),3),1)"
  },
  {
    "input": "input : list = [-2, 3, 0, -3, -3, 4]\noutput : list = [60, 45, 0, -30, -45, -45]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sort_asc([-2, 3, 0, -3, -3, 4]))),-5),-3)",
    "io_inp": [
      -2,
      3,
      0,
      -3,
      -3,
      4
    ],
    "io_out": [
      60,
      45,
      0,
      -30,
      -45,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(sort_asc(input))),-5),-3)"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(take([5, 1, 5],1))",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-2, -2, -4, 5, -4, -3]\noutput : list = [-6, -6, -8, 1, -8, -7]",
    "output": "generated_output : list = add_n([-2, -2, -4, 5, -4, -3],-4)",
    "io_inp": [
      -2,
      -2,
      -4,
      5,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -8,
      1,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, -1, -1, -3, 2]\noutput : list = [8, 4, -4, -4, -12]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc([1, -1, -1, -3, 2]),-4),-1))",
    "io_inp": [
      1,
      -1,
      -1,
      -3,
      2
    ],
    "io_out": [
      8,
      4,
      -4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(input),-4),-1))"
  },
  {
    "input": "input : list = [-1, 2, -4, -5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(drop([-1, 2, -4, -5, -4],3))",
    "io_inp": [
      -1,
      2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [4, 3, -4]",
    "output": "generated_output : list = sort_des([3, -4, 4])",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, 0]\noutput : list = [-8, -8, -6]",
    "output": "generated_output : list = mul_n(add_n([1, 1, 0],3),-2)",
    "io_inp": [
      1,
      1,
      0
    ],
    "io_out": [
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [-3, -3, -3, 5, -1]\noutput : list = [1, 1, 1, 3, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(add_n([-3, -3, -3, 5, -1],5),1))),-1)",
    "io_inp": [
      -3,
      -3,
      -3,
      5,
      -1
    ],
    "io_out": [
      1,
      1,
      1,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(add_n(input,5),1))),-1)"
  },
  {
    "input": "input : list = [4, -2, -3, 2, 5]\noutput : list = [-16]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take([4, -2, -3, 2, 5],1),-1),4))",
    "io_inp": [
      4,
      -2,
      -3,
      2,
      5
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(input,1),-1),4))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = add_n(reverse(take(add_n([-2, 3],-1),10)),1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(input,-1),10)),1)"
  },
  {
    "input": "input : list = [-1, 4, 0]\noutput : list = [1, 6, 2]",
    "output": "generated_output : list = add_n(add_n([-1, 4, 0],4),-2)",
    "io_inp": [
      -1,
      4,
      0
    ],
    "io_out": [
      1,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),-2)"
  },
  {
    "input": "input : list = [2, 5, -4, -5, -2, 1]\noutput : list = [4, 6, 7]",
    "output": "generated_output : list = mul_n(drop(sort_des(add_n([2, 5, -4, -5, -2, 1],-2)),3),-1)",
    "io_inp": [
      2,
      5,
      -4,
      -5,
      -2,
      1
    ],
    "io_out": [
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_des(add_n(input,-2)),3),-1)"
  },
  {
    "input": "input : list = [4, -5, -1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(take(drop([4, -5, -1, 1],2),7))),13)",
    "io_inp": [
      4,
      -5,
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(drop(input,2),7))),13)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse([-5, 4])",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [0, -18, -24]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(mul_n([-5, -3, 3],1),-1),-3)),-3)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      0,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(mul_n(input,1),-1),-3)),-3)"
  },
  {
    "input": "input : list = [1, -1, 3, -1]\noutput : list = [-1, -1, 1, 3]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(add_n([1, -1, 3, -1],1))),-1),41)",
    "io_inp": [
      1,
      -1,
      3,
      -1
    ],
    "io_out": [
      -1,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(add_n(input,1))),-1),41)"
  },
  {
    "input": "input : list = [1, -5, -4, -3]\noutput : list = [-10, -15, -20]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(drop([1, -5, -4, -3],1),5),25),5))",
    "io_inp": [
      1,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(drop(input,1),5),25),5))"
  },
  {
    "input": "input : list = [-3, -1, 2, 2, 1]\noutput : list = [-6, -4, -1, -1, -2]",
    "output": "generated_output : list = add_n([-3, -1, 2, 2, 1],-3)",
    "io_inp": [
      -3,
      -1,
      2,
      2,
      1
    ],
    "io_out": [
      -6,
      -4,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, 4, -5, -3]\noutput : list = [-4, -2, 4, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sub_n([3, 3, 4, -5, -3],1),-3))),1)",
    "io_inp": [
      3,
      3,
      4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sub_n(input,1),-3))),1)"
  },
  {
    "input": "input : list = [1, 3, -2, 2, 0]\noutput : list = [2, 4, 6, 8, 12]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n([1, 3, -2, 2, 0],-4)),-2),1))",
    "io_inp": [
      1,
      3,
      -2,
      2,
      0
    ],
    "io_out": [
      2,
      4,
      6,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(add_n(input,-4)),-2),1))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [0, 2]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sort_des([-4, -5]),-5))),2)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(sort_des(input),-5))),2)"
  },
  {
    "input": "input : list = [4, -5, 2, 5]\noutput : list = [8, 7, 5, -2]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(sub_n([4, -5, 2, 5],2))),5),18)",
    "io_inp": [
      4,
      -5,
      2,
      5
    ],
    "io_out": [
      8,
      7,
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(sub_n(input,2))),5),18)"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = take(sort_des([-3, -1, -5]),14)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [5, 4, -4, -3, 2, 3]\noutput : list = [-5, -6]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(take([5, 4, -4, -3, 2, 3],2)),5)),-5)",
    "io_inp": [
      5,
      4,
      -4,
      -3,
      2,
      3
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(take(input,2)),5)),-5)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(drop([-2, -5, 5],1))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [5, 0, -5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(mul_n([-1, -2, 0],5))),-5))",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(mul_n(input,5))),-5))"
  },
  {
    "input": "input : list = [-1, 1, -1, -5, 2]\noutput : list = [-3]",
    "output": "generated_output : list = drop(sub_n([-1, 1, -1, -5, 2],5),4)",
    "io_inp": [
      -1,
      1,
      -1,
      -5,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,5),4)"
  },
  {
    "input": "input : list = [-4, 0, -3, 4]\noutput : list = [-12, 4, -8, 20]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(reverse([-4, 0, -3, 4]),4),1)),3)",
    "io_inp": [
      -4,
      0,
      -3,
      4
    ],
    "io_out": [
      -12,
      4,
      -8,
      20
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(reverse(input),4),1)),3)"
  },
  {
    "input": "input : list = [5, 1, 4, 4, 0]\noutput : list = [-5, -25, -85, -85, -105]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n([5, 1, 4, 4, 0],5),-4))),5)",
    "io_inp": [
      5,
      1,
      4,
      4,
      0
    ],
    "io_out": [
      -5,
      -25,
      -85,
      -85,
      -105
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(mul_n(input,5),-4))),5)"
  },
  {
    "input": "input : list = [3, -5, 1, -5, -2, 4]\noutput : list = [-13, 5, 14, -4, 14, -10]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sub_n(reverse([3, -5, 1, -5, -2, 4]),-5),-4),-3),-2)",
    "io_inp": [
      3,
      -5,
      1,
      -5,
      -2,
      4
    ],
    "io_out": [
      -13,
      5,
      14,
      -4,
      14,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sub_n(reverse(input),-5),-4),-3),-2)"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [13, 4, -11]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc([5, 2, -3])),3),2)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      13,
      4,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(input)),3),2)"
  },
  {
    "input": "input : list = [2, -4, 0, 2, 0]\noutput : list = [2, 2, 0, 0, -4]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(reverse([2, -4, 0, 2, 0])),2)),2)",
    "io_inp": [
      2,
      -4,
      0,
      2,
      0
    ],
    "io_out": [
      2,
      2,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(reverse(input)),2)),2)"
  },
  {
    "input": "input : list = [-4, -3, -1, -4, 2, -3]\noutput : list = [-1, 4, -2, 1, -1, -2]",
    "output": "generated_output : list = reverse(sub_n([-4, -3, -1, -4, 2, -3],-2))",
    "io_inp": [
      -4,
      -3,
      -1,
      -4,
      2,
      -3
    ],
    "io_out": [
      -1,
      4,
      -2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [3, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n([2, 0, 2],3))",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [0, -4, -2, 3]\noutput : list = [16, 6, -4, -19]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(mul_n([0, -4, -2, 3],-5)),4)),9)",
    "io_inp": [
      0,
      -4,
      -2,
      3
    ],
    "io_out": [
      16,
      6,
      -4,
      -19
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(mul_n(input,-5)),4)),9)"
  },
  {
    "input": "input : list = [-2, -5, 1, 3, -4, 3]\noutput : list = [-4, 44, -52, -84, 28, -84]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(sub_n([-2, -5, 1, 3, -4, 3],-2),4),3),2),-4)",
    "io_inp": [
      -2,
      -5,
      1,
      3,
      -4,
      3
    ],
    "io_out": [
      -4,
      44,
      -52,
      -84,
      28,
      -84
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(sub_n(input,-2),4),3),2),-4)"
  },
  {
    "input": "input : list = [-3, 3, -2, 4]\noutput : list = [6, 3, -12, -15]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc([-3, 3, -2, 4]),3),-5)),-1)",
    "io_inp": [
      -3,
      3,
      -2,
      4
    ],
    "io_out": [
      6,
      3,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc(input),3),-5)),-1)"
  },
  {
    "input": "input : list = [-4, -5, -2]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc([-4, -5, -2]),2)),1),1)",
    "io_inp": [
      -4,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc(input),2)),1),1)"
  },
  {
    "input": "input : list = [-4, -2, 4, 0, 2]\noutput : list = [2, 0, 4, -2, -4]",
    "output": "generated_output : list = reverse([-4, -2, 4, 0, 2])",
    "io_inp": [
      -4,
      -2,
      4,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 2, -1, 5]\noutput : list = [2, 1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(sort_asc([4, 2, -1, 5])),-3)))",
    "io_inp": [
      4,
      2,
      -1,
      5
    ],
    "io_out": [
      2,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [5, 0, 5, -2, -3]\noutput : list = [-36, -36, -16, -8, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sub_n([5, 0, 5, -2, -3],-4))),-4))",
    "io_inp": [
      5,
      0,
      5,
      -2,
      -3
    ],
    "io_out": [
      -36,
      -36,
      -16,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sub_n(input,-4))),-4))"
  },
  {
    "input": "input : list = [-3, -3, -4]\noutput : list = [10, 10, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n([-3, -3, -4],-1)),-4),-3))",
    "io_inp": [
      -3,
      -3,
      -4
    ],
    "io_out": [
      10,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n(input,-1)),-4),-3))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [8, 8]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(sort_asc([2, 2]),5),1),21))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(sort_asc(input),5),1),21))"
  },
  {
    "input": "input : list = [1, -4, -5, -5, 0, -3]\noutput : list = [20, 20, 16, 12, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(sort_des([1, -4, -5, -5, 0, -3]),1)),-4))",
    "io_inp": [
      1,
      -4,
      -5,
      -5,
      0,
      -3
    ],
    "io_out": [
      20,
      20,
      16,
      12,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(sort_des(input),1)),-4))"
  },
  {
    "input": "input : list = [-3, 1, 3, -5, -3, -4]\noutput : list = [5, -15]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(take([-3, 1, 3, -5, -3, -4],2)),5),5))",
    "io_inp": [
      -3,
      1,
      3,
      -5,
      -3,
      -4
    ],
    "io_out": [
      5,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(take(input,2)),5),5))"
  },
  {
    "input": "input : list = [-2, -1, 2, 2]\noutput : list = [3, 3, -6, -9]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(sort_asc([-2, -1, 2, 2]),3)),5),2)",
    "io_inp": [
      -2,
      -1,
      2,
      2
    ],
    "io_out": [
      3,
      3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(sort_asc(input),3)),5),2)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(sort_asc([-2, -2]))),4))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [3, -1, -2, -2, 2, -4]\noutput : list = [4, 0, -1, -1, 3, -3]",
    "output": "generated_output : list = take(add_n([3, -1, -2, -2, 2, -4],1),7)",
    "io_inp": [
      3,
      -1,
      -2,
      -2,
      2,
      -4
    ],
    "io_out": [
      4,
      0,
      -1,
      -1,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),7)"
  },
  {
    "input": "input : list = [4, -4, -3, 5, -3, -1]\noutput : list = [-16, -12, -12, -4, 20]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(drop([4, -4, -3, 5, -3, -1],1),14),32),4))",
    "io_inp": [
      4,
      -4,
      -3,
      5,
      -3,
      -1
    ],
    "io_out": [
      -16,
      -12,
      -12,
      -4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(drop(input,1),14),32),4))"
  },
  {
    "input": "input : list = [-5, 5, 5, 5, 2]\noutput : list = [-3, -13]",
    "output": "generated_output : list = reverse(add_n(take(add_n(sub_n([-5, 5, 5, 5, 2],4),-2),2),-2))",
    "io_inp": [
      -5,
      5,
      5,
      5,
      2
    ],
    "io_out": [
      -3,
      -13
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(sub_n(input,4),-2),2),-2))"
  },
  {
    "input": "input : list = [-5, -2, -5, -3, 5]\noutput : list = [6, -1, -2]",
    "output": "generated_output : list = take(take(sort_des(sub_n([-5, -2, -5, -3, 5],-1)),16),3)",
    "io_inp": [
      -5,
      -2,
      -5,
      -3,
      5
    ],
    "io_out": [
      6,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(input,-1)),16),3)"
  },
  {
    "input": "input : list = [-1, -5, 5, 5, -1]\noutput : list = [5, 5, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(drop([-1, -5, 5, 5, -1],1)))",
    "io_inp": [
      -1,
      -5,
      5,
      5,
      -1
    ],
    "io_out": [
      5,
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [0, -2, -2, 0, -2, -2]\noutput : list = [-4, 4, 4, -4, 4, 4]",
    "output": "generated_output : list = mul_n(sub_n([0, -2, -2, 0, -2, -2],-1),-4)",
    "io_inp": [
      0,
      -2,
      -2,
      0,
      -2,
      -2
    ],
    "io_out": [
      -4,
      4,
      4,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-1),-4)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-5, -10]",
    "output": "generated_output : list = take(take(mul_n(take(add_n([-1, 0],2),4),-5),27),25)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(add_n(input,2),4),-5),27),25)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [1, -3]",
    "output": "generated_output : list = sub_n(take(sort_des(take(reverse([0, 4]),8)),7),3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(reverse(input),8)),7),3)"
  },
  {
    "input": "input : list = [-1, 1, 4, 4, 2, 4]\noutput : list = [-1, 1, 2, 4, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_asc([-1, 1, 4, 4, 2, 4])))))",
    "io_inp": [
      -1,
      1,
      4,
      4,
      2,
      4
    ],
    "io_out": [
      -1,
      1,
      2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [1, 4, 4, -1, -2]\noutput : list = [0, 1, 6, 6, 3]",
    "output": "generated_output : list = reverse(sub_n([1, 4, 4, -1, -2],-2))",
    "io_inp": [
      1,
      4,
      4,
      -1,
      -2
    ],
    "io_out": [
      0,
      1,
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [5, -5, 4, -3, -4]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -5, 4, -3, -4],1)",
    "io_inp": [
      5,
      -5,
      4,
      -3,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -5, -4, -1, -3]\noutput : list = [25, 20, 15, 5, -20]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([4, -5, -4, -1, -3],1),-5))",
    "io_inp": [
      4,
      -5,
      -4,
      -1,
      -3
    ],
    "io_out": [
      25,
      20,
      15,
      5,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,1),-5))"
  },
  {
    "input": "input : list = [-1, 4, -1, 2]\noutput : list = [4, 2, -1, -1]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(mul_n([-1, 4, -1, 2],-1))),19),-1)",
    "io_inp": [
      -1,
      4,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(mul_n(input,-1))),19),-1)"
  },
  {
    "input": "input : list = [1, -5, 0, 4, 1, -4]\noutput : list = [-1, 0, 4, 5, 5, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse([1, -5, 0, 4, 1, -4])),-4))",
    "io_inp": [
      1,
      -5,
      0,
      4,
      1,
      -4
    ],
    "io_out": [
      -1,
      0,
      4,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(input)),-4))"
  },
  {
    "input": "input : list = [1, 4, 0, -1, 2, 3]\noutput : list = [7, 6, 3, 4, 8, 5]",
    "output": "generated_output : list = add_n(reverse([1, 4, 0, -1, 2, 3]),4)",
    "io_inp": [
      1,
      4,
      0,
      -1,
      2,
      3
    ],
    "io_out": [
      7,
      6,
      3,
      4,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [1, -1, 1, 3]\noutput : list = [2, -2, -2, -6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(reverse([1, -1, 1, 3])))),-2)",
    "io_inp": [
      1,
      -1,
      1,
      3
    ],
    "io_out": [
      2,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take(reverse(sort_des(take(sort_asc([-2, 5]),14))),42)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(sort_asc(input),14))),42)"
  },
  {
    "input": "input : list = [1, 4, 4, -5, -2]\noutput : list = [4, 4, 1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse(reverse([1, 4, 4, -5, -2])))))",
    "io_inp": [
      1,
      4,
      4,
      -5,
      -2
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, 1, 3, 5, 0]\noutput : list = [20, 15, 10, 0, -10]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc([-1, 1, 3, 5, 0])),-3),-5)",
    "io_inp": [
      -1,
      1,
      3,
      5,
      0
    ],
    "io_out": [
      20,
      15,
      10,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(input)),-3),-5)"
  },
  {
    "input": "input : list = [-5, 3, 2, 5, -1, 5]\noutput : list = [20, 20, 12, 8, -4, -20]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des([-5, 3, 2, 5, -1, 5])),4))",
    "io_inp": [
      -5,
      3,
      2,
      5,
      -1,
      5
    ],
    "io_out": [
      20,
      20,
      12,
      8,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(input)),4))"
  },
  {
    "input": "input : list = [2, -4, -1, -3, 4, 3]\noutput : list = [-14, -11, -5, 4, 7, 10]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([2, -4, -1, -3, 4, 3],3),2))",
    "io_inp": [
      2,
      -4,
      -1,
      -3,
      4,
      3
    ],
    "io_out": [
      -14,
      -11,
      -5,
      4,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,3),2))"
  },
  {
    "input": "input : list = [4, 5, 2, 3, -4, 4]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(drop(drop([4, 5, 2, 3, -4, 4],2),3),3)))",
    "io_inp": [
      4,
      5,
      2,
      3,
      -4,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(drop(drop(input,2),3),3)))"
  },
  {
    "input": "input : list = [3, -3, -1, -3, -2, -5]\noutput : list = [-12, 12, 4, 12, 8, 20]",
    "output": "generated_output : list = mul_n([3, -3, -1, -3, -2, -5],-4)",
    "io_inp": [
      3,
      -3,
      -1,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -12,
      12,
      4,
      12,
      8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = mul_n(sub_n(drop([-5, 2, 1],1),1),-1)",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,1),1),-1)"
  },
  {
    "input": "input : list = [4, -3, -3, -2, 2, -2]\noutput : list = [0, 4, 0, -1]",
    "output": "generated_output : list = reverse(add_n(drop([4, -3, -3, -2, 2, -2],2),2))",
    "io_inp": [
      4,
      -3,
      -3,
      -2,
      2,
      -2
    ],
    "io_out": [
      0,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(input,2),2))"
  },
  {
    "input": "input : list = [1, -5, -4, -5, -1, 5]\noutput : list = [-1, 3, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(reverse([1, -5, -4, -5, -1, 5]),-4),3)))",
    "io_inp": [
      1,
      -5,
      -4,
      -5,
      -1,
      5
    ],
    "io_out": [
      -1,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(reverse(input),-4),3)))"
  },
  {
    "input": "input : list = [-2, 2, 0]\noutput : list = [-4, -6, -8]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse([-2, 2, 0]),-5)),-1)",
    "io_inp": [
      -2,
      2,
      0
    ],
    "io_out": [
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(input),-5)),-1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc([2, -2]),1)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-4, 0, 2, 3, -2, -4]\noutput : list = [28, 28, 4, -20, -44, -56]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(mul_n([-4, 0, 2, 3, -2, -4],-3)),-5)),4)",
    "io_inp": [
      -4,
      0,
      2,
      3,
      -2,
      -4
    ],
    "io_out": [
      28,
      28,
      4,
      -20,
      -44,
      -56
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(mul_n(input,-3)),-5)),4)"
  },
  {
    "input": "input : list = [4, -2, -4, -3, 3, -1]\noutput : list = [-13, 35, -37]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(drop([4, -2, -4, -3, 3, -1],3),4),3)),1)",
    "io_inp": [
      4,
      -2,
      -4,
      -3,
      3,
      -1
    ],
    "io_out": [
      -13,
      35,
      -37
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(drop(input,3),4),3)),1)"
  },
  {
    "input": "input : list = [5, -3, -1, 4, -5]\noutput : list = [30, 18, 6, -24, -30]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n([5, -3, -1, 4, -5],-2),3)))",
    "io_inp": [
      5,
      -3,
      -1,
      4,
      -5
    ],
    "io_out": [
      30,
      18,
      6,
      -24,
      -30
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(input,-2),3)))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n([0, -4],3),2),-5),-1)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(input,3),2),-5),-1)"
  },
  {
    "input": "input : list = [2, 5, 4, 2, -3, 0]\noutput : list = [-6, 9, 0]",
    "output": "generated_output : list = mul_n(drop([2, 5, 4, 2, -3, 0],3),-3)",
    "io_inp": [
      2,
      5,
      4,
      2,
      -3,
      0
    ],
    "io_out": [
      -6,
      9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-3)"
  },
  {
    "input": "input : list = [2, 2, -3, 1]\noutput : list = [3, 3, -2, 2]",
    "output": "generated_output : list = add_n([2, 2, -3, 1],1)",
    "io_inp": [
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      3,
      3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [7, 3]",
    "output": "generated_output : list = sort_des(reverse(add_n([5, 1],2)))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,2)))"
  },
  {
    "input": "input : list = [4, -4, -1, 5, -5]\noutput : list = [-8, 2, -4, -7, 1]",
    "output": "generated_output : list = sub_n(reverse([4, -4, -1, 5, -5]),3)",
    "io_inp": [
      4,
      -4,
      -1,
      5,
      -5
    ],
    "io_out": [
      -8,
      2,
      -4,
      -7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [5, -3, -4, -3]\noutput : list = [100, 75, 75, -125]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(reverse([5, -3, -4, -3])),5),-5))",
    "io_inp": [
      5,
      -3,
      -4,
      -3
    ],
    "io_out": [
      100,
      75,
      75,
      -125
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(reverse(input)),5),-5))"
  },
  {
    "input": "input : list = [0, 5, 1, 5, -5, 4]\noutput : list = [5, 5, 4, 1, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([0, 5, 1, 5, -5, 4])))",
    "io_inp": [
      0,
      5,
      1,
      5,
      -5,
      4
    ],
    "io_out": [
      5,
      5,
      4,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-13, -16]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(sub_n([-2, -5],1),-5),3),5))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -13,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(sub_n(input,1),-5),3),5))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(take(sort_des([2, 3]),1),3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),1),3)"
  },
  {
    "input": "input : list = [-1, -5, -1, 4, -1, -4]\noutput : list = [12, 0, 12, 27, 12, 3]",
    "output": "generated_output : list = mul_n(add_n([-1, -5, -1, 4, -1, -4],5),3)",
    "io_inp": [
      -1,
      -5,
      -1,
      4,
      -1,
      -4
    ],
    "io_out": [
      12,
      0,
      12,
      27,
      12,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),3)"
  },
  {
    "input": "input : list = [4, -2, 1]\noutput : list = [-4, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(reverse([4, -2, 1]),2),5)))",
    "io_inp": [
      4,
      -2,
      1
    ],
    "io_out": [
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(reverse(input),2),5)))"
  },
  {
    "input": "input : list = [0, 1, 0]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(take([0, 1, 0],1))),-4))",
    "io_inp": [
      0,
      1,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(take(input,1))),-4))"
  },
  {
    "input": "input : list = [-4, 2, -1, 4]\noutput : list = [40, -50, -5, -80]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-4, 2, -1, 4],3),4),-5)",
    "io_inp": [
      -4,
      2,
      -1,
      4
    ],
    "io_out": [
      40,
      -50,
      -5,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,3),4),-5)"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [-2, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 4, -2])",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 1, -4, 0]\noutput : list = [4, 0, -16, -16]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([-4, 1, -4, 0],4)))",
    "io_inp": [
      -4,
      1,
      -4,
      0
    ],
    "io_out": [
      4,
      0,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,4)))"
  },
  {
    "input": "input : list = [3, 1, 0, 4, 5]\noutput : list = [1, 2, 4, 5, 6]",
    "output": "generated_output : list = take(sort_asc(add_n(take(sub_n([3, 1, 0, 4, 5],-3),6),-2)),47)",
    "io_inp": [
      3,
      1,
      0,
      4,
      5
    ],
    "io_out": [
      1,
      2,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(sub_n(input,-3),6),-2)),47)"
  },
  {
    "input": "input : list = [0, 0, -2, 0]\noutput : list = [-5, -5, -5, -7]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sort_asc([0, 0, -2, 0]))),5),5)",
    "io_inp": [
      0,
      0,
      -2,
      0
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sort_asc(input))),5),5)"
  },
  {
    "input": "input : list = [-2, 2, 5, -3, 1, -4]\noutput : list = [-2, -1, 0, 3, 4, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(add_n([-2, 2, 5, -3, 1, -4],3)),-1)))",
    "io_inp": [
      -2,
      2,
      5,
      -3,
      1,
      -4
    ],
    "io_out": [
      -2,
      -1,
      0,
      3,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(add_n(input,3)),-1)))"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_asc([2, 0, 5]),3)),-3),-2)",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_asc(input),3)),-3),-2)"
  },
  {
    "input": "input : list = [0, -3, 3, 4, 0]\noutput : list = [-1, 2, 2, 5, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(sub_n([0, -3, 3, 4, 0],-2),-2)),2))",
    "io_inp": [
      0,
      -3,
      3,
      4,
      0
    ],
    "io_out": [
      -1,
      2,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(sub_n(input,-2),-2)),2))"
  },
  {
    "input": "input : list = [4, 4, -4, 2, 5, -2]\noutput : list = [-40, 20, 40, 40]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(take([4, 4, -4, 2, 5, -2],4)),-2),-5))",
    "io_inp": [
      4,
      4,
      -4,
      2,
      5,
      -2
    ],
    "io_out": [
      -40,
      20,
      40,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(take(input,4)),-2),-5))"
  },
  {
    "input": "input : list = [-1, -3, 2, -4, 3]\noutput : list = [-4, -3, -1, 2, 3]",
    "output": "generated_output : list = reverse(sort_des([-1, -3, 2, -4, 3]))",
    "io_inp": [
      -1,
      -3,
      2,
      -4,
      3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -5, -4, -4, 3]\noutput : list = [-1, 0, 0, 0, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([-4, -5, -4, -4, 3]),-4))",
    "io_inp": [
      -4,
      -5,
      -4,
      -4,
      3
    ],
    "io_out": [
      -1,
      0,
      0,
      0,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [-2, 4, -5, 3]\noutput : list = [-10, 14]",
    "output": "generated_output : list = sort_asc(add_n(drop(mul_n(add_n([-2, 4, -5, 3],1),-3),2),2))",
    "io_inp": [
      -2,
      4,
      -5,
      3
    ],
    "io_out": [
      -10,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(mul_n(add_n(input,1),-3),2),2))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-27, -91]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sub_n([-3, 1],-5),4),1),-4),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -27,
      -91
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sub_n(input,-5),4),1),-4),-5)"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [10, 9, 0]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n([5, 4, -5],5)))))",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      10,
      9,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(add_n(input,5)))))"
  },
  {
    "input": "input : list = [-3, 4, -2]\noutput : list = [-9, -6, 12]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(mul_n([-3, 4, -2],-1),-3),10)))",
    "io_inp": [
      -3,
      4,
      -2
    ],
    "io_out": [
      -9,
      -6,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(mul_n(input,-1),-3),10)))"
  },
  {
    "input": "input : list = [-1, 3, 3, -5, -2]\noutput : list = [0]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(take([-1, 3, 3, -5, -2],1)),3),3),41)",
    "io_inp": [
      -1,
      3,
      3,
      -5,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(take(input,1)),3),3),41)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(take(take(sub_n(sort_des([2, -2]),2),19),26),20)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(sort_des(input),2),19),26),20)"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [-6, -1, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc([-5, 0, 0])),1)))",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      -6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [-9, -8, -1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(sort_asc([-3, 4, -4]),11),5)))",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(sort_asc(input),11),5)))"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [128, 0, -32]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sub_n([-3, -5, 5],-3))),-4),-4)",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      128,
      0,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sub_n(input,-3))),-4),-4)"
  },
  {
    "input": "input : list = [2, -2, -1]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = take(sort_asc(reverse([2, -2, -1])),8)",
    "io_inp": [
      2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(input)),8)"
  },
  {
    "input": "input : list = [-2, -2, -4, 1, 5, 2]\noutput : list = [5, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(drop([-2, -2, -4, 1, 5, 2],4),-5),-2)))",
    "io_inp": [
      -2,
      -2,
      -4,
      1,
      5,
      2
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(drop(input,4),-5),-2)))"
  },
  {
    "input": "input : list = [1, 4, 5, -3, -4]\noutput : list = [21, 18, 9, -3, -6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(reverse([1, 4, 5, -3, -4]))),2),3)",
    "io_inp": [
      1,
      4,
      5,
      -3,
      -4
    ],
    "io_out": [
      21,
      18,
      9,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(reverse(input))),2),3)"
  },
  {
    "input": "input : list = [-2, -2, -4, -5]\noutput : list = [32, 27, 17, 17]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(mul_n([-2, -2, -4, -5],-5),16),2),-5))",
    "io_inp": [
      -2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      32,
      27,
      17,
      17
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(mul_n(input,-5),16),2),-5))"
  },
  {
    "input": "input : list = [0, -5, -3]\noutput : list = [37, 45]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(drop([0, -5, -3],1),-5)),-4),5)",
    "io_inp": [
      0,
      -5,
      -3
    ],
    "io_out": [
      37,
      45
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(drop(input,1),-5)),-4),5)"
  },
  {
    "input": "input : list = [2, 3, 2, -2]\noutput : list = [-2, 2, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(reverse([2, 3, 2, -2]),-1),-2)),-3)",
    "io_inp": [
      2,
      3,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(reverse(input),-1),-2)),-3)"
  },
  {
    "input": "input : list = [5, 5, -2, 3]\noutput : list = [-2, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 5, -2, 3])",
    "io_inp": [
      5,
      5,
      -2,
      3
    ],
    "io_out": [
      -2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, -3, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(take([-1, -5, -3, -5],2)))",
    "io_inp": [
      -1,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [1, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(mul_n([3, -4, -1],-1)),5),-1))",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      1,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(mul_n(input,-1)),5),-1))"
  },
  {
    "input": "input : list = [-1, -1, 2, 3, -3]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(take([-1, -1, 2, 3, -3],3))),8),-1)",
    "io_inp": [
      -1,
      -1,
      2,
      3,
      -3
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(take(input,3))),8),-1)"
  },
  {
    "input": "input : list = [4, -1, -5, 4]\noutput : list = [4, 4, -1, -5]",
    "output": "generated_output : list = sort_des([4, -1, -5, 4])",
    "io_inp": [
      4,
      -1,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, -1]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(reverse([-3, 0, -1])),5),10),1)",
    "io_inp": [
      -3,
      0,
      -1
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(reverse(input)),5),10),1)"
  },
  {
    "input": "input : list = [-5, -2, 4, 1]\noutput : list = [0, -3, -6, -9]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(sort_asc([-5, -2, 4, 1]),-4),6)))",
    "io_inp": [
      -5,
      -2,
      4,
      1
    ],
    "io_out": [
      0,
      -3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(sort_asc(input),-4),6)))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-20, -20]",
    "output": "generated_output : list = reverse(mul_n(sub_n([0, 0],5),4))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,5),4))"
  },
  {
    "input": "input : list = [0, 5, 2, -1, -4, 0]\noutput : list = [-1, 3]",
    "output": "generated_output : list = add_n(reverse(reverse(take(drop([0, 5, 2, -1, -4, 0],4),15))),3)",
    "io_inp": [
      0,
      5,
      2,
      -1,
      -4,
      0
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(drop(input,4),15))),3)"
  },
  {
    "input": "input : list = [-5, 3, 2]\noutput : list = [12, 24, 108]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n([-5, 3, 2],-5),-1),4),-3))",
    "io_inp": [
      -5,
      3,
      2
    ],
    "io_out": [
      12,
      24,
      108
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n(input,-5),-1),4),-3))"
  },
  {
    "input": "input : list = [-5, 5, 1, 2, 0, 2]\noutput : list = [-5, 0, 1, 2, 2, 5]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(reverse([-5, 5, 1, 2, 0, 2])))))",
    "io_inp": [
      -5,
      5,
      1,
      2,
      0,
      2
    ],
    "io_out": [
      -5,
      0,
      1,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [2, -1, 4, 4]\noutput : list = [9, 9]",
    "output": "generated_output : list = sort_asc(sub_n(take(take(drop([2, -1, 4, 4],2),18),26),-5))",
    "io_inp": [
      2,
      -1,
      4,
      4
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(drop(input,2),18),26),-5))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sub_n([-2, -2],-3))),3))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sub_n(input,-3))),3))"
  },
  {
    "input": "input : list = [-3, -3, 3, -1, 2]\noutput : list = [-5, -5, 1, -3, 0]",
    "output": "generated_output : list = add_n(sub_n([-3, -3, 3, -1, 2],1),-1)",
    "io_inp": [
      -3,
      -3,
      3,
      -1,
      2
    ],
    "io_out": [
      -5,
      -5,
      1,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),-1)"
  },
  {
    "input": "input : list = [-1, -5, 2, 0]\noutput : list = [-4, -2, -9, -5]",
    "output": "generated_output : list = add_n(add_n(reverse([-1, -5, 2, 0]),-1),-3)",
    "io_inp": [
      -1,
      -5,
      2,
      0
    ],
    "io_out": [
      -4,
      -2,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),-1),-3)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(mul_n([0, -4],-1))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-1, 4, -1, -1, 5]\noutput : list = [10, 10, 10, -15, -20]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc([-1, 4, -1, -1, 5])),-5)),5)",
    "io_inp": [
      -1,
      4,
      -1,
      -1,
      5
    ],
    "io_out": [
      10,
      10,
      10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc(input)),-5)),5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc([-3, 0]),10)))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(input),10)))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-125, -50]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse([-5, -2]),-5)),-5)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -125,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(input),-5)),-5)"
  },
  {
    "input": "input : list = [5, -2, 4, -4, -5, -2]\noutput : list = [1, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(take([5, -2, 4, -4, -5, -2],3)),-2)),1)",
    "io_inp": [
      5,
      -2,
      4,
      -4,
      -5,
      -2
    ],
    "io_out": [
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(take(input,3)),-2)),1)"
  },
  {
    "input": "input : list = [-5, 1, -5, -1]\noutput : list = [2, 8, 20, 20]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(mul_n([-5, 1, -5, -1],-3)),29),5))",
    "io_inp": [
      -5,
      1,
      -5,
      -1
    ],
    "io_out": [
      2,
      8,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(mul_n(input,-3)),29),5))"
  },
  {
    "input": "input : list = [1, -5, 1, 5, -5, -2]\noutput : list = [13, 9, 9, 6, 3, 3]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n([1, -5, 1, 5, -5, -2],5))),-3),58)",
    "io_inp": [
      1,
      -5,
      1,
      5,
      -5,
      -2
    ],
    "io_out": [
      13,
      9,
      9,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n(input,5))),-3),58)"
  },
  {
    "input": "input : list = [3, -4, 0, -4]\noutput : list = [-10, -3, -7, -3]",
    "output": "generated_output : list = reverse(mul_n(reverse(sub_n(add_n([3, -4, 0, -4],3),-4)),-1))",
    "io_inp": [
      3,
      -4,
      0,
      -4
    ],
    "io_out": [
      -10,
      -3,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sub_n(add_n(input,3),-4)),-1))"
  },
  {
    "input": "input : list = [-5, -2, 3]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(take([-5, -2, 3],1),-1))),5)",
    "io_inp": [
      -5,
      -2,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(take(input,1),-1))),5)"
  },
  {
    "input": "input : list = [2, -1, -3, 1, 2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_des(mul_n(drop(sort_asc(mul_n([2, -1, -3, 1, 2],1)),3),-3))",
    "io_inp": [
      2,
      -1,
      -3,
      1,
      2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(sort_asc(mul_n(input,1)),3),-3))"
  },
  {
    "input": "input : list = [4, 4, -3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_asc(take([4, 4, -3],1)),-2)",
    "io_inp": [
      4,
      4,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),-2)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(reverse(mul_n(drop(sub_n([0, -4, 5],2),2),2)),1)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(drop(sub_n(input,2),2),2)),1)"
  },
  {
    "input": "input : list = [-1, 2, -1, -4, 2, 3]\noutput : list = [-4, -1, -1, 2, 2, 3]",
    "output": "generated_output : list = sort_asc([-1, 2, -1, -4, 2, 3])",
    "io_inp": [
      -1,
      2,
      -1,
      -4,
      2,
      3
    ],
    "io_out": [
      -4,
      -1,
      -1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([2, 3, -1],1)))",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,1)))"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = take(sort_des([2, -3, -5]),7)",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [1, -2, 2, 1, -4]\noutput : list = [-9, -7, -4, -4, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(reverse(add_n([1, -2, 2, 1, -4],-5)))))",
    "io_inp": [
      1,
      -2,
      2,
      1,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(reverse(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [-7, -7, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(sort_des([-4, -4, 5]),4)),3),22)",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      -7,
      -7,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(sort_des(input),4)),3),22)"
  },
  {
    "input": "input : list = [1, -1, 1, -4, -4]\noutput : list = [-1, -6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(drop([1, -1, 1, -4, -4],2),2))))",
    "io_inp": [
      1,
      -1,
      1,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(drop(input,2),2))))"
  },
  {
    "input": "input : list = [-2, 3, 1, 2, 5]\noutput : list = [-3, 9, 13, 17, 25]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(sub_n([-2, 3, 1, 2, 5],-2),4),3),37))",
    "io_inp": [
      -2,
      3,
      1,
      2,
      5
    ],
    "io_out": [
      -3,
      9,
      13,
      17,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(sub_n(input,-2),4),3),37))"
  },
  {
    "input": "input : list = [5, 1, -5, 4]\noutput : list = [-40]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(take([5, 1, -5, 4],1),3),-3),2),5)",
    "io_inp": [
      5,
      1,
      -5,
      4
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(take(input,1),3),-3),2),5)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-20, -12, 4]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_asc([1, -3, -5])),4),1))",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -20,
      -12,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_des(sort_asc(input)),4),1))"
  },
  {
    "input": "input : list = [1, 2, 5, -1]\noutput : list = [-1, 5, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, 5, -1])",
    "io_inp": [
      1,
      2,
      5,
      -1
    ],
    "io_out": [
      -1,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, -2, 3, 3, -1]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(take([0, 5, -2, 3, 3, -1],2))",
    "io_inp": [
      0,
      5,
      -2,
      3,
      3,
      -1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [-2, -2, 1, 3, -1, -3]\noutput : list = [1]",
    "output": "generated_output : list = take(sub_n(take(sub_n(add_n([-2, -2, 1, 3, -1, -3],1),-1),21),-1),1)",
    "io_inp": [
      -2,
      -2,
      1,
      3,
      -1,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(add_n(input,1),-1),21),-1),1)"
  },
  {
    "input": "input : list = [0, -5, -3, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(drop([0, -5, -3, 0],2)),-4),3))",
    "io_inp": [
      0,
      -5,
      -3,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(drop(input,2)),-4),3))"
  },
  {
    "input": "input : list = [1, 3, 4, 5]\noutput : list = [-2, -3, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(add_n(take(reverse([1, 3, 4, 5]),18),-2)),5)",
    "io_inp": [
      1,
      3,
      4,
      5
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(take(reverse(input),18),-2)),5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-2, -14]",
    "output": "generated_output : list = sub_n(mul_n([0, 3],-4),2)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -2,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-4),2)"
  },
  {
    "input": "input : list = [1, 3, -3, -3, -5, 3]\noutput : list = [-11, -11, -19, -35, -35, -43]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(add_n([1, 3, -3, -3, -5, 3],-5),4),-2),-1))",
    "io_inp": [
      1,
      3,
      -3,
      -3,
      -5,
      3
    ],
    "io_out": [
      -11,
      -11,
      -19,
      -35,
      -35,
      -43
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(add_n(input,-5),4),-2),-1))"
  },
  {
    "input": "input : list = [2, 1, -4, 5, -3, -1]\noutput : list = [-10, -5, 20, -25, 15, 5]",
    "output": "generated_output : list = mul_n([2, 1, -4, 5, -3, -1],-5)",
    "io_inp": [
      2,
      1,
      -4,
      5,
      -3,
      -1
    ],
    "io_out": [
      -10,
      -5,
      20,
      -25,
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, -3, -1, 0, -3, 3]\noutput : list = [4, -6, -2, 0, -6, 6]",
    "output": "generated_output : list = mul_n([2, -3, -1, 0, -3, 3],2)",
    "io_inp": [
      2,
      -3,
      -1,
      0,
      -3,
      3
    ],
    "io_out": [
      4,
      -6,
      -2,
      0,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, 5, 5, 1, 5]\noutput : list = [-14, 4, 16, 16, 16]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_des([-5, 5, 5, 1, 5]),3),27)),-1)",
    "io_inp": [
      -5,
      5,
      5,
      1,
      5
    ],
    "io_out": [
      -14,
      4,
      16,
      16,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_des(input),3),27)),-1)"
  },
  {
    "input": "input : list = [0, -4, -5]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, -4, -5],1),4)",
    "io_inp": [
      0,
      -4,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),4)"
  },
  {
    "input": "input : list = [0, -4, -1, 5, 3, -4]\noutput : list = [-5, -5, -11, -13, -19, -23]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(sub_n([0, -4, -1, 5, 3, -4],-5))),-2),3)",
    "io_inp": [
      0,
      -4,
      -1,
      5,
      3,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -11,
      -13,
      -19,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(sub_n(input,-5))),-2),3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-10, 6]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sort_asc([-3, 5]))),-2),34)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -10,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sort_asc(input))),-2),34)"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = sort_des([-1, 5, 4])",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, -3, -3, -4]\noutput : list = [-6, -5, -5, -1, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([1, 1, -3, -3, -4]),3),5)",
    "io_inp": [
      1,
      1,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),3),5)"
  },
  {
    "input": "input : list = [-5, 2, -4, 2, -5]\noutput : list = [4, 4, -2, -3, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc([-5, 2, -4, 2, -5])),-2))",
    "io_inp": [
      -5,
      2,
      -4,
      2,
      -5
    ],
    "io_out": [
      4,
      4,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(input)),-2))"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [-2, -3, -8]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(reverse([-2, -1, 4]),-1),23)),4)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      -2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(reverse(input),-1),23)),4)"
  },
  {
    "input": "input : list = [0, 1, 0, 2]\noutput : list = [2, 2, -3, -8]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(mul_n([0, 1, 0, 2],-5)),2)),14)",
    "io_inp": [
      0,
      1,
      0,
      2
    ],
    "io_out": [
      2,
      2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(mul_n(input,-5)),2)),14)"
  },
  {
    "input": "input : list = [4, -5, 2, -2, 5]\noutput : list = [-10, -1, 11, 17, 20]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(sort_asc([4, -5, 2, -2, 5])),3)),-5)",
    "io_inp": [
      4,
      -5,
      2,
      -2,
      5
    ],
    "io_out": [
      -10,
      -1,
      11,
      17,
      20
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(sort_asc(input)),3)),-5)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(take(take(reverse([-5, 4]),6),18))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(input),6),18))"
  },
  {
    "input": "input : list = [1, -4, 5, -4, 0, 2]\noutput : list = [1, -2, -3, -4, -8, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_asc([1, -4, 5, -4, 0, 2]),3),1)))",
    "io_inp": [
      1,
      -4,
      5,
      -4,
      0,
      2
    ],
    "io_out": [
      1,
      -2,
      -3,
      -4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_asc(input),3),1)))"
  },
  {
    "input": "input : list = [4, 5, 2, -1, -1]\noutput : list = [-8, -8, -11, -13, -14]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(sort_des([4, 5, 2, -1, -1]),4),-1)),5)",
    "io_inp": [
      4,
      5,
      2,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -11,
      -13,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(sort_des(input),4),-1)),5)"
  },
  {
    "input": "input : list = [-4, 2, 3, 5, 2]\noutput : list = [60, -30, -30, -45, -75]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([-4, 2, 3, 5, 2],3),-5))",
    "io_inp": [
      -4,
      2,
      3,
      5,
      2
    ],
    "io_out": [
      60,
      -30,
      -30,
      -45,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,3),-5))"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [4]",
    "output": "generated_output : list = drop(sort_asc([-2, 4, -5]),2)",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [7, -1]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-2, 0],-1),-4),-3)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,-1),-4),-3)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(add_n(take(add_n(mul_n([4, -1],2),2),18),-5))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(add_n(mul_n(input,2),2),18),-5))"
  },
  {
    "input": "input : list = [4, -3, -4]\noutput : list = [4, -3, -4]",
    "output": "generated_output : list = sort_des([4, -3, -4])",
    "io_inp": [
      4,
      -3,
      -4
    ],
    "io_out": [
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4, -5, 5, 4, -1]\noutput : list = [7, 7, 8]",
    "output": "generated_output : list = take(sort_asc(take(add_n(sort_des([2, 4, -5, 5, 4, -1]),3),3)),39)",
    "io_inp": [
      2,
      4,
      -5,
      5,
      4,
      -1
    ],
    "io_out": [
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(sort_des(input),3),3)),39)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [6, 3]",
    "output": "generated_output : list = take(reverse(take(reverse(add_n([5, 2],1)),5)),28)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(add_n(input,1)),5)),28)"
  },
  {
    "input": "input : list = [-3, 0, -1, 3]\noutput : list = [-15, 0, -5, 15]",
    "output": "generated_output : list = mul_n(add_n(sub_n([-3, 0, -1, 3],2),2),5)",
    "io_inp": [
      -3,
      0,
      -1,
      3
    ],
    "io_out": [
      -15,
      0,
      -5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,2),2),5)"
  },
  {
    "input": "input : list = [2, 1, 3, 1, -5]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(take([2, 1, 3, 1, -5],2)),-1)),3)",
    "io_inp": [
      2,
      1,
      3,
      1,
      -5
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(take(input,2)),-1)),3)"
  },
  {
    "input": "input : list = [-2, -1, -4, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(drop([-2, -1, -4, -3],2),3),-1),-5))",
    "io_inp": [
      -2,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(drop(input,2),3),-1),-5))"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [4, 7, 8]",
    "output": "generated_output : list = add_n([1, 4, 5],3)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, -2, -1, 5, 1, 5]\noutput : list = [10, 10, 6, 4]",
    "output": "generated_output : list = sub_n(sort_des(drop([4, -2, -1, 5, 1, 5],2)),-5)",
    "io_inp": [
      4,
      -2,
      -1,
      5,
      1,
      5
    ],
    "io_out": [
      10,
      10,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,2)),-5)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(sort_asc(take(take(sub_n([-4, -5],1),10),22)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(take(sub_n(input,1),10),22)))"
  },
  {
    "input": "input : list = [4, -3, 2, -2, -2, 1]\noutput : list = [-7, 8, 8, -12, 13, -22]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(reverse([4, -3, 2, -2, -2, 1]),1),-5),25),-2)",
    "io_inp": [
      4,
      -3,
      2,
      -2,
      -2,
      1
    ],
    "io_out": [
      -7,
      8,
      8,
      -12,
      13,
      -22
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(reverse(input),1),-5),25),-2)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-4, -10]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sub_n([1, -5],3),3),1)),20)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sub_n(input,3),3),1)),20)"
  },
  {
    "input": "input : list = [-3, -2, 3, 4, 2, 1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(drop([-3, -2, 3, 4, 2, 1],4),-5),1),2))",
    "io_inp": [
      -3,
      -2,
      3,
      4,
      2,
      1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(drop(input,4),-5),1),2))"
  },
  {
    "input": "input : list = [4, -4, -1, -4, 5, 0]\noutput : list = [-2, -2, -5, -6, -10, -11]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n([4, -4, -1, -4, 5, 0],-5)),-1)),-1)",
    "io_inp": [
      4,
      -4,
      -1,
      -4,
      5,
      0
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -6,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n(input,-5)),-1)),-1)"
  },
  {
    "input": "input : list = [-4, 4, -1, -1, 1]\noutput : list = [3, 5]",
    "output": "generated_output : list = sub_n(drop([-4, 4, -1, -1, 1],3),-4)",
    "io_inp": [
      -4,
      4,
      -1,
      -1,
      1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,3),-4)"
  },
  {
    "input": "input : list = [5, 3, 1, -5, 2]\noutput : list = [-6, 0, 1, 2, 4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(sub_n([5, 3, 1, -5, 2],1),5),3)),3)",
    "io_inp": [
      5,
      3,
      1,
      -5,
      2
    ],
    "io_out": [
      -6,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(sub_n(input,1),5),3)),3)"
  },
  {
    "input": "input : list = [3, 0, 1, 0, 4, -5]\noutput : list = [12, 9, 10, 9, 13, 4]",
    "output": "generated_output : list = sub_n(add_n([3, 0, 1, 0, 4, -5],5),-4)",
    "io_inp": [
      3,
      0,
      1,
      0,
      4,
      -5
    ],
    "io_out": [
      12,
      9,
      10,
      9,
      13,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),-4)"
  },
  {
    "input": "input : list = [4, -1, 3, -5]\noutput : list = [-1, 3, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n([4, -1, 3, -5],2),2))",
    "io_inp": [
      4,
      -1,
      3,
      -5
    ],
    "io_out": [
      -1,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,2),2))"
  },
  {
    "input": "input : list = [-1, 1, 2, -4, 2, 3]\noutput : list = [24, 16, 16, 8, -32]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(drop([-1, 1, 2, -4, 2, 3],1),-2)),-4),25)",
    "io_inp": [
      -1,
      1,
      2,
      -4,
      2,
      3
    ],
    "io_out": [
      24,
      16,
      16,
      8,
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(drop(input,1),-2)),-4),25)"
  },
  {
    "input": "input : list = [-4, 1, 2]\noutput : list = [9]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(take([-4, 1, 2],1),-2),5)),-4)",
    "io_inp": [
      -4,
      1,
      2
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(take(input,1),-2),5)),-4)"
  },
  {
    "input": "input : list = [3, 3, -1, -3, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(sub_n(take([3, 3, -1, -3, 0],1),4),22),1)",
    "io_inp": [
      3,
      3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(take(input,1),4),22),1)"
  },
  {
    "input": "input : list = [5, 1, -5, 5, -4, 0]\noutput : list = [0, -4, 5, -5, 1, 5]",
    "output": "generated_output : list = reverse([5, 1, -5, 5, -4, 0])",
    "io_inp": [
      5,
      1,
      -5,
      5,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      5,
      -5,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 3, 0, -4]\noutput : list = [-39, 1, 31]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(drop([5, 3, 0, -4],1)),5),2),-1)",
    "io_inp": [
      5,
      3,
      0,
      -4
    ],
    "io_out": [
      -39,
      1,
      31
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(drop(input,1)),5),2),-1)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-39, 21]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(mul_n([-2, 3],3)),-4),-3))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -39,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(mul_n(input,3)),-4),-3))"
  },
  {
    "input": "input : list = [0, 1, 0, -1, -1]\noutput : list = [-17, -21, -17, -13, -13]",
    "output": "generated_output : list = add_n(mul_n(sub_n([0, 1, 0, -1, -1],-5),-4),3)",
    "io_inp": [
      0,
      1,
      0,
      -1,
      -1
    ],
    "io_out": [
      -17,
      -21,
      -17,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-5),-4),3)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, 1]",
    "output": "generated_output : list = mul_n([0, -1],-1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = sort_des(take(reverse([1, 0, -2]),8))",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),8))"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take([2, 2, -3],1))",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [6, -15]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(sort_asc([4, -3]),-1))),-3)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(sort_asc(input),-1))),-3)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [4, 1]",
    "output": "generated_output : list = add_n([5, 2],-1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [32, 80]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sort_des([5, -1])),5),-2),-4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      32,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sort_des(input)),5),-2),-4)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [2, 7]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(sort_asc([-2, 3]),-4),11),20))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(sort_asc(input),-4),11),20))"
  },
  {
    "input": "input : list = [5, -1, 5, 5, 2]\noutput : list = [5, 5, 5, 2, -1]",
    "output": "generated_output : list = reverse(take(take(sort_asc([5, -1, 5, 5, 2]),22),18))",
    "io_inp": [
      5,
      -1,
      5,
      5,
      2
    ],
    "io_out": [
      5,
      5,
      5,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(input),22),18))"
  },
  {
    "input": "input : list = [5, 4, -1, 1]\noutput : list = [5, 1, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n([5, 4, -1, 1],1),-2)),-3)",
    "io_inp": [
      5,
      4,
      -1,
      1
    ],
    "io_out": [
      5,
      1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(input,1),-2)),-3)"
  },
  {
    "input": "input : list = [1, 2, 0, 5, -5, -4]\noutput : list = [20]",
    "output": "generated_output : list = drop(mul_n([1, 2, 0, 5, -5, -4],-5),5)",
    "io_inp": [
      1,
      2,
      0,
      5,
      -5,
      -4
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,-5),5)"
  },
  {
    "input": "input : list = [-2, -5, 1, -4]\noutput : list = [-4, -7, -9, -10]",
    "output": "generated_output : list = sort_des(sub_n(take(take(sort_des([-2, -5, 1, -4]),13),18),5))",
    "io_inp": [
      -2,
      -5,
      1,
      -4
    ],
    "io_out": [
      -4,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(take(sort_des(input),13),18),5))"
  },
  {
    "input": "input : list = [-1, -5, -5, 3, 4]\noutput : list = [18, 18, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(take([-1, -5, -5, 3, 4],3),18)),4),-2)",
    "io_inp": [
      -1,
      -5,
      -5,
      3,
      4
    ],
    "io_out": [
      18,
      18,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(take(input,3),18)),4),-2)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-5, 1]",
    "output": "generated_output : list = take(sub_n(reverse(take(reverse([-2, 4]),13)),3),39)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(reverse(input),13)),3),39)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des([2, -1])",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -5, 1, 5]\noutput : list = [-1, 5, 8, 9]",
    "output": "generated_output : list = sort_asc(sub_n([4, -5, 1, 5],-4))",
    "io_inp": [
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      -1,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [10, 13]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(sort_asc([-3, 0]),-1),-5),5))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      10,
      13
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(sort_asc(input),-1),-5),5))"
  },
  {
    "input": "input : list = [-5, 1, 0, -2, -4, -1]\noutput : list = [-10, -8, -4, -2, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(reverse([-5, 1, 0, -2, -4, -1]),15),2)))",
    "io_inp": [
      -5,
      1,
      0,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(reverse(input),15),2)))"
  },
  {
    "input": "input : list = [-1, -5, 3, -5]\noutput : list = [-2, -10, 6, -10]",
    "output": "generated_output : list = mul_n([-1, -5, 3, -5],2)",
    "io_inp": [
      -1,
      -5,
      3,
      -5
    ],
    "io_out": [
      -2,
      -10,
      6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, 5, -5]\noutput : list = [2, 5, -5]",
    "output": "generated_output : list = reverse(reverse([2, 5, -5]))",
    "io_inp": [
      2,
      5,
      -5
    ],
    "io_out": [
      2,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, 3, 4, 4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(sort_asc(drop([4, 3, 4, 4],2)),-5)",
    "io_inp": [
      4,
      3,
      4,
      4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,2)),-5)"
  },
  {
    "input": "input : list = [0, 0, 1, -3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(sort_des(drop([0, 0, 1, -3, 5],3)))",
    "io_inp": [
      0,
      0,
      1,
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,3)))"
  },
  {
    "input": "input : list = [2, -5, 2, 4, -5]\noutput : list = [6, -15, 6, 12, -15]",
    "output": "generated_output : list = mul_n([2, -5, 2, 4, -5],3)",
    "io_inp": [
      2,
      -5,
      2,
      4,
      -5
    ],
    "io_out": [
      6,
      -15,
      6,
      12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, 5, 4, -2, -4, -3]\noutput : list = [15, 10, 10, 5, -25, -30]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_asc([-3, 5, 4, -2, -4, -3]),-1),-5)))",
    "io_inp": [
      -3,
      5,
      4,
      -2,
      -4,
      -3
    ],
    "io_out": [
      15,
      10,
      10,
      5,
      -25,
      -30
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_asc(input),-1),-5)))"
  },
  {
    "input": "input : list = [4, 0, -5, 3, -2]\noutput : list = [100, 75, 0, -50, -125]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(mul_n([4, 0, -5, 3, -2],-5)))),-5)",
    "io_inp": [
      4,
      0,
      -5,
      3,
      -2
    ],
    "io_out": [
      100,
      75,
      0,
      -50,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(mul_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc([2, 3]),2),6)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),2),6)"
  },
  {
    "input": "input : list = [2, -5, 0, -4, 0]\noutput : list = [-2, -1, 3, 3, 5]",
    "output": "generated_output : list = add_n(take(add_n(take(sort_asc([2, -5, 0, -4, 0]),6),-2),41),5)",
    "io_inp": [
      2,
      -5,
      0,
      -4,
      0
    ],
    "io_out": [
      -2,
      -1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sort_asc(input),6),-2),41),5)"
  },
  {
    "input": "input : list = [4, 0, -2]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = take(reverse(sort_des(take(sort_asc([4, 0, -2]),16))),41)",
    "io_inp": [
      4,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(sort_asc(input),16))),41)"
  },
  {
    "input": "input : list = [4, -2, 3, -2, 2, -1]\noutput : list = [-4, -2, 0, 6, 8, 8]",
    "output": "generated_output : list = take(take(sub_n(mul_n(sort_des([4, -2, 3, -2, 2, -1]),-2),-4),12),36)",
    "io_inp": [
      4,
      -2,
      3,
      -2,
      2,
      -1
    ],
    "io_out": [
      -4,
      -2,
      0,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(sort_des(input),-2),-4),12),36)"
  },
  {
    "input": "input : list = [1, -3, 0, 5, 2]\noutput : list = [-11, -8, -7, -6, -3]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_asc(sub_n([1, -3, 0, 5, 2],4)),5),2),2)",
    "io_inp": [
      1,
      -3,
      0,
      5,
      2
    ],
    "io_out": [
      -11,
      -8,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_asc(sub_n(input,4)),5),2),2)"
  },
  {
    "input": "input : list = [-4, 5, -2, 4, 5]\noutput : list = [5, 5, 4, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des([-4, 5, -2, 4, 5])))",
    "io_inp": [
      -4,
      5,
      -2,
      4,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [3, -1, 0]\noutput : list = [6, 3, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse([3, -1, 0]),-3),-3)))",
    "io_inp": [
      3,
      -1,
      0
    ],
    "io_out": [
      6,
      3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse(input),-3),-3)))"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [2, -4, -6]",
    "output": "generated_output : list = add_n([3, -3, -5],-1)",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-105, -45]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(sub_n([0, 4],-4),-5),-5)),3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -105,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(sub_n(input,-4),-5),-5)),3)"
  },
  {
    "input": "input : list = [3, -5, -5, -1, 1, 3]\noutput : list = [1, -1, -3, -7, -7]",
    "output": "generated_output : list = add_n(drop(reverse(sort_asc(add_n([3, -5, -5, -1, 1, 3],-1))),1),-1)",
    "io_inp": [
      3,
      -5,
      -5,
      -1,
      1,
      3
    ],
    "io_out": [
      1,
      -1,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(sort_asc(add_n(input,-1))),1),-1)"
  },
  {
    "input": "input : list = [-3, 5, -5, -5]\noutput : list = [0, 24]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(take([-3, 5, -5, -5],2))),5),-3)",
    "io_inp": [
      -3,
      5,
      -5,
      -5
    ],
    "io_out": [
      0,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(take(input,2))),5),-3)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [11, -17, -21]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(mul_n([-4, -3, 4],4))),-5))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      11,
      -17,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(mul_n(input,4))),-5))"
  },
  {
    "input": "input : list = [-3, 5, -5, -3, 1]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take([-3, 5, -5, -3, 1],2)",
    "io_inp": [
      -3,
      5,
      -5,
      -3,
      1
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-13, -9]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc([2, 3]),-4),-1))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -13,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(input),-4),-1))"
  },
  {
    "input": "input : list = [-2, -2, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -2, -5],1)",
    "io_inp": [
      -2,
      -2,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, 4, 5, -4, -4]\noutput : list = [5, 4, 1, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(take([1, -4, 4, 5, -4, -4],4)))))",
    "io_inp": [
      1,
      -4,
      4,
      5,
      -4,
      -4
    ],
    "io_out": [
      5,
      4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(take(input,4)))))"
  },
  {
    "input": "input : list = [-2, 0, 4, -5, -1]\noutput : list = [10]",
    "output": "generated_output : list = sub_n(take(sub_n(drop(take([-2, 0, 4, -5, -1],2),1),-5),36),-5)",
    "io_inp": [
      -2,
      0,
      4,
      -5,
      -1
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(drop(take(input,2),1),-5),36),-5)"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(drop([-2, 0, 0],1),-2)))",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(drop(input,1),-2)))"
  },
  {
    "input": "input : list = [-4, -1, -4]\noutput : list = [-5, -2, -5]",
    "output": "generated_output : list = add_n(sub_n(reverse([-4, -1, -4]),2),1)",
    "io_inp": [
      -4,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),2),1)"
  },
  {
    "input": "input : list = [-5, 3, 0, 1, 2]\noutput : list = [35, 50, 10]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(add_n([-5, 3, 0, 1, 2],3),-4),3)),5)",
    "io_inp": [
      -5,
      3,
      0,
      1,
      2
    ],
    "io_out": [
      35,
      50,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(add_n(input,3),-4),3)),5)"
  },
  {
    "input": "input : list = [-2, 5, 0, 5, -1]\noutput : list = [-1, 5, 0, 5, -2]",
    "output": "generated_output : list = reverse([-2, 5, 0, 5, -1])",
    "io_inp": [
      -2,
      5,
      0,
      5,
      -1
    ],
    "io_out": [
      -1,
      5,
      0,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, -1, 0, 0, -2]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = take([-1, -1, -1, 0, 0, -2],3)",
    "io_inp": [
      -1,
      -1,
      -1,
      0,
      0,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, 2, -1, -2, -5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take(take(reverse(take([-1, 2, -1, -2, -5],1)),8),23))",
    "io_inp": [
      -1,
      2,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(take(input,1)),8),23))"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [-11, 9, 17]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(mul_n([4, 2, -3],4),-2)),1))",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      -11,
      9,
      17
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(mul_n(input,4),-2)),1))"
  },
  {
    "input": "input : list = [2, -3, 0, -5, -2]\noutput : list = [-4, 6]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(take([2, -3, 0, -5, -2],2))),-2),1)",
    "io_inp": [
      2,
      -3,
      0,
      -5,
      -2
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(take(input,2))),-2),1)"
  },
  {
    "input": "input : list = [-3, -3, 1, 2]\noutput : list = [30, 26, 10, 10]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n([-3, -3, 1, 2],5),4),1)),-1)",
    "io_inp": [
      -3,
      -3,
      1,
      2
    ],
    "io_out": [
      30,
      26,
      10,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n(input,5),4),1)),-1)"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [-18, 18, 63]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(add_n([-4, 0, 5],-2)),-4),-3),-3)",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      -18,
      18,
      63
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(add_n(input,-2)),-4),-3),-3)"
  },
  {
    "input": "input : list = [3, -5, -5, 3, -2, 1]\noutput : list = [-22, -10]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(drop([3, -5, -5, 3, -2, 1],4),3),4)),2)",
    "io_inp": [
      3,
      -5,
      -5,
      3,
      -2,
      1
    ],
    "io_out": [
      -22,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(drop(input,4),3),4)),2)"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [-2, -6, -6]",
    "output": "generated_output : list = take(take(mul_n([-1, -3, -3],2),12),18)",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,2),12),18)"
  },
  {
    "input": "input : list = [-5, 1, -2]\noutput : list = [19, -5, 7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([-5, 1, -2],-4),5),-4)",
    "io_inp": [
      -5,
      1,
      -2
    ],
    "io_out": [
      19,
      -5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,-4),5),-4)"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(take([3, 1, 2],1),4),1)",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,1),4),1)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(drop([-5, -3, 3],1),4))),-1)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(drop(input,1),4))),-1)"
  },
  {
    "input": "input : list = [4, 4, -5]\noutput : list = [-7, 2, 2]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(reverse([4, 4, -5]))),-2),4)",
    "io_inp": [
      4,
      4,
      -5
    ],
    "io_out": [
      -7,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(reverse(input))),-2),4)"
  },
  {
    "input": "input : list = [-4, 0, -1, -2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take([-4, 0, -1, -2],2),1),1))",
    "io_inp": [
      -4,
      0,
      -1,
      -2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(input,2),1),1))"
  },
  {
    "input": "input : list = [3, -4, -1, -3]\noutput : list = [24, 3]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(take([3, -4, -1, -3],2))),-5),3)",
    "io_inp": [
      3,
      -4,
      -1,
      -3
    ],
    "io_out": [
      24,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(take(input,2))),-5),3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sub_n([1, 3],-2),-1))))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sub_n(input,-2),-1))))"
  },
  {
    "input": "input : list = [-3, 5, -5, -5, -3, -4]\noutput : list = [30, 35]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(drop([-3, 5, -5, -5, -3, -4],4),-3))),-5)",
    "io_inp": [
      -3,
      5,
      -5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      30,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(drop(input,4),-3))),-5)"
  },
  {
    "input": "input : list = [-1, -4, 3, -2, -1, 2]\noutput : list = [-4, -2, -1, -1, 2, 3]",
    "output": "generated_output : list = sort_asc([-1, -4, 3, -2, -1, 2])",
    "io_inp": [
      -1,
      -4,
      3,
      -2,
      -1,
      2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, 1, 1, -3]\noutput : list = [-48, -36]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_des(take([4, 3, 1, 1, -3],2)),3),-4),42)",
    "io_inp": [
      4,
      3,
      1,
      1,
      -3
    ],
    "io_out": [
      -48,
      -36
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_des(take(input,2)),3),-4),42)"
  },
  {
    "input": "input : list = [2, 3, 4, -3]\noutput : list = [4, 5, 6, -1]",
    "output": "generated_output : list = take(reverse(add_n(reverse(sub_n([2, 3, 4, -3],1)),3)),42)",
    "io_inp": [
      2,
      3,
      4,
      -3
    ],
    "io_out": [
      4,
      5,
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(sub_n(input,1)),3)),42)"
  },
  {
    "input": "input : list = [-3, -2, -5, 3, -2]\noutput : list = [-8, -3]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(drop([-3, -2, -5, 3, -2],3))),-3),-3)",
    "io_inp": [
      -3,
      -2,
      -5,
      3,
      -2
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(drop(input,3))),-3),-3)"
  },
  {
    "input": "input : list = [-2, 3, -1, -3, 5]\noutput : list = [20, -10]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(mul_n([-2, 3, -1, -3, 5],-3),-2),-2),2))",
    "io_inp": [
      -2,
      3,
      -1,
      -3,
      5
    ],
    "io_out": [
      20,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(mul_n(input,-3),-2),-2),2))"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse(take(take([1, -2, 0],1),8)),4)",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(input,1),8)),4)"
  },
  {
    "input": "input : list = [1, 0, 0, 3, 3, 3]\noutput : list = [2, 2, 2, 0, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des(sub_n([1, 0, 0, 3, 3, 3],5))),4))",
    "io_inp": [
      1,
      0,
      0,
      3,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      2,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(sub_n(input,5))),4))"
  },
  {
    "input": "input : list = [-1, 4, -4, -5, -4]\noutput : list = [-1, -9, -10, -9]",
    "output": "generated_output : list = sub_n(drop([-1, 4, -4, -5, -4],1),5)",
    "io_inp": [
      -1,
      4,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -9,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [4, 1, 0, -1]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(drop([4, 1, 0, -1],1)),27),-1))",
    "io_inp": [
      4,
      1,
      0,
      -1
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(drop(input,1)),27),-1))"
  },
  {
    "input": "input : list = [5, 3, -4, 1, -3]\noutput : list = [26, 46]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(drop([5, 3, -4, 1, -3],3),3),4),-5),4)",
    "io_inp": [
      5,
      3,
      -4,
      1,
      -3
    ],
    "io_out": [
      26,
      46
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(drop(input,3),3),4),-5),4)"
  },
  {
    "input": "input : list = [4, -5, 5, 3, 2]\noutput : list = [-16, -14, -12, -10, 4]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(sort_des([4, -5, 5, 3, 2]),-4),-2),24),2)",
    "io_inp": [
      4,
      -5,
      5,
      3,
      2
    ],
    "io_out": [
      -16,
      -14,
      -12,
      -10,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(sort_des(input),-4),-2),24),2)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(sort_asc([-3, -4])),12),1))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(sort_asc(input)),12),1))"
  },
  {
    "input": "input : list = [5, -2, 2, -2, -1, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = take(take([5, -2, 2, -2, -1, 5],2),6)",
    "io_inp": [
      5,
      -2,
      2,
      -2,
      -1,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,2),6)"
  },
  {
    "input": "input : list = [-2, -3, 3, 0]\noutput : list = [-10, -15, -25, -40]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(add_n([-2, -3, 3, 0],5))),-5))",
    "io_inp": [
      -2,
      -3,
      3,
      0
    ],
    "io_out": [
      -10,
      -15,
      -25,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(add_n(input,5))),-5))"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [-2, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(drop([3, -1, 4],1),-3)),-2))",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      -2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(drop(input,1),-3)),-2))"
  },
  {
    "input": "input : list = [1, -4, 1, -2, -2]\noutput : list = [1, -4, 1]",
    "output": "generated_output : list = take([1, -4, 1, -2, -2],3)",
    "io_inp": [
      1,
      -4,
      1,
      -2,
      -2
    ],
    "io_out": [
      1,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [20, -20, -120]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sub_n([2, 0, -5],2),4),-4),5))",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      20,
      -20,
      -120
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(sub_n(input,2),4),-4),5))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-4, 6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(add_n([-5, 5],4))),3))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(add_n(input,4))),3))"
  },
  {
    "input": "input : list = [4, 1, 3, -3]\noutput : list = [-6, -2, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(reverse([4, 1, 3, -3]))),3))",
    "io_inp": [
      4,
      1,
      3,
      -3
    ],
    "io_out": [
      -6,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(reverse(input))),3))"
  },
  {
    "input": "input : list = [4, -4, 2, -4, 1, 1]\noutput : list = [-6, -6, -1, -1, 0, 2]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n([4, -4, 2, -4, 1, 1],1),22)),2)",
    "io_inp": [
      4,
      -4,
      2,
      -4,
      1,
      1
    ],
    "io_out": [
      -6,
      -6,
      -1,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(input,1),22)),2)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [-8, -5, -2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(sub_n([3, -3, 0],1),-1),2)),-5)",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(sub_n(input,1),-1),2)),-5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [3, 8]",
    "output": "generated_output : list = sub_n(add_n(add_n([-3, 2],5),-4),-5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,5),-4),-5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [3, -12]",
    "output": "generated_output : list = mul_n(mul_n([-1, 4],-1),3)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),3)"
  },
  {
    "input": "input : list = [1, 5, 3]\noutput : list = [6, 10, 8]",
    "output": "generated_output : list = sub_n([1, 5, 3],-5)",
    "io_inp": [
      1,
      5,
      3
    ],
    "io_out": [
      6,
      10,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [4, 4, -4, 2]\noutput : list = [9, 3, 11, 11]",
    "output": "generated_output : list = sub_n(sub_n(reverse([4, 4, -4, 2]),-2),-5)",
    "io_inp": [
      4,
      4,
      -4,
      2
    ],
    "io_out": [
      9,
      3,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-2),-5)"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(sub_n([5, 3, -2],-2),-1),-5),5),2)",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(sub_n(input,-2),-1),-5),5),2)"
  },
  {
    "input": "input : list = [-2, 3, -3, -2, 4, 4]\noutput : list = [-12, -12, 0, 2, -10, 0]",
    "output": "generated_output : list = take(reverse(take(sub_n(mul_n([-2, 3, -3, -2, 4, 4],-2),4),22)),45)",
    "io_inp": [
      -2,
      3,
      -3,
      -2,
      4,
      4
    ],
    "io_out": [
      -12,
      -12,
      0,
      2,
      -10,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(mul_n(input,-2),4),22)),45)"
  },
  {
    "input": "input : list = [1, 4, 2, 2, 0]\noutput : list = [17, 17, 9, 1]",
    "output": "generated_output : list = sub_n(drop(mul_n(mul_n(sort_des([1, 4, 2, 2, 0]),4),2),1),-1)",
    "io_inp": [
      1,
      4,
      2,
      2,
      0
    ],
    "io_out": [
      17,
      17,
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(mul_n(mul_n(sort_des(input),4),2),1),-1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-6, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(reverse([-5, 1]))),-1))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-1, 3, 4, -2, 2]\noutput : list = [-11, -91, -111, 9, -71]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n([-1, 3, 4, -2, 2],-4),3),3),5),-1)",
    "io_inp": [
      -1,
      3,
      4,
      -2,
      2
    ],
    "io_out": [
      -11,
      -91,
      -111,
      9,
      -71
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(mul_n(input,-4),3),3),5),-1)"
  },
  {
    "input": "input : list = [-1, 2, -4, -1, -1, -4]\noutput : list = [-16, -16, -4, -4, -4, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(sort_asc([-1, 2, -4, -1, -1, -4]))),4),43)",
    "io_inp": [
      -1,
      2,
      -4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -4,
      -4,
      -4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(sort_asc(input))),4),43)"
  },
  {
    "input": "input : list = [2, -2, -3, 0]\noutput : list = [0, -15]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(drop([2, -2, -3, 0],2)),15),5))",
    "io_inp": [
      2,
      -2,
      -3,
      0
    ],
    "io_out": [
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(drop(input,2)),15),5))"
  },
  {
    "input": "input : list = [1, -1, 1, 0, -1, -5]\noutput : list = [-4, -4, -5, -6, -6, -10]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse(add_n([1, -1, 1, 0, -1, -5],-2)),-4),-1))",
    "io_inp": [
      1,
      -1,
      1,
      0,
      -1,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -6,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(add_n(input,-2)),-4),-1))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [7, 5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n([3, 1],2)),-2))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(input,2)),-2))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [6, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc([-2, 1])),-3))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(input)),-3))"
  },
  {
    "input": "input : list = [2, 4, 5, 3]\noutput : list = [2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([2, 4, 5, 3])",
    "io_inp": [
      2,
      4,
      5,
      3
    ],
    "io_out": [
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 0, 1, -2, 1]\noutput : list = [2, 8, 2, 4, 12]",
    "output": "generated_output : list = reverse(mul_n(add_n(reverse(reverse([-4, 0, 1, -2, 1])),-2),-2))",
    "io_inp": [
      -4,
      0,
      1,
      -2,
      1
    ],
    "io_out": [
      2,
      8,
      2,
      4,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(reverse(reverse(input)),-2),-2))"
  },
  {
    "input": "input : list = [3, 5, 1, 3]\noutput : list = [2, 4]",
    "output": "generated_output : list = add_n(take([3, 5, 1, 3],2),-1)",
    "io_inp": [
      3,
      5,
      1,
      3
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(sort_asc([0, 0]))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-7, -8]",
    "output": "generated_output : list = add_n(reverse(take(add_n(sort_asc([2, 3]),-5),15)),-5)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(sort_asc(input),-5),15)),-5)"
  },
  {
    "input": "input : list = [-1, -5, 3, -5]\noutput : list = [0, 0, 4, 8]",
    "output": "generated_output : list = sort_asc(add_n([-1, -5, 3, -5],5))",
    "io_inp": [
      -1,
      -5,
      3,
      -5
    ],
    "io_out": [
      0,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [-5, 3, -4, 2, 3]\noutput : list = [3, 3, 2, -4, -5]",
    "output": "generated_output : list = take(reverse(sort_asc([-5, 3, -4, 2, 3])),22)",
    "io_inp": [
      -5,
      3,
      -4,
      2,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),22)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [-3, -3, 2]",
    "output": "generated_output : list = sort_asc([-3, -3, 2])",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 2, -1, 1]\noutput : list = [4, 3, 1, -2]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(reverse([-4, 2, -1, 1]),2),19),1))",
    "io_inp": [
      -4,
      2,
      -1,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(reverse(input),2),19),1))"
  },
  {
    "input": "input : list = [-1, 5, -4]\noutput : list = [-11, 1, 25]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(mul_n([-1, 5, -4],4),-4))),-1)",
    "io_inp": [
      -1,
      5,
      -4
    ],
    "io_out": [
      -11,
      1,
      25
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(mul_n(input,4),-4))),-1)"
  },
  {
    "input": "input : list = [-4, -5, 2, -4, 3, -1]\noutput : list = [-4, -3, -3, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(sort_asc([-4, -5, 2, -4, 3, -1]))),1))",
    "io_inp": [
      -4,
      -5,
      2,
      -4,
      3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [5, -3, -4]\noutput : list = [-3, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc([5, -3, -4])),2))",
    "io_inp": [
      5,
      -3,
      -4
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(input)),2))"
  },
  {
    "input": "input : list = [2, 4, -5, -4]\noutput : list = [-4, -2, -11, -10]",
    "output": "generated_output : list = add_n(add_n([2, 4, -5, -4],-1),-5)",
    "io_inp": [
      2,
      4,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -11,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),-5)"
  },
  {
    "input": "input : list = [1, 3, 4, 5, -2, 4]\noutput : list = [-2, 1, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([1, 3, 4, 5, -2, 4])",
    "io_inp": [
      1,
      3,
      4,
      5,
      -2,
      4
    ],
    "io_out": [
      -2,
      1,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5, 0, -5]\noutput : list = [-17, -21, -1, -21]",
    "output": "generated_output : list = sub_n(mul_n([-4, -5, 0, -5],4),1)",
    "io_inp": [
      -4,
      -5,
      0,
      -5
    ],
    "io_out": [
      -17,
      -21,
      -1,
      -21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),1)"
  },
  {
    "input": "input : list = [4, 5, 5, 5]\noutput : list = [8, 8, 8, 7]",
    "output": "generated_output : list = sort_des(add_n([4, 5, 5, 5],3))",
    "io_inp": [
      4,
      5,
      5,
      5
    ],
    "io_out": [
      8,
      8,
      8,
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-75, -125]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(mul_n([-5, -3],5))),5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -75,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(mul_n(input,5))),5)"
  },
  {
    "input": "input : list = [-2, 4, 3, 0, 5]\noutput : list = [2, -4, -3, 0, -5]",
    "output": "generated_output : list = mul_n([-2, 4, 3, 0, 5],-1)",
    "io_inp": [
      -2,
      4,
      3,
      0,
      5
    ],
    "io_out": [
      2,
      -4,
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, -5, 2, -4, 3]\noutput : list = [-6, -4, -2, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n([1, -5, 2, -4, 3],-2))",
    "io_inp": [
      1,
      -5,
      2,
      -4,
      3
    ],
    "io_out": [
      -6,
      -4,
      -2,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [1, 2, -2, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(take([1, 2, -2, 2],2),18)",
    "io_inp": [
      1,
      2,
      -2,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(take(input,2),18)"
  },
  {
    "input": "input : list = [-2, -2, -2, 5]\noutput : list = [-2, -2, -2, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(sort_asc([-2, -2, -2, 5]),23))))",
    "io_inp": [
      -2,
      -2,
      -2,
      5
    ],
    "io_out": [
      -2,
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(sort_asc(input),23))))"
  },
  {
    "input": "input : list = [1, 0, 0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(take(reverse(reverse(take([1, 0, 0, 1],2))),3),36)",
    "io_inp": [
      1,
      0,
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(take(input,2))),3),36)"
  },
  {
    "input": "input : list = [1, 0, 0]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(take([1, 0, 0],1)),6),-2),-5)",
    "io_inp": [
      1,
      0,
      0
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(take(input,1)),6),-2),-5)"
  },
  {
    "input": "input : list = [-4, 3, -5]\noutput : list = [5, 4, -3]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(mul_n([-4, 3, -5],-1)),6)))",
    "io_inp": [
      -4,
      3,
      -5
    ],
    "io_out": [
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(mul_n(input,-1)),6)))"
  },
  {
    "input": "input : list = [-3, 0, -1, 1, -3, -2]\noutput : list = [-6, -3, -4, -2, -6, -5]",
    "output": "generated_output : list = take(take(add_n([-3, 0, -1, 1, -3, -2],-3),12),10)",
    "io_inp": [
      -3,
      0,
      -1,
      1,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -3,
      -4,
      -2,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-3),12),10)"
  },
  {
    "input": "input : list = [4, 1, -4]\noutput : list = [8, -2, -8]",
    "output": "generated_output : list = reverse(mul_n([4, 1, -4],-2))",
    "io_inp": [
      4,
      1,
      -4
    ],
    "io_out": [
      8,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-1, -2, -5, 4]\noutput : list = [-9, -6, -5, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(sort_asc([-1, -2, -5, 4]),-4))),52)",
    "io_inp": [
      -1,
      -2,
      -5,
      4
    ],
    "io_out": [
      -9,
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(sort_asc(input),-4))),52)"
  },
  {
    "input": "input : list = [5, 2, -1, 5]\noutput : list = [4, 4, 1, -2]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(sort_asc([5, 2, -1, 5])),1),19))",
    "io_inp": [
      5,
      2,
      -1,
      5
    ],
    "io_out": [
      4,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(sort_asc(input)),1),19))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -3]))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -2, -2],1)",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -5, -4, -2]\noutput : list = [-4, -6]",
    "output": "generated_output : list = reverse(add_n(add_n(take(drop([1, -5, -4, -2],2),13),2),-4))",
    "io_inp": [
      1,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(drop(input,2),13),2),-4))"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -1, 1],1)",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 3, -3, -1]\noutput : list = [0, 7, 1, 3]",
    "output": "generated_output : list = add_n([-4, 3, -3, -1],4)",
    "io_inp": [
      -4,
      3,
      -3,
      -1
    ],
    "io_out": [
      0,
      7,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-5, 5, -3, 1, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take(take(drop(add_n([-5, 5, -3, 1, 1],3),4),31),21))",
    "io_inp": [
      -5,
      5,
      -3,
      1,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(drop(add_n(input,3),4),31),21))"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [-6, 2, 10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-3, 1, 5],2)))",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      -6,
      2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,2)))"
  },
  {
    "input": "input : list = [-4, 4, -5, 1, -4, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(take([-4, 4, -5, 1, -4, 5],1)))))",
    "io_inp": [
      -4,
      4,
      -5,
      1,
      -4,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [1, -1, -3]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([1, -1, -3]),1))",
    "io_inp": [
      1,
      -1,
      -3
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-2, -3, 3, 3, -1]\noutput : list = [3, 3, -1, -2, -3]",
    "output": "generated_output : list = sort_des([-2, -3, 3, 3, -1])",
    "io_inp": [
      -2,
      -3,
      3,
      3,
      -1
    ],
    "io_out": [
      3,
      3,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3, 1, -4, 2]\noutput : list = [5, -70]",
    "output": "generated_output : list = mul_n(sub_n(take(take(mul_n([2, -3, 1, -4, 2],-3),2),18),-5),-5)",
    "io_inp": [
      2,
      -3,
      1,
      -4,
      2
    ],
    "io_out": [
      5,
      -70
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(mul_n(input,-3),2),18),-5),-5)"
  },
  {
    "input": "input : list = [-1, 1, 0, -1]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop([-1, 1, 0, -1],2)),-1)))",
    "io_inp": [
      -1,
      1,
      0,
      -1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(drop(input,2)),-1)))"
  },
  {
    "input": "input : list = [5, -4, -1, -2]\noutput : list = [7, 1, -2, -20]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(sort_asc([5, -4, -1, -2])),-3)),-5)",
    "io_inp": [
      5,
      -4,
      -1,
      -2
    ],
    "io_out": [
      7,
      1,
      -2,
      -20
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(sort_asc(input)),-3)),-5)"
  },
  {
    "input": "input : list = [1, 2, 3, 5, -4, 0]\noutput : list = [-2, -4, -5, -6, -7, -11]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n([1, 2, 3, 5, -4, 0],-3),-4)))",
    "io_inp": [
      1,
      2,
      3,
      5,
      -4,
      0
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -6,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(input,-3),-4)))"
  },
  {
    "input": "input : list = [-2, 5, 3, 1, -4]\noutput : list = [-8, -6, -3, -1, 1]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(sub_n([-2, 5, 3, 1, -4],3)))),-1)",
    "io_inp": [
      -2,
      5,
      3,
      1,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(sub_n(input,3)))),-1)"
  },
  {
    "input": "input : list = [-4, -4, 2, -2]\noutput : list = [-3, -7, -9, -9]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(reverse([-4, -4, 2, -2]),-3))),2)",
    "io_inp": [
      -4,
      -4,
      2,
      -2
    ],
    "io_out": [
      -3,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(reverse(input),-3))),2)"
  },
  {
    "input": "input : list = [-4, -5, 1, -4]\noutput : list = [-2, -3, 3, -2]",
    "output": "generated_output : list = take(add_n(add_n(add_n(add_n([-4, -5, 1, -4],-4),2),2),2),23)",
    "io_inp": [
      -4,
      -5,
      1,
      -4
    ],
    "io_out": [
      -2,
      -3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(add_n(input,-4),2),2),2),23)"
  },
  {
    "input": "input : list = [-5, 1, -4, 3, 4]\noutput : list = [1, -4, 3, 4]",
    "output": "generated_output : list = drop([-5, 1, -4, 3, 4],1)",
    "io_inp": [
      -5,
      1,
      -4,
      3,
      4
    ],
    "io_out": [
      1,
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 2, 3, -1]\noutput : list = [-1, 0, 2, 3]",
    "output": "generated_output : list = sort_asc([0, 2, 3, -1])",
    "io_inp": [
      0,
      2,
      3,
      -1
    ],
    "io_out": [
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -5, 1, -3]\noutput : list = [-3, 1, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, 1, -3])",
    "io_inp": [
      3,
      -5,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -1, -1, 5, 3, -3]\noutput : list = [5, 3, 3, -1, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc([3, -1, -1, 5, 3, -3]))",
    "io_inp": [
      3,
      -1,
      -1,
      5,
      3,
      -3
    ],
    "io_out": [
      5,
      3,
      3,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-14, -8]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-5, 1],-4),5))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -14,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,-4),5))"
  },
  {
    "input": "input : list = [5, -1, -5, -3, 4, -5]\noutput : list = [-5, -3, 4, -5]",
    "output": "generated_output : list = drop([5, -1, -5, -3, 4, -5],2)",
    "io_inp": [
      5,
      -1,
      -5,
      -3,
      4,
      -5
    ],
    "io_out": [
      -5,
      -3,
      4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -3, -5, 5]\noutput : list = [15, 7, 3, -25]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(mul_n([-2, -3, -5, 5],-4),22),5)))",
    "io_inp": [
      -2,
      -3,
      -5,
      5
    ],
    "io_out": [
      15,
      7,
      3,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(mul_n(input,-4),22),5)))"
  },
  {
    "input": "input : list = [1, -3, -3, 4, -1]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take([1, -3, -3, 4, -1],2)),1),-1),-5)",
    "io_inp": [
      1,
      -3,
      -3,
      4,
      -1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(take(input,2)),1),-1),-5)"
  },
  {
    "input": "input : list = [-1, 3, 2, 5, -2, -4]\noutput : list = [-4, -2, -1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(reverse([-1, 3, 2, 5, -2, -4]),18))))",
    "io_inp": [
      -1,
      3,
      2,
      5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(reverse(input),18))))"
  },
  {
    "input": "input : list = [0, 0, -1, 0, -3]\noutput : list = [3, 6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(drop([0, 0, -1, 0, -3],3)),-1),-5)",
    "io_inp": [
      0,
      0,
      -1,
      0,
      -3
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(drop(input,3)),-1),-5)"
  },
  {
    "input": "input : list = [4, -4, -5, -1, 0, 0]\noutput : list = [-13, -12, -9, -8, -8, -4]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(add_n([4, -4, -5, -1, 0, 0],-3),-5))),22)",
    "io_inp": [
      4,
      -4,
      -5,
      -1,
      0,
      0
    ],
    "io_out": [
      -13,
      -12,
      -9,
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(add_n(input,-3),-5))),22)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-5, -10]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(mul_n([1, -4],1)),-1)),5)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(mul_n(input,1)),-1)),5)"
  },
  {
    "input": "input : list = [4, 2, 2, -1, 1, 1]\noutput : list = [-1, 1, 1]",
    "output": "generated_output : list = drop([4, 2, 2, -1, 1, 1],3)",
    "io_inp": [
      4,
      2,
      2,
      -1,
      1,
      1
    ],
    "io_out": [
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, -1, -3]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = take(mul_n(sort_des(take(add_n([-4, -1, -3],3),17)),-2),11)",
    "io_inp": [
      -4,
      -1,
      -3
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(add_n(input,3),17)),-2),11)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(sub_n([-2, -4],-1),-2)),-2),36)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(sub_n(input,-1),-2)),-2),36)"
  },
  {
    "input": "input : list = [1, 2, -4, 0]\noutput : list = [-4, 0, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc([1, 2, -4, 0]))))",
    "io_inp": [
      1,
      2,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [-35, -25, -5]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc([1, 3, -3]))),4),-5)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      -35,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_asc(input))),4),-5)"
  },
  {
    "input": "input : list = [-1, 5, 1, -4, 0]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(reverse([-1, 5, 1, -4, 0]),5),2)))",
    "io_inp": [
      -1,
      5,
      1,
      -4,
      0
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(reverse(input),5),2)))"
  },
  {
    "input": "input : list = [1, -3, 4, 3]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(take(drop(sort_asc(sort_des([1, -3, 4, 3])),3),14),-3)",
    "io_inp": [
      1,
      -3,
      4,
      3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(sort_asc(sort_des(input)),3),14),-3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-3, -1],-3),-4))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,-3),-4))"
  },
  {
    "input": "input : list = [-1, 2, -5, -4, 5]\noutput : list = [-1, 2, -5, -4, 5]",
    "output": "generated_output : list = mul_n([-1, 2, -5, -4, 5],1)",
    "io_inp": [
      -1,
      2,
      -5,
      -4,
      5
    ],
    "io_out": [
      -1,
      2,
      -5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, -2, 3, 4, -4, -3]\noutput : list = [24, 21, 18, 15, 3, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(mul_n([-1, -2, 3, 4, -4, -3],-1),1),-3),3))",
    "io_inp": [
      -1,
      -2,
      3,
      4,
      -4,
      -3
    ],
    "io_out": [
      24,
      21,
      18,
      15,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(mul_n(input,-1),1),-3),3))"
  },
  {
    "input": "input : list = [-4, -5, 4, 0]\noutput : list = [14, 10, 5]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(drop([-4, -5, 4, 0],1)),5)),-5)",
    "io_inp": [
      -4,
      -5,
      4,
      0
    ],
    "io_out": [
      14,
      10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(drop(input,1)),5)),-5)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(drop(sort_des([2, 0, -3]),2),-3),1))",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(drop(sort_des(input),2),-3),1))"
  },
  {
    "input": "input : list = [-5, -1, -3, 0]\noutput : list = [-5, -3, -1, 0]",
    "output": "generated_output : list = reverse(reverse(sort_asc([-5, -1, -3, 0])))",
    "io_inp": [
      -5,
      -1,
      -3,
      0
    ],
    "io_out": [
      -5,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -2, 3, 3]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(drop([2, -2, 3, 3],2),15)),-1))",
    "io_inp": [
      2,
      -2,
      3,
      3
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(drop(input,2),15)),-1))"
  },
  {
    "input": "input : list = [2, 0, 0, -5]\noutput : list = [-8, -3, -3, -1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n([2, 0, 0, -5],3))),31)",
    "io_inp": [
      2,
      0,
      0,
      -5
    ],
    "io_out": [
      -8,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(input,3))),31)"
  },
  {
    "input": "input : list = [-4, -2, 0, 2, 1, 1]\noutput : list = [-6, -4, -2, -3, -3]",
    "output": "generated_output : list = add_n(take(take(drop([-4, -2, 0, 2, 1, 1],1),5),34),-4)",
    "io_inp": [
      -4,
      -2,
      0,
      2,
      1,
      1
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(input,1),5),34),-4)"
  },
  {
    "input": "input : list = [5, 3, -3, 3]\noutput : list = [4, 2, -4, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(add_n([5, 3, -3, 3],-1)),4)),-4)",
    "io_inp": [
      5,
      3,
      -3,
      3
    ],
    "io_out": [
      4,
      2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(add_n(input,-1)),4)),-4)"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sort_des([-2, -5, -3])))),3)",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des([-5, 4])),8)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),8)"
  },
  {
    "input": "input : list = [-1, 2, -4, 5, 3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n(drop([-1, 2, -4, 5, 3],3),-1))),29)",
    "io_inp": [
      -1,
      2,
      -4,
      5,
      3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(drop(input,3),-1))),29)"
  },
  {
    "input": "input : list = [1, 3, -3, -2]\noutput : list = [-1, 0, 3, 5]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n([1, 3, -3, -2],-5))),-3)",
    "io_inp": [
      1,
      3,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(input,-5))),-3)"
  },
  {
    "input": "input : list = [3, -5, -3, -1, 5]\noutput : list = [6, 0, -2, -4, 4]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(sub_n([3, -5, -3, -1, 5],-2)))),1)",
    "io_inp": [
      3,
      -5,
      -3,
      -1,
      5
    ],
    "io_out": [
      6,
      0,
      -2,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(sub_n(input,-2)))),1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des([-3, -5]),-1),-5))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(input),-1),-5))"
  },
  {
    "input": "input : list = [0, 0, 1, 1, -2]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(drop([0, 0, 1, 1, -2],3),3),1),-5),27)",
    "io_inp": [
      0,
      0,
      1,
      1,
      -2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(drop(input,3),3),1),-5),27)"
  },
  {
    "input": "input : list = [-3, -4, 5, -4, 1, -3]\noutput : list = [1, 1, 2, 10]",
    "output": "generated_output : list = sub_n(sort_asc(take([-3, -4, 5, -4, 1, -3],4)),-5)",
    "io_inp": [
      -3,
      -4,
      5,
      -4,
      1,
      -3
    ],
    "io_out": [
      1,
      1,
      2,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(input,4)),-5)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse(add_n([0, -5],4))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [5, 3, 3, -5, -5, -4]\noutput : list = [-3, 3, 3, 27]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take([5, 3, 3, -5, -5, -4],4),4)),-3)",
    "io_inp": [
      5,
      3,
      3,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -3,
      3,
      3,
      27
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(input,4),4)),-3)"
  },
  {
    "input": "input : list = [-5, -2, -5, 5, -2, -4]\noutput : list = [1, -6, -6, -8, -9, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-5, -2, -5, 5, -2, -4],-4)))",
    "io_inp": [
      -5,
      -2,
      -5,
      5,
      -2,
      -4
    ],
    "io_out": [
      1,
      -6,
      -6,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, -1, -4, 0, 3, 5]\noutput : list = [-20, -15, -5, 0, 15, 25]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(reverse(mul_n([-3, -1, -4, 0, 3, 5],5)))))",
    "io_inp": [
      -3,
      -1,
      -4,
      0,
      3,
      5
    ],
    "io_out": [
      -20,
      -15,
      -5,
      0,
      15,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(reverse(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-1, 0, 4, -5, 3]\noutput : list = [100, 20, 0, -60, -80]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(take(mul_n([-1, 0, 4, -5, 3],-4),18),5)))",
    "io_inp": [
      -1,
      0,
      4,
      -5,
      3
    ],
    "io_out": [
      100,
      20,
      0,
      -60,
      -80
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(take(mul_n(input,-4),18),5)))"
  },
  {
    "input": "input : list = [-1, 5, -4]\noutput : list = [0, -6, -9]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n([-1, 5, -4],-3),2)))",
    "io_inp": [
      -1,
      5,
      -4
    ],
    "io_out": [
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(input,-3),2)))"
  },
  {
    "input": "input : list = [5, 5, 2, -5, 3, -2]\noutput : list = [5, 5, 3, 2, -2, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des([5, 5, 2, -5, 3, -2]))))",
    "io_inp": [
      5,
      5,
      2,
      -5,
      3,
      -2
    ],
    "io_out": [
      5,
      5,
      3,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [-1, 0, 0, -4, -2, 5]\noutput : list = [-16]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n([-1, 0, 0, -4, -2, 5],4)),1))",
    "io_inp": [
      -1,
      0,
      0,
      -4,
      -2,
      5
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(input,4)),1))"
  },
  {
    "input": "input : list = [-2, 3, 5, 1, -3]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(drop(reverse(sort_des(sort_des([-2, 3, 5, 1, -3]))),3),-2)",
    "io_inp": [
      -2,
      3,
      5,
      1,
      -3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(sort_des(sort_des(input))),3),-2)"
  },
  {
    "input": "input : list = [4, -4, 5, 5, 3, 1]\noutput : list = [5, -3, 6, 6, 4, 2]",
    "output": "generated_output : list = sub_n([4, -4, 5, 5, 3, 1],-1)",
    "io_inp": [
      4,
      -4,
      5,
      5,
      3,
      1
    ],
    "io_out": [
      5,
      -3,
      6,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, 5, 2, -3, -3, 4]\noutput : list = [5, 4, 2, 2, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc([2, 5, 2, -3, -3, 4]))",
    "io_inp": [
      2,
      5,
      2,
      -3,
      -3,
      4
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 4, -4, -1, 2]\noutput : list = [-20, -5, 10, 20, 25]",
    "output": "generated_output : list = reverse(sort_des(mul_n([5, 4, -4, -1, 2],5)))",
    "io_inp": [
      5,
      4,
      -4,
      -1,
      2
    ],
    "io_out": [
      -20,
      -5,
      10,
      20,
      25
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,5)))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [10, 25]",
    "output": "generated_output : list = mul_n([2, 5],5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -5, 2, 0]\noutput : list = [-13, -8, -6, -6]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([2, -5, 2, 0]),-5),3)",
    "io_inp": [
      2,
      -5,
      2,
      0
    ],
    "io_out": [
      -13,
      -8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),-5),3)"
  },
  {
    "input": "input : list = [-5, -1, 0, 0, -1]\noutput : list = [-4, 1, 1, -4, -24]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(mul_n([-5, -1, 0, 0, -1],5),-5),2)),-4)",
    "io_inp": [
      -5,
      -1,
      0,
      0,
      -1
    ],
    "io_out": [
      -4,
      1,
      1,
      -4,
      -24
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(mul_n(input,5),-5),2)),-4)"
  },
  {
    "input": "input : list = [3, -1, 0, 3]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = reverse(drop([3, -1, 0, 3],1))",
    "io_inp": [
      3,
      -1,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 5, 1, 0, 5]\noutput : list = [24, -6, -26]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(take([-5, 5, 1, 0, 5],3),-5),-3),2))",
    "io_inp": [
      -5,
      5,
      1,
      0,
      5
    ],
    "io_out": [
      24,
      -6,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(take(input,3),-5),-3),2))"
  },
  {
    "input": "input : list = [2, 3, 1, 3, 1, 4]\noutput : list = [4, 4, 5, 6, 6, 7]",
    "output": "generated_output : list = sort_asc(add_n([2, 3, 1, 3, 1, 4],3))",
    "io_inp": [
      2,
      3,
      1,
      3,
      1,
      4
    ],
    "io_out": [
      4,
      4,
      5,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [-4, 3, 2]",
    "output": "generated_output : list = add_n([-3, 4, 3],-1)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      -4,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-5, 5, 2, -2, 2, -1]\noutput : list = [2, 5, 6, 9, 9, 12]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(sub_n([-5, 5, 2, -2, 2, -1],-5),1),1)),42)",
    "io_inp": [
      -5,
      5,
      2,
      -2,
      2,
      -1
    ],
    "io_out": [
      2,
      5,
      6,
      9,
      9,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(sub_n(input,-5),1),1)),42)"
  },
  {
    "input": "input : list = [5, 1, 2, -1, 2]\noutput : list = [6, 2, 3, 0, 3]",
    "output": "generated_output : list = sub_n([5, 1, 2, -1, 2],-1)",
    "io_inp": [
      5,
      1,
      2,
      -1,
      2
    ],
    "io_out": [
      6,
      2,
      3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 2, 4, -1, 1, -1]\noutput : list = [2, 0, -1, -3, -3, -5]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_asc([-3, 2, 4, -1, 1, -1]))),2),-4)",
    "io_inp": [
      -3,
      2,
      4,
      -1,
      1,
      -1
    ],
    "io_out": [
      2,
      0,
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(sort_asc(input))),2),-4)"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [7, 7, -1]",
    "output": "generated_output : list = add_n([3, 3, -5],4)",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      7,
      7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, 5, 4, 5]\noutput : list = [8, 8, 10, 10]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n([4, 5, 4, 5],2))),34))",
    "io_inp": [
      4,
      5,
      4,
      5
    ],
    "io_out": [
      8,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n(input,2))),34))"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [14, 7, 5]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(add_n([-5, -3, 4],4)),17),-1),5)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      14,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(add_n(input,4)),17),-1),5)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-12, -12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sort_asc([1, 1]),1),-2),-4))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(sort_asc(input),1),-2),-4))"
  },
  {
    "input": "input : list = [-1, -2, -3, -4, -2, 3]\noutput : list = [-1, -2, -3, -4]",
    "output": "generated_output : list = take([-1, -2, -3, -4, -2, 3],4)",
    "io_inp": [
      -1,
      -2,
      -3,
      -4,
      -2,
      3
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-3, 5, -3, -1, 3]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = sort_asc(reverse(drop([-3, 5, -3, -1, 3],2)))",
    "io_inp": [
      -3,
      5,
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-5, -2, -2, 0]\noutput : list = [-6, -8, -8, -11]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(sub_n([-5, -2, -2, 0],1),-5)),27))",
    "io_inp": [
      -5,
      -2,
      -2,
      0
    ],
    "io_out": [
      -6,
      -8,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(sub_n(input,1),-5)),27))"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [1, -8, -6]",
    "output": "generated_output : list = take(add_n([5, -4, -2],-4),10)",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      1,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),10)"
  },
  {
    "input": "input : list = [-3, -4, -2, -2]\noutput : list = [-2, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-3, -4, -2, -2])",
    "io_inp": [
      -3,
      -4,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [13, 5, 7]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(reverse([-2, -1, -5]),-1),19),2),-3)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      13,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(reverse(input),-1),19),2),-3)"
  },
  {
    "input": "input : list = [3, -3, 5, 5]\noutput : list = [-12, -6, -4, -4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(sort_des([3, -3, 5, 5])),-4)),5)",
    "io_inp": [
      3,
      -3,
      5,
      5
    ],
    "io_out": [
      -12,
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(sort_des(input)),-4)),5)"
  },
  {
    "input": "input : list = [-2, 3, 3, -5, 5, 1]\noutput : list = [-4, -9, -9, -1]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(mul_n([-2, 3, 3, -5, 5, 1],-1),4),2),4),-4)",
    "io_inp": [
      -2,
      3,
      3,
      -5,
      5,
      1
    ],
    "io_out": [
      -4,
      -9,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(mul_n(input,-1),4),2),4),-4)"
  },
  {
    "input": "input : list = [-2, -5, -4, -1]\noutput : list = [30, 25, 15, 10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sub_n([-2, -5, -4, -1],-3),-4),5)))",
    "io_inp": [
      -2,
      -5,
      -4,
      -1
    ],
    "io_out": [
      30,
      25,
      15,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sub_n(input,-3),-4),5)))"
  },
  {
    "input": "input : list = [2, 0, 0]\noutput : list = [5]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(take([2, 0, 0],1)),1),3),1)",
    "io_inp": [
      2,
      0,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(take(input,1)),1),3),1)"
  },
  {
    "input": "input : list = [-5, -3, -5, 3, 4]\noutput : list = [-10, -10, -8, -2, -1]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(add_n([-5, -3, -5, 3, 4],-5),4),-4),20))",
    "io_inp": [
      -5,
      -3,
      -5,
      3,
      4
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(add_n(input,-5),4),-4),20))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [0, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(reverse([-3, -2]),-3))),-3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(reverse(input),-3))),-3)"
  },
  {
    "input": "input : list = [0, -3, 5, 4]\noutput : list = [5, 4, 0, -3]",
    "output": "generated_output : list = sort_des([0, -3, 5, 4])",
    "io_inp": [
      0,
      -3,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(take(sort_des(sort_asc([3, 2])),5),6)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(input)),5),6)"
  },
  {
    "input": "input : list = [-3, -1, -1, 1, 2]\noutput : list = [20, 10, 10, 0, -5]",
    "output": "generated_output : list = mul_n(sub_n([-3, -1, -1, 1, 2],1),-5)",
    "io_inp": [
      -3,
      -1,
      -1,
      1,
      2
    ],
    "io_out": [
      20,
      10,
      10,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-5)"
  },
  {
    "input": "input : list = [-2, 5, -2, 4, -5]\noutput : list = [35, 0, 35, 5, 50]",
    "output": "generated_output : list = mul_n(sub_n([-2, 5, -2, 4, -5],5),-5)",
    "io_inp": [
      -2,
      5,
      -2,
      4,
      -5
    ],
    "io_out": [
      35,
      0,
      35,
      5,
      50
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),-5)"
  },
  {
    "input": "input : list = [-2, -5, 3, 0]\noutput : list = [3, 0, -2, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(sort_des([-2, -5, 3, 0]),1)),1))",
    "io_inp": [
      -2,
      -5,
      3,
      0
    ],
    "io_out": [
      3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(sort_des(input),1)),1))"
  },
  {
    "input": "input : list = [-4, 0, 5, -2, -3]\noutput : list = [-12, -9, 12, -3, -15]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(mul_n([-4, 0, 5, -2, -3],3)),2),-1),-2)",
    "io_inp": [
      -4,
      0,
      5,
      -2,
      -3
    ],
    "io_out": [
      -12,
      -9,
      12,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(mul_n(input,3)),2),-1),-2)"
  },
  {
    "input": "input : list = [1, 0, 2, 0, -5, 4]\noutput : list = [-4, 0, -8, 0, 20, -16]",
    "output": "generated_output : list = mul_n([1, 0, 2, 0, -5, 4],-4)",
    "io_inp": [
      1,
      0,
      2,
      0,
      -5,
      4
    ],
    "io_out": [
      -4,
      0,
      -8,
      0,
      20,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, -2, -3, 4, 4]\noutput : list = [10, 9, 9, 3, 2]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(sort_asc([5, -2, -3, 4, 4]))),28),-5)",
    "io_inp": [
      5,
      -2,
      -3,
      4,
      4
    ],
    "io_out": [
      10,
      9,
      9,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(sort_asc(input))),28),-5)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(sort_asc([5, 1])),23)))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(sort_asc(input)),23)))"
  },
  {
    "input": "input : list = [-1, 5, -5, 0, 0, 5]\noutput : list = [13, 13, 8, 8, 7, 3]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(sub_n([-1, 5, -5, 0, 0, 5],-3))),19),5)",
    "io_inp": [
      -1,
      5,
      -5,
      0,
      0,
      5
    ],
    "io_out": [
      13,
      13,
      8,
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(sub_n(input,-3))),19),5)"
  },
  {
    "input": "input : list = [-2, -2, -1]\noutput : list = [-1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc([-2, -2, -1]))",
    "io_inp": [
      -2,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -1, 4, -2]\noutput : list = [5, 4, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des([5, -1, 4, -2]))",
    "io_inp": [
      5,
      -1,
      4,
      -2
    ],
    "io_out": [
      5,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, -5, -4, 1, 1, -2]\noutput : list = [-8, -7, -5]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(sort_des([5, -5, -4, 1, 1, -2]))),3),3)",
    "io_inp": [
      5,
      -5,
      -4,
      1,
      1,
      -2
    ],
    "io_out": [
      -8,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(sort_des(input))),3),3)"
  },
  {
    "input": "input : list = [3, 0, 4, 2, 5, 0]\noutput : list = [-10, -5, 0, 5, 15, 15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(add_n([3, 0, 4, 2, 5, 0],-3),24))),-5)",
    "io_inp": [
      3,
      0,
      4,
      2,
      5,
      0
    ],
    "io_out": [
      -10,
      -5,
      0,
      5,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(add_n(input,-3),24))),-5)"
  },
  {
    "input": "input : list = [-2, 1, -1, -2, -2, -5]\noutput : list = [1, -1, -2, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([-2, 1, -1, -2, -2, -5]))",
    "io_inp": [
      -2,
      1,
      -1,
      -2,
      -2,
      -5
    ],
    "io_out": [
      1,
      -1,
      -2,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -5, 0, -4, -2]\noutput : list = [0, -2, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-2, -5, 0, -4, -2])",
    "io_inp": [
      -2,
      -5,
      0,
      -4,
      -2
    ],
    "io_out": [
      0,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, 1, -5, 1]\noutput : list = [-2, 16, -2, -8, 1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n([0, 3, 1, -5, 1],-3)),4),-5)",
    "io_inp": [
      0,
      3,
      1,
      -5,
      1
    ],
    "io_out": [
      -2,
      16,
      -2,
      -8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(input,-3)),4),-5)"
  },
  {
    "input": "input : list = [5, -1, 4, 0]\noutput : list = [3, -3, 2, -2]",
    "output": "generated_output : list = sub_n([5, -1, 4, 0],2)",
    "io_inp": [
      5,
      -1,
      4,
      0
    ],
    "io_out": [
      3,
      -3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, 0, -3, -3, 4]\noutput : list = [2, -26]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(drop([5, 0, -3, -3, 4],3),4),4),-2))",
    "io_inp": [
      5,
      0,
      -3,
      -3,
      4
    ],
    "io_out": [
      2,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(drop(input,3),4),4),-2))"
  },
  {
    "input": "input : list = [-1, -5, 1, -5, -2]\noutput : list = [-6, 0, 3, 12, 12]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(sort_des([-1, -5, 1, -5, -2])),-3),-3))",
    "io_inp": [
      -1,
      -5,
      1,
      -5,
      -2
    ],
    "io_out": [
      -6,
      0,
      3,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(sort_des(input)),-3),-3))"
  },
  {
    "input": "input : list = [-4, -2, 1, -4]\noutput : list = [-4, -4, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_des([-4, -2, 1, -4])))))",
    "io_inp": [
      -4,
      -2,
      1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, -1, -4, 3]\noutput : list = [0, -12, -24, -28]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des([2, -1, -4, 3]),-4),-4)))",
    "io_inp": [
      2,
      -1,
      -4,
      3
    ],
    "io_out": [
      0,
      -12,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des(input),-4),-4)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(add_n([-5, -4],-1),5)),-2))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(add_n(input,-1),5)),-2))"
  },
  {
    "input": "input : list = [-2, 3, -4, 4, 2]\noutput : list = [8, 6, 4, -4, -8]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n([-2, 3, -4, 4, 2],-1)),-2))",
    "io_inp": [
      -2,
      3,
      -4,
      4,
      2
    ],
    "io_out": [
      8,
      6,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(input,-1)),-2))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-16, -7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(add_n([-5, 4],-3)),5)),3)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -16,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(add_n(input,-3)),5)),3)"
  },
  {
    "input": "input : list = [1, -5, 1, 1]\noutput : list = [2, 2, 2, -4]",
    "output": "generated_output : list = add_n(sort_des([1, -5, 1, 1]),1)",
    "io_inp": [
      1,
      -5,
      1,
      1
    ],
    "io_out": [
      2,
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [5, -2, 0, 2]\noutput : list = [5, -1, -5, -9]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc([5, -2, 0, 2]),2),-4)),1)",
    "io_inp": [
      5,
      -2,
      0,
      2
    ],
    "io_out": [
      5,
      -1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(sort_asc(input),2),-4)),1)"
  },
  {
    "input": "input : list = [-1, -2, 1, -4, -1, 2]\noutput : list = [4, 2, 1, 1, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(mul_n([-1, -2, 1, -4, -1, 2],-1)))",
    "io_inp": [
      -1,
      -2,
      1,
      -4,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(input,-1)))"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [-7, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(reverse([-3, 3, 2])),-5),-1))",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      -7,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(reverse(input)),-5),-1))"
  },
  {
    "input": "input : list = [5, -4, -1, 3, -5]\noutput : list = [288, -252, -72, 168, -312]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(mul_n([5, -4, -1, 3, -5],5),-4),3),-3),-3)",
    "io_inp": [
      5,
      -4,
      -1,
      3,
      -5
    ],
    "io_out": [
      288,
      -252,
      -72,
      168,
      -312
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(mul_n(input,5),-4),3),-3),-3)"
  },
  {
    "input": "input : list = [-4, 2, 3]\noutput : list = [10, 15]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(drop([-4, 2, 3],1))),5),15)",
    "io_inp": [
      -4,
      2,
      3
    ],
    "io_out": [
      10,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(drop(input,1))),5),15)"
  },
  {
    "input": "input : list = [1, -5, -3, 3, 3]\noutput : list = [16, 8, -8, -16, -16]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(mul_n([1, -5, -3, 3, 3],-4),23),4)))",
    "io_inp": [
      1,
      -5,
      -3,
      3,
      3
    ],
    "io_out": [
      16,
      8,
      -8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(mul_n(input,-4),23),4)))"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [-5, -4, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_asc([4, 0, 1]))),5))",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [1, 4, -2, 3]\noutput : list = [4, 3, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(sort_asc([1, 4, -2, 3])))))",
    "io_inp": [
      1,
      4,
      -2,
      3
    ],
    "io_out": [
      4,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, 4, 3, 5]\noutput : list = [6, 5, 7]",
    "output": "generated_output : list = add_n(drop([4, 4, 3, 5],1),2)",
    "io_inp": [
      4,
      4,
      3,
      5
    ],
    "io_out": [
      6,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-2, -3, 4, 5, -4]\noutput : list = [-20, -15, -10, 20, 25]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(sort_des([-2, -3, 4, 5, -4])),28)),5)",
    "io_inp": [
      -2,
      -3,
      4,
      5,
      -4
    ],
    "io_out": [
      -20,
      -15,
      -10,
      20,
      25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(sort_des(input)),28)),5)"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [5, -5, -5]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(sort_des([3, 5, 3]),-4))),5)",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(sort_des(input),-4))),5)"
  },
  {
    "input": "input : list = [1, 0, 5, 3]\noutput : list = [-4, -5, 0, -2]",
    "output": "generated_output : list = sub_n([1, 0, 5, 3],5)",
    "io_inp": [
      1,
      0,
      5,
      3
    ],
    "io_out": [
      -4,
      -5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, 3, 1, -3]\noutput : list = [2, 6, 4, 0]",
    "output": "generated_output : list = sub_n([-1, 3, 1, -3],-3)",
    "io_inp": [
      -1,
      3,
      1,
      -3
    ],
    "io_out": [
      2,
      6,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([1, -5])))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [5, -1, -1]\noutput : list = [-500, 100, 100]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(mul_n([5, -1, -1],-2),9),-2),5),-5)",
    "io_inp": [
      5,
      -1,
      -1
    ],
    "io_out": [
      -500,
      100,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(mul_n(input,-2),9),-2),5),-5)"
  },
  {
    "input": "input : list = [-1, 0, 1, 3, -1]\noutput : list = [28, 28, 24, 20, 12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(add_n([-1, 0, 1, 3, -1],-2),4)),-4))",
    "io_inp": [
      -1,
      0,
      1,
      3,
      -1
    ],
    "io_out": [
      28,
      28,
      24,
      20,
      12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(add_n(input,-2),4)),-4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(add_n(sort_asc(take(sort_des([2, 5]),11)),-5),3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(sort_des(input),11)),-5),3)"
  },
  {
    "input": "input : list = [-4, 5, 0, 0]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc(take([-4, 5, 0, 0],1)),-1),-3))",
    "io_inp": [
      -4,
      5,
      0,
      0
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(take(input,1)),-1),-3))"
  },
  {
    "input": "input : list = [5, 1, 0, -2, -2, -3]\noutput : list = [5, 1, 0, -2, -2, -3]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n([5, 1, 0, -2, -2, -3],1),1),-2),-1)",
    "io_inp": [
      5,
      1,
      0,
      -2,
      -2,
      -3
    ],
    "io_out": [
      5,
      1,
      0,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(input,1),1),-2),-1)"
  },
  {
    "input": "input : list = [3, 0, 0, -3]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(take([3, 0, 0, -3],2))),27))",
    "io_inp": [
      3,
      0,
      0,
      -3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(take(input,2))),27))"
  },
  {
    "input": "input : list = [4, -1, 1, -1, 3]\noutput : list = [-12, -2, -6, -2, -10]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(reverse([4, -1, 1, -1, 3])),-2),2),-1)",
    "io_inp": [
      4,
      -1,
      1,
      -1,
      3
    ],
    "io_out": [
      -12,
      -2,
      -6,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(reverse(input)),-2),2),-1)"
  },
  {
    "input": "input : list = [-4, -3, -5, 4, 4, 2]\noutput : list = [10, 10, 8, 3, 2, 1]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n([-4, -3, -5, 4, 4, 2],-3)),-3),20)",
    "io_inp": [
      -4,
      -3,
      -5,
      4,
      4,
      2
    ],
    "io_out": [
      10,
      10,
      8,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(input,-3)),-3),20)"
  },
  {
    "input": "input : list = [4, 5, 0]\noutput : list = [5, 4, 0]",
    "output": "generated_output : list = take(sort_des([4, 5, 0]),3)",
    "io_inp": [
      4,
      5,
      0
    ],
    "io_out": [
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(input),3)"
  },
  {
    "input": "input : list = [-3, 5, 0, 0]\noutput : list = [15, 10, 10, 7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(sort_asc([-3, 5, 0, 0]),14)),-5),-5)",
    "io_inp": [
      -3,
      5,
      0,
      0
    ],
    "io_out": [
      15,
      10,
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(sort_asc(input),14)),-5),-5)"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = sort_des(take(take(add_n(sort_asc([4, 2, 3]),-4),14),10))",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(sort_asc(input),-4),14),10))"
  },
  {
    "input": "input : list = [-4, -2, -5, 0, -2, -2]\noutput : list = [7, 5, 8, 3, 5, 5]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(reverse([-4, -2, -5, 0, -2, -2]),-3),-1),47))",
    "io_inp": [
      -4,
      -2,
      -5,
      0,
      -2,
      -2
    ],
    "io_out": [
      7,
      5,
      8,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(reverse(input),-3),-1),47))"
  },
  {
    "input": "input : list = [3, 3, 3, 5]\noutput : list = [-20, -12, -12, -12]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des(reverse([3, 3, 3, 5]))),-4),43)",
    "io_inp": [
      3,
      3,
      3,
      5
    ],
    "io_out": [
      -20,
      -12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(reverse(input))),-4),43)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-30, -5, 5]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n([-5, 2, -3],-4),-5)),-1),-1)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -30,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(mul_n(sub_n(input,-4),-5)),-1),-1)"
  },
  {
    "input": "input : list = [-1, -5, -5, -3]\noutput : list = [-3, -15, -15, -9]",
    "output": "generated_output : list = mul_n([-1, -5, -5, -3],3)",
    "io_inp": [
      -1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -15,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(sort_des([-2, -5]),6))),5)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(sort_des(input),6))),5)"
  },
  {
    "input": "input : list = [-3, 2, 4, -5]\noutput : list = [-10, -1, -3, -8]",
    "output": "generated_output : list = reverse(add_n([-3, 2, 4, -5],-5))",
    "io_inp": [
      -3,
      2,
      4,
      -5
    ],
    "io_out": [
      -10,
      -1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [-5, -2, -5, -3, -5]\noutput : list = [-2, -3, -5, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, -2, -5, -3, -5]))",
    "io_inp": [
      -5,
      -2,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -5, 2, -5, 3]\noutput : list = [2, -5]",
    "output": "generated_output : list = take([2, -5, 2, -5, 3],2)",
    "io_inp": [
      2,
      -5,
      2,
      -5,
      3
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 2, -3, -5]\noutput : list = [-21, -13, 7, -21]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(mul_n([-5, 2, -3, -5],1),4)),-1),42)",
    "io_inp": [
      -5,
      2,
      -3,
      -5
    ],
    "io_out": [
      -21,
      -13,
      7,
      -21
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(mul_n(input,1),4)),-1),42)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sort_des([-1, -5]),5),3),-1),2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sort_des(input),5),3),-1),2)"
  },
  {
    "input": "input : list = [-1, 1, -2, 2, -5]\noutput : list = [-4, 3, -1, 2, 0]",
    "output": "generated_output : list = sub_n(reverse([-1, 1, -2, 2, -5]),-1)",
    "io_inp": [
      -1,
      1,
      -2,
      2,
      -5
    ],
    "io_out": [
      -4,
      3,
      -1,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [1, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(add_n([3, -2, 3],1),2)),2))",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(add_n(input,1),2)),2))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [17, -23]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(reverse([3, -5])),5),5),2)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      17,
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(reverse(input)),5),5),2)"
  },
  {
    "input": "input : list = [4, 1, 3, -4, 2, 3]\noutput : list = [1, 0, 0, -1, -2, -7]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([4, 1, 3, -4, 2, 3]),3))",
    "io_inp": [
      4,
      1,
      3,
      -4,
      2,
      3
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [-4, -3, 5, 1]\noutput : list = [0, 20, 40, 45]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(add_n([-4, -3, 5, 1],-4),-2),-1)),-5)",
    "io_inp": [
      -4,
      -3,
      5,
      1
    ],
    "io_out": [
      0,
      20,
      40,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(add_n(input,-4),-2),-1)),-5)"
  },
  {
    "input": "input : list = [4, 4, 3, 0, 3]\noutput : list = [9, 9, 8, 5, 8]",
    "output": "generated_output : list = add_n([4, 4, 3, 0, 3],5)",
    "io_inp": [
      4,
      4,
      3,
      0,
      3
    ],
    "io_out": [
      9,
      9,
      8,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 3, -3, -2, -1]\noutput : list = [-2, -1, 0, 1, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(sort_des([-4, 3, -3, -2, -1])),5)),-3)",
    "io_inp": [
      -4,
      3,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(sort_des(input)),5)),-3)"
  },
  {
    "input": "input : list = [-5, 3, 4, 0]\noutput : list = [7, 6, 3, -2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n([-5, 3, 4, 0],2),1)))",
    "io_inp": [
      -5,
      3,
      4,
      0
    ],
    "io_out": [
      7,
      6,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(input,2),1)))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-7, -4]",
    "output": "generated_output : list = sub_n([-5, -2],2)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, -1, -5, -2, 1]\noutput : list = [0, -3, -6, -2, -6]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(reverse([-5, -1, -5, -2, 1]),2),5),28),-4)",
    "io_inp": [
      -5,
      -1,
      -5,
      -2,
      1
    ],
    "io_out": [
      0,
      -3,
      -6,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(reverse(input),2),5),28),-4)"
  },
  {
    "input": "input : list = [-2, 0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = drop([-2, 0, 5],1)",
    "io_inp": [
      -2,
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, 2, -1, 2]\noutput : list = [2, -5, -1, -4, -1]",
    "output": "generated_output : list = take(sub_n([5, -2, 2, -1, 2],3),23)",
    "io_inp": [
      5,
      -2,
      2,
      -1,
      2
    ],
    "io_out": [
      2,
      -5,
      -1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),23)"
  },
  {
    "input": "input : list = [2, -4, -4, -5]\noutput : list = [-10]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(take([2, -4, -4, -5],1)),-5),18))",
    "io_inp": [
      2,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(take(input,1)),-5),18))"
  },
  {
    "input": "input : list = [1, 5, 3, 5, -5]\noutput : list = [6, 30, 18, 30, -30]",
    "output": "generated_output : list = take(mul_n(mul_n([1, 5, 3, 5, -5],-2),-3),32)",
    "io_inp": [
      1,
      5,
      3,
      5,
      -5
    ],
    "io_out": [
      6,
      30,
      18,
      30,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-2),-3),32)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [25, -20]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse(mul_n([5, -4],5)),-4),-4))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      25,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(mul_n(input,5)),-4),-4))"
  },
  {
    "input": "input : list = [2, 4, -2, 5, -4]\noutput : list = [-4, 5, -2, 4, 2]",
    "output": "generated_output : list = reverse([2, 4, -2, 5, -4])",
    "io_inp": [
      2,
      4,
      -2,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -2,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, -1, 1, 0, -3]\noutput : list = [5, 1, 0, -1, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 5, -1, 1, 0, -3])",
    "io_inp": [
      -4,
      5,
      -1,
      1,
      0,
      -3
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5, -3, 0, 3]\noutput : list = [3, 0, -3, 5, 2]",
    "output": "generated_output : list = reverse([2, 5, -3, 0, 3])",
    "io_inp": [
      2,
      5,
      -3,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -3,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 1, -5, 2, -2]\noutput : list = [7, 1, 1, 1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(take([-5, -5, 1, -5, 2, -2],4),-2)),5),1)",
    "io_inp": [
      -5,
      -5,
      1,
      -5,
      2,
      -2
    ],
    "io_out": [
      7,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(take(input,4),-2)),5),1)"
  },
  {
    "input": "input : list = [0, 0, 0, 5, -2]\noutput : list = [0, 0, 0, 5, -2]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n([0, 0, 0, 5, -2],4),4)))",
    "io_inp": [
      0,
      0,
      0,
      5,
      -2
    ],
    "io_out": [
      0,
      0,
      0,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(input,4),4)))"
  },
  {
    "input": "input : list = [-5, -5, 1, 0, 5]\noutput : list = [0, 0, 20, 24, 40]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(add_n([-5, -5, 1, 0, 5],5),-2),17)),-2)",
    "io_inp": [
      -5,
      -5,
      1,
      0,
      5
    ],
    "io_out": [
      0,
      0,
      20,
      24,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(add_n(input,5),-2),17)),-2)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-8, 2]",
    "output": "generated_output : list = take(take(take(mul_n([4, -1],-2),15),8),14)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(input,-2),15),8),14)"
  },
  {
    "input": "input : list = [-4, 1, 0, 2, -4]\noutput : list = [1, 0, -1, -5]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(drop([-4, 1, 0, 2, -4],1)),-2),1))",
    "io_inp": [
      -4,
      1,
      0,
      2,
      -4
    ],
    "io_out": [
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(drop(input,1)),-2),1))"
  },
  {
    "input": "input : list = [-5, -2, -4, 5]\noutput : list = [48, 44, 36, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(reverse([-5, -2, -4, 5]),3),4)),-4)",
    "io_inp": [
      -5,
      -2,
      -4,
      5
    ],
    "io_out": [
      48,
      44,
      36,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(reverse(input),3),4)),-4)"
  },
  {
    "input": "input : list = [2, 5, 2, 5, 4, 1]\noutput : list = [-8, -8, -7, -5, -5, -4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(sort_asc([2, 5, 2, 5, 4, 1]),-1),-4),-1))",
    "io_inp": [
      2,
      5,
      2,
      5,
      4,
      1
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(sort_asc(input),-1),-4),-1))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = reverse([-4, 4])",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, 0, -5, -4]\noutput : list = [10, 0, -20, -25, -25]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse(sort_des([2, -5, 0, -5, -4])))),5)",
    "io_inp": [
      2,
      -5,
      0,
      -5,
      -4
    ],
    "io_out": [
      10,
      0,
      -20,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [2, -1, -3, 2, 4]\noutput : list = [-3, -1, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, -1, -3, 2, 4])",
    "io_inp": [
      2,
      -1,
      -3,
      2,
      4
    ],
    "io_out": [
      -3,
      -1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, 4, 5]\noutput : list = [2, -3, 2, 3]",
    "output": "generated_output : list = sub_n([4, -1, 4, 5],2)",
    "io_inp": [
      4,
      -1,
      4,
      5
    ],
    "io_out": [
      2,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, -2, 2, -4, 2, 0]\noutput : list = [11, 6, 10, 4, 10, 8]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(reverse([3, -2, 2, -4, 2, 0]),-5)),-3),1)",
    "io_inp": [
      3,
      -2,
      2,
      -4,
      2,
      0
    ],
    "io_out": [
      11,
      6,
      10,
      4,
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(reverse(input),-5)),-3),1)"
  },
  {
    "input": "input : list = [2, -2, 4, 1, 4, -4]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(take([2, -2, 4, 1, 4, -4],1),-2)",
    "io_inp": [
      2,
      -2,
      4,
      1,
      4,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [1, 0, -5, -5, -5]\noutput : list = [-3, -3, -3, 2, 3]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_des([1, 0, -5, -5, -5]),26)),-2),1)",
    "io_inp": [
      1,
      0,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(sort_des(input),26)),-2),1)"
  },
  {
    "input": "input : list = [-1, 4, 4, -1]\noutput : list = [-2, 8, 8, -2]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(reverse([-1, 4, 4, -1]),1)),2),31)",
    "io_inp": [
      -1,
      4,
      4,
      -1
    ],
    "io_out": [
      -2,
      8,
      8,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(reverse(input),1)),2),31)"
  },
  {
    "input": "input : list = [0, 3, -1]\noutput : list = [3, 7]",
    "output": "generated_output : list = add_n(mul_n(sort_des(add_n(drop([0, 3, -1],1),-3)),-1),3)",
    "io_inp": [
      0,
      3,
      -1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(add_n(drop(input,1),-3)),-1),3)"
  },
  {
    "input": "input : list = [0, -1, 2]\noutput : list = [-2, -3, 0]",
    "output": "generated_output : list = add_n([0, -1, 2],-2)",
    "io_inp": [
      0,
      -1,
      2
    ],
    "io_out": [
      -2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, 1, 2, -5]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take([1, 1, 2, -5],1)),4),-1)",
    "io_inp": [
      1,
      1,
      2,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(input,1)),4),-1)"
  },
  {
    "input": "input : list = [-4, -4, 5, -3]\noutput : list = [0, 0, -4, -36]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sub_n([-4, -4, 5, -3],-4),-4))))",
    "io_inp": [
      -4,
      -4,
      5,
      -3
    ],
    "io_out": [
      0,
      0,
      -4,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sub_n(input,-4),-4))))"
  },
  {
    "input": "input : list = [4, -4, -5, -4, 2, 2]\noutput : list = [-54, -44, -44, 16, 16, 36]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(mul_n([4, -4, -5, -4, 2, 2],-2),-5)),46),4)",
    "io_inp": [
      4,
      -4,
      -5,
      -4,
      2,
      2
    ],
    "io_out": [
      -54,
      -44,
      -44,
      16,
      16,
      36
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(mul_n(input,-2),-5)),46),4)"
  },
  {
    "input": "input : list = [-1, 2, 4, 2, -5, -1]\noutput : list = [12, -36, -36, -72, -72, -96]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sort_asc([-1, 2, 4, 2, -5, -1]),4)),-4),3)",
    "io_inp": [
      -1,
      2,
      4,
      2,
      -5,
      -1
    ],
    "io_out": [
      12,
      -36,
      -36,
      -72,
      -72,
      -96
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sort_asc(input),4)),-4),3)"
  },
  {
    "input": "input : list = [-3, 2, 5, -5, 4, -2]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = add_n(take([-3, 2, 5, -5, 4, -2],3),-1)",
    "io_inp": [
      -3,
      2,
      5,
      -5,
      4,
      -2
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-1)"
  },
  {
    "input": "input : list = [-4, -5, -5, 3, 0]\noutput : list = [-5, -5, -4, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(sort_des([-4, -5, -5, 3, 0])),2),-2))",
    "io_inp": [
      -4,
      -5,
      -5,
      3,
      0
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(sort_des(input)),2),-2))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-6, -8]",
    "output": "generated_output : list = sort_des(take(reverse(add_n([-2, -4],-4)),21))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(input,-4)),21))"
  },
  {
    "input": "input : list = [5, -5, -5, 4]\noutput : list = [-52]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(take([5, -5, -5, 4],1),5),-2)),-2)",
    "io_inp": [
      5,
      -5,
      -5,
      4
    ],
    "io_out": [
      -52
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(take(input,1),5),-2)),-2)"
  },
  {
    "input": "input : list = [-4, 0, 1, 4, 4, -4]\noutput : list = [-16, -16, -4, 0, 16, 16]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(sort_asc([-4, 0, 1, 4, 4, -4]),-4))),51)",
    "io_inp": [
      -4,
      0,
      1,
      4,
      4,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -4,
      0,
      16,
      16
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(sort_asc(input),-4))),51)"
  },
  {
    "input": "input : list = [2, -2, 0, 0]\noutput : list = [-30, -20, -20, -10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(add_n([2, -2, 0, 0],-4))),5))",
    "io_inp": [
      2,
      -2,
      0,
      0
    ],
    "io_out": [
      -30,
      -20,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(add_n(input,-4))),5))"
  },
  {
    "input": "input : list = [3, 2, -2, 4, -5]\noutput : list = [30, 20]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(take([3, 2, -2, 4, -5],2)),-2),-5))",
    "io_inp": [
      3,
      2,
      -2,
      4,
      -5
    ],
    "io_out": [
      30,
      20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(take(input,2)),-2),-5))"
  },
  {
    "input": "input : list = [-3, -2, 1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = drop([-3, -2, 1, 4],2)",
    "io_inp": [
      -3,
      -2,
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = drop([-4, 1, 3],1)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 3, 1, -1, 3]\noutput : list = [-9, -7, -5, -5, -4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(add_n([4, 3, 1, -1, 3],-1),-5),-2)))",
    "io_inp": [
      4,
      3,
      1,
      -1,
      3
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(add_n(input,-1),-5),-2)))"
  },
  {
    "input": "input : list = [-5, -5, 3]\noutput : list = [-10, -10, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_des([-5, -5, 3]))),2))",
    "io_inp": [
      -5,
      -5,
      3
    ],
    "io_out": [
      -10,
      -10,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_des(input))),2))"
  },
  {
    "input": "input : list = [0, 2, -4, -1]\noutput : list = [-8, -2]",
    "output": "generated_output : list = mul_n(take(take(drop([0, 2, -4, -1],2),15),19),2)",
    "io_inp": [
      0,
      2,
      -4,
      -1
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(take(drop(input,2),15),19),2)"
  },
  {
    "input": "input : list = [1, 4, -5, -5, 1, 3]\noutput : list = [4, 0, -12, -12, 6, 0]",
    "output": "generated_output : list = take(take(reverse(add_n(mul_n([1, 4, -5, -5, 1, 3],2),-2)),43),45)",
    "io_inp": [
      1,
      4,
      -5,
      -5,
      1,
      3
    ],
    "io_out": [
      4,
      0,
      -12,
      -12,
      6,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(mul_n(input,2),-2)),43),45)"
  },
  {
    "input": "input : list = [-1, 2, -4, 5, -2]\noutput : list = [-18, 18, -54, 54, -30]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(mul_n([-1, 2, -4, 5, -2],-3),-4),-1),-5),30)",
    "io_inp": [
      -1,
      2,
      -4,
      5,
      -2
    ],
    "io_out": [
      -18,
      18,
      -54,
      54,
      -30
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(mul_n(input,-3),-4),-1),-5),30)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -2, 0, -2]\noutput : list = [1, -1, 1, -1]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(reverse([0, -2, 0, -2]),17)),-5),-4)",
    "io_inp": [
      0,
      -2,
      0,
      -2
    ],
    "io_out": [
      1,
      -1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(reverse(input),17)),-5),-4)"
  },
  {
    "input": "input : list = [-5, -1, 3, -5, -1, 5]\noutput : list = [5, -1, -5, 3, -1, -5]",
    "output": "generated_output : list = reverse([-5, -1, 3, -5, -1, 5])",
    "io_inp": [
      -5,
      -1,
      3,
      -5,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -5,
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, 3, -1]\noutput : list = [16, 11, 1, -19]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(sort_asc([-3, -4, 3, -1])),-5),1),-5)",
    "io_inp": [
      -3,
      -4,
      3,
      -1
    ],
    "io_out": [
      16,
      11,
      1,
      -19
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(sort_asc(input)),-5),1),-5)"
  },
  {
    "input": "input : list = [-3, 1, -4, 2, 3, 3]\noutput : list = [-11, -10, -6, -5, -4, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(add_n([-3, 1, -4, 2, 3, 3],4),-2)),-4),5)",
    "io_inp": [
      -3,
      1,
      -4,
      2,
      3,
      3
    ],
    "io_out": [
      -11,
      -10,
      -6,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(add_n(input,4),-2)),-4),5)"
  },
  {
    "input": "input : list = [-3, 5, 1, -4, -1, -1]\noutput : list = [-4, -1, -1, 1]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(drop([-3, 5, 1, -4, -1, -1],2))),31))",
    "io_inp": [
      -3,
      5,
      1,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(drop(input,2))),31))"
  },
  {
    "input": "input : list = [-3, -3, 0, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(take([-3, -3, 0, 3],2),2)),1),2)",
    "io_inp": [
      -3,
      -3,
      0,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(take(input,2),2)),1),2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(mul_n([1, 2],-5),-4),1),-3),2)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(mul_n(input,-5),-4),1),-3),2)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(sort_des([-5, 4])))),20)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(sort_des(input)))),20)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(mul_n([4, 4],-1),-1),4),-3))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(mul_n(input,-1),-1),4),-3))"
  },
  {
    "input": "input : list = [2, -2, 1, 2]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -2, 1, 2],1)",
    "io_inp": [
      2,
      -2,
      1,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 5, 3, 5, 4, -5]\noutput : list = [5, 4, 3, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(drop([0, 5, 3, 5, 4, -5],2)))))",
    "io_inp": [
      0,
      5,
      3,
      5,
      4,
      -5
    ],
    "io_out": [
      5,
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [-3, -3, 3, 0, -4, -3]\noutput : list = [-9, -8, -8, -8, -5, -2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_des([-3, -3, 3, 0, -4, -3])),5)))",
    "io_inp": [
      -3,
      -3,
      3,
      0,
      -4,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_asc([0, 2, 1])))),-2)",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(sort_asc(input)))),-2)"
  },
  {
    "input": "input : list = [-2, 1, -1, 3, 3, -2]\noutput : list = [-2, -2, -1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([-2, 1, -1, 3, 3, -2])",
    "io_inp": [
      -2,
      1,
      -1,
      3,
      3,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [-3, -3, 4]",
    "output": "generated_output : list = sort_asc(add_n(take(take(add_n([5, -2, -2],3),12),23),-4))",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(add_n(input,3),12),23),-4))"
  },
  {
    "input": "input : list = [-2, 0, 4, 0, -2]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = take(sort_des(take(take([-2, 0, 4, 0, -2],3),10)),24)",
    "io_inp": [
      -2,
      0,
      4,
      0,
      -2
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(input,3),10)),24)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = add_n(sort_des([2, -3, -1]),-2)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [2, -3, -1, 5, -4]\noutput : list = [27, 24, 18, 9, 0]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sub_n([2, -3, -1, 5, -4],5)),-3)))",
    "io_inp": [
      2,
      -3,
      -1,
      5,
      -4
    ],
    "io_out": [
      27,
      24,
      18,
      9,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sub_n(input,5)),-3)))"
  },
  {
    "input": "input : list = [-1, -1, -4, 2, -5]\noutput : list = [-151, -76, -76, -1, 24]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sub_n([-1, -1, -4, 2, -5],-4),-5)),5),1)",
    "io_inp": [
      -1,
      -1,
      -4,
      2,
      -5
    ],
    "io_out": [
      -151,
      -76,
      -76,
      -1,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sub_n(input,-4),-5)),5),1)"
  },
  {
    "input": "input : list = [-4, -1, 4, -5]\noutput : list = [2, 3, 6, 11]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(sort_asc([-4, -1, 4, -5])),32),4),3)",
    "io_inp": [
      -4,
      -1,
      4,
      -5
    ],
    "io_out": [
      2,
      3,
      6,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(sort_asc(input)),32),4),3)"
  },
  {
    "input": "input : list = [0, -5, -5, -3]\noutput : list = [-5, -5, -3, 0]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_asc([0, -5, -5, -3])))),37)",
    "io_inp": [
      0,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(sort_asc(input)))),37)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-23, 17]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sub_n(mul_n([4, -4],-5),-2),5)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -23,
      17
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sub_n(mul_n(input,-5),-2),5)))"
  },
  {
    "input": "input : list = [4, 5, 5, -2, 2, 3]\noutput : list = [-21, -21, -17, -13, -9, 7]",
    "output": "generated_output : list = sub_n(mul_n(sort_des([4, 5, 5, -2, 2, 3]),-4),1)",
    "io_inp": [
      4,
      5,
      5,
      -2,
      2,
      3
    ],
    "io_out": [
      -21,
      -21,
      -17,
      -13,
      -9,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(input),-4),1)"
  },
  {
    "input": "input : list = [2, -4, 4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse(mul_n(drop([2, -4, 4, -1],2),1))",
    "io_inp": [
      2,
      -4,
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(input,2),1))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(sort_des([-2, -3]),13))))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(sort_des(input),13))))"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-13, -6, -13]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(add_n([-5, 2, -5],-4),2)),2),-4)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -13,
      -6,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(add_n(input,-4),2)),2),-4)"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [2, 0, -3]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(sub_n([0, 2, -3],-1)),-3),19),4)",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(sub_n(input,-1)),-3),19),4)"
  },
  {
    "input": "input : list = [3, -3, 5, -1, -2, -2]\noutput : list = [3, 2, 2, 1, -5]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(drop([3, -3, 5, -1, -2, -2],1)),-1),-1),-1)",
    "io_inp": [
      3,
      -3,
      5,
      -1,
      -2,
      -2
    ],
    "io_out": [
      3,
      2,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(drop(input,1)),-1),-1),-1)"
  },
  {
    "input": "input : list = [2, 2, -5, -2, -3]\noutput : list = [-3, -1, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(mul_n([2, 2, -5, -2, -3],1),2),1),1))",
    "io_inp": [
      2,
      2,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(mul_n(input,1),2),1),1))"
  },
  {
    "input": "input : list = [5, 5, 5, -1]\noutput : list = [15, 15, 15, -3]",
    "output": "generated_output : list = reverse(mul_n(reverse([5, 5, 5, -1]),3))",
    "io_inp": [
      5,
      5,
      5,
      -1
    ],
    "io_out": [
      15,
      15,
      15,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [1, -5]",
    "output": "generated_output : list = reverse(add_n([-1, 5],-4))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [-1, 5, 1, 0, 1, 3]\noutput : list = [16, 48]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(drop([-1, 5, 1, 0, 1, 3],4))),-4),-4)",
    "io_inp": [
      -1,
      5,
      1,
      0,
      1,
      3
    ],
    "io_out": [
      16,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(drop(input,4))),-4),-4)"
  },
  {
    "input": "input : list = [1, 1, 2, 2, -2, 4]\noutput : list = [-8, -8, -7, -7, -11, -5]",
    "output": "generated_output : list = take(sub_n(add_n([1, 1, 2, 2, -2, 4],-5),4),33)",
    "io_inp": [
      1,
      1,
      2,
      2,
      -2,
      4
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -7,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-5),4),33)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-2, 3]",
    "output": "generated_output : list = sub_n([-1, 4],1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, -2, 5, -1]\noutput : list = [2, 20]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(drop([0, -2, 5, -1],2),3)),-5),13)",
    "io_inp": [
      0,
      -2,
      5,
      -1
    ],
    "io_out": [
      2,
      20
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(drop(input,2),3)),-5),13)"
  },
  {
    "input": "input : list = [-2, -5, 4]\noutput : list = [7, -2, 1]",
    "output": "generated_output : list = reverse(sub_n([-2, -5, 4],-3))",
    "io_inp": [
      -2,
      -5,
      4
    ],
    "io_out": [
      7,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-8, -12]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(sort_des([-3, -2]),2),2)))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -8,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(sort_des(input),2),2)))"
  },
  {
    "input": "input : list = [1, 3, 2, 0, 2]\noutput : list = [-13, -10, -7]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take([1, 3, 2, 0, 2],3)),-3),-4)",
    "io_inp": [
      1,
      3,
      2,
      0,
      2
    ],
    "io_out": [
      -13,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(input,3)),-3),-4)"
  },
  {
    "input": "input : list = [-4, -1, -4, 0]\noutput : list = [-2, -3, -6]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(drop([-4, -1, -4, 0],1),5),3)))",
    "io_inp": [
      -4,
      -1,
      -4,
      0
    ],
    "io_out": [
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(drop(input,1),5),3)))"
  },
  {
    "input": "input : list = [-5, -5, -5, -4, 3, -5]\noutput : list = [-5, -5, -5, -5, -4, 3]",
    "output": "generated_output : list = sort_asc([-5, -5, -5, -4, 3, -5])",
    "io_inp": [
      -5,
      -5,
      -5,
      -4,
      3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -5,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, -2]\noutput : list = [0, 0, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(add_n([-2, 1, -2],-3))),-5))",
    "io_inp": [
      -2,
      1,
      -2
    ],
    "io_out": [
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(add_n(input,-3))),-5))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-25]",
    "output": "generated_output : list = mul_n(sub_n(drop(sort_asc(sort_des([2, 3])),1),-2),-5)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(sort_asc(sort_des(input)),1),-2),-5)"
  },
  {
    "input": "input : list = [-2, -3, -5, 3, 3]\noutput : list = [5, 3, 2, -3, -3]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(mul_n([-2, -3, -5, 3, 3],-1)))),1)",
    "io_inp": [
      -2,
      -3,
      -5,
      3,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(mul_n(input,-1)))),1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n([3, 4],5),5)),-3),-2)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(sub_n(input,5),5)),-3),-2)"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [2, 3]",
    "output": "generated_output : list = drop([-2, 2, 3],1)",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = reverse(mul_n([-1, 0, 0],-4))",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0]",
    "output": "generated_output : list = drop(sub_n(take(sort_asc(sort_asc([0, 5])),16),5),1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(sub_n(take(sort_asc(sort_asc(input)),16),5),1)"
  },
  {
    "input": "input : list = [-4, -5, 2]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take([-4, -5, 2],1))",
    "io_inp": [
      -4,
      -5,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [3, -1, 4]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(take([3, -1, 4],1),4))))",
    "io_inp": [
      3,
      -1,
      4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(take(input,1),4))))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [24, 14]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(mul_n([4, 2],5)),18),-4))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      24,
      14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(mul_n(input,5)),18),-4))"
  },
  {
    "input": "input : list = [-3, 1, -3, -4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(drop(take(sort_asc(add_n([-3, 1, -3, -4],-2)),22),3))",
    "io_inp": [
      -3,
      1,
      -3,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(take(sort_asc(add_n(input,-2)),22),3))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-24, -12]",
    "output": "generated_output : list = mul_n(take(sub_n([3, 0],-3),5),-4)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-3),5),-4)"
  },
  {
    "input": "input : list = [0, -5, 3]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(take([0, -5, 3],1),-3),-1)))",
    "io_inp": [
      0,
      -5,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(take(input,1),-3),-1)))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [48, 32]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(mul_n([-2, -3],-4))),4))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      48,
      32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(mul_n(input,-4))),4))"
  },
  {
    "input": "input : list = [0, -3, 0, -5]\noutput : list = [0, 12, 20]",
    "output": "generated_output : list = take(take(drop(mul_n(sort_des([0, -3, 0, -5]),-4),1),4),39)",
    "io_inp": [
      0,
      -3,
      0,
      -5
    ],
    "io_out": [
      0,
      12,
      20
    ],
    "output_masked": "generated_output : list = take(take(drop(mul_n(sort_des(input),-4),1),4),39)"
  },
  {
    "input": "input : list = [4, -5, 3, 5, 5]\noutput : list = [-8, -12, -12]",
    "output": "generated_output : list = sub_n(mul_n(drop(add_n([4, -5, 3, 5, 5],-1),2),-2),4)",
    "io_inp": [
      4,
      -5,
      3,
      5,
      5
    ],
    "io_out": [
      -8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(add_n(input,-1),2),-2),4)"
  },
  {
    "input": "input : list = [-5, 1, 1, -1, 4]\noutput : list = [20]",
    "output": "generated_output : list = drop(mul_n(reverse([-5, 1, 1, -1, 4]),-4),4)",
    "io_inp": [
      -5,
      1,
      1,
      -1,
      4
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(input),-4),4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n(sort_asc([2, 1]),-1)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [0, 5, -2, 1, 5, -3]\noutput : list = [-3, -2, 0, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_des([0, 5, -2, 1, 5, -3])),36)))",
    "io_inp": [
      0,
      5,
      -2,
      1,
      5,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_des(input)),36)))"
  },
  {
    "input": "input : list = [3, 3, -1]\noutput : list = [5, -15, -15]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([3, 3, -1])),-5)",
    "io_inp": [
      3,
      3,
      -1
    ],
    "io_out": [
      5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),-5)"
  },
  {
    "input": "input : list = [1, 1, -3, -2]\noutput : list = [-2, -1, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(add_n([1, 1, -3, -2],1)))))",
    "io_inp": [
      1,
      1,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(add_n(input,1)))))"
  },
  {
    "input": "input : list = [5, -3, 1, 5, -5, 0]\noutput : list = [5, -3, 1, 5]",
    "output": "generated_output : list = take(take([5, -3, 1, 5, -5, 0],4),8)",
    "io_inp": [
      5,
      -3,
      1,
      5,
      -5,
      0
    ],
    "io_out": [
      5,
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(take(input,4),8)"
  },
  {
    "input": "input : list = [5, -4, 0, -3, 1, -5]\noutput : list = [5, 2]",
    "output": "generated_output : list = add_n(take(take(drop([5, -4, 0, -3, 1, -5],2),2),3),5)",
    "io_inp": [
      5,
      -4,
      0,
      -3,
      1,
      -5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(input,2),2),3),5)"
  },
  {
    "input": "input : list = [2, 4, 4, 1, -4, -2]\noutput : list = [0, 0, 6, 9, 18, 24]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n([2, 4, 4, 1, -4, -2],4),-3))))",
    "io_inp": [
      2,
      4,
      4,
      1,
      -4,
      -2
    ],
    "io_out": [
      0,
      0,
      6,
      9,
      18,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n(input,4),-3))))"
  },
  {
    "input": "input : list = [-1, -3, 0, 5, 3, 2]\noutput : list = [-5, -3, -2, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sort_des([-1, -3, 0, 5, 3, 2])),-2)))",
    "io_inp": [
      -1,
      -3,
      0,
      5,
      3,
      2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [14, 8]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(sort_des([3, 0, -1]),4),2),1),2)",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      14,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(sort_des(input),4),2),1),2)"
  },
  {
    "input": "input : list = [-4, -3, 1, -4, 0, 5]\noutput : list = [1]",
    "output": "generated_output : list = take(take(drop([-4, -3, 1, -4, 0, 5],2),1),28)",
    "io_inp": [
      -4,
      -3,
      1,
      -4,
      0,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(drop(input,2),1),28)"
  },
  {
    "input": "input : list = [-3, 1, -1, -2]\noutput : list = [-6, -5, -3]",
    "output": "generated_output : list = reverse(sub_n(take(take(drop([-3, 1, -1, -2],1),14),13),4))",
    "io_inp": [
      -3,
      1,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(drop(input,1),14),13),4))"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [-5, 0, -5]",
    "output": "generated_output : list = reverse(mul_n([1, 0, 1],-5))",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      -5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(add_n([-3, -1],3),4)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,3),4)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [0, 0, -50]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n([-4, 1, 1],-5),-5),-2))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      0,
      0,
      -50
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(input,-5),-5),-2))"
  },
  {
    "input": "input : list = [-1, 1, -5]\noutput : list = [0, -10, 20]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-1, 1, -5],5),5),-1)",
    "io_inp": [
      -1,
      1,
      -5
    ],
    "io_out": [
      0,
      -10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,5),5),-1)"
  },
  {
    "input": "input : list = [4, 2, -3, 0]\noutput : list = [7, 5, 3, 0]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc([4, 2, -3, 0]),19)),3)",
    "io_inp": [
      4,
      2,
      -3,
      0
    ],
    "io_out": [
      7,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(input),19)),3)"
  },
  {
    "input": "input : list = [5, 2, -5, -3]\noutput : list = [2, -5, -3]",
    "output": "generated_output : list = drop([5, 2, -5, -3],1)",
    "io_inp": [
      5,
      2,
      -5,
      -3
    ],
    "io_out": [
      2,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 5, -4, -3]\noutput : list = [12, 15, -12, -9]",
    "output": "generated_output : list = take(mul_n([4, 5, -4, -3],3),9)",
    "io_inp": [
      4,
      5,
      -4,
      -3
    ],
    "io_out": [
      12,
      15,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),9)"
  },
  {
    "input": "input : list = [-3, 4, -1, 4, 2]\noutput : list = [16, 16, 12, 6, 2]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sort_des([-3, 4, -1, 4, 2]),-5),1),8),2)",
    "io_inp": [
      -3,
      4,
      -1,
      4,
      2
    ],
    "io_out": [
      16,
      16,
      12,
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sort_des(input),-5),1),8),2)"
  },
  {
    "input": "input : list = [-4, 5, 0, -5]\noutput : list = [0, 20, 36, 40]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc([-4, 5, 0, -5]),-5)),-4)",
    "io_inp": [
      -4,
      5,
      0,
      -5
    ],
    "io_out": [
      0,
      20,
      36,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(input),-5)),-4)"
  },
  {
    "input": "input : list = [5, 4, -2, 0, -4]\noutput : list = [0, -1, -5, -7, -9]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(sort_des([5, 4, -2, 0, -4]),5),-4),-1),-5)",
    "io_inp": [
      5,
      4,
      -2,
      0,
      -4
    ],
    "io_out": [
      0,
      -1,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(sort_des(input),5),-4),-1),-5)"
  },
  {
    "input": "input : list = [5, 5, -1, -2]\noutput : list = [-6, -5, 1, 1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take(sub_n([5, 5, -1, -2],-1),4),5)))",
    "io_inp": [
      5,
      5,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(sub_n(input,-1),4),5)))"
  },
  {
    "input": "input : list = [3, -1, -1, 2]\noutput : list = [1, 1, 10, 13]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des([3, -1, -1, 2])),3),4)",
    "io_inp": [
      3,
      -1,
      -1,
      2
    ],
    "io_out": [
      1,
      1,
      10,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(input)),3),4)"
  },
  {
    "input": "input : list = [4, -2, 2, 4, 5, -4]\noutput : list = [8, -4, 4, 8, 10, -8]",
    "output": "generated_output : list = mul_n([4, -2, 2, 4, 5, -4],2)",
    "io_inp": [
      4,
      -2,
      2,
      4,
      5,
      -4
    ],
    "io_out": [
      8,
      -4,
      4,
      8,
      10,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, 5, 2, -3, 4, -3]\noutput : list = [0, 5, 2]",
    "output": "generated_output : list = take([0, 5, 2, -3, 4, -3],3)",
    "io_inp": [
      0,
      5,
      2,
      -3,
      4,
      -3
    ],
    "io_out": [
      0,
      5,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, 4, 1, -1, -4, -2]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(take([0, 4, 1, -1, -4, -2],1),-4),3),-1))",
    "io_inp": [
      0,
      4,
      1,
      -1,
      -4,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(take(input,1),-4),3),-1))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([3, -3])",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, 4, -1]\noutput : list = [10, 7, -8, -17]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(mul_n([-4, 5, 4, -1],3)),4)),-5)",
    "io_inp": [
      -4,
      5,
      4,
      -1
    ],
    "io_out": [
      10,
      7,
      -8,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(mul_n(input,3)),4)),-5)"
  },
  {
    "input": "input : list = [-3, -1, -1, -2]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(take([-3, -1, -1, -2],1)))))",
    "io_inp": [
      -3,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(mul_n([-1, 1],5))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(reverse([2, 3]),9)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [2, -3, 3, 2]\noutput : list = [-4, 6, -6, -4]",
    "output": "generated_output : list = mul_n([2, -3, 3, 2],-2)",
    "io_inp": [
      2,
      -3,
      3,
      2
    ],
    "io_out": [
      -4,
      6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 1, -4, 1, 1]\noutput : list = [-10, -5, 20, -5, -5]",
    "output": "generated_output : list = mul_n([2, 1, -4, 1, 1],-5)",
    "io_inp": [
      2,
      1,
      -4,
      1,
      1
    ],
    "io_out": [
      -10,
      -5,
      20,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -5, -2, -4]\noutput : list = [4, 8, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(drop([-3, -5, -2, -4],1),22),-2)),43)",
    "io_inp": [
      -3,
      -5,
      -2,
      -4
    ],
    "io_out": [
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(drop(input,1),22),-2)),43)"
  },
  {
    "input": "input : list = [-3, -2, 0, 5, 4, 4]\noutput : list = [-2, 0, 5, 4, 4]",
    "output": "generated_output : list = drop([-3, -2, 0, 5, 4, 4],1)",
    "io_inp": [
      -3,
      -2,
      0,
      5,
      4,
      4
    ],
    "io_out": [
      -2,
      0,
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 2, -3, 0]\noutput : list = [-28, -88, 12, 32]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(mul_n([3, 2, -3, 0],5),2),-5),4))",
    "io_inp": [
      3,
      2,
      -3,
      0
    ],
    "io_out": [
      -28,
      -88,
      12,
      32
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(mul_n(input,5),2),-5),4))"
  },
  {
    "input": "input : list = [4, -1, 5, -2, 4]\noutput : list = [-13, -10, -10, 5, 8]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(reverse([4, -1, 5, -2, 4]),-3))),-2)",
    "io_inp": [
      4,
      -1,
      5,
      -2,
      4
    ],
    "io_out": [
      -13,
      -10,
      -10,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(reverse(input),-3))),-2)"
  },
  {
    "input": "input : list = [5, 3, -4, -5, -4]\noutput : list = [7, 5, -2, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(reverse([5, 3, -4, -5, -4])),-2)))",
    "io_inp": [
      5,
      3,
      -4,
      -5,
      -4
    ],
    "io_out": [
      7,
      5,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [-2, -4, -4, 4, -4]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(take([-2, -4, -4, 4, -4],2),-5))),-2)",
    "io_inp": [
      -2,
      -4,
      -4,
      4,
      -4
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(take(input,2),-5))),-2)"
  },
  {
    "input": "input : list = [2, -2, 4, -5, 2, 4]\noutput : list = [-15, -6, 6, 6, 12, 12]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(sort_asc([2, -2, 4, -5, 2, 4])),18)),3)",
    "io_inp": [
      2,
      -2,
      4,
      -5,
      2,
      4
    ],
    "io_out": [
      -15,
      -6,
      6,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(sort_asc(input)),18)),3)"
  },
  {
    "input": "input : list = [-4, -2, 0, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(reverse(take(take([-4, -2, 0, -2],2),20)))",
    "io_inp": [
      -4,
      -2,
      0,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(input,2),20)))"
  },
  {
    "input": "input : list = [-5, 4, -5, 1, 5]\noutput : list = [9, 9, -15, -27, -31]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(add_n([-5, 4, -5, 1, 5],3),-4),4),5))",
    "io_inp": [
      -5,
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      9,
      9,
      -15,
      -27,
      -31
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(add_n(input,3),-4),4),5))"
  },
  {
    "input": "input : list = [0, -5, 0, 2, -3]\noutput : list = [0, 10, 0, -4, 6]",
    "output": "generated_output : list = mul_n([0, -5, 0, 2, -3],-2)",
    "io_inp": [
      0,
      -5,
      0,
      2,
      -3
    ],
    "io_out": [
      0,
      10,
      0,
      -4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, -4, -5]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop([2, -4, -5],1),-3))))",
    "io_inp": [
      2,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [-1, 1, -4, 0, -1, 3]\noutput : list = [5, 4, 3, 0]",
    "output": "generated_output : list = sort_des(take(take(sub_n(take([-1, 1, -4, 0, -1, 3],4),-4),8),8))",
    "io_inp": [
      -1,
      1,
      -4,
      0,
      -1,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(take(input,4),-4),8),8))"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [8, 0, 0]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(reverse([-3, -3, 5]),-3))),40)",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(reverse(input),-3))),40)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(sub_n([-1, 5],2),-5),-4)),-4)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(sub_n(input,2),-5),-4)),-4)"
  },
  {
    "input": "input : list = [0, 0, 1, -5, 2]\noutput : list = [7, 7, 8, 2, 9]",
    "output": "generated_output : list = mul_n(add_n(add_n([0, 0, 1, -5, 2],4),3),1)",
    "io_inp": [
      0,
      0,
      1,
      -5,
      2
    ],
    "io_out": [
      7,
      7,
      8,
      2,
      9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,4),3),1)"
  },
  {
    "input": "input : list = [4, 1, -4, -5, 3]\noutput : list = [16, 13, 7, -8, -11]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(mul_n([4, 1, -4, -5, 3],3)),25)),4)",
    "io_inp": [
      4,
      1,
      -4,
      -5,
      3
    ],
    "io_out": [
      16,
      13,
      7,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(mul_n(input,3)),25)),4)"
  },
  {
    "input": "input : list = [0, 5, -4, 2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = take(mul_n(take(reverse(drop([0, 5, -4, 2],2)),4),-1),44)",
    "io_inp": [
      0,
      5,
      -4,
      2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(drop(input,2)),4),-1),44)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des([4, -3]))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [2, -2, -2, 4, -4]\noutput : list = [0, 8, 2, 2, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(add_n([2, -2, -2, 4, -4],4),3),2),1))",
    "io_inp": [
      2,
      -2,
      -2,
      4,
      -4
    ],
    "io_out": [
      0,
      8,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(add_n(input,4),3),2),1))"
  },
  {
    "input": "input : list = [2, 2, 2, -2]\noutput : list = [2, 2, 2, -2]",
    "output": "generated_output : list = reverse(sort_asc([2, 2, 2, -2]))",
    "io_inp": [
      2,
      2,
      2,
      -2
    ],
    "io_out": [
      2,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 5, -5, 0, -4]\noutput : list = [4, 5, -5, 0, -4]",
    "output": "generated_output : list = add_n(sub_n([4, 5, -5, 0, -4],1),1)",
    "io_inp": [
      4,
      5,
      -5,
      0,
      -4
    ],
    "io_out": [
      4,
      5,
      -5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n([5, -3],3)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, -2, -2, 0]\noutput : list = [-3, -3, -1, -1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_asc([0, -2, -2, 0]),-1))))",
    "io_inp": [
      0,
      -2,
      -2,
      0
    ],
    "io_out": [
      -3,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [-1, 5, 4]\noutput : list = [-24, -6, -9]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(add_n([-1, 5, 4],-5),15),-3),-5),3)",
    "io_inp": [
      -1,
      5,
      4
    ],
    "io_out": [
      -24,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(add_n(input,-5),15),-3),-5),3)"
  },
  {
    "input": "input : list = [-3, 4, 2, -1, -4]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take(sort_des(take(take([-3, 4, 2, -1, -4],2),1)),17),1)",
    "io_inp": [
      -3,
      4,
      2,
      -1,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(take(input,2),1)),17),1)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([1, 2, -3],-3)))",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [1, -3, 2, 3, 3, -5]\noutput : list = [-30, 10, 10]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(drop([1, -3, 2, 3, 3, -5],3),1),21),5))",
    "io_inp": [
      1,
      -3,
      2,
      3,
      3,
      -5
    ],
    "io_out": [
      -30,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(drop(input,3),1),21),5))"
  },
  {
    "input": "input : list = [-3, -4, -3, -2, -2, 4]\noutput : list = [-8, -9, -8, -7, -7, -1]",
    "output": "generated_output : list = take(add_n([-3, -4, -3, -2, -2, 4],-5),11)",
    "io_inp": [
      -3,
      -4,
      -3,
      -2,
      -2,
      4
    ],
    "io_out": [
      -8,
      -9,
      -8,
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),11)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_des([-4, -4])),2)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),2)"
  },
  {
    "input": "input : list = [3, -3, 2, -5, -2]\noutput : list = [16, 15, 11, 10, 8]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(add_n([3, -3, 2, -5, -2],2),-2),-4),-5))",
    "io_inp": [
      3,
      -3,
      2,
      -5,
      -2
    ],
    "io_out": [
      16,
      15,
      11,
      10,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(add_n(input,2),-2),-4),-5))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sub_n([-3, 1],2),1)),-1))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sub_n(input,2),1)),-1))"
  },
  {
    "input": "input : list = [-4, 4, 5, 3, 4, -2]\noutput : list = [-10, -9, -9, -8, -3, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(mul_n([-4, 4, 5, 3, 4, -2],-1)))),5)",
    "io_inp": [
      -4,
      4,
      5,
      3,
      4,
      -2
    ],
    "io_out": [
      -10,
      -9,
      -9,
      -8,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(mul_n(input,-1)))),5)"
  },
  {
    "input": "input : list = [3, 4, 5, -2, 1]\noutput : list = [-45, 15, 55, 75, 95]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_des([3, 4, 5, -2, 1])),5),4),-5)",
    "io_inp": [
      3,
      4,
      5,
      -2,
      1
    ],
    "io_out": [
      -45,
      15,
      55,
      75,
      95
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_des(input)),5),4),-5)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [-4, -4, 4]",
    "output": "generated_output : list = sort_asc(mul_n([1, -1, 1],-4))",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      -4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [5, 4, 1, -3]\noutput : list = [1, 0, -3, -7]",
    "output": "generated_output : list = sort_des(add_n([5, 4, 1, -3],-4))",
    "io_inp": [
      5,
      4,
      1,
      -3
    ],
    "io_out": [
      1,
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 5, -3, 5]\noutput : list = [9, 9, 2, 1]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(add_n([-2, 5, -3, 5],4)),27)))",
    "io_inp": [
      -2,
      5,
      -3,
      5
    ],
    "io_out": [
      9,
      9,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(add_n(input,4)),27)))"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [-12, -8, -16]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(mul_n([-2, 0, -4],2))),4),4)",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      -12,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(mul_n(input,2))),4),4)"
  },
  {
    "input": "input : list = [-2, 2, 5, -2, 2, 0]\noutput : list = [-4, -2, -6, 1]",
    "output": "generated_output : list = reverse(drop(add_n([-2, 2, 5, -2, 2, 0],-4),2))",
    "io_inp": [
      -2,
      2,
      5,
      -2,
      2,
      0
    ],
    "io_out": [
      -4,
      -2,
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(input,-4),2))"
  },
  {
    "input": "input : list = [3, -3, 4]\noutput : list = [6, 12, 13]",
    "output": "generated_output : list = add_n(add_n(sort_asc([3, -3, 4]),5),4)",
    "io_inp": [
      3,
      -3,
      4
    ],
    "io_out": [
      6,
      12,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),5),4)"
  },
  {
    "input": "input : list = [4, 5, 2, 5, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_asc([4, 5, 2, 5, -2]),2))))",
    "io_inp": [
      4,
      5,
      2,
      5,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-8, 1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_asc([-5, 4]))),3))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [5, 2, -4, 1]\noutput : list = [20, 14, 12, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n([5, 2, -4, 1],-5))),2)",
    "io_inp": [
      5,
      2,
      -4,
      1
    ],
    "io_out": [
      20,
      14,
      12,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(input,-5))),2)"
  },
  {
    "input": "input : list = [2, 3, -5, -3]\noutput : list = [-5, -7, -12, -13]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(sub_n([2, 3, -5, -3],-5),-1),5)))",
    "io_inp": [
      2,
      3,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(sub_n(input,-5),-1),5)))"
  },
  {
    "input": "input : list = [-2, -2, -4, -5]\noutput : list = [-10, -8, -4, -4]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc([-2, -2, -4, -5])),-1),-2)",
    "io_inp": [
      -2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(input)),-1),-2)"
  },
  {
    "input": "input : list = [1, 2, 0, 5, -5]\noutput : list = [-10, 20, 5, 11]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(drop([1, 2, 0, 5, -5],1)),3),4),1)",
    "io_inp": [
      1,
      2,
      0,
      5,
      -5
    ],
    "io_out": [
      -10,
      20,
      5,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(drop(input,1)),3),4),1)"
  },
  {
    "input": "input : list = [5, 0, -2, 0, 0]\noutput : list = [-9, -9, -11, -9, -4]",
    "output": "generated_output : list = reverse(add_n(add_n([5, 0, -2, 0, 0],-5),-4))",
    "io_inp": [
      5,
      0,
      -2,
      0,
      0
    ],
    "io_out": [
      -9,
      -9,
      -11,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-5),-4))"
  },
  {
    "input": "input : list = [5, -5, -2, 2, -1, 1]\noutput : list = [-6, 3, 6, 12, 15, 24]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(sort_des([5, -5, -2, 2, -1, 1]),-3),-1),3),55)",
    "io_inp": [
      5,
      -5,
      -2,
      2,
      -1,
      1
    ],
    "io_out": [
      -6,
      3,
      6,
      12,
      15,
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(sort_des(input),-3),-1),3),55)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-100, -100]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(mul_n([-5, -5],-5),9),-4)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -100,
      -100
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(mul_n(input,-5),9),-4)))"
  },
  {
    "input": "input : list = [-2, -1, 1, 4, 0]\noutput : list = [0, 4, 1, -1, -2]",
    "output": "generated_output : list = reverse([-2, -1, 1, 4, 0])",
    "io_inp": [
      -2,
      -1,
      1,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = take(take(sort_asc([1, 4, 5]),15),18)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),15),18)"
  },
  {
    "input": "input : list = [1, 4, -5]\noutput : list = [-7, 2, 20]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_asc([1, 4, -5]),1),-3)),-5)",
    "io_inp": [
      1,
      4,
      -5
    ],
    "io_out": [
      -7,
      2,
      20
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_asc(input),1),-3)),-5)"
  },
  {
    "input": "input : list = [2, -3, -3, -5, 1, 2]\noutput : list = [-9, -4]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(take([2, -3, -3, -5, 1, 2],2))),-2),-4)",
    "io_inp": [
      2,
      -3,
      -3,
      -5,
      1,
      2
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(take(input,2))),-2),-4)"
  },
  {
    "input": "input : list = [2, 0, -4]\noutput : list = [-45, -35, -15]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(sub_n([2, 0, -4],-2),-2),3),31),-5)",
    "io_inp": [
      2,
      0,
      -4
    ],
    "io_out": [
      -45,
      -35,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(sub_n(input,-2),-2),3),31),-5)"
  },
  {
    "input": "input : list = [-1, -1, 0]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(reverse([-1, -1, 0]))),1))",
    "io_inp": [
      -1,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [0, 4, 4, 3]\noutput : list = [12, 12, 10, 4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([0, 4, 4, 3],-2),2))",
    "io_inp": [
      0,
      4,
      4,
      3
    ],
    "io_out": [
      12,
      12,
      10,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,-2),2))"
  },
  {
    "input": "input : list = [-3, 5, -3, 2, -4, 3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(sort_asc(mul_n([-3, 5, -3, 2, -4, 3],1)),2)",
    "io_inp": [
      -3,
      5,
      -3,
      2,
      -4,
      3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,1)),2)"
  },
  {
    "input": "input : list = [5, -2, -5, -3]\noutput : list = [5, -2]",
    "output": "generated_output : list = take([5, -2, -5, -3],2)",
    "io_inp": [
      5,
      -2,
      -5,
      -3
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = sort_des(take(mul_n(take(sort_des([-3, -2, 1]),13),1),36))",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(sort_des(input),13),1),36))"
  },
  {
    "input": "input : list = [-5, -4, -3, 5]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sub_n(take([-5, -4, -3, 5],1),-5),2)",
    "io_inp": [
      -5,
      -4,
      -3,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),-5),2)"
  },
  {
    "input": "input : list = [3, -1, -3, 2, 0]\noutput : list = [3, 2, 0, -1, -3]",
    "output": "generated_output : list = take(sort_des(take(sort_des(sort_asc([3, -1, -3, 2, 0])),21)),19)",
    "io_inp": [
      3,
      -1,
      -3,
      2,
      0
    ],
    "io_out": [
      3,
      2,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(sort_asc(input)),21)),19)"
  },
  {
    "input": "input : list = [3, -3, 4, -3]\noutput : list = [-18, -16, -4, -4]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(add_n([3, -3, 4, -3],5),-2),20)))",
    "io_inp": [
      3,
      -3,
      4,
      -3
    ],
    "io_out": [
      -18,
      -16,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(add_n(input,5),-2),20)))"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [5, 5, 9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(reverse([1, 1, 5])),5)),1)",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      5,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(reverse(input)),5)),1)"
  },
  {
    "input": "input : list = [-5, 0, -5, 1, 5, 4]\noutput : list = [-5, -3, 3, 5, 15, 15]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_asc([-5, 0, -5, 1, 5, 4]),-2),18)),-5)",
    "io_inp": [
      -5,
      0,
      -5,
      1,
      5,
      4
    ],
    "io_out": [
      -5,
      -3,
      3,
      5,
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_asc(input),-2),18)),-5)"
  },
  {
    "input": "input : list = [-1, -5, 1, -3, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = mul_n(sub_n(take([-1, -5, 1, -3, -1],2),-1),1)",
    "io_inp": [
      -1,
      -5,
      1,
      -3,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,2),-1),1)"
  },
  {
    "input": "input : list = [1, -4, 1, 2, -3]\noutput : list = [2, 1, -3, -3, -4]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(sort_asc([1, -4, 1, 2, -3]),2)),-1))",
    "io_inp": [
      1,
      -4,
      1,
      2,
      -3
    ],
    "io_out": [
      2,
      1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(sort_asc(input),2)),-1))"
  },
  {
    "input": "input : list = [5, 0, -1, -2, -5]\noutput : list = [-5, -2, -1, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, -1, -2, -5])",
    "io_inp": [
      5,
      0,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-2, -11]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n(mul_n([-1, -4],1),3),1)),2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -2,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(mul_n(input,1),3),1)),2)"
  },
  {
    "input": "input : list = [-3, -5, -4, 1, -1]\noutput : list = [-5, -4, -3, -1, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-3, -5, -4, 1, -1])),21)",
    "io_inp": [
      -3,
      -5,
      -4,
      1,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),21)"
  },
  {
    "input": "input : list = [5, -3, 0, 5, -1, 4]\noutput : list = [-1, 0, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(drop([5, -3, 0, 5, -1, 4],2)))),52)",
    "io_inp": [
      5,
      -3,
      0,
      5,
      -1,
      4
    ],
    "io_out": [
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(drop(input,2)))),52)"
  },
  {
    "input": "input : list = [-4, 3, -4, -5]\noutput : list = [32, 4, 32, 36]",
    "output": "generated_output : list = mul_n(sub_n([-4, 3, -4, -5],4),-4)",
    "io_inp": [
      -4,
      3,
      -4,
      -5
    ],
    "io_out": [
      32,
      4,
      32,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,4),-4)"
  },
  {
    "input": "input : list = [1, -2, 3, 3]\noutput : list = [1]",
    "output": "generated_output : list = take(take([1, -2, 3, 3],1),7)",
    "io_inp": [
      1,
      -2,
      3,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(input,1),7)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [6, 1]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(reverse([4, -1])),1),1),4)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(reverse(input)),1),1),4)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-2, -1]),4))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),4))"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-11, -10]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(add_n([-3, -2, 1],-5),2),-3)))",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -11,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(add_n(input,-5),2),-3)))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-59, 21]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(mul_n([-1, 3],-5),4)),1),40)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -59,
      21
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(mul_n(input,-5),4)),1),40)"
  },
  {
    "input": "input : list = [-2, -3, -1, 0, -2, 4]\noutput : list = [2, 3, 3, 4, 5, 9]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(reverse([-2, -3, -1, 0, -2, 4])),5)))",
    "io_inp": [
      -2,
      -3,
      -1,
      0,
      -2,
      4
    ],
    "io_out": [
      2,
      3,
      3,
      4,
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(reverse(input)),5)))"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [12]",
    "output": "generated_output : list = drop(add_n(add_n(add_n(drop([-4, 5, 5],1),2),1),4),1)",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(add_n(drop(input,1),2),1),4),1)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = mul_n([4, 5],1)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-20, -20]",
    "output": "generated_output : list = mul_n(reverse([-4, -4]),5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(add_n([-2, 1],2))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = drop([-1, 3, -2],1)",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-8, -9]",
    "output": "generated_output : list = add_n(reverse([-5, -4]),-4)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-1, 5, 3, 3, -1, -5]\noutput : list = [11, 9, 9, 5, 5, 1]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(add_n([-1, 5, 3, 3, -1, -5],5))),1))",
    "io_inp": [
      -1,
      5,
      3,
      3,
      -1,
      -5
    ],
    "io_out": [
      11,
      9,
      9,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(add_n(input,5))),1))"
  },
  {
    "input": "input : list = [-3, -5, -1, 1, 3]\noutput : list = [18, 12, 6, 0, -6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_asc([-3, -5, -1, 1, 3]),-3),3),-1),1)",
    "io_inp": [
      -3,
      -5,
      -1,
      1,
      3
    ],
    "io_out": [
      18,
      12,
      6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_asc(input),-3),3),-1),1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(mul_n(mul_n(take(sort_asc([-2, -1]),3),1),1))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(take(sort_asc(input),3),1),1))"
  },
  {
    "input": "input : list = [5, -2, 2, 5, -2]\noutput : list = [-4, -4, 0, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(sort_asc([5, -2, 2, 5, -2]),-2))))",
    "io_inp": [
      5,
      -2,
      2,
      5,
      -2
    ],
    "io_out": [
      -4,
      -4,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [0, 1, -2, -3, 0]\noutput : list = [0, -1, -1, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(sub_n([0, 1, -2, -3, 0],-4),-1),-1)),-5)",
    "io_inp": [
      0,
      1,
      -2,
      -3,
      0
    ],
    "io_out": [
      0,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(sub_n(input,-4),-1),-1)),-5)"
  },
  {
    "input": "input : list = [-5, 0, 4, -2]\noutput : list = [25, 0]",
    "output": "generated_output : list = mul_n(take([-5, 0, 4, -2],2),-5)",
    "io_inp": [
      -5,
      0,
      4,
      -2
    ],
    "io_out": [
      25,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-5)"
  },
  {
    "input": "input : list = [1, -4, 0, 0]\noutput : list = [-12, 0, 0, 3]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse([1, -4, 0, 0])),3))",
    "io_inp": [
      1,
      -4,
      0,
      0
    ],
    "io_out": [
      -12,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(input)),3))"
  },
  {
    "input": "input : list = [-4, 1, 4, 1, -4, -1]\noutput : list = [10, 7, 7, 5, 2, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(add_n([-4, 1, 4, 1, -4, -1],2),-5))),1)",
    "io_inp": [
      -4,
      1,
      4,
      1,
      -4,
      -1
    ],
    "io_out": [
      10,
      7,
      7,
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(add_n(input,2),-5))),1)"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-4]",
    "output": "generated_output : list = take(take([-4, -3, -3],1),8)",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(input,1),8)"
  },
  {
    "input": "input : list = [1, -5, 4, 0]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(reverse([1, -5, 4, 0])),-3),2))",
    "io_inp": [
      1,
      -5,
      4,
      0
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(reverse(input)),-3),2))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_asc([1, 4]))),-2))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [5, -3, -3, -3]\noutput : list = [-8, -8, -8]",
    "output": "generated_output : list = sub_n(reverse(sort_des(drop([5, -3, -3, -3],1))),5)",
    "io_inp": [
      5,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(drop(input,1))),5)"
  },
  {
    "input": "input : list = [3, -1, 0]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse([3, -1, 0])),-3)",
    "io_inp": [
      3,
      -1,
      0
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [3, -4, -1, 5, -3, 2]\noutput : list = [-8, -7, -5, -2, -1, 1]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(sub_n([3, -4, -1, 5, -3, 2],3)),32),40),1)",
    "io_inp": [
      3,
      -4,
      -1,
      5,
      -3,
      2
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(sub_n(input,3)),32),40),1)"
  },
  {
    "input": "input : list = [-4, 5, 1, -3, 1, -5]\noutput : list = [-75, -60, -45, 15, 15, 75]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take(reverse([-4, 5, 1, -3, 1, -5]),13)),-3),-5)",
    "io_inp": [
      -4,
      5,
      1,
      -3,
      1,
      -5
    ],
    "io_out": [
      -75,
      -60,
      -45,
      15,
      15,
      75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(reverse(input),13)),-3),-5)"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [1, 5, 5]",
    "output": "generated_output : list = sub_n([-1, 3, 3],-2)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 4, -2, 4, 3]\noutput : list = [-4, 1, -5, 1, 0]",
    "output": "generated_output : list = sub_n(sub_n([-1, 4, -2, 4, 3],2),1)",
    "io_inp": [
      -1,
      4,
      -2,
      4,
      3
    ],
    "io_out": [
      -4,
      1,
      -5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),1)"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [-8, -6]",
    "output": "generated_output : list = reverse(reverse(add_n(take(sort_asc([5, -4, -2]),2),-4)))",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(sort_asc(input),2),-4)))"
  },
  {
    "input": "input : list = [2, -4, -4, 0]\noutput : list = [6, 0, 0, 4]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(sub_n([2, -4, -4, 0],-2),-3)),1))",
    "io_inp": [
      2,
      -4,
      -4,
      0
    ],
    "io_out": [
      6,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(sub_n(input,-2),-3)),1))"
  },
  {
    "input": "input : list = [2, -1, 2, -5, 4, 3]\noutput : list = [38, -22, 38, -102]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(mul_n([2, -1, 2, -5, 4, 3],4),5),4),3),1)",
    "io_inp": [
      2,
      -1,
      2,
      -5,
      4,
      3
    ],
    "io_out": [
      38,
      -22,
      38,
      -102
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(mul_n(input,4),5),4),3),1)"
  },
  {
    "input": "input : list = [-2, 0, -3, 3, 2, -4]\noutput : list = [-5, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(drop([-2, 0, -3, 3, 2, -4],3),1))))",
    "io_inp": [
      -2,
      0,
      -3,
      3,
      2,
      -4
    ],
    "io_out": [
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(drop(input,3),1))))"
  },
  {
    "input": "input : list = [2, -3, -5, 3]\noutput : list = [4, 3, -2, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(reverse([2, -3, -5, 3]))),-4),-5)",
    "io_inp": [
      2,
      -3,
      -5,
      3
    ],
    "io_out": [
      4,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(reverse(input))),-4),-5)"
  },
  {
    "input": "input : list = [-4, 3, -3, 0]\noutput : list = [5, 2, -1, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(reverse([-4, 3, -3, 0]))),-2))",
    "io_inp": [
      -4,
      3,
      -3,
      0
    ],
    "io_out": [
      5,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(reverse(input))),-2))"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [0, 40, -80]",
    "output": "generated_output : list = mul_n(mul_n(add_n([1, -1, 5],-1),-5),4)",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      0,
      40,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-1),-5),4)"
  },
  {
    "input": "input : list = [5, -2, 3, 5, -4, -3]\noutput : list = [2, -6, -7]",
    "output": "generated_output : list = take(take(sort_des(add_n(drop([5, -2, 3, 5, -4, -3],3),-3)),10),15)",
    "io_inp": [
      5,
      -2,
      3,
      5,
      -4,
      -3
    ],
    "io_out": [
      2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(drop(input,3),-3)),10),15)"
  },
  {
    "input": "input : list = [-5, 0, -1, 5, 3]\noutput : list = [-8, 0, 2, 8, 12]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(add_n([-5, 0, -1, 5, 3],1),7),21),2))",
    "io_inp": [
      -5,
      0,
      -1,
      5,
      3
    ],
    "io_out": [
      -8,
      0,
      2,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(add_n(input,1),7),21),2))"
  },
  {
    "input": "input : list = [-3, -2, 3, -1, -2, -1]\noutput : list = [-10, -8, -10, -18, -8, -6]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(sub_n([-3, -2, 3, -1, -2, -1],-4)),-2),39),4)",
    "io_inp": [
      -3,
      -2,
      3,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -10,
      -18,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(sub_n(input,-4)),-2),39),4)"
  },
  {
    "input": "input : list = [-1, 3, -1, -1, -5, 1]\noutput : list = [3, 1, -1, -1, -1, -5]",
    "output": "generated_output : list = sort_des([-1, 3, -1, -1, -5, 1])",
    "io_inp": [
      -1,
      3,
      -1,
      -1,
      -5,
      1
    ],
    "io_out": [
      3,
      1,
      -1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, -1, -4]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = take(add_n(sort_des(take(sort_des([1, -2, -1, -4]),3)),3),48)",
    "io_inp": [
      1,
      -2,
      -1,
      -4
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(sort_des(input),3)),3),48)"
  },
  {
    "input": "input : list = [0, 0, 3, -2, -5]\noutput : list = [-3, 0, 2, 2]",
    "output": "generated_output : list = take(take(sub_n(sort_asc(add_n([0, 0, 3, -2, -5],3)),1),17),4)",
    "io_inp": [
      0,
      0,
      3,
      -2,
      -5
    ],
    "io_out": [
      -3,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(add_n(input,3)),1),17),4)"
  },
  {
    "input": "input : list = [5, -2, -1, 4, -4, 0]\noutput : list = [1, 3, 4, 5, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n([5, -2, -1, 4, -4, 0],5))",
    "io_inp": [
      5,
      -2,
      -1,
      4,
      -4,
      0
    ],
    "io_out": [
      1,
      3,
      4,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [-5, 4, -2, 2]\noutput : list = [-20, -10, 10, 25]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(reverse([-5, 4, -2, 2]),-5))),10)",
    "io_inp": [
      -5,
      4,
      -2,
      2
    ],
    "io_out": [
      -20,
      -10,
      10,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(reverse(input),-5))),10)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [5, 3]",
    "output": "generated_output : list = reverse(sort_asc(add_n([-1, 1],4)))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,4)))"
  },
  {
    "input": "input : list = [2, 3, -2, -4]\noutput : list = [0, 2, 7, 6]",
    "output": "generated_output : list = reverse(add_n([2, 3, -2, -4],4))",
    "io_inp": [
      2,
      3,
      -2,
      -4
    ],
    "io_out": [
      0,
      2,
      7,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [5, -2, 5, -3, -2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(mul_n(drop(sub_n(add_n([5, -2, 5, -3, -2],-4),-5),3),-1))",
    "io_inp": [
      5,
      -2,
      5,
      -3,
      -2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(sub_n(add_n(input,-4),-5),3),-1))"
  },
  {
    "input": "input : list = [-1, -2, -3, 4]\noutput : list = [2, 1, 0, 7]",
    "output": "generated_output : list = take(take(sub_n([-1, -2, -3, 4],-3),4),17)",
    "io_inp": [
      -1,
      -2,
      -3,
      4
    ],
    "io_out": [
      2,
      1,
      0,
      7
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,-3),4),17)"
  },
  {
    "input": "input : list = [3, -3, 2, 5]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(take([3, -3, 2, 5],1),-2))))",
    "io_inp": [
      3,
      -3,
      2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(take(input,1),-2))))"
  },
  {
    "input": "input : list = [3, 3, -5, -3]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(take([3, 3, -5, -3],2),1),27)),3)",
    "io_inp": [
      3,
      3,
      -5,
      -3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(take(input,2),1),27)),3)"
  },
  {
    "input": "input : list = [3, 0, -4]\noutput : list = [3, 0, -4]",
    "output": "generated_output : list = sort_des([3, 0, -4])",
    "io_inp": [
      3,
      0,
      -4
    ],
    "io_out": [
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, -3, -5, 4]\noutput : list = [-5, 3, 3, 5, -4]",
    "output": "generated_output : list = mul_n([5, -3, -3, -5, 4],-1)",
    "io_inp": [
      5,
      -3,
      -3,
      -5,
      4
    ],
    "io_out": [
      -5,
      3,
      3,
      5,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -3, -5, 0]\noutput : list = [10, 8, 6, 11]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(add_n([-1, -3, -5, 0],2),4),4),-4),-5)",
    "io_inp": [
      -1,
      -3,
      -5,
      0
    ],
    "io_out": [
      10,
      8,
      6,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(add_n(input,2),4),4),-4),-5)"
  },
  {
    "input": "input : list = [-3, 0, 4, 1]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take([-3, 0, 4, 1],2)",
    "io_inp": [
      -3,
      0,
      4,
      1
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 5, 1, 2, 0, 4]\noutput : list = [-2, 4, 0, 1, -1, 3]",
    "output": "generated_output : list = add_n([-1, 5, 1, 2, 0, 4],-1)",
    "io_inp": [
      -1,
      5,
      1,
      2,
      0,
      4
    ],
    "io_out": [
      -2,
      4,
      0,
      1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sort_asc([2, -5])))))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(sort_des([-5, -1])),14),1))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(sort_des(input)),14),1))"
  },
  {
    "input": "input : list = [5, 1, -3, -2, -5, -1]\noutput : list = [15, 3, -3, -6, -9, -15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(reverse([5, 1, -3, -2, -5, -1])),3)))",
    "io_inp": [
      5,
      1,
      -3,
      -2,
      -5,
      -1
    ],
    "io_out": [
      15,
      3,
      -3,
      -6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(reverse(input)),3)))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [10, -15]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(mul_n([-1, 4],-5)))),5)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      10,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(mul_n(input,-5)))),5)"
  },
  {
    "input": "input : list = [-1, 2, -4, -4]\noutput : list = [-2, 4, -8, -8]",
    "output": "generated_output : list = mul_n([-1, 2, -4, -4],2)",
    "io_inp": [
      -1,
      2,
      -4,
      -4
    ],
    "io_out": [
      -2,
      4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-9, -2]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(mul_n([2, -5],1))),12),-4)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(mul_n(input,1))),12),-4)"
  },
  {
    "input": "input : list = [4, 4, 5, -4, 4]\noutput : list = [-8, -8]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(take([4, 4, 5, -4, 4],2),-2),29)),40)",
    "io_inp": [
      4,
      4,
      5,
      -4,
      4
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(take(input,2),-2),29)),40)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [2, -3, -2]",
    "output": "generated_output : list = sub_n([3, -2, -1],1)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-54, -18]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(reverse([-4, 2])),-5),-3),-2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -54,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(reverse(input)),-5),-3),-2)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(sort_asc([-3, 0, -5]))),4),46)",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(sort_asc(input))),4),46)"
  },
  {
    "input": "input : list = [-4, -3, -3, 4, 1, 1]\noutput : list = [-9, -7, -7, 1, 1, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(mul_n([-4, -3, -3, 4, 1, 1],2))),1))",
    "io_inp": [
      -4,
      -3,
      -3,
      4,
      1,
      1
    ],
    "io_out": [
      -9,
      -7,
      -7,
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(mul_n(input,2))),1))"
  },
  {
    "input": "input : list = [-5, 3, 5, -2, -4, -5]\noutput : list = [-17, -17, -16, -14, -9, -7]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(add_n([-5, 3, 5, -2, -4, -5],-3)),-5),4))",
    "io_inp": [
      -5,
      3,
      5,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -17,
      -17,
      -16,
      -14,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(add_n(input,-3)),-5),4))"
  },
  {
    "input": "input : list = [-5, 3, 1, 1, -3]\noutput : list = [6, 4, 4, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n([-5, 3, 1, 1, -3],5),-2),4))",
    "io_inp": [
      -5,
      3,
      1,
      1,
      -3
    ],
    "io_out": [
      6,
      4,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(input,5),-2),4))"
  },
  {
    "input": "input : list = [-5, 4, 0, -1]\noutput : list = [-2, -10, -12, -20]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take(add_n([-5, 4, 0, -1],-3),15),-2),2))",
    "io_inp": [
      -5,
      4,
      0,
      -1
    ],
    "io_out": [
      -2,
      -10,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(add_n(input,-3),15),-2),2))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-65, 10]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-3, 0],-5),-2),-5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -65,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,-5),-2),-5)"
  },
  {
    "input": "input : list = [3, 1, -1, 2, -5]\noutput : list = [18, 30, 42, 24, 66]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(mul_n([3, 1, -1, 2, -5],-2),-5),2),-5),3)",
    "io_inp": [
      3,
      1,
      -1,
      2,
      -5
    ],
    "io_out": [
      18,
      30,
      42,
      24,
      66
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(mul_n(input,-2),-5),2),-5),3)"
  },
  {
    "input": "input : list = [-5, -1, 5, -3, 4, 2]\noutput : list = [5, 4, 2, -1, -3, -5]",
    "output": "generated_output : list = take(reverse(sort_asc([-5, -1, 5, -3, 4, 2])),10)",
    "io_inp": [
      -5,
      -1,
      5,
      -3,
      4,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),10)"
  },
  {
    "input": "input : list = [-1, -4, 3, -2, -1]\noutput : list = [-9, -7, -6, -6, -2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n([-1, -4, 3, -2, -1],-5))))",
    "io_inp": [
      -1,
      -4,
      3,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(input,-5))))"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [-5, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(sort_des([-1, -5, 1])))",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, -1, 0, -1, -4, -4]\noutput : list = [-6, -9, -9]",
    "output": "generated_output : list = reverse(sub_n(add_n(reverse(drop([-3, -1, 0, -1, -4, -4],3)),-3),2))",
    "io_inp": [
      -3,
      -1,
      0,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(reverse(drop(input,3)),-3),2))"
  },
  {
    "input": "input : list = [4, -3, 4]\noutput : list = [-6, -6, 8]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(sub_n([4, -3, 4],1)),-2)))",
    "io_inp": [
      4,
      -3,
      4
    ],
    "io_out": [
      -6,
      -6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(sub_n(input,1)),-2)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-160, 160]",
    "output": "generated_output : list = mul_n(take(mul_n(take(mul_n([-4, 4],-2),2),-5),19),4)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -160,
      160
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(mul_n(input,-2),2),-5),19),4)"
  },
  {
    "input": "input : list = [2, 0, -3, 4, 0, 4]\noutput : list = [-7, -7, 1, 9, 9, 21]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(mul_n([2, 0, -3, 4, 0, 4],-4)),-5),4))",
    "io_inp": [
      2,
      0,
      -3,
      4,
      0,
      4
    ],
    "io_out": [
      -7,
      -7,
      1,
      9,
      9,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(mul_n(input,-4)),-5),4))"
  },
  {
    "input": "input : list = [-4, 1, -2, 1]\noutput : list = [-6, -1, -4, -1]",
    "output": "generated_output : list = sub_n([-4, 1, -2, 1],2)",
    "io_inp": [
      -4,
      1,
      -2,
      1
    ],
    "io_out": [
      -6,
      -1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, -5, -3, -3, -1]\noutput : list = [-3, -8, -6, -6, -4]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(reverse([0, -5, -3, -3, -1]),-3),1),1))",
    "io_inp": [
      0,
      -5,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -8,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(reverse(input),-3),1),1))"
  },
  {
    "input": "input : list = [1, -4, 2, 3, -2]\noutput : list = [-4, -2, 1, 2, 3]",
    "output": "generated_output : list = sort_asc([1, -4, 2, 3, -2])",
    "io_inp": [
      1,
      -4,
      2,
      3,
      -2
    ],
    "io_out": [
      -4,
      -2,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [7, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(drop([2, -3, -5],1),-1)),-2))",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(drop(input,1),-1)),-2))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(mul_n([-5, 2],-1),1),5)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(mul_n(input,-1),1),5)))"
  },
  {
    "input": "input : list = [-5, 4, 4, 1]\noutput : list = [8, 8, 5, -1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(add_n([-5, 4, 4, 1],-1),11))),-5)",
    "io_inp": [
      -5,
      4,
      4,
      1
    ],
    "io_out": [
      8,
      8,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(add_n(input,-1),11))),-5)"
  },
  {
    "input": "input : list = [2, 3, 2, -3, 4]\noutput : list = [0, 1, 0]",
    "output": "generated_output : list = add_n(take([2, 3, 2, -3, 4],3),-2)",
    "io_inp": [
      2,
      3,
      2,
      -3,
      4
    ],
    "io_out": [
      0,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,3),-2)"
  },
  {
    "input": "input : list = [-5, 4, 1, 2, 0]\noutput : list = [-8, -6, -5, -4, 1]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(add_n(mul_n([-5, 4, 1, 2, 0],-1),1))),-5)",
    "io_inp": [
      -5,
      4,
      1,
      2,
      0
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(add_n(mul_n(input,-1),1))),-5)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc([-5, -2])",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, 0, -4, -4, -3]\noutput : list = [0, 0, -3, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 0, 0, -4, -4, -3])",
    "io_inp": [
      -5,
      0,
      0,
      -4,
      -4,
      -3
    ],
    "io_out": [
      0,
      0,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, 4, 1, -3]\noutput : list = [-40, -20, -15, -15, -5]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n([2, 2, 4, 1, -3],5),15)),5)",
    "io_inp": [
      2,
      2,
      4,
      1,
      -3
    ],
    "io_out": [
      -40,
      -20,
      -15,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(input,5),15)),5)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [5, 9]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(add_n([4, 0],1)),-4)))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(add_n(input,1)),-4)))"
  },
  {
    "input": "input : list = [2, -2, 4, 2, 3]\noutput : list = [-2, 2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([2, -2, 4, 2, 3])",
    "io_inp": [
      2,
      -2,
      4,
      2,
      3
    ],
    "io_out": [
      -2,
      2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -3, -2, 0, 3]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(drop(sort_asc(sort_asc(sub_n([2, 3, -3, -2, 0, 3],-1))),4))",
    "io_inp": [
      2,
      3,
      -3,
      -2,
      0,
      3
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_asc(sort_asc(sub_n(input,-1))),4))"
  },
  {
    "input": "input : list = [-3, -3, -4, 1, -2, -2]\noutput : list = [1, -2, -2]",
    "output": "generated_output : list = take(sort_des([-3, -3, -4, 1, -2, -2]),3)",
    "io_inp": [
      -3,
      -3,
      -4,
      1,
      -2,
      -2
    ],
    "io_out": [
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),3)"
  },
  {
    "input": "input : list = [-5, 1, 4, 0, -1, -2]\noutput : list = [35, -1, -19, 5, 11, 17]",
    "output": "generated_output : list = sub_n(take(mul_n(take(mul_n([-5, 1, 4, 0, -1, -2],-3),18),2),28),-5)",
    "io_inp": [
      -5,
      1,
      4,
      0,
      -1,
      -2
    ],
    "io_out": [
      35,
      -1,
      -19,
      5,
      11,
      17
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(mul_n(input,-3),18),2),28),-5)"
  },
  {
    "input": "input : list = [5, -4, 2, 1]\noutput : list = [-7, 2]",
    "output": "generated_output : list = sort_asc(sub_n(take([5, -4, 2, 1],2),3))",
    "io_inp": [
      5,
      -4,
      2,
      1
    ],
    "io_out": [
      -7,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(input,2),3))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(reverse([2, 5]))),-3))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-2, -5, 0, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = sort_asc(take([-2, -5, 0, -2],2))",
    "io_inp": [
      -2,
      -5,
      0,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-40, -40]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des([-4, -4]),-2),4)),4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des(input),-2),4)),4)"
  },
  {
    "input": "input : list = [-4, -2, 1]\noutput : list = [7, -5, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(mul_n([-4, -2, 1],4),3)),-2),4)",
    "io_inp": [
      -4,
      -2,
      1
    ],
    "io_out": [
      7,
      -5,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(mul_n(input,4),3)),-2),4)"
  },
  {
    "input": "input : list = [5, -3, 3, 2, -2, -3]\noutput : list = [22, 14, 10, -6, -10, -10]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n([5, -3, 3, 2, -2, -3],3),4),-5)),5)",
    "io_inp": [
      5,
      -3,
      3,
      2,
      -2,
      -3
    ],
    "io_out": [
      22,
      14,
      10,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(add_n(input,3),4),-5)),5)"
  },
  {
    "input": "input : list = [-5, 4, 2, 5]\noutput : list = [-14, -10, -16]",
    "output": "generated_output : list = mul_n(drop(sub_n([-5, 4, 2, 5],-3),1),-2)",
    "io_inp": [
      -5,
      4,
      2,
      5
    ],
    "io_out": [
      -14,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(input,-3),1),-2)"
  },
  {
    "input": "input : list = [5, 5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = drop([5, 5, 1],1)",
    "io_inp": [
      5,
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(sub_n([3, 3],-3),-1),-3),-1))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(sub_n(input,-3),-1),-3),-1))"
  },
  {
    "input": "input : list = [-1, 2, 4, 0, -5]\noutput : list = [15, 13, 11, 10, 6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(add_n([-1, 2, 4, 0, -5],4)),-5)),2)",
    "io_inp": [
      -1,
      2,
      4,
      0,
      -5
    ],
    "io_out": [
      15,
      13,
      11,
      10,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(add_n(input,4)),-5)),2)"
  },
  {
    "input": "input : list = [-5, 5, 0, 2]\noutput : list = [2, 0, 5, -5]",
    "output": "generated_output : list = reverse([-5, 5, 0, 2])",
    "io_inp": [
      -5,
      5,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 1, 4, -1, -4, -3]\noutput : list = [10, 25, 40, 15]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(take([-2, 1, 4, -1, -4, -3],4),-3),5),5),49)",
    "io_inp": [
      -2,
      1,
      4,
      -1,
      -4,
      -3
    ],
    "io_out": [
      10,
      25,
      40,
      15
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(take(input,4),-3),5),5),49)"
  },
  {
    "input": "input : list = [-5, -1, 0, 4, -1, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(take([-5, -1, 0, 4, -1, 2],2),-4)),-1))",
    "io_inp": [
      -5,
      -1,
      0,
      4,
      -1,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(take(input,2),-4)),-1))"
  },
  {
    "input": "input : list = [-4, 3, 3, 4, -2, 1]\noutput : list = [-2, 1, 3, 4]",
    "output": "generated_output : list = reverse(take(sort_des(take(drop([-4, 3, 3, 4, -2, 1],2),5)),5))",
    "io_inp": [
      -4,
      3,
      3,
      4,
      -2,
      1
    ],
    "io_out": [
      -2,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(drop(input,2),5)),5))"
  },
  {
    "input": "input : list = [-2, -4, 0, 1]\noutput : list = [-4, -8]",
    "output": "generated_output : list = mul_n(take([-2, -4, 0, 1],2),2)",
    "io_inp": [
      -2,
      -4,
      0,
      1
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),2)"
  },
  {
    "input": "input : list = [-3, -1, -3]\noutput : list = [-1, -3, -3]",
    "output": "generated_output : list = take(sort_des([-3, -1, -3]),14)",
    "io_inp": [
      -3,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),14)"
  },
  {
    "input": "input : list = [5, -1, -4, -2, -5, 4]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(take([5, -1, -4, -2, -5, 4],2),-1),5)),-4)",
    "io_inp": [
      5,
      -1,
      -4,
      -2,
      -5,
      4
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(take(input,2),-1),5)),-4)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(take([-3, -1, -1],1),-5),-5),5))",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(take(input,1),-5),-5),5))"
  },
  {
    "input": "input : list = [4, 1, 4, -2]\noutput : list = [8, 8, 5, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sub_n([4, 1, 4, -2],-2)),-2)))",
    "io_inp": [
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      8,
      8,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(sub_n(input,-2)),-2)))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [0, 2]",
    "output": "generated_output : list = add_n(reverse(reverse([-5, -3])),5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),5)"
  },
  {
    "input": "input : list = [1, 1, 2, 5, -2, 1]\noutput : list = [15, 6, 3]",
    "output": "generated_output : list = mul_n(sort_des(drop(sort_asc([1, 1, 2, 5, -2, 1]),3)),3)",
    "io_inp": [
      1,
      1,
      2,
      5,
      -2,
      1
    ],
    "io_out": [
      15,
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(sort_asc(input),3)),3)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(reverse([-2, -2]))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -2, 1]\noutput : list = [-22]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sub_n([4, -2, 1],-3),-4),21),1),-2)",
    "io_inp": [
      4,
      -2,
      1
    ],
    "io_out": [
      -22
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sub_n(input,-3),-4),21),1),-2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-11, -12]",
    "output": "generated_output : list = take(take(reverse(sub_n(sub_n([-5, -4],4),3)),33),22)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -11,
      -12
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(sub_n(input,4),3)),33),22)"
  },
  {
    "input": "input : list = [-5, 3, 1, -4, -3, -3]\noutput : list = [-60, -20, 60, 60, 80, 100]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(sort_asc([-5, 3, 1, -4, -3, -3])),-5),46),4)",
    "io_inp": [
      -5,
      3,
      1,
      -4,
      -3,
      -3
    ],
    "io_out": [
      -60,
      -20,
      60,
      60,
      80,
      100
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(sort_asc(input)),-5),46),4)"
  },
  {
    "input": "input : list = [-4, -5, 5, -5]\noutput : list = [10, 1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n([-4, -5, 5, -5],3))),-2)",
    "io_inp": [
      -4,
      -5,
      5,
      -5
    ],
    "io_out": [
      10,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(input,3))),-2)"
  },
  {
    "input": "input : list = [2, 5, -5, -5, -3, 2]\noutput : list = [3, -2, -4, -4, 6, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(sub_n([2, 5, -5, -5, -3, 2],2),-4),-3)),2)",
    "io_inp": [
      2,
      5,
      -5,
      -5,
      -3,
      2
    ],
    "io_out": [
      3,
      -2,
      -4,
      -4,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(sub_n(input,2),-4),-3)),2)"
  },
  {
    "input": "input : list = [-3, -2, 0, 1, 2, -3]\noutput : list = [8, 3]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(drop([-3, -2, 0, 1, 2, -3],4),-3),-3),4),2)",
    "io_inp": [
      -3,
      -2,
      0,
      1,
      2,
      -3
    ],
    "io_out": [
      8,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(drop(input,4),-3),-3),4),2)"
  },
  {
    "input": "input : list = [1, -5, -2, 3, 2]\noutput : list = [12, 11, 10, 7, 4]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des([1, -5, -2, 3, 2]),5),-4),19)",
    "io_inp": [
      1,
      -5,
      -2,
      3,
      2
    ],
    "io_out": [
      12,
      11,
      10,
      7,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(input),5),-4),19)"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [0, 0, 7]",
    "output": "generated_output : list = sub_n([-4, -4, 3],-4)",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      0,
      0,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [4, -5, 5, -4, -4]\noutput : list = [-4, -4, 5, -5, 4]",
    "output": "generated_output : list = take(take(add_n(reverse(sub_n([4, -5, 5, -4, -4],-4)),-4),14),22)",
    "io_inp": [
      4,
      -5,
      5,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      5,
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(sub_n(input,-4)),-4),14),22)"
  },
  {
    "input": "input : list = [2, 2, 2, -5, -3, 4]\noutput : list = [-5, -3, 4]",
    "output": "generated_output : list = take(drop([2, 2, 2, -5, -3, 4],3),6)",
    "io_inp": [
      2,
      2,
      2,
      -5,
      -3,
      4
    ],
    "io_out": [
      -5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(drop(input,3),6)"
  },
  {
    "input": "input : list = [-2, -5, -4, 5, 4, -4]\noutput : list = [-15, -12, -12, -6, 12, 15]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sort_asc([-2, -5, -4, 5, 4, -4]),3))))",
    "io_inp": [
      -2,
      -5,
      -4,
      5,
      4,
      -4
    ],
    "io_out": [
      -15,
      -12,
      -12,
      -6,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-4, -2, -2, -1, -3, 5]\noutput : list = [-4, -2, -2, -1, -3, 5]",
    "output": "generated_output : list = reverse(take(add_n(add_n(reverse([-4, -2, -2, -1, -3, 5]),2),-2),34))",
    "io_inp": [
      -4,
      -2,
      -2,
      -1,
      -3,
      5
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(reverse(input),2),-2),34))"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [-4, 2, 3]",
    "output": "generated_output : list = sub_n([-5, 1, 2],-1)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [25, 5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(drop([5, -1, -5],1),-5))))",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      25,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(drop(input,1),-5))))"
  },
  {
    "input": "input : list = [3, -1, 0, 4, 0]\noutput : list = [8, 7, 4, 4, 3]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(mul_n([3, -1, 0, 4, 0],1),3),1)),14)",
    "io_inp": [
      3,
      -1,
      0,
      4,
      0
    ],
    "io_out": [
      8,
      7,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(mul_n(input,1),3),1)),14)"
  },
  {
    "input": "input : list = [0, 5, -5, 3, -1]\noutput : list = [-40, -20, -15, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(add_n([0, 5, -5, 3, -1],-3))),5))",
    "io_inp": [
      0,
      5,
      -5,
      3,
      -1
    ],
    "io_out": [
      -40,
      -20,
      -15,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(add_n(input,-3))),5))"
  },
  {
    "input": "input : list = [-1, -3, 3, -1, -3]\noutput : list = [51, 51, 27, 27, -21]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n([-1, -3, 3, -1, -3],-4)),5),3))",
    "io_inp": [
      -1,
      -3,
      3,
      -1,
      -3
    ],
    "io_out": [
      51,
      51,
      27,
      27,
      -21
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_asc(mul_n(input,-4)),5),3))"
  },
  {
    "input": "input : list = [-2, 2, 0]\noutput : list = [4, 0, -4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc([-2, 2, 0]),2)))",
    "io_inp": [
      -2,
      2,
      0
    ],
    "io_out": [
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(input),2)))"
  },
  {
    "input": "input : list = [3, -5, -1, -4, -5]\noutput : list = [-1, 0, 3, -1, 7]",
    "output": "generated_output : list = sub_n(reverse([3, -5, -1, -4, -5]),-4)",
    "io_inp": [
      3,
      -5,
      -1,
      -4,
      -5
    ],
    "io_out": [
      -1,
      0,
      3,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-7, 0]",
    "output": "generated_output : list = sub_n(drop([2, -5, 2],1),2)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-5, -5, 4, 4]\noutput : list = [-16, -16, 20, 20]",
    "output": "generated_output : list = mul_n(sort_des([-5, -5, 4, 4]),-4)",
    "io_inp": [
      -5,
      -5,
      4,
      4
    ],
    "io_out": [
      -16,
      -16,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-5, -4, 5]\noutput : list = [-10]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(take([-5, -4, 5],1)),5),22))",
    "io_inp": [
      -5,
      -4,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(take(input,1)),5),22))"
  },
  {
    "input": "input : list = [-4, 1, -2, -2, 0, 1]\noutput : list = [-3, -3, -4, -6, -6, -8]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(sub_n([-4, 1, -2, -2, 0, 1],-1),1),5)),1)",
    "io_inp": [
      -4,
      1,
      -2,
      -2,
      0,
      1
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(sub_n(input,-1),1),5)),1)"
  },
  {
    "input": "input : list = [0, 5, -3, 2]\noutput : list = [9, 4]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(take([0, 5, -3, 2],2),-4))),38)",
    "io_inp": [
      0,
      5,
      -3,
      2
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(take(input,2),-4))),38)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des([-2, 1])),3))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(input)),3))"
  },
  {
    "input": "input : list = [1, -1, -2, -3, -4, 1]\noutput : list = [6, 4, 3, 2, 1, 6]",
    "output": "generated_output : list = sub_n([1, -1, -2, -3, -4, 1],-5)",
    "io_inp": [
      1,
      -1,
      -2,
      -3,
      -4,
      1
    ],
    "io_out": [
      6,
      4,
      3,
      2,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sub_n([-2, -1],1),-1))))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sub_n(input,1),-1))))"
  },
  {
    "input": "input : list = [2, -5, -4, 0, 3, -1]\noutput : list = [-5, -4, -1, 0, 2, 3]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(reverse([2, -5, -4, 0, 3, -1])),30)))",
    "io_inp": [
      2,
      -5,
      -4,
      0,
      3,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(reverse(input)),30)))"
  },
  {
    "input": "input : list = [5, -3, -4, -5, -1, 4]\noutput : list = [13, 8, 4, 5, 6, 14]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n([5, -3, -4, -5, -1, 4],-4),23)),-5)",
    "io_inp": [
      5,
      -3,
      -4,
      -5,
      -1,
      4
    ],
    "io_out": [
      13,
      8,
      4,
      5,
      6,
      14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(input,-4),23)),-5)"
  },
  {
    "input": "input : list = [-3, -3, -5, 3, -3, -3]\noutput : list = [-5, 3, -3, -3]",
    "output": "generated_output : list = drop([-3, -3, -5, 3, -3, -3],2)",
    "io_inp": [
      -3,
      -3,
      -5,
      3,
      -3,
      -3
    ],
    "io_out": [
      -5,
      3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, -2, 5, 0]\noutput : list = [0, 3, 5, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n([-5, -2, 5, 0],1)),-4))",
    "io_inp": [
      -5,
      -2,
      5,
      0
    ],
    "io_out": [
      0,
      3,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(input,1)),-4))"
  },
  {
    "input": "input : list = [-3, 1, -3, -1, 2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = take([-3, 1, -3, -1, 2],2)",
    "io_inp": [
      -3,
      1,
      -3,
      -1,
      2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n(sort_des([-4, -2]),4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [28, 16, 32]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(add_n([2, -2, 1],3),1)),4),4)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      28,
      16,
      32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(add_n(input,3),1)),4),4)"
  },
  {
    "input": "input : list = [-1, 2, 4, 1]\noutput : list = [-30, -20, -15, -5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(add_n([-1, 2, 4, 1],3)),-5)),5)",
    "io_inp": [
      -1,
      2,
      4,
      1
    ],
    "io_out": [
      -30,
      -20,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(add_n(input,3)),-5)),5)"
  },
  {
    "input": "input : list = [0, -3, -1, 3, -1]\noutput : list = [-48, -16, -16, 0, 48]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(mul_n([0, -3, -1, 3, -1],-4)))),-4)",
    "io_inp": [
      0,
      -3,
      -1,
      3,
      -1
    ],
    "io_out": [
      -48,
      -16,
      -16,
      0,
      48
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(mul_n(input,-4)))),-4)"
  },
  {
    "input": "input : list = [1, 0, 4, 1, 5, 0]\noutput : list = [-1, 3, -13, -1, -17, 3]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse([1, 0, 4, 1, 5, 0]),-4)),-3)",
    "io_inp": [
      1,
      0,
      4,
      1,
      5,
      0
    ],
    "io_out": [
      -1,
      3,
      -13,
      -1,
      -17,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(input),-4)),-3)"
  },
  {
    "input": "input : list = [-5, -4, -1, 1, 2, -1]\noutput : list = [-4, -5, -7, -7, -10, -11]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(add_n([-5, -4, -1, 1, 2, -1],2),-4),3),1))",
    "io_inp": [
      -5,
      -4,
      -1,
      1,
      2,
      -1
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -7,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(add_n(input,2),-4),3),1))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-16]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(drop(reverse([-4, 1]),1)),-1),-4)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(drop(reverse(input),1)),-1),-4)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [7, 6, 6]",
    "output": "generated_output : list = sort_des(add_n([3, 2, 2],4))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      7,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,4))"
  },
  {
    "input": "input : list = [5, 3, 3, 2, -2, 2]\noutput : list = [3, 4, 4, 6]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(take([5, 3, 3, 2, -2, 2],4),-1))))",
    "io_inp": [
      5,
      3,
      3,
      2,
      -2,
      2
    ],
    "io_out": [
      3,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(take(input,4),-1))))"
  },
  {
    "input": "input : list = [-1, -1, 4, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse(take([-1, -1, 4, -3],1)),-4),-4))",
    "io_inp": [
      -1,
      -1,
      4,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(take(input,1)),-4),-4))"
  },
  {
    "input": "input : list = [-4, -3, 0, 4]\noutput : list = [28, 23, 8, -12]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(add_n([-4, -3, 0, 4],-3)),-5),3),4)",
    "io_inp": [
      -4,
      -3,
      0,
      4
    ],
    "io_out": [
      28,
      23,
      8,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(add_n(input,-3)),-5),3),4)"
  },
  {
    "input": "input : list = [-4, 1, -2, 1, 0, -3]\noutput : list = [1, 1, 0, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 1, -2, 1, 0, -3])",
    "io_inp": [
      -4,
      1,
      -2,
      1,
      0,
      -3
    ],
    "io_out": [
      1,
      1,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 0, 4, -4, 4, 4]\noutput : list = [4, 4, 4, 1, 0, -4]",
    "output": "generated_output : list = sort_des([1, 0, 4, -4, 4, 4])",
    "io_inp": [
      1,
      0,
      4,
      -4,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      4,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, -4, 3]\noutput : list = [-5, 0, -4, 3]",
    "output": "generated_output : list = reverse(take(reverse(reverse(reverse([-5, 0, -4, 3]))),23))",
    "io_inp": [
      -5,
      0,
      -4,
      3
    ],
    "io_out": [
      -5,
      0,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(reverse(input))),23))"
  },
  {
    "input": "input : list = [2, 0, -1, 3]\noutput : list = [-2, -3, -5, -6]",
    "output": "generated_output : list = sort_des(reverse(add_n(mul_n(sort_asc([2, 0, -1, 3]),1),-5)))",
    "io_inp": [
      2,
      0,
      -1,
      3
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(mul_n(sort_asc(input),1),-5)))"
  },
  {
    "input": "input : list = [-4, 0, -1, 4, -2]\noutput : list = [-8, -26]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(drop([-4, 0, -1, 4, -2],3),3),-3),5))",
    "io_inp": [
      -4,
      0,
      -1,
      4,
      -2
    ],
    "io_out": [
      -8,
      -26
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(drop(input,3),3),-3),5))"
  },
  {
    "input": "input : list = [-3, 1, -1, 4, -5]\noutput : list = [-12, -4, 4]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(take([-3, 1, -1, 4, -5],3))),4))",
    "io_inp": [
      -3,
      1,
      -1,
      4,
      -5
    ],
    "io_out": [
      -12,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(take(input,3))),4))"
  },
  {
    "input": "input : list = [4, 1, -5, -3, -1]\noutput : list = [12, 9, 3, 5, 7]",
    "output": "generated_output : list = add_n(add_n([4, 1, -5, -3, -1],4),4)",
    "io_inp": [
      4,
      1,
      -5,
      -3,
      -1
    ],
    "io_out": [
      12,
      9,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),4)"
  },
  {
    "input": "input : list = [3, -5, -2, -4]\noutput : list = [26, 22, 28, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse([3, -5, -2, -4]),5),-4),-2)",
    "io_inp": [
      3,
      -5,
      -2,
      -4
    ],
    "io_out": [
      26,
      22,
      28,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(input),5),-4),-2)"
  },
  {
    "input": "input : list = [4, -2, 4, 5]\noutput : list = [-2, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([4, -2, 4, 5])",
    "io_inp": [
      4,
      -2,
      4,
      5
    ],
    "io_out": [
      -2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, -1, 4, -3]\noutput : list = [-5, -4, -3, 2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([4, -2, -1, 4, -3],5),-3))",
    "io_inp": [
      4,
      -2,
      -1,
      4,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,5),-3))"
  },
  {
    "input": "input : list = [-4, 3, 5, 2, 4]\noutput : list = [9, 8, 7, 6, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(sub_n([-4, 3, 5, 2, 4],-2))),2))",
    "io_inp": [
      -4,
      3,
      5,
      2,
      4
    ],
    "io_out": [
      9,
      8,
      7,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(sub_n(input,-2))),2))"
  },
  {
    "input": "input : list = [-3, -1, 5, 2, 0]\noutput : list = [2, -1, -3, -4]",
    "output": "generated_output : list = sort_des(add_n(drop([-3, -1, 5, 2, 0],1),-3))",
    "io_inp": [
      -3,
      -1,
      5,
      2,
      0
    ],
    "io_out": [
      2,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),-3))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [0, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(add_n([-1, 3],4)),-1)),3)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(add_n(input,4)),-1)),3)"
  },
  {
    "input": "input : list = [5, 0, -5, -1, -4, -4]\noutput : list = [-15, 0, 15, 3, 12, 12]",
    "output": "generated_output : list = take(mul_n([5, 0, -5, -1, -4, -4],-3),21)",
    "io_inp": [
      5,
      0,
      -5,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -15,
      0,
      15,
      3,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),21)"
  },
  {
    "input": "input : list = [1, 1, -3, 4]\noutput : list = [35, 15, 15, 0]",
    "output": "generated_output : list = sort_des(mul_n(add_n([1, 1, -3, 4],-4),-5))",
    "io_inp": [
      1,
      1,
      -3,
      4
    ],
    "io_out": [
      35,
      15,
      15,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,-4),-5))"
  },
  {
    "input": "input : list = [4, -1, 4, -5, -1]\noutput : list = [-9, -14, -18]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(drop([4, -1, 4, -5, -1],2),4),4)),-5)",
    "io_inp": [
      4,
      -1,
      4,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(drop(input,2),4),4)),-5)"
  },
  {
    "input": "input : list = [-3, 2, 3, -1, -4]\noutput : list = [-13, -8, -7, -11]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(add_n([-3, 2, 3, -1, -4],-5),2),1),4),4)",
    "io_inp": [
      -3,
      2,
      3,
      -1,
      -4
    ],
    "io_out": [
      -13,
      -8,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(add_n(input,-5),2),1),4),4)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-9, -9]",
    "output": "generated_output : list = mul_n([-3, -3],3)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, -3, 3, 1, 5, 1]\noutput : list = [7, 11, 7, 9, 3, 9]",
    "output": "generated_output : list = reverse(sub_n(add_n([3, -3, 3, 1, 5, 1],5),-1))",
    "io_inp": [
      3,
      -3,
      3,
      1,
      5,
      1
    ],
    "io_out": [
      7,
      11,
      7,
      9,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,5),-1))"
  },
  {
    "input": "input : list = [2, 2, 0, 5]\noutput : list = [10, 7, 5]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(drop([2, 2, 0, 5],1),-5),19)))",
    "io_inp": [
      2,
      2,
      0,
      5
    ],
    "io_out": [
      10,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(drop(input,1),-5),19)))"
  },
  {
    "input": "input : list = [5, -4, -5]\noutput : list = [2, -7, -8]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(reverse([5, -4, -5]),3),13)))",
    "io_inp": [
      5,
      -4,
      -5
    ],
    "io_out": [
      2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(reverse(input),3),13)))"
  },
  {
    "input": "input : list = [-1, 2, 4, 1, 3, 3]\noutput : list = [1, 4, 6, 3, 5, 5]",
    "output": "generated_output : list = add_n([-1, 2, 4, 1, 3, 3],2)",
    "io_inp": [
      -1,
      2,
      4,
      1,
      3,
      3
    ],
    "io_out": [
      1,
      4,
      6,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-2, 3, -3, 2, 1, 1]\noutput : list = [-1, -2, -3, -3, -6, -7]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(sub_n([-2, 3, -3, 2, 1, 1],4)))))",
    "io_inp": [
      -2,
      3,
      -3,
      2,
      1,
      1
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(sub_n(input,4)))))"
  },
  {
    "input": "input : list = [-4, -1, -5, 4, -5]\noutput : list = [-20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(drop([-4, -1, -5, 4, -5],3)),7),-5))",
    "io_inp": [
      -4,
      -1,
      -5,
      4,
      -5
    ],
    "io_out": [
      -20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(drop(input,3)),7),-5))"
  },
  {
    "input": "input : list = [-5, 0, 5, 1, -2]\noutput : list = [-2, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(take(sub_n(drop(mul_n([-5, 0, 5, 1, -2],-1),1),-3),32))",
    "io_inp": [
      -5,
      0,
      5,
      1,
      -2
    ],
    "io_out": [
      -2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(drop(mul_n(input,-1),1),-3),32))"
  },
  {
    "input": "input : list = [0, 2, -3, -3]\noutput : list = [37, 37, 22, 12]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(add_n([0, 2, -3, -3],-4),-5),11)),-2)",
    "io_inp": [
      0,
      2,
      -3,
      -3
    ],
    "io_out": [
      37,
      37,
      22,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(add_n(input,-4),-5),11)),-2)"
  },
  {
    "input": "input : list = [5, -3, 5, -2, -2]\noutput : list = [15, -9, 15, -6, -6]",
    "output": "generated_output : list = mul_n([5, -3, 5, -2, -2],3)",
    "io_inp": [
      5,
      -3,
      5,
      -2,
      -2
    ],
    "io_out": [
      15,
      -9,
      15,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, 0, -1, -5, -3, -1]\noutput : list = [-4, -4, -5, -5, -7, -9]",
    "output": "generated_output : list = reverse(sub_n(sub_n(reverse(sort_des([0, 0, -1, -5, -3, -1])),5),-1))",
    "io_inp": [
      0,
      0,
      -1,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(reverse(sort_des(input)),5),-1))"
  },
  {
    "input": "input : list = [-1, -3, 0, -1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(drop([-1, -3, 0, -1, -1],3)))),4)",
    "io_inp": [
      -1,
      -3,
      0,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(drop(input,3)))),4)"
  },
  {
    "input": "input : list = [-4, -4, -4, -2, -2, -1]\noutput : list = [16, 16, 16, 8, 8, 4]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse(sort_des([-4, -4, -4, -2, -2, -1]))),-4))",
    "io_inp": [
      -4,
      -4,
      -4,
      -2,
      -2,
      -1
    ],
    "io_out": [
      16,
      16,
      16,
      8,
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(sort_des(input))),-4))"
  },
  {
    "input": "input : list = [0, -4, 2, -1]\noutput : list = [-4, 2, -1]",
    "output": "generated_output : list = drop([0, -4, 2, -1],1)",
    "io_inp": [
      0,
      -4,
      2,
      -1
    ],
    "io_out": [
      -4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 2, -3, 4, -4]\noutput : list = [25, -15, 20, -5, 15]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(mul_n([-2, 2, -3, 4, -4],5),-4),1)),-1)",
    "io_inp": [
      -2,
      2,
      -3,
      4,
      -4
    ],
    "io_out": [
      25,
      -15,
      20,
      -5,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(mul_n(input,5),-4),1)),-1)"
  },
  {
    "input": "input : list = [-5, 4, -1, 0, 5]\noutput : list = [0, 4, 5, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([-5, 4, -1, 0, 5]),5))",
    "io_inp": [
      -5,
      4,
      -1,
      0,
      5
    ],
    "io_out": [
      0,
      4,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [15, -25, -35]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc([1, -4, -3]),2),1),5))",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      15,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc(input),2),1),5))"
  },
  {
    "input": "input : list = [-2, -5, 4]\noutput : list = [-9, 0]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(drop([-2, -5, 4],1),4),6)))",
    "io_inp": [
      -2,
      -5,
      4
    ],
    "io_out": [
      -9,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(drop(input,1),4),6)))"
  },
  {
    "input": "input : list = [-4, 3, 3, -1, 4]\noutput : list = [4, 3, -1]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(drop([-4, 3, 3, -1, 4],2)),7)))",
    "io_inp": [
      -4,
      3,
      3,
      -1,
      4
    ],
    "io_out": [
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(drop(input,2)),7)))"
  },
  {
    "input": "input : list = [-3, 5, -2, -3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = drop([-3, 5, -2, -3, -4],3)",
    "io_inp": [
      -3,
      5,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(reverse([1, 1]),13))),-3)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(reverse(input),13))),-3)"
  },
  {
    "input": "input : list = [-2, 5, 5, 4, 0]\noutput : list = [5, 5, 4, 0, -2]",
    "output": "generated_output : list = sort_des([-2, 5, 5, 4, 0])",
    "io_inp": [
      -2,
      5,
      5,
      4,
      0
    ],
    "io_out": [
      5,
      5,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 0, 3, -4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse(drop([-4, 0, 3, -4, 1],3))",
    "io_inp": [
      -4,
      0,
      3,
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [16, -19]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(mul_n([4, -3],1),-5),-1),-2))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      16,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(mul_n(input,1),-5),-1),-2))"
  },
  {
    "input": "input : list = [-2, -5, -4, -4, 3]\noutput : list = [-6, -9, -8, -8, -1]",
    "output": "generated_output : list = sub_n([-2, -5, -4, -4, 3],4)",
    "io_inp": [
      -2,
      -5,
      -4,
      -4,
      3
    ],
    "io_out": [
      -6,
      -9,
      -8,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, -4, 2, 2, 2, 0]\noutput : list = [8, 4, 0, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(drop(sort_des([-2, -4, 2, 2, 2, 0]),1)),-2))",
    "io_inp": [
      -2,
      -4,
      2,
      2,
      2,
      0
    ],
    "io_out": [
      8,
      4,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(drop(sort_des(input),1)),-2))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [7, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([2, -2])),5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [2, -3, 3, -2, -2]\noutput : list = [-2, -2, 3, -3, 2]",
    "output": "generated_output : list = reverse(mul_n([2, -3, 3, -2, -2],1))",
    "io_inp": [
      2,
      -3,
      3,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, -3, -2, -2, 4]\noutput : list = [-10, -10, -11, -10]",
    "output": "generated_output : list = reverse(add_n(take(add_n([-2, -3, -2, -2, 4],-3),4),-5))",
    "io_inp": [
      -2,
      -3,
      -2,
      -2,
      4
    ],
    "io_out": [
      -10,
      -10,
      -11,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(input,-3),4),-5))"
  },
  {
    "input": "input : list = [-1, -5, -2, -5, 4]\noutput : list = [-4, -1, 0, 5]",
    "output": "generated_output : list = drop(sort_asc(reverse(sort_des(add_n([-1, -5, -2, -5, 4],1)))),1)",
    "io_inp": [
      -1,
      -5,
      -2,
      -5,
      4
    ],
    "io_out": [
      -4,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = drop(sort_asc(reverse(sort_des(add_n(input,1)))),1)"
  },
  {
    "input": "input : list = [1, -3, 1, 4]\noutput : list = [2, -2, 2, 5]",
    "output": "generated_output : list = sub_n([1, -3, 1, 4],-1)",
    "io_inp": [
      1,
      -3,
      1,
      4
    ],
    "io_out": [
      2,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [4, -4, 5, 0]\noutput : list = [5, 4, 0, -4]",
    "output": "generated_output : list = sort_des([4, -4, 5, 0])",
    "io_inp": [
      4,
      -4,
      5,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [1, -4, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(add_n([0, -3, 5],-4),3))))",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(add_n(input,-4),3))))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-10, -5]",
    "output": "generated_output : list = mul_n(sort_asc([-1, -2]),5)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [-2, -2, -9]",
    "output": "generated_output : list = sort_des(add_n(take(take(add_n([2, 2, -5],-2),11),13),-2))",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(add_n(input,-2),11),13),-2))"
  },
  {
    "input": "input : list = [3, -1, -3, -3, -5, 1]\noutput : list = [-2]",
    "output": "generated_output : list = take(sub_n(take([3, -1, -3, -3, -5, 1],1),5),16)",
    "io_inp": [
      3,
      -1,
      -3,
      -3,
      -5,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),5),16)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([1, 0])),2)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [2, 0, -4, 3, -1, 3]\noutput : list = [-2, -6]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(drop([2, 0, -4, 3, -1, 3],4)),-5)))",
    "io_inp": [
      2,
      0,
      -4,
      3,
      -1,
      3
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(drop(input,4)),-5)))"
  },
  {
    "input": "input : list = [0, -5, -1, -4, -3]\noutput : list = [1, 2, 3, 5, 6]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(sort_asc([0, -5, -1, -4, -3])),4),2))",
    "io_inp": [
      0,
      -5,
      -1,
      -4,
      -3
    ],
    "io_out": [
      1,
      2,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(sort_asc(input)),4),2))"
  },
  {
    "input": "input : list = [1, -2, -3, -5]\noutput : list = [5, 2, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des([1, -2, -3, -5]),-4)",
    "io_inp": [
      1,
      -2,
      -3,
      -5
    ],
    "io_out": [
      5,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [1, 2, 4, 2]\noutput : list = [19, 9, 9, 4]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(reverse([1, 2, 4, 2]),1)),5),4)",
    "io_inp": [
      1,
      2,
      4,
      2
    ],
    "io_out": [
      19,
      9,
      9,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(reverse(input),1)),5),4)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [8, -8, -32]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n([-1, -5, 5],3)),-4))",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      8,
      -8,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(input,3)),-4))"
  },
  {
    "input": "input : list = [2, -4, -1, 1]\noutput : list = [-1, -2, -4, -7]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sort_asc([2, -4, -1, 1])),3)))",
    "io_inp": [
      2,
      -4,
      -1,
      1
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_des(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-5, 4, 1, 3]\noutput : list = [-12, -9, -3, 15]",
    "output": "generated_output : list = mul_n(sort_des([-5, 4, 1, 3]),-3)",
    "io_inp": [
      -5,
      4,
      1,
      3
    ],
    "io_out": [
      -12,
      -9,
      -3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [1, 2, 5, -4]\noutput : list = [-4, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(add_n([1, 2, 5, -4],-1),-2)),3))",
    "io_inp": [
      1,
      2,
      5,
      -4
    ],
    "io_out": [
      -4,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(add_n(input,-1),-2)),3))"
  },
  {
    "input": "input : list = [5, -2, 3, -1, -4]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(take([5, -2, 3, -1, -4],2)))))",
    "io_inp": [
      5,
      -2,
      3,
      -1,
      -4
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(take(input,2)))))"
  },
  {
    "input": "input : list = [-3, -4, -5, 2, 0, -3]\noutput : list = [-15, -14, -13]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(take([-3, -4, -5, 2, 0, -3],3),16),5),5))",
    "io_inp": [
      -3,
      -4,
      -5,
      2,
      0,
      -3
    ],
    "io_out": [
      -15,
      -14,
      -13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(take(input,3),16),5),5))"
  },
  {
    "input": "input : list = [-3, 4, -2, 5]\noutput : list = [20, 160, 40, 180]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n([-3, 4, -2, 5],-5),4),4),5)",
    "io_inp": [
      -3,
      4,
      -2,
      5
    ],
    "io_out": [
      20,
      160,
      40,
      180
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(input,-5),4),4),5)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-10, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des(sort_des([-2, -2]))),5))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(sort_des(input))),5))"
  },
  {
    "input": "input : list = [1, -3, 4, 2, 2]\noutput : list = [4, 2, 2, 1, -3]",
    "output": "generated_output : list = sort_des([1, -3, 4, 2, 2])",
    "io_inp": [
      1,
      -3,
      4,
      2,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 5, 4]\noutput : list = [-8, -9, -5, -3]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(add_n([-1, 1, 5, 4],5)),7),-1),-1)",
    "io_inp": [
      -1,
      1,
      5,
      4
    ],
    "io_out": [
      -8,
      -9,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(add_n(input,5)),7),-1),-1)"
  },
  {
    "input": "input : list = [-5, -3, -3, 1, -1]\noutput : list = [4, 2, 2, 0, -2]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(reverse([-5, -3, -3, 1, -1]))),-1),-1)",
    "io_inp": [
      -5,
      -3,
      -3,
      1,
      -1
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(reverse(input))),-1),-1)"
  },
  {
    "input": "input : list = [-4, -5, 5, -1, -1]\noutput : list = [-2, -3, 7, 1, 1]",
    "output": "generated_output : list = sub_n([-4, -5, 5, -1, -1],-2)",
    "io_inp": [
      -4,
      -5,
      5,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -3,
      7,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 5, 2, 5, 3, -1]\noutput : list = [-47, -47, -27, -17, 13, 13]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(mul_n([-1, 5, 2, 5, 3, -1],5))),-2),3)",
    "io_inp": [
      -1,
      5,
      2,
      5,
      3,
      -1
    ],
    "io_out": [
      -47,
      -47,
      -27,
      -17,
      13,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(mul_n(input,5))),-2),3)"
  },
  {
    "input": "input : list = [0, -2, -5, 2, 2, 2]\noutput : list = [1, 1, 1, -1, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([0, -2, -5, 2, 2, 2])),1)",
    "io_inp": [
      0,
      -2,
      -5,
      2,
      2,
      2
    ],
    "io_out": [
      1,
      1,
      1,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),1)"
  },
  {
    "input": "input : list = [-2, -4, 0, 4]\noutput : list = [-5, -7, -3, 1]",
    "output": "generated_output : list = add_n([-2, -4, 0, 4],-3)",
    "io_inp": [
      -2,
      -4,
      0,
      4
    ],
    "io_out": [
      -5,
      -7,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 3, -4, -5, 1]\noutput : list = [30, 20, -5, -5, -10]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take(add_n([-4, 3, -4, -5, 1],3),23),1)),5)",
    "io_inp": [
      -4,
      3,
      -4,
      -5,
      1
    ],
    "io_out": [
      30,
      20,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(add_n(input,3),23),1)),5)"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -5, 2])",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 4, -3, 2]\noutput : list = [-1, -1, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_asc([-3, 4, -3, 2])),-4)),2)",
    "io_inp": [
      -3,
      4,
      -3,
      2
    ],
    "io_out": [
      -1,
      -1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(sort_asc(input)),-4)),2)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take(sub_n([0, 5],4),13)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),13)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sort_des([0, 4]))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [1, -3, 3]",
    "output": "generated_output : list = reverse([3, -3, 1])",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2, 3, 3, -4, -3]\noutput : list = [20, 23, 2, 2, 17, -1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(reverse([4, -2, 3, 3, -4, -3]),1),-3),-4),4)",
    "io_inp": [
      4,
      -2,
      3,
      3,
      -4,
      -3
    ],
    "io_out": [
      20,
      23,
      2,
      2,
      17,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(reverse(input),1),-3),-4),4)"
  },
  {
    "input": "input : list = [1, 1, -2, 1, 4]\noutput : list = [-12, -24, -24, -24, -36]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(mul_n([1, 1, -2, 1, 4],-1),-5),4)))",
    "io_inp": [
      1,
      1,
      -2,
      1,
      4
    ],
    "io_out": [
      -12,
      -24,
      -24,
      -24,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(mul_n(input,-1),-5),4)))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [10, 4]",
    "output": "generated_output : list = mul_n([5, 2],2)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, -2, 2]\noutput : list = [-2, 2, 2]",
    "output": "generated_output : list = sort_asc(take(reverse([2, -2, 2]),5))",
    "io_inp": [
      2,
      -2,
      2
    ],
    "io_out": [
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),5))"
  },
  {
    "input": "input : list = [-3, 2, -3, 2, -3, 1]\noutput : list = [-7, -2, -7, -2, -7, -3]",
    "output": "generated_output : list = sub_n([-3, 2, -3, 2, -3, 1],4)",
    "io_inp": [
      -3,
      2,
      -3,
      2,
      -3,
      1
    ],
    "io_out": [
      -7,
      -2,
      -7,
      -2,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, -2, 0, 4, 0]\noutput : list = [0, 2, 4, 4, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sub_n([-4, -2, 0, 4, 0],-4),-1)),1))",
    "io_inp": [
      -4,
      -2,
      0,
      4,
      0
    ],
    "io_out": [
      0,
      2,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sub_n(input,-4),-1)),1))"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [-10, 10, 20]",
    "output": "generated_output : list = mul_n([2, -2, -4],-5)",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      -10,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, -4, 2, 0]\noutput : list = [-18, -2, -2, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sort_des([0, -4, 2, 0]),4))),2)",
    "io_inp": [
      0,
      -4,
      2,
      0
    ],
    "io_out": [
      -18,
      -2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(sort_des(input),4))),2)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(take(mul_n(take([-5, 1, 5],1),1),6),4),32)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(take(input,1),1),6),4),32)"
  },
  {
    "input": "input : list = [-5, -5, -4, -5, -1, 3]\noutput : list = [-4, -4, -4, -3, 0, 4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(add_n([-5, -5, -4, -5, -1, 3],1))),1))",
    "io_inp": [
      -5,
      -5,
      -4,
      -5,
      -1,
      3
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(add_n(input,1))),1))"
  },
  {
    "input": "input : list = [-4, -4, -3, 1, 0, -3]\noutput : list = [-9, -9, -8, -8, -5, -4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(sort_asc([-4, -4, -3, 1, 0, -3])),5)))",
    "io_inp": [
      -4,
      -4,
      -3,
      1,
      0,
      -3
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -8,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [-3, 1, -4]\noutput : list = [-2, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([-3, 1, -4],2)))",
    "io_inp": [
      -3,
      1,
      -4
    ],
    "io_out": [
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,2)))"
  },
  {
    "input": "input : list = [3, -1, 2, 4]\noutput : list = [1, -3, 0, 2]",
    "output": "generated_output : list = add_n(add_n([3, -1, 2, 4],-5),3)",
    "io_inp": [
      3,
      -1,
      2,
      4
    ],
    "io_out": [
      1,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),3)"
  },
  {
    "input": "input : list = [-3, -1, -1]\noutput : list = [-10, -6, -6]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_asc([-3, -1, -1]),2)),4))",
    "io_inp": [
      -3,
      -1,
      -1
    ],
    "io_out": [
      -10,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_asc(input),2)),4))"
  },
  {
    "input": "input : list = [5, -3, -1]\noutput : list = [-9]",
    "output": "generated_output : list = take(mul_n(sort_des(drop(sort_des([5, -3, -1]),2)),3),42)",
    "io_inp": [
      5,
      -3,
      -1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(drop(sort_des(input),2)),3),42)"
  },
  {
    "input": "input : list = [-3, 2, 1, -3, 1]\noutput : list = [-4, 1, 0, -4, 0]",
    "output": "generated_output : list = take(add_n(reverse(reverse(sub_n([-3, 2, 1, -3, 1],5))),4),40)",
    "io_inp": [
      -3,
      2,
      1,
      -3,
      1
    ],
    "io_out": [
      -4,
      1,
      0,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(sub_n(input,5))),4),40)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(sort_des(take(reverse(sub_n([3, 5],3)),3)),4)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(sub_n(input,3)),3)),4)"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop([-3, -2, 4],1)",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(reverse(drop([-2, -3, -4],1)))",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-5, 3, 3]\noutput : list = [-3, -3, -11]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(add_n([-5, 3, 3],-2),4),5),5))",
    "io_inp": [
      -5,
      3,
      3
    ],
    "io_out": [
      -3,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(add_n(input,-2),4),5),5))"
  },
  {
    "input": "input : list = [-4, 4, -1, 2, 4]\noutput : list = [6, -18, -3, -12, -18]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n([-4, 4, -1, 2, 4],-1),-5),3),3)",
    "io_inp": [
      -4,
      4,
      -1,
      2,
      4
    ],
    "io_out": [
      6,
      -18,
      -3,
      -12,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(input,-1),-5),3),3)"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [-24, -6]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(drop([0, -2, -5],1),-2),-2)),-3)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      -24,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(drop(input,1),-2),-2)),-3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-2, 1]",
    "output": "generated_output : list = add_n([1, 4],-3)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -1, -3, 3]\noutput : list = [10, 6, 4, 4]",
    "output": "generated_output : list = add_n(sort_des(sort_des(add_n(reverse([-3, -1, -3, 3]),3))),4)",
    "io_inp": [
      -3,
      -1,
      -3,
      3
    ],
    "io_out": [
      10,
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(add_n(reverse(input),3))),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [21, -19]",
    "output": "generated_output : list = sub_n(mul_n([-5, 3],-5),4)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      21,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-5),4)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-75, 100]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_des([-3, 4]),5))),5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -75,
      100
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(sort_des(input),5))),5)"
  },
  {
    "input": "input : list = [-4, -3, 0, 1]\noutput : list = [-3, 0, 1]",
    "output": "generated_output : list = drop([-4, -3, 0, 1],1)",
    "io_inp": [
      -4,
      -3,
      0,
      1
    ],
    "io_out": [
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -1, 4, -2, 4, -5]\noutput : list = [-16, 20, -4, 20, 0, -12]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(add_n([-4, -1, 4, -2, 4, -5],2),2)),2),2)",
    "io_inp": [
      -4,
      -1,
      4,
      -2,
      4,
      -5
    ],
    "io_out": [
      -16,
      20,
      -4,
      20,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(add_n(input,2),2)),2),2)"
  },
  {
    "input": "input : list = [-3, 5, 3, 3]\noutput : list = [-2, 6, 4, 4]",
    "output": "generated_output : list = sub_n([-3, 5, 3, 3],-1)",
    "io_inp": [
      -3,
      5,
      3,
      3
    ],
    "io_out": [
      -2,
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-4, -8]",
    "output": "generated_output : list = add_n(sort_des([-3, 1]),-5)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [0, 0, -1, -5, 5, 3]\noutput : list = [-23, -7, -3, -3, 9, 17]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse([0, 0, -1, -5, 5, 3])),4),29),3)",
    "io_inp": [
      0,
      0,
      -1,
      -5,
      5,
      3
    ],
    "io_out": [
      -23,
      -7,
      -3,
      -3,
      9,
      17
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse(input)),4),29),3)"
  },
  {
    "input": "input : list = [2, 4, -3]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(drop([2, 4, -3],1),-1),3),12))",
    "io_inp": [
      2,
      4,
      -3
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(drop(input,1),-1),3),12))"
  },
  {
    "input": "input : list = [2, 2, -1]\noutput : list = [0, 0, -3]",
    "output": "generated_output : list = take(take(add_n(reverse(reverse([2, 2, -1])),-2),3),44)",
    "io_inp": [
      2,
      2,
      -1
    ],
    "io_out": [
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(reverse(input)),-2),3),44)"
  },
  {
    "input": "input : list = [-4, 1, 5, 5, 4]\noutput : list = [-80, 20, 100]",
    "output": "generated_output : list = take(mul_n(mul_n(take([-4, 1, 5, 5, 4],3),5),4),16)",
    "io_inp": [
      -4,
      1,
      5,
      5,
      4
    ],
    "io_out": [
      -80,
      20,
      100
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(input,3),5),4),16)"
  },
  {
    "input": "input : list = [-2, -4, -5]\noutput : list = [6, 12, 15]",
    "output": "generated_output : list = take(sort_asc(mul_n([-2, -4, -5],-3)),8)",
    "io_inp": [
      -2,
      -4,
      -5
    ],
    "io_out": [
      6,
      12,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-3)),8)"
  },
  {
    "input": "input : list = [3, -5, 2, 1, 0]\noutput : list = [-2, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(drop(sub_n([3, -5, 2, 1, 0],4),2),-1),-1))",
    "io_inp": [
      3,
      -5,
      2,
      1,
      0
    ],
    "io_out": [
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(drop(sub_n(input,4),2),-1),-1))"
  },
  {
    "input": "input : list = [4, 0, 3, -2, 0, 2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(sub_n([4, 0, 3, -2, 0, 2],5)),1)))",
    "io_inp": [
      4,
      0,
      3,
      -2,
      0,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(sub_n(input,5)),1)))"
  },
  {
    "input": "input : list = [-3, -3, -1, 3, 5, 4]\noutput : list = [5, 4, 3, -1, -3, -3]",
    "output": "generated_output : list = sort_des([-3, -3, -1, 3, 5, 4])",
    "io_inp": [
      -3,
      -3,
      -1,
      3,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-7, -6]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(sort_des([-1, 0]),2),6),4))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(sort_des(input),2),6),4))"
  },
  {
    "input": "input : list = [2, 0, 5, -4, 3]\noutput : list = [-3, 1, 3, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc([2, 0, 5, -4, 3]),-1)",
    "io_inp": [
      2,
      0,
      5,
      -4,
      3
    ],
    "io_out": [
      -3,
      1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-1, -1, 0, 1]\noutput : list = [-4, 0, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-1, -1, 0, 1],-4)))",
    "io_inp": [
      -1,
      -1,
      0,
      1
    ],
    "io_out": [
      -4,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-2, 3, 3, 3, 3]\noutput : list = [2, 7, 7, 7, 7]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(add_n([-2, 3, 3, 3, 3],-1)),29),5))",
    "io_inp": [
      -2,
      3,
      3,
      3,
      3
    ],
    "io_out": [
      2,
      7,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(add_n(input,-1)),29),5))"
  },
  {
    "input": "input : list = [1, 0, 1, 5, 4]\noutput : list = [-4, -10, -4, 20, 14]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(mul_n([1, 0, 1, 5, 4],-2),-1),-5),-3),2)",
    "io_inp": [
      1,
      0,
      1,
      5,
      4
    ],
    "io_out": [
      -4,
      -10,
      -4,
      20,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(mul_n(input,-2),-1),-5),-3),2)"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(take([2, 1, 0],1),7))),-3)",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(take(input,1),7))),-3)"
  },
  {
    "input": "input : list = [1, -5, 0, 1, 4]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = drop([1, -5, 0, 1, 4],2)",
    "io_inp": [
      1,
      -5,
      0,
      1,
      4
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -4, -2, -4]\noutput : list = [-3, 9, 5, 9]",
    "output": "generated_output : list = add_n(mul_n([2, -4, -2, -4],-2),1)",
    "io_inp": [
      2,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -3,
      9,
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),1)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -3, 2],1)",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 2, -3, -1, 4]\noutput : list = [4, -1, -3]",
    "output": "generated_output : list = reverse(drop([-1, 2, -3, -1, 4],2))",
    "io_inp": [
      -1,
      2,
      -3,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 2, -4, -4]\noutput : list = [-6, -2, -8, -8]",
    "output": "generated_output : list = add_n([-2, 2, -4, -4],-4)",
    "io_inp": [
      -2,
      2,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 1, 1, 5]\noutput : list = [8, 4, 4, 0]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sub_n([-3, 1, 1, 5],1)),-4)))",
    "io_inp": [
      -3,
      1,
      1,
      5
    ],
    "io_out": [
      8,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sub_n(input,1)),-4)))"
  },
  {
    "input": "input : list = [0, -2, 2, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(reverse(take(take([0, -2, 2, 4],1),10))),26)",
    "io_inp": [
      0,
      -2,
      2,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(take(input,1),10))),26)"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [-4, -3, 4]",
    "output": "generated_output : list = sort_asc([-3, -4, 4])",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [-1, -4, -7]",
    "output": "generated_output : list = sort_des(add_n([-2, -5, 1],-2))",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-2))"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [0, -1, -7]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(mul_n([2, 3, -4],1))),24),3)",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      0,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(mul_n(input,1))),24),3)"
  },
  {
    "input": "input : list = [5, -5, 4, 1, 4, -1]\noutput : list = [-24, -8, 0, 12, 12, 16]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([5, -5, 4, 1, 4, -1],4),4))",
    "io_inp": [
      5,
      -5,
      4,
      1,
      4,
      -1
    ],
    "io_out": [
      -24,
      -8,
      0,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,4),4))"
  },
  {
    "input": "input : list = [-5, 5, -4, -4, 4, 2]\noutput : list = [-10, -9, -9, -3, -1, 0]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(reverse([-5, 5, -4, -4, 4, 2])),9)),5)",
    "io_inp": [
      -5,
      5,
      -4,
      -4,
      4,
      2
    ],
    "io_out": [
      -10,
      -9,
      -9,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(reverse(input)),9)),5)"
  },
  {
    "input": "input : list = [-2, -2, 4, -3, 1, -5]\noutput : list = [2, 4, 5, 5, 8, 11]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(reverse([-2, -2, 4, -3, 1, -5]),-4))),-3)",
    "io_inp": [
      -2,
      -2,
      4,
      -3,
      1,
      -5
    ],
    "io_out": [
      2,
      4,
      5,
      5,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(reverse(input),-4))),-3)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = mul_n([-5, 5],1)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-2, 1, 5, 3, -2, -3]\noutput : list = [8, -4, -20, -12, 8, 12]",
    "output": "generated_output : list = take(mul_n([-2, 1, 5, 3, -2, -3],-4),23)",
    "io_inp": [
      -2,
      1,
      5,
      3,
      -2,
      -3
    ],
    "io_out": [
      8,
      -4,
      -20,
      -12,
      8,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),23)"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [8, 5, 4]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(add_n([0, -1, 3],2),5)),2),25)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(add_n(input,2),5)),2),25)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [6, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-1, -3]),3),-4)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),3),-4)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -5]",
    "output": "generated_output : list = take(take(take(sub_n(reverse([-1, 0]),4),3),28),30)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(reverse(input),4),3),28),30)"
  },
  {
    "input": "input : list = [1, 1, 3, -5, -5]\noutput : list = [-12, -4, -4, 20, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc([1, 1, 3, -5, -5])),-4)))",
    "io_inp": [
      1,
      1,
      3,
      -5,
      -5
    ],
    "io_out": [
      -12,
      -4,
      -4,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [-10, -15, -20]",
    "output": "generated_output : list = sort_des(mul_n([2, 4, 3],-5))",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      -10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [0, 1, -5, 4]\noutput : list = [3, 0, -1, -6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(reverse([0, 1, -5, 4]),-1),1)),1)",
    "io_inp": [
      0,
      1,
      -5,
      4
    ],
    "io_out": [
      3,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(reverse(input),-1),1)),1)"
  },
  {
    "input": "input : list = [5, 3, -2, -1, 4]\noutput : list = [0, -5, -6, -1, 1]",
    "output": "generated_output : list = add_n(reverse([5, 3, -2, -1, 4]),-4)",
    "io_inp": [
      5,
      3,
      -2,
      -1,
      4
    ],
    "io_out": [
      0,
      -5,
      -6,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [-2, 0, -2, 1, -2, -4]\noutput : list = [17, 29]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(drop([-2, 0, -2, 1, -2, -4],4),1),-2),3),-5)",
    "io_inp": [
      -2,
      0,
      -2,
      1,
      -2,
      -4
    ],
    "io_out": [
      17,
      29
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(drop(input,4),1),-2),3),-5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [80, 16]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([-1, -5],4),-4))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      80,
      16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,4),-4))"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [5, 5, 0]",
    "output": "generated_output : list = sort_des([5, 0, 5])",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des([2, 4]),-4),-2))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(input),-4),-2))"
  },
  {
    "input": "input : list = [-3, -5, 1, -3, -3, -3]\noutput : list = [-5, -3, -3, 1]",
    "output": "generated_output : list = take(sort_asc(reverse(take([-3, -5, 1, -3, -3, -3],4))),15)",
    "io_inp": [
      -3,
      -5,
      1,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(input,4))),15)"
  },
  {
    "input": "input : list = [-3, 5, -5, 1, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take([-3, 5, -5, 1, -3],2)",
    "io_inp": [
      -3,
      5,
      -5,
      1,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -2, 0, -2, -4]\noutput : list = [-8, -4, 0, -4, 4]",
    "output": "generated_output : list = reverse(take(take(mul_n(mul_n([2, -2, 0, -2, -4],-2),-1),27),32))",
    "io_inp": [
      2,
      -2,
      0,
      -2,
      -4
    ],
    "io_out": [
      -8,
      -4,
      0,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(mul_n(input,-2),-1),27),32))"
  },
  {
    "input": "input : list = [4, 0, 0, -4, 3, -5]\noutput : list = [8, 7, 4, 4, 0, -1]",
    "output": "generated_output : list = sort_des(add_n([4, 0, 0, -4, 3, -5],4))",
    "io_inp": [
      4,
      0,
      0,
      -4,
      3,
      -5
    ],
    "io_out": [
      8,
      7,
      4,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,4))"
  },
  {
    "input": "input : list = [-3, -4, -5, 1, -5, 2]\noutput : list = [20, 18, 16, 8]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(take([-3, -4, -5, 1, -5, 2],4),5))),-2)",
    "io_inp": [
      -3,
      -4,
      -5,
      1,
      -5,
      2
    ],
    "io_out": [
      20,
      18,
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(take(input,4),5))),-2)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(add_n(add_n([-1, -3],4),-1))))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(add_n(add_n(input,4),-1))))"
  },
  {
    "input": "input : list = [-3, -2, 4, 1]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sub_n(take([-3, -2, 4, 1],2),3)",
    "io_inp": [
      -3,
      -2,
      4,
      1
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),3)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-6, -9]",
    "output": "generated_output : list = mul_n([2, 3],-3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 4, -2, 1, 2]\noutput : list = [7, 5, 4, 2, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([-1, 4, -2, 1, 2],-3)))",
    "io_inp": [
      -1,
      4,
      -2,
      1,
      2
    ],
    "io_out": [
      7,
      5,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [-2, 5, -2, -3, 3]\noutput : list = [5, -2, -3, 3]",
    "output": "generated_output : list = drop([-2, 5, -2, -3, 3],1)",
    "io_inp": [
      -2,
      5,
      -2,
      -3,
      3
    ],
    "io_out": [
      5,
      -2,
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -3, -5, -3, -3, -2]\noutput : list = [10, -15, -20, -20, -20, -30]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sub_n([3, -3, -5, -3, -3, -2],1))),5),31)",
    "io_inp": [
      3,
      -3,
      -5,
      -3,
      -3,
      -2
    ],
    "io_out": [
      10,
      -15,
      -20,
      -20,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sub_n(input,1))),5),31)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-2, -2, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n([-2, -2, -3],3)),-4))",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(input,3)),-4))"
  },
  {
    "input": "input : list = [-4, -3, 3, 2]\noutput : list = [-3, 3, 2]",
    "output": "generated_output : list = drop([-4, -3, 3, 2],1)",
    "io_inp": [
      -4,
      -3,
      3,
      2
    ],
    "io_out": [
      -3,
      3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [-2, 4, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(reverse([4, 2, -1]))),2),24)",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      -2,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(reverse(input))),2),24)"
  },
  {
    "input": "input : list = [0, 1, 2, 0, 3, 3]\noutput : list = [0, 8, 16, 0, 24, 24]",
    "output": "generated_output : list = take(mul_n(mul_n([0, 1, 2, 0, 3, 3],-4),-2),16)",
    "io_inp": [
      0,
      1,
      2,
      0,
      3,
      3
    ],
    "io_out": [
      0,
      8,
      16,
      0,
      24,
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-4),-2),16)"
  },
  {
    "input": "input : list = [-1, 5, -2, -2, -3]\noutput : list = [-7, -6, -6, 1, -5]",
    "output": "generated_output : list = add_n(reverse(sub_n([-1, 5, -2, -2, -3],2)),-2)",
    "io_inp": [
      -1,
      5,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -6,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,2)),-2)"
  },
  {
    "input": "input : list = [0, -3, 4, 1, 5, 1]\noutput : list = [-2, -5, 2, -1, 3, -1]",
    "output": "generated_output : list = add_n([0, -3, 4, 1, 5, 1],-2)",
    "io_inp": [
      0,
      -3,
      4,
      1,
      5,
      1
    ],
    "io_out": [
      -2,
      -5,
      2,
      -1,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [0, -1, -3, 5]\noutput : list = [9, 3, 0, -15]",
    "output": "generated_output : list = sort_des(sort_des(mul_n([0, -1, -3, 5],-3)))",
    "io_inp": [
      0,
      -1,
      -3,
      5
    ],
    "io_out": [
      9,
      3,
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [5, -5, -5, 2, 0, -2]\noutput : list = [10, 0, 0, 7, 5, 3]",
    "output": "generated_output : list = sub_n([5, -5, -5, 2, 0, -2],-5)",
    "io_inp": [
      5,
      -5,
      -5,
      2,
      0,
      -2
    ],
    "io_out": [
      10,
      0,
      0,
      7,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [29, -6, -16]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sort_asc([-2, -4, 5]),5),-4)))",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      29,
      -6,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sort_asc(input),5),-4)))"
  },
  {
    "input": "input : list = [-5, 3, 2]\noutput : list = [-4, -3, -11]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(add_n([-5, 3, 2],1),1)),-5),3)",
    "io_inp": [
      -5,
      3,
      2
    ],
    "io_out": [
      -4,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(add_n(input,1),1)),-5),3)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-15, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des([5, 0]),-3))))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -15,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [-2, 3, -1, -2, -2, -1]\noutput : list = [7, 12, 8, 7, 7, 8]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(sub_n([-2, 3, -1, -2, -2, -1],-4)),-5),8))",
    "io_inp": [
      -2,
      3,
      -1,
      -2,
      -2,
      -1
    ],
    "io_out": [
      7,
      12,
      8,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(sub_n(input,-4)),-5),8))"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [-22]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(take([5, -4, 3],1),-5)),5),2)",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      -22
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(take(input,1),-5)),5),2)"
  },
  {
    "input": "input : list = [-3, -1, 0, -4, -3]\noutput : list = [0, 3, 9, 9, 12]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-3, -1, 0, -4, -3]),-1),3)",
    "io_inp": [
      -3,
      -1,
      0,
      -4,
      -3
    ],
    "io_out": [
      0,
      3,
      9,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-1),3)"
  },
  {
    "input": "input : list = [-3, -5, 3, -4, 3]\noutput : list = [180, 135, 90, -180, -180]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(mul_n([-3, -5, 3, -4, 3],-3),3),-3),-5))",
    "io_inp": [
      -3,
      -5,
      3,
      -4,
      3
    ],
    "io_out": [
      180,
      135,
      90,
      -180,
      -180
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(mul_n(input,-3),3),-3),-5))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-26, -18]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n([2, 4],-3),-2),1)),2)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -26,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n(input,-3),-2),1)),2)"
  },
  {
    "input": "input : list = [4, 3, 1, -4]\noutput : list = [1, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(drop([4, 3, 1, -4],1)),22),5))",
    "io_inp": [
      4,
      3,
      1,
      -4
    ],
    "io_out": [
      1,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(drop(input,1)),22),5))"
  },
  {
    "input": "input : list = [-1, -4, 0, 4, 2]\noutput : list = [19, 9, -1, -6, -21]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(reverse([-1, -4, 0, 4, 2])),5)),-1)",
    "io_inp": [
      -1,
      -4,
      0,
      4,
      2
    ],
    "io_out": [
      19,
      9,
      -1,
      -6,
      -21
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(reverse(input)),5)),-1)"
  },
  {
    "input": "input : list = [4, 4, 0, 0, 1, 1]\noutput : list = [0, 0, 1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(sub_n([4, 4, 0, 0, 1, 1],-1)),36),-1))",
    "io_inp": [
      4,
      4,
      0,
      0,
      1,
      1
    ],
    "io_out": [
      0,
      0,
      1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(sub_n(input,-1)),36),-1))"
  },
  {
    "input": "input : list = [2, -1, 4, 0, 3]\noutput : list = [-14, -11, -8, -2, 1]",
    "output": "generated_output : list = sort_asc(add_n(take(mul_n(mul_n([2, -1, 4, 0, 3],3),-1),24),-2))",
    "io_inp": [
      2,
      -1,
      4,
      0,
      3
    ],
    "io_out": [
      -14,
      -11,
      -8,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(mul_n(mul_n(input,3),-1),24),-2))"
  },
  {
    "input": "input : list = [2, 3, -2, -2, -4, 5]\noutput : list = [-4, -2, -2, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([2, 3, -2, -2, -4, 5])",
    "io_inp": [
      2,
      3,
      -2,
      -2,
      -4,
      5
    ],
    "io_out": [
      -4,
      -2,
      -2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-2, -10]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-4, 4]),1),-5)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),1),-5)"
  },
  {
    "input": "input : list = [2, 1, 3, -3, 5, -3]\noutput : list = [3, -5]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(drop([2, 1, 3, -3, 5, -3],4)))),-1)",
    "io_inp": [
      2,
      1,
      3,
      -3,
      5,
      -3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(drop(input,4)))),-1)"
  },
  {
    "input": "input : list = [-1, -5, 2, -2, 4]\noutput : list = [-64, -32, 16, 32, 80]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_asc([-1, -5, 2, -2, 4]),-4)),4))",
    "io_inp": [
      -1,
      -5,
      2,
      -2,
      4
    ],
    "io_out": [
      -64,
      -32,
      16,
      32,
      80
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_asc(input),-4)),4))"
  },
  {
    "input": "input : list = [1, -3, -3, 4, -4, 2]\noutput : list = [-4, -2, -2, 6, 8, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(sub_n([1, -3, -3, 4, -4, 2],-1))),1),2)",
    "io_inp": [
      1,
      -3,
      -3,
      4,
      -4,
      2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      6,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(sub_n(input,-1))),1),2)"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [-5, -1, 19]",
    "output": "generated_output : list = add_n(take(mul_n(take(reverse([5, 0, -1]),15),4),27),-1)",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      -5,
      -1,
      19
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(take(reverse(input),15),4),27),-1)"
  },
  {
    "input": "input : list = [3, -4, 3, 4, 4, 0]\noutput : list = [6, 6, -1]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(take([3, -4, 3, 4, 4, 0],3),12),2)),1)",
    "io_inp": [
      3,
      -4,
      3,
      4,
      4,
      0
    ],
    "io_out": [
      6,
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(take(input,3),12),2)),1)"
  },
  {
    "input": "input : list = [3, 0, -2, 2, 5, 5]\noutput : list = [-60, -60, -36, -24, 0, 24]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(mul_n([3, 0, -2, 2, 5, 5],-4)),3)))",
    "io_inp": [
      3,
      0,
      -2,
      2,
      5,
      5
    ],
    "io_out": [
      -60,
      -60,
      -36,
      -24,
      0,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(mul_n(input,-4)),3)))"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [-5, 4, 0]",
    "output": "generated_output : list = reverse([0, 4, -5])",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4, -4, 3, 1, -2]\noutput : list = [3, 3, -3, -12, -18, -24]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(add_n([5, -4, -4, 3, 1, -2],-1)),-4),27),-3)",
    "io_inp": [
      5,
      -4,
      -4,
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      3,
      -3,
      -12,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(add_n(input,-1)),-4),27),-3)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [10, 2, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(sub_n([-2, -1, 3],-2))),2))",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      10,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(sub_n(input,-2))),2))"
  },
  {
    "input": "input : list = [0, -3, 3, 2, 3, -2]\noutput : list = [4, 2, -2, -6, -8, -8]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(sub_n([0, -3, 3, 2, 3, -2],-1)),-2)),38)",
    "io_inp": [
      0,
      -3,
      3,
      2,
      3,
      -2
    ],
    "io_out": [
      4,
      2,
      -2,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(sub_n(input,-1)),-2)),38)"
  },
  {
    "input": "input : list = [-3, 2, -1, -5]\noutput : list = [2, -1, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-3, 2, -1, -5]))",
    "io_inp": [
      -3,
      2,
      -1,
      -5
    ],
    "io_out": [
      2,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 5, 3, -3, -3, 3]\noutput : list = [7, 5, 5, 1, -1, -1]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(sub_n([-1, 5, 3, -3, -3, 3],4)),7),-1),-5)",
    "io_inp": [
      -1,
      5,
      3,
      -3,
      -3,
      3
    ],
    "io_out": [
      7,
      5,
      5,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(sub_n(input,4)),7),-1),-5)"
  },
  {
    "input": "input : list = [2, 1, 3, 0, 1, 4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sub_n(drop(sort_asc(drop([2, 1, 3, 0, 1, 4],2)),3),5))",
    "io_inp": [
      2,
      1,
      3,
      0,
      1,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(sort_asc(drop(input,2)),3),5))"
  },
  {
    "input": "input : list = [0, 2, -4, -4, -3]\noutput : list = [-4, -4, -3, 0, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(sort_asc([0, 2, -4, -4, -3])))),8)",
    "io_inp": [
      0,
      2,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(sort_asc(input)))),8)"
  },
  {
    "input": "input : list = [-1, -2, -3, -3, -5]\noutput : list = [-5, -3, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(mul_n([-1, -2, -3, -3, -5],1),-4),-4)))",
    "io_inp": [
      -1,
      -2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(mul_n(input,1),-4),-4)))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take(reverse([3, -4]),5)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [-4, 0, -4, -3, -4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sort_asc(drop(sub_n(drop([-4, 0, -4, -3, -4],2),-3),2)))",
    "io_inp": [
      -4,
      0,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(sub_n(drop(input,2),-3),2)))"
  },
  {
    "input": "input : list = [-2, -2, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = drop([-2, -2, 1, 0],2)",
    "io_inp": [
      -2,
      -2,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -4, -4, 4, 2, 1]\noutput : list = [-4, -4, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(drop([3, -4, -4, 4, 2, 1],1)),35)))",
    "io_inp": [
      3,
      -4,
      -4,
      4,
      2,
      1
    ],
    "io_out": [
      -4,
      -4,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(drop(input,1)),35)))"
  },
  {
    "input": "input : list = [4, -1, 2]\noutput : list = [-1, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse([4, -1, 2]))",
    "io_inp": [
      4,
      -1,
      2
    ],
    "io_out": [
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_des([-3, 5])),2)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [3, 1, -5, 0]\noutput : list = [-4, -12, -36, -16]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(reverse([3, 1, -5, 0]),-4),4)),11)",
    "io_inp": [
      3,
      1,
      -5,
      0
    ],
    "io_out": [
      -4,
      -12,
      -36,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(reverse(input),-4),4)),11)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des([-3, -2])",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, 3, 0]\noutput : list = [-1, 0, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des([-1, 4, 3, 0]))))",
    "io_inp": [
      -1,
      4,
      3,
      0
    ],
    "io_out": [
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [3, -5, 5, -3]\noutput : list = [-101, -61, 59, 99]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(mul_n([3, -5, 5, -3],5),2),2),-1))",
    "io_inp": [
      3,
      -5,
      5,
      -3
    ],
    "io_out": [
      -101,
      -61,
      59,
      99
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(mul_n(input,5),2),2),-1))"
  },
  {
    "input": "input : list = [5, -4, 4, -4, 0]\noutput : list = [5, 4, 0, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc([5, -4, 4, -4, 0]))",
    "io_inp": [
      5,
      -4,
      4,
      -4,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 1, 0, 5]\noutput : list = [-3, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([-3, 1, 0, 5])",
    "io_inp": [
      -3,
      1,
      0,
      5
    ],
    "io_out": [
      -3,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, 1, 4, -5, -3]\noutput : list = [32, 28, 20, 8, 4, -4]",
    "output": "generated_output : list = mul_n(sort_des(add_n([3, -2, 1, 4, -5, -3],4)),4)",
    "io_inp": [
      3,
      -2,
      1,
      4,
      -5,
      -3
    ],
    "io_out": [
      32,
      28,
      20,
      8,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,4)),4)"
  },
  {
    "input": "input : list = [0, -4, 3, -1, 5, -1]\noutput : list = [10, -2]",
    "output": "generated_output : list = mul_n(drop([0, -4, 3, -1, 5, -1],4),2)",
    "io_inp": [
      0,
      -4,
      3,
      -1,
      5,
      -1
    ],
    "io_out": [
      10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,4),2)"
  },
  {
    "input": "input : list = [4, 3, 5, -4, 4]\noutput : list = [-4, 3, 4, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([4, 3, 5, -4, 4]))",
    "io_inp": [
      4,
      3,
      5,
      -4,
      4
    ],
    "io_out": [
      -4,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -1, 0, -3, -5]\noutput : list = [-4, -1, 0, -3, -5]",
    "output": "generated_output : list = mul_n([-4, -1, 0, -3, -5],1)",
    "io_inp": [
      -4,
      -1,
      0,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -1,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [4, 1, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_des([1, 5, 2])))),-1)",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [-5, 0, 5, -2]\noutput : list = [25, 0, -25, 10]",
    "output": "generated_output : list = take(reverse(take(mul_n(reverse([-5, 0, 5, -2]),-5),14)),39)",
    "io_inp": [
      -5,
      0,
      5,
      -2
    ],
    "io_out": [
      25,
      0,
      -25,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(reverse(input),-5),14)),39)"
  },
  {
    "input": "input : list = [5, 2, 2, -3]\noutput : list = [-3, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse([5, 2, 2, -3])),16))",
    "io_inp": [
      5,
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(input)),16))"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [6, 2, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(mul_n([-1, 0, 0],-1))),4),-2)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(mul_n(input,-1))),4),-2)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = sort_des([3, -3, 0])",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_des([-1, 1])),-1)),44)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(sort_des(input)),-1)),44)"
  },
  {
    "input": "input : list = [3, -2, 3, 2, 3]\noutput : list = [-2, -2, -2, -3, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des([3, -2, 3, 2, 3]))),-5)",
    "io_inp": [
      3,
      -2,
      3,
      2,
      3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(input))),-5)"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [6, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse([5, 0, -1]),1),1))",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      6,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(input),1),1))"
  },
  {
    "input": "input : list = [-1, -2, -2, 2]\noutput : list = [-3, -4, -4, 0]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(add_n([-1, -2, -2, 2],-4),4),3),6),-3)",
    "io_inp": [
      -1,
      -2,
      -2,
      2
    ],
    "io_out": [
      -3,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(add_n(input,-4),4),3),6),-3)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des([0, -2]))))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [0, -5, -1, -3, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = drop([0, -5, -1, -3, 4, 5],4)",
    "io_inp": [
      0,
      -5,
      -1,
      -3,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [5, 1, -3]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(reverse([5, 1, -3])))),45)",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(reverse(input)))),45)"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(add_n([3, 5, 0],-5),1)),-4))",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(add_n(input,-5),1)),-4))"
  },
  {
    "input": "input : list = [0, 2, 4, 3, -4, 1]\noutput : list = [-3, 1, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(reverse([0, 2, 4, 3, -4, 1]),1),-2),-2))",
    "io_inp": [
      0,
      2,
      4,
      3,
      -4,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(reverse(input),1),-2),-2))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(add_n([-3, -3],3),3)),2))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(add_n(input,3),3)),2))"
  },
  {
    "input": "input : list = [-3, -5, 5, -1]\noutput : list = [-17, -9, -1, 23]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(mul_n([-3, -5, 5, -1],4),-3))))",
    "io_inp": [
      -3,
      -5,
      5,
      -1
    ],
    "io_out": [
      -17,
      -9,
      -1,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(mul_n(input,4),-3))))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n(sort_des([5, 0]),4)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [2, -1, -4, -4]\noutput : list = [-3, -3, 0, 3]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(sub_n([2, -1, -4, -4],-2)),16),1))",
    "io_inp": [
      2,
      -1,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(sub_n(input,-2)),16),1))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(take(mul_n([0, -2],2),1),-5),5),-4)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(take(mul_n(input,2),1),-5),5),-4)"
  },
  {
    "input": "input : list = [-5, 2, -1, 4, 0, -5]\noutput : list = [0, 8, 16, 20, 36, 36]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n([-5, 2, -1, 4, 0, -5],4)))),-4)",
    "io_inp": [
      -5,
      2,
      -1,
      4,
      0,
      -5
    ],
    "io_out": [
      0,
      8,
      16,
      20,
      36,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n(input,4)))),-4)"
  },
  {
    "input": "input : list = [1, 2, 1, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sub_n(add_n(drop(reverse([1, 2, 1, -1]),3),1),-1))",
    "io_inp": [
      1,
      2,
      1,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(drop(reverse(input),3),1),-1))"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [-15, -3, 6]",
    "output": "generated_output : list = mul_n(sort_des([1, 5, -2]),-3)",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      -15,
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [-4, -2, -1, 5, 1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = drop([-4, -2, -1, 5, 1, 4],4)",
    "io_inp": [
      -4,
      -2,
      -1,
      5,
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [-3, 1, 3]",
    "output": "generated_output : list = reverse([3, 1, -3])",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 3, 1, -4]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(sort_asc(drop(sort_asc(sort_asc([-5, 5, 3, 1, -4])),3)),23)",
    "io_inp": [
      -5,
      5,
      3,
      1,
      -4
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(sort_asc(sort_asc(input)),3)),23)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sub_n(sort_des([-1, 2]),3)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-12, -3]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_asc([2, 5]))),1),-3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_asc(input))),1),-3)"
  },
  {
    "input": "input : list = [4, 2, -2, -1, 5, 0]\noutput : list = [24, 12, 0, -24, -48, -60]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(reverse([4, 2, -2, -1, 5, 0]))),-3),4)",
    "io_inp": [
      4,
      2,
      -2,
      -1,
      5,
      0
    ],
    "io_out": [
      24,
      12,
      0,
      -24,
      -48,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(reverse(input))),-3),4)"
  },
  {
    "input": "input : list = [4, -5, -4]\noutput : list = [9, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n(reverse([4, -5, -4]),-3),-2)))",
    "io_inp": [
      4,
      -5,
      -4
    ],
    "io_out": [
      9,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(reverse(input),-3),-2)))"
  },
  {
    "input": "input : list = [-4, 2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(take(drop([-4, 2, -2],1),17))",
    "io_inp": [
      -4,
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,1),17))"
  },
  {
    "input": "input : list = [2, 1, -2, -4, 1]\noutput : list = [-8, -12, -12, -24, -32]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(sort_asc([2, 1, -2, -4, 1]),-4)),4),7)",
    "io_inp": [
      2,
      1,
      -2,
      -4,
      1
    ],
    "io_out": [
      -8,
      -12,
      -12,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(sort_asc(input),-4)),4),7)"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = sort_des([-3, -4, -1])",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, -4, 3, 2, 2]\noutput : list = [-9, -8, -3, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse([4, -3, -4, 3, 2, 2]),2),3))",
    "io_inp": [
      4,
      -3,
      -4,
      3,
      2,
      2
    ],
    "io_out": [
      -9,
      -8,
      -3,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(input),2),3))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-45, -51]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(sub_n([1, 3],-4),5)),5),-3)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -45,
      -51
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(sub_n(input,-4),5)),5),-3)"
  },
  {
    "input": "input : list = [1, 0, 5, -5]\noutput : list = [25, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(drop([1, 0, 5, -5],2)))),-5)",
    "io_inp": [
      1,
      0,
      5,
      -5
    ],
    "io_out": [
      25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(drop(input,2)))),-5)"
  },
  {
    "input": "input : list = [2, -2, 2, 5, 2]\noutput : list = [-8, 8, -8, -20, -8]",
    "output": "generated_output : list = mul_n([2, -2, 2, 5, 2],-4)",
    "io_inp": [
      2,
      -2,
      2,
      5,
      2
    ],
    "io_out": [
      -8,
      8,
      -8,
      -20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3, 3, -4]\noutput : list = [18, 11, 11, 11]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_asc([3, 3, 3, -4]),-4),-1),-5),5)",
    "io_inp": [
      3,
      3,
      3,
      -4
    ],
    "io_out": [
      18,
      11,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_asc(input),-4),-1),-5),5)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(sub_n([-2, 0],-2),-2)),-1),4)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(sub_n(input,-2),-2)),-1),4)"
  },
  {
    "input": "input : list = [-5, -2, 5, -4, -3]\noutput : list = [-11, -8, -5, -2, 19]",
    "output": "generated_output : list = take(sort_asc(sub_n(mul_n(add_n([-5, -2, 5, -4, -3],3),3),5)),50)",
    "io_inp": [
      -5,
      -2,
      5,
      -4,
      -3
    ],
    "io_out": [
      -11,
      -8,
      -5,
      -2,
      19
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(mul_n(add_n(input,3),3),5)),50)"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(take([1, -1, 3],1)),23)),1)",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(take(input,1)),23)),1)"
  },
  {
    "input": "input : list = [3, -2, 3, -4, -5]\noutput : list = [-1, 0, 2, 7, 7]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(sort_des([3, -2, 3, -4, -5]),4),1)))",
    "io_inp": [
      3,
      -2,
      3,
      -4,
      -5
    ],
    "io_out": [
      -1,
      0,
      2,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(sort_des(input),4),1)))"
  },
  {
    "input": "input : list = [3, 1, 0, -4, -3]\noutput : list = [3, 1, 0, -3, -4]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(sort_des([3, 1, 0, -4, -3]))),1),43)",
    "io_inp": [
      3,
      1,
      0,
      -4,
      -3
    ],
    "io_out": [
      3,
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(sort_des(input))),1),43)"
  },
  {
    "input": "input : list = [-3, -1, 0, 1, 0, -3]\noutput : list = [0, -1, -1, -2, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(take(add_n(sort_asc([-3, -1, 0, 1, 0, -3]),-1),17)))",
    "io_inp": [
      -3,
      -1,
      0,
      1,
      0,
      -3
    ],
    "io_out": [
      0,
      -1,
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(add_n(sort_asc(input),-1),17)))"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [-5, -3, 4]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc([-3, 4, -5]))),14)",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      -5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(input))),14)"
  },
  {
    "input": "input : list = [1, 2, 2, -1, 2]\noutput : list = [-22, -16, -22, -22, -20]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n([1, 2, 2, -1, 2],5)),-4),-2)",
    "io_inp": [
      1,
      2,
      2,
      -1,
      2
    ],
    "io_out": [
      -22,
      -16,
      -22,
      -22,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(input,5)),-4),-2)"
  },
  {
    "input": "input : list = [-3, -5, 3, -4, 4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = drop([-3, -5, 3, -4, 4, -5],4)",
    "io_inp": [
      -3,
      -5,
      3,
      -4,
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-3, -5, -4, -3, -1]\noutput : list = [-5, -4, -3, -3, -1]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(sort_des([-3, -5, -4, -3, -1])))),19)",
    "io_inp": [
      -3,
      -5,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(sort_des(input)))),19)"
  },
  {
    "input": "input : list = [-3, 5, 1, -2, 3, 5]\noutput : list = [13, 7, -8]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(drop([-3, 5, 1, -2, 3, 5],3)),30),3),2)",
    "io_inp": [
      -3,
      5,
      1,
      -2,
      3,
      5
    ],
    "io_out": [
      13,
      7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(drop(input,3)),30),3),2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(reverse([-4, 5])),3)))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(reverse(input)),3)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des([4, 3])",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, -4, -2]\noutput : list = [3, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-3, 3, -4, -2])",
    "io_inp": [
      -3,
      3,
      -4,
      -2
    ],
    "io_out": [
      3,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 3, -2]\noutput : list = [-7]",
    "output": "generated_output : list = drop(sort_des(take(sub_n(sort_des([2, 3, -2]),5),8)),2)",
    "io_inp": [
      2,
      3,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = drop(sort_des(take(sub_n(sort_des(input),5),8)),2)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-12, -6]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(sort_asc([-3, 3]),1),4),4),21)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(sort_asc(input),1),4),4),21)"
  },
  {
    "input": "input : list = [5, -3, 0, -2, -1]\noutput : list = [-11, -3]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(take([5, -3, 0, -2, -1],2),-2),-5),-5))",
    "io_inp": [
      5,
      -3,
      0,
      -2,
      -1
    ],
    "io_out": [
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(take(input,2),-2),-5),-5))"
  },
  {
    "input": "input : list = [4, -3, -1, 2, 5, -1]\noutput : list = [2, 4, 4, 7, 9, 10]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(add_n([4, -3, -1, 2, 5, -1],3)),-2),9))",
    "io_inp": [
      4,
      -3,
      -1,
      2,
      5,
      -1
    ],
    "io_out": [
      2,
      4,
      4,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(add_n(input,3)),-2),9))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(add_n([-1, 0],-1)))))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [-2, 2, -4]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_asc(take([-2, 2, -4],1)),2)",
    "io_inp": [
      -2,
      2,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),2)"
  },
  {
    "input": "input : list = [4, 0, 1, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(drop([4, 0, 1, 0],2),2),15)))",
    "io_inp": [
      4,
      0,
      1,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(drop(input,2),2),15)))"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [8, 1, 2]",
    "output": "generated_output : list = sub_n([4, -3, -2],-4)",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      8,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(drop([-4, 5, 3],1))",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5, 4, 2, 2]\noutput : list = [2, 6, 6, 20, 20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sort_des([-5, -5, 4, 2, 2]),5),1),-1),-2)",
    "io_inp": [
      -5,
      -5,
      4,
      2,
      2
    ],
    "io_out": [
      2,
      6,
      6,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sort_des(input),5),1),-1),-2)"
  },
  {
    "input": "input : list = [-1, -2, -4, -1, 0]\noutput : list = [-7, -5, -4, -4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_asc([-1, -2, -4, -1, 0]),3))))",
    "io_inp": [
      -1,
      -2,
      -4,
      -1,
      0
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [0, -2, 4, -4, 1]\noutput : list = [0, -3, -4, -6, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n([0, -2, 4, -4, 1],4)))",
    "io_inp": [
      0,
      -2,
      4,
      -4,
      1
    ],
    "io_out": [
      0,
      -3,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,4)))"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [9, 3, -3]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc([-1, 3, 1]),2),-3)",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      9,
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(input),2),-3)"
  },
  {
    "input": "input : list = [0, -2, 3, 4, -2, 1]\noutput : list = [2, 2, 4, 5, 7, 8]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(add_n([0, -2, 3, 4, -2, 1],3))),-4),5)",
    "io_inp": [
      0,
      -2,
      3,
      4,
      -2,
      1
    ],
    "io_out": [
      2,
      2,
      4,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(add_n(input,3))),-4),5)"
  },
  {
    "input": "input : list = [-1, 2, 3, -2]\noutput : list = [-9, -6, 6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(drop([-1, 2, 3, -2],1),17)),-3))",
    "io_inp": [
      -1,
      2,
      3,
      -2
    ],
    "io_out": [
      -9,
      -6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(drop(input,1),17)),-3))"
  },
  {
    "input": "input : list = [4, -3, -1, -3, -2]\noutput : list = [-3, -3, -2, -1, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des([4, -3, -1, -3, -2])))",
    "io_inp": [
      4,
      -3,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [4, -2, 2, 5]\noutput : list = [5, 2, -2, 4]",
    "output": "generated_output : list = reverse([4, -2, 2, 5])",
    "io_inp": [
      4,
      -2,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(take([3, 5, 3],1)),-2),-1))",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(take(input,1)),-2),-1))"
  },
  {
    "input": "input : list = [-1, 4, -4, 2]\noutput : list = [4, 2, -1, -4]",
    "output": "generated_output : list = sort_des([-1, 4, -4, 2])",
    "io_inp": [
      -1,
      4,
      -4,
      2
    ],
    "io_out": [
      4,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, 4, 3, 2]\noutput : list = [0, 5]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(take([3, -2, 4, 3, 2],2)),-2)),39)",
    "io_inp": [
      3,
      -2,
      4,
      3,
      2
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(take(input,2)),-2)),39)"
  },
  {
    "input": "input : list = [1, 2, -2, -3]\noutput : list = [13, 21, -11, -19]",
    "output": "generated_output : list = add_n(take(take(mul_n(mul_n([1, 2, -2, -3],-4),-2),13),19),5)",
    "io_inp": [
      1,
      2,
      -2,
      -3
    ],
    "io_out": [
      13,
      21,
      -11,
      -19
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(mul_n(input,-4),-2),13),19),5)"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(drop([-4, 0, 0],1)),2),-4))",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(drop(input,1)),2),-4))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sub_n([2, -1],5)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-4, 3, 3, 2, 3]\noutput : list = [3, 2, 3, 3, -4]",
    "output": "generated_output : list = reverse([-4, 3, 3, 2, 3])",
    "io_inp": [
      -4,
      3,
      3,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      3,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, 0, 2, -4]\noutput : list = [-4, -5, 0]",
    "output": "generated_output : list = take(take([-4, -5, 0, 2, -4],3),13)",
    "io_inp": [
      -4,
      -5,
      0,
      2,
      -4
    ],
    "io_out": [
      -4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(take(input,3),13)"
  },
  {
    "input": "input : list = [4, -3, -1, 5, -5, -3]\noutput : list = [9, 2, 4, 10, 0, 2]",
    "output": "generated_output : list = add_n([4, -3, -1, 5, -5, -3],5)",
    "io_inp": [
      4,
      -3,
      -1,
      5,
      -5,
      -3
    ],
    "io_out": [
      9,
      2,
      4,
      10,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, -4, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = reverse(reverse(take(drop([3, -4, 0, 3],2),3)))",
    "io_inp": [
      3,
      -4,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(drop(input,2),3)))"
  },
  {
    "input": "input : list = [2, 5, -1, 3, 2]\noutput : list = [-25, -40, -10]",
    "output": "generated_output : list = sub_n(take(take(mul_n(sub_n([2, 5, -1, 3, 2],-4),-5),7),3),-5)",
    "io_inp": [
      2,
      5,
      -1,
      3,
      2
    ],
    "io_out": [
      -25,
      -40,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(sub_n(input,-4),-5),7),3),-5)"
  },
  {
    "input": "input : list = [-3, 2, -5, 0, 0]\noutput : list = [-6, -4, -1, -1, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(sort_asc([-3, 2, -5, 0, 0]),-1),16)))",
    "io_inp": [
      -3,
      2,
      -5,
      0,
      0
    ],
    "io_out": [
      -6,
      -4,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(sort_asc(input),-1),16)))"
  },
  {
    "input": "input : list = [4, 3, 5, 2, -5, -3]\noutput : list = [2, 1, 0, -1, -6, -8]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_des([4, 3, 5, 2, -5, -3])),5),-2))",
    "io_inp": [
      4,
      3,
      5,
      2,
      -5,
      -3
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_des(input)),5),-2))"
  },
  {
    "input": "input : list = [2, 5, 3, -1, -3]\noutput : list = [-6, -4, -1, 0, 2]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(sort_asc([2, 5, 3, -1, -3])),20),3))",
    "io_inp": [
      2,
      5,
      3,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(sort_asc(input)),20),3))"
  },
  {
    "input": "input : list = [-2, -2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = drop([-2, -2, -4],1)",
    "io_inp": [
      -2,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [3, 3, 7]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(reverse([1, 1, 5]),3),5),4))",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(reverse(input),3),5),4))"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [-7, 1, -6]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sub_n([-3, 4, -4],4)),17),-4),-5)",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      -7,
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sub_n(input,4)),17),-4),-5)"
  },
  {
    "input": "input : list = [5, 3, 0, 3]\noutput : list = [5, 3, 3, 0]",
    "output": "generated_output : list = sort_des([5, 3, 0, 3])",
    "io_inp": [
      5,
      3,
      0,
      3
    ],
    "io_out": [
      5,
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [-15, 5, 5]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des([-2, 2, -2]),-5),9),5)",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      -15,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(input),-5),9),5)"
  },
  {
    "input": "input : list = [4, 5, -1]\noutput : list = [3, 9, 8]",
    "output": "generated_output : list = reverse(reverse(reverse(add_n([4, 5, -1],4))))",
    "io_inp": [
      4,
      5,
      -1
    ],
    "io_out": [
      3,
      9,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(add_n(input,4))))"
  },
  {
    "input": "input : list = [-3, 2, -3, -2, 3, -3]\noutput : list = [-9, -4, -9, -8, -3, -9]",
    "output": "generated_output : list = sub_n(add_n(add_n(sub_n([-3, 2, -3, -2, 3, -3],2),4),-4),4)",
    "io_inp": [
      -3,
      2,
      -3,
      -2,
      3,
      -3
    ],
    "io_out": [
      -9,
      -4,
      -9,
      -8,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sub_n(input,2),4),-4),4)"
  },
  {
    "input": "input : list = [-3, 0, 4, -5, -3, -1]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(drop([-3, 0, 4, -5, -3, -1],3),3)),24))",
    "io_inp": [
      -3,
      0,
      4,
      -5,
      -3,
      -1
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(drop(input,3),3)),24))"
  },
  {
    "input": "input : list = [-4, -4, -2, 2, 3, 4]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(take([-4, -4, -2, 2, 3, 4],3)),3),42),-3)",
    "io_inp": [
      -4,
      -4,
      -2,
      2,
      3,
      4
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(take(input,3)),3),42),-3)"
  },
  {
    "input": "input : list = [-3, 1, 3, 1]\noutput : list = [10, 8, 8, 4]",
    "output": "generated_output : list = take(add_n(add_n(take(sort_des([-3, 1, 3, 1]),4),5),2),44)",
    "io_inp": [
      -3,
      1,
      3,
      1
    ],
    "io_out": [
      10,
      8,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(sort_des(input),4),5),2),44)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-6, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(reverse([2, -5])))),1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(reverse(input)))),1)"
  },
  {
    "input": "input : list = [-5, 2, 3, -2, 3]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(take([-5, 2, 3, -2, 3],1)),15)),-1)",
    "io_inp": [
      -5,
      2,
      3,
      -2,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(take(input,1)),15)),-1)"
  },
  {
    "input": "input : list = [2, -3, 3, -4, 0, -5]\noutput : list = [0, -1, -3, -6, -7, -8]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(add_n([2, -3, 3, -4, 0, -5],-5),2))))",
    "io_inp": [
      2,
      -3,
      3,
      -4,
      0,
      -5
    ],
    "io_out": [
      0,
      -1,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(add_n(input,-5),2))))"
  },
  {
    "input": "input : list = [-3, -1, -1, -2, -5]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(drop([-3, -1, -1, -2, -5],3),-2),2)),-2)",
    "io_inp": [
      -3,
      -1,
      -1,
      -2,
      -5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(drop(input,3),-2),2)),-2)"
  },
  {
    "input": "input : list = [-5, 4, 3, 5]\noutput : list = [13, -14, -11, -17]",
    "output": "generated_output : list = sub_n(add_n(mul_n([-5, 4, 3, 5],-3),3),5)",
    "io_inp": [
      -5,
      4,
      3,
      5
    ],
    "io_out": [
      13,
      -14,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-3),3),5)"
  },
  {
    "input": "input : list = [-1, 5, -5, 3, -3]\noutput : list = [1, -5, 5, -3, 3]",
    "output": "generated_output : list = mul_n([-1, 5, -5, 3, -3],-1)",
    "io_inp": [
      -1,
      5,
      -5,
      3,
      -3
    ],
    "io_out": [
      1,
      -5,
      5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, -3, 2]\noutput : list = [12, -8]",
    "output": "generated_output : list = sort_des(mul_n(drop([5, -3, 2],1),-4))",
    "io_inp": [
      5,
      -3,
      2
    ],
    "io_out": [
      12,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,1),-4))"
  },
  {
    "input": "input : list = [0, 5, -4, 1, -2]\noutput : list = [-6, -4, -2, -1, 3]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(reverse([0, 5, -4, 1, -2]),-1)),-1))",
    "io_inp": [
      0,
      5,
      -4,
      1,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(reverse(input),-1)),-1))"
  },
  {
    "input": "input : list = [-4, 0, 4]\noutput : list = [-1, 3, 7]",
    "output": "generated_output : list = add_n([-4, 0, 4],3)",
    "io_inp": [
      -4,
      0,
      4
    ],
    "io_out": [
      -1,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, -3, -1, -5, -4]\noutput : list = [-3, 1, -1, -3]",
    "output": "generated_output : list = reverse(add_n(take(reverse(reverse([-5, -3, -1, -5, -4])),4),2))",
    "io_inp": [
      -5,
      -3,
      -1,
      -5,
      -4
    ],
    "io_out": [
      -3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(reverse(input)),4),2))"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(add_n(take([0, -1, 3],1),-1))",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(input,1),-1))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des([3, 1])",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, 0, -2, -2, -2]\noutput : list = [-9, -3, 0, 6, 6, 6]",
    "output": "generated_output : list = mul_n(sort_des(reverse([3, 1, 0, -2, -2, -2])),-3)",
    "io_inp": [
      3,
      1,
      0,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -9,
      -3,
      0,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-3, 0, -1, -3, 4, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(drop([-3, 0, -1, -3, 4, 3],4),-5),-2),-5),3)",
    "io_inp": [
      -3,
      0,
      -1,
      -3,
      4,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(drop(input,4),-5),-2),-5),3)"
  },
  {
    "input": "input : list = [-4, -2, 2, 3, -1]\noutput : list = [-1, 1, 2, 5, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(add_n([-4, -2, 2, 3, -1],2)),-2),1))",
    "io_inp": [
      -4,
      -2,
      2,
      3,
      -1
    ],
    "io_out": [
      -1,
      1,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(add_n(input,2)),-2),1))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-28]",
    "output": "generated_output : list = mul_n(take(take(add_n(mul_n([3, -3],-4),-2),24),1),2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -28
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(mul_n(input,-4),-2),24),1),2)"
  },
  {
    "input": "input : list = [4, 3, 5, -1, -3]\noutput : list = [-20, -16, -12, 4, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des([4, 3, 5, -1, -3]))),-4)",
    "io_inp": [
      4,
      3,
      5,
      -1,
      -3
    ],
    "io_out": [
      -20,
      -16,
      -12,
      4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(input))),-4)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des([1, -5]),2),11),4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(input),2),11),4)"
  },
  {
    "input": "input : list = [4, -4, 5, -5, -3]\noutput : list = [-8, -7, -6, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(reverse([4, -4, 5, -5, -3]))),3))",
    "io_inp": [
      4,
      -4,
      5,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(reverse(reverse(input))),3))"
  },
  {
    "input": "input : list = [2, 0, 3, 1]\noutput : list = [4, 2, 0, -2]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(sub_n([2, 0, 3, 1],2)),-2)),38)",
    "io_inp": [
      2,
      0,
      3,
      1
    ],
    "io_out": [
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(sub_n(input,2)),-2)),38)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse([-1, 1])",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2, -3]\noutput : list = [-10, -8, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-5, -2, -3]),1),5)",
    "io_inp": [
      -5,
      -2,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),1),5)"
  },
  {
    "input": "input : list = [-4, 0, 0, -1, -2]\noutput : list = [6, -6]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take([-4, 0, 0, -1, -2],2)),-2)),3)",
    "io_inp": [
      -4,
      0,
      0,
      -1,
      -2
    ],
    "io_out": [
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take(input,2)),-2)),3)"
  },
  {
    "input": "input : list = [1, 3, 3, -3]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(take([1, 3, 3, -3],2),-4))),3)",
    "io_inp": [
      1,
      3,
      3,
      -3
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(take(input,2),-4))),3)"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-6, 15, 0]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(mul_n([-3, 4, -1],3),-5),27),1),3)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -6,
      15,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(mul_n(input,3),-5),27),1),3)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [-2, 10, 28]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_asc([-1, 1, -4]),-3),2),4))",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      -2,
      10,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_asc(input),-3),2),4))"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc([2, -3, 4])),2)))",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [-3, 4, -2]\noutput : list = [6, 0, -1]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des([-3, 4, -2]),16),1),-1)",
    "io_inp": [
      -3,
      4,
      -2
    ],
    "io_out": [
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(input),16),1),-1)"
  },
  {
    "input": "input : list = [5, -2, 5, -1, 2, 5]\noutput : list = [5, -30, 5, -25, -10, 5]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n([5, -2, 5, -1, 2, 5],-4)),5))",
    "io_inp": [
      5,
      -2,
      5,
      -1,
      2,
      5
    ],
    "io_out": [
      5,
      -30,
      5,
      -25,
      -10,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(input,-4)),5))"
  },
  {
    "input": "input : list = [-5, 2, 5, 4]\noutput : list = [11, 12]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(drop([-5, 2, 5, 4],2)),-4)),-3)",
    "io_inp": [
      -5,
      2,
      5,
      4
    ],
    "io_out": [
      11,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(drop(input,2)),-4)),-3)"
  },
  {
    "input": "input : list = [-2, 2, 3, -1, -2, -4]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take([-2, 2, 3, -1, -2, -4],2)",
    "io_inp": [
      -2,
      2,
      3,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 0, 2, -1]\noutput : list = [44, 32, 40, 28]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n([3, 0, 2, -1],1),-5),-4),24),4)",
    "io_inp": [
      3,
      0,
      2,
      -1
    ],
    "io_out": [
      44,
      32,
      40,
      28
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n(input,1),-5),-4),24),4)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [5, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_des([4, 0]),8)),5))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_des(input),8)),5))"
  },
  {
    "input": "input : list = [-3, -2, 0, 4, -5]\noutput : list = [10, 6, 4, 1]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(drop([-3, -2, 0, 4, -5],1)),-2)),4)",
    "io_inp": [
      -3,
      -2,
      0,
      4,
      -5
    ],
    "io_out": [
      10,
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(drop(input,1)),-2)),4)"
  },
  {
    "input": "input : list = [-5, -1, 2, 1]\noutput : list = [3, 4, 1, -3]",
    "output": "generated_output : list = reverse(sub_n([-5, -1, 2, 1],-2))",
    "io_inp": [
      -5,
      -1,
      2,
      1
    ],
    "io_out": [
      3,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(drop([-3, -1, -5],1)),-4),-5))",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(drop(input,1)),-4),-5))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-1, 6]",
    "output": "generated_output : list = take(take(reverse(add_n([4, -3],2)),15),5)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(input,2)),15),5)"
  },
  {
    "input": "input : list = [4, -4, 3]\noutput : list = [-4, 3, 4]",
    "output": "generated_output : list = take(sort_asc([4, -4, 3]),12)",
    "io_inp": [
      4,
      -4,
      3
    ],
    "io_out": [
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),12)"
  },
  {
    "input": "input : list = [-3, -3, 1, -4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(mul_n(drop([-3, -3, 1, -4, -2],3),1))",
    "io_inp": [
      -3,
      -3,
      1,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,3),1))"
  },
  {
    "input": "input : list = [5, 4, 3, 5]\noutput : list = [3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n(take(take(add_n([5, 4, 3, 5],-5),13),26),5))",
    "io_inp": [
      5,
      4,
      3,
      5
    ],
    "io_out": [
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(add_n(input,-5),13),26),5))"
  },
  {
    "input": "input : list = [3, -1, 4, -3, -2, -1]\noutput : list = [1, 2, 3, 3, 7, 8]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(sort_asc([3, -1, 4, -3, -2, -1]),4),6)),1)",
    "io_inp": [
      3,
      -1,
      4,
      -3,
      -2,
      -1
    ],
    "io_out": [
      1,
      2,
      3,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(sort_asc(input),4),6)),1)"
  },
  {
    "input": "input : list = [3, 5, -4]\noutput : list = [48, 80, -64]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([3, 5, -4],2),4),2)",
    "io_inp": [
      3,
      5,
      -4
    ],
    "io_out": [
      48,
      80,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,2),4),2)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(add_n(reverse([-5, 1]),1))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),1))"
  },
  {
    "input": "input : list = [0, -5, -1, 3, -2, 0]\noutput : list = [-8, -5, -4, -3, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n([0, -5, -1, 3, -2, 0],3))",
    "io_inp": [
      0,
      -5,
      -1,
      3,
      -2,
      0
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-1, 4, -5, -4, 3]\noutput : list = [3, 4, 7, 11, 12]",
    "output": "generated_output : list = add_n(take(sort_asc(add_n(sub_n([-1, 4, -5, -4, 3],-3),4)),35),1)",
    "io_inp": [
      -1,
      4,
      -5,
      -4,
      3
    ],
    "io_out": [
      3,
      4,
      7,
      11,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(add_n(sub_n(input,-3),4)),35),1)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse(reverse([1, 4]))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, -5, 3, 1]\noutput : list = [7, 1, 25, 10]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(reverse([0, -5, 3, 1]),-3),13),5),5)",
    "io_inp": [
      0,
      -5,
      3,
      1
    ],
    "io_out": [
      7,
      1,
      25,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(reverse(input),-3),13),5),5)"
  },
  {
    "input": "input : list = [4, -5, -2, -2]\noutput : list = [-40, -16, -16, 32]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(mul_n([4, -5, -2, -2],2),19)),4))",
    "io_inp": [
      4,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -40,
      -16,
      -16,
      32
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(mul_n(input,2),19)),4))"
  },
  {
    "input": "input : list = [0, -4, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(take([0, -4, 4],1),4)",
    "io_inp": [
      0,
      -4,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(take(input,1),4)"
  },
  {
    "input": "input : list = [-2, 2, -4, 0, 2, 4]\noutput : list = [7, 5, 5, 3, 1, -1]",
    "output": "generated_output : list = sub_n(reverse(take(take(sort_asc([-2, 2, -4, 0, 2, 4]),26),30)),-3)",
    "io_inp": [
      -2,
      2,
      -4,
      0,
      2,
      4
    ],
    "io_out": [
      7,
      5,
      5,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(sort_asc(input),26),30)),-3)"
  },
  {
    "input": "input : list = [-3, -1, -3, -4, 1, -5]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = sort_asc(take([-3, -1, -3, -4, 1, -5],3))",
    "io_inp": [
      -3,
      -1,
      -3,
      -4,
      1,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc(reverse([-2, -4])),-3)),1)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(reverse(input)),-3)),1)"
  },
  {
    "input": "input : list = [-4, -4, -4, -5, 3]\noutput : list = [-1, -8, -8, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(reverse([-4, -4, -4, -5, 3]),-4))",
    "io_inp": [
      -4,
      -4,
      -4,
      -5,
      3
    ],
    "io_out": [
      -1,
      -8,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [3, -3, 5]\noutput : list = [5, 3, -3]",
    "output": "generated_output : list = take(sort_des([3, -3, 5]),12)",
    "io_inp": [
      3,
      -3,
      5
    ],
    "io_out": [
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),12)"
  },
  {
    "input": "input : list = [-2, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(drop([-2, 3, 2],1),1))))",
    "io_inp": [
      -2,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [-2, -3, -5]\noutput : list = [0, -1, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(sort_des([-2, -3, -5]),13)),-2))",
    "io_inp": [
      -2,
      -3,
      -5
    ],
    "io_out": [
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(sort_des(input),13)),-2))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_des([-5, -5])",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse([-5, 0])",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -5, 3]\noutput : list = [4, -16, -28]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(reverse([0, -5, 3]),4),-4)))",
    "io_inp": [
      0,
      -5,
      3
    ],
    "io_out": [
      4,
      -16,
      -28
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(reverse(input),4),-4)))"
  },
  {
    "input": "input : list = [3, 3, 5, 2]\noutput : list = [9, 10, 10, 12]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(sub_n([3, 3, 5, 2],-5)))),2)",
    "io_inp": [
      3,
      3,
      5,
      2
    ],
    "io_out": [
      9,
      10,
      10,
      12
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(sub_n(input,-5)))),2)"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [10, -8, -20]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(mul_n([5, -1, -5],3)),5)))",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      10,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(mul_n(input,3)),5)))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse([1, 0])",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [16, 12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([3, 4])),4)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [4, 4, -2, 0, -3]\noutput : list = [9, 7, 3, -5, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(add_n([4, 4, -2, 0, -3],-2),-2))),-1)",
    "io_inp": [
      4,
      4,
      -2,
      0,
      -3
    ],
    "io_out": [
      9,
      7,
      3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(add_n(input,-2),-2))),-1)"
  },
  {
    "input": "input : list = [-5, 5, -1, -5]\noutput : list = [-19, -19, -7, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(mul_n([-5, 5, -1, -5],3),4),2),-2))",
    "io_inp": [
      -5,
      5,
      -1,
      -5
    ],
    "io_out": [
      -19,
      -19,
      -7,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(mul_n(input,3),4),2),-2))"
  },
  {
    "input": "input : list = [-1, 0, -3, -5]\noutput : list = [-1, -2, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(take(reverse([-1, 0, -3, -5]),7)),-1)",
    "io_inp": [
      -1,
      0,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(input),7)),-1)"
  },
  {
    "input": "input : list = [-2, -5, -5, 4, -3, -1]\noutput : list = [8, -2, -4, -6, -10, -10]",
    "output": "generated_output : list = take(take(sort_des(mul_n(sort_des([-2, -5, -5, 4, -3, -1]),2)),18),23)",
    "io_inp": [
      -2,
      -5,
      -5,
      4,
      -3,
      -1
    ],
    "io_out": [
      8,
      -2,
      -4,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(take(sort_des(mul_n(sort_des(input),2)),18),23)"
  },
  {
    "input": "input : list = [-3, 4, 2, 5, -5, 3]\noutput : list = [25, 15, -10, -15, -20, -25]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-3, 4, 2, 5, -5, 3])),-5)",
    "io_inp": [
      -3,
      4,
      2,
      5,
      -5,
      3
    ],
    "io_out": [
      25,
      15,
      -10,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [1, -4, -1, 4, 0]\noutput : list = [-12, -9, -8, -7, -4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(sort_des([1, -4, -1, 4, 0]),19),5)),-3)",
    "io_inp": [
      1,
      -4,
      -1,
      4,
      0
    ],
    "io_out": [
      -12,
      -9,
      -8,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(sort_des(input),19),5)),-3)"
  },
  {
    "input": "input : list = [1, 5, 5, -3]\noutput : list = [25, 13, 1, 1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n(sub_n([1, 5, 5, -3],3),-3),3)),-4)",
    "io_inp": [
      1,
      5,
      5,
      -3
    ],
    "io_out": [
      25,
      13,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(sub_n(input,3),-3),3)),-4)"
  },
  {
    "input": "input : list = [3, -2, -3, 2]\noutput : list = [8, 3, 2, 7]",
    "output": "generated_output : list = add_n([3, -2, -3, 2],5)",
    "io_inp": [
      3,
      -2,
      -3,
      2
    ],
    "io_out": [
      8,
      3,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-1, -1, -1, -5]\noutput : list = [-5, -1, -1, -1]",
    "output": "generated_output : list = sort_asc(reverse([-1, -1, -1, -5]))",
    "io_inp": [
      -1,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, 2, -1, 1]\noutput : list = [-2, -8, -11]",
    "output": "generated_output : list = sort_des(sort_asc(drop(sub_n(mul_n([-3, 2, -1, 1],-3),5),1)))",
    "io_inp": [
      -3,
      2,
      -1,
      1
    ],
    "io_out": [
      -2,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(sub_n(mul_n(input,-3),5),1)))"
  },
  {
    "input": "input : list = [1, 2, 4, 2]\noutput : list = [4, 2, 2, 1]",
    "output": "generated_output : list = sort_des([1, 2, 4, 2])",
    "io_inp": [
      1,
      2,
      4,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -3, 2, 1, 2]\noutput : list = [-2, -3, 2, 1, 2]",
    "output": "generated_output : list = take(reverse(take(reverse([-2, -3, 2, 1, 2]),14)),28)",
    "io_inp": [
      -2,
      -3,
      2,
      1,
      2
    ],
    "io_out": [
      -2,
      -3,
      2,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(input),14)),28)"
  },
  {
    "input": "input : list = [-3, -2, 5, -1]\noutput : list = [3, -15, 6, 9]",
    "output": "generated_output : list = mul_n(reverse([-3, -2, 5, -1]),-3)",
    "io_inp": [
      -3,
      -2,
      5,
      -1
    ],
    "io_out": [
      3,
      -15,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [1, 4, -2, -5, 5]\noutput : list = [0, 3, 6, 9, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(add_n([1, 4, -2, -5, 5],4),-4),4),-1))",
    "io_inp": [
      1,
      4,
      -2,
      -5,
      5
    ],
    "io_out": [
      0,
      3,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(add_n(input,4),-4),4),-1))"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [-3, -3, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(sort_asc([1, -3, -3]),17),27)))",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(sort_asc(input),17),27)))"
  },
  {
    "input": "input : list = [4, 5, 5, 2, 0]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(reverse(take([4, 5, 5, 2, 0],1)),3),5))",
    "io_inp": [
      4,
      5,
      5,
      2,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(reverse(take(input,1)),3),5))"
  },
  {
    "input": "input : list = [4, -4, 2, 4, -4, 2]\noutput : list = [5, -3, 3, 5, -3, 3]",
    "output": "generated_output : list = add_n([4, -4, 2, 4, -4, 2],1)",
    "io_inp": [
      4,
      -4,
      2,
      4,
      -4,
      2
    ],
    "io_out": [
      5,
      -3,
      3,
      5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, 4, -2, 4, -2]\noutput : list = [4, 8, -4, 8, -4]",
    "output": "generated_output : list = mul_n([2, 4, -2, 4, -2],2)",
    "io_inp": [
      2,
      4,
      -2,
      4,
      -2
    ],
    "io_out": [
      4,
      8,
      -4,
      8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [12, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sub_n([-3, -3],3)),2),5),-4)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sub_n(input,3)),2),5),-4)"
  },
  {
    "input": "input : list = [-2, -2, -2]\noutput : list = [1, 1, 1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n([-2, -2, -2],-1)),1)))",
    "io_inp": [
      -2,
      -2,
      -2
    ],
    "io_out": [
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n(input,-1)),1)))"
  },
  {
    "input": "input : list = [5, 1, -4, -1, -2]\noutput : list = [4, -16, -4, -8]",
    "output": "generated_output : list = mul_n(take(drop([5, 1, -4, -1, -2],1),9),4)",
    "io_inp": [
      5,
      1,
      -4,
      -1,
      -2
    ],
    "io_out": [
      4,
      -16,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(input,1),9),4)"
  },
  {
    "input": "input : list = [1, 4, -1, -1, 0, 3]\noutput : list = [-3, -3, 0, 3, 9, 12]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(mul_n([1, 4, -1, -1, 0, 3],3))),1))",
    "io_inp": [
      1,
      4,
      -1,
      -1,
      0,
      3
    ],
    "io_out": [
      -3,
      -3,
      0,
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(mul_n(input,3))),1))"
  },
  {
    "input": "input : list = [-1, 0, -1, 3]\noutput : list = [6, 6, 0, -18]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(sort_des([-1, 0, -1, 3]),-2))),3)",
    "io_inp": [
      -1,
      0,
      -1,
      3
    ],
    "io_out": [
      6,
      6,
      0,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(sort_des(input),-2))),3)"
  },
  {
    "input": "input : list = [-1, 4, -1, 1]\noutput : list = [-6, -1, -6, -4]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(sub_n([-1, 4, -1, 1],1),-1))),5)",
    "io_inp": [
      -1,
      4,
      -1,
      1
    ],
    "io_out": [
      -6,
      -1,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(sub_n(input,1),-1))),5)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-2, 6]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n([5, -3],1)),1),-1)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(input,1)),1),-1)"
  },
  {
    "input": "input : list = [4, 3, 0, 4, 0, -1]\noutput : list = [6, 2, -10, 6, -10, -14]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(add_n([4, 3, 0, 4, 0, -1],1),-4),4),5),-3)",
    "io_inp": [
      4,
      3,
      0,
      4,
      0,
      -1
    ],
    "io_out": [
      6,
      2,
      -10,
      6,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(add_n(input,1),-4),4),5),-3)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [-32, -32, 48]",
    "output": "generated_output : list = mul_n(mul_n([2, 2, -3],4),-4)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      -32,
      -32,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),-4)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [6, 24, 24]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n(reverse([4, -2, 4]),4),11)),3)",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      6,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(reverse(input),4),11)),3)"
  },
  {
    "input": "input : list = [-1, -5, -3, 0]\noutput : list = [-2, -5, -7, -3]",
    "output": "generated_output : list = take(take(reverse(sub_n(add_n([-1, -5, -3, 0],-5),-3)),40),24)",
    "io_inp": [
      -1,
      -5,
      -3,
      0
    ],
    "io_out": [
      -2,
      -5,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(sub_n(add_n(input,-5),-3)),40),24)"
  },
  {
    "input": "input : list = [-3, -5, -5, 2, 3]\noutput : list = [-5, -5, -3, 2, 3]",
    "output": "generated_output : list = sort_asc([-3, -5, -5, 2, 3])",
    "io_inp": [
      -3,
      -5,
      -5,
      2,
      3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, -1, 4]\noutput : list = [-18, -18, 22, 30]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(mul_n([-1, 5, -1, 4],-4)),8),5),-2)",
    "io_inp": [
      -1,
      5,
      -1,
      4
    ],
    "io_out": [
      -18,
      -18,
      22,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(mul_n(input,-4)),8),5),-2)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [8, 4]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(reverse([2, 4])),2)),25)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(reverse(input)),2)),25)"
  },
  {
    "input": "input : list = [-5, -4, -3, -2]\noutput : list = [-4, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(reverse([-5, -4, -3, -2]),1),3),-3))",
    "io_inp": [
      -5,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(reverse(input),1),3),-3))"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [0, 0, 2]",
    "output": "generated_output : list = reverse(take(sort_des(take(sort_des([0, 2, 0]),12)),19))",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(sort_des(input),12)),19))"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 4, 3],1)",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -3, -3]\noutput : list = [8, 3, 1, 1]",
    "output": "generated_output : list = add_n(sort_des([-1, 4, -3, -3]),4)",
    "io_inp": [
      -1,
      4,
      -3,
      -3
    ],
    "io_out": [
      8,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-16, 12]",
    "output": "generated_output : list = mul_n(reverse([3, -4]),4)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-1, 2, -5]\noutput : list = [5, 1, -2]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(sort_asc([-1, 2, -5]),-1),25)))",
    "io_inp": [
      -1,
      2,
      -5
    ],
    "io_out": [
      5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(sort_asc(input),-1),25)))"
  },
  {
    "input": "input : list = [-3, -1, 0, 4, -2]\noutput : list = [-3, 1, 9]",
    "output": "generated_output : list = sort_asc(add_n(reverse(mul_n(take([-3, -1, 0, 4, -2],3),-4)),-3))",
    "io_inp": [
      -3,
      -1,
      0,
      4,
      -2
    ],
    "io_out": [
      -3,
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(mul_n(take(input,3),-4)),-3))"
  },
  {
    "input": "input : list = [-2, 4, 0, -1, 4]\noutput : list = [2, 0]",
    "output": "generated_output : list = add_n(mul_n(take(take(sort_asc([-2, 4, 0, -1, 4]),2),12),-2),-2)",
    "io_inp": [
      -2,
      4,
      0,
      -1,
      4
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(sort_asc(input),2),12),-2),-2)"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [-9, -4, -1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_asc([-4, 1, 4])),3),-2))",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      -9,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_asc(input)),3),-2))"
  },
  {
    "input": "input : list = [-3, -5, -5, 4]\noutput : list = [-15, -15, -5, 30]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(sub_n([-3, -5, -5, 4],1),3),5),9))",
    "io_inp": [
      -3,
      -5,
      -5,
      4
    ],
    "io_out": [
      -15,
      -15,
      -5,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(sub_n(input,1),3),5),9))"
  },
  {
    "input": "input : list = [-1, 3, -1, 3, -3]\noutput : list = [-3, 3, -1, 3, -1]",
    "output": "generated_output : list = reverse([-1, 3, -1, 3, -3])",
    "io_inp": [
      -1,
      3,
      -1,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      -1,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 4, 1, 2, -3]\noutput : list = [1, 1, -1, -2, -6]",
    "output": "generated_output : list = sort_des(sub_n([4, 4, 1, 2, -3],3))",
    "io_inp": [
      4,
      4,
      1,
      2,
      -3
    ],
    "io_out": [
      1,
      1,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sort_asc([1, -1])))),26)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sort_asc(input)))),26)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-7, -2]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(reverse([4, -1]),3),2)),-3)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(reverse(input),3),2)),-3)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(reverse([2, 4]))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [4, 3, -5, -5]\noutput : list = [-5, -5, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, 3, -5, -5]))",
    "io_inp": [
      4,
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [6, -8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(sub_n([-3, 4],-2),-2),2)),-1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(sub_n(input,-2),-2),2)),-1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-10, 15]",
    "output": "generated_output : list = take(mul_n([2, -3],-5),5)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -10,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),5)"
  },
  {
    "input": "input : list = [1, -1, 1, 1, 2, 5]\noutput : list = [5, 2, 1, 1, -1, 1]",
    "output": "generated_output : list = reverse([1, -1, 1, 1, 2, 5])",
    "io_inp": [
      1,
      -1,
      1,
      1,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      1,
      1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -4, 1, -1]\noutput : list = [3, 12, -3, 3]",
    "output": "generated_output : list = mul_n([-1, -4, 1, -1],-3)",
    "io_inp": [
      -1,
      -4,
      1,
      -1
    ],
    "io_out": [
      3,
      12,
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, -3, -3]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = add_n([2, -3, -3],1)",
    "io_inp": [
      2,
      -3,
      -3
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, 4, 5, 1, -2, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(drop(sub_n(add_n(take([1, 4, 5, 1, -2, -1],4),-4),2),2))",
    "io_inp": [
      1,
      4,
      5,
      1,
      -2,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(add_n(take(input,4),-4),2),2))"
  },
  {
    "input": "input : list = [-4, 4, 0, -3]\noutput : list = [7, 10, 14, 6]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n([-4, 4, 0, -3],2)),3),-5)",
    "io_inp": [
      -4,
      4,
      0,
      -3
    ],
    "io_out": [
      7,
      10,
      14,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(input,2)),3),-5)"
  },
  {
    "input": "input : list = [-5, -5, 0, 4, 3]\noutput : list = [-5, -5, 0, 3, 4]",
    "output": "generated_output : list = sort_asc([-5, -5, 0, 4, 3])",
    "io_inp": [
      -5,
      -5,
      0,
      4,
      3
    ],
    "io_out": [
      -5,
      -5,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [24, -1]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(mul_n([0, 5],5)),3),-4),1)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      24,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(mul_n(input,5)),3),-4),1)"
  },
  {
    "input": "input : list = [1, 2, -5, -4, -5]\noutput : list = [-5, -4, -5, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, -5, -4, -5])",
    "io_inp": [
      1,
      2,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -5,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, 2, 1, 1, 3]\noutput : list = [-1, -2, -3, -3, -7, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n([-4, -3, 2, 1, 1, 3],4)))",
    "io_inp": [
      -4,
      -3,
      2,
      1,
      1,
      3
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,4)))"
  },
  {
    "input": "input : list = [3, 2, -3, 1]\noutput : list = [1, -3, 2, 3]",
    "output": "generated_output : list = reverse([3, 2, -3, 1])",
    "io_inp": [
      3,
      2,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 1, 0, -3]\noutput : list = [12, 0, -4, -4]",
    "output": "generated_output : list = sort_des(mul_n(take(reverse(mul_n([1, 1, 0, -3],-1)),14),4))",
    "io_inp": [
      1,
      1,
      0,
      -3
    ],
    "io_out": [
      12,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(reverse(mul_n(input,-1)),14),4))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-17, -11]",
    "output": "generated_output : list = sub_n(mul_n([-4, -2],3),5)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -17,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),5)"
  },
  {
    "input": "input : list = [0, 4, 2, 0]\noutput : list = [6, 6, 8, 10]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(mul_n([0, 4, 2, 0],1),1)),5))",
    "io_inp": [
      0,
      4,
      2,
      0
    ],
    "io_out": [
      6,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(mul_n(input,1),1)),5))"
  },
  {
    "input": "input : list = [-3, 1, 0, 3, 3]\noutput : list = [1, -3]",
    "output": "generated_output : list = reverse(take([-3, 1, 0, 3, 3],2))",
    "io_inp": [
      -3,
      1,
      0,
      3,
      3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [6, 3]",
    "output": "generated_output : list = take(reverse(sub_n([0, 3],-3)),4)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,-3)),4)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([-5, 1]),-1))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [-3, 1, 4, 5, 1, 3]\noutput : list = [6, 9, 10, 6, 8]",
    "output": "generated_output : list = drop(add_n([-3, 1, 4, 5, 1, 3],5),1)",
    "io_inp": [
      -3,
      1,
      4,
      5,
      1,
      3
    ],
    "io_out": [
      6,
      9,
      10,
      6,
      8
    ],
    "output_masked": "generated_output : list = drop(add_n(input,5),1)"
  },
  {
    "input": "input : list = [2, -3, 3, 1, 1, -1]\noutput : list = [-1, 1, 1, 3, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, 3, 1, 1, -1])",
    "io_inp": [
      2,
      -3,
      3,
      1,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      1,
      3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-1, -4]",
    "output": "generated_output : list = add_n(take(take(reverse(add_n([-3, 0],-5)),8),16),4)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(add_n(input,-5)),8),16),4)"
  },
  {
    "input": "input : list = [0, -1, 1, -3, -4, -4]\noutput : list = [-8, -9, -9]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(drop([0, -1, 1, -3, -4, -4],3),5))),9)",
    "io_inp": [
      0,
      -1,
      1,
      -3,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(drop(input,3),5))),9)"
  },
  {
    "input": "input : list = [0, 2, 2, 3, -3]\noutput : list = [3, 5, 5, 6, 0]",
    "output": "generated_output : list = sub_n([0, 2, 2, 3, -3],-3)",
    "io_inp": [
      0,
      2,
      2,
      3,
      -3
    ],
    "io_out": [
      3,
      5,
      5,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [3, 2, -2, -2, -5, -4]\noutput : list = [6, 4, -4, -4, -8, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([3, 2, -2, -2, -5, -4])),2)",
    "io_inp": [
      3,
      2,
      -2,
      -2,
      -5,
      -4
    ],
    "io_out": [
      6,
      4,
      -4,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),2)"
  },
  {
    "input": "input : list = [-3, -5, 0, 3]\noutput : list = [0, -2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(take([-3, -5, 0, 3],2),11),1),1),5)",
    "io_inp": [
      -3,
      -5,
      0,
      3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(take(input,2),11),1),1),5)"
  },
  {
    "input": "input : list = [4, 2, 0, 1, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(sub_n(drop([4, 2, 0, 1, 1],3),1),14)",
    "io_inp": [
      4,
      2,
      0,
      1,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,3),1),14)"
  },
  {
    "input": "input : list = [3, 1, 1, -2, -5, 3]\noutput : list = [-5, -2, 1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([3, 1, 1, -2, -5, 3])",
    "io_inp": [
      3,
      1,
      1,
      -2,
      -5,
      3
    ],
    "io_out": [
      -5,
      -2,
      1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -4, 0, 2]\noutput : list = [48, 0, 0, -24]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_asc([0, -4, 0, 2])),3),-2),2)",
    "io_inp": [
      0,
      -4,
      0,
      2
    ],
    "io_out": [
      48,
      0,
      0,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_asc(input)),3),-2),2)"
  },
  {
    "input": "input : list = [-2, 5, 0, 3, -3]\noutput : list = [-68, -50, -23, -5, 4]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_des([-2, 5, 0, 3, -3]),3),3),-3),-4)",
    "io_inp": [
      -2,
      5,
      0,
      3,
      -3
    ],
    "io_out": [
      -68,
      -50,
      -23,
      -5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_des(input),3),3),-3),-4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [70, 55]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(mul_n([-3, -2],-3))),5),5)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      70,
      55
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(mul_n(input,-3))),5),5)"
  },
  {
    "input": "input : list = [-3, 0, -2, -1, 1]\noutput : list = [-5, -4, -3, -2, -1]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(sort_des([-3, 0, -2, -1, 1]))),-2),37)",
    "io_inp": [
      -3,
      0,
      -2,
      -1,
      1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(sort_des(input))),-2),37)"
  },
  {
    "input": "input : list = [0, 3, 1, -2]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_des(drop([0, 3, 1, -2],2)),-2),-2),-2)",
    "io_inp": [
      0,
      3,
      1,
      -2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_des(drop(input,2)),-2),-2),-2)"
  },
  {
    "input": "input : list = [-5, 4, -1, -1, 0]\noutput : list = [40, 80, 80, 90, 130]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n([-5, 4, -1, -1, 0],5),-4),-5),-2))",
    "io_inp": [
      -5,
      4,
      -1,
      -1,
      0
    ],
    "io_out": [
      40,
      80,
      80,
      90,
      130
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(add_n(input,5),-4),-5),-2))"
  },
  {
    "input": "input : list = [-1, 3, -3, 5, 5, 5]\noutput : list = [-7, -7, -7]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(drop([-1, 3, -3, 5, 5, 5],3),-2),3)))",
    "io_inp": [
      -1,
      3,
      -3,
      5,
      5,
      5
    ],
    "io_out": [
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(drop(input,3),-2),3)))"
  },
  {
    "input": "input : list = [2, 3, -5, 4, -2, 2]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 3, -5, 4, -2, 2],1)",
    "io_inp": [
      2,
      3,
      -5,
      4,
      -2,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 0, -2, -2]\noutput : list = [-4, -6, -6, -8]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(reverse([-4, 0, -2, -2]),-4))))",
    "io_inp": [
      -4,
      0,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(reverse(input),-4))))"
  },
  {
    "input": "input : list = [-2, -3, -1, -5, 2, -4]\noutput : list = [-3, -1, 0, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take([-2, -3, -1, -5, 2, -4],4))),-2)",
    "io_inp": [
      -2,
      -3,
      -1,
      -5,
      2,
      -4
    ],
    "io_out": [
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(input,4))),-2)"
  },
  {
    "input": "input : list = [-2, 0, -1]\noutput : list = [-15, -9, -12]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n([-2, 0, -1],5),3),-1),3)",
    "io_inp": [
      -2,
      0,
      -1
    ],
    "io_out": [
      -15,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(input,5),3),-1),3)"
  },
  {
    "input": "input : list = [-5, 1, -5, -2]\noutput : list = [0, 0, -15, -30]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(add_n([-5, 1, -5, -2],5),-1),5)))",
    "io_inp": [
      -5,
      1,
      -5,
      -2
    ],
    "io_out": [
      0,
      0,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(add_n(input,5),-1),5)))"
  },
  {
    "input": "input : list = [5, 1, 3, 5, 1]\noutput : list = [22, 22, 14, 6, 6]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des([5, 1, 3, 5, 1]),14),4),2)",
    "io_inp": [
      5,
      1,
      3,
      5,
      1
    ],
    "io_out": [
      22,
      22,
      14,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(input),14),4),2)"
  },
  {
    "input": "input : list = [5, -2, 3, 5, -2, 4]\noutput : list = [108, -54, 135, 81, -54, 135]",
    "output": "generated_output : list = take(mul_n(reverse(mul_n(mul_n([5, -2, 3, 5, -2, 4],-3),-3)),3),43)",
    "io_inp": [
      5,
      -2,
      3,
      5,
      -2,
      4
    ],
    "io_out": [
      108,
      -54,
      135,
      81,
      -54,
      135
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(mul_n(mul_n(input,-3),-3)),3),43)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(sort_asc([-4, -2]),-5))),-2)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(sort_asc(input),-5))),-2)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-2, 10]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sub_n([-5, -1],-4),16),3),2),3)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -2,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sub_n(input,-4),16),3),2),3)"
  },
  {
    "input": "input : list = [3, -4, -3, 1, -5, 5]\noutput : list = [12, 10, 8, 4, 3, 2]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(sub_n([3, -4, -3, 1, -5, 5],-2))),-5),58)",
    "io_inp": [
      3,
      -4,
      -3,
      1,
      -5,
      5
    ],
    "io_out": [
      12,
      10,
      8,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(sub_n(input,-2))),-5),58)"
  },
  {
    "input": "input : list = [2, -3, -4, -1, 5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(reverse(sort_asc(drop(take([2, -3, -4, -1, 5],3),2))),4)",
    "io_inp": [
      2,
      -3,
      -4,
      -1,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(drop(take(input,3),2))),4)"
  },
  {
    "input": "input : list = [0, -5, -5, -5, 2, -2]\noutput : list = [27, 12, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(drop([0, -5, -5, -5, 2, -2],3),-5)),-2),10)",
    "io_inp": [
      0,
      -5,
      -5,
      -5,
      2,
      -2
    ],
    "io_out": [
      27,
      12,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(drop(input,3),-5)),-2),10)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, -3]",
    "output": "generated_output : list = mul_n([0, -3],1)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [0, 0, 5]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(sort_des([-1, 0, 0]),9))),-5)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(sort_des(input),9))),-5)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-4, -6]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc([-1, -3]),3)),2)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(input),3)),2)"
  },
  {
    "input": "input : list = [0, 0, 5, 2, 0, -2]\noutput : list = [4, 6, 9]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sort_des([0, 0, 5, 2, 0, -2]),3)),3),-1)",
    "io_inp": [
      0,
      0,
      5,
      2,
      0,
      -2
    ],
    "io_out": [
      4,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sort_des(input),3)),3),-1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(sort_asc([-4, -1]),3)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sub_n([5, 1],3)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [9, 5, 3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n([5, -1, 1],-1),5)))",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      9,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(input,-1),5)))"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [7, 7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(drop([5, 4, 4],1)),-3)))",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(drop(input,1)),-3)))"
  },
  {
    "input": "input : list = [0, -1, 1, 3, -5, 5]\noutput : list = [-10, 2, 5, 8, 14, 20]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(sort_des([0, -1, 1, 3, -5, 5])),3)),-5)",
    "io_inp": [
      0,
      -1,
      1,
      3,
      -5,
      5
    ],
    "io_out": [
      -10,
      2,
      5,
      8,
      14,
      20
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(sort_des(input)),3)),-5)"
  },
  {
    "input": "input : list = [3, 1, 2, -4, -5]\noutput : list = [10, 8, -2, -4, -6]",
    "output": "generated_output : list = take(reverse(take(sort_asc(mul_n([3, 1, 2, -4, -5],-2)),28)),34)",
    "io_inp": [
      3,
      1,
      2,
      -4,
      -5
    ],
    "io_out": [
      10,
      8,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(mul_n(input,-2)),28)),34)"
  },
  {
    "input": "input : list = [0, -1, 0, 0, 1]\noutput : list = [-4, -5, -4, -4, -3]",
    "output": "generated_output : list = add_n([0, -1, 0, 0, 1],-4)",
    "io_inp": [
      0,
      -1,
      0,
      0,
      1
    ],
    "io_out": [
      -4,
      -5,
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -1, -5, -3]\noutput : list = [6, 5, 4, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sort_des([-2, -1, -5, -3]),-4))),3)",
    "io_inp": [
      -2,
      -1,
      -5,
      -3
    ],
    "io_out": [
      6,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sort_des(input),-4))),3)"
  },
  {
    "input": "input : list = [-2, -2, 2, -3, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take([-2, -2, 2, -3, -4],2)",
    "io_inp": [
      -2,
      -2,
      2,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 0, 0, -5]\noutput : list = [-5, 0, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, 0, -5])",
    "io_inp": [
      -1,
      0,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 2, -4, -2]\noutput : list = [-3, -4, -8, -10]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc([3, 2, -4, -2]),2)),-4)",
    "io_inp": [
      3,
      2,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(input),2)),-4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse([0, 4])",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, 2, -2, -5, 0]\noutput : list = [7, 2, 5, 1, -2, 3]",
    "output": "generated_output : list = sub_n(sub_n([4, -1, 2, -2, -5, 0],-5),2)",
    "io_inp": [
      4,
      -1,
      2,
      -2,
      -5,
      0
    ],
    "io_out": [
      7,
      2,
      5,
      1,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [4, -5, 5, -4, 2]\noutput : list = [1, -8, 2, -7, -1]",
    "output": "generated_output : list = take(reverse(take(reverse(add_n([4, -5, 5, -4, 2],-3)),20)),39)",
    "io_inp": [
      4,
      -5,
      5,
      -4,
      2
    ],
    "io_out": [
      1,
      -8,
      2,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(add_n(input,-3)),20)),39)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(reverse([-5, 1]),8)),-2))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(reverse(input),8)),-2))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [80, -40]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(mul_n([-4, 2],2)),-5),14),2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      80,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(mul_n(input,2)),-5),14),2)"
  },
  {
    "input": "input : list = [5, -2, 4, -1]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(add_n([5, -2, 4, -1],-2),1),29)),4)",
    "io_inp": [
      5,
      -2,
      4,
      -1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(add_n(input,-2),1),29)),4)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc([2, 4])",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, -2, 4]\noutput : list = [1, -5, -6, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse(sort_asc([-3, -3, -2, 4])),3)))",
    "io_inp": [
      -3,
      -3,
      -2,
      4
    ],
    "io_out": [
      1,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [5, -4, -2, -4, -1]\noutput : list = [32, -4, 4, -4, 8]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(reverse([5, -4, -2, -4, -1]),5),-2),4))",
    "io_inp": [
      5,
      -4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      32,
      -4,
      4,
      -4,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(reverse(input),5),-2),4))"
  },
  {
    "input": "input : list = [4, 0, 3, 0, 4]\noutput : list = [4, 0, 3, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, 3, 0, 4])",
    "io_inp": [
      4,
      0,
      3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      3,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [5, 0]",
    "output": "generated_output : list = sub_n([4, -1],-1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, 2, 2, -1]\noutput : list = [2, 2, -1]",
    "output": "generated_output : list = take(sort_des(sort_asc(take(drop([2, 2, 2, -1],1),18))),13)",
    "io_inp": [
      2,
      2,
      2,
      -1
    ],
    "io_out": [
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(drop(input,1),18))),13)"
  },
  {
    "input": "input : list = [0, 4, -1, 4, 5]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n([0, 4, -1, 4, 5],2),3),1))",
    "io_inp": [
      0,
      4,
      -1,
      4,
      5
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(input,2),3),1))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [16, -2]",
    "output": "generated_output : list = reverse(mul_n(add_n(add_n(sub_n([-5, 4],-4),-3),3),2))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      16,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(add_n(sub_n(input,-4),-3),3),2))"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sub_n(sort_asc(drop([-2, 0, -4],1)),-3)",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(input,1)),-3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-3, -11]",
    "output": "generated_output : list = reverse(take(sub_n(take(add_n([-5, 3],-2),9),4),12))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -3,
      -11
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(add_n(input,-2),9),4),12))"
  },
  {
    "input": "input : list = [-1, -3, 1, 3, 4]\noutput : list = [7, 6, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(drop([-1, -3, 1, 3, 4],2))),2),-1)",
    "io_inp": [
      -1,
      -3,
      1,
      3,
      4
    ],
    "io_out": [
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(drop(input,2))),2),-1)"
  },
  {
    "input": "input : list = [4, 1, 5, -4, 0, 5]\noutput : list = [-4, 0, 1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([4, 1, 5, -4, 0, 5]))",
    "io_inp": [
      4,
      1,
      5,
      -4,
      0,
      5
    ],
    "io_out": [
      -4,
      0,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -5, -2, -5, 3, 1]\noutput : list = [-2, -2, 1, 2, 4, 6]",
    "output": "generated_output : list = reverse(sort_des(add_n(reverse(mul_n([-1, -5, -2, -5, 3, 1],1)),3)))",
    "io_inp": [
      -1,
      -5,
      -2,
      -5,
      3,
      1
    ],
    "io_out": [
      -2,
      -2,
      1,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(reverse(mul_n(input,1)),3)))"
  },
  {
    "input": "input : list = [-3, -4, 1, -1, 2]\noutput : list = [12, 9, 11, 6, 7]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n([-3, -4, 1, -1, 2],3),-2)),5)",
    "io_inp": [
      -3,
      -4,
      1,
      -1,
      2
    ],
    "io_out": [
      12,
      9,
      11,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(input,3),-2)),5)"
  },
  {
    "input": "input : list = [-2, 5, -3, -1, -3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(drop(reverse([-2, 5, -3, -1, -3]),3),-1)),3)",
    "io_inp": [
      -2,
      5,
      -3,
      -1,
      -3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(drop(reverse(input),3),-1)),3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [12, 52]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(add_n([-5, 3],-5),-5),2)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      12,
      52
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(add_n(input,-5),-5),2)))"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [2, -1, -5]",
    "output": "generated_output : list = reverse(mul_n(reverse([-2, 1, 5]),-1))",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(reverse([-2, -2]),12)),4))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(reverse(input),12)),4))"
  },
  {
    "input": "input : list = [0, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = drop([0, 2, 2],1)",
    "io_inp": [
      0,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 2, -3, 1, 2, -4]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = sort_des(take([-1, 2, -3, 1, 2, -4],3))",
    "io_inp": [
      -1,
      2,
      -3,
      1,
      2,
      -4
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [3, -1, -1, -3]\noutput : list = [-4, 0, 0, 8]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des(reverse([3, -1, -1, -3])),1)),2)",
    "io_inp": [
      3,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -4,
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(reverse(input)),1)),2)"
  },
  {
    "input": "input : list = [-4, 1, -1, 4, 0, 5]\noutput : list = [8, 2, 0, -2, -8, -10]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(reverse([-4, 1, -1, 4, 0, 5]))),-1),2)",
    "io_inp": [
      -4,
      1,
      -1,
      4,
      0,
      5
    ],
    "io_out": [
      8,
      2,
      0,
      -2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(reverse(input))),-1),2)"
  },
  {
    "input": "input : list = [-3, 2, -2]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(reverse([-3, 2, -2]),9))))",
    "io_inp": [
      -3,
      2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(reverse(input),9))))"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [1, -2, 4]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(reverse([5, -1, 2]),3),1),-2),23)",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      1,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(reverse(input),3),1),-2),23)"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(take(add_n(reverse(take([-2, -4, -3],1)),-1),10))",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(take(input,1)),-1),10))"
  },
  {
    "input": "input : list = [-4, 2, 2, 3, 2]\noutput : list = [16, -8, -8, -8, -12]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(mul_n([-4, 2, 2, 3, 2],-4))))",
    "io_inp": [
      -4,
      2,
      2,
      3,
      2
    ],
    "io_out": [
      16,
      -8,
      -8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(mul_n(input,-4))))"
  },
  {
    "input": "input : list = [3, 1, -3, 0, 0]\noutput : list = [-15, -3, -3, 1, 9]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(sub_n([3, 1, -3, 0, 0],2))),4),-5)",
    "io_inp": [
      3,
      1,
      -3,
      0,
      0
    ],
    "io_out": [
      -15,
      -3,
      -3,
      1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(sub_n(input,2))),4),-5)"
  },
  {
    "input": "input : list = [5, -4, 4, 3, -1]\noutput : list = [10, 9, 5, 2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(drop([5, -4, 4, 3, -1],1),-3)),3))",
    "io_inp": [
      5,
      -4,
      4,
      3,
      -1
    ],
    "io_out": [
      10,
      9,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(drop(input,1),-3)),3))"
  },
  {
    "input": "input : list = [5, -5, 0, 2, -1]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n([5, -5, 0, 2, -1],1),1),-1),5)",
    "io_inp": [
      5,
      -5,
      0,
      2,
      -1
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(input,1),1),-1),5)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [2, -1]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sort_asc([-5, -2]),4)),-2),2)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sort_asc(input),4)),-2),2)"
  },
  {
    "input": "input : list = [-2, 0, 5, -1, 1]\noutput : list = [-7, -9, -3, -8, -10]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(sub_n([-2, 0, 5, -1, 1],2),3),-5)),-4)",
    "io_inp": [
      -2,
      0,
      5,
      -1,
      1
    ],
    "io_out": [
      -7,
      -9,
      -3,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(sub_n(input,2),3),-5)),-4)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [144, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(take(mul_n([-4, 0],-3),9),-3),-4),35)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      144,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(mul_n(input,-3),9),-3),-4),35)"
  },
  {
    "input": "input : list = [-4, 3, -4, 0, 3]\noutput : list = [20, 20, 2, -22, -22]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(reverse([-4, 3, -4, 0, 3])),3),2),-2)",
    "io_inp": [
      -4,
      3,
      -4,
      0,
      3
    ],
    "io_out": [
      20,
      20,
      2,
      -22,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(reverse(input)),3),2),-2)"
  },
  {
    "input": "input : list = [5, 1, 5, 2, -4]\noutput : list = [-6, -6, 0, 2, 12]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(mul_n([5, 1, 5, 2, -4],-2))),4),7)",
    "io_inp": [
      5,
      1,
      5,
      2,
      -4
    ],
    "io_out": [
      -6,
      -6,
      0,
      2,
      12
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(mul_n(input,-2))),4),7)"
  },
  {
    "input": "input : list = [-3, 1, -5, 0]\noutput : list = [-2, 6, -6, 4]",
    "output": "generated_output : list = reverse(mul_n(add_n(take(reverse([-3, 1, -5, 0]),20),2),2))",
    "io_inp": [
      -3,
      1,
      -5,
      0
    ],
    "io_out": [
      -2,
      6,
      -6,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(reverse(input),20),2),2))"
  },
  {
    "input": "input : list = [-5, -3, -2, -5]\noutput : list = [2, 3, 5, 5]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([-5, -3, -2, -5]),-1))",
    "io_inp": [
      -5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [4, -3, 0, 1, 3, 5]\noutput : list = [-5, -2, -1, 1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc([4, -3, 0, 1, 3, 5]),2)",
    "io_inp": [
      4,
      -3,
      0,
      1,
      3,
      5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [2, -2, -1, 0]\noutput : list = [-8, 8]",
    "output": "generated_output : list = mul_n(take([2, -2, -1, 0],2),-4)",
    "io_inp": [
      2,
      -2,
      -1,
      0
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-4)"
  },
  {
    "input": "input : list = [0, 0, 2, 1, -4, -5]\noutput : list = [-5, -4, 0, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(reverse([0, 0, 2, 1, -4, -5]))),17))",
    "io_inp": [
      0,
      0,
      2,
      1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      0,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(reverse(input))),17))"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [2, -6, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(sort_des([5, -5, -3]))),3),28)",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      2,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(sort_des(input))),3),28)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-32, -12]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_asc([1, -4]),-4),3),-4))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -32,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(sort_asc(input),-4),3),-4))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [2, 8]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(reverse([4, 1])),11),2))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(reverse(input)),11),2))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [16, 16]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n([-5, -5],-3),15),4),-2)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(input,-3),15),4),-2)"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [6, 7, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc([5, 2, 1]),-1)),-4),2)",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_asc(input),-1)),-4),2)"
  },
  {
    "input": "input : list = [0, 5, 5, -1]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(take([0, 5, 5, -1],2))",
    "io_inp": [
      0,
      5,
      5,
      -1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [1, -5, 0, 3, 4]\noutput : list = [-20, -16, -8, -4, 16]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(sort_asc([1, -5, 0, 3, 4]),16)),1),-4)",
    "io_inp": [
      1,
      -5,
      0,
      3,
      4
    ],
    "io_out": [
      -20,
      -16,
      -8,
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(sort_asc(input),16)),1),-4)"
  },
  {
    "input": "input : list = [0, -2, 3, 1, -5, 3]\noutput : list = [-12, -6, -21, -15, 3, -21]",
    "output": "generated_output : list = mul_n(sub_n([0, -2, 3, 1, -5, 3],-4),-3)",
    "io_inp": [
      0,
      -2,
      3,
      1,
      -5,
      3
    ],
    "io_out": [
      -12,
      -6,
      -21,
      -15,
      3,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),-3)"
  },
  {
    "input": "input : list = [4, -4, -3, -4]\noutput : list = [24, 32]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(drop([4, -4, -3, -4],2),14),-1),-2),-4)",
    "io_inp": [
      4,
      -4,
      -3,
      -4
    ],
    "io_out": [
      24,
      32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(drop(input,2),14),-1),-2),-4)"
  },
  {
    "input": "input : list = [4, -2, 4, 3, 2]\noutput : list = [0, 8, 10, 12, 12]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n([4, -2, 4, 3, 2],2))),-4)",
    "io_inp": [
      4,
      -2,
      4,
      3,
      2
    ],
    "io_out": [
      0,
      8,
      10,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(input,2))),-4)"
  },
  {
    "input": "input : list = [3, 1, 5, -1, -1, 4]\noutput : list = [4, 4, -4, -12, -16, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(mul_n([3, 1, 5, -1, -1, 4],2)))),-2)",
    "io_inp": [
      3,
      1,
      5,
      -1,
      -1,
      4
    ],
    "io_out": [
      4,
      4,
      -4,
      -12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(mul_n(input,2)))),-2)"
  },
  {
    "input": "input : list = [-5, 1, -2, 1, 5]\noutput : list = [5, 1, -2, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, -2, 1, 5])",
    "io_inp": [
      -5,
      1,
      -2,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 3, 0, -4, 4, -5]\noutput : list = [-14, 16]",
    "output": "generated_output : list = take(take(add_n(take(mul_n([-3, 3, 0, -4, 4, -5],5),19),1),27),2)",
    "io_inp": [
      -3,
      3,
      0,
      -4,
      4,
      -5
    ],
    "io_out": [
      -14,
      16
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(mul_n(input,5),19),1),27),2)"
  },
  {
    "input": "input : list = [3, -5, 5, -1, 2, -5]\noutput : list = [8, 8, -4, -13, -16, -22]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sub_n(mul_n([3, -5, 5, -1, 2, -5],-3),3)),4))",
    "io_inp": [
      3,
      -5,
      5,
      -1,
      2,
      -5
    ],
    "io_out": [
      8,
      8,
      -4,
      -13,
      -16,
      -22
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sub_n(mul_n(input,-3),3)),4))"
  },
  {
    "input": "input : list = [3, 2, 2, 3, 0]\noutput : list = [-4, -2, -2, -1, -1]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(reverse([3, 2, 2, 3, 0]),4)),23),39)",
    "io_inp": [
      3,
      2,
      2,
      3,
      0
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(reverse(input),4)),23),39)"
  },
  {
    "input": "input : list = [0, 5, -2, 4]\noutput : list = [5, 4, 0, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc([0, 5, -2, 4])),18))",
    "io_inp": [
      0,
      5,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(input)),18))"
  },
  {
    "input": "input : list = [1, 3, -4, -3, 5]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 3, -4, -3, 5],1)",
    "io_inp": [
      1,
      3,
      -4,
      -3,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -4, -3, -4, 0]\noutput : list = [-1, 0, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n([-5, -4, -3, -4, 0],4)))",
    "io_inp": [
      -5,
      -4,
      -3,
      -4,
      0
    ],
    "io_out": [
      -1,
      0,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,4)))"
  },
  {
    "input": "input : list = [-4, -3, -1, -4, -2]\noutput : list = [72, 56]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop([-4, -3, -1, -4, -2],3),5)),2),-4)",
    "io_inp": [
      -4,
      -3,
      -1,
      -4,
      -2
    ],
    "io_out": [
      72,
      56
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(drop(input,3),5)),2),-4)"
  },
  {
    "input": "input : list = [3, 4, 5, 0]\noutput : list = [3, 2, 1, -2]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(reverse([3, 4, 5, 0])),-2)),39)",
    "io_inp": [
      3,
      4,
      5,
      0
    ],
    "io_out": [
      3,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(reverse(input)),-2)),39)"
  },
  {
    "input": "input : list = [-5, 3, 0, -3, 1, -2]\noutput : list = [-9, -6]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(drop([-5, 3, 0, -3, 1, -2],4),4)),-3),4)",
    "io_inp": [
      -5,
      3,
      0,
      -3,
      1,
      -2
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(drop(input,4),4)),-3),4)"
  },
  {
    "input": "input : list = [4, 5, -2, 3, 0]\noutput : list = [-16, -20]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_asc(take([4, 5, -2, 3, 0],2)),11),-4),1)",
    "io_inp": [
      4,
      5,
      -2,
      3,
      0
    ],
    "io_out": [
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_asc(take(input,2)),11),-4),1)"
  },
  {
    "input": "input : list = [4, -5, -4, -5, 3]\noutput : list = [-2, -3, -10, -11, -11]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(sub_n([4, -5, -4, -5, 3],1)),-5)),29)",
    "io_inp": [
      4,
      -5,
      -4,
      -5,
      3
    ],
    "io_out": [
      -2,
      -3,
      -10,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(sub_n(input,1)),-5)),29)"
  },
  {
    "input": "input : list = [1, 0, 5, -5, -4]\noutput : list = [5, 1, 0, -4, -5]",
    "output": "generated_output : list = sort_des([1, 0, 5, -5, -4])",
    "io_inp": [
      1,
      0,
      5,
      -5,
      -4
    ],
    "io_out": [
      5,
      1,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des([2, -3]),-4),-4)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),-4),-4)"
  },
  {
    "input": "input : list = [-5, 0, 1, -1, -5, 3]\noutput : list = [8, 6, 5, 4, 0, 0]",
    "output": "generated_output : list = add_n(sort_des([-5, 0, 1, -1, -5, 3]),5)",
    "io_inp": [
      -5,
      0,
      1,
      -1,
      -5,
      3
    ],
    "io_out": [
      8,
      6,
      5,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [6, 1]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(add_n([5, 0],-3))),4))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(add_n(input,-3))),4))"
  },
  {
    "input": "input : list = [0, -1, 3, -3, -2]\noutput : list = [10, 25, 30, 35, 40]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(sort_des([0, -1, 3, -3, -2]),22),-5)),-5)",
    "io_inp": [
      0,
      -1,
      3,
      -3,
      -2
    ],
    "io_out": [
      10,
      25,
      30,
      35,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(sort_des(input),22),-5)),-5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [0, -7]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(sort_asc([-2, 5])),5)),6)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(sort_asc(input)),5)),6)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = drop([-2, -1, -5],1)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -2, 4, -1]\noutput : list = [-2, -2, -1, 4]",
    "output": "generated_output : list = sort_asc([-2, -2, 4, -1])",
    "io_inp": [
      -2,
      -2,
      4,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -3, 0],1)",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 4, 1, -1, 4, -5]\noutput : list = [-5, 4, -1, 1, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, 1, -1, 4, -5])",
    "io_inp": [
      -1,
      4,
      1,
      -1,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      -1,
      1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, 2, 0, -5]\noutput : list = [-15, -15, 0, 10, 35]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sub_n([5, 5, 2, 0, -5],3)),-5),-5))",
    "io_inp": [
      5,
      5,
      2,
      0,
      -5
    ],
    "io_out": [
      -15,
      -15,
      0,
      10,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_asc(sub_n(input,3)),-5),-5))"
  },
  {
    "input": "input : list = [5, 3, 1, -2, 0, 4]\noutput : list = [6, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(take([5, 3, 1, -2, 0, 4],2)),2)),36)",
    "io_inp": [
      5,
      3,
      1,
      -2,
      0,
      4
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(take(input,2)),2)),36)"
  },
  {
    "input": "input : list = [-2, -1, 2]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(reverse([-2, -1, 2])),-3)),1)",
    "io_inp": [
      -2,
      -1,
      2
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(reverse(input)),-3)),1)"
  },
  {
    "input": "input : list = [-4, -4, -1, 5]\noutput : list = [0, -6, -9, -9]",
    "output": "generated_output : list = reverse(add_n([-4, -4, -1, 5],-5))",
    "io_inp": [
      -4,
      -4,
      -1,
      5
    ],
    "io_out": [
      0,
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [1, 1, 4]",
    "output": "generated_output : list = sort_asc([1, 1, 4])",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, -3, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n(take(take([-1, 0, -3, 4],2),12),5)",
    "io_inp": [
      -1,
      0,
      -3,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(take(input,2),12),5)"
  },
  {
    "input": "input : list = [5, -3, -2, -2]\noutput : list = [5, -2, -2, -3]",
    "output": "generated_output : list = sort_des(take(sort_des([5, -3, -2, -2]),10))",
    "io_inp": [
      5,
      -3,
      -2,
      -2
    ],
    "io_out": [
      5,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),10))"
  },
  {
    "input": "input : list = [-5, -3, -2]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = sort_asc([-5, -3, -2])",
    "io_inp": [
      -5,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(add_n([-5, 1],-5)))),-5)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(add_n(input,-5)))),-5)"
  },
  {
    "input": "input : list = [0, -3, 2, -2, -5, -2]\noutput : list = [8, 6, 5, 5, 3, 1]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(add_n([0, -3, 2, -2, -5, -2],-3),-1),-1)),-1)",
    "io_inp": [
      0,
      -3,
      2,
      -2,
      -5,
      -2
    ],
    "io_out": [
      8,
      6,
      5,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(add_n(input,-3),-1),-1)),-1)"
  },
  {
    "input": "input : list = [-3, 1, 1, 1]\noutput : list = [-50, -50, -50, 30]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n([-3, 1, 1, 1],-4),-2),-4)),5)",
    "io_inp": [
      -3,
      1,
      1,
      1
    ],
    "io_out": [
      -50,
      -50,
      -50,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(mul_n(input,-4),-2),-4)),5)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [24, 24, -21]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(mul_n([5, 5, -4],5),7),4),3))",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      24,
      24,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(mul_n(input,5),7),4),3))"
  },
  {
    "input": "input : list = [-2, -1, -5, 3]\noutput : list = [-3, 0, 1, 5]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(add_n([-2, -1, -5, 3],3)),2),3))",
    "io_inp": [
      -2,
      -1,
      -5,
      3
    ],
    "io_out": [
      -3,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(add_n(input,3)),2),3))"
  },
  {
    "input": "input : list = [1, 2, -3, -5]\noutput : list = [-25, -15]",
    "output": "generated_output : list = mul_n(sort_asc(drop([1, 2, -3, -5],2)),5)",
    "io_inp": [
      1,
      2,
      -3,
      -5
    ],
    "io_out": [
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,2)),5)"
  },
  {
    "input": "input : list = [5, 4, -2, 5, 0, -1]\noutput : list = [24, 24, 21, 9, 6, 3]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(add_n([5, 4, -2, 5, 0, -1],3)),-3)),-1)",
    "io_inp": [
      5,
      4,
      -2,
      5,
      0,
      -1
    ],
    "io_out": [
      24,
      24,
      21,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(add_n(input,3)),-3)),-1)"
  },
  {
    "input": "input : list = [1, -4, -1, 5, 4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = drop([1, -4, -1, 5, 4, 1],4)",
    "io_inp": [
      1,
      -4,
      -1,
      5,
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-1, 3, -1, 5]\noutput : list = [2, 0, -4, -4]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(sort_asc([-1, 3, -1, 5]))),3),43)",
    "io_inp": [
      -1,
      3,
      -1,
      5
    ],
    "io_out": [
      2,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(sort_asc(input))),3),43)"
  },
  {
    "input": "input : list = [-2, -4, 0, -1, 0, 4]\noutput : list = [-4, -2, -1, 0, 0, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(sort_des([-2, -4, 0, -1, 0, 4]))),23))",
    "io_inp": [
      -2,
      -4,
      0,
      -1,
      0,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(sort_des(input))),23))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n(sub_n([4, 1],5),4)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),4)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-8, 40]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc([3, -5]),3),-5),-2))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -8,
      40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc(input),3),-5),-2))"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [12, -6, -24]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(mul_n([0, -2, 2],3),2))),-3)",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      12,
      -6,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(mul_n(input,3),2))),-3)"
  },
  {
    "input": "input : list = [-1, 3, 5]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(take([-1, 3, 5],1),4)",
    "io_inp": [
      -1,
      3,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),4)"
  },
  {
    "input": "input : list = [2, 3, 4, 3, 2]\noutput : list = [4, 3, 3, 2, 2]",
    "output": "generated_output : list = sort_des([2, 3, 4, 3, 2])",
    "io_inp": [
      2,
      3,
      4,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -3, 3, 3, -5]\noutput : list = [-10, -6, 6, 6, 6]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(sort_asc([3, -3, 3, 3, -5])))),2)",
    "io_inp": [
      3,
      -3,
      3,
      3,
      -5
    ],
    "io_out": [
      -10,
      -6,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [1, 2, 5, 0]\noutput : list = [12, 8, -4, 16]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(add_n([1, 2, 5, 0],-4),13),1),-1),4)",
    "io_inp": [
      1,
      2,
      5,
      0
    ],
    "io_out": [
      12,
      8,
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(add_n(input,-4),13),1),-1),4)"
  },
  {
    "input": "input : list = [4, 0, 3, 4]\noutput : list = [0, -9, -12, -12]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n([4, 0, 3, 4],-3))),14)",
    "io_inp": [
      4,
      0,
      3,
      4
    ],
    "io_out": [
      0,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(input,-3))),14)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(sort_des([4, -1])),-5),1),1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(sort_des(input)),-5),1),1)"
  },
  {
    "input": "input : list = [5, -1, -3, 1]\noutput : list = [-8, -12, -10, -4]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(reverse([5, -1, -3, 1]),2),-5),-2),48)",
    "io_inp": [
      5,
      -1,
      -3,
      1
    ],
    "io_out": [
      -8,
      -12,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(reverse(input),2),-5),-2),48)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-4, 24]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sub_n([-3, 4],5),-2),-4)),23)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -4,
      24
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sub_n(input,5),-2),-4)),23)"
  },
  {
    "input": "input : list = [-5, 3, -3]\noutput : list = [-5, -3, 3]",
    "output": "generated_output : list = reverse(sort_des([-5, 3, -3]))",
    "io_inp": [
      -5,
      3,
      -3
    ],
    "io_out": [
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 3, 3, -4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(reverse(drop(sub_n(mul_n([-4, 3, 3, -4],-2),3),3)))",
    "io_inp": [
      -4,
      3,
      3,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(sub_n(mul_n(input,-2),3),3)))"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-40, -24, 40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des(reverse([5, -3, -5]))),4),2)",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -40,
      -24,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(reverse(input))),4),2)"
  },
  {
    "input": "input : list = [-1, 4, 0, -2]\noutput : list = [-2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc([-1, 4, 0, -2])",
    "io_inp": [
      -1,
      4,
      0,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1, -3, -1, 0]\noutput : list = [3, 2, -2, 0]",
    "output": "generated_output : list = take(sub_n([2, 1, -3, -1, 0],-1),4)",
    "io_inp": [
      2,
      1,
      -3,
      -1,
      0
    ],
    "io_out": [
      3,
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),4)"
  },
  {
    "input": "input : list = [-3, 2, -3, 4, 2, -4]\noutput : list = [11, -9, 11, -17, -9, 15]",
    "output": "generated_output : list = add_n(add_n(mul_n([-3, 2, -3, 4, 2, -4],-4),-3),2)",
    "io_inp": [
      -3,
      2,
      -3,
      4,
      2,
      -4
    ],
    "io_out": [
      11,
      -9,
      11,
      -17,
      -9,
      15
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,-4),-3),2)"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [-10, 35, 40]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(sub_n([5, 4, -5],-3))),5))",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      -10,
      35,
      40
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(sub_n(input,-3))),5))"
  },
  {
    "input": "input : list = [5, -3, 4, 5, 5]\noutput : list = [-25, -20, 15]",
    "output": "generated_output : list = take(drop(sort_asc(sort_asc(mul_n([5, -3, 4, 5, 5],-5))),2),26)",
    "io_inp": [
      5,
      -3,
      4,
      5,
      5
    ],
    "io_out": [
      -25,
      -20,
      15
    ],
    "output_masked": "generated_output : list = take(drop(sort_asc(sort_asc(mul_n(input,-5))),2),26)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc([-4, -4]),14))),1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sort_asc(input),14))),1)"
  },
  {
    "input": "input : list = [-1, 2, -4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 2, -4],1)",
    "io_inp": [
      -1,
      2,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [32, 64]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sort_des([-2, -4]),4),1),-4),23)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      32,
      64
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sort_des(input),4),1),-4),23)"
  },
  {
    "input": "input : list = [5, -2, -2, -2, 4, 1]\noutput : list = [3, 3, 3, 6, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(add_n([5, -2, -2, -2, 4, 1],5),19))))",
    "io_inp": [
      5,
      -2,
      -2,
      -2,
      4,
      1
    ],
    "io_out": [
      3,
      3,
      3,
      6,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(add_n(input,5),19))))"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-7, -2, -4]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(sub_n([-5, 0, -2],-4),1),2),-5),35)",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -7,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(sub_n(input,-4),1),2),-5),35)"
  },
  {
    "input": "input : list = [2, -2, 1, 3]\noutput : list = [3, -1, 2, 4]",
    "output": "generated_output : list = add_n([2, -2, 1, 3],1)",
    "io_inp": [
      2,
      -2,
      1,
      3
    ],
    "io_out": [
      3,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 3, 4, -3]\noutput : list = [-4, 3, 4, -3]",
    "output": "generated_output : list = mul_n([-4, 3, 4, -3],1)",
    "io_inp": [
      -4,
      3,
      4,
      -3
    ],
    "io_out": [
      -4,
      3,
      4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, -2, -5, 2, 3, 0]\noutput : list = [23, 8, -2, -2, -12, -17]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc([0, -2, -5, 2, 3, 0]),-5))),2)",
    "io_inp": [
      0,
      -2,
      -5,
      2,
      3,
      0
    ],
    "io_out": [
      23,
      8,
      -2,
      -2,
      -12,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc(input),-5))),2)"
  },
  {
    "input": "input : list = [3, -3, 0]\noutput : list = [-6, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(drop([3, -3, 0],1),-5),-2)),1)",
    "io_inp": [
      3,
      -3,
      0
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(drop(input,1),-5),-2)),1)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(drop([-4, 1, 1],1),-1),-2),-4),4)",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(drop(input,1),-1),-2),-4),4)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [-18, -18, -21]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(sort_des([3, 2, 2]),-4)),-3))",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      -18,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(sort_des(input),-4)),-3))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = sub_n([3, 3],3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, 4, 3]\noutput : list = [3]",
    "output": "generated_output : list = reverse(take(take([3, 4, 3],1),8))",
    "io_inp": [
      3,
      4,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,1),8))"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [16, 8, -8]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n([4, 2, -2],4))),31)",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      16,
      8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(input,4))),31)"
  },
  {
    "input": "input : list = [-1, 5, -4, -2, 0, 0]\noutput : list = [4, -20, 16, 8, 0, 0]",
    "output": "generated_output : list = mul_n([-1, 5, -4, -2, 0, 0],-4)",
    "io_inp": [
      -1,
      5,
      -4,
      -2,
      0,
      0
    ],
    "io_out": [
      4,
      -20,
      16,
      8,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(sub_n([-4, -3],1),4),-4)),5)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(sub_n(input,1),4),-4)),5)"
  },
  {
    "input": "input : list = [-1, -4, 1, 5, 0]\noutput : list = [5, 1, 0, -1, -4]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(sort_des([-1, -4, 1, 5, 0])),-2),24),-2)",
    "io_inp": [
      -1,
      -4,
      1,
      5,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(sort_des(input)),-2),24),-2)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(add_n([3, 1],-3),9),-4),1))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(add_n(input,-3),9),-4),1))"
  },
  {
    "input": "input : list = [4, 1, -4, 5, 1]\noutput : list = [4, 3, 0, 0, -5]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc(sort_asc([4, 1, -4, 5, 1])),-2),1))",
    "io_inp": [
      4,
      1,
      -4,
      5,
      1
    ],
    "io_out": [
      4,
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(sort_asc(input)),-2),1))"
  },
  {
    "input": "input : list = [-1, -4, -1]\noutput : list = [-4, -1, -1]",
    "output": "generated_output : list = mul_n(sort_asc([-1, -4, -1]),1)",
    "io_inp": [
      -1,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-1, 1, -4, -2, -3]\noutput : list = [0, 1, 2, 3, 5]",
    "output": "generated_output : list = add_n(sort_asc([-1, 1, -4, -2, -3]),4)",
    "io_inp": [
      -1,
      1,
      -4,
      -2,
      -3
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-5, -4, 2, -1]\noutput : list = [15, 12, 3, -6]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(mul_n([-5, -4, 2, -1],-3),19))))",
    "io_inp": [
      -5,
      -4,
      2,
      -1
    ],
    "io_out": [
      15,
      12,
      3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(mul_n(input,-3),19))))"
  },
  {
    "input": "input : list = [3, 2, -4, 5]\noutput : list = [-8, -2, -1, 1]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n([3, 2, -4, 5],5)),10),1)",
    "io_inp": [
      3,
      2,
      -4,
      5
    ],
    "io_out": [
      -8,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(input,5)),10),1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-8, -10]",
    "output": "generated_output : list = sort_des(take(sort_des(sub_n(sort_asc([-5, -3]),5)),7))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sub_n(sort_asc(input),5)),7))"
  },
  {
    "input": "input : list = [-5, 3, 2]\noutput : list = [-6, -4, 10]",
    "output": "generated_output : list = mul_n(sort_des([-5, 3, 2]),-2)",
    "io_inp": [
      -5,
      3,
      2
    ],
    "io_out": [
      -6,
      -4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [1, -1, -3, 1, -4]\noutput : list = [-3, -3, 3, 9, 12]",
    "output": "generated_output : list = mul_n(sort_des(reverse([1, -1, -3, 1, -4])),-3)",
    "io_inp": [
      1,
      -1,
      -3,
      1,
      -4
    ],
    "io_out": [
      -3,
      -3,
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, -2, 2]))",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, -4, 4]\noutput : list = [1, 6, 9]",
    "output": "generated_output : list = add_n(take(sort_asc([1, -4, 4]),15),5)",
    "io_inp": [
      1,
      -4,
      4
    ],
    "io_out": [
      1,
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),15),5)"
  },
  {
    "input": "input : list = [-4, -3, -5, 1, 1, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(reverse(mul_n(drop(sort_asc([-4, -3, -5, 1, 1, -5]),4),-2)))",
    "io_inp": [
      -4,
      -3,
      -5,
      1,
      1,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(drop(sort_asc(input),4),-2)))"
  },
  {
    "input": "input : list = [5, -4, -1, 0, -3, -5]\noutput : list = [-5, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(drop([5, -4, -1, 0, -3, -5],3),19),33)))",
    "io_inp": [
      5,
      -4,
      -1,
      0,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(drop(input,3),19),33)))"
  },
  {
    "input": "input : list = [1, 0, -4, -3, 4]\noutput : list = [-2, -1, 2, 6]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(drop([1, 0, -4, -3, 4],1),-3))),-5)",
    "io_inp": [
      1,
      0,
      -4,
      -3,
      4
    ],
    "io_out": [
      -2,
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(drop(input,1),-3))),-5)"
  },
  {
    "input": "input : list = [-1, 1, -4, -4]\noutput : list = [1, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(drop([-1, 1, -4, -4],1))))",
    "io_inp": [
      -1,
      1,
      -4,
      -4
    ],
    "io_out": [
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(drop(input,1))))"
  },
  {
    "input": "input : list = [1, -2, -5, -4, -3]\noutput : list = [4, 1]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(take([1, -2, -5, -4, -3],2)),9),-1),2)",
    "io_inp": [
      1,
      -2,
      -5,
      -4,
      -3
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(take(input,2)),9),-1),2)"
  },
  {
    "input": "input : list = [0, 5, -1, 4]\noutput : list = [-21]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(reverse([0, 5, -1, 4]),5),-2),1),3)",
    "io_inp": [
      0,
      5,
      -1,
      4
    ],
    "io_out": [
      -21
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(reverse(input),5),-2),1),3)"
  },
  {
    "input": "input : list = [-3, 1, 5, 2, 0, -3]\noutput : list = [-5, -5, -2, -1, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(add_n([-3, 1, 5, 2, 0, -3],-2),27))))",
    "io_inp": [
      -3,
      1,
      5,
      2,
      0,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(add_n(input,-2),27))))"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [-5, 2, 3]",
    "output": "generated_output : list = sort_asc([2, -5, 3])",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      -5,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [7, 7]",
    "output": "generated_output : list = sub_n(drop([-1, 5, 5],1),-2)",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [-2, 5, -4, 1, -1]\noutput : list = [-5, 30, -15, 10, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n([-2, 5, -4, 1, -1],1)),5))",
    "io_inp": [
      -2,
      5,
      -4,
      1,
      -1
    ],
    "io_out": [
      -5,
      30,
      -15,
      10,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(input,1)),5))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(take(take(sub_n(sort_des([5, 4]),5),9),8),31)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(sort_des(input),5),9),8),31)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-8, -4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(add_n([-1, -5],2)),5)),1)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(add_n(input,2)),5)),1)"
  },
  {
    "input": "input : list = [-5, 3, 2, 5, -5, -3]\noutput : list = [5, 5, 7, 12, 13, 15]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sub_n([-5, 3, 2, 5, -5, -3],-4)),1)),-5)",
    "io_inp": [
      -5,
      3,
      2,
      5,
      -5,
      -3
    ],
    "io_out": [
      5,
      5,
      7,
      12,
      13,
      15
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sub_n(input,-4)),1)),-5)"
  },
  {
    "input": "input : list = [2, 3, 1, 2]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(take([2, 3, 1, 2],1),-5),-2)),2)",
    "io_inp": [
      2,
      3,
      1,
      2
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(take(input,1),-5),-2)),2)"
  },
  {
    "input": "input : list = [2, 5, 1, -2, -5, 4]\noutput : list = [3, 6, 2, -1, -4, 5]",
    "output": "generated_output : list = add_n([2, 5, 1, -2, -5, 4],1)",
    "io_inp": [
      2,
      5,
      1,
      -2,
      -5,
      4
    ],
    "io_out": [
      3,
      6,
      2,
      -1,
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc([3, 4])",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, 5, -1, 1, -2]\noutput : list = [30, -60, -30, -75]",
    "output": "generated_output : list = mul_n(mul_n(drop(sub_n([-5, -2, 5, -1, 1, -2],3),2),-5),-3)",
    "io_inp": [
      -5,
      -2,
      5,
      -1,
      1,
      -2
    ],
    "io_out": [
      30,
      -60,
      -30,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(sub_n(input,3),2),-5),-3)"
  },
  {
    "input": "input : list = [5, 3, -3, 0, -2, 4]\noutput : list = [112, 92, 72, 12, -28, -48]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(sort_des([5, 3, -3, 0, -2, 4])),-5),-3),-4)",
    "io_inp": [
      5,
      3,
      -3,
      0,
      -2,
      4
    ],
    "io_out": [
      112,
      92,
      72,
      12,
      -28,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(sort_des(input)),-5),-3),-4)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [5, -1, -3]",
    "output": "generated_output : list = take(add_n(reverse(add_n(sort_asc([-1, -3, 5]),-5)),5),17)",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(sort_asc(input),-5)),5),17)"
  },
  {
    "input": "input : list = [0, 2, 0]\noutput : list = [-3, -9, -9]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(reverse([0, 2, 0]),3),-4),-5))",
    "io_inp": [
      0,
      2,
      0
    ],
    "io_out": [
      -3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(reverse(input),3),-4),-5))"
  },
  {
    "input": "input : list = [-3, 0, -3, -3, -2]\noutput : list = [0, -2, -3, -3, -3]",
    "output": "generated_output : list = sort_des([-3, 0, -3, -3, -2])",
    "io_inp": [
      -3,
      0,
      -3,
      -3,
      -2
    ],
    "io_out": [
      0,
      -2,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, -2]\noutput : list = [4, 2, -8]",
    "output": "generated_output : list = sort_des(take(take(mul_n(sort_des([-1, 4, -2]),-2),11),8))",
    "io_inp": [
      -1,
      4,
      -2
    ],
    "io_out": [
      4,
      2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(take(mul_n(sort_des(input),-2),11),8))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [5, 20]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n([4, -1],3),-3),3)),5)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      5,
      20
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(sub_n(input,3),-3),3)),5)"
  },
  {
    "input": "input : list = [4, 4, -5, 4]\noutput : list = [3, 3, 3, -15]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(mul_n([4, 4, -5, 4],-2),11),-5)),-1)",
    "io_inp": [
      4,
      4,
      -5,
      4
    ],
    "io_out": [
      3,
      3,
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(mul_n(input,-2),11),-5)),-1)"
  },
  {
    "input": "input : list = [2, -1, 2, -5, 3, -4]\noutput : list = [2, 1, 1, -2, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sort_des([2, -1, 2, -5, 3, -4]))),1))",
    "io_inp": [
      2,
      -1,
      2,
      -5,
      3,
      -4
    ],
    "io_out": [
      2,
      1,
      1,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [4, -4, -4]",
    "output": "generated_output : list = mul_n(sort_des([-1, 1, -1]),4)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-5, 2, -3, -2, 0, 2]\noutput : list = [-4, -4, -6, -8, -9, -11]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(sub_n([-5, 2, -3, -2, 0, 2],4),3)),19),-5)",
    "io_inp": [
      -5,
      2,
      -3,
      -2,
      0,
      2
    ],
    "io_out": [
      -4,
      -4,
      -6,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(sub_n(input,4),3)),19),-5)"
  },
  {
    "input": "input : list = [-4, 4, 2, 4, -1, -3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(take([-4, 4, 2, 4, -1, -3],1))",
    "io_inp": [
      -4,
      4,
      2,
      4,
      -1,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-4, 4, -3, -1, 0]\noutput : list = [4, 0, -1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-4, 4, -3, -1, 0]))",
    "io_inp": [
      -4,
      4,
      -3,
      -1,
      0
    ],
    "io_out": [
      4,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-8, 16]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(sort_asc([-4, 2]),-4),-3),3))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(sort_asc(input),-4),-3),3))"
  },
  {
    "input": "input : list = [1, 3, 4, -1, -5, 5]\noutput : list = [25, 5, -5, -15, -20, -25]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des([1, 3, 4, -1, -5, 5]),-5))))",
    "io_inp": [
      1,
      3,
      4,
      -1,
      -5,
      5
    ],
    "io_out": [
      25,
      5,
      -5,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [-5, 3, 2, 5, -5, 4]\noutput : list = [-10, 6, 4, 10, -10, 8]",
    "output": "generated_output : list = mul_n([-5, 3, 2, 5, -5, 4],2)",
    "io_inp": [
      -5,
      3,
      2,
      5,
      -5,
      4
    ],
    "io_out": [
      -10,
      6,
      4,
      10,
      -10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [2, -1]",
    "output": "generated_output : list = mul_n([-2, 1],-1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-2, 0],-2),-5))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-2),-5))"
  },
  {
    "input": "input : list = [-4, 5, -2]\noutput : list = [8, 1, -1]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(add_n([-4, 5, -2],3)),10)))",
    "io_inp": [
      -4,
      5,
      -2
    ],
    "io_out": [
      8,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(add_n(input,3)),10)))"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [-12, 0, 24]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(mul_n([-2, 0, 4],2),3),19)))",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      -12,
      0,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(mul_n(input,2),3),19)))"
  },
  {
    "input": "input : list = [3, -3, 5, -2]\noutput : list = [27, -8]",
    "output": "generated_output : list = sub_n(take(mul_n(take(drop([3, -3, 5, -2],2),3),5),7),-2)",
    "io_inp": [
      3,
      -3,
      5,
      -2
    ],
    "io_out": [
      27,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(drop(input,2),3),5),7),-2)"
  },
  {
    "input": "input : list = [-2, 0, -1, -5, -1, -1]\noutput : list = [-3, 0, 1, 1, 1, 2]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(add_n([-2, 0, -1, -5, -1, -1],2)))),42)",
    "io_inp": [
      -2,
      0,
      -1,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -3,
      0,
      1,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(add_n(input,2)))),42)"
  },
  {
    "input": "input : list = [0, 2, 0, -5, 4, 4]\noutput : list = [2, 0, 0]",
    "output": "generated_output : list = sort_des(take([0, 2, 0, -5, 4, 4],3))",
    "io_inp": [
      0,
      2,
      0,
      -5,
      4,
      4
    ],
    "io_out": [
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-3, 5, 1, 1]\noutput : list = [-3, 5, 1, 1]",
    "output": "generated_output : list = reverse(reverse([-3, 5, 1, 1]))",
    "io_inp": [
      -3,
      5,
      1,
      1
    ],
    "io_out": [
      -3,
      5,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, -1, -1, -3]\noutput : list = [-9, -3, -3, 3]",
    "output": "generated_output : list = mul_n(reverse(sort_des([1, -1, -1, -3])),3)",
    "io_inp": [
      1,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -9,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),3)"
  },
  {
    "input": "input : list = [-3, 5, -1, -1, -3, 5]\noutput : list = [-10, -10, -8, -8, -2, -2]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des(add_n([-3, 5, -1, -1, -3, 5],-5)),19)),-2)",
    "io_inp": [
      -3,
      5,
      -1,
      -1,
      -3,
      5
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(add_n(input,-5)),19)),-2)"
  },
  {
    "input": "input : list = [-4, 5, 2, 4, 0, 0]\noutput : list = [1, 10, 7, 9, 5, 5]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(reverse([-4, 5, 2, 4, 0, 0])),-1),-4),2)",
    "io_inp": [
      -4,
      5,
      2,
      4,
      0,
      0
    ],
    "io_out": [
      1,
      10,
      7,
      9,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(reverse(input)),-1),-4),2)"
  },
  {
    "input": "input : list = [5, -2, 3, -5, -1, 2]\noutput : list = [4, 2, 1, -2, -3, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(reverse([5, -2, 3, -5, -1, 2]))),1))",
    "io_inp": [
      5,
      -2,
      3,
      -5,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      1,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(reverse(input))),1))"
  },
  {
    "input": "input : list = [-2, 0, 3, -2, 1]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, 0, 3, -2, 1],1),8)",
    "io_inp": [
      -2,
      0,
      3,
      -2,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),8)"
  },
  {
    "input": "input : list = [-3, 1, -5, 3, 4, 4]\noutput : list = [-4, -2, 2, 4, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([-3, 1, -5, 3, 4, 4],-5)),4)",
    "io_inp": [
      -3,
      1,
      -5,
      3,
      4,
      4
    ],
    "io_out": [
      -4,
      -2,
      2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-5)),4)"
  },
  {
    "input": "input : list = [3, 1, -3]\noutput : list = [6, 2, -6]",
    "output": "generated_output : list = take(mul_n([3, 1, -3],2),11)",
    "io_inp": [
      3,
      1,
      -3
    ],
    "io_out": [
      6,
      2,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),11)"
  },
  {
    "input": "input : list = [3, -4, 5, 4, 3, -2]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take([3, -4, 5, 4, 3, -2],1),-4)),2)",
    "io_inp": [
      3,
      -4,
      5,
      4,
      3,
      -2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(input,1),-4)),2)"
  },
  {
    "input": "input : list = [3, 0, -5, -5, -4, 5]\noutput : list = [20, 20, 15, -5, -20, -30]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(mul_n([3, 0, -5, -5, -4, 5],-5),22),-5)))",
    "io_inp": [
      3,
      0,
      -5,
      -5,
      -4,
      5
    ],
    "io_out": [
      20,
      20,
      15,
      -5,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(mul_n(input,-5),22),-5)))"
  },
  {
    "input": "input : list = [0, -4, 2, -4]\noutput : list = [4, 0, 6, 0]",
    "output": "generated_output : list = sub_n([0, -4, 2, -4],-4)",
    "io_inp": [
      0,
      -4,
      2,
      -4
    ],
    "io_out": [
      4,
      0,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -4, -5, 0, 4]\noutput : list = [-21, -18, -12, -6, 6]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(sub_n([-2, -4, -5, 0, 4],2)),3),39))",
    "io_inp": [
      -2,
      -4,
      -5,
      0,
      4
    ],
    "io_out": [
      -21,
      -18,
      -12,
      -6,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(sub_n(input,2)),3),39))"
  },
  {
    "input": "input : list = [-3, 3, -3]\noutput : list = [-21, -3]",
    "output": "generated_output : list = mul_n(reverse(sub_n(add_n(drop([-3, 3, -3],1),-1),3)),3)",
    "io_inp": [
      -3,
      3,
      -3
    ],
    "io_out": [
      -21,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(add_n(drop(input,1),-1),3)),3)"
  },
  {
    "input": "input : list = [3, -2, 1, -4, -2, 4]\noutput : list = [4, 3, 1, -2, -2, -4]",
    "output": "generated_output : list = mul_n(sort_des([3, -2, 1, -4, -2, 4]),1)",
    "io_inp": [
      3,
      -2,
      1,
      -4,
      -2,
      4
    ],
    "io_out": [
      4,
      3,
      1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [1, 5, 6]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(add_n([4, -1, 3],2)))))",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(add_n(input,2)))))"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [1, 2, 2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(sort_asc([-3, -2, -2]))),-4))",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [-8, -8, -4]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(add_n([-1, 3, -1],3),-5)),-5))",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(add_n(input,3),-5)),-5))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [7, 12]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(sort_des([-4, 1]),5),4)),2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      7,
      12
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(sort_des(input),5),4)),2)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [2]",
    "output": "generated_output : list = take(take([2, 2, 2],1),1)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(input,1),1)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [16, 36]",
    "output": "generated_output : list = mul_n(add_n(take(mul_n(mul_n([0, -1],-5),1),17),4),4)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      16,
      36
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(mul_n(mul_n(input,-5),1),17),4),4)"
  },
  {
    "input": "input : list = [4, 0, 0, -4, -4, -4]\noutput : list = [-8, 0, 0, 8, 8, 8]",
    "output": "generated_output : list = mul_n([4, 0, 0, -4, -4, -4],-2)",
    "io_inp": [
      4,
      0,
      0,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -8,
      0,
      0,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -4, -4, 2]\noutput : list = [2, -4, -4, -2]",
    "output": "generated_output : list = reverse([-2, -4, -4, 2])",
    "io_inp": [
      -2,
      -4,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -3, -4, 0, 1, -2]\noutput : list = [-4, -3, -2, 0, 0, 1]",
    "output": "generated_output : list = sort_asc([0, -3, -4, 0, 1, -2])",
    "io_inp": [
      0,
      -3,
      -4,
      0,
      1,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, 0, 4]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(take([5, 0, 0, 4],2),1),-1)))",
    "io_inp": [
      5,
      0,
      0,
      4
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(take(input,2),1),-1)))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sub_n(take(reverse([-4, -4]),15),5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),15),5)"
  },
  {
    "input": "input : list = [3, 1, 1]\noutput : list = [4, 4, 16]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(mul_n([3, 1, 1],-3)),-1),-2))",
    "io_inp": [
      3,
      1,
      1
    ],
    "io_out": [
      4,
      4,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(mul_n(input,-3)),-1),-2))"
  },
  {
    "input": "input : list = [4, 4, -1, 2, -4]\noutput : list = [6, 6, 4, 1, -2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc([4, 4, -1, 2, -4]),2),26))",
    "io_inp": [
      4,
      4,
      -1,
      2,
      -4
    ],
    "io_out": [
      6,
      6,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(input),2),26))"
  },
  {
    "input": "input : list = [-3, -4, 0]\noutput : list = [-18, -24, 0]",
    "output": "generated_output : list = mul_n(mul_n([-3, -4, 0],2),3)",
    "io_inp": [
      -3,
      -4,
      0
    ],
    "io_out": [
      -18,
      -24,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),3)"
  },
  {
    "input": "input : list = [2, 2, 5, -5, -3, -4]\noutput : list = [96, 96, 240, -240, -144, -192]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n([2, 2, 5, -5, -3, -4],2),4),-2),-3)",
    "io_inp": [
      2,
      2,
      5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      96,
      96,
      240,
      -240,
      -144,
      -192
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(input,2),4),-2),-3)"
  },
  {
    "input": "input : list = [-5, 2, -3, 2, 2]\noutput : list = [-15, -9, 6, 6, 6]",
    "output": "generated_output : list = sort_asc(mul_n([-5, 2, -3, 2, 2],3))",
    "io_inp": [
      -5,
      2,
      -3,
      2,
      2
    ],
    "io_out": [
      -15,
      -9,
      6,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,3))"
  },
  {
    "input": "input : list = [1, -1, -1, 2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(add_n(drop([1, -1, -1, 2],2),-4))",
    "io_inp": [
      1,
      -1,
      -1,
      2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,2),-4))"
  },
  {
    "input": "input : list = [-3, 4, -3, 0, 2]\noutput : list = [0, 2, 4, 7, 7]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(add_n([-3, 4, -3, 0, 2],-4),-1))),1)",
    "io_inp": [
      -3,
      4,
      -3,
      0,
      2
    ],
    "io_out": [
      0,
      2,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(add_n(input,-4),-1))),1)"
  },
  {
    "input": "input : list = [0, -2, 5, -3, -2]\noutput : list = [1, -4, -6, -6, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(sub_n([0, -2, 5, -3, -2],2))),-2))",
    "io_inp": [
      0,
      -2,
      5,
      -3,
      -2
    ],
    "io_out": [
      1,
      -4,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(sub_n(input,2))),-2))"
  },
  {
    "input": "input : list = [5, -3, -3, 3, 4]\noutput : list = [-3, -3, 3, 4]",
    "output": "generated_output : list = drop([5, -3, -3, 3, 4],1)",
    "io_inp": [
      5,
      -3,
      -3,
      3,
      4
    ],
    "io_out": [
      -3,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [0, -10]",
    "output": "generated_output : list = take(mul_n(add_n([2, 4],-2),-5),23)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-2),-5),23)"
  },
  {
    "input": "input : list = [-5, 1, 4, 5, -2]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take([-5, 1, 4, 5, -2],1))",
    "io_inp": [
      -5,
      1,
      4,
      5,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-5, 4, 1, 2]\noutput : list = [-20, 16, 4, 8]",
    "output": "generated_output : list = mul_n([-5, 4, 1, 2],4)",
    "io_inp": [
      -5,
      4,
      1,
      2
    ],
    "io_out": [
      -20,
      16,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-1, -3, -2, 3]\noutput : list = [6, 1, 0, 2]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-1, -3, -2, 3],1),-3))",
    "io_inp": [
      -1,
      -3,
      -2,
      3
    ],
    "io_out": [
      6,
      1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,1),-3))"
  },
  {
    "input": "input : list = [5, -5, 4, -4, 5, -3]\noutput : list = [5, 5, 4, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(sort_des([5, -5, 4, -4, 5, -3])),24)))",
    "io_inp": [
      5,
      -5,
      4,
      -4,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      4,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(sort_des(input)),24)))"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [-8, 16, 16]",
    "output": "generated_output : list = add_n(add_n(mul_n([-2, 4, 4],4),3),-3)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      -8,
      16,
      16
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,4),3),-3)"
  },
  {
    "input": "input : list = [2, 4, -2, -5]\noutput : list = [-8, 4, 28, 20]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(reverse([2, 4, -2, -5]),-3),-2),35),-2)",
    "io_inp": [
      2,
      4,
      -2,
      -5
    ],
    "io_out": [
      -8,
      4,
      28,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(reverse(input),-3),-2),35),-2)"
  },
  {
    "input": "input : list = [-5, 5, -2, -1, -1, -4]\noutput : list = [-24, -12, -12, -16, 12, -28]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse(reverse([-5, 5, -2, -1, -1, -4]))),-2),4)",
    "io_inp": [
      -5,
      5,
      -2,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -24,
      -12,
      -12,
      -16,
      12,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(reverse(input))),-2),4)"
  },
  {
    "input": "input : list = [5, 5, 4, 4, 1, 2]\noutput : list = [20, 20, 16, 16, 8, 4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(mul_n([5, 5, 4, 4, 1, 2],-2)))),-2)",
    "io_inp": [
      5,
      5,
      4,
      4,
      1,
      2
    ],
    "io_out": [
      20,
      20,
      16,
      16,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(mul_n(input,-2)))),-2)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(reverse(sort_asc(sort_des([-2, -3, 2]))),1))",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-4, -2, 2, 0, 2]\noutput : list = [2, 0, 2]",
    "output": "generated_output : list = drop([-4, -2, 2, 0, 2],2)",
    "io_inp": [
      -4,
      -2,
      2,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [-8, -9, -1]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(reverse([5, -3, -2]),4),7),-4),2)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      -8,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(reverse(input),4),7),-4),2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-248, 328]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(mul_n([-4, 5],4),4),2),4))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -248,
      328
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(mul_n(input,4),4),2),4))"
  },
  {
    "input": "input : list = [3, -1, 3, 1, 4, -4]\noutput : list = [-4, -5, -5, -7, -9, -12]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(add_n([3, -1, 3, 1, 4, -4],-5),-3))),48)",
    "io_inp": [
      3,
      -1,
      3,
      1,
      4,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -7,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(add_n(input,-5),-3))),48)"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [44, -1]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(drop([3, -4, 5],1),4),5),-1))",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      44,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(drop(input,1),4),5),-1))"
  },
  {
    "input": "input : list = [-3, 2, -1]\noutput : list = [3, 12, 18]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sort_des([-3, 2, -1]),3)),-3))",
    "io_inp": [
      -3,
      2,
      -1
    ],
    "io_out": [
      3,
      12,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(sort_des(input),3)),-3))"
  },
  {
    "input": "input : list = [0, -3, -4, -4, -1, 2]\noutput : list = [2, 0, -1, -3, -4, -4]",
    "output": "generated_output : list = sort_des([0, -3, -4, -4, -1, 2])",
    "io_inp": [
      0,
      -3,
      -4,
      -4,
      -1,
      2
    ],
    "io_out": [
      2,
      0,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, 3, 0, -5, -4]\noutput : list = [-25, -25, -20, 0, 15, 25]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 5, 3, 0, -5, -4]),5)",
    "io_inp": [
      -5,
      5,
      3,
      0,
      -5,
      -4
    ],
    "io_out": [
      -25,
      -25,
      -20,
      0,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [0, -1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(sub_n(drop([0, -1, -1],1),-5))",
    "io_inp": [
      0,
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,1),-5))"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-10]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(take([-5, -5, -4],1)),5),1),12)",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(take(input,1)),5),1),12)"
  },
  {
    "input": "input : list = [3, 3, -2, 2, -5]\noutput : list = [40, -23, 13, -32, -32]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(mul_n([3, 3, -2, 2, -5],3)),-3),33),5)",
    "io_inp": [
      3,
      3,
      -2,
      2,
      -5
    ],
    "io_out": [
      40,
      -23,
      13,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(mul_n(input,3)),-3),33),5)"
  },
  {
    "input": "input : list = [3, 2, 5, -4, 1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 2, 5, -4, 1],1)",
    "io_inp": [
      3,
      2,
      5,
      -4,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 2, -2]\noutput : list = [1, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-4, 2, -2])),1)",
    "io_inp": [
      -4,
      2,
      -2
    ],
    "io_out": [
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [2, -4, -4]\noutput : list = [2]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(take([2, -4, -4],1)))),30)",
    "io_inp": [
      2,
      -4,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(take(input,1)))),30)"
  },
  {
    "input": "input : list = [-4, -4, 3, -2, 3, 1]\noutput : list = [1, 3, -2, 3, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, 3, -2, 3, 1])",
    "io_inp": [
      -4,
      -4,
      3,
      -2,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -2,
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, -1, 0]\noutput : list = [-2, -8, 2, 0]",
    "output": "generated_output : list = mul_n([1, 4, -1, 0],-2)",
    "io_inp": [
      1,
      4,
      -1,
      0
    ],
    "io_out": [
      -2,
      -8,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, -1, 5]\noutput : list = [5, 2, 8]",
    "output": "generated_output : list = sub_n([2, -1, 5],-3)",
    "io_inp": [
      2,
      -1,
      5
    ],
    "io_out": [
      5,
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 0, 3, -1, 1, 0]\noutput : list = [9, 9, 6, 3]",
    "output": "generated_output : list = mul_n(drop(add_n(take(sort_des([-2, 0, 3, -1, 1, 0]),9),3),2),3)",
    "io_inp": [
      -2,
      0,
      3,
      -1,
      1,
      0
    ],
    "io_out": [
      9,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(take(sort_des(input),9),3),2),3)"
  },
  {
    "input": "input : list = [-3, -4, 1, 2, 3, 4]\noutput : list = [4, 3, 2, 1, -3, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([-3, -4, 1, 2, 3, 4])),1)",
    "io_inp": [
      -3,
      -4,
      1,
      2,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [3, 5, 4, -5]\noutput : list = [-3, -2, -1, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des(mul_n([3, 5, 4, -5],-1)),-2)))",
    "io_inp": [
      3,
      5,
      4,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(mul_n(input,-1)),-2)))"
  },
  {
    "input": "input : list = [1, -4, -5, -5, -2, -2]\noutput : list = [-4, -7, -7, -9, -10, -10]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(sort_des([1, -4, -5, -5, -2, -2]),5))),59)",
    "io_inp": [
      1,
      -4,
      -5,
      -5,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -7,
      -7,
      -9,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(sort_des(input),5))),59)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [0, -16]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(add_n([-1, -5],5),-4))))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(add_n(input,5),-4))))"
  },
  {
    "input": "input : list = [5, -3, -1, -4, 4, -2]\noutput : list = [1, -7, -5, -8, 0, -6]",
    "output": "generated_output : list = add_n(add_n([5, -3, -1, -4, 4, -2],-1),-3)",
    "io_inp": [
      5,
      -3,
      -1,
      -4,
      4,
      -2
    ],
    "io_out": [
      1,
      -7,
      -5,
      -8,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-1),-3)"
  },
  {
    "input": "input : list = [-2, 2, -4, 2]\noutput : list = [2, 2, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(reverse([-2, 2, -4, 2])))))",
    "io_inp": [
      -2,
      2,
      -4,
      2
    ],
    "io_out": [
      2,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(reverse([3, -3]),-2)),30))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(reverse(input),-2)),30))"
  },
  {
    "input": "input : list = [3, 3, -1, 3, -4, 4]\noutput : list = [0, -12, -12]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(take([3, 3, -1, 3, -4, 4],3),2)),-3),-3)",
    "io_inp": [
      3,
      3,
      -1,
      3,
      -4,
      4
    ],
    "io_out": [
      0,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(take(input,3),2)),-3),-3)"
  },
  {
    "input": "input : list = [5, 0, 2, 0]\noutput : list = [-5, -2, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des([5, 0, 2, 0]),-1)",
    "io_inp": [
      5,
      0,
      2,
      0
    ],
    "io_out": [
      -5,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-4, -5, -3]\noutput : list = [-8, -7, -6]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-4, -5, -3]),-3))",
    "io_inp": [
      -4,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [4, 5, 3, -4, -3]\noutput : list = [-6, -5, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse([4, 5, 3, -4, -3]),-2)))",
    "io_inp": [
      4,
      5,
      3,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -5,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(input),-2)))"
  },
  {
    "input": "input : list = [3, 5, 1, 0, 0, 5]\noutput : list = [11, 6, 6, 7, 11, 9]",
    "output": "generated_output : list = reverse(add_n(add_n([3, 5, 1, 0, 0, 5],4),2))",
    "io_inp": [
      3,
      5,
      1,
      0,
      0,
      5
    ],
    "io_out": [
      11,
      6,
      6,
      7,
      11,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,4),2))"
  },
  {
    "input": "input : list = [4, 0, -4, 4, 4]\noutput : list = [20, 12, 4, 4, 4]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(sub_n([4, 0, -4, 4, 4],2),-4),-2)),1)",
    "io_inp": [
      4,
      0,
      -4,
      4,
      4
    ],
    "io_out": [
      20,
      12,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(sub_n(input,2),-4),-2)),1)"
  },
  {
    "input": "input : list = [0, -3, -2, 2, 4]\noutput : list = [-1, 0, 2, 4, 6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sub_n([0, -3, -2, 2, 4],-1))),-1))",
    "io_inp": [
      0,
      -3,
      -2,
      2,
      4
    ],
    "io_out": [
      -1,
      0,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sub_n(input,-1))),-1))"
  },
  {
    "input": "input : list = [4, 2, 5, -4, 5]\noutput : list = [6, -3, 6]",
    "output": "generated_output : list = reverse(add_n(take(reverse(drop([4, 2, 5, -4, 5],2)),29),1))",
    "io_inp": [
      4,
      2,
      5,
      -4,
      5
    ],
    "io_out": [
      6,
      -3,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(drop(input,2)),29),1))"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [-3, 2, 4]",
    "output": "generated_output : list = sort_asc([-3, 2, 4])",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, 2, -3, 4]\noutput : list = [-1, 6, 1]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(add_n([5, 3, 2, -3, 4],-1)),3),-2),-1)",
    "io_inp": [
      5,
      3,
      2,
      -3,
      4
    ],
    "io_out": [
      -1,
      6,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(add_n(input,-1)),3),-2),-1)"
  },
  {
    "input": "input : list = [-4, -5, 2, 5, -1, 2]\noutput : list = [0, -3, -3, -6, -9, -10]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([-4, -5, 2, 5, -1, 2],-5)))",
    "io_inp": [
      -4,
      -5,
      2,
      5,
      -1,
      2
    ],
    "io_out": [
      0,
      -3,
      -3,
      -6,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-5)))"
  },
  {
    "input": "input : list = [2, -5, 3, 0, -5]\noutput : list = [-5, 3, 0, -5]",
    "output": "generated_output : list = take(take(drop([2, -5, 3, 0, -5],1),11),5)",
    "io_inp": [
      2,
      -5,
      3,
      0,
      -5
    ],
    "io_out": [
      -5,
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(take(drop(input,1),11),5)"
  },
  {
    "input": "input : list = [0, 0, 0, 4, 2, -4]\noutput : list = [-4, 0, 0, 0, 2, 4]",
    "output": "generated_output : list = sort_asc([0, 0, 0, 4, 2, -4])",
    "io_inp": [
      0,
      0,
      0,
      4,
      2,
      -4
    ],
    "io_out": [
      -4,
      0,
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [2, 0, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(take(sort_asc([2, 0, -3]),13),24)))",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(sort_asc(input),13),24)))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, -4]))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-10, 2]",
    "output": "generated_output : list = sub_n(mul_n([-2, 2],3),4)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),4)"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [-12, 8, -12]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(add_n([-3, 2, -3],1),3),18),-4),4)",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      -12,
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(add_n(input,1),3),18),-4),4)"
  },
  {
    "input": "input : list = [2, 3, -1, -3, -5, 4]\noutput : list = [-5, -3, -1, 2, 3, 4]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sort_des([2, 3, -1, -3, -5, 4])))),13)",
    "io_inp": [
      2,
      3,
      -1,
      -3,
      -5,
      4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sort_des(input)))),13)"
  },
  {
    "input": "input : list = [-4, 4, -5, 2]\noutput : list = [-48, -16, -52, -24]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n([-4, 4, -5, 2],4),5),4),4)",
    "io_inp": [
      -4,
      4,
      -5,
      2
    ],
    "io_out": [
      -48,
      -16,
      -52,
      -24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(input,4),5),4),4)"
  },
  {
    "input": "input : list = [-4, -5, -5, 1, -3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(sort_des(drop([-4, -5, -5, 1, -3, -5],4)))",
    "io_inp": [
      -4,
      -5,
      -5,
      1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,4)))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc([1, -5])",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-3, 6]",
    "output": "generated_output : list = reverse(mul_n([-2, 1],-3))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse([0, -4])",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [48, 0, -24]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([0, -2, 4],4),3))",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      48,
      0,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,4),3))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(sub_n([-2, 3],3)),-5),3))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(sub_n(input,3)),-5),3))"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [10, 10, 7]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(reverse([3, 2, 2]),-1),5),-3),-4)",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      10,
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(reverse(input),-1),5),-3),-4)"
  },
  {
    "input": "input : list = [5, 5, 4, -3, 4, 3]\noutput : list = [-3, 3, 4, 4, 5, 5]",
    "output": "generated_output : list = take(sort_asc(take(reverse([5, 5, 4, -3, 4, 3]),24)),15)",
    "io_inp": [
      5,
      5,
      4,
      -3,
      4,
      3
    ],
    "io_out": [
      -3,
      3,
      4,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(input),24)),15)"
  },
  {
    "input": "input : list = [-4, -1, 1, -4, -2, -4]\noutput : list = [-6, 14, 24, 44, 44, 44]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(sort_asc([-4, -1, 1, -4, -2, -4]),5)),2),-2)",
    "io_inp": [
      -4,
      -1,
      1,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -6,
      14,
      24,
      44,
      44,
      44
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(sort_asc(input),5)),2),-2)"
  },
  {
    "input": "input : list = [0, -2, -3, 0, 2]\noutput : list = [2, 0, 0, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_des([0, -2, -3, 0, 2])))))",
    "io_inp": [
      0,
      -2,
      -3,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(drop(reverse([4, 1]),1))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(reverse(input),1))"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(reverse([1, -1, 4]),7))))",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(reverse(input),7))))"
  },
  {
    "input": "input : list = [2, -1, 0, 1, -5, 5]\noutput : list = [-2, -4, -6, -8, -14]",
    "output": "generated_output : list = drop(mul_n(add_n(sort_asc(reverse([2, -1, 0, 1, -5, 5])),2),-2),1)",
    "io_inp": [
      2,
      -1,
      0,
      1,
      -5,
      5
    ],
    "io_out": [
      -2,
      -4,
      -6,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = drop(mul_n(add_n(sort_asc(reverse(input)),2),-2),1)"
  },
  {
    "input": "input : list = [-1, -2, 1]\noutput : list = [6, 5, 3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n([-1, -2, 1],4),-1))",
    "io_inp": [
      -1,
      -2,
      1
    ],
    "io_out": [
      6,
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(input,4),-1))"
  },
  {
    "input": "input : list = [-3, -4, 3, 4, 4, -3]\noutput : list = [20]",
    "output": "generated_output : list = sort_asc(reverse(drop(take(mul_n([-3, -4, 3, 4, 4, -3],-5),2),1)))",
    "io_inp": [
      -3,
      -4,
      3,
      4,
      4,
      -3
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(take(mul_n(input,-5),2),1)))"
  },
  {
    "input": "input : list = [-4, -3, -2, -5, -2]\noutput : list = [-11, -14]",
    "output": "generated_output : list = add_n(reverse(drop(sub_n([-4, -3, -2, -5, -2],4),3)),-5)",
    "io_inp": [
      -4,
      -3,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -11,
      -14
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(sub_n(input,4),3)),-5)"
  },
  {
    "input": "input : list = [2, -3, 1]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sort_asc([2, -3, 1])),3)))",
    "io_inp": [
      2,
      -3,
      1
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n([-3, -4],-1)),-5),-3),2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n(input,-1)),-5),-3),2)"
  },
  {
    "input": "input : list = [-4, 1, -2, 3, 3]\noutput : list = [8, 8, 6, 3, 1]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(reverse([-4, 1, -2, 3, 3])),-5)),45)",
    "io_inp": [
      -4,
      1,
      -2,
      3,
      3
    ],
    "io_out": [
      8,
      8,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(reverse(input)),-5)),45)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(reverse([4, 3]))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des([-5, -4])",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, 3, -2, 3]\noutput : list = [18, 16, 16, 11, 11, 10]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(add_n([-3, -2, 5, 3, -2, 3],5),5)),-3))",
    "io_inp": [
      -3,
      -2,
      5,
      3,
      -2,
      3
    ],
    "io_out": [
      18,
      16,
      16,
      11,
      11,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(add_n(input,5),5)),-3))"
  },
  {
    "input": "input : list = [-1, -5, 1, -4, -5, 2]\noutput : list = [-7, -8, -1]",
    "output": "generated_output : list = add_n(drop([-1, -5, 1, -4, -5, 2],3),-3)",
    "io_inp": [
      -1,
      -5,
      1,
      -4,
      -5,
      2
    ],
    "io_out": [
      -7,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-3)"
  },
  {
    "input": "input : list = [-1, 4, -4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(drop([-1, 4, -4, -5],2)),-1)),1)",
    "io_inp": [
      -1,
      4,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(drop(input,2)),-1)),1)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-36, -24]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse([2, 3])),-4),3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -36,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(input)),-4),3)"
  },
  {
    "input": "input : list = [-2, -3, 1]\noutput : list = [-6, -7, -3]",
    "output": "generated_output : list = sub_n([-2, -3, 1],4)",
    "io_inp": [
      -2,
      -3,
      1
    ],
    "io_out": [
      -6,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, -4, 1, 4, 2]\noutput : list = [-1, -3, -4, -9, -9]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n(reverse([-4, -4, 1, 4, 2]),4)),2),-1)",
    "io_inp": [
      -4,
      -4,
      1,
      4,
      2
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(reverse(input),4)),2),-1)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(sub_n([-3, -3],-3)),1)))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(sub_n(input,-3)),1)))"
  },
  {
    "input": "input : list = [-4, 2, 3, 0, 1, -5]\noutput : list = [-6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(take([-4, 2, 3, 0, 1, -5],1))),-2))",
    "io_inp": [
      -4,
      2,
      3,
      0,
      1,
      -5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(take(input,1))),-2))"
  },
  {
    "input": "input : list = [0, 0, 5, -5, -2, 5]\noutput : list = [2, 5, 12]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(drop([0, 0, 5, -5, -2, 5],3),-2),-3),-5),-3)",
    "io_inp": [
      0,
      0,
      5,
      -5,
      -2,
      5
    ],
    "io_out": [
      2,
      5,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(drop(input,3),-2),-3),-5),-3)"
  },
  {
    "input": "input : list = [-4, 5, 4, -3, -5]\noutput : list = [-9, 0, -1, -8, -10]",
    "output": "generated_output : list = sub_n([-4, 5, 4, -3, -5],5)",
    "io_inp": [
      -4,
      5,
      4,
      -3,
      -5
    ],
    "io_out": [
      -9,
      0,
      -1,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [2, 2, -5, 5, 2, -4]\noutput : list = [5, 5, -2, 8, 5, -1]",
    "output": "generated_output : list = sub_n([2, 2, -5, 5, 2, -4],-3)",
    "io_inp": [
      2,
      2,
      -5,
      5,
      2,
      -4
    ],
    "io_out": [
      5,
      5,
      -2,
      8,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [5, -10]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(mul_n([-3, 2],3))),-1))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(mul_n(input,3))),-1))"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [-11, -10, -9]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(sort_asc([-3, -1, -2]),4),4),18))",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      -11,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(sort_asc(input),4),4),18))"
  },
  {
    "input": "input : list = [-5, 0, -3, 2, -5, 5]\noutput : list = [0, 5, 2, 7, 0, 10]",
    "output": "generated_output : list = add_n([-5, 0, -3, 2, -5, 5],5)",
    "io_inp": [
      -5,
      0,
      -3,
      2,
      -5,
      5
    ],
    "io_out": [
      0,
      5,
      2,
      7,
      0,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [5, 4]",
    "output": "generated_output : list = add_n(drop([-3, 4, 3],1),1)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(sub_n([-1, -2],3)))),2)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(sub_n(input,3)))),2)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_des(reverse([5, 5]))),-3))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_des(reverse(input))),-3))"
  },
  {
    "input": "input : list = [-2, -1, 5, 0]\noutput : list = [2, 3, 9, 4]",
    "output": "generated_output : list = take(sub_n(add_n(add_n([-2, -1, 5, 0],-1),3),-2),15)",
    "io_inp": [
      -2,
      -1,
      5,
      0
    ],
    "io_out": [
      2,
      3,
      9,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(input,-1),3),-2),15)"
  },
  {
    "input": "input : list = [2, -4, -1, 0, 3]\noutput : list = [3, -3, -5, -11]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(drop([2, -4, -1, 0, 3],1),2),2)),1)",
    "io_inp": [
      2,
      -4,
      -1,
      0,
      3
    ],
    "io_out": [
      3,
      -3,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(drop(input,1),2),2)),1)"
  },
  {
    "input": "input : list = [-1, -1, -4, -2]\noutput : list = [-3, -3, -4, -6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(reverse([-1, -1, -4, -2])),-1),-2),5)",
    "io_inp": [
      -1,
      -1,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(reverse(input)),-1),-2),5)"
  },
  {
    "input": "input : list = [5, -4, -5, 5, -3]\noutput : list = [5, 5, -3, -4, -5]",
    "output": "generated_output : list = sort_des([5, -4, -5, 5, -3])",
    "io_inp": [
      5,
      -4,
      -5,
      5,
      -3
    ],
    "io_out": [
      5,
      5,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1, 5, -3, 2]\noutput : list = [12, 0, 18, -6, 9]",
    "output": "generated_output : list = take(sub_n(mul_n([3, -1, 5, -3, 2],3),-3),7)",
    "io_inp": [
      3,
      -1,
      5,
      -3,
      2
    ],
    "io_out": [
      12,
      0,
      18,
      -6,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,3),-3),7)"
  },
  {
    "input": "input : list = [1, 0, 4, -3, -4, 0]\noutput : list = [-5, -4, -1, -1, 0, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(add_n([1, 0, 4, -3, -4, 0],2)),-5)),2)",
    "io_inp": [
      1,
      0,
      4,
      -3,
      -4,
      0
    ],
    "io_out": [
      -5,
      -4,
      -1,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(add_n(input,2)),-5)),2)"
  },
  {
    "input": "input : list = [1, 4, -2, 2]\noutput : list = [-2, 1, -5, -1]",
    "output": "generated_output : list = sub_n([1, 4, -2, 2],3)",
    "io_inp": [
      1,
      4,
      -2,
      2
    ],
    "io_out": [
      -2,
      1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, 0, -4, 3, -4]\noutput : list = [-8, -8, -8, -4, -1]",
    "output": "generated_output : list = take(take(sort_asc(sub_n(sort_des([-4, 0, -4, 3, -4]),4)),42),20)",
    "io_inp": [
      -4,
      0,
      -4,
      3,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(sort_des(input),4)),42),20)"
  },
  {
    "input": "input : list = [-1, -5, 3, -5, -4]\noutput : list = [-14, -18, 14, -18, -2]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(mul_n([-1, -5, 3, -5, -4],4)),2)))",
    "io_inp": [
      -1,
      -5,
      3,
      -5,
      -4
    ],
    "io_out": [
      -14,
      -18,
      14,
      -18,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(mul_n(input,4)),2)))"
  },
  {
    "input": "input : list = [-3, 5, 3, -1]\noutput : list = [-120]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(mul_n(take([-3, 5, 3, -1],1),4),2)),5)",
    "io_inp": [
      -3,
      5,
      3,
      -1
    ],
    "io_out": [
      -120
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(mul_n(take(input,1),4),2)),5)"
  },
  {
    "input": "input : list = [1, -5, -2, 1, 0]\noutput : list = [3, -3, 0, 3, 2]",
    "output": "generated_output : list = sub_n(take(take(add_n([1, -5, -2, 1, 0],1),22),14),-1)",
    "io_inp": [
      1,
      -5,
      -2,
      1,
      0
    ],
    "io_out": [
      3,
      -3,
      0,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(input,1),22),14),-1)"
  },
  {
    "input": "input : list = [3, 5, -4, 2, 1, 0]\noutput : list = [-4, 0, 1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 5, -4, 2, 1, 0])",
    "io_inp": [
      3,
      5,
      -4,
      2,
      1,
      0
    ],
    "io_out": [
      -4,
      0,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [1, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(sort_des([3, -3]),4))))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-5, 5, -5, -1, 2]\noutput : list = [-5, 5, -5]",
    "output": "generated_output : list = take([-5, 5, -5, -1, 2],3)",
    "io_inp": [
      -5,
      5,
      -5,
      -1,
      2
    ],
    "io_out": [
      -5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, -3, 2, 1, 1]\noutput : list = [-16, -15, -11, -11, -10]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(add_n([-4, -3, 2, 1, 1],-3)),5),4))",
    "io_inp": [
      -4,
      -3,
      2,
      1,
      1
    ],
    "io_out": [
      -16,
      -15,
      -11,
      -11,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(add_n(input,-3)),5),4))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [4, 9]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_asc([-5, 0]),-5),3),-5),-4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(sort_asc(input),-5),3),-5),-4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sub_n(sub_n([4, 1],-2),2)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),2)"
  },
  {
    "input": "input : list = [4, 1, -4, -4, 5, -5]\noutput : list = [5]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(take([4, 1, -4, -4, 5, -5],1)),-1)),20)",
    "io_inp": [
      4,
      1,
      -4,
      -4,
      5,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(take(input,1)),-1)),20)"
  },
  {
    "input": "input : list = [5, -3, 2, 5, 4, 5]\noutput : list = [17, -3, -11, -15, -15, -15]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_des([5, -3, 2, 5, 4, 5]),-4)),-5))",
    "io_inp": [
      5,
      -3,
      2,
      5,
      4,
      5
    ],
    "io_out": [
      17,
      -3,
      -11,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_des(input),-4)),-5))"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [4, 4, -1]",
    "output": "generated_output : list = sort_des(sort_des([-1, 4, 4]))",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, 4, 1, -2, -5]\noutput : list = [-10, -7, -4, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc([5, 4, 1, -2, -5]),-5)",
    "io_inp": [
      5,
      4,
      1,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [3, -2, 3, 1, -4]\noutput : list = [4, -1, 4, 2, -3]",
    "output": "generated_output : list = sub_n([3, -2, 3, 1, -4],-1)",
    "io_inp": [
      3,
      -2,
      3,
      1,
      -4
    ],
    "io_out": [
      4,
      -1,
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, 2, 5, 0]\noutput : list = [7, 7, 10, 5]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(add_n([2, 2, 5, 0],3),5),25),1),3)",
    "io_inp": [
      2,
      2,
      5,
      0
    ],
    "io_out": [
      7,
      7,
      10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(add_n(input,3),5),25),1),3)"
  },
  {
    "input": "input : list = [-4, 0, 4, -4, 4]\noutput : list = [-9, 15, 15]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(drop([-4, 0, 4, -4, 4],2),1),3)))",
    "io_inp": [
      -4,
      0,
      4,
      -4,
      4
    ],
    "io_out": [
      -9,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(drop(input,2),1),3)))"
  },
  {
    "input": "input : list = [0, -3, -3, 3, -5]\noutput : list = [1, -2, -5, -5, -7]",
    "output": "generated_output : list = add_n(sort_des([0, -3, -3, 3, -5]),-2)",
    "io_inp": [
      0,
      -3,
      -3,
      3,
      -5
    ],
    "io_out": [
      1,
      -2,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-10, 30]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_des([3, -1])),5)),2)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_des(input)),5)),2)"
  },
  {
    "input": "input : list = [2, 4, 4]\noutput : list = [5, 7, 7]",
    "output": "generated_output : list = sub_n([2, 4, 4],-3)",
    "io_inp": [
      2,
      4,
      4
    ],
    "io_out": [
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, -3, -5, -5, -5, 2]\noutput : list = [13, 13, -12, -22, -22, -22]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_des([2, -3, -5, -5, -5, 2]),5),-3),45)",
    "io_inp": [
      2,
      -3,
      -5,
      -5,
      -5,
      2
    ],
    "io_out": [
      13,
      13,
      -12,
      -22,
      -22,
      -22
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_des(input),5),-3),45)"
  },
  {
    "input": "input : list = [3, 2, 4]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(sort_asc([3, 2, 4]),4)),2),42)",
    "io_inp": [
      3,
      2,
      4
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(sort_asc(input),4)),2),42)"
  },
  {
    "input": "input : list = [-2, -4, -5, 1, 1]\noutput : list = [1, 1, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-2, -4, -5, 1, 1])",
    "io_inp": [
      -2,
      -4,
      -5,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4, -4, -1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 4, -4, -1],1)",
    "io_inp": [
      2,
      4,
      -4,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 3, 2, -1, 2, 4]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(drop(sort_des(sort_asc(sort_des([2, 3, 2, -1, 2, 4]))),5),-2)",
    "io_inp": [
      2,
      3,
      2,
      -1,
      2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_des(sort_asc(sort_des(input))),5),-2)"
  },
  {
    "input": "input : list = [-2, -1, -3, -5, 2, 3]\noutput : list = [-13, -18, -8, 2, -33, -38]",
    "output": "generated_output : list = take(add_n(mul_n(add_n([-2, -1, -3, -5, 2, 3],5),-5),2),6)",
    "io_inp": [
      -2,
      -1,
      -3,
      -5,
      2,
      3
    ],
    "io_out": [
      -13,
      -18,
      -8,
      2,
      -33,
      -38
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(input,5),-5),2),6)"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [40, 60, 60]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(reverse(sort_asc([2, 3, 3])),-5),-4))",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      40,
      60,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(reverse(sort_asc(input)),-5),-4))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(sort_des([-2, -1]))),1))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-5, 1, 0]\noutput : list = [-4, 1, 2]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(reverse([-5, 1, 0]),-2))),3)",
    "io_inp": [
      -5,
      1,
      0
    ],
    "io_out": [
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(reverse(input),-2))),3)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [6, 2, 2]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(sub_n([-1, -1, 3],2)),-5),31))",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(sub_n(input,2)),-5),31))"
  },
  {
    "input": "input : list = [-1, -3, -3, -1, 4]\noutput : list = [24, 24, 8, 8, -32]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(mul_n([-1, -3, -3, -1, 4],4)),-2)))",
    "io_inp": [
      -1,
      -3,
      -3,
      -1,
      4
    ],
    "io_out": [
      24,
      24,
      8,
      8,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(mul_n(input,4)),-2)))"
  },
  {
    "input": "input : list = [3, 4, 3]\noutput : list = [12, 12, 14]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(reverse([3, 4, 3])),-2),5),2)",
    "io_inp": [
      3,
      4,
      3
    ],
    "io_out": [
      12,
      12,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(reverse(input)),-2),5),2)"
  },
  {
    "input": "input : list = [5, 5, 3]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(take([5, 5, 3],1),-3)",
    "io_inp": [
      5,
      5,
      3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-4, 0, -5]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 0, -5],1)",
    "io_inp": [
      -4,
      0,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [2, 2, 6]",
    "output": "generated_output : list = mul_n(sub_n(reverse([1, -1, -1]),-2),2)",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),-2),2)"
  },
  {
    "input": "input : list = [-5, 1, 1, 1, 1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop(mul_n(reverse(add_n(sort_des([-5, 1, 1, 1, 1]),-2)),3),3)",
    "io_inp": [
      -5,
      1,
      1,
      1,
      1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(add_n(sort_des(input),-2)),3),3)"
  },
  {
    "input": "input : list = [-5, -1, -1, 0, 4]\noutput : list = [-34, -14, -9, -9, 11]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(sub_n([-5, -1, -1, 0, 4],-5),-3),-5),-4))",
    "io_inp": [
      -5,
      -1,
      -1,
      0,
      4
    ],
    "io_out": [
      -34,
      -14,
      -9,
      -9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(sub_n(input,-5),-3),-5),-4))"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [4, 1, -4]",
    "output": "generated_output : list = sort_des([-4, 1, 4])",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 4, 1, 3, 2, -5]\noutput : list = [-5]",
    "output": "generated_output : list = drop(drop([-4, 4, 1, 3, 2, -5],3),2)",
    "io_inp": [
      -4,
      4,
      1,
      3,
      2,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(drop(input,3),2)"
  },
  {
    "input": "input : list = [5, 0, 2, -3]\noutput : list = [3, 0, -2, -5]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n([5, 0, 2, -3],-1)),8))",
    "io_inp": [
      5,
      0,
      2,
      -3
    ],
    "io_out": [
      3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(input,-1)),8))"
  },
  {
    "input": "input : list = [5, 4, 2, 5, -1, 3]\noutput : list = [7, 7, 6, 5, 4, 1]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(reverse([5, 4, 2, 5, -1, 3]),-2))))",
    "io_inp": [
      5,
      4,
      2,
      5,
      -1,
      3
    ],
    "io_out": [
      7,
      7,
      6,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [0, -3, 1, 0]\noutput : list = [103, -77, 163, 103]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n(mul_n([0, -3, 1, 0],3),-5),-4),-5),3)",
    "io_inp": [
      0,
      -3,
      1,
      0
    ],
    "io_out": [
      103,
      -77,
      163,
      103
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(mul_n(input,3),-5),-4),-5),3)"
  },
  {
    "input": "input : list = [5, 5, 5, -4, -4, 5]\noutput : list = [10, 10, 10, 10, 1, 1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([5, 5, 5, -4, -4, 5],-5)))",
    "io_inp": [
      5,
      5,
      5,
      -4,
      -4,
      5
    ],
    "io_out": [
      10,
      10,
      10,
      10,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-5)))"
  },
  {
    "input": "input : list = [-1, 1, -1, 3]\noutput : list = [3, -1, 1, -1]",
    "output": "generated_output : list = reverse([-1, 1, -1, 3])",
    "io_inp": [
      -1,
      1,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, -2]\noutput : list = [-2, 1, 3]",
    "output": "generated_output : list = reverse([3, 1, -2])",
    "io_inp": [
      3,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 3, -3, -5]\noutput : list = [0, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(take([4, 3, -3, -5],2),-5)),-4),5)",
    "io_inp": [
      4,
      3,
      -3,
      -5
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(take(input,2),-5)),-4),5)"
  },
  {
    "input": "input : list = [1, 1, 5, -4, 0]\noutput : list = [0, 12, 15, 15, 27]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(sort_asc([1, 1, 5, -4, 0]),4),3)))",
    "io_inp": [
      1,
      1,
      5,
      -4,
      0
    ],
    "io_out": [
      0,
      12,
      15,
      15,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(sort_asc(input),4),3)))"
  },
  {
    "input": "input : list = [-5, 4, 5, 0, -3, -4]\noutput : list = [-20, 16, 20, 0, -12, -16]",
    "output": "generated_output : list = mul_n([-5, 4, 5, 0, -3, -4],4)",
    "io_inp": [
      -5,
      4,
      5,
      0,
      -3,
      -4
    ],
    "io_out": [
      -20,
      16,
      20,
      0,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [3, 1, 3, 2, -2]\noutput : list = [-2, 1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(sort_des([3, 1, 3, 2, -2])))))",
    "io_inp": [
      3,
      1,
      3,
      2,
      -2
    ],
    "io_out": [
      -2,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(drop([1, 2, -3],1)))),42)",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(drop(input,1)))),42)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(reverse([3, 1]))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = take(reverse([-1, 4]),6)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [-3, -5, 2, 3, 4]\noutput : list = [4, 3, 2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([-3, -5, 2, 3, 4])))",
    "io_inp": [
      -3,
      -5,
      2,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-3, -5, 4, -4, -2]\noutput : list = [0, -6, -7, -8, -9]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-3, -5, 4, -4, -2])),4)",
    "io_inp": [
      -3,
      -5,
      4,
      -4,
      -2
    ],
    "io_out": [
      0,
      -6,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [3, 0, 0]\noutput : list = [-1, -1, 2]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(add_n([3, 0, 0],-1))),4))",
    "io_inp": [
      3,
      0,
      0
    ],
    "io_out": [
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(add_n(input,-1))),4))"
  },
  {
    "input": "input : list = [0, -1, 4, -3]\noutput : list = [0, -3, 12, -9]",
    "output": "generated_output : list = mul_n([0, -1, 4, -3],3)",
    "io_inp": [
      0,
      -1,
      4,
      -3
    ],
    "io_out": [
      0,
      -3,
      12,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = drop([2, 4, 0],1)",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [1, 6, 9]",
    "output": "generated_output : list = sub_n([-4, 1, 4],-5)",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      1,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, -3, -2, 4, 2]\noutput : list = [40, 35, 25, 5, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sort_des([5, -3, -2, 4, 2]),-3),5)))",
    "io_inp": [
      5,
      -3,
      -2,
      4,
      2
    ],
    "io_out": [
      40,
      35,
      25,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(sort_des(input),-3),5)))"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(take([5, 5, -2],1),-1)),-5))",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(take(input,1),-1)),-5))"
  },
  {
    "input": "input : list = [-3, 0, 3, 2]\noutput : list = [2, 5, 8, 7]",
    "output": "generated_output : list = sub_n([-3, 0, 3, 2],-5)",
    "io_inp": [
      -3,
      0,
      3,
      2
    ],
    "io_out": [
      2,
      5,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 5, -1]\noutput : list = [5, -1, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(add_n([-3, 5, -1],-5)),-5)))",
    "io_inp": [
      -3,
      5,
      -1
    ],
    "io_out": [
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(add_n(input,-5)),-5)))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [2, 9]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(add_n([-2, 5],4),8)),10))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(add_n(input,4),8)),10))"
  },
  {
    "input": "input : list = [-2, 5, -4, 1]\noutput : list = [-21, -9, 0, 6]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n([-2, 5, -4, 1],-2)))),-3)",
    "io_inp": [
      -2,
      5,
      -4,
      1
    ],
    "io_out": [
      -21,
      -9,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n(input,-2)))),-3)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, -5, 1, -2, -4]\noutput : list = [-15, -27, -45, -9, -39, -51]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(reverse([2, 0, -5, 1, -2, -4]),5),-2),3),3)",
    "io_inp": [
      2,
      0,
      -5,
      1,
      -2,
      -4
    ],
    "io_out": [
      -15,
      -27,
      -45,
      -9,
      -39,
      -51
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(reverse(input),5),-2),3),3)"
  },
  {
    "input": "input : list = [4, 0, -4, -1, 1, -1]\noutput : list = [0, -6, -8, -10, -10, -16]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(add_n([4, 0, -4, -1, 1, -1],-4),2))))",
    "io_inp": [
      4,
      0,
      -4,
      -1,
      1,
      -1
    ],
    "io_out": [
      0,
      -6,
      -8,
      -10,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(add_n(input,-4),2))))"
  },
  {
    "input": "input : list = [-5, -3, 5, 5, 0]\noutput : list = [0, 5, 5, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, 5, 5, 0])",
    "io_inp": [
      -5,
      -3,
      5,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, -4, 5]\noutput : list = [-2, -1, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n([-5, 5, -4, 5],-3))))",
    "io_inp": [
      -5,
      5,
      -4,
      5
    ],
    "io_out": [
      -2,
      -1,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(input,-3))))"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(take([5, 3, 1],1),3)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-20, -8]",
    "output": "generated_output : list = sort_asc(take(take(add_n(mul_n([1, 4],-4),-4),12),4))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -20,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(mul_n(input,-4),-4),12),4))"
  },
  {
    "input": "input : list = [5, -5, 4, 5]\noutput : list = [4, -26, 1, 4]",
    "output": "generated_output : list = take(add_n(mul_n(add_n([5, -5, 4, 5],-4),3),1),39)",
    "io_inp": [
      5,
      -5,
      4,
      5
    ],
    "io_out": [
      4,
      -26,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(input,-4),3),1),39)"
  },
  {
    "input": "input : list = [-2, 2, -4, -3, -3, 1]\noutput : list = [2, -2, -2, -3, 3, -1]",
    "output": "generated_output : list = reverse(add_n([-2, 2, -4, -3, -3, 1],1))",
    "io_inp": [
      -2,
      2,
      -4,
      -3,
      -3,
      1
    ],
    "io_out": [
      2,
      -2,
      -2,
      -3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [3, -3, -3, 3]\noutput : list = [8, 2, 2, 8]",
    "output": "generated_output : list = add_n(reverse([3, -3, -3, 3]),5)",
    "io_inp": [
      3,
      -3,
      -3,
      3
    ],
    "io_out": [
      8,
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(take([2, 0, 5],1)))",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-2, -4, 3, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(take([-2, -4, 3, -2],1))),1),28)",
    "io_inp": [
      -2,
      -4,
      3,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(take(input,1))),1),28)"
  },
  {
    "input": "input : list = [-1, 0, 0, -3]\noutput : list = [0, 0, 5, 15]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n([-1, 0, 0, -3],-5))))",
    "io_inp": [
      -1,
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      0,
      5,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(input,-5))))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-45, 25]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(reverse([2, -5]),-1),2),1),-5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -45,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(reverse(input),-1),2),1),-5)"
  },
  {
    "input": "input : list = [1, 1, -1, 5, -3, 3]\noutput : list = [-3, -5, -7, -7, -9, -11]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(add_n([1, 1, -1, 5, -3, 3],-3)),5)))",
    "io_inp": [
      1,
      1,
      -1,
      5,
      -3,
      3
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -7,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(add_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [-1, 1, -3, -4]\noutput : list = [-11, -9]",
    "output": "generated_output : list = sub_n(add_n(drop(add_n(sort_asc([-1, 1, -3, -4]),-5),2),-4),1)",
    "io_inp": [
      -1,
      1,
      -3,
      -4
    ],
    "io_out": [
      -11,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(add_n(sort_asc(input),-5),2),-4),1)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(sort_des([-1, -3])))))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [4, -1]",
    "output": "generated_output : list = sub_n(sort_des([-2, 3]),-1)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-1, 4, -1, -1, -3, -5]\noutput : list = [-5, -3, -1, -1, -1, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sort_des([-1, 4, -1, -1, -3, -5])))),41)",
    "io_inp": [
      -1,
      4,
      -1,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sort_des(input)))),41)"
  },
  {
    "input": "input : list = [3, -4, 2, -1, 3]\noutput : list = [-9]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take([3, -4, 2, -1, 3],1),-3))))",
    "io_inp": [
      3,
      -4,
      2,
      -1,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(take(input,1),-3))))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des([-3, 4])",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4, -4, 3]\noutput : list = [1, 2]",
    "output": "generated_output : list = drop(sort_asc(sort_des(add_n(reverse([2, 4, -4, 3]),-2))),2)",
    "io_inp": [
      2,
      4,
      -4,
      3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sort_des(add_n(reverse(input),-2))),2)"
  },
  {
    "input": "input : list = [1, 5, 3, -5]\noutput : list = [-5, 1, 3, 5]",
    "output": "generated_output : list = take(sort_asc([1, 5, 3, -5]),5)",
    "io_inp": [
      1,
      5,
      3,
      -5
    ],
    "io_out": [
      -5,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),5)"
  },
  {
    "input": "input : list = [4, 2, -2, 4, 3]\noutput : list = [3, 4, -2, 2, 4]",
    "output": "generated_output : list = take(reverse([4, 2, -2, 4, 3]),6)",
    "io_inp": [
      4,
      2,
      -2,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [0, 5, 5, 4, -5]\noutput : list = [-27, -12, 0, 3, 3]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(reverse([0, 5, 5, 4, -5]),2),2)),3)",
    "io_inp": [
      0,
      5,
      5,
      4,
      -5
    ],
    "io_out": [
      -27,
      -12,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(reverse(input),2),2)),3)"
  },
  {
    "input": "input : list = [4, 1, 2, 5, 5, 2]\noutput : list = [30, 35, 35, 45, 50, 50]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(add_n([4, 1, 2, 5, 5, 2],5))),29),5)",
    "io_inp": [
      4,
      1,
      2,
      5,
      5,
      2
    ],
    "io_out": [
      30,
      35,
      35,
      45,
      50,
      50
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(add_n(input,5))),29),5)"
  },
  {
    "input": "input : list = [5, 2, 5, -1, -5]\noutput : list = [-21, -1, 29, 14]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(drop([5, 2, 5, -1, -5],1)),5),4),1)",
    "io_inp": [
      5,
      2,
      5,
      -1,
      -5
    ],
    "io_out": [
      -21,
      -1,
      29,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(drop(input,1)),5),4),1)"
  },
  {
    "input": "input : list = [-2, 4, -5, -1, -2, 3]\noutput : list = [1, 4, 4, 5, 9, 10]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([-2, 4, -5, -1, -2, 3],2)),-4)",
    "io_inp": [
      -2,
      4,
      -5,
      -1,
      -2,
      3
    ],
    "io_out": [
      1,
      4,
      4,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,2)),-4)"
  },
  {
    "input": "input : list = [3, 1, 3, -3, -4]\noutput : list = [1, 1, -1, -5, -6]",
    "output": "generated_output : list = take(sub_n(take(mul_n(sort_des([3, 1, 3, -3, -4]),1),12),2),20)",
    "io_inp": [
      3,
      1,
      3,
      -3,
      -4
    ],
    "io_out": [
      1,
      1,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(mul_n(sort_des(input),1),12),2),20)"
  },
  {
    "input": "input : list = [-1, 5, -1, -1, 3, 3]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = sort_asc(take([-1, 5, -1, -1, 3, 3],3))",
    "io_inp": [
      -1,
      5,
      -1,
      -1,
      3,
      3
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [-1, -4, -5, -3, 1, 4]\noutput : list = [-1, -4, -6, -8, -9, -10]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sort_des([-1, -4, -5, -3, 1, 4]),-4)),1))",
    "io_inp": [
      -1,
      -4,
      -5,
      -3,
      1,
      4
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -8,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(sort_des(input),-4)),1))"
  },
  {
    "input": "input : list = [0, 5, 0, 5]\noutput : list = [0, 25, 0, 25]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(mul_n([0, 5, 0, 5],-5),1)),-1))",
    "io_inp": [
      0,
      5,
      0,
      5
    ],
    "io_out": [
      0,
      25,
      0,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(mul_n(input,-5),1)),-1))"
  },
  {
    "input": "input : list = [0, -1, 0, 4, 1, -4]\noutput : list = [-11, -6, -3, -7, -8]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(drop([0, -1, 0, 4, 1, -4],1)),-2),5),-4)",
    "io_inp": [
      0,
      -1,
      0,
      4,
      1,
      -4
    ],
    "io_out": [
      -11,
      -6,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(drop(input,1)),-2),5),-4)"
  },
  {
    "input": "input : list = [5, 1, 4, -5, 5]\noutput : list = [5, -5, 4, 1, 5]",
    "output": "generated_output : list = reverse([5, 1, 4, -5, 5])",
    "io_inp": [
      5,
      1,
      4,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      4,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, -2, -1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = take([4, -1, -2, -1, 4],2)",
    "io_inp": [
      4,
      -1,
      -2,
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -3, -2, -2, -2]\noutput : list = [-6, -6, -6, -7, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc([-4, -3, -2, -2, -2])),-4)",
    "io_inp": [
      -4,
      -3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [-2, -2, 4, 1]\noutput : list = [-22, -7, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des([-2, -2, 4, 1]),-5),-2)))",
    "io_inp": [
      -2,
      -2,
      4,
      1
    ],
    "io_out": [
      -22,
      -7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des(input),-5),-2)))"
  },
  {
    "input": "input : list = [4, 2, 1, 0, -5, -4]\noutput : list = [11, 9, 8, 7, 2, 3]",
    "output": "generated_output : list = sub_n(sub_n([4, 2, 1, 0, -5, -4],-2),-5)",
    "io_inp": [
      4,
      2,
      1,
      0,
      -5,
      -4
    ],
    "io_out": [
      11,
      9,
      8,
      7,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-5)"
  },
  {
    "input": "input : list = [-5, -3, 0, 5, -2, 5]\noutput : list = [-20, 8, -20, 0, 12, 20]",
    "output": "generated_output : list = mul_n(reverse(mul_n([-5, -3, 0, 5, -2, 5],-4)),1)",
    "io_inp": [
      -5,
      -3,
      0,
      5,
      -2,
      5
    ],
    "io_out": [
      -20,
      8,
      -20,
      0,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-4)),1)"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [3, 9, 12]",
    "output": "generated_output : list = add_n(take(add_n(take(add_n([-5, 1, 4],2),17),5),9),1)",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(add_n(input,2),17),5),9),1)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [6, 4]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc([-1, 1]),-1),5),1))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc(input),-1),5),1))"
  },
  {
    "input": "input : list = [-2, 3, 5, -2, 5]\noutput : list = [1, 1, 6, 8, 8]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(add_n([-2, 3, 5, -2, 5],-2))),5))",
    "io_inp": [
      -2,
      3,
      5,
      -2,
      5
    ],
    "io_out": [
      1,
      1,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(add_n(input,-2))),5))"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(mul_n([3, 4, 1],1))),5))",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(mul_n(input,1))),5))"
  },
  {
    "input": "input : list = [-2, -3, 5, -5]\noutput : list = [-25, -17, -13, 15]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(mul_n([-2, -3, 5, -5],4),15)),5),17)",
    "io_inp": [
      -2,
      -3,
      5,
      -5
    ],
    "io_out": [
      -25,
      -17,
      -13,
      15
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(mul_n(input,4),15)),5),17)"
  },
  {
    "input": "input : list = [-4, -2, -5, 4, 1]\noutput : list = [-10, -9, -7, -4, -1]",
    "output": "generated_output : list = add_n(take(sort_asc(take(sort_asc([-4, -2, -5, 4, 1]),8)),19),-5)",
    "io_inp": [
      -4,
      -2,
      -5,
      4,
      1
    ],
    "io_out": [
      -10,
      -9,
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(sort_asc(input),8)),19),-5)"
  },
  {
    "input": "input : list = [-5, -1, -4, 2]\noutput : list = [-5, -4, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(add_n([-5, -1, -4, 2],-3),-3),19)))",
    "io_inp": [
      -5,
      -1,
      -4,
      2
    ],
    "io_out": [
      -5,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(add_n(input,-3),-3),19)))"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [9, 2, 1]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(sort_des([-4, -3, 4]),5)),22))",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      9,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(sort_des(input),5)),22))"
  },
  {
    "input": "input : list = [2, 1, 3, -3, -2, 4]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_des(drop([2, 1, 3, -3, -2, 4],3))),-2)",
    "io_inp": [
      2,
      1,
      3,
      -3,
      -2,
      4
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(drop(input,3))),-2)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-8, -6]",
    "output": "generated_output : list = sub_n([-5, -3],3)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-4, 1, 2, 2]\noutput : list = [-7, -2, -1, -1]",
    "output": "generated_output : list = add_n([-4, 1, 2, 2],-3)",
    "io_inp": [
      -4,
      1,
      2,
      2
    ],
    "io_out": [
      -7,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [4, 5]",
    "output": "generated_output : list = take(sort_asc(mul_n(reverse([-4, -5]),-1)),35)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(reverse(input),-1)),35)"
  },
  {
    "input": "input : list = [-3, 1, 1, 5, 1]\noutput : list = [-30, -18, -18, -18, -6]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n([-3, 1, 1, 5, 1],-4)),-3)),3)",
    "io_inp": [
      -3,
      1,
      1,
      5,
      1
    ],
    "io_out": [
      -30,
      -18,
      -18,
      -18,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sub_n(input,-4)),-3)),3)"
  },
  {
    "input": "input : list = [-2, -4, -2, -1, 4]\noutput : list = [4, -1, -2, -2, -4]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sort_des([-2, -4, -2, -1, 4])))),1)",
    "io_inp": [
      -2,
      -4,
      -2,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sort_des(input)))),1)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [8, 2, 7]",
    "output": "generated_output : list = reverse(sub_n([2, -3, 3],-5))",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      8,
      2,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [7, 11]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(sub_n([-1, -5],3),1),4),-1),20)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      7,
      11
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(sub_n(input,3),1),4),-1),20)"
  },
  {
    "input": "input : list = [-5, 5, -4, -4]\noutput : list = [-20, 20, -16, -16]",
    "output": "generated_output : list = mul_n([-5, 5, -4, -4],4)",
    "io_inp": [
      -5,
      5,
      -4,
      -4
    ],
    "io_out": [
      -20,
      20,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, -4, 4, 5, -4, -5]\noutput : list = [-8, -7, 1, 2, -7, -8]",
    "output": "generated_output : list = add_n([-5, -4, 4, 5, -4, -5],-3)",
    "io_inp": [
      -5,
      -4,
      4,
      5,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -7,
      1,
      2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5, 4, -3]\noutput : list = [-8, -6, -2, 1]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_asc([1, -5, 4, -3])))),-3)",
    "io_inp": [
      1,
      -5,
      4,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(sort_asc(input)))),-3)"
  },
  {
    "input": "input : list = [2, 1, -2, -4, 0, -5]\noutput : list = [5, 4, 3, 1, -1, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(add_n([2, 1, -2, -4, 0, -5],2))),2),1)",
    "io_inp": [
      2,
      1,
      -2,
      -4,
      0,
      -5
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(add_n(input,2))),2),1)"
  },
  {
    "input": "input : list = [2, 4, -2, 5, 4]\noutput : list = [5, 7, 1, 8, 7]",
    "output": "generated_output : list = add_n(sub_n([2, 4, -2, 5, 4],1),4)",
    "io_inp": [
      2,
      4,
      -2,
      5,
      4
    ],
    "io_out": [
      5,
      7,
      1,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),4)"
  },
  {
    "input": "input : list = [2, 2, -4, -3, -5, -3]\noutput : list = [-6, -7]",
    "output": "generated_output : list = sub_n(drop(reverse(sort_asc([2, 2, -4, -3, -5, -3])),4),2)",
    "io_inp": [
      2,
      2,
      -4,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(sort_asc(input)),4),2)"
  },
  {
    "input": "input : list = [-3, 3, 5, 0, -5, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take([-3, 3, 5, 0, -5, -5],1))",
    "io_inp": [
      -3,
      3,
      5,
      0,
      -5,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-2, 3, -4, 4]\noutput : list = [-3, -6, -27]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(drop([-2, 3, -4, 4],1)),5),3))",
    "io_inp": [
      -2,
      3,
      -4,
      4
    ],
    "io_out": [
      -3,
      -6,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(drop(input,1)),5),3))"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [-8, -6, 0]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(sort_des([4, 3, 0])),22),-2))",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      -8,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(sort_des(input)),22),-2))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des([1, 0])",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -5, -5, 1, 4]\noutput : list = [-115, -90, -15, 135, 135]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc([5, -5, -5, 1, 4]),5),-2),-5))",
    "io_inp": [
      5,
      -5,
      -5,
      1,
      4
    ],
    "io_out": [
      -115,
      -90,
      -15,
      135,
      135
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc(input),5),-2),-5))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(reverse([3, -3])))))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 1, 1]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(reverse([-3, 1, 1]),-3),1)))",
    "io_inp": [
      -3,
      1,
      1
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(reverse(input),-3),1)))"
  },
  {
    "input": "input : list = [-3, -1, -3, 4]\noutput : list = [6, 6, 8, 13]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(sort_des([-3, -1, -3, 4]),4),-4)),-1)",
    "io_inp": [
      -3,
      -1,
      -3,
      4
    ],
    "io_out": [
      6,
      6,
      8,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(sort_des(input),4),-4)),-1)"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [-4, -4, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_asc([4, -4, -4]),4)),4))",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(add_n(sort_asc(input),4)),4))"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [-20, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse([2, -5, 1])),4))",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      -20,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(input)),4))"
  },
  {
    "input": "input : list = [-4, -3, -3, -3, -1]\noutput : list = [-1, -3, -3, -3]",
    "output": "generated_output : list = reverse(take(drop([-4, -3, -3, -3, -1],1),20))",
    "io_inp": [
      -4,
      -3,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,1),20))"
  },
  {
    "input": "input : list = [2, -5, 4, -2, 5]\noutput : list = [-15, -13, -9, -1, 5]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(sort_asc([2, -5, 4, -2, 5])),-2),-5),41)",
    "io_inp": [
      2,
      -5,
      4,
      -2,
      5
    ],
    "io_out": [
      -15,
      -13,
      -9,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(sort_asc(input)),-2),-5),41)"
  },
  {
    "input": "input : list = [0, -5, 3]\noutput : list = [0, -15, 9]",
    "output": "generated_output : list = take(mul_n([0, -5, 3],3),11)",
    "io_inp": [
      0,
      -5,
      3
    ],
    "io_out": [
      0,
      -15,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),11)"
  },
  {
    "input": "input : list = [2, 1, 4, 5, 2]\noutput : list = [-4, -3, -6, -7, -4]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(reverse([2, 1, 4, 5, 2])),-1),-5),3)",
    "io_inp": [
      2,
      1,
      4,
      5,
      2
    ],
    "io_out": [
      -4,
      -3,
      -6,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(reverse(input)),-1),-5),3)"
  },
  {
    "input": "input : list = [5, 3, -3, -3, 0, 0]\noutput : list = [-2, -2, 1, 1, 4, 6]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sort_des([5, 3, -3, -3, 0, 0]),3)),3),1)",
    "io_inp": [
      5,
      3,
      -3,
      -3,
      0,
      0
    ],
    "io_out": [
      -2,
      -2,
      1,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sort_des(input),3)),3),1)"
  },
  {
    "input": "input : list = [-4, -5, 4]\noutput : list = [4, -4, -5]",
    "output": "generated_output : list = sort_des([-4, -5, 4])",
    "io_inp": [
      -4,
      -5,
      4
    ],
    "io_out": [
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3, 5, 0, -2, 3]\noutput : list = [3, 3, 2, 0, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(sort_des([-3, -3, 5, 0, -2, 3]),-1))))",
    "io_inp": [
      -3,
      -3,
      5,
      0,
      -2,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [4, 0, 5]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(reverse([4, 0, 5])))))",
    "io_inp": [
      4,
      0,
      5
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, -3, 3, -3]\noutput : list = [8, 8, 8, 32]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des([-3, -3, 3, -3]),-5)),4)",
    "io_inp": [
      -3,
      -3,
      3,
      -3
    ],
    "io_out": [
      8,
      8,
      8,
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(input),-5)),4)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(take(sort_des(take(take([-4, 3, -3],1),13)),5),5)",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(take(input,1),13)),5),5)"
  },
  {
    "input": "input : list = [-5, 0, 5, 2, -5, -3]\noutput : list = [8, 3, -2]",
    "output": "generated_output : list = take(sort_des(add_n(take(take([-5, 0, 5, 2, -5, -3],3),23),3)),49)",
    "io_inp": [
      -5,
      0,
      5,
      2,
      -5,
      -3
    ],
    "io_out": [
      8,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(take(input,3),23),3)),49)"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [-36, -12, -32]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(sub_n([5, -1, 4],-4)),-4)),12)",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      -36,
      -12,
      -32
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(sub_n(input,-4)),-4)),12)"
  },
  {
    "input": "input : list = [2, 1, 3, -5, 0]\noutput : list = [3]",
    "output": "generated_output : list = drop(take(sort_asc(take(drop([2, 1, 3, -5, 0],2),3)),11),2)",
    "io_inp": [
      2,
      1,
      3,
      -5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(take(drop(input,2),3)),11),2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-21, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n([-1, 4],-4),5)))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -21,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(input,-4),5)))"
  },
  {
    "input": "input : list = [4, 3, 2, 2, 2]\noutput : list = [-8, -6, -4, -4, -4]",
    "output": "generated_output : list = reverse(reverse(mul_n([4, 3, 2, 2, 2],-2)))",
    "io_inp": [
      4,
      3,
      2,
      2,
      2
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [2, -5, -2]\noutput : list = [6, -6, -15]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(mul_n([2, -5, -2],3)))),13)",
    "io_inp": [
      2,
      -5,
      -2
    ],
    "io_out": [
      6,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(mul_n(input,3)))),13)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des([2, -5]),-1),-2)))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des(input),-1),-2)))"
  },
  {
    "input": "input : list = [-1, 1, -3, -5]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take([-1, 1, -3, -5],2)",
    "io_inp": [
      -1,
      1,
      -3,
      -5
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 1, 2, 2, -2, 0]\noutput : list = [27, 18, 18, 15, 12, 6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(add_n([5, 1, 2, 2, -2, 0],3),3),-3)))",
    "io_inp": [
      5,
      1,
      2,
      2,
      -2,
      0
    ],
    "io_out": [
      27,
      18,
      18,
      15,
      12,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(add_n(input,3),3),-3)))"
  },
  {
    "input": "input : list = [1, 4, -5, -4, 5]\noutput : list = [-1, -4]",
    "output": "generated_output : list = take(take(mul_n([1, 4, -5, -4, 5],-1),11),2)",
    "io_inp": [
      1,
      4,
      -5,
      -4,
      5
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-1),11),2)"
  },
  {
    "input": "input : list = [-3, 3, -1, -4, 3]\noutput : list = [15, 15, -5, -15, -20]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse(reverse([-3, 3, -1, -4, 3])),5),22))",
    "io_inp": [
      -3,
      3,
      -1,
      -4,
      3
    ],
    "io_out": [
      15,
      15,
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(reverse(input)),5),22))"
  },
  {
    "input": "input : list = [-3, 3, -3, 2]\noutput : list = [-12, 12, -12, 8]",
    "output": "generated_output : list = take(mul_n(mul_n([-3, 3, -3, 2],-4),-1),22)",
    "io_inp": [
      -3,
      3,
      -3,
      2
    ],
    "io_out": [
      -12,
      12,
      -12,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-4),-1),22)"
  },
  {
    "input": "input : list = [4, 5, 0]\noutput : list = [6, 5, 1]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(sort_des([4, 5, 0]),1),16),-2),-2)",
    "io_inp": [
      4,
      5,
      0
    ],
    "io_out": [
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(sort_des(input),1),16),-2),-2)"
  },
  {
    "input": "input : list = [-4, -5, -1, -5, -5, -3]\noutput : list = [5, 4, 8, 4, 4, 6]",
    "output": "generated_output : list = add_n(add_n([-4, -5, -1, -5, -5, -3],5),4)",
    "io_inp": [
      -4,
      -5,
      -1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      5,
      4,
      8,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),4)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sub_n([-2, -3],-5)),3),-5),4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(sub_n(input,-5)),3),-5),4)"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [2, 5, -5]",
    "output": "generated_output : list = mul_n([-2, -5, 5],-1)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      2,
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [-9, -3]",
    "output": "generated_output : list = mul_n(drop([3, -3, -1],1),3)",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [3, -5, 2, -1, 5]\noutput : list = [11, 7, 4, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sub_n([3, -5, 2, -1, 5],5),-1),4)),-5)",
    "io_inp": [
      3,
      -5,
      2,
      -1,
      5
    ],
    "io_out": [
      11,
      7,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sub_n(input,5),-1),4)),-5)"
  },
  {
    "input": "input : list = [0, 0, 3, -1]\noutput : list = [5, 5, 8, 4]",
    "output": "generated_output : list = take(add_n([0, 0, 3, -1],5),4)",
    "io_inp": [
      0,
      0,
      3,
      -1
    ],
    "io_out": [
      5,
      5,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),4)"
  },
  {
    "input": "input : list = [5, -3, 4, 1, -5]\noutput : list = [5, -3, 4, 1, -5]",
    "output": "generated_output : list = reverse(reverse([5, -3, 4, 1, -5]))",
    "io_inp": [
      5,
      -3,
      4,
      1,
      -5
    ],
    "io_out": [
      5,
      -3,
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, 2, 0, -2]\noutput : list = [-7, -5, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n(sub_n([4, 2, 0, -2],4),1),26)))",
    "io_inp": [
      4,
      2,
      0,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(sub_n(input,4),1),26)))"
  },
  {
    "input": "input : list = [-1, -3, 3, 0, -1]\noutput : list = [-3, -5, 1, -2, -3]",
    "output": "generated_output : list = add_n([-1, -3, 3, 0, -1],-2)",
    "io_inp": [
      -1,
      -3,
      3,
      0,
      -1
    ],
    "io_out": [
      -3,
      -5,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [0, -4, -12]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(add_n(sort_asc([3, -3, 1]),-1),2),4))",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      0,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(add_n(sort_asc(input),-1),2),4))"
  },
  {
    "input": "input : list = [-3, -5, -5]\noutput : list = [150, 150, 120]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(add_n([-3, -5, -5],-4),-5),5),3))",
    "io_inp": [
      -3,
      -5,
      -5
    ],
    "io_out": [
      150,
      150,
      120
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(add_n(input,-4),-5),5),3))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(reverse([-3, -2]),9))),-2)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(reverse(input),9))),-2)"
  },
  {
    "input": "input : list = [0, 4, -5, 5, 4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = drop([0, 4, -5, 5, 4, 2],4)",
    "io_inp": [
      0,
      4,
      -5,
      5,
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [1, -2, 4]\noutput : list = [0, 3, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take(add_n([1, -2, 4],2),3))))",
    "io_inp": [
      1,
      -2,
      4
    ],
    "io_out": [
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(add_n(input,2),3))))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-9, -10]",
    "output": "generated_output : list = sub_n(add_n([-3, -4],-4),2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),2)"
  },
  {
    "input": "input : list = [-1, -2, -3, 4, -1]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(take([-1, -2, -3, 4, -1],1),-4),-3),1),-1)",
    "io_inp": [
      -1,
      -2,
      -3,
      4,
      -1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(take(input,1),-4),-3),1),-1)"
  },
  {
    "input": "input : list = [2, -2, 2, -4, 0, -2]\noutput : list = [4, 4]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(sort_des([2, -2, 2, -4, 0, -2]),3),2),-5),-4)",
    "io_inp": [
      2,
      -2,
      2,
      -4,
      0,
      -2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(sort_des(input),3),2),-5),-4)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [6, -3]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(sub_n([2, 5],3),-5),-2),-2),-3)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(sub_n(input,3),-5),-2),-2),-3)"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [6, 4, 4]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(sort_des([-2, 0, 0])),-1),4))",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(sort_des(input)),-1),4))"
  },
  {
    "input": "input : list = [-3, -1, 2]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(sort_asc([-3, -1, 2])),-1),-2))",
    "io_inp": [
      -3,
      -1,
      2
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(sort_asc(input)),-1),-2))"
  },
  {
    "input": "input : list = [-3, 1, 0, 2, 3]\noutput : list = [-10]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(take([-3, 1, 0, 2, 3],1),-2)),-5))",
    "io_inp": [
      -3,
      1,
      0,
      2,
      3
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(take(input,1),-2)),-5))"
  },
  {
    "input": "input : list = [2, -5, 4, 5, 3]\noutput : list = [-10, -8, -6, -4, 10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_asc([2, -5, 4, 5, 3]),4)),4),-2)",
    "io_inp": [
      2,
      -5,
      4,
      5,
      3
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_asc(input),4)),4),-2)"
  },
  {
    "input": "input : list = [3, 2, 1, 3, -5, 5]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_des(take(reverse(take([3, 2, 1, 3, -5, 5],1)),27)),48)",
    "io_inp": [
      3,
      2,
      1,
      3,
      -5,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(take(input,1)),27)),48)"
  },
  {
    "input": "input : list = [5, 1, -2, 3, -3, 1]\noutput : list = [50, 30, 15, 40, 10, 30]",
    "output": "generated_output : list = mul_n(sub_n(add_n([5, 1, -2, 3, -3, 1],2),-3),5)",
    "io_inp": [
      5,
      1,
      -2,
      3,
      -3,
      1
    ],
    "io_out": [
      50,
      30,
      15,
      40,
      10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,2),-3),5)"
  },
  {
    "input": "input : list = [2, 5, -2, -2, 3]\noutput : list = [44, 32, 26, 2, 2]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(add_n([2, 5, -2, -2, 3],3),-2),-3)),4)",
    "io_inp": [
      2,
      5,
      -2,
      -2,
      3
    ],
    "io_out": [
      44,
      32,
      26,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(add_n(input,3),-2),-3)),4)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(reverse([-4, -4]),1),-3)))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(reverse(input),1),-3)))"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [10, -5, -11]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_des([3, -4, -2]),-1),3),2)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      10,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_des(input),-1),3),2)"
  },
  {
    "input": "input : list = [-5, 2, 4, 1, 0, 3]\noutput : list = [-5, 2, 4]",
    "output": "generated_output : list = take([-5, 2, 4, 1, 0, 3],3)",
    "io_inp": [
      -5,
      2,
      4,
      1,
      0,
      3
    ],
    "io_out": [
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, -4, -2, 5, 5]\noutput : list = [3, 3, -15, -18, -24]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(reverse([-1, -4, -2, 5, 5])),-4),-1),-3)",
    "io_inp": [
      -1,
      -4,
      -2,
      5,
      5
    ],
    "io_out": [
      3,
      3,
      -15,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(reverse(input)),-4),-1),-3)"
  },
  {
    "input": "input : list = [-5, 2, 0, 0, 5, 4]\noutput : list = [-5, 0, 0, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([-5, 2, 0, 0, 5, 4])",
    "io_inp": [
      -5,
      2,
      0,
      0,
      5,
      4
    ],
    "io_out": [
      -5,
      0,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc([0, 1])",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [10, 7]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(add_n([2, 5],3)),-3)),5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      10,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(add_n(input,3)),-3)),5)"
  },
  {
    "input": "input : list = [1, -5, 5, 0]\noutput : list = [5, 1, 0, -5]",
    "output": "generated_output : list = take(take(sort_des([1, -5, 5, 0]),15),14)",
    "io_inp": [
      1,
      -5,
      5,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),15),14)"
  },
  {
    "input": "input : list = [1, -3, -2, 0]\noutput : list = [12, 8, 0, -4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n([1, -3, -2, 0],-2),2)))",
    "io_inp": [
      1,
      -3,
      -2,
      0
    ],
    "io_out": [
      12,
      8,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(input,-2),2)))"
  },
  {
    "input": "input : list = [-2, 4, 4, -3, -5]\noutput : list = [-1, 5, 5, -2, -4]",
    "output": "generated_output : list = sub_n([-2, 4, 4, -3, -5],-1)",
    "io_inp": [
      -2,
      4,
      4,
      -3,
      -5
    ],
    "io_out": [
      -1,
      5,
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -2, 1]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(take([-4, -2, 1],1)),-5),24),3)",
    "io_inp": [
      -4,
      -2,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(take(input,1)),-5),24),3)"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [-2, 3, 5]",
    "output": "generated_output : list = reverse(sub_n([4, 2, -3],-1))",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(add_n([-1, 1],1)),-4)))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(add_n(input,1)),-4)))"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [1, 6, 7]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(reverse([4, 3, -2]),1)),2))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(reverse(input),1)),2))"
  },
  {
    "input": "input : list = [4, 5, -1]\noutput : list = [11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(take([4, 5, -1],1)),-4),3))",
    "io_inp": [
      4,
      5,
      -1
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(take(input,1)),-4),3))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(sort_des([3, -2]))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -5, -3, -3, 3]\noutput : list = [-8, -6, -6, -6, 0]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(add_n([-3, -5, -3, -3, 3],-3)),27),1))",
    "io_inp": [
      -3,
      -5,
      -3,
      -3,
      3
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(add_n(input,-3)),27),1))"
  },
  {
    "input": "input : list = [2, 4, 0, 5, 0]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = sort_des(reverse(take([2, 4, 0, 5, 0],3)))",
    "io_inp": [
      2,
      4,
      0,
      5,
      0
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,3)))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [3, 8]",
    "output": "generated_output : list = add_n(add_n([-3, 2],5),1)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),1)"
  },
  {
    "input": "input : list = [-3, 3, 4, 1]\noutput : list = [-4, 0, 2, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(reverse([-3, 3, 4, 1])))),-1)",
    "io_inp": [
      -3,
      3,
      4,
      1
    ],
    "io_out": [
      -4,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-3, 4, -5, -1, -4, -1]\noutput : list = [-5, -4, -3, -1, -1, 4]",
    "output": "generated_output : list = sort_asc([-3, 4, -5, -1, -4, -1])",
    "io_inp": [
      -3,
      4,
      -5,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, -1, -3]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(take([-3, -5, -1, -3],1),-3))),-5)",
    "io_inp": [
      -3,
      -5,
      -1,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(take(input,1),-3))),-5)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [7, 13]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(sort_des([4, -2]),5),-4)))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      7,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(sort_des(input),5),-4)))"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [-28, 2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(drop([-4, 1, -5],1)),5),1),2)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      -28,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(drop(input,1)),5),1),2)"
  },
  {
    "input": "input : list = [1, -2, -4, -3, 0]\noutput : list = [8, 3, -7, -12, -17]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(mul_n([1, -2, -4, -3, 0],5))),3))",
    "io_inp": [
      1,
      -2,
      -4,
      -3,
      0
    ],
    "io_out": [
      8,
      3,
      -7,
      -12,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(mul_n(input,5))),3))"
  },
  {
    "input": "input : list = [5, -3, 4, 3]\noutput : list = [1, 0, -1, -7]",
    "output": "generated_output : list = reverse(add_n(take(add_n(sort_asc([5, -3, 4, 3]),-5),20),1))",
    "io_inp": [
      5,
      -3,
      4,
      3
    ],
    "io_out": [
      1,
      0,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(sort_asc(input),-5),20),1))"
  },
  {
    "input": "input : list = [3, -3, -2, -1]\noutput : list = [-6, -5, -4, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sub_n([3, -3, -2, -1],-2),4)),-1))",
    "io_inp": [
      3,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sub_n(input,-2),4)),-1))"
  },
  {
    "input": "input : list = [-5, 5, 5, 0]\noutput : list = [-28, 12, 12, -8]",
    "output": "generated_output : list = take(mul_n(sub_n([-5, 5, 5, 0],2),4),6)",
    "io_inp": [
      -5,
      5,
      5,
      0
    ],
    "io_out": [
      -28,
      12,
      12,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,2),4),6)"
  },
  {
    "input": "input : list = [5, 3, 4, 3, 2, -4]\noutput : list = [10, 8, 6, 6]",
    "output": "generated_output : list = reverse(mul_n(drop(sort_asc(sort_asc([5, 3, 4, 3, 2, -4])),2),2))",
    "io_inp": [
      5,
      3,
      4,
      3,
      2,
      -4
    ],
    "io_out": [
      10,
      8,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(sort_asc(sort_asc(input)),2),2))"
  },
  {
    "input": "input : list = [-1, -4, -2, -1, 4]\noutput : list = [-24, 6]",
    "output": "generated_output : list = mul_n(reverse(mul_n(take(drop([-1, -4, -2, -1, 4],3),14),-3)),2)",
    "io_inp": [
      -1,
      -4,
      -2,
      -1,
      4
    ],
    "io_out": [
      -24,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(take(drop(input,3),14),-3)),2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-1, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc([-2, -3]),-2),24)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),-2),24)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [6, 5, 0]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(sort_des([3, -3, 2]))),20),-3)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      6,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(sort_des(input))),20),-3)"
  },
  {
    "input": "input : list = [-3, -1, 0, -3, -5]\noutput : list = [3, 2, 0, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(sub_n([-3, -1, 0, -3, -5],2),5))))",
    "io_inp": [
      -3,
      -1,
      0,
      -3,
      -5
    ],
    "io_out": [
      3,
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(sub_n(input,2),5))))"
  },
  {
    "input": "input : list = [-2, 1, -5, 2, -4]\noutput : list = [-9, -21, 3, -25, -1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(reverse(add_n([-2, 1, -5, 2, -4],5))),-4),-3)",
    "io_inp": [
      -2,
      1,
      -5,
      2,
      -4
    ],
    "io_out": [
      -9,
      -21,
      3,
      -25,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(reverse(add_n(input,5))),-4),-3)"
  },
  {
    "input": "input : list = [2, 3, 2, 1, -4, -5]\noutput : list = [3, 0, -15, -18, -21]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(drop([2, 3, 2, 1, -4, -5],1)),-4),-3))",
    "io_inp": [
      2,
      3,
      2,
      1,
      -4,
      -5
    ],
    "io_out": [
      3,
      0,
      -15,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(drop(input,1)),-4),-3))"
  },
  {
    "input": "input : list = [-2, 4, 2, -5, -4, 2]\noutput : list = [-4, -3, -1, 3, 3, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc([-2, 4, 2, -5, -4, 2]))),1)",
    "io_inp": [
      -2,
      4,
      2,
      -5,
      -4,
      2
    ],
    "io_out": [
      -4,
      -3,
      -1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(input))),1)"
  },
  {
    "input": "input : list = [4, -3, -5, -3, -3, 4]\noutput : list = [13, 6, 4, 6, 6, 13]",
    "output": "generated_output : list = sub_n(sub_n([4, -3, -5, -3, -3, 4],-4),-5)",
    "io_inp": [
      4,
      -3,
      -5,
      -3,
      -3,
      4
    ],
    "io_out": [
      13,
      6,
      4,
      6,
      6,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-5)"
  },
  {
    "input": "input : list = [5, -2, 1, 2, 4]\noutput : list = [15, 10, 0, -5, -20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(reverse([5, -2, 1, 2, 4]),2),5)))",
    "io_inp": [
      5,
      -2,
      1,
      2,
      4
    ],
    "io_out": [
      15,
      10,
      0,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(reverse(input),2),5)))"
  },
  {
    "input": "input : list = [0, 3, 1]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = sort_asc([0, 3, 1])",
    "io_inp": [
      0,
      3,
      1
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1, -4, -2, 5, 5]\noutput : list = [5, 5, 2, 1, -2, -4]",
    "output": "generated_output : list = sort_des([2, 1, -4, -2, 5, 5])",
    "io_inp": [
      2,
      1,
      -4,
      -2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [7, 4]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(reverse([-3, 0]),2),4),-1))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(reverse(input),2),4),-1))"
  },
  {
    "input": "input : list = [4, 4, -2, 3, -1, 5]\noutput : list = [1, 0, 0, -1, -5, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(take(sort_asc([4, 4, -2, 3, -1, 5]),23),4)),15)",
    "io_inp": [
      4,
      4,
      -2,
      3,
      -1,
      5
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(sort_asc(input),23),4)),15)"
  },
  {
    "input": "input : list = [-3, 1, 4, 4, 3, 0]\noutput : list = [6, 6, 5, 3, 2, -1]",
    "output": "generated_output : list = sort_des(add_n([-3, 1, 4, 4, 3, 0],2))",
    "io_inp": [
      -3,
      1,
      4,
      4,
      3,
      0
    ],
    "io_out": [
      6,
      6,
      5,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [-3, 3, -4, -2]\noutput : list = [3, -15, 6, 0]",
    "output": "generated_output : list = mul_n(take(sub_n([-3, 3, -4, -2],-2),20),-3)",
    "io_inp": [
      -3,
      3,
      -4,
      -2
    ],
    "io_out": [
      3,
      -15,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-2),20),-3)"
  },
  {
    "input": "input : list = [-5, -2, 2, 5, -1, -5]\noutput : list = [-7, -4, 0, 3, -3, -7]",
    "output": "generated_output : list = add_n([-5, -2, 2, 5, -1, -5],-2)",
    "io_inp": [
      -5,
      -2,
      2,
      5,
      -1,
      -5
    ],
    "io_out": [
      -7,
      -4,
      0,
      3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -4, 2, 3, -3, -4]\noutput : list = [3, 2, -3, -4, -4]",
    "output": "generated_output : list = sort_des(take(drop([-4, -4, 2, 3, -3, -4],1),21))",
    "io_inp": [
      -4,
      -4,
      2,
      3,
      -3,
      -4
    ],
    "io_out": [
      3,
      2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,1),21))"
  },
  {
    "input": "input : list = [4, -2, -5, -3]\noutput : list = [0, -6, -9, -7]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(mul_n([4, -2, -5, -3],1),5))),1)",
    "io_inp": [
      4,
      -2,
      -5,
      -3
    ],
    "io_out": [
      0,
      -6,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(mul_n(input,1),5))),1)"
  },
  {
    "input": "input : list = [5, 0, 0, 3, -1]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(take([5, 0, 0, 3, -1],1),2))),-1)",
    "io_inp": [
      5,
      0,
      0,
      3,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(take(input,1),2))),-1)"
  },
  {
    "input": "input : list = [3, 4, 4, -1, -1]\noutput : list = [-1, -1, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(sort_asc([3, 4, 4, -1, -1]))),26))",
    "io_inp": [
      3,
      4,
      4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(sort_asc(input))),26))"
  },
  {
    "input": "input : list = [2, -2, -4, 3, -3]\noutput : list = [0, -1, -5, -6, -7]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(sort_des([2, -2, -4, 3, -3]))),35),3)",
    "io_inp": [
      2,
      -2,
      -4,
      3,
      -3
    ],
    "io_out": [
      0,
      -1,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(sort_des(input))),35),3)"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [7, 6]",
    "output": "generated_output : list = add_n(drop([-2, 4, 3],1),3)",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [4, -2, 5, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(take([4, -2, 5, 0],1),-5),26)",
    "io_inp": [
      4,
      -2,
      5,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,1),-5),26)"
  },
  {
    "input": "input : list = [5, -5, 0, 4]\noutput : list = [-15, 15, 0, -12]",
    "output": "generated_output : list = mul_n([5, -5, 0, 4],-3)",
    "io_inp": [
      5,
      -5,
      0,
      4
    ],
    "io_out": [
      -15,
      15,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 4, -4, 2, 5, -1]\noutput : list = [-2, 7, -1, 5, 8, 2]",
    "output": "generated_output : list = take(sub_n([-5, 4, -4, 2, 5, -1],-3),20)",
    "io_inp": [
      -5,
      4,
      -4,
      2,
      5,
      -1
    ],
    "io_out": [
      -2,
      7,
      -1,
      5,
      8,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),20)"
  },
  {
    "input": "input : list = [-3, 5, 4, 0, 0]\noutput : list = [-10, -7, -7, -3, -2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(add_n(reverse([-3, 5, 4, 0, 0]),-4),3)))",
    "io_inp": [
      -3,
      5,
      4,
      0,
      0
    ],
    "io_out": [
      -10,
      -7,
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(add_n(reverse(input),-4),3)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [5, -1]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc([-4, 2])),3),-3)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(input)),3),-3)"
  },
  {
    "input": "input : list = [1, -4, -5, 2, 5, 3]\noutput : list = [-2, 0, -3, -10, -9, -4]",
    "output": "generated_output : list = sub_n(reverse([1, -4, -5, 2, 5, 3]),5)",
    "io_inp": [
      1,
      -4,
      -5,
      2,
      5,
      3
    ],
    "io_out": [
      -2,
      0,
      -3,
      -10,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),5)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(drop([1, 0, -5],1)))),37)",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(drop(input,1)))),37)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [7, 4]",
    "output": "generated_output : list = reverse(take(add_n(take(sub_n([-5, -2],-5),10),4),8))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(sub_n(input,-5),10),4),8))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-1, 7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(sub_n([-3, 5],-2),2),2),-1),3)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(sub_n(input,-2),2),2),-1),3)"
  },
  {
    "input": "input : list = [-3, 2, -1, -5]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(take([-3, 2, -1, -5],1),1)",
    "io_inp": [
      -3,
      2,
      -1,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),1)"
  },
  {
    "input": "input : list = [4, -4, -1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = drop([4, -4, -1, -4],2)",
    "io_inp": [
      4,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-8, 0]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(mul_n([2, 0],-4))),27),5)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(mul_n(input,-4))),27),5)"
  },
  {
    "input": "input : list = [1, 0, -4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = drop([1, 0, -4, 5],2)",
    "io_inp": [
      1,
      0,
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [8, -20]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc([5, -2])),5),-4)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(input)),5),-4)"
  },
  {
    "input": "input : list = [0, -3, 2, -3, -5]\noutput : list = [0, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(take([0, -3, 2, -3, -5],2))),10))",
    "io_inp": [
      0,
      -3,
      2,
      -3,
      -5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(take(input,2))),10))"
  },
  {
    "input": "input : list = [2, -2, -1]\noutput : list = [6, 2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(drop(reverse([2, -2, -1]),1)),4))",
    "io_inp": [
      2,
      -2,
      -1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(drop(reverse(input),1)),4))"
  },
  {
    "input": "input : list = [-2, -5, 1, 5, 0, -2]\noutput : list = [5, 0, -2]",
    "output": "generated_output : list = drop([-2, -5, 1, 5, 0, -2],3)",
    "io_inp": [
      -2,
      -5,
      1,
      5,
      0,
      -2
    ],
    "io_out": [
      5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-9, 1]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(mul_n([1, 3],-5),-1)),15),5)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -9,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(mul_n(input,-5),-1)),15),5)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = add_n(sub_n([-4, 1],-2),1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),1)"
  },
  {
    "input": "input : list = [1, -1, 0, -4]\noutput : list = [-9, -7]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(take([1, -1, 0, -4],2)),5)),-3)",
    "io_inp": [
      1,
      -1,
      0,
      -4
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(take(input,2)),5)),-3)"
  },
  {
    "input": "input : list = [4, 4, 4, -3, -1, 2]\noutput : list = [-1, -4, -6, 1, 1, 1]",
    "output": "generated_output : list = reverse(reverse(reverse(take(sub_n([4, 4, 4, -3, -1, 2],3),24))))",
    "io_inp": [
      4,
      4,
      4,
      -3,
      -1,
      2
    ],
    "io_out": [
      -1,
      -4,
      -6,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(take(sub_n(input,3),24))))"
  },
  {
    "input": "input : list = [-2, 0, -2, 0, 1, -1]\noutput : list = [7, 3, 3, -1, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n([-2, 0, -2, 0, 1, -1],4))),-3))",
    "io_inp": [
      -2,
      0,
      -2,
      0,
      1,
      -1
    ],
    "io_out": [
      7,
      3,
      3,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_des(mul_n(input,4))),-3))"
  },
  {
    "input": "input : list = [-2, 3, -3]\noutput : list = [0, 1, 6]",
    "output": "generated_output : list = sub_n(sort_asc([-2, 3, -3]),-3)",
    "io_inp": [
      -2,
      3,
      -3
    ],
    "io_out": [
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-2, 2, -4, -1, 0, -3]\noutput : list = [-4, -3, -2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 2, -4, -1, 0, -3]))",
    "io_inp": [
      -2,
      2,
      -4,
      -1,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -2, -1, 2]\noutput : list = [-2, -17, -22, -37]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(add_n([-5, -2, -1, 2],5)),-5),6),-2)",
    "io_inp": [
      -5,
      -2,
      -1,
      2
    ],
    "io_out": [
      -2,
      -17,
      -22,
      -37
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(add_n(input,5)),-5),6),-2)"
  },
  {
    "input": "input : list = [3, 3, 1, 3]\noutput : list = [6, 8, 8, 8]",
    "output": "generated_output : list = sub_n(sort_asc([3, 3, 1, 3]),-5)",
    "io_inp": [
      3,
      3,
      1,
      3
    ],
    "io_out": [
      6,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [0, -4, -5, 0]\noutput : list = [5, 5, -11, -15]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n([0, -4, -5, 0],4),5)),25)",
    "io_inp": [
      0,
      -4,
      -5,
      0
    ],
    "io_out": [
      5,
      5,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(input,4),5)),25)"
  },
  {
    "input": "input : list = [5, -5, 2, -1, -1, 5]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(take([5, -5, 2, -1, -1, 5],1))",
    "io_inp": [
      5,
      -5,
      2,
      -1,
      -1,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [-4, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(reverse([3, 0, -1]),-5))),-2)",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(reverse(input),-5))),-2)"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [18, 3, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n(reverse([3, 0, -1]),5))),3)",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      18,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(reverse(input),5))),3)"
  },
  {
    "input": "input : list = [2, -4, 5, 0]\noutput : list = [0, 5, -4, 2]",
    "output": "generated_output : list = take(take(take(reverse([2, -4, 5, 0]),10),21),8)",
    "io_inp": [
      2,
      -4,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(input),10),21),8)"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(reverse([-2, 5, -3]),2)",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(input),2)"
  },
  {
    "input": "input : list = [5, 3, 0, 4, 3]\noutput : list = [19, 15, 11, 11, -1]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_des([5, 3, 0, 4, 3]),-2),-2),-2),5)",
    "io_inp": [
      5,
      3,
      0,
      4,
      3
    ],
    "io_out": [
      19,
      15,
      11,
      11,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sort_des(input),-2),-2),-2),5)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = reverse([1, -5])",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, 2]\noutput : list = [2, -5, -1]",
    "output": "generated_output : list = take(reverse(take(take(mul_n([-1, -5, 2],1),16),12)),7)",
    "io_inp": [
      -1,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(mul_n(input,1),16),12)),7)"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [14, 30]",
    "output": "generated_output : list = sub_n(drop(mul_n(sort_des(add_n([0, -4, 1],-3)),-4),1),-2)",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      14,
      30
    ],
    "output_masked": "generated_output : list = sub_n(drop(mul_n(sort_des(add_n(input,-3)),-4),1),-2)"
  },
  {
    "input": "input : list = [0, 4, 1, -2]\noutput : list = [-21, -15, -12, -3]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des(reverse([0, 4, 1, -2])),-5),3))",
    "io_inp": [
      0,
      4,
      1,
      -2
    ],
    "io_out": [
      -21,
      -15,
      -12,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(reverse(input)),-5),3))"
  },
  {
    "input": "input : list = [-3, -1, 2, 3, -1]\noutput : list = [1, 5, 4, 1]",
    "output": "generated_output : list = add_n(take(reverse([-3, -1, 2, 3, -1]),4),2)",
    "io_inp": [
      -3,
      -1,
      2,
      3,
      -1
    ],
    "io_out": [
      1,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),4),2)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-1, 7]",
    "output": "generated_output : list = add_n([-3, 5],2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, 5, -5, 1]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sort_des(add_n(drop([2, 5, -5, 1],2),-3))",
    "io_inp": [
      2,
      5,
      -5,
      1
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,2),-3))"
  },
  {
    "input": "input : list = [-1, 0, 1, 0, -2, -4]\noutput : list = [1, 2, 3, 2, 0, -2]",
    "output": "generated_output : list = add_n([-1, 0, 1, 0, -2, -4],2)",
    "io_inp": [
      -1,
      0,
      1,
      0,
      -2,
      -4
    ],
    "io_out": [
      1,
      2,
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = reverse(reverse([-4, -3, 3]))",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [4, 10, 6]",
    "output": "generated_output : list = sub_n([-1, 5, 1],-5)",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      4,
      10,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, 1, 4, 5]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take([1, 1, 4, 5],2),1),1))",
    "io_inp": [
      1,
      1,
      4,
      5
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(input,2),1),1))"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [-3, 5, 5]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(sort_des([-4, 4, 4])),-1),20))",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(sort_des(input)),-1),20))"
  },
  {
    "input": "input : list = [-3, -1, 4, -3]\noutput : list = [-15, -5, 20, -15]",
    "output": "generated_output : list = mul_n(mul_n([-3, -1, 4, -3],-5),-1)",
    "io_inp": [
      -3,
      -1,
      4,
      -3
    ],
    "io_out": [
      -15,
      -5,
      20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),-1)"
  },
  {
    "input": "input : list = [1, 3, -5, -4, -5]\noutput : list = [3, 1, -4, -5, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_des(sort_des([1, 3, -5, -4, -5]))),12))",
    "io_inp": [
      1,
      3,
      -5,
      -4,
      -5
    ],
    "io_out": [
      3,
      1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_des(sort_des(input))),12))"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-6, -5, 0]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc([-3, 3, -2])),6),-3))",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc(input)),6),-3))"
  },
  {
    "input": "input : list = [3, 1, 5, -4, -3, 5]\noutput : list = [9, 9, 7, 5, 1, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sub_n(sub_n([3, 1, 5, -4, -3, 5],5),-2)),-4),-3)",
    "io_inp": [
      3,
      1,
      5,
      -4,
      -3,
      5
    ],
    "io_out": [
      9,
      9,
      7,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sub_n(sub_n(input,5),-2)),-4),-3)"
  },
  {
    "input": "input : list = [-1, 5, -1, 4, -1]\noutput : list = [-8, 2]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(drop([-1, 5, -1, 4, -1],3),-2)))",
    "io_inp": [
      -1,
      5,
      -1,
      4,
      -1
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(drop(input,3),-2)))"
  },
  {
    "input": "input : list = [5, -5, 1, 5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(take([5, -5, 1, 5, -5],2)),31)))",
    "io_inp": [
      5,
      -5,
      1,
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(take(input,2)),31)))"
  },
  {
    "input": "input : list = [5, 0, 5, -5]\noutput : list = [-5, 0, 5, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc([5, 0, 5, -5])),15))",
    "io_inp": [
      5,
      0,
      5,
      -5
    ],
    "io_out": [
      -5,
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(input)),15))"
  },
  {
    "input": "input : list = [3, 2, -3, 1]\noutput : list = [6, 4, -6, 2]",
    "output": "generated_output : list = mul_n([3, 2, -3, 1],2)",
    "io_inp": [
      3,
      2,
      -3,
      1
    ],
    "io_out": [
      6,
      4,
      -6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-5]",
    "output": "generated_output : list = take(sort_des(take([-5, -1, 1],1)),23)",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(input,1)),23)"
  },
  {
    "input": "input : list = [-2, -3, 2, 4]\noutput : list = [9, 6, -6, -12]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sort_asc([-2, -3, 2, 4]),-1))),3)",
    "io_inp": [
      -2,
      -3,
      2,
      4
    ],
    "io_out": [
      9,
      6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sort_asc(input),-1))),3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = reverse([-2, 1])",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -4, -2, -2, 5, 3]\noutput : list = [20, -5, -15]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(drop([5, -4, -2, -2, 5, 3],3)),-2),-4),-5)",
    "io_inp": [
      5,
      -4,
      -2,
      -2,
      5,
      3
    ],
    "io_out": [
      20,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(drop(input,3)),-2),-4),-5)"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [-5, -5, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(sort_des([0, 3, 0]),17),4),1))",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(sort_des(input),17),4),1))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = add_n([-5, 4],1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, -5, 4, 0, -5, 1]\noutput : list = [7, 4, 3, -2, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(drop([4, -5, 4, 0, -5, 1],1),-4))),-1)",
    "io_inp": [
      4,
      -5,
      4,
      0,
      -5,
      1
    ],
    "io_out": [
      7,
      4,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(drop(input,1),-4))),-1)"
  },
  {
    "input": "input : list = [-4, 4, 3, -3, 1, -5]\noutput : list = [-1, 7, 6, 0, 4, -2]",
    "output": "generated_output : list = add_n([-4, 4, 3, -3, 1, -5],3)",
    "io_inp": [
      -4,
      4,
      3,
      -3,
      1,
      -5
    ],
    "io_out": [
      -1,
      7,
      6,
      0,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, -2, 5, 0, -3, -2]\noutput : list = [-5, 0, 2, 2, 3, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n([-4, -2, 5, 0, -3, -2],-1)),22)",
    "io_inp": [
      -4,
      -2,
      5,
      0,
      -3,
      -2
    ],
    "io_out": [
      -5,
      0,
      2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-1)),22)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(add_n(add_n(take(sort_asc([0, -2]),1),-1),5),4)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(take(sort_asc(input),1),-1),5),4)"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [40, 28, 36]",
    "output": "generated_output : list = mul_n(sub_n([5, 2, 4],-5),4)",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      40,
      28,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),4)"
  },
  {
    "input": "input : list = [-5, 0, 5, 1]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take([-5, 0, 5, 1],1),2),1),-1)",
    "io_inp": [
      -5,
      0,
      5,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(input,1),2),1),-1)"
  },
  {
    "input": "input : list = [-3, 1, -1, 0, 0, -1]\noutput : list = [2, 1, 1, 0, 0, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(sort_asc([-3, 1, -1, 0, 0, -1]),13)),-1))",
    "io_inp": [
      -3,
      1,
      -1,
      0,
      0,
      -1
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(sort_asc(input),13)),-1))"
  },
  {
    "input": "input : list = [5, 5, -1, -3, -3]\noutput : list = [-10, -10, 2, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(reverse([5, 5, -1, -3, -3])),-2)))",
    "io_inp": [
      5,
      5,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(reverse(input)),-2)))"
  },
  {
    "input": "input : list = [-3, -2, 1, 4, 4, 5]\noutput : list = [4, 5, 8, 11, 11, 12]",
    "output": "generated_output : list = add_n(take(add_n(sub_n([-3, -2, 1, 4, 4, 5],-4),1),18),2)",
    "io_inp": [
      -3,
      -2,
      1,
      4,
      4,
      5
    ],
    "io_out": [
      4,
      5,
      8,
      11,
      11,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(input,-4),1),18),2)"
  },
  {
    "input": "input : list = [-4, -5, -4]\noutput : list = [-2, -2, -3]",
    "output": "generated_output : list = add_n(take(reverse(sort_asc(sub_n([-4, -5, -4],1))),35),3)",
    "io_inp": [
      -4,
      -5,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_asc(sub_n(input,1))),35),3)"
  },
  {
    "input": "input : list = [0, 5, -3, -3]\noutput : list = [-6, -6, 0, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_des(sort_des([0, 5, -3, -3])),2)),24)",
    "io_inp": [
      0,
      5,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6,
      0,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_des(sort_des(input)),2)),24)"
  },
  {
    "input": "input : list = [1, 0, -1, 3, 4]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(take([1, 0, -1, 3, 4],1)),27)),-4)",
    "io_inp": [
      1,
      0,
      -1,
      3,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(take(input,1)),27)),-4)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [-6, 0, 12]",
    "output": "generated_output : list = take(mul_n(add_n([-3, -1, 3],1),3),5)",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      -6,
      0,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,1),3),5)"
  },
  {
    "input": "input : list = [-4, 3, 5, 0, -5]\noutput : list = [3, 1, -2, -6, -7]",
    "output": "generated_output : list = sort_des(take(take(sub_n([-4, 3, 5, 0, -5],2),11),14))",
    "io_inp": [
      -4,
      3,
      5,
      0,
      -5
    ],
    "io_out": [
      3,
      1,
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sub_n(input,2),11),14))"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [-7, -3, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse([-5, -1, 2]),2))",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      -7,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),2))"
  },
  {
    "input": "input : list = [3, 2, -5]\noutput : list = [2, 9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(drop([3, 2, -5],1),3)),-4)",
    "io_inp": [
      3,
      2,
      -5
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(drop(input,1),3)),-4)"
  },
  {
    "input": "input : list = [-1, -4, -4, -1, -1]\noutput : list = [-1, -1, -1, -4, -4]",
    "output": "generated_output : list = take(sort_des([-1, -4, -4, -1, -1]),28)",
    "io_inp": [
      -1,
      -4,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),28)"
  },
  {
    "input": "input : list = [0, 4, 0, -2, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take([0, 4, 0, -2, 0],1),3))))",
    "io_inp": [
      0,
      4,
      0,
      -2,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take(input,1),3))))"
  },
  {
    "input": "input : list = [4, 5, 1]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = take(reverse(add_n(sub_n(sort_asc([4, 5, 1]),2),1)),33)",
    "io_inp": [
      4,
      5,
      1
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sub_n(sort_asc(input),2),1)),33)"
  },
  {
    "input": "input : list = [0, -1, -1, 4]\noutput : list = [45, -30, -30, -15]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(reverse([0, -1, -1, 4]),2),-1),-3),-5)",
    "io_inp": [
      0,
      -1,
      -1,
      4
    ],
    "io_out": [
      45,
      -30,
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(reverse(input),2),-1),-3),-5)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-9, -18]",
    "output": "generated_output : list = reverse(mul_n(take(sort_des(add_n([-1, 2],4)),22),-3))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -9,
      -18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_des(add_n(input,4)),22),-3))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc([2, 4])",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -4, 2, 3, 2, 2]\noutput : list = [-1, 5, 5, 5, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des([5, -4, 2, 3, 2, 2])),3))",
    "io_inp": [
      5,
      -4,
      2,
      3,
      2,
      2
    ],
    "io_out": [
      -1,
      5,
      5,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(input)),3))"
  },
  {
    "input": "input : list = [-4, 2, -2, 2, 1, 3]\noutput : list = [-34, -10, -22, 26, -22, 50]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(reverse([-4, 2, -2, 2, 1, 3]),4),-3),9),2)",
    "io_inp": [
      -4,
      2,
      -2,
      2,
      1,
      3
    ],
    "io_out": [
      -34,
      -10,
      -22,
      26,
      -22,
      50
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(reverse(input),4),-3),9),2)"
  },
  {
    "input": "input : list = [0, 2, 2, -3]\noutput : list = [3, 3, 1, -2]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(reverse([0, 2, 2, -3])),-3)),4)",
    "io_inp": [
      0,
      2,
      2,
      -3
    ],
    "io_out": [
      3,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(reverse(input)),-3)),4)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [4]",
    "output": "generated_output : list = reverse(take(sort_des(take(sub_n([0, -1],-4),1)),26))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(sub_n(input,-4),1)),26))"
  },
  {
    "input": "input : list = [-3, 5, -1, 5]\noutput : list = [11, 11, 5, 3]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sub_n([-3, 5, -1, 5],-3))),-3),30)",
    "io_inp": [
      -3,
      5,
      -1,
      5
    ],
    "io_out": [
      11,
      11,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sub_n(input,-3))),-3),30)"
  },
  {
    "input": "input : list = [1, 5, 1, 5, -3]\noutput : list = [7, 15, 11, 15, 11]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(add_n([1, 5, 1, 5, -3],-2),4),3),5))",
    "io_inp": [
      1,
      5,
      1,
      5,
      -3
    ],
    "io_out": [
      7,
      15,
      11,
      15,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(add_n(input,-2),4),3),5))"
  },
  {
    "input": "input : list = [1, -1, 4, 2]\noutput : list = [-1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([1, -1, 4, 2])",
    "io_inp": [
      1,
      -1,
      4,
      2
    ],
    "io_out": [
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, -4, -2]\noutput : list = [0, 10, -8, -4]",
    "output": "generated_output : list = mul_n([0, 5, -4, -2],2)",
    "io_inp": [
      0,
      5,
      -4,
      -2
    ],
    "io_out": [
      0,
      10,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, -4, 3, -5]\noutput : list = [-4, -3, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_des([-2, -4, 3, -5]),-1))))",
    "io_inp": [
      -2,
      -4,
      3,
      -5
    ],
    "io_out": [
      -4,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [-5, -4, 3, 4, 3]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(sort_des(take([-5, -4, 3, 4, 3],2)))",
    "io_inp": [
      -5,
      -4,
      3,
      4,
      3
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [2, 5]",
    "output": "generated_output : list = sub_n([1, 4],-1)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [75, 100]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(reverse([-3, -4]),-5)),5))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      75,
      100
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(reverse(input),-5)),5))"
  },
  {
    "input": "input : list = [-5, 0, -2, 5]\noutput : list = [-15]",
    "output": "generated_output : list = take(reverse(reverse(drop(mul_n([-5, 0, -2, 5],-3),3))),9)",
    "io_inp": [
      -5,
      0,
      -2,
      5
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(drop(mul_n(input,-3),3))),9)"
  },
  {
    "input": "input : list = [0, 0, 1, -3]\noutput : list = [0, 0]",
    "output": "generated_output : list = take([0, 0, 1, -3],2)",
    "io_inp": [
      0,
      0,
      1,
      -3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 4, 1]\noutput : list = [-8, -6, -9]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(add_n([2, 4, 1],-5)),10)),5)",
    "io_inp": [
      2,
      4,
      1
    ],
    "io_out": [
      -8,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(add_n(input,-5)),10)),5)"
  },
  {
    "input": "input : list = [3, 2, -3, 3, 1, 5]\noutput : list = [6, 5, 0, 6, 4, 8]",
    "output": "generated_output : list = sub_n(take(add_n(take(sub_n([3, 2, -3, 3, 1, 5],-2),27),-1),27),-2)",
    "io_inp": [
      3,
      2,
      -3,
      3,
      1,
      5
    ],
    "io_out": [
      6,
      5,
      0,
      6,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sub_n(input,-2),27),-1),27),-2)"
  },
  {
    "input": "input : list = [-4, 0, -4, -4]\noutput : list = [-4, -4, -4, 0]",
    "output": "generated_output : list = reverse(sort_des([-4, 0, -4, -4]))",
    "io_inp": [
      -4,
      0,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [3, -3, -4, 4]\noutput : list = [8, 6, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n([3, -3, -4, 4],-2))",
    "io_inp": [
      3,
      -3,
      -4,
      4
    ],
    "io_out": [
      8,
      6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [0, -1, 4, -2, 0]\noutput : list = [13, 9, 5, 5, -11]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(mul_n([0, -1, 4, -2, 0],-4)),1),4),12)",
    "io_inp": [
      0,
      -1,
      4,
      -2,
      0
    ],
    "io_out": [
      13,
      9,
      5,
      5,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(mul_n(input,-4)),1),4),12)"
  },
  {
    "input": "input : list = [-3, 0, 2, -5]\noutput : list = [2, 4, 7, 9]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse([-3, 0, 2, -5]))),-1),4)",
    "io_inp": [
      -3,
      0,
      2,
      -5
    ],
    "io_out": [
      2,
      4,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(reverse(input))),-1),4)"
  },
  {
    "input": "input : list = [-4, -3, 5]\noutput : list = [-2, -18]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(drop([-4, -3, 5],1)),-4),-2))",
    "io_inp": [
      -4,
      -3,
      5
    ],
    "io_out": [
      -2,
      -18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(drop(input,1)),-4),-2))"
  },
  {
    "input": "input : list = [-2, 1, -3, 0]\noutput : list = [0, -2, -3]",
    "output": "generated_output : list = drop(sort_des(sort_asc(sort_des(sort_asc([-2, 1, -3, 0])))),1)",
    "io_inp": [
      -2,
      1,
      -3,
      0
    ],
    "io_out": [
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_asc(sort_des(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [2, -5, 1, 1, 2]\noutput : list = [-6, -6, -3, -3, 15]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(sort_asc([2, -5, 1, 1, 2]))),-3))",
    "io_inp": [
      2,
      -5,
      1,
      1,
      2
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -3,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [-1, 1, -5, -2, 0]\noutput : list = [12, 11, 10, 9, 6]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n([-1, 1, -5, -2, 0],-2))),5),-4)",
    "io_inp": [
      -1,
      1,
      -5,
      -2,
      0
    ],
    "io_out": [
      12,
      11,
      10,
      9,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n(input,-2))),5),-4)"
  },
  {
    "input": "input : list = [-3, 4, 0, 5]\noutput : list = [14, 8, 0, -2]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(sort_des([-3, 4, 0, 5]),15)),4),-2)",
    "io_inp": [
      -3,
      4,
      0,
      5
    ],
    "io_out": [
      14,
      8,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(sort_des(input),15)),4),-2)"
  },
  {
    "input": "input : list = [2, -3, 1, -3, 3]\noutput : list = [-1, -2, -3, -7, -7]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(add_n([2, -3, 1, -3, 3],1))),-1),-4)",
    "io_inp": [
      2,
      -3,
      1,
      -3,
      3
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(add_n(input,1))),-1),-4)"
  },
  {
    "input": "input : list = [0, 0, 2, 0, -5, 1]\noutput : list = [2, 1, 0, 0, 0, -5]",
    "output": "generated_output : list = sort_des([0, 0, 2, 0, -5, 1])",
    "io_inp": [
      0,
      0,
      2,
      0,
      -5,
      1
    ],
    "io_out": [
      2,
      1,
      0,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, 0, 5, 1, 3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(take([-1, 4, 0, 5, 1, 3],1))),-1))",
    "io_inp": [
      -1,
      4,
      0,
      5,
      1,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(take(input,1))),-1))"
  },
  {
    "input": "input : list = [5, -5, 3, 4, -2]\noutput : list = [8, 6, 4, -6, -12]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(mul_n([5, -5, 3, 4, -2],2),17))),-2)",
    "io_inp": [
      5,
      -5,
      3,
      4,
      -2
    ],
    "io_out": [
      8,
      6,
      4,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(mul_n(input,2),17))),-2)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_des([0, -4, 2]))",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-2, -7]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sub_n([4, -1],-3),-1))))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(sub_n(input,-3),-1))))"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-9, -10, -12]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(sub_n([-2, -1, -4],4)),-4)))",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(sub_n(input,4)),-4)))"
  },
  {
    "input": "input : list = [-2, 4, 5, 5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(sort_asc([-2, 4, 5, 5, -4]),4)),1),4)",
    "io_inp": [
      -2,
      4,
      5,
      5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(sort_asc(input),4)),1),4)"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-14, -14]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(drop([4, -3, -3],1),4),4),-2))",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(drop(input,1),4),4),-2))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [17, -1]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(mul_n([-5, 1],-1),3))),2)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      17,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(mul_n(input,-1),3))),2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-15, -35]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(sort_asc([2, -2]),6),5),5))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -15,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(sort_asc(input),6),5),5))"
  },
  {
    "input": "input : list = [-4, 3, 4, 2, 4, -1]\noutput : list = [-6, -3, 0, 1, 2, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(sub_n([-4, 3, 4, 2, 4, -1],-4)),5)),1)",
    "io_inp": [
      -4,
      3,
      4,
      2,
      4,
      -1
    ],
    "io_out": [
      -6,
      -3,
      0,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(sub_n(input,-4)),5)),1)"
  },
  {
    "input": "input : list = [0, -5, -1, 5, 3, 1]\noutput : list = [4, 2, 0, -1, -2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(add_n([0, -5, -1, 5, 3, 1],-3),1),2)))",
    "io_inp": [
      0,
      -5,
      -1,
      5,
      3,
      1
    ],
    "io_out": [
      4,
      2,
      0,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(add_n(input,-3),1),2)))"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [7, 7, 8]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse([4, 4, 5]),-3)))",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(input),-3)))"
  },
  {
    "input": "input : list = [3, -5, -4, -1]\noutput : list = [-3, -2, 1, 5]",
    "output": "generated_output : list = sort_asc(sub_n([3, -5, -4, -1],-2))",
    "io_inp": [
      3,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [2, -2, -4, 1]\noutput : list = [6, 3, -6, -12]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_asc([2, -2, -4, 1])),-1),-3))",
    "io_inp": [
      2,
      -2,
      -4,
      1
    ],
    "io_out": [
      6,
      3,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_asc(input)),-1),-3))"
  },
  {
    "input": "input : list = [-1, -5, 4]\noutput : list = [-5, -1, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_des([-1, -5, 4])))))",
    "io_inp": [
      -1,
      -5,
      4
    ],
    "io_out": [
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [3, -6, -1]",
    "output": "generated_output : list = take(sub_n(reverse([0, -5, 4]),1),5)",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      3,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),1),5)"
  },
  {
    "input": "input : list = [5, 1, -2, 4, -3]\noutput : list = [8, 4, 1, 7, 0]",
    "output": "generated_output : list = add_n([5, 1, -2, 4, -3],3)",
    "io_inp": [
      5,
      1,
      -2,
      4,
      -3
    ],
    "io_out": [
      8,
      4,
      1,
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [1, 5]",
    "output": "generated_output : list = add_n(reverse(drop([-5, 2, -2],1)),3)",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,1)),3)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc([-2, 2])",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, 1, 4, -4]\noutput : list = [125, 101, 101, -19, -91]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(mul_n([-5, -4, 1, 4, -4],3),2)),-4),-5)",
    "io_inp": [
      -5,
      -4,
      1,
      4,
      -4
    ],
    "io_out": [
      125,
      101,
      101,
      -19,
      -91
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(mul_n(input,3),2)),-4),-5)"
  },
  {
    "input": "input : list = [0, 5, 1, -1, 2]\noutput : list = [-4, -3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(sub_n([0, 5, 1, -1, 2],3))",
    "io_inp": [
      0,
      5,
      1,
      -1,
      2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-12, 12]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_asc([1, -1]),5),5),4),3)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_asc(input),5),5),4),3)"
  },
  {
    "input": "input : list = [4, 5, 0, -5, 2, -2]\noutput : list = [5, 4, 2, 0, -2, -5]",
    "output": "generated_output : list = take(sort_des([4, 5, 0, -5, 2, -2]),8)",
    "io_inp": [
      4,
      5,
      0,
      -5,
      2,
      -2
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),8)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-24, -12]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n([1, 2],4),-3)),9)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -24,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(input,4),-3)),9)"
  },
  {
    "input": "input : list = [1, -3, 1, 0, 1]\noutput : list = [-12, 0, 4, 4, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(mul_n([1, -3, 1, 0, 1],4))),17))",
    "io_inp": [
      1,
      -3,
      1,
      0,
      1
    ],
    "io_out": [
      -12,
      0,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(mul_n(input,4))),17))"
  },
  {
    "input": "input : list = [5, -5, -2, -5, -1]\noutput : list = [5, -1, -2, -5, -5]",
    "output": "generated_output : list = sort_des([5, -5, -2, -5, -1])",
    "io_inp": [
      5,
      -5,
      -2,
      -5,
      -1
    ],
    "io_out": [
      5,
      -1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, 5, -4, 5, -3]\noutput : list = [-9, -8, -7, -4, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(add_n([1, -2, 5, -4, 5, -3],-1),-4),14)))",
    "io_inp": [
      1,
      -2,
      5,
      -4,
      5,
      -3
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(add_n(input,-1),-4),14)))"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [-8, -10, -12]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(sort_asc([0, -2, 2]),5),5)),5)",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      -8,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(sort_asc(input),5),5)),5)"
  },
  {
    "input": "input : list = [-4, 4, -3, 2, -3, 3]\noutput : list = [3, -3, 2, -3, 4, -4]",
    "output": "generated_output : list = reverse([-4, 4, -3, 2, -3, 3])",
    "io_inp": [
      -4,
      4,
      -3,
      2,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      2,
      -3,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-11, -15]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(sort_asc([-1, -2]),4),-3)),-4)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -11,
      -15
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(sort_asc(input),4),-3)),-4)"
  },
  {
    "input": "input : list = [-5, 4, -4, 4, 2, -3]\noutput : list = [4, 4, 2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-5, 4, -4, 4, 2, -3])))",
    "io_inp": [
      -5,
      4,
      -4,
      4,
      2,
      -3
    ],
    "io_out": [
      4,
      4,
      2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, -2, 1, -5, 2, -5]\noutput : list = [-24, -15, -12, -3, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(sub_n([5, -2, 1, -5, 2, -5],-3)),-3)))",
    "io_inp": [
      5,
      -2,
      1,
      -5,
      2,
      -5
    ],
    "io_out": [
      -24,
      -15,
      -12,
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(sub_n(input,-3)),-3)))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [16, 16]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-2, -2]),-4),2)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),-4),2)"
  },
  {
    "input": "input : list = [-4, 4, 1, -2, -5, -2]\noutput : list = [-4, -7, -10, -10, -12, -13]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(mul_n([-4, 4, 1, -2, -5, -2],1)),5),3))",
    "io_inp": [
      -4,
      4,
      1,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -7,
      -10,
      -10,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(mul_n(input,1)),5),3))"
  },
  {
    "input": "input : list = [2, 0, 2, -5]\noutput : list = [1, 1, -1, -6]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(reverse([2, 0, 2, -5])),-1),33))",
    "io_inp": [
      2,
      0,
      2,
      -5
    ],
    "io_out": [
      1,
      1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(reverse(input)),-1),33))"
  },
  {
    "input": "input : list = [-3, -4, 5, -4]\noutput : list = [2, 1, 10, 1]",
    "output": "generated_output : list = add_n([-3, -4, 5, -4],5)",
    "io_inp": [
      -3,
      -4,
      5,
      -4
    ],
    "io_out": [
      2,
      1,
      10,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 4, 0, -5, 5, -4]\noutput : list = [-13, -4, -14, -9, -5, -9]",
    "output": "generated_output : list = sub_n(sub_n(take(take(reverse([0, 4, 0, -5, 5, -4]),10),32),5),4)",
    "io_inp": [
      0,
      4,
      0,
      -5,
      5,
      -4
    ],
    "io_out": [
      -13,
      -4,
      -14,
      -9,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(reverse(input),10),32),5),4)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_des([0, 5])),-1)),-3)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_des(input)),-1)),-3)"
  },
  {
    "input": "input : list = [4, -5, -4, -4, -2]\noutput : list = [-4, -8, -8, -10, 8]",
    "output": "generated_output : list = mul_n(reverse([4, -5, -4, -4, -2]),2)",
    "io_inp": [
      4,
      -5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -8,
      -8,
      -10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [2, -5, -5, -4, 4]\noutput : list = [4, 2, -4, -5, -5]",
    "output": "generated_output : list = sort_des([2, -5, -5, -4, 4])",
    "io_inp": [
      2,
      -5,
      -5,
      -4,
      4
    ],
    "io_out": [
      4,
      2,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 0, 1, 5]\noutput : list = [-23, 2, 7, 27]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n([-5, 0, 1, 5],-5),-1)),2)",
    "io_inp": [
      -5,
      0,
      1,
      5
    ],
    "io_out": [
      -23,
      2,
      7,
      27
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(input,-5),-1)),2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_des([1, 0]),1))))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [2, 2, 0]\noutput : list = [-9, -9, -11]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(sub_n([2, 2, 0],4)),3),-4))",
    "io_inp": [
      2,
      2,
      0
    ],
    "io_out": [
      -9,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(sub_n(input,4)),3),-4))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-2, 6]",
    "output": "generated_output : list = reverse(sub_n([3, -5],-3))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-8, 8]",
    "output": "generated_output : list = mul_n(sort_asc(take(add_n([5, -3],-1),2)),2)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(add_n(input,-1),2)),2)"
  },
  {
    "input": "input : list = [-5, -2, 2, 2, -4, 1]\noutput : list = [4, 4, 3, 0, -2, -3]",
    "output": "generated_output : list = take(reverse(take(sort_asc(sub_n([-5, -2, 2, 2, -4, 1],-2)),23)),40)",
    "io_inp": [
      -5,
      -2,
      2,
      2,
      -4,
      1
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(sub_n(input,-2)),23)),40)"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [5, 6, 1]",
    "output": "generated_output : list = take(take(reverse(reverse(add_n([1, 2, -3],4))),20),17)",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      5,
      6,
      1
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(add_n(input,4))),20),17)"
  },
  {
    "input": "input : list = [2, 4, -4, 3, 0, -3]\noutput : list = [-44, -40, -28, -16, -12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(add_n(drop([2, 4, -4, 3, 0, -3],1),5)),2),-4)",
    "io_inp": [
      2,
      4,
      -4,
      3,
      0,
      -3
    ],
    "io_out": [
      -44,
      -40,
      -28,
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(add_n(drop(input,1),5)),2),-4)"
  },
  {
    "input": "input : list = [-5, -1, -3, 3]\noutput : list = [7, 3, 1, -1]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sub_n([-5, -1, -3, 3],-4)))))",
    "io_inp": [
      -5,
      -1,
      -3,
      3
    ],
    "io_out": [
      7,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [-4, -1, 3, 0, -5, -3]\noutput : list = [-5, -8, -10]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(drop([-4, -1, 3, 0, -5, -3],3),23),4),1))",
    "io_inp": [
      -4,
      -1,
      3,
      0,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(drop(input,3),23),4),1))"
  },
  {
    "input": "input : list = [-2, 0, 5, -4]\noutput : list = [0, -5, -7, -9]",
    "output": "generated_output : list = take(reverse(sort_asc(reverse(sub_n([-2, 0, 5, -4],5)))),4)",
    "io_inp": [
      -2,
      0,
      5,
      -4
    ],
    "io_out": [
      0,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(reverse(sub_n(input,5)))),4)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-7]",
    "output": "generated_output : list = take(sub_n(sort_asc(drop(sort_des([-1, -5, -4]),2)),2),47)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(drop(sort_des(input),2)),2),47)"
  },
  {
    "input": "input : list = [3, -2, -5, 5, 1]\noutput : list = [-66, -21, 6, -84, -48]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(sub_n([3, -2, -5, 5, 1],-4),3),16),-1),-3)",
    "io_inp": [
      3,
      -2,
      -5,
      5,
      1
    ],
    "io_out": [
      -66,
      -21,
      6,
      -84,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(sub_n(input,-4),3),16),-1),-3)"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [3]",
    "output": "generated_output : list = drop(sort_asc([3, 2, 2]),2)",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),2)"
  },
  {
    "input": "input : list = [1, 0, 4, -4]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take([1, 0, 4, -4],1))",
    "io_inp": [
      1,
      0,
      4,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, 5, 3, -4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(add_n([4, 5, 3, -4],-2),1)),2))",
    "io_inp": [
      4,
      5,
      3,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(add_n(input,-2),1)),2))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [3, 8]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(sub_n([-1, 4],-4)))),6)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(sub_n(input,-4)))),6)"
  },
  {
    "input": "input : list = [1, 1, 4, 4, -4]\noutput : list = [-4, 1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([1, 1, 4, 4, -4])",
    "io_inp": [
      1,
      1,
      4,
      4,
      -4
    ],
    "io_out": [
      -4,
      1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1, 4, -3]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(drop(sort_asc([-2, 1, 4, -3]),3))))",
    "io_inp": [
      -2,
      1,
      4,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(drop(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [-2, -3, 5, 1, 4]\noutput : list = [-3, -2, 1, 4, 5]",
    "output": "generated_output : list = sort_asc([-2, -3, 5, 1, 4])",
    "io_inp": [
      -2,
      -3,
      5,
      1,
      4
    ],
    "io_out": [
      -3,
      -2,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, 5]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take([1, 5, 5],1),-4)",
    "io_inp": [
      1,
      5,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [2, -2, -5, 3, 0, 1]\noutput : list = [-4, -5, -6, -7, -9, -12]",
    "output": "generated_output : list = take(sort_des(add_n(take(sub_n([2, -2, -5, 3, 0, 1],4),13),-3)),30)",
    "io_inp": [
      2,
      -2,
      -5,
      3,
      0,
      1
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -7,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(sub_n(input,4),13),-3)),30)"
  },
  {
    "input": "input : list = [-4, -3, 1, 3, -4]\noutput : list = [16]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(mul_n([-4, -3, 1, 3, -4],-1)),5),1),-4)",
    "io_inp": [
      -4,
      -3,
      1,
      3,
      -4
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(mul_n(input,-1)),5),1),-4)"
  },
  {
    "input": "input : list = [-5, 2, 1, 3]\noutput : list = [-17, 11]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(take([-5, 2, 1, 3],2),4),3)))",
    "io_inp": [
      -5,
      2,
      1,
      3
    ],
    "io_out": [
      -17,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(take(input,2),4),3)))"
  },
  {
    "input": "input : list = [0, -5, -3, 0]\noutput : list = [-18, -14, -8, -8]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(add_n([0, -5, -3, 0],-3),2),-2)),15)",
    "io_inp": [
      0,
      -5,
      -3,
      0
    ],
    "io_out": [
      -18,
      -14,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(add_n(input,-3),2),-2)),15)"
  },
  {
    "input": "input : list = [3, 4, 2, 5]\noutput : list = [4, 2, 5]",
    "output": "generated_output : list = drop([3, 4, 2, 5],1)",
    "io_inp": [
      3,
      4,
      2,
      5
    ],
    "io_out": [
      4,
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -3, 5, -2, -5]\noutput : list = [5, -2, 6, -1, -4]",
    "output": "generated_output : list = sub_n([4, -3, 5, -2, -5],-1)",
    "io_inp": [
      4,
      -3,
      5,
      -2,
      -5
    ],
    "io_out": [
      5,
      -2,
      6,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, 5, 0, 0, -5, 2]\noutput : list = [5, 5, 2, 0, 0, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sort_des([5, 5, 0, 0, -5, 2])))))",
    "io_inp": [
      5,
      5,
      0,
      0,
      -5,
      2
    ],
    "io_out": [
      5,
      5,
      2,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, 0, -5, -2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take(reverse(drop([1, 0, -5, -2, -1],3)),8)",
    "io_inp": [
      1,
      0,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(drop(input,3)),8)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [0, -20]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(mul_n([3, -1],-5))),5),28)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(mul_n(input,-5))),5),28)"
  },
  {
    "input": "input : list = [-4, 2, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(reverse(take(reverse([-4, 2, 0, 3]),2)),16)",
    "io_inp": [
      -4,
      2,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(input),2)),16)"
  },
  {
    "input": "input : list = [-4, -1, -5, 4, 4, -1]\noutput : list = [24, 12, 28, -8, -8, 12]",
    "output": "generated_output : list = mul_n(add_n([-4, -1, -5, 4, 4, -1],-2),-4)",
    "io_inp": [
      -4,
      -1,
      -5,
      4,
      4,
      -1
    ],
    "io_out": [
      24,
      12,
      28,
      -8,
      -8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-4)"
  },
  {
    "input": "input : list = [3, 5, 0, -5, 3, 2]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(sort_asc([3, 5, 0, -5, 3, 2]))),2))",
    "io_inp": [
      3,
      5,
      0,
      -5,
      3,
      2
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [1, 3, 0, -5, -2]\noutput : list = [8, 6, 5, 3, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_asc([1, 3, 0, -5, -2])))),-5)",
    "io_inp": [
      1,
      3,
      0,
      -5,
      -2
    ],
    "io_out": [
      8,
      6,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [-2, 3, -1, 0]\noutput : list = [-8, -3, -7, -6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(add_n(add_n([-2, 3, -1, 0],2),-2),-2),5),3)",
    "io_inp": [
      -2,
      3,
      -1,
      0
    ],
    "io_out": [
      -8,
      -3,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(add_n(add_n(input,2),-2),-2),5),3)"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [-7]",
    "output": "generated_output : list = take(add_n(mul_n(take(sort_des([1, 3, 0]),4),-2),-1),1)",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(sort_des(input),4),-2),-1),1)"
  },
  {
    "input": "input : list = [-4, -5, 4, -3, 5, 1]\noutput : list = [-4, 0, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(drop([-4, -5, 4, -3, 5, 1],2),2))),3)",
    "io_inp": [
      -4,
      -5,
      4,
      -3,
      5,
      1
    ],
    "io_out": [
      -4,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(drop(input,2),2))),3)"
  },
  {
    "input": "input : list = [-1, 1, 0, 1, 2, -1]\noutput : list = [6, 6, 8, 10, 10, 12]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(mul_n([-1, 1, 0, 1, 2, -1],2)),-4),-4))",
    "io_inp": [
      -1,
      1,
      0,
      1,
      2,
      -1
    ],
    "io_out": [
      6,
      6,
      8,
      10,
      10,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(mul_n(input,2)),-4),-4))"
  },
  {
    "input": "input : list = [1, -5, -4, 3, -5, -5]\noutput : list = [3, 1, -4, -5, -5, -5]",
    "output": "generated_output : list = sort_des([1, -5, -4, 3, -5, -5])",
    "io_inp": [
      1,
      -5,
      -4,
      3,
      -5,
      -5
    ],
    "io_out": [
      3,
      1,
      -4,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, 1, -2]\noutput : list = [25, 25, 25, -50]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(mul_n([1, 1, 1, -2],-5),17)),-5))",
    "io_inp": [
      1,
      1,
      1,
      -2
    ],
    "io_out": [
      25,
      25,
      25,
      -50
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(mul_n(input,-5),17)),-5))"
  },
  {
    "input": "input : list = [-1, 2, -2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = drop([-1, 2, -2, 2],2)",
    "io_inp": [
      -1,
      2,
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -2, -5, 0, 2, 3]\noutput : list = [-15, -12, -10, -8, -8, -7]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(add_n([2, -2, -5, 0, 2, 3],-5)),14),5))",
    "io_inp": [
      2,
      -2,
      -5,
      0,
      2,
      3
    ],
    "io_out": [
      -15,
      -12,
      -10,
      -8,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(add_n(input,-5)),14),5))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-20, -15]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(sort_asc([-4, -5])),1),29),5)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -20,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(sort_asc(input)),1),29),5)"
  },
  {
    "input": "input : list = [2, 4, -5, 1, 3, 2]\noutput : list = [4, 3, 2, 2, 1, -5]",
    "output": "generated_output : list = add_n(sort_des(sub_n([2, 4, -5, 1, 3, 2],4)),4)",
    "io_inp": [
      2,
      4,
      -5,
      1,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,4)),4)"
  },
  {
    "input": "input : list = [4, -5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(drop([4, -5, -1],1))),2),1)",
    "io_inp": [
      4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(drop(input,1))),2),1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-9, -3]",
    "output": "generated_output : list = mul_n([3, 1],-3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, -3, 5, 1, 0]\noutput : list = [1]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(take([4, -3, 5, 1, 0],1))),-2),-1)",
    "io_inp": [
      4,
      -3,
      5,
      1,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(take(input,1))),-2),-1)"
  },
  {
    "input": "input : list = [-5, 2, -5, -5, -2, 3]\noutput : list = [-9, -2, -9, -9, -6, -1]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(reverse([-5, 2, -5, -5, -2, 3]),4),1),33))",
    "io_inp": [
      -5,
      2,
      -5,
      -5,
      -2,
      3
    ],
    "io_out": [
      -9,
      -2,
      -9,
      -9,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(reverse(input),4),1),33))"
  },
  {
    "input": "input : list = [-5, 1, -5, -2, 0]\noutput : list = [0, -1, -3, -6, -6]",
    "output": "generated_output : list = sort_des(add_n([-5, 1, -5, -2, 0],-1))",
    "io_inp": [
      -5,
      1,
      -5,
      -2,
      0
    ],
    "io_out": [
      0,
      -1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(reverse([0, 1]),5))))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [20, 16]",
    "output": "generated_output : list = mul_n(sort_asc([-4, -5]),-4)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      20,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-1, 0, 5, 4, 5, -5]\noutput : list = [9, 9, 8, 4, 3, -1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([-1, 0, 5, 4, 5, -5],-4)))",
    "io_inp": [
      -1,
      0,
      5,
      4,
      5,
      -5
    ],
    "io_out": [
      9,
      9,
      8,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sub_n(drop([-5, 0, 2],1),-1))",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),-1))"
  },
  {
    "input": "input : list = [2, 3, -1, 0, 4]\noutput : list = [20, 0, -5]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(drop([2, 3, -1, 0, 4],2))),-1),-5)",
    "io_inp": [
      2,
      3,
      -1,
      0,
      4
    ],
    "io_out": [
      20,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(drop(input,2))),-1),-5)"
  },
  {
    "input": "input : list = [-1, 3, 0, 1]\noutput : list = [-18]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(add_n([-1, 3, 0, 1],-4),-1),1),3),1)",
    "io_inp": [
      -1,
      3,
      0,
      1
    ],
    "io_out": [
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(add_n(input,-4),-1),1),3),1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse([-4, 1])),14),1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(input)),14),1)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_des(take([2, -3, 3],1)))",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [2, 4, 3, 3]\noutput : list = [7, 9, 8, 8]",
    "output": "generated_output : list = sub_n([2, 4, 3, 3],-5)",
    "io_inp": [
      2,
      4,
      3,
      3
    ],
    "io_out": [
      7,
      9,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc([-2, -2])",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, 0, -3]\noutput : list = [8, 8, 8, 14]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(add_n([-3, -3, 0, -3],5),11),2)),4)",
    "io_inp": [
      -3,
      -3,
      0,
      -3
    ],
    "io_out": [
      8,
      8,
      8,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(add_n(input,5),11),2)),4)"
  },
  {
    "input": "input : list = [-3, 0, 5, 5, -1, 5]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(take([-3, 0, 5, 5, -1, 5],1)),-3)))",
    "io_inp": [
      -3,
      0,
      5,
      5,
      -1,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(take(input,1)),-3)))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse([-3, 3]))))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [3, 3, -5, 0, -3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(drop([3, 3, -5, 0, -3, -1],4))",
    "io_inp": [
      3,
      3,
      -5,
      0,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,4))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc([1, -2])",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n([-3, 3],4),6))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,4),6))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-1, 6]",
    "output": "generated_output : list = take(sort_asc(take(reverse(add_n([5, -2],1)),21)),19)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(add_n(input,1)),21)),19)"
  },
  {
    "input": "input : list = [5, 1, 5, -4, 3, 3]\noutput : list = [29, 9, 29, -16]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(take([5, 1, 5, -4, 3, 3],4)),5),4))",
    "io_inp": [
      5,
      1,
      5,
      -4,
      3,
      3
    ],
    "io_out": [
      29,
      9,
      29,
      -16
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(take(input,4)),5),4))"
  },
  {
    "input": "input : list = [3, 4, 3, -3]\noutput : list = [-12, 12, 12, 16]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(mul_n([3, 4, 3, -3],4)))))",
    "io_inp": [
      3,
      4,
      3,
      -3
    ],
    "io_out": [
      -12,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [3, 1, -1, 0, 3]\noutput : list = [3, 0, -1]",
    "output": "generated_output : list = sort_des(drop([3, 1, -1, 0, 3],2))",
    "io_inp": [
      3,
      1,
      -1,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(take([-5, 1, 1],1)),-1),5))",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(take(input,1)),-1),5))"
  },
  {
    "input": "input : list = [-5, 3, -5, -3]\noutput : list = [15, -15, -25, -25]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc([-5, 3, -5, -3]),1),16)),5)",
    "io_inp": [
      -5,
      3,
      -5,
      -3
    ],
    "io_out": [
      15,
      -15,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(sort_asc(input),1),16)),5)"
  },
  {
    "input": "input : list = [3, -3, -5, -4, 1]\noutput : list = [-6, -5, -4, 0, 2]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(sort_asc([3, -3, -5, -4, 1])),-2),1))",
    "io_inp": [
      3,
      -3,
      -5,
      -4,
      1
    ],
    "io_out": [
      -6,
      -5,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(sort_asc(input)),-2),1))"
  },
  {
    "input": "input : list = [4, 2, 5]\noutput : list = [-6, -14, -18]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n([4, 2, 5],-4),1)),3)",
    "io_inp": [
      4,
      2,
      5
    ],
    "io_out": [
      -6,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(input,-4),1)),3)"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sub_n(reverse([4, -3, -2]),2))))",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sub_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-11, -1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(sort_des([-2, 0]),5),-3),-4))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -11,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(sort_des(input),5),-3),-4))"
  },
  {
    "input": "input : list = [2, -1, -2, -2]\noutput : list = [-2, 1, 2, 2]",
    "output": "generated_output : list = mul_n([2, -1, -2, -2],-1)",
    "io_inp": [
      2,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -2,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, 1, 3]\noutput : list = [25, 5, 15]",
    "output": "generated_output : list = take(mul_n([5, 1, 3],5),5)",
    "io_inp": [
      5,
      1,
      3
    ],
    "io_out": [
      25,
      5,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,5),5)"
  },
  {
    "input": "input : list = [-4, 3, 4, -2, 3, -1]\noutput : list = [15, 14, 14, 10, 9, 7]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(add_n([-4, 3, 4, -2, 3, -1],4),-5),-2)),41)",
    "io_inp": [
      -4,
      3,
      4,
      -2,
      3,
      -1
    ],
    "io_out": [
      15,
      14,
      14,
      10,
      9,
      7
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(add_n(input,4),-5),-2)),41)"
  },
  {
    "input": "input : list = [-4, -3, -1, -3, -3, -2]\noutput : list = [10, 5, 0, 0, 0, -5]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(add_n(reverse([-4, -3, -1, -3, -3, -2]),1),-2),5))",
    "io_inp": [
      -4,
      -3,
      -1,
      -3,
      -3,
      -2
    ],
    "io_out": [
      10,
      5,
      0,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(add_n(reverse(input),1),-2),5))"
  },
  {
    "input": "input : list = [5, 1, 5, -3]\noutput : list = [61, 1, 61, -59]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(mul_n([5, 1, 5, -3],5),5),3),4),-1)",
    "io_inp": [
      5,
      1,
      5,
      -3
    ],
    "io_out": [
      61,
      1,
      61,
      -59
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(mul_n(input,5),5),3),4),-1)"
  },
  {
    "input": "input : list = [-5, 0, 0, -2, -1]\noutput : list = [0, 0, -2, -4, -10]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sort_des([-5, 0, 0, -2, -1]),2))),38)",
    "io_inp": [
      -5,
      0,
      0,
      -2,
      -1
    ],
    "io_out": [
      0,
      0,
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sort_des(input),2))),38)"
  },
  {
    "input": "input : list = [-3, -3, 3, 3, 0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(drop([-3, -3, 3, 3, 0, 5],4))",
    "io_inp": [
      -3,
      -3,
      3,
      3,
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,4))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(sub_n([1, 1],1),4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),4)"
  },
  {
    "input": "input : list = [-3, 1, -4, 0, 4]\noutput : list = [3, 0, -1, -4, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-3, 1, -4, 0, 4])),1)",
    "io_inp": [
      -3,
      1,
      -4,
      0,
      4
    ],
    "io_out": [
      3,
      0,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [5, 3, -1, -2]\noutput : list = [-15, -9, 3, 6]",
    "output": "generated_output : list = take(take(mul_n([5, 3, -1, -2],-3),16),18)",
    "io_inp": [
      5,
      3,
      -1,
      -2
    ],
    "io_out": [
      -15,
      -9,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-3),16),18)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(add_n(reverse(mul_n([0, 3],-1)),5),22)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(input,-1)),5),22)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [8, 2]",
    "output": "generated_output : list = add_n(sub_n(reverse(mul_n([3, -3],-1)),-4),1)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(mul_n(input,-1)),-4),1)"
  },
  {
    "input": "input : list = [-2, 1, -1]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = sort_des([-2, 1, -1])",
    "io_inp": [
      -2,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-9, -9]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([1, 1],-5)),4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,-5)),4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-7, -2]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(sub_n([3, -2],2),1),2)),4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(sub_n(input,2),1),2)),4)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [5, 5]",
    "output": "generated_output : list = take(add_n(reverse(add_n(reverse([3, 3]),3)),-1),20)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(reverse(input),3)),-1),20)"
  },
  {
    "input": "input : list = [0, 1, 4, 5]\noutput : list = [6, 5, 2, 1]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(add_n([0, 1, 4, 5],1))),31))",
    "io_inp": [
      0,
      1,
      4,
      5
    ],
    "io_out": [
      6,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(add_n(input,1))),31))"
  },
  {
    "input": "input : list = [1, 4, 3, -5]\noutput : list = [0, 8, 9, 6]",
    "output": "generated_output : list = add_n(reverse([1, 4, 3, -5]),5)",
    "io_inp": [
      1,
      4,
      3,
      -5
    ],
    "io_out": [
      0,
      8,
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [4, 4, -4]\noutput : list = [4, 4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([4, 4, -4])))",
    "io_inp": [
      4,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [8, 3, -2]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([5, -5, 0],-1),-3))",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      8,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,-1),-3))"
  },
  {
    "input": "input : list = [1, 5, -4, -3, 1, 3]\noutput : list = [5, 1, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take([1, 5, -4, -3, 1, 3],3))))",
    "io_inp": [
      1,
      5,
      -4,
      -3,
      1,
      3
    ],
    "io_out": [
      5,
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(input,3))))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [7, -9]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n([4, -4],-2),-1)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(input,-2),-1)))"
  },
  {
    "input": "input : list = [-4, -4, -1, -4, -3, -1]\noutput : list = [4, 4, 4, 5, 7, 7]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-4, -4, -1, -4, -3, -1]),-3),5)",
    "io_inp": [
      -4,
      -4,
      -1,
      -4,
      -3,
      -1
    ],
    "io_out": [
      4,
      4,
      4,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-3),5)"
  },
  {
    "input": "input : list = [3, 5, 2, 3, -2, -1]\noutput : list = [-25, -15, -15, -10, 5, 10]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(mul_n([3, 5, 2, 3, -2, -1],-5)))))",
    "io_inp": [
      3,
      5,
      2,
      3,
      -2,
      -1
    ],
    "io_out": [
      -25,
      -15,
      -15,
      -10,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [-3, -5, -5, 0, -5]\noutput : list = [0, 0, 0, -6, -15]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n([-3, -5, -5, 0, -5],1),5),-3))",
    "io_inp": [
      -3,
      -5,
      -5,
      0,
      -5
    ],
    "io_out": [
      0,
      0,
      0,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(input,1),5),-3))"
  },
  {
    "input": "input : list = [3, 1, 3, -3]\noutput : list = [-3, 1, 3, 3]",
    "output": "generated_output : list = reverse(take(sort_des([3, 1, 3, -3]),16))",
    "io_inp": [
      3,
      1,
      3,
      -3
    ],
    "io_out": [
      -3,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(input),16))"
  },
  {
    "input": "input : list = [-5, 3, -3]\noutput : list = [-20, 28]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n(drop([-5, 3, -3],1),-4),2),35),2)",
    "io_inp": [
      -5,
      3,
      -3
    ],
    "io_out": [
      -20,
      28
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(drop(input,1),-4),2),35),2)"
  },
  {
    "input": "input : list = [-4, -4, 4, 3, -4]\noutput : list = [-28, -24, 4, 4, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(sub_n([-4, -4, 4, 3, -4],-2),-4))),4)",
    "io_inp": [
      -4,
      -4,
      4,
      3,
      -4
    ],
    "io_out": [
      -28,
      -24,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(sub_n(input,-2),-4))),4)"
  },
  {
    "input": "input : list = [5, 0, -1, -1, -2, -2]\noutput : list = [-1, -1, -2, -2]",
    "output": "generated_output : list = drop([5, 0, -1, -1, -2, -2],2)",
    "io_inp": [
      5,
      0,
      -1,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -3, 5, -5, -2, -1]\noutput : list = [15, -10, -15, -20, -25, -35]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_des([0, -3, 5, -5, -2, -1]))),-2),5)",
    "io_inp": [
      0,
      -3,
      5,
      -5,
      -2,
      -1
    ],
    "io_out": [
      15,
      -10,
      -15,
      -20,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(sort_des(input))),-2),5)"
  },
  {
    "input": "input : list = [-1, 5, -1, 5, -3]\noutput : list = [-5, 1, -5, 1, -7]",
    "output": "generated_output : list = sub_n([-1, 5, -1, 5, -3],4)",
    "io_inp": [
      -1,
      5,
      -1,
      5,
      -3
    ],
    "io_out": [
      -5,
      1,
      -5,
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [5, 4, -2]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(sort_des([-5, 2, 1])),18)),3)",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(sort_des(input)),18)),3)"
  },
  {
    "input": "input : list = [4, 5, 0]\noutput : list = [26, 21, 1]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc([4, 5, 0])),5)),1)",
    "io_inp": [
      4,
      5,
      0
    ],
    "io_out": [
      26,
      21,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc(input)),5)),1)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(reverse([-2, -1, -1]),4),-1)),-2)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(reverse(input),4),-1)),-2)"
  },
  {
    "input": "input : list = [2, 5, -5, -1, 3]\noutput : list = [-25, -15, -10, 5, 25]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des(sort_des([2, 5, -5, -1, 3])),5)),-1)",
    "io_inp": [
      2,
      5,
      -5,
      -1,
      3
    ],
    "io_out": [
      -25,
      -15,
      -10,
      5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(sort_des(input)),5)),-1)"
  },
  {
    "input": "input : list = [-1, -3, 3, -3, -5, 3]\noutput : list = [12, 12, -4, -12, -12, -20]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(reverse([-1, -3, 3, -3, -5, 3]),4))))",
    "io_inp": [
      -1,
      -3,
      3,
      -3,
      -5,
      3
    ],
    "io_out": [
      12,
      12,
      -4,
      -12,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4]",
    "output": "generated_output : list = take(reverse([-4, 4]),1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),1)"
  },
  {
    "input": "input : list = [5, -4, 2, -5]\noutput : list = [-12, -5, -11, -2]",
    "output": "generated_output : list = add_n(add_n(take(take(reverse([5, -4, 2, -5]),14),22),-5),-2)",
    "io_inp": [
      5,
      -4,
      2,
      -5
    ],
    "io_out": [
      -12,
      -5,
      -11,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(take(reverse(input),14),22),-5),-2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [3, 1]",
    "output": "generated_output : list = add_n([1, -1],2)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(sub_n([1, 4],3)))),14)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(sub_n(input,3)))),14)"
  },
  {
    "input": "input : list = [-5, 4, 2, 0, 2, 2]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = add_n(drop([-5, 4, 2, 0, 2, 2],3),-5)",
    "io_inp": [
      -5,
      4,
      2,
      0,
      2,
      2
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-5)"
  },
  {
    "input": "input : list = [-3, 4, 2, 1]\noutput : list = [0, -8]",
    "output": "generated_output : list = mul_n(sub_n(reverse(drop(mul_n([-3, 4, 2, 1],-4),2)),-4),2)",
    "io_inp": [
      -3,
      4,
      2,
      1
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(drop(mul_n(input,-4),2)),-4),2)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-6, -4, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(sort_asc([-5, 2, -3]),-1))))",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -6,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [5, 1, 0, -3]\noutput : list = [-3, 0, 1, 5]",
    "output": "generated_output : list = reverse([5, 1, 0, -3])",
    "io_inp": [
      5,
      1,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -4, 2, 4]\noutput : list = [-40, -30, -15, 0]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(sort_asc([-1, -4, 2, 4])),5),-5),5)",
    "io_inp": [
      -1,
      -4,
      2,
      4
    ],
    "io_out": [
      -40,
      -30,
      -15,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(sort_asc(input)),5),-5),5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des([4, -3])",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, 2, -1, 1, -1]\noutput : list = [-4, -4, -36, -36, -52, -84]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(mul_n([4, 1, 2, -1, 1, -1],4),12)),5),-4)",
    "io_inp": [
      4,
      1,
      2,
      -1,
      1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -36,
      -36,
      -52,
      -84
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(mul_n(input,4),12)),5),-4)"
  },
  {
    "input": "input : list = [3, 0, 0]\noutput : list = [4, 4, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(mul_n([3, 0, 0],-2),-4))))",
    "io_inp": [
      3,
      0,
      0
    ],
    "io_out": [
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(mul_n(input,-2),-4))))"
  },
  {
    "input": "input : list = [3, -1, 1, 4, -1]\noutput : list = [-18, -6, 2, 2]",
    "output": "generated_output : list = add_n(mul_n(sort_des(reverse(drop([3, -1, 1, 4, -1],1))),-4),-2)",
    "io_inp": [
      3,
      -1,
      1,
      4,
      -1
    ],
    "io_out": [
      -18,
      -6,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(reverse(drop(input,1))),-4),-2)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [7, 3, 3]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n([3, 5, 5],5),-2))),3)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      7,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sub_n(input,5),-2))),3)"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [-2, 0, -10]",
    "output": "generated_output : list = reverse(sub_n(reverse([3, 5, -5]),5))",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      -2,
      0,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),5))"
  },
  {
    "input": "input : list = [-1, -5, 2, 3, -3]\noutput : list = [-25, -5]",
    "output": "generated_output : list = sort_asc(mul_n(take([-1, -5, 2, 3, -3],2),5))",
    "io_inp": [
      -1,
      -5,
      2,
      3,
      -3
    ],
    "io_out": [
      -25,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,2),5))"
  },
  {
    "input": "input : list = [5, 4, -2, 1, 3]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(take([5, 4, -2, 1, 3],1)),3)))",
    "io_inp": [
      5,
      4,
      -2,
      1,
      3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(take(input,1)),3)))"
  },
  {
    "input": "input : list = [0, 1, -5, 2, 3]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(take([0, 1, -5, 2, 3],2)),6)))",
    "io_inp": [
      0,
      1,
      -5,
      2,
      3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(take(input,2)),6)))"
  },
  {
    "input": "input : list = [0, 0, -1, 4, -5, 1]\noutput : list = [10, 4, 13, 8, 9, 9]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(reverse([0, 0, -1, 4, -5, 1]),-5),-2),2),45)",
    "io_inp": [
      0,
      0,
      -1,
      4,
      -5,
      1
    ],
    "io_out": [
      10,
      4,
      13,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(reverse(input),-5),-2),2),45)"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [15, 3, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(add_n([-2, 4, 2],-3),-1),3)))",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      15,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(add_n(input,-3),-1),3)))"
  },
  {
    "input": "input : list = [-1, -2, -5, 1, -5]\noutput : list = [-4, -2, 4, -8, 4]",
    "output": "generated_output : list = add_n(sub_n(add_n(sub_n(mul_n([-1, -2, -5, 1, -5],-2),2),-5),1),2)",
    "io_inp": [
      -1,
      -2,
      -5,
      1,
      -5
    ],
    "io_out": [
      -4,
      -2,
      4,
      -8,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sub_n(mul_n(input,-2),2),-5),1),2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [10, 10]",
    "output": "generated_output : list = add_n(add_n([3, 3],4),3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),3)"
  },
  {
    "input": "input : list = [-3, -1, 1, -5]\noutput : list = [-1, 17]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(drop([-3, -1, 1, -5],2),-3),2),-1),-1)",
    "io_inp": [
      -3,
      -1,
      1,
      -5
    ],
    "io_out": [
      -1,
      17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(drop(input,2),-3),2),-1),-1)"
  },
  {
    "input": "input : list = [0, -5, 2, -5]\noutput : list = [-14, -6, 14, 14]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sub_n([0, -5, 2, -5],-2)),-4)),2)",
    "io_inp": [
      0,
      -5,
      2,
      -5
    ],
    "io_out": [
      -14,
      -6,
      14,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(sub_n(input,-2)),-4)),2)"
  },
  {
    "input": "input : list = [-5, -1, -5, 2, -3, 5]\noutput : list = [-1, 8, 17, 23, 29, 29]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(sub_n([-5, -1, -5, 2, -3, 5],5),-3))),-1)",
    "io_inp": [
      -5,
      -1,
      -5,
      2,
      -3,
      5
    ],
    "io_out": [
      -1,
      8,
      17,
      23,
      29,
      29
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(sub_n(input,5),-3))),-1)"
  },
  {
    "input": "input : list = [-1, 2, -2, 0, -2]\noutput : list = [-6, -6, -1, 4, 14]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(mul_n([-1, 2, -2, 0, -2],5))),-4))",
    "io_inp": [
      -1,
      2,
      -2,
      0,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -1,
      4,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(mul_n(input,5))),-4))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-3, -9]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(sort_des([2, -4])),7),5))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(sort_des(input)),7),5))"
  },
  {
    "input": "input : list = [-2, 5, -2, 1, -3, 3]\noutput : list = [2, -4, 0, -3, 4, -3]",
    "output": "generated_output : list = sub_n(reverse([-2, 5, -2, 1, -3, 3]),1)",
    "io_inp": [
      -2,
      5,
      -2,
      1,
      -3,
      3
    ],
    "io_out": [
      2,
      -4,
      0,
      -3,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [16, 14, 10]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(sort_des([-3, 1, 3]),4),-4),-5))",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      16,
      14,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(sort_des(input),4),-4),-5))"
  },
  {
    "input": "input : list = [-1, 4, 3, 2, -2]\noutput : list = [30, 25, 20, 5, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(sort_des([-1, 4, 3, 2, -2]),2))),5)",
    "io_inp": [
      -1,
      4,
      3,
      2,
      -2
    ],
    "io_out": [
      30,
      25,
      20,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(sort_des(input),2))),5)"
  },
  {
    "input": "input : list = [1, -3, 1, -3, -2, 3]\noutput : list = [3, 1, 1, -2, -3, -3]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([1, -3, 1, -3, -2, 3])),1)",
    "io_inp": [
      1,
      -3,
      1,
      -3,
      -2,
      3
    ],
    "io_out": [
      3,
      1,
      1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [3, 9]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -3],-3))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [1, 5, -4, -1]\noutput : list = [-9, -6, -4, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_des([1, 5, -4, -1]),3)),2),34)",
    "io_inp": [
      1,
      5,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_des(input),3)),2),34)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4]",
    "output": "generated_output : list = drop(sort_des(take(reverse([-4, 1]),12)),1)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(sort_des(take(reverse(input),12)),1)"
  },
  {
    "input": "input : list = [4, -1, 5, 2, -3, 5]\noutput : list = [-7, -5, -2, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc([4, -1, 5, 2, -3, 5]),4)))",
    "io_inp": [
      4,
      -1,
      5,
      2,
      -3,
      5
    ],
    "io_out": [
      -7,
      -5,
      -2,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [-2, -4, -5, -1, 0]\noutput : list = [-2, -3, -4, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n([-2, -4, -5, -1, 0],2))",
    "io_inp": [
      -2,
      -4,
      -5,
      -1,
      0
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,2))"
  },
  {
    "input": "input : list = [-1, 0, -5, 4, -4, -5]\noutput : list = [2, -2, -3, -6, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des([-1, 0, -5, 4, -4, -5]))),2)",
    "io_inp": [
      -1,
      0,
      -5,
      4,
      -4,
      -5
    ],
    "io_out": [
      2,
      -2,
      -3,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(input))),2)"
  },
  {
    "input": "input : list = [-1, -3, 2, 0, 4, -4]\noutput : list = [-80, 0, 80]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(drop([-1, -3, 2, 0, 4, -4],3),-4),5)))",
    "io_inp": [
      -1,
      -3,
      2,
      0,
      4,
      -4
    ],
    "io_out": [
      -80,
      0,
      80
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(drop(input,3),-4),5)))"
  },
  {
    "input": "input : list = [1, 1, 2, -1]\noutput : list = [0, -1, -1, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(reverse([1, 1, 2, -1]),13)),3),1)",
    "io_inp": [
      1,
      1,
      2,
      -1
    ],
    "io_out": [
      0,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(reverse(input),13)),3),1)"
  },
  {
    "input": "input : list = [-1, 1, 1]\noutput : list = [-4, -4]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(drop([-1, 1, 1],1))),1),5)",
    "io_inp": [
      -1,
      1,
      1
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(drop(input,1))),1),5)"
  },
  {
    "input": "input : list = [1, 4, 3, 4, 5, -4]\noutput : list = [20, -10, -22, -28, -28, -34]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(mul_n([1, 4, 3, 4, 5, -4],-2))),3),4)",
    "io_inp": [
      1,
      4,
      3,
      4,
      5,
      -4
    ],
    "io_out": [
      20,
      -10,
      -22,
      -28,
      -28,
      -34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(mul_n(input,-2))),3),4)"
  },
  {
    "input": "input : list = [0, -1, 0, 1]\noutput : list = [-35, -30, -30, -25]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(sort_des([0, -1, 0, 1]),-1),5)),-5)",
    "io_inp": [
      0,
      -1,
      0,
      1
    ],
    "io_out": [
      -35,
      -30,
      -30,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(sort_des(input),-1),5)),-5)"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [3, -6, -12]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_asc([-1, 2, 4])),-3)))",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      3,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_des(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [5, 3, -5]",
    "output": "generated_output : list = sort_des(take(take(take(reverse([3, 5, -5]),15),16),34))",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(reverse(input),15),16),34))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [26, 31]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des([-2, -1])),-5),-5),4)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      26,
      31
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des(input)),-5),-5),4)"
  },
  {
    "input": "input : list = [2, -2, 5, -5, -2]\noutput : list = [-25, -10, -10, 10, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([2, -2, 5, -5, -2],5)))",
    "io_inp": [
      2,
      -2,
      5,
      -5,
      -2
    ],
    "io_out": [
      -25,
      -10,
      -10,
      10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,5)))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc([1, -5])",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-25, 10]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse([-2, 5]))),-5))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -25,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_des(reverse(input))),-5))"
  },
  {
    "input": "input : list = [-3, 1, -1, -4]\noutput : list = [-9, -5, -7, -10]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n([-3, 1, -1, -4],5)),4)),-3)",
    "io_inp": [
      -3,
      1,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -5,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(sub_n(input,5)),4)),-3)"
  },
  {
    "input": "input : list = [-2, 4, 1, -4]\noutput : list = [40, 25, 10, 0]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sort_asc([-2, 4, 1, -4]),-5),5)),5)",
    "io_inp": [
      -2,
      4,
      1,
      -4
    ],
    "io_out": [
      40,
      25,
      10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(sort_asc(input),-5),5)),5)"
  },
  {
    "input": "input : list = [-3, 5, 5, 3]\noutput : list = [5, 5, 3, -3]",
    "output": "generated_output : list = sort_des([-3, 5, 5, 3])",
    "io_inp": [
      -3,
      5,
      5,
      3
    ],
    "io_out": [
      5,
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take([1, 4, -3],1))",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [2, 0, -3, 4, -2]\noutput : list = [5, 3, 1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(add_n([2, 0, -3, 4, -2],1)))))",
    "io_inp": [
      2,
      0,
      -3,
      4,
      -2
    ],
    "io_out": [
      5,
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_asc(add_n(input,1)))))"
  },
  {
    "input": "input : list = [-4, 0, -2, 2]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(reverse(take([-4, 0, -2, 2],2)),25)",
    "io_inp": [
      -4,
      0,
      -2,
      2
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,2)),25)"
  },
  {
    "input": "input : list = [5, 2, 2, -3, -2, -3]\noutput : list = [6, 3, 3, -1, -2, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(add_n([5, 2, 2, -3, -2, -3],1)))))",
    "io_inp": [
      5,
      2,
      2,
      -3,
      -2,
      -3
    ],
    "io_out": [
      6,
      3,
      3,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(add_n(input,1)))))"
  },
  {
    "input": "input : list = [1, 4, -2, 0, 5]\noutput : list = [-1, -2, -5, -6, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n(sort_des([1, 4, -2, 0, 5]),2),4)))",
    "io_inp": [
      1,
      4,
      -2,
      0,
      5
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(sort_des(input),2),4)))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = add_n(add_n([-5, 4],2),-1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-1)"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [-30, -15]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(drop([5, -1, 4],1),1),-5),-5),3)",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(drop(input,1),1),-5),-5),3)"
  },
  {
    "input": "input : list = [0, 0, -3, -4, -4]\noutput : list = [5, 5, 6, 9, 9]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(add_n(add_n([0, 0, -3, -4, -4],2),5)),2))",
    "io_inp": [
      0,
      0,
      -3,
      -4,
      -4
    ],
    "io_out": [
      5,
      5,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(add_n(add_n(input,2),5)),2))"
  },
  {
    "input": "input : list = [4, 5, -2, 3, 1]\noutput : list = [-7, -11, -1, -15, -13]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse(mul_n([4, 5, -2, 3, 1],-2)),1),3),3)",
    "io_inp": [
      4,
      5,
      -2,
      3,
      1
    ],
    "io_out": [
      -7,
      -11,
      -1,
      -15,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(mul_n(input,-2)),1),3),3)"
  },
  {
    "input": "input : list = [2, 4, -3]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sort_asc(take([2, 4, -3],1)),1)",
    "io_inp": [
      2,
      4,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(sub_n([-5, 1],4)),2)))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(sub_n(input,4)),2)))"
  },
  {
    "input": "input : list = [0, 3, 1, -4, -2]\noutput : list = [0, 3]",
    "output": "generated_output : list = take([0, 3, 1, -4, -2],2)",
    "io_inp": [
      0,
      3,
      1,
      -4,
      -2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 0, -5, 2, 5]\noutput : list = [-37, -1, 59, -25, -61]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(mul_n([3, 0, -5, 2, 5],3),1),11),-4),-5)",
    "io_inp": [
      3,
      0,
      -5,
      2,
      5
    ],
    "io_out": [
      -37,
      -1,
      59,
      -25,
      -61
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(mul_n(input,3),1),11),-4),-5)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc([3, 5]),5))))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [0, 9]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_asc([5, -4])),-4)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-5, -5, -4, 3, -5]\noutput : list = [-20, 12, -16, -20, -20]",
    "output": "generated_output : list = take(mul_n(reverse([-5, -5, -4, 3, -5]),4),30)",
    "io_inp": [
      -5,
      -5,
      -4,
      3,
      -5
    ],
    "io_out": [
      -20,
      12,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),4),30)"
  },
  {
    "input": "input : list = [1, 0, -3, 4, 5, -2]\noutput : list = [-6, -7, -10, -3, -2, -9]",
    "output": "generated_output : list = add_n(sub_n([1, 0, -3, 4, 5, -2],3),-4)",
    "io_inp": [
      1,
      0,
      -3,
      4,
      5,
      -2
    ],
    "io_out": [
      -6,
      -7,
      -10,
      -3,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),-4)"
  },
  {
    "input": "input : list = [4, -2, -4, -3, -5, -3]\noutput : list = [9, 8, 7, 7, 6, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(add_n([4, -2, -4, -3, -5, -3],-4),-1))))",
    "io_inp": [
      4,
      -2,
      -4,
      -3,
      -5,
      -3
    ],
    "io_out": [
      9,
      8,
      7,
      7,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(add_n(input,-4),-1))))"
  },
  {
    "input": "input : list = [-5, -1, 0, -1, 1]\noutput : list = [-7, -3, -2, -3, -1]",
    "output": "generated_output : list = sub_n([-5, -1, 0, -1, 1],2)",
    "io_inp": [
      -5,
      -1,
      0,
      -1,
      1
    ],
    "io_out": [
      -7,
      -3,
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 4, 5, 2, -1, -1]\noutput : list = [-1, 2, 2, 5, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse([-4, 4, 5, 2, -1, -1])),3)",
    "io_inp": [
      -4,
      4,
      5,
      2,
      -1,
      -1
    ],
    "io_out": [
      -1,
      2,
      2,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [5, -3, -5, -1, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = take([5, -3, -5, -1, 5],2)",
    "io_inp": [
      5,
      -3,
      -5,
      -1,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 2, -3, 4, -1]\noutput : list = [0, 5, 15, 30, 40]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(add_n([-4, 2, -3, 4, -1],3),-1),11)),5)",
    "io_inp": [
      -4,
      2,
      -3,
      4,
      -1
    ],
    "io_out": [
      0,
      5,
      15,
      30,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(add_n(input,3),-1),11)),5)"
  },
  {
    "input": "input : list = [-4, 5, 5, -3, -5]\noutput : list = [-5, -3, 5, 5, -4]",
    "output": "generated_output : list = reverse([-4, 5, 5, -3, -5])",
    "io_inp": [
      -4,
      5,
      5,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      5,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, -2, 0, 2]\noutput : list = [-1, -2, -3, -4, -6]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_asc([3, 1, -2, 0, 2]))),-4))",
    "io_inp": [
      3,
      1,
      -2,
      0,
      2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [7, 9, 4]",
    "output": "generated_output : list = sub_n([3, 5, 0],-4)",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      7,
      9,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 3, 1, -2, -2]\noutput : list = [-3]",
    "output": "generated_output : list = take(take([-3, 3, 1, -2, -2],1),19)",
    "io_inp": [
      -3,
      3,
      1,
      -2,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(input,1),19)"
  },
  {
    "input": "input : list = [-2, 0, -5, -2, -1, -3]\noutput : list = [-8, -6, -5, -5, -4, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-2, 0, -5, -2, -1, -3]),3))",
    "io_inp": [
      -2,
      0,
      -5,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [5, -2, -2]",
    "output": "generated_output : list = add_n([3, -4, -4],2)",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [0, 1, -5]\noutput : list = [-13, -8, -7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(reverse([0, 1, -5]),4))),4)",
    "io_inp": [
      0,
      1,
      -5
    ],
    "io_out": [
      -13,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(reverse(input),4))),4)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [8, 0, -2]",
    "output": "generated_output : list = take(take(mul_n(take(sort_des([4, 0, -1]),6),2),3),34)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      8,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(sort_des(input),6),2),3),34)"
  },
  {
    "input": "input : list = [-5, 1, -3, 5, 3, -5]\noutput : list = [-5, -5, -3, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([-5, 1, -3, 5, 3, -5])",
    "io_inp": [
      -5,
      1,
      -3,
      5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -3,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = reverse([-2, 1])",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2, -3, -4, -1, -4]\noutput : list = [2, 2, -3, -4, -1, -4]",
    "output": "generated_output : list = reverse(reverse([2, 2, -3, -4, -1, -4]))",
    "io_inp": [
      2,
      2,
      -3,
      -4,
      -1,
      -4
    ],
    "io_out": [
      2,
      2,
      -3,
      -4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [0, -1, 1, 4, 0]\noutput : list = [7, 4, 3, 3, 2]",
    "output": "generated_output : list = take(sub_n(sort_des([0, -1, 1, 4, 0]),-3),20)",
    "io_inp": [
      0,
      -1,
      1,
      4,
      0
    ],
    "io_out": [
      7,
      4,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),-3),20)"
  },
  {
    "input": "input : list = [1, -3, -3, 5]\noutput : list = [-9, -9, 3, 15]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(mul_n([1, -3, -3, 5],3),1))))",
    "io_inp": [
      1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -9,
      -9,
      3,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(mul_n(input,3),1))))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [12, -20]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(reverse([-5, 3]))),4))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      12,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(reverse(input))),4))"
  },
  {
    "input": "input : list = [-3, 0, 0, -4, -3, -1]\noutput : list = [-2, 1, 1, -3, -2, 0]",
    "output": "generated_output : list = add_n([-3, 0, 0, -4, -3, -1],1)",
    "io_inp": [
      -3,
      0,
      0,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -2,
      1,
      1,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, -2, 0, -2, -5]\noutput : list = [-5, -4, -2, -2, 0]",
    "output": "generated_output : list = sort_asc([-4, -2, 0, -2, -5])",
    "io_inp": [
      -4,
      -2,
      0,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3, 2, -5]\noutput : list = [4, -4, -6, -10]",
    "output": "generated_output : list = mul_n(sort_des([-2, -3, 2, -5]),2)",
    "io_inp": [
      -2,
      -3,
      2,
      -5
    ],
    "io_out": [
      4,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-4, 0, -3, 5, -1, -5]\noutput : list = [-6, -3, 0, 6, 9, 24]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(add_n([-4, 0, -3, 5, -1, -5],3),21)),22),3)",
    "io_inp": [
      -4,
      0,
      -3,
      5,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -3,
      0,
      6,
      9,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(add_n(input,3),21)),22),3)"
  },
  {
    "input": "input : list = [-4, 1, 5]\noutput : list = [-2, 3, 7]",
    "output": "generated_output : list = sub_n(take(sort_asc([-4, 1, 5]),15),-2)",
    "io_inp": [
      -4,
      1,
      5
    ],
    "io_out": [
      -2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),15),-2)"
  },
  {
    "input": "input : list = [-2, -5, 2, -2, -4, -3]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_des(take([-2, -5, 2, -2, -4, -3],1)),-4)),28)",
    "io_inp": [
      -2,
      -5,
      2,
      -2,
      -4,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_des(take(input,1)),-4)),28)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [7, 10]",
    "output": "generated_output : list = sort_asc(add_n([5, 2],5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [-1, -5, -4, 3, 0]\noutput : list = [5, 8]",
    "output": "generated_output : list = sub_n(drop(sub_n(add_n(sort_asc([-1, -5, -4, 3, 0]),1),1),3),-5)",
    "io_inp": [
      -1,
      -5,
      -4,
      3,
      0
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(add_n(sort_asc(input),1),1),3),-5)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(reverse([-2, -2]),5))),4)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(reverse(input),5))),4)"
  },
  {
    "input": "input : list = [5, 0, -5, -4, 0, 5]\noutput : list = [40, 40, 15, 15, -5, -10]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n([5, 0, -5, -4, 0, 5],-3))),5)",
    "io_inp": [
      5,
      0,
      -5,
      -4,
      0,
      5
    ],
    "io_out": [
      40,
      40,
      15,
      15,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(input,-3))),5)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [13, 5]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-1, -3],-4),-1))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      13,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-4),-1))"
  },
  {
    "input": "input : list = [-2, 1, 5, 5, 5]\noutput : list = [15, 15, 15, 7, 1]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_des(sort_des([-2, 1, 5, 5, 5])),-5),2),5)",
    "io_inp": [
      -2,
      1,
      5,
      5,
      5
    ],
    "io_out": [
      15,
      15,
      15,
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_des(sort_des(input)),-5),2),5)"
  },
  {
    "input": "input : list = [-5, -5, 1, -5, 2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(drop([-5, -5, 1, -5, 2, 5],4)),1),44))",
    "io_inp": [
      -5,
      -5,
      1,
      -5,
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(drop(input,4)),1),44))"
  },
  {
    "input": "input : list = [-4, 0, -5, -4, -5]\noutput : list = [-5, -5, -4, -4, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(take(sort_des([-4, 0, -5, -4, -5]),15),1)))",
    "io_inp": [
      -4,
      0,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(take(sort_des(input),15),1)))"
  },
  {
    "input": "input : list = [-2, -1, 0, 5, 5, 5]\noutput : list = [0, 1, 2, 7, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_asc([-2, -1, 0, 5, 5, 5]),24)),2))",
    "io_inp": [
      -2,
      -1,
      0,
      5,
      5,
      5
    ],
    "io_out": [
      0,
      1,
      2,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_asc(input),24)),2))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4]",
    "output": "generated_output : list = take(take(take(add_n([-1, 0],-3),12),10),1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(add_n(input,-3),12),10),1)"
  },
  {
    "input": "input : list = [0, -3, 4, 1]\noutput : list = [6, 0, -2, -8]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(mul_n([0, -3, 4, 1],-2),19))))",
    "io_inp": [
      0,
      -3,
      4,
      1
    ],
    "io_out": [
      6,
      0,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(mul_n(input,-2),19))))"
  },
  {
    "input": "input : list = [-2, 5, -4]\noutput : list = [-10, -1, -8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n([-2, 5, -4],5),-2),3))",
    "io_inp": [
      -2,
      5,
      -4
    ],
    "io_out": [
      -10,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(input,5),-2),3))"
  },
  {
    "input": "input : list = [3, -2, -3, -4, -2]\noutput : list = [16, 6]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(drop([3, -2, -3, -4, -2],3)),-5),4),35)",
    "io_inp": [
      3,
      -2,
      -3,
      -4,
      -2
    ],
    "io_out": [
      16,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(drop(input,3)),-5),4),35)"
  },
  {
    "input": "input : list = [-1, 1, 2, 3, 2, 1]\noutput : list = [3, 2, 2, 1, 1, -1]",
    "output": "generated_output : list = reverse(sort_asc([-1, 1, 2, 3, 2, 1]))",
    "io_inp": [
      -1,
      1,
      2,
      3,
      2,
      1
    ],
    "io_out": [
      3,
      2,
      2,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [15, 0]",
    "output": "generated_output : list = mul_n(sort_des(add_n([-5, -2],5)),5)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(input,5)),5)"
  },
  {
    "input": "input : list = [-5, 2, 3, 1, 5, 4]\noutput : list = [0, 1, -3, -1, -2, -9]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(sub_n([-5, 2, 3, 1, 5, 4],4))),1))",
    "io_inp": [
      -5,
      2,
      3,
      1,
      5,
      4
    ],
    "io_out": [
      0,
      1,
      -3,
      -1,
      -2,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(sub_n(input,4))),1))"
  },
  {
    "input": "input : list = [0, 1, 3, -2]\noutput : list = [-4, -3, -1, -6]",
    "output": "generated_output : list = sub_n([0, 1, 3, -2],4)",
    "io_inp": [
      0,
      1,
      3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [1, -3, 3, -3]\noutput : list = [-12, 0, 0]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(drop([1, -3, 3, -3],1),-4),-2),-2))",
    "io_inp": [
      1,
      -3,
      3,
      -3
    ],
    "io_out": [
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(drop(input,1),-4),-2),-2))"
  },
  {
    "input": "input : list = [1, -2, 4, -3]\noutput : list = [-5, 1, 7, 9]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sort_des(sort_asc([1, -2, 4, -3])),-2),3))",
    "io_inp": [
      1,
      -2,
      4,
      -3
    ],
    "io_out": [
      -5,
      1,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sort_des(sort_asc(input)),-2),3))"
  },
  {
    "input": "input : list = [-2, 5, -3, -4, 4, -4]\noutput : list = [-10, -8, 4, 6, 8, 8]",
    "output": "generated_output : list = mul_n(sort_des([-2, 5, -3, -4, 4, -4]),-2)",
    "io_inp": [
      -2,
      5,
      -3,
      -4,
      4,
      -4
    ],
    "io_out": [
      -10,
      -8,
      4,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-2, -5, 4, 1, 1, 3]\noutput : list = [4, 3, 1, 1, -2, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-2, -5, 4, 1, 1, 3]),-5),-5)",
    "io_inp": [
      -2,
      -5,
      4,
      1,
      1,
      3
    ],
    "io_out": [
      4,
      3,
      1,
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),-5),-5)"
  },
  {
    "input": "input : list = [-3, 0, 1]\noutput : list = [-9, 3, 7]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc([-3, 0, 1]),2),-1),4),1)",
    "io_inp": [
      -3,
      0,
      1
    ],
    "io_out": [
      -9,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc(input),2),-1),4),1)"
  },
  {
    "input": "input : list = [-2, 0, 0, -5]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(take([-2, 0, 0, -5],2))",
    "io_inp": [
      -2,
      0,
      0,
      -5
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [1, -6]",
    "output": "generated_output : list = add_n([3, -4],-2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, 4, 1, 3]\noutput : list = [-1, 1, 2, 2]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n([4, 4, 1, 3],-2))),33)",
    "io_inp": [
      4,
      4,
      1,
      3
    ],
    "io_out": [
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(input,-2))),33)"
  },
  {
    "input": "input : list = [2, 5, -4, 1, 3]\noutput : list = [6, 2, 0, -2, -12]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(mul_n([2, 5, -4, 1, 3],2)))),-4)",
    "io_inp": [
      2,
      5,
      -4,
      1,
      3
    ],
    "io_out": [
      6,
      2,
      0,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(mul_n(input,2)))),-4)"
  },
  {
    "input": "input : list = [5, -1, 4, 0]\noutput : list = [-1, 4, 0]",
    "output": "generated_output : list = drop([5, -1, 4, 0],1)",
    "io_inp": [
      5,
      -1,
      4,
      0
    ],
    "io_out": [
      -1,
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 2, -4, -5]\noutput : list = [7, 4]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(take([5, 2, -4, -5],2),-1))),3)",
    "io_inp": [
      5,
      2,
      -4,
      -5
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(take(input,2),-1))),3)"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [15, -5, -10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_asc([-1, 3, -2]),5)))",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      15,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [4, -4, 3]\noutput : list = [-18, 3, -21]",
    "output": "generated_output : list = mul_n(sub_n(take(add_n(reverse([4, -4, 3]),2),19),-1),-3)",
    "io_inp": [
      4,
      -4,
      3
    ],
    "io_out": [
      -18,
      3,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(add_n(reverse(input),2),19),-1),-3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [21, 17]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(sort_asc([4, 3]),4))),-5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      21,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(sort_asc(input),4))),-5)"
  },
  {
    "input": "input : list = [-4, 1, -2, 0]\noutput : list = [-4, 1]",
    "output": "generated_output : list = take([-4, 1, -2, 0],2)",
    "io_inp": [
      -4,
      1,
      -2,
      0
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [7, 17, 2]",
    "output": "generated_output : list = reverse(add_n(mul_n([1, 4, 2],5),-3))",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      7,
      17,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,5),-3))"
  },
  {
    "input": "input : list = [-4, 0, -4, -4, 0]\noutput : list = [-3, -3, -11, -11, -11]",
    "output": "generated_output : list = take(add_n(take(mul_n(sort_des([-4, 0, -4, -4, 0]),2),18),-3),30)",
    "io_inp": [
      -4,
      0,
      -4,
      -4,
      0
    ],
    "io_out": [
      -3,
      -3,
      -11,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sort_des(input),2),18),-3),30)"
  },
  {
    "input": "input : list = [-1, 0, 3, -3, -4]\noutput : list = [-8, -7, -5, -4, -1]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc(add_n([-1, 0, 3, -3, -4],2)),-1),-5),53)",
    "io_inp": [
      -1,
      0,
      3,
      -3,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(add_n(input,2)),-1),-5),53)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [5, -37]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(mul_n([-4, 3],-2),5),-5),3),-4)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      5,
      -37
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(mul_n(input,-2),5),-5),3),-4)"
  },
  {
    "input": "input : list = [0, -3, -4, -3]\noutput : list = [3, 0, -1, 0]",
    "output": "generated_output : list = add_n(sub_n(sub_n([0, -3, -4, -3],-4),2),1)",
    "io_inp": [
      0,
      -3,
      -4,
      -3
    ],
    "io_out": [
      3,
      0,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,-4),2),1)"
  },
  {
    "input": "input : list = [-4, 0, 0, 5, 2, 1]\noutput : list = [5, 2, 1, 0, 0, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc([-4, 0, 0, 5, 2, 1]))),22)",
    "io_inp": [
      -4,
      0,
      0,
      5,
      2,
      1
    ],
    "io_out": [
      5,
      2,
      1,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(input))),22)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(reverse([1, -1]),2)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [3, -5, 1]\noutput : list = [0, -2, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([3, -5, 1],3)))",
    "io_inp": [
      3,
      -5,
      1
    ],
    "io_out": [
      0,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,3)))"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [4]",
    "output": "generated_output : list = take(take(sort_des(take(take([4, -4, -1],1),10)),8),42)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(take(input,1),10)),8),42)"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take([-1, -1, -4],1),-2),2),-2)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(input,1),-2),2),-2)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = add_n([3, 5, 5],-2)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 0, 1, 1, 3, 5]\noutput : list = [-2, 1, 2, 2, 4, 6]",
    "output": "generated_output : list = sub_n([-3, 0, 1, 1, 3, 5],-1)",
    "io_inp": [
      -3,
      0,
      1,
      1,
      3,
      5
    ],
    "io_out": [
      -2,
      1,
      2,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-11, 1]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([-3, 3],2),5),1)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -11,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,2),5),1)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, 8]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(add_n([-4, 0],-1)),-2),1),-2)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(add_n(input,-1)),-2),1),-2)"
  },
  {
    "input": "input : list = [-1, -5, -5, -4, -3]\noutput : list = [-5, -5, -4, -3, -1]",
    "output": "generated_output : list = take(sort_asc(sort_des([-1, -5, -5, -4, -3])),34)",
    "io_inp": [
      -1,
      -5,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(input)),34)"
  },
  {
    "input": "input : list = [-4, -3, 5, 4, -3]\noutput : list = [-7, -6, 2, 1, -6]",
    "output": "generated_output : list = sub_n([-4, -3, 5, 4, -3],3)",
    "io_inp": [
      -4,
      -3,
      5,
      4,
      -3
    ],
    "io_out": [
      -7,
      -6,
      2,
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [10, 13, 14]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(reverse([4, 1, 5]),-5),14)),-4)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      10,
      13,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(reverse(input),-5),14)),-4)"
  },
  {
    "input": "input : list = [5, 3, 4]\noutput : list = [4, 5, 6]",
    "output": "generated_output : list = add_n(take(sort_asc(take(reverse([5, 3, 4]),13)),3),1)",
    "io_inp": [
      5,
      3,
      4
    ],
    "io_out": [
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(reverse(input),13)),3),1)"
  },
  {
    "input": "input : list = [-4, 3, -3, 4]\noutput : list = [1, 0, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n([-4, 3, -3, 4],-1),7),4))",
    "io_inp": [
      -4,
      3,
      -3,
      4
    ],
    "io_out": [
      1,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(input,-1),7),4))"
  },
  {
    "input": "input : list = [-3, -2, -1, 5, 4]\noutput : list = [0, 1, 2, 7, 8]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des([-3, -2, -1, 5, 4]),1)),-5),-3)",
    "io_inp": [
      -3,
      -2,
      -1,
      5,
      4
    ],
    "io_out": [
      0,
      1,
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(add_n(sort_des(input),1)),-5),-3)"
  },
  {
    "input": "input : list = [2, -3, -4, -1, 0]\noutput : list = [-10, -9, -7, -6, -4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(sub_n([2, -3, -4, -1, 0],3),7),-4)),-1)",
    "io_inp": [
      2,
      -3,
      -4,
      -1,
      0
    ],
    "io_out": [
      -10,
      -9,
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(sub_n(input,3),7),-4)),-1)"
  },
  {
    "input": "input : list = [-2, 2, 3, 1, 2]\noutput : list = [4, 3, 3, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_des(drop([-2, 2, 3, 1, 2],1)),-2)),-3)",
    "io_inp": [
      -2,
      2,
      3,
      1,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_des(drop(input,1)),-2)),-3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [1]",
    "output": "generated_output : list = drop(sub_n([-3, -1],-2),1)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-2),1)"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse([-5, -4, -2]),-3),-3),28))",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(reverse(input),-3),-3),28))"
  },
  {
    "input": "input : list = [-2, 3, 3, -4]\noutput : list = [-11, -4, -4, -9]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(sub_n([-2, 3, 3, -4],-2),-4)),37),5)",
    "io_inp": [
      -2,
      3,
      3,
      -4
    ],
    "io_out": [
      -11,
      -4,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(sub_n(input,-2),-4)),37),5)"
  },
  {
    "input": "input : list = [0, -2, -4, -2, 0, -4]\noutput : list = [0, 0, -2, -2, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc([0, -2, -4, -2, 0, -4]))",
    "io_inp": [
      0,
      -2,
      -4,
      -2,
      0,
      -4
    ],
    "io_out": [
      0,
      0,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -4, 5, 4, 3]\noutput : list = [-3, -4, 5, 4, 3]",
    "output": "generated_output : list = reverse(reverse([-3, -4, 5, 4, 3]))",
    "io_inp": [
      -3,
      -4,
      5,
      4,
      3
    ],
    "io_out": [
      -3,
      -4,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -4, 3, -3, -3]\noutput : list = [2, 2, -4, 3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(drop([-3, -4, 3, -3, -3],1),-1)),-1),2)",
    "io_inp": [
      -3,
      -4,
      3,
      -3,
      -3
    ],
    "io_out": [
      2,
      2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(drop(input,1),-1)),-1),2)"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [-5, 0, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc([4, 3, -2]))),3)",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      -5,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(input))),3)"
  },
  {
    "input": "input : list = [-1, -5, 1, -5, 4, -3]\noutput : list = [4, 1, -1, -3, -5, -5]",
    "output": "generated_output : list = sort_des([-1, -5, 1, -5, 4, -3])",
    "io_inp": [
      -1,
      -5,
      1,
      -5,
      4,
      -3
    ],
    "io_out": [
      4,
      1,
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -4, 0, 4, -5]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(take([-1, -4, 0, 4, -5],1),4))),4)",
    "io_inp": [
      -1,
      -4,
      0,
      4,
      -5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(take(input,1),4))),4)"
  },
  {
    "input": "input : list = [-5, 3, 5, 3, -3]\noutput : list = [-4, -2, 4, 4, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n(reverse([-5, 3, 5, 3, -3]),-1))))",
    "io_inp": [
      -5,
      3,
      5,
      3,
      -3
    ],
    "io_out": [
      -4,
      -2,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-1, 1, 1, -5, -1]\noutput : list = [6, 8, 8, 2, 6]",
    "output": "generated_output : list = sub_n(add_n([-1, 1, 1, -5, -1],2),-5)",
    "io_inp": [
      -1,
      1,
      1,
      -5,
      -1
    ],
    "io_out": [
      6,
      8,
      8,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),-5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [1, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(add_n([-2, 5],5)),-1),3))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(add_n(input,5)),-1),3))"
  },
  {
    "input": "input : list = [0, -3, 1, 3]\noutput : list = [-10, 5, 10, 20]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des([0, -3, 1, 3]),5)),5))",
    "io_inp": [
      0,
      -3,
      1,
      3
    ],
    "io_out": [
      -10,
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(sort_des(input),5)),5))"
  },
  {
    "input": "input : list = [5, 2, 1, -2]\noutput : list = [-3, -6, -7, -10]",
    "output": "generated_output : list = reverse(add_n(mul_n([5, 2, 1, -2],-1),-5))",
    "io_inp": [
      5,
      2,
      1,
      -2
    ],
    "io_out": [
      -3,
      -6,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-1),-5))"
  },
  {
    "input": "input : list = [4, 4, 0, 4, 0, 2]\noutput : list = [0, -20, -20, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(take([4, 4, 0, 4, 0, 2],4),-5))),1)",
    "io_inp": [
      4,
      4,
      0,
      4,
      0,
      2
    ],
    "io_out": [
      0,
      -20,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(take(input,4),-5))),1)"
  },
  {
    "input": "input : list = [-4, 0, 3, 3, 3, 1]\noutput : list = [5, 7, 7, 7, 4, 0]",
    "output": "generated_output : list = reverse(add_n([-4, 0, 3, 3, 3, 1],4))",
    "io_inp": [
      -4,
      0,
      3,
      3,
      3,
      1
    ],
    "io_out": [
      5,
      7,
      7,
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [3, -2, -1, 4, 1, -2]\noutput : list = [3, 4]",
    "output": "generated_output : list = drop(sort_asc([3, -2, -1, 4, 1, -2]),4)",
    "io_inp": [
      3,
      -2,
      -1,
      4,
      1,
      -2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = sort_asc([-4, -5, 1])",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, -4, -5, 1]\noutput : list = [-6, -5, -4, -2, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(reverse([-3, -1, -4, -5, 1]))),1))",
    "io_inp": [
      -3,
      -1,
      -4,
      -5,
      1
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(reverse(input))),1))"
  },
  {
    "input": "input : list = [1, 3, -5, 2, 2]\noutput : list = [-16, -24]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(drop(sort_asc([1, 3, -5, 2, 2]),3)),-4),2)",
    "io_inp": [
      1,
      3,
      -5,
      2,
      2
    ],
    "io_out": [
      -16,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(drop(sort_asc(input),3)),-4),2)"
  },
  {
    "input": "input : list = [0, 1, 4, 0, 4, -1]\noutput : list = [-9, -7, -7, -5, 1, 1]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(reverse([0, 1, 4, 0, 4, -1])),-4),2),-1)",
    "io_inp": [
      0,
      1,
      4,
      0,
      4,
      -1
    ],
    "io_out": [
      -9,
      -7,
      -7,
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(reverse(input)),-4),2),-1)"
  },
  {
    "input": "input : list = [-5, -4, -2, -4, -2, 4]\noutput : list = [-1, -25, -25, -33]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(sub_n([-5, -4, -2, -4, -2, 4],5),4)),4),3)",
    "io_inp": [
      -5,
      -4,
      -2,
      -4,
      -2,
      4
    ],
    "io_out": [
      -1,
      -25,
      -25,
      -33
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(sub_n(input,5),4)),4),3)"
  },
  {
    "input": "input : list = [-3, 4, -4, -2, 0, -4]\noutput : list = [40, 24, 32, 40, 8, 36]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(add_n([-3, 4, -4, -2, 0, -4],-5),-1)),40),-4)",
    "io_inp": [
      -3,
      4,
      -4,
      -2,
      0,
      -4
    ],
    "io_out": [
      40,
      24,
      32,
      40,
      8,
      36
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(add_n(input,-5),-1)),40),-4)"
  },
  {
    "input": "input : list = [-2, -4, 2, 4, -5]\noutput : list = [-9, -11, -5, -3, -12]",
    "output": "generated_output : list = take(take(sub_n(sub_n([-2, -4, 2, 4, -5],2),5),7),7)",
    "io_inp": [
      -2,
      -4,
      2,
      4,
      -5
    ],
    "io_out": [
      -9,
      -11,
      -5,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sub_n(input,2),5),7),7)"
  },
  {
    "input": "input : list = [-1, 1, -3, 4]\noutput : list = [56, 24, -8, -56]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc(mul_n([-1, 1, -3, 4],4)),-2),-4),21)",
    "io_inp": [
      -1,
      1,
      -3,
      4
    ],
    "io_out": [
      56,
      24,
      -8,
      -56
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(mul_n(input,4)),-2),-4),21)"
  },
  {
    "input": "input : list = [1, 1, 3, -5]\noutput : list = [6, 2, 2, -10]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(sort_des([1, 1, 3, -5])),2)),35)",
    "io_inp": [
      1,
      1,
      3,
      -5
    ],
    "io_out": [
      6,
      2,
      2,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(sort_des(input)),2)),35)"
  },
  {
    "input": "input : list = [4, -5, -3, -5]\noutput : list = [6, -1, -3, -3]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(sort_des([4, -5, -3, -5]),3)),5),37)",
    "io_inp": [
      4,
      -5,
      -3,
      -5
    ],
    "io_out": [
      6,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(sort_des(input),3)),5),37)"
  },
  {
    "input": "input : list = [2, -4, 5, -5]\noutput : list = [-2, -1, 5, 8]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(sort_des([2, -4, 5, -5])),5),-5),3)",
    "io_inp": [
      2,
      -4,
      5,
      -5
    ],
    "io_out": [
      -2,
      -1,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(sort_des(input)),5),-5),3)"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [0, -7, -8]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(sort_asc([-3, -4, 4]),-4)),34))",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      0,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(sort_asc(input),-4)),34))"
  },
  {
    "input": "input : list = [-5, -4, -4, -4, 2, -1]\noutput : list = [5, 0, 0, 0, -15, -30]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(add_n([-5, -4, -4, -4, 2, -1],4),-5))))",
    "io_inp": [
      -5,
      -4,
      -4,
      -4,
      2,
      -1
    ],
    "io_out": [
      5,
      0,
      0,
      0,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(add_n(input,4),-5))))"
  },
  {
    "input": "input : list = [-3, -5, -1, -5, 3]\noutput : list = [-5, -5, -3, -1, 3]",
    "output": "generated_output : list = sort_asc([-3, -5, -1, -5, 3])",
    "io_inp": [
      -3,
      -5,
      -1,
      -5,
      3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, 4]\noutput : list = [-4, 3, 3]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(sub_n([4, -3, 4],5)),23)),-4)",
    "io_inp": [
      4,
      -3,
      4
    ],
    "io_out": [
      -4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(sub_n(input,5)),23)),-4)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-4, -10]",
    "output": "generated_output : list = reverse(take(mul_n([5, 2],-2),10))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -4,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,-2),10))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-8]",
    "output": "generated_output : list = drop(add_n([2, -5],-3),1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = drop(add_n(input,-3),1)"
  },
  {
    "input": "input : list = [-1, 5, 0, 5, 4]\noutput : list = [-2, 0, 8, 10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([-1, 5, 0, 5, 4]),2))",
    "io_inp": [
      -1,
      5,
      0,
      5,
      4
    ],
    "io_out": [
      -2,
      0,
      8,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [2, -3, 3, -5]\noutput : list = [5, 4, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(sort_asc([2, -3, 3, -5]),-2))))",
    "io_inp": [
      2,
      -3,
      3,
      -5
    ],
    "io_out": [
      5,
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [3, 4, 2, 5, -5, 5]\noutput : list = [-6, -8, -4, -10, 10, -10]",
    "output": "generated_output : list = mul_n([3, 4, 2, 5, -5, 5],-2)",
    "io_inp": [
      3,
      4,
      2,
      5,
      -5,
      5
    ],
    "io_out": [
      -6,
      -8,
      -4,
      -10,
      10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, 0, -3, 2, 0]\noutput : list = [13, 10, 4, 4, -5]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sub_n([3, 0, -3, 2, 0],3),3),3),4))",
    "io_inp": [
      3,
      0,
      -3,
      2,
      0
    ],
    "io_out": [
      13,
      10,
      4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sub_n(input,3),3),3),4))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc([-5, -3]),1),-1),26)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(input),1),-1),26)"
  },
  {
    "input": "input : list = [-3, -2, 1, 3, -1]\noutput : list = [-6, 2]",
    "output": "generated_output : list = mul_n(drop([-3, -2, 1, 3, -1],3),-2)",
    "io_inp": [
      -3,
      -2,
      1,
      3,
      -1
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),-2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [185, 125]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(mul_n([3, 2],-5),11),3),-4),5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      185,
      125
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(mul_n(input,-5),11),3),-4),5)"
  },
  {
    "input": "input : list = [0, -2, -3, 2, 5]\noutput : list = [12, 10, 6, 2, -4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(add_n([0, -2, -3, 2, 5],-3)))),-2)",
    "io_inp": [
      0,
      -2,
      -3,
      2,
      5
    ],
    "io_out": [
      12,
      10,
      6,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(add_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [5, -3, -3, 5]\noutput : list = [27, 3, 3, 27]",
    "output": "generated_output : list = mul_n(sub_n([5, -3, -3, 5],-4),3)",
    "io_inp": [
      5,
      -3,
      -3,
      5
    ],
    "io_out": [
      27,
      3,
      3,
      27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),3)"
  },
  {
    "input": "input : list = [-5, 1, -5, 2, -5, -3]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 1, -5, 2, -5, -3],1)",
    "io_inp": [
      -5,
      1,
      -5,
      2,
      -5,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 1, 2, -5, -5]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse(sort_des(add_n(take([5, 1, 2, -5, -5],2),-5)))",
    "io_inp": [
      5,
      1,
      2,
      -5,
      -5
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(input,2),-5)))"
  },
  {
    "input": "input : list = [2, 4, 0, 1]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(take([2, 4, 0, 1],1),16))",
    "io_inp": [
      2,
      4,
      0,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,1),16))"
  },
  {
    "input": "input : list = [5, -4, 1, -5, -4]\noutput : list = [-10, -11, -5, -10, -1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(sub_n([5, -4, 1, -5, -4],5),-1),1),1))",
    "io_inp": [
      5,
      -4,
      1,
      -5,
      -4
    ],
    "io_out": [
      -10,
      -11,
      -5,
      -10,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(sub_n(input,5),-1),1),1))"
  },
  {
    "input": "input : list = [2, -2, 4, 4, -3, 4]\noutput : list = [16, 16, 16, 8, -8, -12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([2, -2, 4, 4, -3, 4])),4)",
    "io_inp": [
      2,
      -2,
      4,
      4,
      -3,
      4
    ],
    "io_out": [
      16,
      16,
      16,
      8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),4)"
  },
  {
    "input": "input : list = [-1, -4, 4, 4, 0, 4]\noutput : list = [7, 7, 7, 3, 2, -1]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(add_n([-1, -4, 4, 4, 0, 4],5)),31)),-2)",
    "io_inp": [
      -1,
      -4,
      4,
      4,
      0,
      4
    ],
    "io_out": [
      7,
      7,
      7,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(add_n(input,5)),31)),-2)"
  },
  {
    "input": "input : list = [2, 4, 4, 5, 1]\noutput : list = [1, 5, 4, 4, 2]",
    "output": "generated_output : list = reverse([2, 4, 4, 5, 1])",
    "io_inp": [
      2,
      4,
      4,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(sort_des([2, -1]),14))))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(sort_des(input),14))))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [5, 35]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(add_n([-2, 4],-5)),17),-5))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      5,
      35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(add_n(input,-5)),17),-5))"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [-3, 0, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(reverse([5, 5, 2]),-2))),3)",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(reverse(input),-2))),3)"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = sort_des([4, 3, -5])",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, 4, 2, 3]\noutput : list = [6, 5, 7]",
    "output": "generated_output : list = reverse(take(sub_n(take(drop([0, 1, 4, 2, 3],2),7),-3),34))",
    "io_inp": [
      0,
      1,
      4,
      2,
      3
    ],
    "io_out": [
      6,
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(drop(input,2),7),-3),34))"
  },
  {
    "input": "input : list = [-2, -4, -1, 3]\noutput : list = [-11, -13, -10, -6]",
    "output": "generated_output : list = sub_n(add_n([-2, -4, -1, 3],-4),5)",
    "io_inp": [
      -2,
      -4,
      -1,
      3
    ],
    "io_out": [
      -11,
      -13,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),5)"
  },
  {
    "input": "input : list = [1, 4, 0, 1, 3, 1]\noutput : list = [4, 3, 1, 1, 1, 0]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(reverse([1, 4, 0, 1, 3, 1]),18))))",
    "io_inp": [
      1,
      4,
      0,
      1,
      3,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(reverse(input),18))))"
  },
  {
    "input": "input : list = [-4, 1, 5, 0, 0]\noutput : list = [6, 1, 1]",
    "output": "generated_output : list = sub_n(drop([-4, 1, 5, 0, 0],2),-1)",
    "io_inp": [
      -4,
      1,
      5,
      0,
      0
    ],
    "io_out": [
      6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [-3, 9]",
    "output": "generated_output : list = sub_n(mul_n(drop([-2, 1, -5],1),-2),1)",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      -3,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,1),-2),1)"
  },
  {
    "input": "input : list = [3, 3, -1, 1, -5]\noutput : list = [9, 9, -3, 3, -15]",
    "output": "generated_output : list = mul_n([3, 3, -1, 1, -5],3)",
    "io_inp": [
      3,
      3,
      -1,
      1,
      -5
    ],
    "io_out": [
      9,
      9,
      -3,
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(sub_n([-5, 2],3),3),-4)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(sub_n(input,3),3),-4)))"
  },
  {
    "input": "input : list = [1, -3, 3, 3]\noutput : list = [5, 1, 7, 7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(sub_n([1, -3, 3, 3],-5),18),5),5),1)",
    "io_inp": [
      1,
      -3,
      3,
      3
    ],
    "io_out": [
      5,
      1,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(sub_n(input,-5),18),5),5),1)"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [-7, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(mul_n([2, 3, -4],1)),-4)),1)",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      -7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(mul_n(input,1)),-4)),1)"
  },
  {
    "input": "input : list = [-2, -2, -2, 0]\noutput : list = [-25, -25, -25, -35]",
    "output": "generated_output : list = mul_n(sub_n(take(take(add_n([-2, -2, -2, 0],2),12),28),-5),-5)",
    "io_inp": [
      -2,
      -2,
      -2,
      0
    ],
    "io_out": [
      -25,
      -25,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(add_n(input,2),12),28),-5),-5)"
  },
  {
    "input": "input : list = [1, 2, -3, 4, 0, 4]\noutput : list = [2, -2, 2, -5, 0, -1]",
    "output": "generated_output : list = reverse(add_n(take(add_n(add_n([1, 2, -3, 4, 0, 4],-2),-1),12),1))",
    "io_inp": [
      1,
      2,
      -3,
      4,
      0,
      4
    ],
    "io_out": [
      2,
      -2,
      2,
      -5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(add_n(input,-2),-1),12),1))"
  },
  {
    "input": "input : list = [-5, 3, -3]\noutput : list = [-2, 6, 0]",
    "output": "generated_output : list = add_n([-5, 3, -3],3)",
    "io_inp": [
      -5,
      3,
      -3
    ],
    "io_out": [
      -2,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-3, -7]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse([2, -2]),3)),2)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(input),3)),2)"
  },
  {
    "input": "input : list = [1, -4, 2, 4, 2]\noutput : list = [-1, -3, -3, -4, -9]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_des([1, -4, 2, 4, 2])),2)),-3)",
    "io_inp": [
      1,
      -4,
      2,
      4,
      2
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_des(input)),2)),-3)"
  },
  {
    "input": "input : list = [-1, 4, 1, 2]\noutput : list = [-1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(sort_des([-1, 4, 1, 2])))))",
    "io_inp": [
      -1,
      4,
      1,
      2
    ],
    "io_out": [
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, 2, 3, -4, -5, 3]\noutput : list = [-3, -6, -24, -27, -27, -30]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(add_n([4, 2, 3, -4, -5, 3],3),26),-3)),-3)",
    "io_inp": [
      4,
      2,
      3,
      -4,
      -5,
      3
    ],
    "io_out": [
      -3,
      -6,
      -24,
      -27,
      -27,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(add_n(input,3),26),-3)),-3)"
  },
  {
    "input": "input : list = [-2, 0, -3, 3]\noutput : list = [0, 2, -1, 5]",
    "output": "generated_output : list = sub_n([-2, 0, -3, 3],-2)",
    "io_inp": [
      -2,
      0,
      -3,
      3
    ],
    "io_out": [
      0,
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -3, -1, 5, -4, 0]\noutput : list = [15, 6, 0, -3, -9, -12]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(mul_n([2, -3, -1, 5, -4, 0],3),11)),24))",
    "io_inp": [
      2,
      -3,
      -1,
      5,
      -4,
      0
    ],
    "io_out": [
      15,
      6,
      0,
      -3,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(mul_n(input,3),11)),24))"
  },
  {
    "input": "input : list = [-3, -2, -5, 5, -2, 2]\noutput : list = [1, -11, 10, -20, -11, -14]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(reverse([-3, -2, -5, 5, -2, 2])),3)),5)",
    "io_inp": [
      -3,
      -2,
      -5,
      5,
      -2,
      2
    ],
    "io_out": [
      1,
      -11,
      10,
      -20,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(reverse(input)),3)),5)"
  },
  {
    "input": "input : list = [0, 3, -4, -1]\noutput : list = [-5, -2, -9, -6]",
    "output": "generated_output : list = sub_n([0, 3, -4, -1],5)",
    "io_inp": [
      0,
      3,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, 1, 3, -1, 0]\noutput : list = [-3, -5, -3, -7, -6]",
    "output": "generated_output : list = sub_n(take(sub_n([3, 1, 3, -1, 0],3),7),3)",
    "io_inp": [
      3,
      1,
      3,
      -1,
      0
    ],
    "io_out": [
      -3,
      -5,
      -3,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(input,3),7),3)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(sort_asc([-1, -1]),4))))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [0, -3, -4, -2]\noutput : list = [0, 72, 96, 48]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(mul_n([0, -3, -4, -2],-4)),3)),2)",
    "io_inp": [
      0,
      -3,
      -4,
      -2
    ],
    "io_out": [
      0,
      72,
      96,
      48
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(mul_n(input,-4)),3)),2)"
  },
  {
    "input": "input : list = [-3, -3, 2, -1, 4]\noutput : list = [4, -1, 2, -3, -3]",
    "output": "generated_output : list = reverse([-3, -3, 2, -1, 4])",
    "io_inp": [
      -3,
      -3,
      2,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, -3, -2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(take([2, 4, -3, -2],1)),2)),5)",
    "io_inp": [
      2,
      4,
      -3,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(take(input,1)),2)),5)"
  },
  {
    "input": "input : list = [-4, -1, -4, 1, 2]\noutput : list = [0, -1, -3, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse([-4, -1, -4, 1, 2]),2))",
    "io_inp": [
      -4,
      -1,
      -4,
      1,
      2
    ],
    "io_out": [
      0,
      -1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),2))"
  },
  {
    "input": "input : list = [-4, -4, -5, 2, -1]\noutput : list = [1, 2, 2, 5, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse([-4, -4, -5, 2, -1]),-2))),4)",
    "io_inp": [
      -4,
      -4,
      -5,
      2,
      -1
    ],
    "io_out": [
      1,
      2,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse(input),-2))),4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [10]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(sort_asc([-4, 4])),-2),1),2)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(sort_asc(input)),-2),1),2)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-24, 3, 3]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(sub_n([-4, 5, -4],-1),11),2)),-3)",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -24,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(sub_n(input,-1),11),2)),-3)"
  },
  {
    "input": "input : list = [5, 4, -4, 3, -2, -4]\noutput : list = [6, -4, -8]",
    "output": "generated_output : list = mul_n(drop([5, 4, -4, 3, -2, -4],3),2)",
    "io_inp": [
      5,
      4,
      -4,
      3,
      -2,
      -4
    ],
    "io_out": [
      6,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),2)"
  },
  {
    "input": "input : list = [2, 0, 2, -5, 0]\noutput : list = [-3, -3, -5, -5, -10]",
    "output": "generated_output : list = take(add_n(sort_des([2, 0, 2, -5, 0]),-5),26)",
    "io_inp": [
      2,
      0,
      2,
      -5,
      0
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),-5),26)"
  },
  {
    "input": "input : list = [-3, -4, 3, -2]\noutput : list = [12, 16, -12, 8]",
    "output": "generated_output : list = take(mul_n([-3, -4, 3, -2],-4),4)",
    "io_inp": [
      -3,
      -4,
      3,
      -2
    ],
    "io_out": [
      12,
      16,
      -12,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-4),4)"
  },
  {
    "input": "input : list = [1, 1, 0, 1, 0, 3]\noutput : list = [0, 0, 20, 20, 60]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(drop([1, 1, 0, 1, 0, 3],1)),4),5),51)",
    "io_inp": [
      1,
      1,
      0,
      1,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      20,
      20,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(drop(input,1)),4),5),51)"
  },
  {
    "input": "input : list = [4, -4, -3, 1]\noutput : list = [-8]",
    "output": "generated_output : list = drop(sort_des(sub_n([4, -4, -3, 1],4)),3)",
    "io_inp": [
      4,
      -4,
      -3,
      1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(input,4)),3)"
  },
  {
    "input": "input : list = [-5, 2, 3, -5, -4]\noutput : list = [-40, -45, -5, -10, -45]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-5, 2, 3, -5, -4]),4),5)",
    "io_inp": [
      -5,
      2,
      3,
      -5,
      -4
    ],
    "io_out": [
      -40,
      -45,
      -5,
      -10,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),4),5)"
  },
  {
    "input": "input : list = [2, 1, -1, -2, 1]\noutput : list = [-8, -6, -6, -2, 0]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n([2, 1, -1, -2, 1],-3)),1),4),-2)",
    "io_inp": [
      2,
      1,
      -1,
      -2,
      1
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_des(add_n(input,-3)),1),4),-2)"
  },
  {
    "input": "input : list = [-2, 4, -3, -2]\noutput : list = [-3, -2, -2, 4]",
    "output": "generated_output : list = sort_asc(reverse([-2, 4, -3, -2]))",
    "io_inp": [
      -2,
      4,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [4]",
    "output": "generated_output : list = take(add_n(drop(sub_n(add_n([0, -1],1),-3),1),1),11)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(add_n(drop(sub_n(add_n(input,1),-3),1),1),11)"
  },
  {
    "input": "input : list = [1, 0, -5, 0, -5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(drop(sort_asc([1, 0, -5, 0, -5]),4)),-1))",
    "io_inp": [
      1,
      0,
      -5,
      0,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(drop(sort_asc(input),4)),-1))"
  },
  {
    "input": "input : list = [4, 4, -2, -5, 1, -5]\noutput : list = [-1, -1, -7, -10]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(take([4, 4, -2, -5, 1, -5],4),-5)),28))",
    "io_inp": [
      4,
      4,
      -2,
      -5,
      1,
      -5
    ],
    "io_out": [
      -1,
      -1,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(take(input,4),-5)),28))"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [-3, 4, 5]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(reverse([3, -5, 2])))),2)",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      -3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(reverse(input)))),2)"
  },
  {
    "input": "input : list = [2, 4, 1, 4]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(drop([2, 4, 1, 4],1)),3)))",
    "io_inp": [
      2,
      4,
      1,
      4
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(drop(input,1)),3)))"
  },
  {
    "input": "input : list = [-3, 4, 3, 5, 2, 5]\noutput : list = [-4, 1, 2, 3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(sort_asc([-3, 4, 3, 5, 2, 5]),1),28)),27)",
    "io_inp": [
      -3,
      4,
      3,
      5,
      2,
      5
    ],
    "io_out": [
      -4,
      1,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(sort_asc(input),1),28)),27)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [-4, -1, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sort_asc([5, 5, 2]),3)),-5),-2)",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sort_asc(input),3)),-5),-2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0, 6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_des(sort_asc([5, -1])))),-1)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_des(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [4, -1, 0, -5, 2]\noutput : list = [-9, -3, 3, 6, 18]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(add_n([4, -1, 0, -5, 2],-1)))),-3)",
    "io_inp": [
      4,
      -1,
      0,
      -5,
      2
    ],
    "io_out": [
      -9,
      -3,
      3,
      6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(add_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(add_n([-1, -2],-1)))))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [2, 0, -2, 5, 3]\noutput : list = [9, 7, 6, 4, 2]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(sub_n([2, 0, -2, 5, 3],5),5)),-4),37)",
    "io_inp": [
      2,
      0,
      -2,
      5,
      3
    ],
    "io_out": [
      9,
      7,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(sub_n(input,5),5)),-4),37)"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sub_n(take(take(add_n(drop([4, -2, 2],1),2),6),2),3)",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(drop(input,1),2),6),2),3)"
  },
  {
    "input": "input : list = [-4, -1, 0, -4, 4, 3]\noutput : list = [-16, -13, -4, -1, 8, 8]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(mul_n([-4, -1, 0, -4, 4, 3],-3)),-4)))",
    "io_inp": [
      -4,
      -1,
      0,
      -4,
      4,
      3
    ],
    "io_out": [
      -16,
      -13,
      -4,
      -1,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(mul_n(input,-3)),-4)))"
  },
  {
    "input": "input : list = [0, 0, 3, -4, -4, -4]\noutput : list = [0, 0, -15, 20, 20, 20]",
    "output": "generated_output : list = mul_n([0, 0, 3, -4, -4, -4],-5)",
    "io_inp": [
      0,
      0,
      3,
      -4,
      -4,
      -4
    ],
    "io_out": [
      0,
      0,
      -15,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [5, 1, 2, 0, 5, -1]\noutput : list = [-1, 0, 1, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, 1, 2, 0, 5, -1]))",
    "io_inp": [
      5,
      1,
      2,
      0,
      5,
      -1
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -2, -4, 2, -1, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take([-2, -2, -4, 2, -1, -2],2)",
    "io_inp": [
      -2,
      -2,
      -4,
      2,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, 7]",
    "output": "generated_output : list = sub_n([-5, 2],-5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, 3, -2, -3, -5]\noutput : list = [-3, -1, 0, 3, 5]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_des([1, 3, -2, -3, -5]))),-2))",
    "io_inp": [
      1,
      3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [-5, -4, -4, -2, -3, 2]\noutput : list = [-8, -7, -7, -6, -5, -1]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(mul_n([-5, -4, -4, -2, -3, 2],1),3))),25)",
    "io_inp": [
      -5,
      -4,
      -4,
      -2,
      -3,
      2
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(mul_n(input,1),3))),25)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = sort_des(reverse([1, -1, 5]))",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-4, 10]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc([2, -5]),-2))),32)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -4,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc(input),-2))),32)"
  },
  {
    "input": "input : list = [2, 5, -2, 2, 2, -4]\noutput : list = [-1, -1, -7]",
    "output": "generated_output : list = drop(sub_n([2, 5, -2, 2, 2, -4],3),3)",
    "io_inp": [
      2,
      5,
      -2,
      2,
      2,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [0, -20]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sub_n([-1, 3],-1)))),-5)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(sub_n(input,-1)))),-5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_des([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1, -5, -2, -3, 2]\noutput : list = [2, 1, -2, -3, -5, -5]",
    "output": "generated_output : list = reverse(sort_asc([-5, 1, -5, -2, -3, 2]))",
    "io_inp": [
      -5,
      1,
      -5,
      -2,
      -3,
      2
    ],
    "io_out": [
      2,
      1,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [-36, 0, -24]",
    "output": "generated_output : list = mul_n(add_n([5, -4, 2],4),-4)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      -36,
      0,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),-4)"
  },
  {
    "input": "input : list = [3, -4, 4, -1, -3]\noutput : list = [12, -72, 24, -36, -60]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n([3, -4, 4, -1, -3],1),-3),3),4)",
    "io_inp": [
      3,
      -4,
      4,
      -1,
      -3
    ],
    "io_out": [
      12,
      -72,
      24,
      -36,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(input,1),-3),3),4)"
  },
  {
    "input": "input : list = [-5, -5, -1, 3, -2, 4]\noutput : list = [-6, -6, -2, 2, -3, 3]",
    "output": "generated_output : list = add_n([-5, -5, -1, 3, -2, 4],-1)",
    "io_inp": [
      -5,
      -5,
      -1,
      3,
      -2,
      4
    ],
    "io_out": [
      -6,
      -6,
      -2,
      2,
      -3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 3, -3, 2, 1]\noutput : list = [-2, -3, -4, -5, -8]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(sort_asc([0, 3, -3, 2, 1]))),-5),19)",
    "io_inp": [
      0,
      3,
      -3,
      2,
      1
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(sort_asc(input))),-5),19)"
  },
  {
    "input": "input : list = [-3, -4, 0, 2]\noutput : list = [13, 5, -7, -11]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_asc([-3, -4, 0, 2]),4),-5)))",
    "io_inp": [
      -3,
      -4,
      0,
      2
    ],
    "io_out": [
      13,
      5,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sort_asc(input),4),-5)))"
  },
  {
    "input": "input : list = [0, 2, -2, 2]\noutput : list = [2, 4, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc([0, 2, -2, 2]),-4)",
    "io_inp": [
      0,
      2,
      -2,
      2
    ],
    "io_out": [
      2,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [2, 4, 4, -1]\noutput : list = [-6, -3, -1, -1]",
    "output": "generated_output : list = reverse(add_n(take(sort_des(add_n([2, 4, 4, -1],-4)),24),-1))",
    "io_inp": [
      2,
      4,
      4,
      -1
    ],
    "io_out": [
      -6,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(add_n(input,-4)),24),-1))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [32, -8]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([4, -1],1),-2),-4)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      32,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,1),-2),-4)"
  },
  {
    "input": "input : list = [-3, -5, 5, 5, -1, -5]\noutput : list = [-11, -11, 7, 19]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(drop([-3, -5, 5, 5, -1, -5],2))),-3),-4)",
    "io_inp": [
      -3,
      -5,
      5,
      5,
      -1,
      -5
    ],
    "io_out": [
      -11,
      -11,
      7,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_asc(drop(input,2))),-3),-4)"
  },
  {
    "input": "input : list = [-2, 3, -5, -3]\noutput : list = [0, 6, 9, 24]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des([-2, 3, -5, -3]),5)),3))",
    "io_inp": [
      -2,
      3,
      -5,
      -3
    ],
    "io_out": [
      0,
      6,
      9,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des(input),5)),3))"
  },
  {
    "input": "input : list = [3, 1, 1, 3, -5, 2]\noutput : list = [-4, -4, -3, -2, -2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_des([3, 1, 1, 3, -5, 2])),1),-1))",
    "io_inp": [
      3,
      1,
      1,
      3,
      -5,
      2
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_des(input)),1),-1))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = reverse([-4, -4])",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, -4]\noutput : list = [-3, -3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(reverse([-4, 5, -4])),-2),1))",
    "io_inp": [
      -4,
      5,
      -4
    ],
    "io_out": [
      -3,
      -3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(reverse(input)),-2),1))"
  },
  {
    "input": "input : list = [-4, 1, -3, -5, -1]\noutput : list = [10, 50, 30, -10, 40]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sub_n([-4, 1, -3, -5, -1],-4),-4),-5)),2)",
    "io_inp": [
      -4,
      1,
      -3,
      -5,
      -1
    ],
    "io_out": [
      10,
      50,
      30,
      -10,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sub_n(input,-4),-4),-5)),2)"
  },
  {
    "input": "input : list = [0, -2, -5, 4]\noutput : list = [-5, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(reverse([0, -2, -5, 4]))",
    "io_inp": [
      0,
      -2,
      -5,
      4
    ],
    "io_out": [
      -5,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, 5, 2, -4, 1, -3]\noutput : list = [-20, -8, 16, -4, 12]",
    "output": "generated_output : list = mul_n(drop([0, 5, 2, -4, 1, -3],1),-4)",
    "io_inp": [
      0,
      5,
      2,
      -4,
      1,
      -3
    ],
    "io_out": [
      -20,
      -8,
      16,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [-5, 2, -2, -1, 5, -5]\noutput : list = [6, -4]",
    "output": "generated_output : list = sub_n(drop([-5, 2, -2, -1, 5, -5],4),-1)",
    "io_inp": [
      -5,
      2,
      -2,
      -1,
      5,
      -5
    ],
    "io_out": [
      6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),-1)"
  },
  {
    "input": "input : list = [5, -3, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = drop([5, -3, 1, -2],2)",
    "io_inp": [
      5,
      -3,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [20, 8]",
    "output": "generated_output : list = take(take(mul_n(mul_n(reverse([-2, -5]),4),-1),3),13)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      20,
      8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(reverse(input),4),-1),3),13)"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(drop([5, -5, -1],1)),4)))",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(drop(input,1)),4)))"
  },
  {
    "input": "input : list = [4, 3, -4, 5, 0]\noutput : list = [3, 0, -4]",
    "output": "generated_output : list = drop(sort_des([4, 3, -4, 5, 0]),2)",
    "io_inp": [
      4,
      3,
      -4,
      5,
      0
    ],
    "io_out": [
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),2)"
  },
  {
    "input": "input : list = [-5, -5, -5, 5, 1, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(add_n([-5, -5, -5, 5, 1, 1],5),2)",
    "io_inp": [
      -5,
      -5,
      -5,
      5,
      1,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),2)"
  },
  {
    "input": "input : list = [-1, -3, -4]\noutput : list = [-1, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([-1, -3, -4]))",
    "io_inp": [
      -1,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 5, 1, 3, 1]\noutput : list = [8, -2, -2, -6, -10]",
    "output": "generated_output : list = mul_n(sort_asc([-4, 5, 1, 3, 1]),-2)",
    "io_inp": [
      -4,
      5,
      1,
      3,
      1
    ],
    "io_out": [
      8,
      -2,
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [4, 3, 4]\noutput : list = [-24, -18]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(drop([4, 3, 4],1)),3)),-2)",
    "io_inp": [
      4,
      3,
      4
    ],
    "io_out": [
      -24,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(drop(input,1)),3)),-2)"
  },
  {
    "input": "input : list = [-5, 5, -3, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(mul_n(take([-5, 5, -3, 2],1),-1),2))",
    "io_inp": [
      -5,
      5,
      -3,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(input,1),-1),2))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-6, 10]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(add_n([4, 0],-3),-1)),4),2)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(add_n(input,-3),-1)),4),2)"
  },
  {
    "input": "input : list = [0, 1, -1, -1, 2]\noutput : list = [2, 2, 3, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des([0, 1, -1, -1, 2]),-1),-1)),3)",
    "io_inp": [
      0,
      1,
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des(input),-1),-1)),3)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = take(add_n(sub_n(add_n(mul_n([-4, -2],2),-1),-4),-3),26)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(add_n(mul_n(input,2),-1),-4),-3),26)"
  },
  {
    "input": "input : list = [-1, -2, -1, 1, -5]\noutput : list = [-8, -10, -10, -11, -14]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(add_n([-1, -2, -1, 1, -5],-4),5)),1))",
    "io_inp": [
      -1,
      -2,
      -1,
      1,
      -5
    ],
    "io_out": [
      -8,
      -10,
      -10,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(add_n(input,-4),5)),1))"
  },
  {
    "input": "input : list = [3, 5, -4, -4, -4, 3]\noutput : list = [0, -21, -21, -21, 6, 0]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(add_n([3, 5, -4, -4, -4, 3],-3),-4),-4),3))",
    "io_inp": [
      3,
      5,
      -4,
      -4,
      -4,
      3
    ],
    "io_out": [
      0,
      -21,
      -21,
      -21,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(add_n(input,-3),-4),-4),3))"
  },
  {
    "input": "input : list = [-2, 4, 4, -1, -4, 0]\noutput : list = [-4, -2, -1, 0, 4, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, 4, -1, -4, 0])",
    "io_inp": [
      -2,
      4,
      4,
      -1,
      -4,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, -2, 4, -1, -2]\noutput : list = [-3, -2, -2, -1, -1, 4]",
    "output": "generated_output : list = sort_asc(reverse([-3, -1, -2, 4, -1, -2]))",
    "io_inp": [
      -3,
      -1,
      -2,
      4,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [7, 6]",
    "output": "generated_output : list = add_n([2, 1],5)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, 4, -2, -2]\noutput : list = [5, 21, -3, -3]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(mul_n([0, 4, -2, -2],4))),-5),17)",
    "io_inp": [
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      5,
      21,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(mul_n(input,4))),-5),17)"
  },
  {
    "input": "input : list = [5, -3, -1, 3, -4, -4]\noutput : list = [-4, -4, -3, -1, 3, 5]",
    "output": "generated_output : list = sort_asc([5, -3, -1, 3, -4, -4])",
    "io_inp": [
      5,
      -3,
      -1,
      3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 5, 4]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(sort_des([1, 5, 4])),-3)),2)",
    "io_inp": [
      1,
      5,
      4
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(sort_des(input)),-3)),2)"
  },
  {
    "input": "input : list = [-4, -2, -1, -4, -3, -5]\noutput : list = [-10, -9, -9, -8, -7, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse([-4, -2, -1, -4, -3, -5]),13),-5)))",
    "io_inp": [
      -4,
      -2,
      -1,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -9,
      -9,
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse(input),13),-5)))"
  },
  {
    "input": "input : list = [-1, -1, -3, 1, 3]\noutput : list = [7, 1, -5, -5, -11]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(mul_n([-1, -1, -3, 1, 3],-3),-1),-2)),31)",
    "io_inp": [
      -1,
      -1,
      -3,
      1,
      3
    ],
    "io_out": [
      7,
      1,
      -5,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(mul_n(input,-3),-1),-2)),31)"
  },
  {
    "input": "input : list = [-5, 1, -3, 0]\noutput : list = [-60, 0, -40, -10]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(mul_n([-5, 1, -3, 0],2),2),5),3),-3)",
    "io_inp": [
      -5,
      1,
      -3,
      0
    ],
    "io_out": [
      -60,
      0,
      -40,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(mul_n(input,2),2),5),3),-3)"
  },
  {
    "input": "input : list = [0, -2, -4, 4]\noutput : list = [-1, -9, -7, -5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse([0, -2, -4, 4]),1),3),-1)",
    "io_inp": [
      0,
      -2,
      -4,
      4
    ],
    "io_out": [
      -1,
      -9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(input),1),3),-1)"
  },
  {
    "input": "input : list = [-3, 2, -2, -1]\noutput : list = [-6, 3, 6]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(drop([-3, 2, -2, -1],1)))),-3)",
    "io_inp": [
      -3,
      2,
      -2,
      -1
    ],
    "io_out": [
      -6,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(drop(input,1)))),-3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-11, 3]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(reverse([3, -4])),2),3))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -11,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(reverse(input)),2),3))"
  },
  {
    "input": "input : list = [-4, 2, 3, -5, -1]\noutput : list = [-20, -36, -4, -8, -32]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(add_n([-4, 2, 3, -5, -1],1),5),24),4))",
    "io_inp": [
      -4,
      2,
      3,
      -5,
      -1
    ],
    "io_out": [
      -20,
      -36,
      -4,
      -8,
      -32
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(add_n(input,1),5),24),4))"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(add_n([-4, -1, -5],4)),-2)))",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(add_n(input,4)),-2)))"
  },
  {
    "input": "input : list = [1, -3, 0, 5]\noutput : list = [12, -3]",
    "output": "generated_output : list = mul_n(sub_n(drop([1, -3, 0, 5],2),4),-3)",
    "io_inp": [
      1,
      -3,
      0,
      5
    ],
    "io_out": [
      12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,2),4),-3)"
  },
  {
    "input": "input : list = [5, 4, -5, -3, -2]\noutput : list = [6, 2, -22, -26, -34]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(sub_n([5, 4, -5, -3, -2],4))),4),-2)",
    "io_inp": [
      5,
      4,
      -5,
      -3,
      -2
    ],
    "io_out": [
      6,
      2,
      -22,
      -26,
      -34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(sub_n(input,4))),4),-2)"
  },
  {
    "input": "input : list = [0, 5, -1, 2, -1]\noutput : list = [4, 7, 4, 10, 5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(reverse(mul_n([0, 5, -1, 2, -1],1)),4),2),-3)",
    "io_inp": [
      0,
      5,
      -1,
      2,
      -1
    ],
    "io_out": [
      4,
      7,
      4,
      10,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(reverse(mul_n(input,1)),4),2),-3)"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [-25, 10]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(drop([5, -2, 5],1),-5),25)))",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      -25,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(drop(input,1),-5),25)))"
  },
  {
    "input": "input : list = [1, 0, -2, 0]\noutput : list = [1, 0, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(sort_des([1, 0, -2, 0])))))",
    "io_inp": [
      1,
      0,
      -2,
      0
    ],
    "io_out": [
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, -4, -5, 1]\noutput : list = [-40, -40, -35, -10]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sub_n([-5, -4, -5, 1],4),-1),5)))",
    "io_inp": [
      -5,
      -4,
      -5,
      1
    ],
    "io_out": [
      -40,
      -40,
      -35,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sub_n(input,4),-1),5)))"
  },
  {
    "input": "input : list = [4, 2, -4, -2, 5]\noutput : list = [40, 36, 28, 12, 4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(sub_n([4, 2, -4, -2, 5],-4),-4),-1)),4)",
    "io_inp": [
      4,
      2,
      -4,
      -2,
      5
    ],
    "io_out": [
      40,
      36,
      28,
      12,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(sub_n(input,-4),-4),-1)),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [22, -10]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(mul_n([-5, 3],-4),12),2)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      22,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(mul_n(input,-4),12),2)))"
  },
  {
    "input": "input : list = [1, 2, -5, 1, 0, -2]\noutput : list = [-2, 1, 1, 4, 10, 19]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(mul_n([1, 2, -5, 1, 0, -2],-3),-4))))",
    "io_inp": [
      1,
      2,
      -5,
      1,
      0,
      -2
    ],
    "io_out": [
      -2,
      1,
      1,
      4,
      10,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(mul_n(input,-3),-4))))"
  },
  {
    "input": "input : list = [3, -4, -1, 2, 1]\noutput : list = [3, -4]",
    "output": "generated_output : list = take([3, -4, -1, 2, 1],2)",
    "io_inp": [
      3,
      -4,
      -1,
      2,
      1
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -1, 4, 3]\noutput : list = [1, -2, 3, 2]",
    "output": "generated_output : list = add_n([2, -1, 4, 3],-1)",
    "io_inp": [
      2,
      -1,
      4,
      3
    ],
    "io_out": [
      1,
      -2,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = sort_asc([-3, -5, -3])",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -5, -4, 4, 2]\noutput : list = [-15, -12, 3, 6, 12]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([1, -5, -4, 4, 2]),3))",
    "io_inp": [
      1,
      -5,
      -4,
      4,
      2
    ],
    "io_out": [
      -15,
      -12,
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),3))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [7, 6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sub_n(sort_asc([3, 2]),1),-5)))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sub_n(sort_asc(input),1),-5)))"
  },
  {
    "input": "input : list = [0, -3, -1, -2]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(reverse(add_n(drop(mul_n([0, -3, -1, -2],-4),3),-1)))",
    "io_inp": [
      0,
      -3,
      -1,
      -2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(drop(mul_n(input,-4),3),-1)))"
  },
  {
    "input": "input : list = [-2, 3, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 3, 5],1)",
    "io_inp": [
      -2,
      3,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 3, 1, 2, 5]\noutput : list = [5, 15, 5, 10, 25]",
    "output": "generated_output : list = mul_n([1, 3, 1, 2, 5],5)",
    "io_inp": [
      1,
      3,
      1,
      2,
      5
    ],
    "io_out": [
      5,
      15,
      5,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [4, 4, 3, -4, -3, -2]\noutput : list = [5, 4, -3, -2, -1]",
    "output": "generated_output : list = reverse(add_n(take(reverse(drop([4, 4, 3, -4, -3, -2],1)),31),1))",
    "io_inp": [
      4,
      4,
      3,
      -4,
      -3,
      -2
    ],
    "io_out": [
      5,
      4,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(drop(input,1)),31),1))"
  },
  {
    "input": "input : list = [-3, -4, 5, 1]\noutput : list = [-8, -6, 2, 10]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des(mul_n([-3, -4, 5, 1],2))),27))",
    "io_inp": [
      -3,
      -4,
      5,
      1
    ],
    "io_out": [
      -8,
      -6,
      2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(mul_n(input,2))),27))"
  },
  {
    "input": "input : list = [2, 5, -4, 5, -2]\noutput : list = [12, 6, -6, -15, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_des([2, 5, -4, 5, -2]))),-3))",
    "io_inp": [
      2,
      5,
      -4,
      5,
      -2
    ],
    "io_out": [
      12,
      6,
      -6,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [1, -4, 0, 2]\noutput : list = [4, 24, 8, 0]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(sub_n([1, -4, 0, 2],4),-2),-1),33),4)",
    "io_inp": [
      1,
      -4,
      0,
      2
    ],
    "io_out": [
      4,
      24,
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(sub_n(input,4),-2),-1),33),4)"
  },
  {
    "input": "input : list = [-2, 0, -5]\noutput : list = [-2, -4, -7]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des([-2, 0, -5]))),-2)",
    "io_inp": [
      -2,
      0,
      -5
    ],
    "io_out": [
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [-3, -2, 3, 2]\noutput : list = [-7, -6, -2]",
    "output": "generated_output : list = sub_n(add_n(reverse(drop(sort_des([-3, -2, 3, 2]),1)),-1),3)",
    "io_inp": [
      -3,
      -2,
      3,
      2
    ],
    "io_out": [
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(drop(sort_des(input),1)),-1),3)"
  },
  {
    "input": "input : list = [-4, 3, 5, 1, -2]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(drop([-4, 3, 5, 1, -2],3)),-5))",
    "io_inp": [
      -4,
      3,
      5,
      1,
      -2
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(drop(input,3)),-5))"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [-15, -6, 6]",
    "output": "generated_output : list = mul_n([-5, -2, 2],3)",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      -15,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-8, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sub_n([-2, 1],2),-4))),1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(sub_n(input,2),-4))),1)"
  },
  {
    "input": "input : list = [1, -1, -5, 4, -1, 3]\noutput : list = [7, 5, 1, -3, -3, -11]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(mul_n([1, -1, -5, 4, -1, 3],2))),-1))",
    "io_inp": [
      1,
      -1,
      -5,
      4,
      -1,
      3
    ],
    "io_out": [
      7,
      5,
      1,
      -3,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(mul_n(input,2))),-1))"
  },
  {
    "input": "input : list = [2, -1, 0, -2, -3, -4]\noutput : list = [-15, -14, -13, -11, -12, -9]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(add_n([2, -1, 0, -2, -3, -4],-3),-5)),22),3)",
    "io_inp": [
      2,
      -1,
      0,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -15,
      -14,
      -13,
      -11,
      -12,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(add_n(input,-3),-5)),22),3)"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [5, -1, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n([1, -5, 1],-3)),1)",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-3)),1)"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [-1, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([-4, -2, 2])),-3)",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-5, 0, 3, 5]\noutput : list = [21, 1, -11, -19]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n([-5, 0, 3, 5],-4)),-1)))",
    "io_inp": [
      -5,
      0,
      3,
      5
    ],
    "io_out": [
      21,
      1,
      -11,
      -19
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(mul_n(input,-4)),-1)))"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [7, 3, 2]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc([1, 0, 5])))),2)",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_asc(sort_asc(input)))),2)"
  },
  {
    "input": "input : list = [3, 3, 4, 4, -3]\noutput : list = [9, 9, 8, 8, 2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sub_n([3, 3, 4, 4, -3],-5)))),1)",
    "io_inp": [
      3,
      3,
      4,
      4,
      -3
    ],
    "io_out": [
      9,
      9,
      8,
      8,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_des(sub_n(input,-5)))),1)"
  },
  {
    "input": "input : list = [-4, 4, 0, -1, 3, 0]\noutput : list = [-1, 0, 0, 3]",
    "output": "generated_output : list = take(sort_asc(drop([-4, 4, 0, -1, 3, 0],2)),18)",
    "io_inp": [
      -4,
      4,
      0,
      -1,
      3,
      0
    ],
    "io_out": [
      -1,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,2)),18)"
  },
  {
    "input": "input : list = [-5, -3, -5, 5, 1]\noutput : list = [-12, -60, 60, 36, 60]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(sub_n([-5, -3, -5, 5, 1],5)),-5),-3),4)",
    "io_inp": [
      -5,
      -3,
      -5,
      5,
      1
    ],
    "io_out": [
      -12,
      -60,
      60,
      36,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(sub_n(input,5)),-5),-3),4)"
  },
  {
    "input": "input : list = [-3, 3, -1]\noutput : list = [5, -3, -7]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(mul_n([-3, 3, -1],2)),-3),4))",
    "io_inp": [
      -3,
      3,
      -1
    ],
    "io_out": [
      5,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(mul_n(input,2)),-3),4))"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [3, 3, 8]",
    "output": "generated_output : list = add_n(sub_n([0, 0, 5],1),4)",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      3,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),4)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des([-1, -3])",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(take([-3, 3, 5],1),2),-1),-5))",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(take(input,1),2),-1),-5))"
  },
  {
    "input": "input : list = [-4, 4, -4, -5, -1, -1]\noutput : list = [4, -4, -5, -1, -1]",
    "output": "generated_output : list = drop([-4, 4, -4, -5, -1, -1],1)",
    "io_inp": [
      -4,
      4,
      -4,
      -5,
      -1,
      -1
    ],
    "io_out": [
      4,
      -4,
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -3, -4]\noutput : list = [-5, -4, -3]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n([-5, -3, -4],-5))),-5)",
    "io_inp": [
      -5,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(input,-5))),-5)"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [-4, -2, -2]",
    "output": "generated_output : list = sort_asc([-4, -2, -2])",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, 0, -4]\noutput : list = [-6, -5, -2, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n(take(sub_n([-3, 5, 0, -4],-1),7),3)),29)",
    "io_inp": [
      -3,
      5,
      0,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(take(sub_n(input,-1),7),3)),29)"
  },
  {
    "input": "input : list = [0, -3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(reverse(take(drop([0, -3, -5],1),9)))",
    "io_inp": [
      0,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(drop(input,1),9)))"
  },
  {
    "input": "input : list = [-4, 0, 3, 4]\noutput : list = [-5, -6, -9, -13]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sub_n([-4, 0, 3, 4],4)),5)))",
    "io_inp": [
      -4,
      0,
      3,
      4
    ],
    "io_out": [
      -5,
      -6,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sub_n(input,4)),5)))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-22, 13]",
    "output": "generated_output : list = sub_n(add_n(mul_n([5, -2],-5),-1),-4)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -22,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-5),-1),-4)"
  },
  {
    "input": "input : list = [4, -4, 3, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(drop([4, -4, 3, 2],2)),-1))",
    "io_inp": [
      4,
      -4,
      3,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(drop(input,2)),-1))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [4, 1]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse([2, 5]),1)),6)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(input),1)),6)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([-2, 1]),-1))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [0, 0, 3, -4, -3, 2]\noutput : list = [0, 1, 4, 4, 6, 7]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(sort_des([0, 0, 3, -4, -3, 2])),2)),2)",
    "io_inp": [
      0,
      0,
      3,
      -4,
      -3,
      2
    ],
    "io_out": [
      0,
      1,
      4,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(sort_des(input)),2)),2)"
  },
  {
    "input": "input : list = [-5, 0, -5, 4, -4, 0]\noutput : list = [25]",
    "output": "generated_output : list = reverse(drop(mul_n(sort_des(drop([-5, 0, -5, 4, -4, 0],2)),-5),3))",
    "io_inp": [
      -5,
      0,
      -5,
      4,
      -4,
      0
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = reverse(drop(mul_n(sort_des(drop(input,2)),-5),3))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [15, -12]",
    "output": "generated_output : list = sort_des(mul_n([5, -4],3))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      15,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-6, -3]",
    "output": "generated_output : list = mul_n(mul_n(add_n([5, 4],-3),-3),1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,-3),-3),1)"
  },
  {
    "input": "input : list = [-4, 5, -1, -5]\noutput : list = [-4, -3, 0, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_asc([-4, 5, -1, -5]),2))),-3)",
    "io_inp": [
      -4,
      5,
      -1,
      -5
    ],
    "io_out": [
      -4,
      -3,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_asc(input),2))),-3)"
  },
  {
    "input": "input : list = [-2, -1, -2, -4, -2]\noutput : list = [-5, -3, -3, -3, -2]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des([-2, -1, -2, -4, -2]),6)),1)",
    "io_inp": [
      -2,
      -1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(input),6)),1)"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [4, -6, 8]",
    "output": "generated_output : list = mul_n([-2, 3, -4],-2)",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      4,
      -6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-8, -6]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(reverse([2, 4]),-4),4),-2))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(reverse(input),-4),4),-2))"
  },
  {
    "input": "input : list = [-2, 5, -2, -2]\noutput : list = [-6, 1, -6]",
    "output": "generated_output : list = take(sub_n(take(add_n(add_n([-2, 5, -2, -2],-2),3),3),5),30)",
    "io_inp": [
      -2,
      5,
      -2,
      -2
    ],
    "io_out": [
      -6,
      1,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(add_n(input,-2),3),3),5),30)"
  },
  {
    "input": "input : list = [3, 1, 1, 2, 2]\noutput : list = [-2, -3, -3, -4, -4]",
    "output": "generated_output : list = sort_des(sub_n([3, 1, 1, 2, 2],5))",
    "io_inp": [
      3,
      1,
      1,
      2,
      2
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [8, -10, 0]",
    "output": "generated_output : list = reverse(mul_n([0, -5, 4],2))",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      8,
      -10,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [1, -1, -1, -2, 2]\noutput : list = [30, -15, -15, -30]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(drop([1, -1, -1, -2, 2],1),-3))),-5)",
    "io_inp": [
      1,
      -1,
      -1,
      -2,
      2
    ],
    "io_out": [
      30,
      -15,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(drop(input,1),-3))),-5)"
  },
  {
    "input": "input : list = [-2, 4, 2, 4, 0, 5]\noutput : list = [2, 0, -2, -4, -4, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(mul_n(sort_des([-2, 4, 2, 4, 0, 5]),-1))),16)",
    "io_inp": [
      -2,
      4,
      2,
      4,
      0,
      5
    ],
    "io_out": [
      2,
      0,
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(mul_n(sort_des(input),-1))),16)"
  },
  {
    "input": "input : list = [-4, 1, -1, -5, 0]\noutput : list = [-5, 0, -2, -6, -1]",
    "output": "generated_output : list = take(reverse(reverse(take(add_n([-4, 1, -1, -5, 0],-1),13))),40)",
    "io_inp": [
      -4,
      1,
      -1,
      -5,
      0
    ],
    "io_out": [
      -5,
      0,
      -2,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(add_n(input,-1),13))),40)"
  },
  {
    "input": "input : list = [-1, -1, -3]\noutput : list = [-12, -12, -14]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-1, -1, -3],2),-5),4)",
    "io_inp": [
      -1,
      -1,
      -3
    ],
    "io_out": [
      -12,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,2),-5),4)"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [1, -9, -9]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sub_n([5, -5, -5],-2)),3),2),-5)",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      1,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sub_n(input,-2)),3),2),-5)"
  },
  {
    "input": "input : list = [1, -2, -2, 0]\noutput : list = [6, 15, 15, 9]",
    "output": "generated_output : list = mul_n(sub_n([1, -2, -2, 0],3),-3)",
    "io_inp": [
      1,
      -2,
      -2,
      0
    ],
    "io_out": [
      6,
      15,
      15,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-3)"
  },
  {
    "input": "input : list = [2, 5, -2, 1, -2, -5]\noutput : list = [5]",
    "output": "generated_output : list = take(reverse(drop(take(sort_asc([2, 5, -2, 1, -2, -5]),16),5)),1)",
    "io_inp": [
      2,
      5,
      -2,
      1,
      -2,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(reverse(drop(take(sort_asc(input),16),5)),1)"
  },
  {
    "input": "input : list = [3, -5, 4, -4, 4]\noutput : list = [28, 28, 24, -4, -8]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_asc(add_n([3, -5, 4, -4, 4],-1))),4),4)",
    "io_inp": [
      3,
      -5,
      4,
      -4,
      4
    ],
    "io_out": [
      28,
      28,
      24,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_asc(add_n(input,-1))),4),4)"
  },
  {
    "input": "input : list = [-3, 3, -1]\noutput : list = [2, 4, 8]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(sort_des([-3, 3, -1]),-5))),41)",
    "io_inp": [
      -3,
      3,
      -1
    ],
    "io_out": [
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(sort_des(input),-5))),41)"
  },
  {
    "input": "input : list = [-1, 0, 4, -4, -3, -4]\noutput : list = [2, 2, 3, 5, 6, 10]",
    "output": "generated_output : list = add_n(take(add_n(take(sort_asc([-1, 0, 4, -4, -3, -4]),18),1),6),5)",
    "io_inp": [
      -1,
      0,
      4,
      -4,
      -3,
      -4
    ],
    "io_out": [
      2,
      2,
      3,
      5,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sort_asc(input),18),1),6),5)"
  },
  {
    "input": "input : list = [1, 3, -5, 3, -3, -2]\noutput : list = [-4, -4, 6, 8, 12]",
    "output": "generated_output : list = reverse(add_n(sort_des(mul_n(drop([1, 3, -5, 3, -3, -2],1),-2)),2))",
    "io_inp": [
      1,
      3,
      -5,
      3,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -4,
      6,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(mul_n(drop(input,1),-2)),2))"
  },
  {
    "input": "input : list = [-1, 2, 1, 4, -5]\noutput : list = [-5, 4, 1, 2, -1]",
    "output": "generated_output : list = reverse([-1, 2, 1, 4, -5])",
    "io_inp": [
      -1,
      2,
      1,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [-4, 6, 5]",
    "output": "generated_output : list = add_n(reverse([4, 5, -5]),1)",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      -4,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [-5, -4]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(drop([1, -4, -3],1))),-1),31)",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(drop(input,1))),-1),31)"
  },
  {
    "input": "input : list = [-4, 3, -2, -3, -1]\noutput : list = [3, -1, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 3, -2, -3, -1])",
    "io_inp": [
      -4,
      3,
      -2,
      -3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, -3, 5, -4]\noutput : list = [-8, -8, -7, -7, 1]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(sub_n([-4, -3, -3, 5, -4],4)))),14)",
    "io_inp": [
      -4,
      -3,
      -3,
      5,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -7,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(sub_n(input,4)))),14)"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [75, 30, 45]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(add_n([1, 0, 3],2),14)),-5),-3)",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      75,
      30,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(add_n(input,2),14)),-5),-3)"
  },
  {
    "input": "input : list = [-3, 4, 4, 1, -3, 5]\noutput : list = [-4, -4, 0, 3, 3, 4]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(add_n([-3, 4, 4, 1, -3, 5],1))),-2),-4)",
    "io_inp": [
      -3,
      4,
      4,
      1,
      -3,
      5
    ],
    "io_out": [
      -4,
      -4,
      0,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(add_n(input,1))),-2),-4)"
  },
  {
    "input": "input : list = [-1, 3, -4, 3, 5, 4]\noutput : list = [15, 35, 0]",
    "output": "generated_output : list = take(mul_n(take(take(sub_n([-1, 3, -4, 3, 5, 4],-4),6),3),5),7)",
    "io_inp": [
      -1,
      3,
      -4,
      3,
      5,
      4
    ],
    "io_out": [
      15,
      35,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(sub_n(input,-4),6),3),5),7)"
  },
  {
    "input": "input : list = [0, 1, -1, 2, 4]\noutput : list = [0, 1, -1, 2, 4]",
    "output": "generated_output : list = take(reverse(reverse([0, 1, -1, 2, 4])),15)",
    "io_inp": [
      0,
      1,
      -1,
      2,
      4
    ],
    "io_out": [
      0,
      1,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),15)"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [2, 5, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(reverse([-3, 0, 4]),-1)),-4))",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      2,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sub_n(reverse(input),-1)),-4))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [3]",
    "output": "generated_output : list = drop(add_n(sort_des(reverse(add_n([-2, -3],2))),4),1)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_des(reverse(add_n(input,2))),4),1)"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [-4, 12, 16]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_des(mul_n([-3, -4, 1],-4)))))",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      -4,
      12,
      16
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_des(mul_n(input,-4)))))"
  },
  {
    "input": "input : list = [-3, 0, 0, 5, -3, 2]\noutput : list = [7, 2, 10, 5, 5, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(add_n([-3, 0, 0, 5, -3, 2],5),23)),-4),-4)",
    "io_inp": [
      -3,
      0,
      0,
      5,
      -3,
      2
    ],
    "io_out": [
      7,
      2,
      10,
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(add_n(input,5),23)),-4),-4)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [0, 4, 6]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(add_n([0, -4, 2],4)))))",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(add_n(input,4)))))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(reverse([-1, -2]))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [3, 4, -4, -5, -2]\noutput : list = [-1, -2, -7, -9, -10]",
    "output": "generated_output : list = reverse(sort_asc(add_n([3, 4, -4, -5, -2],-5)))",
    "io_inp": [
      3,
      4,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-5)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse([-1, -3]))))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [0, -1, -4, 5, -2, -1]\noutput : list = [-2, 0, 1, 1, 2, 7]",
    "output": "generated_output : list = reverse(sort_des(add_n([0, -1, -4, 5, -2, -1],2)))",
    "io_inp": [
      0,
      -1,
      -4,
      5,
      -2,
      -1
    ],
    "io_out": [
      -2,
      0,
      1,
      1,
      2,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,2)))"
  },
  {
    "input": "input : list = [4, 1, -3, -2, -1]\noutput : list = [-7, -11, -15, 1, 13]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(reverse([4, 1, -3, -2, -1]),4),23),-1),2)",
    "io_inp": [
      4,
      1,
      -3,
      -2,
      -1
    ],
    "io_out": [
      -7,
      -11,
      -15,
      1,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(reverse(input),4),23),-1),2)"
  },
  {
    "input": "input : list = [5, -4, 2, -1, 4]\noutput : list = [-8, -2, 4, 8, 10]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(reverse([5, -4, 2, -1, 4]))),2))",
    "io_inp": [
      5,
      -4,
      2,
      -1,
      4
    ],
    "io_out": [
      -8,
      -2,
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(reverse(input))),2))"
  },
  {
    "input": "input : list = [-3, 4, -4, 0, -1]\noutput : list = [4, 0, -1, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc([-3, 4, -4, 0, -1])))))",
    "io_inp": [
      -3,
      4,
      -4,
      0,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-1, 0, 6]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(add_n([2, -5, -4],-1),-5),10)))",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -1,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(add_n(input,-1),-5),10)))"
  },
  {
    "input": "input : list = [-5, 5, 1, -5, -5, 2]\noutput : list = [-10, 0, -4, -10, -10, -3]",
    "output": "generated_output : list = add_n([-5, 5, 1, -5, -5, 2],-5)",
    "io_inp": [
      -5,
      5,
      1,
      -5,
      -5,
      2
    ],
    "io_out": [
      -10,
      0,
      -4,
      -10,
      -10,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [75, 45]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(mul_n([5, 3],3),5))),14)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      75,
      45
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(mul_n(input,3),5))),14)"
  },
  {
    "input": "input : list = [2, 1, 5, 1]\noutput : list = [37, 21, 85, 21]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(mul_n([2, 1, 5, 1],4))),4),5)",
    "io_inp": [
      2,
      1,
      5,
      1
    ],
    "io_out": [
      37,
      21,
      85,
      21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(mul_n(input,4))),4),5)"
  },
  {
    "input": "input : list = [0, -3, -4, -2, 3, 1]\noutput : list = [-6, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take([0, -3, -4, -2, 3, 1],2),1),-1),-3))",
    "io_inp": [
      0,
      -3,
      -4,
      -2,
      3,
      1
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take(input,2),1),-1),-3))"
  },
  {
    "input": "input : list = [-4, 1, -4, 3]\noutput : list = [5, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(take([-4, 1, -4, 3],2),-1))),5)",
    "io_inp": [
      -4,
      1,
      -4,
      3
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(take(input,2),-1))),5)"
  },
  {
    "input": "input : list = [3, -5, 4, 2]\noutput : list = [-24, 8, -28, -20]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n([3, -5, 4, 2],-3))),-4)",
    "io_inp": [
      3,
      -5,
      4,
      2
    ],
    "io_out": [
      -24,
      8,
      -28,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(input,-3))),-4)"
  },
  {
    "input": "input : list = [4, 0, 5, -2]\noutput : list = [7, 6, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(sub_n([4, 0, 5, -2],-2),4),3)),-3)",
    "io_inp": [
      4,
      0,
      5,
      -2
    ],
    "io_out": [
      7,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(sub_n(input,-2),4),3)),-3)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take([5, -5, 5],1),-5)",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [1, -3, -5, 5]\noutput : list = [4, 0, -4, -6]",
    "output": "generated_output : list = sort_des(take(add_n(take(sort_des([1, -3, -5, 5]),17),-1),23))",
    "io_inp": [
      1,
      -3,
      -5,
      5
    ],
    "io_out": [
      4,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(sort_des(input),17),-1),23))"
  },
  {
    "input": "input : list = [1, 2, -3]\noutput : list = [-1, 3, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n([1, 2, -3],1),3)),29))",
    "io_inp": [
      1,
      2,
      -3
    ],
    "io_out": [
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(sub_n(input,1),3)),29))"
  },
  {
    "input": "input : list = [-3, -3, 5, 4]\noutput : list = [-3, -3, 5, 4]",
    "output": "generated_output : list = reverse(take(reverse([-3, -3, 5, 4]),11))",
    "io_inp": [
      -3,
      -3,
      5,
      4
    ],
    "io_out": [
      -3,
      -3,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),11))"
  },
  {
    "input": "input : list = [-3, 5, -4, 0]\noutput : list = [18, 114, 6, 54]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(mul_n(add_n([-3, 5, -4, 0],4),-2),-3),-3),2)",
    "io_inp": [
      -3,
      5,
      -4,
      0
    ],
    "io_out": [
      18,
      114,
      6,
      54
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(mul_n(add_n(input,4),-2),-3),-3),2)"
  },
  {
    "input": "input : list = [-1, -5, -3, -1]\noutput : list = [10, 30, 20, 10]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([-1, -5, -3, -1],-2),3),-5)",
    "io_inp": [
      -1,
      -5,
      -3,
      -1
    ],
    "io_out": [
      10,
      30,
      20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,-2),3),-5)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-8, -2]",
    "output": "generated_output : list = sub_n(sort_asc([-5, 1]),3)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [1, 4, -2, 0, 3, 1]\noutput : list = [-8, -6, -5, -5, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc([1, 4, -2, 0, 3, 1]),5),1))",
    "io_inp": [
      1,
      4,
      -2,
      0,
      3,
      1
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(input),5),1))"
  },
  {
    "input": "input : list = [-4, 5, -5, 0]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(sub_n(take(take(take([-4, 5, -5, 0],1),18),20),-2))",
    "io_inp": [
      -4,
      5,
      -5,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(take(take(input,1),18),20),-2))"
  },
  {
    "input": "input : list = [-3, 5, 1, 3, -3, -4]\noutput : list = [-3, -3, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(drop(reverse([-3, 5, 1, 3, -3, -4]),1)))",
    "io_inp": [
      -3,
      5,
      1,
      3,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -3,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(reverse(input),1)))"
  },
  {
    "input": "input : list = [3, -3, 1, -5, -5, 4]\noutput : list = [6, 0, 4, -2, -2, 7]",
    "output": "generated_output : list = sub_n([3, -3, 1, -5, -5, 4],-3)",
    "io_inp": [
      3,
      -3,
      1,
      -5,
      -5,
      4
    ],
    "io_out": [
      6,
      0,
      4,
      -2,
      -2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n([-5, -3],3),-3))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(input,3),-3))"
  },
  {
    "input": "input : list = [4, 4, 0, -2, 0, -3]\noutput : list = [-3, -3, -7, -9, -7, -10]",
    "output": "generated_output : list = add_n(add_n(sub_n([4, 4, 0, -2, 0, -3],5),-3),1)",
    "io_inp": [
      4,
      4,
      0,
      -2,
      0,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -7,
      -9,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,5),-3),1)"
  },
  {
    "input": "input : list = [1, 2, -4, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = add_n(take([1, 2, -4, 0],2),-1)",
    "io_inp": [
      1,
      2,
      -4,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [1, -2, -4, -5]\noutput : list = [3, -6, -12, -15]",
    "output": "generated_output : list = mul_n([1, -2, -4, -5],3)",
    "io_inp": [
      1,
      -2,
      -4,
      -5
    ],
    "io_out": [
      3,
      -6,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, 0, -1, -2, -2, 3]\noutput : list = [5, -4, -7, -10, -10]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(drop([-3, 0, -1, -2, -2, 3],1)),3)),4)",
    "io_inp": [
      -3,
      0,
      -1,
      -2,
      -2,
      3
    ],
    "io_out": [
      5,
      -4,
      -7,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(drop(input,1)),3)),4)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [7]",
    "output": "generated_output : list = sort_des(reverse(drop(sort_asc(sub_n([2, -2],-5)),1)))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(sort_asc(sub_n(input,-5)),1)))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [2, 4]",
    "output": "generated_output : list = sub_n([-3, -1],-5)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -4, 2, 2, 1, 5]\noutput : list = [-2, -4, -10]",
    "output": "generated_output : list = mul_n(take(reverse(sort_des(drop([3, -4, 2, 2, 1, 5],3))),29),-2)",
    "io_inp": [
      3,
      -4,
      2,
      2,
      1,
      5
    ],
    "io_out": [
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_des(drop(input,3))),29),-2)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-2, -14]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(reverse([1, -5])),2),4))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -2,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(reverse(input)),2),4))"
  },
  {
    "input": "input : list = [2, 1, -1, -3, 2, -2]\noutput : list = [-10, -9, -8, -6, -5, -5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(sub_n([2, 1, -1, -3, 2, -2],4),-1),-1)),-1)",
    "io_inp": [
      2,
      1,
      -1,
      -3,
      2,
      -2
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(sub_n(input,4),-1),-1)),-1)"
  },
  {
    "input": "input : list = [-1, 3, -3, -3, -4]\noutput : list = [4, 5, 5, 11, 7]",
    "output": "generated_output : list = sub_n(reverse(add_n([-1, 3, -3, -3, -4],5)),-3)",
    "io_inp": [
      -1,
      3,
      -3,
      -3,
      -4
    ],
    "io_out": [
      4,
      5,
      5,
      11,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,5)),-3)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-5, -6, 1]",
    "output": "generated_output : list = reverse(sub_n(add_n([2, -5, -4],-3),-2))",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-3),-2))"
  },
  {
    "input": "input : list = [-3, 0, 0, 3, -4, -4]\noutput : list = [-4, -4, -3, 0, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(add_n([-3, 0, 0, 3, -4, -4],1),4))),-3)",
    "io_inp": [
      -3,
      0,
      0,
      3,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(add_n(input,1),4))),-3)"
  },
  {
    "input": "input : list = [2, 4, 5, -2, 3]\noutput : list = [-2, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([2, 4, 5, -2, 3])",
    "io_inp": [
      2,
      4,
      5,
      -2,
      3
    ],
    "io_out": [
      -2,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [13, 6]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n([4, -3],4)),-5))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      13,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(input,4)),-5))"
  },
  {
    "input": "input : list = [1, 5, -3, 0, 0]\noutput : list = [2, -6, -3, -3]",
    "output": "generated_output : list = mul_n(add_n(drop(add_n([1, 5, -3, 0, 0],-2),1),-1),1)",
    "io_inp": [
      1,
      5,
      -3,
      0,
      0
    ],
    "io_out": [
      2,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(drop(add_n(input,-2),1),-1),1)"
  },
  {
    "input": "input : list = [3, -5, 3, 4, -1, -4]\noutput : list = [-6, 10, -6, -8, 2, 8]",
    "output": "generated_output : list = mul_n([3, -5, 3, 4, -1, -4],-2)",
    "io_inp": [
      3,
      -5,
      3,
      4,
      -1,
      -4
    ],
    "io_out": [
      -6,
      10,
      -6,
      -8,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 2, 3, 3, 2]\noutput : list = [35, 25, 30, 30, 25]",
    "output": "generated_output : list = mul_n(add_n([4, 2, 3, 3, 2],3),5)",
    "io_inp": [
      4,
      2,
      3,
      3,
      2
    ],
    "io_out": [
      35,
      25,
      30,
      30,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),5)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [5, 5, 0]",
    "output": "generated_output : list = sort_des([0, 5, 5])",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, 4, 1, 4, 1]\noutput : list = [0, 0, 3, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(drop([-4, 5, 4, 1, 4, 1],1)))),-1)",
    "io_inp": [
      -4,
      5,
      4,
      1,
      4,
      1
    ],
    "io_out": [
      0,
      0,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(drop(input,1)))),-1)"
  },
  {
    "input": "input : list = [3, 0, 5, 5, 2]\noutput : list = [0, 2, 3, 5, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(sort_asc([3, 0, 5, 5, 2])))),15)",
    "io_inp": [
      3,
      0,
      5,
      5,
      2
    ],
    "io_out": [
      0,
      2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(sort_asc(input)))),15)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [-9, -6, 0]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sort_asc([-1, -4, 5]),19),22),-5))",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      -9,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sort_asc(input),19),22),-5))"
  },
  {
    "input": "input : list = [-5, 5, 4, 2, 4]\noutput : list = [22, 17, 17, 7, -28]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(mul_n([-5, 5, 4, 2, 4],5)),-3)),12)",
    "io_inp": [
      -5,
      5,
      4,
      2,
      4
    ],
    "io_out": [
      22,
      17,
      17,
      7,
      -28
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(mul_n(input,5)),-3)),12)"
  },
  {
    "input": "input : list = [-2, -5, 3, 1, 4]\noutput : list = [-6, -3, 0, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sub_n([-2, -5, 3, 1, 4],-4),5))))",
    "io_inp": [
      -2,
      -5,
      3,
      1,
      4
    ],
    "io_out": [
      -6,
      -3,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sub_n(sub_n(input,-4),5))))"
  },
  {
    "input": "input : list = [3, -5, 5]\noutput : list = [15, 5, -35]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sub_n([3, -5, 5],2),5),5)))",
    "io_inp": [
      3,
      -5,
      5
    ],
    "io_out": [
      15,
      5,
      -35
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sub_n(input,2),5),5)))"
  },
  {
    "input": "input : list = [4, 1, 5, 1, -3]\noutput : list = [-7, -3, -3, 0, 1]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(sort_asc([4, 1, 5, 1, -3])),4)),35)",
    "io_inp": [
      4,
      1,
      5,
      1,
      -3
    ],
    "io_out": [
      -7,
      -3,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(sort_asc(input)),4)),35)"
  },
  {
    "input": "input : list = [-3, -2, -1, 0, 1, 4]\noutput : list = [-16, -4, 0, 4, 8, 12]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(sort_des([-3, -2, -1, 0, 1, 4]),-4)),37))",
    "io_inp": [
      -3,
      -2,
      -1,
      0,
      1,
      4
    ],
    "io_out": [
      -16,
      -4,
      0,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(sort_des(input),-4)),37))"
  },
  {
    "input": "input : list = [-5, 2, -3, 3, -1, -5]\noutput : list = [-13, -7, -1, 8, 11]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_des(mul_n([-5, 2, -3, 3, -1, -5],3)),5)),2)",
    "io_inp": [
      -5,
      2,
      -3,
      3,
      -1,
      -5
    ],
    "io_out": [
      -13,
      -7,
      -1,
      8,
      11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_des(mul_n(input,3)),5)),2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = mul_n([5, 2],-1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, 0, 5, -4, -4]\noutput : list = [5, 5, 0, -4, -4]",
    "output": "generated_output : list = sort_des([5, 0, 5, -4, -4])",
    "io_inp": [
      5,
      0,
      5,
      -4,
      -4
    ],
    "io_out": [
      5,
      5,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse([-4, 2])",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 3, -3, 4, 5, 5]\noutput : list = [-4, -3, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(take([-4, 3, -3, 4, 5, 5],4)),4)),-4)",
    "io_inp": [
      -4,
      3,
      -3,
      4,
      5,
      5
    ],
    "io_out": [
      -4,
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(take(input,4)),4)),-4)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [-12, -15, -21]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(sub_n([-2, 0, 1],3),1)),2),3)",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      -12,
      -15,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(sub_n(input,3),1)),2),3)"
  },
  {
    "input": "input : list = [-5, -5, -4, -5]\noutput : list = [-9, -10, -10, -10]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(add_n([-5, -5, -4, -5],-4),17),-1)))",
    "io_inp": [
      -5,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -9,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(add_n(input,-4),17),-1)))"
  },
  {
    "input": "input : list = [2, 5, 0, -4, 3]\noutput : list = [-4, 0, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([2, 5, 0, -4, 3])))",
    "io_inp": [
      2,
      5,
      0,
      -4,
      3
    ],
    "io_out": [
      -4,
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, 4, 4, 2, 4]\noutput : list = [13]",
    "output": "generated_output : list = reverse(reverse(add_n(drop(mul_n([-1, 4, 4, 2, 4],4),4),-3)))",
    "io_inp": [
      -1,
      4,
      4,
      2,
      4
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(drop(mul_n(input,4),4),-3)))"
  },
  {
    "input": "input : list = [-4, 2, 3, -2]\noutput : list = [-4, -2, 2, 3]",
    "output": "generated_output : list = reverse(take(sort_des([-4, 2, 3, -2]),16))",
    "io_inp": [
      -4,
      2,
      3,
      -2
    ],
    "io_out": [
      -4,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(input),16))"
  },
  {
    "input": "input : list = [4, -3, 3, 0, 0, -5]\noutput : list = [-4, -7, -9]",
    "output": "generated_output : list = sort_des(take(drop(sub_n(sort_des([4, -3, 3, 0, 0, -5]),4),3),12))",
    "io_inp": [
      4,
      -3,
      3,
      0,
      0,
      -5
    ],
    "io_out": [
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(sub_n(sort_des(input),4),3),12))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-6, 24]",
    "output": "generated_output : list = add_n(mul_n(take(sort_asc(sort_des([5, -1])),20),5),-1)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -6,
      24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_asc(sort_des(input)),20),5),-1)"
  },
  {
    "input": "input : list = [3, -2, 2, -4, 5, 3]\noutput : list = [-1, 1, 5, 6, 6, 8]",
    "output": "generated_output : list = reverse(add_n(sort_des([3, -2, 2, -4, 5, 3]),3))",
    "io_inp": [
      3,
      -2,
      2,
      -4,
      5,
      3
    ],
    "io_out": [
      -1,
      1,
      5,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [2, -2, -5, -1]\noutput : list = [12, 0, -4, -16]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(add_n([2, -2, -5, -1],-2),-4))),-4)",
    "io_inp": [
      2,
      -2,
      -5,
      -1
    ],
    "io_out": [
      12,
      0,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(add_n(input,-2),-4))),-4)"
  },
  {
    "input": "input : list = [-4, -1, -2, 4, -5, -1]\noutput : list = [2, -3, -4, -6]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(take([-4, -1, -2, 4, -5, -1],4)),31),2))",
    "io_inp": [
      -4,
      -1,
      -2,
      4,
      -5,
      -1
    ],
    "io_out": [
      2,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(take(input,4)),31),2))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(add_n([-1, -2],5),-5),-3),-1))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(add_n(input,5),-5),-3),-1))"
  },
  {
    "input": "input : list = [-2, -2, 4, 4, -1]\noutput : list = [0, 0, -5, -6, -6]",
    "output": "generated_output : list = sort_des(add_n([-2, -2, 4, 4, -1],-4))",
    "io_inp": [
      -2,
      -2,
      4,
      4,
      -1
    ],
    "io_out": [
      0,
      0,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [4, -4, 4, 5, -5]\noutput : list = [-15, -10, 30, 30, 35]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_des([4, -4, 4, 5, -5])),2),5))",
    "io_inp": [
      4,
      -4,
      4,
      5,
      -5
    ],
    "io_out": [
      -15,
      -10,
      30,
      30,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_des(input)),2),5))"
  },
  {
    "input": "input : list = [2, 0, -5, 1, 1, -4]\noutput : list = [14]",
    "output": "generated_output : list = sort_des(sub_n(reverse(mul_n(take([2, 0, -5, 1, 1, -4],1),5)),-4))",
    "io_inp": [
      2,
      0,
      -5,
      1,
      1,
      -4
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(mul_n(take(input,1),5)),-4))"
  },
  {
    "input": "input : list = [-2, 2, 0, 4]\noutput : list = [1, 5, 3, 7]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(add_n([-2, 2, 0, 4],3)))))",
    "io_inp": [
      -2,
      2,
      0,
      4
    ],
    "io_out": [
      1,
      5,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [-1, -1, 4]\noutput : list = [-23, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(mul_n([-1, -1, 4],-5)))),3)",
    "io_inp": [
      -1,
      -1,
      4
    ],
    "io_out": [
      -23,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(mul_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [-3, -4, 5, 4, 3]\noutput : list = [-3, 0, 3, 21, 24]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(mul_n([-3, -4, 5, 4, 3],-1)),-4)),3)",
    "io_inp": [
      -3,
      -4,
      5,
      4,
      3
    ],
    "io_out": [
      -3,
      0,
      3,
      21,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(mul_n(input,-1)),-4)),3)"
  },
  {
    "input": "input : list = [-5, -2, 5, 4, 5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = take([-5, -2, 5, 4, 5, -2],2)",
    "io_inp": [
      -5,
      -2,
      5,
      4,
      5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, 5, 3, -5, 0, -5]\noutput : list = [-5, -5, 0, 0, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(sort_asc([0, 5, 3, -5, 0, -5])))))",
    "io_inp": [
      0,
      5,
      3,
      -5,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      0,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -4, -4, 3, 3]\noutput : list = [7, 7, 0, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-5, -4, -4, 3, 3])),-4)",
    "io_inp": [
      -5,
      -4,
      -4,
      3,
      3
    ],
    "io_out": [
      7,
      7,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),-4)"
  },
  {
    "input": "input : list = [-5, -3, 3, -4]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(take([-5, -3, 3, -4],2)),13)))",
    "io_inp": [
      -5,
      -3,
      3,
      -4
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(take(input,2)),13)))"
  },
  {
    "input": "input : list = [-4, -1, 1, -1, -4]\noutput : list = [-9, -6, -4, -6, -9]",
    "output": "generated_output : list = sub_n([-4, -1, 1, -1, -4],5)",
    "io_inp": [
      -4,
      -1,
      1,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -6,
      -4,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, 4, -4, 0, -5, -2]\noutput : list = [0, 0, 20, 60, 100, 180]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n([-5, 4, -4, 0, -5, -2],5)),5),4))",
    "io_inp": [
      -5,
      4,
      -4,
      0,
      -5,
      -2
    ],
    "io_out": [
      0,
      0,
      20,
      60,
      100,
      180
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_des(add_n(input,5)),5),4))"
  },
  {
    "input": "input : list = [1, -2, -5, 1, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(take([1, -2, -5, 1, 0],2))",
    "io_inp": [
      1,
      -2,
      -5,
      1,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [2, -3, 0, 5, 2, 5]\noutput : list = [3, 8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(take([2, -3, 0, 5, 2, 5],2),1),-1),-4))",
    "io_inp": [
      2,
      -3,
      0,
      5,
      2,
      5
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(take(input,2),1),-1),-4))"
  },
  {
    "input": "input : list = [4, 1, -3, -5, 3]\noutput : list = [-8, 0]",
    "output": "generated_output : list = add_n(drop([4, 1, -3, -5, 3],3),-3)",
    "io_inp": [
      4,
      1,
      -3,
      -5,
      3
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-3)"
  },
  {
    "input": "input : list = [5, -1, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([5, -1, 4, -4],2)",
    "io_inp": [
      5,
      -1,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -2, 5, -2, -3, 2]\noutput : list = [3, -1, 6, -1, -2, 3]",
    "output": "generated_output : list = add_n([2, -2, 5, -2, -3, 2],1)",
    "io_inp": [
      2,
      -2,
      5,
      -2,
      -3,
      2
    ],
    "io_out": [
      3,
      -1,
      6,
      -1,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-6, 1]",
    "output": "generated_output : list = add_n([-5, 2],-1)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, -1, -2, 2]\noutput : list = [1, 5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(drop([2, -1, -2, 2],2)),3),3),-3)",
    "io_inp": [
      2,
      -1,
      -2,
      2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(drop(input,2)),3),3),-3)"
  },
  {
    "input": "input : list = [2, -5, 3, -5, 4, -5]\noutput : list = [3, 2, 1, -6, -6, -6]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_asc(sort_asc([2, -5, 3, -5, 4, -5])),-1)))",
    "io_inp": [
      2,
      -5,
      3,
      -5,
      4,
      -5
    ],
    "io_out": [
      3,
      2,
      1,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_asc(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [4, 4, -3, -5]\noutput : list = [-5, -5, -12, -14]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n([4, 4, -3, -5],1)),3),-3),2)",
    "io_inp": [
      4,
      4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sub_n(input,1)),3),-3),2)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(sub_n([2, 1],-2)),-4)))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(sub_n(input,-2)),-4)))"
  },
  {
    "input": "input : list = [3, -4, 0, 0]\noutput : list = [-8, -4, -4, -1]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(add_n([3, -4, 0, 0],-4),1)),15),22)",
    "io_inp": [
      3,
      -4,
      0,
      0
    ],
    "io_out": [
      -8,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(add_n(input,-4),1)),15),22)"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [5, 3, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_asc([5, 3, 0])))))",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, 4, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = drop([-1, 4, -2],1)",
    "io_inp": [
      -1,
      4,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -1, 2]\noutput : list = [-3]",
    "output": "generated_output : list = take(add_n(drop(sort_des(drop([2, -1, 2],1)),1),-2),18)",
    "io_inp": [
      2,
      -1,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(drop(sort_des(drop(input,1)),1),-2),18)"
  },
  {
    "input": "input : list = [0, 3, 4, 1, -1]\noutput : list = [20, 25, 30, 40, 45]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(add_n([0, 3, 4, 1, -1],5)))),5)",
    "io_inp": [
      0,
      3,
      4,
      1,
      -1
    ],
    "io_out": [
      20,
      25,
      30,
      40,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(add_n(input,5)))),5)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [-4, 6]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(drop([5, -5, 5],1),1),24)))",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(drop(input,1),1),24)))"
  },
  {
    "input": "input : list = [-3, 1, -4, -3, 0]\noutput : list = [7, 4, 4, -5, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(sub_n(mul_n([-3, 1, -4, -3, 0],-3),5)),40))",
    "io_inp": [
      -3,
      1,
      -4,
      -3,
      0
    ],
    "io_out": [
      7,
      4,
      4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sub_n(mul_n(input,-3),5)),40))"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [-6, -1, -4]",
    "output": "generated_output : list = sub_n([-1, 4, 1],5)",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      -6,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [3, -3, -2, 1, 0, -4]\noutput : list = [6, 4, 3, 1, 0, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(add_n([3, -3, -2, 1, 0, -4],3),4))),-4)",
    "io_inp": [
      3,
      -3,
      -2,
      1,
      0,
      -4
    ],
    "io_out": [
      6,
      4,
      3,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(add_n(input,3),4))),-4)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [-7, -11, -13]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_asc(mul_n([3, 4, 1],2)),-1),-5))",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      -7,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_asc(mul_n(input,2)),-1),-5))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-7, 0]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(reverse([-4, 3]),3),11)))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(reverse(input),3),11)))"
  },
  {
    "input": "input : list = [-2, 1, -5, 5]\noutput : list = [5, -5, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, -5, 5])",
    "io_inp": [
      -2,
      1,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n([-1, 0],3)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [20, 20]",
    "output": "generated_output : list = mul_n([5, 5],4)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, -1, -3, 4, -1]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(take([1, -1, -3, 4, -1],3)))),6)",
    "io_inp": [
      1,
      -1,
      -3,
      4,
      -1
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(take(input,3)))),6)"
  },
  {
    "input": "input : list = [-2, 0, 2, 4, -3, -1]\noutput : list = [0, -10, 25, 15, 5, -5]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(reverse([-2, 0, 2, 4, -3, -1]),-1),-5),-1),29)",
    "io_inp": [
      -2,
      0,
      2,
      4,
      -3,
      -1
    ],
    "io_out": [
      0,
      -10,
      25,
      15,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(reverse(input),-1),-5),-1),29)"
  },
  {
    "input": "input : list = [-5, 2, 0, -5, 4, 1]\noutput : list = [-7, -4, -13, -8, -6, -13]",
    "output": "generated_output : list = reverse(take(take(add_n(sub_n([-5, 2, 0, -5, 4, 1],4),-4),16),18))",
    "io_inp": [
      -5,
      2,
      0,
      -5,
      4,
      1
    ],
    "io_out": [
      -7,
      -4,
      -13,
      -8,
      -6,
      -13
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(sub_n(input,4),-4),16),18))"
  },
  {
    "input": "input : list = [-5, -4, -5, 0]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(take([-5, -4, -5, 0],2))",
    "io_inp": [
      -5,
      -4,
      -5,
      0
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [5, -4, -2, -1]\noutput : list = [-18, -14, -12, 0]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sort_des([5, -4, -2, -1]),-5),2)),10)",
    "io_inp": [
      5,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -18,
      -14,
      -12,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sort_des(input),-5),2)),10)"
  },
  {
    "input": "input : list = [-5, 0, -2]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 0, -2]))",
    "io_inp": [
      -5,
      0,
      -2
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, -4, 5, -1, -1, -5]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(take([1, -4, 5, -1, -1, -5],1),1))),3)",
    "io_inp": [
      1,
      -4,
      5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(take(input,1),1))),3)"
  },
  {
    "input": "input : list = [3, 5, -5, 2, -2]\noutput : list = [-7]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(take([3, 5, -5, 2, -2],1),5),5),-3),27)",
    "io_inp": [
      3,
      5,
      -5,
      2,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(take(input,1),5),5),-3),27)"
  },
  {
    "input": "input : list = [-2, 0, -2, -1]\noutput : list = [0, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sort_des([-2, 0, -2, -1])))))",
    "io_inp": [
      -2,
      0,
      -2,
      -1
    ],
    "io_out": [
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, 5, -3, 3, 5]\noutput : list = [17, 33, 1, 25, 33]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(sub_n([1, 5, -3, 3, 5],-3)),4)),-1)",
    "io_inp": [
      1,
      5,
      -3,
      3,
      5
    ],
    "io_out": [
      17,
      33,
      1,
      25,
      33
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(sub_n(input,-3)),4)),-1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-12, -12]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(reverse([4, 4])),-3)))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [3, 2, 0, -2, -4]\noutput : list = [3, -13]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(drop([3, 2, 0, -2, -4],3),3),-4),-2),-5)",
    "io_inp": [
      3,
      2,
      0,
      -2,
      -4
    ],
    "io_out": [
      3,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(drop(input,3),3),-4),-2),-5)"
  },
  {
    "input": "input : list = [-1, 4, 1, 1, 4]\noutput : list = [4, 1, 1, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, 1, 1, 4])",
    "io_inp": [
      -1,
      4,
      1,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2, 0, 4, 5]\noutput : list = [4, 6, 14, 18, 22]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des([-4, -2, 0, 4, 5]),-2),5)),-2)",
    "io_inp": [
      -4,
      -2,
      0,
      4,
      5
    ],
    "io_out": [
      4,
      6,
      14,
      18,
      22
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des(input),-2),5)),-2)"
  },
  {
    "input": "input : list = [1, 3, 2, 1, 5]\noutput : list = [1, 1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_des([1, 3, 2, 1, 5])))))",
    "io_inp": [
      1,
      3,
      2,
      1,
      5
    ],
    "io_out": [
      1,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, -4, 1, -1, 2]\noutput : list = [-16, -4, 4, 8, 8]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(mul_n([2, -4, 1, -1, 2],4),19)),13))",
    "io_inp": [
      2,
      -4,
      1,
      -1,
      2
    ],
    "io_out": [
      -16,
      -4,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(mul_n(input,4),19)),13))"
  },
  {
    "input": "input : list = [5, -2, 2, 1, -3, 3]\noutput : list = [5, 3, 2, 1, -2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_des([5, -2, 2, 1, -3, 3]))),12))",
    "io_inp": [
      5,
      -2,
      2,
      1,
      -3,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_des(input))),12))"
  },
  {
    "input": "input : list = [3, -5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = drop([3, -5, -3],1)",
    "io_inp": [
      3,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 5, -5, 2, 5]\noutput : list = [6, -1, -3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sub_n(mul_n([4, 5, -5, 2, 5],-1),2),3)))",
    "io_inp": [
      4,
      5,
      -5,
      2,
      5
    ],
    "io_out": [
      6,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sub_n(mul_n(input,-1),2),3)))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-6, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(sort_asc([-4, -3]))),2))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [0, -3, -3, -5]\noutput : list = [0, -3, -3, -5]",
    "output": "generated_output : list = sort_des([0, -3, -3, -5])",
    "io_inp": [
      0,
      -3,
      -3,
      -5
    ],
    "io_out": [
      0,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, 0, 4, 4, -3]\noutput : list = [4, 4, 3, 0, -3, -3]",
    "output": "generated_output : list = take(sort_des(take(reverse(sort_asc([-3, 3, 0, 4, 4, -3])),15)),24)",
    "io_inp": [
      -3,
      3,
      0,
      4,
      4,
      -3
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(sort_asc(input)),15)),24)"
  },
  {
    "input": "input : list = [-5, 1, -4, 1, 4]\noutput : list = [1, 2, 7, 7, 10]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(reverse([-5, 1, -4, 1, 4]),3),-3)),22)",
    "io_inp": [
      -5,
      1,
      -4,
      1,
      4
    ],
    "io_out": [
      1,
      2,
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(reverse(input),3),-3)),22)"
  },
  {
    "input": "input : list = [5, -1, -4, -4]\noutput : list = [30, 12, 3, 3]",
    "output": "generated_output : list = sort_des(mul_n(add_n([5, -1, -4, -4],5),3))",
    "io_inp": [
      5,
      -1,
      -4,
      -4
    ],
    "io_out": [
      30,
      12,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,5),3))"
  },
  {
    "input": "input : list = [-3, 4, -5, -4, 1]\noutput : list = [6, -1, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(add_n(take([-3, 4, -5, -4, 1],3),2)),34))",
    "io_inp": [
      -3,
      4,
      -5,
      -4,
      1
    ],
    "io_out": [
      6,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(add_n(take(input,3),2)),34))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, -8]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(add_n([0, -4],2),-4),2),18),2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(add_n(input,2),-4),2),18),2)"
  },
  {
    "input": "input : list = [2, -2, -1]\noutput : list = [-9, -14]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n(drop([2, -2, -1],1),5)),33),4)",
    "io_inp": [
      2,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(drop(input,1),5)),33),4)"
  },
  {
    "input": "input : list = [4, -3, -2, -5, 4]\noutput : list = [-4, -2, -1, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc([4, -3, -2, -5, 4]),-1)",
    "io_inp": [
      4,
      -3,
      -2,
      -5,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [2, 1, 1, -2, -3]\noutput : list = [4, 3, 3, 0, -1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_asc([2, 1, 1, -2, -3]),-3),-4),-1))",
    "io_inp": [
      2,
      1,
      1,
      -2,
      -3
    ],
    "io_out": [
      4,
      3,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_asc(input),-3),-4),-1))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(reverse([-2, 2]),-5)),2))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(reverse(input),-5)),2))"
  },
  {
    "input": "input : list = [0, 0, 0, 5, -1]\noutput : list = [5, 0, 0, 0, -1]",
    "output": "generated_output : list = sort_des([0, 0, 0, 5, -1])",
    "io_inp": [
      0,
      0,
      0,
      5,
      -1
    ],
    "io_out": [
      5,
      0,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, 0, 3, 1]\noutput : list = [-3, 0, 1, 3, 4]",
    "output": "generated_output : list = sort_asc([4, -3, 0, 3, 1])",
    "io_inp": [
      4,
      -3,
      0,
      3,
      1
    ],
    "io_out": [
      -3,
      0,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, -1, 0, -2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(sort_asc(take(take(drop([4, 3, -1, 0, -2],3),15),12)),35)",
    "io_inp": [
      4,
      3,
      -1,
      0,
      -2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(take(drop(input,3),15),12)),35)"
  },
  {
    "input": "input : list = [5, -4, 3, 0, -2, -3]\noutput : list = [5, 6, 7, 9, 12, 14]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(sub_n([5, -4, 3, 0, -2, -3],-4),5))))",
    "io_inp": [
      5,
      -4,
      3,
      0,
      -2,
      -3
    ],
    "io_out": [
      5,
      6,
      7,
      9,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(sub_n(input,-4),5))))"
  },
  {
    "input": "input : list = [-5, 2, -2, 0]\noutput : list = [-3, -5, -1, -8]",
    "output": "generated_output : list = reverse(add_n([-5, 2, -2, 0],-3))",
    "io_inp": [
      -5,
      2,
      -2,
      0
    ],
    "io_out": [
      -3,
      -5,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [51, 33]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(sort_asc([4, 2])),-3),-5),-3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      51,
      33
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(sort_asc(input)),-3),-5),-3)"
  },
  {
    "input": "input : list = [3, 4, -3, 5, 4, 1]\noutput : list = [5, 4, 4, 3, 1, -3]",
    "output": "generated_output : list = sort_des([3, 4, -3, 5, 4, 1])",
    "io_inp": [
      3,
      4,
      -3,
      5,
      4,
      1
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2, -3, 3, 5, -1]\noutput : list = [-3, -3, -1, 2, 3, 5]",
    "output": "generated_output : list = take(reverse(take(reverse(sort_asc([-3, 2, -3, 3, 5, -1])),10)),44)",
    "io_inp": [
      -3,
      2,
      -3,
      3,
      5,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(sort_asc(input)),10)),44)"
  },
  {
    "input": "input : list = [-4, 2, 5, -5]\noutput : list = [4, -17, -26]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(drop([-4, 2, 5, -5],1)),2),-3),-5)",
    "io_inp": [
      -4,
      2,
      5,
      -5
    ],
    "io_out": [
      4,
      -17,
      -26
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(drop(input,1)),2),-3),-5)"
  },
  {
    "input": "input : list = [-1, 4, -4, 3]\noutput : list = [4, -2, -10, -12]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(mul_n([-1, 4, -4, 3],-2),3))),-1)",
    "io_inp": [
      -1,
      4,
      -4,
      3
    ],
    "io_out": [
      4,
      -2,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(mul_n(input,-2),3))),-1)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [-10, -7, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([-2, 5, -5])),-5)",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      -10,
      -7,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [2, 4, 4, 5]\noutput : list = [5, 7, 7, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([2, 4, 4, 5],3)))",
    "io_inp": [
      2,
      4,
      4,
      5
    ],
    "io_out": [
      5,
      7,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,3)))"
  },
  {
    "input": "input : list = [-1, 4, 3, 4, 3, 1]\noutput : list = [4, 4, 3, 3, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take(sub_n([-1, 4, 3, 4, 3, 1],-1),22))),1)",
    "io_inp": [
      -1,
      4,
      3,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      4,
      3,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(sub_n(input,-1),22))),1)"
  },
  {
    "input": "input : list = [5, 3, -1, -2]\noutput : list = [18, 12, 0, -3]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(add_n([5, 3, -1, -2],-4)),5)),3)",
    "io_inp": [
      5,
      3,
      -1,
      -2
    ],
    "io_out": [
      18,
      12,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(add_n(input,-4)),5)),3)"
  },
  {
    "input": "input : list = [1, -3, 2, 3]\noutput : list = [-14, -9, 16, -4]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(mul_n([1, -3, 2, 3],-5),-3)),1),-3)",
    "io_inp": [
      1,
      -3,
      2,
      3
    ],
    "io_out": [
      -14,
      -9,
      16,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(mul_n(input,-5),-3)),1),-3)"
  },
  {
    "input": "input : list = [0, 5, 5, -3, 3]\noutput : list = [0, 5]",
    "output": "generated_output : list = take(take([0, 5, 5, -3, 3],2),18)",
    "io_inp": [
      0,
      5,
      5,
      -3,
      3
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(take(input,2),18)"
  },
  {
    "input": "input : list = [-2, -2, 5, -2, -3, -1]\noutput : list = [-24, -24, 4, -24, -28, -20]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(reverse([-2, -2, 5, -2, -3, -1]),-1),5),4))",
    "io_inp": [
      -2,
      -2,
      5,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -24,
      -24,
      4,
      -24,
      -28,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(reverse(input),-1),5),4))"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(take([2, -4, 2],1),-2)",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [3, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sub_n([2, 3, 2],-5),2),-2)))",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sub_n(input,-5),2),-2)))"
  },
  {
    "input": "input : list = [1, -3, -4]\noutput : list = [-3, -7, -8]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(sort_des([1, -3, -4]),-3))),1)",
    "io_inp": [
      1,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(sort_des(input),-3))),1)"
  },
  {
    "input": "input : list = [-3, -5, 3, -2, -2, -2]\noutput : list = [-45, -35, -30, -30, -30, -5]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sub_n(sort_des([-3, -5, 3, -2, -2, -2]),5),5)),-5)",
    "io_inp": [
      -3,
      -5,
      3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -45,
      -35,
      -30,
      -30,
      -30,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sub_n(sort_des(input),5),5)),-5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-12, -32]",
    "output": "generated_output : list = reverse(take(mul_n(mul_n(add_n([-3, 2],-5),4),1),4))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -12,
      -32
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(mul_n(add_n(input,-5),4),1),4))"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [-16, 8, 8]",
    "output": "generated_output : list = mul_n([4, -2, -2],-4)",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      -16,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -3, 5, 3]\noutput : list = [3, 1, -3, -5]",
    "output": "generated_output : list = sub_n(take(take(sort_des(sort_des([-1, -3, 5, 3])),8),33),2)",
    "io_inp": [
      -1,
      -3,
      5,
      3
    ],
    "io_out": [
      3,
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(sort_des(input)),8),33),2)"
  },
  {
    "input": "input : list = [-1, 4, -4, 5]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(take([-1, 4, -4, 5],1)),-2),-1),-2)",
    "io_inp": [
      -1,
      4,
      -4,
      5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(take(input,1)),-2),-1),-2)"
  },
  {
    "input": "input : list = [-3, -4, 0, 3, 2]\noutput : list = [-2, 0, 6, 10, 12]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_asc(mul_n([-3, -4, 0, 3, 2],1)),2),2),-2)",
    "io_inp": [
      -3,
      -4,
      0,
      3,
      2
    ],
    "io_out": [
      -2,
      0,
      6,
      10,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_asc(mul_n(input,1)),2),2),-2)"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [-3, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, 0, 2]))",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 3, 1, 3]\noutput : list = [9, 3, 9, -3]",
    "output": "generated_output : list = reverse(mul_n([-1, 3, 1, 3],3))",
    "io_inp": [
      -1,
      3,
      1,
      3
    ],
    "io_out": [
      9,
      3,
      9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [0, -3, -4, -5, 1]\noutput : list = [32, 28, 8]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n(drop([0, -3, -4, -5, 1],2),-2)),-5),-4)",
    "io_inp": [
      0,
      -3,
      -4,
      -5,
      1
    ],
    "io_out": [
      32,
      28,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(drop(input,2),-2)),-5),-4)"
  },
  {
    "input": "input : list = [-5, -2, 5]\noutput : list = [14, -21, -36]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(add_n([-5, -2, 5],-3),5),-1),5))",
    "io_inp": [
      -5,
      -2,
      5
    ],
    "io_out": [
      14,
      -21,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(add_n(input,-3),5),-1),5))"
  },
  {
    "input": "input : list = [-2, 2, -5]\noutput : list = [0, 20, 35]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sub_n([-2, 2, -5],3),1)),-5))",
    "io_inp": [
      -2,
      2,
      -5
    ],
    "io_out": [
      0,
      20,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(sub_n(input,3),1)),-5))"
  },
  {
    "input": "input : list = [1, 3, -1, -4, -4]\noutput : list = [24, 24, 9, -1, -11]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sort_asc([1, 3, -1, -4, -4])),-5),-4))",
    "io_inp": [
      1,
      3,
      -1,
      -4,
      -4
    ],
    "io_out": [
      24,
      24,
      9,
      -1,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sort_asc(input)),-5),-4))"
  },
  {
    "input": "input : list = [-1, 0, -4, -4, 1]\noutput : list = [-6, -2, 2, 14, 14]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(mul_n([-1, 0, -4, -4, 1],-4),-1),1)))",
    "io_inp": [
      -1,
      0,
      -4,
      -4,
      1
    ],
    "io_out": [
      -6,
      -2,
      2,
      14,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(mul_n(input,-4),-1),1)))"
  },
  {
    "input": "input : list = [5, 3, -2]\noutput : list = [0, -2, -7]",
    "output": "generated_output : list = sort_des(sub_n([5, 3, -2],5))",
    "io_inp": [
      5,
      3,
      -2
    ],
    "io_out": [
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [5, 0, 0, -4, -2]\noutput : list = [-2, 0, 2, 2, 7]",
    "output": "generated_output : list = mul_n(sub_n(add_n(add_n(sort_asc([5, 0, 0, -4, -2]),2),-5),-5),1)",
    "io_inp": [
      5,
      0,
      0,
      -4,
      -2
    ],
    "io_out": [
      -2,
      0,
      2,
      2,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(add_n(sort_asc(input),2),-5),-5),1)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [31, -14, -44]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(sort_asc([2, -3, -1]),-3)),-5),-1)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      31,
      -14,
      -44
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(sort_asc(input),-3)),-5),-1)"
  },
  {
    "input": "input : list = [-1, -1, 1, -4]\noutput : list = [4, 4, 6, 1]",
    "output": "generated_output : list = sub_n([-1, -1, 1, -4],-5)",
    "io_inp": [
      -1,
      -1,
      1,
      -4
    ],
    "io_out": [
      4,
      4,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [0, -4, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(sort_des([2, 1, 0])))),-4)",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [-5, -4, 2, -1]\noutput : list = [-5, -4, 2, -1]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(reverse([-5, -4, 2, -1]),-4),1),-3))",
    "io_inp": [
      -5,
      -4,
      2,
      -1
    ],
    "io_out": [
      -5,
      -4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(reverse(input),-4),1),-3))"
  },
  {
    "input": "input : list = [5, -3, 2, -2, -4]\noutput : list = [-2, -5, -9, -10, -11]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(reverse([5, -3, 2, -2, -4]))),2),5)",
    "io_inp": [
      5,
      -3,
      2,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -5,
      -9,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(reverse(input))),2),5)"
  },
  {
    "input": "input : list = [-2, 0, 3, -4, -5, -2]\noutput : list = [25, 20, 10, 10, 0, -15]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-2, 0, 3, -4, -5, -2])),-5)",
    "io_inp": [
      -2,
      0,
      3,
      -4,
      -5,
      -2
    ],
    "io_out": [
      25,
      20,
      10,
      10,
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [2, -5, 0, -3]\noutput : list = [-28, -18, -3, 7]",
    "output": "generated_output : list = reverse(take(add_n(mul_n(sort_des([2, -5, 0, -3]),5),-3),19))",
    "io_inp": [
      2,
      -5,
      0,
      -3
    ],
    "io_out": [
      -28,
      -18,
      -3,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(sort_des(input),5),-3),19))"
  },
  {
    "input": "input : list = [-1, -3, -3, 4, 4]\noutput : list = [4, 4, -1, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_des([-1, -3, -3, 4, 4])))))",
    "io_inp": [
      -1,
      -3,
      -3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [-5, -5, -2]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(sort_des([0, 0, 1]),3)),-5),33)",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(sort_des(input),3)),-5),33)"
  },
  {
    "input": "input : list = [-2, 2, -5, 1, -3]\noutput : list = [-8, -10, -16, -18, -22]",
    "output": "generated_output : list = sort_des(reverse(add_n(mul_n(add_n([-2, 2, -5, 1, -3],-4),2),-4)))",
    "io_inp": [
      -2,
      2,
      -5,
      1,
      -3
    ],
    "io_out": [
      -8,
      -10,
      -16,
      -18,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(mul_n(add_n(input,-4),2),-4)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [1, 7]",
    "output": "generated_output : list = sub_n([-4, 2],-5)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sort_des([1, -2]))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, 3, 1, 0]\noutput : list = [-3, -9, -3, 0]",
    "output": "generated_output : list = mul_n([1, 3, 1, 0],-3)",
    "io_inp": [
      1,
      3,
      1,
      0
    ],
    "io_out": [
      -3,
      -9,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 4, 2, -4]\noutput : list = [15, 5, -25, -25]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(sub_n([-4, 4, 2, -4],4),3),5)))",
    "io_inp": [
      -4,
      4,
      2,
      -4
    ],
    "io_out": [
      15,
      5,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(sub_n(input,4),3),5)))"
  },
  {
    "input": "input : list = [4, 0, -3, -4, -1]\noutput : list = [6, 7, 9, 10, 14]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(sort_asc([4, 0, -3, -4, -1]),-5),17),-5))",
    "io_inp": [
      4,
      0,
      -3,
      -4,
      -1
    ],
    "io_out": [
      6,
      7,
      9,
      10,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(sort_asc(input),-5),17),-5))"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-2, 5, 0]",
    "output": "generated_output : list = sub_n([-3, 4, -1],-1)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -2,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, 1, -4, 3, -5]\noutput : list = [13, 13, 11, 6, 5]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(sub_n([3, 1, -4, 3, -5],-3))),-5),2)",
    "io_inp": [
      3,
      1,
      -4,
      3,
      -5
    ],
    "io_out": [
      13,
      13,
      11,
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(sub_n(input,-3))),-5),2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-62, -62]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(mul_n([3, 3],5),4),2),-3),-1)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -62,
      -62
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(mul_n(input,5),4),2),-3),-1)"
  },
  {
    "input": "input : list = [5, 4, 2, 4, -5, -5]\noutput : list = [-8, -8, 6, 10, 10, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sub_n(sort_asc([5, 4, 2, 4, -5, -5]),-1),2)))",
    "io_inp": [
      5,
      4,
      2,
      4,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      6,
      10,
      10,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sub_n(sort_asc(input),-1),2)))"
  },
  {
    "input": "input : list = [-5, -3, -1, 5, 2]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = take([-5, -3, -1, 5, 2],3)",
    "io_inp": [
      -5,
      -3,
      -1,
      5,
      2
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-1, -4, -1, -2]\noutput : list = [-1, -1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(reverse(sort_asc([-1, -4, -1, -2])))))",
    "io_inp": [
      -1,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -2, 3, -3, -5, 1]\noutput : list = [2, 0, -3, -3, -4, -6]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(sort_asc([-2, -2, 3, -3, -5, 1])),-4),27),-5)",
    "io_inp": [
      -2,
      -2,
      3,
      -3,
      -5,
      1
    ],
    "io_out": [
      2,
      0,
      -3,
      -3,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(sort_asc(input)),-4),27),-5)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-6, -5]",
    "output": "generated_output : list = sub_n([-5, -4],1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, -5, -3, -1, 4, -4]\noutput : list = [11, -9, -17, -21, -25, -25]",
    "output": "generated_output : list = take(sort_des(add_n(mul_n(sort_des([-5, -5, -3, -1, 4, -4]),4),-5)),44)",
    "io_inp": [
      -5,
      -5,
      -3,
      -1,
      4,
      -4
    ],
    "io_out": [
      11,
      -9,
      -17,
      -21,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(mul_n(sort_des(input),4),-5)),44)"
  },
  {
    "input": "input : list = [0, -1, 1, -4]\noutput : list = [3, 2, 4, -1]",
    "output": "generated_output : list = add_n(take(sub_n([0, -1, 1, -4],2),9),5)",
    "io_inp": [
      0,
      -1,
      1,
      -4
    ],
    "io_out": [
      3,
      2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,2),9),5)"
  },
  {
    "input": "input : list = [0, 5, 1]\noutput : list = [-25, -20, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(add_n([0, 5, 1],-5)))),5)",
    "io_inp": [
      0,
      5,
      1
    ],
    "io_out": [
      -25,
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(add_n(input,-5)))),5)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [-12, -12, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(mul_n([-1, 0, 0],3),3))),-4)",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      -12,
      -12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(mul_n(input,3),3))),-4)"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(take([3, -3, -5],1),-1),3)),-3)",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(take(input,1),-1),3)),-3)"
  },
  {
    "input": "input : list = [-5, 1, 3, 5]\noutput : list = [1, 7]",
    "output": "generated_output : list = add_n(add_n(take([-5, 1, 3, 5],2),4),2)",
    "io_inp": [
      -5,
      1,
      3,
      5
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,2),4),2)"
  },
  {
    "input": "input : list = [3, 3, -5, 4, -4, -4]\noutput : list = [4, 4, -3, -3, -4]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(sort_des([3, 3, -5, 4, -4, -4]),5),1),-1))",
    "io_inp": [
      3,
      3,
      -5,
      4,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(sort_des(input),5),1),-1))"
  },
  {
    "input": "input : list = [2, -1, 4, -3, 2, 5]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(take([2, -1, 4, -3, 2, 5],1)),14)),-1)",
    "io_inp": [
      2,
      -1,
      4,
      -3,
      2,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(take(input,1)),14)),-1)"
  },
  {
    "input": "input : list = [-4, 3, -3, -3, -1, 3]\noutput : list = [-3, -1, 3]",
    "output": "generated_output : list = drop([-4, 3, -3, -3, -1, 3],3)",
    "io_inp": [
      -4,
      3,
      -3,
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 0, 5, 1, 2]\noutput : list = [8, 0, -20, -4, -8]",
    "output": "generated_output : list = mul_n([-2, 0, 5, 1, 2],-4)",
    "io_inp": [
      -2,
      0,
      5,
      1,
      2
    ],
    "io_out": [
      8,
      0,
      -20,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [2, 5, -3]",
    "output": "generated_output : list = sub_n([0, 3, -5],-2)",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      2,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, 3, -1, -3]\noutput : list = [3, 3, -1, -3]",
    "output": "generated_output : list = sort_des([3, 3, -1, -3])",
    "io_inp": [
      3,
      3,
      -1,
      -3
    ],
    "io_out": [
      3,
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, 0, -3]\noutput : list = [-5, -3, -2, 0]",
    "output": "generated_output : list = sort_asc([-5, -2, 0, -3])",
    "io_inp": [
      -5,
      -2,
      0,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = reverse([-3, -3])",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, 1, 5, -2]\noutput : list = [13, 4, -5, -14, -17]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(sort_asc([-5, 4, 1, 5, -2]),-3),2),-4),23)",
    "io_inp": [
      -5,
      4,
      1,
      5,
      -2
    ],
    "io_out": [
      13,
      4,
      -5,
      -14,
      -17
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(sort_asc(input),-3),2),-4),23)"
  },
  {
    "input": "input : list = [-4, 5, -2, 1, 5]\noutput : list = [-4, -2, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, -2, 1, 5])",
    "io_inp": [
      -4,
      5,
      -2,
      1,
      5
    ],
    "io_out": [
      -4,
      -2,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(sort_des([-3, 0]),-3)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [2, -2, -2]\noutput : list = [-8, 0, 0]",
    "output": "generated_output : list = take(mul_n(add_n(add_n([2, -2, -2],5),-3),-2),22)",
    "io_inp": [
      2,
      -2,
      -2
    ],
    "io_out": [
      -8,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(input,5),-3),-2),22)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [-5, -2, 3]",
    "output": "generated_output : list = sort_asc([3, -2, -5])",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse([1, -1])",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 1, 2, -5, -4, 0]\noutput : list = [-9, -9, -4, 16, 21, 26]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(sort_asc([-5, 1, 2, -5, -4, 0]),4),5),-2),-2)",
    "io_inp": [
      -5,
      1,
      2,
      -5,
      -4,
      0
    ],
    "io_out": [
      -9,
      -9,
      -4,
      16,
      21,
      26
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(sort_asc(input),4),5),-2),-2)"
  },
  {
    "input": "input : list = [5, -2, 0, -1]\noutput : list = [6]",
    "output": "generated_output : list = reverse(reverse(sub_n(take([5, -2, 0, -1],1),-1)))",
    "io_inp": [
      5,
      -2,
      0,
      -1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(input,1),-1)))"
  },
  {
    "input": "input : list = [2, 0, 3, 1, 3]\noutput : list = [0, 1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse([2, 0, 3, 1, 3]))",
    "io_inp": [
      2,
      0,
      3,
      1,
      3
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-4, 5, -5, 4, 1]\noutput : list = [15, 12, -3, -12, -15]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(sort_asc([-4, 5, -5, 4, 1])),15)),-3)",
    "io_inp": [
      -4,
      5,
      -5,
      4,
      1
    ],
    "io_out": [
      15,
      12,
      -3,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(sort_asc(input)),15)),-3)"
  },
  {
    "input": "input : list = [0, 4, 0, 0, 0, 4]\noutput : list = [4, 0, 0, 0]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_asc(drop([0, 4, 0, 0, 0, 4],2)))))",
    "io_inp": [
      0,
      4,
      0,
      0,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [-4, 4, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = drop([-4, 4, 1, 1],2)",
    "io_inp": [
      -4,
      4,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [3]",
    "output": "generated_output : list = take(add_n(take(take(add_n([3, -5],-3),2),1),3),38)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(add_n(input,-3),2),1),3),38)"
  },
  {
    "input": "input : list = [2, 1, 5, 2]\noutput : list = [-5, -6, -6, -9]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(add_n([2, 1, 5, 2],4),-1)),39))",
    "io_inp": [
      2,
      1,
      5,
      2
    ],
    "io_out": [
      -5,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(add_n(input,4),-1)),39))"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [10, 8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(mul_n(drop([2, 4, 3],1),2),3)),5)",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(mul_n(drop(input,1),2),3)),5)"
  },
  {
    "input": "input : list = [-3, 3, 2, -2, -5, 4]\noutput : list = [9]",
    "output": "generated_output : list = sort_des(mul_n(take([-3, 3, 2, -2, -5, 4],1),-3))",
    "io_inp": [
      -3,
      3,
      2,
      -2,
      -5,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),-3))"
  },
  {
    "input": "input : list = [-5, 5, 2, -3, -4]\noutput : list = [-15, 15, 6, -9, -12]",
    "output": "generated_output : list = take(mul_n([-5, 5, 2, -3, -4],3),20)",
    "io_inp": [
      -5,
      5,
      2,
      -3,
      -4
    ],
    "io_out": [
      -15,
      15,
      6,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),20)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n(take(take(add_n([4, 2],-2),7),8),-3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(input,-2),7),8),-3)"
  },
  {
    "input": "input : list = [2, -1, -2, 2, -1, 5]\noutput : list = [-5, -2, -2, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([2, -1, -2, 2, -1, 5]),-1))",
    "io_inp": [
      2,
      -1,
      -2,
      2,
      -1,
      5
    ],
    "io_out": [
      -5,
      -2,
      -2,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [-1, -2, 2, 4, -4, 4]\noutput : list = [-4, -2, -1, 2, 4, 4]",
    "output": "generated_output : list = reverse(sort_des([-1, -2, 2, 4, -4, 4]))",
    "io_inp": [
      -1,
      -2,
      2,
      4,
      -4,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = add_n(sort_asc(add_n([5, 0, -1],-2)),-1)",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,-2)),-1)"
  },
  {
    "input": "input : list = [3, 3, -5, 4, -4]\noutput : list = [44, 44, -84, 60, -68]",
    "output": "generated_output : list = mul_n(reverse(reverse(add_n(mul_n([3, 3, -5, 4, -4],4),-1))),4)",
    "io_inp": [
      3,
      3,
      -5,
      4,
      -4
    ],
    "io_out": [
      44,
      44,
      -84,
      60,
      -68
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(add_n(mul_n(input,4),-1))),4)"
  },
  {
    "input": "input : list = [1, 4, -5, 1]\noutput : list = [-13, -7, -7, 5]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(sort_des([1, 4, -5, 1]),-2),-3),-4),2)",
    "io_inp": [
      1,
      4,
      -5,
      1
    ],
    "io_out": [
      -13,
      -7,
      -7,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(sort_des(input),-2),-3),-4),2)"
  },
  {
    "input": "input : list = [-4, 2, -5, -4, 1]\noutput : list = [-8]",
    "output": "generated_output : list = take(mul_n(sub_n(take(take([-4, 2, -5, -4, 1],1),13),-2),4),49)",
    "io_inp": [
      -4,
      2,
      -5,
      -4,
      1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(take(input,1),13),-2),4),49)"
  },
  {
    "input": "input : list = [3, 2, -3, -5, -1, -5]\noutput : list = [-2, -1, 4, 6, 2, 6]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(mul_n([3, 2, -3, -5, -1, -5],-1),3),1),32),-1)",
    "io_inp": [
      3,
      2,
      -3,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -1,
      4,
      6,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(mul_n(input,-1),3),1),32),-1)"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [19, 7, 7]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(mul_n([1, 5, 1],3))),4))",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      19,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(mul_n(input,3))),4))"
  },
  {
    "input": "input : list = [4, 1, 0, -3, -2]\noutput : list = [-40, -35, -25, -20, -5]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(sub_n([4, 1, 0, -3, -2],5)),8),14),5)",
    "io_inp": [
      4,
      1,
      0,
      -3,
      -2
    ],
    "io_out": [
      -40,
      -35,
      -25,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(sub_n(input,5)),8),14),5)"
  },
  {
    "input": "input : list = [3, -2, 4, -1]\noutput : list = [4, 3, -1, -2]",
    "output": "generated_output : list = sort_des([3, -2, 4, -1])",
    "io_inp": [
      3,
      -2,
      4,
      -1
    ],
    "io_out": [
      4,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sub_n([0, -5],1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, -4, -4, 4]\noutput : list = [12, 12, 8, 4]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(sort_asc([0, -4, -4, 4]),-1),-3),5),31)",
    "io_inp": [
      0,
      -4,
      -4,
      4
    ],
    "io_out": [
      12,
      12,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(sort_asc(input),-1),-3),5),31)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc([-4, -1])",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [12, 24]",
    "output": "generated_output : list = sub_n(take(mul_n([-2, -5],-4),9),-4)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      12,
      24
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,-4),9),-4)"
  },
  {
    "input": "input : list = [2, -4, -5, -2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(take([2, -4, -5, -2],2))",
    "io_inp": [
      2,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-1, -10]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(mul_n([5, -4],-1),-3)),-2))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -1,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(mul_n(input,-1),-3)),-2))"
  },
  {
    "input": "input : list = [-4, -4, -1]\noutput : list = [-3, -6, -6]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(sort_des([-4, -4, -1]),5),2)))",
    "io_inp": [
      -4,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(sort_des(input),5),2)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_des(reverse(drop(sort_des([1, -1]),1))),3)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(drop(sort_des(input),1))),3)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sort_asc([-4, 4]),3),-2),3))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sort_asc(input),3),-2),3))"
  },
  {
    "input": "input : list = [0, 1, -3, 4, -5]\noutput : list = [-5, -4, -8, -1, -10]",
    "output": "generated_output : list = add_n([0, 1, -3, 4, -5],-5)",
    "io_inp": [
      0,
      1,
      -3,
      4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -8,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [15, 12, 6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(add_n([-4, 2, 5],4)),-4),-2))",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      15,
      12,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(add_n(input,4)),-4),-2))"
  },
  {
    "input": "input : list = [2, -5, 5, 0]\noutput : list = [-23, 27, 2]",
    "output": "generated_output : list = take(drop(add_n(take(mul_n([2, -5, 5, 0],5),14),2),1),10)",
    "io_inp": [
      2,
      -5,
      5,
      0
    ],
    "io_out": [
      -23,
      27,
      2
    ],
    "output_masked": "generated_output : list = take(drop(add_n(take(mul_n(input,5),14),2),1),10)"
  },
  {
    "input": "input : list = [1, -2, -5, -3, 1, -3]\noutput : list = [-11, -5, -5, -2, 7, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse(mul_n([1, -2, -5, -3, 1, -3],3)),-4)))",
    "io_inp": [
      1,
      -2,
      -5,
      -3,
      1,
      -3
    ],
    "io_out": [
      -11,
      -5,
      -5,
      -2,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(mul_n(input,3)),-4)))"
  },
  {
    "input": "input : list = [2, -2, -4, -3]\noutput : list = [3]",
    "output": "generated_output : list = add_n(take(sort_des(sub_n(take([2, -2, -4, -3],1),1)),29),2)",
    "io_inp": [
      2,
      -2,
      -4,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sub_n(take(input,1),1)),29),2)"
  },
  {
    "input": "input : list = [-1, 4, -4, 1]\noutput : list = [15, 9, 5, -1]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(sort_des([-1, 4, -4, 1])),-4),-2),-1)",
    "io_inp": [
      -1,
      4,
      -4,
      1
    ],
    "io_out": [
      15,
      9,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(sort_des(input)),-4),-2),-1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse([0, 5])",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-30, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-3, 0],-5),1),-2)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-5),1),-2)"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [0, -1]",
    "output": "generated_output : list = reverse(drop([-2, -1, 0],1))",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(reverse(take(take(reverse([-5, -3, 0]),10),1)))",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(reverse(input),10),1)))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [2, -4]",
    "output": "generated_output : list = sub_n(mul_n([1, 3],-3),-5)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),-5)"
  },
  {
    "input": "input : list = [-5, 1, -5, 2]\noutput : list = [4, -2]",
    "output": "generated_output : list = sub_n(sort_des(take(take(take([-5, 1, -5, 2],2),5),3)),-3)",
    "io_inp": [
      -5,
      1,
      -5,
      2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(take(input,2),5),3)),-3)"
  },
  {
    "input": "input : list = [-2, -2, -4, -1, 4]\noutput : list = [-2, -4, -1, 4]",
    "output": "generated_output : list = drop([-2, -2, -4, -1, 4],1)",
    "io_inp": [
      -2,
      -2,
      -4,
      -1,
      4
    ],
    "io_out": [
      -2,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 4, -5, 0]\noutput : list = [-4, -3, 0, 1, 5]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sub_n([-1, -4, 4, -5, 0],-1))),24))",
    "io_inp": [
      -1,
      -4,
      4,
      -5,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sub_n(input,-1))),24))"
  },
  {
    "input": "input : list = [-2, -4, -1, -1, -3]\noutput : list = [-12, -4, -16, -16, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(mul_n([-2, -4, -1, -1, -3],1),-5))),-4)",
    "io_inp": [
      -2,
      -4,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -12,
      -4,
      -16,
      -16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(mul_n(input,1),-5))),-4)"
  },
  {
    "input": "input : list = [-5, -3, 4, 1, 3, -1]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -3, 4, 1, 3, -1],1)",
    "io_inp": [
      -5,
      -3,
      4,
      1,
      3,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 4, -5, 4, -4]\noutput : list = [0, 1, 7, 9, 9]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc([2, 4, -5, 4, -4]),16)),5)",
    "io_inp": [
      2,
      4,
      -5,
      4,
      -4
    ],
    "io_out": [
      0,
      1,
      7,
      9,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(input),16)),5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-6, -1]",
    "output": "generated_output : list = sub_n([-3, 2],3)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, 3, -4]\noutput : list = [-9, -2]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sort_des(drop([-2, 3, -4],1)),-1),-5),-1)",
    "io_inp": [
      -2,
      3,
      -4
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sort_des(drop(input,1)),-1),-5),-1)"
  },
  {
    "input": "input : list = [2, 2, -3, 5]\noutput : list = [12, 12, 7, 15]",
    "output": "generated_output : list = add_n(sub_n([2, 2, -3, 5],-5),5)",
    "io_inp": [
      2,
      2,
      -3,
      5
    ],
    "io_out": [
      12,
      12,
      7,
      15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),5)"
  },
  {
    "input": "input : list = [4, 5, -2, 5, -5]\noutput : list = [123, 48, -102, -127, -127]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(sort_des([4, 5, -2, 5, -5]),-5),5)),-2)",
    "io_inp": [
      4,
      5,
      -2,
      5,
      -5
    ],
    "io_out": [
      123,
      48,
      -102,
      -127,
      -127
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(sort_des(input),-5),5)),-2)"
  },
  {
    "input": "input : list = [3, -3, -5, 3, 3, -4]\noutput : list = [-9, -8, -7, -1, -1, -1]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(sub_n([3, -3, -5, 3, 3, -4],2))),-2),7)",
    "io_inp": [
      3,
      -3,
      -5,
      3,
      3,
      -4
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(sub_n(input,2))),-2),7)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, -3]",
    "output": "generated_output : list = add_n([5, 1],-4)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 1, 3, 1, -2]\noutput : list = [21, 12, 3, 3, -3]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_asc(add_n([-5, 1, 3, 1, -2],-3)),7),-3),3)",
    "io_inp": [
      -5,
      1,
      3,
      1,
      -2
    ],
    "io_out": [
      21,
      12,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_asc(add_n(input,-3)),7),-3),3)"
  },
  {
    "input": "input : list = [-4, -4, -4, -1, 0]\noutput : list = [-1, -2, -5, -5]",
    "output": "generated_output : list = take(mul_n(reverse(add_n([-4, -4, -4, -1, 0],-1)),1),4)",
    "io_inp": [
      -4,
      -4,
      -4,
      -1,
      0
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(input,-1)),1),4)"
  },
  {
    "input": "input : list = [3, -2, -2, 5, 1]\noutput : list = [-21, -21, 9, 29, 49]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(sort_des([3, -2, -2, 5, 1]),5),2),1))",
    "io_inp": [
      3,
      -2,
      -2,
      5,
      1
    ],
    "io_out": [
      -21,
      -21,
      9,
      29,
      49
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(sort_des(input),5),2),1))"
  },
  {
    "input": "input : list = [3, -5, 1, 2, 5, 4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(sub_n(take([3, -5, 1, 2, 5, 4],1),4))",
    "io_inp": [
      3,
      -5,
      1,
      2,
      5,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(input,1),4))"
  },
  {
    "input": "input : list = [-1, 1, 0, 5, -4, -4]\noutput : list = [4, 4, 1, 0, -1, -5]",
    "output": "generated_output : list = sort_des(take(mul_n([-1, 1, 0, 5, -4, -4],-1),13))",
    "io_inp": [
      -1,
      1,
      0,
      5,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,-1),13))"
  },
  {
    "input": "input : list = [-2, -5, -3, -3, -3]\noutput : list = [-6, -7, -7, -7, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([-2, -5, -3, -3, -3])),-4)",
    "io_inp": [
      -2,
      -5,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -7,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [4, -4, -2, 5, 2, 4]\noutput : list = [96, 80, 80, 48, -16, -48]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n([4, -4, -2, 5, 2, 4],4),4)),4)",
    "io_inp": [
      4,
      -4,
      -2,
      5,
      2,
      4
    ],
    "io_out": [
      96,
      80,
      80,
      48,
      -16,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(input,4),4)),4)"
  },
  {
    "input": "input : list = [-2, 1, 2, 4, 1]\noutput : list = [6, 6, 7, 9]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(drop([-2, 1, 2, 4, 1],1)))),5)",
    "io_inp": [
      -2,
      1,
      2,
      4,
      1
    ],
    "io_out": [
      6,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(drop(input,1)))),5)"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [-7, -7, -9]",
    "output": "generated_output : list = take(sort_des(add_n([-4, -2, -2],-5)),24)",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-5)),24)"
  },
  {
    "input": "input : list = [1, 5, -4, 1, -1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take(mul_n(drop(sort_asc([1, 5, -4, 1, -1]),3),2),1))",
    "io_inp": [
      1,
      5,
      -4,
      1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(drop(sort_asc(input),3),2),1))"
  },
  {
    "input": "input : list = [2, -5, -4, -5]\noutput : list = [-8, -7, -8, -1]",
    "output": "generated_output : list = reverse(add_n([2, -5, -4, -5],-3))",
    "io_inp": [
      2,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [-1, -4, 4, -2]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(mul_n([-1, -4, 4, -2],-4),1),1)),3)",
    "io_inp": [
      -1,
      -4,
      4,
      -2
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(mul_n(input,-4),1),1)),3)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [12, -4]",
    "output": "generated_output : list = reverse(mul_n(add_n(sort_des(reverse([0, -4])),1),-4))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sort_des(reverse(input)),1),-4))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(add_n([-5, -5],3),-1))))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(add_n(input,3),-1))))"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = drop([-1, -4, 2],1)",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 5, 1, -1, 5, 1]\noutput : list = [-18, -30, -6, 6, -30, -6]",
    "output": "generated_output : list = mul_n(mul_n([3, 5, 1, -1, 5, 1],-2),3)",
    "io_inp": [
      3,
      5,
      1,
      -1,
      5,
      1
    ],
    "io_out": [
      -18,
      -30,
      -6,
      6,
      -30,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),3)"
  },
  {
    "input": "input : list = [1, 0, 3, -5, 2, 4]\noutput : list = [-5, 0, 1, 2, 3, 4]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(add_n([1, 0, 3, -5, 2, 4],1),16)),1),-1)",
    "io_inp": [
      1,
      0,
      3,
      -5,
      2,
      4
    ],
    "io_out": [
      -5,
      0,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(add_n(input,1),16)),1),-1)"
  },
  {
    "input": "input : list = [2, 5, -5, 2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = drop([2, 5, -5, 2, 2],3)",
    "io_inp": [
      2,
      5,
      -5,
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-44, 28]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_des(mul_n([1, -5],-3)),-3),-4),4)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -44,
      28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_des(mul_n(input,-3)),-3),-4),4)"
  },
  {
    "input": "input : list = [1, 2, -2, -4, 1, -3]\noutput : list = [-14]",
    "output": "generated_output : list = add_n(add_n(sort_asc(drop(add_n([1, 2, -2, -4, 1, -3],-5),5)),-3),-3)",
    "io_inp": [
      1,
      2,
      -2,
      -4,
      1,
      -3
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(drop(add_n(input,-5),5)),-3),-3)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-5, -15]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(add_n([2, 0],-4),1),1),5),20)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -5,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(add_n(input,-4),1),1),5),20)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [15, 5]",
    "output": "generated_output : list = mul_n(reverse(reverse([3, 1])),5)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(input)),5)"
  },
  {
    "input": "input : list = [-1, 1, 4, -3]\noutput : list = [-3, -1, 1, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(reverse([-1, 1, 4, -3]),3),3)))",
    "io_inp": [
      -1,
      1,
      4,
      -3
    ],
    "io_out": [
      -3,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(reverse(input),3),3)))"
  },
  {
    "input": "input : list = [-3, -4, 3, -3, -2, -4]\noutput : list = [-4, 3, -3, -2, -4]",
    "output": "generated_output : list = drop([-3, -4, 3, -3, -2, -4],1)",
    "io_inp": [
      -3,
      -4,
      3,
      -3,
      -2,
      -4
    ],
    "io_out": [
      -4,
      3,
      -3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -1, -3, 4, -2]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = take([1, -1, -3, 4, -2],3)",
    "io_inp": [
      1,
      -1,
      -3,
      4,
      -2
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [0, 0, 3, -3]\noutput : list = [1, 1, 4, -2]",
    "output": "generated_output : list = add_n([0, 0, 3, -3],1)",
    "io_inp": [
      0,
      0,
      3,
      -3
    ],
    "io_out": [
      1,
      1,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, -3, 3, -1, -2, 0]\noutput : list = [8, 7, 4]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(sort_asc([4, -3, 3, -1, -2, 0])),3),4))",
    "io_inp": [
      4,
      -3,
      3,
      -1,
      -2,
      0
    ],
    "io_out": [
      8,
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(sort_asc(input)),3),4))"
  },
  {
    "input": "input : list = [-3, 5, 3]\noutput : list = [6, 4, -2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(reverse([-3, 5, 3])),-1)))",
    "io_inp": [
      -3,
      5,
      3
    ],
    "io_out": [
      6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [0, 4]",
    "output": "generated_output : list = sub_n([-5, -1],-5)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [25, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(sort_asc([-5, 2])),-5)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      25,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [4, -1, 1]\noutput : list = [-36, -24, -16]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(sort_des([4, -1, 1]),5),-2),2),42)",
    "io_inp": [
      4,
      -1,
      1
    ],
    "io_out": [
      -36,
      -24,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(sort_des(input),5),-2),2),42)"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [4, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(sort_asc([-2, 1, 2])),-2)))",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-1, -3, -3, -5]\noutput : list = [1, 3, 3, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_des([-1, -3, -3, -5]),-1))),51)",
    "io_inp": [
      -1,
      -3,
      -3,
      -5
    ],
    "io_out": [
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_des(input),-1))),51)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [8, 8]",
    "output": "generated_output : list = sub_n([4, 4],-4)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 5, 5]\noutput : list = [25, 25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(drop([-5, 5, 5],1))),5)",
    "io_inp": [
      -5,
      5,
      5
    ],
    "io_out": [
      25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(drop(input,1))),5)"
  },
  {
    "input": "input : list = [1, 1, 3, -5]\noutput : list = [0, 6, 6, 8]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(sort_des([1, 1, 3, -5])),1),24),5)",
    "io_inp": [
      1,
      1,
      3,
      -5
    ],
    "io_out": [
      0,
      6,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(sort_des(input)),1),24),5)"
  },
  {
    "input": "input : list = [0, 1, 2]\noutput : list = [-8, -10, -12]",
    "output": "generated_output : list = mul_n(sub_n([0, 1, 2],-4),-2)",
    "io_inp": [
      0,
      1,
      2
    ],
    "io_out": [
      -8,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),-2)"
  },
  {
    "input": "input : list = [-2, -5, -1, 3, 5, 3]\noutput : list = [-10, -13, -9, -5, -3, -5]",
    "output": "generated_output : list = sub_n(add_n([-2, -5, -1, 3, 5, 3],-3),5)",
    "io_inp": [
      -2,
      -5,
      -1,
      3,
      5,
      3
    ],
    "io_out": [
      -10,
      -13,
      -9,
      -5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),5)"
  },
  {
    "input": "input : list = [2, -3, 3, 5]\noutput : list = [-3, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des([2, -3, 3, 5]))",
    "io_inp": [
      2,
      -3,
      3,
      5
    ],
    "io_out": [
      -3,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 2, 5]\noutput : list = [-32]",
    "output": "generated_output : list = take(mul_n(sub_n([-5, 2, 5],3),4),1)",
    "io_inp": [
      -5,
      2,
      5
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,3),4),1)"
  },
  {
    "input": "input : list = [-2, -5, 3, 1]\noutput : list = [-5, 1, 3]",
    "output": "generated_output : list = sort_asc(drop([-2, -5, 3, 1],1))",
    "io_inp": [
      -2,
      -5,
      3,
      1
    ],
    "io_out": [
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -3, 3, -3, 3]\noutput : list = [1, 1, 3, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(take(reverse(reverse([-1, -3, 3, -3, 3])),24),4))",
    "io_inp": [
      -1,
      -3,
      3,
      -3,
      3
    ],
    "io_out": [
      1,
      1,
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(reverse(reverse(input)),24),4))"
  },
  {
    "input": "input : list = [5, -2, -3, 5]\noutput : list = [120, -24, -6, 120]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(mul_n([5, -2, -3, 5],-3)),5),-3),2)",
    "io_inp": [
      5,
      -2,
      -3,
      5
    ],
    "io_out": [
      120,
      -24,
      -6,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(mul_n(input,-3)),5),-3),2)"
  },
  {
    "input": "input : list = [-5, 2, 4, -2, 5]\noutput : list = [24]",
    "output": "generated_output : list = sort_des(mul_n(drop(mul_n(add_n([-5, 2, 4, -2, 5],1),-4),4),-1))",
    "io_inp": [
      -5,
      2,
      4,
      -2,
      5
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(mul_n(add_n(input,1),-4),4),-1))"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 3, 5],1)",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 4, 3, 0, 2]\noutput : list = [5, 4, 3, 1, -3]",
    "output": "generated_output : list = add_n(sort_des([-4, 4, 3, 0, 2]),1)",
    "io_inp": [
      -4,
      4,
      3,
      0,
      2
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-5, 1, 1, 0]\noutput : list = [25, -5, -5, 0]",
    "output": "generated_output : list = take(mul_n([-5, 1, 1, 0],-5),21)",
    "io_inp": [
      -5,
      1,
      1,
      0
    ],
    "io_out": [
      25,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-5),21)"
  },
  {
    "input": "input : list = [-3, -4, 3, 4]\noutput : list = [4, 3, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(reverse([-3, -4, 3, 4])))))",
    "io_inp": [
      -3,
      -4,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [1, -1, -2, -2, 1, 2]\noutput : list = [2, 1, 1, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc([1, -1, -2, -2, 1, 2]))",
    "io_inp": [
      1,
      -1,
      -2,
      -2,
      1,
      2
    ],
    "io_out": [
      2,
      1,
      1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -3, -3, -2, -3, 1]\noutput : list = [45, 45, 45, 30, 15, -15]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_des([-1, -3, -3, -2, -3, 1]),5)),-3))",
    "io_inp": [
      -1,
      -3,
      -3,
      -2,
      -3,
      1
    ],
    "io_out": [
      45,
      45,
      45,
      30,
      15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_des(input),5)),-3))"
  },
  {
    "input": "input : list = [-4, 5, -1, 5]\noutput : list = [-1, 8, 2, 8]",
    "output": "generated_output : list = add_n([-4, 5, -1, 5],3)",
    "io_inp": [
      -4,
      5,
      -1,
      5
    ],
    "io_out": [
      -1,
      8,
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [1, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(add_n(add_n([5, 0, 3],-3),4))))",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(add_n(add_n(input,-3),4))))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-4, -100]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(mul_n([5, -1],1)),-4),5),4)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -4,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(mul_n(input,1)),-4),5),4)"
  },
  {
    "input": "input : list = [-3, 0, 2, 2]\noutput : list = [-3, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([-3, 0, 2, 2])))",
    "io_inp": [
      -3,
      0,
      2,
      2
    ],
    "io_out": [
      -3,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [4, 6]",
    "output": "generated_output : list = mul_n(sort_asc([2, 3]),2)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-1, 3, -4, 0, 4, -2]\noutput : list = [5]",
    "output": "generated_output : list = drop(take(sub_n(sort_asc(sort_des([-1, 3, -4, 0, 4, -2])),-1),14),5)",
    "io_inp": [
      -1,
      3,
      -4,
      0,
      4,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(take(sub_n(sort_asc(sort_des(input)),-1),14),5)"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = sort_des(add_n([-1, 2, 1],-3))",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [-2, 0, 3]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(drop([-2, 0, 3],1))",
    "io_inp": [
      -2,
      0,
      3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [-10, -10, 30]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(mul_n(reverse([1, -3, -3]),-2),4)),-5)",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      -10,
      -10,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(mul_n(reverse(input),-2),4)),-5)"
  },
  {
    "input": "input : list = [-5, -2, -4, -3]\noutput : list = [-15, -20, -25, -30]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-5, -2, -4, -3],5)),5)",
    "io_inp": [
      -5,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -15,
      -20,
      -25,
      -30
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,5)),5)"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [14, 14, 17]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(mul_n([-3, -4, -3],3),-3)),-1),-2)",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      14,
      14,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(mul_n(input,3),-3)),-1),-2)"
  },
  {
    "input": "input : list = [-3, 5, 3]\noutput : list = [0, -24, -18]",
    "output": "generated_output : list = mul_n(sub_n([-3, 5, 3],-3),-3)",
    "io_inp": [
      -3,
      5,
      3
    ],
    "io_out": [
      0,
      -24,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),-3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [7, -13]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(mul_n([-1, 3],-5))),-2))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      7,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(mul_n(input,-5))),-2))"
  },
  {
    "input": "input : list = [-1, -3, -5, -2, -2, 1]\noutput : list = [-3, -5, -7, -4, -4, -1]",
    "output": "generated_output : list = add_n(reverse(reverse([-1, -3, -5, -2, -2, 1])),-2)",
    "io_inp": [
      -1,
      -3,
      -5,
      -2,
      -2,
      1
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),-2)"
  },
  {
    "input": "input : list = [0, -3, 0, 3]\noutput : list = [-3, -6, -6, -9]",
    "output": "generated_output : list = take(sort_des(add_n(add_n([0, -3, 0, 3],-1),-5)),7)",
    "io_inp": [
      0,
      -3,
      0,
      3
    ],
    "io_out": [
      -3,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(input,-1),-5)),7)"
  },
  {
    "input": "input : list = [3, 3, 1, 0, -2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(sort_asc(take(drop([3, 3, 1, 0, -2, 3],4),22)),19)",
    "io_inp": [
      3,
      3,
      1,
      0,
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(drop(input,4),22)),19)"
  },
  {
    "input": "input : list = [-1, 4, -1, 5, 0, -2]\noutput : list = [-6, -1, -6, 0, -5, -7]",
    "output": "generated_output : list = add_n([-1, 4, -1, 5, 0, -2],-5)",
    "io_inp": [
      -1,
      4,
      -1,
      5,
      0,
      -2
    ],
    "io_out": [
      -6,
      -1,
      -6,
      0,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 2, -3, 1, 2]\noutput : list = [-2, 4, -1, 3, 4]",
    "output": "generated_output : list = sub_n([-4, 2, -3, 1, 2],-2)",
    "io_inp": [
      -4,
      2,
      -3,
      1,
      2
    ],
    "io_out": [
      -2,
      4,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, 3, -3, -3, 5]\noutput : list = [-8, -8, 4, 10, 16]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(sort_des([1, 3, -3, -3, 5])),3),-1),20)",
    "io_inp": [
      1,
      3,
      -3,
      -3,
      5
    ],
    "io_out": [
      -8,
      -8,
      4,
      10,
      16
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(sort_des(input)),3),-1),20)"
  },
  {
    "input": "input : list = [3, 1, 4]\noutput : list = [5, 7, 8]",
    "output": "generated_output : list = reverse(sub_n(sort_des(reverse(sort_asc([3, 1, 4]))),-4))",
    "io_inp": [
      3,
      1,
      4
    ],
    "io_out": [
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(reverse(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [2, 4, 5, -3]\noutput : list = [6, 4, 0, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sub_n([2, 4, 5, -3],2)))),2)",
    "io_inp": [
      2,
      4,
      5,
      -3
    ],
    "io_out": [
      6,
      4,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sub_n(input,2)))),2)"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [-1, 1, -1]",
    "output": "generated_output : list = reverse([-1, 1, -1])",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-80, -112]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(mul_n([-4, -2],1)),-3),4),4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -80,
      -112
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(mul_n(input,1)),-3),4),4)"
  },
  {
    "input": "input : list = [5, 0, -1, 4, 2]\noutput : list = [-3, -6, -12, -18, -21]",
    "output": "generated_output : list = sort_des(mul_n(add_n([5, 0, -1, 4, 2],2),-3))",
    "io_inp": [
      5,
      0,
      -1,
      4,
      2
    ],
    "io_out": [
      -3,
      -6,
      -12,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,2),-3))"
  },
  {
    "input": "input : list = [0, 4, -4]\noutput : list = [-64, 16, 96]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n([0, 4, -4],5),-4),4))",
    "io_inp": [
      0,
      4,
      -4
    ],
    "io_out": [
      -64,
      16,
      96
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(input,5),-4),4))"
  },
  {
    "input": "input : list = [-4, -4, -4, -2]\noutput : list = [3, 1, 1, 1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(sort_asc([-4, -4, -4, -2])))),5)",
    "io_inp": [
      -4,
      -4,
      -4,
      -2
    ],
    "io_out": [
      3,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_asc([0, 2])),-1),-5))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_asc(input)),-1),-5))"
  },
  {
    "input": "input : list = [5, 1, 1, 4, 0, 2]\noutput : list = [-4, -4, -20]",
    "output": "generated_output : list = reverse(mul_n(take([5, 1, 1, 4, 0, 2],3),-4))",
    "io_inp": [
      5,
      1,
      1,
      4,
      0,
      2
    ],
    "io_out": [
      -4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,3),-4))"
  },
  {
    "input": "input : list = [3, -1, 3, 5, 1]\noutput : list = [-36, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(take([3, -1, 3, 5, 1],2),3)),-3),-4)",
    "io_inp": [
      3,
      -1,
      3,
      5,
      1
    ],
    "io_out": [
      -36,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(take(input,2),3)),-3),-4)"
  },
  {
    "input": "input : list = [-3, 5, -5, -5, 1]\noutput : list = [144, 16, 176, 176, 80]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n([-3, 5, -5, -5, 1],-5),-4),1),4),4)",
    "io_inp": [
      -3,
      5,
      -5,
      -5,
      1
    ],
    "io_out": [
      144,
      16,
      176,
      176,
      80
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n(input,-5),-4),1),4),4)"
  },
  {
    "input": "input : list = [1, 5, 1, 4, 5, 2]\noutput : list = [15, 75, 15, 60, 75, 30]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(mul_n([1, 5, 1, 4, 5, 2],5),3),29)))",
    "io_inp": [
      1,
      5,
      1,
      4,
      5,
      2
    ],
    "io_out": [
      15,
      75,
      15,
      60,
      75,
      30
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(mul_n(input,5),3),29)))"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(take(sort_des(take([1, 2, 3],1)),20),-4)",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(input,1)),20),-4)"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [12]",
    "output": "generated_output : list = take(mul_n(reverse(take(sub_n([-3, 3, 3],-3),5)),2),1)",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(take(sub_n(input,-3),5)),2),1)"
  },
  {
    "input": "input : list = [5, -2, -1, 2, 5]\noutput : list = [1, -2]",
    "output": "generated_output : list = sub_n(sort_des(drop([5, -2, -1, 2, 5],3)),4)",
    "io_inp": [
      5,
      -2,
      -1,
      2,
      5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,3)),4)"
  },
  {
    "input": "input : list = [5, -2, 5, -3, 0]\noutput : list = [-6, -5, -3, 2, 2]",
    "output": "generated_output : list = add_n(add_n(sort_asc([5, -2, 5, -3, 0]),-1),-2)",
    "io_inp": [
      5,
      -2,
      5,
      -3,
      0
    ],
    "io_out": [
      -6,
      -5,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),-1),-2)"
  },
  {
    "input": "input : list = [3, 4, 1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sub_n(mul_n(drop([3, 4, 1],1),-1),-3)",
    "io_inp": [
      3,
      4,
      1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,1),-1),-3)"
  },
  {
    "input": "input : list = [4, 2, 1, 5]\noutput : list = [3, 1, 0, 4]",
    "output": "generated_output : list = reverse(reverse(add_n([4, 2, 1, 5],-1)))",
    "io_inp": [
      4,
      2,
      1,
      5
    ],
    "io_out": [
      3,
      1,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(input,-1)))"
  },
  {
    "input": "input : list = [0, -5, -4, 1, 4, -3]\noutput : list = [4, 7, 0]",
    "output": "generated_output : list = add_n(drop([0, -5, -4, 1, 4, -3],3),3)",
    "io_inp": [
      0,
      -5,
      -4,
      1,
      4,
      -3
    ],
    "io_out": [
      4,
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),3)"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [-5, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, -5])",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4, -2, -4]\noutput : list = [-3, -1, 5, -1]",
    "output": "generated_output : list = sub_n(add_n(reverse([-2, 4, -2, -4]),-1),-2)",
    "io_inp": [
      -2,
      4,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-1),-2)"
  },
  {
    "input": "input : list = [3, -5, -3, -2, 1, -5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(mul_n(take([3, -5, -3, -2, 1, -5],1),2),-1)",
    "io_inp": [
      3,
      -5,
      -3,
      -2,
      1,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,1),2),-1)"
  },
  {
    "input": "input : list = [0, 5, 4, -2, -4, 3]\noutput : list = [-16, 12, 4, -20, -24, -4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(mul_n([0, 5, 4, -2, -4, 3],-4),-1),1),3))",
    "io_inp": [
      0,
      5,
      4,
      -2,
      -4,
      3
    ],
    "io_out": [
      -16,
      12,
      4,
      -20,
      -24,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(mul_n(input,-4),-1),1),3))"
  },
  {
    "input": "input : list = [1, -4, 4, 1, 4, 1]\noutput : list = [-4, 1, 1]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(add_n([1, -4, 4, 1, 4, 1],1),-4),-3)),3)",
    "io_inp": [
      1,
      -4,
      4,
      1,
      4,
      1
    ],
    "io_out": [
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(add_n(input,1),-4),-3)),3)"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [5, -3]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(drop([3, 0, 2],1),-4))),5)",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(drop(input,1),-4))),5)"
  },
  {
    "input": "input : list = [-5, -1, -3, -2]\noutput : list = [40, 0, -20, -40]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(reverse([-5, -1, -3, -2]),3)),5),-4)",
    "io_inp": [
      -5,
      -1,
      -3,
      -2
    ],
    "io_out": [
      40,
      0,
      -20,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(reverse(input),3)),5),-4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-10, 4]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(reverse([3, -4])),2),2),7)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -10,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(reverse(input)),2),2),7)"
  },
  {
    "input": "input : list = [2, -4, 5, -5, -3, -3]\noutput : list = [-15, -6, 9, 9, 12, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(mul_n([2, -4, 5, -5, -3, -3],3)),-1)))",
    "io_inp": [
      2,
      -4,
      5,
      -5,
      -3,
      -3
    ],
    "io_out": [
      -15,
      -6,
      9,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(mul_n(input,3)),-1)))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-3, -9]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc(mul_n([1, 3],-3)),4)))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(mul_n(input,-3)),4)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 2]))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [2, -3, 3, 2]\noutput : list = [-15, 10]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(take([2, -3, 3, 2],2))),35),5)",
    "io_inp": [
      2,
      -3,
      3,
      2
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(take(input,2))),35),5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-24, 8]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(reverse([-5, 3]),4)),5),1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -24,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(reverse(input),4)),5),1)"
  },
  {
    "input": "input : list = [5, 2, 5, 1, 3, -3]\noutput : list = [0, 0, -2, -3, -4, -8]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse([5, 2, 5, 1, 3, -3])),-5))",
    "io_inp": [
      5,
      2,
      5,
      1,
      3,
      -3
    ],
    "io_out": [
      0,
      0,
      -2,
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(input)),-5))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [17, -15]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(mul_n([-4, 4],-4),5),-4)),2)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      17,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(mul_n(input,-4),5),-4)),2)"
  },
  {
    "input": "input : list = [-1, 2, 3, 5, 1, 3]\noutput : list = [4, 2, 2, 1, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_asc([-1, 2, 3, 5, 1, 3])),3),-2))",
    "io_inp": [
      -1,
      2,
      3,
      5,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      2,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_asc(input)),3),-2))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-6, -12]",
    "output": "generated_output : list = mul_n(sort_asc([4, 2]),-3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [4, 0, -4, -1, 3, 0]\noutput : list = [-4, 0, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(take([4, 0, -4, -1, 3, 0],3))),3),-3)",
    "io_inp": [
      4,
      0,
      -4,
      -1,
      3,
      0
    ],
    "io_out": [
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(take(input,3))),3),-3)"
  },
  {
    "input": "input : list = [-2, -4, 2, -1]\noutput : list = [4, 8, -4, 2]",
    "output": "generated_output : list = mul_n([-2, -4, 2, -1],-2)",
    "io_inp": [
      -2,
      -4,
      2,
      -1
    ],
    "io_out": [
      4,
      8,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -2, -3, 4, -3, -2]\noutput : list = [-8, -8, -7, -7, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(drop([-3, -2, -3, 4, -3, -2],1),-5))))",
    "io_inp": [
      -3,
      -2,
      -3,
      4,
      -3,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(drop(input,1),-5))))"
  },
  {
    "input": "input : list = [-3, 0, -1, 5]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(reverse(add_n(take(take([-3, 0, -1, 5],2),15),1)),37)",
    "io_inp": [
      -3,
      0,
      -1,
      5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(take(input,2),15),1)),37)"
  },
  {
    "input": "input : list = [4, 3, 5]\noutput : list = [1, 2]",
    "output": "generated_output : list = take(drop(reverse(sort_des(add_n([4, 3, 5],-3))),1),11)",
    "io_inp": [
      4,
      3,
      5
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = take(drop(reverse(sort_des(add_n(input,-3))),1),11)"
  },
  {
    "input": "input : list = [2, 1, -1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 1, -1],1)",
    "io_inp": [
      2,
      1,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 5, -1]\noutput : list = [6, 3, 0]",
    "output": "generated_output : list = take(sort_des(add_n(reverse([2, 5, -1]),1)),18)",
    "io_inp": [
      2,
      5,
      -1
    ],
    "io_out": [
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(input),1)),18)"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(drop([1, -3, -3],1))),-5),-4)",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(drop(input,1))),-5),-4)"
  },
  {
    "input": "input : list = [-5, 0, -1, 4, -5]\noutput : list = [4, 0, -1]",
    "output": "generated_output : list = take(sort_des(take(sort_des([-5, 0, -1, 4, -5]),3)),21)",
    "io_inp": [
      -5,
      0,
      -1,
      4,
      -5
    ],
    "io_out": [
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(input),3)),21)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-5, -4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n([1, 2],3))),-3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(input,3))),-3)"
  },
  {
    "input": "input : list = [-5, -2, 3, 4]\noutput : list = [-4, -5, -10, -13]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(reverse([-5, -2, 3, 4])),5),-3))",
    "io_inp": [
      -5,
      -2,
      3,
      4
    ],
    "io_out": [
      -4,
      -5,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(reverse(input)),5),-3))"
  },
  {
    "input": "input : list = [3, -3, -3, 2, -5]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(drop([3, -3, -3, 2, -5],3))),-4))",
    "io_inp": [
      3,
      -3,
      -3,
      2,
      -5
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(drop(input,3))),-4))"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [-6, 1, -4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(take(add_n([-5, 2, -3],1),12),-4),5),1)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      -6,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(take(add_n(input,1),12),-4),5),1)"
  },
  {
    "input": "input : list = [-2, 2, -3, -2, -5]\noutput : list = [-3, -9, -12, -12, -24]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n(add_n([-2, 2, -3, -2, -5],5),-2)),-1),-3)",
    "io_inp": [
      -2,
      2,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -9,
      -12,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(add_n(input,5),-2)),-1),-3)"
  },
  {
    "input": "input : list = [4, 3, -3, 1, 5]\noutput : list = [3, 15, 21, 24, 27]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(reverse([4, 3, -3, 1, 5]))),-4),3)",
    "io_inp": [
      4,
      3,
      -3,
      1,
      5
    ],
    "io_out": [
      3,
      15,
      21,
      24,
      27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(reverse(input))),-4),3)"
  },
  {
    "input": "input : list = [2, 1, -4, 3]\noutput : list = [60, 40, 20, -80]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([2, 1, -4, 3]),5),4)",
    "io_inp": [
      2,
      1,
      -4,
      3
    ],
    "io_out": [
      60,
      40,
      20,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),5),4)"
  },
  {
    "input": "input : list = [3, -1, -1, -1, 1]\noutput : list = [1, 1, 1, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(mul_n([3, -1, -1, -1, 1],-1),12))))",
    "io_inp": [
      3,
      -1,
      -1,
      -1,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(mul_n(input,-1),12))))"
  },
  {
    "input": "input : list = [1, -3, 0, 2]\noutput : list = [10, 9, 8, 5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sort_asc([1, -3, 0, 2]),-4))),4)",
    "io_inp": [
      1,
      -3,
      0,
      2
    ],
    "io_out": [
      10,
      9,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(sort_asc(input),-4))),4)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [0, 3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n([-2, -5],3),4),-5)),-1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(add_n(input,3),4),-5)),-1)"
  },
  {
    "input": "input : list = [-2, -1, -1, 5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take(add_n(reverse(take([-2, -1, -1, 5],1)),4),30))",
    "io_inp": [
      -2,
      -1,
      -1,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(take(input,1)),4),30))"
  },
  {
    "input": "input : list = [5, -4, 1, 1]\noutput : list = [120, 40, 40, -60]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n([5, -4, 1, 1],-4),3)),-4),-5)",
    "io_inp": [
      5,
      -4,
      1,
      1
    ],
    "io_out": [
      120,
      40,
      40,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sub_n(input,-4),3)),-4),-5)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-16, -16]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse(mul_n([4, 4],-1)),4)))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(mul_n(input,-1)),4)))"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [30, 30]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(drop([0, -5, -5],1),-2)),1),-5)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(drop(input,1),-2)),1),-5)"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take([4, -1, -3],1),-1)",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [-4, -5, 4, -2, 2, 5]\noutput : list = [5, 0, -10, -30, -40, -45]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(add_n([-4, -5, 4, -2, 2, 5],1),5)),5))",
    "io_inp": [
      -4,
      -5,
      4,
      -2,
      2,
      5
    ],
    "io_out": [
      5,
      0,
      -10,
      -30,
      -40,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(add_n(input,1),5)),5))"
  },
  {
    "input": "input : list = [1, 2, 2, 0, -1]\noutput : list = [4, 8, 8]",
    "output": "generated_output : list = take(sort_asc(take(mul_n([1, 2, 2, 0, -1],4),3)),31)",
    "io_inp": [
      1,
      2,
      2,
      0,
      -1
    ],
    "io_out": [
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(input,4),3)),31)"
  },
  {
    "input": "input : list = [-2, 1, -2, -1]\noutput : list = [-19, -10, -19, -16]",
    "output": "generated_output : list = sub_n(mul_n(add_n([-2, 1, -2, -1],-4),3),1)",
    "io_inp": [
      -2,
      1,
      -2,
      -1
    ],
    "io_out": [
      -19,
      -10,
      -19,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,-4),3),1)"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [-2, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, -2])",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, -1, -1, -3]\noutput : list = [-7, -9]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc(drop([3, 5, -1, -1, -3],3)),-1),-5))",
    "io_inp": [
      3,
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(drop(input,3)),-1),-5))"
  },
  {
    "input": "input : list = [-5, 2, 4, 2, 3, 3]\noutput : list = [11, 10, 10, 9, 9, 2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc([-5, 2, 4, 2, 3, 3]),27),-3),4))",
    "io_inp": [
      -5,
      2,
      4,
      2,
      3,
      3
    ],
    "io_out": [
      11,
      10,
      10,
      9,
      9,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc(input),27),-3),4))"
  },
  {
    "input": "input : list = [5, -1, 1, 5, 5]\noutput : list = [5, 5, 5, 1, -1]",
    "output": "generated_output : list = sort_des([5, -1, 1, 5, 5])",
    "io_inp": [
      5,
      -1,
      1,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, -3, 3, -2, -2]\noutput : list = [2, 0, -3, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(sub_n([1, -4, -3, 3, -2, -2],-3),4))))",
    "io_inp": [
      1,
      -4,
      -3,
      3,
      -2,
      -2
    ],
    "io_out": [
      2,
      0,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(sub_n(input,-3),4))))"
  },
  {
    "input": "input : list = [3, -3, -3]\noutput : list = [1, -5, -5]",
    "output": "generated_output : list = take(add_n([3, -3, -3],-2),11)",
    "io_inp": [
      3,
      -3,
      -3
    ],
    "io_out": [
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),11)"
  },
  {
    "input": "input : list = [3, 1, -4, 3, -5]\noutput : list = [-5, -4, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([3, 1, -4, 3, -5])",
    "io_inp": [
      3,
      1,
      -4,
      3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -1, 1, -3, 5]\noutput : list = [2]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc(sort_asc([-5, -1, 1, -3, 5])),2),5),1)",
    "io_inp": [
      -5,
      -1,
      1,
      -3,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(sort_asc(input)),2),5),1)"
  },
  {
    "input": "input : list = [-5, -4, -3, 3, -2, -5]\noutput : list = [-8, -8, -7, -6, -5, 0]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(sort_des([-5, -4, -3, 3, -2, -5])),-1),-4),49)",
    "io_inp": [
      -5,
      -4,
      -3,
      3,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(sort_des(input)),-1),-4),49)"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [15, 7, -17]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc([-5, 3, 1])),4)),3)",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      15,
      7,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_asc(input)),4)),3)"
  },
  {
    "input": "input : list = [-5, 1, 0, -5, 4]\noutput : list = [4]",
    "output": "generated_output : list = drop(sort_asc([-5, 1, 0, -5, 4]),4)",
    "io_inp": [
      -5,
      1,
      0,
      -5,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),4)"
  },
  {
    "input": "input : list = [2, 4, -5]\noutput : list = [24, -11, -21]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(mul_n([2, 4, -5],5),-1)),1))",
    "io_inp": [
      2,
      4,
      -5
    ],
    "io_out": [
      24,
      -11,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(mul_n(input,5),-1)),1))"
  },
  {
    "input": "input : list = [4, -4, 3, -1]\noutput : list = [6, 0, -8]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(sort_des([4, -4, 3, -1]),-1)),3),-2)",
    "io_inp": [
      4,
      -4,
      3,
      -1
    ],
    "io_out": [
      6,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(sort_des(input),-1)),3),-2)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [-2, -6]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(drop([-4, 1, 3],1),5))),-2)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(drop(input,1),5))),-2)"
  },
  {
    "input": "input : list = [-3, 2, 4, 0, -5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_des(take([-3, 2, 4, 0, -5],1)))))",
    "io_inp": [
      -3,
      2,
      4,
      0,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des([5, -3])",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, -3, -3, -1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_asc(take([0, 0, -3, -3, -1],2)))),3)",
    "io_inp": [
      0,
      0,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_asc(take(input,2)))),3)"
  },
  {
    "input": "input : list = [-1, -5, 4, 2, 1, 1]\noutput : list = [-6, -10, -1, -3, -4, -4]",
    "output": "generated_output : list = add_n(mul_n([-1, -5, 4, 2, 1, 1],1),-5)",
    "io_inp": [
      -1,
      -5,
      4,
      2,
      1,
      1
    ],
    "io_out": [
      -6,
      -10,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),-5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = mul_n(reverse(add_n(take(add_n([0, 1],-4),12),2)),1)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(take(add_n(input,-4),12),2)),1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-3, 6]",
    "output": "generated_output : list = sub_n([-5, 4],-2)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, 3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = reverse(drop([5, 3, 0],1))",
    "io_inp": [
      5,
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take([-1, -2, 2],1))",
    "io_inp": [
      -1,
      -2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-5, -5, 5]\noutput : list = [-9, -9, 1]",
    "output": "generated_output : list = add_n([-5, -5, 5],-4)",
    "io_inp": [
      -5,
      -5,
      5
    ],
    "io_out": [
      -9,
      -9,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -3, -4, 2, 3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = drop([-2, -3, -4, 2, 3, -5],4)",
    "io_inp": [
      -2,
      -3,
      -4,
      2,
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-5, -4, 2, 5, -5]\noutput : list = [-15, -14, -8, -5, -15]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n([-5, -4, 2, 5, -5],-3),1),5),-1)",
    "io_inp": [
      -5,
      -4,
      2,
      5,
      -5
    ],
    "io_out": [
      -15,
      -14,
      -8,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(input,-3),1),5),-1)"
  },
  {
    "input": "input : list = [3, 2, -1, 5, 3]\noutput : list = [2, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(drop([3, 2, -1, 5, 3],2),-1)),4))",
    "io_inp": [
      3,
      2,
      -1,
      5,
      3
    ],
    "io_out": [
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(drop(input,2),-1)),4))"
  },
  {
    "input": "input : list = [3, 4, 2, 3]\noutput : list = [-1, 0, -2, -1]",
    "output": "generated_output : list = sub_n([3, 4, 2, 3],4)",
    "io_inp": [
      3,
      4,
      2,
      3
    ],
    "io_out": [
      -1,
      0,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(drop([-1, -1, -1],1)),-4)))",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(drop(input,1)),-4)))"
  },
  {
    "input": "input : list = [5, 2, 2, 2, -3]\noutput : list = [15, 6, 6, 6, -9]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse(sort_des([5, 2, 2, 2, -3])))),3)",
    "io_inp": [
      5,
      2,
      2,
      2,
      -3
    ],
    "io_out": [
      15,
      6,
      6,
      6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [-3, 1, 1, -5, -5]\noutput : list = [1, 1, -3, -5, -5]",
    "output": "generated_output : list = sort_des([-3, 1, 1, -5, -5])",
    "io_inp": [
      -3,
      1,
      1,
      -5,
      -5
    ],
    "io_out": [
      1,
      1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, -3, 0, -4]\noutput : list = [-12, -3, 0, 9, 12]",
    "output": "generated_output : list = mul_n(sort_des([1, 4, -3, 0, -4]),-3)",
    "io_inp": [
      1,
      4,
      -3,
      0,
      -4
    ],
    "io_out": [
      -12,
      -3,
      0,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [1, -3, 2, -4]\noutput : list = [8, -16]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(drop([1, -3, 2, -4],2))),4))",
    "io_inp": [
      1,
      -3,
      2,
      -4
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(drop(input,2))),4))"
  },
  {
    "input": "input : list = [0, -2, 3, 2, -4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = drop([0, -2, 3, 2, -4, 1],4)",
    "io_inp": [
      0,
      -2,
      3,
      2,
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-5, 1, 0, -1, 1, -5]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(take(take(add_n(take([-5, 1, 0, -1, 1, -5],1),-4),24),39),-2)",
    "io_inp": [
      -5,
      1,
      0,
      -1,
      1,
      -5
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(take(input,1),-4),24),39),-2)"
  },
  {
    "input": "input : list = [-4, 4, 3, 5]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(reverse(take([-4, 4, 3, 5],2)))",
    "io_inp": [
      -4,
      4,
      3,
      5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [1, -5, 0, 0, -3, 0]\noutput : list = [-12, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(drop([1, -5, 0, 0, -3, 0],3)),4))",
    "io_inp": [
      1,
      -5,
      0,
      0,
      -3,
      0
    ],
    "io_out": [
      -12,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(drop(input,3)),4))"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [-30, -30, 50]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(sub_n([3, 3, -5],4),4),5),23),-2)",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      -30,
      -30,
      50
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(sub_n(input,4),4),5),23),-2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [1, -5]",
    "output": "generated_output : list = add_n([2, -4],-1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -1, -2, -4, 1]\noutput : list = [3, 3, 2, 0, 5]",
    "output": "generated_output : list = sub_n([-1, -1, -2, -4, 1],-4)",
    "io_inp": [
      -1,
      -1,
      -2,
      -4,
      1
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [0, -7]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(sub_n([-3, 4],1)),-2),4),1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(sub_n(input,1)),-2),4),1)"
  },
  {
    "input": "input : list = [-1, -4, -3, -1, -2, 2]\noutput : list = [-1, -3, 5]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(drop([-1, -4, -3, -1, -2, 2],3),4),-1),2),-3)",
    "io_inp": [
      -1,
      -4,
      -3,
      -1,
      -2,
      2
    ],
    "io_out": [
      -1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(drop(input,3),4),-1),2),-3)"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [4, 3, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([3, 3, 4],-1)),1)",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,-1)),1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [3, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_des([0, 4]))),-3))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [-5, -3, 3, 4, 3]\noutput : list = [12, 6, 4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(take([-5, -3, 3, 4, 3],3)),-5),5),1)",
    "io_inp": [
      -5,
      -3,
      3,
      4,
      3
    ],
    "io_out": [
      12,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(take(input,3)),-5),5),1)"
  },
  {
    "input": "input : list = [4, 0, -2, 2, 2, 4]\noutput : list = [9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(take([4, 0, -2, 2, 2, 4],1))),-5))",
    "io_inp": [
      4,
      0,
      -2,
      2,
      2,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(take(input,1))),-5))"
  },
  {
    "input": "input : list = [-5, -5, 1, -4, 1]\noutput : list = [4, 4, -16, -20, -20]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(mul_n([-5, -5, 1, -4, 1],4)))))",
    "io_inp": [
      -5,
      -5,
      1,
      -4,
      1
    ],
    "io_out": [
      4,
      4,
      -16,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [3, 1, 2]\noutput : list = [7]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(take([3, 1, 2],1),2)),2))",
    "io_inp": [
      3,
      1,
      2
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(take(input,1),2)),2))"
  },
  {
    "input": "input : list = [5, -2, 0, -3, -3, 3]\noutput : list = [20, 20, 10, -10, -40, -60]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(add_n([5, -2, 0, -3, -3, 3],1)),-5),2))",
    "io_inp": [
      5,
      -2,
      0,
      -3,
      -3,
      3
    ],
    "io_out": [
      20,
      20,
      10,
      -10,
      -40,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(add_n(input,1)),-5),2))"
  },
  {
    "input": "input : list = [-5, 5, -2, -3, 4, -5]\noutput : list = [-12, -8, 16, 20, 28, 28]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(add_n([-5, 5, -2, -3, 4, -5],-4)),2),1),-4)",
    "io_inp": [
      -5,
      5,
      -2,
      -3,
      4,
      -5
    ],
    "io_out": [
      -12,
      -8,
      16,
      20,
      28,
      28
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(add_n(input,-4)),2),1),-4)"
  },
  {
    "input": "input : list = [-2, -2, 0]\noutput : list = [0, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des([-2, -2, 0]))",
    "io_inp": [
      -2,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, -4, 5, 5]\noutput : list = [12, 0, -15, -15]",
    "output": "generated_output : list = take(reverse(sort_asc(take(mul_n([0, -4, 5, 5],-3),5))),30)",
    "io_inp": [
      0,
      -4,
      5,
      5
    ],
    "io_out": [
      12,
      0,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(mul_n(input,-3),5))),30)"
  },
  {
    "input": "input : list = [-2, 0, -2, -1]\noutput : list = [20, 25, 30, 30]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(add_n([-2, 0, -2, -1],-5)),33),1),-5)",
    "io_inp": [
      -2,
      0,
      -2,
      -1
    ],
    "io_out": [
      20,
      25,
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(add_n(input,-5)),33),1),-5)"
  },
  {
    "input": "input : list = [5, 0, 3, -4, 0]\noutput : list = [5, 3, 0, 0, -4]",
    "output": "generated_output : list = sort_des([5, 0, 3, -4, 0])",
    "io_inp": [
      5,
      0,
      3,
      -4,
      0
    ],
    "io_out": [
      5,
      3,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [3, -1]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(add_n([2, -2],-1)),2)),34)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(add_n(input,-1)),2)),34)"
  },
  {
    "input": "input : list = [4, -2, -2, -1, 0, -2]\noutput : list = [-23, -23, -23, -26, -29, -41]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(add_n([4, -2, -2, -1, 0, -2],4)),-5),-3),-2)",
    "io_inp": [
      4,
      -2,
      -2,
      -1,
      0,
      -2
    ],
    "io_out": [
      -23,
      -23,
      -23,
      -26,
      -29,
      -41
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(add_n(input,4)),-5),-3),-2)"
  },
  {
    "input": "input : list = [2, 3, 3, -4, -3]\noutput : list = [12, 12, 8, -12, -16]",
    "output": "generated_output : list = sort_des(take(reverse(mul_n([2, 3, 3, -4, -3],4)),18))",
    "io_inp": [
      2,
      3,
      3,
      -4,
      -3
    ],
    "io_out": [
      12,
      12,
      8,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(mul_n(input,4)),18))"
  },
  {
    "input": "input : list = [-4, 1, 3, -2]\noutput : list = [3, 18]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(drop([-4, 1, 3, -2],2),12),3)),3)",
    "io_inp": [
      -4,
      1,
      3,
      -2
    ],
    "io_out": [
      3,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(drop(input,2),12),3)),3)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(reverse([-5, 5])))))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-5, 1, 4, -5, -5]\noutput : list = [-6, 0, 3, -6, -6]",
    "output": "generated_output : list = sub_n([-5, 1, 4, -5, -5],1)",
    "io_inp": [
      -5,
      1,
      4,
      -5,
      -5
    ],
    "io_out": [
      -6,
      0,
      3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, -4, 3, 5, 2, -2]\noutput : list = [32, 28, 0, -8, 4, 20]",
    "output": "generated_output : list = take(mul_n(sub_n([-5, -4, 3, 5, 2, -2],3),-4),11)",
    "io_inp": [
      -5,
      -4,
      3,
      5,
      2,
      -2
    ],
    "io_out": [
      32,
      28,
      0,
      -8,
      4,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,3),-4),11)"
  },
  {
    "input": "input : list = [-5, -2, -3, -4]\noutput : list = [15, 10, 5, 0]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(reverse([-5, -2, -3, -4])),5),5),20)",
    "io_inp": [
      -5,
      -2,
      -3,
      -4
    ],
    "io_out": [
      15,
      10,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(reverse(input)),5),5),20)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [9, 1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(reverse([5, -3]),4))))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      9,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sort_asc(add_n([-4, 3],2))",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [2, 2, 3, 1, -3]\noutput : list = [-3, 1, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse([2, 2, 3, 1, -3]))",
    "io_inp": [
      2,
      2,
      3,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 3, 5],1)",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 1, 2, -3, -3, -4]\noutput : list = [-8, -7, -7, -7, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sort_asc([-3, 1, 2, -3, -3, -4])),-5),-1))",
    "io_inp": [
      -3,
      1,
      2,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -8,
      -7,
      -7,
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sort_asc(input)),-5),-1))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(sort_des([4, -2]),7),4),1),1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(sort_des(input),7),4),1),1)"
  },
  {
    "input": "input : list = [-5, 3, -4, -4]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sub_n(drop([-5, 3, -4, -4],2),-1)",
    "io_inp": [
      -5,
      3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [4, -2, -3, 0, -1, -1]\noutput : list = [3, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take([4, -2, -3, 0, -1, -1],2)),1))",
    "io_inp": [
      4,
      -2,
      -3,
      0,
      -1,
      -1
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(input,2)),1))"
  },
  {
    "input": "input : list = [4, 4, -1, -5, 5, -2]\noutput : list = [0, 0, 1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(sort_des([4, 4, -1, -5, 5, -2]),3),1)),-4)",
    "io_inp": [
      4,
      4,
      -1,
      -5,
      5,
      -2
    ],
    "io_out": [
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(sort_des(input),3),1)),-4)"
  },
  {
    "input": "input : list = [1, -5, 4, -4]\noutput : list = [5, 2, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(add_n([1, -5, 4, -4],1),-3),4)),-1)",
    "io_inp": [
      1,
      -5,
      4,
      -4
    ],
    "io_out": [
      5,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(add_n(input,1),-3),4)),-1)"
  },
  {
    "input": "input : list = [-1, 2, -3]\noutput : list = [3, -1, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(mul_n([-1, 2, -3],-2),-3))))",
    "io_inp": [
      -1,
      2,
      -3
    ],
    "io_out": [
      3,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(mul_n(input,-2),-3))))"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(take(sub_n(take([5, -4, -1],1),-3),5))",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(input,1),-3),5))"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(sub_n(take([0, -1, -4],1),-1),4)",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),-1),4)"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = reverse(drop([-1, -5, -1],1))",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-2, -9, -2]",
    "output": "generated_output : list = sub_n([2, -5, 2],4)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -2,
      -9,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-4, 4]))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-2, -3, 1, -3]\noutput : list = [3, 0, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n([-2, -3, 1, -3],-2))",
    "io_inp": [
      -2,
      -3,
      1,
      -3
    ],
    "io_out": [
      3,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-3, 5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(drop([-3, 5, 3],1))",
    "io_inp": [
      -3,
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 2, 2, -1, 3]\noutput : list = [2, 3, 3, 6, 7]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(sort_asc([-2, 2, 2, -1, 3]),-1),5)),5)",
    "io_inp": [
      -2,
      2,
      2,
      -1,
      3
    ],
    "io_out": [
      2,
      3,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(sort_asc(input),-1),5)),5)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [9, 5]",
    "output": "generated_output : list = add_n(reverse([0, 4]),5)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),5)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n(reverse([1, 2]),2)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [1, -5, 1, 4, 1]\noutput : list = [-2, 1, 1, 1, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sort_asc([1, -5, 1, 4, 1]),-1),-2)))",
    "io_inp": [
      1,
      -5,
      1,
      4,
      1
    ],
    "io_out": [
      -2,
      1,
      1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sort_asc(input),-1),-2)))"
  },
  {
    "input": "input : list = [-2, 5, -3, 1, 5]\noutput : list = [-60, -40, 20, 100, 100]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(mul_n([-2, 5, -3, 1, 5],-4))),-5))",
    "io_inp": [
      -2,
      5,
      -3,
      1,
      5
    ],
    "io_out": [
      -60,
      -40,
      20,
      100,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(mul_n(input,-4))),-5))"
  },
  {
    "input": "input : list = [-3, -4, -1, -4, -1]\noutput : list = [-12, -12, -9, -3, -3]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc([-3, -4, -1, -4, -1])),3),1)",
    "io_inp": [
      -3,
      -4,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -9,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(input)),3),1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [7, -2]",
    "output": "generated_output : list = sub_n([4, -5],-3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [0, 4, 1, -5]\noutput : list = [0, 4]",
    "output": "generated_output : list = take([0, 4, 1, -5],2)",
    "io_inp": [
      0,
      4,
      1,
      -5
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -2, 2, 3, 4]\noutput : list = [5, 4, 4, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_asc([2, -2, 2, 3, 4]),-2)),4))",
    "io_inp": [
      2,
      -2,
      2,
      3,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(sort_asc(input),-2)),4))"
  },
  {
    "input": "input : list = [4, 0, -2, -2, -3, -1]\noutput : list = [20, 0, -5, -10, -10, -15]",
    "output": "generated_output : list = sort_des(mul_n([4, 0, -2, -2, -3, -1],5))",
    "io_inp": [
      4,
      0,
      -2,
      -2,
      -3,
      -1
    ],
    "io_out": [
      20,
      0,
      -5,
      -10,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [1, 2, 4, 1, 1]\noutput : list = [16, 12, 10, 10, 10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sub_n([1, 2, 4, 1, 1],-4))),2))",
    "io_inp": [
      1,
      2,
      4,
      1,
      1
    ],
    "io_out": [
      16,
      12,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sub_n(input,-4))),2))"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [92, -28, -88]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(mul_n([-1, -4, 5],-5),-2)),19),-4)",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      92,
      -28,
      -88
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(mul_n(input,-5),-2)),19),-4)"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(take([0, -2, 4],1),4),1),-5))",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(take(input,1),4),1),-5))"
  },
  {
    "input": "input : list = [4, 0, -3, -3]\noutput : list = [-3, -3, 0, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n(sub_n([4, 0, -3, -3],3),1)),4))",
    "io_inp": [
      4,
      0,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(sub_n(input,3),1)),4))"
  },
  {
    "input": "input : list = [-3, -2, -5, 1, 3, -1]\noutput : list = [-1, 3, 1, -5, -2, -3]",
    "output": "generated_output : list = reverse([-3, -2, -5, 1, 3, -1])",
    "io_inp": [
      -3,
      -2,
      -5,
      1,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      1,
      -5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-40, -24]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n([1, 3],2),4),-2))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -40,
      -24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(input,2),4),-2))"
  },
  {
    "input": "input : list = [5, 1, 1, -1]\noutput : list = [9, 5, 5, 3]",
    "output": "generated_output : list = take(sub_n([5, 1, 1, -1],-4),21)",
    "io_inp": [
      5,
      1,
      1,
      -1
    ],
    "io_out": [
      9,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),21)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-31, -31]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n(sub_n([5, 5],-2),2),2),-2),-3)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -31,
      -31
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(sub_n(input,-2),2),2),-2),-3)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des([2, -4])",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4, -2, -2, -4]\noutput : list = [20, 4, 12, 12, 4]",
    "output": "generated_output : list = mul_n(mul_n(add_n([0, -4, -2, -2, -4],5),1),4)",
    "io_inp": [
      0,
      -4,
      -2,
      -2,
      -4
    ],
    "io_out": [
      20,
      4,
      12,
      12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,5),1),4)"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [3, 19, 3]",
    "output": "generated_output : list = add_n(mul_n(sub_n([3, -5, 3],3),-2),3)",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      19,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,3),-2),3)"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [4, 9, 2]",
    "output": "generated_output : list = add_n([-1, 4, -3],5)",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      4,
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [1, -3, 2, 2]\noutput : list = [-3, 1, 2, 2]",
    "output": "generated_output : list = take(sort_asc([1, -3, 2, 2]),5)",
    "io_inp": [
      1,
      -3,
      2,
      2
    ],
    "io_out": [
      -3,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),5)"
  },
  {
    "input": "input : list = [4, 3, 3, 1, -1, 2]\noutput : list = [1, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(take([4, 3, 3, 1, -1, 2],4),10))))",
    "io_inp": [
      4,
      3,
      3,
      1,
      -1,
      2
    ],
    "io_out": [
      1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(take(input,4),10))))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [26, 18]",
    "output": "generated_output : list = reverse(mul_n(sub_n(mul_n(mul_n([1, 2],-4),1),5),-2))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      26,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(mul_n(mul_n(input,-4),1),5),-2))"
  },
  {
    "input": "input : list = [-5, -5, 5, 3, 4, 4]\noutput : list = [10, 10, -10, -6, -8, -8]",
    "output": "generated_output : list = mul_n([-5, -5, 5, 3, 4, 4],-2)",
    "io_inp": [
      -5,
      -5,
      5,
      3,
      4,
      4
    ],
    "io_out": [
      10,
      10,
      -10,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, -5, 3, 0]\noutput : list = [12, 72, -24, 12]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(sub_n([0, -5, 3, 0],1))),-3),4)",
    "io_inp": [
      0,
      -5,
      3,
      0
    ],
    "io_out": [
      12,
      72,
      -24,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(sub_n(input,1))),-3),4)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [22, 37]",
    "output": "generated_output : list = add_n(reverse(sub_n(mul_n(sub_n([5, 2],-1),5),-4)),3)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      22,
      37
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(mul_n(sub_n(input,-1),5),-4)),3)"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [5, 4, -2]",
    "output": "generated_output : list = sort_des(reverse([4, 5, -2]))",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 4, 4]\noutput : list = [-1, 4, 4]",
    "output": "generated_output : list = mul_n([-1, 4, 4],1)",
    "io_inp": [
      -1,
      4,
      4
    ],
    "io_out": [
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -2, -1, 4]\noutput : list = [4, 1, -1, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(reverse([1, -2, -1, 4])))))",
    "io_inp": [
      1,
      -2,
      -1,
      4
    ],
    "io_out": [
      4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [3, -3]",
    "output": "generated_output : list = mul_n([1, -1],3)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-5, -3, 4, -2]\noutput : list = [8, -4, -6, -10]",
    "output": "generated_output : list = mul_n(sort_des([-5, -3, 4, -2]),2)",
    "io_inp": [
      -5,
      -3,
      4,
      -2
    ],
    "io_out": [
      8,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [2, -5, -4, -4, -5, 5]\noutput : list = [11, 1]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(drop([2, -5, -4, -4, -5, 5],4),3),-3)),39)",
    "io_inp": [
      2,
      -5,
      -4,
      -4,
      -5,
      5
    ],
    "io_out": [
      11,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(drop(input,4),3),-3)),39)"
  },
  {
    "input": "input : list = [5, -4, -4, -5, 5]\noutput : list = [5, -5, -4, -4, 5]",
    "output": "generated_output : list = reverse([5, -4, -4, -5, 5])",
    "io_inp": [
      5,
      -4,
      -4,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      -4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(take(sub_n(add_n(add_n([3, -2],-3),1),-1),8),40)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(add_n(input,-3),1),-1),8),40)"
  },
  {
    "input": "input : list = [-1, -3, 5, 1, 0, -1]\noutput : list = [12, 6, 6, 3, 0, -12]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(sort_asc([-1, -3, 5, 1, 0, -1]),-3)),3))",
    "io_inp": [
      -1,
      -3,
      5,
      1,
      0,
      -1
    ],
    "io_out": [
      12,
      6,
      6,
      3,
      0,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(sort_asc(input),-3)),3))"
  },
  {
    "input": "input : list = [1, -2, 5, -4, -2]\noutput : list = [-4, -2, -2, 1, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(sort_des([1, -2, 5, -4, -2]),19))),29)",
    "io_inp": [
      1,
      -2,
      5,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(sort_des(input),19))),29)"
  },
  {
    "input": "input : list = [-1, -2, -3]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = reverse([-1, -2, -3])",
    "io_inp": [
      -1,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, -5, 5, -2, -3]\noutput : list = [-4, -5, 5, -2, -3]",
    "output": "generated_output : list = drop([-3, -4, -5, 5, -2, -3],1)",
    "io_inp": [
      -3,
      -4,
      -5,
      5,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -5,
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 13]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(mul_n([-5, 4],2)),5),6))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(mul_n(input,2)),5),6))"
  },
  {
    "input": "input : list = [2, 5, 5, -2, 5, 0]\noutput : list = [10, 0, -10, -25, -25, -25]",
    "output": "generated_output : list = sort_des(mul_n(reverse(take(sort_asc([2, 5, 5, -2, 5, 0]),25)),-5))",
    "io_inp": [
      2,
      5,
      5,
      -2,
      5,
      0
    ],
    "io_out": [
      10,
      0,
      -10,
      -25,
      -25,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(take(sort_asc(input),25)),-5))"
  },
  {
    "input": "input : list = [2, 2, 0, -3, -4, -4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(take([2, 2, 0, -3, -4, -4],2),-3)),-1))",
    "io_inp": [
      2,
      2,
      0,
      -3,
      -4,
      -4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(take(input,2),-3)),-1))"
  },
  {
    "input": "input : list = [1, 3, 3, 4, -4]\noutput : list = [-3, 2, 4, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(reverse([1, 3, 3, 4, -4]),21),1)),1)",
    "io_inp": [
      1,
      3,
      3,
      4,
      -4
    ],
    "io_out": [
      -3,
      2,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(reverse(input),21),1)),1)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-9, -2]",
    "output": "generated_output : list = add_n(take(sort_asc([2, -5]),3),-4)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -9,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),3),-4)"
  },
  {
    "input": "input : list = [1, -3, 3, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take([1, -3, 3, 1],1))",
    "io_inp": [
      1,
      -3,
      3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, -4, -5, -5, -1, -2]\noutput : list = [-1, -1, -2, -4, -5, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(sort_des([-1, -4, -5, -5, -1, -2])))))",
    "io_inp": [
      -1,
      -4,
      -5,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, -3, 5, -2, 2, 4]\noutput : list = [1, -3, 5, -2, 2, 4]",
    "output": "generated_output : list = add_n(add_n([1, -3, 5, -2, 2, 4],5),-5)",
    "io_inp": [
      1,
      -3,
      5,
      -2,
      2,
      4
    ],
    "io_out": [
      1,
      -3,
      5,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-5)"
  },
  {
    "input": "input : list = [2, -5, -2, -4]\noutput : list = [8, 24, 0, 56]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n([2, -5, -2, -4],-5),2),4))",
    "io_inp": [
      2,
      -5,
      -2,
      -4
    ],
    "io_out": [
      8,
      24,
      0,
      56
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(input,-5),2),4))"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [-16, -8, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(mul_n([-3, -2, -5],4),16)),2),2)",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      -16,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(mul_n(input,4),16)),2),2)"
  },
  {
    "input": "input : list = [5, -5, -5, 3, 0]\noutput : list = [-4, -4, 1, 4, 6]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(add_n([5, -5, -5, 3, 0],-3)),1),-4))",
    "io_inp": [
      5,
      -5,
      -5,
      3,
      0
    ],
    "io_out": [
      -4,
      -4,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(add_n(input,-3)),1),-4))"
  },
  {
    "input": "input : list = [0, -5, -2, -1, 1]\noutput : list = [5, 0, -5, -10, -25]",
    "output": "generated_output : list = mul_n(sort_des([0, -5, -2, -1, 1]),5)",
    "io_inp": [
      0,
      -5,
      -2,
      -1,
      1
    ],
    "io_out": [
      5,
      0,
      -5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [10, 0, -5]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_asc([2, -1, 1]),-4),2),5),-5)",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      10,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_asc(input),-4),2),5),-5)"
  },
  {
    "input": "input : list = [-2, -5, 5, -1]\noutput : list = [5, -1, -2, -5]",
    "output": "generated_output : list = reverse(take(sort_asc([-2, -5, 5, -1]),22))",
    "io_inp": [
      -2,
      -5,
      5,
      -1
    ],
    "io_out": [
      5,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),22))"
  },
  {
    "input": "input : list = [-5, 3, -4, 5, 2]\noutput : list = [-5, -4, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([-5, 3, -4, 5, 2])",
    "io_inp": [
      -5,
      3,
      -4,
      5,
      2
    ],
    "io_out": [
      -5,
      -4,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, 2, -5, 1, 2]\noutput : list = [-8, -6, -4, -2, -1, -1]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(sort_des([-1, -3, 2, -5, 1, 2]),5),-1),3))",
    "io_inp": [
      -1,
      -3,
      2,
      -5,
      1,
      2
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(sort_des(input),5),-1),3))"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [-32, -28, -8]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_asc([1, -4, -5]),-4),-5),-2),4)",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      -32,
      -28,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_asc(input),-4),-5),-2),4)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n([5, 0, 5],2))),3)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(input,2))),3)"
  },
  {
    "input": "input : list = [2, 2, 0, 3, 5]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n(mul_n(take([2, 2, 0, 3, 5],2),2),-4)",
    "io_inp": [
      2,
      2,
      0,
      3,
      5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,2),2),-4)"
  },
  {
    "input": "input : list = [-2, -5, -3, 2, 0]\noutput : list = [0, -2, -4, -5, -7]",
    "output": "generated_output : list = take(reverse(take(sort_asc(add_n([-2, -5, -3, 2, 0],-2)),21)),23)",
    "io_inp": [
      -2,
      -5,
      -3,
      2,
      0
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(add_n(input,-2)),21)),23)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-8, 12]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(sort_asc([2, -3]),10)),4),-1)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(sort_asc(input),10)),4),-1)"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-9]",
    "output": "generated_output : list = take(sub_n(sub_n(drop(drop([4, -3, -3],1),1),5),1),17)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(drop(drop(input,1),1),5),1),17)"
  },
  {
    "input": "input : list = [3, -4, -5, -5, -3]\noutput : list = [32, 8, 4, 0, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(sub_n([3, -4, -5, -5, -3],-1),4),4),40))",
    "io_inp": [
      3,
      -4,
      -5,
      -5,
      -3
    ],
    "io_out": [
      32,
      8,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(sub_n(input,-1),4),4),40))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [11, 12]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(add_n([3, 4],5))),-3),11)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      11,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(add_n(input,5))),-3),11)"
  },
  {
    "input": "input : list = [-4, -4, 5, -2, 0]\noutput : list = [0, -5, -7, -9, -9]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_des(sort_asc([-4, -4, 5, -2, 0])))),-5)",
    "io_inp": [
      -4,
      -4,
      5,
      -2,
      0
    ],
    "io_out": [
      0,
      -5,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_des(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [0, 2, 1, 0, 1]\noutput : list = [2, 1, 1, 0, 0]",
    "output": "generated_output : list = reverse(sort_asc([0, 2, 1, 0, 1]))",
    "io_inp": [
      0,
      2,
      1,
      0,
      1
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -2, -4]\noutput : list = [-7, -5, -7]",
    "output": "generated_output : list = sub_n([-4, -2, -4],3)",
    "io_inp": [
      -4,
      -2,
      -4
    ],
    "io_out": [
      -7,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, 0, 1, -5, 5]\noutput : list = [0, -30]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n(drop([-5, 0, 1, -5, 5],3),5)),3))",
    "io_inp": [
      -5,
      0,
      1,
      -5,
      5
    ],
    "io_out": [
      0,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(drop(input,3),5)),3))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-7, -17]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(sort_asc([1, 3]),-5),2)))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -7,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(mul_n(sort_asc(input),-5),2)))"
  },
  {
    "input": "input : list = [2, 2, -1, 5, 3, 0]\noutput : list = [0, -2, -3, -3, -5, -6]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(sort_asc([2, 2, -1, 5, 3, 0]))),-5),23)",
    "io_inp": [
      2,
      2,
      -1,
      5,
      3,
      0
    ],
    "io_out": [
      0,
      -2,
      -3,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(sort_asc(input))),-5),23)"
  },
  {
    "input": "input : list = [-1, -5, -5, -4, 1, -5]\noutput : list = [5, 3, 0, -1, -1, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(mul_n([-1, -5, -5, -4, 1, -5],1)))),-4)",
    "io_inp": [
      -1,
      -5,
      -5,
      -4,
      1,
      -5
    ],
    "io_out": [
      5,
      3,
      0,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(mul_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(add_n([3, 1],-5),1))))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(add_n(input,-5),1))))"
  },
  {
    "input": "input : list = [4, -3, 2]\noutput : list = [6, 4, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(add_n(sort_des([4, -3, 2]),-1))),3)",
    "io_inp": [
      4,
      -3,
      2
    ],
    "io_out": [
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(add_n(sort_des(input),-1))),3)"
  },
  {
    "input": "input : list = [2, -1, -4, 2]\noutput : list = [3, 3, 6, 9]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(sub_n([2, -1, -4, 2],5),-1),21),7))",
    "io_inp": [
      2,
      -1,
      -4,
      2
    ],
    "io_out": [
      3,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(sub_n(input,5),-1),21),7))"
  },
  {
    "input": "input : list = [5, 2, -2, 2]\noutput : list = [6, 3, 3, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sub_n([5, 2, -2, 2],2),-2)),-1))",
    "io_inp": [
      5,
      2,
      -2,
      2
    ],
    "io_out": [
      6,
      3,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sub_n(input,2),-2)),-1))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-21, -30]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(add_n([0, -3],-3)),-3),1),3)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -21,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(add_n(input,-3)),-3),1),3)"
  },
  {
    "input": "input : list = [-4, 3, 0, 1, 4, -3]\noutput : list = [-60, -35, 40, 65, 115, 140]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sub_n([-4, 3, 0, 1, 4, -3],-2)),5),2),5)",
    "io_inp": [
      -4,
      3,
      0,
      1,
      4,
      -3
    ],
    "io_out": [
      -60,
      -35,
      40,
      65,
      115,
      140
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sub_n(input,-2)),5),2),5)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc([-5, -1, 1]),1),4)),2)",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(sort_asc(input),1),4)),2)"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [-11, -5, -4]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_des([-5, 1, 2])),2),-4))",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      -11,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(reverse(sort_des(input)),2),-4))"
  },
  {
    "input": "input : list = [-5, 5, 4, -1]\noutput : list = [0, 4, 9, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(add_n([-5, 5, 4, -1],-3),4),4)))",
    "io_inp": [
      -5,
      5,
      4,
      -1
    ],
    "io_out": [
      0,
      4,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(add_n(input,-3),4),4)))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [20, 15]",
    "output": "generated_output : list = reverse(mul_n([3, 4],5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      20,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [5, 4, 4, -4, 3]\noutput : list = [12, -9, -12, -12]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(drop([5, 4, 4, -4, 3],1),-3))))",
    "io_inp": [
      5,
      4,
      4,
      -4,
      3
    ],
    "io_out": [
      12,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(drop(input,1),-3))))"
  },
  {
    "input": "input : list = [3, -5, 0]\noutput : list = [-5, 0, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc([3, -5, 0])),23)",
    "io_inp": [
      3,
      -5,
      0
    ],
    "io_out": [
      -5,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),23)"
  },
  {
    "input": "input : list = [4, 4, 2, -3, 1]\noutput : list = [-4, 0, 1, 3, 3]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(sort_des([4, 4, 2, -3, 1]),1),2)),47)",
    "io_inp": [
      4,
      4,
      2,
      -3,
      1
    ],
    "io_out": [
      -4,
      0,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(sort_des(input),1),2)),47)"
  },
  {
    "input": "input : list = [0, -3, 4, 3, -4]\noutput : list = [-3, -2, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(reverse([0, -3, 4, 3, -4]),1))))",
    "io_inp": [
      0,
      -3,
      4,
      3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [5, 0, 4, -5, 1]\noutput : list = [7, 6, 3, 2, -3]",
    "output": "generated_output : list = sort_des(add_n([5, 0, 4, -5, 1],2))",
    "io_inp": [
      5,
      0,
      4,
      -5,
      1
    ],
    "io_out": [
      7,
      6,
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [1, 0, 5, 3, 4, -1]\noutput : list = [-1, 0, 1, 3, 4, 5]",
    "output": "generated_output : list = take(sort_asc([1, 0, 5, 3, 4, -1]),23)",
    "io_inp": [
      1,
      0,
      5,
      3,
      4,
      -1
    ],
    "io_out": [
      -1,
      0,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),23)"
  },
  {
    "input": "input : list = [-1, -5, -4, 0]\noutput : list = [3, 2, -1, -2]",
    "output": "generated_output : list = sort_des(add_n([-1, -5, -4, 0],3))",
    "io_inp": [
      -1,
      -5,
      -4,
      0
    ],
    "io_out": [
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-1, -8, -8]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sub_n([4, -3, -3],5)))))",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sub_n(input,5)))))"
  },
  {
    "input": "input : list = [1, -5, 2]\noutput : list = [4, -8, 6]",
    "output": "generated_output : list = sub_n(add_n(sub_n(add_n(mul_n([1, -5, 2],2),-2),-3),3),2)",
    "io_inp": [
      1,
      -5,
      2
    ],
    "io_out": [
      4,
      -8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(add_n(mul_n(input,2),-2),-3),3),2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [8, 7]",
    "output": "generated_output : list = add_n(sort_des(sort_des([4, 5])),3)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),3)"
  },
  {
    "input": "input : list = [-4, -1, 4, 1, -3, -5]\noutput : list = [49, 39, 29, 9, -11, -41]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sort_des([-4, -1, 4, 1, -3, -5]),5)),-2),-1)",
    "io_inp": [
      -4,
      -1,
      4,
      1,
      -3,
      -5
    ],
    "io_out": [
      49,
      39,
      29,
      9,
      -11,
      -41
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(sort_des(input),5)),-2),-1)"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [17, 17, -23]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(mul_n([-4, 0, 0],-2),3),-5),2))",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      17,
      17,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(mul_n(input,-2),3),-5),2))"
  },
  {
    "input": "input : list = [-4, 3, -4, 2, 5, 3]\noutput : list = [21, 17, 17, 15, 3, 3]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(mul_n([-4, 3, -4, 2, 5, 3],2)),4),-4),3)",
    "io_inp": [
      -4,
      3,
      -4,
      2,
      5,
      3
    ],
    "io_out": [
      21,
      17,
      17,
      15,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(mul_n(input,2)),4),-4),3)"
  },
  {
    "input": "input : list = [-4, 0, 4, -2]\noutput : list = [-32, -8]",
    "output": "generated_output : list = mul_n(take(take(add_n(drop([-4, 0, 4, -2],2),4),28),26),-4)",
    "io_inp": [
      -4,
      0,
      4,
      -2
    ],
    "io_out": [
      -32,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(drop(input,2),4),28),26),-4)"
  },
  {
    "input": "input : list = [-5, 3, 1, -4, 0]\noutput : list = [0, 1, 5, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(take(sub_n([-5, 3, 1, -4, 0],-4),24),1))",
    "io_inp": [
      -5,
      3,
      1,
      -4,
      0
    ],
    "io_out": [
      0,
      1,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sub_n(input,-4),24),1))"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(reverse([-3, 2, -4])))),-1)",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-25, -10]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(sub_n([-2, 1],3)),7)),5)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(sub_n(input,3)),7)),5)"
  },
  {
    "input": "input : list = [1, 4, 4]\noutput : list = [-2, -8, -8]",
    "output": "generated_output : list = reverse(reverse(mul_n([1, 4, 4],-2)))",
    "io_inp": [
      1,
      4,
      4
    ],
    "io_out": [
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [-1, -1, -4, -1, 4, 3]\noutput : list = [4, 3, -1, -1, -1, -4]",
    "output": "generated_output : list = sort_des([-1, -1, -4, -1, 4, 3])",
    "io_inp": [
      -1,
      -1,
      -4,
      -1,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      -1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = reverse(take(sort_des(drop([-4, 3, -2],1)),22))",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(drop(input,1)),22))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc([-5, 2])",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1, -5, 4, -5]\noutput : list = [-24, 1, 6, 21, 21]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([-2, -1, -5, 4, -5],-5)),4)",
    "io_inp": [
      -2,
      -1,
      -5,
      4,
      -5
    ],
    "io_out": [
      -24,
      1,
      6,
      21,
      21
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,-5)),4)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(sort_asc([5, 5]),1),3),1))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(sort_asc(input),1),3),1))"
  },
  {
    "input": "input : list = [2, -5, 4]\noutput : list = [-23, 5, -31]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(add_n([2, -5, 4],4),14),2),-2),-1)",
    "io_inp": [
      2,
      -5,
      4
    ],
    "io_out": [
      -23,
      5,
      -31
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(add_n(input,4),14),2),-2),-1)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [0, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_asc([1, -2, 3])),2)))",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [1, -5, 3, -5, 0, -4]\noutput : list = [16, 4, -12, -16]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(drop([1, -5, 3, -5, 0, -4],2),1),4)))",
    "io_inp": [
      1,
      -5,
      3,
      -5,
      0,
      -4
    ],
    "io_out": [
      16,
      4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(drop(input,2),1),4)))"
  },
  {
    "input": "input : list = [-5, 3, -5]\noutput : list = [-1, 7]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(drop([-5, 3, -5],1),1),-3)),6)",
    "io_inp": [
      -5,
      3,
      -5
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(drop(input,1),1),-3)),6)"
  },
  {
    "input": "input : list = [-4, 2, 3, 3, -3, -4]\noutput : list = [-4, -4, -3, 2, 3, 3]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(reverse([-4, 2, 3, 3, -3, -4]))),1),57)",
    "io_inp": [
      -4,
      2,
      3,
      3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(reverse(input))),1),57)"
  },
  {
    "input": "input : list = [-4, -5, -3, 5, 5, -1]\noutput : list = [-13, -12, -11, -9, -3, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(add_n([-4, -5, -3, 5, 5, -1],-5)))),3)",
    "io_inp": [
      -4,
      -5,
      -3,
      5,
      5,
      -1
    ],
    "io_out": [
      -13,
      -12,
      -11,
      -9,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(add_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [-5, 5, 5, 4, -2, 5]\noutput : list = [50, 20, -40, -50, -50, -50]",
    "output": "generated_output : list = mul_n(take(take(sort_des(mul_n([-5, 5, 5, 4, -2, 5],-2)),9),20),5)",
    "io_inp": [
      -5,
      5,
      5,
      4,
      -2,
      5
    ],
    "io_out": [
      50,
      20,
      -40,
      -50,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(mul_n(input,-2)),9),20),5)"
  },
  {
    "input": "input : list = [-1, 0, 4, -5]\noutput : list = [-5, -1, 0, 4]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-1, 0, 4, -5])),24)",
    "io_inp": [
      -1,
      0,
      4,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),24)"
  },
  {
    "input": "input : list = [2, -4, -4, -4, -3, 2]\noutput : list = [16, 16, 12, -8]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(drop([2, -4, -4, -4, -3, 2],2)),-4),39))",
    "io_inp": [
      2,
      -4,
      -4,
      -4,
      -3,
      2
    ],
    "io_out": [
      16,
      16,
      12,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(drop(input,2)),-4),39))"
  },
  {
    "input": "input : list = [4, 1, 1, 0, 1]\noutput : list = [4, 5, 5, 5, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(add_n([4, 1, 1, 0, 1],3))),1))",
    "io_inp": [
      4,
      1,
      1,
      0,
      1
    ],
    "io_out": [
      4,
      5,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(add_n(input,3))),1))"
  },
  {
    "input": "input : list = [5, -1, -1, 5, 0]\noutput : list = [6, 6, 1, -24, -24]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(mul_n([5, -1, -1, 5, 0],-5)),-1)),39)",
    "io_inp": [
      5,
      -1,
      -1,
      5,
      0
    ],
    "io_out": [
      6,
      6,
      1,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(mul_n(input,-5)),-1)),39)"
  },
  {
    "input": "input : list = [-1, 5, -1, 4]\noutput : list = [225, 180, -45, -45]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_asc([-1, 5, -1, 4]),-3),-5),3))",
    "io_inp": [
      -1,
      5,
      -1,
      4
    ],
    "io_out": [
      225,
      180,
      -45,
      -45
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_asc(input),-3),-5),3))"
  },
  {
    "input": "input : list = [2, 2, -1, -2, 3]\noutput : list = [-8, -8]",
    "output": "generated_output : list = mul_n(reverse(reverse(sub_n(take([2, 2, -1, -2, 3],2),4))),4)",
    "io_inp": [
      2,
      2,
      -1,
      -2,
      3
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sub_n(take(input,2),4))),4)"
  },
  {
    "input": "input : list = [-1, 5, -2, 4]\noutput : list = [5, -25, 10, -20]",
    "output": "generated_output : list = mul_n([-1, 5, -2, 4],-5)",
    "io_inp": [
      -1,
      5,
      -2,
      4
    ],
    "io_out": [
      5,
      -25,
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 1, -1, -1, -3]\noutput : list = [2, 1, -1, -1, -3]",
    "output": "generated_output : list = sort_des([2, 1, -1, -1, -3])",
    "io_inp": [
      2,
      1,
      -1,
      -1,
      -3
    ],
    "io_out": [
      2,
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [-12, -12, -8]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n([-2, -4, -4],4),2)),2)",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(input,4),2)),2)"
  },
  {
    "input": "input : list = [-4, -3, 3, 1, -4]\noutput : list = [3, 1, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-4, -3, 3, 1, -4])",
    "io_inp": [
      -4,
      -3,
      3,
      1,
      -4
    ],
    "io_out": [
      3,
      1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5, 4, -5, -5, -4]\noutput : list = [30, 30, 24, -30, -30, -24]",
    "output": "generated_output : list = mul_n(mul_n([5, 5, 4, -5, -5, -4],-2),-3)",
    "io_inp": [
      5,
      5,
      4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      30,
      30,
      24,
      -30,
      -30,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),-3)"
  },
  {
    "input": "input : list = [-1, -1, 3, -5]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, 3, -5],1)",
    "io_inp": [
      -1,
      -1,
      3,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 3, -2, 2, -1, 5]\noutput : list = [0, -1, -6, -2, -5, 1]",
    "output": "generated_output : list = take(sub_n([4, 3, -2, 2, -1, 5],4),22)",
    "io_inp": [
      4,
      3,
      -2,
      2,
      -1,
      5
    ],
    "io_out": [
      0,
      -1,
      -6,
      -2,
      -5,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,4),22)"
  },
  {
    "input": "input : list = [-5, 3, -2]\noutput : list = [-5, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, 3, -2]))",
    "io_inp": [
      -5,
      3,
      -2
    ],
    "io_out": [
      -5,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -1, 1, 5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(take([-3, -1, 1, 5],1))",
    "io_inp": [
      -3,
      -1,
      1,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, -3, 0, -4, -3]\noutput : list = [5, 9, 12, 12, 13]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sort_asc([4, -3, 0, -4, -3]),-1),-5),-4))",
    "io_inp": [
      4,
      -3,
      0,
      -4,
      -3
    ],
    "io_out": [
      5,
      9,
      12,
      12,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sort_asc(input),-1),-5),-4))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [2, -5]",
    "output": "generated_output : list = reverse(reverse(sort_des(sub_n([4, -3],2))))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sub_n(input,2))))"
  },
  {
    "input": "input : list = [2, 3, 2, 0, 4, -3]\noutput : list = [-302, 398, -2, 198, 298, 198]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(reverse([2, 3, 2, 0, 4, -3]),4),5),5),2)",
    "io_inp": [
      2,
      3,
      2,
      0,
      4,
      -3
    ],
    "io_out": [
      -302,
      398,
      -2,
      198,
      298,
      198
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(reverse(input),4),5),5),2)"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-6, 2, 4]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des([5, -3, -5]),-1)),-1)",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -6,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(input),-1)),-1)"
  },
  {
    "input": "input : list = [-2, -1, 0, -4, -2]\noutput : list = [-6, -8, -4, -5, -6]",
    "output": "generated_output : list = reverse(add_n([-2, -1, 0, -4, -2],-4))",
    "io_inp": [
      -2,
      -1,
      0,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -8,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [0, -2, 4, 1]\noutput : list = [0, 8, -16, -4]",
    "output": "generated_output : list = mul_n([0, -2, 4, 1],-4)",
    "io_inp": [
      0,
      -2,
      4,
      1
    ],
    "io_out": [
      0,
      8,
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, -4, -5, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = sort_des(drop(drop([5, -4, -5, 3],1),1))",
    "io_inp": [
      5,
      -4,
      -5,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(drop(input,1),1))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [1, -4]",
    "output": "generated_output : list = add_n([0, -5],1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, -2, 2, 4, -4]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -2, 2, 4, -4],1)",
    "io_inp": [
      -4,
      -2,
      2,
      4,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [2, 6]",
    "output": "generated_output : list = sub_n([1, 5],-1)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [2, 3, 4]",
    "output": "generated_output : list = sort_asc(take(take(add_n([-2, -3, -1],5),17),9))",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(input,5),17),9))"
  },
  {
    "input": "input : list = [-4, 3, 1, 2]\noutput : list = [17, 12, 7, -18]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(mul_n([-4, 3, 1, 2],5)),1)),3)",
    "io_inp": [
      -4,
      3,
      1,
      2
    ],
    "io_out": [
      17,
      12,
      7,
      -18
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(mul_n(input,5)),1)),3)"
  },
  {
    "input": "input : list = [3, -4, 2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -4, 2],1)",
    "io_inp": [
      3,
      -4,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 4, -5, 3, -5]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(take([0, 4, -5, 3, -5],2),1))))",
    "io_inp": [
      0,
      4,
      -5,
      3,
      -5
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(take(input,2),1))))"
  },
  {
    "input": "input : list = [2, -4, 4, -3, -1, -2]\noutput : list = [-4, 4, -3, -1, -2]",
    "output": "generated_output : list = drop([2, -4, 4, -3, -1, -2],1)",
    "io_inp": [
      2,
      -4,
      4,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -4,
      4,
      -3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3, 3, 5, 5, -2]\noutput : list = [9, 9, 7, 7, 4, 2]",
    "output": "generated_output : list = sort_des(add_n([0, 3, 3, 5, 5, -2],4))",
    "io_inp": [
      0,
      3,
      3,
      5,
      5,
      -2
    ],
    "io_out": [
      9,
      9,
      7,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,4))"
  },
  {
    "input": "input : list = [-3, -5, -2, 1, 5, 3]\noutput : list = [12, 14, 10, 7, 4, 6]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n([-3, -5, -2, 1, 5, 3],4),-1),-4))",
    "io_inp": [
      -3,
      -5,
      -2,
      1,
      5,
      3
    ],
    "io_out": [
      12,
      14,
      10,
      7,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(input,4),-1),-4))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [3, -6]",
    "output": "generated_output : list = mul_n([-1, 2],-3)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(reverse([0, -3])),3)))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(reverse(input)),3)))"
  },
  {
    "input": "input : list = [-5, 5, 3, -4, -1]\noutput : list = [-5, -4, -1, 3, 5]",
    "output": "generated_output : list = take(sort_asc([-5, 5, 3, -4, -1]),10)",
    "io_inp": [
      -5,
      5,
      3,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),10)"
  },
  {
    "input": "input : list = [-5, -1, -1, -1, 4, 2]\noutput : list = [-1, -1, -1, -5]",
    "output": "generated_output : list = reverse(take([-5, -1, -1, -1, 4, 2],4))",
    "io_inp": [
      -5,
      -1,
      -1,
      -1,
      4,
      2
    ],
    "io_out": [
      -1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,4))"
  },
  {
    "input": "input : list = [4, -2, 4, -2]\noutput : list = [12, 12, 6, 6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_des([4, -2, 4, -2])),-4),4))",
    "io_inp": [
      4,
      -2,
      4,
      -2
    ],
    "io_out": [
      12,
      12,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_des(input)),-4),4))"
  },
  {
    "input": "input : list = [0, -4, 5, -1, 3]\noutput : list = [-6, 6, -21, -3, -15]",
    "output": "generated_output : list = mul_n(sub_n([0, -4, 5, -1, 3],-2),-3)",
    "io_inp": [
      0,
      -4,
      5,
      -1,
      3
    ],
    "io_out": [
      -6,
      6,
      -21,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),-3)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [12, 2, -23]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(mul_n([-2, 5, 0],-5)),-2)),26)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      12,
      2,
      -23
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(mul_n(input,-5)),-2)),26)"
  },
  {
    "input": "input : list = [-5, -4, 1, 4, 2, -2]\noutput : list = [-5, -4, 1]",
    "output": "generated_output : list = take([-5, -4, 1, 4, 2, -2],3)",
    "io_inp": [
      -5,
      -4,
      1,
      4,
      2,
      -2
    ],
    "io_out": [
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, 5, -3]\noutput : list = [5, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(add_n([-2, 5, -3],2),2))))",
    "io_inp": [
      -2,
      5,
      -3
    ],
    "io_out": [
      5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(add_n(input,2),2))))"
  },
  {
    "input": "input : list = [-3, -3, 4, -3]\noutput : list = [175, 0, 0, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sort_asc([-3, -3, 4, -3]),-3)),-5),-5)",
    "io_inp": [
      -3,
      -3,
      4,
      -3
    ],
    "io_out": [
      175,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(sort_asc(input),-3)),-5),-5)"
  },
  {
    "input": "input : list = [-3, -3, -2]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(reverse([-3, -3, -2]),14),-1)),-3)",
    "io_inp": [
      -3,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(reverse(input),14),-1)),-3)"
  },
  {
    "input": "input : list = [-3, 1, -5, 5, 4]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(take([-3, 1, -5, 5, 4],1),-4)",
    "io_inp": [
      -3,
      1,
      -5,
      5,
      4
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [3, -2, 0, 4, -5, -3]\noutput : list = [-12, 8, 0, -16, 20, 12]",
    "output": "generated_output : list = mul_n([3, -2, 0, 4, -5, -3],-4)",
    "io_inp": [
      3,
      -2,
      0,
      4,
      -5,
      -3
    ],
    "io_out": [
      -12,
      8,
      0,
      -16,
      20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, 1, -2, -1, -1]\noutput : list = [-32, -32, -36, -24, -8]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(reverse([5, 1, -2, -1, -1]),21),-2),-5),4)",
    "io_inp": [
      5,
      1,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -32,
      -32,
      -36,
      -24,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(reverse(input),21),-2),-5),4)"
  },
  {
    "input": "input : list = [4, -2, 1]\noutput : list = [5, 20, 35]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(sub_n([4, -2, 1],5))),-5))",
    "io_inp": [
      4,
      -2,
      1
    ],
    "io_out": [
      5,
      20,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(sub_n(input,5))),-5))"
  },
  {
    "input": "input : list = [-1, 4, -3, -3, 1]\noutput : list = [3, 18, -3, -3, 9]",
    "output": "generated_output : list = sub_n(mul_n(add_n([-1, 4, -3, -3, 1],1),3),-3)",
    "io_inp": [
      -1,
      4,
      -3,
      -3,
      1
    ],
    "io_out": [
      3,
      18,
      -3,
      -3,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,1),3),-3)"
  },
  {
    "input": "input : list = [-4, 2, 2, -3, 0]\noutput : list = [2, 2, 0, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([-4, 2, 2, -3, 0])))",
    "io_inp": [
      -4,
      2,
      2,
      -3,
      0
    ],
    "io_out": [
      2,
      2,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-1, -1, 0, -5, 0, 0]\noutput : list = [-8, -4, -4, -3, -3, -3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(sort_des([-1, -1, 0, -5, 0, 0]),3))))",
    "io_inp": [
      -1,
      -1,
      0,
      -5,
      0,
      0
    ],
    "io_out": [
      -8,
      -4,
      -4,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [1, -1, -4, -3, 0, -3]\noutput : list = [3, -3, -12, -9, 0, -9]",
    "output": "generated_output : list = mul_n([1, -1, -4, -3, 0, -3],3)",
    "io_inp": [
      1,
      -1,
      -4,
      -3,
      0,
      -3
    ],
    "io_out": [
      3,
      -3,
      -12,
      -9,
      0,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, -4, 3]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(reverse(take([1, -4, 3],1)))",
    "io_inp": [
      1,
      -4,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [-5, -1, -2, -3, -5, 0]\noutput : list = [-5, -1, -2, -3]",
    "output": "generated_output : list = take([-5, -1, -2, -3, -5, 0],4)",
    "io_inp": [
      -5,
      -1,
      -2,
      -3,
      -5,
      0
    ],
    "io_out": [
      -5,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [5, -4, -2, 4]\noutput : list = [3, 2, -4, -6]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_asc([5, -4, -2, 4])),-1)),1)",
    "io_inp": [
      5,
      -4,
      -2,
      4
    ],
    "io_out": [
      3,
      2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_asc(sort_asc(input)),-1)),1)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = sort_des([1, -1, 1])",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sub_n([4, 4],-1))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-2, -1, -2, -4, -1]\noutput : list = [-2, 1, -2, -8, 1]",
    "output": "generated_output : list = take(sub_n(mul_n([-2, -1, -2, -4, -1],3),-4),16)",
    "io_inp": [
      -2,
      -1,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -2,
      1,
      -2,
      -8,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(input,3),-4),16)"
  },
  {
    "input": "input : list = [0, 5, 3, -5, -3]\noutput : list = [25, 15]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(drop([0, 5, 3, -5, -3],3))),-5))",
    "io_inp": [
      0,
      5,
      3,
      -5,
      -3
    ],
    "io_out": [
      25,
      15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(drop(input,3))),-5))"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [-27, -18, 0]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(sort_des([-4, 2, 5])),4),-3),24)",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      -27,
      -18,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(sort_des(input)),4),-3),24)"
  },
  {
    "input": "input : list = [1, -2, 4, -4]\noutput : list = [-1, 1, 4, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([1, -2, 4, -4]),-3))",
    "io_inp": [
      1,
      -2,
      4,
      -4
    ],
    "io_out": [
      -1,
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [-5, 0, -1, -1, 3]\noutput : list = [-1, 2, 3, 3, 7]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(mul_n([-5, 0, -1, -1, 3],-1)),4),36),-2)",
    "io_inp": [
      -5,
      0,
      -1,
      -1,
      3
    ],
    "io_out": [
      -1,
      2,
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(mul_n(input,-1)),4),36),-2)"
  },
  {
    "input": "input : list = [-5, 1, 4, -5, 1]\noutput : list = [-5, -5, 1, 1, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take(sort_des([-5, 1, 4, -5, 1]),10))))",
    "io_inp": [
      -5,
      1,
      4,
      -5,
      1
    ],
    "io_out": [
      -5,
      -5,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(sort_des(input),10))))"
  },
  {
    "input": "input : list = [0, -1, -2, 3, -3]\noutput : list = [-5, -6, -1, -7]",
    "output": "generated_output : list = take(add_n(drop([0, -1, -2, 3, -3],1),-4),9)",
    "io_inp": [
      0,
      -1,
      -2,
      3,
      -3
    ],
    "io_out": [
      -5,
      -6,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,1),-4),9)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [104, -76]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(mul_n([4, -5],-5),1),4),8))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      104,
      -76
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(mul_n(input,-5),1),4),8))"
  },
  {
    "input": "input : list = [0, -5, -5, 1, -4]\noutput : list = [-18, -18, -15, -3, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(add_n([0, -5, -5, 1, -4],-1)))),3)",
    "io_inp": [
      0,
      -5,
      -5,
      1,
      -4
    ],
    "io_out": [
      -18,
      -18,
      -15,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(add_n(input,-1)))),3)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-10, -2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(take(sort_asc([4, -4]),15)),1),5)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(take(sort_asc(input),15)),1),5)"
  },
  {
    "input": "input : list = [3, -4, -5, 4, 5, 2]\noutput : list = [1, -6, -7, 2, 3, 0]",
    "output": "generated_output : list = add_n([3, -4, -5, 4, 5, 2],-2)",
    "io_inp": [
      3,
      -4,
      -5,
      4,
      5,
      2
    ],
    "io_out": [
      1,
      -6,
      -7,
      2,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-9, 12]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(reverse([-3, 4]))),3))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(reverse(input))),3))"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take([-3, 4, -3],1))))",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(input,1))))"
  },
  {
    "input": "input : list = [2, -4, 5]\noutput : list = [7, 4, -2]",
    "output": "generated_output : list = take(take(add_n(sort_des([2, -4, 5]),2),8),30)",
    "io_inp": [
      2,
      -4,
      5
    ],
    "io_out": [
      7,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(input),2),8),30)"
  },
  {
    "input": "input : list = [2, -2, 5, -1, 5]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(mul_n(take([2, -2, 5, -1, 5],1),-4),-3)",
    "io_inp": [
      2,
      -2,
      5,
      -1,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,1),-4),-3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = reverse([4, -2])",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, -2, 5, -3, 5]\noutput : list = [-40, -40, -60, -200, -200, -200]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(add_n(sort_des([-3, 5, -2, 5, -3, 5]),5),-4)),5)",
    "io_inp": [
      -3,
      5,
      -2,
      5,
      -3,
      5
    ],
    "io_out": [
      -40,
      -40,
      -60,
      -200,
      -200,
      -200
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(add_n(sort_des(input),5),-4)),5)"
  },
  {
    "input": "input : list = [5, -5, -3, 4, 0]\noutput : list = [0, 60, -45, -75, 75]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n([5, -5, -3, 4, 0],5),3))))",
    "io_inp": [
      5,
      -5,
      -3,
      4,
      0
    ],
    "io_out": [
      0,
      60,
      -45,
      -75,
      75
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n(input,5),3))))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(take(sort_asc([-2, -2]),10),-2)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),10),-2)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des([4, 0])",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -3, 3, 4, 4, 5]\noutput : list = [5, 4, 4, 3, -3, 5]",
    "output": "generated_output : list = reverse([5, -3, 3, 4, 4, 5])",
    "io_inp": [
      5,
      -3,
      3,
      4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 5, -4],1)",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -4, 0, -5, -2]\noutput : list = [50, -75, 100, 0, 125, 50]",
    "output": "generated_output : list = mul_n(mul_n([-2, 3, -4, 0, -5, -2],-5),5)",
    "io_inp": [
      -2,
      3,
      -4,
      0,
      -5,
      -2
    ],
    "io_out": [
      50,
      -75,
      100,
      0,
      125,
      50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),5)"
  },
  {
    "input": "input : list = [1, 2, 5]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = take(sort_des(take(reverse([1, 2, 5]),4)),24)",
    "io_inp": [
      1,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(input),4)),24)"
  },
  {
    "input": "input : list = [3, 0, 4, -4, 2, 3]\noutput : list = [8, 9]",
    "output": "generated_output : list = sub_n(sort_asc(drop(sort_asc([3, 0, 4, -4, 2, 3]),4)),-5)",
    "io_inp": [
      3,
      0,
      4,
      -4,
      2,
      3
    ],
    "io_out": [
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(drop(sort_asc(input),4)),-5)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = take(sort_asc([-2, 5]),7)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-9, 15]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(mul_n([-5, 3],-3)),3)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -9,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(mul_n(input,-3)),3)))"
  },
  {
    "input": "input : list = [3, 5, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop([3, 5, -2, 4],2)",
    "io_inp": [
      3,
      5,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 2, -1]\noutput : list = [-10, 5, -30]",
    "output": "generated_output : list = reverse(take(add_n(mul_n(mul_n([-5, 2, -1],-5),-1),-5),8))",
    "io_inp": [
      -5,
      2,
      -1
    ],
    "io_out": [
      -10,
      5,
      -30
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(mul_n(input,-5),-1),-5),8))"
  },
  {
    "input": "input : list = [-5, 3, 3, -1, -2, -4]\noutput : list = [-5, -3, -2, 2, 2, -6]",
    "output": "generated_output : list = reverse(sub_n([-5, 3, 3, -1, -2, -4],1))",
    "io_inp": [
      -5,
      3,
      3,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -3,
      -2,
      2,
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [1, 3, -3, 4]\noutput : list = [16, -12, 12, 4]",
    "output": "generated_output : list = mul_n(reverse(mul_n([1, 3, -3, 4],-1)),-4)",
    "io_inp": [
      1,
      3,
      -3,
      4
    ],
    "io_out": [
      16,
      -12,
      12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(input,-1)),-4)"
  },
  {
    "input": "input : list = [0, 2, -4]\noutput : list = [0, -10, 20]",
    "output": "generated_output : list = mul_n([0, 2, -4],-5)",
    "io_inp": [
      0,
      2,
      -4
    ],
    "io_out": [
      0,
      -10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, 1, -2, 2, 5, -4]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = take(take(sub_n(sort_asc([0, 1, -2, 2, 5, -4]),-2),3),24)",
    "io_inp": [
      0,
      1,
      -2,
      2,
      5,
      -4
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(input),-2),3),24)"
  },
  {
    "input": "input : list = [-5, 4, 3, 4, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take([-5, 4, 3, 4, 4],2)",
    "io_inp": [
      -5,
      4,
      3,
      4,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-20, -20]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(add_n([-1, -1],-5),-1)),4),24)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(add_n(input,-5),-1)),4),24)"
  },
  {
    "input": "input : list = [5, -3, -1, 0, -2, 1]\noutput : list = [15, -25, -15, -10, -20, -5]",
    "output": "generated_output : list = mul_n(sub_n([5, -3, -1, 0, -2, 1],2),5)",
    "io_inp": [
      5,
      -3,
      -1,
      0,
      -2,
      1
    ],
    "io_out": [
      15,
      -25,
      -15,
      -10,
      -20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),5)"
  },
  {
    "input": "input : list = [-5, 3, -2, 1]\noutput : list = [4, 2, -1, -4]",
    "output": "generated_output : list = sort_des(take(reverse(sub_n([-5, 3, -2, 1],-1)),31))",
    "io_inp": [
      -5,
      3,
      -2,
      1
    ],
    "io_out": [
      4,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sub_n(input,-1)),31))"
  },
  {
    "input": "input : list = [3, 1, -4, -5, -2]\noutput : list = [66, 54, 36, 24, 18]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sub_n([3, 1, -4, -5, -2],-4),-4),2)),3)",
    "io_inp": [
      3,
      1,
      -4,
      -5,
      -2
    ],
    "io_out": [
      66,
      54,
      36,
      24,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sub_n(sub_n(input,-4),-4),2)),3)"
  },
  {
    "input": "input : list = [0, -2, -3, -1]\noutput : list = [-3, -2, -1, 0]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(reverse([0, -2, -3, -1])),13),19),1)",
    "io_inp": [
      0,
      -2,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(reverse(input)),13),19),1)"
  },
  {
    "input": "input : list = [-4, -4, -4, 0, 4]\noutput : list = [4, 0, -4, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([-4, -4, -4, 0, 4])))",
    "io_inp": [
      -4,
      -4,
      -4,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-2, 5, 1, -4, 1]\noutput : list = [6, 1, 6]",
    "output": "generated_output : list = reverse(sub_n(drop([-2, 5, 1, -4, 1],2),-5))",
    "io_inp": [
      -2,
      5,
      1,
      -4,
      1
    ],
    "io_out": [
      6,
      1,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,2),-5))"
  },
  {
    "input": "input : list = [-4, -2, -2, 0, -1, 4]\noutput : list = [-2, 0, 0, 1, 2, 6]",
    "output": "generated_output : list = add_n(sort_asc([-4, -2, -2, 0, -1, 4]),2)",
    "io_inp": [
      -4,
      -2,
      -2,
      0,
      -1,
      4
    ],
    "io_out": [
      -2,
      0,
      0,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, 0, -1, 3, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = drop([3, 0, -1, 3, -5, -5],4)",
    "io_inp": [
      3,
      0,
      -1,
      3,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [2, 2, -3, -3, -4]\noutput : list = [-4, -3, -3, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, -3, -3, -4])",
    "io_inp": [
      2,
      2,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, -5, -1, -3]\noutput : list = [1, 1, 3, 5, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_asc([-5, 3, -5, -1, -3])),-3),3)",
    "io_inp": [
      -5,
      3,
      -5,
      -1,
      -3
    ],
    "io_out": [
      1,
      1,
      3,
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(input)),-3),3)"
  },
  {
    "input": "input : list = [2, -5, 4, -5]\noutput : list = [-10, -10, -3, -1]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n([2, -5, 4, -5],-1)),-2)),-4)",
    "io_inp": [
      2,
      -5,
      4,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sub_n(input,-1)),-2)),-4)"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse(sub_n(add_n(take([1, 0, -2],1),3),3)),4)",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(add_n(take(input,1),3),3)),4)"
  },
  {
    "input": "input : list = [4, 1, 1, -4, -1]\noutput : list = [-6, -9]",
    "output": "generated_output : list = add_n(add_n(take(reverse(sub_n([4, 1, 1, -4, -1],3)),2),-4),2)",
    "io_inp": [
      4,
      1,
      1,
      -4,
      -1
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(sub_n(input,3)),2),-4),2)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [3, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n([-3, 0],3))),-4),-3)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n(input,3))),-4),-3)"
  },
  {
    "input": "input : list = [2, 4, -5, 0, -1, 0]\noutput : list = [-5, -1, 0, 0, 4]",
    "output": "generated_output : list = sort_asc(drop([2, 4, -5, 0, -1, 0],1))",
    "io_inp": [
      2,
      4,
      -5,
      0,
      -1,
      0
    ],
    "io_out": [
      -5,
      -1,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-4, -4, -5, -3, -5]\noutput : list = [-9, -15]",
    "output": "generated_output : list = sort_des(reverse(reverse(drop(mul_n([-4, -4, -5, -3, -5],3),3))))",
    "io_inp": [
      -4,
      -4,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(drop(mul_n(input,3),3))))"
  },
  {
    "input": "input : list = [-4, -2, 5, 5]\noutput : list = [18, 12, -9, -9]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(sort_des([-4, -2, 5, 5]))),-2),-3)",
    "io_inp": [
      -4,
      -2,
      5,
      5
    ],
    "io_out": [
      18,
      12,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(sort_des(input))),-2),-3)"
  },
  {
    "input": "input : list = [-3, 2, 0, -3, 4, 4]\noutput : list = [4, 4, 2, 0, -3, -3]",
    "output": "generated_output : list = sort_des(take(reverse([-3, 2, 0, -3, 4, 4]),27))",
    "io_inp": [
      -3,
      2,
      0,
      -3,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      2,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),27))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-10, -30]",
    "output": "generated_output : list = mul_n(take(take(sort_asc(add_n([4, 0],2)),5),22),-5)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -10,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_asc(add_n(input,2)),5),22),-5)"
  },
  {
    "input": "input : list = [1, -3, -1, 0, -4, 4]\noutput : list = [48, 12, 0, -48]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(drop([1, -3, -1, 0, -4, 4],2),-4)),3)",
    "io_inp": [
      1,
      -3,
      -1,
      0,
      -4,
      4
    ],
    "io_out": [
      48,
      12,
      0,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(drop(input,2),-4)),3)"
  },
  {
    "input": "input : list = [2, 3, 1, 4, -3]\noutput : list = [1, 0, -1, -2, -6]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([2, 3, 1, 4, -3]),-2),5)",
    "io_inp": [
      2,
      3,
      1,
      4,
      -3
    ],
    "io_out": [
      1,
      0,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-2),5)"
  },
  {
    "input": "input : list = [-4, -1, 1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(add_n(reverse([-4, -1, 1]),-3),2)",
    "io_inp": [
      -4,
      -1,
      1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),-3),2)"
  },
  {
    "input": "input : list = [4, 5, -5, -3, 1, -5]\noutput : list = [-1, 5, 1, -1, 9, 8]",
    "output": "generated_output : list = reverse(add_n([4, 5, -5, -3, 1, -5],4))",
    "io_inp": [
      4,
      5,
      -5,
      -3,
      1,
      -5
    ],
    "io_out": [
      -1,
      5,
      1,
      -1,
      9,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [12]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(sort_des([4, -4]),1),3)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(sort_des(input),1),3)))"
  },
  {
    "input": "input : list = [-3, -1, -3, 0]\noutput : list = [-5, -8]",
    "output": "generated_output : list = take(add_n(add_n(reverse(drop([-3, -1, -3, 0],2)),-3),-2),15)",
    "io_inp": [
      -3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(drop(input,2)),-3),-2),15)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc([-3, 2])",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -5, 5, 3, -1, -5]\noutput : list = [-4, -36, -44]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(add_n([3, -5, 5, 3, -1, -5],4),2),-4),3))",
    "io_inp": [
      3,
      -5,
      5,
      3,
      -1,
      -5
    ],
    "io_out": [
      -4,
      -36,
      -44
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(add_n(input,4),2),-4),3))"
  },
  {
    "input": "input : list = [-3, -1, -5, 3, 1]\noutput : list = [3, 1, -1, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -1, -5, 3, 1])",
    "io_inp": [
      -3,
      -1,
      -5,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0, 3, 1, 3]\noutput : list = [3, 3, 1, 0, 0]",
    "output": "generated_output : list = sort_des([0, 0, 3, 1, 3])",
    "io_inp": [
      0,
      0,
      3,
      1,
      3
    ],
    "io_out": [
      3,
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, 0]\noutput : list = [-6, -5, -5]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(sort_des([1, 1, 0]),5),-4),-3))",
    "io_inp": [
      1,
      1,
      0
    ],
    "io_out": [
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(sort_des(input),5),-4),-3))"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [0, -6, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse(mul_n([-4, -2, 0],1))),3))",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      0,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(mul_n(input,1))),3))"
  },
  {
    "input": "input : list = [4, 5, -1, -5, -2]\noutput : list = [6, 5, 0, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(add_n([4, 5, -1, -5, -2],-2),-4)),-1))",
    "io_inp": [
      4,
      5,
      -1,
      -5,
      -2
    ],
    "io_out": [
      6,
      5,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(add_n(input,-2),-4)),-1))"
  },
  {
    "input": "input : list = [-5, -5, 2, -1, 2]\noutput : list = [10, 10, 6, 3, 3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take(mul_n([-5, -5, 2, -1, 2],-1),24),-4)),-1)",
    "io_inp": [
      -5,
      -5,
      2,
      -1,
      2
    ],
    "io_out": [
      10,
      10,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(mul_n(input,-1),24),-4)),-1)"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = add_n(sort_des([-2, -4, 0]),1)",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-4, -3, -5, -2]\noutput : list = [-6, -5, -4, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(add_n([-4, -3, -5, -2],-3))),-2))",
    "io_inp": [
      -4,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(add_n(input,-3))),-2))"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [24, 16, 16]",
    "output": "generated_output : list = mul_n(add_n(add_n([-4, -2, -2],-3),1),-4)",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      24,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-3),1),-4)"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [-24, -16]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(sort_asc([2, -2, 3]),4)),-2),2)",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      -24,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(sort_asc(input),4)),-2),2)"
  },
  {
    "input": "input : list = [-4, -3, -3, -1]\noutput : list = [-1, -3, -3, -4]",
    "output": "generated_output : list = add_n(add_n(add_n(reverse(sub_n([-4, -3, -3, -1],2)),2),4),-4)",
    "io_inp": [
      -4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(reverse(sub_n(input,2)),2),4),-4)"
  },
  {
    "input": "input : list = [3, 1, 2, -4]\noutput : list = [0, 6]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(drop([3, 1, 2, -4],2)))),-4)",
    "io_inp": [
      3,
      1,
      2,
      -4
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(drop(input,2)))),-4)"
  },
  {
    "input": "input : list = [-1, -3, -5]\noutput : list = [-2, -4, -6]",
    "output": "generated_output : list = add_n([-1, -3, -5],-1)",
    "io_inp": [
      -1,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 5, 4, 5, 5, 5]\noutput : list = [1, 1, 1, 1, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n([1, 5, 4, 5, 5, 5],-4)))",
    "io_inp": [
      1,
      5,
      4,
      5,
      5,
      5
    ],
    "io_out": [
      1,
      1,
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-1, 0, -5, -1]\noutput : list = [-5, -1, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc([-1, 0, -5, -1])),7)))",
    "io_inp": [
      -1,
      0,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc(input)),7)))"
  },
  {
    "input": "input : list = [2, 1, -1, -3]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take([2, 1, -1, -3],1),1))),3)",
    "io_inp": [
      2,
      1,
      -1,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take(input,1),1))),3)"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [-5, -5, 1]",
    "output": "generated_output : list = add_n(sort_asc([4, -2, -2]),-3)",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-5, 2, 3, 3, 2]\noutput : list = [2, 9, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(take([-5, 2, 3, 3, 2],3),5))),-2)",
    "io_inp": [
      -5,
      2,
      3,
      3,
      2
    ],
    "io_out": [
      2,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(take(input,3),5))),-2)"
  },
  {
    "input": "input : list = [4, 1, 0, 4]\noutput : list = [7, 4, 3, 7]",
    "output": "generated_output : list = add_n([4, 1, 0, 4],3)",
    "io_inp": [
      4,
      1,
      0,
      4
    ],
    "io_out": [
      7,
      4,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, 2, -5, 0, -3, 3]\noutput : list = [-4, -1, -8, -3, -6, 0]",
    "output": "generated_output : list = sub_n(reverse(take(take(reverse([-1, 2, -5, 0, -3, 3]),24),29)),3)",
    "io_inp": [
      -1,
      2,
      -5,
      0,
      -3,
      3
    ],
    "io_out": [
      -4,
      -1,
      -8,
      -3,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(reverse(input),24),29)),3)"
  },
  {
    "input": "input : list = [4, -5, 5, 2]\noutput : list = [2]",
    "output": "generated_output : list = take(reverse([4, -5, 5, 2]),1)",
    "io_inp": [
      4,
      -5,
      5,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),1)"
  },
  {
    "input": "input : list = [2, 3, -1, 2, 3, -3]\noutput : list = [5, 5, 10, 10, 25, 35]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(sub_n([2, 3, -1, 2, 3, -3],3)),-1)),-5)",
    "io_inp": [
      2,
      3,
      -1,
      2,
      3,
      -3
    ],
    "io_out": [
      5,
      5,
      10,
      10,
      25,
      35
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(sub_n(input,3)),-1)),-5)"
  },
  {
    "input": "input : list = [3, -2, 1, 0]\noutput : list = [-2, -1]",
    "output": "generated_output : list = reverse(sub_n(take(drop([3, -2, 1, 0],2),10),2))",
    "io_inp": [
      3,
      -2,
      1,
      0
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(drop(input,2),10),2))"
  },
  {
    "input": "input : list = [-3, 5, 1, 4]\noutput : list = [-9, -8, -5, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(mul_n([-3, 5, 1, 4],-1),4))))",
    "io_inp": [
      -3,
      5,
      1,
      4
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(mul_n(input,-1),4))))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-12, -6]",
    "output": "generated_output : list = mul_n(add_n(add_n(add_n(reverse([-1, 5]),3),1),3),-1)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(add_n(reverse(input),3),1),3),-1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [1, -8]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(sub_n([4, -5],4),-4),3)))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(sub_n(input,4),-4),3)))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(reverse([-5, -1])),23)))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(reverse(input)),23)))"
  },
  {
    "input": "input : list = [0, 0, 1, 3]\noutput : list = [0, 0, 1, 3]",
    "output": "generated_output : list = take(take(sort_asc(take(sort_des([0, 0, 1, 3]),4)),4),37)",
    "io_inp": [
      0,
      0,
      1,
      3
    ],
    "io_out": [
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(sort_des(input),4)),4),37)"
  },
  {
    "input": "input : list = [3, -2, 1, -2, -1, -4]\noutput : list = [-1, -3, -5, -6, -6, -8]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(mul_n([3, -2, 1, -2, -1, -4],1),2),-2),33))",
    "io_inp": [
      3,
      -2,
      1,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(mul_n(input,1),2),-2),33))"
  },
  {
    "input": "input : list = [-1, 0, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(take([-1, 0, 2],1)))))",
    "io_inp": [
      -1,
      0,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-3, 1, -1, -5]\noutput : list = [2, -2, 6]",
    "output": "generated_output : list = drop(reverse(mul_n([-3, 1, -1, -5],-2)),1)",
    "io_inp": [
      -3,
      1,
      -1,
      -5
    ],
    "io_out": [
      2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(input,-2)),1)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-6, -3]",
    "output": "generated_output : list = take(mul_n(sub_n(take(reverse([0, -3]),11),3),1),27)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(reverse(input),11),3),1),27)"
  },
  {
    "input": "input : list = [-2, 5, 4, 1]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take([-2, 5, 4, 1],1))",
    "io_inp": [
      -2,
      5,
      4,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-5, -2, -1, -4]\noutput : list = [1, 0, -2, -3]",
    "output": "generated_output : list = take(sort_des(add_n(take(sort_asc([-5, -2, -1, -4]),11),2)),34)",
    "io_inp": [
      -5,
      -2,
      -1,
      -4
    ],
    "io_out": [
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(sort_asc(input),11),2)),34)"
  },
  {
    "input": "input : list = [-2, -4, -3, -2, -5]\noutput : list = [-1, -1, 0, 1, 2]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(sub_n([-2, -4, -3, -2, -5],-3))),-1))",
    "io_inp": [
      -2,
      -4,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(sub_n(input,-3))),-1))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [25, 7]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc([-5, 1]),-2),-1),-3),-1)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      25,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(sort_asc(input),-2),-1),-3),-1)"
  },
  {
    "input": "input : list = [-5, -2, -4, 1, 0, -5]\noutput : list = [-5, -2, -4]",
    "output": "generated_output : list = take([-5, -2, -4, 1, 0, -5],3)",
    "io_inp": [
      -5,
      -2,
      -4,
      1,
      0,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 3, -3, 3]\noutput : list = [5, -1, 5, -3]",
    "output": "generated_output : list = sub_n(reverse(add_n([-5, 3, -3, 3],4)),2)",
    "io_inp": [
      -5,
      3,
      -3,
      3
    ],
    "io_out": [
      5,
      -1,
      5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,4)),2)"
  },
  {
    "input": "input : list = [-2, 3, -2, 5]\noutput : list = [-21, -9, 21, 21]",
    "output": "generated_output : list = mul_n(add_n(sub_n(mul_n(sort_des([-2, 3, -2, 5]),2),5),2),-3)",
    "io_inp": [
      -2,
      3,
      -2,
      5
    ],
    "io_out": [
      -21,
      -9,
      21,
      21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(mul_n(sort_des(input),2),5),2),-3)"
  },
  {
    "input": "input : list = [3, -1, -1, 2]\noutput : list = [6, 5, 2, 2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sort_des([3, -1, -1, 2]),3))))",
    "io_inp": [
      3,
      -1,
      -1,
      2
    ],
    "io_out": [
      6,
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [1, -1, 1, -1, 4, 1]\noutput : list = [-20, -5, -5, -5, 5, 5]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sub_n(sort_asc([1, -1, 1, -1, 4, 1]),2)),-2),-5)",
    "io_inp": [
      1,
      -1,
      1,
      -1,
      4,
      1
    ],
    "io_out": [
      -20,
      -5,
      -5,
      -5,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sub_n(sort_asc(input),2)),-2),-5)"
  },
  {
    "input": "input : list = [4, 3, -3, -5, 2]\noutput : list = [-15, -9, 6, 9, 12]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(mul_n([4, 3, -3, -5, 2],3)))))",
    "io_inp": [
      4,
      3,
      -3,
      -5,
      2
    ],
    "io_out": [
      -15,
      -9,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [5, 5, 0]\noutput : list = [-12, -27]",
    "output": "generated_output : list = mul_n(sub_n(reverse(take(drop([5, 5, 0],1),4)),-4),-3)",
    "io_inp": [
      5,
      5,
      0
    ],
    "io_out": [
      -12,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(take(drop(input,1),4)),-4),-3)"
  },
  {
    "input": "input : list = [-1, 1, 0, 4]\noutput : list = [-1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(sort_asc([-1, 1, 0, 4]),11)),38))",
    "io_inp": [
      -1,
      1,
      0,
      4
    ],
    "io_out": [
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(sort_asc(input),11)),38))"
  },
  {
    "input": "input : list = [2, -3, -4, 4]\noutput : list = [4, 3, -2, -4]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sort_asc([2, -3, -4, 4])),-1),1))",
    "io_inp": [
      2,
      -3,
      -4,
      4
    ],
    "io_out": [
      4,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(sort_asc(input)),-1),1))"
  },
  {
    "input": "input : list = [-5, 2, 5, 0, 3, 3]\noutput : list = [-9, -2, 1, -4, -1, -1]",
    "output": "generated_output : list = sub_n([-5, 2, 5, 0, 3, 3],4)",
    "io_inp": [
      -5,
      2,
      5,
      0,
      3,
      3
    ],
    "io_out": [
      -9,
      -2,
      1,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, -1, 1, -2, 3]\noutput : list = [2, 2, 0, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(sub_n([3, -1, 1, -2, 3],2)),1)",
    "io_inp": [
      3,
      -1,
      1,
      -2,
      3
    ],
    "io_out": [
      2,
      2,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,2)),1)"
  },
  {
    "input": "input : list = [3, 0, 4, -2]\noutput : list = [6, 3]",
    "output": "generated_output : list = add_n(take([3, 0, 4, -2],2),3)",
    "io_inp": [
      3,
      0,
      4,
      -2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),3)"
  },
  {
    "input": "input : list = [-5, 0, -2, -5, -2]\noutput : list = [-5, -3, -8]",
    "output": "generated_output : list = add_n(sub_n(reverse(sub_n(take([-5, 0, -2, -5, -2],3),3)),1),1)",
    "io_inp": [
      -5,
      0,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sub_n(take(input,3),3)),1),1)"
  },
  {
    "input": "input : list = [4, 0, 0, 3, 4, -4]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(take([4, 0, 0, 3, 4, -4],3),20)))",
    "io_inp": [
      4,
      0,
      0,
      3,
      4,
      -4
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(input,3),20)))"
  },
  {
    "input": "input : list = [-4, -2, -3, -5]\noutput : list = [-10, -8, -9, -11]",
    "output": "generated_output : list = add_n(take(add_n(add_n(sub_n([-4, -2, -3, -5],1),-5),2),37),-2)",
    "io_inp": [
      -4,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(sub_n(input,1),-5),2),37),-2)"
  },
  {
    "input": "input : list = [2, 0, -1, -4, -4, -1]\noutput : list = [2, 0, -1, -4, -4, -1]",
    "output": "generated_output : list = add_n(take(add_n([2, 0, -1, -4, -4, -1],3),27),-3)",
    "io_inp": [
      2,
      0,
      -1,
      -4,
      -4,
      -1
    ],
    "io_out": [
      2,
      0,
      -1,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,3),27),-3)"
  },
  {
    "input": "input : list = [-5, 2, 4, 4, 0]\noutput : list = [-12, 0]",
    "output": "generated_output : list = take(mul_n(drop([-5, 2, 4, 4, 0],3),-3),20)",
    "io_inp": [
      -5,
      2,
      4,
      4,
      0
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,3),-3),20)"
  },
  {
    "input": "input : list = [-4, 3, 1, -3, 0, 2]\noutput : list = [-21, -18, -15, -12, -3, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n([-4, 3, 1, -3, 0, 2],-4)),-3)",
    "io_inp": [
      -4,
      3,
      1,
      -3,
      0,
      2
    ],
    "io_out": [
      -21,
      -18,
      -15,
      -12,
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(input,-4)),-3)"
  },
  {
    "input": "input : list = [0, -1, -4, 1, -5]\noutput : list = [-5, -4, -1, 0, 1]",
    "output": "generated_output : list = sort_asc([0, -1, -4, 1, -5])",
    "io_inp": [
      0,
      -1,
      -4,
      1,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [6, 3, 3]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des([1, 4, 1]),-2)))",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(input),-2)))"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take([3, 1, -5],1),-1)),-4)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(input,1),-1)),-4)"
  },
  {
    "input": "input : list = [-4, 4, -4, 4, -3]\noutput : list = [40, 12, 44, 12, 44]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(add_n([-4, 4, -4, 4, -3],-3),-4),35),-4))",
    "io_inp": [
      -4,
      4,
      -4,
      4,
      -3
    ],
    "io_out": [
      40,
      12,
      44,
      12,
      44
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(add_n(input,-3),-4),35),-4))"
  },
  {
    "input": "input : list = [4, 5, 0, 2]\noutput : list = [6, 7, 2, 4]",
    "output": "generated_output : list = take(sub_n([4, 5, 0, 2],-2),5)",
    "io_inp": [
      4,
      5,
      0,
      2
    ],
    "io_out": [
      6,
      7,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-2),5)"
  },
  {
    "input": "input : list = [2, -5, 1, 5, 5, -1]\noutput : list = [0, 0, -6]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n(drop([2, -5, 1, 5, 5, -1],3),-5),-5)),-5)",
    "io_inp": [
      2,
      -5,
      1,
      5,
      5,
      -1
    ],
    "io_out": [
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(drop(input,3),-5),-5)),-5)"
  },
  {
    "input": "input : list = [-3, -5, 5, -4, -5, 0]\noutput : list = [-60]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(sort_asc([-3, -5, 5, -4, -5, 0]),3),1),4))",
    "io_inp": [
      -3,
      -5,
      5,
      -4,
      -5,
      0
    ],
    "io_out": [
      -60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(sort_asc(input),3),1),4))"
  },
  {
    "input": "input : list = [2, 5, -5, 2]\noutput : list = [4, 7, -3, 4]",
    "output": "generated_output : list = add_n(add_n([2, 5, -5, 2],5),-3)",
    "io_inp": [
      2,
      5,
      -5,
      2
    ],
    "io_out": [
      4,
      7,
      -3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [4, 3, -1, 5, 3, -2]\noutput : list = [-3, -4, -5, -5, -9, -10]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des(add_n([4, 3, -1, 5, 3, -2],-3)))),-5)",
    "io_inp": [
      4,
      3,
      -1,
      5,
      3,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -5,
      -5,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(add_n(input,-3)))),-5)"
  },
  {
    "input": "input : list = [4, 5, 3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(reverse(take([4, 5, 3],1)))",
    "io_inp": [
      4,
      5,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,1)))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(sort_asc([3, 1])))),15)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(sort_asc(input)))),15)"
  },
  {
    "input": "input : list = [3, 3, 3, -4, 1]\noutput : list = [3, 3, 3, 1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse([3, 3, 3, -4, 1])))",
    "io_inp": [
      3,
      3,
      3,
      -4,
      1
    ],
    "io_out": [
      3,
      3,
      3,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-4, 3, -3, -5, -5, 5]\noutput : list = [-4, -4, -3, -2, 4, 6]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n(add_n([-4, 3, -3, -5, -5, 5],-1),-2)),39))",
    "io_inp": [
      -4,
      3,
      -3,
      -5,
      -5,
      5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(add_n(input,-1),-2)),39))"
  },
  {
    "input": "input : list = [4, 4, 2, 2, -2, 1]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sub_n(drop(add_n([4, 4, 2, 2, -2, 1],4),5),2),2)",
    "io_inp": [
      4,
      4,
      2,
      2,
      -2,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(add_n(input,4),5),2),2)"
  },
  {
    "input": "input : list = [-5, -1, 4, 0, -5, -2]\noutput : list = [-24, -24, -15, -12, -9, 3]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(sub_n([-5, -1, 4, 0, -5, -2],2)),3)),-3)",
    "io_inp": [
      -5,
      -1,
      4,
      0,
      -5,
      -2
    ],
    "io_out": [
      -24,
      -24,
      -15,
      -12,
      -9,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(sub_n(input,2)),3)),-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(sort_des([4, 2]))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 2, 1, 0, 4]\noutput : list = [8, 7, 11]",
    "output": "generated_output : list = add_n(take(add_n(add_n(drop([-4, 2, 1, 0, 4],2),5),-2),41),4)",
    "io_inp": [
      -4,
      2,
      1,
      0,
      4
    ],
    "io_out": [
      8,
      7,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(drop(input,2),5),-2),41),4)"
  },
  {
    "input": "input : list = [-5, 2, -1, 4, -2]\noutput : list = [8, 15, 12, 17, 11]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(add_n([-5, 2, -1, 4, -2],4),-4))),-5)",
    "io_inp": [
      -5,
      2,
      -1,
      4,
      -2
    ],
    "io_out": [
      8,
      15,
      12,
      17,
      11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(add_n(input,4),-4))),-5)"
  },
  {
    "input": "input : list = [1, -5, -4, -3]\noutput : list = [-8, -12, -13, -14]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(sub_n([1, -5, -4, -3],5))),-4),16)",
    "io_inp": [
      1,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -12,
      -13,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(sub_n(input,5))),-4),16)"
  },
  {
    "input": "input : list = [-5, 3, -1, -3]\noutput : list = [59, 19, -61, 99]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(reverse([-5, 3, -1, -3]),-5),4),-1),2)",
    "io_inp": [
      -5,
      3,
      -1,
      -3
    ],
    "io_out": [
      59,
      19,
      -61,
      99
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(reverse(input),-5),4),-1),2)"
  },
  {
    "input": "input : list = [1, -1, -1, 0]\noutput : list = [4, 2, 2, 3]",
    "output": "generated_output : list = sub_n([1, -1, -1, 0],-3)",
    "io_inp": [
      1,
      -1,
      -1,
      0
    ],
    "io_out": [
      4,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 4, 3, 4, 2, 1]\noutput : list = [-1, -1, -2, -3, -4, -4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(reverse([1, 4, 3, 4, 2, 1])))),-1)",
    "io_inp": [
      1,
      4,
      3,
      4,
      2,
      1
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [5, 1, 1]\noutput : list = [1, 1, 5]",
    "output": "generated_output : list = reverse([5, 1, 1])",
    "io_inp": [
      5,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, 2]\noutput : list = [11, 5, 12]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(add_n([3, -4, 2],5)),1),27),-5)",
    "io_inp": [
      3,
      -4,
      2
    ],
    "io_out": [
      11,
      5,
      12
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(add_n(input,5)),1),27),-5)"
  },
  {
    "input": "input : list = [1, 2, 3, -3, 2]\noutput : list = [4, 8, 12, -12, 8]",
    "output": "generated_output : list = mul_n([1, 2, 3, -3, 2],4)",
    "io_inp": [
      1,
      2,
      3,
      -3,
      2
    ],
    "io_out": [
      4,
      8,
      12,
      -12,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(take(sub_n(sort_des(mul_n([1, 1],-5)),-4),12),37)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(mul_n(input,-5)),-4),12),37)"
  },
  {
    "input": "input : list = [1, -3, -1, 2, -5, 1]\noutput : list = [-1, 2, -5, 1]",
    "output": "generated_output : list = drop([1, -3, -1, 2, -5, 1],2)",
    "io_inp": [
      1,
      -3,
      -1,
      2,
      -5,
      1
    ],
    "io_out": [
      -1,
      2,
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [-9, -7, -4]",
    "output": "generated_output : list = sub_n([-5, -3, 0],4)",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      -9,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [5, 5, 0]",
    "output": "generated_output : list = sort_des([5, 0, 5])",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des([5, 3])",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, 2, 0]\noutput : list = [0, 2, 1]",
    "output": "generated_output : list = reverse(drop([5, 1, 2, 0],1))",
    "io_inp": [
      5,
      1,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = sort_des(take(sub_n(take(sort_des([0, 0, 1]),8),-1),13))",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(sort_des(input),8),-1),13))"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [-5, 20, -5]",
    "output": "generated_output : list = mul_n([1, -4, 1],-5)",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      -5,
      20,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, 3, -4, 1]\noutput : list = [3, 28, 38, 43]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(sub_n([4, 3, -4, 1],-3),-2),5)),-2)",
    "io_inp": [
      4,
      3,
      -4,
      1
    ],
    "io_out": [
      3,
      28,
      38,
      43
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(sub_n(input,-3),-2),5)),-2)"
  },
  {
    "input": "input : list = [4, -4, -3, 2, 5, 4]\noutput : list = [6, 5, 5, 3, -2, -3]",
    "output": "generated_output : list = sort_des(sub_n([4, -4, -3, 2, 5, 4],-1))",
    "io_inp": [
      4,
      -4,
      -3,
      2,
      5,
      4
    ],
    "io_out": [
      6,
      5,
      5,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-5, -3, -2, -1, 0, -2]\noutput : list = [-4, -2, -3, -4, -5, -7]",
    "output": "generated_output : list = sub_n(reverse([-5, -3, -2, -1, 0, -2]),2)",
    "io_inp": [
      -5,
      -3,
      -2,
      -1,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -3,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-5, -5, 2, -2, -3, -5]\noutput : list = [6, 2, 1, -1, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(take(sort_asc([-5, -5, 2, -2, -3, -5]),30),3),1))",
    "io_inp": [
      -5,
      -5,
      2,
      -2,
      -3,
      -5
    ],
    "io_out": [
      6,
      2,
      1,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(take(sort_asc(input),30),3),1))"
  },
  {
    "input": "input : list = [5, -4, 2, 5, 4, -2]\noutput : list = [-9, -1, 15, 23, 27, 27]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sort_asc([5, -4, 2, 5, 4, -2]),16),4),-5),2)",
    "io_inp": [
      5,
      -4,
      2,
      5,
      4,
      -2
    ],
    "io_out": [
      -9,
      -1,
      15,
      23,
      27,
      27
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sort_asc(input),16),4),-5),2)"
  },
  {
    "input": "input : list = [-3, -1, -3, -3, 0, -1]\noutput : list = [6, 2, 6, 6, 0, 2]",
    "output": "generated_output : list = mul_n([-3, -1, -3, -3, 0, -1],-2)",
    "io_inp": [
      -3,
      -1,
      -3,
      -3,
      0,
      -1
    ],
    "io_out": [
      6,
      2,
      6,
      6,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(reverse([3, -4]),8))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(reverse(input),8))))"
  },
  {
    "input": "input : list = [5, -3, -1, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take([5, -3, -1, 2],1))))",
    "io_inp": [
      5,
      -3,
      -1,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(input,1))))"
  },
  {
    "input": "input : list = [1, -4, -3, 3]\noutput : list = [3, -3, -4, 1]",
    "output": "generated_output : list = reverse([1, -4, -3, 3])",
    "io_inp": [
      1,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_des(sort_des([1, 2])),10)),1)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_des(sort_des(input)),10)),1)"
  },
  {
    "input": "input : list = [-1, -1, 1, -4]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc([-1, -1, 1, -4]),2),3),4)",
    "io_inp": [
      -1,
      -1,
      1,
      -4
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(input),2),3),4)"
  },
  {
    "input": "input : list = [-4, -3, -1, 5]\noutput : list = [1, 0, -2, -8]",
    "output": "generated_output : list = mul_n(add_n([-4, -3, -1, 5],3),-1)",
    "io_inp": [
      -4,
      -3,
      -1,
      5
    ],
    "io_out": [
      1,
      0,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-1)"
  },
  {
    "input": "input : list = [-3, 0, 3, 0, 2, 5]\noutput : list = [-6, -3, -3, -1, 0, 2]",
    "output": "generated_output : list = sub_n(sort_asc([-3, 0, 3, 0, 2, 5]),3)",
    "io_inp": [
      -3,
      0,
      3,
      0,
      2,
      5
    ],
    "io_out": [
      -6,
      -3,
      -3,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-4, -4, 5, -2, 2, 4]\noutput : list = [-4, -4, -2, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([-4, -4, 5, -2, 2, 4])",
    "io_inp": [
      -4,
      -4,
      5,
      -2,
      2,
      4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, -5, -4, 1]\noutput : list = [28, 28, 25, 10, -2]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n([-5, 5, -5, -4, 1],-5),-3)),-2)",
    "io_inp": [
      -5,
      5,
      -5,
      -4,
      1
    ],
    "io_out": [
      28,
      28,
      25,
      10,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(input,-5),-3)),-2)"
  },
  {
    "input": "input : list = [-3, 3, 1, -2]\noutput : list = [-1, 2, 4, -2]",
    "output": "generated_output : list = take(reverse(add_n(take(sub_n([-3, 3, 1, -2],2),10),3)),38)",
    "io_inp": [
      -3,
      3,
      1,
      -2
    ],
    "io_out": [
      -1,
      2,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sub_n(input,2),10),3)),38)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [2, 2, 6]",
    "output": "generated_output : list = sub_n([-1, -1, 3],-3)",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [8, 38]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(add_n([4, -2],3),5),1),-3))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      8,
      38
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(add_n(input,3),5),1),-3))"
  },
  {
    "input": "input : list = [-4, -5, -5, -4]\noutput : list = [-15, -15, -20, -20]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(mul_n([-4, -5, -5, -4],5),16),5)))",
    "io_inp": [
      -4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -15,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(mul_n(input,5),16),5)))"
  },
  {
    "input": "input : list = [-2, -1, -5, -5, 4, 5]\noutput : list = [0, -1, -6, -7, -10, -10]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(sort_des([-2, -1, -5, -5, 4, 5]),-5),33)))",
    "io_inp": [
      -2,
      -1,
      -5,
      -5,
      4,
      5
    ],
    "io_out": [
      0,
      -1,
      -6,
      -7,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(sort_des(input),-5),33)))"
  },
  {
    "input": "input : list = [1, -3, 4, 4]\noutput : list = [1, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(drop(reverse([1, -3, 4, 4]),2))))",
    "io_inp": [
      1,
      -3,
      4,
      4
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(drop(reverse(input),2))))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = reverse([5, 2])",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, -1, 5]\noutput : list = [5, -7, -15, -19]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_asc([2, 4, -1, 5])),-4)),-1)",
    "io_inp": [
      2,
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      -7,
      -15,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_asc(sort_asc(input)),-4)),-1)"
  },
  {
    "input": "input : list = [4, 5, -1, -1]\noutput : list = [-1, -1, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc(reverse(sort_asc([4, 5, -1, -1])))),16)",
    "io_inp": [
      4,
      5,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(reverse(sort_asc(input)))),16)"
  },
  {
    "input": "input : list = [-1, -4, -3, -4, 2, -1]\noutput : list = [2, -1, -1, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-1, -4, -3, -4, 2, -1])",
    "io_inp": [
      -1,
      -4,
      -3,
      -4,
      2,
      -1
    ],
    "io_out": [
      2,
      -1,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, -4, 0, -5, 5]\noutput : list = [5, -5, 0, -4, -4, -2]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(add_n([-2, -4, -4, 0, -5, 5],3),3))))",
    "io_inp": [
      -2,
      -4,
      -4,
      0,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      0,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(add_n(input,3),3))))"
  },
  {
    "input": "input : list = [-3, 3, -3, -4, 5, -2]\noutput : list = [-16, 12, 20]",
    "output": "generated_output : list = sort_asc(sort_des(drop(add_n(mul_n([-3, 3, -3, -4, 5, -2],-4),4),3)))",
    "io_inp": [
      -3,
      3,
      -3,
      -4,
      5,
      -2
    ],
    "io_out": [
      -16,
      12,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(add_n(mul_n(input,-4),4),3)))"
  },
  {
    "input": "input : list = [-2, -2, 2, 1, -3, -4]\noutput : list = [-15, -15, 5]",
    "output": "generated_output : list = sub_n(mul_n(take([-2, -2, 2, 1, -3, -4],3),5),5)",
    "io_inp": [
      -2,
      -2,
      2,
      1,
      -3,
      -4
    ],
    "io_out": [
      -15,
      -15,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,3),5),5)"
  },
  {
    "input": "input : list = [5, -5, 1, 1, 4, -2]\noutput : list = [-15, 0, 15, 15, 30, 35]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n([5, -5, 1, 1, 4, -2],2),5)))",
    "io_inp": [
      5,
      -5,
      1,
      1,
      4,
      -2
    ],
    "io_out": [
      -15,
      0,
      15,
      15,
      30,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(input,2),5)))"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_asc([-4, 3, -4]),2)),36),-5)",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_asc(input),2)),36),-5)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [13, 3]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(mul_n([3, 1],5),3),2)))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      13,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(mul_n(input,5),3),2)))"
  },
  {
    "input": "input : list = [-1, 3, 2, 0, 1, -3]\noutput : list = [12, 4, 0, -4, -8, -12]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(reverse([-1, 3, 2, 0, 1, -3]),1)),-4),30)",
    "io_inp": [
      -1,
      3,
      2,
      0,
      1,
      -3
    ],
    "io_out": [
      12,
      4,
      0,
      -4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(reverse(input),1)),-4),30)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [5, -15]",
    "output": "generated_output : list = mul_n(reverse([3, -1]),-5)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-4, -2, 4, 4, -5]\noutput : list = [18, 18, 0, -6, -9]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(add_n([-4, -2, 4, 4, -5],2))),3),15)",
    "io_inp": [
      -4,
      -2,
      4,
      4,
      -5
    ],
    "io_out": [
      18,
      18,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(add_n(input,2))),3),15)"
  },
  {
    "input": "input : list = [-3, 2, -1, 2]\noutput : list = [2, -1, 2]",
    "output": "generated_output : list = drop([-3, 2, -1, 2],1)",
    "io_inp": [
      -3,
      2,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -1, 5]\noutput : list = [-2, 2, 2, 8]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(sort_des([-1, -5, -1, 5]),3),16)))",
    "io_inp": [
      -1,
      -5,
      -1,
      5
    ],
    "io_out": [
      -2,
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(sort_des(input),3),16)))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, -2]",
    "output": "generated_output : list = reverse([-2, -5])",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(take(sort_asc(take([5, 0, -2],1)),23),-2)",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(input,1)),23),-2)"
  },
  {
    "input": "input : list = [-5, -3, 4, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(take([-5, -3, 4, -4],1)),-3),4),-1)",
    "io_inp": [
      -5,
      -3,
      4,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(take(input,1)),-3),4),-1)"
  },
  {
    "input": "input : list = [-2, -2, 1, 4, 0]\noutput : list = [-1, -4, -5, -7, -7]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(reverse([-2, -2, 1, 4, 0])),-1),-2),-2)",
    "io_inp": [
      -2,
      -2,
      1,
      4,
      0
    ],
    "io_out": [
      -1,
      -4,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(reverse(input)),-1),-2),-2)"
  },
  {
    "input": "input : list = [-3, 3, -3, 4]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(take([-3, 3, -3, 4],2))",
    "io_inp": [
      -3,
      3,
      -3,
      4
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [4, -4, 4, -2, -1, -1]\noutput : list = [20, 10, 5, 5, -20, -20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse([4, -4, 4, -2, -1, -1])),-5)))",
    "io_inp": [
      4,
      -4,
      4,
      -2,
      -1,
      -1
    ],
    "io_out": [
      20,
      10,
      5,
      5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [-1, 5, 4, -4]\noutput : list = [-64, -16, 64, 80]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(reverse([-1, 5, 4, -4]),4)),4))",
    "io_inp": [
      -1,
      5,
      4,
      -4
    ],
    "io_out": [
      -64,
      -16,
      64,
      80
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(reverse(input),4)),4))"
  },
  {
    "input": "input : list = [4, -5, 2, 2, 1]\noutput : list = [8, 4, 4, 2]",
    "output": "generated_output : list = mul_n(reverse(drop(sort_asc(reverse([4, -5, 2, 2, 1])),1)),2)",
    "io_inp": [
      4,
      -5,
      2,
      2,
      1
    ],
    "io_out": [
      8,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(sort_asc(reverse(input)),1)),2)"
  },
  {
    "input": "input : list = [-2, 0, -1, -2, -2]\noutput : list = [-1, -2, -3, -3, -3]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(sort_asc([-2, 0, -1, -2, -2]),-2),1)),-3)",
    "io_inp": [
      -2,
      0,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(sort_asc(input),-2),1)),-3)"
  },
  {
    "input": "input : list = [-1, 0, 5, 3]\noutput : list = [4, 0, -12, -20]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n([-1, 0, 5, 3],-4),15)))",
    "io_inp": [
      -1,
      0,
      5,
      3
    ],
    "io_out": [
      4,
      0,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(input,-4),15)))"
  },
  {
    "input": "input : list = [2, -3, -2, 2, -1, -4]\noutput : list = [-15, -30, -10, -5, -30]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(add_n([2, -3, -2, 2, -1, -4],-1),5)),5),-5)",
    "io_inp": [
      2,
      -3,
      -2,
      2,
      -1,
      -4
    ],
    "io_out": [
      -15,
      -30,
      -10,
      -5,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(add_n(input,-1),5)),5),-5)"
  },
  {
    "input": "input : list = [-4, -4, -3]\noutput : list = [-4, -4, -3]",
    "output": "generated_output : list = sort_asc(take(sort_asc([-4, -4, -3]),8))",
    "io_inp": [
      -4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),8))"
  },
  {
    "input": "input : list = [5, -4, -3, 3, 2]\noutput : list = [-31]",
    "output": "generated_output : list = add_n(sub_n(sub_n(mul_n(take([5, -4, -3, 3, 2],1),-4),5),5),-1)",
    "io_inp": [
      5,
      -4,
      -3,
      3,
      2
    ],
    "io_out": [
      -31
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(mul_n(take(input,1),-4),5),5),-1)"
  },
  {
    "input": "input : list = [-3, 3, -1, 0]\noutput : list = [-40, -60, 20, -100]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(reverse([-3, 3, -1, 0]),-2),1),-4),-5)",
    "io_inp": [
      -3,
      3,
      -1,
      0
    ],
    "io_out": [
      -40,
      -60,
      20,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(reverse(input),-2),1),-4),-5)"
  },
  {
    "input": "input : list = [-5, 1, 2, 3, 0]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(sort_des(take([-5, 1, 2, 3, 0],1)))",
    "io_inp": [
      -5,
      1,
      2,
      3,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [5, -4, 1, 1]\noutput : list = [-16, 4, 4, 20]",
    "output": "generated_output : list = take(take(take(mul_n(sort_asc([5, -4, 1, 1]),4),20),8),6)",
    "io_inp": [
      5,
      -4,
      1,
      1
    ],
    "io_out": [
      -16,
      4,
      4,
      20
    ],
    "output_masked": "generated_output : list = take(take(take(mul_n(sort_asc(input),4),20),8),6)"
  },
  {
    "input": "input : list = [-4, 3, -5, 0, 4]\noutput : list = [-1, 6, -2, 3, 7]",
    "output": "generated_output : list = add_n([-4, 3, -5, 0, 4],3)",
    "io_inp": [
      -4,
      3,
      -5,
      0,
      4
    ],
    "io_out": [
      -1,
      6,
      -2,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, 0, -5, 5, 0, -5]\noutput : list = [-5, -5, -4, 0, 0, 5]",
    "output": "generated_output : list = sort_asc([-4, 0, -5, 5, 0, -5])",
    "io_inp": [
      -4,
      0,
      -5,
      5,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [0, -8]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(add_n([5, -3],3)),-1)),25)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(add_n(input,3)),-1)),25)"
  },
  {
    "input": "input : list = [0, -2, -4, 0, -4, 2]\noutput : list = [-2, -8, -4]",
    "output": "generated_output : list = add_n(reverse(drop([0, -2, -4, 0, -4, 2],3)),-4)",
    "io_inp": [
      0,
      -2,
      -4,
      0,
      -4,
      2
    ],
    "io_out": [
      -2,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,3)),-4)"
  },
  {
    "input": "input : list = [2, 4, 5, 3, -2, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take([2, 4, 5, 3, -2, 2],1))",
    "io_inp": [
      2,
      4,
      5,
      3,
      -2,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-5, -5, 2, -5, -1]\noutput : list = [-5, -21, 7, -21, -21]",
    "output": "generated_output : list = add_n(mul_n(reverse([-5, -5, 2, -5, -1]),4),-1)",
    "io_inp": [
      -5,
      -5,
      2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -21,
      7,
      -21,
      -21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),4),-1)"
  },
  {
    "input": "input : list = [5, 5, -3, 0, 1, 1]\noutput : list = [-4, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(drop([5, 5, -3, 0, 1, 1],2)),-1),27))",
    "io_inp": [
      5,
      5,
      -3,
      0,
      1,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(drop(input,2)),-1),27))"
  },
  {
    "input": "input : list = [-3, -1, -2, -4, -4, 2]\noutput : list = [-4, -4, 2]",
    "output": "generated_output : list = drop([-3, -1, -2, -4, -4, 2],3)",
    "io_inp": [
      -3,
      -1,
      -2,
      -4,
      -4,
      2
    ],
    "io_out": [
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, -1, -5, 3]\noutput : list = [-4, -5, -9, -1]",
    "output": "generated_output : list = add_n([0, -1, -5, 3],-4)",
    "io_inp": [
      0,
      -1,
      -5,
      3
    ],
    "io_out": [
      -4,
      -5,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, 1, -4, 0]\noutput : list = [-4, 0, 1, 1]",
    "output": "generated_output : list = sort_asc([1, 1, -4, 0])",
    "io_inp": [
      1,
      1,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [4, -8]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sub_n([1, -2],-1),-4))))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(mul_n(sub_n(input,-1),-4))))"
  },
  {
    "input": "input : list = [4, -4, -1, 3]\noutput : list = [1, -7]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(take([4, -4, -1, 3],2),-2),30)),5)",
    "io_inp": [
      4,
      -4,
      -1,
      3
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(take(input,2),-2),30)),5)"
  },
  {
    "input": "input : list = [3, 4, 4, 0]\noutput : list = [-15, -30, -35, -35]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([3, 4, 4, 0]),3),-5)",
    "io_inp": [
      3,
      4,
      4,
      0
    ],
    "io_out": [
      -15,
      -30,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),3),-5)"
  },
  {
    "input": "input : list = [-4, 0, 0, 0, -1, -2]\noutput : list = [-3, -3, -3, -7]",
    "output": "generated_output : list = sub_n(take(take(reverse(take([-4, 0, 0, 0, -1, -2],4)),10),11),3)",
    "io_inp": [
      -4,
      0,
      0,
      0,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(take(input,4)),10),11),3)"
  },
  {
    "input": "input : list = [-3, -2, -3, -5]\noutput : list = [3, 2, 2, 0]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(sort_des([-3, -2, -3, -5])))),5)",
    "io_inp": [
      -3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      3,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [2, -4, 3]\noutput : list = [7, 6, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n([2, -4, 3],1))),-4)",
    "io_inp": [
      2,
      -4,
      3
    ],
    "io_out": [
      7,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(input,1))),-4)"
  },
  {
    "input": "input : list = [1, -2, -4]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(take([1, -2, -4],1)),5)))",
    "io_inp": [
      1,
      -2,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(take(input,1)),5)))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(add_n([-4, -4],1),2))),42)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(add_n(input,1),2))),42)"
  },
  {
    "input": "input : list = [-5, -4, -2, -4, -5]\noutput : list = [1, -1, -1, -2, -2]",
    "output": "generated_output : list = add_n(sort_des([-5, -4, -2, -4, -5]),3)",
    "io_inp": [
      -5,
      -4,
      -2,
      -4,
      -5
    ],
    "io_out": [
      1,
      -1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-1, 3, -2, 0, -1, 0]\noutput : list = [-6, -5, -5, -4, -4, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(add_n([-1, 3, -2, 0, -1, 0],4)),5)),-3)",
    "io_inp": [
      -1,
      3,
      -2,
      0,
      -1,
      0
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(add_n(input,4)),5)),-3)"
  },
  {
    "input": "input : list = [5, 2, 4, -4, -3, -2]\noutput : list = [-22, -18, -14, 2, 10, 14]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(add_n([5, 2, 4, -4, -3, -2],-1),24),4)),-2)",
    "io_inp": [
      5,
      2,
      4,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -22,
      -18,
      -14,
      2,
      10,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(add_n(input,-1),24),4)),-2)"
  },
  {
    "input": "input : list = [-2, 0, 4]\noutput : list = [-12]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des(take([-2, 0, 4],1)),2),3))",
    "io_inp": [
      -2,
      0,
      4
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(take(input,1)),2),3))"
  },
  {
    "input": "input : list = [-4, 3, 3, 3, 3, 2]\noutput : list = [-12, -6, -5, -5, -5, -5]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n([-4, 3, 3, 3, 3, 2],-4)),-4),43)",
    "io_inp": [
      -4,
      3,
      3,
      3,
      3,
      2
    ],
    "io_out": [
      -12,
      -6,
      -5,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(input,-4)),-4),43)"
  },
  {
    "input": "input : list = [-3, -5, 3, 4]\noutput : list = [-9]",
    "output": "generated_output : list = take(mul_n(sort_des(take(take([-3, -5, 3, 4],1),12)),3),35)",
    "io_inp": [
      -3,
      -5,
      3,
      4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(take(take(input,1),12)),3),35)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-12, -2]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(mul_n([2, -3],-1),-3),2),-2))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -12,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(mul_n(input,-1),-3),2),-2))"
  },
  {
    "input": "input : list = [5, 3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = drop([5, 3, 5],1)",
    "io_inp": [
      5,
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -2, 0, 3, 4, -1]\noutput : list = [1, 3, 5, 7, 11, 13]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sub_n([1, -2, 0, 3, 4, -1],-2),2)),-1))",
    "io_inp": [
      1,
      -2,
      0,
      3,
      4,
      -1
    ],
    "io_out": [
      1,
      3,
      5,
      7,
      11,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sub_n(input,-2),2)),-1))"
  },
  {
    "input": "input : list = [1, 0, 1, -5, 5, -5]\noutput : list = [11, 7, 7, 6, 1, 1]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(sort_des([1, 0, 1, -5, 5, -5]),2),-4)))",
    "io_inp": [
      1,
      0,
      1,
      -5,
      5,
      -5
    ],
    "io_out": [
      11,
      7,
      7,
      6,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(sort_des(input),2),-4)))"
  },
  {
    "input": "input : list = [5, -3, -4, 4, 0]\noutput : list = [0, 4, -4, -3, 5]",
    "output": "generated_output : list = reverse([5, -3, -4, 4, 0])",
    "io_inp": [
      5,
      -3,
      -4,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n([2, -2],-1)),18))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(input,-1)),18))"
  },
  {
    "input": "input : list = [-3, 2, 0]\noutput : list = [-6, -1, -3]",
    "output": "generated_output : list = take(sub_n([-3, 2, 0],3),16)",
    "io_inp": [
      -3,
      2,
      0
    ],
    "io_out": [
      -6,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),16)"
  },
  {
    "input": "input : list = [1, -3, 0, -2]\noutput : list = [0, -1, -3, -4]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(take(add_n([1, -3, 0, -2],2),19),1)),3)",
    "io_inp": [
      1,
      -3,
      0,
      -2
    ],
    "io_out": [
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(take(add_n(input,2),19),1)),3)"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [0, 3, 5]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(sort_asc([2, -3, 0])),5)),-3)",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(sort_asc(input)),5)),-3)"
  },
  {
    "input": "input : list = [-4, -2, 3, 5]\noutput : list = [5, 3, -2, -4]",
    "output": "generated_output : list = sort_des([-4, -2, 3, 5])",
    "io_inp": [
      -4,
      -2,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 2, 0, 3, 1]\noutput : list = [-1, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n([-3, 2, 0, 3, 1],2))",
    "io_inp": [
      -3,
      2,
      0,
      3,
      1
    ],
    "io_out": [
      -1,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [-3, -3, -3]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop([-3, -3, -3],1)",
    "io_inp": [
      -3,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [-10, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(sort_des([-5, 5, 3]),5),8)))",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      -10,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(sort_des(input),5),8)))"
  },
  {
    "input": "input : list = [-2, -5, -1, 5]\noutput : list = [5, -1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse([-2, -5, -1, 5]))",
    "io_inp": [
      -2,
      -5,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, 4, -4, -2]\noutput : list = [2, 1, -5, -7]",
    "output": "generated_output : list = add_n(take(reverse(take(sort_asc([5, 4, -4, -2]),13)),26),-3)",
    "io_inp": [
      5,
      4,
      -4,
      -2
    ],
    "io_out": [
      2,
      1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sort_asc(input),13)),26),-3)"
  },
  {
    "input": "input : list = [-2, 1, 5, 5]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(sub_n(add_n(take([-2, 1, 5, 5],2),1),-1),31)",
    "io_inp": [
      -2,
      1,
      5,
      5
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(input,2),1),-1),31)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [-10, -6, 8]",
    "output": "generated_output : list = mul_n(sort_des(take(mul_n([-3, 4, -5],-1),7)),-2)",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      -10,
      -6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(mul_n(input,-1),7)),-2)"
  },
  {
    "input": "input : list = [-4, 4, -2, 0]\noutput : list = [-4, -2, 0, 4]",
    "output": "generated_output : list = sort_asc([-4, 4, -2, 0])",
    "io_inp": [
      -4,
      4,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, -1, 3, 5, 5]\noutput : list = [15, 15, 15, 15, 11, 3]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(mul_n([5, 5, -1, 3, 5, 5],2)),5),-5),-5)",
    "io_inp": [
      5,
      5,
      -1,
      3,
      5,
      5
    ],
    "io_out": [
      15,
      15,
      15,
      15,
      11,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(mul_n(input,2)),5),-5),-5)"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_des(take([3, -2, 0],1)),2)),-5)",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_des(take(input,1)),2)),-5)"
  },
  {
    "input": "input : list = [-2, -5, -5, -5, 4, -5]\noutput : list = [4, -2, -5, -5, -5, -5]",
    "output": "generated_output : list = sort_des([-2, -5, -5, -5, 4, -5])",
    "io_inp": [
      -2,
      -5,
      -5,
      -5,
      4,
      -5
    ],
    "io_out": [
      4,
      -2,
      -5,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 1, 5, 1, 3]\noutput : list = [20, 10, 30, 10, -5]",
    "output": "generated_output : list = reverse(mul_n(add_n([-2, 1, 5, 1, 3],1),5))",
    "io_inp": [
      -2,
      1,
      5,
      1,
      3
    ],
    "io_out": [
      20,
      10,
      30,
      10,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,1),5))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n([3, -1],-2))),-2)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(input,-2))),-2)"
  },
  {
    "input": "input : list = [4, 0, 1, 3]\noutput : list = [7, 3]",
    "output": "generated_output : list = sub_n(take([4, 0, 1, 3],2),-3)",
    "io_inp": [
      4,
      0,
      1,
      3
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-3)"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take([-4, 5, 4],1))",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [0, 0, 0]\noutput : list = [0, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(sort_asc([0, 0, 0])),-1)))",
    "io_inp": [
      0,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-5, 3, 4, 5, 5]\noutput : list = [2, 2, 1, 0, -8]",
    "output": "generated_output : list = sub_n(sort_des([-5, 3, 4, 5, 5]),3)",
    "io_inp": [
      -5,
      3,
      4,
      5,
      5
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n([-2, 0],4)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, 3, 1, 5]\noutput : list = [1, 7, 5, 9]",
    "output": "generated_output : list = add_n([-3, 3, 1, 5],4)",
    "io_inp": [
      -3,
      3,
      1,
      5
    ],
    "io_out": [
      1,
      7,
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, 3, -5, 3, -3, 4]\noutput : list = [-20, -12, 20, -12, 12, -16]",
    "output": "generated_output : list = mul_n([5, 3, -5, 3, -3, 4],-4)",
    "io_inp": [
      5,
      3,
      -5,
      3,
      -3,
      4
    ],
    "io_out": [
      -20,
      -12,
      20,
      -12,
      12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 2, 4, -5, 4, 5]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(take([3, 2, 4, -5, 4, 5],1)),5)),-4)",
    "io_inp": [
      3,
      2,
      4,
      -5,
      4,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(take(input,1)),5)),-4)"
  },
  {
    "input": "input : list = [3, 5, -2]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(drop([3, 5, -2],1),15),3),-1))",
    "io_inp": [
      3,
      5,
      -2
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(drop(input,1),15),3),-1))"
  },
  {
    "input": "input : list = [-1, -3, -2, -4, 0]\noutput : list = [-1, 0, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(add_n([-1, -3, -2, -4, 0],3)))))",
    "io_inp": [
      -1,
      -3,
      -2,
      -4,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(add_n(input,3)))))"
  },
  {
    "input": "input : list = [1, 0, -1, -4, -2]\noutput : list = [0, -10, -15, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse(add_n([1, 0, -1, -4, -2],4))),-5))",
    "io_inp": [
      1,
      0,
      -1,
      -4,
      -2
    ],
    "io_out": [
      0,
      -10,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(add_n(input,4))),-5))"
  },
  {
    "input": "input : list = [3, 3, -4]\noutput : list = [0, 0, -7]",
    "output": "generated_output : list = add_n([3, 3, -4],-3)",
    "io_inp": [
      3,
      3,
      -4
    ],
    "io_out": [
      0,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [6, 6, 0]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(sort_asc([1, -5, 1]),5),27)),1)",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(sort_asc(input),5),27)),1)"
  },
  {
    "input": "input : list = [-4, -1, -1, -2, 2]\noutput : list = [-1, -2, 2]",
    "output": "generated_output : list = drop([-4, -1, -1, -2, 2],2)",
    "io_inp": [
      -4,
      -1,
      -1,
      -2,
      2
    ],
    "io_out": [
      -1,
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 5, 0, 5, 1, 3]\noutput : list = [10, 6, 14, 4, 14, 2]",
    "output": "generated_output : list = add_n(reverse(mul_n([-1, 5, 0, 5, 1, 3],2)),4)",
    "io_inp": [
      -1,
      5,
      0,
      5,
      1,
      3
    ],
    "io_out": [
      10,
      6,
      14,
      4,
      14,
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(input,2)),4)"
  },
  {
    "input": "input : list = [2, -4, -5]\noutput : list = [2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(reverse([2, -4, -5]),14))))",
    "io_inp": [
      2,
      -4,
      -5
    ],
    "io_out": [
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(reverse(input),14))))"
  },
  {
    "input": "input : list = [3, -1, 1, 1, 3]\noutput : list = [-3, -5, -5, -7, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(mul_n([3, -1, 1, 1, 3],-1),-4))))",
    "io_inp": [
      3,
      -1,
      1,
      1,
      3
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(mul_n(input,-1),-4))))"
  },
  {
    "input": "input : list = [3, 1, 4, -5, 3, 0]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(take(reverse(take(take([3, 1, 4, -5, 3, 0],2),11)),21),22)",
    "io_inp": [
      3,
      1,
      4,
      -5,
      3,
      0
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(take(input,2),11)),21),22)"
  },
  {
    "input": "input : list = [2, 1, -1, -2, 1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(drop([2, 1, -1, -2, 1, 4],4)),3)))",
    "io_inp": [
      2,
      1,
      -1,
      -2,
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(drop(input,4)),3)))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(reverse([2, 1]),7))))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(reverse(input),7))))"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, 5, -2],1),-5)",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [0, 0, -24]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_des([-1, -1, 3]),1),2)),-3)",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      0,
      0,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_des(input),1),2)),-3)"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [-2, 2, 2]",
    "output": "generated_output : list = add_n(sort_asc([4, 0, 4]),-2)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-3, -1, 4, -3]\noutput : list = [-6, -4]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(take([-3, -1, 4, -3],2))),-3),10)",
    "io_inp": [
      -3,
      -1,
      4,
      -3
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(take(input,2))),-3),10)"
  },
  {
    "input": "input : list = [4, 4, -2, 5, -3]\noutput : list = [4, -2, -3]",
    "output": "generated_output : list = sort_des(take(reverse(drop(sort_des([4, 4, -2, 5, -3]),2)),32))",
    "io_inp": [
      4,
      4,
      -2,
      5,
      -3
    ],
    "io_out": [
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(drop(sort_des(input),2)),32))"
  },
  {
    "input": "input : list = [-3, -4, 2, 2, -2]\noutput : list = [3, 3, -1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(take(take(add_n([-3, -4, 2, 2, -2],1),15),14)))",
    "io_inp": [
      -3,
      -4,
      2,
      2,
      -2
    ],
    "io_out": [
      3,
      3,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(add_n(input,1),15),14)))"
  },
  {
    "input": "input : list = [4, -4, 4, -5]\noutput : list = [4, 4, -4, -5]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(sort_des([4, -4, 4, -5]),4),3),12),-1)",
    "io_inp": [
      4,
      -4,
      4,
      -5
    ],
    "io_out": [
      4,
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(sort_des(input),4),3),12),-1)"
  },
  {
    "input": "input : list = [0, 0, -4, -4, -4, -3]\noutput : list = [-4, -5, -5, -5]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(drop([0, 0, -4, -4, -4, -3],2))),-1))",
    "io_inp": [
      0,
      0,
      -4,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(drop(input,2))),-1))"
  },
  {
    "input": "input : list = [-2, 1, -5, -2, 0, 3]\noutput : list = [-7, -4, -4]",
    "output": "generated_output : list = reverse(drop(sort_des(sort_des(add_n([-2, 1, -5, -2, 0, 3],-2))),3))",
    "io_inp": [
      -2,
      1,
      -5,
      -2,
      0,
      3
    ],
    "io_out": [
      -7,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(sort_des(add_n(input,-2))),3))"
  },
  {
    "input": "input : list = [-2, 0, -1, 3]\noutput : list = [-1, -4, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n([-2, 0, -1, 3],1),-3))",
    "io_inp": [
      -2,
      0,
      -1,
      3
    ],
    "io_out": [
      -1,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,1),-3))"
  },
  {
    "input": "input : list = [-1, -4, 4, 3, -4, -2]\noutput : list = [8, 7, 3, 2, 0, 0]",
    "output": "generated_output : list = sub_n(take(add_n(take(sort_des([-1, -4, 4, 3, -4, -2]),15),2),30),-2)",
    "io_inp": [
      -1,
      -4,
      4,
      3,
      -4,
      -2
    ],
    "io_out": [
      8,
      7,
      3,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sort_des(input),15),2),30),-2)"
  },
  {
    "input": "input : list = [-2, -5, 1, -2]\noutput : list = [-5, -2, 1]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(drop([-2, -5, 1, -2],1))),23))",
    "io_inp": [
      -2,
      -5,
      1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(drop(input,1))),23))"
  },
  {
    "input": "input : list = [-1, 0, 4, -2, -2]\noutput : list = [1, 1, 2, 3, 7]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(mul_n([-1, 0, 4, -2, -2],1),4),-1)))",
    "io_inp": [
      -1,
      0,
      4,
      -2,
      -2
    ],
    "io_out": [
      1,
      1,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(mul_n(input,1),4),-1)))"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [3, -2, -4]",
    "output": "generated_output : list = sort_des([-4, -2, 3])",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse([0, 0]),-1)),-4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(input),-1)),-4)"
  },
  {
    "input": "input : list = [-3, 3, 2, 0, -3, 5]\noutput : list = [-13, -1]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(take([-3, 3, 2, 0, -3, 5],2),-2),-5),-2))",
    "io_inp": [
      -3,
      3,
      2,
      0,
      -3,
      5
    ],
    "io_out": [
      -13,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(take(input,2),-2),-5),-2))"
  },
  {
    "input": "input : list = [4, -5, -5, -1, 4]\noutput : list = [-2, -2, -7, -11, -11]",
    "output": "generated_output : list = sort_des(sort_des(take(add_n(add_n([4, -5, -5, -1, 4],-1),-5),33)))",
    "io_inp": [
      4,
      -5,
      -5,
      -1,
      4
    ],
    "io_out": [
      -2,
      -2,
      -7,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(add_n(add_n(input,-1),-5),33)))"
  },
  {
    "input": "input : list = [-1, 5, 0, -5, -5, 3]\noutput : list = [4, 2, -1, -2, -6, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_des([-1, 5, 0, -5, -5, 3]),-3))),-2)",
    "io_inp": [
      -1,
      5,
      0,
      -5,
      -5,
      3
    ],
    "io_out": [
      4,
      2,
      -1,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(sort_des(input),-3))),-2)"
  },
  {
    "input": "input : list = [-4, 5, -5, -3, -2]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc([-4, 5, -5, -3, -2])),1),1)",
    "io_inp": [
      -4,
      5,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(input)),1),1)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(sort_des([-3, -2]),-1)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [-6, -6, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(reverse([0, -4, -4]),2),-4),5),1)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(reverse(input),2),-4),5),1)"
  },
  {
    "input": "input : list = [-2, 3, 4]\noutput : list = [-4, -2, 8]",
    "output": "generated_output : list = add_n(reverse(sort_des(mul_n([-2, 3, 4],-2))),4)",
    "io_inp": [
      -2,
      3,
      4
    ],
    "io_out": [
      -4,
      -2,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(mul_n(input,-2))),4)"
  },
  {
    "input": "input : list = [-2, 4, -1]\noutput : list = [12, -36, 4]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(reverse([-2, 4, -1]),2),1)),-4)",
    "io_inp": [
      -2,
      4,
      -1
    ],
    "io_out": [
      12,
      -36,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(reverse(input),2),1)),-4)"
  },
  {
    "input": "input : list = [-4, -4, -5, 3, 1, 1]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = reverse(take(add_n(sort_asc(take([-4, -4, -5, 3, 1, 1],3)),3),27))",
    "io_inp": [
      -4,
      -4,
      -5,
      3,
      1,
      1
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_asc(take(input,3)),3),27))"
  },
  {
    "input": "input : list = [2, 2, -4, -3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(add_n(take(add_n(drop([2, 2, -4, -3],2),5),16),-3))",
    "io_inp": [
      2,
      2,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(add_n(drop(input,2),5),16),-3))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [3, -9]",
    "output": "generated_output : list = mul_n(sub_n([4, 0],3),3)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [0, 0, -1]\noutput : list = [-12, -12, -8]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(mul_n([0, 0, -1],1),1),4),-4),15)",
    "io_inp": [
      0,
      0,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(mul_n(input,1),1),4),-4),15)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-20, -12]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(reverse([3, 5]),-4),1)))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -20,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(reverse(input),-4),1)))"
  },
  {
    "input": "input : list = [4, -3, 5, -5]\noutput : list = [7, 6, -1, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(reverse([4, -3, 5, -5]))),-2)",
    "io_inp": [
      4,
      -3,
      5,
      -5
    ],
    "io_out": [
      7,
      6,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(reverse(input))),-2)"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [13, 8, 7]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n([5, 0, -1],-3)),-2),-5),-4)",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      13,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(add_n(input,-3)),-2),-5),-4)"
  },
  {
    "input": "input : list = [-4, 3, 2, 5, -4, -4]\noutput : list = [-7, -7, -1, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(take(drop(add_n([-4, 3, 2, 5, -4, -4],-3),1),13)))",
    "io_inp": [
      -4,
      3,
      2,
      5,
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(drop(add_n(input,-3),1),13)))"
  },
  {
    "input": "input : list = [-4, 3, 3]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(take(sort_des(take([-4, 3, 3],1)),17),26))",
    "io_inp": [
      -4,
      3,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(take(input,1)),17),26))"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-9, 6, 9]",
    "output": "generated_output : list = mul_n(reverse([-3, -2, 3]),-3)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -9,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-1, -3, 2, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = add_n(sub_n(reverse(reverse(drop([-1, -3, 2, 1, 0],3))),5),5)",
    "io_inp": [
      -1,
      -3,
      2,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(reverse(drop(input,3))),5),5)"
  },
  {
    "input": "input : list = [-2, 1, 4, -2, 1, -2]\noutput : list = [2, -1, -1, -4, -4, -4]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sub_n(sort_des([-2, 1, 4, -2, 1, -2]),1)),1))",
    "io_inp": [
      -2,
      1,
      4,
      -2,
      1,
      -2
    ],
    "io_out": [
      2,
      -1,
      -1,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sub_n(sort_des(input),1)),1))"
  },
  {
    "input": "input : list = [5, 2, -2, -2]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(reverse(take([5, 2, -2, -2],1)),-3)",
    "io_inp": [
      5,
      2,
      -2,
      -2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,1)),-3)"
  },
  {
    "input": "input : list = [-1, -4, 4, -3]\noutput : list = [2, 9]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(drop([-1, -4, 4, -3],2)),1),-4)",
    "io_inp": [
      -1,
      -4,
      4,
      -3
    ],
    "io_out": [
      2,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(drop(input,2)),1),-4)"
  },
  {
    "input": "input : list = [-4, -5, 5, 5, -4]\noutput : list = [0, 1, 1, 10, 10]",
    "output": "generated_output : list = add_n(sort_asc([-4, -5, 5, 5, -4]),5)",
    "io_inp": [
      -4,
      -5,
      5,
      5,
      -4
    ],
    "io_out": [
      0,
      1,
      1,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [4, 2, 1, 4, -1, 0]\noutput : list = [-4, -6, -7, -4, -9, -8]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sub_n([4, 2, 1, 4, -1, 0],-2),-1),-3),5),3)",
    "io_inp": [
      4,
      2,
      1,
      4,
      -1,
      0
    ],
    "io_out": [
      -4,
      -6,
      -7,
      -4,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sub_n(input,-2),-1),-3),5),3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [3]",
    "output": "generated_output : list = reverse(sort_asc(drop(sort_asc([-5, 3]),1)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(sort_asc(input),1)))"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [-2, -4, -7]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(mul_n([0, 2, -3],-1),-1)),-4))",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(mul_n(input,-1),-1)),-4))"
  },
  {
    "input": "input : list = [-3, 3, -2, 4]\noutput : list = [20, 15, -10, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc([-3, 3, -2, 4])),5))",
    "io_inp": [
      -3,
      3,
      -2,
      4
    ],
    "io_out": [
      20,
      15,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(input)),5))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [25]",
    "output": "generated_output : list = sub_n(take(take(mul_n(mul_n([-5, 5],4),-1),9),1),-5)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(mul_n(input,4),-1),9),1),-5)"
  },
  {
    "input": "input : list = [1, -4, 3, -4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take(mul_n(mul_n(take([1, -4, 3, -4],1),4),-1),5))",
    "io_inp": [
      1,
      -4,
      3,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(mul_n(take(input,1),4),-1),5))"
  },
  {
    "input": "input : list = [-2, 5, -2, 3, 0, 3]\noutput : list = [13, 6]",
    "output": "generated_output : list = take(add_n(add_n(sort_des(take([-2, 5, -2, 3, 0, 3],2)),4),4),40)",
    "io_inp": [
      -2,
      5,
      -2,
      3,
      0,
      3
    ],
    "io_out": [
      13,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_des(take(input,2)),4),4),40)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(sort_asc([5, -5]))),22))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(sort_asc(input))),22))"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [5, -3, 0]",
    "output": "generated_output : list = add_n(add_n([5, -3, 0],-3),3)",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),3)"
  },
  {
    "input": "input : list = [4, 1, 0, 1, 2]\noutput : list = [13, 19, 22, 22, 25]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(add_n([4, 1, 0, 1, 2],-3),-4)),-3),-4)",
    "io_inp": [
      4,
      1,
      0,
      1,
      2
    ],
    "io_out": [
      13,
      19,
      22,
      22,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(add_n(input,-3),-4)),-3),-4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [12, 36]",
    "output": "generated_output : list = sort_asc(mul_n(take(add_n(mul_n([4, -2],1),5),11),4))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      12,
      36
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(add_n(mul_n(input,1),5),11),4))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [4, -6]",
    "output": "generated_output : list = reverse(add_n(take(add_n(mul_n([-5, 5],1),1),8),-2))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(mul_n(input,1),1),8),-2))"
  },
  {
    "input": "input : list = [0, 5, -2, -2, -2]\noutput : list = [-6, -6, -6, -4, 1]",
    "output": "generated_output : list = sort_asc(add_n([0, 5, -2, -2, -2],-4))",
    "io_inp": [
      0,
      5,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 5, -1, 1, -4]\noutput : list = [12, 32]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(drop([-2, 5, -1, 1, -4],3),-4),-4)))",
    "io_inp": [
      -2,
      5,
      -1,
      1,
      -4
    ],
    "io_out": [
      12,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(drop(input,3),-4),-4)))"
  },
  {
    "input": "input : list = [5, 5, -2]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = sort_des([5, 5, -2])",
    "io_inp": [
      5,
      5,
      -2
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, -4, -2, 5]\noutput : list = [-3, -2, -1, 1, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sub_n([-3, 0, -4, -2, 5],-2),-1))))",
    "io_inp": [
      -3,
      0,
      -4,
      -2,
      5
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sub_n(input,-2),-1))))"
  },
  {
    "input": "input : list = [-3, 2, 5, 4, -2]\noutput : list = [-2, 4, 5, 2, -3]",
    "output": "generated_output : list = reverse([-3, 2, 5, 4, -2])",
    "io_inp": [
      -3,
      2,
      5,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, -5, -4]\noutput : list = [-1, 4, -4, -3]",
    "output": "generated_output : list = sub_n(add_n([-2, 3, -5, -4],-3),-4)",
    "io_inp": [
      -2,
      3,
      -5,
      -4
    ],
    "io_out": [
      -1,
      4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),-4)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [9, -15, -12]",
    "output": "generated_output : list = mul_n([-3, 5, 4],-3)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      9,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(take([-1, -5, -4],1))),-4),2)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(take(input,1))),-4),2)"
  },
  {
    "input": "input : list = [1, -5, -2, 4, 1]\noutput : list = [-5, -2, 4, 1]",
    "output": "generated_output : list = drop([1, -5, -2, 4, 1],1)",
    "io_inp": [
      1,
      -5,
      -2,
      4,
      1
    ],
    "io_out": [
      -5,
      -2,
      4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 3, 0, -5, 2]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(add_n(reverse(mul_n(take([-1, 3, 0, -5, 2],1),-2)),3))",
    "io_inp": [
      -1,
      3,
      0,
      -5,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(mul_n(take(input,1),-2)),3))"
  },
  {
    "input": "input : list = [5, 5, 1, 5, 4, -3]\noutput : list = [0, 0, 0, -1, -4, -8]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_asc([5, 5, 1, 5, 4, -3])),-3),-4),-4)",
    "io_inp": [
      5,
      5,
      1,
      5,
      4,
      -3
    ],
    "io_out": [
      0,
      0,
      0,
      -1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_asc(input)),-3),-4),-4)"
  },
  {
    "input": "input : list = [0, 0, 4, 2, -5, 0]\noutput : list = [-4, 1, 1, 1, 3, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(add_n([0, 0, 4, 2, -5, 0],2)),21)),1)",
    "io_inp": [
      0,
      0,
      4,
      2,
      -5,
      0
    ],
    "io_out": [
      -4,
      1,
      1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(add_n(input,2)),21)),1)"
  },
  {
    "input": "input : list = [2, 4, -5, 5, -4, -1]\noutput : list = [-10, -8, -4, 2, 8, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sort_asc([2, 4, -5, 5, -4, -1]))),-2))",
    "io_inp": [
      2,
      4,
      -5,
      5,
      -4,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -4,
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-4, 0, 4]\noutput : list = [-2, 6, 14]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse(sort_asc([-4, 0, 4])),-3)),-2)",
    "io_inp": [
      -4,
      0,
      4
    ],
    "io_out": [
      -2,
      6,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(sort_asc(input)),-3)),-2)"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [10, 8, 5]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(sort_asc([5, 0, 3])),-4),1),20)",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      10,
      8,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(sort_asc(input)),-4),1),20)"
  },
  {
    "input": "input : list = [4, 2, 0, -2, 5]\noutput : list = [5, 4, 2, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([4, 2, 0, -2, 5])))",
    "io_inp": [
      4,
      2,
      0,
      -2,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-3, -3, -1]\noutput : list = [2, 0]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(drop([-3, -3, -1],1)),-1)),-2)",
    "io_inp": [
      -3,
      -3,
      -1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(drop(input,1)),-1)),-2)"
  },
  {
    "input": "input : list = [0, -1, 3, 4, -3]\noutput : list = [8, 12, 24, 28, 36]",
    "output": "generated_output : list = reverse(sort_des(mul_n(add_n(sub_n([0, -1, 3, 4, -3],1),-5),-4)))",
    "io_inp": [
      0,
      -1,
      3,
      4,
      -3
    ],
    "io_out": [
      8,
      12,
      24,
      28,
      36
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(add_n(sub_n(input,1),-5),-4)))"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [2, 6, 10]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sort_asc([-3, -1, -5]),-2)),-2),-2)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sort_asc(input),-2)),-2),-2)"
  },
  {
    "input": "input : list = [-2, 0, 5, -1, -3, 5]\noutput : list = [0, 5, -1, -3, 5]",
    "output": "generated_output : list = drop([-2, 0, 5, -1, -3, 5],1)",
    "io_inp": [
      -2,
      0,
      5,
      -1,
      -3,
      5
    ],
    "io_out": [
      0,
      5,
      -1,
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 1, -3, 0]\noutput : list = [6, 3, 0, -9]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n([2, 1, -3, 0],3),3)),-3)",
    "io_inp": [
      2,
      1,
      -3,
      0
    ],
    "io_out": [
      6,
      3,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(input,3),3)),-3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, -2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(drop([-3, -3, -2, 5],2))",
    "io_inp": [
      -3,
      -3,
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-4, 3, 1, -2, -4]\noutput : list = [-34, -24, -9, 1]",
    "output": "generated_output : list = sub_n(drop(sort_asc(mul_n(sub_n([-4, 3, 1, -2, -4],2),5)),1),4)",
    "io_inp": [
      -4,
      3,
      1,
      -2,
      -4
    ],
    "io_out": [
      -34,
      -24,
      -9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(mul_n(sub_n(input,2),5)),1),4)"
  },
  {
    "input": "input : list = [-5, 1, 5]\noutput : list = [20, -4, -20]",
    "output": "generated_output : list = mul_n([-5, 1, 5],-4)",
    "io_inp": [
      -5,
      1,
      5
    ],
    "io_out": [
      20,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 3, 3, -5, 3]\noutput : list = [4, 8, 8, 8]",
    "output": "generated_output : list = drop(add_n(sort_asc(sort_des(sort_des([-1, 3, 3, -5, 3]))),5),1)",
    "io_inp": [
      -1,
      3,
      3,
      -5,
      3
    ],
    "io_out": [
      4,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(sort_des(sort_des(input))),5),1)"
  },
  {
    "input": "input : list = [-1, 2, 0, -4, 1, 2]\noutput : list = [0, 0, -1, -2, -3, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc([-1, 2, 0, -4, 1, 2])),-2))",
    "io_inp": [
      -1,
      2,
      0,
      -4,
      1,
      2
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(input)),-2))"
  },
  {
    "input": "input : list = [-5, 4, 0, 3, 1, -4]\noutput : list = [11, 10, 8, 7, 3, 2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sub_n([-5, 4, 0, 3, 1, -4],-2)),-2),-3))",
    "io_inp": [
      -5,
      4,
      0,
      3,
      1,
      -4
    ],
    "io_out": [
      11,
      10,
      8,
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sub_n(input,-2)),-2),-3))"
  },
  {
    "input": "input : list = [-5, -1, -4]\noutput : list = [-6, -5, -2]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(add_n([-5, -1, -4],-1)),4)))",
    "io_inp": [
      -5,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(add_n(input,-1)),4)))"
  },
  {
    "input": "input : list = [-3, 0, 4, -5]\noutput : list = [-1, -5, -8, -10]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(add_n([-3, 0, 4, -5],-5)))),8)",
    "io_inp": [
      -3,
      0,
      4,
      -5
    ],
    "io_out": [
      -1,
      -5,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(add_n(input,-5)))),8)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc([2, 0])",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, 1, 3]\noutput : list = [1, -1, -5]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des(drop([4, -3, 1, 3],1))),32),2)",
    "io_inp": [
      4,
      -3,
      1,
      3
    ],
    "io_out": [
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(drop(input,1))),32),2)"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [1, 7, 8]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(sub_n([4, -2, 5],-2),9)),34),-1)",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      1,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(sub_n(input,-2),9)),34),-1)"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [-15, -7, -6]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(reverse([4, 3, -5])),26),-5),-5)",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      -15,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(reverse(input)),26),-5),-5)"
  },
  {
    "input": "input : list = [-4, 5, -1, 0, 3, 4]\noutput : list = [0, 9, 3, 4, 7, 8]",
    "output": "generated_output : list = take(add_n([-4, 5, -1, 0, 3, 4],4),15)",
    "io_inp": [
      -4,
      5,
      -1,
      0,
      3,
      4
    ],
    "io_out": [
      0,
      9,
      3,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),15)"
  },
  {
    "input": "input : list = [-2, -5, 1, 1]\noutput : list = [18, 18, 3, -12]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(sub_n([-2, -5, 1, 1],-3),5)),2))",
    "io_inp": [
      -2,
      -5,
      1,
      1
    ],
    "io_out": [
      18,
      18,
      3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(sub_n(input,-3),5)),2))"
  },
  {
    "input": "input : list = [3, -4, 3, 4]\noutput : list = [12, 11]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(drop([3, -4, 3, 4],2)),5),3))",
    "io_inp": [
      3,
      -4,
      3,
      4
    ],
    "io_out": [
      12,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(drop(input,2)),5),3))"
  },
  {
    "input": "input : list = [3, -5, -3, 4]\noutput : list = [-5, -3, 4]",
    "output": "generated_output : list = drop([3, -5, -3, 4],1)",
    "io_inp": [
      3,
      -5,
      -3,
      4
    ],
    "io_out": [
      -5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 3, -2, 4, -1, 0]\noutput : list = [-7, -1, -6, -5]",
    "output": "generated_output : list = drop(take(add_n(sub_n(sub_n([2, 3, -2, 4, -1, 0],-2),2),-5),30),2)",
    "io_inp": [
      2,
      3,
      -2,
      4,
      -1,
      0
    ],
    "io_out": [
      -7,
      -1,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = drop(take(add_n(sub_n(sub_n(input,-2),2),-5),30),2)"
  },
  {
    "input": "input : list = [3, 1, 5, 4]\noutput : list = [-35, -25, -20, -15]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sub_n([3, 1, 5, 4],5)),3),5))",
    "io_inp": [
      3,
      1,
      5,
      4
    ],
    "io_out": [
      -35,
      -25,
      -20,
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sub_n(input,5)),3),5))"
  },
  {
    "input": "input : list = [4, -4, -4, -2, 2, -1]\noutput : list = [12, 6, -3, -6, -12, -12]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(mul_n([4, -4, -4, -2, 2, -1],3)))))",
    "io_inp": [
      4,
      -4,
      -4,
      -2,
      2,
      -1
    ],
    "io_out": [
      12,
      6,
      -3,
      -6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des([3, 4]),-2),3))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(input),-2),3))"
  },
  {
    "input": "input : list = [3, 0, -4]\noutput : list = [0]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(take([3, 0, -4],1),1),1),-2),-3)",
    "io_inp": [
      3,
      0,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(take(input,1),1),1),-2),-3)"
  },
  {
    "input": "input : list = [2, 1, -3]\noutput : list = [-2, -3, -7]",
    "output": "generated_output : list = sub_n(add_n(take(take(sort_des([2, 1, -3]),16),5),-3),1)",
    "io_inp": [
      2,
      1,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(sort_des(input),16),5),-3),1)"
  },
  {
    "input": "input : list = [-2, -3, -3, -4, -2, -3]\noutput : list = [-6, -5, -5, -5, -4, -4]",
    "output": "generated_output : list = sub_n(sort_asc([-2, -3, -3, -4, -2, -3]),2)",
    "io_inp": [
      -2,
      -3,
      -3,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-4, -2, -2, -3, 4, -4]\noutput : list = [-3, 5, -2, -1, -1, -3]",
    "output": "generated_output : list = reverse(sub_n([-4, -2, -2, -3, 4, -4],-1))",
    "io_inp": [
      -4,
      -2,
      -2,
      -3,
      4,
      -4
    ],
    "io_out": [
      -3,
      5,
      -2,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-1))"
  },
  {
    "input": "input : list = [1, 5, 1, 1]\noutput : list = [9, 9, 9, -3]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(sub_n([1, 5, 1, 1],4)),-3),27))",
    "io_inp": [
      1,
      5,
      1,
      1
    ],
    "io_out": [
      9,
      9,
      9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(sub_n(input,4)),-3),27))"
  },
  {
    "input": "input : list = [5, -4, 5, -5]\noutput : list = [7, -3, 6, -3]",
    "output": "generated_output : list = take(reverse(add_n(sub_n(mul_n([5, -4, 5, -5],-1),1),3)),10)",
    "io_inp": [
      5,
      -4,
      5,
      -5
    ],
    "io_out": [
      7,
      -3,
      6,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sub_n(mul_n(input,-1),1),3)),10)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [1, 3, 4]",
    "output": "generated_output : list = reverse(sort_des([1, 3, 4]))",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -2, 0, 5, 4, -5]\noutput : list = [1, 2, 4, 6, 10, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc([-4, -2, 0, 5, 4, -5]),-1),-5))",
    "io_inp": [
      -4,
      -2,
      0,
      5,
      4,
      -5
    ],
    "io_out": [
      1,
      2,
      4,
      6,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(input),-1),-5))"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [-1, -8, -6]",
    "output": "generated_output : list = add_n(add_n([4, -3, -1],-2),-3)",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),-3)"
  },
  {
    "input": "input : list = [2, -2, 5, 2, 1, -5]\noutput : list = [17, 14, 13, 7]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(drop([2, -2, 5, 2, 1, -5],2),3),-2),5),2)",
    "io_inp": [
      2,
      -2,
      5,
      2,
      1,
      -5
    ],
    "io_out": [
      17,
      14,
      13,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(drop(input,2),3),-2),5),2)"
  },
  {
    "input": "input : list = [-3, 0, -5, -1, 2]\noutput : list = [-9, 3, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(drop([-3, 0, -5, -1, 2],2),6),-2)),3)",
    "io_inp": [
      -3,
      0,
      -5,
      -1,
      2
    ],
    "io_out": [
      -9,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(drop(input,2),6),-2)),3)"
  },
  {
    "input": "input : list = [-3, -5, 0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sort_asc(reverse(drop(sort_asc([-3, -5, 0, 3]),2))))",
    "io_inp": [
      -3,
      -5,
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(drop(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [2, 2, 1, -2]\noutput : list = [-4, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(sort_asc([2, 2, 1, -2]),1),2),12))",
    "io_inp": [
      2,
      2,
      1,
      -2
    ],
    "io_out": [
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(sort_asc(input),1),2),12))"
  },
  {
    "input": "input : list = [-3, -5, -1]\noutput : list = [3, 5, 7]",
    "output": "generated_output : list = mul_n(sort_des(take(sort_des(sub_n([-3, -5, -1],2)),15)),-1)",
    "io_inp": [
      -3,
      -5,
      -1
    ],
    "io_out": [
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sort_des(sub_n(input,2)),15)),-1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [0, -5]",
    "output": "generated_output : list = take(add_n(mul_n([-3, 2],-1),-3),15)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,-1),-3),15)"
  },
  {
    "input": "input : list = [-5, 4, -1, -1, 2, 4]\noutput : list = [2, 2, 0, -3, -3, -7]",
    "output": "generated_output : list = sort_des(reverse(sub_n([-5, 4, -1, -1, 2, 4],2)))",
    "io_inp": [
      -5,
      4,
      -1,
      -1,
      2,
      4
    ],
    "io_out": [
      2,
      2,
      0,
      -3,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,2)))"
  },
  {
    "input": "input : list = [0, -1, -2, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = take([0, -1, -2, -1],2)",
    "io_inp": [
      0,
      -1,
      -2,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -3, 3, -2]\noutput : list = [-9, -9, -7, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(mul_n([-3, -3, 3, -2],2),3),21)))",
    "io_inp": [
      -3,
      -3,
      3,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -7,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(mul_n(input,2),3),21)))"
  },
  {
    "input": "input : list = [-5, -2, 5, -2, -5]\noutput : list = [-116, -116, -56, -56, 84]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(mul_n([-5, -2, 5, -2, -5],-5),1),4)),-4)",
    "io_inp": [
      -5,
      -2,
      5,
      -2,
      -5
    ],
    "io_out": [
      -116,
      -116,
      -56,
      -56,
      84
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(mul_n(input,-5),1),4)),-4)"
  },
  {
    "input": "input : list = [1, -4, 1, -3, 2, -4]\noutput : list = [-6, -6, -5, -1, -1, 0]",
    "output": "generated_output : list = sub_n(take(add_n(take(sort_asc([1, -4, 1, -3, 2, -4]),24),-5),35),-3)",
    "io_inp": [
      1,
      -4,
      1,
      -3,
      2,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sort_asc(input),24),-5),35),-3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-3, -1],-1),2))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,-1),2))"
  },
  {
    "input": "input : list = [5, -5, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = take(reverse(take(sort_asc(drop([5, -5, 1],1)),22)),30)",
    "io_inp": [
      5,
      -5,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(drop(input,1)),22)),30)"
  },
  {
    "input": "input : list = [0, 1, 1, -3, 3]\noutput : list = [-9, 9]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(drop([0, 1, 1, -3, 3],3),-3)),27))",
    "io_inp": [
      0,
      1,
      1,
      -3,
      3
    ],
    "io_out": [
      -9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(drop(input,3),-3)),27))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(reverse([1, 1]),1),-2)),1)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(reverse(input),1),-2)),1)"
  },
  {
    "input": "input : list = [-1, 2, -4, -2]\noutput : list = [-10, 5, 10, 20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(sort_des([-1, 2, -4, -2])))),-5)",
    "io_inp": [
      -1,
      2,
      -4,
      -2
    ],
    "io_out": [
      -10,
      5,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [0, 2, -4, -5, -5, -4]\noutput : list = [18, 18, 16, 16, 8, 4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(add_n([0, 2, -4, -5, -5, -4],-4),-2))))",
    "io_inp": [
      0,
      2,
      -4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      18,
      18,
      16,
      16,
      8,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(add_n(input,-4),-2))))"
  },
  {
    "input": "input : list = [1, 0, 1, -4, -3]\noutput : list = [1, 1, 0, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n([1, 0, 1, -4, -3],4),5)),-1)",
    "io_inp": [
      1,
      0,
      1,
      -4,
      -3
    ],
    "io_out": [
      1,
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(input,4),5)),-1)"
  },
  {
    "input": "input : list = [3, 3, 4, -4, 5]\noutput : list = [6]",
    "output": "generated_output : list = take(sub_n(take([3, 3, 4, -4, 5],1),-3),31)",
    "io_inp": [
      3,
      3,
      4,
      -4,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),-3),31)"
  },
  {
    "input": "input : list = [-3, -1, 4, -1]\noutput : list = [4, 6, 6, 11]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(sort_asc([-3, -1, 4, -1])),13),5),2)",
    "io_inp": [
      -3,
      -1,
      4,
      -1
    ],
    "io_out": [
      4,
      6,
      6,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(sort_asc(input)),13),5),2)"
  },
  {
    "input": "input : list = [0, -5, 1, 5, 5]\noutput : list = [-3, -8, -2, 2, 2]",
    "output": "generated_output : list = add_n([0, -5, 1, 5, 5],-3)",
    "io_inp": [
      0,
      -5,
      1,
      5,
      5
    ],
    "io_out": [
      -3,
      -8,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -4, -5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = drop([-3, -4, -5, -3],2)",
    "io_inp": [
      -3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n([-2, -2],-3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, -5, 0, 3]\noutput : list = [0, 15, 40, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse([3, -5, 0, 3]),-3),-5)",
    "io_inp": [
      3,
      -5,
      0,
      3
    ],
    "io_out": [
      0,
      15,
      40,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-3),-5)"
  },
  {
    "input": "input : list = [-3, -4, 2, -4]\noutput : list = [11, 6, 5, 5]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_asc([-3, -4, 2, -4]),1),3),-5))",
    "io_inp": [
      -3,
      -4,
      2,
      -4
    ],
    "io_out": [
      11,
      6,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(sort_asc(input),1),3),-5))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-8, -11]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(sort_asc([4, 3]),-3),1)))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -8,
      -11
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(sort_asc(input),-3),1)))"
  },
  {
    "input": "input : list = [1, -4, 4]\noutput : list = [30, -45, 75]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(mul_n([1, -4, 4],5),-5),1),3),30)",
    "io_inp": [
      1,
      -4,
      4
    ],
    "io_out": [
      30,
      -45,
      75
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(mul_n(input,5),-5),1),3),30)"
  },
  {
    "input": "input : list = [-3, 4, -5, 3, 0, -4]\noutput : list = [0, 7, -2, 6, 3, -1]",
    "output": "generated_output : list = add_n([-3, 4, -5, 3, 0, -4],3)",
    "io_inp": [
      -3,
      4,
      -5,
      3,
      0,
      -4
    ],
    "io_out": [
      0,
      7,
      -2,
      6,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(reverse([5, -4]),1),-1)),13)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(reverse(input),1),-1)),13)"
  },
  {
    "input": "input : list = [-2, 0, -3, -1, 3, -1]\noutput : list = [-1, 3, -1, -3, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, -3, -1, 3, -1])",
    "io_inp": [
      -2,
      0,
      -3,
      -1,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      -1,
      -3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, 0, -2]\noutput : list = [-2, 0, 4, 1]",
    "output": "generated_output : list = reverse(take(take(reverse(reverse([1, 4, 0, -2])),13),29))",
    "io_inp": [
      1,
      4,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(reverse(input)),13),29))"
  },
  {
    "input": "input : list = [-5, -2, -2, -1, -3, -4]\noutput : list = [3, 6, 6, 9, 12, 15]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(mul_n([-5, -2, -2, -1, -3, -4],-3),26)),38),1)",
    "io_inp": [
      -5,
      -2,
      -2,
      -1,
      -3,
      -4
    ],
    "io_out": [
      3,
      6,
      6,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(mul_n(input,-3),26)),38),1)"
  },
  {
    "input": "input : list = [3, 0, 4, -3]\noutput : list = [-3, 0, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_asc([3, 0, 4, -3]),1))),-1)",
    "io_inp": [
      3,
      0,
      4,
      -3
    ],
    "io_out": [
      -3,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_asc(input),1))),-1)"
  },
  {
    "input": "input : list = [-4, -1, 5, -4, -4, -3]\noutput : list = [15, -3, -9, -12, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse(sort_asc([-4, -1, 5, -4, -4, -3]))),3))",
    "io_inp": [
      -4,
      -1,
      5,
      -4,
      -4,
      -3
    ],
    "io_out": [
      15,
      -3,
      -9,
      -12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [-1, -1, -4, 4, -2]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(mul_n(take([-1, -1, -4, 4, -2],1),2),-3)),4)",
    "io_inp": [
      -1,
      -1,
      -4,
      4,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(mul_n(take(input,1),2),-3)),4)"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [7, 0, 1]",
    "output": "generated_output : list = add_n([4, -3, -2],3)",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      7,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [1, 1, 0, -5, -3]\noutput : list = [-1, 1, 4, 5, 5]",
    "output": "generated_output : list = reverse(add_n(sort_des([1, 1, 0, -5, -3]),4))",
    "io_inp": [
      1,
      1,
      0,
      -5,
      -3
    ],
    "io_out": [
      -1,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(add_n(take([-5, -1, 5],1),2),-2)",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),2),-2)"
  },
  {
    "input": "input : list = [2, 4, -2, 3, 1, -1]\noutput : list = [5, 4, 2, 1, 0, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(add_n([2, 4, -2, 3, 1, -1],2),-1)),-5))",
    "io_inp": [
      2,
      4,
      -2,
      3,
      1,
      -1
    ],
    "io_out": [
      5,
      4,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(add_n(input,2),-1)),-5))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(add_n([2, -4],1)),-2)))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(add_n(input,1)),-2)))"
  },
  {
    "input": "input : list = [4, 4, 0, -2, -3, 0]\noutput : list = [-2, -5, -4, -2, 2, 2]",
    "output": "generated_output : list = reverse(add_n([4, 4, 0, -2, -3, 0],-2))",
    "io_inp": [
      4,
      4,
      0,
      -2,
      -3,
      0
    ],
    "io_out": [
      -2,
      -5,
      -4,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-4, 1, 0, 5, 3, 3]\noutput : list = [-11, -5, -5, 1, 4, 16]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(mul_n([-4, 1, 0, 5, 3, 3],-3)))),4)",
    "io_inp": [
      -4,
      1,
      0,
      5,
      3,
      3
    ],
    "io_out": [
      -11,
      -5,
      -5,
      1,
      4,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(mul_n(input,-3)))),4)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = sort_des([-2, -1, -1])",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [30, 10, -40]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(sort_des([3, 1, -4]),-5),5),-2))",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      30,
      10,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(sort_des(input),-5),5),-2))"
  },
  {
    "input": "input : list = [-1, 4, 0, 3, -3]\noutput : list = [7, 6, 3, 2, 0]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(sort_asc([-1, 4, 0, 3, -3]),2),5),23))",
    "io_inp": [
      -1,
      4,
      0,
      3,
      -3
    ],
    "io_out": [
      7,
      6,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(sort_asc(input),2),5),23))"
  },
  {
    "input": "input : list = [3, 3, -4, -2]\noutput : list = [-2, -4, 3, 3]",
    "output": "generated_output : list = reverse([3, 3, -4, -2])",
    "io_inp": [
      3,
      3,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 4, 0, 3]\noutput : list = [-21, -21, -16, -1, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des([0, 4, 4, 0, 3]),-5),-1)))",
    "io_inp": [
      0,
      4,
      4,
      0,
      3
    ],
    "io_out": [
      -21,
      -21,
      -16,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(sort_des(input),-5),-1)))"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(add_n([-1, 1],-1)),1)))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(add_n(input,-1)),1)))"
  },
  {
    "input": "input : list = [5, 2, 5, -4]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(take([5, 2, 5, -4],1),3)",
    "io_inp": [
      5,
      2,
      5,
      -4
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [0, 1, -5, 3, 1, -3]\noutput : list = [-18, -6, -6, 0, 18, 30]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n([0, 1, -5, 3, 1, -3],-2)),3))",
    "io_inp": [
      0,
      1,
      -5,
      3,
      1,
      -3
    ],
    "io_out": [
      -18,
      -6,
      -6,
      0,
      18,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(input,-2)),3))"
  },
  {
    "input": "input : list = [2, -5, 1, 4]\noutput : list = [4]",
    "output": "generated_output : list = drop(take(sort_asc(reverse(sort_des([2, -5, 1, 4]))),6),3)",
    "io_inp": [
      2,
      -5,
      1,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(reverse(sort_des(input))),6),3)"
  },
  {
    "input": "input : list = [2, 0, -2, -5, -4]\noutput : list = [-10, -20, -30, -40, -45]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sort_des([2, 0, -2, -5, -4]),24),-5),5),-5)",
    "io_inp": [
      2,
      0,
      -2,
      -5,
      -4
    ],
    "io_out": [
      -10,
      -20,
      -30,
      -40,
      -45
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sort_des(input),24),-5),5),-5)"
  },
  {
    "input": "input : list = [-5, 0, -4, -1, 5, -5]\noutput : list = [5, 0, -1, -4, -5, -5]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(reverse([-5, 0, -4, -1, 5, -5])),3)),3)",
    "io_inp": [
      -5,
      0,
      -4,
      -1,
      5,
      -5
    ],
    "io_out": [
      5,
      0,
      -1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(reverse(input)),3)),3)"
  },
  {
    "input": "input : list = [3, 2, -3, -4, -3]\noutput : list = [-7, -6, -6, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc([3, 2, -3, -4, -3]),-3)",
    "io_inp": [
      3,
      2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [4, -3, -2, 1, 4, -3]\noutput : list = [-3, 4, 1, -2, -3, 4]",
    "output": "generated_output : list = take(reverse([4, -3, -2, 1, 4, -3]),26)",
    "io_inp": [
      4,
      -3,
      -2,
      1,
      4,
      -3
    ],
    "io_out": [
      -3,
      4,
      1,
      -2,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),26)"
  },
  {
    "input": "input : list = [-5, -2, -1, 2]\noutput : list = [6, -3]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(reverse(drop([-5, -2, -1, 2],2))),1),3)",
    "io_inp": [
      -5,
      -2,
      -1,
      2
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(reverse(drop(input,2))),1),3)"
  },
  {
    "input": "input : list = [5, 2, 4, 1, 0, 1]\noutput : list = [5]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(take([5, 2, 4, 1, 0, 1],1)),2),23),-2)",
    "io_inp": [
      5,
      2,
      4,
      1,
      0,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(take(input,1)),2),23),-2)"
  },
  {
    "input": "input : list = [-4, -2, -5, 0, -2, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(sort_des(drop(reverse(add_n([-4, -2, -5, 0, -2, -3],-1)),4)))",
    "io_inp": [
      -4,
      -2,
      -5,
      0,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(reverse(add_n(input,-1)),4)))"
  },
  {
    "input": "input : list = [-4, -2, 1, -5]\noutput : list = [-3, -6, -8, -9]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(reverse([-4, -2, 1, -5]),4)),38))",
    "io_inp": [
      -4,
      -2,
      1,
      -5
    ],
    "io_out": [
      -3,
      -6,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(reverse(input),4)),38))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(reverse([1, -1])),2)))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(reverse(input)),2)))"
  },
  {
    "input": "input : list = [3, -3, -2, 2, 2, -5]\noutput : list = [-10, -10, 4]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(drop([3, -3, -2, 2, 2, -5],3)),-2),-3),3)",
    "io_inp": [
      3,
      -3,
      -2,
      2,
      2,
      -5
    ],
    "io_out": [
      -10,
      -10,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(drop(input,3)),-2),-3),3)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [9, 24]",
    "output": "generated_output : list = mul_n(take(take(reverse(add_n([5, 0],3)),20),12),3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      9,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(add_n(input,3)),20),12),3)"
  },
  {
    "input": "input : list = [4, -1, 2, -4]\noutput : list = [4, 1, 6]",
    "output": "generated_output : list = add_n(drop(reverse([4, -1, 2, -4]),1),2)",
    "io_inp": [
      4,
      -1,
      2,
      -4
    ],
    "io_out": [
      4,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(drop(reverse(input),1),2)"
  },
  {
    "input": "input : list = [-2, 3, 3, -3, 2]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take([-2, 3, 3, -3, 2],2),2),-4))",
    "io_inp": [
      -2,
      3,
      3,
      -3,
      2
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(input,2),2),-4))"
  },
  {
    "input": "input : list = [-1, 3, 1, -3]\noutput : list = [15, 5, -5, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-1, 3, 1, -3]),-5))",
    "io_inp": [
      -1,
      3,
      1,
      -3
    ],
    "io_out": [
      15,
      5,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-2, -4, -2, 1]\noutput : list = [0, 24, 24, 60]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sub_n([-2, -4, -2, 1],-4),3),4)),1)",
    "io_inp": [
      -2,
      -4,
      -2,
      1
    ],
    "io_out": [
      0,
      24,
      24,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sub_n(input,-4),3),4)),1)"
  },
  {
    "input": "input : list = [-5, 0, 3, 1, -2, 2]\noutput : list = [-16, -13, -10, -7, -1, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(mul_n([-5, 0, 3, 1, -2, 2],-3),3))),-4)",
    "io_inp": [
      -5,
      0,
      3,
      1,
      -2,
      2
    ],
    "io_out": [
      -16,
      -13,
      -10,
      -7,
      -1,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(mul_n(input,-3),3))),-4)"
  },
  {
    "input": "input : list = [2, -5, -2, -2, 0]\noutput : list = [2, -5]",
    "output": "generated_output : list = take([2, -5, -2, -2, 0],2)",
    "io_inp": [
      2,
      -5,
      -2,
      -2,
      0
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 4, 0, -5, -5, -4]\noutput : list = [4, 3, -1, -6, -6, -5]",
    "output": "generated_output : list = sub_n(add_n([5, 4, 0, -5, -5, -4],4),5)",
    "io_inp": [
      5,
      4,
      0,
      -5,
      -5,
      -4
    ],
    "io_out": [
      4,
      3,
      -1,
      -6,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [5, 5]",
    "output": "generated_output : list = add_n([2, 2],3)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [2, 0, -3, 1, -2, -5]\noutput : list = [8, 7, 6, 4, 3, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(sort_des([2, 0, -3, 1, -2, -5])),-1),-5))",
    "io_inp": [
      2,
      0,
      -3,
      1,
      -2,
      -5
    ],
    "io_out": [
      8,
      7,
      6,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(sort_des(input)),-1),-5))"
  },
  {
    "input": "input : list = [-4, 2, -1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(take(drop([-4, 2, -1],1),9)),1),-1)",
    "io_inp": [
      -4,
      2,
      -1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(take(drop(input,1),9)),1),-1)"
  },
  {
    "input": "input : list = [-3, -2, -4, -5, 2]\noutput : list = [2, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-3, -2, -4, -5, 2])",
    "io_inp": [
      -3,
      -2,
      -4,
      -5,
      2
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 4, -3, -2, 1, 3]\noutput : list = [0, 2, 8, 12, 14, 14]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(mul_n(sort_asc([4, 4, -3, -2, 1, 3]),2),-2),4))",
    "io_inp": [
      4,
      4,
      -3,
      -2,
      1,
      3
    ],
    "io_out": [
      0,
      2,
      8,
      12,
      14,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(mul_n(sort_asc(input),2),-2),4))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [3, -5]",
    "output": "generated_output : list = add_n(sub_n(take(reverse(reverse([4, -4])),21),-3),-4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(reverse(input)),21),-3),-4)"
  },
  {
    "input": "input : list = [-5, -2, 2, 1, 0, 1]\noutput : list = [15, 9, 5, 3, 3, 1]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(sort_asc([-5, -2, 2, 1, 0, 1])),2),-5),-1)",
    "io_inp": [
      -5,
      -2,
      2,
      1,
      0,
      1
    ],
    "io_out": [
      15,
      9,
      5,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(sort_asc(input)),2),-5),-1)"
  },
  {
    "input": "input : list = [4, -2, 5, 1, -1]\noutput : list = [-5, -4, -2, 1, 2]",
    "output": "generated_output : list = add_n(add_n(sort_asc([4, -2, 5, 1, -1]),2),-5)",
    "io_inp": [
      4,
      -2,
      5,
      1,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),2),-5)"
  },
  {
    "input": "input : list = [-1, 0, -4, -2, -4]\noutput : list = [-4, -4, -2, -1, 0]",
    "output": "generated_output : list = sort_asc([-1, 0, -4, -2, -4])",
    "io_inp": [
      -1,
      0,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1, 5, 4]\noutput : list = [6, 5, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(drop([1, 1, 5, 4],1),-2)),4),3)",
    "io_inp": [
      1,
      1,
      5,
      4
    ],
    "io_out": [
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(drop(input,1),-2)),4),3)"
  },
  {
    "input": "input : list = [-5, 0, 4, 0]\noutput : list = [-5, 0, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(reverse([-5, 0, 4, 0])))))",
    "io_inp": [
      -5,
      0,
      4,
      0
    ],
    "io_out": [
      -5,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [3, 5, -2, 0, -4]\noutput : list = [-1, 1, 3, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([3, 5, -2, 0, -4]),3))",
    "io_inp": [
      3,
      5,
      -2,
      0,
      -4
    ],
    "io_out": [
      -1,
      1,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [5, 1, -5, 1]\noutput : list = [-10, -2, 10, -2]",
    "output": "generated_output : list = mul_n([5, 1, -5, 1],-2)",
    "io_inp": [
      5,
      1,
      -5,
      1
    ],
    "io_out": [
      -10,
      -2,
      10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 4, -1, -3]\noutput : list = [-1, -1, -6, -8]",
    "output": "generated_output : list = sub_n([4, 4, -1, -3],5)",
    "io_inp": [
      4,
      4,
      -1,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sub_n([1, -1],5)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [0, 5]",
    "output": "generated_output : list = sub_n([-1, 4],-1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, 4, 4, 0]\noutput : list = [-4, 12, 12, 16]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sub_n(mul_n([5, 4, 4, 0],4),4),-5),-5))",
    "io_inp": [
      5,
      4,
      4,
      0
    ],
    "io_out": [
      -4,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sub_n(mul_n(input,4),4),-5),-5))"
  },
  {
    "input": "input : list = [1, -1, 5, -5, -3, 0]\noutput : list = [-7, -5, -2]",
    "output": "generated_output : list = add_n(sub_n(drop([1, -1, 5, -5, -3, 0],3),1),-1)",
    "io_inp": [
      1,
      -1,
      5,
      -5,
      -3,
      0
    ],
    "io_out": [
      -7,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,3),1),-1)"
  },
  {
    "input": "input : list = [5, -2, 5, 5, -5, -2]\noutput : list = [5, 5, 5, -2, -2, -5]",
    "output": "generated_output : list = sort_des(take(reverse([5, -2, 5, 5, -5, -2]),13))",
    "io_inp": [
      5,
      -2,
      5,
      5,
      -5,
      -2
    ],
    "io_out": [
      5,
      5,
      5,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),13))"
  },
  {
    "input": "input : list = [5, -2, -2, -1, 2, 2]\noutput : list = [-10, -10, -9, -6, -6, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sub_n([5, -2, -2, -1, 2, 2],-3),3)),4),-4)",
    "io_inp": [
      5,
      -2,
      -2,
      -1,
      2,
      2
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sub_n(input,-3),3)),4),-4)"
  },
  {
    "input": "input : list = [4, 2, -5, 2, 1, -4]\noutput : list = [8, 6, -1, 6, 5, 0]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(sub_n([4, 2, -5, 2, 1, -4],3)),2)),5)",
    "io_inp": [
      4,
      2,
      -5,
      2,
      1,
      -4
    ],
    "io_out": [
      8,
      6,
      -1,
      6,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(sub_n(input,3)),2)),5)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [-6, -2, 1]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(reverse([4, 1, -3]),1),17)),3)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(reverse(input),1),17)),3)"
  },
  {
    "input": "input : list = [-1, 1, 0, -1, -2, 4]\noutput : list = [-5, -4, -4, -3, -2, 1]",
    "output": "generated_output : list = add_n(take(sort_asc([-1, 1, 0, -1, -2, 4]),11),-3)",
    "io_inp": [
      -1,
      1,
      0,
      -1,
      -2,
      4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),11),-3)"
  },
  {
    "input": "input : list = [5, 1, -3, 1, 1]\noutput : list = [-10, 2, 2, 2, 14]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n([5, 1, -3, 1, 1],-3))),5))",
    "io_inp": [
      5,
      1,
      -3,
      1,
      1
    ],
    "io_out": [
      -10,
      2,
      2,
      2,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(mul_n(input,-3))),5))"
  },
  {
    "input": "input : list = [5, 0, 5, 3, -2, -2]\noutput : list = [2, 2, 0, -3, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(sort_des([5, 0, 5, 3, -2, -2]),27),3)))",
    "io_inp": [
      5,
      0,
      5,
      3,
      -2,
      -2
    ],
    "io_out": [
      2,
      2,
      0,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(sort_des(input),27),3)))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc([5, -3])",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -1, -4, 4, -4, 5]\noutput : list = [-3, -2, -2, 1, 6, 7]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(reverse([-5, -1, -4, 4, -4, 5]))),2))",
    "io_inp": [
      -5,
      -1,
      -4,
      4,
      -4,
      5
    ],
    "io_out": [
      -3,
      -2,
      -2,
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(reverse(input))),2))"
  },
  {
    "input": "input : list = [3, -5, 5, -1, 2, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take([3, -5, 5, -1, 2, 2],1))",
    "io_inp": [
      3,
      -5,
      5,
      -1,
      2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-2, 5, 1, 0, -4, 5]\noutput : list = [-2, 0, 2, 3, 7, 7]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(reverse([-2, 5, 1, 0, -4, 5])),-3),2),-1)",
    "io_inp": [
      -2,
      5,
      1,
      0,
      -4,
      5
    ],
    "io_out": [
      -2,
      0,
      2,
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(reverse(input)),-3),2),-1)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-7, -13]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(add_n([-5, 1],-4)),4),1))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -7,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(add_n(input,-4)),4),1))"
  },
  {
    "input": "input : list = [-1, -1, -4, 5, -2, -1]\noutput : list = [-4, -2, -1, -1, -1, 5]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc([-1, -1, -4, 5, -2, -1]),24)))",
    "io_inp": [
      -1,
      -1,
      -4,
      5,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(input),24)))"
  },
  {
    "input": "input : list = [3, 3, -3, 0]\noutput : list = [60, 60, -60]",
    "output": "generated_output : list = take(mul_n(take(mul_n([3, 3, -3, 0],-4),16),-5),3)",
    "io_inp": [
      3,
      3,
      -3,
      0
    ],
    "io_out": [
      60,
      60,
      -60
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(input,-4),16),-5),3)"
  },
  {
    "input": "input : list = [4, -4, -1, -1, 5]\noutput : list = [-4, -1, -1, 4, 5]",
    "output": "generated_output : list = sort_asc([4, -4, -1, -1, 5])",
    "io_inp": [
      4,
      -4,
      -1,
      -1,
      5
    ],
    "io_out": [
      -4,
      -1,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, -1, 0, -2]\noutput : list = [1, -3, -7, -11, -19]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(mul_n([-5, -3, -1, 0, -2],4))),-1))",
    "io_inp": [
      -5,
      -3,
      -1,
      0,
      -2
    ],
    "io_out": [
      1,
      -3,
      -7,
      -11,
      -19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(mul_n(input,4))),-1))"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [6, -3, 0]",
    "output": "generated_output : list = add_n([5, -4, -1],1)",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, -2, -1]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, -2, -1],1),4)",
    "io_inp": [
      0,
      -2,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),4)"
  },
  {
    "input": "input : list = [-5, -5, -1, -3]\noutput : list = [-6, -12, -18, -18]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(mul_n([-5, -5, -1, -3],3),1),28),-2))",
    "io_inp": [
      -5,
      -5,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -12,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(mul_n(input,3),1),28),-2))"
  },
  {
    "input": "input : list = [-2, -2, -4]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -2, -4],1)",
    "io_inp": [
      -2,
      -2,
      -4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 5, -5, -4, 1, -4]\noutput : list = [20, 4, -8, -16, -16, -20]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sub_n([-2, 5, -5, -4, 1, -4],2)),-2)),4)",
    "io_inp": [
      -2,
      5,
      -5,
      -4,
      1,
      -4
    ],
    "io_out": [
      20,
      4,
      -8,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sub_n(input,2)),-2)),4)"
  },
  {
    "input": "input : list = [5, -2, -2, 4, 2, -2]\noutput : list = [5, 4]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_des(sort_des([5, -2, -2, 4, 2, -2])),2)))",
    "io_inp": [
      5,
      -2,
      -2,
      4,
      2,
      -2
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_des(sort_des(input)),2)))"
  },
  {
    "input": "input : list = [1, 3, -3, 3]\noutput : list = [-3, 1, 3, 3]",
    "output": "generated_output : list = sort_asc([1, 3, -3, 3])",
    "io_inp": [
      1,
      3,
      -3,
      3
    ],
    "io_out": [
      -3,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [11, 8, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_des([4, 3, -2]),3),-1)))",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      11,
      8,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(sort_des(input),3),-1)))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-6, -3]",
    "output": "generated_output : list = reverse(sort_des(sub_n([2, -1],5)))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,5)))"
  },
  {
    "input": "input : list = [2, 5, 3, 3, -3, 1]\noutput : list = [3, 1, 1, 0, -1, -5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse(reverse([2, 5, 3, 3, -3, 1])))),2)",
    "io_inp": [
      2,
      5,
      3,
      3,
      -3,
      1
    ],
    "io_out": [
      3,
      1,
      1,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(reverse(input)))),2)"
  },
  {
    "input": "input : list = [3, 3, -3]\noutput : list = [12, -12, -12]",
    "output": "generated_output : list = take(sort_des(sort_des(take(mul_n([3, 3, -3],-4),6))),17)",
    "io_inp": [
      3,
      3,
      -3
    ],
    "io_out": [
      12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(mul_n(input,-4),6))),17)"
  },
  {
    "input": "input : list = [3, -3, -3, 5, 0, 4]\noutput : list = [4, -2, -2, 6, 1, 5]",
    "output": "generated_output : list = add_n([3, -3, -3, 5, 0, 4],1)",
    "io_inp": [
      3,
      -3,
      -3,
      5,
      0,
      4
    ],
    "io_out": [
      4,
      -2,
      -2,
      6,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(add_n([3, 1],-3)))),-3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(add_n(input,-3)))),-3)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [3, 5, 6]",
    "output": "generated_output : list = add_n(take(add_n(add_n(sub_n([-2, 0, 1],-1),2),-2),18),4)",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(sub_n(input,-1),2),-2),18),4)"
  },
  {
    "input": "input : list = [0, 2, 3, -2]\noutput : list = [-2, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(drop([0, 2, 3, -2],1)))))",
    "io_inp": [
      0,
      2,
      3,
      -2
    ],
    "io_out": [
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-2, 0, 5, 2]\noutput : list = [-30, -15]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(drop([-2, 0, 5, 2],2),1),20)),-5)",
    "io_inp": [
      -2,
      0,
      5,
      2
    ],
    "io_out": [
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(drop(input,2),1),20)),-5)"
  },
  {
    "input": "input : list = [-4, 2, -1, 5, -5]\noutput : list = [-9, 1, -5, -2, -8]",
    "output": "generated_output : list = take(sub_n(take(take(reverse([-4, 2, -1, 5, -5]),16),18),4),52)",
    "io_inp": [
      -4,
      2,
      -1,
      5,
      -5
    ],
    "io_out": [
      -9,
      1,
      -5,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(reverse(input),16),18),4),52)"
  },
  {
    "input": "input : list = [3, -5, -4, 4, -1, 5]\noutput : list = [-1, 0, 3, 7, 8, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([3, -5, -4, 4, -1, 5],-3)),-1)",
    "io_inp": [
      3,
      -5,
      -4,
      4,
      -1,
      5
    ],
    "io_out": [
      -1,
      0,
      3,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-3)),-1)"
  },
  {
    "input": "input : list = [0, -2, 5, 5, 5, 3]\noutput : list = [-1, 1, 1, 1, -6, -4]",
    "output": "generated_output : list = sub_n(reverse(sub_n([0, -2, 5, 5, 5, 3],3)),1)",
    "io_inp": [
      0,
      -2,
      5,
      5,
      5,
      3
    ],
    "io_out": [
      -1,
      1,
      1,
      1,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,3)),1)"
  },
  {
    "input": "input : list = [-4, 5, 0, -5, -5]\noutput : list = [-6, -6, -5, -1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(add_n([-4, 5, 0, -5, -5],-3),-3),-4)),5)",
    "io_inp": [
      -4,
      5,
      0,
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(add_n(input,-3),-3),-4)),5)"
  },
  {
    "input": "input : list = [-2, 0, -1, 5, 4, -3]\noutput : list = [-14, -4, -9, 21, 16, -19]",
    "output": "generated_output : list = add_n(add_n(mul_n([-2, 0, -1, 5, 4, -3],5),-1),-3)",
    "io_inp": [
      -2,
      0,
      -1,
      5,
      4,
      -3
    ],
    "io_out": [
      -14,
      -4,
      -9,
      21,
      16,
      -19
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,5),-1),-3)"
  },
  {
    "input": "input : list = [1, 5, 3, 3]\noutput : list = [1, 3, 3, 5]",
    "output": "generated_output : list = take(take(sort_asc([1, 5, 3, 3]),16),23)",
    "io_inp": [
      1,
      5,
      3,
      3
    ],
    "io_out": [
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),16),23)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-8, -7]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n([-2, -3],5)))))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -8,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n(input,5)))))"
  },
  {
    "input": "input : list = [-1, 5, -1, 0, 0, 3]\noutput : list = [9, 0, 0, -3, 15, -3]",
    "output": "generated_output : list = reverse(mul_n(add_n(take(sub_n([-1, 5, -1, 0, 0, 3],2),23),2),3))",
    "io_inp": [
      -1,
      5,
      -1,
      0,
      0,
      3
    ],
    "io_out": [
      9,
      0,
      0,
      -3,
      15,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(sub_n(input,2),23),2),3))"
  },
  {
    "input": "input : list = [-3, 4, -5, 0]\noutput : list = [-2, 5, -4, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(add_n([-3, 4, -5, 0],-4),5),5),1),-5)",
    "io_inp": [
      -3,
      4,
      -5,
      0
    ],
    "io_out": [
      -2,
      5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(add_n(input,-4),5),5),1),-5)"
  },
  {
    "input": "input : list = [-1, 4, -1, 0, 1]\noutput : list = [3, 3, 4, 5, 8]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n(sort_des([-1, 4, -1, 0, 1]),4))),48)",
    "io_inp": [
      -1,
      4,
      -1,
      0,
      1
    ],
    "io_out": [
      3,
      3,
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(sort_des(input),4))),48)"
  },
  {
    "input": "input : list = [-3, 0, 3, 3, 4, 4]\noutput : list = [-100, -100, -75, -75, 0, 75]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_asc([-3, 0, 3, 3, 4, 4]),5),-5)))",
    "io_inp": [
      -3,
      0,
      3,
      3,
      4,
      4
    ],
    "io_out": [
      -100,
      -100,
      -75,
      -75,
      0,
      75
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(sort_asc(input),5),-5)))"
  },
  {
    "input": "input : list = [0, 2, -5, -4, 0, -5]\noutput : list = [16, 16, 12, -4, -4, -12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(mul_n([0, 2, -5, -4, 0, -5],-1),4)),3),4)",
    "io_inp": [
      0,
      2,
      -5,
      -4,
      0,
      -5
    ],
    "io_out": [
      16,
      16,
      12,
      -4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(mul_n(input,-1),4)),3),4)"
  },
  {
    "input": "input : list = [4, -3, 2, -1]\noutput : list = [-8, 6, -4, 2]",
    "output": "generated_output : list = mul_n([4, -3, 2, -1],-2)",
    "io_inp": [
      4,
      -3,
      2,
      -1
    ],
    "io_out": [
      -8,
      6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 1, -4, -3, 4]\noutput : list = [-4, -3, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(drop([-4, 1, -4, -3, 4],2))),28)",
    "io_inp": [
      -4,
      1,
      -4,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(drop(input,2))),28)"
  },
  {
    "input": "input : list = [-4, -3, -2, -2]\noutput : list = [-4, -3, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-4, -3, -2, -2])))",
    "io_inp": [
      -4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-2, -5, -5, 5, -2]\noutput : list = [4, 1, 1, 11, 4]",
    "output": "generated_output : list = add_n(reverse(take(reverse(add_n([-2, -5, -5, 5, -2],5)),13)),1)",
    "io_inp": [
      -2,
      -5,
      -5,
      5,
      -2
    ],
    "io_out": [
      4,
      1,
      1,
      11,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(add_n(input,5)),13)),1)"
  },
  {
    "input": "input : list = [4, -1, -4, 0]\noutput : list = [72, 0, -18, -72]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(mul_n([4, -1, -4, 0],-3)),3),-2),43)",
    "io_inp": [
      4,
      -1,
      -4,
      0
    ],
    "io_out": [
      72,
      0,
      -18,
      -72
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(mul_n(input,-3)),3),-2),43)"
  },
  {
    "input": "input : list = [-1, -5, -4, -4, 4]\noutput : list = [-60, -48, -48, -12, 48]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(reverse([-1, -5, -4, -4, 4])),-3)),-4)",
    "io_inp": [
      -1,
      -5,
      -4,
      -4,
      4
    ],
    "io_out": [
      -60,
      -48,
      -48,
      -12,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(reverse(input)),-3)),-4)"
  },
  {
    "input": "input : list = [-5, -3, 3, 5, -3, 2]\noutput : list = [3, -2, -3, -5]",
    "output": "generated_output : list = mul_n(sort_asc(drop([-5, -3, 3, 5, -3, 2],2)),-1)",
    "io_inp": [
      -5,
      -3,
      3,
      5,
      -3,
      2
    ],
    "io_out": [
      3,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,2)),-1)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [51, 27]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(reverse([-4, -2]),-3),4),-3))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      51,
      27
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(reverse(input),-3),4),-3))"
  },
  {
    "input": "input : list = [2, -5, 3, 1]\noutput : list = [7, 0, 8, 6]",
    "output": "generated_output : list = add_n([2, -5, 3, 1],5)",
    "io_inp": [
      2,
      -5,
      3,
      1
    ],
    "io_out": [
      7,
      0,
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 0, -3, 3, 4, 4]\noutput : list = [0, 4, 1, 7, 8, 8]",
    "output": "generated_output : list = add_n([-4, 0, -3, 3, 4, 4],4)",
    "io_inp": [
      -4,
      0,
      -3,
      3,
      4,
      4
    ],
    "io_out": [
      0,
      4,
      1,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, 0, 0, -5, -1]\noutput : list = [3, -2, -2, -3, -7]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(add_n([5, 0, 0, -5, -1],-2),1)),33))",
    "io_inp": [
      5,
      0,
      0,
      -5,
      -1
    ],
    "io_out": [
      3,
      -2,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(add_n(input,-2),1)),33))"
  },
  {
    "input": "input : list = [2, 3, -5, -1]\noutput : list = [0, -4, 4, 3]",
    "output": "generated_output : list = reverse(add_n([2, 3, -5, -1],1))",
    "io_inp": [
      2,
      3,
      -5,
      -1
    ],
    "io_out": [
      0,
      -4,
      4,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take([-2, -3, 3],1))),3)",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(input,1))),3)"
  },
  {
    "input": "input : list = [-2, -5, -5, -4, 4, 3]\noutput : list = [-10, -9, -17, -18, -18, -15]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n(sub_n([-2, -5, -5, -4, 4, 3],5),5),16)),3)",
    "io_inp": [
      -2,
      -5,
      -5,
      -4,
      4,
      3
    ],
    "io_out": [
      -10,
      -9,
      -17,
      -18,
      -18,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(sub_n(input,5),5),16)),3)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [-5, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_asc([4, -5, 2])))",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, -3, 2],1),5)",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),5)"
  },
  {
    "input": "input : list = [1, 5, -4, 0]\noutput : list = [7, 11, 2, 6]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(reverse([1, 5, -4, 0]),-1),-1)),-4)",
    "io_inp": [
      1,
      5,
      -4,
      0
    ],
    "io_out": [
      7,
      11,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(reverse(input),-1),-1)),-4)"
  },
  {
    "input": "input : list = [4, 3, 2]\noutput : list = [7, 6]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(drop([4, 3, 2],1)),4)))",
    "io_inp": [
      4,
      3,
      2
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(drop(input,1)),4)))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, 5, -5, -3]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(take([2, -2, 5, -5, -3],3)),4),-4))",
    "io_inp": [
      2,
      -2,
      5,
      -5,
      -3
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(take(input,3)),4),-4))"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [-3, -5, -8]",
    "output": "generated_output : list = add_n(sort_des([2, -3, 0]),-5)",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [1, 1, 4, -3]\noutput : list = [-6, -2, 1]",
    "output": "generated_output : list = take(sort_asc(add_n(drop([1, 1, 4, -3],1),-3)),18)",
    "io_inp": [
      1,
      1,
      4,
      -3
    ],
    "io_out": [
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(drop(input,1),-3)),18)"
  },
  {
    "input": "input : list = [5, 5, -1, 0]\noutput : list = [0, -1, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, -1, 0])",
    "io_inp": [
      5,
      5,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 2, 2, 3, 2, -1]\noutput : list = [-9, 18, 18, 18, 27]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(drop([-2, 2, 2, 3, 2, -1],1))),-3),-3)",
    "io_inp": [
      -2,
      2,
      2,
      3,
      2,
      -1
    ],
    "io_out": [
      -9,
      18,
      18,
      18,
      27
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(drop(input,1))),-3),-3)"
  },
  {
    "input": "input : list = [0, -2, 2, 5]\noutput : list = [11, 2, -4, -10]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des([0, -2, 2, 5]),3),16)),4)",
    "io_inp": [
      0,
      -2,
      2,
      5
    ],
    "io_out": [
      11,
      2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sort_des(input),3),16)),4)"
  },
  {
    "input": "input : list = [4, -2, 2, 3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(drop([4, -2, 2, 3],2),-1),28),1))",
    "io_inp": [
      4,
      -2,
      2,
      3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(drop(input,2),-1),28),1))"
  },
  {
    "input": "input : list = [1, -2, 5, 2, 3]\noutput : list = [-6, -15, -18, -27]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(take(add_n([1, -2, 5, 2, 3],4),4),-3)))",
    "io_inp": [
      1,
      -2,
      5,
      2,
      3
    ],
    "io_out": [
      -6,
      -15,
      -18,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(take(add_n(input,4),4),-3)))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_asc([1, -3]),5),2),1))",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_asc(input),5),2),1))"
  },
  {
    "input": "input : list = [0, 4, -2, 4]\noutput : list = [1, 3, 7, 7]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc([0, 4, -2, 4])),-3)))",
    "io_inp": [
      0,
      4,
      -2,
      4
    ],
    "io_out": [
      1,
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n([5, 2],-4)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -3, -5, -5]\noutput : list = [-1, -1, -3, -3]",
    "output": "generated_output : list = add_n(add_n([-3, -3, -5, -5],-2),4)",
    "io_inp": [
      -3,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),4)"
  },
  {
    "input": "input : list = [5, 2, -3, 1, -3, -1]\noutput : list = [-6, -8, -4, -8]",
    "output": "generated_output : list = reverse(sub_n(drop([5, 2, -3, 1, -3, -1],2),5))",
    "io_inp": [
      5,
      2,
      -3,
      1,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -8,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(input,2),5))"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [3, -2, 1]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(add_n([5, 0, 3],-1),-3),5),-4),1)",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(add_n(input,-1),-3),5),-4),1)"
  },
  {
    "input": "input : list = [5, -3, -2, -2, -2, 1]\noutput : list = [9, 6, 6, 6, 5]",
    "output": "generated_output : list = take(add_n(sub_n(take(reverse([5, -3, -2, -2, -2, 1]),5),-4),4),36)",
    "io_inp": [
      5,
      -3,
      -2,
      -2,
      -2,
      1
    ],
    "io_out": [
      9,
      6,
      6,
      6,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(take(reverse(input),5),-4),4),36)"
  },
  {
    "input": "input : list = [-1, -1, 3, 2, -3]\noutput : list = [12, 8, -4, -4, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(reverse([-1, -1, 3, 2, -3]))),4))",
    "io_inp": [
      -1,
      -1,
      3,
      2,
      -3
    ],
    "io_out": [
      12,
      8,
      -4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [2, 1, -1, -1, 4]\noutput : list = [-15, -15, -5, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(sort_des([2, 1, -1, -1, 4]),2),34),5))",
    "io_inp": [
      2,
      1,
      -1,
      -1,
      4
    ],
    "io_out": [
      -15,
      -15,
      -5,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(sort_des(input),2),34),5))"
  },
  {
    "input": "input : list = [-2, 0, -4, -1, 1, 0]\noutput : list = [0, 1, -1, -4, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, -4, -1, 1, 0])",
    "io_inp": [
      -2,
      0,
      -4,
      -1,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      -1,
      -4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 0, -2, 2]\noutput : list = [-10, 10]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(drop([1, 0, -2, 2],2)),5),27))",
    "io_inp": [
      1,
      0,
      -2,
      2
    ],
    "io_out": [
      -10,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(drop(input,2)),5),27))"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(take([-4, -2, -5],1),-1),4),4),-1)",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(take(input,1),-1),4),4),-1)"
  },
  {
    "input": "input : list = [0, -2, -5, 4, -5, -1]\noutput : list = [-5, -1, 4]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(drop([0, -2, -5, 4, -5, -1],3)),30)))",
    "io_inp": [
      0,
      -2,
      -5,
      4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(drop(input,3)),30)))"
  },
  {
    "input": "input : list = [3, 4, 4, -3]\noutput : list = [-24, -28, -28, 0]",
    "output": "generated_output : list = mul_n(add_n([3, 4, 4, -3],3),-4)",
    "io_inp": [
      3,
      4,
      4,
      -3
    ],
    "io_out": [
      -24,
      -28,
      -28,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-4)"
  },
  {
    "input": "input : list = [-1, -4, -4]\noutput : list = [-4, -7, -7]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(add_n([-1, -4, -4],-1),2))))",
    "io_inp": [
      -1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(add_n(input,-1),2))))"
  },
  {
    "input": "input : list = [-2, 5, 1]\noutput : list = [2, -1, -5]",
    "output": "generated_output : list = sort_des(mul_n([-2, 5, 1],-1))",
    "io_inp": [
      -2,
      5,
      1
    ],
    "io_out": [
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [55, 50, 35]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(add_n(add_n([-4, 0, -3],-2),-4)),-5),-5)",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      55,
      50,
      35
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(add_n(add_n(input,-2),-4)),-5),-5)"
  },
  {
    "input": "input : list = [1, -3, -2, 4, -3, -2]\noutput : list = [-17, 13, 13, 18]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(drop([1, -3, -2, 4, -3, -2],2)),-1),5),-3)",
    "io_inp": [
      1,
      -3,
      -2,
      4,
      -3,
      -2
    ],
    "io_out": [
      -17,
      13,
      13,
      18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(drop(input,2)),-1),5),-3)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [-15, -9, -3]",
    "output": "generated_output : list = reverse(reverse(mul_n([5, 3, 1],-3)))",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      -15,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [12, 6, -3]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sort_des([-5, -3, 0]),1),-3)))",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      12,
      6,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(sort_des(input),1),-3)))"
  },
  {
    "input": "input : list = [-1, 4, 5, 5, -1, -2]\noutput : list = [-12, -7, -7, 18, 23, 23]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(sort_des([-1, 4, 5, 5, -1, -2]),5),21),-2))",
    "io_inp": [
      -1,
      4,
      5,
      5,
      -1,
      -2
    ],
    "io_out": [
      -12,
      -7,
      -7,
      18,
      23,
      23
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(sort_des(input),5),21),-2))"
  },
  {
    "input": "input : list = [1, 3, 1, -1, 1, 3]\noutput : list = [3, 3, 1, 1, 1, -1]",
    "output": "generated_output : list = reverse(sort_asc([1, 3, 1, -1, 1, 3]))",
    "io_inp": [
      1,
      3,
      1,
      -1,
      1,
      3
    ],
    "io_out": [
      3,
      3,
      1,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [4, -5, -5]\noutput : list = [-6, -6]",
    "output": "generated_output : list = add_n(sort_des(drop([4, -5, -5],1)),-1)",
    "io_inp": [
      4,
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,1)),-1)"
  },
  {
    "input": "input : list = [2, -2, 4, -4, 0]\noutput : list = [10, 8, 6, 4, 2]",
    "output": "generated_output : list = add_n(add_n(sort_des(sub_n(reverse([2, -2, 4, -4, 0]),2)),4),4)",
    "io_inp": [
      2,
      -2,
      4,
      -4,
      0
    ],
    "io_out": [
      10,
      8,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sub_n(reverse(input),2)),4),4)"
  },
  {
    "input": "input : list = [-4, -4, 0, 2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(take([-4, -4, 0, 2],1)))))",
    "io_inp": [
      -4,
      -4,
      0,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [-4, 2, -4, 1]\noutput : list = [7, 2, 8]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(drop([-4, 2, -4, 1],1)),-1),3),-2)",
    "io_inp": [
      -4,
      2,
      -4,
      1
    ],
    "io_out": [
      7,
      2,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(drop(input,1)),-1),3),-2)"
  },
  {
    "input": "input : list = [1, 1, -2, 1]\noutput : list = [9]",
    "output": "generated_output : list = take(drop(sub_n(take(add_n([1, 1, -2, 1],4),15),-4),3),5)",
    "io_inp": [
      1,
      1,
      -2,
      1
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(take(add_n(input,4),15),-4),3),5)"
  },
  {
    "input": "input : list = [2, 2, -2, -3, 3]\noutput : list = [-3, -2, 2, 2, 3]",
    "output": "generated_output : list = sort_asc([2, 2, -2, -3, 3])",
    "io_inp": [
      2,
      2,
      -2,
      -3,
      3
    ],
    "io_out": [
      -3,
      -2,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, -1, 5, 3, 1]\noutput : list = [-40, -24, -8, -8, 8, 8]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(mul_n([1, -1, -1, 5, 3, 1],-2),4))))",
    "io_inp": [
      1,
      -1,
      -1,
      5,
      3,
      1
    ],
    "io_out": [
      -40,
      -24,
      -8,
      -8,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(mul_n(input,-2),4))))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(take(sub_n([-2, -1],-2),4))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,-2),4))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [0, 25]",
    "output": "generated_output : list = mul_n(add_n(add_n(take(sort_asc([-3, 2]),4),-2),5),5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(sort_asc(input),4),-2),5),5)"
  },
  {
    "input": "input : list = [5, -1, -1]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -1, -1]))",
    "io_inp": [
      5,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 2, -5, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(take(take([2, 2, -5, -4],2),14)),-2))",
    "io_inp": [
      2,
      2,
      -5,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(take(take(input,2),14)),-2))"
  },
  {
    "input": "input : list = [1, -5, 4, 1, 4]\noutput : list = [-4, -10, -1, -4, -1]",
    "output": "generated_output : list = take(add_n([1, -5, 4, 1, 4],-5),14)",
    "io_inp": [
      1,
      -5,
      4,
      1,
      4
    ],
    "io_out": [
      -4,
      -10,
      -1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),14)"
  },
  {
    "input": "input : list = [-4, -1, -3, 0]\noutput : list = [5, 2, 4, 1]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(sub_n([-4, -1, -3, 0],-5),3)),35),3)",
    "io_inp": [
      -4,
      -1,
      -3,
      0
    ],
    "io_out": [
      5,
      2,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(sub_n(input,-5),3)),35),3)"
  },
  {
    "input": "input : list = [-5, -5, -5, 3, 3]\noutput : list = [6, 6, -2, -2, -2]",
    "output": "generated_output : list = add_n(sort_des([-5, -5, -5, 3, 3]),3)",
    "io_inp": [
      -5,
      -5,
      -5,
      3,
      3
    ],
    "io_out": [
      6,
      6,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [1, -2, 3, -1, -3, -2]\noutput : list = [3, 0, 5, 1, -1, 0]",
    "output": "generated_output : list = add_n(reverse(take(add_n(reverse([1, -2, 3, -1, -3, -2]),5),36)),-3)",
    "io_inp": [
      1,
      -2,
      3,
      -1,
      -3,
      -2
    ],
    "io_out": [
      3,
      0,
      5,
      1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(reverse(input),5),36)),-3)"
  },
  {
    "input": "input : list = [-2, 0, 3, -4]\noutput : list = [0, 2, 5, -2]",
    "output": "generated_output : list = sub_n([-2, 0, 3, -4],-2)",
    "io_inp": [
      -2,
      0,
      3,
      -4
    ],
    "io_out": [
      0,
      2,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 5, 4, -5, -2, -3]\noutput : list = [-5, -5, -1, 1, 13, 15]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n([-5, 5, 4, -5, -2, -3],2)),-5))",
    "io_inp": [
      -5,
      5,
      4,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -1,
      1,
      13,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(input,2)),-5))"
  },
  {
    "input": "input : list = [1, -5, 1, -1, -3]\noutput : list = [1, -5, 1]",
    "output": "generated_output : list = mul_n(reverse(take([1, -5, 1, -1, -3],3)),1)",
    "io_inp": [
      1,
      -5,
      1,
      -1,
      -3
    ],
    "io_out": [
      1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,3)),1)"
  },
  {
    "input": "input : list = [1, -1, 5, 2, 5, 0]\noutput : list = [-1, 0, 1, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(reverse([1, -1, 5, 2, 5, 0]),1),27),15))",
    "io_inp": [
      1,
      -1,
      5,
      2,
      5,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(reverse(input),1),27),15))"
  },
  {
    "input": "input : list = [5, 5, -5]\noutput : list = [-5, 5, 5]",
    "output": "generated_output : list = reverse(mul_n([5, 5, -5],1))",
    "io_inp": [
      5,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-13, -9]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_des([-1, -5]))),-3),-5)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -13,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_des(input))),-3),-5)"
  },
  {
    "input": "input : list = [-5, 4, -2, -2, -2, -2]\noutput : list = [4, -2, -2, -2, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 4, -2, -2, -2, -2])",
    "io_inp": [
      -5,
      4,
      -2,
      -2,
      -2,
      -2
    ],
    "io_out": [
      4,
      -2,
      -2,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [7, 3]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(mul_n([2, 4],2),3)),-4),-2)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(mul_n(input,2),3)),-4),-2)"
  },
  {
    "input": "input : list = [-5, -3, -5, 2, 4]\noutput : list = [-5, -3, -5, 2, 4]",
    "output": "generated_output : list = reverse(reverse([-5, -3, -5, 2, 4]))",
    "io_inp": [
      -5,
      -3,
      -5,
      2,
      4
    ],
    "io_out": [
      -5,
      -3,
      -5,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -2, -4, -5, 4]\noutput : list = [-6, 6, 8, 10, 12]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(mul_n([-3, -2, -4, -5, 4],-2))),-2))",
    "io_inp": [
      -3,
      -2,
      -4,
      -5,
      4
    ],
    "io_out": [
      -6,
      6,
      8,
      10,
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(mul_n(input,-2))),-2))"
  },
  {
    "input": "input : list = [-2, -3, -5, -1]\noutput : list = [6, 5, 4, 2]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sub_n([-2, -3, -5, -1],-5),5),4),3))",
    "io_inp": [
      -2,
      -3,
      -5,
      -1
    ],
    "io_out": [
      6,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sub_n(input,-5),5),4),3))"
  },
  {
    "input": "input : list = [5, -3, -1]\noutput : list = [-5, 3]",
    "output": "generated_output : list = add_n(mul_n(add_n(drop([5, -3, -1],1),2),4),-1)",
    "io_inp": [
      5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(drop(input,1),2),4),-1)"
  },
  {
    "input": "input : list = [3, -5, -3, 2, 0, 5]\noutput : list = [15, 0, -10, -25]",
    "output": "generated_output : list = mul_n(take(sort_des(mul_n(drop([3, -5, -3, 2, 0, 5],2),-5)),36),1)",
    "io_inp": [
      3,
      -5,
      -3,
      2,
      0,
      5
    ],
    "io_out": [
      15,
      0,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(mul_n(drop(input,2),-5)),36),1)"
  },
  {
    "input": "input : list = [-5, 2, 2, 3, -1, -4]\noutput : list = [-9, -2, -2, -1, -5, -8]",
    "output": "generated_output : list = add_n([-5, 2, 2, 3, -1, -4],-4)",
    "io_inp": [
      -5,
      2,
      2,
      3,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -2,
      -2,
      -1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [15, 15]",
    "output": "generated_output : list = take(take(mul_n(add_n(sort_des([3, 3]),2),3),22),16)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(sort_des(input),2),3),22),16)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-15, -15]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(reverse([5, 5]),10)),-3))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(reverse(input),10)),-3))"
  },
  {
    "input": "input : list = [5, -5, 3, 1]\noutput : list = [10, 8, 6, 0]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_des([5, -5, 3, 1])),-2)),3)",
    "io_inp": [
      5,
      -5,
      3,
      1
    ],
    "io_out": [
      10,
      8,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_des(input)),-2)),3)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, 30]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des(sort_asc([0, -2])),5)),-3)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(sort_asc(input)),5)),-3)"
  },
  {
    "input": "input : list = [5, -5, -4, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = take(sort_asc(drop([5, -5, -4, -1, 1],3)),34)",
    "io_inp": [
      5,
      -5,
      -4,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,3)),34)"
  },
  {
    "input": "input : list = [2, 4, -3, -5]\noutput : list = [2, 4]",
    "output": "generated_output : list = take([2, 4, -3, -5],2)",
    "io_inp": [
      2,
      4,
      -3,
      -5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, 5, 0, 1, -4]\noutput : list = [-3, -7, -8, -12, -13]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(sort_des([-5, 5, 0, 1, -4])),-4),4))",
    "io_inp": [
      -5,
      5,
      0,
      1,
      -4
    ],
    "io_out": [
      -3,
      -7,
      -8,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(sort_des(input)),-4),4))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc([-3, -4]),1))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-2, 3, -2, 1, 2]\noutput : list = [3, 2, 1, -2, -2]",
    "output": "generated_output : list = sort_des([-2, 3, -2, 1, 2])",
    "io_inp": [
      -2,
      3,
      -2,
      1,
      2
    ],
    "io_out": [
      3,
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3, 3, 4]\noutput : list = [-4, 12, 12, 16]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sort_asc([-1, 3, 3, 4])))),4)",
    "io_inp": [
      -1,
      3,
      3,
      4
    ],
    "io_out": [
      -4,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [3, -4, 1, -5, -4, -3]\noutput : list = [-12, 16, -4, 20, 16, 12]",
    "output": "generated_output : list = mul_n([3, -4, 1, -5, -4, -3],-4)",
    "io_inp": [
      3,
      -4,
      1,
      -5,
      -4,
      -3
    ],
    "io_out": [
      -12,
      16,
      -4,
      20,
      16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [-5, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([3, 1, -5])))",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(mul_n([3, -1],-1),1),4),16),5)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(mul_n(input,-1),1),4),16),5)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [1, -7]",
    "output": "generated_output : list = add_n(mul_n([5, -3],1),-4)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,1),-4)"
  },
  {
    "input": "input : list = [4, -4, -5, 4]\noutput : list = [4, 4, -4, -5]",
    "output": "generated_output : list = take(sort_des(take(sort_des(sort_des([4, -4, -5, 4])),20)),22)",
    "io_inp": [
      4,
      -4,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(sort_des(input)),20)),22)"
  },
  {
    "input": "input : list = [1, 5, 1, -1, -1]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(take([1, 5, 1, -1, -1],1),-1),1)))",
    "io_inp": [
      1,
      5,
      1,
      -1,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(take(input,1),-1),1)))"
  },
  {
    "input": "input : list = [-4, 2, -4, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 2, -4, 1],1)",
    "io_inp": [
      -4,
      2,
      -4,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 3, -1, 1, 4]\noutput : list = [2, 2, 1, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(add_n([4, 3, -1, 1, 4],-2)))",
    "io_inp": [
      4,
      3,
      -1,
      1,
      4
    ],
    "io_out": [
      2,
      2,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-2)))"
  },
  {
    "input": "input : list = [1, 4, -4, 2]\noutput : list = [-36, -28, -24, -4]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(reverse([1, 4, -4, 2]),-4),-4)),-4)",
    "io_inp": [
      1,
      4,
      -4,
      2
    ],
    "io_out": [
      -36,
      -28,
      -24,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(reverse(input),-4),-4)),-4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [7, 2]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n([5, 0],5),8)),3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(input,5),8)),3)"
  },
  {
    "input": "input : list = [2, 4, -2, -2, 2]\noutput : list = [44, 34]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(add_n([2, 4, -2, -2, 2],4)),2),5),-4)",
    "io_inp": [
      2,
      4,
      -2,
      -2,
      2
    ],
    "io_out": [
      44,
      34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(add_n(input,4)),2),5),-4)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-9, -9]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(mul_n([3, 3],3)))),-1)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(mul_n(input,3)))),-1)"
  },
  {
    "input": "input : list = [-4, -2, 2, -4, 0]\noutput : list = [5, 1]",
    "output": "generated_output : list = add_n(sort_des(drop([-4, -2, 2, -4, 0],3)),5)",
    "io_inp": [
      -4,
      -2,
      2,
      -4,
      0
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,3)),5)"
  },
  {
    "input": "input : list = [-1, -4, 1, 5]\noutput : list = [22, 37, 12, -8]",
    "output": "generated_output : list = sub_n(take(mul_n(take(add_n([-1, -4, 1, 5],-3),20),-5),25),-2)",
    "io_inp": [
      -1,
      -4,
      1,
      5
    ],
    "io_out": [
      22,
      37,
      12,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(add_n(input,-3),20),-5),25),-2)"
  },
  {
    "input": "input : list = [-1, 3, 2, 4]\noutput : list = [-30, -20, -25, -5]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-1, 3, 2, 4],-2),-5))",
    "io_inp": [
      -1,
      3,
      2,
      4
    ],
    "io_out": [
      -30,
      -20,
      -25,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,-2),-5))"
  },
  {
    "input": "input : list = [-4, 5, 5, 0]\noutput : list = [15, 15, 10, 6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(sub_n([-4, 5, 5, 0],2),3),-5),4))",
    "io_inp": [
      -4,
      5,
      5,
      0
    ],
    "io_out": [
      15,
      15,
      10,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(sub_n(input,2),3),-5),4))"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(take([2, 3, -4],1),6),-4)),4)",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(take(input,1),6),-4)),4)"
  },
  {
    "input": "input : list = [1, 5, -2, -3]\noutput : list = [2, 3, 6, 10]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(sort_des([1, 5, -2, -3]))),5))",
    "io_inp": [
      1,
      5,
      -2,
      -3
    ],
    "io_out": [
      2,
      3,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(sort_des(input))),5))"
  },
  {
    "input": "input : list = [4, -1, 4, 5, 5, 3]\noutput : list = [4, -1]",
    "output": "generated_output : list = take([4, -1, 4, 5, 5, 3],2)",
    "io_inp": [
      4,
      -1,
      4,
      5,
      5,
      3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, -5, 1, -5, -4]\noutput : list = [15, 15]",
    "output": "generated_output : list = drop(sort_asc(take(mul_n(drop([-3, -5, 1, -5, -4],1),-3),24)),2)",
    "io_inp": [
      -3,
      -5,
      1,
      -5,
      -4
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = drop(sort_asc(take(mul_n(drop(input,1),-3),24)),2)"
  },
  {
    "input": "input : list = [-1, -5, 3, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(sub_n(drop([-1, -5, 3, 1],2),2))",
    "io_inp": [
      -1,
      -5,
      3,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,2),2))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [55, 30]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(add_n([-4, 1],-2))),-5),-5)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      55,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(add_n(input,-2))),-5),-5)"
  },
  {
    "input": "input : list = [4, 3, 0, 4]\noutput : list = [-2, -5]",
    "output": "generated_output : list = add_n(add_n(drop(sort_des(sort_asc([4, 3, 0, 4])),2),-3),-2)",
    "io_inp": [
      4,
      3,
      0,
      4
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(sort_des(sort_asc(input)),2),-3),-2)"
  },
  {
    "input": "input : list = [-5, 4, -5]\noutput : list = [-8, -8, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse([-5, 4, -5]))),3)",
    "io_inp": [
      -5,
      4,
      -5
    ],
    "io_out": [
      -8,
      -8,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(input))),3)"
  },
  {
    "input": "input : list = [-4, 5, 2, 4, -4, -4]\noutput : list = [5, 4, 2, -4, -4, -4]",
    "output": "generated_output : list = take(sort_des([-4, 5, 2, 4, -4, -4]),7)",
    "io_inp": [
      -4,
      5,
      2,
      4,
      -4,
      -4
    ],
    "io_out": [
      5,
      4,
      2,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [11, 2]",
    "output": "generated_output : list = sub_n(sub_n([5, -4],-3),-3)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      11,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-3)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [12]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(take([5, -5, 0],1),-5),-2)))",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(take(input,1),-5),-2)))"
  },
  {
    "input": "input : list = [4, 3, 2, 5, 4]\noutput : list = [61, 49]",
    "output": "generated_output : list = add_n(mul_n(mul_n(drop([4, 3, 2, 5, 4],3),4),3),1)",
    "io_inp": [
      4,
      3,
      2,
      5,
      4
    ],
    "io_out": [
      61,
      49
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(drop(input,3),4),3),1)"
  },
  {
    "input": "input : list = [-3, -1, -5]\noutput : list = [-8, -6, -10]",
    "output": "generated_output : list = sub_n([-3, -1, -5],5)",
    "io_inp": [
      -3,
      -1,
      -5
    ],
    "io_out": [
      -8,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, -5, 5, -2, -3, 3]\noutput : list = [9, 27, 24, 3, 33, 6]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(add_n([4, -5, 5, -2, -3, 3],-1)),-5),-3),53)",
    "io_inp": [
      4,
      -5,
      5,
      -2,
      -3,
      3
    ],
    "io_out": [
      9,
      27,
      24,
      3,
      33,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(add_n(input,-1)),-5),-3),53)"
  },
  {
    "input": "input : list = [-1, 5, -4, 0, 3]\noutput : list = [3, 0, -4, 5, -1]",
    "output": "generated_output : list = reverse([-1, 5, -4, 0, 3])",
    "io_inp": [
      -1,
      5,
      -4,
      0,
      3
    ],
    "io_out": [
      3,
      0,
      -4,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3, 0, 2, -2, -3]\noutput : list = [2, 0, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(drop([-4, -3, 0, 2, -2, -3],2)))))",
    "io_inp": [
      -4,
      -3,
      0,
      2,
      -2,
      -3
    ],
    "io_out": [
      2,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [1, 5, 5, 2, -3]\noutput : list = [7, 7, 4, 3, -1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n([1, 5, 5, 2, -3],-3),1))",
    "io_inp": [
      1,
      5,
      5,
      2,
      -3
    ],
    "io_out": [
      7,
      7,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(input,-3),1))"
  },
  {
    "input": "input : list = [3, 0, -3]\noutput : list = [24, -12, -48]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sort_des([3, 0, -3]),4)),4),3)",
    "io_inp": [
      3,
      0,
      -3
    ],
    "io_out": [
      24,
      -12,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sort_des(input),4)),4),3)"
  },
  {
    "input": "input : list = [-4, 3, 0, 2, 3, -2]\noutput : list = [-8, 8, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(drop([-4, 3, 0, 2, 3, -2],3),-4),-4)),4)",
    "io_inp": [
      -4,
      3,
      0,
      2,
      3,
      -2
    ],
    "io_out": [
      -8,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(drop(input,3),-4),-4)),4)"
  },
  {
    "input": "input : list = [5, 3, -4, 1, -4]\noutput : list = [-2, -2, 3, 5, 7]",
    "output": "generated_output : list = take(add_n(sub_n(sort_asc(sub_n([5, 3, -4, 1, -4],-2)),-3),-3),23)",
    "io_inp": [
      5,
      3,
      -4,
      1,
      -4
    ],
    "io_out": [
      -2,
      -2,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_asc(sub_n(input,-2)),-3),-3),23)"
  },
  {
    "input": "input : list = [-1, -2, 0, 5]\noutput : list = [-30, 20, 145]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n(drop([-1, -2, 0, 5],1),-5),-4),-5),19)",
    "io_inp": [
      -1,
      -2,
      0,
      5
    ],
    "io_out": [
      -30,
      20,
      145
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(drop(input,1),-5),-4),-5),19)"
  },
  {
    "input": "input : list = [2, -5, -2, -2]\noutput : list = [15, -13, -1, -1]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(mul_n([2, -5, -2, -2],-2),2),-2),3),20)",
    "io_inp": [
      2,
      -5,
      -2,
      -2
    ],
    "io_out": [
      15,
      -13,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(mul_n(input,-2),2),-2),3),20)"
  },
  {
    "input": "input : list = [2, -3, 0, 4]\noutput : list = [9, 4, 7, 11]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(reverse([2, -3, 0, 4]),4)),5),2)",
    "io_inp": [
      2,
      -3,
      0,
      4
    ],
    "io_out": [
      9,
      4,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(reverse(input),4)),5),2)"
  },
  {
    "input": "input : list = [-5, 5, -5, -3, 5]\noutput : list = [-10, -10, -8, 0, 0]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(add_n([-5, 5, -5, -3, 5],-4))),-1),39)",
    "io_inp": [
      -5,
      5,
      -5,
      -3,
      5
    ],
    "io_out": [
      -10,
      -10,
      -8,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(add_n(input,-4))),-1),39)"
  },
  {
    "input": "input : list = [-5, -5, 1, 2, 5]\noutput : list = [21, -51, -51]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(take([-5, -5, 1, 2, 5],3)),4),3),3)",
    "io_inp": [
      -5,
      -5,
      1,
      2,
      5
    ],
    "io_out": [
      21,
      -51,
      -51
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(take(input,3)),4),3),3)"
  },
  {
    "input": "input : list = [2, -4, -1, 0]\noutput : list = [-7, -5, -4, -1]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(sort_asc([2, -4, -1, 0]),-5)),-1))",
    "io_inp": [
      2,
      -4,
      -1,
      0
    ],
    "io_out": [
      -7,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(sort_asc(input),-5)),-1))"
  },
  {
    "input": "input : list = [-2, -3, -1, 4]\noutput : list = [7, 2, 1, 0]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(add_n([-2, -3, -1, 4],3))),30))",
    "io_inp": [
      -2,
      -3,
      -1,
      4
    ],
    "io_out": [
      7,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(add_n(input,3))),30))"
  },
  {
    "input": "input : list = [-5, 0, -1, -3, -3]\noutput : list = [2, 1, -1, -1, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_asc([-5, 0, -1, -3, -3]),1),5),-2))",
    "io_inp": [
      -5,
      0,
      -1,
      -3,
      -3
    ],
    "io_out": [
      2,
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_asc(input),1),5),-2))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(add_n([-2, -2],2),-3)),5),5)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(add_n(input,2),-3)),5),5)"
  },
  {
    "input": "input : list = [2, 1, -3, 3, -4]\noutput : list = [3, 2, 1, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(sort_asc([2, 1, -3, 3, -4]),20),5)),-5)",
    "io_inp": [
      2,
      1,
      -3,
      3,
      -4
    ],
    "io_out": [
      3,
      2,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(sort_asc(input),20),5)),-5)"
  },
  {
    "input": "input : list = [-2, -3, -3, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take([-2, -3, -3, -3],2)",
    "io_inp": [
      -2,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 0, -3, 2, 4]\noutput : list = [6, 4, 2, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([-3, 0, -3, 2, 4],-2)))",
    "io_inp": [
      -3,
      0,
      -3,
      2,
      4
    ],
    "io_out": [
      6,
      4,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [0, 5, 9]",
    "output": "generated_output : list = sort_asc(add_n([5, -4, 1],4))",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      0,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [0, -3, -3, -2, -1, -1]\noutput : list = [0, -3, -3, -2]",
    "output": "generated_output : list = take(take([0, -3, -3, -2, -1, -1],4),24)",
    "io_inp": [
      0,
      -3,
      -3,
      -2,
      -1,
      -1
    ],
    "io_out": [
      0,
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,4),24)"
  },
  {
    "input": "input : list = [4, -3, 1, 2, 2]\noutput : list = [2, 2, 1, -3, 4]",
    "output": "generated_output : list = reverse([4, -3, 1, 2, 2])",
    "io_inp": [
      4,
      -3,
      1,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      -3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [-6, -18, -3]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-2, 3, -1],-3)),-3)",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      -6,
      -18,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-3)),-3)"
  },
  {
    "input": "input : list = [5, -2, -1, 2, 4]\noutput : list = [-2, -1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([5, -2, -1, 2, 4])",
    "io_inp": [
      5,
      -2,
      -1,
      2,
      4
    ],
    "io_out": [
      -2,
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, -2, 4, 4, -1]\noutput : list = [10, -15, -20, -30]",
    "output": "generated_output : list = mul_n(drop(sub_n(sort_des(sub_n([-4, 5, -2, 4, 4, -1],-2)),4),2),5)",
    "io_inp": [
      -4,
      5,
      -2,
      4,
      4,
      -1
    ],
    "io_out": [
      10,
      -15,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(sort_des(sub_n(input,-2)),4),2),5)"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [13]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(drop([3, 4, -2],1),1),4)),5)",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(drop(input,1),1),4)),5)"
  },
  {
    "input": "input : list = [-4, 5, 5, 4, 2]\noutput : list = [-2, -2, -1, 1, 7]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(add_n([-4, 5, 5, 4, 2],4),-3),-1),4))",
    "io_inp": [
      -4,
      5,
      5,
      4,
      2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(add_n(input,4),-3),-1),4))"
  },
  {
    "input": "input : list = [-5, -2, 3, 5, 2, -1]\noutput : list = [-1, 2, 3, 6, 7, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sort_des([-5, -2, 3, 5, 2, -1]),5),-2),3))",
    "io_inp": [
      -5,
      -2,
      3,
      5,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      3,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sort_des(input),5),-2),3))"
  },
  {
    "input": "input : list = [2, 4, 1, -5, 2]\noutput : list = [-20, 4, 8, 8, 16]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(mul_n([2, 4, 1, -5, 2],4)))))",
    "io_inp": [
      2,
      4,
      1,
      -5,
      2
    ],
    "io_out": [
      -20,
      4,
      8,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [3, 1, 2, -3, 0, -5]\noutput : list = [0, -1, -2, -3, -6, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(sort_des([3, 1, 2, -3, 0, -5]))),-3))",
    "io_inp": [
      3,
      1,
      2,
      -3,
      0,
      -5
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-8, -16]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(sort_des([-4, 0]),1),-5),4),2)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(sort_des(input),1),-5),4),2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [20, -20]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sort_asc([1, -1]),-5),4)))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(sort_asc(input),-5),4)))"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [19, 16, 10]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(sort_asc([2, 5, 4]),3)),3),-4)",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      19,
      16,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(sort_asc(input),3)),3),-4)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(reverse(take(add_n(sort_asc([3, -3]),2),6)))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(sort_asc(input),2),6)))"
  },
  {
    "input": "input : list = [0, 4, 3, 3]\noutput : list = [0, 3, 3, 4]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(sort_asc([0, 4, 3, 3])),22)))",
    "io_inp": [
      0,
      4,
      3,
      3
    ],
    "io_out": [
      0,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(sort_asc(input)),22)))"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [-1, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(drop([-2, -2, 3],1)))),-4)",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(drop(input,1)))),-4)"
  },
  {
    "input": "input : list = [3, 4, -1, -1, 4]\noutput : list = [14, 14, 10, -6, -6]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(mul_n([3, 4, -1, -1, 4],4),3),5)))",
    "io_inp": [
      3,
      4,
      -1,
      -1,
      4
    ],
    "io_out": [
      14,
      14,
      10,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(mul_n(input,4),3),5)))"
  },
  {
    "input": "input : list = [0, -2, -2, 5]\noutput : list = [4, 2, 2, 9]",
    "output": "generated_output : list = add_n([0, -2, -2, 5],4)",
    "io_inp": [
      0,
      -2,
      -2,
      5
    ],
    "io_out": [
      4,
      2,
      2,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [1, 1, 4, 1, 0, 2]\noutput : list = [6, 6, 9, 6, 5, 7]",
    "output": "generated_output : list = take(sub_n([1, 1, 4, 1, 0, 2],-5),15)",
    "io_inp": [
      1,
      1,
      4,
      1,
      0,
      2
    ],
    "io_out": [
      6,
      6,
      9,
      6,
      5,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),15)"
  },
  {
    "input": "input : list = [3, 5, -4, 1, -2, -2]\noutput : list = [14, 12, 10, 7, 7, 5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(sort_des([3, 5, -4, 1, -2, -2]),5)),-4))",
    "io_inp": [
      3,
      5,
      -4,
      1,
      -2,
      -2
    ],
    "io_out": [
      14,
      12,
      10,
      7,
      7,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(sort_des(input),5)),-4))"
  },
  {
    "input": "input : list = [-3, 2, 2, -4, 2, -4]\noutput : list = [-2, 3, 3, -3, 3, -3]",
    "output": "generated_output : list = sub_n([-3, 2, 2, -4, 2, -4],-1)",
    "io_inp": [
      -3,
      2,
      2,
      -4,
      2,
      -4
    ],
    "io_out": [
      -2,
      3,
      3,
      -3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(drop([2, 3, 5],1))",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [4, -3, -1, 0, -3, 2]\noutput : list = [4, 2, 0, -1, -3, -3]",
    "output": "generated_output : list = sort_des([4, -3, -1, 0, -3, 2])",
    "io_inp": [
      4,
      -3,
      -1,
      0,
      -3,
      2
    ],
    "io_out": [
      4,
      2,
      0,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5, 1, 1, -4, 3]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take([0, 5, 1, 1, -4, 3],1),4),4),4)",
    "io_inp": [
      0,
      5,
      1,
      1,
      -4,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(input,1),4),4),4)"
  },
  {
    "input": "input : list = [5, -3, -1]\noutput : list = [5, -1, -3]",
    "output": "generated_output : list = sort_des([5, -3, -1])",
    "io_inp": [
      5,
      -3,
      -1
    ],
    "io_out": [
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, -4]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des([-1, -2, -4])))",
    "io_inp": [
      -1,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [-10, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(add_n([-4, 4, 4],-3),11),-3)))",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      -10,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(add_n(input,-3),11),-3)))"
  },
  {
    "input": "input : list = [-4, 1, 5, 4]\noutput : list = [20, -5, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n([-4, 1, 5, 4],-5))",
    "io_inp": [
      -4,
      1,
      5,
      4
    ],
    "io_out": [
      20,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [5, 5, -1, 4, -1]\noutput : list = [-1, -1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, 5, -1, 4, -1]))",
    "io_inp": [
      5,
      5,
      -1,
      4,
      -1
    ],
    "io_out": [
      -1,
      -1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 2, -2, 1, -3]\noutput : list = [32, 0, -16, -64, -80]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(sort_asc([-5, 2, -2, 1, -3]),-3),4)),-4)",
    "io_inp": [
      -5,
      2,
      -2,
      1,
      -3
    ],
    "io_out": [
      32,
      0,
      -16,
      -64,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(sort_asc(input),-3),4)),-4)"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(drop([-3, -1, 5],1))",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [0, -4, -3, 1, -5]\noutput : list = [13]",
    "output": "generated_output : list = add_n(mul_n(add_n(sub_n(take([0, -4, -3, 1, -5],1),-4),2),3),-5)",
    "io_inp": [
      0,
      -4,
      -3,
      1,
      -5
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sub_n(take(input,1),-4),2),3),-5)"
  },
  {
    "input": "input : list = [5, -3, 3, 0, 1]\noutput : list = [-2, 1, 2, 4, 6]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n([5, -3, 3, 0, 1],1)),30))",
    "io_inp": [
      5,
      -3,
      3,
      0,
      1
    ],
    "io_out": [
      -2,
      1,
      2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(input,1)),30))"
  },
  {
    "input": "input : list = [-5, -4, 4, 2, 3]\noutput : list = [-5, 19, 13, 16]",
    "output": "generated_output : list = add_n(add_n(drop(sub_n(mul_n([-5, -4, 4, 2, 3],3),-3),1),5),-1)",
    "io_inp": [
      -5,
      -4,
      4,
      2,
      3
    ],
    "io_out": [
      -5,
      19,
      13,
      16
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(sub_n(mul_n(input,3),-3),1),5),-1)"
  },
  {
    "input": "input : list = [-4, -1, -1]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = mul_n([-4, -1, -1],-1)",
    "io_inp": [
      -4,
      -1,
      -1
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 0, -5, 1]\noutput : list = [-11, -7, -6, -5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse(sub_n([-1, 0, -5, 1],-4)),-5),-5))",
    "io_inp": [
      -1,
      0,
      -5,
      1
    ],
    "io_out": [
      -11,
      -7,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(sub_n(input,-4)),-5),-5))"
  },
  {
    "input": "input : list = [1, -4, -1, 2, 1, 3]\noutput : list = [1, -4, -1, 2]",
    "output": "generated_output : list = take([1, -4, -1, 2, 1, 3],4)",
    "io_inp": [
      1,
      -4,
      -1,
      2,
      1,
      3
    ],
    "io_out": [
      1,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-2, -3, -1, 4, -1]\noutput : list = [9, 6, 3, 3, -12]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_asc(reverse([-2, -3, -1, 4, -1]))),-3))",
    "io_inp": [
      -2,
      -3,
      -1,
      4,
      -1
    ],
    "io_out": [
      9,
      6,
      3,
      3,
      -12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_asc(reverse(input))),-3))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-3, 6]",
    "output": "generated_output : list = sub_n(reverse([4, -5]),-2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [4, 0, -4, -4]\noutput : list = [7, 3, -1, -1]",
    "output": "generated_output : list = take(take(add_n(reverse(sort_asc([4, 0, -4, -4])),3),33),37)",
    "io_inp": [
      4,
      0,
      -4,
      -4
    ],
    "io_out": [
      7,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(sort_asc(input)),3),33),37)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [7, 17]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc([-3, -1])),-5),-2)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      7,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(input)),-5),-2)"
  },
  {
    "input": "input : list = [-1, 4, -4]\noutput : list = [2, 7, -1]",
    "output": "generated_output : list = add_n([-1, 4, -4],3)",
    "io_inp": [
      -1,
      4,
      -4
    ],
    "io_out": [
      2,
      7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [3, 2, -5, -1, 4]\noutput : list = [6, 5, -2, 2, 7]",
    "output": "generated_output : list = add_n(add_n([3, 2, -5, -1, 4],5),-2)",
    "io_inp": [
      3,
      2,
      -5,
      -1,
      4
    ],
    "io_out": [
      6,
      5,
      -2,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),-2)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [2, -7]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(mul_n([-1, 2],3),-1),-1)))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(mul_n(input,3),-1),-1)))"
  },
  {
    "input": "input : list = [-5, 0, 5, 4, 4, -5]\noutput : list = [6, 5, 5, 1, -4, -4]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_des(reverse([-5, 0, 5, 4, 4, -5]))),-1))",
    "io_inp": [
      -5,
      0,
      5,
      4,
      4,
      -5
    ],
    "io_out": [
      6,
      5,
      5,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_des(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-4, 1, -2, -1, -4, -3]\noutput : list = [-8, -3, -6, -5, -8, -7]",
    "output": "generated_output : list = sub_n([-4, 1, -2, -1, -4, -3],4)",
    "io_inp": [
      -4,
      1,
      -2,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -3,
      -6,
      -5,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -2]))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 0, 5, -5]\noutput : list = [15, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(drop([-3, 0, 5, -5],2),2))),5)",
    "io_inp": [
      -3,
      0,
      5,
      -5
    ],
    "io_out": [
      15,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(drop(input,2),2))),5)"
  },
  {
    "input": "input : list = [1, -1, -1, 3, 5]\noutput : list = [-1, -1, 1, 3, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(sort_asc([1, -1, -1, 3, 5]))),5))",
    "io_inp": [
      1,
      -1,
      -1,
      3,
      5
    ],
    "io_out": [
      -1,
      -1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [3, -4, -4, 4, 3, 3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take([3, -4, -4, 4, 3, 3],1),-3)",
    "io_inp": [
      3,
      -4,
      -4,
      4,
      3,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [0, -3, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des([-5, -2, -5]),-2)))",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(input),-2)))"
  },
  {
    "input": "input : list = [0, 0, -4, 5, -5, 2]\noutput : list = [1, -34, 16, -29, -9, -9]",
    "output": "generated_output : list = take(reverse(add_n(mul_n(sub_n([0, 0, -4, 5, -5, 2],2),5),1)),8)",
    "io_inp": [
      0,
      0,
      -4,
      5,
      -5,
      2
    ],
    "io_out": [
      1,
      -34,
      16,
      -29,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(sub_n(input,2),5),1)),8)"
  },
  {
    "input": "input : list = [3, 1, 3, 1, -2]\noutput : list = [0, 9, 9, 15, 15]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(mul_n([3, 1, 3, 1, -2],3),4))),2)",
    "io_inp": [
      3,
      1,
      3,
      1,
      -2
    ],
    "io_out": [
      0,
      9,
      9,
      15,
      15
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(mul_n(input,3),4))),2)"
  },
  {
    "input": "input : list = [5, 0, -4, 0, 3, -4]\noutput : list = [-5, -9, -5, 0]",
    "output": "generated_output : list = sub_n(reverse(take([5, 0, -4, 0, 3, -4],4)),5)",
    "io_inp": [
      5,
      0,
      -4,
      0,
      3,
      -4
    ],
    "io_out": [
      -5,
      -9,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,4)),5)"
  },
  {
    "input": "input : list = [4, 4, 5, 3, 0, -2]\noutput : list = [10, 8, 8, 6, 0, -4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc([4, 4, 5, 3, 0, -2])),2)))",
    "io_inp": [
      4,
      4,
      5,
      3,
      0,
      -2
    ],
    "io_out": [
      10,
      8,
      8,
      6,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-9, -9]",
    "output": "generated_output : list = mul_n([3, 3],-3)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 5, 0, 0]\noutput : list = [24, 6, 21, 21]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(add_n([-1, 5, 0, 0],-2),9),1),4),-3)",
    "io_inp": [
      -1,
      5,
      0,
      0
    ],
    "io_out": [
      24,
      6,
      21,
      21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(add_n(input,-2),9),1),4),-3)"
  },
  {
    "input": "input : list = [-2, -1, 1, -5]\noutput : list = [-6, 0, 3, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n([-2, -1, 1, -5],4))),-3),-3)",
    "io_inp": [
      -2,
      -1,
      1,
      -5
    ],
    "io_out": [
      -6,
      0,
      3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(add_n(input,4))),-3),-3)"
  },
  {
    "input": "input : list = [-5, -1, -5, 5, -4]\noutput : list = [5, -1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(drop([-5, -1, -5, 5, -4],1)))))",
    "io_inp": [
      -5,
      -1,
      -5,
      5,
      -4
    ],
    "io_out": [
      5,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-21, -33]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(mul_n([5, 3],-3)),2),2),-3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -21,
      -33
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(mul_n(input,-3)),2),2),-3)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc([-3, 1])",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, 0, -2, 0, 2]\noutput : list = [2, 0, 0, -1, -1, -2]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(sort_asc([-1, -1, 0, -2, 0, 2])))),8)",
    "io_inp": [
      -1,
      -1,
      0,
      -2,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(sort_asc(input)))),8)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-1, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n([5, -4],-5))),-2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -1,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(input,-5))),-2)"
  },
  {
    "input": "input : list = [0, -1, -1, 4]\noutput : list = [12, 4, 2, 2]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse(sub_n([0, -1, -1, 4],-2))),2))",
    "io_inp": [
      0,
      -1,
      -1,
      4
    ],
    "io_out": [
      12,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(sub_n(input,-2))),2))"
  },
  {
    "input": "input : list = [5, -1, 0, 3]\noutput : list = [-10, 2, 0, -6]",
    "output": "generated_output : list = take(take(reverse(reverse(mul_n([5, -1, 0, 3],-2))),25),45)",
    "io_inp": [
      5,
      -1,
      0,
      3
    ],
    "io_out": [
      -10,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(mul_n(input,-2))),25),45)"
  },
  {
    "input": "input : list = [-1, -5, 5, 0, 5]\noutput : list = [4, 4, -1, -2, -6]",
    "output": "generated_output : list = add_n(sort_des([-1, -5, 5, 0, 5]),-1)",
    "io_inp": [
      -1,
      -5,
      5,
      0,
      5
    ],
    "io_out": [
      4,
      4,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [4, -2, -4, 1, 5]\noutput : list = [-1, 1, 4, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc([4, -2, -4, 1, 5])),3)",
    "io_inp": [
      4,
      -2,
      -4,
      1,
      5
    ],
    "io_out": [
      -1,
      1,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-5, 2, 3, 1, 3, -3]\noutput : list = [-8, -8, -6, -4, 4, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(mul_n([-5, 2, 3, 1, 3, -3],-2),-3),5)))",
    "io_inp": [
      -5,
      2,
      3,
      1,
      3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(mul_n(input,-2),-3),5)))"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [-5, -1, -2]",
    "output": "generated_output : list = add_n([-1, 3, 2],-4)",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      -5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, -5, 5, 0]\noutput : list = [0, 60, -60, 12]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n(mul_n([1, -5, 5, 0],-2),-3),-2)),-1)",
    "io_inp": [
      1,
      -5,
      5,
      0
    ],
    "io_out": [
      0,
      60,
      -60,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(mul_n(input,-2),-3),-2)),-1)"
  },
  {
    "input": "input : list = [-4, -5, -1, -2]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(take([-4, -5, -1, -2],1),-3),-5)),-4)",
    "io_inp": [
      -4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(take(input,1),-3),-5)),-4)"
  },
  {
    "input": "input : list = [-4, -3, 0, -5]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(take([-4, -3, 0, -5],1),10),1)))",
    "io_inp": [
      -4,
      -3,
      0,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(take(input,1),10),1)))"
  },
  {
    "input": "input : list = [4, 5, -1, 2, 5]\noutput : list = [-9, -12, -15, -9]",
    "output": "generated_output : list = reverse(drop(sub_n(add_n(sub_n([4, 5, -1, 2, 5],5),-4),5),1))",
    "io_inp": [
      4,
      5,
      -1,
      2,
      5
    ],
    "io_out": [
      -9,
      -12,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = reverse(drop(sub_n(add_n(sub_n(input,5),-4),5),1))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [6, 4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(sub_n([-1, -3],-3),-4))))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(sub_n(input,-3),-4))))"
  },
  {
    "input": "input : list = [-2, 3, -2, -3, 4, -2]\noutput : list = [-37, -27, 23, 23, 23, 33]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(mul_n([-2, 3, -2, -3, 4, -2],5)),-2)),3)",
    "io_inp": [
      -2,
      3,
      -2,
      -3,
      4,
      -2
    ],
    "io_out": [
      -37,
      -27,
      23,
      23,
      23,
      33
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(mul_n(input,5)),-2)),3)"
  },
  {
    "input": "input : list = [3, 1, -5, 0]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 1, -5, 0],1)",
    "io_inp": [
      3,
      1,
      -5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -4, 0, -1, 2, -3]\noutput : list = [-10, 0, -8, -6, -12, -2]",
    "output": "generated_output : list = mul_n(add_n([1, -4, 0, -1, 2, -3],4),-2)",
    "io_inp": [
      1,
      -4,
      0,
      -1,
      2,
      -3
    ],
    "io_out": [
      -10,
      0,
      -8,
      -6,
      -12,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),-2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, -3, -5, 3]\noutput : list = [9, 9, 7, 1, -1]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(sub_n([5, -5, -3, -5, 3],4),-1))))",
    "io_inp": [
      5,
      -5,
      -3,
      -5,
      3
    ],
    "io_out": [
      9,
      9,
      7,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(sub_n(input,4),-1))))"
  },
  {
    "input": "input : list = [-5, -1, 0, -3]\noutput : list = [-3, 0, -1, -5]",
    "output": "generated_output : list = reverse([-5, -1, 0, -3])",
    "io_inp": [
      -5,
      -1,
      0,
      -3
    ],
    "io_out": [
      -3,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -3, 0, -3, -1, -4]\noutput : list = [-4, -3, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc([-2, -3, 0, -3, -1, -4])",
    "io_inp": [
      -2,
      -3,
      0,
      -3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [10, -2]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_asc([-3, 3]),2))),-4)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(sort_asc(input),2))),-4)"
  },
  {
    "input": "input : list = [-1, -5, 2, 3, -2]\noutput : list = [-65, -45, 35]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(drop([-1, -5, 2, 3, -2],2),5),-4),5))",
    "io_inp": [
      -1,
      -5,
      2,
      3,
      -2
    ],
    "io_out": [
      -65,
      -45,
      35
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(drop(input,2),5),-4),5))"
  },
  {
    "input": "input : list = [-2, -3, -1, 0, -1]\noutput : list = [-45, -54, -54, -63, -72]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sub_n([-2, -3, -1, 0, -1],5),3)),3))",
    "io_inp": [
      -2,
      -3,
      -1,
      0,
      -1
    ],
    "io_out": [
      -45,
      -54,
      -54,
      -63,
      -72
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sub_n(input,5),3)),3))"
  },
  {
    "input": "input : list = [-3, -2, 2, -3]\noutput : list = [-9, -6, 6, -9]",
    "output": "generated_output : list = mul_n(mul_n([-3, -2, 2, -3],1),3)",
    "io_inp": [
      -3,
      -2,
      2,
      -3
    ],
    "io_out": [
      -9,
      -6,
      6,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),3)"
  },
  {
    "input": "input : list = [-3, -2, -3]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take([-3, -2, -3],1),1),-2),4)",
    "io_inp": [
      -3,
      -2,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(input,1),1),-2),4)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(sort_des([1, 4, 1]))),9))",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(sort_des(input))),9))"
  },
  {
    "input": "input : list = [5, -5, -5, -3, 0, -2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(sort_asc(reverse(take(drop([5, -5, -5, -3, 0, -2],4),6))),50)",
    "io_inp": [
      5,
      -5,
      -5,
      -3,
      0,
      -2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(take(drop(input,4),6))),50)"
  },
  {
    "input": "input : list = [2, -3, 3, 5]\noutput : list = [-6, -16, -4, 0]",
    "output": "generated_output : list = add_n(mul_n(sub_n([2, -3, 3, 5],4),2),-2)",
    "io_inp": [
      2,
      -3,
      3,
      5
    ],
    "io_out": [
      -6,
      -16,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,4),2),-2)"
  },
  {
    "input": "input : list = [-3, 2, -3, -3, -2]\noutput : list = [-7, -7, -7, -6, -2]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(reverse([-3, 2, -3, -3, -2]),22)),4),6)",
    "io_inp": [
      -3,
      2,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(reverse(input),22)),4),6)"
  },
  {
    "input": "input : list = [0, -2, 1, 1]\noutput : list = [-4, -4, -5, -7]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(reverse([0, -2, 1, 1])))),5)",
    "io_inp": [
      0,
      -2,
      1,
      1
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_asc(reverse(input)))),5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des([5, 5])),1),29))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des(input)),1),29))"
  },
  {
    "input": "input : list = [-2, 1, -3, -5]\noutput : list = [-5, -8, -9, -11]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sort_des([-2, 1, -3, -5]),2),1)),3)",
    "io_inp": [
      -2,
      1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(sort_des(input),2),1)),3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(add_n([-1, 3],1),5))),-4)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(add_n(input,1),5))),-4)"
  },
  {
    "input": "input : list = [-4, 3, -5, -3, 5]\noutput : list = [-8, -7, -6, 0, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_asc([-4, 3, -5, -3, 5]))),3),49)",
    "io_inp": [
      -4,
      3,
      -5,
      -3,
      5
    ],
    "io_out": [
      -8,
      -7,
      -6,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_asc(input))),3),49)"
  },
  {
    "input": "input : list = [-5, -2, 0, 0]\noutput : list = [-70, -70, -80, -95]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(sub_n([-5, -2, 0, 0],4),5),-5),5))",
    "io_inp": [
      -5,
      -2,
      0,
      0
    ],
    "io_out": [
      -70,
      -70,
      -80,
      -95
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(sub_n(input,4),5),-5),5))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [15, -20]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse([-3, 4]),-5),19))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(input),-5),19))"
  },
  {
    "input": "input : list = [0, 0, 3, 4]\noutput : list = [3, 0, -9, -9]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_des(sub_n([0, 0, 3, 4],3)),-3),-1),14)",
    "io_inp": [
      0,
      0,
      3,
      4
    ],
    "io_out": [
      3,
      0,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_des(sub_n(input,3)),-3),-1),14)"
  },
  {
    "input": "input : list = [5, -2, 1, -4, 4]\noutput : list = [5, -2]",
    "output": "generated_output : list = take([5, -2, 1, -4, 4],2)",
    "io_inp": [
      5,
      -2,
      1,
      -4,
      4
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, 5, -5, 1]\noutput : list = [-5, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 5, -5, 1])",
    "io_inp": [
      5,
      5,
      -5,
      1
    ],
    "io_out": [
      -5,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, -4, -3, -5]\noutput : list = [-5, -4, -3, 2, 5]",
    "output": "generated_output : list = take(sort_asc([5, 2, -4, -3, -5]),14)",
    "io_inp": [
      5,
      2,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),14)"
  },
  {
    "input": "input : list = [-2, 1, 5, 0, 4]\noutput : list = [-9, -15, -18, -27, -30]",
    "output": "generated_output : list = sort_des(take(mul_n(add_n(sort_des([-2, 1, 5, 0, 4]),5),-3),9))",
    "io_inp": [
      -2,
      1,
      5,
      0,
      4
    ],
    "io_out": [
      -9,
      -15,
      -18,
      -27,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(add_n(sort_des(input),5),-3),9))"
  },
  {
    "input": "input : list = [0, 4, -1, 1]\noutput : list = [-21, -15, -30, -18]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(add_n([0, 4, -1, 1],1),-5),-3)),17)",
    "io_inp": [
      0,
      4,
      -1,
      1
    ],
    "io_out": [
      -21,
      -15,
      -30,
      -18
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(add_n(input,1),-5),-3)),17)"
  },
  {
    "input": "input : list = [-3, -4, -5, 0, 2, 1]\noutput : list = [5, 4, 3, 0, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(sort_des([-3, -4, -5, 0, 2, 1])),-3)))",
    "io_inp": [
      -3,
      -4,
      -5,
      0,
      2,
      1
    ],
    "io_out": [
      5,
      4,
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [0, -5, -2, 1]\noutput : list = [-5, -2, 0, 1]",
    "output": "generated_output : list = take(sort_asc([0, -5, -2, 1]),4)",
    "io_inp": [
      0,
      -5,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-4, 0, 1, -5, 5]\noutput : list = [-5, 15, -105, 95]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(drop([-4, 0, 1, -5, 5],1),-4),-5),5),10)",
    "io_inp": [
      -4,
      0,
      1,
      -5,
      5
    ],
    "io_out": [
      -5,
      15,
      -105,
      95
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(drop(input,1),-4),-5),5),10)"
  },
  {
    "input": "input : list = [0, -5, -2, 1, 2, -5]\noutput : list = [1, 0, -1, -3, -6, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des([0, -5, -2, 1, 2, -5]))),1)",
    "io_inp": [
      0,
      -5,
      -2,
      1,
      2,
      -5
    ],
    "io_out": [
      1,
      0,
      -1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(input))),1)"
  },
  {
    "input": "input : list = [2, 3, -4, 4, 4]\noutput : list = [-19, -11, -67, -3, -3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(add_n([2, 3, -4, 4, 4],-5),4),2),-4),1)",
    "io_inp": [
      2,
      3,
      -4,
      4,
      4
    ],
    "io_out": [
      -19,
      -11,
      -67,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(add_n(input,-5),4),2),-4),1)"
  },
  {
    "input": "input : list = [-1, -5, 2, 0, -5, 4]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc(take([-1, -5, 2, 0, -5, 4],2))",
    "io_inp": [
      -1,
      -5,
      2,
      0,
      -5,
      4
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [1, 2, 2]\noutput : list = [4, 8, 8]",
    "output": "generated_output : list = take(mul_n([1, 2, 2],4),9)",
    "io_inp": [
      1,
      2,
      2
    ],
    "io_out": [
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),9)"
  },
  {
    "input": "input : list = [0, -3, -4, 1, -5]\noutput : list = [3, 2, -1, -2, -3]",
    "output": "generated_output : list = add_n(take(sort_des([0, -3, -4, 1, -5]),12),2)",
    "io_inp": [
      0,
      -3,
      -4,
      1,
      -5
    ],
    "io_out": [
      3,
      2,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),12),2)"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [-8, -5, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n([-3, 0, 2],-5))))",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      -8,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(input,-5))))"
  },
  {
    "input": "input : list = [-3, 4, -2, 0, 1]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(drop([-3, 4, -2, 0, 1],2)))",
    "io_inp": [
      -3,
      4,
      -2,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,2)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(sub_n([-1, -3],-3))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [4, -3, 2, 5, -2, 2]\noutput : list = [-18, 24]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(take([4, -3, 2, 5, -2, 2],2),-3),-2)),31)",
    "io_inp": [
      4,
      -3,
      2,
      5,
      -2,
      2
    ],
    "io_out": [
      -18,
      24
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(take(input,2),-3),-2)),31)"
  },
  {
    "input": "input : list = [-2, -4, -5, 0, -5, 3]\noutput : list = [-26, -26, -21, -11, -1, 14]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n([-2, -4, -5, 0, -5, 3],5))),4),-3)",
    "io_inp": [
      -2,
      -4,
      -5,
      0,
      -5,
      3
    ],
    "io_out": [
      -26,
      -26,
      -21,
      -11,
      -1,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(mul_n(input,5))),4),-3)"
  },
  {
    "input": "input : list = [5, -2, -5, 1, 1]\noutput : list = [1, 1, -5, -2]",
    "output": "generated_output : list = reverse(drop([5, -2, -5, 1, 1],1))",
    "io_inp": [
      5,
      -2,
      -5,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [1, 4, 5, -3, -1]\noutput : list = [2, 1, -2, -4, -6]",
    "output": "generated_output : list = sort_des(add_n([1, 4, 5, -3, -1],-3))",
    "io_inp": [
      1,
      4,
      5,
      -3,
      -1
    ],
    "io_out": [
      2,
      1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [3, 5, 2, -2, -4, -1]\noutput : list = [4, 2, 1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(sub_n([3, 5, 2, -2, -4, -1],4))),-3))",
    "io_inp": [
      3,
      5,
      2,
      -2,
      -4,
      -1
    ],
    "io_out": [
      4,
      2,
      1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(sub_n(input,4))),-3))"
  },
  {
    "input": "input : list = [0, -5, -1, 4, 3]\noutput : list = [6, 1, 5, 10, 9]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(add_n([0, -5, -1, 4, 3],-2)),-5),3))",
    "io_inp": [
      0,
      -5,
      -1,
      4,
      3
    ],
    "io_out": [
      6,
      1,
      5,
      10,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(add_n(input,-2)),-5),3))"
  },
  {
    "input": "input : list = [5, -3, 3, -4, -2]\noutput : list = [8, 6, 1, 0, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sub_n([5, -3, 3, -4, -2],-5)),2)))",
    "io_inp": [
      5,
      -3,
      3,
      -4,
      -2
    ],
    "io_out": [
      8,
      6,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sub_n(input,-5)),2)))"
  },
  {
    "input": "input : list = [-1, 3, 3]\noutput : list = [10, 70, 70]",
    "output": "generated_output : list = mul_n(add_n(reverse(reverse(mul_n([-1, 3, 3],3))),5),5)",
    "io_inp": [
      -1,
      3,
      3
    ],
    "io_out": [
      10,
      70,
      70
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(reverse(mul_n(input,3))),5),5)"
  },
  {
    "input": "input : list = [-4, 0, 4, -5, 4]\noutput : list = [2, 3, 7, 11, 11]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc([-4, 0, 4, -5, 4]),17),-4),3)",
    "io_inp": [
      -4,
      0,
      4,
      -5,
      4
    ],
    "io_out": [
      2,
      3,
      7,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(input),17),-4),3)"
  },
  {
    "input": "input : list = [0, -2, 5, -1, 5]\noutput : list = [2, -4, 2, -5, -3]",
    "output": "generated_output : list = reverse(sub_n([0, -2, 5, -1, 5],3))",
    "io_inp": [
      0,
      -2,
      5,
      -1,
      5
    ],
    "io_out": [
      2,
      -4,
      2,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-2, 4, 2, 5, 3]\noutput : list = [7, 6, 5, 4, 0]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(sort_asc([-2, 4, 2, 5, 3]),4),2)))",
    "io_inp": [
      -2,
      4,
      2,
      5,
      3
    ],
    "io_out": [
      7,
      6,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(sort_asc(input),4),2)))"
  },
  {
    "input": "input : list = [5, -2, 1, -2, -1]\noutput : list = [20, -15, 0, -15, -10]",
    "output": "generated_output : list = sub_n(mul_n([5, -2, 1, -2, -1],5),5)",
    "io_inp": [
      5,
      -2,
      1,
      -2,
      -1
    ],
    "io_out": [
      20,
      -15,
      0,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),5)"
  },
  {
    "input": "input : list = [1, 1, 4, 5]\noutput : list = [4, 4, 7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(take(reverse([1, 1, 4, 5]),4))),-3)",
    "io_inp": [
      1,
      1,
      4,
      5
    ],
    "io_out": [
      4,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(take(reverse(input),4))),-3)"
  },
  {
    "input": "input : list = [-1, 4, -4, -2]\noutput : list = [2, 0, -1, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(mul_n([-1, 4, -4, -2],-1),1),1)))",
    "io_inp": [
      -1,
      4,
      -4,
      -2
    ],
    "io_out": [
      2,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(mul_n(input,-1),1),1)))"
  },
  {
    "input": "input : list = [-2, 3, 3, 1, -2]\noutput : list = [-37, -37, 23, 63, 63]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(mul_n([-2, 3, 3, 1, -2],-5),-4),-4)),1)",
    "io_inp": [
      -2,
      3,
      3,
      1,
      -2
    ],
    "io_out": [
      -37,
      -37,
      23,
      63,
      63
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(mul_n(input,-5),-4),-4)),1)"
  },
  {
    "input": "input : list = [2, -4, -1, 3, -5]\noutput : list = [3, 2, -1, -4, -5]",
    "output": "generated_output : list = sort_des([2, -4, -1, 3, -5])",
    "io_inp": [
      2,
      -4,
      -1,
      3,
      -5
    ],
    "io_out": [
      3,
      2,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(drop([5, 4, -4],1)))),-1)",
    "io_inp": [
      5,
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(drop(input,1)))),-1)"
  },
  {
    "input": "input : list = [1, 2, -1, -2]\noutput : list = [12, 11, 9, 8]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(add_n([1, 2, -1, -2],5),1)),5))",
    "io_inp": [
      1,
      2,
      -1,
      -2
    ],
    "io_out": [
      12,
      11,
      9,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(add_n(input,5),1)),5))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc([3, 4])",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, -2, -4, -4, 1]\noutput : list = [-6, -5, -5, -3, -1, 0]",
    "output": "generated_output : list = take(reverse(add_n(sort_des(mul_n([-5, 0, -2, -4, -4, 1],1)),-1)),57)",
    "io_inp": [
      -5,
      0,
      -2,
      -4,
      -4,
      1
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_des(mul_n(input,1)),-1)),57)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-12, 28]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(mul_n([-2, 3],-2),-1)),-4),26)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -12,
      28
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(mul_n(input,-2),-1)),-4),26)"
  },
  {
    "input": "input : list = [5, -5, -3, 2, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop([5, -5, -3, 2, 2, 5],4)",
    "io_inp": [
      5,
      -5,
      -3,
      2,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, 3, 2, -4, -2]\noutput : list = [-8, -6, -2, -1, 0]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(sub_n([4, 3, 2, -4, -2],4)),13)),11)",
    "io_inp": [
      4,
      3,
      2,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -6,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(sub_n(input,4)),13)),11)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-20, -14]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(sort_des([0, 3]),6),-3),4),-2)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -20,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(sort_des(input),6),-3),4),-2)"
  },
  {
    "input": "input : list = [-1, -5, 4, -1, -3, 2]\noutput : list = [-2, -10, 8, -2, -6, 4]",
    "output": "generated_output : list = mul_n([-1, -5, 4, -1, -3, 2],2)",
    "io_inp": [
      -1,
      -5,
      4,
      -1,
      -3,
      2
    ],
    "io_out": [
      -2,
      -10,
      8,
      -2,
      -6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, 0, 3]\noutput : list = [0, -2]",
    "output": "generated_output : list = mul_n(sort_des(drop(sort_des([-2, 0, 3]),1)),1)",
    "io_inp": [
      -2,
      0,
      3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(sort_des(input),1)),1)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [22, -6]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(sort_asc([3, -4]),3)),4),-2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      22,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(sort_asc(input),3)),4),-2)"
  },
  {
    "input": "input : list = [5, -4, -1]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, -1],1)",
    "io_inp": [
      5,
      -4,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [-7, -2, 0]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sub_n(add_n([1, 3, -4],-3),-4),-4)),1)",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      -7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sub_n(add_n(input,-3),-4),-4)),1)"
  },
  {
    "input": "input : list = [2, 0, -5, -3]\noutput : list = [6, -2]",
    "output": "generated_output : list = reverse(add_n(drop(mul_n(sort_asc([2, 0, -5, -3]),4),2),-2))",
    "io_inp": [
      2,
      0,
      -5,
      -3
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(mul_n(sort_asc(input),4),2),-2))"
  },
  {
    "input": "input : list = [-3, 4, -5, -5, 1]\noutput : list = [16, -12]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(take([-3, 4, -5, -5, 1],2))),21),4)",
    "io_inp": [
      -3,
      4,
      -5,
      -5,
      1
    ],
    "io_out": [
      16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(take(input,2))),21),4)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [6]",
    "output": "generated_output : list = take(take(mul_n([3, -4],2),10),1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,2),10),1)"
  },
  {
    "input": "input : list = [-5, 1, 2, 2, -4]\noutput : list = [6, -6, -6, -4, 8]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-5, 1, 2, 2, -4],-1)),-2)",
    "io_inp": [
      -5,
      1,
      2,
      2,
      -4
    ],
    "io_out": [
      6,
      -6,
      -6,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-1)),-2)"
  },
  {
    "input": "input : list = [2, 1, 2, 5]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 1, 2, 5],1)",
    "io_inp": [
      2,
      1,
      2,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [1, 1]",
    "output": "generated_output : list = add_n(reverse([-1, -1]),2)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [3, 1, -4, 4, -4]\noutput : list = [6, 5, 3, -2, -2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(reverse([3, 1, -4, 4, -4]),-3)),3),-2)",
    "io_inp": [
      3,
      1,
      -4,
      4,
      -4
    ],
    "io_out": [
      6,
      5,
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(reverse(input),-3)),3),-2)"
  },
  {
    "input": "input : list = [0, -4, 3]\noutput : list = [-4, 0, 3]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sub_n([0, -4, 3],-1))),1))",
    "io_inp": [
      0,
      -4,
      3
    ],
    "io_out": [
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sub_n(input,-1))),1))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = take(take(sort_des(reverse(reverse([0, -1]))),19),35)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(reverse(input))),19),35)"
  },
  {
    "input": "input : list = [-4, 4, 4, 5, -3, 1]\noutput : list = [-2, 2, 6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(drop([-4, 4, 4, 5, -3, 1],3))),-1)",
    "io_inp": [
      -4,
      4,
      4,
      5,
      -3,
      1
    ],
    "io_out": [
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(drop(input,3))),-1)"
  },
  {
    "input": "input : list = [4, 4, 3, 5]\noutput : list = [-4, -4, -3, -5]",
    "output": "generated_output : list = mul_n([4, 4, 3, 5],-1)",
    "io_inp": [
      4,
      4,
      3,
      5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = sort_asc(take(reverse([-4, 0, -3]),5))",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),5))"
  },
  {
    "input": "input : list = [4, 1, 2, -2]\noutput : list = [4, 2, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([4, 1, 2, -2])))",
    "io_inp": [
      4,
      1,
      2,
      -2
    ],
    "io_out": [
      4,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, -5, -5, 0, 5, -4]\noutput : list = [7, 2, 0, -2, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sort_asc([-2, -5, -5, 0, 5, -4]),2),32)))",
    "io_inp": [
      -2,
      -5,
      -5,
      0,
      5,
      -4
    ],
    "io_out": [
      7,
      2,
      0,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sort_asc(input),2),32)))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [15, 3]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_des(add_n([3, -1],-4)))),-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_des(add_n(input,-4)))),-3)"
  },
  {
    "input": "input : list = [1, 1, 1, 5, -4, -4]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(reverse(drop([1, 1, 1, 5, -4, -4],4)),2)))",
    "io_inp": [
      1,
      1,
      1,
      5,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(reverse(drop(input,4)),2)))"
  },
  {
    "input": "input : list = [-4, -1, -2, 4, -3]\noutput : list = [-12, -2, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc([-4, -1, -2, 4, -3])),-2),-2))",
    "io_inp": [
      -4,
      -1,
      -2,
      4,
      -3
    ],
    "io_out": [
      -12,
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc(input)),-2),-2))"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = sort_des([-2, 3, -1])",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, -4, -3]\noutput : list = [7, 6, 4, 2]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse([1, -1, -4, -3])),3),-1)",
    "io_inp": [
      1,
      -1,
      -4,
      -3
    ],
    "io_out": [
      7,
      6,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(input)),3),-1)"
  },
  {
    "input": "input : list = [-2, 3, 3, -3, -5]\noutput : list = [-10, -8, -7, -2, -2]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(add_n([-2, 3, 3, -3, -5],-5)))),23)",
    "io_inp": [
      -2,
      3,
      3,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(add_n(input,-5)))),23)"
  },
  {
    "input": "input : list = [-4, 2, -2, -5, 3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(drop([-4, 2, -2, -5, 3, 3],4))",
    "io_inp": [
      -4,
      2,
      -2,
      -5,
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,4))"
  },
  {
    "input": "input : list = [1, -4, 2, -2]\noutput : list = [-18, -8, 7, 12]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(mul_n([1, -4, 2, -2],5)),3),1))",
    "io_inp": [
      1,
      -4,
      2,
      -2
    ],
    "io_out": [
      -18,
      -8,
      7,
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(mul_n(input,5)),3),1))"
  },
  {
    "input": "input : list = [-4, -5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(drop([-4, -5, 4],1))",
    "io_inp": [
      -4,
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [3, -4, -3, 0, -3]\noutput : list = [-4, -3, -3, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([3, -4, -3, 0, -3])))",
    "io_inp": [
      3,
      -4,
      -3,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [4, 8, 9]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n([4, -1, 3],1)),1),-3)",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      4,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(input,1)),1),-3)"
  },
  {
    "input": "input : list = [5, -4, 4, -4, 4]\noutput : list = [18, 15, 15, -9, -9]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(reverse([5, -4, 4, -4, 4])),-1),3)",
    "io_inp": [
      5,
      -4,
      4,
      -4,
      4
    ],
    "io_out": [
      18,
      15,
      15,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(reverse(input)),-1),3)"
  },
  {
    "input": "input : list = [0, -3, 1, 5, 4]\noutput : list = [20, 16, 4, 0, -12]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(reverse([0, -3, 1, 5, 4]),20),4)))",
    "io_inp": [
      0,
      -3,
      1,
      5,
      4
    ],
    "io_out": [
      20,
      16,
      4,
      0,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(reverse(input),20),4)))"
  },
  {
    "input": "input : list = [1, 5, -5, 4, -3]\noutput : list = [6, 5, -2, -4]",
    "output": "generated_output : list = take(sub_n(sort_des(take(reverse([1, 5, -5, 4, -3]),4)),-1),29)",
    "io_inp": [
      1,
      5,
      -5,
      4,
      -3
    ],
    "io_out": [
      6,
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(reverse(input),4)),-1),29)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-9, -5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_des(reverse([-4, 0]))),-5))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_des(reverse(input))),-5))"
  },
  {
    "input": "input : list = [1, 2, -5, 3]\noutput : list = [-2, 1, 4, 22]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sub_n([1, 2, -5, 3],1),-3)),4),1)",
    "io_inp": [
      1,
      2,
      -5,
      3
    ],
    "io_out": [
      -2,
      1,
      4,
      22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sub_n(input,1),-3)),4),1)"
  },
  {
    "input": "input : list = [-4, -3, -5, -1, -5]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(take([-4, -3, -5, -1, -5],3),14),-1)),3)",
    "io_inp": [
      -4,
      -3,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(take(input,3),14),-1)),3)"
  },
  {
    "input": "input : list = [2, 0, 2, -1]\noutput : list = [-2, -2, -4, -5]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sub_n([2, 0, 2, -1],2),2)),34),35)",
    "io_inp": [
      2,
      0,
      2,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sub_n(input,2),2)),34),35)"
  },
  {
    "input": "input : list = [-1, -3, -1]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc([-1, -3, -1])),5)))",
    "io_inp": [
      -1,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_des(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [-1, -5, -3, -4, 5, 2]\noutput : list = [-25, -10, 5, 15]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(sort_asc([-1, -5, -3, -4, 5, 2])),-5)),4)",
    "io_inp": [
      -1,
      -5,
      -3,
      -4,
      5,
      2
    ],
    "io_out": [
      -25,
      -10,
      5,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(sort_asc(input)),-5)),4)"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [5, 0, -1]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(sub_n([-2, -1, 4],2),-1),4)),10)",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(sub_n(input,2),-1),4)),10)"
  },
  {
    "input": "input : list = [-5, -2, -5, 5]\noutput : list = [-13, -10]",
    "output": "generated_output : list = take(sub_n(take(add_n(take([-5, -2, -5, 5],2),-3),5),5),35)",
    "io_inp": [
      -5,
      -2,
      -5,
      5
    ],
    "io_out": [
      -13,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(take(input,2),-3),5),5),35)"
  },
  {
    "input": "input : list = [-2, 0, -5, 4, 2, 1]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = reverse(drop([-2, 0, -5, 4, 2, 1],3))",
    "io_inp": [
      -2,
      0,
      -5,
      4,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [-1, 3, -2]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(sub_n([-1, 3, -2],1),10)),-1))",
    "io_inp": [
      -1,
      3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(sub_n(input,1),10)),-1))"
  },
  {
    "input": "input : list = [5, 0, 3, 4, 4, 1]\noutput : list = [4, 7, 7]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(drop([5, 0, 3, 4, 4, 1],3),-5),5),3))",
    "io_inp": [
      5,
      0,
      3,
      4,
      4,
      1
    ],
    "io_out": [
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(drop(input,3),-5),5),3))"
  },
  {
    "input": "input : list = [2, 5, 3, -4, -5]\noutput : list = [5, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(mul_n(drop([2, 5, 3, -4, -5],3),-2),-3)))",
    "io_inp": [
      2,
      5,
      3,
      -4,
      -5
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(mul_n(drop(input,3),-2),-3)))"
  },
  {
    "input": "input : list = [-2, -2, 1, 4]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(drop([-2, -2, 1, 4],2),-4),3)))",
    "io_inp": [
      -2,
      -2,
      1,
      4
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(drop(input,2),-4),3)))"
  },
  {
    "input": "input : list = [5, -4, 2, 4, -2, 5]\noutput : list = [-4, -2, 2, 4, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc([5, -4, 2, 4, -2, 5]),14)))",
    "io_inp": [
      5,
      -4,
      2,
      4,
      -2,
      5
    ],
    "io_out": [
      -4,
      -2,
      2,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(input),14)))"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [4, 3, -5]",
    "output": "generated_output : list = sort_des(reverse([4, 3, -5]))",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      4,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [3, -5]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(sort_des([-3, 5])),7),3),5)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(sort_des(input)),7),3),5)"
  },
  {
    "input": "input : list = [-4, 0, -2, -4, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(drop([-4, 0, -2, -4, -2],3)),1)))",
    "io_inp": [
      -4,
      0,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(drop(input,3)),1)))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-16]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse([-2, -5]),-1),4)),1)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse(input),-1),4)),1)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(add_n([1, 0],5)),2),5))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(add_n(input,5)),2),5))"
  },
  {
    "input": "input : list = [-2, 2, -1, 2, -4]\noutput : list = [-1, 1, 2, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(sub_n([-2, 2, -1, 2, -4],-4),3),2)))",
    "io_inp": [
      -2,
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      -1,
      1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(sub_n(input,-4),3),2)))"
  },
  {
    "input": "input : list = [-2, 4, -2, -1]\noutput : list = [-2, -2, -1, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, -2, -1])",
    "io_inp": [
      -2,
      4,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, 2]\noutput : list = [7, 9, 6]",
    "output": "generated_output : list = take(sub_n([3, 5, 2],-4),10)",
    "io_inp": [
      3,
      5,
      2
    ],
    "io_out": [
      7,
      9,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),10)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([1, -2, 2])))",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [1, 1, -2, 2, 3, -5]\noutput : list = [-6, -7, -8, -8, -11, -14]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sub_n([1, 1, -2, 2, 3, -5],4))),3),2)",
    "io_inp": [
      1,
      1,
      -2,
      2,
      3,
      -5
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -8,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sub_n(input,4))),3),2)"
  },
  {
    "input": "input : list = [0, -1, -2, 4, 0]\noutput : list = [15, 5, -15]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n(drop([0, -1, -2, 4, 0],2),-1)),1),5)",
    "io_inp": [
      0,
      -1,
      -2,
      4,
      0
    ],
    "io_out": [
      15,
      5,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(drop(input,2),-1)),1),5)"
  },
  {
    "input": "input : list = [-2, -2, -4, -5, 2, -2]\noutput : list = [-1, -1, -3, -4, 3, -1]",
    "output": "generated_output : list = take(add_n([-2, -2, -4, -5, 2, -2],1),24)",
    "io_inp": [
      -2,
      -2,
      -4,
      -5,
      2,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),24)"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [1, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([4, -1, -1],-3)))",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-3)))"
  },
  {
    "input": "input : list = [-3, -2, -2, 4]\noutput : list = [15, -9, -9, -13]",
    "output": "generated_output : list = sub_n(take(sort_des(sub_n(mul_n([-3, -2, -2, 4],4),4)),36),-3)",
    "io_inp": [
      -3,
      -2,
      -2,
      4
    ],
    "io_out": [
      15,
      -9,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sub_n(mul_n(input,4),4)),36),-3)"
  },
  {
    "input": "input : list = [0, -4, -3, 2, -5, 3]\noutput : list = [-9, -6, 0, 9, 12, 15]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(sort_asc([0, -4, -3, 2, -5, 3]),24)),-1),3)",
    "io_inp": [
      0,
      -4,
      -3,
      2,
      -5,
      3
    ],
    "io_out": [
      -9,
      -6,
      0,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(sort_asc(input),24)),-1),3)"
  },
  {
    "input": "input : list = [-2, 3, 0, 5]\noutput : list = [-1, 1, 4, 6]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(sub_n([-2, 3, 0, 5],-1)),15)))",
    "io_inp": [
      -2,
      3,
      0,
      5
    ],
    "io_out": [
      -1,
      1,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(sub_n(input,-1)),15)))"
  },
  {
    "input": "input : list = [-5, 5, 5, -1, 2]\noutput : list = [-7, -3, 0, 3, 3]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(sort_asc([-5, 5, 5, -1, 2]),-3)),-1))",
    "io_inp": [
      -5,
      5,
      5,
      -1,
      2
    ],
    "io_out": [
      -7,
      -3,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(sort_asc(input),-3)),-1))"
  },
  {
    "input": "input : list = [-3, -2, -3, 3, 5, -4]\noutput : list = [5, 10]",
    "output": "generated_output : list = drop(add_n(sub_n(mul_n(take([-3, -2, -3, 3, 5, -4],3),-5),2),-3),1)",
    "io_inp": [
      -3,
      -2,
      -3,
      3,
      5,
      -4
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(mul_n(take(input,3),-5),2),-3),1)"
  },
  {
    "input": "input : list = [-1, 4, -4, 3]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(sort_asc(take([-1, 4, -4, 3],2)))",
    "io_inp": [
      -1,
      4,
      -4,
      3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take([0, -3, 5],1))",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [2, 2, -2]\noutput : list = [1]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(add_n([2, 2, -2],-3))),-1),1)",
    "io_inp": [
      2,
      2,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(add_n(input,-3))),-1),1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [28, 8]",
    "output": "generated_output : list = sort_des(sub_n(reverse(mul_n(sub_n([0, -5],1),-4)),-4))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      28,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(mul_n(sub_n(input,1),-4)),-4))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-4, -8]",
    "output": "generated_output : list = add_n([1, -3],-5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [4, 8, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_asc([4, -2, 2])),-1),-5))",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sort_asc(input)),-1),-5))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc([5, 4])",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, -4, -3, 0]\noutput : list = [2, 0, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([2, -5, -4, -3, 0])))",
    "io_inp": [
      2,
      -5,
      -4,
      -3,
      0
    ],
    "io_out": [
      2,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -2, 3, -2]\noutput : list = [82, 34, 94, 34]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(add_n([2, -2, 3, -2],4),-1),-4),-3),2)",
    "io_inp": [
      2,
      -2,
      3,
      -2
    ],
    "io_out": [
      82,
      34,
      94,
      34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(add_n(input,4),-1),-4),-3),2)"
  },
  {
    "input": "input : list = [-2, 5, -5, -4, 4, 4]\noutput : list = [16, 11, 11, -19, -29, -34]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(sub_n([-2, 5, -5, -4, 4, 4],1)),5),-3),1)",
    "io_inp": [
      -2,
      5,
      -5,
      -4,
      4,
      4
    ],
    "io_out": [
      16,
      11,
      11,
      -19,
      -29,
      -34
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(sub_n(input,1)),5),-3),1)"
  },
  {
    "input": "input : list = [-2, 1, -1]\noutput : list = [-1, 1, -2]",
    "output": "generated_output : list = reverse([-2, 1, -1])",
    "io_inp": [
      -2,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, 2, 2]\noutput : list = [30, 0, 0]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(drop([3, -4, 2, 2],1)),2),-5),43)",
    "io_inp": [
      3,
      -4,
      2,
      2
    ],
    "io_out": [
      30,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(drop(input,1)),2),-5),43)"
  },
  {
    "input": "input : list = [2, -5, 0]\noutput : list = [4, -3, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse([2, -5, 0])),-2)",
    "io_inp": [
      2,
      -5,
      0
    ],
    "io_out": [
      4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-2)"
  },
  {
    "input": "input : list = [2, -2, 5, 2]\noutput : list = [2, 5, -2, 2]",
    "output": "generated_output : list = reverse([2, -2, 5, 2])",
    "io_inp": [
      2,
      -2,
      5,
      2
    ],
    "io_out": [
      2,
      5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc([2, -1])",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, 2, 0]\noutput : list = [7, 5, 4, 3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(sort_asc([1, 4, 2, 0]),4)),-3))",
    "io_inp": [
      1,
      4,
      2,
      0
    ],
    "io_out": [
      7,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(sort_asc(input),4)),-3))"
  },
  {
    "input": "input : list = [3, 5, 5, 5, 3]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 5, 5, 5, 3],1)",
    "io_inp": [
      3,
      5,
      5,
      5,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -3, -5, 4, 5]\noutput : list = [-1, 0, 1, 8, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sub_n([-4, -3, -5, 4, 5],-4)),4),-4))",
    "io_inp": [
      -4,
      -3,
      -5,
      4,
      5
    ],
    "io_out": [
      -1,
      0,
      1,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(sub_n(input,-4)),4),-4))"
  },
  {
    "input": "input : list = [-5, -3, -4, 2, 4]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(take([-5, -3, -4, 2, 4],1),-5)",
    "io_inp": [
      -5,
      -3,
      -4,
      2,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [16, -8]",
    "output": "generated_output : list = mul_n([4, -2],4)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, 3, 3]\noutput : list = [32, 32, -24]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(mul_n([-4, 3, 3],4)),22),4),2)",
    "io_inp": [
      -4,
      3,
      3
    ],
    "io_out": [
      32,
      32,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(mul_n(input,4)),22),4),2)"
  },
  {
    "input": "input : list = [-4, -2, 0, 5, 4]\noutput : list = [-8, -4, 0]",
    "output": "generated_output : list = mul_n(take([-4, -2, 0, 5, 4],3),2)",
    "io_inp": [
      -4,
      -2,
      0,
      5,
      4
    ],
    "io_out": [
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),2)"
  },
  {
    "input": "input : list = [-2, -1, 2, 0]\noutput : list = [-3, -2, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(add_n([-2, -1, 2, 0],2),18),-4)),-1)",
    "io_inp": [
      -2,
      -1,
      2,
      0
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(add_n(input,2),18),-4)),-1)"
  },
  {
    "input": "input : list = [0, 0, 2, 0, 3]\noutput : list = [0, 0, 2, 0, 3]",
    "output": "generated_output : list = mul_n([0, 0, 2, 0, 3],1)",
    "io_inp": [
      0,
      0,
      2,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      2,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, -4, 5, -4]\noutput : list = [5, 3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([3, -4, 5, -4])))",
    "io_inp": [
      3,
      -4,
      5,
      -4
    ],
    "io_out": [
      5,
      3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 4, 0, 2, -5, 0]\noutput : list = [-25, 0, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(drop([-1, 4, 0, 2, -5, 0],1)),3),5))",
    "io_inp": [
      -1,
      4,
      0,
      2,
      -5,
      0
    ],
    "io_out": [
      -25,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(drop(input,1)),3),5))"
  },
  {
    "input": "input : list = [-5, 3, 3, -2]\noutput : list = [3, 3, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 3, -2])",
    "io_inp": [
      -5,
      3,
      3,
      -2
    ],
    "io_out": [
      3,
      3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, 2, 3, -1, 4]\noutput : list = [-2, -1, -1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([-1, -2, 2, 3, -1, 4])",
    "io_inp": [
      -1,
      -2,
      2,
      3,
      -1,
      4
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [-80, -20, -30]",
    "output": "generated_output : list = reverse(mul_n(take(mul_n(add_n([-2, -3, 3],5),5),20),-2))",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      -80,
      -20,
      -30
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(mul_n(add_n(input,5),5),20),-2))"
  },
  {
    "input": "input : list = [4, -5, -5, 5, 0, 0]\noutput : list = [10, -10, -10, 8]",
    "output": "generated_output : list = reverse(take(mul_n(take([4, -5, -5, 5, 0, 0],4),2),7))",
    "io_inp": [
      4,
      -5,
      -5,
      5,
      0,
      0
    ],
    "io_out": [
      10,
      -10,
      -10,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(input,4),2),7))"
  },
  {
    "input": "input : list = [2, -2, 5, -4]\noutput : list = [10, 7, 3, 1]",
    "output": "generated_output : list = sort_des(reverse(sub_n([2, -2, 5, -4],-5)))",
    "io_inp": [
      2,
      -2,
      5,
      -4
    ],
    "io_out": [
      10,
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,-5)))"
  },
  {
    "input": "input : list = [-4, -2, -3, 1, 3, 0]\noutput : list = [-7, -9, -10, -12, -13, -14]",
    "output": "generated_output : list = add_n(take(sub_n(take(sort_des([-4, -2, -3, 1, 3, 0]),22),5),37),-5)",
    "io_inp": [
      -4,
      -2,
      -3,
      1,
      3,
      0
    ],
    "io_out": [
      -7,
      -9,
      -10,
      -12,
      -13,
      -14
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(sort_des(input),22),5),37),-5)"
  },
  {
    "input": "input : list = [-1, -2, 2, -5, -2]\noutput : list = [-3, -18, -23, -23, -38]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(sub_n([-1, -2, 2, -5, -2],3),5),34),-2))",
    "io_inp": [
      -1,
      -2,
      2,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -18,
      -23,
      -23,
      -38
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(sub_n(input,3),5),34),-2))"
  },
  {
    "input": "input : list = [2, -2, -3, 2, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = drop([2, -2, -3, 2, -5, -5],4)",
    "io_inp": [
      2,
      -2,
      -3,
      2,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [5, 0, -3, 5, 1]\noutput : list = [8, 3, 0, 8, 4]",
    "output": "generated_output : list = sub_n([5, 0, -3, 5, 1],-3)",
    "io_inp": [
      5,
      0,
      -3,
      5,
      1
    ],
    "io_out": [
      8,
      3,
      0,
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [0, -3, 2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = reverse(drop([0, -3, 2, -4],2))",
    "io_inp": [
      0,
      -3,
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [3, 2, -4, -3, 2, -5]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse(take([3, 2, -4, -3, 2, -5],2)),22)))",
    "io_inp": [
      3,
      2,
      -4,
      -3,
      2,
      -5
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(take(input,2)),22)))"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [24, 20]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(drop([2, 2, 1],1)),5),-4),4)",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      24,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(drop(input,1)),5),-4),4)"
  },
  {
    "input": "input : list = [-1, -4, 1, -3, -4, 3]\noutput : list = [-3, -3, -2, 0, 2, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse([-1, -4, 1, -3, -4, 3])),-1),-2)",
    "io_inp": [
      -1,
      -4,
      1,
      -3,
      -4,
      3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(input)),-1),-2)"
  },
  {
    "input": "input : list = [3, -2, -1, 0, 5]\noutput : list = [-10, 0, 15, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n([3, -2, -1, 0, 5],3)),-5))",
    "io_inp": [
      3,
      -2,
      -1,
      0,
      5
    ],
    "io_out": [
      -10,
      0,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(input,3)),-5))"
  },
  {
    "input": "input : list = [5, -3, 5, 0, -5]\noutput : list = [14, 10, 4, -6, -6]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(add_n([5, -3, 5, 0, -5],-2)),-2)),12)",
    "io_inp": [
      5,
      -3,
      5,
      0,
      -5
    ],
    "io_out": [
      14,
      10,
      4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(add_n(input,-2)),-2)),12)"
  },
  {
    "input": "input : list = [-5, 5, -5]\noutput : list = [13]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n(take([-5, 5, -5],1),-3)),2),44)",
    "io_inp": [
      -5,
      5,
      -5
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(take(input,1),-3)),2),44)"
  },
  {
    "input": "input : list = [0, -1, 4, 4, -1, 5]\noutput : list = [-2, -2, -1, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(sort_asc([0, -1, 4, 4, -1, 5])),1)))",
    "io_inp": [
      0,
      -1,
      4,
      4,
      -1,
      5
    ],
    "io_out": [
      -2,
      -2,
      -1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [-3, -2, -5, 1, -3]\noutput : list = [-5, -3, -3, -2, 1]",
    "output": "generated_output : list = sort_asc([-3, -2, -5, 1, -3])",
    "io_inp": [
      -3,
      -2,
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -3, -5, -5, -2]\noutput : list = [-16]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sub_n(take([4, -3, -5, -5, -2],1),-4))),-2)",
    "io_inp": [
      4,
      -3,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sub_n(take(input,1),-4))),-2)"
  },
  {
    "input": "input : list = [-1, 2, 3, 1]\noutput : list = [-3, 6, 9, 3]",
    "output": "generated_output : list = mul_n([-1, 2, 3, 1],3)",
    "io_inp": [
      -1,
      2,
      3,
      1
    ],
    "io_out": [
      -3,
      6,
      9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, -1, -2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(reverse(reverse(take(drop([2, -1, -2, 3],2),6))),16)",
    "io_inp": [
      2,
      -1,
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(drop(input,2),6))),16)"
  },
  {
    "input": "input : list = [4, 2, -2]\noutput : list = [2, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([4, 2, -2]),4))",
    "io_inp": [
      4,
      2,
      -2
    ],
    "io_out": [
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-3, -1, 2, 5]\noutput : list = [10]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(drop(add_n([-3, -1, 2, 5],5),3))))",
    "io_inp": [
      -3,
      -1,
      2,
      5
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(drop(add_n(input,5),3))))"
  },
  {
    "input": "input : list = [0, -1, -4, -3, -1]\noutput : list = [10, 30, 40, 10, 0]",
    "output": "generated_output : list = mul_n(reverse(take(take(mul_n([0, -1, -4, -3, -1],-2),23),8)),5)",
    "io_inp": [
      0,
      -1,
      -4,
      -3,
      -1
    ],
    "io_out": [
      10,
      30,
      40,
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(mul_n(input,-2),23),8)),5)"
  },
  {
    "input": "input : list = [3, -5, 0]\noutput : list = [-1, 4, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(reverse([3, -5, 0])),4)),-4)",
    "io_inp": [
      3,
      -5,
      0
    ],
    "io_out": [
      -1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(reverse(input)),4)),-4)"
  },
  {
    "input": "input : list = [4, 3, 3, 4, -3]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(take([4, 3, 3, 4, -3],3),-4),29)))",
    "io_inp": [
      4,
      3,
      3,
      4,
      -3
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(take(input,3),-4),29)))"
  },
  {
    "input": "input : list = [3, -5, 3, 1, 1]\noutput : list = [-5, 1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_asc([3, -5, 3, 1, 1]))),1))",
    "io_inp": [
      3,
      -5,
      3,
      1,
      1
    ],
    "io_out": [
      -5,
      1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_asc(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 6]",
    "output": "generated_output : list = take(mul_n(mul_n([0, 1],-2),-3),6)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-2),-3),6)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(sub_n([-1, -3],5),1)),31),-5)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(sub_n(input,5),1)),31),-5)"
  },
  {
    "input": "input : list = [-1, 3, -1, -5, -5, 3]\noutput : list = [-2, -2, 2, 2, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(add_n([-1, 3, -1, -5, -5, 3],3)))))",
    "io_inp": [
      -1,
      3,
      -1,
      -5,
      -5,
      3
    ],
    "io_out": [
      -2,
      -2,
      2,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [5, 4, 2, 1]\noutput : list = [3, 4, 6, 7]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(sub_n([5, 4, 2, 1],3),-5),27)),26)",
    "io_inp": [
      5,
      4,
      2,
      1
    ],
    "io_out": [
      3,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(sub_n(input,3),-5),27)),26)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [6, 3, -6]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n([2, -2, 1],3))))",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      6,
      3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(input,3))))"
  },
  {
    "input": "input : list = [-1, 1, 5, 0]\noutput : list = [0, 5, 1, -1]",
    "output": "generated_output : list = reverse([-1, 1, 5, 0])",
    "io_inp": [
      -1,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -3, 4]\noutput : list = [4, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(drop([1, -3, 4],1)))))",
    "io_inp": [
      1,
      -3,
      4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-5, 1, 4, 4, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(take([-5, 1, 4, 4, -2],1),20),-1)),-5)",
    "io_inp": [
      -5,
      1,
      4,
      4,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(take(input,1),20),-1)),-5)"
  },
  {
    "input": "input : list = [-1, -2, -5, 1, 2]\noutput : list = [0, -15]",
    "output": "generated_output : list = mul_n(sub_n(take(take(sort_asc([-1, -2, -5, 1, 2]),2),5),-5),-5)",
    "io_inp": [
      -1,
      -2,
      -5,
      1,
      2
    ],
    "io_out": [
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(sort_asc(input),2),5),-5),-5)"
  },
  {
    "input": "input : list = [-4, 3, -4, -5]\noutput : list = [-1, -8]",
    "output": "generated_output : list = sub_n(add_n(take(sort_des(take([-4, 3, -4, -5],2)),21),-1),3)",
    "io_inp": [
      -4,
      3,
      -4,
      -5
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_des(take(input,2)),21),-1),3)"
  },
  {
    "input": "input : list = [-5, 0, -1, -2, 0]\noutput : list = [-3, 2, 1, 0, 2]",
    "output": "generated_output : list = sub_n([-5, 0, -1, -2, 0],-2)",
    "io_inp": [
      -5,
      0,
      -1,
      -2,
      0
    ],
    "io_out": [
      -3,
      2,
      1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [3, -3]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sort_des([-2, 4])),1),14),24)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sort_des(input)),1),14),24)"
  },
  {
    "input": "input : list = [-1, -1, 1, 4, 0, -2]\noutput : list = [3, 0, -1, -2, -2, -3]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(sort_des([-1, -1, 1, 4, 0, -2])),-1)),58)",
    "io_inp": [
      -1,
      -1,
      1,
      4,
      0,
      -2
    ],
    "io_out": [
      3,
      0,
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(sort_des(input)),-1)),58)"
  },
  {
    "input": "input : list = [-3, -3, -2, -3, -4, -3]\noutput : list = [-7, -7, -6]",
    "output": "generated_output : list = take(sort_asc(add_n(take(take([-3, -3, -2, -3, -4, -3],3),16),-4)),55)",
    "io_inp": [
      -3,
      -3,
      -2,
      -3,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(take(input,3),16),-4)),55)"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [6, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(drop([0, 5, 0],1)),5)),4)",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(drop(input,1)),5)),4)"
  },
  {
    "input": "input : list = [-2, -2, 1, 1]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(take([-2, -2, 1, 1],2))),1),-4)",
    "io_inp": [
      -2,
      -2,
      1,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(take(input,2))),1),-4)"
  },
  {
    "input": "input : list = [0, -3, 2, 2, -2]\noutput : list = [-2, 2, 2, -3, 0]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(add_n([0, -3, 2, 2, -2],-2)),1),-3),1)",
    "io_inp": [
      0,
      -3,
      2,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(add_n(input,-2)),1),-3),1)"
  },
  {
    "input": "input : list = [5, 1, 0, 4, -3]\noutput : list = [-3, 0, 1, 4]",
    "output": "generated_output : list = take(take(reverse(sort_des(sort_asc([5, 1, 0, 4, -3]))),4),46)",
    "io_inp": [
      5,
      1,
      0,
      4,
      -3
    ],
    "io_out": [
      -3,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_des(sort_asc(input))),4),46)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [-4, 1, 1]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc([-4, 1, 1]))))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [-11, -13]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n(drop([1, 4, 5],1),1),3),-2),-3)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      -11,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(drop(input,1),1),3),-2),-3)"
  },
  {
    "input": "input : list = [1, 0, -5, -1, -2]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = add_n(reverse(take([1, 0, -5, -1, -2],3)),4)",
    "io_inp": [
      1,
      0,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,3)),4)"
  },
  {
    "input": "input : list = [0, -3, -3, -1]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(sort_asc(take([0, -3, -3, -1],1)),1)",
    "io_inp": [
      0,
      -3,
      -3,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(input,1)),1)"
  },
  {
    "input": "input : list = [-3, 1, 4, -4]\noutput : list = [4, 28, 46, -2]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n([-3, 1, 4, -4],1),3),3),5),2)",
    "io_inp": [
      -3,
      1,
      4,
      -4
    ],
    "io_out": [
      4,
      28,
      46,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n(input,1),3),3),5),2)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-8, -3]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(mul_n([-5, 0],1),-1),2)),37)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(mul_n(input,1),-1),2)),37)"
  },
  {
    "input": "input : list = [3, 1, 3, -1]\noutput : list = [9, -3]",
    "output": "generated_output : list = sort_des(mul_n(drop([3, 1, 3, -1],2),3))",
    "io_inp": [
      3,
      1,
      3,
      -1
    ],
    "io_out": [
      9,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,2),3))"
  },
  {
    "input": "input : list = [-3, 4, -4, -2, 5]\noutput : list = [-2, 5]",
    "output": "generated_output : list = drop([-3, 4, -4, -2, 5],3)",
    "io_inp": [
      -3,
      4,
      -4,
      -2,
      5
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [9, 8, 6]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des([1, 3, 4])),-5))",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(input)),-5))"
  },
  {
    "input": "input : list = [-1, -4, -4, 2, 2, -3]\noutput : list = [-8, -7, -2, -2]",
    "output": "generated_output : list = sort_asc(drop(sub_n(sub_n([-1, -4, -4, 2, 2, -3],-1),5),2))",
    "io_inp": [
      -1,
      -4,
      -4,
      2,
      2,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sub_n(sub_n(input,-1),5),2))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([-1, -4],2)))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,2)))"
  },
  {
    "input": "input : list = [1, 2, 3, -2, 5, -2]\noutput : list = [5, -2]",
    "output": "generated_output : list = drop([1, 2, 3, -2, 5, -2],4)",
    "io_inp": [
      1,
      2,
      3,
      -2,
      5,
      -2
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, 0, -2, 5, -3, 0]\noutput : list = [-4, -3, -1, -1, 3, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(add_n([4, 0, -2, 5, -3, 0],1))),1),-3)",
    "io_inp": [
      4,
      0,
      -2,
      5,
      -3,
      0
    ],
    "io_out": [
      -4,
      -3,
      -1,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(add_n(input,1))),1),-3)"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [-36, 18]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(drop([-2, -2, 4],1)),3),-3))",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      -36,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(drop(input,1)),3),-3))"
  },
  {
    "input": "input : list = [4, -5, -2, 0, -4]\noutput : list = [-7, -3]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(drop([4, -5, -2, 0, -4],3),-3),6)))",
    "io_inp": [
      4,
      -5,
      -2,
      0,
      -4
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(drop(input,3),-3),6)))"
  },
  {
    "input": "input : list = [3, 4, 2]\noutput : list = [15, 20, 10]",
    "output": "generated_output : list = mul_n([3, 4, 2],5)",
    "io_inp": [
      3,
      4,
      2
    ],
    "io_out": [
      15,
      20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, 3, -4, -1, 4, 0]\noutput : list = [160, 10, 10, -40, -190, -240]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(add_n(mul_n([-1, 3, -4, -1, 4, 0],5),4),5),-2))",
    "io_inp": [
      -1,
      3,
      -4,
      -1,
      4,
      0
    ],
    "io_out": [
      160,
      10,
      10,
      -40,
      -190,
      -240
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(add_n(mul_n(input,5),4),5),-2))"
  },
  {
    "input": "input : list = [4, -1, -1, 5, -4, 5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(take([4, -1, -1, 5, -4, 5],1),5),-5),2))",
    "io_inp": [
      4,
      -1,
      -1,
      5,
      -4,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(take(input,1),5),-5),2))"
  },
  {
    "input": "input : list = [2, 4, 4, -3, -2, -2]\noutput : list = [3, 3, 5, -9, -9, -5]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse([2, 4, 4, -3, -2, -2]),6),-2),1)",
    "io_inp": [
      2,
      4,
      4,
      -3,
      -2,
      -2
    ],
    "io_out": [
      3,
      3,
      5,
      -9,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(input),6),-2),1)"
  },
  {
    "input": "input : list = [-5, 4, 0, -2, -5, 4]\noutput : list = [-2, -2, -6, -8, -11, -11]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sort_des([-5, 4, 0, -2, -5, 4]),27),5)),-1)",
    "io_inp": [
      -5,
      4,
      0,
      -2,
      -5,
      4
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -8,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sort_des(input),27),5)),-1)"
  },
  {
    "input": "input : list = [2, 2, -2, 1, 0, -5]\noutput : list = [2, 2, 1, 0, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(add_n([2, 2, -2, 1, 0, -5],2)),-2)))",
    "io_inp": [
      2,
      2,
      -2,
      1,
      0,
      -5
    ],
    "io_out": [
      2,
      2,
      1,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(add_n(input,2)),-2)))"
  },
  {
    "input": "input : list = [4, 5, 4]\noutput : list = [-10, -8, -8]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n([4, 5, 4],-2),6)),1)",
    "io_inp": [
      4,
      5,
      4
    ],
    "io_out": [
      -10,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(input,-2),6)),1)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sub_n(add_n([-3, 0],4),3)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,4),3)"
  },
  {
    "input": "input : list = [1, 5, -4, 1, 5]\noutput : list = [-3, 1, -8, -3, 1]",
    "output": "generated_output : list = sub_n(add_n([1, 5, -4, 1, 5],-1),3)",
    "io_inp": [
      1,
      5,
      -4,
      1,
      5
    ],
    "io_out": [
      -3,
      1,
      -8,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),3)"
  },
  {
    "input": "input : list = [-2, -5, -4, -5, 2, 5]\noutput : list = [-25, -25, -20, -10, 10, 25]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sort_asc([-2, -5, -4, -5, 2, 5]),26)),5))",
    "io_inp": [
      -2,
      -5,
      -4,
      -5,
      2,
      5
    ],
    "io_out": [
      -25,
      -25,
      -20,
      -10,
      10,
      25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sort_asc(input),26)),5))"
  },
  {
    "input": "input : list = [3, 1, 3, 5, -2]\noutput : list = [2, 0, 0, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(sub_n([3, 1, 3, 5, -2],3),22))))",
    "io_inp": [
      3,
      1,
      3,
      5,
      -2
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(sub_n(input,3),22))))"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [-5, 3, -1]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(sub_n([-5, 3, -1],-1)),4)),1)",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      -5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(sub_n(input,-1)),4)),1)"
  },
  {
    "input": "input : list = [3, -4, 1, -5, -3]\noutput : list = [9, -12, 3, -15, -9]",
    "output": "generated_output : list = mul_n([3, -4, 1, -5, -3],3)",
    "io_inp": [
      3,
      -4,
      1,
      -5,
      -3
    ],
    "io_out": [
      9,
      -12,
      3,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [0, 7]",
    "output": "generated_output : list = mul_n(add_n([2, -5],-2),-1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-1)"
  },
  {
    "input": "input : list = [4, -4, 2, 3, 4]\noutput : list = [-4, 2, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([4, -4, 2, 3, 4],-3),3))",
    "io_inp": [
      4,
      -4,
      2,
      3,
      4
    ],
    "io_out": [
      -4,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-3),3))"
  },
  {
    "input": "input : list = [-2, -2, 3, 4, 2]\noutput : list = [8, 6]",
    "output": "generated_output : list = add_n(reverse(take(reverse(drop([-2, -2, 3, 4, 2],3)),2)),4)",
    "io_inp": [
      -2,
      -2,
      3,
      4,
      2
    ],
    "io_out": [
      8,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(drop(input,3)),2)),4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-97, 128]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des([-5, 4]),-5),5)),3)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -97,
      128
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(sort_des(input),-5),5)),3)"
  },
  {
    "input": "input : list = [-3, -5, -2, -5, 5]\noutput : list = [-5, -5, 10, 45]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(drop([-3, -5, -2, -5, 5],1),4),5)))",
    "io_inp": [
      -3,
      -5,
      -2,
      -5,
      5
    ],
    "io_out": [
      -5,
      -5,
      10,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(drop(input,1),4),5)))"
  },
  {
    "input": "input : list = [-1, 1, 2, 4]\noutput : list = [-4, -2, -1, 1]",
    "output": "generated_output : list = add_n([-1, 1, 2, 4],-3)",
    "io_inp": [
      -1,
      1,
      2,
      4
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, 5, 3, -4]\noutput : list = [-27, -12, -30, -24, -3]",
    "output": "generated_output : list = mul_n(take(add_n([4, -1, 5, 3, -4],5),24),-3)",
    "io_inp": [
      4,
      -1,
      5,
      3,
      -4
    ],
    "io_out": [
      -27,
      -12,
      -30,
      -24,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,5),24),-3)"
  },
  {
    "input": "input : list = [-2, 2, 4, -1]\noutput : list = [-8, 8, 16, -4]",
    "output": "generated_output : list = mul_n([-2, 2, 4, -1],4)",
    "io_inp": [
      -2,
      2,
      4,
      -1
    ],
    "io_out": [
      -8,
      8,
      16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, 4, -4, 1, 5]\noutput : list = [5, 1, -4, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, -4, 1, 5])",
    "io_inp": [
      1,
      4,
      -4,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -4,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, 4, -5]\noutput : list = [-5, -1, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([4, -1, 4, -5])))",
    "io_inp": [
      4,
      -1,
      4,
      -5
    ],
    "io_out": [
      -5,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, 2, -5, 3, -3, 1]\noutput : list = [-4, 2, -5, 3, -3, 1]",
    "output": "generated_output : list = take(reverse(reverse([-4, 2, -5, 3, -3, 1])),34)",
    "io_inp": [
      -4,
      2,
      -5,
      3,
      -3,
      1
    ],
    "io_out": [
      -4,
      2,
      -5,
      3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),34)"
  },
  {
    "input": "input : list = [1, -4, 4, -2]\noutput : list = [-60, -15, 30, 60]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(mul_n([1, -4, 4, -2],-3),11))),5)",
    "io_inp": [
      1,
      -4,
      4,
      -2
    ],
    "io_out": [
      -60,
      -15,
      30,
      60
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(mul_n(input,-3),11))),5)"
  },
  {
    "input": "input : list = [5, 1, -2]\noutput : list = [3, -1, -4]",
    "output": "generated_output : list = sub_n(sort_des([5, 1, -2]),2)",
    "io_inp": [
      5,
      1,
      -2
    ],
    "io_out": [
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(mul_n([1, 2],1),10),-2)),4)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(mul_n(input,1),10),-2)),4)"
  },
  {
    "input": "input : list = [1, 2, 5, -2, 2, -2]\noutput : list = [1, 2, 5, -2]",
    "output": "generated_output : list = take(take([1, 2, 5, -2, 2, -2],4),15)",
    "io_inp": [
      1,
      2,
      5,
      -2,
      2,
      -2
    ],
    "io_out": [
      1,
      2,
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,4),15)"
  },
  {
    "input": "input : list = [-4, 4, 3, -3, 3]\noutput : list = [-4, -3, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse([-4, 4, 3, -3, 3]))",
    "io_inp": [
      -4,
      4,
      3,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [75, -75]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(mul_n([5, -5],5))),21),3)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      75,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(mul_n(input,5))),21),3)"
  },
  {
    "input": "input : list = [-4, 0, -4, -1]\noutput : list = [7, 7, 4, 3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sort_asc([-4, 0, -4, -1])),3),-1))",
    "io_inp": [
      -4,
      0,
      -4,
      -1
    ],
    "io_out": [
      7,
      7,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sort_asc(input)),3),-1))"
  },
  {
    "input": "input : list = [5, 3, -2, 5, 5]\noutput : list = [0, 0, 0, -2, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(sort_des([5, 3, -2, 5, 5]),-2),-4),3))",
    "io_inp": [
      5,
      3,
      -2,
      5,
      5
    ],
    "io_out": [
      0,
      0,
      0,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(sort_des(input),-2),-4),3))"
  },
  {
    "input": "input : list = [-4, -2, 1, -3]\noutput : list = [-4, -20]",
    "output": "generated_output : list = reverse(mul_n(drop(mul_n(sub_n([-4, -2, 1, -3],-4),1),2),-4))",
    "io_inp": [
      -4,
      -2,
      1,
      -3
    ],
    "io_out": [
      -4,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(mul_n(sub_n(input,-4),1),2),-4))"
  },
  {
    "input": "input : list = [-2, -3, 5]\noutput : list = [6, 9, -15]",
    "output": "generated_output : list = mul_n(mul_n([-2, -3, 5],1),-3)",
    "io_inp": [
      -2,
      -3,
      5
    ],
    "io_out": [
      6,
      9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-3)"
  },
  {
    "input": "input : list = [-3, -4, -5, 5, 1]\noutput : list = [-1, 0, 1, 5, 9]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-3, -4, -5, 5, 1]),4))",
    "io_inp": [
      -3,
      -4,
      -5,
      5,
      1
    ],
    "io_out": [
      -1,
      0,
      1,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),4))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc([2, 1])),-1)))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(sort_asc(input)),-1)))"
  },
  {
    "input": "input : list = [-5, 5, -3, -3, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = reverse(take(drop(sort_asc([-5, 5, -3, -3, -3]),3),2))",
    "io_inp": [
      -5,
      5,
      -3,
      -3,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(drop(sort_asc(input),3),2))"
  },
  {
    "input": "input : list = [5, 0, 2, -2, 2]\noutput : list = [2, -2, 2]",
    "output": "generated_output : list = reverse(drop([5, 0, 2, -2, 2],2))",
    "io_inp": [
      5,
      0,
      2,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(drop(sort_des(take(sort_asc([-4, 4]),2)),1))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(take(sort_asc(input),2)),1))"
  },
  {
    "input": "input : list = [2, 0, -1, 0, -1]\noutput : list = [2, 0, 0, -1, -1]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(sort_des([2, 0, -1, 0, -1])))),30)",
    "io_inp": [
      2,
      0,
      -1,
      0,
      -1
    ],
    "io_out": [
      2,
      0,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(sort_des(input)))),30)"
  },
  {
    "input": "input : list = [-5, 3, 0, -5, 4]\noutput : list = [5, 4, 1, -4, -4]",
    "output": "generated_output : list = take(take(sub_n(reverse(sort_asc([-5, 3, 0, -5, 4])),-1),38),7)",
    "io_inp": [
      -5,
      3,
      0,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(sort_asc(input)),-1),38),7)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(drop(sort_des([2, 0]),1),-2)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_des(input),1),-2)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [-6, 0, 2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(sort_des([-3, 3, 5]))),1),3)",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      -6,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(sort_des(input))),1),3)"
  },
  {
    "input": "input : list = [-1, 0, 3]\noutput : list = [-8, -4, 8]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_asc(add_n([-1, 0, 3],-1))),23),4)",
    "io_inp": [
      -1,
      0,
      3
    ],
    "io_out": [
      -8,
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_asc(add_n(input,-1))),23),4)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take(drop(sort_des(add_n([5, 4],-5)),1),11))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(sort_des(add_n(input,-5)),1),11))"
  },
  {
    "input": "input : list = [-3, -1, -4]\noutput : list = [-7, -4, -6]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(reverse([-3, -1, -4]),1),1),24),-4)",
    "io_inp": [
      -3,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(reverse(input),1),1),24),-4)"
  },
  {
    "input": "input : list = [4, 3, 2, 4, 4, -5]\noutput : list = [9, 8, 7, 9, 9, 0]",
    "output": "generated_output : list = sub_n([4, 3, 2, 4, 4, -5],-5)",
    "io_inp": [
      4,
      3,
      2,
      4,
      4,
      -5
    ],
    "io_out": [
      9,
      8,
      7,
      9,
      9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [-3]",
    "output": "generated_output : list = drop(add_n(sort_des(sort_des(mul_n([5, 0, 5],-1))),2),2)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_des(sort_des(mul_n(input,-1))),2),2)"
  },
  {
    "input": "input : list = [2, -1, 4, 3, -1, 4]\noutput : list = [-5, -5, -2, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sub_n([2, -1, 4, 3, -1, 4],3))),-1))",
    "io_inp": [
      2,
      -1,
      4,
      3,
      -1,
      4
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sub_n(input,3))),-1))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [6, -18]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n([4, -4],-2))),3)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(input,-2))),3)"
  },
  {
    "input": "input : list = [4, -1, 2, 2]\noutput : list = [1]",
    "output": "generated_output : list = take(take(add_n(take(sort_des([4, -1, 2, 2]),1),-3),35),28)",
    "io_inp": [
      4,
      -1,
      2,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(sort_des(input),1),-3),35),28)"
  },
  {
    "input": "input : list = [3, 2, 5]\noutput : list = [-6, -9, -15]",
    "output": "generated_output : list = sort_des(mul_n([3, 2, 5],-3))",
    "io_inp": [
      3,
      2,
      5
    ],
    "io_out": [
      -6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-1, -2, -4]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(take([-1, -2, -4],1),4)",
    "io_inp": [
      -1,
      -2,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse([-3, -4])",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 4, -4, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(take([-5, 5, 4, -4, 1],1)))))",
    "io_inp": [
      -5,
      5,
      4,
      -4,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(take(input,1)))))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [30, 21]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_des([-5, -2]))),5),-3)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      30,
      21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_des(input))),5),-3)"
  },
  {
    "input": "input : list = [-3, 4, 3, 4, -5]\noutput : list = [0, 0, -1, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n([-3, 4, 3, 4, -5],4))",
    "io_inp": [
      -3,
      4,
      3,
      4,
      -5
    ],
    "io_out": [
      0,
      0,
      -1,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [4, 5, -5, 4]\noutput : list = [-18, -16, -16, 2]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_des([4, 5, -5, 4]),-5),-5),4),-2)",
    "io_inp": [
      4,
      5,
      -5,
      4
    ],
    "io_out": [
      -18,
      -16,
      -16,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(sort_des(input),-5),-5),4),-2)"
  },
  {
    "input": "input : list = [0, -2, -1, 1]\noutput : list = [2, 3, 4, 5]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_asc([0, -2, -1, 1]),-4),1),-5),3)",
    "io_inp": [
      0,
      -2,
      -1,
      1
    ],
    "io_out": [
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(sort_asc(input),-4),1),-5),3)"
  },
  {
    "input": "input : list = [-4, -3, 0, -1]\noutput : list = [-4, -3, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_asc([-4, -3, 0, -1])))))",
    "io_inp": [
      -4,
      -3,
      0,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, 3, -2, -5, -2]\noutput : list = [-50]",
    "output": "generated_output : list = mul_n(drop(reverse(add_n(sort_asc([4, 3, -2, -5, -2]),-5)),4),5)",
    "io_inp": [
      4,
      3,
      -2,
      -5,
      -2
    ],
    "io_out": [
      -50
    ],
    "output_masked": "generated_output : list = mul_n(drop(reverse(add_n(sort_asc(input),-5)),4),5)"
  },
  {
    "input": "input : list = [-4, 0, 5, -3, -3]\noutput : list = [5, 0, -3, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 0, 5, -3, -3])",
    "io_inp": [
      -4,
      0,
      5,
      -3,
      -3
    ],
    "io_out": [
      5,
      0,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 4, 2, -5, -4]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse(take(take(take([1, 4, 2, -5, -4],1),3),11)),1)",
    "io_inp": [
      1,
      4,
      2,
      -5,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(take(input,1),3),11)),1)"
  },
  {
    "input": "input : list = [-2, -2, -1, 5]\noutput : list = [6, 0, -1, -1]",
    "output": "generated_output : list = sub_n(reverse([-2, -2, -1, 5]),-1)",
    "io_inp": [
      -2,
      -2,
      -1,
      5
    ],
    "io_out": [
      6,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [8, -8, 4]",
    "output": "generated_output : list = mul_n([2, -2, 1],4)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      8,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 3, 4, -3]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(drop([-5, 3, 4, -3],1),-3)),-3))",
    "io_inp": [
      -5,
      3,
      4,
      -3
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(drop(input,1),-3)),-3))"
  },
  {
    "input": "input : list = [2, 0, 1, -1, 1, -4]\noutput : list = [11, 2, -1, -4, -4, -7]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(sort_des([2, 0, 1, -1, 1, -4]),-3),10)),1)",
    "io_inp": [
      2,
      0,
      1,
      -1,
      1,
      -4
    ],
    "io_out": [
      11,
      2,
      -1,
      -4,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(sort_des(input),-3),10)),1)"
  },
  {
    "input": "input : list = [-1, 5, 1, -2, -4]\noutput : list = [4, 0, -2, -3, -5]",
    "output": "generated_output : list = sub_n(sort_des([-1, 5, 1, -2, -4]),1)",
    "io_inp": [
      -1,
      5,
      1,
      -2,
      -4
    ],
    "io_out": [
      4,
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [22, 20]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_des([1, 2]),5)),-4),2)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      22,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(sort_des(input),5)),-4),2)"
  },
  {
    "input": "input : list = [0, 3, 5, 3, -2, 2]\noutput : list = [-26, -16, -16, -11, -1, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n([0, 3, 5, 3, -2, 2],-5),-4),5))",
    "io_inp": [
      0,
      3,
      5,
      3,
      -2,
      2
    ],
    "io_out": [
      -26,
      -16,
      -16,
      -11,
      -1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(input,-5),-4),5))"
  },
  {
    "input": "input : list = [1, 2, 4, -3, -2]\noutput : list = [-1, 0, 2, -5, -4]",
    "output": "generated_output : list = sub_n([1, 2, 4, -3, -2],2)",
    "io_inp": [
      1,
      2,
      4,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0,
      2,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-5, 1]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_des([-4, 2])),-1)))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-5, -2, 3, -4]\noutput : list = [8, 6, 1]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(drop([-5, -2, 3, -4],1),4),-1)))",
    "io_inp": [
      -5,
      -2,
      3,
      -4
    ],
    "io_out": [
      8,
      6,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(drop(input,1),4),-1)))"
  },
  {
    "input": "input : list = [-3, 4, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(drop([-3, 4, 2],1))",
    "io_inp": [
      -3,
      4,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [5, 0]",
    "output": "generated_output : list = add_n(sort_des([-2, 3]),2)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [5, 2, -2, 3, 5]\noutput : list = [0, 0, -2, -3, -7]",
    "output": "generated_output : list = add_n(sort_des(sub_n([5, 2, -2, 3, 5],3)),-2)",
    "io_inp": [
      5,
      2,
      -2,
      3,
      5
    ],
    "io_out": [
      0,
      0,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,3)),-2)"
  },
  {
    "input": "input : list = [5, 2, -2, 5, 2]\noutput : list = [2, 6, 6, 9, 9]",
    "output": "generated_output : list = sort_asc(sub_n([5, 2, -2, 5, 2],-4))",
    "io_inp": [
      5,
      2,
      -2,
      5,
      2
    ],
    "io_out": [
      2,
      6,
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-5, -3, -4, -3, 1]\noutput : list = [-2, 0, -1, 0, 4]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse([-5, -3, -4, -3, 1])),5),2)",
    "io_inp": [
      -5,
      -3,
      -4,
      -3,
      1
    ],
    "io_out": [
      -2,
      0,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(input)),5),2)"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [-6, -4, -3]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(mul_n([1, -1, 2],1),11))),-5)",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(mul_n(input,1),11))),-5)"
  },
  {
    "input": "input : list = [-1, -4, -3, 5, -3]\noutput : list = [7, 6, 6, 4, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(mul_n([-1, -4, -3, 5, -3],-1),-3))))",
    "io_inp": [
      -1,
      -4,
      -3,
      5,
      -3
    ],
    "io_out": [
      7,
      6,
      6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(mul_n(input,-1),-3))))"
  },
  {
    "input": "input : list = [-5, 3, 1, 1, 2]\noutput : list = [-9, -3, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(take([-5, 3, 1, 1, 2],3)),-1)),-5)",
    "io_inp": [
      -5,
      3,
      1,
      1,
      2
    ],
    "io_out": [
      -9,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(take(input,3)),-1)),-5)"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n(take([2, -4, -3],1),2),-2),27))",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(take(input,1),2),-2),27))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = add_n([-3, -4],-1)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, 4, 3]\noutput : list = [-10, -12, 0]",
    "output": "generated_output : list = reverse(take(add_n(mul_n([-2, 4, 3],-2),-4),12))",
    "io_inp": [
      -2,
      4,
      3
    ],
    "io_out": [
      -10,
      -12,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(mul_n(input,-2),-4),12))"
  },
  {
    "input": "input : list = [2, 1, 0, -1]\noutput : list = [8]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(take([2, 1, 0, -1],1))),4),-4)",
    "io_inp": [
      2,
      1,
      0,
      -1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(take(input,1))),4),-4)"
  },
  {
    "input": "input : list = [-3, -3, -4, 2, 0, -2]\noutput : list = [-4, -3, -3, -2, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc([-3, -3, -4, 2, 0, -2]))))",
    "io_inp": [
      -3,
      -3,
      -4,
      2,
      0,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [-4, 1, -5]\noutput : list = [3, 21]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(drop([-4, 1, -5],1)),2)),-3)",
    "io_inp": [
      -4,
      1,
      -5
    ],
    "io_out": [
      3,
      21
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(drop(input,1)),2)),-3)"
  },
  {
    "input": "input : list = [1, -2, 5, 5, -1, -5]\noutput : list = [-40, -25, -20, -10, 10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sub_n([1, -2, 5, 5, -1, -5],3))),5))",
    "io_inp": [
      1,
      -2,
      5,
      5,
      -1,
      -5
    ],
    "io_out": [
      -40,
      -25,
      -20,
      -10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(sub_n(input,3))),5))"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [-1, -4, -4]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(sort_asc([4, 4, 1]))),14),-1)",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(sort_asc(input))),14),-1)"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [-7, -9, -9]",
    "output": "generated_output : list = take(sub_n(add_n([1, -1, -1],-5),3),5)",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(input,-5),3),5)"
  },
  {
    "input": "input : list = [-2, -2, -5, -4, -1, -1]\noutput : list = [4, 4, 10, 8, 2, 2]",
    "output": "generated_output : list = take(reverse(take(reverse(mul_n([-2, -2, -5, -4, -1, -1],-2)),23)),8)",
    "io_inp": [
      -2,
      -2,
      -5,
      -4,
      -1,
      -1
    ],
    "io_out": [
      4,
      4,
      10,
      8,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(mul_n(input,-2)),23)),8)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(add_n([5, -2],5),-4))))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(add_n(input,5),-4))))"
  },
  {
    "input": "input : list = [1, 4, 1, 1, -2, -4]\noutput : list = [-4, -7, -9]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(drop([1, 4, 1, 1, -2, -4],3),16)),3),-2)",
    "io_inp": [
      1,
      4,
      1,
      1,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(drop(input,3),16)),3),-2)"
  },
  {
    "input": "input : list = [3, -2, -3, 0, -1, -5]\noutput : list = [7, 4, 3, 2, 1, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_des([3, -2, -3, 0, -1, -5]))),1),5)",
    "io_inp": [
      3,
      -2,
      -3,
      0,
      -1,
      -5
    ],
    "io_out": [
      7,
      4,
      3,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sort_des(input))),1),5)"
  },
  {
    "input": "input : list = [1, -3, -4, 4, 4]\noutput : list = [3, 3, -5, -4, 0]",
    "output": "generated_output : list = reverse(add_n(take(add_n([1, -3, -4, 4, 4],-4),8),3))",
    "io_inp": [
      1,
      -3,
      -4,
      4,
      4
    ],
    "io_out": [
      3,
      3,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(input,-4),8),3))"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [-13, -9, -9]",
    "output": "generated_output : list = take(add_n(add_n(add_n(add_n([-4, 0, 0],-3),1),-2),-5),42)",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      -13,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(add_n(input,-3),1),-2),-5),42)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [5, 1, -3]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n([-5, -1, 3],-1),4),4),35)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(input,-1),4),4),35)"
  },
  {
    "input": "input : list = [1, 1, 4]\noutput : list = [-1, -1, -16]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sub_n([1, 1, 4],1),-5),1)))",
    "io_inp": [
      1,
      1,
      4
    ],
    "io_out": [
      -1,
      -1,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(mul_n(sub_n(input,1),-5),1)))"
  },
  {
    "input": "input : list = [-5, 0, 4, 0]\noutput : list = [-4, 4, 4, 14]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(reverse([-5, 0, 4, 0]))),-2),4)",
    "io_inp": [
      -5,
      0,
      4,
      0
    ],
    "io_out": [
      -4,
      4,
      4,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(reverse(input))),-2),4)"
  },
  {
    "input": "input : list = [3, 5, -3, 2]\noutput : list = [5, 3, 2, -3]",
    "output": "generated_output : list = sort_des(sort_des([3, 5, -3, 2]))",
    "io_inp": [
      3,
      5,
      -3,
      2
    ],
    "io_out": [
      5,
      3,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, 1, -1, 3]\noutput : list = [-13, -5, -1, 3]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(sort_des([0, 1, -1, 3])),-4),1))",
    "io_inp": [
      0,
      1,
      -1,
      3
    ],
    "io_out": [
      -13,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(sort_des(input)),-4),1))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([2, 0]))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, 3, 1, -5, -4, -1]\noutput : list = [-16, -4, 20, 32]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(take([-3, 3, 1, -5, -4, -1],4),-3),-1),2))",
    "io_inp": [
      -3,
      3,
      1,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -16,
      -4,
      20,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(take(input,4),-3),-1),2))"
  },
  {
    "input": "input : list = [-1, 0, 3, 1, -2, -1]\noutput : list = [12, 7, -8, 2]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take([-1, 0, 3, 1, -2, -1],4),-5),3),-4)",
    "io_inp": [
      -1,
      0,
      3,
      1,
      -2,
      -1
    ],
    "io_out": [
      12,
      7,
      -8,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(input,4),-5),3),-4)"
  },
  {
    "input": "input : list = [-5, 5, 1, 1]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(take([-5, 5, 1, 1],1)),3))",
    "io_inp": [
      -5,
      5,
      1,
      1
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(take(input,1)),3))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [0, -28]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sub_n([-3, 4],4),4))))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      0,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sub_n(input,4),4))))"
  },
  {
    "input": "input : list = [1, 2, -1, -2]\noutput : list = [103, 203, -97, -197]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(mul_n([1, 2, -1, -2],-4),-5),5),-3),30)",
    "io_inp": [
      1,
      2,
      -1,
      -2
    ],
    "io_out": [
      103,
      203,
      -97,
      -197
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(mul_n(input,-4),-5),5),-3),30)"
  },
  {
    "input": "input : list = [-4, -2, -1, 5, -3]\noutput : list = [-45, -40, -35, -30, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n([-4, -2, -1, 5, -3],-5))),5)",
    "io_inp": [
      -4,
      -2,
      -1,
      5,
      -3
    ],
    "io_out": [
      -45,
      -40,
      -35,
      -30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(input,-5))),5)"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [-15, -8, -7]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(add_n([2, 3, -5],-5))),5))",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      -15,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(add_n(input,-5))),5))"
  },
  {
    "input": "input : list = [-2, -4, 3, 1, -3, 2]\noutput : list = [0, -1, -2, -5, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(sub_n([-2, -4, 3, 1, -3, 2],-1))),4))",
    "io_inp": [
      -2,
      -4,
      3,
      1,
      -3,
      2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(sub_n(input,-1))),4))"
  },
  {
    "input": "input : list = [-3, 3, 5, 5, 0, -3]\noutput : list = [0, 3, 8, 8, 6, 0]",
    "output": "generated_output : list = reverse(sub_n([-3, 3, 5, 5, 0, -3],-3))",
    "io_inp": [
      -3,
      3,
      5,
      5,
      0,
      -3
    ],
    "io_out": [
      0,
      3,
      8,
      8,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-2, 2, 1, -2]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(reverse([-2, 2, 1, -2]),3)),37))",
    "io_inp": [
      -2,
      2,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(reverse(input),3)),37))"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [12]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(take([-4, -5, 5],1)),-2),4))",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(take(input,1)),-2),4))"
  },
  {
    "input": "input : list = [-2, 5, -1, 2]\noutput : list = [7, 4, 1, 0]",
    "output": "generated_output : list = sort_des(take(sub_n([-2, 5, -1, 2],-2),20))",
    "io_inp": [
      -2,
      5,
      -1,
      2
    ],
    "io_out": [
      7,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,-2),20))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(sub_n([4, -2],5),-1),-1),1))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(sub_n(input,5),-1),-1),1))"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-4, 5, -5]",
    "output": "generated_output : list = reverse([-5, 5, -4])",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sort_asc([3, 0]))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 1, -5, 5, 0, -3]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(add_n(add_n(reverse(drop([-2, 1, -5, 5, 0, -3],4)),4),-1),16)",
    "io_inp": [
      -2,
      1,
      -5,
      5,
      0,
      -3
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(drop(input,4)),4),-1),16)"
  },
  {
    "input": "input : list = [2, -5, 3, 2, -4]\noutput : list = [-2, -16, 0, -2, -14]",
    "output": "generated_output : list = sub_n(mul_n(add_n([2, -5, 3, 2, -4],-2),2),2)",
    "io_inp": [
      2,
      -5,
      3,
      2,
      -4
    ],
    "io_out": [
      -2,
      -16,
      0,
      -2,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,-2),2),2)"
  },
  {
    "input": "input : list = [3, 3, 2, 3, -4, -2]\noutput : list = [5, 5, 25, 5, 145, 105]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n([3, 3, 2, 3, -4, -2],-5),4),3),4),-5)",
    "io_inp": [
      3,
      3,
      2,
      3,
      -4,
      -2
    ],
    "io_out": [
      5,
      5,
      25,
      5,
      145,
      105
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(add_n(input,-5),4),3),4),-5)"
  },
  {
    "input": "input : list = [-5, 1, 1, -3, 3]\noutput : list = [240, 80, 80, -240, -400]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(mul_n([-5, 1, 1, -3, 3],-4),5))),-4)",
    "io_inp": [
      -5,
      1,
      1,
      -3,
      3
    ],
    "io_out": [
      240,
      80,
      80,
      -240,
      -400
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(mul_n(input,-4),5))),-4)"
  },
  {
    "input": "input : list = [5, -2, -4, -3]\noutput : list = [10, 3]",
    "output": "generated_output : list = add_n(sub_n(add_n(add_n(take([5, -2, -4, -3],2),4),4),4),1)",
    "io_inp": [
      5,
      -2,
      -4,
      -3
    ],
    "io_out": [
      10,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(add_n(take(input,2),4),4),4),1)"
  },
  {
    "input": "input : list = [-1, 0, -1, 2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(take([-1, 0, -1, 2],1),-2),1),37))",
    "io_inp": [
      -1,
      0,
      -1,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(take(input,1),-2),1),37))"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [1, 0, -7]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_asc([2, -5, 3]),5)),2),-5)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      1,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(sort_asc(input),5)),2),-5)"
  },
  {
    "input": "input : list = [1, -4, 2, 1, 5]\noutput : list = [13, 9, 10, 4, 9]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(sub_n([1, -4, 2, 1, 5],-4),5),-3),-4))",
    "io_inp": [
      1,
      -4,
      2,
      1,
      5
    ],
    "io_out": [
      13,
      9,
      10,
      4,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(sub_n(input,-4),5),-3),-4))"
  },
  {
    "input": "input : list = [2, 0, -4, -3, 0, -5]\noutput : list = [10, 8, 6, 0, 0, -4]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(sort_asc([2, 0, -4, -3, 0, -5]),-1),37),2))",
    "io_inp": [
      2,
      0,
      -4,
      -3,
      0,
      -5
    ],
    "io_out": [
      10,
      8,
      6,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(sort_asc(input),-1),37),2))"
  },
  {
    "input": "input : list = [-4, 2, 5, -5, -1]\noutput : list = [5, -1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(drop([-4, 2, 5, -5, -1],2)))))",
    "io_inp": [
      -4,
      2,
      5,
      -5,
      -1
    ],
    "io_out": [
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(drop(reverse(sub_n(sort_asc([2, -1, 3]),1)),2),2)",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(sub_n(sort_asc(input),1)),2),2)"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [-2, 4, 10]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(mul_n([2, -4, -1],1),2),2),-1))",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      -2,
      4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(mul_n(input,1),2),2),-1))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-11, -11]",
    "output": "generated_output : list = add_n(take(take(sub_n(sort_asc([-5, -5]),5),7),27),-1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(sort_asc(input),5),7),27),-1)"
  },
  {
    "input": "input : list = [5, 3, 3, 5, 2]\noutput : list = [-2, -8, -4, -4, -8]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(mul_n([5, 3, 3, 5, 2],-1),2),-1),3))",
    "io_inp": [
      5,
      3,
      3,
      5,
      2
    ],
    "io_out": [
      -2,
      -8,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(mul_n(input,-1),2),-1),3))"
  },
  {
    "input": "input : list = [-3, -5, -5, 0, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -5, -5, 0, -3],1)",
    "io_inp": [
      -3,
      -5,
      -5,
      0,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 2, 4, 2]\noutput : list = [-8, -4, -4, 2]",
    "output": "generated_output : list = mul_n(sort_des([-1, 2, 4, 2]),-2)",
    "io_inp": [
      -1,
      2,
      4,
      2
    ],
    "io_out": [
      -8,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [4, 0, -2, 1, -1, -1]\noutput : list = [9, 6, 5, 4, 4, 3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des([4, 0, -2, 1, -1, -1]))),5)",
    "io_inp": [
      4,
      0,
      -2,
      1,
      -1,
      -1
    ],
    "io_out": [
      9,
      6,
      5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(input))),5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [1, -8]",
    "output": "generated_output : list = sort_des(add_n([4, -5],-3))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      1,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [3, -1, 4, 2, 5, 2]\noutput : list = [3, 6, 6, 7, 8, 9]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(reverse([3, -1, 4, 2, 5, 2])),4)))",
    "io_inp": [
      3,
      -1,
      4,
      2,
      5,
      2
    ],
    "io_out": [
      3,
      6,
      6,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(reverse(input)),4)))"
  },
  {
    "input": "input : list = [-1, -1, 3, 3, -4]\noutput : list = [-9, -9, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(take(mul_n([-1, -1, 3, 3, -4],-3),4),31)))",
    "io_inp": [
      -1,
      -1,
      3,
      3,
      -4
    ],
    "io_out": [
      -9,
      -9,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(mul_n(input,-3),4),31)))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [0, -12]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_des([-2, 0]),-1),3)),-2)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(sort_des(input),-1),3)),-2)"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [12, 16, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([3, 5, 4],4)))",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      12,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,4)))"
  },
  {
    "input": "input : list = [1, 2, 0, -5, -3]\noutput : list = [-5, -3, 0, 1, 2]",
    "output": "generated_output : list = sort_asc([1, 2, 0, -5, -3])",
    "io_inp": [
      1,
      2,
      0,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, -4, 1, -4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse(sort_des(drop([3, -3, -4, 1, -4, -3],4)))",
    "io_inp": [
      3,
      -3,
      -4,
      1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(drop(input,4)))"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [7, 1, 0]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sub_n([-1, -2, 5],1),3))))",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      7,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(sub_n(input,1),3))))"
  },
  {
    "input": "input : list = [-2, 4, 2, -2, 3, -1]\noutput : list = [1, 7, 5, 1]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(sub_n([-2, 4, 2, -2, 3, -1],-2),4),1),5),4)",
    "io_inp": [
      -2,
      4,
      2,
      -2,
      3,
      -1
    ],
    "io_out": [
      1,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(sub_n(input,-2),4),1),5),4)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc([-1, -5])),7),-1))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(sort_asc(input)),7),-1))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [0, 4]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sort_asc([-1, 3])),-3)),-2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sort_asc(input)),-3)),-2)"
  },
  {
    "input": "input : list = [3, 5, -1, -1, -3]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = sort_asc(reverse(drop([3, 5, -1, -1, -3],2)))",
    "io_inp": [
      3,
      5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,2)))"
  },
  {
    "input": "input : list = [-5, -1, 1, -1, 5]\noutput : list = [-4, -8, -10, -10, -14]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sub_n(sort_des([-5, -1, 1, -1, 5]),5),-4)))",
    "io_inp": [
      -5,
      -1,
      1,
      -1,
      5
    ],
    "io_out": [
      -4,
      -8,
      -10,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sub_n(sort_des(input),5),-4)))"
  },
  {
    "input": "input : list = [0, -5, 5, -3, -5]\noutput : list = [7, 2, -1, -3, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([0, -5, 5, -3, -5]),-4),2)",
    "io_inp": [
      0,
      -5,
      5,
      -3,
      -5
    ],
    "io_out": [
      7,
      2,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),-4),2)"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [5, 4, 1]",
    "output": "generated_output : list = reverse(sort_asc([1, 4, 5]))",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 0, -4, -5, 1]\noutput : list = [-6, -6, -5, -1, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(sub_n([-5, 0, -4, -5, 1],-4),-5))))",
    "io_inp": [
      -5,
      0,
      -4,
      -5,
      1
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(sub_n(input,-4),-5))))"
  },
  {
    "input": "input : list = [3, 1, -1, -2, 2, 4]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(take([3, 1, -1, -2, 2, 4],1)),-1)),21)",
    "io_inp": [
      3,
      1,
      -1,
      -2,
      2,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(take(input,1)),-1)),21)"
  },
  {
    "input": "input : list = [3, -4, 2, 2, -2]\noutput : list = [-5, 1, 1, -3]",
    "output": "generated_output : list = take(take(add_n(add_n(drop([3, -4, 2, 2, -2],1),4),-5),11),39)",
    "io_inp": [
      3,
      -4,
      2,
      2,
      -2
    ],
    "io_out": [
      -5,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(take(add_n(add_n(drop(input,1),4),-5),11),39)"
  },
  {
    "input": "input : list = [-3, 3, 1]\noutput : list = [-11, 19, 9]",
    "output": "generated_output : list = sub_n(mul_n([-3, 3, 1],5),-4)",
    "io_inp": [
      -3,
      3,
      1
    ],
    "io_out": [
      -11,
      19,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-4)"
  },
  {
    "input": "input : list = [3, 5, -4, 4]\noutput : list = [-24, 4, 8, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sort_asc([3, 5, -4, 4]),2))),4)",
    "io_inp": [
      3,
      5,
      -4,
      4
    ],
    "io_out": [
      -24,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(sort_asc(input),2))),4)"
  },
  {
    "input": "input : list = [-5, 2, -1, -1, -2, 2]\noutput : list = [-360, 165, -60, -60, -135, 165]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(mul_n([-5, 2, -1, -1, -2, 2],-5),1),3),5),-1)",
    "io_inp": [
      -5,
      2,
      -1,
      -1,
      -2,
      2
    ],
    "io_out": [
      -360,
      165,
      -60,
      -60,
      -135,
      165
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(mul_n(input,-5),1),3),5),-1)"
  },
  {
    "input": "input : list = [-3, 2, 5, 3, 5, 2]\noutput : list = [0, 5, 5, 6, 8, 8]",
    "output": "generated_output : list = sub_n(sort_asc([-3, 2, 5, 3, 5, 2]),-3)",
    "io_inp": [
      -3,
      2,
      5,
      3,
      5,
      2
    ],
    "io_out": [
      0,
      5,
      5,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [8, -16]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(drop([-5, 4, -2],1),1),-4),4))",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(drop(input,1),1),-4),4))"
  },
  {
    "input": "input : list = [-2, 4, -1, -2, 1]\noutput : list = [24, -48, 12, 24, -12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sub_n([-2, 4, -1, -2, 1],-2),-3),-1),-5),4)",
    "io_inp": [
      -2,
      4,
      -1,
      -2,
      1
    ],
    "io_out": [
      24,
      -48,
      12,
      24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sub_n(input,-2),-3),-1),-5),4)"
  },
  {
    "input": "input : list = [0, 1, 1, -2]\noutput : list = [1, 1, 0, -2]",
    "output": "generated_output : list = sort_des([0, 1, 1, -2])",
    "io_inp": [
      0,
      1,
      1,
      -2
    ],
    "io_out": [
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, 5, 3, 2, 0]\noutput : list = [-7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(take([-5, -3, 5, 3, 2, 0],1),26),-2)))",
    "io_inp": [
      -5,
      -3,
      5,
      3,
      2,
      0
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(take(input,1),26),-2)))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-4, 6]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(mul_n([-3, 2],-1))),6),2)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(mul_n(input,-1))),6),2)"
  },
  {
    "input": "input : list = [3, 1, -4, -2, -5, -3]\noutput : list = [2, 0, -3, -4, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_des([3, 1, -4, -2, -5, -3]))),1))",
    "io_inp": [
      3,
      1,
      -4,
      -2,
      -5,
      -3
    ],
    "io_out": [
      2,
      0,
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [2, -5, -3]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = take(sort_des(reverse([2, -5, -3])),7)",
    "io_inp": [
      2,
      -5,
      -3
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),7)"
  },
  {
    "input": "input : list = [-2, 3, -3, -2, -5, 4]\noutput : list = [3, 8, 2, 3, 0]",
    "output": "generated_output : list = reverse(add_n(drop(reverse([-2, 3, -3, -2, -5, 4]),1),5))",
    "io_inp": [
      -2,
      3,
      -3,
      -2,
      -5,
      4
    ],
    "io_out": [
      3,
      8,
      2,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(reverse(input),1),5))"
  },
  {
    "input": "input : list = [-2, -1, -4, 2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(take([-2, -1, -4, 2],2))),37))",
    "io_inp": [
      -2,
      -1,
      -4,
      2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(take(input,2))),37))"
  },
  {
    "input": "input : list = [1, -1, -4, 4, 1]\noutput : list = [12, 3, 3, -3, -12]",
    "output": "generated_output : list = mul_n(sort_des(reverse([1, -1, -4, 4, 1])),3)",
    "io_inp": [
      1,
      -1,
      -4,
      4,
      1
    ],
    "io_out": [
      12,
      3,
      3,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),3)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [-10, -6, -2]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([-1, 3, -5]),-5))",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      -10,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-10, -14]",
    "output": "generated_output : list = take(add_n(add_n([-1, -5],-5),-4),8)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -10,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(input,-5),-4),8)"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [3, 0, -2]",
    "output": "generated_output : list = sort_des([3, 0, -2])",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 0, -3, 3, -2, -1]\noutput : list = [8, 20, -4, 16, 12]",
    "output": "generated_output : list = mul_n(drop(sub_n(mul_n(add_n([-3, 0, -3, 3, -2, -1],1),1),3),1),-4)",
    "io_inp": [
      -3,
      0,
      -3,
      3,
      -2,
      -1
    ],
    "io_out": [
      8,
      20,
      -4,
      16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(mul_n(add_n(input,1),1),3),1),-4)"
  },
  {
    "input": "input : list = [3, -4, -4, 2, 2]\noutput : list = [4, 4, -2, -2, 5]",
    "output": "generated_output : list = reverse(add_n([3, -4, -4, 2, 2],2))",
    "io_inp": [
      3,
      -4,
      -4,
      2,
      2
    ],
    "io_out": [
      4,
      4,
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [3, -1, 5, -5]\noutput : list = [-6, 2, -10, 10]",
    "output": "generated_output : list = mul_n(mul_n([3, -1, 5, -5],-1),2)",
    "io_inp": [
      3,
      -1,
      5,
      -5
    ],
    "io_out": [
      -6,
      2,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),2)"
  },
  {
    "input": "input : list = [4, 2, -5, 1, 0, 5]\noutput : list = [46, 1, -8, -17, -35, -44]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse([4, 2, -5, 1, 0, 5]),3)),-3),1)",
    "io_inp": [
      4,
      2,
      -5,
      1,
      0,
      5
    ],
    "io_out": [
      46,
      1,
      -8,
      -17,
      -35,
      -44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse(input),3)),-3),1)"
  },
  {
    "input": "input : list = [-4, -1, 1, 1, 0, 0]\noutput : list = [12, 3, 0, 0, -3, -3]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-4, -1, 1, 1, 0, 0])),-3)",
    "io_inp": [
      -4,
      -1,
      1,
      1,
      0,
      0
    ],
    "io_out": [
      12,
      3,
      0,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [2, 1, 5, 5]\noutput : list = [22, 22, 10, 13]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(reverse([2, 1, 5, 5]),3),20),3),-4)",
    "io_inp": [
      2,
      1,
      5,
      5
    ],
    "io_out": [
      22,
      22,
      10,
      13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(reverse(input),3),20),3),-4)"
  },
  {
    "input": "input : list = [3, 5, -4, -4]\noutput : list = [14, 12]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(take([3, 5, -4, -4],2),5),4),-5))",
    "io_inp": [
      3,
      5,
      -4,
      -4
    ],
    "io_out": [
      14,
      12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(take(input,2),5),4),-5))"
  },
  {
    "input": "input : list = [2, -1, -4, 1, -5]\noutput : list = [-3, -4, -6, -9, -10]",
    "output": "generated_output : list = add_n(sort_des(sort_des([2, -1, -4, 1, -5])),-5)",
    "io_inp": [
      2,
      -1,
      -4,
      1,
      -5
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [1, 3, 1, 3, 1]\noutput : list = [1]",
    "output": "generated_output : list = reverse(take(sort_des(drop(sort_des([1, 3, 1, 3, 1]),4)),29))",
    "io_inp": [
      1,
      3,
      1,
      3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(drop(sort_des(input),4)),29))"
  },
  {
    "input": "input : list = [-2, -5, 5, 0, -1, -4]\noutput : list = [15, 0, -3, -6, -12, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_asc([-2, -5, 5, 0, -1, -4]))),3))",
    "io_inp": [
      -2,
      -5,
      5,
      0,
      -1,
      -4
    ],
    "io_out": [
      15,
      0,
      -3,
      -6,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [4, 5, -5, -3]\noutput : list = [-10, -8]",
    "output": "generated_output : list = take(take(mul_n(sort_des(sort_asc([4, 5, -5, -3])),-2),2),4)",
    "io_inp": [
      4,
      5,
      -5,
      -3
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(sort_asc(input)),-2),2),4)"
  },
  {
    "input": "input : list = [-2, -4, 2, -3, 4, 0]\noutput : list = [5, 3, 1, -1, -2, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_asc([-2, -4, 2, -3, 4, 0]),2)),5),-4)",
    "io_inp": [
      -2,
      -4,
      2,
      -3,
      4,
      0
    ],
    "io_out": [
      5,
      3,
      1,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(sort_asc(input),2)),5),-4)"
  },
  {
    "input": "input : list = [2, -2, 3, 5]\noutput : list = [-50, 50, -75, -125]",
    "output": "generated_output : list = mul_n(mul_n([2, -2, 3, 5],-5),5)",
    "io_inp": [
      2,
      -2,
      3,
      5
    ],
    "io_out": [
      -50,
      50,
      -75,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),5)"
  },
  {
    "input": "input : list = [-2, -5, 3, 2]\noutput : list = [-5, -2, 2, 3]",
    "output": "generated_output : list = add_n(take(add_n(take(sort_asc([-2, -5, 3, 2]),13),-2),32),2)",
    "io_inp": [
      -2,
      -5,
      3,
      2
    ],
    "io_out": [
      -5,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(sort_asc(input),13),-2),32),2)"
  },
  {
    "input": "input : list = [-3, -1, 1, -1]\noutput : list = [-1, 1, -1]",
    "output": "generated_output : list = drop([-3, -1, 1, -1],1)",
    "io_inp": [
      -3,
      -1,
      1,
      -1
    ],
    "io_out": [
      -1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 1, 2, 4, -3]\noutput : list = [12, -3, -6, -12, 9]",
    "output": "generated_output : list = mul_n([-4, 1, 2, 4, -3],-3)",
    "io_inp": [
      -4,
      1,
      2,
      4,
      -3
    ],
    "io_out": [
      12,
      -3,
      -6,
      -12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, -4, -2, 3, -5]\noutput : list = [6, 6, 1, -1, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(mul_n([3, -4, -2, 3, -5],1)),-4),1))",
    "io_inp": [
      3,
      -4,
      -2,
      3,
      -5
    ],
    "io_out": [
      6,
      6,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(mul_n(input,1)),-4),1))"
  },
  {
    "input": "input : list = [2, 4, -2, 2, 1, -1]\noutput : list = [-75, -45, -135, -75, -90, -120]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(add_n([2, 4, -2, 2, 1, -1],-4),1),2),3),5)",
    "io_inp": [
      2,
      4,
      -2,
      2,
      1,
      -1
    ],
    "io_out": [
      -75,
      -45,
      -135,
      -75,
      -90,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(add_n(input,-4),1),2),3),5)"
  },
  {
    "input": "input : list = [5, 2, -5]\noutput : list = [10, 7, 0]",
    "output": "generated_output : list = add_n(sub_n(add_n([5, 2, -5],2),-2),1)",
    "io_inp": [
      5,
      2,
      -5
    ],
    "io_out": [
      10,
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(input,2),-2),1)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n([2, 3],2),-4))),2)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(add_n(add_n(input,2),-4))),2)"
  },
  {
    "input": "input : list = [-4, 5, -3]\noutput : list = [8, 6, -10]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(mul_n([-4, 5, -3],-2),4))))",
    "io_inp": [
      -4,
      5,
      -3
    ],
    "io_out": [
      8,
      6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(mul_n(input,-2),4))))"
  },
  {
    "input": "input : list = [0, -4, 3, -3]\noutput : list = [4, 10, 3]",
    "output": "generated_output : list = add_n(reverse(sub_n(drop([0, -4, 3, -3],1),-2)),5)",
    "io_inp": [
      0,
      -4,
      3,
      -3
    ],
    "io_out": [
      4,
      10,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(drop(input,1),-2)),5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2, 0, 4]\noutput : list = [20, 16, 8, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(take(sort_des([5, 2, 0, 4]),4),4),21))",
    "io_inp": [
      5,
      2,
      0,
      4
    ],
    "io_out": [
      20,
      16,
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(sort_des(input),4),4),21))"
  },
  {
    "input": "input : list = [-3, -2, 1, 0, 0, -3]\noutput : list = [-3, -2, 1]",
    "output": "generated_output : list = take([-3, -2, 1, 0, 0, -3],3)",
    "io_inp": [
      -3,
      -2,
      1,
      0,
      0,
      -3
    ],
    "io_out": [
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, -1, -1, 1, 3]\noutput : list = [15, 5, -5, -5, -10]",
    "output": "generated_output : list = reverse(mul_n([-2, -1, -1, 1, 3],5))",
    "io_inp": [
      -2,
      -1,
      -1,
      1,
      3
    ],
    "io_out": [
      15,
      5,
      -5,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [-5, -1, -2, 1, -2]\noutput : list = [5, -5, -10, -10, -25]",
    "output": "generated_output : list = sort_des(mul_n([-5, -1, -2, 1, -2],5))",
    "io_inp": [
      -5,
      -1,
      -2,
      1,
      -2
    ],
    "io_out": [
      5,
      -5,
      -10,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(take([1, -3, 2],1)),6)))",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(take(input,1)),6)))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(sort_asc([3, -2]))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [14, -7]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(mul_n([-2, 5],3),2)),3))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      14,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(mul_n(input,3),2)),3))"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [10, 6, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_asc([5, 1, -3]),-4),2)),-3)",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      10,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sub_n(sort_asc(input),-4),2)),-3)"
  },
  {
    "input": "input : list = [-2, 0, 1, 5, -5]\noutput : list = [0, -27, -45, -54, -90]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(reverse([-2, 0, 1, 5, -5])),5),3),-3)",
    "io_inp": [
      -2,
      0,
      1,
      5,
      -5
    ],
    "io_out": [
      0,
      -27,
      -45,
      -54,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(reverse(input)),5),3),-3)"
  },
  {
    "input": "input : list = [-1, 0, -4]\noutput : list = [-16, -4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_asc([-1, 0, -4]))),4))",
    "io_inp": [
      -1,
      0,
      -4
    ],
    "io_out": [
      -16,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [0, -1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(drop([0, -1, 5],1),-1),18),-4))",
    "io_inp": [
      0,
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(drop(input,1),-1),18),-4))"
  },
  {
    "input": "input : list = [4, -4, 5, 3, -1]\noutput : list = [-9, -1, -10, -8, -4]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(reverse([4, -4, 5, 3, -1]),-5)),10),-1)",
    "io_inp": [
      4,
      -4,
      5,
      3,
      -1
    ],
    "io_out": [
      -9,
      -1,
      -10,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(reverse(input),-5)),10),-1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [1, 21]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(add_n([-1, 3],2)),5),4))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      1,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(add_n(input,2)),5),4))"
  },
  {
    "input": "input : list = [1, 5, -5, -1, 1]\noutput : list = [1, 5, -5, -1, 1]",
    "output": "generated_output : list = mul_n([1, 5, -5, -1, 1],1)",
    "io_inp": [
      1,
      5,
      -5,
      -1,
      1
    ],
    "io_out": [
      1,
      5,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -5, -2, -2, 4, 4]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(drop([1, -5, -2, -2, 4, 4],4),-2)",
    "io_inp": [
      1,
      -5,
      -2,
      -2,
      4,
      4
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,4),-2)"
  },
  {
    "input": "input : list = [-3, 2, -4]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 2, -4],1)",
    "io_inp": [
      -3,
      2,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [32]",
    "output": "generated_output : list = mul_n(mul_n(drop(reverse(reverse([2, 2, 2])),2),-4),-4)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      32
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(reverse(reverse(input)),2),-4),-4)"
  },
  {
    "input": "input : list = [-3, 2, 0, -4]\noutput : list = [-33, -25, -13, -9]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(add_n([-3, 2, 0, -4],5)),-4)),-5)",
    "io_inp": [
      -3,
      2,
      0,
      -4
    ],
    "io_out": [
      -33,
      -25,
      -13,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(add_n(input,5)),-4)),-5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-8, 16]",
    "output": "generated_output : list = take(add_n(take(sort_asc(mul_n([-3, 5],3)),13),1),8)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -8,
      16
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(mul_n(input,3)),13),1),8)"
  },
  {
    "input": "input : list = [-4, 1, 4, -3, -4, 5]\noutput : list = [-4, 16]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(take([-4, 1, 4, -3, -4, 5],2),-4),1)),10)",
    "io_inp": [
      -4,
      1,
      4,
      -3,
      -4,
      5
    ],
    "io_out": [
      -4,
      16
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(take(input,2),-4),1)),10)"
  },
  {
    "input": "input : list = [1, -5, -5, -5, -4]\noutput : list = [4, -2, -2, -2, -1]",
    "output": "generated_output : list = take(sub_n([1, -5, -5, -5, -4],-3),27)",
    "io_inp": [
      1,
      -5,
      -5,
      -5,
      -4
    ],
    "io_out": [
      4,
      -2,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),27)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [16, 16]",
    "output": "generated_output : list = mul_n([-4, -4],-4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 4, 0, 4, 1, 4]\noutput : list = [8, 4, 8, 5, 8]",
    "output": "generated_output : list = add_n(reverse(take(reverse([0, 4, 0, 4, 1, 4]),5)),4)",
    "io_inp": [
      0,
      4,
      0,
      4,
      1,
      4
    ],
    "io_out": [
      8,
      4,
      8,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(input),5)),4)"
  },
  {
    "input": "input : list = [-1, -3, 4, 4]\noutput : list = [2, 2, -3, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sub_n([-1, -3, 4, 4],4))),-2))",
    "io_inp": [
      -1,
      -3,
      4,
      4
    ],
    "io_out": [
      2,
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(sub_n(input,4))),-2))"
  },
  {
    "input": "input : list = [3, 0, -5, -4, -5]\noutput : list = [12, 0, -20]",
    "output": "generated_output : list = mul_n(take([3, 0, -5, -4, -5],3),4)",
    "io_inp": [
      3,
      0,
      -5,
      -4,
      -5
    ],
    "io_out": [
      12,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),4)"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-33, 12, 57]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-5, 0, 5],3),4),3)",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -33,
      12,
      57
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,3),4),3)"
  },
  {
    "input": "input : list = [-4, -2, 4, -4, 3, -1]\noutput : list = [-4, -2, 4]",
    "output": "generated_output : list = take(take([-4, -2, 4, -4, 3, -1],3),16)",
    "io_inp": [
      -4,
      -2,
      4,
      -4,
      3,
      -1
    ],
    "io_out": [
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(take(input,3),16)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse([2, 0])),2))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(input)),2))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5]",
    "output": "generated_output : list = reverse(reverse(add_n(take(add_n([5, 5],-2),1),2)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(add_n(input,-2),1),2)))"
  },
  {
    "input": "input : list = [4, 5, 2, 0, 2]\noutput : list = [4, 3, 1, 1, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sub_n(reverse([4, 5, 2, 0, 2]),1))))",
    "io_inp": [
      4,
      5,
      2,
      0,
      2
    ],
    "io_out": [
      4,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sub_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [4, 5]",
    "output": "generated_output : list = sub_n(reverse([2, 1]),-3)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [-3, -3, 4, 1, 0]\noutput : list = [-27, -27, -6, -15, -18]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-3, -3, 4, 1, 0],5),3),3)",
    "io_inp": [
      -3,
      -3,
      4,
      1,
      0
    ],
    "io_out": [
      -27,
      -27,
      -6,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,5),3),3)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-6, 1]",
    "output": "generated_output : list = add_n(take(sort_asc(mul_n(add_n([3, -4],5),-1)),15),2)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(mul_n(add_n(input,5),-1)),15),2)"
  },
  {
    "input": "input : list = [-1, 0, -1]\noutput : list = [3, 3, 0]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(reverse([-1, 0, -1])),-3)))",
    "io_inp": [
      -1,
      0,
      -1
    ],
    "io_out": [
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [-4, 3, -3, -3, 4]\noutput : list = [-48, -36, -36, 36, 48]",
    "output": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_asc([-4, 3, -3, -3, 4])),4),3))",
    "io_inp": [
      -4,
      3,
      -3,
      -3,
      4
    ],
    "io_out": [
      -48,
      -36,
      -36,
      36,
      48
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(reverse(sort_asc(input)),4),3))"
  },
  {
    "input": "input : list = [-1, 4, -1, -4, 1]\noutput : list = [-4, -1, -1, 1, 4]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_des([-1, 4, -1, -4, 1])),25)),1)",
    "io_inp": [
      -1,
      4,
      -1,
      -4,
      1
    ],
    "io_out": [
      -4,
      -1,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(sort_des(input)),25)),1)"
  },
  {
    "input": "input : list = [1, 3, -3, -4]\noutput : list = [36, 30, 6, -6]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sub_n([1, 3, -3, -4],2)),-2)),3)",
    "io_inp": [
      1,
      3,
      -3,
      -4
    ],
    "io_out": [
      36,
      30,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sub_n(input,2)),-2)),3)"
  },
  {
    "input": "input : list = [4, -1, 5, 4, -3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(take([4, -1, 5, 4, -3],1))),-1),-3)",
    "io_inp": [
      4,
      -1,
      5,
      4,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(take(input,1))),-1),-3)"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -1, -4],1)",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 5, 3, -2, 0]\noutput : list = [-4, -2, 0, 1, 3]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(reverse([2, 5, 3, -2, 0]),-4),-5),-3))",
    "io_inp": [
      2,
      5,
      3,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(reverse(input),-4),-5),-3))"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [-28, -18, 22]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(sort_des([5, -5, -3]),5),3)))",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      -28,
      -18,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(sort_des(input),5),3)))"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [2, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sub_n([-1, -1, -2],1)),5)))",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(sub_n(input,1)),5)))"
  },
  {
    "input": "input : list = [-5, -5, 5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = drop([-5, -5, 5, 1],2)",
    "io_inp": [
      -5,
      -5,
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [-28, 7]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(drop([-3, -5, 2],1),5),1),4))",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      -28,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(drop(input,1),5),1),4))"
  },
  {
    "input": "input : list = [-5, -4, -4, -1]\noutput : list = [-1, -4, -4, -5]",
    "output": "generated_output : list = reverse([-5, -4, -4, -1])",
    "io_inp": [
      -5,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -5, 0, -1, -3, -1]\noutput : list = [5, 0, -1, -1, -3, -5]",
    "output": "generated_output : list = take(sort_des([5, -5, 0, -1, -3, -1]),28)",
    "io_inp": [
      5,
      -5,
      0,
      -1,
      -3,
      -1
    ],
    "io_out": [
      5,
      0,
      -1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),28)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse([-1, 5])",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3, -4, 0, 2, 0]\noutput : list = [9, 8, 6, 6, 6, 2]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_des(sort_asc([0, 3, -4, 0, 2, 0])),-5),1),-1)",
    "io_inp": [
      0,
      3,
      -4,
      0,
      2,
      0
    ],
    "io_out": [
      9,
      8,
      6,
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_des(sort_asc(input)),-5),1),-1)"
  },
  {
    "input": "input : list = [2, 2, 5, -5]\noutput : list = [6, 6, 15, -15]",
    "output": "generated_output : list = mul_n([2, 2, 5, -5],3)",
    "io_inp": [
      2,
      2,
      5,
      -5
    ],
    "io_out": [
      6,
      6,
      15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-1, -3, -4, 1, 3]\noutput : list = [24, 16, 8, 0, -4]",
    "output": "generated_output : list = take(add_n(mul_n(sub_n(sort_des([-1, -3, -4, 1, 3]),-2),4),4),19)",
    "io_inp": [
      -1,
      -3,
      -4,
      1,
      3
    ],
    "io_out": [
      24,
      16,
      8,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sub_n(sort_des(input),-2),4),4),19)"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(sort_asc(drop(sort_des([-5, -3, 4]),2)),30),45)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(drop(sort_des(input),2)),30),45)"
  },
  {
    "input": "input : list = [-1, 3, 0, -5]\noutput : list = [6, 3, 2, -2]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(sort_des([-1, 3, 0, -5]))),-3),5)",
    "io_inp": [
      -1,
      3,
      0,
      -5
    ],
    "io_out": [
      6,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(sort_des(input))),-3),5)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc([1, -2]),1)),5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(input),1)),5)"
  },
  {
    "input": "input : list = [-1, 4, 3, -2, -2]\noutput : list = [4, 4, 5, 9, 10]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(sort_asc([-1, 4, 3, -2, -2]),-5),19)),1)",
    "io_inp": [
      -1,
      4,
      3,
      -2,
      -2
    ],
    "io_out": [
      4,
      4,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(sort_asc(input),-5),19)),1)"
  },
  {
    "input": "input : list = [1, -3, -4, -5, 3]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(add_n([1, -3, -4, -5, 3],-1),2)",
    "io_inp": [
      1,
      -3,
      -4,
      -5,
      3
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),2)"
  },
  {
    "input": "input : list = [-4, -5, -3, 0, -4]\noutput : list = [-28, -24, -24, -20, -8]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(sort_des([-4, -5, -3, 0, -4]),5),3),4))",
    "io_inp": [
      -4,
      -5,
      -3,
      0,
      -4
    ],
    "io_out": [
      -28,
      -24,
      -24,
      -20,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(sort_des(input),5),3),4))"
  },
  {
    "input": "input : list = [-1, 5, 4, 2]\noutput : list = [0, 3, 5, 6]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_asc([-1, 5, 4, 2]),4)),-3),2)",
    "io_inp": [
      -1,
      5,
      4,
      2
    ],
    "io_out": [
      0,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_asc(input),4)),-3),2)"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [3, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, 3])",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, 1, -2, 4]\noutput : list = [1, 1, -2, 4]",
    "output": "generated_output : list = drop([0, 1, 1, -2, 4],1)",
    "io_inp": [
      0,
      1,
      1,
      -2,
      4
    ],
    "io_out": [
      1,
      1,
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 2, -3, 1, -1]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n(sort_des(drop([4, 2, -3, 1, -1],3)),-5)",
    "io_inp": [
      4,
      2,
      -3,
      1,
      -1
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,3)),-5)"
  },
  {
    "input": "input : list = [-3, 1, 0, 1]\noutput : list = [-6, 0, 2, 2]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(sort_asc([-3, 1, 0, 1]),2))),14)",
    "io_inp": [
      -3,
      1,
      0,
      1
    ],
    "io_out": [
      -6,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(sort_asc(input),2))),14)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [0, -1, -8]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(add_n([-3, 5, 4],-2)),-3)))",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      0,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(add_n(input,-2)),-3)))"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [7, 3, 1]",
    "output": "generated_output : list = sub_n(take(sort_des([-4, -2, 2]),12),-5)",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      7,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),12),-5)"
  },
  {
    "input": "input : list = [-2, 1, -1, -5]\noutput : list = [-5, -7, -8, -11]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(sort_des([-2, 1, -1, -5]),1)),-5),1)",
    "io_inp": [
      -2,
      1,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -11
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(sort_des(input),1)),-5),1)"
  },
  {
    "input": "input : list = [4, 0, -1, 4, 2]\noutput : list = [9, 5, 4, 9, 7]",
    "output": "generated_output : list = add_n([4, 0, -1, 4, 2],5)",
    "io_inp": [
      4,
      0,
      -1,
      4,
      2
    ],
    "io_out": [
      9,
      5,
      4,
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [0, -1, 1, -1, 0]\noutput : list = [1, 1, 2, 2, 3]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(sub_n([0, -1, 1, -1, 0],3)),-5),7))",
    "io_inp": [
      0,
      -1,
      1,
      -1,
      0
    ],
    "io_out": [
      1,
      1,
      2,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(sub_n(input,3)),-5),7))"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [-3, -7, -5]",
    "output": "generated_output : list = sub_n([2, -2, 0],5)",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      -3,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, -2, -1, 1, -2, 1]\noutput : list = [-1, 0, 2, -1, 2]",
    "output": "generated_output : list = sub_n(drop([5, -2, -1, 1, -2, 1],1),-1)",
    "io_inp": [
      5,
      -2,
      -1,
      1,
      -2,
      1
    ],
    "io_out": [
      -1,
      0,
      2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-5, 0, 3, -3, 4, 4]\noutput : list = [85, 85, 60, -15, -90, -140]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc([-5, 0, 3, -3, 4, 4]),5),-3),5))",
    "io_inp": [
      -5,
      0,
      3,
      -3,
      4,
      4
    ],
    "io_out": [
      85,
      85,
      60,
      -15,
      -90,
      -140
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc(input),5),-3),5))"
  },
  {
    "input": "input : list = [-4, 2, 4, 2, -3, 1]\noutput : list = [8, -4, -8, -4, 6, -2]",
    "output": "generated_output : list = mul_n([-4, 2, 4, 2, -3, 1],-2)",
    "io_inp": [
      -4,
      2,
      4,
      2,
      -3,
      1
    ],
    "io_out": [
      8,
      -4,
      -8,
      -4,
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, 0, -5, 3, 5]\noutput : list = [-25, 15, 25]",
    "output": "generated_output : list = mul_n(drop([5, 0, -5, 3, 5],2),5)",
    "io_inp": [
      5,
      0,
      -5,
      3,
      5
    ],
    "io_out": [
      -25,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),5)"
  },
  {
    "input": "input : list = [2, 4, -2, 4, -2]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(take(reverse([2, 4, -2, 4, -2]),1),-1)",
    "io_inp": [
      2,
      4,
      -2,
      4,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),1),-1)"
  },
  {
    "input": "input : list = [4, 4, 1, 5]\noutput : list = [8, 7, 7, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(add_n(sub_n([4, 4, 1, 5],3),1)),-5))",
    "io_inp": [
      4,
      4,
      1,
      5
    ],
    "io_out": [
      8,
      7,
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(add_n(sub_n(input,3),1)),-5))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [21, 30]",
    "output": "generated_output : list = take(mul_n(sort_des(reverse(add_n([-5, -2],-5))),-3),21)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      21,
      30
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(reverse(add_n(input,-5))),-3),21)"
  },
  {
    "input": "input : list = [0, 3, -5, -2]\noutput : list = [-6, -3, 2]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(drop([0, 3, -5, -2],1))),2),-3)",
    "io_inp": [
      0,
      3,
      -5,
      -2
    ],
    "io_out": [
      -6,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(drop(input,1))),2),-3)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-4, -2, 2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_des([1, -3, -5]))),1)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_des(input))),1)"
  },
  {
    "input": "input : list = [-3, 3, 4, 0, -2, 4]\noutput : list = [-16, -16, -12, 0, 8, 12]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_des([-3, 3, 4, 0, -2, 4]),2)),-2)",
    "io_inp": [
      -3,
      3,
      4,
      0,
      -2,
      4
    ],
    "io_out": [
      -16,
      -16,
      -12,
      0,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_des(input),2)),-2)"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sort_asc([1, -1, 2])",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3, -1, 3]\noutput : list = [-3, -1, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, -3, -1, 3])",
    "io_inp": [
      -1,
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(sub_n([3, -2],-4))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [5, 4, -4, 5, 0, 3]\noutput : list = [36, 20, 8, 4, 0, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(add_n([5, 4, -4, 5, 0, 3],-4),-4)),-4))",
    "io_inp": [
      5,
      4,
      -4,
      5,
      0,
      3
    ],
    "io_out": [
      36,
      20,
      8,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(add_n(input,-4),-4)),-4))"
  },
  {
    "input": "input : list = [3, -4, 4, -4, -5, -5]\noutput : list = [-5, -5, -4, -4, 3, 4]",
    "output": "generated_output : list = take(sort_asc([3, -4, 4, -4, -5, -5]),23)",
    "io_inp": [
      3,
      -4,
      4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),23)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse([1, -4])))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-5, 5, -5, -5]\noutput : list = [-12, -12]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(drop([-5, 5, -5, -5],2)),4),-3))",
    "io_inp": [
      -5,
      5,
      -5,
      -5
    ],
    "io_out": [
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(drop(input,2)),4),-3))"
  },
  {
    "input": "input : list = [-2, 2, -4, 0]\noutput : list = [-6, -8, -10, -12]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(sub_n([-2, 2, -4, 0],5),1),4)),11)",
    "io_inp": [
      -2,
      2,
      -4,
      0
    ],
    "io_out": [
      -6,
      -8,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(sub_n(input,5),1),4)),11)"
  },
  {
    "input": "input : list = [-3, 2, 5]\noutput : list = [-61, -16, 59]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(mul_n([-3, 2, 5],-5),-3),3),-5))",
    "io_inp": [
      -3,
      2,
      5
    ],
    "io_out": [
      -61,
      -16,
      59
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(mul_n(input,-5),-3),3),-5))"
  },
  {
    "input": "input : list = [5, 4, -3, -3, 0, -4]\noutput : list = [7, 6, -1]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(take([5, 4, -3, -3, 0, -4],3))),2),35)",
    "io_inp": [
      5,
      4,
      -3,
      -3,
      0,
      -4
    ],
    "io_out": [
      7,
      6,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(take(input,3))),2),35)"
  },
  {
    "input": "input : list = [-3, 1, -3, -2, -3]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(drop([-3, 1, -3, -2, -3],3)),-1),21))",
    "io_inp": [
      -3,
      1,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(drop(input,3)),-1),21))"
  },
  {
    "input": "input : list = [0, -3, 2, 3, 1, 1]\noutput : list = [6, 5, 4, 4, 3, 0]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n([0, -3, 2, 3, 1, 1],-3)))))",
    "io_inp": [
      0,
      -3,
      2,
      3,
      1,
      1
    ],
    "io_out": [
      6,
      5,
      4,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [-1, 3, -5, -3]\noutput : list = [-3, 9, -15, -9]",
    "output": "generated_output : list = mul_n([-1, 3, -5, -3],3)",
    "io_inp": [
      -1,
      3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      9,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, -4, -5]\noutput : list = [22, 17, -13]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_des([2, -4, -5]),-1),5)),3)",
    "io_inp": [
      2,
      -4,
      -5
    ],
    "io_out": [
      22,
      17,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_des(input),-1),5)),3)"
  },
  {
    "input": "input : list = [4, -1, 3, 3, -4, 2]\noutput : list = [112, 64, 16, 0, 0, -16]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(sort_asc([4, -1, 3, 3, -4, 2]),3),-2),-2),-4)",
    "io_inp": [
      4,
      -1,
      3,
      3,
      -4,
      2
    ],
    "io_out": [
      112,
      64,
      16,
      0,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(sort_asc(input),3),-2),-2),-4)"
  },
  {
    "input": "input : list = [-2, 2, 3, 1, -1, 0]\noutput : list = [3, 4, 5, 6, 7, 8]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(add_n([-2, 2, 3, 1, -1, 0],3),1)),2),-1)",
    "io_inp": [
      -2,
      2,
      3,
      1,
      -1,
      0
    ],
    "io_out": [
      3,
      4,
      5,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(add_n(input,3),1)),2),-1)"
  },
  {
    "input": "input : list = [4, -2, 0, 3, 1, 1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = mul_n(drop([4, -2, 0, 3, 1, 1],4),-2)",
    "io_inp": [
      4,
      -2,
      0,
      3,
      1,
      1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,4),-2)"
  },
  {
    "input": "input : list = [1, -2, -1, -1]\noutput : list = [1, 2, 2, 4]",
    "output": "generated_output : list = take(take(sort_asc(sub_n([1, -2, -1, -1],-3)),4),9)",
    "io_inp": [
      1,
      -2,
      -1,
      -1
    ],
    "io_out": [
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sub_n(input,-3)),4),9)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse([-4, 1])",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 5, 3]\noutput : list = [-3, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse([2, -3, 5, 3]))",
    "io_inp": [
      2,
      -3,
      5,
      3
    ],
    "io_out": [
      -3,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-4, 2, 0, 0, 3]\noutput : list = [-1, 0, 2, 2, 6]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(add_n([-4, 2, 0, 0, 3],-2)),-1)),24)",
    "io_inp": [
      -4,
      2,
      0,
      0,
      3
    ],
    "io_out": [
      -1,
      0,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(add_n(input,-2)),-1)),24)"
  },
  {
    "input": "input : list = [4, -4, 4]\noutput : list = [4, 4, -4]",
    "output": "generated_output : list = sort_des([4, -4, 4])",
    "io_inp": [
      4,
      -4,
      4
    ],
    "io_out": [
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -1, -2, 2]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = add_n(reverse(sort_des(drop(sub_n([5, -1, -2, 2],-5),1))),-3)",
    "io_inp": [
      5,
      -1,
      -2,
      2
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(drop(sub_n(input,-5),1))),-3)"
  },
  {
    "input": "input : list = [-3, 3, -5, -5, 4]\noutput : list = [-5, 25]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(take([-3, 3, -5, -5, 4],2),-4),27),2),5)",
    "io_inp": [
      -3,
      3,
      -5,
      -5,
      4
    ],
    "io_out": [
      -5,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(take(input,2),-4),27),2),5)"
  },
  {
    "input": "input : list = [-1, 2, -1, 2]\noutput : list = [2, 5, 2, 5]",
    "output": "generated_output : list = sub_n([-1, 2, -1, 2],-3)",
    "io_inp": [
      -1,
      2,
      -1,
      2
    ],
    "io_out": [
      2,
      5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = take(sub_n(take(reverse([1, 0]),12),4),21)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(input),12),4),21)"
  },
  {
    "input": "input : list = [5, 2, 5, 5]\noutput : list = [5, 5, 2, 5]",
    "output": "generated_output : list = reverse([5, 2, 5, 5])",
    "io_inp": [
      5,
      2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, 4, -3]\noutput : list = [3, 5, 10, 10]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(sub_n([4, -1, 4, -3],-4)),2),-4))",
    "io_inp": [
      4,
      -1,
      4,
      -3
    ],
    "io_out": [
      3,
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(sub_n(input,-4)),2),-4))"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-6, -4, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(sort_des([4, -2, -4]),2),2)),-2)",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(sort_des(input),2),2)),-2)"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_des(mul_n(take([0, -4, -4],1),5)),36)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(input,1),5)),36)"
  },
  {
    "input": "input : list = [4, -5, 2, 2, 4, 1]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(drop(add_n([4, -5, 2, 2, 4, 1],3),5),1),4))",
    "io_inp": [
      4,
      -5,
      2,
      2,
      4,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(drop(add_n(input,3),5),1),4))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n([-4, -4],-5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [0, 30, 45]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n([0, 1, -2],2),3)),5)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      0,
      30,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(input,2),3)),5)"
  },
  {
    "input": "input : list = [0, -5, -2, 5, 4, 2]\noutput : list = [2, 1, -1, -3, -5, -8]",
    "output": "generated_output : list = take(reverse(sort_asc(take(add_n([0, -5, -2, 5, 4, 2],-3),9))),34)",
    "io_inp": [
      0,
      -5,
      -2,
      5,
      4,
      2
    ],
    "io_out": [
      2,
      1,
      -1,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(add_n(input,-3),9))),34)"
  },
  {
    "input": "input : list = [4, -3, 1, 1]\noutput : list = [-15, 6, -6, -6]",
    "output": "generated_output : list = add_n(sub_n(mul_n([4, -3, 1, 1],-3),2),-1)",
    "io_inp": [
      4,
      -3,
      1,
      1
    ],
    "io_out": [
      -15,
      6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,-3),2),-1)"
  },
  {
    "input": "input : list = [4, -4, 4, -1, -3, 3]\noutput : list = [-1, -1, 0, 4, 6, 7]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des([4, -4, 4, -1, -3, 3]),-1),2)),-1)",
    "io_inp": [
      4,
      -4,
      4,
      -1,
      -3,
      3
    ],
    "io_out": [
      -1,
      -1,
      0,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_des(input),-1),2)),-1)"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(drop([-3, 1, -3],1),-3)",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [1, 2, -1]\noutput : list = [-1, 2, 1]",
    "output": "generated_output : list = reverse([1, 2, -1])",
    "io_inp": [
      1,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [2, 9, 4]",
    "output": "generated_output : list = add_n([-3, 4, -1],5)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      2,
      9,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, -1, 5, -1, -3]\noutput : list = [-6, -4, 2, -4, 2]",
    "output": "generated_output : list = reverse(reverse(reverse(add_n([5, -1, 5, -1, -3],-3))))",
    "io_inp": [
      5,
      -1,
      5,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -4,
      2,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(add_n(input,-3))))"
  },
  {
    "input": "input : list = [1, -1, 4, -2, -5]\noutput : list = [-2, 1, 2, 4, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([1, -1, 4, -2, -5]),-3))",
    "io_inp": [
      1,
      -1,
      4,
      -2,
      -5
    ],
    "io_out": [
      -2,
      1,
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [0, 2, -4, 1]\noutput : list = [1, -4, 2, 0]",
    "output": "generated_output : list = reverse([0, 2, -4, 1])",
    "io_inp": [
      0,
      2,
      -4,
      1
    ],
    "io_out": [
      1,
      -4,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(take([0, 1, -2],1),2),11)),-5)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(take(input,1),2),11)),-5)"
  },
  {
    "input": "input : list = [-4, -3, -5]\noutput : list = [25, 20, 15]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(reverse([-4, -3, -5])),-5),18))",
    "io_inp": [
      -4,
      -3,
      -5
    ],
    "io_out": [
      25,
      20,
      15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(reverse(input)),-5),18))"
  },
  {
    "input": "input : list = [-2, 2, 4, 0, 4, 2]\noutput : list = [19, 19, 11, 11, 3, -5]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(mul_n([-2, 2, 4, 0, 4, 2],4)),-2),5))",
    "io_inp": [
      -2,
      2,
      4,
      0,
      4,
      2
    ],
    "io_out": [
      19,
      19,
      11,
      11,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(mul_n(input,4)),-2),5))"
  },
  {
    "input": "input : list = [3, 3, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = drop([3, 3, 1, 0],2)",
    "io_inp": [
      3,
      3,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-11]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(drop(mul_n([-4, 1],3),1),-4),1))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(drop(mul_n(input,3),1),-4),1))"
  },
  {
    "input": "input : list = [0, 0, 5, -3, 2]\noutput : list = [-8, -3, 0]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(drop([0, 0, 5, -3, 2],2))),34),5)",
    "io_inp": [
      0,
      0,
      5,
      -3,
      2
    ],
    "io_out": [
      -8,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(drop(input,2))),34),5)"
  },
  {
    "input": "input : list = [0, 4, 1, 1, -5]\noutput : list = [-4, 0, -3, -3, -9]",
    "output": "generated_output : list = add_n([0, 4, 1, 1, -5],-4)",
    "io_inp": [
      0,
      4,
      1,
      1,
      -5
    ],
    "io_out": [
      -4,
      0,
      -3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [-16]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(take([-2, -2, 3],1),2),4)))",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(take(input,1),2),4)))"
  },
  {
    "input": "input : list = [3, -3, 2, 5]\noutput : list = [-7, -2, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc([3, -3, 2, 5]),-4)",
    "io_inp": [
      3,
      -3,
      2,
      5
    ],
    "io_out": [
      -7,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [3, -4, -4, -2]\noutput : list = [-8, -1]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_asc(take([3, -4, -4, -2],2)),3),-3),2)",
    "io_inp": [
      3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_asc(take(input,2)),3),-3),2)"
  },
  {
    "input": "input : list = [3, -1, 1, 2, -4]\noutput : list = [4, 3, 2, 0, -3]",
    "output": "generated_output : list = sub_n(sort_des([3, -1, 1, 2, -4]),-1)",
    "io_inp": [
      3,
      -1,
      1,
      2,
      -4
    ],
    "io_out": [
      4,
      3,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-1, 4, 1, -2, -2, 4]\noutput : list = [9, 9, 6, 0, -9, -9]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(mul_n([-1, 4, 1, -2, -2, 4],-3)),2),3),4)",
    "io_inp": [
      -1,
      4,
      1,
      -2,
      -2,
      4
    ],
    "io_out": [
      9,
      9,
      6,
      0,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(mul_n(input,-3)),2),3),4)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-10, 40]",
    "output": "generated_output : list = mul_n(sub_n([5, -5],3),-5)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -10,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-5)"
  },
  {
    "input": "input : list = [0, 5, -2, -5, 1]\noutput : list = [-52, -16, 8, 20, 68]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(mul_n([0, 5, -2, -5, 1],3),2)),4))",
    "io_inp": [
      0,
      5,
      -2,
      -5,
      1
    ],
    "io_out": [
      -52,
      -16,
      8,
      20,
      68
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(mul_n(input,3),2)),4))"
  },
  {
    "input": "input : list = [-2, 2, -3]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(take(sort_asc([-2, 2, -3]),12),13)))",
    "io_inp": [
      -2,
      2,
      -3
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(sort_asc(input),12),13)))"
  },
  {
    "input": "input : list = [0, -3, -1, 3]\noutput : list = [-3, -1, 0, 3]",
    "output": "generated_output : list = take(sort_asc([0, -3, -1, 3]),8)",
    "io_inp": [
      0,
      -3,
      -1,
      3
    ],
    "io_out": [
      -3,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),8)"
  },
  {
    "input": "input : list = [-2, 3, 3, -2, 4]\noutput : list = [4, -2]",
    "output": "generated_output : list = take(take(take(reverse([-2, 3, 3, -2, 4]),23),2),18)",
    "io_inp": [
      -2,
      3,
      3,
      -2,
      4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(take(take(reverse(input),23),2),18)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-5, -1]",
    "output": "generated_output : list = add_n([-2, 2],-3)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, -2, 2, -2]\noutput : list = [3, 2, -2, -2]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(reverse([3, -2, 2, -2])))),19)",
    "io_inp": [
      3,
      -2,
      2,
      -2
    ],
    "io_out": [
      3,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(reverse(input)))),19)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-10, -9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(reverse(sort_asc([-4, -3])),-2)),4)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -10,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(reverse(sort_asc(input)),-2)),4)"
  },
  {
    "input": "input : list = [4, -3, -1, 1]\noutput : list = [-15, -9, -3, 6]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(add_n([4, -3, -1, 1],-2)))),3)",
    "io_inp": [
      4,
      -3,
      -1,
      1
    ],
    "io_out": [
      -15,
      -9,
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(add_n(input,-2)))),3)"
  },
  {
    "input": "input : list = [-5, -2, 0, 2, -3, 4]\noutput : list = [-13, -7, -4, 2, 8, 14]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(mul_n([-5, -2, 0, 2, -3, 4],3),23))),-2)",
    "io_inp": [
      -5,
      -2,
      0,
      2,
      -3,
      4
    ],
    "io_out": [
      -13,
      -7,
      -4,
      2,
      8,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(mul_n(input,3),23))),-2)"
  },
  {
    "input": "input : list = [0, 2, -3, -5]\noutput : list = [-8, -6, -3, -1]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(sub_n([0, 2, -3, -5],4),-4)),-3),28)",
    "io_inp": [
      0,
      2,
      -3,
      -5
    ],
    "io_out": [
      -8,
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(sub_n(input,4),-4)),-3),28)"
  },
  {
    "input": "input : list = [4, -3, -2]\noutput : list = [9, 2, 3]",
    "output": "generated_output : list = sub_n([4, -3, -2],-5)",
    "io_inp": [
      4,
      -3,
      -2
    ],
    "io_out": [
      9,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [1, -2, 7]",
    "output": "generated_output : list = sub_n(sub_n([-1, -4, 5],1),-3)",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      1,
      -2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-3)"
  },
  {
    "input": "input : list = [-2, 0, 5, 3]\noutput : list = [0, 5, 3]",
    "output": "generated_output : list = drop([-2, 0, 5, 3],1)",
    "io_inp": [
      -2,
      0,
      5,
      3
    ],
    "io_out": [
      0,
      5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sort_asc([5, 3, -1]),4),-1),-2),31)",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sort_asc(input),4),-1),-2),31)"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [-36, -33, -24]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc([0, -4, -3]),4)),4),3)",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      -36,
      -33,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(sort_asc(input),4)),4),3)"
  },
  {
    "input": "input : list = [1, -3, 0, -1, -3]\noutput : list = [6, 1, -4, -14, -14]",
    "output": "generated_output : list = take(add_n(sort_des(take(mul_n([1, -3, 0, -1, -3],5),14)),1),12)",
    "io_inp": [
      1,
      -3,
      0,
      -1,
      -3
    ],
    "io_out": [
      6,
      1,
      -4,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(take(mul_n(input,5),14)),1),12)"
  },
  {
    "input": "input : list = [1, -4, -5, 5, -3]\noutput : list = [-5, -4, -3, 1, 5]",
    "output": "generated_output : list = sort_asc([1, -4, -5, 5, -3])",
    "io_inp": [
      1,
      -4,
      -5,
      5,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, 3, -5, 1, 3]\noutput : list = [8, 6, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(drop([1, 4, 3, -5, 1, 3],3))),-5))",
    "io_inp": [
      1,
      4,
      3,
      -5,
      1,
      3
    ],
    "io_out": [
      8,
      6,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_asc(drop(input,3))),-5))"
  },
  {
    "input": "input : list = [-4, 4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(sort_des([-4, 4, 3]),2))),13)",
    "io_inp": [
      -4,
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(sort_des(input),2))),13)"
  },
  {
    "input": "input : list = [2, -5, -1, 5, 3]\noutput : list = [-13, -9, -6, -5, -3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n([2, -5, -1, 5, 3],-3))),5)",
    "io_inp": [
      2,
      -5,
      -1,
      5,
      3
    ],
    "io_out": [
      -13,
      -9,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(input,-3))),5)"
  },
  {
    "input": "input : list = [0, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([0, 4, -4],1)",
    "io_inp": [
      0,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [3, 3]",
    "output": "generated_output : list = sub_n(sort_des([4, 4]),1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-4, 1, -2, 0, -2, 1]\noutput : list = [4, 3, 1, 1, -1]",
    "output": "generated_output : list = sort_des(take(add_n([-4, 1, -2, 0, -2, 1],3),5))",
    "io_inp": [
      -4,
      1,
      -2,
      0,
      -2,
      1
    ],
    "io_out": [
      4,
      3,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,3),5))"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [8, 5, 1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([5, -2, 2])),3)",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [2, -3, 4, 5, -4]\noutput : list = [21, 16, -9, -19, -24]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([2, -3, 4, 5, -4]),-5),1)",
    "io_inp": [
      2,
      -3,
      4,
      5,
      -4
    ],
    "io_out": [
      21,
      16,
      -9,
      -19,
      -24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),-5),1)"
  },
  {
    "input": "input : list = [-4, -5, 3, 3, -3]\noutput : list = [3, 3, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(sort_asc([-4, -5, 3, 3, -3])))))",
    "io_inp": [
      -4,
      -5,
      3,
      3,
      -3
    ],
    "io_out": [
      3,
      3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 5, -1, -4]\noutput : list = [-14, -2, 22, -14]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(reverse([-4, 5, -1, -4]),4),1),2),26)",
    "io_inp": [
      -4,
      5,
      -1,
      -4
    ],
    "io_out": [
      -14,
      -2,
      22,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(reverse(input),4),1),2),26)"
  },
  {
    "input": "input : list = [0, 4, 4, -1, -1, -4]\noutput : list = [4, 4, 0, -1, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des([0, 4, 4, -1, -1, -4])))",
    "io_inp": [
      0,
      4,
      4,
      -1,
      -1,
      -4
    ],
    "io_out": [
      4,
      4,
      0,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [-5, 0, 2, -5, 1, -2]\noutput : list = [1, 0, -1, -3, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([-5, 0, 2, -5, 1, -2])),-1)",
    "io_inp": [
      -5,
      0,
      2,
      -5,
      1,
      -2
    ],
    "io_out": [
      1,
      0,
      -1,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),-1)"
  },
  {
    "input": "input : list = [2, 1, 1, -1, 4]\noutput : list = [3, 5, 5, 6, 8]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(add_n([2, 1, 1, -1, 4],4),22))))",
    "io_inp": [
      2,
      1,
      1,
      -1,
      4
    ],
    "io_out": [
      3,
      5,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(add_n(input,4),22))))"
  },
  {
    "input": "input : list = [-4, 2, 1, -2, 5, 0]\noutput : list = [6, 3, 2, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(take(add_n(drop([-4, 2, 1, -2, 5, 0],1),3),24),-2))",
    "io_inp": [
      -4,
      2,
      1,
      -2,
      5,
      0
    ],
    "io_out": [
      6,
      3,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(add_n(drop(input,1),3),24),-2))"
  },
  {
    "input": "input : list = [1, -3, 3]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = sub_n(sort_des([1, -3, 3]),1)",
    "io_inp": [
      1,
      -3,
      3
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [1, 4, 5, -4, -4]\noutput : list = [-8, -8, -3, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n([1, 4, 5, -4, -4],4))",
    "io_inp": [
      1,
      4,
      5,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [5, 1, 3, 4]\noutput : list = [15, 5, 0, -5]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc([5, 1, 3, 4]),4),-5))",
    "io_inp": [
      5,
      1,
      3,
      4
    ],
    "io_out": [
      15,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(input),4),-5))"
  },
  {
    "input": "input : list = [4, 0, 5, -1]\noutput : list = [7, 6, 2, 1]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_asc([4, 0, 5, -1]),4),5),-5),-1)",
    "io_inp": [
      4,
      0,
      5,
      -1
    ],
    "io_out": [
      7,
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_asc(input),4),5),-5),-1)"
  },
  {
    "input": "input : list = [1, -3, 2, 5, 3]\noutput : list = [3, -1, 4, 7, 5]",
    "output": "generated_output : list = sub_n([1, -3, 2, 5, 3],-2)",
    "io_inp": [
      1,
      -3,
      2,
      5,
      3
    ],
    "io_out": [
      3,
      -1,
      4,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -1, 2, 1, 1, 3]\noutput : list = [4, 2, 0, 0, -4, -8]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n([-3, -1, 2, 1, 1, 3],1),2),23))",
    "io_inp": [
      -3,
      -1,
      2,
      1,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      0,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(input,1),2),23))"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [6, 2, -1]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(sort_asc([0, -3, 4]),-1))),3)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      6,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(sort_asc(input),-1))),3)"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [0, 3, 7]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([-5, 2, -2],4)),-1)",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      0,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,4)),-1)"
  },
  {
    "input": "input : list = [-2, 3, -5, -5, -3, 0]\noutput : list = [-8, -8, -6, -5, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(sort_des([-2, 3, -5, -5, -3, 0]))),3))",
    "io_inp": [
      -2,
      3,
      -5,
      -5,
      -3,
      0
    ],
    "io_out": [
      -8,
      -8,
      -6,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(sort_des(input))),3))"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [1, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(add_n([3, -4, -4],1),1),-5),-3))",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(add_n(input,1),1),-5),-3))"
  },
  {
    "input": "input : list = [3, -3, -4, -1]\noutput : list = [-7, -6, -4, 0]",
    "output": "generated_output : list = reverse(sort_des(sub_n([3, -3, -4, -1],3)))",
    "io_inp": [
      3,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,3)))"
  },
  {
    "input": "input : list = [0, 5, 0, -2]\noutput : list = [4, 9, 4, 2]",
    "output": "generated_output : list = add_n([0, 5, 0, -2],4)",
    "io_inp": [
      0,
      5,
      0,
      -2
    ],
    "io_out": [
      4,
      9,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, -4, -1, 1, 2, 3]\noutput : list = [-1, -4, -1, 1]",
    "output": "generated_output : list = mul_n(take([-1, -4, -1, 1, 2, 3],4),1)",
    "io_inp": [
      -1,
      -4,
      -1,
      1,
      2,
      3
    ],
    "io_out": [
      -1,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),1)"
  },
  {
    "input": "input : list = [3, -5, 5, -1]\noutput : list = [2, 0, -4, -8]",
    "output": "generated_output : list = sort_des(sub_n(reverse([3, -5, 5, -1]),3))",
    "io_inp": [
      3,
      -5,
      5,
      -1
    ],
    "io_out": [
      2,
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),3))"
  },
  {
    "input": "input : list = [5, -1, -5, -3]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(drop([5, -1, -5, -3],2),3))),1)",
    "io_inp": [
      5,
      -1,
      -5,
      -3
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(drop(input,2),3))),1)"
  },
  {
    "input": "input : list = [-2, 2, -3]\noutput : list = [1, -3, -19]",
    "output": "generated_output : list = mul_n(add_n(sort_des(mul_n(sub_n([-2, 2, -3],-2),-4)),-3),1)",
    "io_inp": [
      -2,
      2,
      -3
    ],
    "io_out": [
      1,
      -3,
      -19
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(mul_n(sub_n(input,-2),-4)),-3),1)"
  },
  {
    "input": "input : list = [-4, 1, -3, 1, 1]\noutput : list = [4, 9, 5, 9, 9]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(sub_n([-4, 1, -3, 1, 1],-5),-2),-1),2),2)",
    "io_inp": [
      -4,
      1,
      -3,
      1,
      1
    ],
    "io_out": [
      4,
      9,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(sub_n(input,-5),-2),-1),2),2)"
  },
  {
    "input": "input : list = [-5, -4, 4, 1]\noutput : list = [-4, 4, 1]",
    "output": "generated_output : list = drop([-5, -4, 4, 1],1)",
    "io_inp": [
      -5,
      -4,
      4,
      1
    ],
    "io_out": [
      -4,
      4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -3, 0, 3]\noutput : list = [-15, -9, -3, 0, 9]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(mul_n([-1, -5, -3, 0, 3],3)),1),18))",
    "io_inp": [
      -1,
      -5,
      -3,
      0,
      3
    ],
    "io_out": [
      -15,
      -9,
      -3,
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(mul_n(input,3)),1),18))"
  },
  {
    "input": "input : list = [-5, -4, 1]\noutput : list = [17]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(take([-5, -4, 1],1)),-5),-5),3)",
    "io_inp": [
      -5,
      -4,
      1
    ],
    "io_out": [
      17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(take(input,1)),-5),-5),3)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sub_n([-1, -4],-4),-3),-5)),29)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sub_n(input,-4),-3),-5)),29)"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(reverse(sub_n(sub_n([0, -1, 3],-1),1))),-4)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sub_n(sub_n(input,-1),1))),-4)"
  },
  {
    "input": "input : list = [-4, -3, 1, 2, -4, 1]\noutput : list = [-25, -20, 5]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(drop([-4, -3, 1, 2, -4, 1],3))),3),-5)",
    "io_inp": [
      -4,
      -3,
      1,
      2,
      -4,
      1
    ],
    "io_out": [
      -25,
      -20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(drop(input,3))),3),-5)"
  },
  {
    "input": "input : list = [2, 1, 2, 2, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(sort_des([2, 1, 2, 2, -2]),1))",
    "io_inp": [
      2,
      1,
      2,
      2,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),1))"
  },
  {
    "input": "input : list = [2, -3, -1, 3, 0]\noutput : list = [11, 3, -1, -9, -13]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(sort_des([2, -3, -1, 3, 0]),11)),-4),-1)",
    "io_inp": [
      2,
      -3,
      -1,
      3,
      0
    ],
    "io_out": [
      11,
      3,
      -1,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(sort_des(input),11)),-4),-1)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse([1, -4])",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-25, -10]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(sub_n([2, 5],-1)),-1)),-5)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(sub_n(input,-1)),-1)),-5)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [15, -12]",
    "output": "generated_output : list = take(mul_n([5, -4],3),4)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      15,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,3),4)"
  },
  {
    "input": "input : list = [-1, -4, 0, -5]\noutput : list = [-8, -3, -7, -4]",
    "output": "generated_output : list = reverse(add_n([-1, -4, 0, -5],-3))",
    "io_inp": [
      -1,
      -4,
      0,
      -5
    ],
    "io_out": [
      -8,
      -3,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [2, 5, -3]\noutput : list = [9, -6, -15]",
    "output": "generated_output : list = mul_n(sort_asc(take(sort_asc(reverse([2, 5, -3])),10)),-3)",
    "io_inp": [
      2,
      5,
      -3
    ],
    "io_out": [
      9,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sort_asc(reverse(input)),10)),-3)"
  },
  {
    "input": "input : list = [1, -5, -2, 1, -1]\noutput : list = [-5, -2, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(reverse([1, -5, -2, 1, -1]))))",
    "io_inp": [
      1,
      -5,
      -2,
      1,
      -1
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [5, 10]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(sort_asc([-3, -2]),1)),22),-5)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(sort_asc(input),1)),22),-5)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(add_n([-2, -3],2))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [1, 1, -1]\noutput : list = [1, 1, -1]",
    "output": "generated_output : list = sort_des(mul_n([1, 1, -1],1))",
    "io_inp": [
      1,
      1,
      -1
    ],
    "io_out": [
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [-16, -4, 5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([-2, 1, 5],-3)),-1)",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      -16,
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,-3)),-1)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-18, -9]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([1, 2]),-3),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),-3),3)"
  },
  {
    "input": "input : list = [-1, 5, -1, 3, -1]\noutput : list = [-30, -60]",
    "output": "generated_output : list = mul_n(add_n(add_n(take([-1, 5, -1, 3, -1],2),2),5),-5)",
    "io_inp": [
      -1,
      5,
      -1,
      3,
      -1
    ],
    "io_out": [
      -30,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(take(input,2),2),5),-5)"
  },
  {
    "input": "input : list = [-4, 5, -3, 5, -4]\noutput : list = [-5, -5, -4, 4, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(sort_asc([-4, 5, -3, 5, -4]),2)),-1))",
    "io_inp": [
      -4,
      5,
      -3,
      5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(sort_asc(input),2)),-1))"
  },
  {
    "input": "input : list = [-3, 2, -4, 3, 5, -4]\noutput : list = [-40, 5, -5, -40, -10, -35]",
    "output": "generated_output : list = reverse(mul_n(add_n([-3, 2, -4, 3, 5, -4],-4),5))",
    "io_inp": [
      -3,
      2,
      -4,
      3,
      5,
      -4
    ],
    "io_out": [
      -40,
      5,
      -5,
      -40,
      -10,
      -35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-4),5))"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sort_asc(sub_n([1, 3, -1],3))",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(add_n([-4, 0],-1),-3))),2)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(add_n(input,-1),-3))),2)"
  },
  {
    "input": "input : list = [-1, 2, 5, -3, -3, 0]\noutput : list = [2, -4, -10, 6, 6, 0]",
    "output": "generated_output : list = mul_n([-1, 2, 5, -3, -3, 0],-2)",
    "io_inp": [
      -1,
      2,
      5,
      -3,
      -3,
      0
    ],
    "io_out": [
      2,
      -4,
      -10,
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc([4, -4]),5)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [2, 5, -2, 5]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(reverse(take([2, 5, -2, 5],1)),-1)",
    "io_inp": [
      2,
      5,
      -2,
      5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,1)),-1)"
  },
  {
    "input": "input : list = [-2, -4, -1, 5, 1]\noutput : list = [16, 1, -29, -9]",
    "output": "generated_output : list = add_n(mul_n(drop([-2, -4, -1, 5, 1],1),-5),-4)",
    "io_inp": [
      -2,
      -4,
      -1,
      5,
      1
    ],
    "io_out": [
      16,
      1,
      -29,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(input,1),-5),-4)"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [-20, 0, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(reverse([5, 0, -3]),1)),1),-4)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      -20,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(reverse(input),1)),1),-4)"
  },
  {
    "input": "input : list = [1, -1, 0]\noutput : list = [14, 22, 18]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(add_n([1, -1, 0],-1),4),-4),5),2)",
    "io_inp": [
      1,
      -1,
      0
    ],
    "io_out": [
      14,
      22,
      18
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(add_n(input,-1),4),-4),5),2)"
  },
  {
    "input": "input : list = [4, 2, -1, 3]\noutput : list = [7, 6, 5, 2]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_des([4, 2, -1, 3]),12)),-3))",
    "io_inp": [
      4,
      2,
      -1,
      3
    ],
    "io_out": [
      7,
      6,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_des(input),12)),-3))"
  },
  {
    "input": "input : list = [-4, 2, 3, 4, 3]\noutput : list = [-1, 5, 6, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(sort_asc([-4, 2, 3, 4, 3])),26),-3))",
    "io_inp": [
      -4,
      2,
      3,
      4,
      3
    ],
    "io_out": [
      -1,
      5,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(sort_asc(input)),26),-3))"
  },
  {
    "input": "input : list = [1, -3, -2, -1, -5]\noutput : list = [-5, -3, -2, -1, 1]",
    "output": "generated_output : list = sort_asc([1, -3, -2, -1, -5])",
    "io_inp": [
      1,
      -3,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-9, -15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(add_n([0, 2],-5)))),3)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(add_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [-2, 2, 2, 0]\noutput : list = [8, 0, -8, -8]",
    "output": "generated_output : list = sort_des(mul_n([-2, 2, 2, 0],-4))",
    "io_inp": [
      -2,
      2,
      2,
      0
    ],
    "io_out": [
      8,
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 5, 1, -5, -3]\noutput : list = [-7, -5, -1, 3]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(drop([-2, 5, 1, -5, -3],1),2))),5)",
    "io_inp": [
      -2,
      5,
      1,
      -5,
      -3
    ],
    "io_out": [
      -7,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(drop(input,1),2))),5)"
  },
  {
    "input": "input : list = [0, 5, -4]\noutput : list = [2]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(take([0, 5, -4],1),1)),3))",
    "io_inp": [
      0,
      5,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(take(input,1),1)),3))"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [10, 22, 18]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(mul_n([2, 5, 4],4),2),-4),5),-5)",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      10,
      22,
      18
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(mul_n(input,4),2),-4),5),-5)"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [4, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_des(reverse([-2, 4, -3])),25)))",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_des(reverse(input)),25)))"
  },
  {
    "input": "input : list = [-5, -1, -5, 5, 5]\noutput : list = [-20, 20, 20]",
    "output": "generated_output : list = take(mul_n(drop([-5, -1, -5, 5, 5],2),4),20)",
    "io_inp": [
      -5,
      -1,
      -5,
      5,
      5
    ],
    "io_out": [
      -20,
      20,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,2),4),20)"
  },
  {
    "input": "input : list = [-4, -4, -3, -5]\noutput : list = [3, 2, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(add_n([-4, -4, -3, -5],-2),3)),-5))",
    "io_inp": [
      -4,
      -4,
      -3,
      -5
    ],
    "io_out": [
      3,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(add_n(input,-2),3)),-5))"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [-3, -5, -15]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(mul_n([5, 0, -1],-2)),4),9),-1)",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      -3,
      -5,
      -15
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(mul_n(input,-2)),4),9),-1)"
  },
  {
    "input": "input : list = [2, -3, -2, 2, 0]\noutput : list = [2, 0]",
    "output": "generated_output : list = drop([2, -3, -2, 2, 0],3)",
    "io_inp": [
      2,
      -3,
      -2,
      2,
      0
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, 2, -1, -5, -1]\noutput : list = [-4, -3, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(reverse([-4, 2, -1, -5, -1])),1)))",
    "io_inp": [
      -4,
      2,
      -1,
      -5,
      -1
    ],
    "io_out": [
      -4,
      -3,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(reverse(input)),1)))"
  },
  {
    "input": "input : list = [-4, -4, -3, -3, 4]\noutput : list = [2, 2, 3, 3, 10]",
    "output": "generated_output : list = add_n(add_n([-4, -4, -3, -3, 4],5),1)",
    "io_inp": [
      -4,
      -4,
      -3,
      -3,
      4
    ],
    "io_out": [
      2,
      2,
      3,
      3,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,5),1)"
  },
  {
    "input": "input : list = [3, 1, 5, 1, -4]\noutput : list = [8, -2, -2, -6, -10]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take(sort_asc([3, 1, 5, 1, -4]),16)),-1),2)",
    "io_inp": [
      3,
      1,
      5,
      1,
      -4
    ],
    "io_out": [
      8,
      -2,
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(sort_asc(input),16)),-1),2)"
  },
  {
    "input": "input : list = [5, -5, 3, 5, -5, 0]\noutput : list = [-2, -2, -4, -7, -12, -12]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(sort_asc([5, -5, 3, 5, -5, 0])),4),3))",
    "io_inp": [
      5,
      -5,
      3,
      5,
      -5,
      0
    ],
    "io_out": [
      -2,
      -2,
      -4,
      -7,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(sort_asc(input)),4),3))"
  },
  {
    "input": "input : list = [0, -2, -3, -5]\noutput : list = [-5, -3, -2, 0]",
    "output": "generated_output : list = sort_asc([0, -2, -3, -5])",
    "io_inp": [
      0,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, 4, -3, 2, -3]\noutput : list = [-2, 2, 8, -6, 4, -6]",
    "output": "generated_output : list = mul_n(add_n(add_n([-1, 1, 4, -3, 2, -3],-4),4),2)",
    "io_inp": [
      -1,
      1,
      4,
      -3,
      2,
      -3
    ],
    "io_out": [
      -2,
      2,
      8,
      -6,
      4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-4),4),2)"
  },
  {
    "input": "input : list = [2, 5, 2, 2, 5, 4]\noutput : list = [1, 1, 2, 4, 4, 4]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(sub_n([2, 5, 2, 2, 5, 4],2),-4),-1)),1)",
    "io_inp": [
      2,
      5,
      2,
      2,
      5,
      4
    ],
    "io_out": [
      1,
      1,
      2,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(sub_n(input,2),-4),-1)),1)"
  },
  {
    "input": "input : list = [-2, 4, 3, -4, -3, 1]\noutput : list = [-4, -3, -2, 1, 3, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, 3, -4, -3, 1])",
    "io_inp": [
      -2,
      4,
      3,
      -4,
      -3,
      1
    ],
    "io_out": [
      -4,
      -3,
      -2,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 0, 0, -2]\noutput : list = [1, -2, -2, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_asc([3, 0, 0, -2])),-2)))",
    "io_inp": [
      3,
      0,
      0,
      -2
    ],
    "io_out": [
      1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-3, 0, -2, 0, 0]\noutput : list = [-24, -21, -15, -15, -15]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(sub_n([-3, 0, -2, 0, 0],5))),3),49)",
    "io_inp": [
      -3,
      0,
      -2,
      0,
      0
    ],
    "io_out": [
      -24,
      -21,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(sub_n(input,5))),3),49)"
  },
  {
    "input": "input : list = [1, -3, 0, 0, -4]\noutput : list = [-3, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(take([1, -3, 0, 0, -4],3))))",
    "io_inp": [
      1,
      -3,
      0,
      0,
      -4
    ],
    "io_out": [
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(take(input,3))))"
  },
  {
    "input": "input : list = [-5, 5, 4, -4, 3]\noutput : list = [9, 8, 7, 0, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n([-5, 5, 4, -4, 3],-5),7)),1)",
    "io_inp": [
      -5,
      5,
      4,
      -4,
      3
    ],
    "io_out": [
      9,
      8,
      7,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(input,-5),7)),1)"
  },
  {
    "input": "input : list = [-5, -2, 1, 4, 3, 4]\noutput : list = [-9, -6, -3, 0]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(take([-5, -2, 1, 4, 3, 4],4)),32),-4))",
    "io_inp": [
      -5,
      -2,
      1,
      4,
      3,
      4
    ],
    "io_out": [
      -9,
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(take(input,4)),32),-4))"
  },
  {
    "input": "input : list = [1, -2, 0, 5, 2, 5]\noutput : list = [5, 2, 5]",
    "output": "generated_output : list = drop([1, -2, 0, 5, 2, 5],3)",
    "io_inp": [
      1,
      -2,
      0,
      5,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, 4, 2, 1]\noutput : list = [-3, 1, 2, 4]",
    "output": "generated_output : list = reverse(sort_des([-3, 4, 2, 1]))",
    "io_inp": [
      -3,
      4,
      2,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, 0, -3]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sub_n(drop([4, 0, -3],1),1)",
    "io_inp": [
      4,
      0,
      -3
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [-5, 3, 5, 3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = take(mul_n(drop(take(drop([-5, 3, 5, 3],1),7),1),-1),7)",
    "io_inp": [
      -5,
      3,
      5,
      3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(take(drop(input,1),7),1),-1),7)"
  },
  {
    "input": "input : list = [0, 4, 5, 1, -3]\noutput : list = [-3, 0, 1, 4, 5]",
    "output": "generated_output : list = sort_asc([0, 4, 5, 1, -3])",
    "io_inp": [
      0,
      4,
      5,
      1,
      -3
    ],
    "io_out": [
      -3,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, -3, -1, 4]\noutput : list = [27, 24, 9, 6, 3, 3]",
    "output": "generated_output : list = mul_n(add_n(take(reverse(sort_asc([-3, -2, 5, -3, -1, 4])),26),4),3)",
    "io_inp": [
      -3,
      -2,
      5,
      -3,
      -1,
      4
    ],
    "io_out": [
      27,
      24,
      9,
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(reverse(sort_asc(input)),26),4),3)"
  },
  {
    "input": "input : list = [1, -3, -1, 4, 1, 0]\noutput : list = [11, 8, 8, 7, 6, 4]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(sub_n([1, -3, -1, 4, 1, 0],-5)),-2),45))",
    "io_inp": [
      1,
      -3,
      -1,
      4,
      1,
      0
    ],
    "io_out": [
      11,
      8,
      8,
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(sub_n(input,-5)),-2),45))"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(sub_n(take([-4, -5, 3],1),-3),5)",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),-3),5)"
  },
  {
    "input": "input : list = [-2, 4, -1, -4, -4]\noutput : list = [0, 0, 2, 3, 8]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(sort_des([-2, 4, -1, -4, -4]),-3),-1)),2)",
    "io_inp": [
      -2,
      4,
      -1,
      -4,
      -4
    ],
    "io_out": [
      0,
      0,
      2,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(sort_des(input),-3),-1)),2)"
  },
  {
    "input": "input : list = [5, 1, 5, -3, -3, 2]\noutput : list = [-35, -35, -17, -11, 13, 13]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_des([5, 1, 5, -3, -3, 2]),-2)),3),5)",
    "io_inp": [
      5,
      1,
      5,
      -3,
      -3,
      2
    ],
    "io_out": [
      -35,
      -35,
      -17,
      -11,
      13,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(sort_des(input),-2)),3),5)"
  },
  {
    "input": "input : list = [5, -1, 3, -2, -3, 2]\noutput : list = [-15, -10, -5, 10, 15, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(sort_asc([5, -1, 3, -2, -3, 2]))),5))",
    "io_inp": [
      5,
      -1,
      3,
      -2,
      -3,
      2
    ],
    "io_out": [
      -15,
      -10,
      -5,
      10,
      15,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [-15, 3, 15]",
    "output": "generated_output : list = mul_n([5, -1, -5],-3)",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      -15,
      3,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = sort_des([3, -1, 5])",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, 4, -4]\noutput : list = [51, -45, -45, -57]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(mul_n([4, 5, 4, -4],3)),-4)),3)",
    "io_inp": [
      4,
      5,
      4,
      -4
    ],
    "io_out": [
      51,
      -45,
      -45,
      -57
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(mul_n(input,3)),-4)),3)"
  },
  {
    "input": "input : list = [1, 1, 3, -3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = drop([1, 1, 3, -3, 5],3)",
    "io_inp": [
      1,
      1,
      3,
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, 5, -3, -3]\noutput : list = [-4, 5]",
    "output": "generated_output : list = take([-4, 5, -3, -3],2)",
    "io_inp": [
      -4,
      5,
      -3,
      -3
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -4, 0]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = sort_asc([0, -4, 0])",
    "io_inp": [
      0,
      -4,
      0
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, -3, 0]\noutput : list = [1, 3, 1, 4]",
    "output": "generated_output : list = sub_n(sub_n([-3, -1, -3, 0],-1),-3)",
    "io_inp": [
      -3,
      -1,
      -3,
      0
    ],
    "io_out": [
      1,
      3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),-3)"
  },
  {
    "input": "input : list = [3, 4, -5, 5, 4, 3]\noutput : list = [5, 4, 4, 3, 3, -5]",
    "output": "generated_output : list = sort_des([3, 4, -5, 5, 4, 3])",
    "io_inp": [
      3,
      4,
      -5,
      5,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 5, 4, -1, 0]\noutput : list = [-5, -4, -3, 1, 2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(reverse([-2, 5, 4, -1, 0])),-3)))",
    "io_inp": [
      -2,
      5,
      4,
      -1,
      0
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc([-3, 1])",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [8, 8, 8]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(sub_n([2, 2, 2],-4)),25)),2)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(sub_n(input,-4)),25)),2)"
  },
  {
    "input": "input : list = [-3, -4, 0, 1, 4, 2]\noutput : list = [-4, -3, 0, 1, 2, 4]",
    "output": "generated_output : list = take(sort_asc([-3, -4, 0, 1, 4, 2]),23)",
    "io_inp": [
      -3,
      -4,
      0,
      1,
      4,
      2
    ],
    "io_out": [
      -4,
      -3,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),23)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4]",
    "output": "generated_output : list = drop(reverse(mul_n([2, -4],-2)),1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(input,-2)),1)"
  },
  {
    "input": "input : list = [-3, 3, 3, 3, -3, 5]\noutput : list = [10, 8, 8, 8, 2, 2]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(sort_asc([-3, 3, 3, 3, -3, 5]),-5))),25)",
    "io_inp": [
      -3,
      3,
      3,
      3,
      -3,
      5
    ],
    "io_out": [
      10,
      8,
      8,
      8,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(sort_asc(input),-5))),25)"
  },
  {
    "input": "input : list = [-5, -3, 5, -1]\noutput : list = [-5, -3, -1, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_des([-5, -3, 5, -1])))))",
    "io_inp": [
      -5,
      -3,
      5,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, 2, -3, -3, -2, -3]\noutput : list = [-6, -5, -6, -6, -1]",
    "output": "generated_output : list = reverse(sub_n(drop(add_n(add_n([4, 2, -3, -3, -2, -3],1),-5),1),-1))",
    "io_inp": [
      4,
      2,
      -3,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -6,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(add_n(add_n(input,1),-5),1),-1))"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(take(take(reverse(take([-3, -4, -5],1)),11),27),5)",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(take(input,1)),11),27),5)"
  },
  {
    "input": "input : list = [4, -2, -4, 4, -2, 3]\noutput : list = [6, 0, -2, 6, 0, 5]",
    "output": "generated_output : list = add_n([4, -2, -4, 4, -2, 3],2)",
    "io_inp": [
      4,
      -2,
      -4,
      4,
      -2,
      3
    ],
    "io_out": [
      6,
      0,
      -2,
      6,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-8, -26]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(sort_des([4, -5])),-4),4),2)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -8,
      -26
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(sort_des(input)),-4),4),2)"
  },
  {
    "input": "input : list = [3, 3, 5, -5]\noutput : list = [-9, -1, -1, 1]",
    "output": "generated_output : list = sort_asc(sub_n([3, 3, 5, -5],4))",
    "io_inp": [
      3,
      3,
      5,
      -5
    ],
    "io_out": [
      -9,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [-3, -1, 3, 5, 3, -5]\noutput : list = [-5, -3, -1, 3, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des([-3, -1, 3, 5, 3, -5]),25)))",
    "io_inp": [
      -3,
      -1,
      3,
      5,
      3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(input),25)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([-5, 1]),-2))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [1, 0, 4, 1, -4, 1]\noutput : list = [3, 0, 0, 0, -1, -5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_asc([1, 0, 4, 1, -4, 1]))),3),4)",
    "io_inp": [
      1,
      0,
      4,
      1,
      -4,
      1
    ],
    "io_out": [
      3,
      0,
      0,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_asc(input))),3),4)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(reverse([0, 1])),20)))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(reverse(input)),20)))"
  },
  {
    "input": "input : list = [3, 2, 4, 4, 3]\noutput : list = [2]",
    "output": "generated_output : list = add_n(sort_asc(reverse(add_n(take([3, 2, 4, 4, 3],1),-2))),1)",
    "io_inp": [
      3,
      2,
      4,
      4,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(add_n(take(input,1),-2))),1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(sub_n([3, 4],1),1),3)),-3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(sub_n(input,1),1),3)),-3)"
  },
  {
    "input": "input : list = [-1, -2, 1, -3]\noutput : list = [-2, -7, -12, -22]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(sort_asc([-1, -2, 1, -3]),-3),-5),-2))",
    "io_inp": [
      -1,
      -2,
      1,
      -3
    ],
    "io_out": [
      -2,
      -7,
      -12,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(sort_asc(input),-3),-5),-2))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(sort_asc([-2, 1]),13)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),13)"
  },
  {
    "input": "input : list = [4, -1, 2, 3, 5]\noutput : list = [-1, -6, -3, -2, 0]",
    "output": "generated_output : list = add_n([4, -1, 2, 3, 5],-5)",
    "io_inp": [
      4,
      -1,
      2,
      3,
      5
    ],
    "io_out": [
      -1,
      -6,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [3, -4, -4, -1]\noutput : list = [-12, -12, -3, 9]",
    "output": "generated_output : list = reverse(sort_des(mul_n([3, -4, -4, -1],3)))",
    "io_inp": [
      3,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -12,
      -12,
      -3,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,3)))"
  },
  {
    "input": "input : list = [-4, -2, 2]\noutput : list = [-4]",
    "output": "generated_output : list = take(drop(sort_des([-4, -2, 2]),2),14)",
    "io_inp": [
      -4,
      -2,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(drop(sort_des(input),2),14)"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [8, 7, 12]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n([1, 0, 5],3),-1),-3),31)",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      8,
      7,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(input,3),-1),-3),31)"
  },
  {
    "input": "input : list = [4, -4, -5, 3, -2, 0]\noutput : list = [-7, -6, -4, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(add_n([4, -4, -5, 3, -2, 0],-2))),28))",
    "io_inp": [
      4,
      -4,
      -5,
      3,
      -2,
      0
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(add_n(input,-2))),28))"
  },
  {
    "input": "input : list = [-2, -4, 4]\noutput : list = [0, -8, -6]",
    "output": "generated_output : list = sub_n(reverse(take(sub_n([-2, -4, 4],3),7)),1)",
    "io_inp": [
      -2,
      -4,
      4
    ],
    "io_out": [
      0,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sub_n(input,3),7)),1)"
  },
  {
    "input": "input : list = [1, 5, 0]\noutput : list = [0, 1, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(reverse([1, 5, 0]))),28))",
    "io_inp": [
      1,
      5,
      0
    ],
    "io_out": [
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(reverse(input))),28))"
  },
  {
    "input": "input : list = [3, 0, -5, 5]\noutput : list = [9, 4, 1, -1]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n([3, 0, -5, 5],-1))),2),-2)",
    "io_inp": [
      3,
      0,
      -5,
      5
    ],
    "io_out": [
      9,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n(input,-1))),2),-2)"
  },
  {
    "input": "input : list = [-3, 3, -4, -3]\noutput : list = [-6, 0, -7, -6]",
    "output": "generated_output : list = add_n(sub_n([-3, 3, -4, -3],-2),-5)",
    "io_inp": [
      -3,
      3,
      -4,
      -3
    ],
    "io_out": [
      -6,
      0,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),-5)"
  },
  {
    "input": "input : list = [3, -3, -1, -1, 5]\noutput : list = [-1, -1, 5]",
    "output": "generated_output : list = drop([3, -3, -1, -1, 5],2)",
    "io_inp": [
      3,
      -3,
      -1,
      -1,
      5
    ],
    "io_out": [
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = reverse(sort_des([-1, 4, 5]))",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 5, -4, -5, -3, 4]\noutput : list = [14, 11, 11, 8, -13, -16]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(sub_n([-4, 5, -4, -5, -3, 4],-2)),-3),4),1)",
    "io_inp": [
      -4,
      5,
      -4,
      -5,
      -3,
      4
    ],
    "io_out": [
      14,
      11,
      11,
      8,
      -13,
      -16
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(sub_n(input,-2)),-3),4),1)"
  },
  {
    "input": "input : list = [-3, 3, -5, 3]\noutput : list = [-5, -3, 3, 3]",
    "output": "generated_output : list = sort_asc([-3, 3, -5, 3])",
    "io_inp": [
      -3,
      3,
      -5,
      3
    ],
    "io_out": [
      -5,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -1, 4]\noutput : list = [-7, -3, 2]",
    "output": "generated_output : list = add_n([-5, -1, 4],-2)",
    "io_inp": [
      -5,
      -1,
      4
    ],
    "io_out": [
      -7,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = drop([-3, 3, 5],1)",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 5, -4, 4, 3]\noutput : list = [-12, 3, 9, 12, 15]",
    "output": "generated_output : list = mul_n(sort_asc([1, 5, -4, 4, 3]),3)",
    "io_inp": [
      1,
      5,
      -4,
      4,
      3
    ],
    "io_out": [
      -12,
      3,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-2, -2, -4, 1, -3, -3]\noutput : list = [1, 2, 2, 3, 3, 6]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sub_n([-2, -2, -4, 1, -3, -3],1)),-2)),4)",
    "io_inp": [
      -2,
      -2,
      -4,
      1,
      -3,
      -3
    ],
    "io_out": [
      1,
      2,
      2,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sub_n(input,1)),-2)),4)"
  },
  {
    "input": "input : list = [4, -1, -1, 3]\noutput : list = [-1, -2, -6, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse([4, -1, -1, 3])),5),10)",
    "io_inp": [
      4,
      -1,
      -1,
      3
    ],
    "io_out": [
      -1,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(input)),5),10)"
  },
  {
    "input": "input : list = [3, -2, -5, -4, 1]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(drop([3, -2, -5, -4, 1],3)),1),34))",
    "io_inp": [
      3,
      -2,
      -5,
      -4,
      1
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(drop(input,3)),1),34))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-14, -24]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(reverse([4, 2]),-5),1),-3),39)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -14,
      -24
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(reverse(input),-5),1),-3),39)"
  },
  {
    "input": "input : list = [1, 4, -5, 5, 0, 1]\noutput : list = [0, -45, -30]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse(take([1, 4, -5, 5, 0, 1],3)),-5),5),-1)",
    "io_inp": [
      1,
      4,
      -5,
      5,
      0,
      1
    ],
    "io_out": [
      0,
      -45,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(take(input,3)),-5),5),-1)"
  },
  {
    "input": "input : list = [4, -2, 3, 5]\noutput : list = [-22, -18, -14, 6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([4, -2, 3, 5],-4)),-2)",
    "io_inp": [
      4,
      -2,
      3,
      5
    ],
    "io_out": [
      -22,
      -18,
      -14,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,-4)),-2)"
  },
  {
    "input": "input : list = [2, -3, -3, -3]\noutput : list = [-7, -7, -7, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(reverse([2, -3, -3, -3])),-4)))",
    "io_inp": [
      2,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [4, -4, 0, 2, 0]\noutput : list = [0, 2, 0, -4, 4]",
    "output": "generated_output : list = reverse([4, -4, 0, 2, 0])",
    "io_inp": [
      4,
      -4,
      0,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      0,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 4, -1, 5, -5]\noutput : list = [5, 4, -1, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc([-4, 4, -1, 5, -5])))",
    "io_inp": [
      -4,
      4,
      -1,
      5,
      -5
    ],
    "io_out": [
      5,
      4,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-2, -3, 5]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_des(drop([-2, -3, 5],1)),-5),4),2)",
    "io_inp": [
      -2,
      -3,
      5
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_des(drop(input,1)),-5),4),2)"
  },
  {
    "input": "input : list = [0, -3, 3]\noutput : list = [-24, -18, -12]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(reverse([0, -3, 3]),4)),5),2)",
    "io_inp": [
      0,
      -3,
      3
    ],
    "io_out": [
      -24,
      -18,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(reverse(input),4)),5),2)"
  },
  {
    "input": "input : list = [0, 5, 1, 1]\noutput : list = [3, 4, 4, 8]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(sort_asc([0, 5, 1, 1]),3),-2),-4),8)",
    "io_inp": [
      0,
      5,
      1,
      1
    ],
    "io_out": [
      3,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(sort_asc(input),3),-2),-4),8)"
  },
  {
    "input": "input : list = [-2, 0, 3, -2]\noutput : list = [3, 3, 5, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-2, 0, 3, -2])),-5)",
    "io_inp": [
      -2,
      0,
      3,
      -2
    ],
    "io_out": [
      3,
      3,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [-1, 5, 0, 2]\noutput : list = [7, 4, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_asc([-1, 5, 0, 2]),-1),-2),-1))",
    "io_inp": [
      -1,
      5,
      0,
      2
    ],
    "io_out": [
      7,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(sort_asc(input),-1),-2),-1))"
  },
  {
    "input": "input : list = [0, -3, 5, 1, -1]\noutput : list = [-9, -5, -4, -3, -1]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(sub_n([0, -3, 5, 1, -1],-4)),-1),30))",
    "io_inp": [
      0,
      -3,
      5,
      1,
      -1
    ],
    "io_out": [
      -9,
      -5,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(sub_n(input,-4)),-1),30))"
  },
  {
    "input": "input : list = [-5, -2, -5, 4, -1, -4]\noutput : list = [4, -1, -4]",
    "output": "generated_output : list = drop([-5, -2, -5, 4, -1, -4],3)",
    "io_inp": [
      -5,
      -2,
      -5,
      4,
      -1,
      -4
    ],
    "io_out": [
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, -2, -1, 0]\noutput : list = [-12, 2, 0, -2]",
    "output": "generated_output : list = add_n(mul_n([5, -2, -1, 0],-2),-2)",
    "io_inp": [
      5,
      -2,
      -1,
      0
    ],
    "io_out": [
      -12,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),-2)"
  },
  {
    "input": "input : list = [-3, 0, -5, 5, -5]\noutput : list = [-2, 1, -4, 6, -4]",
    "output": "generated_output : list = sub_n([-3, 0, -5, 5, -5],-1)",
    "io_inp": [
      -3,
      0,
      -5,
      5,
      -5
    ],
    "io_out": [
      -2,
      1,
      -4,
      6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, 4, -3, 5]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(take([5, 4, -3, 5],1),3)),-2))",
    "io_inp": [
      5,
      4,
      -3,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(take(input,1),3)),-2))"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-24, -14, -9]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(sort_asc([-2, -1, -4]),15),5)),-4)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -24,
      -14,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(sort_asc(input),15),5)),-4)"
  },
  {
    "input": "input : list = [-1, -2, 4, 5, 1, 0]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sub_n(take([-1, -2, 4, 5, 1, 0],1),1),-1),-2),-1)",
    "io_inp": [
      -1,
      -2,
      4,
      5,
      1,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sub_n(take(input,1),1),-1),-2),-1)"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [7, 4, 1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(add_n([-1, 5, 2],2),12))))",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(add_n(input,2),12))))"
  },
  {
    "input": "input : list = [-4, 5, 0, -5]\noutput : list = [1, -4, -8, -9]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(add_n(add_n([-4, 5, 0, -5],1),-1),4)))",
    "io_inp": [
      -4,
      5,
      0,
      -5
    ],
    "io_out": [
      1,
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(add_n(add_n(input,1),-1),4)))"
  },
  {
    "input": "input : list = [-5, -1, 5, -1, 3, 0]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(sort_des(drop([-5, -1, 5, -1, 3, 0],4)),-3)",
    "io_inp": [
      -5,
      -1,
      5,
      -1,
      3,
      0
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,4)),-3)"
  },
  {
    "input": "input : list = [-3, -1, 5, -1]\noutput : list = [-8, -6, -6, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([-3, -1, 5, -1]),-5))",
    "io_inp": [
      -3,
      -1,
      5,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [1, 4, 3, 5]\noutput : list = [2, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(drop([1, 4, 3, 5],2),-3))))",
    "io_inp": [
      1,
      4,
      3,
      5
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(drop(input,2),-3))))"
  },
  {
    "input": "input : list = [5, -1, 2, -2, 0]\noutput : list = [-4, -7, -10]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_des(take([5, -1, 2, -2, 0],3)),5),-1))",
    "io_inp": [
      5,
      -1,
      2,
      -2,
      0
    ],
    "io_out": [
      -4,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_des(take(input,3)),5),-1))"
  },
  {
    "input": "input : list = [4, 0, 5, -4]\noutput : list = [120, -105, 20, -80]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(mul_n([4, 0, 5, -4],-5),4)),19),5)",
    "io_inp": [
      4,
      0,
      5,
      -4
    ],
    "io_out": [
      120,
      -105,
      20,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(mul_n(input,-5),4)),19),5)"
  },
  {
    "input": "input : list = [0, -2, -1, -3]\noutput : list = [2, 0, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(mul_n([0, -2, -1, -3],2),-2))))",
    "io_inp": [
      0,
      -2,
      -1,
      -3
    ],
    "io_out": [
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(mul_n(input,2),-2))))"
  },
  {
    "input": "input : list = [3, 3, 0, 1]\noutput : list = [1, 3, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n([3, 3, 0, 1],2),5),-5),1))",
    "io_inp": [
      3,
      3,
      0,
      1
    ],
    "io_out": [
      1,
      3,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sub_n(mul_n(input,2),5),-5),1))"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [1, 0, -8]",
    "output": "generated_output : list = add_n(take(sort_des([-4, 5, 4]),16),-4)",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      1,
      0,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),16),-4)"
  },
  {
    "input": "input : list = [-5, 5, -1, 3, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 5, -1, 3, 2],1)",
    "io_inp": [
      -5,
      5,
      -1,
      3,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 3]\noutput : list = [-7, -6, -3, -2, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_des([-5, -4, 0, -1, 3]))),-2))",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      3
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [10, 5]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(sort_des([0, 1]),14),-2)),-5)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(sort_des(input),14),-2)),-5)"
  },
  {
    "input": "input : list = [5, 0, -5, -4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(take(take(take(drop([5, 0, -5, -4, 4],3),20),27),38))",
    "io_inp": [
      5,
      0,
      -5,
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(drop(input,3),20),27),38))"
  },
  {
    "input": "input : list = [-3, 0, 1, -4, -2, 5]\noutput : list = [-15, -27, -30, -36, -39, -42]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(sort_des([-3, 0, 1, -4, -2, 5]),-5),-5),7),3)",
    "io_inp": [
      -3,
      0,
      1,
      -4,
      -2,
      5
    ],
    "io_out": [
      -15,
      -27,
      -30,
      -36,
      -39,
      -42
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(sort_des(input),-5),-5),7),3)"
  },
  {
    "input": "input : list = [2, -5, -4, -1, -4, 3]\noutput : list = [15, 12, 12, 3, -6, -9]",
    "output": "generated_output : list = reverse(mul_n(sort_des([2, -5, -4, -1, -4, 3]),-3))",
    "io_inp": [
      2,
      -5,
      -4,
      -1,
      -4,
      3
    ],
    "io_out": [
      15,
      12,
      12,
      3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [-2, -2, -1, -3, -2]\noutput : list = [-84]",
    "output": "generated_output : list = mul_n(drop(mul_n(add_n(sub_n([-2, -2, -1, -3, -2],2),-3),3),4),4)",
    "io_inp": [
      -2,
      -2,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -84
    ],
    "output_masked": "generated_output : list = mul_n(drop(mul_n(add_n(sub_n(input,2),-3),3),4),4)"
  },
  {
    "input": "input : list = [-2, 2, 5, -1]\noutput : list = [10, 5, -10, -25]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sort_asc([-2, 2, 5, -1])))),-5)",
    "io_inp": [
      -2,
      2,
      5,
      -1
    ],
    "io_out": [
      10,
      5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [3, 1, -5, -2, -3, 4]\noutput : list = [-1, -3, -9, -6, -7, 0]",
    "output": "generated_output : list = sub_n([3, 1, -5, -2, -3, 4],4)",
    "io_inp": [
      3,
      1,
      -5,
      -2,
      -3,
      4
    ],
    "io_out": [
      -1,
      -3,
      -9,
      -6,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, 4, -1]\noutput : list = [8, 8, 3]",
    "output": "generated_output : list = sub_n(sort_des([4, 4, -1]),-4)",
    "io_inp": [
      4,
      4,
      -1
    ],
    "io_out": [
      8,
      8,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [5, 1, 0]\noutput : list = [0, 1, 5]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(add_n([5, 1, 0],-3)),-3),18))",
    "io_inp": [
      5,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(add_n(input,-3)),-3),18))"
  },
  {
    "input": "input : list = [4, -4, 5, -5, 1, 1]\noutput : list = [8, -8, 10, -10, 2, 2]",
    "output": "generated_output : list = mul_n([4, -4, 5, -5, 1, 1],2)",
    "io_inp": [
      4,
      -4,
      5,
      -5,
      1,
      1
    ],
    "io_out": [
      8,
      -8,
      10,
      -10,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, 1, 3, 0, -4, 4]\noutput : list = [2, -14, -6, 0, -4, -10]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-2, 1, 3, 0, -4, 4],3)),2)",
    "io_inp": [
      -2,
      1,
      3,
      0,
      -4,
      4
    ],
    "io_out": [
      2,
      -14,
      -6,
      0,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,3)),2)"
  },
  {
    "input": "input : list = [-4, 0, -2, -3, -1]\noutput : list = [9, 6, 3, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse([-4, 0, -2, -3, -1]),-3),3)))",
    "io_inp": [
      -4,
      0,
      -2,
      -3,
      -1
    ],
    "io_out": [
      9,
      6,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(reverse(input),-3),3)))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-6, -11]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(sort_des([-2, 3]),-5),4),1),31)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -6,
      -11
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(sort_des(input),-5),4),1),31)"
  },
  {
    "input": "input : list = [-5, -5, -4, -2, -3]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take(take([-5, -5, -4, -2, -3],1),18))",
    "io_inp": [
      -5,
      -5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(take(input,1),18))"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [2, -3, -5]",
    "output": "generated_output : list = reverse(take(reverse(add_n(sort_des([0, 5, -2]),-3)),17))",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(sort_des(input),-3)),17))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-4, 6]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(sub_n([5, -5],1),-2)),21))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(sub_n(input,1),-2)),21))"
  },
  {
    "input": "input : list = [3, -1, -2, -1]\noutput : list = [3, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse([3, -1, -2, -1]),21)))",
    "io_inp": [
      3,
      -1,
      -2,
      -1
    ],
    "io_out": [
      3,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(input),21)))"
  },
  {
    "input": "input : list = [3, 0, 3]\noutput : list = [2, 2, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_des([3, 0, 3]))),1))",
    "io_inp": [
      3,
      0,
      3
    ],
    "io_out": [
      2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [3, 0, -5, 2, 2, 1]\noutput : list = [60, -24, -24, -12]",
    "output": "generated_output : list = mul_n(mul_n(drop([3, 0, -5, 2, 2, 1],2),-3),4)",
    "io_inp": [
      3,
      0,
      -5,
      2,
      2,
      1
    ],
    "io_out": [
      60,
      -24,
      -24,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(input,2),-3),4)"
  },
  {
    "input": "input : list = [-1, 5, 3, 2, -5]\noutput : list = [-5, 3, 9, 11, 15]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(reverse(mul_n([-1, 5, 3, 2, -5],2)))),5)",
    "io_inp": [
      -1,
      5,
      3,
      2,
      -5
    ],
    "io_out": [
      -5,
      3,
      9,
      11,
      15
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(reverse(mul_n(input,2)))),5)"
  },
  {
    "input": "input : list = [5, 2, -4]\noutput : list = [4, 1, -5]",
    "output": "generated_output : list = sub_n([5, 2, -4],1)",
    "io_inp": [
      5,
      2,
      -4
    ],
    "io_out": [
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, -3, 4, 4, -3]\noutput : list = [-6, 9, -12, -12, 9]",
    "output": "generated_output : list = mul_n([2, -3, 4, 4, -3],-3)",
    "io_inp": [
      2,
      -3,
      4,
      4,
      -3
    ],
    "io_out": [
      -6,
      9,
      -12,
      -12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, -3, 1, -1, -2]\noutput : list = [-3, -2, -1, 1, 3]",
    "output": "generated_output : list = sort_asc([3, -3, 1, -1, -2])",
    "io_inp": [
      3,
      -3,
      1,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-8, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(mul_n([-5, 0],2),5),-2),5))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(mul_n(input,2),5),-2),5))"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(drop([-3, 3, 2],1),-5),1),4)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(drop(input,1),-5),1),4)"
  },
  {
    "input": "input : list = [-2, -2, -2, -4, -5]\noutput : list = [-2, -1, 1, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(reverse([-2, -2, -2, -4, -5]),3))))",
    "io_inp": [
      -2,
      -2,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -1,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [3, 5, -5, 0, 2]\noutput : list = [5, -5, 0, 2]",
    "output": "generated_output : list = drop([3, 5, -5, 0, 2],1)",
    "io_inp": [
      3,
      5,
      -5,
      0,
      2
    ],
    "io_out": [
      5,
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 3, -3, 5]\noutput : list = [-6, -8]",
    "output": "generated_output : list = take(reverse(add_n(take(sort_asc([-1, 3, -3, 5]),2),-5)),17)",
    "io_inp": [
      -1,
      3,
      -3,
      5
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sort_asc(input),2),-5)),17)"
  },
  {
    "input": "input : list = [5, 3, -2, -1]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = add_n(reverse(sub_n(take(sort_asc([5, 3, -2, -1]),3),2)),2)",
    "io_inp": [
      5,
      3,
      -2,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(sort_asc(input),3),2)),2)"
  },
  {
    "input": "input : list = [2, 0, 0, -2]\noutput : list = [0, -4, -4, -8]",
    "output": "generated_output : list = sub_n(mul_n([2, 0, 0, -2],2),4)",
    "io_inp": [
      2,
      0,
      0,
      -2
    ],
    "io_out": [
      0,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),4)"
  },
  {
    "input": "input : list = [-4, 0, 2, -3, 3, 5]\noutput : list = [0, 1, 4, 6, 7, 9]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_des([-4, 0, 2, -3, 3, 5]),4)),16))",
    "io_inp": [
      -4,
      0,
      2,
      -3,
      3,
      5
    ],
    "io_out": [
      0,
      1,
      4,
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_des(input),4)),16))"
  },
  {
    "input": "input : list = [-3, -3, 5]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(take([-3, -3, 5],1),3)",
    "io_inp": [
      -3,
      -3,
      5
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-5, 20]",
    "output": "generated_output : list = sort_asc(mul_n([-1, 4],5))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -5,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [4, 4, -3, 1, -2, 4]\noutput : list = [6, 6, -1, 3]",
    "output": "generated_output : list = take(sub_n([4, 4, -3, 1, -2, 4],-2),4)",
    "io_inp": [
      4,
      4,
      -3,
      1,
      -2,
      4
    ],
    "io_out": [
      6,
      6,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-2),4)"
  },
  {
    "input": "input : list = [0, -4, -4, 0, 1]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(sort_asc([0, -4, -4, 0, 1])),-1),1))",
    "io_inp": [
      0,
      -4,
      -4,
      0,
      1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(sort_asc(input)),-1),1))"
  },
  {
    "input": "input : list = [-1, -2, -2]\noutput : list = [-2, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(add_n([-1, -2, -2],-1),1))))",
    "io_inp": [
      -1,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(add_n(input,-1),1))))"
  },
  {
    "input": "input : list = [3, 2, 0]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sort_des([3, 2, 0])",
    "io_inp": [
      3,
      2,
      0
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, -4, 0, 2, 2]\noutput : list = [-9, -3, -5, -13, -17, -17]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sub_n([-2, -5, -4, 0, 2, 2],-4)),-2),5))",
    "io_inp": [
      -2,
      -5,
      -4,
      0,
      2,
      2
    ],
    "io_out": [
      -9,
      -3,
      -5,
      -13,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sub_n(input,-4)),-2),5))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(reverse([-1, -2]))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-5, 15, 15]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc([-3, -3, 1])),-5)))",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -5,
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [8, -8]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(mul_n([4, -4],2)))))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [1, 4, -2, 5, 1, 1]\noutput : list = [1]",
    "output": "generated_output : list = drop(take(sort_asc(reverse(sub_n([1, 4, -2, 5, 1, 1],4))),16),5)",
    "io_inp": [
      1,
      4,
      -2,
      5,
      1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(reverse(sub_n(input,4))),16),5)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(take([-4, 3, -3],1),17))))",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(take(input,1),17))))"
  },
  {
    "input": "input : list = [0, -2, 5, -1, -2, -4]\noutput : list = [0, -2, 5, -1, -2, -4]",
    "output": "generated_output : list = reverse(reverse([0, -2, 5, -1, -2, -4]))",
    "io_inp": [
      0,
      -2,
      5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      0,
      -2,
      5,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-3, 2, 1, -5, 4, -4]\noutput : list = [48, 24, 12, -36, -48, -60]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(mul_n([-3, 2, 1, -5, 4, -4],-3)),-4)))",
    "io_inp": [
      -3,
      2,
      1,
      -5,
      4,
      -4
    ],
    "io_out": [
      48,
      24,
      12,
      -36,
      -48,
      -60
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(mul_n(input,-3)),-4)))"
  },
  {
    "input": "input : list = [5, 2, 2, 1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(reverse(sort_des(drop([5, 2, 2, 1],2))),-3)",
    "io_inp": [
      5,
      2,
      2,
      1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(drop(input,2))),-3)"
  },
  {
    "input": "input : list = [-2, 0, -3, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 0, -3, 0],1)",
    "io_inp": [
      -2,
      0,
      -3,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 2, 1, 0]\noutput : list = [3, 6, 6, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(reverse([1, 2, 1, 0]),-1),3)))",
    "io_inp": [
      1,
      2,
      1,
      0
    ],
    "io_out": [
      3,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(reverse(input),-1),3)))"
  },
  {
    "input": "input : list = [1, 0, -3, 0]\noutput : list = [1, 4]",
    "output": "generated_output : list = add_n(sort_asc(drop([1, 0, -3, 0],2)),4)",
    "io_inp": [
      1,
      0,
      -3,
      0
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,2)),4)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(sort_des([-5, -4]))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, 4, -4, 5, -5]\noutput : list = [-5, 5, -4, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, -4, 5, -5])",
    "io_inp": [
      4,
      4,
      -4,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, 3, 0, -2]\noutput : list = [6, 5, 4, 1, -1]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_asc([4, 5, 3, 0, -2])))),1)",
    "io_inp": [
      4,
      5,
      3,
      0,
      -2
    ],
    "io_out": [
      6,
      5,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [3, -4, -2, 0, 1, 0]\noutput : list = [-9, -7, -6, -6, -4, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(mul_n([3, -4, -2, 0, 1, 0],-1),-5))),1)",
    "io_inp": [
      3,
      -4,
      -2,
      0,
      1,
      0
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(mul_n(input,-1),-5))),1)"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([5, 1, 5],-1)))",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,-1)))"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [8, 7, 1]",
    "output": "generated_output : list = take(sort_des(mul_n(take(add_n([2, -5, -4],-3),16),-1)),24)",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      8,
      7,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(add_n(input,-3),16),-1)),24)"
  },
  {
    "input": "input : list = [1, 5, 5, -4, 5]\noutput : list = [-12, -12, -12, 0, 15]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_asc([1, 5, 5, -4, 5])),-1),-3))",
    "io_inp": [
      1,
      5,
      5,
      -4,
      5
    ],
    "io_out": [
      -12,
      -12,
      -12,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_asc(sort_asc(input)),-1),-3))"
  },
  {
    "input": "input : list = [-1, 0, 5]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(drop([-1, 0, 5],1)),2)))",
    "io_inp": [
      -1,
      0,
      5
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(drop(input,1)),2)))"
  },
  {
    "input": "input : list = [2, -2, -3, -5, -1]\noutput : list = [-10, -8, -7, -6, -3]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(sort_des([2, -2, -3, -5, -1]),2),-5),2))",
    "io_inp": [
      2,
      -2,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -10,
      -8,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(sort_des(input),2),-5),2))"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-7, -7, -9]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-2, -4, -2])),5)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [1, 0, 1, 5, -3]\noutput : list = [-8, -9, -8, -4, -12]",
    "output": "generated_output : list = sub_n(add_n(add_n([1, 0, 1, 5, -3],-5),-3),1)",
    "io_inp": [
      1,
      0,
      1,
      5,
      -3
    ],
    "io_out": [
      -8,
      -9,
      -8,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-5),-3),1)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(sort_des(take(reverse([-2, -4]),14)))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(input),14)))"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [7, 2, 2]",
    "output": "generated_output : list = take(add_n(reverse(sub_n([-3, -3, 2],-4)),1),17)",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      7,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(input,-4)),1),17)"
  },
  {
    "input": "input : list = [-3, 5, 0, 2, 4]\noutput : list = [-3, 0, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([-3, 5, 0, 2, 4])",
    "io_inp": [
      -3,
      5,
      0,
      2,
      4
    ],
    "io_out": [
      -3,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-2, -3, 2])))",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-13, -11]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(add_n(add_n([-5, -3],-4),-5),1)))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -13,
      -11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(add_n(add_n(input,-4),-5),1)))"
  },
  {
    "input": "input : list = [0, 0, 0, -3, -1, 1]\noutput : list = [-1, 1]",
    "output": "generated_output : list = drop([0, 0, 0, -3, -1, 1],4)",
    "io_inp": [
      0,
      0,
      0,
      -3,
      -1,
      1
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [4, 2, -5, 1]\noutput : list = [20, 10, -25, 5]",
    "output": "generated_output : list = mul_n([4, 2, -5, 1],5)",
    "io_inp": [
      4,
      2,
      -5,
      1
    ],
    "io_out": [
      20,
      10,
      -25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 0, -1, 0, -5]\noutput : list = [1, 5, 6, 6, 7]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(reverse([1, 0, -1, 0, -5]))),4),2)",
    "io_inp": [
      1,
      0,
      -1,
      0,
      -5
    ],
    "io_out": [
      1,
      5,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(reverse(input))),4),2)"
  },
  {
    "input": "input : list = [-5, 1, 4, -4, 2]\noutput : list = [11, 9, 8, 3, 2]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des([-5, 1, 4, -4, 2]),5),-2),12)",
    "io_inp": [
      -5,
      1,
      4,
      -4,
      2
    ],
    "io_out": [
      11,
      9,
      8,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(input),5),-2),12)"
  },
  {
    "input": "input : list = [-4, 4, 5]\noutput : list = [-4, 4, 5]",
    "output": "generated_output : list = take(take(mul_n([-4, 4, 5],1),15),15)",
    "io_inp": [
      -4,
      4,
      5
    ],
    "io_out": [
      -4,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,1),15),15)"
  },
  {
    "input": "input : list = [-3, 0, 0, 1]\noutput : list = [1, 4, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des(sub_n([-3, 0, 0, 1],-5)))),-1)",
    "io_inp": [
      -3,
      0,
      0,
      1
    ],
    "io_out": [
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(sub_n(input,-5)))),-1)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [1, 4]",
    "output": "generated_output : list = add_n([2, 5],-1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-1, 5, -2, -2, -1]\noutput : list = [-2, -2, -1, -1, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, -2, -2, -1])",
    "io_inp": [
      -1,
      5,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, 4, -5]\noutput : list = [-15, 12, -9, -9]",
    "output": "generated_output : list = reverse(mul_n([-3, -3, 4, -5],3))",
    "io_inp": [
      -3,
      -3,
      4,
      -5
    ],
    "io_out": [
      -15,
      12,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(reverse(drop(take(sub_n([2, -2],-5),2),1)))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(take(sub_n(input,-5),2),1)))"
  },
  {
    "input": "input : list = [5, 3, 5, -5, -1, -3]\noutput : list = [1, -1, 1, -9, -5, -7]",
    "output": "generated_output : list = add_n([5, 3, 5, -5, -1, -3],-4)",
    "io_inp": [
      5,
      3,
      5,
      -5,
      -1,
      -3
    ],
    "io_out": [
      1,
      -1,
      1,
      -9,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 2, 0, -5, 4, -4]\noutput : list = [-5, -4, -1, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(sort_des([-1, 2, 0, -5, 4, -4])),10)))",
    "io_inp": [
      -1,
      2,
      0,
      -5,
      4,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(sort_des(input)),10)))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-25, 5]",
    "output": "generated_output : list = mul_n([5, -1],-5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, -1, -1, -1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -1, -1, -1],1)",
    "io_inp": [
      3,
      -1,
      -1,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -2, 0, 2, -1, 2]\noutput : list = [2, -1, 2, 0, -2, 0]",
    "output": "generated_output : list = reverse([0, -2, 0, 2, -1, 2])",
    "io_inp": [
      0,
      -2,
      0,
      2,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      2,
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, 0, -4, 3]\noutput : list = [100, 80, 60, 0, -60]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_des([-5, -3, 0, -4, 3]),2),-5),2))",
    "io_inp": [
      -5,
      -3,
      0,
      -4,
      3
    ],
    "io_out": [
      100,
      80,
      60,
      0,
      -60
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(sort_des(input),2),-5),2))"
  },
  {
    "input": "input : list = [2, -5, -4, 3, -4]\noutput : list = [-4, 3, -4, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, -4, 3, -4])",
    "io_inp": [
      2,
      -5,
      -4,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      -4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [-5, 2, 5]",
    "output": "generated_output : list = sort_asc([2, -5, 5])",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      -5,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 3]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(take([-5, 5, 3],1),-4)",
    "io_inp": [
      -5,
      5,
      3
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [-1, -4, 2, -4, 1]\noutput : list = [1, -2, 4, -2, 3]",
    "output": "generated_output : list = sub_n([-1, -4, 2, -4, 1],-2)",
    "io_inp": [
      -1,
      -4,
      2,
      -4,
      1
    ],
    "io_out": [
      1,
      -2,
      4,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-12, 60]",
    "output": "generated_output : list = mul_n(take(mul_n([-1, 5],-3),11),-4)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -12,
      60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-3),11),-4)"
  },
  {
    "input": "input : list = [4, -3, -5, -2]\noutput : list = [7, 5, 4, -2]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(mul_n([4, -3, -5, -2],-1)),2)),44)",
    "io_inp": [
      4,
      -3,
      -5,
      -2
    ],
    "io_out": [
      7,
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(mul_n(input,-1)),2)),44)"
  },
  {
    "input": "input : list = [-1, -1, 0, 0, -4]\noutput : list = [-3, -3, 3, 3, 21]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(mul_n([-1, -1, 0, 0, -4],2),-1)),-3))",
    "io_inp": [
      -1,
      -1,
      0,
      0,
      -4
    ],
    "io_out": [
      -3,
      -3,
      3,
      3,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(mul_n(input,2),-1)),-3))"
  },
  {
    "input": "input : list = [-2, 3, -1, 1, 1, -5]\noutput : list = [-56, -24, -24, 8, 24, 72]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(mul_n([-2, 3, -1, 1, 1, -5],-4),-3)),-1),4)",
    "io_inp": [
      -2,
      3,
      -1,
      1,
      1,
      -5
    ],
    "io_out": [
      -56,
      -24,
      -24,
      8,
      24,
      72
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(mul_n(input,-4),-3)),-1),4)"
  },
  {
    "input": "input : list = [-5, -1, 1]\noutput : list = [-10, -6, -4]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([-5, -1, 1],1),-5))",
    "io_inp": [
      -5,
      -1,
      1
    ],
    "io_out": [
      -10,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,1),-5))"
  },
  {
    "input": "input : list = [3, 2, 5, -3]\noutput : list = [-51, -31, -21, 29]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(mul_n([3, 2, 5, -3],5),-2))),-1)",
    "io_inp": [
      3,
      2,
      5,
      -3
    ],
    "io_out": [
      -51,
      -31,
      -21,
      29
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(mul_n(input,5),-2))),-1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [9, -3]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(mul_n([-3, 1],-3)),-4)),4)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_asc(mul_n(input,-3)),-4)),4)"
  },
  {
    "input": "input : list = [4, -5, 2, 3, -4, -3]\noutput : list = [-6, -5, -4, 1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(sub_n([4, -5, 2, 3, -4, -3],4)),23)),-3)",
    "io_inp": [
      4,
      -5,
      2,
      3,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -5,
      -4,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(sub_n(input,4)),23)),-3)"
  },
  {
    "input": "input : list = [0, -5, -1]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(drop([0, -5, -1],1))),1),4)",
    "io_inp": [
      0,
      -5,
      -1
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(drop(input,1))),1),4)"
  },
  {
    "input": "input : list = [2, -1, -2, 5]\noutput : list = [5, -2, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, -2, 5])",
    "io_inp": [
      2,
      -1,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [5, -1, -9]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(mul_n([1, 5, -2],-2)),1)))",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      5,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(mul_n(input,-2)),1)))"
  },
  {
    "input": "input : list = [4, 3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(drop([4, 3, 0],1)))))",
    "io_inp": [
      4,
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [-2, 2, 1, 3, -4]\noutput : list = [6, 13, 11, 12, 8]",
    "output": "generated_output : list = sub_n(reverse(add_n([-2, 2, 1, 3, -4],5)),-5)",
    "io_inp": [
      -2,
      2,
      1,
      3,
      -4
    ],
    "io_out": [
      6,
      13,
      11,
      12,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,5)),-5)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(sort_asc([1, -2]),11)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),11)"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [-4, -4, 0]",
    "output": "generated_output : list = sort_asc([-4, 0, -4])",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -5, -4, -1, 3]\noutput : list = [3, -1, -1, -4, -5]",
    "output": "generated_output : list = sort_des(reverse([-1, -5, -4, -1, 3]))",
    "io_inp": [
      -1,
      -5,
      -4,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [15, -13]",
    "output": "generated_output : list = take(add_n(reverse(take(mul_n([-3, 4],4),7)),-1),7)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      15,
      -13
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(take(mul_n(input,4),7)),-1),7)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-100, -60]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(sub_n([4, 2],-1),4),20),-5))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -100,
      -60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(sub_n(input,-1),4),20),-5))"
  },
  {
    "input": "input : list = [3, 3, -4, 1, -5]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(take([3, 3, -4, 1, -5],1))",
    "io_inp": [
      3,
      3,
      -4,
      1,
      -5
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [2, -4, 2, -3, 4]\noutput : list = [-4, -3, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, -4, 2, -3, 4])",
    "io_inp": [
      2,
      -4,
      2,
      -3,
      4
    ],
    "io_out": [
      -4,
      -3,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 4, -1, -3, -1]\noutput : list = [-20, -20, 0, 0, 8]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_des([4, 4, -1, -3, -1])),1),-2),2)",
    "io_inp": [
      4,
      4,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -20,
      -20,
      0,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_des(input)),1),-2),2)"
  },
  {
    "input": "input : list = [-3, 2, 5, 1, -1, -4]\noutput : list = [-4, -3, -1, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([-3, 2, 5, 1, -1, -4])",
    "io_inp": [
      -3,
      2,
      5,
      1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 3, 5]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take(sort_asc([1, 3, 5]),3))))",
    "io_inp": [
      1,
      3,
      5
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [6, 3, 0]",
    "output": "generated_output : list = add_n([2, -1, -4],4)",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-1, 0, 0, -1, 4]\noutput : list = [40, 35, 35, 40, 15]",
    "output": "generated_output : list = mul_n(add_n(add_n(sub_n([-1, 0, 0, -1, 4],3),-2),-2),-5)",
    "io_inp": [
      -1,
      0,
      0,
      -1,
      4
    ],
    "io_out": [
      40,
      35,
      35,
      40,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sub_n(input,3),-2),-2),-5)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [-1, -6, -1]",
    "output": "generated_output : list = add_n(add_n(take(sub_n([5, 0, 5],-1),6),-5),-2)",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      -1,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(input,-1),6),-5),-2)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [-3, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, -3])",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, -4, 1, -2, 3]\noutput : list = [20, -10, -25, -40, -55, -85]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n(mul_n([-1, 0, -4, 1, -2, 3],3),5)),24),5)",
    "io_inp": [
      -1,
      0,
      -4,
      1,
      -2,
      3
    ],
    "io_out": [
      20,
      -10,
      -25,
      -40,
      -55,
      -85
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(mul_n(input,3),5)),24),5)"
  },
  {
    "input": "input : list = [5, -4, 1, 3, 5]\noutput : list = [-10, -6, -2, 8, -10]",
    "output": "generated_output : list = mul_n(reverse([5, -4, 1, 3, 5]),-2)",
    "io_inp": [
      5,
      -4,
      1,
      3,
      5
    ],
    "io_out": [
      -10,
      -6,
      -2,
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [3, -2, 4, 4, -2]\noutput : list = [-1, -1, 4, 5, 5]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des([3, -2, 4, 4, -2]),-1)),13)",
    "io_inp": [
      3,
      -2,
      4,
      4,
      -2
    ],
    "io_out": [
      -1,
      -1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(input),-1)),13)"
  },
  {
    "input": "input : list = [2, -5, -4, 4]\noutput : list = [2, 0, -6, -7]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n([2, -5, -4, 4],1),1)),2)",
    "io_inp": [
      2,
      -5,
      -4,
      4
    ],
    "io_out": [
      2,
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(input,1),1)),2)"
  },
  {
    "input": "input : list = [5, 1, -4]\noutput : list = [26, 6, -19]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(mul_n([5, 1, -4],5)),-2)),3)",
    "io_inp": [
      5,
      1,
      -4
    ],
    "io_out": [
      26,
      6,
      -19
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(mul_n(input,5)),-2)),3)"
  },
  {
    "input": "input : list = [-4, 0, 1, -4, 0, 0]\noutput : list = [-1, 3, 4, -1, 3, 3]",
    "output": "generated_output : list = add_n([-4, 0, 1, -4, 0, 0],3)",
    "io_inp": [
      -4,
      0,
      1,
      -4,
      0,
      0
    ],
    "io_out": [
      -1,
      3,
      4,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, 4, -3, -1, -2]\noutput : list = [-2, -2, -1, 0, 5]",
    "output": "generated_output : list = sort_asc(add_n(take(take(sort_des([-3, 4, -3, -1, -2]),7),9),1))",
    "io_inp": [
      -3,
      4,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(take(sort_des(input),7),9),1))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [29, 5]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n([2, 4],-4),-4),3),5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      29,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(input,-4),-4),3),5)"
  },
  {
    "input": "input : list = [2, 3, -5, -2]\noutput : list = [3, 4, -4, -1]",
    "output": "generated_output : list = add_n([2, 3, -5, -2],1)",
    "io_inp": [
      2,
      3,
      -5,
      -2
    ],
    "io_out": [
      3,
      4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, -5, -4, 0]\noutput : list = [-4, -3, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc([3, -5, -4, 0]),-1)",
    "io_inp": [
      3,
      -5,
      -4,
      0
    ],
    "io_out": [
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-5, 1, -4]\noutput : list = [-14, 1, 4]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sub_n(sort_des([-5, 1, -4]),-4),-3),-3),-4)",
    "io_inp": [
      -5,
      1,
      -4
    ],
    "io_out": [
      -14,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sub_n(sort_des(input),-4),-3),-3),-4)"
  },
  {
    "input": "input : list = [4, -4, 2, -3, 3, -3]\noutput : list = [4, -4, 2]",
    "output": "generated_output : list = take([4, -4, 2, -3, 3, -3],3)",
    "io_inp": [
      4,
      -4,
      2,
      -3,
      3,
      -3
    ],
    "io_out": [
      4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_des(reverse([2, 4, 3])),5),-4),2)",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_des(reverse(input)),5),-4),2)"
  },
  {
    "input": "input : list = [-4, 1, 1, 0, -3]\noutput : list = [-6, 0, 2, 2]",
    "output": "generated_output : list = mul_n(sort_asc(drop([-4, 1, 1, 0, -3],1)),2)",
    "io_inp": [
      -4,
      1,
      1,
      0,
      -3
    ],
    "io_out": [
      -6,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,1)),2)"
  },
  {
    "input": "input : list = [-5, -1, 0, 2, -3, 5]\noutput : list = [23, 15, 7, 3, -5, -17]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sort_asc([-5, -1, 0, 2, -3, 5]),-4),1)),-4)",
    "io_inp": [
      -5,
      -1,
      0,
      2,
      -3,
      5
    ],
    "io_out": [
      23,
      15,
      7,
      3,
      -5,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sort_asc(input),-4),1)),-4)"
  },
  {
    "input": "input : list = [1, -2, -1, -4]\noutput : list = [0, -3, -2, -5]",
    "output": "generated_output : list = take(add_n(sub_n(take(add_n([1, -2, -1, -4],5),17),4),-2),27)",
    "io_inp": [
      1,
      -2,
      -1,
      -4
    ],
    "io_out": [
      0,
      -3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(take(add_n(input,5),17),4),-2),27)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-11, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_asc([-2, 5]),-3)),-4),-2)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -11,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(sort_asc(input),-3)),-4),-2)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [1, -1, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([4, -5, 2]),3))",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      1,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [13, 14, 16]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sub_n([5, 3, 2],-5),-3))),-3)",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      13,
      14,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(sub_n(input,-5),-3))),-3)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [-4, -8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(drop([-5, -3, 1],1),11),2)),-3)",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(drop(input,1),11),2)),-3)"
  },
  {
    "input": "input : list = [1, 4, -4, 2, -2]\noutput : list = [2, 0, -1, -4, -6]",
    "output": "generated_output : list = take(take(sort_des(sub_n(sort_asc([1, 4, -4, 2, -2]),2)),31),41)",
    "io_inp": [
      1,
      4,
      -4,
      2,
      -2
    ],
    "io_out": [
      2,
      0,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(sort_asc(input),2)),31),41)"
  },
  {
    "input": "input : list = [-4, -5, -3, 5, -4]\noutput : list = [5, -3, -4, -4, -5]",
    "output": "generated_output : list = take(sort_des([-4, -5, -3, 5, -4]),9)",
    "io_inp": [
      -4,
      -5,
      -3,
      5,
      -4
    ],
    "io_out": [
      5,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),9)"
  },
  {
    "input": "input : list = [1, 4, 3, 3]\noutput : list = [-2, -4, -4, -5]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(sort_asc([1, 4, 3, 3]),1),-2),-1),-2)",
    "io_inp": [
      1,
      4,
      3,
      3
    ],
    "io_out": [
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(sort_asc(input),1),-2),-1),-2)"
  },
  {
    "input": "input : list = [0, 1, 3, 4, 5]\noutput : list = [-20, -25]",
    "output": "generated_output : list = reverse(reverse(drop(mul_n([0, 1, 3, 4, 5],-5),3)))",
    "io_inp": [
      0,
      1,
      3,
      4,
      5
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(mul_n(input,-5),3)))"
  },
  {
    "input": "input : list = [1, 2, 5, 1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(drop([1, 2, 5, 1],2)),-1)),5)",
    "io_inp": [
      1,
      2,
      5,
      1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(drop(input,2)),-1)),5)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [4, 3]",
    "output": "generated_output : list = take(add_n(sort_des([1, 2]),2),20)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),2),20)"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [-14, -2, 2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(mul_n([-5, 1, 3],2)),-4)))",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      -14,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(mul_n(input,2)),-4)))"
  },
  {
    "input": "input : list = [-1, -5, 3, -4]\noutput : list = [7, 3, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(reverse([-1, -5, 3, -4]),4))",
    "io_inp": [
      -1,
      -5,
      3,
      -4
    ],
    "io_out": [
      7,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),4))"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [10, -15]",
    "output": "generated_output : list = reverse(take(mul_n([3, -2],-5),7))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,-5),7))"
  },
  {
    "input": "input : list = [1, 1, 5, -5, -2, 0]\noutput : list = [15, 6, 0, -3, -3, -15]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_des([1, 1, 5, -5, -2, 0])),-3)))",
    "io_inp": [
      1,
      1,
      5,
      -5,
      -2,
      0
    ],
    "io_out": [
      15,
      6,
      0,
      -3,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [2, -4, 4, 5, -3]\noutput : list = [-2, -1, 1, 6, 7]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_des([2, -4, 4, 5, -3]),3),-1)),12)",
    "io_inp": [
      2,
      -4,
      4,
      5,
      -3
    ],
    "io_out": [
      -2,
      -1,
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_des(input),3),-1)),12)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n([-3, 2],-3))))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(input,-3))))"
  },
  {
    "input": "input : list = [-4, -5, 5, 5, 1]\noutput : list = [12, 12, -4, -24, -28]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n([-4, -5, 5, 5, 1],-2))),4)",
    "io_inp": [
      -4,
      -5,
      5,
      5,
      1
    ],
    "io_out": [
      12,
      12,
      -4,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(input,-2))),4)"
  },
  {
    "input": "input : list = [-2, -1, 0, 0, -3, -3]\noutput : list = [4, 4, 3, 2, 1, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([-2, -1, 0, 0, -3, -3])),-4)",
    "io_inp": [
      -2,
      -1,
      0,
      0,
      -3,
      -3
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [-1, -2, -3, -4, 4]\noutput : list = [3, 4, 11]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(drop([-1, -2, -3, -4, 4],2),-5))),2)",
    "io_inp": [
      -1,
      -2,
      -3,
      -4,
      4
    ],
    "io_out": [
      3,
      4,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(drop(input,2),-5))),2)"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [-20, 8, 16]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_asc(sort_des([-2, -4, 5])),-4),25))",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      -20,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_asc(sort_des(input)),-4),25))"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [0, 0, 4]",
    "output": "generated_output : list = take(take(reverse(add_n([1, -3, -3],3)),9),9)",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(input,3)),9),9)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [8, 4, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc([5, -4, 1]),1))),4)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      8,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc(input),1))),4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 3, -1]\noutput : list = [-15, -10, 10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(add_n([-2, 3, -1],-1)))),5)",
    "io_inp": [
      -2,
      3,
      -1
    ],
    "io_out": [
      -15,
      -10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(add_n(input,-1)))),5)"
  },
  {
    "input": "input : list = [-2, 2, 1, 2, 0]\noutput : list = [6, 0]",
    "output": "generated_output : list = mul_n(drop([-2, 2, 1, 2, 0],3),3)",
    "io_inp": [
      -2,
      2,
      1,
      2,
      0
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),3)"
  },
  {
    "input": "input : list = [-3, -1, -1, -5]\noutput : list = [-1, -1, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -1, -1, -5])",
    "io_inp": [
      -3,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, 3, -1, -5, -3]\noutput : list = [-8, -7, -6, -4, -2, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_des(sort_des([1, -4, 3, -1, -5, -3]))),3))",
    "io_inp": [
      1,
      -4,
      3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_des(sort_des(input))),3))"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(sub_n(drop([-4, -2, -5],1),-2),27)",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,1),-2),27)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des([0, 4])",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [0, -9]",
    "output": "generated_output : list = sub_n(sort_des(sub_n([4, -5],1)),3)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(input,1)),3)"
  },
  {
    "input": "input : list = [3, -5, -3, -4]\noutput : list = [6, -10]",
    "output": "generated_output : list = mul_n(take([3, -5, -3, -4],2),2)",
    "io_inp": [
      3,
      -5,
      -3,
      -4
    ],
    "io_out": [
      6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),2)"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [-3, 2, 3]",
    "output": "generated_output : list = sort_asc([2, 3, -3])",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-8, -20]",
    "output": "generated_output : list = sort_des(sort_des(take(mul_n(reverse([-2, -5]),4),14)))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(mul_n(reverse(input),4),14)))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(sort_des([-4, -4]))),-2))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [4, 3, 1, -5, -4, -1]\noutput : list = [2, 1, -1, -3, -6, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des([4, 3, 1, -5, -4, -1])),3),3),-2)",
    "io_inp": [
      4,
      3,
      1,
      -5,
      -4,
      -1
    ],
    "io_out": [
      2,
      1,
      -1,
      -3,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des(input)),3),3),-2)"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [7, 7, -8]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(sort_des([-2, -2, 3]),-3),28),-1))",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      7,
      7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(sort_des(input),-3),28),-1))"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [-4, -7, -7]",
    "output": "generated_output : list = sort_des(take(take(add_n([-5, -2, -5],-2),10),15))",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(input,-2),10),15))"
  },
  {
    "input": "input : list = [-2, 5, 3, -3]\noutput : list = [-7, 0, -2, -8]",
    "output": "generated_output : list = add_n([-2, 5, 3, -3],-5)",
    "io_inp": [
      -2,
      5,
      3,
      -3
    ],
    "io_out": [
      -7,
      0,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 2, -5, 1]\noutput : list = [-7, -2, -9, -3]",
    "output": "generated_output : list = sub_n(take(take(add_n(add_n([-3, 2, -5, 1],-3),-3),5),24),-2)",
    "io_inp": [
      -3,
      2,
      -5,
      1
    ],
    "io_out": [
      -7,
      -2,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(add_n(input,-3),-3),5),24),-2)"
  },
  {
    "input": "input : list = [5, 1, -2, 3, 5, -5]\noutput : list = [-4, 6, 4, -1, 2, 6]",
    "output": "generated_output : list = sub_n(reverse([5, 1, -2, 3, 5, -5]),-1)",
    "io_inp": [
      5,
      1,
      -2,
      3,
      5,
      -5
    ],
    "io_out": [
      -4,
      6,
      4,
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [0, -3, 0]\noutput : list = [-5, -2, -2]",
    "output": "generated_output : list = sort_asc(add_n([0, -3, 0],-2))",
    "io_inp": [
      0,
      -3,
      0
    ],
    "io_out": [
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-2))"
  },
  {
    "input": "input : list = [2, 4, 2, -5]\noutput : list = [4, 2, -5]",
    "output": "generated_output : list = mul_n(sort_des(take(drop([2, 4, 2, -5],1),18)),1)",
    "io_inp": [
      2,
      4,
      2,
      -5
    ],
    "io_out": [
      4,
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(drop(input,1),18)),1)"
  },
  {
    "input": "input : list = [-1, 1, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 1, 4],1)",
    "io_inp": [
      -1,
      1,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(take(take([2, 5, 4],1),10),-2)))",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(take(take(input,1),10),-2)))"
  },
  {
    "input": "input : list = [0, 4, -3, -2, 1]\noutput : list = [4, 1, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(drop([0, 4, -3, -2, 1],1)))))",
    "io_inp": [
      0,
      4,
      -3,
      -2,
      1
    ],
    "io_out": [
      4,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [2, -4, 1, 2, 1]\noutput : list = [-32, 8, 8, 16, 16]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n([2, -4, 1, 2, 1],4),1)),2)",
    "io_inp": [
      2,
      -4,
      1,
      2,
      1
    ],
    "io_out": [
      -32,
      8,
      8,
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(input,4),1)),2)"
  },
  {
    "input": "input : list = [-1, -5, -1, 1, 5, 5]\noutput : list = [-2, -10]",
    "output": "generated_output : list = sort_des(take(drop(mul_n(reverse([-1, -5, -1, 1, 5, 5]),2),4),24))",
    "io_inp": [
      -1,
      -5,
      -1,
      1,
      5,
      5
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(mul_n(reverse(input),2),4),24))"
  },
  {
    "input": "input : list = [-3, 4, -4, 3]\noutput : list = [3, -4, 4, -3]",
    "output": "generated_output : list = reverse([-3, 4, -4, 3])",
    "io_inp": [
      -3,
      4,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 5, -5]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(take([-5, -5, 5, -5],2)),5),5))",
    "io_inp": [
      -5,
      -5,
      5,
      -5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(take(input,2)),5),5))"
  },
  {
    "input": "input : list = [5, -5, -3, 1, 4, 5]\noutput : list = [-5, -3, 1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([5, -5, -3, 1, 4, 5])))",
    "io_inp": [
      5,
      -5,
      -3,
      1,
      4,
      5
    ],
    "io_out": [
      -5,
      -3,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [1, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = drop([1, 4, 5],1)",
    "io_inp": [
      1,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 1, 2, 1]\noutput : list = [-4, -2, -2, -1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des([-1, 1, 2, 1]),1)),3)",
    "io_inp": [
      -1,
      1,
      2,
      1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(input),1)),3)"
  },
  {
    "input": "input : list = [1, 1, 0]\noutput : list = [4, 4, 3]",
    "output": "generated_output : list = sub_n(add_n([1, 1, 0],1),-2)",
    "io_inp": [
      1,
      1,
      0
    ],
    "io_out": [
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),-2)"
  },
  {
    "input": "input : list = [-4, 2, 2]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(reverse([-4, 2, 2]),1))",
    "io_inp": [
      -4,
      2,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),1))"
  },
  {
    "input": "input : list = [3, -2, 1]\noutput : list = [4, -1, 2]",
    "output": "generated_output : list = sub_n([3, -2, 1],-1)",
    "io_inp": [
      3,
      -2,
      1
    ],
    "io_out": [
      4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, 3, -4, -1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 3, -4, -1],1)",
    "io_inp": [
      -4,
      3,
      -4,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -3, -1, 2, -3, 5]\noutput : list = [-2, -3, -1]",
    "output": "generated_output : list = take([-2, -3, -1, 2, -3, 5],3)",
    "io_inp": [
      -2,
      -3,
      -1,
      2,
      -3,
      5
    ],
    "io_out": [
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [3, -3, -4]\noutput : list = [1, -5, -6]",
    "output": "generated_output : list = take(sub_n(sort_des([3, -3, -4]),2),4)",
    "io_inp": [
      3,
      -3,
      -4
    ],
    "io_out": [
      1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),2),4)"
  },
  {
    "input": "input : list = [2, 0, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = drop(sort_des(sort_des([2, 0, -5, -5])),2)",
    "io_inp": [
      2,
      0,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(input)),2)"
  },
  {
    "input": "input : list = [-4, -2, -4, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_des([-4, -2, -4, 1]),1)",
    "io_inp": [
      -4,
      -2,
      -4,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),1)"
  },
  {
    "input": "input : list = [-5, 3, -3, 1]\noutput : list = [57, 17, -63, -103]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(mul_n([-5, 3, -3, 1],-4))),-5),3)",
    "io_inp": [
      -5,
      3,
      -3,
      1
    ],
    "io_out": [
      57,
      17,
      -63,
      -103
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(mul_n(input,-4))),-5),3)"
  },
  {
    "input": "input : list = [5, 0, -3, 0, -1, 0]\noutput : list = [-6, -4, -3, -3, -3, 2]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n([5, 0, -3, 0, -1, 0],3))),40)",
    "io_inp": [
      5,
      0,
      -3,
      0,
      -1,
      0
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(input,3))),40)"
  },
  {
    "input": "input : list = [-4, -5, -4, 2, -2]\noutput : list = [-20, -25, -20]",
    "output": "generated_output : list = mul_n(take([-4, -5, -4, 2, -2],3),5)",
    "io_inp": [
      -4,
      -5,
      -4,
      2,
      -2
    ],
    "io_out": [
      -20,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),5)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = sort_asc([1, 1])",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, -2, -2, -2, 4]\noutput : list = [12, 36, 36, 36, 24, 32]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(sub_n([-1, 1, -2, -2, -2, 4],4),3),25),-4))",
    "io_inp": [
      -1,
      1,
      -2,
      -2,
      -2,
      4
    ],
    "io_out": [
      12,
      36,
      36,
      36,
      24,
      32
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(sub_n(input,4),3),25),-4))"
  },
  {
    "input": "input : list = [-3, -3, -3, -5, 0]\noutput : list = [-9, -12, -12, -12, -14]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(sort_asc([-3, -3, -3, -5, 0]),-5),-1)),-3)",
    "io_inp": [
      -3,
      -3,
      -3,
      -5,
      0
    ],
    "io_out": [
      -9,
      -12,
      -12,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(sort_asc(input),-5),-1)),-3)"
  },
  {
    "input": "input : list = [-1, -1, -1, -3]\noutput : list = [-4, -4, -4, -6]",
    "output": "generated_output : list = add_n([-1, -1, -1, -3],-3)",
    "io_inp": [
      -1,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [1, 3]",
    "output": "generated_output : list = take(take(add_n(reverse(mul_n([4, 2],1)),-1),19),13)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = take(take(add_n(reverse(mul_n(input,1)),-1),19),13)"
  },
  {
    "input": "input : list = [2, -2, -3, -2, 3]\noutput : list = [2, -3, -4, -3, 1]",
    "output": "generated_output : list = reverse(sub_n([2, -2, -3, -2, 3],1))",
    "io_inp": [
      2,
      -2,
      -3,
      -2,
      3
    ],
    "io_out": [
      2,
      -3,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [4, -3, 1, 4, 1, -2]\noutput : list = [-12, -12, -3, -3, 6, 9]",
    "output": "generated_output : list = mul_n(sort_des(reverse([4, -3, 1, 4, 1, -2])),-3)",
    "io_inp": [
      4,
      -3,
      1,
      4,
      1,
      -2
    ],
    "io_out": [
      -12,
      -12,
      -3,
      -3,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),-3)"
  },
  {
    "input": "input : list = [-4, -2, -2, -1, 0, -1]\noutput : list = [-3, -4, -4, -5, -5, -7]",
    "output": "generated_output : list = take(add_n(take(take(sort_des([-4, -2, -2, -1, 0, -1]),7),17),-3),20)",
    "io_inp": [
      -4,
      -2,
      -2,
      -1,
      0,
      -1
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -5,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(sort_des(input),7),17),-3),20)"
  },
  {
    "input": "input : list = [-4, -3, 3, 4, 4, -5]\noutput : list = [-29, -24, 6, 11, 11, -34]",
    "output": "generated_output : list = add_n(add_n(add_n(take(mul_n([-4, -3, 3, 4, 4, -5],5),27),-5),1),-5)",
    "io_inp": [
      -4,
      -3,
      3,
      4,
      4,
      -5
    ],
    "io_out": [
      -29,
      -24,
      6,
      11,
      11,
      -34
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(mul_n(input,5),27),-5),1),-5)"
  },
  {
    "input": "input : list = [-3, -3, -1, 0, 3]\noutput : list = [7, 7, 5, 4, 1]",
    "output": "generated_output : list = take(sub_n(take(sub_n(mul_n([-3, -3, -1, 0, 3],-1),1),17),-5),40)",
    "io_inp": [
      -3,
      -3,
      -1,
      0,
      3
    ],
    "io_out": [
      7,
      7,
      5,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(mul_n(input,-1),1),17),-5),40)"
  },
  {
    "input": "input : list = [4, 0, 5, -3, 4, -5]\noutput : list = [4, 3, 3, -1, -4, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(reverse([4, 0, 5, -3, 4, -5]))),1)",
    "io_inp": [
      4,
      0,
      5,
      -3,
      4,
      -5
    ],
    "io_out": [
      4,
      3,
      3,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(reverse(input))),1)"
  },
  {
    "input": "input : list = [2, 4, 3, 2, 1]\noutput : list = [6, 7, 8]",
    "output": "generated_output : list = add_n(reverse(drop([2, 4, 3, 2, 1],2)),5)",
    "io_inp": [
      2,
      4,
      3,
      2,
      1
    ],
    "io_out": [
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,2)),5)"
  },
  {
    "input": "input : list = [4, -3, -5, -5, 0]\noutput : list = [-4, 4, 10, 14, 14]",
    "output": "generated_output : list = mul_n(sub_n(sort_des([4, -3, -5, -5, 0]),2),-2)",
    "io_inp": [
      4,
      -3,
      -5,
      -5,
      0
    ],
    "io_out": [
      -4,
      4,
      10,
      14,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(input),2),-2)"
  },
  {
    "input": "input : list = [4, 0, -3, -3]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(sort_asc(drop(sort_asc([4, 0, -3, -3]),3))),28)",
    "io_inp": [
      4,
      0,
      -3,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(drop(sort_asc(input),3))),28)"
  },
  {
    "input": "input : list = [0, -2, -2, 2, -1]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(drop(reverse([0, -2, -2, 2, -1]),4)),2),-2)",
    "io_inp": [
      0,
      -2,
      -2,
      2,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(drop(reverse(input),4)),2),-2)"
  },
  {
    "input": "input : list = [4, 2, 3, 1, 0, -5]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(sub_n(drop([4, 2, 3, 1, 0, -5],4),-2),24)",
    "io_inp": [
      4,
      2,
      3,
      1,
      0,
      -5
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,4),-2),24)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [-2, -3, 2]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse([3, -2, -1]),2),-2),3)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(input),2),-2),3)"
  },
  {
    "input": "input : list = [-4, 1, 1, 3, 1]\noutput : list = [-5, -15, -5, -5, 20]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-4, 1, 1, 3, 1]),5),-1)",
    "io_inp": [
      -4,
      1,
      1,
      3,
      1
    ],
    "io_out": [
      -5,
      -15,
      -5,
      -5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),5),-1)"
  },
  {
    "input": "input : list = [-5, 1, 4, 1, -3]\noutput : list = [-5, 1, 4, 1, -3]",
    "output": "generated_output : list = reverse(reverse([-5, 1, 4, 1, -3]))",
    "io_inp": [
      -5,
      1,
      4,
      1,
      -3
    ],
    "io_out": [
      -5,
      1,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [4, -2, 5, -4, 4, -3]\noutput : list = [6, 5, 5, -1, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(reverse([4, -2, 5, -4, 4, -3]),4)),5))",
    "io_inp": [
      4,
      -2,
      5,
      -4,
      4,
      -3
    ],
    "io_out": [
      6,
      5,
      5,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(reverse(input),4)),5))"
  },
  {
    "input": "input : list = [3, 3, -3]\noutput : list = [-1, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(add_n(reverse([3, 3, -3]),2)))",
    "io_inp": [
      3,
      3,
      -3
    ],
    "io_out": [
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(reverse(input),2)))"
  },
  {
    "input": "input : list = [1, 3, 0, -2, -1, -2]\noutput : list = [3, 1, 0, -1, -2, -2]",
    "output": "generated_output : list = sort_des(reverse(reverse([1, 3, 0, -2, -1, -2])))",
    "io_inp": [
      1,
      3,
      0,
      -2,
      -1,
      -2
    ],
    "io_out": [
      3,
      1,
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-4, 4, -3]\noutput : list = [0, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_asc([-4, 4, -3])))),4)",
    "io_inp": [
      -4,
      4,
      -3
    ],
    "io_out": [
      0,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [-1, -11, -11]",
    "output": "generated_output : list = take(add_n(mul_n(add_n([5, -5, -5],-3),1),-3),33)",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      -1,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(input,-3),1),-3),33)"
  },
  {
    "input": "input : list = [3, 0, 2, -2, 2]\noutput : list = [60, 40, 20, 20, 10]",
    "output": "generated_output : list = sort_des(reverse(mul_n(mul_n(add_n([3, 0, 2, -2, 2],-4),5),-2)))",
    "io_inp": [
      3,
      0,
      2,
      -2,
      2
    ],
    "io_out": [
      60,
      40,
      20,
      20,
      10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(mul_n(add_n(input,-4),5),-2)))"
  },
  {
    "input": "input : list = [5, -1, -3, 1, -5, 2]\noutput : list = [0, 2, 4, 8]",
    "output": "generated_output : list = sort_asc(take(reverse(sub_n(take([5, -1, -3, 1, -5, 2],4),-3)),22))",
    "io_inp": [
      5,
      -1,
      -3,
      1,
      -5,
      2
    ],
    "io_out": [
      0,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sub_n(take(input,4),-3)),22))"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(sort_asc([1, -1, 1]))),-3),1)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(sort_asc(input))),-3),1)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [10, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_asc([5, -5])))),5)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [2, -2, -2]\noutput : list = [-6, -6, -2]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sub_n([2, -2, -2],4))),35))",
    "io_inp": [
      2,
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sub_n(input,4))),35))"
  },
  {
    "input": "input : list = [-2, -2, -1, 2, -3, -3]\noutput : list = [-3, -3, -2, 1, -4, -4]",
    "output": "generated_output : list = add_n([-2, -2, -1, 2, -3, -3],-1)",
    "io_inp": [
      -2,
      -2,
      -1,
      2,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 1, 2]\noutput : list = [-9, -9, -8]",
    "output": "generated_output : list = add_n(add_n([1, 1, 2],-5),-5)",
    "io_inp": [
      1,
      1,
      2
    ],
    "io_out": [
      -9,
      -9,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),-5)"
  },
  {
    "input": "input : list = [-2, 1, 4, 4, -1, 1]\noutput : list = [6]",
    "output": "generated_output : list = drop(add_n(add_n(take(sort_asc([-2, 1, 4, 4, -1, 1]),11),4),-2),5)",
    "io_inp": [
      -2,
      1,
      4,
      4,
      -1,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(take(sort_asc(input),11),4),-2),5)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [8, -10, 6]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(mul_n([-3, 5, -4],2)),-1)))",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      8,
      -10,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(mul_n(input,2)),-1)))"
  },
  {
    "input": "input : list = [1, -5, -2, 0, 4, -5]\noutput : list = [22, -32, -8, 4, 22, -14]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n(reverse([1, -5, -2, 0, 4, -5]),3),4),29),-2)",
    "io_inp": [
      1,
      -5,
      -2,
      0,
      4,
      -5
    ],
    "io_out": [
      22,
      -32,
      -8,
      4,
      22,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(reverse(input),3),4),29),-2)"
  },
  {
    "input": "input : list = [-3, -1, 2, -5, -5, 3]\noutput : list = [3, 1, -2, 5, 5, -3]",
    "output": "generated_output : list = mul_n(mul_n([-3, -1, 2, -5, -5, 3],1),-1)",
    "io_inp": [
      -3,
      -1,
      2,
      -5,
      -5,
      3
    ],
    "io_out": [
      3,
      1,
      -2,
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,1),-1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_des([3, -1]))),3),-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_des(input))),3),-3)"
  },
  {
    "input": "input : list = [2, 5, -2, -3, -2, -3]\noutput : list = [5, 2, -2, -2, -3, -3]",
    "output": "generated_output : list = sort_des([2, 5, -2, -3, -2, -3])",
    "io_inp": [
      2,
      5,
      -2,
      -3,
      -2,
      -3
    ],
    "io_out": [
      5,
      2,
      -2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, 4, -2, 5, -5]\noutput : list = [-7, -4, -3, -1, 2, 3]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des([1, -1, 4, -2, 5, -5])),12),-2)",
    "io_inp": [
      1,
      -1,
      4,
      -2,
      5,
      -5
    ],
    "io_out": [
      -7,
      -4,
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(input)),12),-2)"
  },
  {
    "input": "input : list = [-5, 2, 1]\noutput : list = [28, 4, 0]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_asc([-5, 2, 1]),-4)),-3),-5)",
    "io_inp": [
      -5,
      2,
      1
    ],
    "io_out": [
      28,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_asc(input),-4)),-3),-5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc([-3, 2])))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, 4, 0, -3, 2, 0]\noutput : list = [2, 0, -6, -6, -10, -14]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(reverse([-4, 4, 0, -3, 2, 0]),2),-2),-2))",
    "io_inp": [
      -4,
      4,
      0,
      -3,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -6,
      -6,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(reverse(input),2),-2),-2))"
  },
  {
    "input": "input : list = [-5, -4, 5]\noutput : list = [-30, -24, 30]",
    "output": "generated_output : list = mul_n(mul_n(take(take(sort_asc([-5, -4, 5]),5),22),3),2)",
    "io_inp": [
      -5,
      -4,
      5
    ],
    "io_out": [
      -30,
      -24,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(sort_asc(input),5),22),3),2)"
  },
  {
    "input": "input : list = [1, -4, -3, -2, -5]\noutput : list = [-3, -2, -5]",
    "output": "generated_output : list = drop([1, -4, -3, -2, -5],2)",
    "io_inp": [
      1,
      -4,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -3, 0, 5, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sort_asc(drop([-3, -3, 0, 5, 1, 2],4))",
    "io_inp": [
      -3,
      -3,
      0,
      5,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,4))"
  },
  {
    "input": "input : list = [4, 4, 4]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(take([4, 4, 4],1)),8)))",
    "io_inp": [
      4,
      4,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(take(input,1)),8)))"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(add_n(drop(reverse(add_n([-3, -1, 3],4)),2),5))",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(reverse(add_n(input,4)),2),5))"
  },
  {
    "input": "input : list = [-3, -5, 3, 2]\noutput : list = [-11, -9, -4, -3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(mul_n([-3, -5, 3, 2],1)),5)),-1)",
    "io_inp": [
      -3,
      -5,
      3,
      2
    ],
    "io_out": [
      -11,
      -9,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(mul_n(input,1)),5)),-1)"
  },
  {
    "input": "input : list = [-4, 0, -5, 1]\noutput : list = [25, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(drop([-4, 0, -5, 1],1),-5),6)))",
    "io_inp": [
      -4,
      0,
      -5,
      1
    ],
    "io_out": [
      25,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(drop(input,1),-5),6)))"
  },
  {
    "input": "input : list = [0, 0, -4, 2, 2, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(take([0, 0, -4, 2, 2, -4],2))",
    "io_inp": [
      0,
      0,
      -4,
      2,
      2,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,2))"
  },
  {
    "input": "input : list = [-2, 5, -4, 4]\noutput : list = [-3, 4, -5, 3]",
    "output": "generated_output : list = add_n(add_n([-2, 5, -4, 4],3),-4)",
    "io_inp": [
      -2,
      5,
      -4,
      4
    ],
    "io_out": [
      -3,
      4,
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,3),-4)"
  },
  {
    "input": "input : list = [5, -2, 1, 2, 0]\noutput : list = [-5, 10, 15]",
    "output": "generated_output : list = take(mul_n(take(sort_des(sub_n([5, -2, 1, 2, 0],4)),31),-5),3)",
    "io_inp": [
      5,
      -2,
      1,
      2,
      0
    ],
    "io_out": [
      -5,
      10,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(sub_n(input,4)),31),-5),3)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(take([2, 5, 1],1),14)),1))",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(take(input,1),14)),1))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-16, -4]",
    "output": "generated_output : list = mul_n(take(sort_asc(sub_n(add_n([-3, 0],-2),-1)),30),4)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sub_n(add_n(input,-2),-1)),30),4)"
  },
  {
    "input": "input : list = [4, 4, 1, 5, -3, 3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = drop([4, 4, 1, 5, -3, 3],4)",
    "io_inp": [
      4,
      4,
      1,
      5,
      -3,
      3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-4, -5, -1, -2, -4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(take([-4, -5, -1, -2, -4],1),5),3)))",
    "io_inp": [
      -4,
      -5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(take(input,1),5),3)))"
  },
  {
    "input": "input : list = [-2, -1, -3, -2]\noutput : list = [3, 2, 2, 1]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des(sort_des([-2, -1, -3, -2])),5),14),1)",
    "io_inp": [
      -2,
      -1,
      -3,
      -2
    ],
    "io_out": [
      3,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(sort_des(input)),5),14),1)"
  },
  {
    "input": "input : list = [-2, 0, 0]\noutput : list = [-8, -6, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sub_n([-2, 0, 0],2))),4))",
    "io_inp": [
      -2,
      0,
      0
    ],
    "io_out": [
      -8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sub_n(input,2))),4))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-7, -7]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(reverse([1, 1]),-4))),4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(reverse(input),-4))),4)"
  },
  {
    "input": "input : list = [-5, -3, 4, 5]\noutput : list = [15, 10, -25, -35]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_des([-5, -3, 4, 5]),2),5)))",
    "io_inp": [
      -5,
      -3,
      4,
      5
    ],
    "io_out": [
      15,
      10,
      -25,
      -35
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_des(input),2),5)))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [7, 4]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(reverse([1, 4])),5),-2))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(reverse(input)),5),-2))"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [-12, -4, 4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_des([4, 2, 0])),-4),-4))",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      -12,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_des(input)),-4),-4))"
  },
  {
    "input": "input : list = [2, 5, 0]\noutput : list = [5, 45, 105]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sort_des([2, 5, 0]),4),5),-5))",
    "io_inp": [
      2,
      5,
      0
    ],
    "io_out": [
      5,
      45,
      105
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(sort_des(input),4),5),-5))"
  },
  {
    "input": "input : list = [2, 2, 2, -5]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(take([2, 2, 2, -5],2),3),5)))",
    "io_inp": [
      2,
      2,
      2,
      -5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(take(input,2),3),5)))"
  },
  {
    "input": "input : list = [-3, 3, 4, 0, -2]\noutput : list = [9, 6, 0, -9]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(sort_asc([-3, 3, 4, 0, -2]),4),-3)))",
    "io_inp": [
      -3,
      3,
      4,
      0,
      -2
    ],
    "io_out": [
      9,
      6,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(sort_asc(input),4),-3)))"
  },
  {
    "input": "input : list = [1, -4, -1, -4, -2, -2]\noutput : list = [4, -4, -8, -8, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(mul_n([1, -4, -1, -4, -2, -2],-2)),35),-2))",
    "io_inp": [
      1,
      -4,
      -1,
      -4,
      -2,
      -2
    ],
    "io_out": [
      4,
      -4,
      -8,
      -8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(mul_n(input,-2)),35),-2))"
  },
  {
    "input": "input : list = [5, -2, 4, -3, -1, 1]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(take([5, -2, 4, -3, -1, 1],1)),-4)),4)",
    "io_inp": [
      5,
      -2,
      4,
      -3,
      -1,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(take(input,1)),-4)),4)"
  },
  {
    "input": "input : list = [3, 1, 5, 0, 0]\noutput : list = [-4, -4, -3, -1, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sub_n([3, 1, 5, 0, 0],1),-2)),-5))",
    "io_inp": [
      3,
      1,
      5,
      0,
      0
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sub_n(input,1),-2)),-5))"
  },
  {
    "input": "input : list = [1, 1, 2, 0]\noutput : list = [5, 4, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sub_n([1, 1, 2, 0],3),-5))),-1)",
    "io_inp": [
      1,
      1,
      2,
      0
    ],
    "io_out": [
      5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sub_n(input,3),-5))),-1)"
  },
  {
    "input": "input : list = [-5, 1, -5, -4, -5, 4]\noutput : list = [-20, -5, 20, 25, 25, 25]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(sort_asc([-5, 1, -5, -4, -5, 4])),-5)),58)",
    "io_inp": [
      -5,
      1,
      -5,
      -4,
      -5,
      4
    ],
    "io_out": [
      -20,
      -5,
      20,
      25,
      25,
      25
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(sort_asc(input)),-5)),58)"
  },
  {
    "input": "input : list = [2, 3, -1]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take([2, 3, -1],1),5)),-2)",
    "io_inp": [
      2,
      3,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(input,1),5)),-2)"
  },
  {
    "input": "input : list = [1, 2, 1, 0, -5, 5]\noutput : list = [-8, -3, -2, -2]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des([1, 2, 1, 0, -5, 5])),4),3)",
    "io_inp": [
      1,
      2,
      1,
      0,
      -5,
      5
    ],
    "io_out": [
      -8,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(input)),4),3)"
  },
  {
    "input": "input : list = [-3, -5, -3, -1]\noutput : list = [-6, -4, -2]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(drop([-3, -5, -3, -1],1),-1))),-2)",
    "io_inp": [
      -3,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(drop(input,1),-1))),-2)"
  },
  {
    "input": "input : list = [3, -2, 4, -2, 4]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(take(take([3, -2, 4, -2, 4],1),14),4)",
    "io_inp": [
      3,
      -2,
      4,
      -2,
      4
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,1),14),4)"
  },
  {
    "input": "input : list = [4, -4, -5, 1]\noutput : list = [8, 2, -8, -10]",
    "output": "generated_output : list = sort_des(take(mul_n([4, -4, -5, 1],2),15))",
    "io_inp": [
      4,
      -4,
      -5,
      1
    ],
    "io_out": [
      8,
      2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,2),15))"
  },
  {
    "input": "input : list = [-2, 0, -5]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(sub_n([-2, 0, -5],1),2))",
    "io_inp": [
      -2,
      0,
      -5
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(input,1),2))"
  },
  {
    "input": "input : list = [1, -1, -5, 5, 2, 5]\noutput : list = [-3, 3, 15, -15, -6, -15]",
    "output": "generated_output : list = mul_n([1, -1, -5, 5, 2, 5],-3)",
    "io_inp": [
      1,
      -1,
      -5,
      5,
      2,
      5
    ],
    "io_out": [
      -3,
      3,
      15,
      -15,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(sub_n(take(take(mul_n([4, 4],-1),9),8),-3))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(mul_n(input,-1),9),8),-3))"
  },
  {
    "input": "input : list = [3, 5, -5, 0, 5]\noutput : list = [-5, 0, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([3, 5, -5, 0, 5])",
    "io_inp": [
      3,
      5,
      -5,
      0,
      5
    ],
    "io_out": [
      -5,
      0,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -2, 2, -3, -4, -1]\noutput : list = [-100, 40, -40, 60, 80, 20]",
    "output": "generated_output : list = take(mul_n(mul_n([5, -2, 2, -3, -4, -1],-5),4),7)",
    "io_inp": [
      5,
      -2,
      2,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -100,
      40,
      -40,
      60,
      80,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-5),4),7)"
  },
  {
    "input": "input : list = [1, 2, -2, 3, 2]\noutput : list = [-4, -3, -7, -2, -3]",
    "output": "generated_output : list = add_n([1, 2, -2, 3, 2],-5)",
    "io_inp": [
      1,
      2,
      -2,
      3,
      2
    ],
    "io_out": [
      -4,
      -3,
      -7,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 0, -5, -2, -5]\noutput : list = [0, -2, -2, -5, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(sort_des([-2, 0, -5, -2, -5])))),9)",
    "io_inp": [
      -2,
      0,
      -5,
      -2,
      -5
    ],
    "io_out": [
      0,
      -2,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(sort_des(input)))),9)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-6, 24]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(add_n([-4, 1],1),-3),5),-2),-2)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -6,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(add_n(input,1),-3),5),-2),-2)"
  },
  {
    "input": "input : list = [-4, -4, -1, -1, -2, 3]\noutput : list = [1, 1, 4, 4, 3, 8]",
    "output": "generated_output : list = add_n(add_n(add_n([-4, -4, -1, -1, -2, 3],5),4),-4)",
    "io_inp": [
      -4,
      -4,
      -1,
      -1,
      -2,
      3
    ],
    "io_out": [
      1,
      1,
      4,
      4,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,5),4),-4)"
  },
  {
    "input": "input : list = [5, 2, 3, -2, -5]\noutput : list = [30, 21, 9, 6, 0]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc(sort_asc([5, 2, 3, -2, -5])),-5),-3),34)",
    "io_inp": [
      5,
      2,
      3,
      -2,
      -5
    ],
    "io_out": [
      30,
      21,
      9,
      6,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(sort_asc(input)),-5),-3),34)"
  },
  {
    "input": "input : list = [5, 4, -1, 1, 5]\noutput : list = [10, 9, 4, 6, 10]",
    "output": "generated_output : list = add_n([5, 4, -1, 1, 5],5)",
    "io_inp": [
      5,
      4,
      -1,
      1,
      5
    ],
    "io_out": [
      10,
      9,
      4,
      6,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [2, 1, 0, -3, -1]\noutput : list = [8, 6, 4, 2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des([2, 1, 0, -3, -1]),-2),2)))",
    "io_inp": [
      2,
      1,
      0,
      -3,
      -1
    ],
    "io_out": [
      8,
      6,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sub_n(sort_des(input),-2),2)))"
  },
  {
    "input": "input : list = [4, -2, 4, 1, -1]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take([4, -2, 4, 1, -1],1)),-3))",
    "io_inp": [
      4,
      -2,
      4,
      1,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(input,1)),-3))"
  },
  {
    "input": "input : list = [3, 1, -1, -4]\noutput : list = [0, 3, 5, 7]",
    "output": "generated_output : list = add_n(sub_n(reverse([3, 1, -1, -4]),1),5)",
    "io_inp": [
      3,
      1,
      -1,
      -4
    ],
    "io_out": [
      0,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),1),5)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [18, 14]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(reverse(reverse([-5, -3]))),4),-2)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      18,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(reverse(reverse(input))),4),-2)"
  },
  {
    "input": "input : list = [3, -1, -5, -3]\noutput : list = [-5, -3, -1, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(sort_asc([3, -1, -5, -3]),22))))",
    "io_inp": [
      3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(sort_asc(input),22))))"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [0, 3, 8]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(reverse([5, 0, -3]),-3),1),1),10)",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      0,
      3,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(reverse(input),-3),1),1),10)"
  },
  {
    "input": "input : list = [0, 2, 1, -3]\noutput : list = [-8, -4, -3, -5]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(sub_n([0, 2, 1, -3],-3)),-4),4),15)",
    "io_inp": [
      0,
      2,
      1,
      -3
    ],
    "io_out": [
      -8,
      -4,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(sub_n(input,-3)),-4),4),15)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-6, 12]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sort_asc([4, -2])),3)),1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_des(sort_asc(input)),3)),1)"
  },
  {
    "input": "input : list = [1, 2, 0, 3, 0, 3]\noutput : list = [0, 0, -2, -4, -6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(drop(reverse([1, 2, 0, 3, 0, 3]),1))),-2)",
    "io_inp": [
      1,
      2,
      0,
      3,
      0,
      3
    ],
    "io_out": [
      0,
      0,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(drop(reverse(input),1))),-2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = mul_n([1, 0],3)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, -2, -1, -4, 3]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = take(take([-3, -2, -1, -4, 3],3),23)",
    "io_inp": [
      -3,
      -2,
      -1,
      -4,
      3
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(take(input,3),23)"
  },
  {
    "input": "input : list = [5, 3, 5, 3, -1, -4]\noutput : list = [-5, -3]",
    "output": "generated_output : list = mul_n(take([5, 3, 5, 3, -1, -4],2),-1)",
    "io_inp": [
      5,
      3,
      5,
      3,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-1)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-12, 0]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_des([-1, 1]),-2),3),-2),-4)",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -12,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_des(input),-2),3),-2),-4)"
  },
  {
    "input": "input : list = [-1, 1, 2, -2]\noutput : list = [-5, -3, -2, -6]",
    "output": "generated_output : list = sub_n(sub_n([-1, 1, 2, -2],2),2)",
    "io_inp": [
      -1,
      1,
      2,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),2)"
  },
  {
    "input": "input : list = [-2, 1, -2]\noutput : list = [-4, -16]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(drop([-2, 1, -2],1),1),-1),-1),-4)",
    "io_inp": [
      -2,
      1,
      -2
    ],
    "io_out": [
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(drop(input,1),1),-1),-1),-4)"
  },
  {
    "input": "input : list = [-2, 1, 2, 5]\noutput : list = [2, -1, -2, -5]",
    "output": "generated_output : list = sort_des(add_n([-2, 1, 2, 5],-3))",
    "io_inp": [
      -2,
      1,
      2,
      5
    ],
    "io_out": [
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [-1, -4, 5, 3, -1]\noutput : list = [-1, 2, 2, 6, 8]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(reverse([-1, -4, 5, 3, -1]),-3))),45)",
    "io_inp": [
      -1,
      -4,
      5,
      3,
      -1
    ],
    "io_out": [
      -1,
      2,
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(reverse(input),-3))),45)"
  },
  {
    "input": "input : list = [0, 3, -2, 2, -4, 0]\noutput : list = [1, -3, 3, -1, 4, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(add_n([0, 3, -2, 2, -4, 0],-4),16)),4),-1)",
    "io_inp": [
      0,
      3,
      -2,
      2,
      -4,
      0
    ],
    "io_out": [
      1,
      -3,
      3,
      -1,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(add_n(input,-4),16)),4),-1)"
  },
  {
    "input": "input : list = [-2, -3, -1, -1]\noutput : list = [-8, -13, -3, -3]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(mul_n([-2, -3, -1, -1],5)),-2),12))",
    "io_inp": [
      -2,
      -3,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -13,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(mul_n(input,5)),-2),12))"
  },
  {
    "input": "input : list = [5, -2, -5, -5]\noutput : list = [-5, -5, -2, 5]",
    "output": "generated_output : list = sort_asc([5, -2, -5, -5])",
    "io_inp": [
      5,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, 5, -4, 2]\noutput : list = [0, 3]",
    "output": "generated_output : list = add_n(add_n(take(drop(sort_asc([-3, -1, 5, -4, 2]),3),24),-5),3)",
    "io_inp": [
      -3,
      -1,
      5,
      -4,
      2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(drop(sort_asc(input),3),24),-5),3)"
  },
  {
    "input": "input : list = [-5, 3, 2, 1, 1]\noutput : list = [-15, 3, 3, 6, 9]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(reverse([-5, 3, 2, 1, 1]))),3),1)",
    "io_inp": [
      -5,
      3,
      2,
      1,
      1
    ],
    "io_out": [
      -15,
      3,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(reverse(input))),3),1)"
  },
  {
    "input": "input : list = [1, 5, 0, 1, 0, -5]\noutput : list = [-6, 2, 2, 4, 4, 14]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des([1, 5, 0, 1, 0, -5]),19)),2),-2)",
    "io_inp": [
      1,
      5,
      0,
      1,
      0,
      -5
    ],
    "io_out": [
      -6,
      2,
      2,
      4,
      4,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(sort_des(input),19)),2),-2)"
  },
  {
    "input": "input : list = [-3, -5, 0, 2, 3, 5]\noutput : list = [25]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(sort_asc([-3, -5, 0, 2, 3, 5])),-5),-1),1)",
    "io_inp": [
      -3,
      -5,
      0,
      2,
      3,
      5
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(sort_asc(input)),-5),-1),1)"
  },
  {
    "input": "input : list = [-4, 2, 5, 0]\noutput : list = [20, 0, -10, -25]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n(mul_n([-4, 2, 5, 0],-5),1)),31))",
    "io_inp": [
      -4,
      2,
      5,
      0
    ],
    "io_out": [
      20,
      0,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(mul_n(input,-5),1)),31))"
  },
  {
    "input": "input : list = [-3, 4, -1, 5, 3]\noutput : list = [-2, 5, 0, 6, 4]",
    "output": "generated_output : list = reverse(reverse(take(take(add_n([-3, 4, -1, 5, 3],1),23),13)))",
    "io_inp": [
      -3,
      4,
      -1,
      5,
      3
    ],
    "io_out": [
      -2,
      5,
      0,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(add_n(input,1),23),13)))"
  },
  {
    "input": "input : list = [0, 3, 3, -3]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 3, 3, -3],1)",
    "io_inp": [
      0,
      3,
      3,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(sub_n(add_n(reverse(sort_asc([-3, -4])),5),1),33)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(reverse(sort_asc(input)),5),1),33)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [9, 11, 13]",
    "output": "generated_output : list = sub_n(reverse(sub_n([5, 3, 1],-4)),-4)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      9,
      11,
      13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,-4)),-4)"
  },
  {
    "input": "input : list = [-5, 2, 0, 2, -2, 2]\noutput : list = [-8, 8, -8, 0, -8, 20]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-5, 2, 0, 2, -2, 2]),1),-4)",
    "io_inp": [
      -5,
      2,
      0,
      2,
      -2,
      2
    ],
    "io_out": [
      -8,
      8,
      -8,
      0,
      -8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),1),-4)"
  },
  {
    "input": "input : list = [-4, 4, -1, -1]\noutput : list = [13, 3, 3, -3]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc([-4, 4, -1, -1])),2),-5)",
    "io_inp": [
      -4,
      4,
      -1,
      -1
    ],
    "io_out": [
      13,
      3,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(input)),2),-5)"
  },
  {
    "input": "input : list = [-3, 3, 2, -1, -3, -1]\noutput : list = [3, 2, -1, -1, -3, -3]",
    "output": "generated_output : list = mul_n(sort_des(reverse([-3, 3, 2, -1, -3, -1])),1)",
    "io_inp": [
      -3,
      3,
      2,
      -1,
      -3,
      -1
    ],
    "io_out": [
      3,
      2,
      -1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(add_n(take(mul_n(sub_n([-4, -3],-2),2),24),2),4)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sub_n(input,-2),2),24),2),4)"
  },
  {
    "input": "input : list = [5, 5, 4, 2, 1]\noutput : list = [6, 5, 3, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sub_n(drop([5, 5, 4, 2, 1],1),-4))),3)",
    "io_inp": [
      5,
      5,
      4,
      2,
      1
    ],
    "io_out": [
      6,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sub_n(drop(input,1),-4))),3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_des([-1, -3]),3))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [0, 4, -4, -4]\noutput : list = [-11]",
    "output": "generated_output : list = sub_n(take(sub_n(drop(add_n([0, 4, -4, -4],1),3),4),25),4)",
    "io_inp": [
      0,
      4,
      -4,
      -4
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(drop(add_n(input,1),3),4),25),4)"
  },
  {
    "input": "input : list = [1, 5, -3]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = reverse(sort_des([1, 5, -3]))",
    "io_inp": [
      1,
      5,
      -3
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [2, 2, 1, -1]\noutput : list = [-2, -2]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(take([2, 2, 1, -1],2),1),-5)))",
    "io_inp": [
      2,
      2,
      1,
      -1
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(take(input,2),1),-5)))"
  },
  {
    "input": "input : list = [-4, -3, -3, 4, 3, -4]\noutput : list = [-3, -2, -2, 5, 4, -3]",
    "output": "generated_output : list = add_n([-4, -3, -3, 4, 3, -4],1)",
    "io_inp": [
      -4,
      -3,
      -3,
      4,
      3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -2,
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [4, 7]",
    "output": "generated_output : list = take(take(add_n(sub_n(reverse([-1, -4]),-4),4),32),29)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(reverse(input),-4),4),32),29)"
  },
  {
    "input": "input : list = [1, 3, -1, 4, -3]\noutput : list = [15, 5, -5, -15, -20]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(sort_des([1, 3, -1, 4, -3]),-5))))",
    "io_inp": [
      1,
      3,
      -1,
      4,
      -3
    ],
    "io_out": [
      15,
      5,
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [-2, 3, -3, -2, 4]\noutput : list = [10, 5, 5, -20, -25]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sort_asc([-2, 3, -3, -2, 4])),-5)),-5)",
    "io_inp": [
      -2,
      3,
      -3,
      -2,
      4
    ],
    "io_out": [
      10,
      5,
      5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(sort_asc(input)),-5)),-5)"
  },
  {
    "input": "input : list = [-5, 4, -1, -4]\noutput : list = [14, -22, -2, 10]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sub_n([-5, 4, -1, -4],3),4),-4),-2),44)",
    "io_inp": [
      -5,
      4,
      -1,
      -4
    ],
    "io_out": [
      14,
      -22,
      -2,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sub_n(input,3),4),-4),-2),44)"
  },
  {
    "input": "input : list = [-4, -5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = drop([-4, -5, 1],1)",
    "io_inp": [
      -4,
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-9, 1]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(mul_n([-5, 5],-1),3)),2),-1)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(mul_n(input,-1),3)),2),-1)"
  },
  {
    "input": "input : list = [2, -1, 5]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_des([2, -1, 5])))))",
    "io_inp": [
      2,
      -1,
      5
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [3, -5, -1, 0]\noutput : list = [-3, 1, 2, 5]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(reverse([3, -5, -1, 0])))),2)",
    "io_inp": [
      3,
      -5,
      -1,
      0
    ],
    "io_out": [
      -3,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(reverse(input)))),2)"
  },
  {
    "input": "input : list = [-5, -4, -2, 0]\noutput : list = [-5, -4, -2, 0]",
    "output": "generated_output : list = sort_asc([-5, -4, -2, 0])",
    "io_inp": [
      -5,
      -4,
      -2,
      0
    ],
    "io_out": [
      -5,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [-1, -3, -5]",
    "output": "generated_output : list = sub_n([0, -2, -4],1)",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(take(add_n(reverse(sort_asc([4, 4])),-5),32))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(sort_asc(input)),-5),32))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(sort_asc([-2, -4]),12),-2),-3))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(sort_asc(input),12),-2),-3))"
  },
  {
    "input": "input : list = [3, 1, -2, 3, 2, 3]\noutput : list = [15, 5, -10, 15, 10, 15]",
    "output": "generated_output : list = mul_n([3, 1, -2, 3, 2, 3],5)",
    "io_inp": [
      3,
      1,
      -2,
      3,
      2,
      3
    ],
    "io_out": [
      15,
      5,
      -10,
      15,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-2, 4, 1, -5, 1]\noutput : list = [16, 4, 4, -8, -20]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(reverse([-2, 4, 1, -5, 1]),-4),-1),30))",
    "io_inp": [
      -2,
      4,
      1,
      -5,
      1
    ],
    "io_out": [
      16,
      4,
      4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(reverse(input),-4),-1),30))"
  },
  {
    "input": "input : list = [0, 4, -2, -5]\noutput : list = [-3, 1, -5, -8]",
    "output": "generated_output : list = add_n([0, 4, -2, -5],-3)",
    "io_inp": [
      0,
      4,
      -2,
      -5
    ],
    "io_out": [
      -3,
      1,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = drop([-3, 1, 3],1)",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -3, -2]\noutput : list = [9, -6, -6, -9]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse([-2, 3, -3, -2]),3),30))",
    "io_inp": [
      -2,
      3,
      -3,
      -2
    ],
    "io_out": [
      9,
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(input),3),30))"
  },
  {
    "input": "input : list = [3, 3, 0]\noutput : list = [4, 1, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n([3, 3, 0],-1)),-1),-5)",
    "io_inp": [
      3,
      3,
      0
    ],
    "io_out": [
      4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(input,-1)),-1),-5)"
  },
  {
    "input": "input : list = [3, 5, 0, -3, -5]\noutput : list = [11, 6, 3, 1]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(drop([3, 5, 0, -3, -5],1)),1)),-5)",
    "io_inp": [
      3,
      5,
      0,
      -3,
      -5
    ],
    "io_out": [
      11,
      6,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(drop(input,1)),1)),-5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [6, 3]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sub_n(reverse([2, 5]),3),4)),1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sub_n(reverse(input),3),4)),1)"
  },
  {
    "input": "input : list = [5, -4, -3, 3, -2]\noutput : list = [2, 0, -5, -6, -7]",
    "output": "generated_output : list = sub_n(take(take(sort_des(reverse([5, -4, -3, 3, -2])),24),28),3)",
    "io_inp": [
      5,
      -4,
      -3,
      3,
      -2
    ],
    "io_out": [
      2,
      0,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(reverse(input)),24),28),3)"
  },
  {
    "input": "input : list = [0, 3, -3, 2, -1, 5]\noutput : list = [7, 5, 4, 2, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(reverse([0, 3, -3, 2, -1, 5]),4)),-2))",
    "io_inp": [
      0,
      3,
      -3,
      2,
      -1,
      5
    ],
    "io_out": [
      7,
      5,
      4,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(reverse(input),4)),-2))"
  },
  {
    "input": "input : list = [2, 1, -1, 4, 3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 1, -1, 4, 3],1)",
    "io_inp": [
      2,
      1,
      -1,
      4,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-11, -16]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(sub_n([-3, 2],5),-3)),34),-5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -11,
      -16
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(sub_n(input,5),-3)),34),-5)"
  },
  {
    "input": "input : list = [-4, 2, 2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(drop([-4, 2, 2],1),3),1)),-5)",
    "io_inp": [
      -4,
      2,
      2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(drop(input,1),3),1)),-5)"
  },
  {
    "input": "input : list = [-5, 4, 2, -4, 4]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(sub_n(take([-5, 4, 2, -4, 4],1),-1),2)",
    "io_inp": [
      -5,
      4,
      2,
      -4,
      4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),-1),2)"
  },
  {
    "input": "input : list = [4, -3, -1]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(take([4, -3, -1],1),-4)),-1))",
    "io_inp": [
      4,
      -3,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(take(input,1),-4)),-1))"
  },
  {
    "input": "input : list = [3, -3, -5, 5, 1, 4]\noutput : list = [-5, -3, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(sort_asc([3, -3, -5, 5, 1, 4]))),31))",
    "io_inp": [
      3,
      -3,
      -5,
      5,
      1,
      4
    ],
    "io_out": [
      -5,
      -3,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(sort_asc(input))),31))"
  },
  {
    "input": "input : list = [-1, 5, -3, 4, -3, -1]\noutput : list = [-10, -4, -12, -5, -12, -10]",
    "output": "generated_output : list = reverse(reverse(add_n(sub_n([-1, 5, -3, 4, -3, -1],4),-5)))",
    "io_inp": [
      -1,
      5,
      -3,
      4,
      -3,
      -1
    ],
    "io_out": [
      -10,
      -4,
      -12,
      -5,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sub_n(input,4),-5)))"
  },
  {
    "input": "input : list = [-2, -1, 5, -3, 5, -3]\noutput : list = [42, 42, 6, -6, -6]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(drop(sub_n([-2, -1, 5, -3, 5, -3],-2),1),-3)),-2)",
    "io_inp": [
      -2,
      -1,
      5,
      -3,
      5,
      -3
    ],
    "io_out": [
      42,
      42,
      6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(drop(sub_n(input,-2),1),-3)),-2)"
  },
  {
    "input": "input : list = [2, 5, 4]\noutput : list = [-4, -10, -8]",
    "output": "generated_output : list = reverse(mul_n(take(reverse([2, 5, 4]),6),-2))",
    "io_inp": [
      2,
      5,
      4
    ],
    "io_out": [
      -4,
      -10,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(reverse(input),6),-2))"
  },
  {
    "input": "input : list = [4, -1, -4, 5, -1]\noutput : list = [48, -24, 84]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(reverse([4, -1, -4, 5, -1]),3),3),4),-3)",
    "io_inp": [
      4,
      -1,
      -4,
      5,
      -1
    ],
    "io_out": [
      48,
      -24,
      84
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(reverse(input),3),3),4),-3)"
  },
  {
    "input": "input : list = [-5, 2, -1, 4, -2, -1]\noutput : list = [-23, -13, 2, 2, 7, 22]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n([-5, 2, -1, 4, -2, -1],-5)),-1),-4)",
    "io_inp": [
      -5,
      2,
      -1,
      4,
      -2,
      -1
    ],
    "io_out": [
      -23,
      -13,
      2,
      2,
      7,
      22
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(input,-5)),-1),-4)"
  },
  {
    "input": "input : list = [5, 0, 3, 2, 2]\noutput : list = [17, 2, 11, 8, 8]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(reverse([5, 0, 3, 2, 2]),3),9),-2))",
    "io_inp": [
      5,
      0,
      3,
      2,
      2
    ],
    "io_out": [
      17,
      2,
      11,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(reverse(input),3),9),-2))"
  },
  {
    "input": "input : list = [-5, -5, 1, 5, 2, -4]\noutput : list = [-15, -6, -3, 12, 15, 15]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(sort_des([-5, -5, 1, 5, 2, -4])),24),-3))",
    "io_inp": [
      -5,
      -5,
      1,
      5,
      2,
      -4
    ],
    "io_out": [
      -15,
      -6,
      -3,
      12,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(sort_des(input)),24),-3))"
  },
  {
    "input": "input : list = [4, -2, 2, -5]\noutput : list = [1, -5, -1, -8]",
    "output": "generated_output : list = add_n([4, -2, 2, -5],-3)",
    "io_inp": [
      4,
      -2,
      2,
      -5
    ],
    "io_out": [
      1,
      -5,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [1, -1, 5, -3, -4]\noutput : list = [-4, -3, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(drop([1, -1, 5, -3, -4],1)))))",
    "io_inp": [
      1,
      -1,
      5,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [5, -7, -11]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sub_n(mul_n([3, -3, -5],2),1))))",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      5,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sub_n(mul_n(input,2),1))))"
  },
  {
    "input": "input : list = [0, 4, 2, -4]\noutput : list = [6, 4, 2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([0, 4, 2, -4]),-2))",
    "io_inp": [
      0,
      4,
      2,
      -4
    ],
    "io_out": [
      6,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-2))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [7, 10]",
    "output": "generated_output : list = take(add_n(mul_n([2, 3],3),1),5)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      7,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,3),1),5)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = reverse(take(sort_asc(add_n(sort_asc([-3, -3]),2)),19))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(add_n(sort_asc(input),2)),19))"
  },
  {
    "input": "input : list = [4, 3, 0, -5, 5, 2]\noutput : list = [7, 6, 5, 4, 2, -3]",
    "output": "generated_output : list = reverse(sort_asc(add_n([4, 3, 0, -5, 5, 2],2)))",
    "io_inp": [
      4,
      3,
      0,
      -5,
      5,
      2
    ],
    "io_out": [
      7,
      6,
      5,
      4,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,2)))"
  },
  {
    "input": "input : list = [0, -5, 1, 1, 3, 2]\noutput : list = [6, -4, -6, -6, -8, -10]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(sort_asc([0, -5, 1, 1, 3, 2]),-2)),-4),7)",
    "io_inp": [
      0,
      -5,
      1,
      1,
      3,
      2
    ],
    "io_out": [
      6,
      -4,
      -6,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(sort_asc(input),-2)),-4),7)"
  },
  {
    "input": "input : list = [2, -2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(drop([2, -2, 2],1),2)",
    "io_inp": [
      2,
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(drop(input,1),2)"
  },
  {
    "input": "input : list = [5, 1, 4, -3, 4, -3]\noutput : list = [-5, -9, -6, -13, -6, -13]",
    "output": "generated_output : list = add_n(take(reverse(reverse(add_n([5, 1, 4, -3, 4, -3],-5))),28),-5)",
    "io_inp": [
      5,
      1,
      4,
      -3,
      4,
      -3
    ],
    "io_out": [
      -5,
      -9,
      -6,
      -13,
      -6,
      -13
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(add_n(input,-5))),28),-5)"
  },
  {
    "input": "input : list = [4, -1, -2, -5, 0]\noutput : list = [4, 0, -1, -2, -5]",
    "output": "generated_output : list = take(sort_des([4, -1, -2, -5, 0]),7)",
    "io_inp": [
      4,
      -1,
      -2,
      -5,
      0
    ],
    "io_out": [
      4,
      0,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [4, -5, 5, -5, 0, 4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(take([4, -5, 5, -5, 0, 4],1))",
    "io_inp": [
      4,
      -5,
      5,
      -5,
      0,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-4, -1, -5, 1, 5]\noutput : list = [-5, -4, -1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(sort_des([-4, -1, -5, 1, 5]),24))))",
    "io_inp": [
      -4,
      -1,
      -5,
      1,
      5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(sort_des(input),24))))"
  },
  {
    "input": "input : list = [-2, -4, 1, -3, -2, -3]\noutput : list = [-4, -3, -3, -2, -2, 1]",
    "output": "generated_output : list = sort_asc([-2, -4, 1, -3, -2, -3])",
    "io_inp": [
      -2,
      -4,
      1,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, -4, -4, 1]\noutput : list = [16, 16, 13, 1, -11]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-3, 5, -4, -4, 1]),-3),-4)",
    "io_inp": [
      -3,
      5,
      -4,
      -4,
      1
    ],
    "io_out": [
      16,
      16,
      13,
      1,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),-3),-4)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(add_n(take(sort_des([-1, 4]),12),1))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(sort_des(input),12),1))"
  },
  {
    "input": "input : list = [-1, 5, -1, 0, -1]\noutput : list = [24, 24]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc(add_n([-1, 5, -1, 0, -1],-5)),2),-4))",
    "io_inp": [
      -1,
      5,
      -1,
      0,
      -1
    ],
    "io_out": [
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(add_n(input,-5)),2),-4))"
  },
  {
    "input": "input : list = [4, 3, -4, -3]\noutput : list = [-12, -16]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take([4, 3, -4, -3],2),2))),-2)",
    "io_inp": [
      4,
      3,
      -4,
      -3
    ],
    "io_out": [
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take(input,2),2))),-2)"
  },
  {
    "input": "input : list = [0, 2, 1, 5]\noutput : list = [0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([0, 2, 1, 5])",
    "io_inp": [
      0,
      2,
      1,
      5
    ],
    "io_out": [
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, -4, -5, -1]\noutput : list = [4, 4, 3, 0, -1]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des([0, 0, -4, -5, -1])),-4),28))",
    "io_inp": [
      0,
      0,
      -4,
      -5,
      -1
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_des(input)),-4),28))"
  },
  {
    "input": "input : list = [-4, -5, -1, 2, 2]\noutput : list = [7, 7, 4, 0, 1]",
    "output": "generated_output : list = reverse(take(sub_n([-4, -5, -1, 2, 2],-5),6))",
    "io_inp": [
      -4,
      -5,
      -1,
      2,
      2
    ],
    "io_out": [
      7,
      7,
      4,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,-5),6))"
  },
  {
    "input": "input : list = [2, 2, 3, 0]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(drop(sort_asc([2, 2, 3, 0]),3))),-5)",
    "io_inp": [
      2,
      2,
      3,
      0
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(drop(sort_asc(input),3))),-5)"
  },
  {
    "input": "input : list = [-1, 2, -4, -3, -1]\noutput : list = [-1, 2, -4]",
    "output": "generated_output : list = take([-1, 2, -4, -3, -1],3)",
    "io_inp": [
      -1,
      2,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, 1, 5, -4, -3, 3]\noutput : list = [6, 4, 3, 2, -2, -3]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(sub_n([2, 1, 5, -4, -3, 3],-1))),24))",
    "io_inp": [
      2,
      1,
      5,
      -4,
      -3,
      3
    ],
    "io_out": [
      6,
      4,
      3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(sub_n(input,-1))),24))"
  },
  {
    "input": "input : list = [2, 3, 0, -1]\noutput : list = [2, 1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des([2, 3, 0, -1]),-1))))",
    "io_inp": [
      2,
      3,
      0,
      -1
    ],
    "io_out": [
      2,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-3, -8]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(sort_asc([1, -4]),5),-1),2))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(sort_asc(input),5),-1),2))"
  },
  {
    "input": "input : list = [4, 4, -1, -3]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 4, -1, -3],1)",
    "io_inp": [
      4,
      4,
      -1,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [-11, 9, -1]",
    "output": "generated_output : list = add_n(mul_n([5, -5, 0],-2),-1)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      -11,
      9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),-1)"
  },
  {
    "input": "input : list = [5, -5, -5, 5, -3]\noutput : list = [-15, 15, 15, -15, 9]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(mul_n([5, -5, -5, 5, -3],-1),1),1),28),3)",
    "io_inp": [
      5,
      -5,
      -5,
      5,
      -3
    ],
    "io_out": [
      -15,
      15,
      15,
      -15,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(mul_n(input,-1),1),1),28),3)"
  },
  {
    "input": "input : list = [1, 1, 3, -5, 5, 4]\noutput : list = [1, 1, 3, -5]",
    "output": "generated_output : list = take([1, 1, 3, -5, 5, 4],4)",
    "io_inp": [
      1,
      1,
      3,
      -5,
      5,
      4
    ],
    "io_out": [
      1,
      1,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [15, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(mul_n(reverse([2, -4]),-4))),1)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      15,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(mul_n(reverse(input),-4))),1)"
  },
  {
    "input": "input : list = [-5, 1, 2, 5]\noutput : list = [-10, -4, -3, 0]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(take(sort_asc([-5, 1, 2, 5]),21)),5))",
    "io_inp": [
      -5,
      1,
      2,
      5
    ],
    "io_out": [
      -10,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(take(sort_asc(input),21)),5))"
  },
  {
    "input": "input : list = [3, 2, 0]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(take([3, 2, 0],1),1))))",
    "io_inp": [
      3,
      2,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(take(input,1),1))))"
  },
  {
    "input": "input : list = [4, -4, -2, -3]\noutput : list = [-9, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(take([4, -4, -2, -3],2),9)),5),7)",
    "io_inp": [
      4,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -9,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(take(input,2),9)),5),7)"
  },
  {
    "input": "input : list = [3, 4, -4, 1]\noutput : list = [0, -5, 35, 10]",
    "output": "generated_output : list = mul_n(add_n([3, 4, -4, 1],-3),-5)",
    "io_inp": [
      3,
      4,
      -4,
      1
    ],
    "io_out": [
      0,
      -5,
      35,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-3),-5)"
  },
  {
    "input": "input : list = [0, 4, -4, 4]\noutput : list = [-3, -3, 1, 5]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sub_n([0, 4, -4, 4],1)),-1)))",
    "io_inp": [
      0,
      4,
      -4,
      4
    ],
    "io_out": [
      -3,
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sub_n(input,1)),-1)))"
  },
  {
    "input": "input : list = [-3, -1, 2, -5]\noutput : list = [2, -5]",
    "output": "generated_output : list = sort_des(drop([-3, -1, 2, -5],2))",
    "io_inp": [
      -3,
      -1,
      2,
      -5
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-5, 0, -3, -1]\noutput : list = [104, 64, 24, 4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(mul_n([-5, 0, -3, -1],5),-1),-4)))",
    "io_inp": [
      -5,
      0,
      -3,
      -1
    ],
    "io_out": [
      104,
      64,
      24,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(mul_n(input,5),-1),-4)))"
  },
  {
    "input": "input : list = [4, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(drop([4, 0, -5],1)))))",
    "io_inp": [
      4,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(drop(input,1)))))"
  },
  {
    "input": "input : list = [-4, -3, -4, 5, 0]\noutput : list = [-8, -8, -7, -4, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_des([-4, -3, -4, 5, 0]),13)),-4))",
    "io_inp": [
      -4,
      -3,
      -4,
      5,
      0
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(sort_des(input),13)),-4))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [24, -16]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(mul_n([0, -5],-2),-1),5),-2),-4)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      24,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(mul_n(input,-2),-1),5),-2),-4)"
  },
  {
    "input": "input : list = [-4, -3, 1, -4, -1, -4]\noutput : list = [-4, -1, -4, 1, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 1, -4, -1, -4])",
    "io_inp": [
      -4,
      -3,
      1,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      -4,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take(drop([3, -4, -2],1),6)",
    "io_inp": [
      3,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(input,1),6)"
  },
  {
    "input": "input : list = [-5, -2, -5, -3]\noutput : list = [-5, -5, -3, -2]",
    "output": "generated_output : list = sort_asc([-5, -2, -5, -3])",
    "io_inp": [
      -5,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, -2, 1]\noutput : list = [-2, -5, -4, -4]",
    "output": "generated_output : list = reverse(sub_n([-1, -1, -2, 1],3))",
    "io_inp": [
      -1,
      -1,
      -2,
      1
    ],
    "io_out": [
      -2,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [-4, 4, 3, 2]\noutput : list = [5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(drop([-4, 4, 3, 2],2),1),-3),-5))",
    "io_inp": [
      -4,
      4,
      3,
      2
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(drop(input,2),1),-3),-5))"
  },
  {
    "input": "input : list = [3, 5, 1, -1, -2]\noutput : list = [1, -1, -3, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([3, 5, 1, -1, -2]),-4))",
    "io_inp": [
      3,
      5,
      1,
      -1,
      -2
    ],
    "io_out": [
      1,
      -1,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [5, -2, -1, 3, -1]\noutput : list = [-24, -20, -20, -4, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse([5, -2, -1, 3, -1]),4),4)),6)",
    "io_inp": [
      5,
      -2,
      -1,
      3,
      -1
    ],
    "io_out": [
      -24,
      -20,
      -20,
      -4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse(input),4),4)),6)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [15, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n([5, 3],5),3)))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      15,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(input,5),3)))"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = sort_des(add_n([0, -2, 3],-1))",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-1))"
  },
  {
    "input": "input : list = [1, -2, 4, -2]\noutput : list = [8, 8, -4, -16]",
    "output": "generated_output : list = mul_n(take(sort_asc([1, -2, 4, -2]),22),-4)",
    "io_inp": [
      1,
      -2,
      4,
      -2
    ],
    "io_out": [
      8,
      8,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),22),-4)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(reverse([0, 3]),-2),2)))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(reverse(input),-2),2)))"
  },
  {
    "input": "input : list = [0, -1, -5, -3, 4, -1]\noutput : list = [-3, 9, 12, 12, 18, 24]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(add_n([0, -1, -5, -3, 4, -1],-3)),-3),44))",
    "io_inp": [
      0,
      -1,
      -5,
      -3,
      4,
      -1
    ],
    "io_out": [
      -3,
      9,
      12,
      12,
      18,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(add_n(input,-3)),-3),44))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-9, 15]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(reverse([5, -3]),3)),21))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -9,
      15
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(reverse(input),3)),21))"
  },
  {
    "input": "input : list = [4, -2, 1, 3, 5, -5]\noutput : list = [6, -12, -3, 3, 9, -21]",
    "output": "generated_output : list = mul_n(add_n([4, -2, 1, 3, 5, -5],-2),3)",
    "io_inp": [
      4,
      -2,
      1,
      3,
      5,
      -5
    ],
    "io_out": [
      6,
      -12,
      -3,
      3,
      9,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [3, 1, -3, -5]\noutput : list = [-2, 18, 28]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(drop([3, 1, -3, -5],1),-5)),-3))",
    "io_inp": [
      3,
      1,
      -3,
      -5
    ],
    "io_out": [
      -2,
      18,
      28
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(drop(input,1),-5)),-3))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(sub_n([4, 4],3),-3),5),13),-2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(sub_n(input,3),-3),5),13),-2)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [3, 0]",
    "output": "generated_output : list = take(take(sort_des(add_n(sort_des([1, -2]),2)),13),11)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(sort_des(input),2)),13),11)"
  },
  {
    "input": "input : list = [2, -4, 0, -3, 4]\noutput : list = [144, 64, -16, -136, -176]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n([2, -4, 0, -3, 4],5),-2),-4),-4))",
    "io_inp": [
      2,
      -4,
      0,
      -3,
      4
    ],
    "io_out": [
      144,
      64,
      -16,
      -136,
      -176
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n(input,5),-2),-4),-4))"
  },
  {
    "input": "input : list = [-2, 0, 2, -1]\noutput : list = [-2, -1, 0, 2]",
    "output": "generated_output : list = sort_asc([-2, 0, 2, -1])",
    "io_inp": [
      -2,
      0,
      2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc([3, 2])",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -1, -3, 1]\noutput : list = [5, 3, 1, -1]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc([3, -1, -3, 1]),2)),12)",
    "io_inp": [
      3,
      -1,
      -3,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(input),2)),12)"
  },
  {
    "input": "input : list = [-1, -5, -1, -4, 5, 1]\noutput : list = [17, 97, -83, -23, -103, -23]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse([-1, -5, -1, -4, 5, 1]),-5),-4),3)",
    "io_inp": [
      -1,
      -5,
      -1,
      -4,
      5,
      1
    ],
    "io_out": [
      17,
      97,
      -83,
      -23,
      -103,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(input),-5),-4),3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [6, 3]",
    "output": "generated_output : list = mul_n(reverse([1, 2]),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [2, -4, -3, 0, -5, -5]\noutput : list = [14, 8, 9, 12, 7, 7]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(add_n([2, -4, -3, 0, -5, -5],4)),3)),-5)",
    "io_inp": [
      2,
      -4,
      -3,
      0,
      -5,
      -5
    ],
    "io_out": [
      14,
      8,
      9,
      12,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(add_n(input,4)),3)),-5)"
  },
  {
    "input": "input : list = [2, -1, -2, 1, 0, 3]\noutput : list = [1, -2, -3, 0, -1, 2]",
    "output": "generated_output : list = sub_n(sub_n([2, -1, -2, 1, 0, 3],4),-3)",
    "io_inp": [
      2,
      -1,
      -2,
      1,
      0,
      3
    ],
    "io_out": [
      1,
      -2,
      -3,
      0,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),-3)"
  },
  {
    "input": "input : list = [-3, 4, 2, 4]\noutput : list = [-9, 12, 6, 12]",
    "output": "generated_output : list = mul_n([-3, 4, 2, 4],3)",
    "io_inp": [
      -3,
      4,
      2,
      4
    ],
    "io_out": [
      -9,
      12,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [2, -1, 2, -1, -5, -2]\noutput : list = [-13, -4, -13, -4, 8, -1]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(add_n([2, -1, 2, -1, -5, -2],2),-3),4),43),-5)",
    "io_inp": [
      2,
      -1,
      2,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -13,
      -4,
      -13,
      -4,
      8,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(add_n(input,2),-3),4),43),-5)"
  },
  {
    "input": "input : list = [3, -1, 0, -1, 5]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(take([3, -1, 0, -1, 5],1),5),-2),-5),-1)",
    "io_inp": [
      3,
      -1,
      0,
      -1,
      5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(take(input,1),5),-2),-5),-1)"
  },
  {
    "input": "input : list = [2, -2, -2, -4, -1]\noutput : list = [-30, -20, -20]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(add_n([2, -2, -2, -4, -1],-2),5))),3)",
    "io_inp": [
      2,
      -2,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -30,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(add_n(input,-2),5))),3)"
  },
  {
    "input": "input : list = [1, -4, 5, 0, 4]\noutput : list = [1, -4]",
    "output": "generated_output : list = take([1, -4, 5, 0, 4],2)",
    "io_inp": [
      1,
      -4,
      5,
      0,
      4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -1, -5, 1]\noutput : list = [-4, -6, -10, -10]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(sort_des([-5, -1, -5, 1])),5)),48)",
    "io_inp": [
      -5,
      -1,
      -5,
      1
    ],
    "io_out": [
      -4,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(sort_des(input)),5)),48)"
  },
  {
    "input": "input : list = [1, 4, -4]\noutput : list = [6, 3, -2]",
    "output": "generated_output : list = sub_n(sort_des([1, 4, -4]),-2)",
    "io_inp": [
      1,
      4,
      -4
    ],
    "io_out": [
      6,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [0, 3, 5, -2, -5, -2]\noutput : list = [0, -12, -20, 8, 20, 8]",
    "output": "generated_output : list = mul_n([0, 3, 5, -2, -5, -2],-4)",
    "io_inp": [
      0,
      3,
      5,
      -2,
      -5,
      -2
    ],
    "io_out": [
      0,
      -12,
      -20,
      8,
      20,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-2, -4, -3, -1, 0, -4]\noutput : list = [2, 1, 0, -1, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n([-2, -4, -3, -1, 0, -4],-2))",
    "io_inp": [
      -2,
      -4,
      -3,
      -1,
      0,
      -4
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [1, 3, -4]\noutput : list = [-4, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(reverse([1, 3, -4])))))",
    "io_inp": [
      1,
      3,
      -4
    ],
    "io_out": [
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [3, -3, 0, 0, -5, -2]\noutput : list = [-1, -4, -4, -6, -7, -9]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(add_n([3, -3, 0, 0, -5, -2],-3))),-3),4)",
    "io_inp": [
      3,
      -3,
      0,
      0,
      -5,
      -2
    ],
    "io_out": [
      -1,
      -4,
      -4,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(add_n(input,-3))),-3),4)"
  },
  {
    "input": "input : list = [-1, 5, -3]\noutput : list = [10]",
    "output": "generated_output : list = reverse(sort_des(add_n(drop(mul_n([-1, 5, -3],-2),2),4)))",
    "io_inp": [
      -1,
      5,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(drop(mul_n(input,-2),2),4)))"
  },
  {
    "input": "input : list = [5, -2, -1, 0, -3]\noutput : list = [3, 6, 5, 4, 11]",
    "output": "generated_output : list = take(reverse(add_n(take(sub_n([5, -2, -1, 0, -3],-2),8),4)),10)",
    "io_inp": [
      5,
      -2,
      -1,
      0,
      -3
    ],
    "io_out": [
      3,
      6,
      5,
      4,
      11
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(sub_n(input,-2),8),4)),10)"
  },
  {
    "input": "input : list = [5, 3, 0, -5, 3, 3]\noutput : list = [0, -2, -2, -2, -5, -10]",
    "output": "generated_output : list = sort_des(add_n([5, 3, 0, -5, 3, 3],-5))",
    "io_inp": [
      5,
      3,
      0,
      -5,
      3,
      3
    ],
    "io_out": [
      0,
      -2,
      -2,
      -2,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-8, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(mul_n([4, 1],-3),4))))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(mul_n(input,-3),4))))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc([-5, 5])",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, -1, 0, -5, 0]\noutput : list = [2, 9, 3, 4, -1, 4]",
    "output": "generated_output : list = sub_n(sub_n([-2, 5, -1, 0, -5, 0],-3),-1)",
    "io_inp": [
      -2,
      5,
      -1,
      0,
      -5,
      0
    ],
    "io_out": [
      2,
      9,
      3,
      4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-1)"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [2, 0, 6]",
    "output": "generated_output : list = mul_n([-1, 0, -3],-2)",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      2,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -3, 2, 0, -3, 4]\noutput : list = [8, 6, 4, 1, 1, 1]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_des(sub_n([-3, -3, 2, 0, -3, 4],-1)),-1),1),2)",
    "io_inp": [
      -3,
      -3,
      2,
      0,
      -3,
      4
    ],
    "io_out": [
      8,
      6,
      4,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_des(sub_n(input,-1)),-1),1),2)"
  },
  {
    "input": "input : list = [-5, -2, -1]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(drop([-5, -2, -1],1)),-4)))",
    "io_inp": [
      -5,
      -2,
      -1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(reverse(drop(input,1)),-4)))"
  },
  {
    "input": "input : list = [1, -5, 5, 0, 5, 4]\noutput : list = [20, 20, 16, 4, 0, -20]",
    "output": "generated_output : list = sort_des(take(sort_asc(mul_n([1, -5, 5, 0, 5, 4],4)),32))",
    "io_inp": [
      1,
      -5,
      5,
      0,
      5,
      4
    ],
    "io_out": [
      20,
      20,
      16,
      4,
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(mul_n(input,4)),32))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [9, -27]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(mul_n([4, -5],1),4),-2),4),5)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      9,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(mul_n(input,1),4),-2),4),5)"
  },
  {
    "input": "input : list = [-3, -5, 2, -3, 2, 2]\noutput : list = [-8, -10, -3, -8, -3, -3]",
    "output": "generated_output : list = add_n([-3, -5, 2, -3, 2, 2],-5)",
    "io_inp": [
      -3,
      -5,
      2,
      -3,
      2,
      2
    ],
    "io_out": [
      -8,
      -10,
      -3,
      -8,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, -1, -2]\noutput : list = [1, -5, -6]",
    "output": "generated_output : list = sort_des(add_n([5, -1, -2],-4))",
    "io_inp": [
      5,
      -1,
      -2
    ],
    "io_out": [
      1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [2, 1, -4, 5]\noutput : list = [-5, 4, -1, -2]",
    "output": "generated_output : list = reverse(take(mul_n([2, 1, -4, 5],-1),12))",
    "io_inp": [
      2,
      1,
      -4,
      5
    ],
    "io_out": [
      -5,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(input,-1),12))"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [-9, 0, 0]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(sort_asc([-4, 5, 5]))),5),38)",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      -9,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(sort_asc(input))),5),38)"
  },
  {
    "input": "input : list = [-5, 5, 2, 1]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take([-5, 5, 2, 1],2)",
    "io_inp": [
      -5,
      5,
      2,
      1
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 2, 3]\noutput : list = [0, -6, -7]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(add_n([-4, 2, 3],4),-1)))",
    "io_inp": [
      -4,
      2,
      3
    ],
    "io_out": [
      0,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(add_n(input,4),-1)))"
  },
  {
    "input": "input : list = [0, -2, -2, -5, -3, -3]\noutput : list = [2, 0, 0, -1, -1, -3]",
    "output": "generated_output : list = add_n(sort_des([0, -2, -2, -5, -3, -3]),2)",
    "io_inp": [
      0,
      -2,
      -2,
      -5,
      -3,
      -3
    ],
    "io_out": [
      2,
      0,
      0,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [-1, 3, 1, 5, -3, 0]\noutput : list = [9, 7, 5, 4, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des([-1, 3, 1, 5, -3, 0]),-4)",
    "io_inp": [
      -1,
      3,
      1,
      5,
      -3,
      0
    ],
    "io_out": [
      9,
      7,
      5,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [-2, -2, -4]\noutput : list = [-4, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, -2, -4]))",
    "io_inp": [
      -2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(reverse(reverse([1, 1])))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [3, 4, -4, -5]\noutput : list = [4, 3, -4, -5]",
    "output": "generated_output : list = add_n(take(take(add_n(sort_des([3, 4, -4, -5]),-1),7),38),1)",
    "io_inp": [
      3,
      4,
      -4,
      -5
    ],
    "io_out": [
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(sort_des(input),-1),7),38),1)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = take(sort_des([1, -1]),6)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(input),6)"
  },
  {
    "input": "input : list = [-4, 2, -2]\noutput : list = [1, 3, 7]",
    "output": "generated_output : list = sort_asc(add_n([-4, 2, -2],5))",
    "io_inp": [
      -4,
      2,
      -2
    ],
    "io_out": [
      1,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [0, 0, 5, -5, -5, -3]\noutput : list = [4, 4, 6, 9, 9, 14]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(reverse([0, 0, 5, -5, -5, -3]),-2),-5)),2)",
    "io_inp": [
      0,
      0,
      5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      4,
      4,
      6,
      9,
      9,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(reverse(input),-2),-5)),2)"
  },
  {
    "input": "input : list = [-3, 3, 0, 1]\noutput : list = [-2, 4, 1, 2]",
    "output": "generated_output : list = sub_n(take(add_n([-3, 3, 0, 1],-4),19),-5)",
    "io_inp": [
      -3,
      3,
      0,
      1
    ],
    "io_out": [
      -2,
      4,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,-4),19),-5)"
  },
  {
    "input": "input : list = [-1, 2, -2, 5, 0]\noutput : list = [-24, -12, -4, 4]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(drop([-1, 2, -2, 5, 0],1),-4),-5),1))",
    "io_inp": [
      -1,
      2,
      -2,
      5,
      0
    ],
    "io_out": [
      -24,
      -12,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(drop(input,1),-4),-5),1))"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [0, 1, 8]",
    "output": "generated_output : list = sub_n([-5, -4, 3],-5)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      0,
      1,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-3, -3, -6]",
    "output": "generated_output : list = add_n([-1, -1, -4],-2)",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, -5, 2, 3, 3, 1]\noutput : list = [8, 6, -8, 10]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(take([4, -5, 2, 3, 3, 1],4),2),7)),-2)",
    "io_inp": [
      4,
      -5,
      2,
      3,
      3,
      1
    ],
    "io_out": [
      8,
      6,
      -8,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(take(input,4),2),7)),-2)"
  },
  {
    "input": "input : list = [4, 1, 2, -1]\noutput : list = [2, 1, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(drop([4, 1, 2, -1],1)),28))",
    "io_inp": [
      4,
      1,
      2,
      -1
    ],
    "io_out": [
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(drop(input,1)),28))"
  },
  {
    "input": "input : list = [2, -4, 3, -1, 0]\noutput : list = [80, 20, 0, -40, -60]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n([2, -4, 3, -1, 0],-4),5),29))",
    "io_inp": [
      2,
      -4,
      3,
      -1,
      0
    ],
    "io_out": [
      80,
      20,
      0,
      -40,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(input,-4),5),29))"
  },
  {
    "input": "input : list = [2, -4, 1, 2, 1, 1]\noutput : list = [10, -5, -5, -5, -8, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(mul_n([2, -4, 1, 2, 1, 1],-3),4),-2),46))",
    "io_inp": [
      2,
      -4,
      1,
      2,
      1,
      1
    ],
    "io_out": [
      10,
      -5,
      -5,
      -5,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(mul_n(input,-3),4),-2),46))"
  },
  {
    "input": "input : list = [5, 4, -4]\noutput : list = [-7, 1, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(sort_asc([5, 4, -4]),3)),36))",
    "io_inp": [
      5,
      4,
      -4
    ],
    "io_out": [
      -7,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(sort_asc(input),3)),36))"
  },
  {
    "input": "input : list = [-3, 1, 1, 0]\noutput : list = [50, -25, -50, -50]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(mul_n([-3, 1, 1, 0],5),-5)),-5))",
    "io_inp": [
      -3,
      1,
      1,
      0
    ],
    "io_out": [
      50,
      -25,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(mul_n(input,5),-5)),-5))"
  },
  {
    "input": "input : list = [2, -4, -3, 4]\noutput : list = [13, 6, 5, 11]",
    "output": "generated_output : list = take(reverse(take(add_n(add_n([2, -4, -3, 4],4),5),28)),13)",
    "io_inp": [
      2,
      -4,
      -3,
      4
    ],
    "io_out": [
      13,
      6,
      5,
      11
    ],
    "output_masked": "generated_output : list = take(reverse(take(add_n(add_n(input,4),5),28)),13)"
  },
  {
    "input": "input : list = [2, 4, -3, 0, -5]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = reverse(sub_n(take(drop(sort_asc([2, 4, -3, 0, -5]),2),9),2))",
    "io_inp": [
      2,
      4,
      -3,
      0,
      -5
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(drop(sort_asc(input),2),9),2))"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [-3, -2, -1]",
    "output": "generated_output : list = sort_asc(reverse([-3, -2, -1]))",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, -5, 4]\noutput : list = [-1, -6, -10]",
    "output": "generated_output : list = sort_des(reverse(add_n(take(sort_des([-1, -5, 4]),11),-5)))",
    "io_inp": [
      -1,
      -5,
      4
    ],
    "io_out": [
      -1,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(take(sort_des(input),11),-5)))"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(drop([-1, 3, 2],1),-5)))",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(drop(input,1),-5)))"
  },
  {
    "input": "input : list = [4, 3, -3, -5, -1, 5]\noutput : list = [-3, -9]",
    "output": "generated_output : list = add_n(reverse(add_n(drop([4, 3, -3, -5, -1, 5],4),-4)),-4)",
    "io_inp": [
      4,
      3,
      -3,
      -5,
      -1,
      5
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(drop(input,4),-4)),-4)"
  },
  {
    "input": "input : list = [1, -2, 5, 1, 5, -1]\noutput : list = [-14, 1, -34]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(take([1, -2, 5, 1, 5, -1],3),25),-5),5),-4)",
    "io_inp": [
      1,
      -2,
      5,
      1,
      5,
      -1
    ],
    "io_out": [
      -14,
      1,
      -34
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(take(input,3),25),-5),5),-4)"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [8, 6, 2]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(sub_n([3, -3, 1],1),4))),2)",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      8,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(sub_n(input,1),4))),2)"
  },
  {
    "input": "input : list = [3, -4, 1, -3, 5, -4]\noutput : list = [6, 4, 2, -2, -3, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_des([3, -4, 1, -3, 5, -4]),-2))),-1)",
    "io_inp": [
      3,
      -4,
      1,
      -3,
      5,
      -4
    ],
    "io_out": [
      6,
      4,
      2,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_des(input),-2))),-1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [4, 0]",
    "output": "generated_output : list = add_n([-1, -5],5)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [15, 24]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc([-3, 0]),5),-3))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      15,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(input),5),-3))"
  },
  {
    "input": "input : list = [3, -4, 3, -2, 5]\noutput : list = [5, 3, 3, -2, -4]",
    "output": "generated_output : list = sort_des([3, -4, 3, -2, 5])",
    "io_inp": [
      3,
      -4,
      3,
      -2,
      5
    ],
    "io_out": [
      5,
      3,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3, 3]\noutput : list = [3, 3, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 3])",
    "io_inp": [
      -5,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -5, 0, -3]\noutput : list = [-2, -4, 1, -2]",
    "output": "generated_output : list = take(sub_n(add_n(take(mul_n([-3, -5, 0, -3],1),22),5),4),12)",
    "io_inp": [
      -3,
      -5,
      0,
      -3
    ],
    "io_out": [
      -2,
      -4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(mul_n(input,1),22),5),4),12)"
  },
  {
    "input": "input : list = [-1, 3, -3, -1]\noutput : list = [6, -2, -2, -6]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n([-1, 3, -3, -1],2)),1))",
    "io_inp": [
      -1,
      3,
      -3,
      -1
    ],
    "io_out": [
      6,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(input,2)),1))"
  },
  {
    "input": "input : list = [2, 2, 2, 0, 3]\noutput : list = [4, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(take([2, 2, 2, 0, 3],3)),2))",
    "io_inp": [
      2,
      2,
      2,
      0,
      3
    ],
    "io_out": [
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(take(input,3)),2))"
  },
  {
    "input": "input : list = [3, -1, -5, -2]\noutput : list = [-11, 1, 4, 13]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(mul_n([3, -1, -5, -2],-3)))),-2)",
    "io_inp": [
      3,
      -1,
      -5,
      -2
    ],
    "io_out": [
      -11,
      1,
      4,
      13
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(mul_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [1, -3, -3, -3]\noutput : list = [-12, -12, -12, 4]",
    "output": "generated_output : list = add_n(sub_n(reverse(mul_n(sort_des([1, -3, -3, -3]),4)),3),3)",
    "io_inp": [
      1,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -12,
      -12,
      -12,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(mul_n(sort_des(input),4)),3),3)"
  },
  {
    "input": "input : list = [1, -4, 4, -3]\noutput : list = [-3, -8, 0, -7]",
    "output": "generated_output : list = sub_n([1, -4, 4, -3],4)",
    "io_inp": [
      1,
      -4,
      4,
      -3
    ],
    "io_out": [
      -3,
      -8,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [3, -3, -4, 4, 4, 3]\noutput : list = [-4, -3, 3, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse([3, -3, -4, 4, 4, 3]))",
    "io_inp": [
      3,
      -3,
      -4,
      4,
      4,
      3
    ],
    "io_out": [
      -4,
      -3,
      3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [0, -5, 1, -4, -4]\noutput : list = [22, 17, 17, -3, -8]",
    "output": "generated_output : list = add_n(sort_des(mul_n(take(sort_des([0, -5, 1, -4, -4]),20),-5)),-3)",
    "io_inp": [
      0,
      -5,
      1,
      -4,
      -4
    ],
    "io_out": [
      22,
      17,
      17,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(take(sort_des(input),20),-5)),-3)"
  },
  {
    "input": "input : list = [5, 0, 3, -2]\noutput : list = [-15, 5]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(take([5, 0, 3, -2],2),-4))),-5)",
    "io_inp": [
      5,
      0,
      3,
      -2
    ],
    "io_out": [
      -15,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(take(input,2),-4))),-5)"
  },
  {
    "input": "input : list = [4, 5, -1, -3]\noutput : list = [-24, -30, 6, 18]",
    "output": "generated_output : list = mul_n(mul_n([4, 5, -1, -3],-2),3)",
    "io_inp": [
      4,
      5,
      -1,
      -3
    ],
    "io_out": [
      -24,
      -30,
      6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),3)"
  },
  {
    "input": "input : list = [-4, 2, -5]\noutput : list = [38, 33, 3]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(reverse(add_n([-4, 2, -5],-2))),-5),3)",
    "io_inp": [
      -4,
      2,
      -5
    ],
    "io_out": [
      38,
      33,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(reverse(add_n(input,-2))),-5),3)"
  },
  {
    "input": "input : list = [-4, -1, -2, -2, 0]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = sort_des(take([-4, -1, -2, -2, 0],3))",
    "io_inp": [
      -4,
      -1,
      -2,
      -2,
      0
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [1, 2, 4]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(sort_des([1, 2, 4]),5),-1)))",
    "io_inp": [
      1,
      2,
      4
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(sort_des(input),5),-1)))"
  },
  {
    "input": "input : list = [-1, 2, 5, 4]\noutput : list = [7, 10, 12, 13]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-1, 2, 5, 4],-4),-4))",
    "io_inp": [
      -1,
      2,
      5,
      4
    ],
    "io_out": [
      7,
      10,
      12,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-4),-4))"
  },
  {
    "input": "input : list = [0, -2, 4, -4]\noutput : list = [0, -8, 16, -16]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n([0, -2, 4, -4],-2),-2),1),36)",
    "io_inp": [
      0,
      -2,
      4,
      -4
    ],
    "io_out": [
      0,
      -8,
      16,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(input,-2),-2),1),36)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [4, -4]",
    "output": "generated_output : list = add_n([3, -5],1)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, -4, -1]\noutput : list = [-1, -4, 0]",
    "output": "generated_output : list = reverse([0, -4, -1])",
    "io_inp": [
      0,
      -4,
      -1
    ],
    "io_out": [
      -1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -5, -5, 2, 1]\noutput : list = [2, 3, -4, -4, 0]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(sub_n([-1, -5, -5, 2, 1],3),1)),-5),14)",
    "io_inp": [
      -1,
      -5,
      -5,
      2,
      1
    ],
    "io_out": [
      2,
      3,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(sub_n(input,3),1)),-5),14)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(reverse([-2, 1])),21)))",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(reverse(input)),21)))"
  },
  {
    "input": "input : list = [-5, -2, 2, -4, 5, 1]\noutput : list = [-3, 2, 3, 6]",
    "output": "generated_output : list = add_n(sort_asc(drop(sub_n([-5, -2, 2, -4, 5, 1],-5),2)),-4)",
    "io_inp": [
      -5,
      -2,
      2,
      -4,
      5,
      1
    ],
    "io_out": [
      -3,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(sub_n(input,-5),2)),-4)"
  },
  {
    "input": "input : list = [-3, -1, 4]\noutput : list = [1, 3, 8]",
    "output": "generated_output : list = add_n([-3, -1, 4],4)",
    "io_inp": [
      -3,
      -1,
      4
    ],
    "io_out": [
      1,
      3,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [4, -1]",
    "output": "generated_output : list = add_n(drop([5, 2, -3],1),2)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-1, -1, -2, -3, 3, 2]\noutput : list = [2, 4, 10, 10, 12, 14]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(reverse([-1, -1, -2, -3, 3, 2]),9),-4)),-2)",
    "io_inp": [
      -1,
      -1,
      -2,
      -3,
      3,
      2
    ],
    "io_out": [
      2,
      4,
      10,
      10,
      12,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(reverse(input),9),-4)),-2)"
  },
  {
    "input": "input : list = [0, -3, -3, 0]\noutput : list = [-3, -3, -30, -30]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n([0, -3, -3, 0],-3),-3)),3)",
    "io_inp": [
      0,
      -3,
      -3,
      0
    ],
    "io_out": [
      -3,
      -3,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(input,-3),-3)),3)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-10, -4]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(sort_asc([-1, -4])),20),-1),2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(sort_asc(input)),20),-1),2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [6, 8]",
    "output": "generated_output : list = take(add_n(sub_n([0, 2],-5),1),22)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,-5),1),22)"
  },
  {
    "input": "input : list = [0, 3, -4, 1]\noutput : list = [1, 4, -3, 2]",
    "output": "generated_output : list = sub_n(sub_n([0, 3, -4, 1],4),-5)",
    "io_inp": [
      0,
      3,
      -4,
      1
    ],
    "io_out": [
      1,
      4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),-5)"
  },
  {
    "input": "input : list = [5, 2, -5, 4, 3, -2]\noutput : list = [29, 25, 21, 17, 1, -11]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(mul_n([5, 2, -5, 4, 3, -2],4),-5))),4)",
    "io_inp": [
      5,
      2,
      -5,
      4,
      3,
      -2
    ],
    "io_out": [
      29,
      25,
      21,
      17,
      1,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(mul_n(input,4),-5))),4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [11, 5]",
    "output": "generated_output : list = reverse(take(add_n(take(mul_n([-3, -5],-3),2),-4),25))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      11,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(mul_n(input,-3),2),-4),25))"
  },
  {
    "input": "input : list = [-1, 2, 0, -5, 5, 4]\noutput : list = [-15, -12, -6, 0, 3, 15]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_des([-1, 2, 0, -5, 5, 4]))),-3),12)",
    "io_inp": [
      -1,
      2,
      0,
      -5,
      5,
      4
    ],
    "io_out": [
      -15,
      -12,
      -6,
      0,
      3,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_des(input))),-3),12)"
  },
  {
    "input": "input : list = [3, 5, 5, 0]\noutput : list = [6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(take([3, 5, 5, 0],1)),5),2))",
    "io_inp": [
      3,
      5,
      5,
      0
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(take(input,1)),5),2))"
  },
  {
    "input": "input : list = [-4, 2, -5, -4]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(take([-4, 2, -5, -4],1)))),1)",
    "io_inp": [
      -4,
      2,
      -5,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(take(input,1)))),1)"
  },
  {
    "input": "input : list = [-4, -3, 2]\noutput : list = [2, 3, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-4, -3, 2],-1),-5))",
    "io_inp": [
      -4,
      -3,
      2
    ],
    "io_out": [
      2,
      3,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-1),-5))"
  },
  {
    "input": "input : list = [4, 1, -3, -2, -1]\noutput : list = [17, 13, 9, 1, -11]",
    "output": "generated_output : list = sub_n(sort_des(take(take(mul_n([4, 1, -3, -2, -1],-4),5),27)),-5)",
    "io_inp": [
      4,
      1,
      -3,
      -2,
      -1
    ],
    "io_out": [
      17,
      13,
      9,
      1,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(mul_n(input,-4),5),27)),-5)"
  },
  {
    "input": "input : list = [-1, 0, 4, -2, 0, 0]\noutput : list = [0, 0, -2, 4, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, 4, -2, 0, 0])",
    "io_inp": [
      -1,
      0,
      4,
      -2,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -2,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 2, -2, -5]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(take([4, 2, -2, -5],1),5)),-4))",
    "io_inp": [
      4,
      2,
      -2,
      -5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(take(input,1),5)),-4))"
  },
  {
    "input": "input : list = [4, 1, 4, 0, -1]\noutput : list = [3, 0, 3, -1, -2]",
    "output": "generated_output : list = add_n([4, 1, 4, 0, -1],-1)",
    "io_inp": [
      4,
      1,
      4,
      0,
      -1
    ],
    "io_out": [
      3,
      0,
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(reverse([0, 2]),5))))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(reverse(input),5))))"
  },
  {
    "input": "input : list = [-4, 0, -2]\noutput : list = [2, -8, -18]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(sort_asc([-4, 0, -2]),5))),-2)",
    "io_inp": [
      -4,
      0,
      -2
    ],
    "io_out": [
      2,
      -8,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(sort_asc(input),5))),-2)"
  },
  {
    "input": "input : list = [-4, -1, 1, 4]\noutput : list = [-4, -1, 1, 4]",
    "output": "generated_output : list = sort_asc([-4, -1, 1, 4])",
    "io_inp": [
      -4,
      -1,
      1,
      4
    ],
    "io_out": [
      -4,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [12, 8, -12]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse([-3, 3, 2]),2)),2)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      12,
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(input),2)),2)"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [22, 142, 102]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(take(sub_n([-2, 4, 2],-3),5),-4),-5),-2)",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      22,
      142,
      102
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(take(sub_n(input,-3),5),-4),-5),-2)"
  },
  {
    "input": "input : list = [-2, -4, -3, 0, -1]\noutput : list = [21, 16, 11, 6, 1]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(mul_n([-2, -4, -3, 0, -1],-5),3),1)),-4)",
    "io_inp": [
      -2,
      -4,
      -3,
      0,
      -1
    ],
    "io_out": [
      21,
      16,
      11,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(mul_n(input,-5),3),1)),-4)"
  },
  {
    "input": "input : list = [-5, -2, -4, -4]\noutput : list = [-14, -16, -16, -17]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(reverse(add_n([-5, -2, -4, -4],-3)),5)),4)",
    "io_inp": [
      -5,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -14,
      -16,
      -16,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(reverse(add_n(input,-3)),5)),4)"
  },
  {
    "input": "input : list = [-3, -5, 3, -4, -2, -2]\noutput : list = [6, 1, 1, 0, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des([-3, -5, 3, -4, -2, -2]),3))))",
    "io_inp": [
      -3,
      -5,
      3,
      -4,
      -2,
      -2
    ],
    "io_out": [
      6,
      1,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sort_des(input),3))))"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [4, -10, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(sub_n([2, -3, 4],-4),3),-3)),2)",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      4,
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(sub_n(input,-4),3),-3)),2)"
  },
  {
    "input": "input : list = [-4, 5, -3, -1, -5]\noutput : list = [-6, -2, -4, 4, -5]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n(reverse([-4, 5, -3, -1, -5]),-2),15),2),-1)",
    "io_inp": [
      -4,
      5,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -2,
      -4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(reverse(input),-2),15),2),-1)"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [-6, -2, -7]",
    "output": "generated_output : list = mul_n(take(sub_n([1, -3, 2],-5),11),-1)",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      -6,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-5),11),-1)"
  },
  {
    "input": "input : list = [3, 5, 5, -2, -3]\noutput : list = [5, 5, 3, -2, -3]",
    "output": "generated_output : list = sort_des([3, 5, 5, -2, -3])",
    "io_inp": [
      3,
      5,
      5,
      -2,
      -3
    ],
    "io_out": [
      5,
      5,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 4, 1, 1]\noutput : list = [1, 1]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(drop([-3, 4, 1, 1],2),6))))",
    "io_inp": [
      -3,
      4,
      1,
      1
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(drop(input,2),6))))"
  },
  {
    "input": "input : list = [-3, 4, -5, 4, -2, -1]\noutput : list = [-9, -7, -6, -5, 0, 0]",
    "output": "generated_output : list = sort_asc(sub_n([-3, 4, -5, 4, -2, -1],4))",
    "io_inp": [
      -3,
      4,
      -5,
      4,
      -2,
      -1
    ],
    "io_out": [
      -9,
      -7,
      -6,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(sub_n([-1, 0],2),2))))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(sub_n(input,2),2))))"
  },
  {
    "input": "input : list = [-4, -1, 5, 2, 0, 3]\noutput : list = [-6, -3, -2, 0, 1, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sort_asc([-4, -1, 5, 2, 0, 3]),2)),3),1)",
    "io_inp": [
      -4,
      -1,
      5,
      2,
      0,
      3
    ],
    "io_out": [
      -6,
      -3,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sort_asc(input),2)),3),1)"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [-4, -4, -10]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(add_n([1, -5, 1],-1)),-3),-1))",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      -4,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(add_n(input,-1)),-3),-1))"
  },
  {
    "input": "input : list = [5, 4, -3]\noutput : list = [7, 6, -1]",
    "output": "generated_output : list = add_n([5, 4, -3],2)",
    "io_inp": [
      5,
      4,
      -3
    ],
    "io_out": [
      7,
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [30, 15]",
    "output": "generated_output : list = mul_n(reverse(add_n(drop(reverse([4, 1, 4]),1),2)),5)",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      30,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(drop(reverse(input),1),2)),5)"
  },
  {
    "input": "input : list = [-5, 3, -3, 1, -5]\noutput : list = [3, -3, 1, -5]",
    "output": "generated_output : list = drop([-5, 3, -3, 1, -5],1)",
    "io_inp": [
      -5,
      3,
      -3,
      1,
      -5
    ],
    "io_out": [
      3,
      -3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [14, 7]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n(sub_n([4, -3],-5),-5),4),-2),-2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      14,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(sub_n(input,-5),-5),4),-2),-2)"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [-8, 48]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(drop([-5, 2, -5],1)),-4),-4),-2)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      -8,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(drop(input,1)),-4),-4),-2)"
  },
  {
    "input": "input : list = [-1, 1, -4]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des([-1, 1, -4]))))",
    "io_inp": [
      -1,
      1,
      -4
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [4, -4, -4, -4]\noutput : list = [-9, -41, -41, -41]",
    "output": "generated_output : list = add_n(mul_n(take(take(add_n([4, -4, -4, -4],-5),11),15),4),-5)",
    "io_inp": [
      4,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -9,
      -41,
      -41,
      -41
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(add_n(input,-5),11),15),4),-5)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [16, -20]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(sort_asc([-5, 4]),2)),2),4)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      16,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(sort_asc(input),2)),2),4)"
  },
  {
    "input": "input : list = [5, -5, 0, 2, -5]\noutput : list = [0, 7, 5, 0, 10]",
    "output": "generated_output : list = reverse(mul_n(take(add_n([5, -5, 0, 2, -5],5),16),1))",
    "io_inp": [
      5,
      -5,
      0,
      2,
      -5
    ],
    "io_out": [
      0,
      7,
      5,
      0,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(input,5),16),1))"
  },
  {
    "input": "input : list = [0, -2, -4, 2, 2, 4]\noutput : list = [4, 2, 2, 0, -2, -4]",
    "output": "generated_output : list = take(take(sort_des(take(sort_asc([0, -2, -4, 2, 2, 4]),12)),24),39)",
    "io_inp": [
      0,
      -2,
      -4,
      2,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(sort_asc(input),12)),24),39)"
  },
  {
    "input": "input : list = [5, 0, -1, -1]\noutput : list = [10, 15, 15]",
    "output": "generated_output : list = mul_n(add_n(sort_des(drop([5, 0, -1, -1],1)),-2),-5)",
    "io_inp": [
      5,
      0,
      -1,
      -1
    ],
    "io_out": [
      10,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(drop(input,1)),-2),-5)"
  },
  {
    "input": "input : list = [-4, -4, 5, 1]\noutput : list = [-15, -15, 12, 0]",
    "output": "generated_output : list = sub_n(mul_n([-4, -4, 5, 1],3),3)",
    "io_inp": [
      -4,
      -4,
      5,
      1
    ],
    "io_out": [
      -15,
      -15,
      12,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),3)"
  },
  {
    "input": "input : list = [-1, 5, 0]\noutput : list = [-11, -9, 1]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(add_n([-1, 5, 0],-5)),2),1),15)",
    "io_inp": [
      -1,
      5,
      0
    ],
    "io_out": [
      -11,
      -9,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(add_n(input,-5)),2),1),15)"
  },
  {
    "input": "input : list = [2, -3, 1, 0]\noutput : list = [2, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(drop([2, -3, 1, 0],1),4),1)))",
    "io_inp": [
      2,
      -3,
      1,
      0
    ],
    "io_out": [
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(drop(input,1),4),1)))"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = sort_des([-1, 1, 3])",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, -4, -3, 5]\noutput : list = [-10, -15]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(take([-1, -2, -4, -3, 5],2)),-4),-5))",
    "io_inp": [
      -1,
      -2,
      -4,
      -3,
      5
    ],
    "io_out": [
      -10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(take(input,2)),-4),-5))"
  },
  {
    "input": "input : list = [2, 4, 1, -1]\noutput : list = [4, 1, -1]",
    "output": "generated_output : list = drop([2, 4, 1, -1],1)",
    "io_inp": [
      2,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -4, 3, 1]\noutput : list = [5, 4, -1, -3]",
    "output": "generated_output : list = sort_des(mul_n([-5, -4, 3, 1],-1))",
    "io_inp": [
      -5,
      -4,
      3,
      1
    ],
    "io_out": [
      5,
      4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [5, 1, -2, 2, -1, 5]\noutput : list = [20, 4, -8, 8, -4, 20]",
    "output": "generated_output : list = mul_n([5, 1, -2, 2, -1, 5],4)",
    "io_inp": [
      5,
      1,
      -2,
      2,
      -1,
      5
    ],
    "io_out": [
      20,
      4,
      -8,
      8,
      -4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, 0, -3, 0]\noutput : list = [14, 8, 8, -2]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(add_n([5, 0, -3, 0],-4)),-1),-1),-2)",
    "io_inp": [
      5,
      0,
      -3,
      0
    ],
    "io_out": [
      14,
      8,
      8,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(add_n(input,-4)),-1),-1),-2)"
  },
  {
    "input": "input : list = [3, -5, -5, -5, -4, 0]\noutput : list = [-16, -10, -2, 0, 0, 0]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_des([3, -5, -5, -5, -4, 0])),-5)),-2)",
    "io_inp": [
      3,
      -5,
      -5,
      -5,
      -4,
      0
    ],
    "io_out": [
      -16,
      -10,
      -2,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sort_des(input)),-5)),-2)"
  },
  {
    "input": "input : list = [1, -4, 3, -4]\noutput : list = [-3, -8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des(take([1, -4, 3, -4],2)),4)))",
    "io_inp": [
      1,
      -4,
      3,
      -4
    ],
    "io_out": [
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(take(input,2)),4)))"
  },
  {
    "input": "input : list = [0, 0, 3, 4, -3, -3]\noutput : list = [-25, -21, -9, -9, 3, 3]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n(reverse([0, 0, 3, 4, -3, -3]),1),-4),-5))",
    "io_inp": [
      0,
      0,
      3,
      4,
      -3,
      -3
    ],
    "io_out": [
      -25,
      -21,
      -9,
      -9,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(reverse(input),1),-4),-5))"
  },
  {
    "input": "input : list = [5, -3, 4, 2, 1, 3]\noutput : list = [3, 1, 2, 4, -3, 5]",
    "output": "generated_output : list = add_n(sub_n(reverse([5, -3, 4, 2, 1, 3]),4),4)",
    "io_inp": [
      5,
      -3,
      4,
      2,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      2,
      4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),4),4)"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [10, 6, 3]",
    "output": "generated_output : list = sort_des(add_n([-2, 1, 5],5))",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      10,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [7, 4]",
    "output": "generated_output : list = reverse(add_n(take(take(sort_asc([1, 4]),5),12),3))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(sort_asc(input),5),12),3))"
  },
  {
    "input": "input : list = [5, 3, 3, 1, -1]\noutput : list = [1, -1]",
    "output": "generated_output : list = drop([5, 3, 3, 1, -1],3)",
    "io_inp": [
      5,
      3,
      3,
      1,
      -1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, 5, 5, -4, -4, 2]\noutput : list = [-6, -6, 0, 0, 3, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n(sort_asc([2, 5, 5, -4, -4, 2]),-2))))",
    "io_inp": [
      2,
      5,
      5,
      -4,
      -4,
      2
    ],
    "io_out": [
      -6,
      -6,
      0,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [3, 10]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sub_n([4, -3],1)),-4)),3)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      3,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(sub_n(input,1)),-4)),3)"
  },
  {
    "input": "input : list = [-2, 3, 4, 5, 3]\noutput : list = [-9, 1, 3, 5, 1]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n([-2, 3, 4, 5, 3],2),21),3),-2)",
    "io_inp": [
      -2,
      3,
      4,
      5,
      3
    ],
    "io_out": [
      -9,
      1,
      3,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(input,2),21),3),-2)"
  },
  {
    "input": "input : list = [5, -3, -5, 0, 2, 5]\noutput : list = [7, -1, -3, 2, 4, 7]",
    "output": "generated_output : list = add_n([5, -3, -5, 0, 2, 5],2)",
    "io_inp": [
      5,
      -3,
      -5,
      0,
      2,
      5
    ],
    "io_out": [
      7,
      -1,
      -3,
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, -5, -5, -3, 1, -1]\noutput : list = [4, 6, 2, 0, 0, 9]",
    "output": "generated_output : list = sub_n(reverse([4, -5, -5, -3, 1, -1]),-5)",
    "io_inp": [
      4,
      -5,
      -5,
      -3,
      1,
      -1
    ],
    "io_out": [
      4,
      6,
      2,
      0,
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-1, -5, -1, 4, -1]\noutput : list = [-3, 12, -3, -15, -3]",
    "output": "generated_output : list = take(take(mul_n(reverse([-1, -5, -1, 4, -1]),3),18),12)",
    "io_inp": [
      -1,
      -5,
      -1,
      4,
      -1
    ],
    "io_out": [
      -3,
      12,
      -3,
      -15,
      -3
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(input),3),18),12)"
  },
  {
    "input": "input : list = [5, 1, 1, 4, 4]\noutput : list = [7, 3, 3, 6, 6]",
    "output": "generated_output : list = sub_n(sub_n([5, 1, 1, 4, 4],2),-4)",
    "io_inp": [
      5,
      1,
      1,
      4,
      4
    ],
    "io_out": [
      7,
      3,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,2),-4)"
  },
  {
    "input": "input : list = [0, -3, -1]\noutput : list = [4, 1, 3]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(reverse([0, -3, -1]),1),2)),-2)",
    "io_inp": [
      0,
      -3,
      -1
    ],
    "io_out": [
      4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(reverse(input),1),2)),-2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [11, 14]",
    "output": "generated_output : list = sub_n(mul_n([4, 5],3),1)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      11,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),1)"
  },
  {
    "input": "input : list = [-4, 1, 1, 2, -2]\noutput : list = [7, 11, -5]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(drop([-4, 1, 1, 2, -2],2),1),4),-4),3)",
    "io_inp": [
      -4,
      1,
      1,
      2,
      -2
    ],
    "io_out": [
      7,
      11,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(drop(input,2),1),4),-4),3)"
  },
  {
    "input": "input : list = [-2, -4, 2, -5]\noutput : list = [-18, -26, -2, -30]",
    "output": "generated_output : list = sub_n(mul_n(reverse(add_n(reverse([-2, -4, 2, -5]),-3)),4),-2)",
    "io_inp": [
      -2,
      -4,
      2,
      -5
    ],
    "io_out": [
      -18,
      -26,
      -2,
      -30
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(add_n(reverse(input),-3)),4),-2)"
  },
  {
    "input": "input : list = [3, 0, 3, 0, -2, 1]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(drop([3, 0, 3, 0, -2, 1],3),3),1)))",
    "io_inp": [
      3,
      0,
      3,
      0,
      -2,
      1
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(drop(input,3),3),1)))"
  },
  {
    "input": "input : list = [5, 2, -5, -1, 2, -2]\noutput : list = [85, 25, -115, -35, 25, -55]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(mul_n([5, 2, -5, -1, 2, -2],4),-3),5)))",
    "io_inp": [
      5,
      2,
      -5,
      -1,
      2,
      -2
    ],
    "io_out": [
      85,
      25,
      -115,
      -35,
      25,
      -55
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(mul_n(input,4),-3),5)))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [18, 9]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(add_n([1, -2],5))),3))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      18,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(add_n(input,5))),3))"
  },
  {
    "input": "input : list = [3, 4, 2, 3, 4, 4]\noutput : list = [6, 6, 6, 10, 10, 14]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(sort_des([3, 4, 2, 3, 4, 4]),25),-5),-4),2)",
    "io_inp": [
      3,
      4,
      2,
      3,
      4,
      4
    ],
    "io_out": [
      6,
      6,
      6,
      10,
      10,
      14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(sort_des(input),25),-5),-4),2)"
  },
  {
    "input": "input : list = [2, -2, -1, 3]\noutput : list = [2, -2]",
    "output": "generated_output : list = take([2, -2, -1, 3],2)",
    "io_inp": [
      2,
      -2,
      -1,
      3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(add_n([1, -4],5))),1))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(add_n(input,5))),1))"
  },
  {
    "input": "input : list = [2, -1, 5]\noutput : list = [-2, 10]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(drop([2, -1, 5],1),2)))",
    "io_inp": [
      2,
      -1,
      5
    ],
    "io_out": [
      -2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(drop(input,1),2)))"
  },
  {
    "input": "input : list = [5, 0, 1, 3]\noutput : list = [4, 2, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(add_n([5, 0, 1, 3],-3))),2))",
    "io_inp": [
      5,
      0,
      1,
      3
    ],
    "io_out": [
      4,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(add_n(input,-3))),2))"
  },
  {
    "input": "input : list = [2, 4, 1, 4, -5, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = add_n(sort_des(drop(reverse([2, 4, 1, 4, -5, -3]),4)),-5)",
    "io_inp": [
      2,
      4,
      1,
      4,
      -5,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(reverse(input),4)),-5)"
  },
  {
    "input": "input : list = [-4, -4, 3, -5]\noutput : list = [5, -2, -2, -3]",
    "output": "generated_output : list = sort_des(add_n([-4, -4, 3, -5],2))",
    "io_inp": [
      -4,
      -4,
      3,
      -5
    ],
    "io_out": [
      5,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [-5, 3, -1]\noutput : list = [-10]",
    "output": "generated_output : list = drop(add_n(add_n(sub_n(add_n([-5, 3, -1],4),5),-4),-4),2)",
    "io_inp": [
      -5,
      3,
      -1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(sub_n(add_n(input,4),5),-4),-4),2)"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [5, 4, -1]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([1, -4, -5])),-1)",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),-1)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [4, 2]",
    "output": "generated_output : list = reverse(add_n(add_n([3, 5],-4),3))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-4),3))"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_asc(mul_n(take([3, -5, 3],1),-1)),36)",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(input,1),-1)),36)"
  },
  {
    "input": "input : list = [2, -5, 3, -3]\noutput : list = [-5, -6, -11, -13]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n([2, -5, 3, -3],-5))),3)",
    "io_inp": [
      2,
      -5,
      3,
      -3
    ],
    "io_out": [
      -5,
      -6,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(input,-5))),3)"
  },
  {
    "input": "input : list = [-1, 5, 5, -1, -5, 4]\noutput : list = [40, 20, 20, -5, -10, -10]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sub_n([-1, 5, 5, -1, -5, 4],3),1),-5)))",
    "io_inp": [
      -1,
      5,
      5,
      -1,
      -5,
      4
    ],
    "io_out": [
      40,
      20,
      20,
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sub_n(input,3),1),-5)))"
  },
  {
    "input": "input : list = [-4, 1, -4, -4]\noutput : list = [-4, -9, -9, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_des([-4, 1, -4, -4])),-5)))",
    "io_inp": [
      -4,
      1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_des(input)),-5)))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take(add_n(add_n(reverse([1, -1]),-5),4),17)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(input),-5),4),17)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [7, 6, 4]",
    "output": "generated_output : list = reverse(sub_n([2, 4, 5],-2))",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      7,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [5, 2, 3]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sort_des([5, 2, 3])))))",
    "io_inp": [
      5,
      2,
      3
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, 4, -1, -2, -2]\noutput : list = [-16, 4, 8, 8, 20]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(mul_n([-5, 4, -1, -2, -2],-4)))),56)",
    "io_inp": [
      -5,
      4,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -16,
      4,
      8,
      8,
      20
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(mul_n(input,-4)))),56)"
  },
  {
    "input": "input : list = [0, -2, 0, -1, 4, -2]\noutput : list = [-2, 4, -1, 0, -2, 0]",
    "output": "generated_output : list = reverse([0, -2, 0, -1, 4, -2])",
    "io_inp": [
      0,
      -2,
      0,
      -1,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -1,
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, 0]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(sort_des([2, 0, 0]),1)),1))",
    "io_inp": [
      2,
      0,
      0
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(sort_des(input),1)),1))"
  },
  {
    "input": "input : list = [-4, 4, 0, -4, 0, -1]\noutput : list = [-9, -1, -5, -9, -5, -6]",
    "output": "generated_output : list = take(take(add_n([-4, 4, 0, -4, 0, -1],-5),25),13)",
    "io_inp": [
      -4,
      4,
      0,
      -4,
      0,
      -1
    ],
    "io_out": [
      -9,
      -1,
      -5,
      -9,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-5),25),13)"
  },
  {
    "input": "input : list = [-2, -3, 0, 3, -1, -4]\noutput : list = [0, 3, 7, 4]",
    "output": "generated_output : list = take(add_n(reverse([-2, -3, 0, 3, -1, -4]),4),4)",
    "io_inp": [
      -2,
      -3,
      0,
      3,
      -1,
      -4
    ],
    "io_out": [
      0,
      3,
      7,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),4),4)"
  },
  {
    "input": "input : list = [-4, -2, -5, 0, 3]\noutput : list = [-9, -4, -1]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(drop([-4, -2, -5, 0, 3],2),1),8),-5))",
    "io_inp": [
      -4,
      -2,
      -5,
      0,
      3
    ],
    "io_out": [
      -9,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(drop(input,2),1),8),-5))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-17, -15]",
    "output": "generated_output : list = add_n(take(add_n(add_n(mul_n([-5, -4],2),-4),-1),30),-2)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -17,
      -15
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(add_n(mul_n(input,2),-4),-1),30),-2)"
  },
  {
    "input": "input : list = [5, 2, 0, -3]\noutput : list = [12, 9, 7, 4]",
    "output": "generated_output : list = sub_n(sub_n([5, 2, 0, -3],-4),-3)",
    "io_inp": [
      5,
      2,
      0,
      -3
    ],
    "io_out": [
      12,
      9,
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),-3)"
  },
  {
    "input": "input : list = [0, 4, 2, 4]\noutput : list = [-5, -3, -1, -1]",
    "output": "generated_output : list = add_n(add_n(sort_asc([0, 4, 2, 4]),-4),-1)",
    "io_inp": [
      0,
      4,
      2,
      4
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),-4),-1)"
  },
  {
    "input": "input : list = [-2, 4, -3, 4, 1]\noutput : list = [-3, -2, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, -3, 4, 1])",
    "io_inp": [
      -2,
      4,
      -3,
      4,
      1
    ],
    "io_out": [
      -3,
      -2,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [-6, 0, 2]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(add_n([-4, 2, 4],1)),21),-3))",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      -6,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(add_n(input,1)),21),-3))"
  },
  {
    "input": "input : list = [1, 3, -1, -1, -2]\noutput : list = [-4, -3, -3, -1, 1]",
    "output": "generated_output : list = take(sort_asc(take(reverse(add_n([1, 3, -1, -1, -2],-2)),12)),53)",
    "io_inp": [
      1,
      3,
      -1,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(add_n(input,-2)),12)),53)"
  },
  {
    "input": "input : list = [-1, 1, -4, 4, -5]\noutput : list = [-12, -9, -7]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n([-1, 1, -4, 4, -5],-4)),-4),3),-1)",
    "io_inp": [
      -1,
      1,
      -4,
      4,
      -5
    ],
    "io_out": [
      -12,
      -9,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n(input,-4)),-4),3),-1)"
  },
  {
    "input": "input : list = [3, -5, 4, 4, -3]\noutput : list = [-31, -23, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(sub_n([3, -5, 4, 4, -3],2),24),4),3))",
    "io_inp": [
      3,
      -5,
      4,
      4,
      -3
    ],
    "io_out": [
      -31,
      -23,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(sub_n(input,2),24),4),3))"
  },
  {
    "input": "input : list = [-4, -5, -5, 4, -4, -2]\noutput : list = [-16, 8, 11, 11]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(take([-4, -5, -5, 4, -4, -2],4),-3),4)))",
    "io_inp": [
      -4,
      -5,
      -5,
      4,
      -4,
      -2
    ],
    "io_out": [
      -16,
      8,
      11,
      11
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(take(input,4),-3),4)))"
  },
  {
    "input": "input : list = [0, 2, 4, 3, 0]\noutput : list = [0, 3, 4, 2, 0]",
    "output": "generated_output : list = take(reverse([0, 2, 4, 3, 0]),18)",
    "io_inp": [
      0,
      2,
      4,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),18)"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(take([0, -3, -4],1),1),-2)))",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sub_n(take(input,1),1),-2)))"
  },
  {
    "input": "input : list = [-2, 1, -2, 2, 0]\noutput : list = [0, 0, 4, 6, 8]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(sort_asc([-2, 1, -2, 2, 0]),-2),1)),2)",
    "io_inp": [
      -2,
      1,
      -2,
      2,
      0
    ],
    "io_out": [
      0,
      0,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sub_n(sort_asc(input),-2),1)),2)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-8, -3]",
    "output": "generated_output : list = add_n([-3, 2],-5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [0, 0, 0, 4, 2]\noutput : list = [0, 0, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_des([0, 0, 0, 4, 2]))",
    "io_inp": [
      0,
      0,
      0,
      4,
      2
    ],
    "io_out": [
      0,
      0,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 1, 1, -4]\noutput : list = [-8, 2, 2]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(drop([0, 1, 1, -4],1)),2))",
    "io_inp": [
      0,
      1,
      1,
      -4
    ],
    "io_out": [
      -8,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(drop(input,1)),2))"
  },
  {
    "input": "input : list = [-1, 2, -4, -5, -5]\noutput : list = [-6]",
    "output": "generated_output : list = drop(reverse(mul_n(sort_des(sort_asc([-1, 2, -4, -5, -5])),-3)),4)",
    "io_inp": [
      -1,
      2,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = drop(reverse(mul_n(sort_des(sort_asc(input)),-3)),4)"
  },
  {
    "input": "input : list = [0, -3, 4, 5, -4, 3]\noutput : list = [1, 0, -1, -4, -7, -8]",
    "output": "generated_output : list = sub_n(take(take(sort_des(sort_asc([0, -3, 4, 5, -4, 3])),28),36),4)",
    "io_inp": [
      0,
      -3,
      4,
      5,
      -4,
      3
    ],
    "io_out": [
      1,
      0,
      -1,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(sort_asc(input)),28),36),4)"
  },
  {
    "input": "input : list = [-2, 2, 5, 0, 2]\noutput : list = [0, 8]",
    "output": "generated_output : list = mul_n(drop([-2, 2, 5, 0, 2],3),4)",
    "io_inp": [
      -2,
      2,
      5,
      0,
      2
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,3),4)"
  },
  {
    "input": "input : list = [-4, -2, 1, -1, -5]\noutput : list = [1, -2, -4]",
    "output": "generated_output : list = reverse(take([-4, -2, 1, -1, -5],3))",
    "io_inp": [
      -4,
      -2,
      1,
      -1,
      -5
    ],
    "io_out": [
      1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-2, -1, 4, 0]\noutput : list = [27, 15, 12, 9]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse(sub_n([-2, -1, 4, 0],-1)),-4)),3)",
    "io_inp": [
      -2,
      -1,
      4,
      0
    ],
    "io_out": [
      27,
      15,
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(sub_n(input,-1)),-4)),3)"
  },
  {
    "input": "input : list = [-3, -5, -1, 1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(take([-3, -5, -1, 1],1),3),24)),5)",
    "io_inp": [
      -3,
      -5,
      -1,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(take(input,1),3),24)),5)"
  },
  {
    "input": "input : list = [1, 2, -4]\noutput : list = [0, 1, -5]",
    "output": "generated_output : list = sub_n([1, 2, -4],1)",
    "io_inp": [
      1,
      2,
      -4
    ],
    "io_out": [
      0,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, 2, 5]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(take([-5, 2, 5],1),-2),1),-5))",
    "io_inp": [
      -5,
      2,
      5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(take(input,1),-2),1),-5))"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [1, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(drop([1, -1, 3],1),2),3)))",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      1,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(drop(input,1),2),3)))"
  },
  {
    "input": "input : list = [-1, 3, 4, -3, 0, 3]\noutput : list = [7, 6, 6, 3, 2, 0]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n([-1, 3, 4, -3, 0, 3],-3)))))",
    "io_inp": [
      -1,
      3,
      4,
      -3,
      0,
      3
    ],
    "io_out": [
      7,
      6,
      6,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [4, 5]",
    "output": "generated_output : list = sub_n([1, 2],-3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_asc([2, 2]))),-5),5)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_asc(input))),-5),5)"
  },
  {
    "input": "input : list = [-2, -3, 4, 1, 0, 2]\noutput : list = [30, -40, -10, 0, -20]",
    "output": "generated_output : list = mul_n(mul_n(drop([-2, -3, 4, 1, 0, 2],1),-5),2)",
    "io_inp": [
      -2,
      -3,
      4,
      1,
      0,
      2
    ],
    "io_out": [
      30,
      -40,
      -10,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(drop(input,1),-5),2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-9, 9]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(sort_asc([2, -1]),2),1),3),19)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -9,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(sort_asc(input),2),1),3),19)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [20, 2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sub_n(mul_n([5, -4],2),-5),-5)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      20,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sub_n(mul_n(input,2),-5),-5)))"
  },
  {
    "input": "input : list = [-2, 3, 4, 3, 5]\noutput : list = [5, 10, 10, 11, 12]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_asc([-2, 3, 4, 3, 5])),-3),-4))",
    "io_inp": [
      -2,
      3,
      4,
      3,
      5
    ],
    "io_out": [
      5,
      10,
      10,
      11,
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(sort_asc(input)),-3),-4))"
  },
  {
    "input": "input : list = [-3, 0, 5, -3]\noutput : list = [-11, -6, -3, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(mul_n([-3, 0, 5, -3],-1),4)),5),3)",
    "io_inp": [
      -3,
      0,
      5,
      -3
    ],
    "io_out": [
      -11,
      -6,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(mul_n(input,-1),4)),5),3)"
  },
  {
    "input": "input : list = [-1, -3, -4, -5, -3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(take(take([-1, -3, -4, -5, -3],2),1)),5))",
    "io_inp": [
      -1,
      -3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(take(take(input,2),1)),5))"
  },
  {
    "input": "input : list = [-4, -2, 2, -2]\noutput : list = [15, 25]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sub_n([-4, -2, 2, -2],-4),2),-4),1),5)",
    "io_inp": [
      -4,
      -2,
      2,
      -2
    ],
    "io_out": [
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sub_n(input,-4),2),-4),1),5)"
  },
  {
    "input": "input : list = [-4, 5, 4]\noutput : list = [9, 10, 1]",
    "output": "generated_output : list = reverse(reverse(add_n(take(reverse([-4, 5, 4]),5),5)))",
    "io_inp": [
      -4,
      5,
      4
    ],
    "io_out": [
      9,
      10,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(reverse(input),5),5)))"
  },
  {
    "input": "input : list = [2, 4, -5, -5, 2, 1]\noutput : list = [6, 8, -1, -1, 6, 5]",
    "output": "generated_output : list = sub_n(reverse(reverse([2, 4, -5, -5, 2, 1])),-4)",
    "io_inp": [
      2,
      4,
      -5,
      -5,
      2,
      1
    ],
    "io_out": [
      6,
      8,
      -1,
      -1,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),-4)"
  },
  {
    "input": "input : list = [1, -2, 5, 2, 2, 4]\noutput : list = [-11, 4, 9, 9, 19, 24]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(mul_n([1, -2, 5, 2, 2, 4],5),-1)),40))",
    "io_inp": [
      1,
      -2,
      5,
      2,
      2,
      4
    ],
    "io_out": [
      -11,
      4,
      9,
      9,
      19,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(mul_n(input,5),-1)),40))"
  },
  {
    "input": "input : list = [-2, 0, -2, -1, 4]\noutput : list = [12, 18]",
    "output": "generated_output : list = sort_asc(drop(mul_n(sub_n(reverse([-2, 0, -2, -1, 4]),4),-3),3))",
    "io_inp": [
      -2,
      0,
      -2,
      -1,
      4
    ],
    "io_out": [
      12,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(drop(mul_n(sub_n(reverse(input),4),-3),3))"
  },
  {
    "input": "input : list = [-4, -1, -2, 0]\noutput : list = [-4, -2, -1, 0]",
    "output": "generated_output : list = sort_asc([-4, -1, -2, 0])",
    "io_inp": [
      -4,
      -1,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4, -1, 1, -1, 0]\noutput : list = [10, -2, -14, -14, -50, -62]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_asc(mul_n([-5, -4, -1, 1, -1, 0],4)),3)),-2)",
    "io_inp": [
      -5,
      -4,
      -1,
      1,
      -1,
      0
    ],
    "io_out": [
      10,
      -2,
      -14,
      -14,
      -50,
      -62
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_asc(mul_n(input,4)),3)),-2)"
  },
  {
    "input": "input : list = [2, -1, 1, 3, 4]\noutput : list = [2, 4, 5, 6, 7]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(reverse([2, -1, 1, 3, 4]),3),11)))",
    "io_inp": [
      2,
      -1,
      1,
      3,
      4
    ],
    "io_out": [
      2,
      4,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(reverse(input),3),11)))"
  },
  {
    "input": "input : list = [-2, -3, -5, -4, 2, 1]\noutput : list = [4, 5, -1, -2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(drop([-2, -3, -5, -4, 2, 1],2)),-5),-4),-2)",
    "io_inp": [
      -2,
      -3,
      -5,
      -4,
      2,
      1
    ],
    "io_out": [
      4,
      5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(drop(input,2)),-5),-4),-2)"
  },
  {
    "input": "input : list = [1, -4, -1, -2, 5, -2]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc(take([1, -4, -1, -2, 5, -2],3))",
    "io_inp": [
      1,
      -4,
      -1,
      -2,
      5,
      -2
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [-2, 4, -4]\noutput : list = [-4, -2, 4]",
    "output": "generated_output : list = sort_asc([-2, 4, -4])",
    "io_inp": [
      -2,
      4,
      -4
    ],
    "io_out": [
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3, 4]\noutput : list = [3, 4, 5]",
    "output": "generated_output : list = reverse(reverse(take(reverse(sort_des([5, 3, 4])),15)))",
    "io_inp": [
      5,
      3,
      4
    ],
    "io_out": [
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(sort_des(input)),15)))"
  },
  {
    "input": "input : list = [0, 3, -5, -2, 2]\noutput : list = [3, 6, -2, 1, 5]",
    "output": "generated_output : list = add_n([0, 3, -5, -2, 2],3)",
    "io_inp": [
      0,
      3,
      -5,
      -2,
      2
    ],
    "io_out": [
      3,
      6,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, 4, -2, 0, -3, -4]\noutput : list = [-32, -32, -28, -24, -16, 0]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(add_n([-4, 4, -2, 0, -3, -4],-4),28))),4)",
    "io_inp": [
      -4,
      4,
      -2,
      0,
      -3,
      -4
    ],
    "io_out": [
      -32,
      -32,
      -28,
      -24,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(add_n(input,-4),28))),4)"
  },
  {
    "input": "input : list = [2, -4, 0, -5]\noutput : list = [-5, 0, -4, 2]",
    "output": "generated_output : list = reverse([2, -4, 0, -5])",
    "io_inp": [
      2,
      -4,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, 3, 5, -1]\noutput : list = [-2, 4, 2, -1, -2]",
    "output": "generated_output : list = reverse(sub_n([-1, 0, 3, 5, -1],1))",
    "io_inp": [
      -1,
      0,
      3,
      5,
      -1
    ],
    "io_out": [
      -2,
      4,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [-2, -1, 1]\noutput : list = [-7, -6, -4]",
    "output": "generated_output : list = sub_n(sub_n([-2, -1, 1],1),4)",
    "io_inp": [
      -2,
      -1,
      1
    ],
    "io_out": [
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),4)"
  },
  {
    "input": "input : list = [5, 5, -2, -3, -2]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(add_n(reverse(add_n([5, 5, -2, -3, -2],5)),-2)),1)",
    "io_inp": [
      5,
      5,
      -2,
      -3,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(reverse(add_n(input,5)),-2)),1)"
  },
  {
    "input": "input : list = [2, -4, -2, 4, -1]\noutput : list = [-6, -4, -3, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(reverse([2, -4, -2, 4, -1]),-2))))",
    "io_inp": [
      2,
      -4,
      -2,
      4,
      -1
    ],
    "io_out": [
      -6,
      -4,
      -3,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [2, -2]",
    "output": "generated_output : list = add_n([1, -3],1)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [4, 2, 1]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = sort_des([4, 2, 1])",
    "io_inp": [
      4,
      2,
      1
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 4, -3, -1, -3, 1]\noutput : list = [1, -3, -1, -3, 4, -2]",
    "output": "generated_output : list = reverse([-2, 4, -3, -1, -3, 1])",
    "io_inp": [
      -2,
      4,
      -3,
      -1,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -1,
      -3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4, 0, -1, 2]\noutput : list = [2, 2, 0, -1, -4]",
    "output": "generated_output : list = sort_des([2, -4, 0, -1, 2])",
    "io_inp": [
      2,
      -4,
      0,
      -1,
      2
    ],
    "io_out": [
      2,
      2,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -1, 3]\noutput : list = [-10, -8, -4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(take(add_n([-3, -1, 3],-3),10),-1),-4),1)",
    "io_inp": [
      -3,
      -1,
      3
    ],
    "io_out": [
      -10,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(take(add_n(input,-3),10),-1),-4),1)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [0, 9]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(drop([-3, 4, -5],1)),5)))",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(drop(input,1)),5)))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [5, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des([2, -2])),-5),2)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(input)),-5),2)"
  },
  {
    "input": "input : list = [-5, -3, 5, 3]\noutput : list = [9, 7, -1, 1]",
    "output": "generated_output : list = sub_n(mul_n([-5, -3, 5, 3],-1),-4)",
    "io_inp": [
      -5,
      -3,
      5,
      3
    ],
    "io_out": [
      9,
      7,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),-4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, -16]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(mul_n([0, -4],4),14))))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(mul_n(input,4),14))))"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [-50, -10]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(drop([-4, 5, 1],1),10),-5)),2)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      -50,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(drop(input,1),10),-5)),2)"
  },
  {
    "input": "input : list = [1, 1, -5, 5, 3, -3]\noutput : list = [3, 1, -1, -1, -5, -7]",
    "output": "generated_output : list = add_n(sort_des(sub_n([1, 1, -5, 5, 3, -3],4)),2)",
    "io_inp": [
      1,
      1,
      -5,
      5,
      3,
      -3
    ],
    "io_out": [
      3,
      1,
      -1,
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,4)),2)"
  },
  {
    "input": "input : list = [5, -5, 2, 1, 0]\noutput : list = [4, 1, 0, -1, -6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(sort_des([5, -5, 2, 1, 0]),14),-4),-1),-2)",
    "io_inp": [
      5,
      -5,
      2,
      1,
      0
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(sort_des(input),14),-4),-1),-2)"
  },
  {
    "input": "input : list = [-4, 1, 4, 2]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(reverse(take([-4, 1, 4, 2],1)),1)",
    "io_inp": [
      -4,
      1,
      4,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(input,1)),1)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(drop([-3, -5, -2],1))",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 0, 3, -4, 4]\noutput : list = [4, 0, -12]",
    "output": "generated_output : list = mul_n(take([-1, 0, 3, -4, 4],3),-4)",
    "io_inp": [
      -1,
      0,
      3,
      -4,
      4
    ],
    "io_out": [
      4,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-4)"
  },
  {
    "input": "input : list = [2, 1, -1]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = mul_n(reverse([2, 1, -1]),-1)",
    "io_inp": [
      2,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-2, 5, -2, 1]\noutput : list = [-10, -7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(drop([-2, 5, -2, 1],2)),-5),-3)",
    "io_inp": [
      -2,
      5,
      -2,
      1
    ],
    "io_out": [
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(drop(input,2)),-5),-3)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [-14, -8, -5]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n([2, 4, 5],5),2),3),1)",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      -14,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(input,5),2),3),1)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des([1, -5])",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, 5, 3, 2, 5]\noutput : list = [8, 5, 6, 8, -2, 1]",
    "output": "generated_output : list = reverse(sub_n([-2, -5, 5, 3, 2, 5],-3))",
    "io_inp": [
      -2,
      -5,
      5,
      3,
      2,
      5
    ],
    "io_out": [
      8,
      5,
      6,
      8,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [1, 5, 4, 3, 1, 4]\noutput : list = [2, -1, 1, 2, 3, -1]",
    "output": "generated_output : list = reverse(sub_n([1, 5, 4, 3, 1, 4],2))",
    "io_inp": [
      1,
      5,
      4,
      3,
      1,
      4
    ],
    "io_out": [
      2,
      -1,
      1,
      2,
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [3, -5, 3, -1]\noutput : list = [-2, -10, -2, -6]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(add_n([3, -5, 3, -1],-5)))))",
    "io_inp": [
      3,
      -5,
      3,
      -1
    ],
    "io_out": [
      -2,
      -10,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [1, 3, -3, 1]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(drop(take(drop([1, 3, -3, 1],1),3),2),1)",
    "io_inp": [
      1,
      3,
      -3,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(drop(input,1),3),2),1)"
  },
  {
    "input": "input : list = [0, -3, 5, 2]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(drop([0, -3, 5, 2],2)))),9)",
    "io_inp": [
      0,
      -3,
      5,
      2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(drop(input,2)))),9)"
  },
  {
    "input": "input : list = [-2, -1, 1, 1, -4, 5]\noutput : list = [-35, -15, -15, -5, 0, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_asc([-2, -1, 1, 1, -4, 5]),-2),-5)),37)",
    "io_inp": [
      -2,
      -1,
      1,
      1,
      -4,
      5
    ],
    "io_out": [
      -35,
      -15,
      -15,
      -5,
      0,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(sort_asc(input),-2),-5)),37)"
  },
  {
    "input": "input : list = [4, 0, -3, 5, -3]\noutput : list = [5, 4, 0, -3, -3]",
    "output": "generated_output : list = sort_des([4, 0, -3, 5, -3])",
    "io_inp": [
      4,
      0,
      -3,
      5,
      -3
    ],
    "io_out": [
      5,
      4,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, -2]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -1, -2],1)",
    "io_inp": [
      1,
      -1,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [0, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([4, -4])),-4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [4, -5, 5]\noutput : list = [5, -4]",
    "output": "generated_output : list = drop(sort_des(sub_n([4, -5, 5],-1)),1)",
    "io_inp": [
      4,
      -5,
      5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = drop(sort_des(sub_n(input,-1)),1)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [0, -3, 1]",
    "output": "generated_output : list = reverse([1, -3, 0])",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, 3, -1, -1]\noutput : list = [-37, -22, -17, -17, -2]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(take(sub_n([0, -4, 3, -1, -1],-4),21),-5),-2))",
    "io_inp": [
      0,
      -4,
      3,
      -1,
      -1
    ],
    "io_out": [
      -37,
      -22,
      -17,
      -17,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(take(sub_n(input,-4),21),-5),-2))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [13, 10]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(mul_n([5, 4],3)),-2)),-4)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      13,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(mul_n(input,3)),-2)),-4)"
  },
  {
    "input": "input : list = [1, -5, 0, 4]\noutput : list = [10, 2, -8, 4]",
    "output": "generated_output : list = add_n(mul_n(reverse([1, -5, 0, 4]),2),2)",
    "io_inp": [
      1,
      -5,
      0,
      4
    ],
    "io_out": [
      10,
      2,
      -8,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),2),2)"
  },
  {
    "input": "input : list = [-4, 3, -4, -4]\noutput : list = [45, -60]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(mul_n([-4, 3, -4, -4],-3),2)),-5))",
    "io_inp": [
      -4,
      3,
      -4,
      -4
    ],
    "io_out": [
      45,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(mul_n(input,-3),2)),-5))"
  },
  {
    "input": "input : list = [-5, 5, -5]\noutput : list = [3, -7, -7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(reverse([-5, 5, -5]),4),-1),1))",
    "io_inp": [
      -5,
      5,
      -5
    ],
    "io_out": [
      3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(reverse(input),4),-1),1))"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [-1, 3, 1]",
    "output": "generated_output : list = reverse([1, 3, -1])",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      -1,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -4, 1, 1, 4, 1]\noutput : list = [1, 6, 6, 6, 6, 9]",
    "output": "generated_output : list = sort_asc(take(sub_n([1, -4, 1, 1, 4, 1],-5),15))",
    "io_inp": [
      1,
      -4,
      1,
      1,
      4,
      1
    ],
    "io_out": [
      1,
      6,
      6,
      6,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,-5),15))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = reverse([5, -4])",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -3, 4, -5]\noutput : list = [2, -3]",
    "output": "generated_output : list = take([2, -3, 4, -5],2)",
    "io_inp": [
      2,
      -3,
      4,
      -5
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, -5, -2, 5, -5, 1]\noutput : list = [5, -1, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(drop(mul_n([-2, -5, -2, 5, -5, 1],-1),3))),57)",
    "io_inp": [
      -2,
      -5,
      -2,
      5,
      -5,
      1
    ],
    "io_out": [
      5,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(drop(mul_n(input,-1),3))),57)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_des([-1, 2]))),10))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(sort_des(input))),10))"
  },
  {
    "input": "input : list = [-1, -1, 3, 3]\noutput : list = [-6, -6, -10, -10]",
    "output": "generated_output : list = add_n(sort_des(sub_n(take(sub_n([-1, -1, 3, 3],5),12),2)),-2)",
    "io_inp": [
      -1,
      -1,
      3,
      3
    ],
    "io_out": [
      -6,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(take(sub_n(input,5),12),2)),-2)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [-10, -7, -4]",
    "output": "generated_output : list = sort_asc(sub_n([1, -5, -2],5))",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,5))"
  },
  {
    "input": "input : list = [0, -3, -5, 4]\noutput : list = [-2, -5, -7, 2]",
    "output": "generated_output : list = reverse(reverse(sub_n([0, -3, -5, 4],2)))",
    "io_inp": [
      0,
      -3,
      -5,
      4
    ],
    "io_out": [
      -2,
      -5,
      -7,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,2)))"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [-10, 5, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(reverse([2, -2, 1])),5)),10)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      -10,
      5,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(reverse(input)),5)),10)"
  },
  {
    "input": "input : list = [3, -2, -2, 1]\noutput : list = [9, 3, -6, -6]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(mul_n([3, -2, -2, 1],3))),16))",
    "io_inp": [
      3,
      -2,
      -2,
      1
    ],
    "io_out": [
      9,
      3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(mul_n(input,3))),16))"
  },
  {
    "input": "input : list = [3, 5, 3]\noutput : list = [13, 11, 11]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(add_n([3, 5, 3],-2)),5),5))",
    "io_inp": [
      3,
      5,
      3
    ],
    "io_out": [
      13,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(add_n(input,-2)),5),5))"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [32, 64, -32]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(mul_n([-2, 4, 2],2)),-4),-2),44)",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      32,
      64,
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(mul_n(input,2)),-4),-2),44)"
  },
  {
    "input": "input : list = [1, 3, 3, 0]\noutput : list = [1, 2, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(add_n([1, 3, 3, 0],4),-3))",
    "io_inp": [
      1,
      3,
      3,
      0
    ],
    "io_out": [
      1,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,4),-3))"
  },
  {
    "input": "input : list = [4, -1, 4, -2, 2]\noutput : list = [-1, 4, -2, 2]",
    "output": "generated_output : list = drop([4, -1, 4, -2, 2],1)",
    "io_inp": [
      4,
      -1,
      4,
      -2,
      2
    ],
    "io_out": [
      -1,
      4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 5, -5, -1]\noutput : list = [-7]",
    "output": "generated_output : list = add_n(add_n(add_n(drop(sub_n([-2, 5, -5, -1],2),3),1),-1),-4)",
    "io_inp": [
      -2,
      5,
      -5,
      -1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(drop(sub_n(input,2),3),1),-1),-4)"
  },
  {
    "input": "input : list = [-5, -1, 4]\noutput : list = [15]",
    "output": "generated_output : list = mul_n(take([-5, -1, 4],1),-3)",
    "io_inp": [
      -5,
      -1,
      4
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-5, 0, -1, -2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = take(sort_des(drop([-5, 0, -1, -2, 3],3)),11)",
    "io_inp": [
      -5,
      0,
      -1,
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,3)),11)"
  },
  {
    "input": "input : list = [-4, 4, 5, 4, 5]\noutput : list = [-7, 1, 1, 2, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(sub_n([-4, 4, 5, 4, 5],3),11)),21))",
    "io_inp": [
      -4,
      4,
      5,
      4,
      5
    ],
    "io_out": [
      -7,
      1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(sub_n(input,3),11)),21))"
  },
  {
    "input": "input : list = [-1, -3, 2]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 2])",
    "io_inp": [
      -1,
      -3,
      2
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3, 4]\noutput : list = [330, 285, -30]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(add_n([-4, -3, 4],-4),-3),2),5),3)",
    "io_inp": [
      -4,
      -3,
      4
    ],
    "io_out": [
      330,
      285,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(add_n(input,-4),-3),2),5),3)"
  },
  {
    "input": "input : list = [-1, 3, -3, 3, -5, 4]\noutput : list = [4, 3, 3, -1, -3, -5]",
    "output": "generated_output : list = take(reverse(sort_asc([-1, 3, -3, 3, -5, 4])),7)",
    "io_inp": [
      -1,
      3,
      -3,
      3,
      -5,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),7)"
  },
  {
    "input": "input : list = [3, -2, 1, 5]\noutput : list = [-11, -8, -6, -4]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_asc(reverse([3, -2, 1, 5])),-3),3),-3)",
    "io_inp": [
      3,
      -2,
      1,
      5
    ],
    "io_out": [
      -11,
      -8,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_asc(reverse(input)),-3),3),-3)"
  },
  {
    "input": "input : list = [-4, 2, 2]\noutput : list = [-10, -10, 20]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(sort_des([-4, 2, 2])))),-5)",
    "io_inp": [
      -4,
      2,
      2
    ],
    "io_out": [
      -10,
      -10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [-1, 5, 0, 2, 4, -2]\noutput : list = [-11, -5, -7, -9, -4, -10]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(add_n([-1, 5, 0, 2, 4, -2],-3),17)),5),-1)",
    "io_inp": [
      -1,
      5,
      0,
      2,
      4,
      -2
    ],
    "io_out": [
      -11,
      -5,
      -7,
      -9,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(add_n(input,-3),17)),5),-1)"
  },
  {
    "input": "input : list = [-1, -1, -5, -2]\noutput : list = [3, 6, 7, 7]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(add_n([-1, -1, -5, -2],3)),5),18))",
    "io_inp": [
      -1,
      -1,
      -5,
      -2
    ],
    "io_out": [
      3,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(add_n(input,3)),5),18))"
  },
  {
    "input": "input : list = [-1, 2, 1, 2]\noutput : list = [-5, 10, 5, 10]",
    "output": "generated_output : list = mul_n([-1, 2, 1, 2],5)",
    "io_inp": [
      -1,
      2,
      1,
      2
    ],
    "io_out": [
      -5,
      10,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 0, -2, -1]\noutput : list = [3, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([3, 0, -2, -1])))",
    "io_inp": [
      3,
      0,
      -2,
      -1
    ],
    "io_out": [
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [0, -3, -1, 2, 4]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = add_n(drop([0, -3, -1, 2, 4],2),-4)",
    "io_inp": [
      0,
      -3,
      -1,
      2,
      4
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [-5, -2, 1, -4, -4, -5]\noutput : list = [-9, -9, -8, -8, -6, -3]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_asc([-5, -2, 1, -4, -4, -5])),-4),9))",
    "io_inp": [
      -5,
      -2,
      1,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -8,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_asc(input)),-4),9))"
  },
  {
    "input": "input : list = [1, -1, -1, 1, 3]\noutput : list = [10, 8, 8]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(take([1, -1, -1, 1, 3],3),4),-5)))",
    "io_inp": [
      1,
      -1,
      -1,
      1,
      3
    ],
    "io_out": [
      10,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(take(input,3),4),-5)))"
  },
  {
    "input": "input : list = [2, 5, 3, 0, 3, 0]\noutput : list = [6, 9, 6, 9, 11, 8]",
    "output": "generated_output : list = reverse(take(mul_n(sub_n(add_n([2, 5, 3, 0, 3, 0],1),-5),1),30))",
    "io_inp": [
      2,
      5,
      3,
      0,
      3,
      0
    ],
    "io_out": [
      6,
      9,
      6,
      9,
      11,
      8
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sub_n(add_n(input,1),-5),1),30))"
  },
  {
    "input": "input : list = [-1, 2, -1, 3]\noutput : list = [-2, 4, -2, 6]",
    "output": "generated_output : list = mul_n([-1, 2, -1, 3],2)",
    "io_inp": [
      -1,
      2,
      -1,
      3
    ],
    "io_out": [
      -2,
      4,
      -2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, -2, 4, 0, -2, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(drop(drop([-4, -2, 4, 0, -2, -1],3),1)),9))",
    "io_inp": [
      -4,
      -2,
      4,
      0,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(drop(drop(input,3),1)),9))"
  },
  {
    "input": "input : list = [-1, -5, -2, 3]\noutput : list = [11, -1, -4, -13]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-1, -5, -2, 3],3)),-2)",
    "io_inp": [
      -1,
      -5,
      -2,
      3
    ],
    "io_out": [
      11,
      -1,
      -4,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,3)),-2)"
  },
  {
    "input": "input : list = [0, 3, 4, 1, 2]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n(add_n(drop([0, 3, 4, 1, 2],3),2),2)",
    "io_inp": [
      0,
      3,
      4,
      1,
      2
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(input,3),2),2)"
  },
  {
    "input": "input : list = [3, 3, 5, 5, -5]\noutput : list = [6, 6, 4, 4, -4]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(add_n([3, 3, 5, 5, -5],-2),15),-3)))",
    "io_inp": [
      3,
      3,
      5,
      5,
      -5
    ],
    "io_out": [
      6,
      6,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(add_n(input,-2),15),-3)))"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(drop([-3, -2, 3],1)),-3)),3)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(drop(input,1)),-3)),3)"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [15, 0, 15]",
    "output": "generated_output : list = mul_n([-5, 0, -5],-3)",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      15,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [-36, 24, 24]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc(sub_n([3, 3, -2],1)),4),17),3)",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      -36,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(sub_n(input,1)),4),17),3)"
  },
  {
    "input": "input : list = [5, -1, -2, 1, -2, -2]\noutput : list = [-7, -7, -7, -6, -4, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([5, -1, -2, 1, -2, -2],5)))",
    "io_inp": [
      5,
      -1,
      -2,
      1,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -7,
      -6,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,5)))"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = reverse(reverse(sub_n(take(reverse([4, -4]),8),4)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(take(reverse(input),8),4)))"
  },
  {
    "input": "input : list = [3, 3, -2, -3, -2, 2]\noutput : list = [-6, -6, 4, 6, 4, -4]",
    "output": "generated_output : list = mul_n([3, 3, -2, -3, -2, 2],-2)",
    "io_inp": [
      3,
      3,
      -2,
      -3,
      -2,
      2
    ],
    "io_out": [
      -6,
      -6,
      4,
      6,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [5, -3, -5, 2, -2]\noutput : list = [0, -8, -10, -3, -7]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n(sub_n([5, -3, -5, 2, -2],3),-5),15),3),4)",
    "io_inp": [
      5,
      -3,
      -5,
      2,
      -2
    ],
    "io_out": [
      0,
      -8,
      -10,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(sub_n(input,3),-5),15),3),4)"
  },
  {
    "input": "input : list = [5, 4, -2, -1, -2, 4]\noutput : list = [5, 4, 4, -1, -2, -2]",
    "output": "generated_output : list = sort_des([5, 4, -2, -1, -2, 4])",
    "io_inp": [
      5,
      4,
      -2,
      -1,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-6, 1]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(sort_des([-5, 2]))),35),1)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(sort_des(input))),35),1)"
  },
  {
    "input": "input : list = [-2, 5, -2, -4]\noutput : list = [8, 1, 1, -1]",
    "output": "generated_output : list = sort_des(reverse(sub_n([-2, 5, -2, -4],-3)))",
    "io_inp": [
      -2,
      5,
      -2,
      -4
    ],
    "io_out": [
      8,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(input,-3)))"
  },
  {
    "input": "input : list = [-4, 3, 1]\noutput : list = [1, 3, -4]",
    "output": "generated_output : list = reverse([-4, 3, 1])",
    "io_inp": [
      -4,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, 1, 0, 1, 0]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(take([-5, 5, 1, 0, 1, 0],1),4)",
    "io_inp": [
      -5,
      5,
      1,
      0,
      1,
      0
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),4)"
  },
  {
    "input": "input : list = [-5, -3, 5, 0, -1]\noutput : list = [20, 0, -4, -12]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(reverse([-5, -3, 5, 0, -1]),4),4)))",
    "io_inp": [
      -5,
      -3,
      5,
      0,
      -1
    ],
    "io_out": [
      20,
      0,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(reverse(input),4),4)))"
  },
  {
    "input": "input : list = [1, -4, 3, 1, -3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -4, 3, 1, -3],1)",
    "io_inp": [
      1,
      -4,
      3,
      1,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 4, 5, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = take([-1, -4, 4, 5, -1],2)",
    "io_inp": [
      -1,
      -4,
      4,
      5,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-1, 1, -5, -5, -3]\noutput : list = [36, 28, 20, 12, 12]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n([-1, 1, -5, -5, -3],-5)),-3),40),4)",
    "io_inp": [
      -1,
      1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      36,
      28,
      20,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(sub_n(input,-5)),-3),40),4)"
  },
  {
    "input": "input : list = [-1, -1, 5, -1]\noutput : list = [-9, -9, -9, -3]",
    "output": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_asc([-1, -1, 5, -1]),3)),5),18)",
    "io_inp": [
      -1,
      -1,
      5,
      -1
    ],
    "io_out": [
      -9,
      -9,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sub_n(sort_asc(input),3)),5),18)"
  },
  {
    "input": "input : list = [-3, -3, -1, 5, -1]\noutput : list = [-3, -3, -1, -1, 5]",
    "output": "generated_output : list = sort_asc([-3, -3, -1, 5, -1])",
    "io_inp": [
      -3,
      -3,
      -1,
      5,
      -1
    ],
    "io_out": [
      -3,
      -3,
      -1,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -1, -1, -1, 0, 0]\noutput : list = [0, 0, -1, -1, -1, -5]",
    "output": "generated_output : list = sort_des([-5, -1, -1, -1, 0, 0])",
    "io_inp": [
      -5,
      -1,
      -1,
      -1,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, 3, 5, -4, -2]\noutput : list = [5, 7, 8, 12, 13, 14]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_des([-1, 4, 3, 5, -4, -2]),-5))),-4)",
    "io_inp": [
      -1,
      4,
      3,
      5,
      -4,
      -2
    ],
    "io_out": [
      5,
      7,
      8,
      12,
      13,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(sort_des(input),-5))),-4)"
  },
  {
    "input": "input : list = [-2, -2, -3, 0, -4, -2]\noutput : list = [9, 6, 6, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(take([-2, -2, -3, 0, -4, -2],4),29))),-3)",
    "io_inp": [
      -2,
      -2,
      -3,
      0,
      -4,
      -2
    ],
    "io_out": [
      9,
      6,
      6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(take(input,4),29))),-3)"
  },
  {
    "input": "input : list = [5, 3, -3, 2]\noutput : list = [2, 0, -1, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(sort_des([5, 3, -3, 2]),-1))),2)",
    "io_inp": [
      5,
      3,
      -3,
      2
    ],
    "io_out": [
      2,
      0,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(sort_des(input),-1))),2)"
  },
  {
    "input": "input : list = [4, -3, -2, 3]\noutput : list = [6, -4, -6]",
    "output": "generated_output : list = take(mul_n(sort_des(drop([4, -3, -2, 3],1)),2),34)",
    "io_inp": [
      4,
      -3,
      -2,
      3
    ],
    "io_out": [
      6,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(drop(input,1)),2),34)"
  },
  {
    "input": "input : list = [-2, -5, -3, 0]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -5, -3, 0],1)",
    "io_inp": [
      -2,
      -5,
      -3,
      0
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 2, 3, 2, -4]\noutput : list = [10, 9, 8, 8, 2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n([4, 2, 3, 2, -4],1),5)))",
    "io_inp": [
      4,
      2,
      3,
      2,
      -4
    ],
    "io_out": [
      10,
      9,
      8,
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(input,1),5)))"
  },
  {
    "input": "input : list = [-3, -4, 3, 5]\noutput : list = [5, 3, -3, -4]",
    "output": "generated_output : list = take(sort_des([-3, -4, 3, 5]),7)",
    "io_inp": [
      -3,
      -4,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [-5, 4, 3, 5]\noutput : list = [4, 3, 5]",
    "output": "generated_output : list = drop([-5, 4, 3, 5],1)",
    "io_inp": [
      -5,
      4,
      3,
      5
    ],
    "io_out": [
      4,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 2, 1, -4, -1]\noutput : list = [-6, -9]",
    "output": "generated_output : list = take(add_n(take(sort_des(drop([3, 2, 1, -4, -1],3)),23),-5),40)",
    "io_inp": [
      3,
      2,
      1,
      -4,
      -1
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(drop(input,3)),23),-5),40)"
  },
  {
    "input": "input : list = [4, 1, -1, -4]\noutput : list = [6, -3, -9, -18]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_asc([4, 1, -1, -4]),2)),3))",
    "io_inp": [
      4,
      1,
      -1,
      -4
    ],
    "io_out": [
      6,
      -3,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_asc(input),2)),3))"
  },
  {
    "input": "input : list = [2, 0, 4, -2, 2]\noutput : list = [1, 3, 5, 5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(sort_des([2, 0, 4, -2, 2]))),-3))",
    "io_inp": [
      2,
      0,
      4,
      -2,
      2
    ],
    "io_out": [
      1,
      3,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(sort_des(input))),-3))"
  },
  {
    "input": "input : list = [1, 5, 5, 3]\noutput : list = [4, 20, 20, 12]",
    "output": "generated_output : list = add_n(take(take(add_n(mul_n([1, 5, 5, 3],4),-4),16),20),4)",
    "io_inp": [
      1,
      5,
      5,
      3
    ],
    "io_out": [
      4,
      20,
      20,
      12
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(mul_n(input,4),-4),16),20),4)"
  },
  {
    "input": "input : list = [-1, 0, 5, -1, -5]\noutput : list = [60, 20, 20, 10, -40]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n([-1, 0, 5, -1, -5],2))),2),-5)",
    "io_inp": [
      -1,
      0,
      5,
      -1,
      -5
    ],
    "io_out": [
      60,
      20,
      20,
      10,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(mul_n(input,2))),2),-5)"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [-1, 0, 9]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(sort_asc([-4, 5, -5]),12)),-4),13)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      -1,
      0,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(sort_asc(input),12)),-4),13)"
  },
  {
    "input": "input : list = [1, 3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = drop([1, 3, -5],1)",
    "io_inp": [
      1,
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 4, -1, -1]\noutput : list = [4, -1, -1]",
    "output": "generated_output : list = sort_des(drop([-5, 4, -1, -1],1))",
    "io_inp": [
      -5,
      4,
      -1,
      -1
    ],
    "io_out": [
      4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -1, -4, 4]\noutput : list = [-1, -9, -6, -6]",
    "output": "generated_output : list = reverse(sub_n([-1, -1, -4, 4],5))",
    "io_inp": [
      -1,
      -1,
      -4,
      4
    ],
    "io_out": [
      -1,
      -9,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,5))"
  },
  {
    "input": "input : list = [4, -2, 5, 3]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(take([4, -2, 5, 3],1),1))))",
    "io_inp": [
      4,
      -2,
      5,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(take(input,1),1))))"
  },
  {
    "input": "input : list = [-3, 0, 1, -4, -4]\noutput : list = [-12, -8, 4, 8, 8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(sort_des([-3, 0, 1, -4, -4]),2))),-4)",
    "io_inp": [
      -3,
      0,
      1,
      -4,
      -4
    ],
    "io_out": [
      -12,
      -8,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(sort_des(input),2))),-4)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [-3, 5, 5]",
    "output": "generated_output : list = sub_n(reverse(add_n([5, 5, -3],3)),3)",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      -3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,3)),3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc([2, -1])",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3, -3]\noutput : list = [20, -12, -12]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(mul_n([5, -3, -3],4),17))))",
    "io_inp": [
      5,
      -3,
      -3
    ],
    "io_out": [
      20,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(mul_n(input,4),17))))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [8, 3]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(sort_des([4, -1])),4),33))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      8,
      3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(sort_des(input)),4),33))"
  },
  {
    "input": "input : list = [4, -5, -5, 5, -4]\noutput : list = [-5, -5, -4, 4, 5]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(sort_asc([4, -5, -5, 5, -4]))),18))",
    "io_inp": [
      4,
      -5,
      -5,
      5,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(sort_asc(input))),18))"
  },
  {
    "input": "input : list = [-2, 1, -1, -4, 1]\noutput : list = [-3, -1, 0, 2, 2]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(add_n([-2, 1, -1, -4, 1],-4)),-4)),1)",
    "io_inp": [
      -2,
      1,
      -1,
      -4,
      1
    ],
    "io_out": [
      -3,
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(add_n(input,-4)),-4)),1)"
  },
  {
    "input": "input : list = [0, 5, 0, 3]\noutput : list = [-10, -10, -7, -5]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(sort_asc([0, 5, 0, 3]),-5),-5),1))",
    "io_inp": [
      0,
      5,
      0,
      3
    ],
    "io_out": [
      -10,
      -10,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(sort_asc(input),-5),-5),1))"
  },
  {
    "input": "input : list = [-1, -5, -2, -4, 3, -4]\noutput : list = [-24, -40, -28, -36, -8, -36]",
    "output": "generated_output : list = take(mul_n(add_n([-1, -5, -2, -4, 3, -4],-5),4),37)",
    "io_inp": [
      -1,
      -5,
      -2,
      -4,
      3,
      -4
    ],
    "io_out": [
      -24,
      -40,
      -28,
      -36,
      -8,
      -36
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-5),4),37)"
  },
  {
    "input": "input : list = [-4, 4, 2, -1]\noutput : list = [8, 4, -2, -8]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(mul_n([-4, 4, 2, -1],2),20)),40))",
    "io_inp": [
      -4,
      4,
      2,
      -1
    ],
    "io_out": [
      8,
      4,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(mul_n(input,2),20)),40))"
  },
  {
    "input": "input : list = [5, -4, -2, -4, 5]\noutput : list = [1, 1, -6, -8, -8]",
    "output": "generated_output : list = sort_des(reverse(add_n([5, -4, -2, -4, 5],-4)))",
    "io_inp": [
      5,
      -4,
      -2,
      -4,
      5
    ],
    "io_out": [
      1,
      1,
      -6,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [1, -4]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_des([-3, 2]))),-1),1)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_des(input))),-1),1)"
  },
  {
    "input": "input : list = [4, 5, 1]\noutput : list = [13, 14, 10]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n([4, 5, 1],-5),-1),2),1)",
    "io_inp": [
      4,
      5,
      1
    ],
    "io_out": [
      13,
      14,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(input,-5),-1),2),1)"
  },
  {
    "input": "input : list = [-1, -4, 5, -5, -3, -5]\noutput : list = [-5, -5, -4, -3, -1, 5]",
    "output": "generated_output : list = sort_asc([-1, -4, 5, -5, -3, -5])",
    "io_inp": [
      -1,
      -4,
      5,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [12]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(add_n(take([4, 5, -5],1),5)),-3))",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(add_n(take(input,1),5)),-3))"
  },
  {
    "input": "input : list = [3, 5, -5, 3, -2]\noutput : list = [-4, -1, 4, 4, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sort_des([3, 5, -5, 3, -2]),-4)),-5),-2)",
    "io_inp": [
      3,
      5,
      -5,
      3,
      -2
    ],
    "io_out": [
      -4,
      -1,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sub_n(sort_des(input),-4)),-5),-2)"
  },
  {
    "input": "input : list = [-1, -3, 3, 4, 2]\noutput : list = [2, 0, 6, 7, 5]",
    "output": "generated_output : list = sub_n([-1, -3, 3, 4, 2],-3)",
    "io_inp": [
      -1,
      -3,
      3,
      4,
      2
    ],
    "io_out": [
      2,
      0,
      6,
      7,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 0, 4, -5, 0]\noutput : list = [6, 2, -3]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(drop([-4, 0, 4, -5, 0],2)),2),4))",
    "io_inp": [
      -4,
      0,
      4,
      -5,
      0
    ],
    "io_out": [
      6,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(drop(input,2)),2),4))"
  },
  {
    "input": "input : list = [2, 1, 0, 3]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(sort_des(take([2, 1, 0, 3],2)))",
    "io_inp": [
      2,
      1,
      0,
      3
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [4, -3, -3, 1, -1]\noutput : list = [2, -5, -5, -1, -3]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(add_n([4, -3, -3, 1, -1],2),4)),12))",
    "io_inp": [
      4,
      -3,
      -3,
      1,
      -1
    ],
    "io_out": [
      2,
      -5,
      -5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(add_n(input,2),4)),12))"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [-4, 1, 5]",
    "output": "generated_output : list = sort_asc([5, -4, 1])",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      -4,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1, -1, -1, -5]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_asc(drop([-1, 1, -1, -1, -5],2))),5))",
    "io_inp": [
      -1,
      1,
      -1,
      -1,
      -5
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_asc(drop(input,2))),5))"
  },
  {
    "input": "input : list = [-4, -3, -1, -5, 1, -4]\noutput : list = [-3, -2, -2, -1, 1, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n([-4, -3, -1, -5, 1, -4],4),-2))),4)",
    "io_inp": [
      -4,
      -3,
      -1,
      -5,
      1,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n(input,4),-2))),4)"
  },
  {
    "input": "input : list = [1, 5, -2, -4, -3, -5]\noutput : list = [56, 32, 44, 20, -64, -16]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n([1, 5, -2, -4, -3, -5],4),-3)),-4)",
    "io_inp": [
      1,
      5,
      -2,
      -4,
      -3,
      -5
    ],
    "io_out": [
      56,
      32,
      44,
      20,
      -64,
      -16
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(input,4),-3)),-4)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(sub_n([-4, -5],4),11)),5))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(sub_n(input,4),11)),5))"
  },
  {
    "input": "input : list = [-4, 4, 3, -5, -1]\noutput : list = [4, -12, -4]",
    "output": "generated_output : list = mul_n(drop(add_n([-4, 4, 3, -5, -1],-1),2),2)",
    "io_inp": [
      -4,
      4,
      3,
      -5,
      -1
    ],
    "io_out": [
      4,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(input,-1),2),2)"
  },
  {
    "input": "input : list = [-4, 2, 0, 4]\noutput : list = [20, 0, -10, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-4, 2, 0, 4]),-5))",
    "io_inp": [
      -4,
      2,
      0,
      4
    ],
    "io_out": [
      20,
      0,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-3, 4, -1, 0, -2, -5]\noutput : list = [-8, -7, -6, -5, -1]",
    "output": "generated_output : list = take(reverse(sub_n(take(sort_des([-3, 4, -1, 0, -2, -5]),5),5)),26)",
    "io_inp": [
      -3,
      4,
      -1,
      0,
      -2,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(sort_des(input),5),5)),26)"
  },
  {
    "input": "input : list = [0, 2, 2, -3]\noutput : list = [2, 4, 4, -1]",
    "output": "generated_output : list = sub_n([0, 2, 2, -3],-2)",
    "io_inp": [
      0,
      2,
      2,
      -3
    ],
    "io_out": [
      2,
      4,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 0, 1, 0]\noutput : list = [1, 0, 0, -1]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n(sub_n([-1, 0, 1, 0],5),-5))),18)",
    "io_inp": [
      -1,
      0,
      1,
      0
    ],
    "io_out": [
      1,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(sub_n(input,5),-5))),18)"
  },
  {
    "input": "input : list = [-2, -3, 5, 0, 2, 5]\noutput : list = [-20, -20, -8]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(sort_des([-2, -3, 5, 0, 2, 5]))),3),-4)",
    "io_inp": [
      -2,
      -3,
      5,
      0,
      2,
      5
    ],
    "io_out": [
      -20,
      -20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(sort_des(input))),3),-4)"
  },
  {
    "input": "input : list = [3, -4, 4]\noutput : list = [9, 3, -39]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(mul_n([3, -4, 4],-2)),-2),3),-3)",
    "io_inp": [
      3,
      -4,
      4
    ],
    "io_out": [
      9,
      3,
      -39
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(mul_n(input,-2)),-2),3),-3)"
  },
  {
    "input": "input : list = [0, 0, -4, 2, -2]\noutput : list = [-10, -8, -6, -6, -4]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc([0, 0, -4, 2, -2]),-5),1),27)",
    "io_inp": [
      0,
      0,
      -4,
      2,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(input),-5),1),27)"
  },
  {
    "input": "input : list = [-4, 3, -4, 5, -5]\noutput : list = [25]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(take([-4, 3, -4, 5, -5],1),-4)),-4),-5)",
    "io_inp": [
      -4,
      3,
      -4,
      5,
      -5
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(take(input,1),-4)),-4),-5)"
  },
  {
    "input": "input : list = [5, -1, -2, 4]\noutput : list = [4, -2]",
    "output": "generated_output : list = mul_n(reverse(take(take(drop([5, -1, -2, 4],2),20),9)),1)",
    "io_inp": [
      5,
      -1,
      -2,
      4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(take(drop(input,2),20),9)),1)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, -15]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(reverse([0, -3]),3),3),5),-1)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(reverse(input),3),3),5),-1)"
  },
  {
    "input": "input : list = [5, 2, -5, 4, -1, -1]\noutput : list = [8, 7, 5, 2, 2, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(add_n([5, 2, -5, 4, -1, -1],3)))))",
    "io_inp": [
      5,
      2,
      -5,
      4,
      -1,
      -1
    ],
    "io_out": [
      8,
      7,
      5,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(add_n(input,3)))))"
  },
  {
    "input": "input : list = [2, 1, 2, -2, -2]\noutput : list = [15, 15, 10, -5, -5]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(mul_n([2, 1, 2, -2, -2],5)),5)),36)",
    "io_inp": [
      2,
      1,
      2,
      -2,
      -2
    ],
    "io_out": [
      15,
      15,
      10,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(mul_n(input,5)),5)),36)"
  },
  {
    "input": "input : list = [-2, 2, 1, 2]\noutput : list = [-30, -15, -10, -10]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(reverse([-2, 2, 1, 2]),-4)),-1),-5)",
    "io_inp": [
      -2,
      2,
      1,
      2
    ],
    "io_out": [
      -30,
      -15,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(reverse(input),-4)),-1),-5)"
  },
  {
    "input": "input : list = [2, -3, -1, -1, -3]\noutput : list = [-25, -10, -10, 0, 0]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(sub_n([2, -3, -1, -1, -3],-3),10),-5)))",
    "io_inp": [
      2,
      -3,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -25,
      -10,
      -10,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(sub_n(input,-3),10),-5)))"
  },
  {
    "input": "input : list = [2, 0, -2, 4, 3, 1]\noutput : list = [1, 3, 4, -2, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, -2, 4, 3, 1])",
    "io_inp": [
      2,
      0,
      -2,
      4,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      4,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, -1, -1, 5]\noutput : list = [5, -1, -1, 5, 4]",
    "output": "generated_output : list = reverse([4, 5, -1, -1, 5])",
    "io_inp": [
      4,
      5,
      -1,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      -1,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(take([-4, 1, -1],1),-5)),-4))",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(take(input,1),-5)),-4))"
  },
  {
    "input": "input : list = [3, 2, -2, 0, 0, -3]\noutput : list = [24, 0, 0, 16, -16, -24]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse([3, 2, -2, 0, 0, -3]),4),-2),11)",
    "io_inp": [
      3,
      2,
      -2,
      0,
      0,
      -3
    ],
    "io_out": [
      24,
      0,
      0,
      16,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(input),4),-2),11)"
  },
  {
    "input": "input : list = [5, -1, 3, 4]\noutput : list = [48, 96, 108, 120]",
    "output": "generated_output : list = reverse(sort_des(mul_n(mul_n(sub_n([5, -1, 3, 4],-5),4),3)))",
    "io_inp": [
      5,
      -1,
      3,
      4
    ],
    "io_out": [
      48,
      96,
      108,
      120
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(mul_n(sub_n(input,-5),4),3)))"
  },
  {
    "input": "input : list = [0, -5, 2]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = sort_asc(reverse([0, -5, 2]))",
    "io_inp": [
      0,
      -5,
      2
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, 0, 3, -2, -3, 3]\noutput : list = [3, -3, -2, 3, 0, 5]",
    "output": "generated_output : list = reverse([5, 0, 3, -2, -3, 3])",
    "io_inp": [
      5,
      0,
      3,
      -2,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -2,
      3,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, 2, 1]\noutput : list = [-4, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(reverse([-3, 0, 2, 1]),3)),2))",
    "io_inp": [
      -3,
      0,
      2,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(reverse(input),3)),2))"
  },
  {
    "input": "input : list = [3, -4, -1, 1, -5]\noutput : list = [9, -12]",
    "output": "generated_output : list = mul_n(take(take([3, -4, -1, 1, -5],2),23),3)",
    "io_inp": [
      3,
      -4,
      -1,
      1,
      -5
    ],
    "io_out": [
      9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,2),23),3)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [10, 8]",
    "output": "generated_output : list = mul_n([5, 4],2)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [-9, -3]",
    "output": "generated_output : list = sort_asc(take(add_n(take(reverse([5, 1, -5]),10),-4),2))",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(reverse(input),10),-4),2))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-5, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc([-3, 0])),-5)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),-5)"
  },
  {
    "input": "input : list = [4, 3, 3, 2, 3, 2]\noutput : list = [-6, -6, -5, -5, -5, -4]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n([4, 3, 3, 2, 3, 2],4),-4),20))",
    "io_inp": [
      4,
      3,
      3,
      2,
      3,
      2
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(input,4),-4),20))"
  },
  {
    "input": "input : list = [-2, 4, 4, 3, 3]\noutput : list = [-15]",
    "output": "generated_output : list = drop(mul_n([-2, 4, 4, 3, 3],-5),4)",
    "io_inp": [
      -2,
      4,
      4,
      3,
      3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = drop(mul_n(input,-5),4)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [6, 4, -4]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(mul_n([-3, -2, 2],-2))),23))",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      6,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(mul_n(input,-2))),23))"
  },
  {
    "input": "input : list = [-3, -4, 5, -5]\noutput : list = [-2, 6, 7, 8]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_asc([-3, -4, 5, -5])),-4),-1),-1)",
    "io_inp": [
      -3,
      -4,
      5,
      -5
    ],
    "io_out": [
      -2,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(sort_asc(input)),-4),-1),-1)"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [-1, -4, -1]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(sub_n([4, 1, 4],1)))),-4)",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      -1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(sub_n(input,1)))),-4)"
  },
  {
    "input": "input : list = [0, 0, 2, -1, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take(drop(reverse(add_n(sort_des([0, 0, 2, -1, 3]),-5)),4),28)",
    "io_inp": [
      0,
      0,
      2,
      -1,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(drop(reverse(add_n(sort_des(input),-5)),4),28)"
  },
  {
    "input": "input : list = [4, 5, 3, 2, 1, 2]\noutput : list = [5, 4, 3, 2, 2, 1]",
    "output": "generated_output : list = sort_des(reverse([4, 5, 3, 2, 1, 2]))",
    "io_inp": [
      4,
      5,
      3,
      2,
      1,
      2
    ],
    "io_out": [
      5,
      4,
      3,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, -1, 1, 4]\noutput : list = [0, -1, -4, -6]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(add_n([5, -1, 1, 4],-5)))))",
    "io_inp": [
      5,
      -1,
      1,
      4
    ],
    "io_out": [
      0,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [-5, 5, -4, -3]\noutput : list = [-16, 0, 2, 4]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(sub_n([-5, 5, -4, -3],-3)),-2)))",
    "io_inp": [
      -5,
      5,
      -4,
      -3
    ],
    "io_out": [
      -16,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(sub_n(input,-3)),-2)))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([4, 0])))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [-16, -36]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(drop([3, 1, -4],1),-5),7),4),1)",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      -16,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(drop(input,1),-5),7),4),1)"
  },
  {
    "input": "input : list = [0, 4, -3, -3, -4]\noutput : list = [-2, -1, -1, 2, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n([0, 4, -3, -3, -4],-2)),1)",
    "io_inp": [
      0,
      4,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -2,
      -1,
      -1,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(input,-2)),1)"
  },
  {
    "input": "input : list = [-1, -4, 2, -4, -2, -2]\noutput : list = [100, 100, 50, 50, 25, -50]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(reverse([-1, -4, 2, -4, -2, -2]),5)),-5),30)",
    "io_inp": [
      -1,
      -4,
      2,
      -4,
      -2,
      -2
    ],
    "io_out": [
      100,
      100,
      50,
      50,
      25,
      -50
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(reverse(input),5)),-5),30)"
  },
  {
    "input": "input : list = [0, -3, -3, 3, -4, 3]\noutput : list = [-4, -7, -7, -1, -8, -1]",
    "output": "generated_output : list = sub_n([0, -3, -3, 3, -4, 3],4)",
    "io_inp": [
      0,
      -3,
      -3,
      3,
      -4,
      3
    ],
    "io_out": [
      -4,
      -7,
      -7,
      -1,
      -8,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, -3, -3]\noutput : list = [9, 17, 17]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_des(mul_n([-1, -3, -3],-4))),3),-2)",
    "io_inp": [
      -1,
      -3,
      -3
    ],
    "io_out": [
      9,
      17,
      17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_des(mul_n(input,-4))),3),-2)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [11, -39, -19]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n([-1, -5, 5],1),2)),5),4)",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      11,
      -39,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(mul_n(input,1),2)),5),4)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-22, 13]",
    "output": "generated_output : list = add_n(mul_n([-4, 3],5),-2)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -22,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),-2)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-6, -3]",
    "output": "generated_output : list = add_n([-3, 0],-3)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, -2, 1, 5, -3, 3]\noutput : list = [56, 36, -24, -64, -64, -104]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(mul_n([3, -2, 1, 5, -3, 3],4),-5)),12),-4)",
    "io_inp": [
      3,
      -2,
      1,
      5,
      -3,
      3
    ],
    "io_out": [
      56,
      36,
      -24,
      -64,
      -64,
      -104
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(mul_n(input,4),-5)),12),-4)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [6, -18]",
    "output": "generated_output : list = mul_n(take(take(mul_n([1, -3],-2),6),18),-3)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      6,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(input,-2),6),18),-3)"
  },
  {
    "input": "input : list = [0, 4, -1, 5, -3]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(take([0, 4, -1, 5, -3],1)),26)",
    "io_inp": [
      0,
      4,
      -1,
      5,
      -3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,1)),26)"
  },
  {
    "input": "input : list = [-1, 2, -5, 0, -2, -5]\noutput : list = [-1, 1, 2, 3, 6, 6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sub_n([-1, 2, -5, 0, -2, -5],2)),-1)),-1)",
    "io_inp": [
      -1,
      2,
      -5,
      0,
      -2,
      -5
    ],
    "io_out": [
      -1,
      1,
      2,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sub_n(input,2)),-1)),-1)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-1, 8]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sub_n([-2, -5],-4)),3),-2))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sub_n(input,-4)),3),-2))"
  },
  {
    "input": "input : list = [3, 3, 5, -1, 1]\noutput : list = [5, 3, 3, 1, -1]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_asc(mul_n([3, 3, 5, -1, 1],1)))),14)",
    "io_inp": [
      3,
      3,
      5,
      -1,
      1
    ],
    "io_out": [
      5,
      3,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_asc(mul_n(input,1)))),14)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [5, 8]",
    "output": "generated_output : list = take(sub_n(take(sort_asc(reverse([1, 4])),16),-4),12)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(reverse(input)),16),-4),12)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(sort_asc(add_n(take(sort_asc([2, 4]),12),-2)),11)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(sort_asc(input),12),-2)),11)"
  },
  {
    "input": "input : list = [-2, 3, -3, 4, 5, 1]\noutput : list = [45, 36, 27, 9, -18, -27]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(mul_n([-2, 3, -3, 4, 5, 1],-3),-3))))",
    "io_inp": [
      -2,
      3,
      -3,
      4,
      5,
      1
    ],
    "io_out": [
      45,
      36,
      27,
      9,
      -18,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(mul_n(input,-3),-3))))"
  },
  {
    "input": "input : list = [-4, -2, -1, 0]\noutput : list = [-8, -6, -5, -4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n([-4, -2, -1, 0],1)),-3)",
    "io_inp": [
      -4,
      -2,
      -1,
      0
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(input,1)),-3)"
  },
  {
    "input": "input : list = [0, 4, 0, 0, -2]\noutput : list = [-7, -5, -5, -5, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sort_asc([0, 4, 0, 0, -2]),-5))))",
    "io_inp": [
      0,
      4,
      0,
      0,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sort_asc(input),-5))))"
  },
  {
    "input": "input : list = [-1, -2, 1, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(reverse(take(take(take([-1, -2, 1, 0],1),6),25)))",
    "io_inp": [
      -1,
      -2,
      1,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(take(take(input,1),6),25)))"
  },
  {
    "input": "input : list = [-3, -4, -1, 0, 0]\noutput : list = [-5, -6, -3, -2, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(add_n(add_n([-3, -4, -1, 0, 0],5),-3))),4)",
    "io_inp": [
      -3,
      -4,
      -1,
      0,
      0
    ],
    "io_out": [
      -5,
      -6,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(add_n(add_n(input,5),-3))),4)"
  },
  {
    "input": "input : list = [5, 2, 5, 4]\noutput : list = [9, 10, 7, 10]",
    "output": "generated_output : list = reverse(add_n(add_n([5, 2, 5, 4],2),3))",
    "io_inp": [
      5,
      2,
      5,
      4
    ],
    "io_out": [
      9,
      10,
      7,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,2),3))"
  },
  {
    "input": "input : list = [0, 5, 2, 5]\noutput : list = [-5, 0, -3, 0]",
    "output": "generated_output : list = add_n(add_n(sub_n([0, 5, 2, 5],-2),-3),-4)",
    "io_inp": [
      0,
      5,
      2,
      5
    ],
    "io_out": [
      -5,
      0,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,-2),-3),-4)"
  },
  {
    "input": "input : list = [5, 3, 3, 4, 0]\noutput : list = [4, 7, 7, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(reverse([5, 3, 3, 4, 0])),13)),4)",
    "io_inp": [
      5,
      3,
      3,
      4,
      0
    ],
    "io_out": [
      4,
      7,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(reverse(input)),13)),4)"
  },
  {
    "input": "input : list = [1, 3, 2]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = sort_des([1, 3, 2])",
    "io_inp": [
      1,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, 0, -4, 4, -5]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(drop(take([-1, -2, 0, -4, 4, -5],4),2),-2)))",
    "io_inp": [
      -1,
      -2,
      0,
      -4,
      4,
      -5
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(drop(take(input,4),2),-2)))"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [7]",
    "output": "generated_output : list = mul_n(take(sort_asc(drop(add_n([5, 2, -3],-4),2)),36),-1)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(drop(add_n(input,-4),2)),36),-1)"
  },
  {
    "input": "input : list = [0, -5, 0, -3]\noutput : list = [5, 5, -10, -20]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n([0, -5, 0, -3],5))),-5)",
    "io_inp": [
      0,
      -5,
      0,
      -3
    ],
    "io_out": [
      5,
      5,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(input,5))),-5)"
  },
  {
    "input": "input : list = [3, -2, -3, 1]\noutput : list = [-7, -6, -3, -1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(add_n(sort_des([3, -2, -3, 1]),-4))))",
    "io_inp": [
      3,
      -2,
      -3,
      1
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(add_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [0, -3, 0, -5, -2]\noutput : list = [-3, -1, 0, 2, 2]",
    "output": "generated_output : list = sort_asc(sub_n([0, -3, 0, -5, -2],-2))",
    "io_inp": [
      0,
      -3,
      0,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-2, -1, 4, -1]\noutput : list = [4, -1, -1, -2]",
    "output": "generated_output : list = sort_des([-2, -1, 4, -1])",
    "io_inp": [
      -2,
      -1,
      4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, -4, -1, 0, 4]\noutput : list = [-1, 5, -9]",
    "output": "generated_output : list = sub_n(take(mul_n([0, 3, -4, -1, 0, 4],2),3),1)",
    "io_inp": [
      0,
      3,
      -4,
      -1,
      0,
      4
    ],
    "io_out": [
      -1,
      5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,2),3),1)"
  },
  {
    "input": "input : list = [-4, -2, 5]\noutput : list = [17, 10, 8]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(add_n([-4, -2, 5],2),4)),-1),-5)",
    "io_inp": [
      -4,
      -2,
      5
    ],
    "io_out": [
      17,
      10,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(add_n(input,2),4)),-1),-5)"
  },
  {
    "input": "input : list = [2, 1, -5, -5]\noutput : list = [6, 0, 0]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(drop([2, 1, -5, -5],1)),-5),20))",
    "io_inp": [
      2,
      1,
      -5,
      -5
    ],
    "io_out": [
      6,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(drop(input,1)),-5),20))"
  },
  {
    "input": "input : list = [2, 1, 2, 1, -5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, 1, 2, 1, -5],1))",
    "io_inp": [
      2,
      1,
      2,
      1,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [4, 2, 3]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse(take([4, 2, 3],1)))),-5)",
    "io_inp": [
      4,
      2,
      3
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(take(input,1)))),-5)"
  },
  {
    "input": "input : list = [0, 1, -1, 5, 5, 2]\noutput : list = [6, 9, 9]",
    "output": "generated_output : list = take(reverse(take(sub_n(drop([0, 1, -1, 5, 5, 2],3),-4),12)),9)",
    "io_inp": [
      0,
      1,
      -1,
      5,
      5,
      2
    ],
    "io_out": [
      6,
      9,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(drop(input,3),-4),12)),9)"
  },
  {
    "input": "input : list = [5, -1, 5]\noutput : list = [-41, -23, -41]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(sub_n([5, -1, 5],-5),5),-3),1),-5)",
    "io_inp": [
      5,
      -1,
      5
    ],
    "io_out": [
      -41,
      -23,
      -41
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(sub_n(input,-5),5),-3),1),-5)"
  },
  {
    "input": "input : list = [-1, -3, 0, -5, -2, 5]\noutput : list = [-2, -4, -1, -6, -3, 4]",
    "output": "generated_output : list = sub_n([-1, -3, 0, -5, -2, 5],1)",
    "io_inp": [
      -1,
      -3,
      0,
      -5,
      -2,
      5
    ],
    "io_out": [
      -2,
      -4,
      -1,
      -6,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [1, 4, 1]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(add_n(sort_asc([1, 4, 1]),-4),1)),-4)",
    "io_inp": [
      1,
      4,
      1
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(add_n(sort_asc(input),-4),1)),-4)"
  },
  {
    "input": "input : list = [-4, 3, 3]\noutput : list = [2, -12, -12]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(sub_n([-4, 3, 3],-5))),2),-2)",
    "io_inp": [
      -4,
      3,
      3
    ],
    "io_out": [
      2,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_asc(sub_n(input,-5))),2),-2)"
  },
  {
    "input": "input : list = [-3, -3, 1, 4, -2, -1]\noutput : list = [4, 1, -1, -2, -3, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(sort_des([-3, -3, 1, 4, -2, -1]),20))))",
    "io_inp": [
      -3,
      -3,
      1,
      4,
      -2,
      -1
    ],
    "io_out": [
      4,
      1,
      -1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(sort_des(input),20))))"
  },
  {
    "input": "input : list = [-5, 1, 5, 0]\noutput : list = [81, 17, 1, -79]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(mul_n([-5, 1, 5, 0],-4)),-4),29),1)",
    "io_inp": [
      -5,
      1,
      5,
      0
    ],
    "io_out": [
      81,
      17,
      1,
      -79
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(mul_n(input,-4)),-4),29),1)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = mul_n(reverse([4, 4]),1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [9, 5]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(sort_asc([2, -2]),7),4)),3)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(sort_asc(input),7),4)),3)"
  },
  {
    "input": "input : list = [4, 0, -1, 5, 0]\noutput : list = [3, -1, -2, 4, -1]",
    "output": "generated_output : list = take(sub_n([4, 0, -1, 5, 0],1),7)",
    "io_inp": [
      4,
      0,
      -1,
      5,
      0
    ],
    "io_out": [
      3,
      -1,
      -2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),7)"
  },
  {
    "input": "input : list = [5, -5, 0, 4]\noutput : list = [-5, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -5, 0, 4]))",
    "io_inp": [
      5,
      -5,
      0,
      4
    ],
    "io_out": [
      -5,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, -1, -3, 0, 4]\noutput : list = [4, 0, -1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(drop([1, -1, -3, 0, 4],1)))",
    "io_inp": [
      1,
      -1,
      -3,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [3, 4, -3, 2]\noutput : list = [-1, -2, 5, 0]",
    "output": "generated_output : list = mul_n(add_n([3, 4, -3, 2],-2),-1)",
    "io_inp": [
      3,
      4,
      -3,
      2
    ],
    "io_out": [
      -1,
      -2,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),-1)"
  },
  {
    "input": "input : list = [-2, -1, 5, 5, 1, -5]\noutput : list = [15, 15, 3, -3, -6, -15]",
    "output": "generated_output : list = take(mul_n(take(sort_des([-2, -1, 5, 5, 1, -5]),6),3),25)",
    "io_inp": [
      -2,
      -1,
      5,
      5,
      1,
      -5
    ],
    "io_out": [
      15,
      15,
      3,
      -3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(input),6),3),25)"
  },
  {
    "input": "input : list = [-3, -2, -5, -3]\noutput : list = [-5, -3, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([-3, -2, -5, -3])))",
    "io_inp": [
      -3,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, 4, -3, 3, 4, 5]\noutput : list = [-34, -30, -30, -26, -2, -2]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sub_n([-3, 4, -3, 3, 4, 5],-4),-4),-2)))",
    "io_inp": [
      -3,
      4,
      -3,
      3,
      4,
      5
    ],
    "io_out": [
      -34,
      -30,
      -30,
      -26,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sub_n(input,-4),-4),-2)))"
  },
  {
    "input": "input : list = [-3, 1, 0, 4, 4]\noutput : list = [-5, -1]",
    "output": "generated_output : list = take(reverse(sub_n(sort_des(take([-3, 1, 0, 4, 4],2)),2)),32)",
    "io_inp": [
      -3,
      1,
      0,
      4,
      4
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_des(take(input,2)),2)),32)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [5, 10]",
    "output": "generated_output : list = mul_n([1, 2],5)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [1, 2, -2, 0, 4, 1]\noutput : list = [5, 6, 2, 4, 8, 5]",
    "output": "generated_output : list = sub_n([1, 2, -2, 0, 4, 1],-4)",
    "io_inp": [
      1,
      2,
      -2,
      0,
      4,
      1
    ],
    "io_out": [
      5,
      6,
      2,
      4,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, 1, 0, 2]\noutput : list = [-1, -2, -3, -8]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(sort_des([-5, 1, 0, 2]),-3),1)))",
    "io_inp": [
      -5,
      1,
      0,
      2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(sort_des(input),-3),1)))"
  },
  {
    "input": "input : list = [-5, -3, 2, -5, -5]\noutput : list = [-25, -25, 10]",
    "output": "generated_output : list = sort_asc(mul_n(drop([-5, -3, 2, -5, -5],2),5))",
    "io_inp": [
      -5,
      -3,
      2,
      -5,
      -5
    ],
    "io_out": [
      -25,
      -25,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,2),5))"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse(drop([3, 1, 0],1))",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-3, 0, 2, 5]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(sort_des(add_n(take([-3, 0, 2, 5],1),4)),31))",
    "io_inp": [
      -3,
      0,
      2,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(add_n(take(input,1),4)),31))"
  },
  {
    "input": "input : list = [1, 1, -5, 1]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sub_n(sort_des(drop([1, 1, -5, 1],2)),2)",
    "io_inp": [
      1,
      1,
      -5,
      1
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,2)),2)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sub_n(reverse([0, 2]),4)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [0, -3, -3, 2, 3, 3]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(drop([0, -3, -3, 2, 3, 3],4)),13),-5),-2)",
    "io_inp": [
      0,
      -3,
      -3,
      2,
      3,
      3
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(drop(input,4)),13),-5),-2)"
  },
  {
    "input": "input : list = [-3, 2, 1]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc([-3, 2, 1]))))",
    "io_inp": [
      -3,
      2,
      1
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [6, 3]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sort_des([5, 2]))),-1),15)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sort_des(input))),-1),15)"
  },
  {
    "input": "input : list = [5, 5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = drop([5, 5, 2],1)",
    "io_inp": [
      5,
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 1, -1, -4, 2]\noutput : list = [-8, -5, -3, -2, -2]",
    "output": "generated_output : list = add_n(sort_asc(take(add_n(mul_n([2, 1, -1, -4, 2],1),-3),31)),-1)",
    "io_inp": [
      2,
      1,
      -1,
      -4,
      2
    ],
    "io_out": [
      -8,
      -5,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(add_n(mul_n(input,1),-3),31)),-1)"
  },
  {
    "input": "input : list = [-1, -2, -2, 5, 0]\noutput : list = [25, 0]",
    "output": "generated_output : list = sort_des(mul_n(take(mul_n(drop([-1, -2, -2, 5, 0],3),1),10),5))",
    "io_inp": [
      -1,
      -2,
      -2,
      5,
      0
    ],
    "io_out": [
      25,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(mul_n(drop(input,3),1),10),5))"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(reverse(drop([-5, -5, 0],1)),-4),-5))",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(reverse(drop(input,1)),-4),-5))"
  },
  {
    "input": "input : list = [5, 0, 4, -4, 1, 1]\noutput : list = [-4, 0, 1, 1, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 0, 4, -4, 1, 1])",
    "io_inp": [
      5,
      0,
      4,
      -4,
      1,
      1
    ],
    "io_out": [
      -4,
      0,
      1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(sort_des(take([-4, 3, -3],1)),-1)",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-1)"
  },
  {
    "input": "input : list = [-1, -2, -4, -4, 1, 4]\noutput : list = [6, 3, 1, 0, -2, -2]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(sort_des([-1, -2, -4, -4, 1, 4])))),-2)",
    "io_inp": [
      -1,
      -2,
      -4,
      -4,
      1,
      4
    ],
    "io_out": [
      6,
      3,
      1,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [3, -3, 3]",
    "output": "generated_output : list = reverse(add_n([4, -2, 4],-1))",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-3, 2, -3, -3]\noutput : list = [1, 11]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(take([-3, 2, -3, -3],2),-1),4),2),1)",
    "io_inp": [
      -3,
      2,
      -3,
      -3
    ],
    "io_out": [
      1,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(take(input,2),-1),4),2),1)"
  },
  {
    "input": "input : list = [-1, 2, -1, -3]\noutput : list = [-4, -7, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(add_n([-1, 2, -1, -3],-4)),5),-3))",
    "io_inp": [
      -1,
      2,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(add_n(input,-4)),5),-3))"
  },
  {
    "input": "input : list = [4, 3, -5]\noutput : list = [-4, -5, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(mul_n([4, 3, -5],1))),3),-5)",
    "io_inp": [
      4,
      3,
      -5
    ],
    "io_out": [
      -4,
      -5,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(mul_n(input,1))),3),-5)"
  },
  {
    "input": "input : list = [-5, -5, 2, 4, -4]\noutput : list = [-5, -5, -4, 2, 4]",
    "output": "generated_output : list = take(sort_asc([-5, -5, 2, 4, -4]),7)",
    "io_inp": [
      -5,
      -5,
      2,
      4,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [-3, 4, -4]\noutput : list = [-30]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(take([-3, 4, -4],1)),2)),5)",
    "io_inp": [
      -3,
      4,
      -4
    ],
    "io_out": [
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(take(input,1)),2)),5)"
  },
  {
    "input": "input : list = [2, -1, 2, -4, -2, 0]\noutput : list = [-9]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(mul_n([2, -1, 2, -4, -2, 0],-5),1),-3),-4))",
    "io_inp": [
      2,
      -1,
      2,
      -4,
      -2,
      0
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(mul_n(input,-5),1),-3),-4))"
  },
  {
    "input": "input : list = [4, 5, -4, 0]\noutput : list = [12]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take([4, 5, -4, 0],1),3)))",
    "io_inp": [
      4,
      5,
      -4,
      0
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(input,1),3)))"
  },
  {
    "input": "input : list = [-2, 3, 2, -3, -2]\noutput : list = [11, -9, -5, 15, 11]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n([-2, 3, 2, -3, -2],4),5),-2),-1)",
    "io_inp": [
      -2,
      3,
      2,
      -3,
      -2
    ],
    "io_out": [
      11,
      -9,
      -5,
      15,
      11
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(input,4),5),-2),-1)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sub_n([1, -1, 5],-1),1)),2))",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sub_n(input,-1),1)),2))"
  },
  {
    "input": "input : list = [-5, -3, -3, -1, 2]\noutput : list = [10, -5, -15, -15]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(drop([-5, -3, -3, -1, 2],1),1),1),5))",
    "io_inp": [
      -5,
      -3,
      -3,
      -1,
      2
    ],
    "io_out": [
      10,
      -5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(drop(input,1),1),1),5))"
  },
  {
    "input": "input : list = [-2, 3, -2, -4, -5]\noutput : list = [-16, 9, 19, 24]",
    "output": "generated_output : list = sub_n(mul_n(drop([-2, 3, -2, -4, -5],1),-5),1)",
    "io_inp": [
      -2,
      3,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -16,
      9,
      19,
      24
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,1),-5),1)"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [-4, -3, 5]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des([5, -4, 4]),-1),13),-1)",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(input),-1),13),-1)"
  },
  {
    "input": "input : list = [-5, 3, 5]\noutput : list = [6, 2, -14]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(reverse([-5, 3, 5])),2),31),2)",
    "io_inp": [
      -5,
      3,
      5
    ],
    "io_out": [
      6,
      2,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(reverse(input)),2),31),2)"
  },
  {
    "input": "input : list = [-2, 3, -5, -2, 0, -5]\noutput : list = [-5, -5, -2, -2, 0, 3]",
    "output": "generated_output : list = sort_asc([-2, 3, -5, -2, 0, -5])",
    "io_inp": [
      -2,
      3,
      -5,
      -2,
      0,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2, -5]\noutput : list = [-2, 1, 5]",
    "output": "generated_output : list = take(sort_asc(add_n([-2, 2, -5],3)),4)",
    "io_inp": [
      -2,
      2,
      -5
    ],
    "io_out": [
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,3)),4)"
  },
  {
    "input": "input : list = [-3, -2, -1, -3]\noutput : list = [-9, -9, -6, -3]",
    "output": "generated_output : list = mul_n(sort_asc([-3, -2, -1, -3]),3)",
    "io_inp": [
      -3,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -9,
      -9,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-1, -3, -3, 1]\noutput : list = [1, -3, -3, -1]",
    "output": "generated_output : list = reverse([-1, -3, -3, 1])",
    "io_inp": [
      -1,
      -3,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 3, -2, 0, -4, 3]\noutput : list = [3, 0, -2, -4]",
    "output": "generated_output : list = sort_des(drop([-3, 3, -2, 0, -4, 3],2))",
    "io_inp": [
      -3,
      3,
      -2,
      0,
      -4,
      3
    ],
    "io_out": [
      3,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_asc([4, 4]),-2)),1))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(mul_n(sort_asc(input),-2)),1))"
  },
  {
    "input": "input : list = [-4, -5, 1, 0, -2, 5]\noutput : list = [15, 18, 0, 3, 9, -12]",
    "output": "generated_output : list = mul_n(add_n([-4, -5, 1, 0, -2, 5],-1),-3)",
    "io_inp": [
      -4,
      -5,
      1,
      0,
      -2,
      5
    ],
    "io_out": [
      15,
      18,
      0,
      3,
      9,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-3)"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(drop([2, -2, 3],1)))),2)",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(reverse(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [5, 4, 4, 5, 0, 1]\noutput : list = [-3, 0, -15, -12, -12, -15]",
    "output": "generated_output : list = take(reverse(mul_n([5, 4, 4, 5, 0, 1],-3)),8)",
    "io_inp": [
      5,
      4,
      4,
      5,
      0,
      1
    ],
    "io_out": [
      -3,
      0,
      -15,
      -12,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,-3)),8)"
  },
  {
    "input": "input : list = [-4, 2, 5, -2, -5]\noutput : list = [5, 2, -2, -4]",
    "output": "generated_output : list = take(sort_des([-4, 2, 5, -2, -5]),4)",
    "io_inp": [
      -4,
      2,
      5,
      -2,
      -5
    ],
    "io_out": [
      5,
      2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),4)"
  },
  {
    "input": "input : list = [-1, -3, 0, 2, -5, -3]\noutput : list = [-2, -4, -1, 1, -6, -4]",
    "output": "generated_output : list = add_n([-1, -3, 0, 2, -5, -3],-1)",
    "io_inp": [
      -1,
      -3,
      0,
      2,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -4,
      -1,
      1,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, 5, -1, -5]\noutput : list = [5, 0, -1, -5]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(sort_asc([0, 5, -1, -5])),18),1))",
    "io_inp": [
      0,
      5,
      -1,
      -5
    ],
    "io_out": [
      5,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(sort_asc(input)),18),1))"
  },
  {
    "input": "input : list = [-5, 0, 2, 4]\noutput : list = [-100]",
    "output": "generated_output : list = drop(take(sort_des(mul_n(mul_n([-5, 0, 2, 4],4),5)),16),3)",
    "io_inp": [
      -5,
      0,
      2,
      4
    ],
    "io_out": [
      -100
    ],
    "output_masked": "generated_output : list = drop(take(sort_des(mul_n(mul_n(input,4),5)),16),3)"
  },
  {
    "input": "input : list = [-1, 2, -1, -4]\noutput : list = [1, 7, 7, 13]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(add_n([-1, 2, -1, -4],-4),1),-2)),3)",
    "io_inp": [
      -1,
      2,
      -1,
      -4
    ],
    "io_out": [
      1,
      7,
      7,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(add_n(input,-4),1),-2)),3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-15, 10]",
    "output": "generated_output : list = take(mul_n(sort_asc([-3, 2]),5),4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),5),4)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-20, -25]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_asc([-5, -4]),1),-1)),5)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_asc(input),1),-1)),5)"
  },
  {
    "input": "input : list = [5, 2, -1, 3, -2]\noutput : list = [-1, 9, 14, 29, 34]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(add_n([5, 2, -1, 3, -2],-4),-5),-4)))",
    "io_inp": [
      5,
      2,
      -1,
      3,
      -2
    ],
    "io_out": [
      -1,
      9,
      14,
      29,
      34
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(add_n(input,-4),-5),-4)))"
  },
  {
    "input": "input : list = [-5, -1, -4, 2, 2, -3]\noutput : list = [-5, -4, -3, -1, 2, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_des([-5, -1, -4, 2, 2, -3])))))",
    "io_inp": [
      -5,
      -1,
      -4,
      2,
      2,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, -4, -3]\noutput : list = [-7, -6, -4]",
    "output": "generated_output : list = sort_asc(take(take(take(add_n([-1, -4, -3],-3),12),20),22))",
    "io_inp": [
      -1,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(add_n(input,-3),12),20),22))"
  },
  {
    "input": "input : list = [-2, -3, 0, 5, 4]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(take([-2, -3, 0, 5, 4],2)),3))",
    "io_inp": [
      -2,
      -3,
      0,
      5,
      4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(input,2)),3))"
  },
  {
    "input": "input : list = [-1, 2, -5, 5, 3]\noutput : list = [15, -15, -9]",
    "output": "generated_output : list = mul_n(drop([-1, 2, -5, 5, 3],2),-3)",
    "io_inp": [
      -1,
      2,
      -5,
      5,
      3
    ],
    "io_out": [
      15,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [4, 1, -3, -5, -3, 3]\noutput : list = [3, -3, -5, -3, 1, 4]",
    "output": "generated_output : list = reverse([4, 1, -3, -5, -3, 3])",
    "io_inp": [
      4,
      1,
      -3,
      -5,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -5,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-50, -5]",
    "output": "generated_output : list = mul_n(reverse(sub_n(reverse(sub_n([4, -5],-3)),-3)),-5)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -50,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(reverse(sub_n(input,-3)),-3)),-5)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [14, 17]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sub_n([-3, -4],-4)),-5),-3),-2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      14,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sub_n(input,-4)),-5),-3),-2)"
  },
  {
    "input": "input : list = [0, 0, 3, 2]\noutput : list = [0, 0, -6, -9]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse([0, 0, 3, 2])),-3))",
    "io_inp": [
      0,
      0,
      3,
      2
    ],
    "io_out": [
      0,
      0,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(input)),-3))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [0, 3]",
    "output": "generated_output : list = add_n([-5, -2],5)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [4, -2, 1, 3, -3]\noutput : list = [7, 1]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(drop([4, -2, 1, 3, -3],3),4),2)))",
    "io_inp": [
      4,
      -2,
      1,
      3,
      -3
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(drop(input,3),4),2)))"
  },
  {
    "input": "input : list = [4, -2, 4]\noutput : list = [8, 8, 2]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([4, -2, 4],-4)))",
    "io_inp": [
      4,
      -2,
      4
    ],
    "io_out": [
      8,
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [-5, 0, 2, -1, -3, 4]\noutput : list = [-10, -8, -6, -5, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sub_n([-5, 0, 2, -1, -3, 4],1),4))))",
    "io_inp": [
      -5,
      0,
      2,
      -1,
      -3,
      4
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sub_n(sub_n(input,1),4))))"
  },
  {
    "input": "input : list = [0, 3, -5, -2]\noutput : list = [-14, -2, 6, 18]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(reverse([0, 3, -5, -2])),-4),2))",
    "io_inp": [
      0,
      3,
      -5,
      -2
    ],
    "io_out": [
      -14,
      -2,
      6,
      18
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(reverse(input)),-4),2))"
  },
  {
    "input": "input : list = [3, 0, -4]\noutput : list = [8, 5, 1]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(reverse(add_n([3, 0, -4],5))),1))",
    "io_inp": [
      3,
      0,
      -4
    ],
    "io_out": [
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(reverse(add_n(input,5))),1))"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [2, -1, -2]",
    "output": "generated_output : list = sort_des([-2, 2, -1])",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, -1, -4]\noutput : list = [8, 4, 3, 1]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(reverse([3, -2, -1, -4])),5),34))",
    "io_inp": [
      3,
      -2,
      -1,
      -4
    ],
    "io_out": [
      8,
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(reverse(input)),5),34))"
  },
  {
    "input": "input : list = [-4, 2, 5, 4, -4]\noutput : list = [7, 6, 4, -2, -2]",
    "output": "generated_output : list = take(add_n(take(add_n(sort_des([-4, 2, 5, 4, -4]),3),7),-1),14)",
    "io_inp": [
      -4,
      2,
      5,
      4,
      -4
    ],
    "io_out": [
      7,
      6,
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(sort_des(input),3),7),-1),14)"
  },
  {
    "input": "input : list = [0, 5, -3, 3]\noutput : list = [-2, 3, -5, 1]",
    "output": "generated_output : list = sub_n([0, 5, -3, 3],2)",
    "io_inp": [
      0,
      5,
      -3,
      3
    ],
    "io_out": [
      -2,
      3,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, 3, -3, 2]\noutput : list = [-13, -9, 7, 11]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse([-2, 3, -3, 2])),-4),1)",
    "io_inp": [
      -2,
      3,
      -3,
      2
    ],
    "io_out": [
      -13,
      -9,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(input)),-4),1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [0, -9]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(reverse([-5, 4]),-4))))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(reverse(input),-4))))"
  },
  {
    "input": "input : list = [3, 1, 0, -4]\noutput : list = [8]",
    "output": "generated_output : list = take(take(add_n(sort_des(take([3, 1, 0, -4],1)),5),4),21)",
    "io_inp": [
      3,
      1,
      0,
      -4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_des(take(input,1)),5),4),21)"
  },
  {
    "input": "input : list = [3, 0, 1, 4, -2]\noutput : list = [1, -2, -1, 2, -4]",
    "output": "generated_output : list = sub_n([3, 0, 1, 4, -2],2)",
    "io_inp": [
      3,
      0,
      1,
      4,
      -2
    ],
    "io_out": [
      1,
      -2,
      -1,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, 4, 5, 5, -3]\noutput : list = [-15, -12, -15, -15, 9]",
    "output": "generated_output : list = mul_n([5, 4, 5, 5, -3],-3)",
    "io_inp": [
      5,
      4,
      5,
      5,
      -3
    ],
    "io_out": [
      -15,
      -12,
      -15,
      -15,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [0, 3, 2, -1, 4, 1]\noutput : list = [8, 7, 6, 5, 4, 3]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(add_n([0, 3, 2, -1, 4, 1],-2),-1),5)),1)",
    "io_inp": [
      0,
      3,
      2,
      -1,
      4,
      1
    ],
    "io_out": [
      8,
      7,
      6,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(add_n(input,-2),-1),5)),1)"
  },
  {
    "input": "input : list = [-2, -5, 2, -1]\noutput : list = [5, 2, 1, -2]",
    "output": "generated_output : list = sort_des(add_n(take(add_n(mul_n([-2, -5, 2, -1],-1),4),12),-4))",
    "io_inp": [
      -2,
      -5,
      2,
      -1
    ],
    "io_out": [
      5,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(add_n(mul_n(input,-1),4),12),-4))"
  },
  {
    "input": "input : list = [2, 4, 1, 4, 1]\noutput : list = [6, 8, 5, 8, 5]",
    "output": "generated_output : list = sub_n([2, 4, 1, 4, 1],-4)",
    "io_inp": [
      2,
      4,
      1,
      4,
      1
    ],
    "io_out": [
      6,
      8,
      5,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -3, 3, -4, 1]\noutput : list = [-2, -1, 0, 4, 6]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sub_n([-5, -3, 3, -4, 1],-1),5),-5)),2)",
    "io_inp": [
      -5,
      -3,
      3,
      -4,
      1
    ],
    "io_out": [
      -2,
      -1,
      0,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(sub_n(input,-1),5),-5)),2)"
  },
  {
    "input": "input : list = [-3, -4, -3, -3, -4]\noutput : list = [-24, -27]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take([-3, -4, -3, -3, -4],2)),5)),3)",
    "io_inp": [
      -3,
      -4,
      -3,
      -3,
      -4
    ],
    "io_out": [
      -24,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take(input,2)),5)),3)"
  },
  {
    "input": "input : list = [4, 3, -2, -1]\noutput : list = [-1, 0, 4, 5]",
    "output": "generated_output : list = reverse(take(sort_des(add_n([4, 3, -2, -1],1)),28))",
    "io_inp": [
      4,
      3,
      -2,
      -1
    ],
    "io_out": [
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(input,1)),28))"
  },
  {
    "input": "input : list = [-3, -4, -3, -4]\noutput : list = [-5, -5, -4, -4]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_des([-3, -4, -3, -4]))),-1)",
    "io_inp": [
      -3,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_des(input))),-1)"
  },
  {
    "input": "input : list = [-1, -1, -2, 0, 0]\noutput : list = [4, 4, 3, 3, 2]",
    "output": "generated_output : list = sort_des(take(add_n(take(sub_n([-1, -1, -2, 0, 0],-2),8),2),25))",
    "io_inp": [
      -1,
      -1,
      -2,
      0,
      0
    ],
    "io_out": [
      4,
      4,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(sub_n(input,-2),8),2),25))"
  },
  {
    "input": "input : list = [-4, -1, 3, 0, 4, 5]\noutput : list = [-3, -18, -38, -23, -43, -48]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(add_n([-4, -1, 3, 0, 4, 5],5),-5),-1),1),-4)",
    "io_inp": [
      -4,
      -1,
      3,
      0,
      4,
      5
    ],
    "io_out": [
      -3,
      -18,
      -38,
      -23,
      -43,
      -48
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(add_n(input,5),-5),-1),1),-4)"
  },
  {
    "input": "input : list = [5, 1, -3, -3, 3]\noutput : list = [-10, -2, 6, 6, -6]",
    "output": "generated_output : list = mul_n([5, 1, -3, -3, 3],-2)",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      3
    ],
    "io_out": [
      -10,
      -2,
      6,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [16, -5, 10]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(add_n([-4, 3, -2],-4),-1),11),-3),-5)",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      16,
      -5,
      10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(add_n(input,-4),-1),11),-3),-5)"
  },
  {
    "input": "input : list = [1, -5, 1, 2, 0, 1]\noutput : list = [2, 1, 1, 0]",
    "output": "generated_output : list = reverse(take(sort_asc(drop([1, -5, 1, 2, 0, 1],2)),11))",
    "io_inp": [
      1,
      -5,
      1,
      2,
      0,
      1
    ],
    "io_out": [
      2,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(drop(input,2)),11))"
  },
  {
    "input": "input : list = [1, 3, -4, -1, -1]\noutput : list = [16, 4, 4, -4, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([1, 3, -4, -1, -1]),-4))",
    "io_inp": [
      1,
      3,
      -4,
      -1,
      -1
    ],
    "io_out": [
      16,
      4,
      4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [1, -3, -5]",
    "output": "generated_output : list = sort_des([-5, -3, 1])",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-3, -3]",
    "output": "generated_output : list = add_n([-5, -5],2)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(sub_n([2, -5],-4))),34))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(sub_n(input,-4))),34))"
  },
  {
    "input": "input : list = [0, -2, -4, 0, 1, -2]\noutput : list = [0, 3, 2, -2, 0, 2]",
    "output": "generated_output : list = reverse(take(add_n([0, -2, -4, 0, 1, -2],2),9))",
    "io_inp": [
      0,
      -2,
      -4,
      0,
      1,
      -2
    ],
    "io_out": [
      0,
      3,
      2,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,2),9))"
  },
  {
    "input": "input : list = [1, 0, 5, -5, 4]\noutput : list = [5, 4, 1, 0, -5]",
    "output": "generated_output : list = sort_des([1, 0, 5, -5, 4])",
    "io_inp": [
      1,
      0,
      5,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_asc([-5, -1]),11))),-3)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_asc(input),11))),-3)"
  },
  {
    "input": "input : list = [-4, 5, 4, 4, 4, -1]\noutput : list = [5, 4, 4, 4, -1, -4]",
    "output": "generated_output : list = take(sort_des([-4, 5, 4, 4, 4, -1]),26)",
    "io_inp": [
      -4,
      5,
      4,
      4,
      4,
      -1
    ],
    "io_out": [
      5,
      4,
      4,
      4,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),26)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5, 9]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(reverse([5, 1])),2),-2),36)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(reverse(input)),2),-2),36)"
  },
  {
    "input": "input : list = [5, -5, -3, 4, -2, 5]\noutput : list = [3, -7, -5, 2, -4, 3]",
    "output": "generated_output : list = sub_n([5, -5, -3, 4, -2, 5],2)",
    "io_inp": [
      5,
      -5,
      -3,
      4,
      -2,
      5
    ],
    "io_out": [
      3,
      -7,
      -5,
      2,
      -4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-10, -8]",
    "output": "generated_output : list = mul_n([-5, -4],2)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, -2, -5, 4, 3]\noutput : list = [1, -6, -9, 0, -1]",
    "output": "generated_output : list = sub_n([5, -2, -5, 4, 3],4)",
    "io_inp": [
      5,
      -2,
      -5,
      4,
      3
    ],
    "io_out": [
      1,
      -6,
      -9,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, -1, 0, 3, -2]\noutput : list = [-6, -9, -10, -11, -14]",
    "output": "generated_output : list = add_n(add_n(take(reverse(sort_asc([-5, -1, 0, 3, -2])),10),-4),-5)",
    "io_inp": [
      -5,
      -1,
      0,
      3,
      -2
    ],
    "io_out": [
      -6,
      -9,
      -10,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(sort_asc(input)),10),-4),-5)"
  },
  {
    "input": "input : list = [-4, 2, 3]\noutput : list = [-7, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n([-4, 2, 3],1))),-2)",
    "io_inp": [
      -4,
      2,
      3
    ],
    "io_out": [
      -7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(input,1))),-2)"
  },
  {
    "input": "input : list = [0, 4, -3, -4]\noutput : list = [7, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(take(sub_n(reverse([0, 4, -3, -4]),-3),3)))",
    "io_inp": [
      0,
      4,
      -3,
      -4
    ],
    "io_out": [
      7,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sub_n(reverse(input),-3),3)))"
  },
  {
    "input": "input : list = [-3, 3, 5, 2, 1]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(take([-3, 3, 5, 2, 1],1),1),4)),1)",
    "io_inp": [
      -3,
      3,
      5,
      2,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(take(input,1),1),4)),1)"
  },
  {
    "input": "input : list = [-5, -1, 5, 2, 0, 4]\noutput : list = [5, 4, 2, 0, -1, -5]",
    "output": "generated_output : list = sort_des([-5, -1, 5, 2, 0, 4])",
    "io_inp": [
      -5,
      -1,
      5,
      2,
      0,
      4
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 0, 2]\noutput : list = [1, 5]",
    "output": "generated_output : list = take([1, 5, 0, 2],2)",
    "io_inp": [
      1,
      5,
      0,
      2
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -3, 5, 0, 4]\noutput : list = [-3, 0, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(mul_n([1, -3, 5, 0, 4],1)))))",
    "io_inp": [
      1,
      -3,
      5,
      0,
      4
    ],
    "io_out": [
      -3,
      0,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_asc(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sub_n(sub_n([-2, -2],-1),-3)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),-3)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [1, -4]",
    "output": "generated_output : list = reverse(reverse(add_n([3, -2],-2)))",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(input,-2)))"
  },
  {
    "input": "input : list = [-4, 0, 1, 0, 5]\noutput : list = [-1, 3, 4, 3, 8]",
    "output": "generated_output : list = mul_n(add_n([-4, 0, 1, 0, 5],3),1)",
    "io_inp": [
      -4,
      0,
      1,
      0,
      5
    ],
    "io_out": [
      -1,
      3,
      4,
      3,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),1)"
  },
  {
    "input": "input : list = [1, 0, 3, 0, -2]\noutput : list = [-2, 4, 4, 7, 13]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(reverse([1, 0, 3, 0, -2]))),3),-4)",
    "io_inp": [
      1,
      0,
      3,
      0,
      -2
    ],
    "io_out": [
      -2,
      4,
      4,
      7,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(reverse(input))),3),-4)"
  },
  {
    "input": "input : list = [-1, 4, 4, -5, -2]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(take([-1, 4, 4, -5, -2],1)),-1)),-3)",
    "io_inp": [
      -1,
      4,
      4,
      -5,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(take(input,1)),-1)),-3)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [4, -2]",
    "output": "generated_output : list = sub_n(add_n([3, -3],-1),-2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),-2)"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take([0, 4, -1],1),3)",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),3)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-4, -3, 5]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 5, -4],1))",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,1))"
  },
  {
    "input": "input : list = [2, -3, -4]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(reverse(sort_asc([2, -3, -4])))),1)",
    "io_inp": [
      2,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [-3, -5, 0, 5]\noutput : list = [-11, -1, 5, 9]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des([-3, -5, 0, 5])),-2),-2),5)",
    "io_inp": [
      -3,
      -5,
      0,
      5
    ],
    "io_out": [
      -11,
      -1,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sort_des(input)),-2),-2),5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-10]",
    "output": "generated_output : list = reverse(sub_n(take(take(mul_n([-3, 2],4),1),11),-2))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(take(mul_n(input,4),1),11),-2))"
  },
  {
    "input": "input : list = [1, -2, -4, 0, 0]\noutput : list = [1, 0, 0, -2, -4]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(sort_des([1, -2, -4, 0, 0])),20)))",
    "io_inp": [
      1,
      -2,
      -4,
      0,
      0
    ],
    "io_out": [
      1,
      0,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(sort_des(input)),20)))"
  },
  {
    "input": "input : list = [-2, -3, 2, 0]\noutput : list = [-30, -45, 30, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-2, -3, 2, 0],1),3),5)",
    "io_inp": [
      -2,
      -3,
      2,
      0
    ],
    "io_out": [
      -30,
      -45,
      30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,1),3),5)"
  },
  {
    "input": "input : list = [3, -2, -2, 0, 2, 1]\noutput : list = [-1, 0, -2]",
    "output": "generated_output : list = add_n(sub_n(reverse(drop([3, -2, -2, 0, 2, 1],3)),4),2)",
    "io_inp": [
      3,
      -2,
      -2,
      0,
      2,
      1
    ],
    "io_out": [
      -1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(drop(input,3)),4),2)"
  },
  {
    "input": "input : list = [5, -2, 1, 2]\noutput : list = [12, 0, -4, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sub_n([5, -2, 1, 2],1)),-4))",
    "io_inp": [
      5,
      -2,
      1,
      2
    ],
    "io_out": [
      12,
      0,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sub_n(input,1)),-4))"
  },
  {
    "input": "input : list = [5, 5, -5, -3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(drop([5, 5, -5, -3, -4],3))),-5),5)",
    "io_inp": [
      5,
      5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(drop(input,3))),-5),5)"
  },
  {
    "input": "input : list = [-5, 2, 4, 5]\noutput : list = [2, 4, 5]",
    "output": "generated_output : list = drop([-5, 2, 4, 5],1)",
    "io_inp": [
      -5,
      2,
      4,
      5
    ],
    "io_out": [
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 4, 4, 0, 1]\noutput : list = [-1, 0, -4, -4, 0]",
    "output": "generated_output : list = reverse(mul_n([0, 4, 4, 0, 1],-1))",
    "io_inp": [
      0,
      4,
      4,
      0,
      1
    ],
    "io_out": [
      -1,
      0,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [60, -12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des([-5, 1])),3),-4)",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      60,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(input)),3),-4)"
  },
  {
    "input": "input : list = [1, 3, 1, -2]\noutput : list = [-2, 0, -2, -5]",
    "output": "generated_output : list = add_n([1, 3, 1, -2],-3)",
    "io_inp": [
      1,
      3,
      1,
      -2
    ],
    "io_out": [
      -2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -3, 1, 0, 0]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(take([-5, -3, 1, 0, 0],1),-5),1)),35)",
    "io_inp": [
      -5,
      -3,
      1,
      0,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(take(input,1),-5),1)),35)"
  },
  {
    "input": "input : list = [-1, -1, 3, -4, -1, -4]\noutput : list = [12, 12, 3, 3, 3, -9]",
    "output": "generated_output : list = sort_des(mul_n([-1, -1, 3, -4, -1, -4],-3))",
    "io_inp": [
      -1,
      -1,
      3,
      -4,
      -1,
      -4
    ],
    "io_out": [
      12,
      12,
      3,
      3,
      3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [7, 6, 2]",
    "output": "generated_output : list = add_n(add_n(sort_des([-2, 2, 3]),3),1)",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      7,
      6,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),3),1)"
  },
  {
    "input": "input : list = [0, -2, 1, -3, 1, 4]\noutput : list = [4, 1, 1, 0, -2, -3]",
    "output": "generated_output : list = take(take(sort_des(reverse(sort_asc([0, -2, 1, -3, 1, 4]))),33),53)",
    "io_inp": [
      0,
      -2,
      1,
      -3,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(sort_asc(input))),33),53)"
  },
  {
    "input": "input : list = [-5, 3, -5, 5, -3, 2]\noutput : list = [-4, -4, -2, 3, 4, 6]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(reverse([-5, 3, -5, 5, -3, 2])),4),34),-3)",
    "io_inp": [
      -5,
      3,
      -5,
      5,
      -3,
      2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(reverse(input)),4),34),-3)"
  },
  {
    "input": "input : list = [2, 2, -2, 2, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(take([2, 2, -2, 2, -1],2))),10),2)",
    "io_inp": [
      2,
      2,
      -2,
      2,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(take(input,2))),10),2)"
  },
  {
    "input": "input : list = [4, 4, 1, 1, 1, 2]\noutput : list = [16, 16]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(mul_n([4, 4, 1, 1, 1, 2],2),2),-3),-3),2)",
    "io_inp": [
      4,
      4,
      1,
      1,
      1,
      2
    ],
    "io_out": [
      16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(mul_n(input,2),2),-3),-3),2)"
  },
  {
    "input": "input : list = [0, 1, -2, 5, 5]\noutput : list = [4, 8, -4, 24, 24]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([0, 1, -2, 5, 5],-1),-2),-2)",
    "io_inp": [
      0,
      1,
      -2,
      5,
      5
    ],
    "io_out": [
      4,
      8,
      -4,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,-1),-2),-2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [6, -1]",
    "output": "generated_output : list = add_n([2, -5],4)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, -3, -3, 1, -2, -2]\noutput : list = [-3, 1, -2, -2]",
    "output": "generated_output : list = drop([-2, -3, -3, 1, -2, -2],2)",
    "io_inp": [
      -2,
      -3,
      -3,
      1,
      -2,
      -2
    ],
    "io_out": [
      -3,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 2, 1, 5]\noutput : list = [-2, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(sub_n([-1, 2, 1, 5],1))",
    "io_inp": [
      -1,
      2,
      1,
      5
    ],
    "io_out": [
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,1))"
  },
  {
    "input": "input : list = [5, -4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(drop([5, -4, 4],1))",
    "io_inp": [
      5,
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-6, 0]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(reverse([-1, 2]),-2),5)),-2)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(reverse(input),-2),5)),-2)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [-1, -2, -6]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n([-3, 1, 2],1),4)),4)",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(input,1),4)),4)"
  },
  {
    "input": "input : list = [-1, 3, 4, -4]\noutput : list = [-1, 3]",
    "output": "generated_output : list = take([-1, 3, 4, -4],2)",
    "io_inp": [
      -1,
      3,
      4,
      -4
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-9, -6]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n([-5, -2],4),12)))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(input,4),12)))"
  },
  {
    "input": "input : list = [4, 3, 3, 2, -1]\noutput : list = [-180, -160, -160, -140, -80]",
    "output": "generated_output : list = mul_n(mul_n(add_n([4, 3, 3, 2, -1],5),5),-4)",
    "io_inp": [
      4,
      3,
      3,
      2,
      -1
    ],
    "io_out": [
      -180,
      -160,
      -160,
      -140,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(input,5),5),-4)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = add_n([-3, -1],-3)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-4, -4]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([0, 0],5),1),4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,5),1),4)"
  },
  {
    "input": "input : list = [-1, 2, 4, -1, 2]\noutput : list = [15, 5, 5, -10, -10]",
    "output": "generated_output : list = add_n(sort_des(mul_n([-1, 2, 4, -1, 2],5)),-5)",
    "io_inp": [
      -1,
      2,
      4,
      -1,
      2
    ],
    "io_out": [
      15,
      5,
      5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,5)),-5)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sort_asc([-2, 2])),-2)),-2)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(sort_asc(input)),-2)),-2)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-3, 1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(reverse([0, -4])),-1)))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-2, -3, -3, 5, -4, 5]\noutput : list = [-7, -8, -8, 0, -9, 0]",
    "output": "generated_output : list = sub_n([-2, -3, -3, 5, -4, 5],5)",
    "io_inp": [
      -2,
      -3,
      -3,
      5,
      -4,
      5
    ],
    "io_out": [
      -7,
      -8,
      -8,
      0,
      -9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-1, 1]",
    "output": "generated_output : list = sort_asc(take(take(reverse(add_n([-3, -5],4)),24),20))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(add_n(input,4)),24),20))"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [17, 5, -1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des([-2, 4, -5]),3),2),3))",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      17,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(sort_des(input),3),2),3))"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [4, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -5, 4])",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [34, -14]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc([1, -5]),4),3),-2))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      34,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_asc(input),4),3),-2))"
  },
  {
    "input": "input : list = [-1, -1, 1, -3]\noutput : list = [-3, -1, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_des([-1, -1, 1, -3]))",
    "io_inp": [
      -1,
      -1,
      1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -1, 3, 3, 0, 1]\noutput : list = [-3, -2, -5, -5, -1, 1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(add_n([-3, -1, 3, 3, 0, 1],-1),-1),4),-1))",
    "io_inp": [
      -3,
      -1,
      3,
      3,
      0,
      1
    ],
    "io_out": [
      -3,
      -2,
      -5,
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(add_n(input,-1),-1),4),-1))"
  },
  {
    "input": "input : list = [-5, 0, -3, -4, -1, 4]\noutput : list = [4, -1, -4, -3, 0, -5]",
    "output": "generated_output : list = take(reverse(sub_n(take(add_n([-5, 0, -3, -4, -1, 4],2),10),2)),37)",
    "io_inp": [
      -5,
      0,
      -3,
      -4,
      -1,
      4
    ],
    "io_out": [
      4,
      -1,
      -4,
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(add_n(input,2),10),2)),37)"
  },
  {
    "input": "input : list = [5, 1, 2, -2, 0]\noutput : list = [2, -2, 0]",
    "output": "generated_output : list = drop([5, 1, 2, -2, 0],2)",
    "io_inp": [
      5,
      1,
      2,
      -2,
      0
    ],
    "io_out": [
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -3, -5, 3]\noutput : list = [8, 7, 1, -1]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc([4, -3, -5, 3]),-4),8))",
    "io_inp": [
      4,
      -3,
      -5,
      3
    ],
    "io_out": [
      8,
      7,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(input),-4),8))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-5, -6]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(sort_asc([-2, -1]),2)),2),-2)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(sort_asc(input),2)),2),-2)"
  },
  {
    "input": "input : list = [-5, 4, 3, -2, 1, 1]\noutput : list = [-6, -4, 0, 0, 6, 12]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n([-5, 4, 3, -2, 1, 1],-2)))),-2)",
    "io_inp": [
      -5,
      4,
      3,
      -2,
      1,
      1
    ],
    "io_out": [
      -6,
      -4,
      0,
      0,
      6,
      12
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n(input,-2)))),-2)"
  },
  {
    "input": "input : list = [4, 2, -1, 2, 3]\noutput : list = [4, -8, -12]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(drop([4, 2, -1, 2, 3],2),-4))))",
    "io_inp": [
      4,
      2,
      -1,
      2,
      3
    ],
    "io_out": [
      4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(drop(input,2),-4))))"
  },
  {
    "input": "input : list = [-3, -3, 1]\noutput : list = [-7, -7, -3]",
    "output": "generated_output : list = take(sub_n(sort_asc(reverse(reverse([-3, -3, 1]))),4),26)",
    "io_inp": [
      -3,
      -3,
      1
    ],
    "io_out": [
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(reverse(reverse(input))),4),26)"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [-6, -4, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_asc([0, -2, 0]),1))),3)",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_asc(input),1))),3)"
  },
  {
    "input": "input : list = [3, -5, -5, 3, -3]\noutput : list = [-6, 10, 10, -6, 6]",
    "output": "generated_output : list = mul_n([3, -5, -5, 3, -3],-2)",
    "io_inp": [
      3,
      -5,
      -5,
      3,
      -3
    ],
    "io_out": [
      -6,
      10,
      10,
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 2, 5, -3, -3]\noutput : list = [7, 4, -1, -1, -1]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des([-3, 2, 5, -3, -3]))),-2)",
    "io_inp": [
      -3,
      2,
      5,
      -3,
      -3
    ],
    "io_out": [
      7,
      4,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [1, 4, 5, 5]\noutput : list = [-9, -6, -5, -5]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sort_asc([1, 4, 5, 5]),7),1),5),-5)",
    "io_inp": [
      1,
      4,
      5,
      5
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sort_asc(input),7),1),5),-5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [16]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(drop(reverse([5, 2]),1),-3),2))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(drop(reverse(input),1),-3),2))"
  },
  {
    "input": "input : list = [-2, 1, 1, -3, -1, -2]\noutput : list = [-4, -3, -3, -2, 0, 0]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n([-2, 1, 1, -3, -1, -2],1))),17)",
    "io_inp": [
      -2,
      1,
      1,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(input,1))),17)"
  },
  {
    "input": "input : list = [-2, -4, 5]\noutput : list = [2, 0, -7]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(reverse([-2, -4, 5])),-1),5),-3)",
    "io_inp": [
      -2,
      -4,
      5
    ],
    "io_out": [
      2,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(reverse(input)),-1),5),-3)"
  },
  {
    "input": "input : list = [0, 0, 3, -3, 2]\noutput : list = [3, 2, 0, 0, -3]",
    "output": "generated_output : list = sort_des(reverse(sub_n(add_n(reverse([0, 0, 3, -3, 2]),-5),-5)))",
    "io_inp": [
      0,
      0,
      3,
      -3,
      2
    ],
    "io_out": [
      3,
      2,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(add_n(reverse(input),-5),-5)))"
  },
  {
    "input": "input : list = [-1, 0, 0, 2, 0]\noutput : list = [-2, -10, -10, -10, -14]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n(mul_n([-1, 0, 0, 2, 0],2),-5))),2)",
    "io_inp": [
      -1,
      0,
      0,
      2,
      0
    ],
    "io_out": [
      -2,
      -10,
      -10,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(mul_n(input,2),-5))),2)"
  },
  {
    "input": "input : list = [2, 0, -5, 3, 3, -1]\noutput : list = [6, 6, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(drop([2, 0, -5, 3, 3, -1],3)))),-3)",
    "io_inp": [
      2,
      0,
      -5,
      3,
      3,
      -1
    ],
    "io_out": [
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_asc(drop(input,3)))),-3)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [14, 12]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n([0, 1],5),2)),-2)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      14,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(input,5),2)),-2)"
  },
  {
    "input": "input : list = [5, 2, 4, 2]\noutput : list = [4, 2]",
    "output": "generated_output : list = sort_des(drop([5, 2, 4, 2],2))",
    "io_inp": [
      5,
      2,
      4,
      2
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [1, -1, -2, 1, -5]\noutput : list = [-8, -2, -5, -4, -2]",
    "output": "generated_output : list = add_n(add_n(take(reverse([1, -1, -2, 1, -5]),19),-2),-1)",
    "io_inp": [
      1,
      -1,
      -2,
      1,
      -5
    ],
    "io_out": [
      -8,
      -2,
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(reverse(input),19),-2),-1)"
  },
  {
    "input": "input : list = [-4, -1, 2, 3, -3]\noutput : list = [-4, -3, -1, 2, 3]",
    "output": "generated_output : list = sort_asc([-4, -1, 2, 3, -3])",
    "io_inp": [
      -4,
      -1,
      2,
      3,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, -2, -4, -3]\noutput : list = [0, -1, -2, -3, -4]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc([-1, 0, -2, -4, -3]))),26)",
    "io_inp": [
      -1,
      0,
      -2,
      -4,
      -3
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(input))),26)"
  },
  {
    "input": "input : list = [5, -2, 2, -2]\noutput : list = [-10, 10, 10]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(drop([5, -2, 2, -2],1),19))),-5)",
    "io_inp": [
      5,
      -2,
      2,
      -2
    ],
    "io_out": [
      -10,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(drop(input,1),19))),-5)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sub_n([-5, 0],4))),4))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_asc(sub_n(input,4))),4))"
  },
  {
    "input": "input : list = [0, 1, 2, 4]\noutput : list = [2, 3, 4, 6]",
    "output": "generated_output : list = add_n([0, 1, 2, 4],2)",
    "io_inp": [
      0,
      1,
      2,
      4
    ],
    "io_out": [
      2,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [5, 4, -1, 3, 2, -2]\noutput : list = [2, 1, 0, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(drop([5, 4, -1, 3, 2, -2],1)),-3),5))",
    "io_inp": [
      5,
      4,
      -1,
      3,
      2,
      -2
    ],
    "io_out": [
      2,
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(drop(input,1)),-3),5))"
  },
  {
    "input": "input : list = [-5, -4, 5, 4, -2, 1]\noutput : list = [5, 4, 1, -2, -4, -5]",
    "output": "generated_output : list = sort_des(take(reverse([-5, -4, 5, 4, -2, 1]),9))",
    "io_inp": [
      -5,
      -4,
      5,
      4,
      -2,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),9))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([3, -1]),2))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(drop([0, -4, -4],1)),-1)))",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(drop(input,1)),-1)))"
  },
  {
    "input": "input : list = [-5, 2, 5, 3, 0]\noutput : list = [9, 7, 6, 4, -1]",
    "output": "generated_output : list = add_n(reverse(sort_asc([-5, 2, 5, 3, 0])),4)",
    "io_inp": [
      -5,
      2,
      5,
      3,
      0
    ],
    "io_out": [
      9,
      7,
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [0, -1, 4, -5, -3, 5]\noutput : list = [-8, -6, -4, -3, 1, 2]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_asc([0, -1, 4, -5, -3, 5]),-3)),1))",
    "io_inp": [
      0,
      -1,
      4,
      -5,
      -3,
      5
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_asc(input),-3)),1))"
  },
  {
    "input": "input : list = [-3, -3, -4, -2, 5, -5]\noutput : list = [5, -2, -3, -3, -4, -5]",
    "output": "generated_output : list = sort_des([-3, -3, -4, -2, 5, -5])",
    "io_inp": [
      -3,
      -3,
      -4,
      -2,
      5,
      -5
    ],
    "io_out": [
      5,
      -2,
      -3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(add_n(reverse([0, -4]),2))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),2))"
  },
  {
    "input": "input : list = [5, 1, -2]\noutput : list = [-31, -7, 11]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(sort_asc([5, 1, -2]),-2),3)),-1)",
    "io_inp": [
      5,
      1,
      -2
    ],
    "io_out": [
      -31,
      -7,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(sort_asc(input),-2),3)),-1)"
  },
  {
    "input": "input : list = [-1, -2, 5, 2, 2, 4]\noutput : list = [1, 2, 5, 5, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n([-1, -2, 5, 2, 2, 4],3))",
    "io_inp": [
      -1,
      -2,
      5,
      2,
      2,
      4
    ],
    "io_out": [
      1,
      2,
      5,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,3))"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(sub_n(drop([-3, 3, -2],1),-1))",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),-1))"
  },
  {
    "input": "input : list = [0, -1, -4, 3, 2, -3]\noutput : list = [2, 1, -2, 5, 4, -1]",
    "output": "generated_output : list = sub_n([0, -1, -4, 3, 2, -3],-2)",
    "io_inp": [
      0,
      -1,
      -4,
      3,
      2,
      -3
    ],
    "io_out": [
      2,
      1,
      -2,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-8, -8]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(add_n([1, 1],2),-2),22)),-2)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(add_n(input,2),-2),22)),-2)"
  },
  {
    "input": "input : list = [-5, 4, 1, 2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = sub_n(drop([-5, 4, 1, 2],2),4)",
    "io_inp": [
      -5,
      4,
      1,
      2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),4)"
  },
  {
    "input": "input : list = [0, 3, -3, 3, 3, -1]\noutput : list = [3, 3, 3, 0, -1, -3]",
    "output": "generated_output : list = take(sort_des([0, 3, -3, 3, 3, -1]),12)",
    "io_inp": [
      0,
      3,
      -3,
      3,
      3,
      -1
    ],
    "io_out": [
      3,
      3,
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),12)"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(add_n(reverse(take([1, -2, 1],1)),1))",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(input,1)),1))"
  },
  {
    "input": "input : list = [-3, -2, 1, -3, -4, -4]\noutput : list = [20, 20, 18, 18, 16, 10]",
    "output": "generated_output : list = mul_n(take(sub_n(add_n(sort_asc([-3, -2, 1, -3, -4, -4]),-2),4),12),-2)",
    "io_inp": [
      -3,
      -2,
      1,
      -3,
      -4,
      -4
    ],
    "io_out": [
      20,
      20,
      18,
      18,
      16,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(add_n(sort_asc(input),-2),4),12),-2)"
  },
  {
    "input": "input : list = [-4, 4, 1, 4]\noutput : list = [-7, -2, 1, 1]",
    "output": "generated_output : list = add_n(take(sort_asc(take(sort_des([-4, 4, 1, 4]),6)),4),-3)",
    "io_inp": [
      -4,
      4,
      1,
      4
    ],
    "io_out": [
      -7,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(sort_des(input),6)),4),-3)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([5, 1])),-2)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),-2)"
  },
  {
    "input": "input : list = [4, 4, 0, 1, -1, 2]\noutput : list = [0, 1, 2, 3, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc([4, 4, 0, 1, -1, 2]),-1)",
    "io_inp": [
      4,
      4,
      0,
      1,
      -1,
      2
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-2, -1, 5]\noutput : list = [-2, -1, 5]",
    "output": "generated_output : list = reverse(sort_des([-2, -1, 5]))",
    "io_inp": [
      -2,
      -1,
      5
    ],
    "io_out": [
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 5, -4, -2, 4, 1]\noutput : list = [-28, 56, -52, -28, 44, 8]",
    "output": "generated_output : list = add_n(mul_n(mul_n([-2, 5, -4, -2, 4, 1],4),3),-4)",
    "io_inp": [
      -2,
      5,
      -4,
      -2,
      4,
      1
    ],
    "io_out": [
      -28,
      56,
      -52,
      -28,
      44,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(input,4),3),-4)"
  },
  {
    "input": "input : list = [-2, 2, 1, 5]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_asc(drop([-2, 2, 1, 5],2)),1)",
    "io_inp": [
      -2,
      2,
      1,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,2)),1)"
  },
  {
    "input": "input : list = [0, -3, -2, 1]\noutput : list = [-7, -1, 1, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(reverse([0, -3, -2, 1]),-2))),-5)",
    "io_inp": [
      0,
      -3,
      -2,
      1
    ],
    "io_out": [
      -7,
      -1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(reverse(input),-2))),-5)"
  },
  {
    "input": "input : list = [1, 3, -1, 3, -4]\noutput : list = [-1, 1, -3, 1, -6]",
    "output": "generated_output : list = sub_n([1, 3, -1, 3, -4],2)",
    "io_inp": [
      1,
      3,
      -1,
      3,
      -4
    ],
    "io_out": [
      -1,
      1,
      -3,
      1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, 5, 1, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(take([2, 5, 1, 2],2))",
    "io_inp": [
      2,
      5,
      1,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [5, 0, -1]\noutput : list = [3, -22, -27]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_asc([5, 0, -1]),5),5),-3))",
    "io_inp": [
      5,
      0,
      -1
    ],
    "io_out": [
      3,
      -22,
      -27
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_asc(input),5),5),-3))"
  },
  {
    "input": "input : list = [5, 1, -3, -4, -2]\noutput : list = [-1, 0, 1, 4, 8]",
    "output": "generated_output : list = add_n(take(take(sort_asc(sort_des([5, 1, -3, -4, -2])),32),40),3)",
    "io_inp": [
      5,
      1,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -1,
      0,
      1,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(sort_des(input)),32),40),3)"
  },
  {
    "input": "input : list = [-2, 4, 3, 0]\noutput : list = [-200, -175, -100, -50]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_des([-2, 4, 3, 0]),4)),-5),5)",
    "io_inp": [
      -2,
      4,
      3,
      0
    ],
    "io_out": [
      -200,
      -175,
      -100,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(sort_des(input),4)),-5),5)"
  },
  {
    "input": "input : list = [-5, -4, -3, -3, -2, 5]\noutput : list = [0, -4, -8, -8, -12, -40]",
    "output": "generated_output : list = mul_n(sub_n([-5, -4, -3, -3, -2, 5],-5),-4)",
    "io_inp": [
      -5,
      -4,
      -3,
      -3,
      -2,
      5
    ],
    "io_out": [
      0,
      -4,
      -8,
      -8,
      -12,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),-4)"
  },
  {
    "input": "input : list = [-4, -1, -3, 2]\noutput : list = [2, 0, 5]",
    "output": "generated_output : list = sub_n(take(sub_n(drop([-4, -1, -3, 2],1),-1),17),-2)",
    "io_inp": [
      -4,
      -1,
      -3,
      2
    ],
    "io_out": [
      2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(drop(input,1),-1),17),-2)"
  },
  {
    "input": "input : list = [-5, -5, 1, 4]\noutput : list = [-9, -9, -3, 0]",
    "output": "generated_output : list = sort_asc(add_n([-5, -5, 1, 4],-4))",
    "io_inp": [
      -5,
      -5,
      1,
      4
    ],
    "io_out": [
      -9,
      -9,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [5, -1, 5, 2, 4, 2]\noutput : list = [5, 2, 4, 2]",
    "output": "generated_output : list = drop([5, -1, 5, 2, 4, 2],2)",
    "io_inp": [
      5,
      -1,
      5,
      2,
      4,
      2
    ],
    "io_out": [
      5,
      2,
      4,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-1, 2, -2]\noutput : list = [-2, 2, -1]",
    "output": "generated_output : list = take(reverse([-1, 2, -2]),3)",
    "io_inp": [
      -1,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(input),3)"
  },
  {
    "input": "input : list = [3, 4, -4, -4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 4, -4, -4],1)",
    "io_inp": [
      3,
      4,
      -4,
      -4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -4, -3, 4, -3]\noutput : list = [5, 12]",
    "output": "generated_output : list = reverse(add_n(sub_n(add_n(drop([-1, -4, -3, 4, -3],3),3),-2),3))",
    "io_inp": [
      -1,
      -4,
      -3,
      4,
      -3
    ],
    "io_out": [
      5,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(add_n(drop(input,3),3),-2),3))"
  },
  {
    "input": "input : list = [-2, 4, 4, -5, 4, 0]\noutput : list = [4, 4, 4, 0, -2, -5]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(sort_asc([-2, 4, 4, -5, 4, 0])),28),1))",
    "io_inp": [
      -2,
      4,
      4,
      -5,
      4,
      0
    ],
    "io_out": [
      4,
      4,
      4,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(sort_asc(input)),28),1))"
  },
  {
    "input": "input : list = [2, 2, -3, -2]\noutput : list = [2, 2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(reverse([2, 2, -3, -2])),4)))",
    "io_inp": [
      2,
      2,
      -3,
      -2
    ],
    "io_out": [
      2,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(reverse(input)),4)))"
  },
  {
    "input": "input : list = [-2, -3, 5]\noutput : list = [8, 0]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(drop([-2, -3, 5],1)),-3)))",
    "io_inp": [
      -2,
      -3,
      5
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(drop(input,1)),-3)))"
  },
  {
    "input": "input : list = [-2, -4, 2, 3]\noutput : list = [11, 10, 6, 4]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(reverse([-2, -4, 2, 3])),-3),2),3)",
    "io_inp": [
      -2,
      -4,
      2,
      3
    ],
    "io_out": [
      11,
      10,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(reverse(input)),-3),2),3)"
  },
  {
    "input": "input : list = [-2, 4, 2, -4, 0]\noutput : list = [0, -4, 2, 4, -2]",
    "output": "generated_output : list = reverse(reverse(reverse([-2, 4, 2, -4, 0])))",
    "io_inp": [
      -2,
      4,
      2,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      2,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-3, 3, -1, 1, 0]\noutput : list = [38, 34, 42, 26, 50]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(add_n([-3, 3, -1, 1, 0],-5)),-5),-4),2)",
    "io_inp": [
      -3,
      3,
      -1,
      1,
      0
    ],
    "io_out": [
      38,
      34,
      42,
      26,
      50
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(add_n(input,-5)),-5),-4),2)"
  },
  {
    "input": "input : list = [5, -5, 4, -1, 4, 1]\noutput : list = [3, -7, 2, -3, 2, -1]",
    "output": "generated_output : list = add_n([5, -5, 4, -1, 4, 1],-2)",
    "io_inp": [
      5,
      -5,
      4,
      -1,
      4,
      1
    ],
    "io_out": [
      3,
      -7,
      2,
      -3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [3, 1, -4, -4]\noutput : list = [-8, 0, 20]",
    "output": "generated_output : list = take(mul_n(sub_n(take(sort_des([3, 1, -4, -4]),3),1),-4),25)",
    "io_inp": [
      3,
      1,
      -4,
      -4
    ],
    "io_out": [
      -8,
      0,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(take(sort_des(input),3),1),-4),25)"
  },
  {
    "input": "input : list = [-5, -5, -3]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(mul_n([-5, -5, -3],-1)),1),2))",
    "io_inp": [
      -5,
      -5,
      -3
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(mul_n(input,-1)),1),2))"
  },
  {
    "input": "input : list = [-4, 5, 4, 0, 0]\noutput : list = [5, 4, 0, 0, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(sort_des([-4, 5, 4, 0, 0])),-5)),5)",
    "io_inp": [
      -4,
      5,
      4,
      0,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(sort_des(input)),-5)),5)"
  },
  {
    "input": "input : list = [2, -2, -2, 4, -1]\noutput : list = [-2, -2, -1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des([2, -2, -2, 4, -1]),17))))",
    "io_inp": [
      2,
      -2,
      -2,
      4,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(sort_des(input),17))))"
  },
  {
    "input": "input : list = [-4, -4, 0, 0]\noutput : list = [20, 20, 0, 0]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(sort_asc([-4, -4, 0, 0]),18)),39),-5)",
    "io_inp": [
      -4,
      -4,
      0,
      0
    ],
    "io_out": [
      20,
      20,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(sort_asc(input),18)),39),-5)"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [-18, -30, -6]",
    "output": "generated_output : list = mul_n(take(take(mul_n(add_n([-2, -4, 0],-1),2),25),25),3)",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      -18,
      -30,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(add_n(input,-1),2),25),25),3)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n([3, -1],-4)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [20, 10, -10]",
    "output": "generated_output : list = add_n(reverse(sort_asc(mul_n(sub_n([1, -5, -1],-4),5))),-5)",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      20,
      10,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(mul_n(sub_n(input,-4),5))),-5)"
  },
  {
    "input": "input : list = [2, 5, -2, 4, -2]\noutput : list = [0, 0, 4, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sort_des([2, 5, -2, 4, -2]))),-2))",
    "io_inp": [
      2,
      5,
      -2,
      4,
      -2
    ],
    "io_out": [
      0,
      0,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [3, -2, -5, 2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(take([3, -2, -5, 2],2))",
    "io_inp": [
      3,
      -2,
      -5,
      2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [1, -5, 1, 3, 5]\noutput : list = [-5, 1, 3, 5]",
    "output": "generated_output : list = drop([1, -5, 1, 3, 5],1)",
    "io_inp": [
      1,
      -5,
      1,
      3,
      5
    ],
    "io_out": [
      -5,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 4, -4, 0, 2, 1]\noutput : list = [2, -6, -6, -8, -10, -14]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n([0, 4, -4, 0, 2, 1],3),-2)))",
    "io_inp": [
      0,
      4,
      -4,
      0,
      2,
      1
    ],
    "io_out": [
      2,
      -6,
      -6,
      -8,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(input,3),-2)))"
  },
  {
    "input": "input : list = [3, -3, 3, -2]\noutput : list = [-2, 3, -3, 3]",
    "output": "generated_output : list = reverse([3, -3, 3, -2])",
    "io_inp": [
      3,
      -3,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [12, 0, -3]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(reverse([-1, 3, 4]),-3),-3)),11)",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      12,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(reverse(input),-3),-3)),11)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(add_n(sub_n([4, 0],2),-2))))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(add_n(sub_n(input,2),-2))))"
  },
  {
    "input": "input : list = [-2, -1, 4, 5]\noutput : list = [2]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(take([-2, -1, 4, 5],1),1))),-1)",
    "io_inp": [
      -2,
      -1,
      4,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(take(input,1),1))),-1)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-21, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(sort_des([-4, 0]),5)),1),15)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -21,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(sort_des(input),5)),1),15)"
  },
  {
    "input": "input : list = [3, 0, -2, -1, -2, 5]\noutput : list = [-15, -9, 0, 3, 6, 6]",
    "output": "generated_output : list = sort_asc(mul_n([3, 0, -2, -1, -2, 5],-3))",
    "io_inp": [
      3,
      0,
      -2,
      -1,
      -2,
      5
    ],
    "io_out": [
      -15,
      -9,
      0,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-3))"
  },
  {
    "input": "input : list = [2, 4, 0, -2, 5, -3]\noutput : list = [4, 2]",
    "output": "generated_output : list = sub_n(take(reverse(add_n(take([2, 4, 0, -2, 5, -3],2),-3)),16),-3)",
    "io_inp": [
      2,
      4,
      0,
      -2,
      5,
      -3
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(add_n(take(input,2),-3)),16),-3)"
  },
  {
    "input": "input : list = [-1, -5, 4, 2, 0]\noutput : list = [-1, -5]",
    "output": "generated_output : list = take([-1, -5, 4, 2, 0],2)",
    "io_inp": [
      -1,
      -5,
      4,
      2,
      0
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-23, -15]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([-2, 0],3),4),3)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -23,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,3),4),3)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(add_n([2, -5],1),3),-1),2))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(add_n(input,1),3),-1),2))"
  },
  {
    "input": "input : list = [-4, 1, 4, -4]\noutput : list = [-12, -3, 12, 12]",
    "output": "generated_output : list = reverse(take(sort_des(take(mul_n([-4, 1, 4, -4],-3),19)),37))",
    "io_inp": [
      -4,
      1,
      4,
      -4
    ],
    "io_out": [
      -12,
      -3,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(mul_n(input,-3),19)),37))"
  },
  {
    "input": "input : list = [-2, 4, -2]\noutput : list = [-10, -10, -4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(reverse([-2, 4, -2]),4))),4)",
    "io_inp": [
      -2,
      4,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(reverse(input),4))),4)"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [-4, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sort_des([5, 3, -4]),1))))",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(sort_des(input),1))))"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-2, -1, 4]",
    "output": "generated_output : list = add_n(sub_n(take(sort_asc([-3, 3, -2]),13),-2),-1)",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_asc(input),13),-2),-1)"
  },
  {
    "input": "input : list = [3, -1, 4, -5, 0]\noutput : list = [120, -150, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(drop([3, -1, 4, -5, 0],2),1),-3),2),-5)",
    "io_inp": [
      3,
      -1,
      4,
      -5,
      0
    ],
    "io_out": [
      120,
      -150,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(drop(input,2),1),-3),2),-5)"
  },
  {
    "input": "input : list = [-1, -4, -1, -1]\noutput : list = [-8, -5, -5, -5]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(sort_des([-1, -4, -1, -1]))),-4),49)",
    "io_inp": [
      -1,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(sort_des(input))),-4),49)"
  },
  {
    "input": "input : list = [-4, 5, -5, 3]\noutput : list = [-15, 3]",
    "output": "generated_output : list = sub_n(add_n(add_n(mul_n(take([-4, 5, -5, 3],2),2),-5),-5),-3)",
    "io_inp": [
      -4,
      5,
      -5,
      3
    ],
    "io_out": [
      -15,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(mul_n(take(input,2),2),-5),-5),-3)"
  },
  {
    "input": "input : list = [5, 5, -1, -2]\noutput : list = [4, 4, -2, -3]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(sort_des([5, 5, -1, -2])),5)),-4)",
    "io_inp": [
      5,
      5,
      -1,
      -2
    ],
    "io_out": [
      4,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(sort_des(input)),5)),-4)"
  },
  {
    "input": "input : list = [0, 5, 2, -2, 2]\noutput : list = [5, 2, -2, 2]",
    "output": "generated_output : list = drop([0, 5, 2, -2, 2],1)",
    "io_inp": [
      0,
      5,
      2,
      -2,
      2
    ],
    "io_out": [
      5,
      2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -5, -4, 2]\noutput : list = [-48, 48, 64, 32]",
    "output": "generated_output : list = mul_n(reverse(take(add_n(mul_n([-3, -5, -4, 2],4),4),15)),-4)",
    "io_inp": [
      -3,
      -5,
      -4,
      2
    ],
    "io_out": [
      -48,
      48,
      64,
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(add_n(mul_n(input,4),4),15)),-4)"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(drop(reverse([0, -4, 1]),2))),-1)",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(drop(reverse(input),2))),-1)"
  },
  {
    "input": "input : list = [-2, 3, 2, -3]\noutput : list = [-5, -4, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(add_n([-2, 3, 2, -3],-1),-1))",
    "io_inp": [
      -2,
      3,
      2,
      -3
    ],
    "io_out": [
      -5,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,-1),-1))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([4, -1]))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sub_n(take(sort_des([1, 1]),10),4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(input),10),4)"
  },
  {
    "input": "input : list = [0, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = drop([0, -1, -5],1)",
    "io_inp": [
      0,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 4, 0, 1]\noutput : list = [5, 4, 8, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse([1, 4, 0, 1]),3),-1)",
    "io_inp": [
      1,
      4,
      0,
      1
    ],
    "io_out": [
      5,
      4,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),3),-1)"
  },
  {
    "input": "input : list = [4, 1, 2, 3, -3, 1]\noutput : list = [2, 3, -3, 1]",
    "output": "generated_output : list = drop([4, 1, 2, 3, -3, 1],2)",
    "io_inp": [
      4,
      1,
      2,
      3,
      -3,
      1
    ],
    "io_out": [
      2,
      3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -2, -3, 0]\noutput : list = [4, 0, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(sort_asc([4, -2, -3, 0])))))",
    "io_inp": [
      4,
      -2,
      -3,
      0
    ],
    "io_out": [
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des(sort_des([3, -3])),11)))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(sort_des(input)),11)))"
  },
  {
    "input": "input : list = [0, 3, -2, 2, -1]\noutput : list = [-9, -6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(drop(sort_asc([0, 3, -2, 2, -1]),3),-3)))",
    "io_inp": [
      0,
      3,
      -2,
      2,
      -1
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(drop(sort_asc(input),3),-3)))"
  },
  {
    "input": "input : list = [1, 0, 3, 5, -3]\noutput : list = [-598, -498, -798, -998, -198]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sub_n([1, 0, 3, 5, -3],-5),4),5),-5),-2)",
    "io_inp": [
      1,
      0,
      3,
      5,
      -3
    ],
    "io_out": [
      -598,
      -498,
      -798,
      -998,
      -198
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sub_n(input,-5),4),5),-5),-2)"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-8, -7, -4]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(add_n([-5, -4, -1],-3))),6))",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -8,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(add_n(input,-3))),6))"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [-16, 12]",
    "output": "generated_output : list = mul_n(sort_des(drop([-2, 4, -3],1)),-4)",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,1)),-4)"
  },
  {
    "input": "input : list = [0, 5, -1, 4]\noutput : list = [-1, 0, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([0, 5, -1, 4],-2)),2)",
    "io_inp": [
      0,
      5,
      -1,
      4
    ],
    "io_out": [
      -1,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,-2)),2)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(sort_asc([0, 0]))),-2))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-1, 1, -3, 3, 5, -4]\noutput : list = [4, 6, 2, 8, 10, 1]",
    "output": "generated_output : list = sub_n([-1, 1, -3, 3, 5, -4],-5)",
    "io_inp": [
      -1,
      1,
      -3,
      3,
      5,
      -4
    ],
    "io_out": [
      4,
      6,
      2,
      8,
      10,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [-2, -10, -14]",
    "output": "generated_output : list = reverse(take(take(add_n(mul_n([-5, -3, 1],2),-4),22),8))",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      -2,
      -10,
      -14
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(mul_n(input,2),-4),22),8))"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [1, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sub_n(sub_n([-2, 5, -2],4),3))),3)",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sub_n(sub_n(input,4),3))),3)"
  },
  {
    "input": "input : list = [0, 3, 4, 5, 1]\noutput : list = [-16, -12, -4, 0, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(add_n([0, 3, 4, 5, 1],-4),23),4)),25)",
    "io_inp": [
      0,
      3,
      4,
      5,
      1
    ],
    "io_out": [
      -16,
      -12,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(add_n(input,-4),23),4)),25)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [9, 12]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(add_n([4, 1],3)),3),-2))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(add_n(input,3)),3),-2))"
  },
  {
    "input": "input : list = [-2, -4, 2, 1, 4, 4]\noutput : list = [-6, -4, -1, 0, 2, 2]",
    "output": "generated_output : list = take(sub_n(add_n(sort_asc(reverse([-2, -4, 2, 1, 4, 4])),-3),-1),23)",
    "io_inp": [
      -2,
      -4,
      2,
      1,
      4,
      4
    ],
    "io_out": [
      -6,
      -4,
      -1,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_asc(reverse(input)),-3),-1),23)"
  },
  {
    "input": "input : list = [-4, 5, -2, 4, -1, 1]\noutput : list = [8, 7, 4, 2, 1, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(add_n([-4, 5, -2, 4, -1, 1],-5))),-5),-3)",
    "io_inp": [
      -4,
      5,
      -2,
      4,
      -1,
      1
    ],
    "io_out": [
      8,
      7,
      4,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(add_n(input,-5))),-5),-3)"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [6, 0, -4]",
    "output": "generated_output : list = reverse(take(take(sort_asc(mul_n([0, -3, 2],-2)),16),19))",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      6,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(mul_n(input,-2)),16),19))"
  },
  {
    "input": "input : list = [-4, 0, 3, -2, 3]\noutput : list = [-3, -1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(sort_des([-4, 0, 3, -2, 3]),3),-2),12))",
    "io_inp": [
      -4,
      0,
      3,
      -2,
      3
    ],
    "io_out": [
      -3,
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(sort_des(input),3),-2),12))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(sub_n([-1, -4],-3)))))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [5, -1, 0, -2]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(drop([5, -1, 0, -2],2))",
    "io_inp": [
      5,
      -1,
      0,
      -2
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [-4, 1, 3]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_des([3, 1, -4]))),1))",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [0, -4, 1]\noutput : list = [1, 0, -4]",
    "output": "generated_output : list = sort_des([0, -4, 1])",
    "io_inp": [
      0,
      -4,
      1
    ],
    "io_out": [
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3, 2, -3, 2, -3]\noutput : list = [-250, -200, -200, -75, -75, -50]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_des([-5, 3, 2, -3, 2, -3]),5),5),5))",
    "io_inp": [
      -5,
      3,
      2,
      -3,
      2,
      -3
    ],
    "io_out": [
      -250,
      -200,
      -200,
      -75,
      -75,
      -50
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(sort_des(input),5),5),5))"
  },
  {
    "input": "input : list = [-5, 0, 1, 2, 3]\noutput : list = [-10, -5]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(take([-5, 0, 1, 2, 3],2),17))),5)",
    "io_inp": [
      -5,
      0,
      1,
      2,
      3
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(take(input,2),17))),5)"
  },
  {
    "input": "input : list = [3, 1, 3, -5, 3]\noutput : list = [0, 6, 8, 8, 8]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(sub_n([3, 1, 3, -5, 3],-1)))),4)",
    "io_inp": [
      3,
      1,
      3,
      -5,
      3
    ],
    "io_out": [
      0,
      6,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sort_asc(sub_n(input,-1)))),4)"
  },
  {
    "input": "input : list = [-1, -4, 5, 2, 1, 3]\noutput : list = [-4, -1]",
    "output": "generated_output : list = reverse(take([-1, -4, 5, 2, 1, 3],2))",
    "io_inp": [
      -1,
      -4,
      5,
      2,
      1,
      3
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-3, 5, -3, -1, 0]\noutput : list = [1, 1, 3, 4, 9]",
    "output": "generated_output : list = sort_asc(add_n(sub_n([-3, 5, -3, -1, 0],-5),-1))",
    "io_inp": [
      -3,
      5,
      -3,
      -1,
      0
    ],
    "io_out": [
      1,
      1,
      3,
      4,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(input,-5),-1))"
  },
  {
    "input": "input : list = [-5, -1, -1, -1]\noutput : list = [-5, -1, -1, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(reverse([-5, -1, -1, -1])))))",
    "io_inp": [
      -5,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, -4, -5, 3, 2, -4]\noutput : list = [2, 8, 10, -6]",
    "output": "generated_output : list = mul_n(take([-1, -4, -5, 3, 2, -4],4),-2)",
    "io_inp": [
      -1,
      -4,
      -5,
      3,
      2,
      -4
    ],
    "io_out": [
      2,
      8,
      10,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,4),-2)"
  },
  {
    "input": "input : list = [4, 4, -2, 2]\noutput : list = [-16]",
    "output": "generated_output : list = reverse(sort_des(reverse(mul_n(take([4, 4, -2, 2],1),-4))))",
    "io_inp": [
      4,
      4,
      -2,
      2
    ],
    "io_out": [
      -16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(mul_n(take(input,1),-4))))"
  },
  {
    "input": "input : list = [5, -4, -4, 4, 4, -5]\noutput : list = [-1, 0, 0, 8, 8, 9]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(reverse([5, -4, -4, 4, 4, -5]),-4)),36))",
    "io_inp": [
      5,
      -4,
      -4,
      4,
      4,
      -5
    ],
    "io_out": [
      -1,
      0,
      0,
      8,
      8,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(reverse(input),-4)),36))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(mul_n([-3, 0],2)))))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [1, -4, 3, 1, 3]\noutput : list = [-24, -24, -16, -16]",
    "output": "generated_output : list = mul_n(sort_des(drop(sub_n(sort_asc([1, -4, 3, 1, 3]),-3),1)),-4)",
    "io_inp": [
      1,
      -4,
      3,
      1,
      3
    ],
    "io_out": [
      -24,
      -24,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(sub_n(sort_asc(input),-3),1)),-4)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, 12]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc([-4, 0])),-3)))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [5, 5, 0, -2, -5]\noutput : list = [-13, -10, -8, -3, -3]",
    "output": "generated_output : list = reverse(sub_n(sub_n([5, 5, 0, -2, -5],5),3))",
    "io_inp": [
      5,
      5,
      0,
      -2,
      -5
    ],
    "io_out": [
      -13,
      -10,
      -8,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,5),3))"
  },
  {
    "input": "input : list = [1, 2, -2, 2]\noutput : list = [-5, -4, -8, -4]",
    "output": "generated_output : list = sub_n(add_n(add_n([1, 2, -2, 2],-4),1),3)",
    "io_inp": [
      1,
      2,
      -2,
      2
    ],
    "io_out": [
      -5,
      -4,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-4),1),3)"
  },
  {
    "input": "input : list = [4, 4, 0, -2]\noutput : list = [3, 5, 9, 9]",
    "output": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n([4, 4, 0, -2],-5)))))",
    "io_inp": [
      4,
      4,
      0,
      -2
    ],
    "io_out": [
      3,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(reverse(sub_n(input,-5)))))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [0, -3]",
    "output": "generated_output : list = reverse(sub_n([1, 4],4))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,4))"
  },
  {
    "input": "input : list = [1, 2, -1, -3, -2, 5]\noutput : list = [-4, -3, -2, 0, 1, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(add_n([1, 2, -1, -3, -2, 5],-1)))))",
    "io_inp": [
      1,
      2,
      -1,
      -3,
      -2,
      5
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [-1, 0, -4, 4, -4, -3]\noutput : list = [-1, -5, -6, -8, -9, -9]",
    "output": "generated_output : list = sort_des(add_n([-1, 0, -4, 4, -4, -3],-5))",
    "io_inp": [
      -1,
      0,
      -4,
      4,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -5,
      -6,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, -4, -1]\noutput : list = [1, 4, -4, -1]",
    "output": "generated_output : list = sub_n(take(take(take(add_n([1, 4, -4, -1],5),14),20),23),5)",
    "io_inp": [
      1,
      4,
      -4,
      -1
    ],
    "io_out": [
      1,
      4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(add_n(input,5),14),20),23),5)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(add_n(add_n(drop(add_n([-2, -2],4),1),-2),-4))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(drop(add_n(input,4),1),-2),-4))"
  },
  {
    "input": "input : list = [5, 4, 0, 3, -1, -2]\noutput : list = [-4, -2, 6]",
    "output": "generated_output : list = sort_asc(mul_n(drop([5, 4, 0, 3, -1, -2],3),2))",
    "io_inp": [
      5,
      4,
      0,
      3,
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,3),2))"
  },
  {
    "input": "input : list = [3, 5, 4, 5]\noutput : list = [1, 4, 7, 7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n([3, 5, 4, 5],3)),3),5))",
    "io_inp": [
      3,
      5,
      4,
      5
    ],
    "io_out": [
      1,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(mul_n(input,3)),3),5))"
  },
  {
    "input": "input : list = [5, -2, -3, -2, 1, 2]\noutput : list = [4, -3, -4, -3, 0, 1]",
    "output": "generated_output : list = add_n(add_n([5, -2, -3, -2, 1, 2],-5),4)",
    "io_inp": [
      5,
      -2,
      -3,
      -2,
      1,
      2
    ],
    "io_out": [
      4,
      -3,
      -4,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),4)"
  },
  {
    "input": "input : list = [-1, 2, -3, -4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, 2, -3, -4],1)",
    "io_inp": [
      -1,
      2,
      -3,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, -4, 2, -2]\noutput : list = [8, -8, -16, -20]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(sort_asc([-5, -4, 2, -2])))),4)",
    "io_inp": [
      -5,
      -4,
      2,
      -2
    ],
    "io_out": [
      8,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [0, 0, -1, 3, -2]\noutput : list = [3, 3, 2, 6, 1]",
    "output": "generated_output : list = add_n([0, 0, -1, 3, -2],3)",
    "io_inp": [
      0,
      0,
      -1,
      3,
      -2
    ],
    "io_out": [
      3,
      3,
      2,
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [5, -4, -5, -2]\noutput : list = [-10, -8, -4, 10]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(sort_asc([5, -4, -5, -2]),18),-1),-2))",
    "io_inp": [
      5,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -4,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(sort_asc(input),18),-1),-2))"
  },
  {
    "input": "input : list = [2, 1, -3, -3, 5]\noutput : list = [12, 9, -3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(take([2, 1, -3, -3, 5],3),-1),-3),-2),4)",
    "io_inp": [
      2,
      1,
      -3,
      -3,
      5
    ],
    "io_out": [
      12,
      9,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(take(input,3),-1),-3),-2),4)"
  },
  {
    "input": "input : list = [0, 0, -1, 0, 0]\noutput : list = [-9, -8, -8, -8, -8]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sub_n([0, 0, -1, 0, 0],3)),-1)),4)",
    "io_inp": [
      0,
      0,
      -1,
      0,
      0
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(sub_n(input,3)),-1)),4)"
  },
  {
    "input": "input : list = [-1, -4, 3, 5, 0, -5]\noutput : list = [9, 7, 4, 3, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(sort_asc([-1, -4, 3, 5, 0, -5]),-4),11)))",
    "io_inp": [
      -1,
      -4,
      3,
      5,
      0,
      -5
    ],
    "io_out": [
      9,
      7,
      4,
      3,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(sort_asc(input),-4),11)))"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [0, 3, 0]",
    "output": "generated_output : list = reverse([0, 3, 0])",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 0, 4, 2]\noutput : list = [-6, -10, 0, -8, -4]",
    "output": "generated_output : list = take(reverse(reverse(mul_n([3, 5, 0, 4, 2],-2))),30)",
    "io_inp": [
      3,
      5,
      0,
      4,
      2
    ],
    "io_out": [
      -6,
      -10,
      0,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(input,-2))),30)"
  },
  {
    "input": "input : list = [-5, 2, -2]\noutput : list = [-22, -7, 13]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(sort_asc([-5, 2, -2])),5)),3)",
    "io_inp": [
      -5,
      2,
      -2
    ],
    "io_out": [
      -22,
      -7,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(sort_asc(input)),5)),3)"
  },
  {
    "input": "input : list = [-1, 2, 3, -4]\noutput : list = [6, 0, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(add_n([-1, 2, 3, -4],-2),1),3),-2))",
    "io_inp": [
      -1,
      2,
      3,
      -4
    ],
    "io_out": [
      6,
      0,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(add_n(input,-2),1),3),-2))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-7, -8]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(sort_des([-3, -2]),5),20)),1)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(sort_des(input),5),20)),1)"
  },
  {
    "input": "input : list = [0, 2, 5, -4, 3]\noutput : list = [-5, -1, 1, 2, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sub_n([0, 2, 5, -4, 3],2)))),1)",
    "io_inp": [
      0,
      2,
      5,
      -4,
      3
    ],
    "io_out": [
      -5,
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(sub_n(input,2)))),1)"
  },
  {
    "input": "input : list = [-4, 3, -5, -4]\noutput : list = [0, 7, -1, 0]",
    "output": "generated_output : list = sub_n([-4, 3, -5, -4],-4)",
    "io_inp": [
      -4,
      3,
      -5,
      -4
    ],
    "io_out": [
      0,
      7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 4, 2, 3]\noutput : list = [4, 2, 3]",
    "output": "generated_output : list = drop([3, 4, 2, 3],1)",
    "io_inp": [
      3,
      4,
      2,
      3
    ],
    "io_out": [
      4,
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 2, 3, -4, -4, -4]\noutput : list = [30, 30, 30, 27, 12, 9]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(add_n([-3, 2, 3, -4, -4, -4],-3),5),-2),-3))",
    "io_inp": [
      -3,
      2,
      3,
      -4,
      -4,
      -4
    ],
    "io_out": [
      30,
      30,
      30,
      27,
      12,
      9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(add_n(input,-3),5),-2),-3))"
  },
  {
    "input": "input : list = [-5, -5, -2, -3]\noutput : list = [-7, -7, -4, -5]",
    "output": "generated_output : list = sub_n(sub_n([-5, -5, -2, -3],-1),3)",
    "io_inp": [
      -5,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-1),3)"
  },
  {
    "input": "input : list = [-3, 1, -2, 1]\noutput : list = [10, 7, -2, -2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-3, 1, -2, 1]),-3),-1)",
    "io_inp": [
      -3,
      1,
      -2,
      1
    ],
    "io_out": [
      10,
      7,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),-3),-1)"
  },
  {
    "input": "input : list = [-5, -3, 0, -4]\noutput : list = [2, 1, 0, -3]",
    "output": "generated_output : list = sort_des(add_n(mul_n(add_n(reverse([-5, -3, 0, -4]),-2),-1),-5))",
    "io_inp": [
      -5,
      -3,
      0,
      -4
    ],
    "io_out": [
      2,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(add_n(reverse(input),-2),-1),-5))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = mul_n([1, 2],2)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, 1, -5, -5, 5, -2]\noutput : list = [-7, -7, -4, -1, -1, 3]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n([1, 1, -5, -5, 5, -2],2),-1))),-1)",
    "io_inp": [
      1,
      1,
      -5,
      -5,
      5,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -4,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n(input,2),-1))),-1)"
  },
  {
    "input": "input : list = [-4, -3, -3, 1, 0, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(sort_asc([-4, -3, -3, 1, 0, 2]),1),2),-1),-5)",
    "io_inp": [
      -4,
      -3,
      -3,
      1,
      0,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(sort_asc(input),1),2),-1),-5)"
  },
  {
    "input": "input : list = [-1, 2, 0, 3, 1]\noutput : list = [12, 8, 4, 0, -4]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(sort_des([-1, 2, 0, 3, 1])),4)),7)",
    "io_inp": [
      -1,
      2,
      0,
      3,
      1
    ],
    "io_out": [
      12,
      8,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(sort_des(input)),4)),7)"
  },
  {
    "input": "input : list = [4, -1, 0, -5, 1]\noutput : list = [-6, 0, 2, 4, 12]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(reverse([4, -1, 0, -5, 1]),-2))),-2)",
    "io_inp": [
      4,
      -1,
      0,
      -5,
      1
    ],
    "io_out": [
      -6,
      0,
      2,
      4,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(mul_n(reverse(input),-2))),-2)"
  },
  {
    "input": "input : list = [5, -2, 4, -5, -4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([5, -2, 4, -5, -4, 0],4)))",
    "io_inp": [
      5,
      -2,
      4,
      -5,
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,4)))"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [-10, 10, -2]",
    "output": "generated_output : list = mul_n([-5, 5, -1],2)",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      -10,
      10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, -4, -2, 3]\noutput : list = [-4, 11]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(drop([-3, -4, -2, 3],2),12),-3),-5))",
    "io_inp": [
      -3,
      -4,
      -2,
      3
    ],
    "io_out": [
      -4,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(drop(input,2),12),-3),-5))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(sub_n([3, 5],2)),15),-1))",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(sub_n(input,2)),15),-1))"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(sort_asc(take(drop(sort_asc([4, -5, 4]),1),17)))",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(drop(sort_asc(input),1),17)))"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [10, 5, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(sort_des([-5, 0, 5])))),-5)",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      10,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(sort_des(input)))),-5)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-3, -2]",
    "output": "generated_output : list = reverse(take(add_n(take(reverse([0, 1]),2),-3),30))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(reverse(input),2),-3),30))"
  },
  {
    "input": "input : list = [0, 3, -3, 4, -1, -2]\noutput : list = [-9]",
    "output": "generated_output : list = mul_n(take(sort_asc([0, 3, -3, 4, -1, -2]),1),3)",
    "io_inp": [
      0,
      3,
      -3,
      4,
      -1,
      -2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),1),3)"
  },
  {
    "input": "input : list = [3, -3, 3, 4]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(take([3, -3, 3, 4],2)),24)))",
    "io_inp": [
      3,
      -3,
      3,
      4
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(take(input,2)),24)))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = sort_des(sort_des([3, -5]))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, 3, -2, 2, -3]\noutput : list = [8, 12, 12, 28, 32]",
    "output": "generated_output : list = sort_asc(mul_n(add_n([2, 3, -2, 2, -3],-5),-4))",
    "io_inp": [
      2,
      3,
      -2,
      2,
      -3
    ],
    "io_out": [
      8,
      12,
      12,
      28,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(input,-5),-4))"
  },
  {
    "input": "input : list = [-1, -5, 3]\noutput : list = [2, -2, 6]",
    "output": "generated_output : list = sub_n([-1, -5, 3],-3)",
    "io_inp": [
      -1,
      -5,
      3
    ],
    "io_out": [
      2,
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, -3, 4, 0]\noutput : list = [24, -16, 40, 8]",
    "output": "generated_output : list = mul_n(take(take(mul_n(add_n([2, -3, 4, 0],1),-2),15),8),-4)",
    "io_inp": [
      2,
      -3,
      4,
      0
    ],
    "io_out": [
      24,
      -16,
      40,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(take(mul_n(add_n(input,1),-2),15),8),-4)"
  },
  {
    "input": "input : list = [-4, -2, -3, -2]\noutput : list = [-6, -5, -4, -4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sub_n([-4, -2, -3, -2],-2)),2),2))",
    "io_inp": [
      -4,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sub_n(input,-2)),2),2))"
  },
  {
    "input": "input : list = [2, -2, -3, -3]\noutput : list = [-60, -60, -70, -110]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(add_n([2, -2, -3, -3],4),-5)),5),-2)",
    "io_inp": [
      2,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -60,
      -60,
      -70,
      -110
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(add_n(input,4),-5)),5),-2)"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [12, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(reverse([3, -3, -1]),-3)),2))",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      12,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(reverse(input),-3)),2))"
  },
  {
    "input": "input : list = [0, -1, -5, 4]\noutput : list = [-2, -3, -7, 2]",
    "output": "generated_output : list = sub_n([0, -1, -5, 4],2)",
    "io_inp": [
      0,
      -1,
      -5,
      4
    ],
    "io_out": [
      -2,
      -3,
      -7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take(reverse(take(sub_n(sort_asc([-2, -3]),-1),14)),6)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(sort_asc(input),-1),14)),6)"
  },
  {
    "input": "input : list = [5, 1, -3, 3, -4]\noutput : list = [-5, -4, 0, 2, 4]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(sort_asc([5, 1, -3, 3, -4]),14),-1)))",
    "io_inp": [
      5,
      1,
      -3,
      3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(sort_asc(input),14),-1)))"
  },
  {
    "input": "input : list = [-1, 5, -3, 5, -3]\noutput : list = [3, 9, 1, 9, 1]",
    "output": "generated_output : list = take(add_n([-1, 5, -3, 5, -3],4),10)",
    "io_inp": [
      -1,
      5,
      -3,
      5,
      -3
    ],
    "io_out": [
      3,
      9,
      1,
      9,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),10)"
  },
  {
    "input": "input : list = [1, 1, 3, 5, 5, -2]\noutput : list = [51, 6, 6, -24, -54, -54]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(mul_n([1, 1, 3, 5, 5, -2],3)),-4),-5),1)",
    "io_inp": [
      1,
      1,
      3,
      5,
      5,
      -2
    ],
    "io_out": [
      51,
      6,
      6,
      -24,
      -54,
      -54
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(mul_n(input,3)),-4),-5),1)"
  },
  {
    "input": "input : list = [5, 3, -1]\noutput : list = [-2, 2, 4]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(mul_n([5, 3, -1],1),4),1),4))",
    "io_inp": [
      5,
      3,
      -1
    ],
    "io_out": [
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(mul_n(input,1),4),1),4))"
  },
  {
    "input": "input : list = [-5, 5, -3, 2, -2]\noutput : list = [45, 27, 18, -18]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(sort_des([-5, 5, -3, 2, -2])),-3),3),4)",
    "io_inp": [
      -5,
      5,
      -3,
      2,
      -2
    ],
    "io_out": [
      45,
      27,
      18,
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(sort_des(input)),-3),3),4)"
  },
  {
    "input": "input : list = [-5, -5, 2, 1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(take([-5, -5, 2, 1],2),-4))",
    "io_inp": [
      -5,
      -5,
      2,
      1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(input,2),-4))"
  },
  {
    "input": "input : list = [4, -1, 1, 3, 1, 2]\noutput : list = [1, 3, 3, 4, 5, 6]",
    "output": "generated_output : list = take(add_n(reverse(reverse(sort_asc([4, -1, 1, 3, 1, 2]))),2),44)",
    "io_inp": [
      4,
      -1,
      1,
      3,
      1,
      2
    ],
    "io_out": [
      1,
      3,
      3,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(reverse(sort_asc(input))),2),44)"
  },
  {
    "input": "input : list = [-5, -5, 2, 3, -1]\noutput : list = [12, 11, 8]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(drop([-5, -5, 2, 3, -1],2),-4)),5))",
    "io_inp": [
      -5,
      -5,
      2,
      3,
      -1
    ],
    "io_out": [
      12,
      11,
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(drop(input,2),-4)),5))"
  },
  {
    "input": "input : list = [2, 2, -3, 0]\noutput : list = [-15, -15, -21, -30]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_asc([2, 2, -3, 0]),-2),5)),3)",
    "io_inp": [
      2,
      2,
      -3,
      0
    ],
    "io_out": [
      -15,
      -15,
      -21,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(add_n(sort_asc(input),-2),5)),3)"
  },
  {
    "input": "input : list = [4, 4, -3, -2]\noutput : list = [-2, -1, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sub_n([4, 4, -3, -2],-3),-4))),-2)",
    "io_inp": [
      4,
      4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(sub_n(input,-3),-4))),-2)"
  },
  {
    "input": "input : list = [5, -4, 2, -1, -2, 5]\noutput : list = [-4, 32, 8, 20, 24, -4]",
    "output": "generated_output : list = mul_n(sub_n([5, -4, 2, -1, -2, 5],4),-4)",
    "io_inp": [
      5,
      -4,
      2,
      -1,
      -2,
      5
    ],
    "io_out": [
      -4,
      32,
      8,
      20,
      24,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,4),-4)"
  },
  {
    "input": "input : list = [0, 2, -2]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take([0, 2, -2],1),-3),-2))",
    "io_inp": [
      0,
      2,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(input,1),-3),-2))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(mul_n([3, 4],1),-2),22),-2))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(mul_n(input,1),-2),22),-2))"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [-8, -2, 0]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(sort_des([-5, 3, 1]),-3)),18))",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      -8,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(sort_des(input),-3)),18))"
  },
  {
    "input": "input : list = [-1, 0, -4, -2, 3, 1]\noutput : list = [-2, 3, 1]",
    "output": "generated_output : list = drop([-1, 0, -4, -2, 3, 1],3)",
    "io_inp": [
      -1,
      0,
      -4,
      -2,
      3,
      1
    ],
    "io_out": [
      -2,
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 1, -3, -2]\noutput : list = [-9, -8, -5, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n([5, 1, -3, -2],2),2),2))",
    "io_inp": [
      5,
      1,
      -3,
      -2
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(input,2),2),2))"
  },
  {
    "input": "input : list = [2, -2, -5, -3]\noutput : list = [-3, -1, 0, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc([2, -2, -5, -3]))),2)",
    "io_inp": [
      2,
      -2,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(input))),2)"
  },
  {
    "input": "input : list = [-1, -2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(drop([-1, -2, -5],1)),1),1))",
    "io_inp": [
      -1,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(drop(input,1)),1),1))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [6, 18]",
    "output": "generated_output : list = mul_n(sub_n([0, 4],-2),3)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      6,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-2),3)"
  },
  {
    "input": "input : list = [-1, 5, -3, -3, 0]\noutput : list = [-7, -7, -3, -1, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(sub_n(mul_n([-1, 5, -3, -3, 0],2),-2)),12),3)",
    "io_inp": [
      -1,
      5,
      -3,
      -3,
      0
    ],
    "io_out": [
      -7,
      -7,
      -3,
      -1,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sub_n(mul_n(input,2),-2)),12),3)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = take(sort_asc([1, 5]),10)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),10)"
  },
  {
    "input": "input : list = [0, -5, -1, -4]\noutput : list = [-3, -8, -4, -7]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(add_n([0, -5, -1, -4],-2),2),-1),5),5)",
    "io_inp": [
      0,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -8,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(add_n(input,-2),2),-1),5),5)"
  },
  {
    "input": "input : list = [4, 0, -2]\noutput : list = [-5, -3, 1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(reverse([4, 0, -2])),-5)),-2)",
    "io_inp": [
      4,
      0,
      -2
    ],
    "io_out": [
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(reverse(input)),-5)),-2)"
  },
  {
    "input": "input : list = [1, 0, 1, -4, 3, -4]\noutput : list = [18, -3, 18, 3, 6, 3]",
    "output": "generated_output : list = reverse(mul_n(add_n([1, 0, 1, -4, 3, -4],-2),-3))",
    "io_inp": [
      1,
      0,
      1,
      -4,
      3,
      -4
    ],
    "io_out": [
      18,
      -3,
      18,
      3,
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,-2),-3))"
  },
  {
    "input": "input : list = [3, -5, -3, -5, -1]\noutput : list = [108, 12, 36, 12, 60]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(sub_n([3, -5, -3, -5, -1],-5),2),4),4),3)",
    "io_inp": [
      3,
      -5,
      -3,
      -5,
      -1
    ],
    "io_out": [
      108,
      12,
      36,
      12,
      60
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(sub_n(input,-5),2),4),4),3)"
  },
  {
    "input": "input : list = [5, 5, 5, -3, 0]\noutput : list = [7, 7, 7, 2, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(reverse([5, 5, 5, -3, 0]),2))))",
    "io_inp": [
      5,
      5,
      5,
      -3,
      0
    ],
    "io_out": [
      7,
      7,
      7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [3, -2, -2, 2, 2, 5]\noutput : list = [31, 21, 16, 16, -4, -4]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(reverse([3, -2, -2, 2, 2, 5]),2),5)),-4)",
    "io_inp": [
      3,
      -2,
      -2,
      2,
      2,
      5
    ],
    "io_out": [
      31,
      21,
      16,
      16,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(reverse(input),2),5)),-4)"
  },
  {
    "input": "input : list = [1, 4, -2, 1, -3]\noutput : list = [-3, 1, -2, 4, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse([1, 4, -2, 1, -3]),5),5)",
    "io_inp": [
      1,
      4,
      -2,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      -2,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),5),5)"
  },
  {
    "input": "input : list = [-5, 4, -3, 3]\noutput : list = [0, 9, 2, 8]",
    "output": "generated_output : list = add_n([-5, 4, -3, 3],5)",
    "io_inp": [
      -5,
      4,
      -3,
      3
    ],
    "io_out": [
      0,
      9,
      2,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-5, -3, 4, -3, -1]\noutput : list = [-10]",
    "output": "generated_output : list = reverse(reverse(sub_n(drop(sort_des([-5, -3, 4, -3, -1]),4),5)))",
    "io_inp": [
      -5,
      -3,
      4,
      -3,
      -1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(drop(sort_des(input),4),5)))"
  },
  {
    "input": "input : list = [-4, -1, 5, -3, -1]\noutput : list = [-7, -4, 2, -6, -4]",
    "output": "generated_output : list = add_n([-4, -1, 5, -3, -1],-3)",
    "io_inp": [
      -4,
      -1,
      5,
      -3,
      -1
    ],
    "io_out": [
      -7,
      -4,
      2,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [4]",
    "output": "generated_output : list = take([4, -1, 3],1)",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -4, -2, -2, 0]\noutput : list = [0, -2, -2, -4, 5]",
    "output": "generated_output : list = reverse([5, -4, -2, -2, 0])",
    "io_inp": [
      5,
      -4,
      -2,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      -2,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 0, 3, -5, 4, -5]\noutput : list = [-25, -25, 0, 0, 15, 20]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(sort_asc([0, 0, 3, -5, 4, -5]))),5),29)",
    "io_inp": [
      0,
      0,
      3,
      -5,
      4,
      -5
    ],
    "io_out": [
      -25,
      -25,
      0,
      0,
      15,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(sort_asc(input))),5),29)"
  },
  {
    "input": "input : list = [0, 2, 1, 2, -1]\noutput : list = [-4, 0, 4, 8, 8]",
    "output": "generated_output : list = sort_asc(mul_n([0, 2, 1, 2, -1],4))",
    "io_inp": [
      0,
      2,
      1,
      2,
      -1
    ],
    "io_out": [
      -4,
      0,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(add_n([-3, -4],-1)))),20)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(add_n(input,-1)))),20)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_des([5, 5]),-2)),3))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(sort_des(input),-2)),3))"
  },
  {
    "input": "input : list = [0, -3, 1, 3, 1]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(drop([0, -3, 1, 3, 1],2)),-1)))",
    "io_inp": [
      0,
      -3,
      1,
      3,
      1
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(drop(input,2)),-1)))"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [3, 2, 2]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(sort_asc([3, 2, 2])))),31)",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(sort_asc(input)))),31)"
  },
  {
    "input": "input : list = [-3, 2, 0, -1, -4, -2]\noutput : list = [0, 1, 2, 3, 4, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sub_n([-3, 2, 0, -1, -4, -2],-1))),-3))",
    "io_inp": [
      -3,
      2,
      0,
      -1,
      -4,
      -2
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sub_n(input,-1))),-3))"
  },
  {
    "input": "input : list = [4, 0, -5, 1, 2, -4]\noutput : list = [24, 14, 9, 4, -16, -21]",
    "output": "generated_output : list = take(add_n(reverse(sort_asc(mul_n([4, 0, -5, 1, 2, -4],5))),4),26)",
    "io_inp": [
      4,
      0,
      -5,
      1,
      2,
      -4
    ],
    "io_out": [
      24,
      14,
      9,
      4,
      -16,
      -21
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_asc(mul_n(input,5))),4),26)"
  },
  {
    "input": "input : list = [-1, -3, -3, 5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sub_n(sub_n(drop([-1, -3, -3, 5],2),-1),3)",
    "io_inp": [
      -1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,2),-1),3)"
  },
  {
    "input": "input : list = [-1, -3, 4, -2, 5, 3]\noutput : list = [7, 6, 5, 1, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n(reverse([-1, -3, 4, -2, 5, 3]),3),-5)))",
    "io_inp": [
      -1,
      -3,
      4,
      -2,
      5,
      3
    ],
    "io_out": [
      7,
      6,
      5,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(reverse(input),3),-5)))"
  },
  {
    "input": "input : list = [0, 2, 3, -2, 4]\noutput : list = [-2, 3, 4]",
    "output": "generated_output : list = take(sort_asc(drop([0, 2, 3, -2, 4],2)),25)",
    "io_inp": [
      0,
      2,
      3,
      -2,
      4
    ],
    "io_out": [
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,2)),25)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des([0, -1]))),1),35)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sort_des(input))),1),35)"
  },
  {
    "input": "input : list = [-2, 2, 3, -1, 3, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sort_asc(mul_n(take([-2, 2, 3, -1, 3, -3],1),1))",
    "io_inp": [
      -2,
      2,
      3,
      -1,
      3,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),1))"
  },
  {
    "input": "input : list = [-4, -5, 1, 2, -3]\noutput : list = [-10, -15, -35, -40, -45]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des([-4, -5, 1, 2, -3])),-4),5)",
    "io_inp": [
      -4,
      -5,
      1,
      2,
      -3
    ],
    "io_out": [
      -10,
      -15,
      -35,
      -40,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(input)),-4),5)"
  },
  {
    "input": "input : list = [-2, -3, 5, -2, -4]\noutput : list = [-6, 8, 12]",
    "output": "generated_output : list = sub_n(mul_n(drop([-2, -3, 5, -2, -4],2),-2),-4)",
    "io_inp": [
      -2,
      -3,
      5,
      -2,
      -4
    ],
    "io_out": [
      -6,
      8,
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,2),-2),-4)"
  },
  {
    "input": "input : list = [-1, -3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(sub_n(drop([-1, -3, 0],1),-1))),-3)",
    "io_inp": [
      -1,
      -3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(sub_n(drop(input,1),-1))),-3)"
  },
  {
    "input": "input : list = [-1, 2, 1, -3, 5]\noutput : list = [-6, -3, 3]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(take([-1, 2, 1, -3, 5],3)),11),-3))",
    "io_inp": [
      -1,
      2,
      1,
      -3,
      5
    ],
    "io_out": [
      -6,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(take(input,3)),11),-3))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-10, -4]",
    "output": "generated_output : list = mul_n([5, 2],-2)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 4, -5, 3, -4]\noutput : list = [7, 6, 0, -1, -2]",
    "output": "generated_output : list = add_n(sort_des([-3, 4, -5, 3, -4]),3)",
    "io_inp": [
      -3,
      4,
      -5,
      3,
      -4
    ],
    "io_out": [
      7,
      6,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-3, 3, 5, 3, 2]\noutput : list = [-20, -10, 20]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(take([-3, 3, 5, 3, 2],3),8),-5)),5)",
    "io_inp": [
      -3,
      3,
      5,
      3,
      2
    ],
    "io_out": [
      -20,
      -10,
      20
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(take(input,3),8),-5)),5)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, -4]",
    "output": "generated_output : list = sub_n(add_n([-3, -4],5),5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),5)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = reverse([2, -5])",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, -5, 0]\noutput : list = [24, 44, 12, 32]",
    "output": "generated_output : list = mul_n(sub_n(add_n(reverse([-2, 3, -5, 0]),-3),3),-4)",
    "io_inp": [
      -2,
      3,
      -5,
      0
    ],
    "io_out": [
      24,
      44,
      12,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(reverse(input),-3),3),-4)"
  },
  {
    "input": "input : list = [0, -4, -4, 5]\noutput : list = [19, 4, -8, -8]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(sort_des([0, -4, -4, 5]),3),26),4))",
    "io_inp": [
      0,
      -4,
      -4,
      5
    ],
    "io_out": [
      19,
      4,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(sort_des(input),3),26),4))"
  },
  {
    "input": "input : list = [-4, -1, 4, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = drop([-4, -1, 4, 3, -1],3)",
    "io_inp": [
      -4,
      -1,
      4,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, -5, -1, 2, -3]\noutput : list = [-5, -7]",
    "output": "generated_output : list = take(take(drop(sort_des(add_n([-2, -5, -1, 2, -3],-2)),3),9),30)",
    "io_inp": [
      -2,
      -5,
      -1,
      2,
      -3
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(take(drop(sort_des(add_n(input,-2)),3),9),30)"
  },
  {
    "input": "input : list = [0, 3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(drop([0, 3, 2],1)),-2),2)",
    "io_inp": [
      0,
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(drop(input,1)),-2),2)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [4, -20]",
    "output": "generated_output : list = mul_n(drop([1, -1, 5],1),-4)",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [2, 5, 2]\noutput : list = [8, 11, 8]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse([2, 5, 2]),-3),3))",
    "io_inp": [
      2,
      5,
      2
    ],
    "io_out": [
      8,
      11,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(input),-3),3))"
  },
  {
    "input": "input : list = [4, 2, -3, 2, -5, 0]\noutput : list = [-8, -4, 2, 6, 6, 10]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(mul_n([4, 2, -3, 2, -5, 0],2),2))))",
    "io_inp": [
      4,
      2,
      -3,
      2,
      -5,
      0
    ],
    "io_out": [
      -8,
      -4,
      2,
      6,
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(mul_n(input,2),2))))"
  },
  {
    "input": "input : list = [1, -4, -2]\noutput : list = [12, 4, -8]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n([1, -4, -2],-2),2)),4)",
    "io_inp": [
      1,
      -4,
      -2
    ],
    "io_out": [
      12,
      4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(input,-2),2)),4)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [180]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(take([-5, 2, -3],1)),-4),-4),5)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      180
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(take(input,1)),-4),-4),5)"
  },
  {
    "input": "input : list = [-4, 4, -5, -1]\noutput : list = [-20, 5, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(sort_asc([-4, 4, -5, -1]),-1),22),5))",
    "io_inp": [
      -4,
      4,
      -5,
      -1
    ],
    "io_out": [
      -20,
      5,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(sort_asc(input),-1),22),5))"
  },
  {
    "input": "input : list = [2, -1, -5]\noutput : list = [3, 7, 10]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n([2, -1, -5],-5)),2),-4),-1)",
    "io_inp": [
      2,
      -1,
      -5
    ],
    "io_out": [
      3,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n(input,-5)),2),-4),-1)"
  },
  {
    "input": "input : list = [-5, -2, -2, 2]\noutput : list = [-15, -6, -6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n([-5, -2, -2, 2],3))))",
    "io_inp": [
      -5,
      -2,
      -2,
      2
    ],
    "io_out": [
      -15,
      -6,
      -6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(mul_n(input,3))))"
  },
  {
    "input": "input : list = [-3, -4, -1, 4, 5, 3]\noutput : list = [3, 5, 4, -1, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, -1, 4, 5, 3])",
    "io_inp": [
      -3,
      -4,
      -1,
      4,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      4,
      -1,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [1]",
    "output": "generated_output : list = drop(sort_asc(add_n([-1, 2, 3],-2)),2)",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(input,-2)),2)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [-5, -1, 1]",
    "output": "generated_output : list = reverse(take(take(reverse(sort_asc([-1, -5, 1])),16),27))",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(sort_asc(input)),16),27))"
  },
  {
    "input": "input : list = [-2, 2, 5]\noutput : list = [-2, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(reverse([-2, 2, 5])))))",
    "io_inp": [
      -2,
      2,
      5
    ],
    "io_out": [
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [5, 1, 3, -4, 0]\noutput : list = [5, 3, 1, 0, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc([5, 1, 3, -4, 0])),33))",
    "io_inp": [
      5,
      1,
      3,
      -4,
      0
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(input)),33))"
  },
  {
    "input": "input : list = [0, -1, 1, 4, 1]\noutput : list = [2, 3, 3, 6]",
    "output": "generated_output : list = drop(add_n(sort_asc(sort_des(add_n([0, -1, 1, 4, 1],-1))),3),1)",
    "io_inp": [
      0,
      -1,
      1,
      4,
      1
    ],
    "io_out": [
      2,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(sort_des(add_n(input,-1))),3),1)"
  },
  {
    "input": "input : list = [1, -3, -2, 3, 3]\noutput : list = [26, 31]",
    "output": "generated_output : list = sub_n(drop(sort_asc(mul_n(sub_n([1, -3, -2, 3, 3],4),-5)),3),4)",
    "io_inp": [
      1,
      -3,
      -2,
      3,
      3
    ],
    "io_out": [
      26,
      31
    ],
    "output_masked": "generated_output : list = sub_n(drop(sort_asc(mul_n(sub_n(input,4),-5)),3),4)"
  },
  {
    "input": "input : list = [4, 3, 3, 3]\noutput : list = [23, 18, 18, 18]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(sort_asc([4, 3, 3, 3])),5)),-3)",
    "io_inp": [
      4,
      3,
      3,
      3
    ],
    "io_out": [
      23,
      18,
      18,
      18
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(sort_asc(input)),5)),-3)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-6, -30]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n([-5, 3],-5),3)))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -6,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(input,-5),3)))"
  },
  {
    "input": "input : list = [-3, 4, -5, -2, 5]\noutput : list = [-30, 12, 30, -24, 18]",
    "output": "generated_output : list = mul_n(mul_n(reverse([-3, 4, -5, -2, 5]),2),-3)",
    "io_inp": [
      -3,
      4,
      -5,
      -2,
      5
    ],
    "io_out": [
      -30,
      12,
      30,
      -24,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),2),-3)"
  },
  {
    "input": "input : list = [-2, -4, 3, 3]\noutput : list = [3, 3, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([-2, -4, 3, 3]))",
    "io_inp": [
      -2,
      -4,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [0, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(sort_des([-4, 5]),4))))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-3, 0, -1, -5, -2]\noutput : list = [5, 7, 8, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(reverse([-3, 0, -1, -5, -2])),-5),5))",
    "io_inp": [
      -3,
      0,
      -1,
      -5,
      -2
    ],
    "io_out": [
      5,
      7,
      8,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(reverse(input)),-5),5))"
  },
  {
    "input": "input : list = [2, -2, -1]\noutput : list = [-10, 30, 20]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(mul_n([2, -2, -1],2),1),-1),14),-5)",
    "io_inp": [
      2,
      -2,
      -1
    ],
    "io_out": [
      -10,
      30,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(mul_n(input,2),1),-1),14),-5)"
  },
  {
    "input": "input : list = [-1, 3, -3]\noutput : list = [0, 4, -2]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-1, 3, -3],-2),3),4)",
    "io_inp": [
      -1,
      3,
      -3
    ],
    "io_out": [
      0,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-2),3),4)"
  },
  {
    "input": "input : list = [-5, -3, 5, 0, -4]\noutput : list = [-66]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(take([-5, -3, 5, 0, -4],1),9),-5),-3),-3)",
    "io_inp": [
      -5,
      -3,
      5,
      0,
      -4
    ],
    "io_out": [
      -66
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(take(input,1),9),-5),-3),-3)"
  },
  {
    "input": "input : list = [-4, 4, 4, 5, 2]\noutput : list = [-7, -1, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(add_n([-4, 4, 4, 5, 2],-1),2))))",
    "io_inp": [
      -4,
      4,
      4,
      5,
      2
    ],
    "io_out": [
      -7,
      -1,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(add_n(input,-1),2))))"
  },
  {
    "input": "input : list = [-5, 0, 0]\noutput : list = [-8, -8, 22]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(mul_n([-5, 0, 0],3)),4),4),-2)",
    "io_inp": [
      -5,
      0,
      0
    ],
    "io_out": [
      -8,
      -8,
      22
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(mul_n(input,3)),4),4),-2)"
  },
  {
    "input": "input : list = [4, 1, 0]\noutput : list = [4, 5, 8]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(sub_n([4, 1, 0],-2))),2))",
    "io_inp": [
      4,
      1,
      0
    ],
    "io_out": [
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(sub_n(input,-2))),2))"
  },
  {
    "input": "input : list = [-3, 1, 5, 4]\noutput : list = [-32, -40, -8, 24]",
    "output": "generated_output : list = mul_n(reverse(reverse(mul_n(reverse([-3, 1, 5, 4]),2))),-4)",
    "io_inp": [
      -3,
      1,
      5,
      4
    ],
    "io_out": [
      -32,
      -40,
      -8,
      24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(mul_n(reverse(input),2))),-4)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [25, 25, -20]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_asc([5, 5, -4])))),5)",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      25,
      25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(sort_asc(input)))),5)"
  },
  {
    "input": "input : list = [-2, 1, -2, -1]\noutput : list = [20, -10, 20, 10]",
    "output": "generated_output : list = mul_n(mul_n([-2, 1, -2, -1],2),-5)",
    "io_inp": [
      -2,
      1,
      -2,
      -1
    ],
    "io_out": [
      20,
      -10,
      20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),-5)"
  },
  {
    "input": "input : list = [-2, -1, 2, 2]\noutput : list = [2, 2, -1, -2]",
    "output": "generated_output : list = sort_des([-2, -1, 2, 2])",
    "io_inp": [
      -2,
      -1,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, -5, -3]\noutput : list = [60, 36]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(drop([4, -1, -5, -3],2),-4)),3)",
    "io_inp": [
      4,
      -1,
      -5,
      -3
    ],
    "io_out": [
      60,
      36
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(drop(input,2),-4)),3)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sort_des([-2, 1])),-1)),-1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sort_des(input)),-1)),-1)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = sort_asc([2, 2, -3])",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, 3, 0, 1, 5]\noutput : list = [-1, 4, 2, -1, 0, 4]",
    "output": "generated_output : list = take(add_n(sub_n([0, 5, 3, 0, 1, 5],-3),-4),21)",
    "io_inp": [
      0,
      5,
      3,
      0,
      1,
      5
    ],
    "io_out": [
      -1,
      4,
      2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,-3),-4),21)"
  },
  {
    "input": "input : list = [-1, -3, 5, 0, -2, -2]\noutput : list = [5, 2, 2, -1, -4, -19]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([-1, -3, 5, 0, -2, -2]),-3),-4)",
    "io_inp": [
      -1,
      -3,
      5,
      0,
      -2,
      -2
    ],
    "io_out": [
      5,
      2,
      2,
      -1,
      -4,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),-3),-4)"
  },
  {
    "input": "input : list = [2, 5, 5, 2, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(take([2, 5, 5, 2, 5],2),3),-5),-2),1)",
    "io_inp": [
      2,
      5,
      5,
      2,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(take(input,2),3),-5),-2),1)"
  },
  {
    "input": "input : list = [-4, -2, 5, 4, 1, 3]\noutput : list = [-24, -27]",
    "output": "generated_output : list = mul_n(drop(add_n(sort_asc(sub_n([-4, -2, 5, 4, 1, 3],-5)),-1),4),-3)",
    "io_inp": [
      -4,
      -2,
      5,
      4,
      1,
      3
    ],
    "io_out": [
      -24,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(sort_asc(sub_n(input,-5)),-1),4),-3)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [-17, -13, -1]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(reverse([5, 1, 4])),4),3),-1)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      -17,
      -13,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(reverse(input)),4),3),-1)"
  },
  {
    "input": "input : list = [-2, 4, 2, 1, -4]\noutput : list = [6, 4, -6]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(drop([-2, 4, 2, 1, -4],2),1)),2))",
    "io_inp": [
      -2,
      4,
      2,
      1,
      -4
    ],
    "io_out": [
      6,
      4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(drop(input,2),1)),2))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-6, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n([-3, 2],3)),-4),1))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n(input,3)),-4),1))"
  },
  {
    "input": "input : list = [4, -5, -3, 3, 2, 5]\noutput : list = [-48, -38, -28, -18, 32, 52]",
    "output": "generated_output : list = add_n(sub_n(mul_n(mul_n(sort_des([4, -5, -3, 3, 2, 5]),-2),5),-1),1)",
    "io_inp": [
      4,
      -5,
      -3,
      3,
      2,
      5
    ],
    "io_out": [
      -48,
      -38,
      -28,
      -18,
      32,
      52
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(mul_n(sort_des(input),-2),5),-1),1)"
  },
  {
    "input": "input : list = [5, -3, -4, -4, 2, -1]\noutput : list = [2, -1, -4, -6, -7, -7]",
    "output": "generated_output : list = reverse(take(take(sort_asc(sub_n([5, -3, -4, -4, 2, -1],3)),9),27))",
    "io_inp": [
      5,
      -3,
      -4,
      -4,
      2,
      -1
    ],
    "io_out": [
      2,
      -1,
      -4,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(sub_n(input,3)),9),27))"
  },
  {
    "input": "input : list = [-3, 2, 1, 5, -3, 0]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(reverse(add_n(drop(sub_n([-3, 2, 1, 5, -3, 0],5),5),-4)),-5)",
    "io_inp": [
      -3,
      2,
      1,
      5,
      -3,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(drop(sub_n(input,5),5),-4)),-5)"
  },
  {
    "input": "input : list = [-4, 2, -2, 5, -3]\noutput : list = [-7, -10, -14, -15, -16]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(sub_n([-4, 2, -2, 5, -3],5),11),-4)),-3)",
    "io_inp": [
      -4,
      2,
      -2,
      5,
      -3
    ],
    "io_out": [
      -7,
      -10,
      -14,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(sub_n(input,5),11),-4)),-3)"
  },
  {
    "input": "input : list = [-3, -1, -3, 1]\noutput : list = [-15, -5, -15, 5]",
    "output": "generated_output : list = mul_n([-3, -1, -3, 1],5)",
    "io_inp": [
      -3,
      -1,
      -3,
      1
    ],
    "io_out": [
      -15,
      -5,
      -15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, -5, 5, 3, 5]\noutput : list = [4, 4, 4, 2, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(reverse(sub_n([5, -5, 5, 3, 5],5)))),-4)",
    "io_inp": [
      5,
      -5,
      5,
      3,
      5
    ],
    "io_out": [
      4,
      4,
      4,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(reverse(sub_n(input,5)))),-4)"
  },
  {
    "input": "input : list = [1, 3, -3, -5]\noutput : list = [35, 45, 15, 5]",
    "output": "generated_output : list = mul_n(sub_n(sub_n([1, 3, -3, -5],-4),-2),5)",
    "io_inp": [
      1,
      3,
      -3,
      -5
    ],
    "io_out": [
      35,
      45,
      15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(input,-4),-2),5)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [0, 20]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_asc([-4, 0])))),-5)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(sort_asc(input)))),-5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des([2, 3]))))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [4, 5, -1]\noutput : list = [5, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sort_asc([4, 5, -1]))),-5))",
    "io_inp": [
      4,
      5,
      -1
    ],
    "io_out": [
      5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(reverse([3, 2, 2]),1),5)),-4)",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(reverse(input),1),5)),-4)"
  },
  {
    "input": "input : list = [2, -3, 2, -4, 0]\noutput : list = [-6, -5, -2, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(reverse([2, -3, 2, -4, 0]),-2))))",
    "io_inp": [
      2,
      -3,
      2,
      -4,
      0
    ],
    "io_out": [
      -6,
      -5,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [5, 5, 2, 0, 2]\noutput : list = [-20, -20, -8]",
    "output": "generated_output : list = mul_n(take([5, 5, 2, 0, 2],3),-4)",
    "io_inp": [
      5,
      5,
      2,
      0,
      2
    ],
    "io_out": [
      -20,
      -20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-4)"
  },
  {
    "input": "input : list = [5, 0, -5, 5, 4, -4]\noutput : list = [-41, -41, -32, 4, 40, 49]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(mul_n([5, 0, -5, 5, 4, -4],3),12),-3)),-4)",
    "io_inp": [
      5,
      0,
      -5,
      5,
      4,
      -4
    ],
    "io_out": [
      -41,
      -41,
      -32,
      4,
      40,
      49
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(mul_n(input,3),12),-3)),-4)"
  },
  {
    "input": "input : list = [-4, 5, 3, -4, 2, -3]\noutput : list = [60, -75, -45, 60]",
    "output": "generated_output : list = mul_n(mul_n(take([-4, 5, 3, -4, 2, -3],4),3),-5)",
    "io_inp": [
      -4,
      5,
      3,
      -4,
      2,
      -3
    ],
    "io_out": [
      60,
      -75,
      -45,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,4),3),-5)"
  },
  {
    "input": "input : list = [-1, 3, 0, 1, 2, -5]\noutput : list = [-8, -4, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([-1, 3, 0, 1, 2, -5]),-3))",
    "io_inp": [
      -1,
      3,
      0,
      1,
      2,
      -5
    ],
    "io_out": [
      -8,
      -4,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),-3))"
  },
  {
    "input": "input : list = [2, -3, 2, 3, -4, -1]\noutput : list = [4, 2, 2, -4, -8, -10]",
    "output": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_des([2, -3, 2, 3, -4, -1])),2)),-2)",
    "io_inp": [
      2,
      -3,
      2,
      3,
      -4,
      -1
    ],
    "io_out": [
      4,
      2,
      2,
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(reverse(sort_des(input)),2)),-2)"
  },
  {
    "input": "input : list = [4, 4, 1, -2, -4]\noutput : list = [-6, -4, -1, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(add_n([4, 4, 1, -2, -4],4),-5),-2)),3)",
    "io_inp": [
      4,
      4,
      1,
      -2,
      -4
    ],
    "io_out": [
      -6,
      -4,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(add_n(input,4),-5),-2)),3)"
  },
  {
    "input": "input : list = [5, 5, 1, -2, 4, -5]\noutput : list = [-9, -9, -8, -5, -2, 1]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(add_n([5, 5, 1, -2, 4, -5],-1)),5),-1))",
    "io_inp": [
      5,
      5,
      1,
      -2,
      4,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -8,
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(add_n(input,-1)),5),-1))"
  },
  {
    "input": "input : list = [-2, 1, -2, 4, -3]\noutput : list = [-6, -3, -6, 0, -7]",
    "output": "generated_output : list = add_n([-2, 1, -2, 4, -3],-4)",
    "io_inp": [
      -2,
      1,
      -2,
      4,
      -3
    ],
    "io_out": [
      -6,
      -3,
      -6,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, -5, 5, 1, -4]\noutput : list = [6, 4, 14, 10, 5]",
    "output": "generated_output : list = add_n(sub_n([-3, -5, 5, 1, -4],-5),4)",
    "io_inp": [
      -3,
      -5,
      5,
      1,
      -4
    ],
    "io_out": [
      6,
      4,
      14,
      10,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-5),4)"
  },
  {
    "input": "input : list = [4, 3, 1, 2, -1, 4]\noutput : list = [-10, -8, -7, -6, -5, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_des(add_n([4, 3, 1, 2, -1, 4],-4))),1),-4)",
    "io_inp": [
      4,
      3,
      1,
      2,
      -1,
      4
    ],
    "io_out": [
      -10,
      -8,
      -7,
      -6,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_des(add_n(input,-4))),1),-4)"
  },
  {
    "input": "input : list = [0, 3, 0, 1, 0]\noutput : list = [-1, -3, -4, -4, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n(sort_des([0, 3, 0, 1, 0]),-3)),1))",
    "io_inp": [
      0,
      3,
      0,
      1,
      0
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(sort_des(input),-3)),1))"
  },
  {
    "input": "input : list = [-2, -5, 1, -4]\noutput : list = [-5, -4, -2, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(sort_asc([-2, -5, 1, -4]),22),3),-3))",
    "io_inp": [
      -2,
      -5,
      1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(sort_asc(input),22),3),-3))"
  },
  {
    "input": "input : list = [0, -4, 5, -2, 2]\noutput : list = [-9, -7, -5, -3, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(add_n([0, -4, 5, -2, 2],-4),13))),1)",
    "io_inp": [
      0,
      -4,
      5,
      -2,
      2
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(add_n(input,-4),13))),1)"
  },
  {
    "input": "input : list = [-3, 2, -5, 4]\noutput : list = [15, 9, -6, -12]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(mul_n([-3, 2, -5, 4],-3)))),27)",
    "io_inp": [
      -3,
      2,
      -5,
      4
    ],
    "io_out": [
      15,
      9,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(mul_n(input,-3)))),27)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n(take(reverse(take(sort_des([0, 1]),5)),4),-1)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sort_des(input),5)),4),-1)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [8, 2]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(sub_n([-1, 5],-2),-2),-4),-5))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(sub_n(input,-2),-2),-4),-5))"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [5, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, 5])",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, 3, 3, -3]\noutput : list = [-3, -3, 2, 2, -4]",
    "output": "generated_output : list = sub_n([-2, -2, 3, 3, -3],1)",
    "io_inp": [
      -2,
      -2,
      3,
      3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, -1, -1, -2, -1, 2]\noutput : list = [-1, 0, 0, 0, 1, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(add_n(sort_asc([0, -1, -1, -2, -1, 2]),-2)),2),-1)",
    "io_inp": [
      0,
      -1,
      -1,
      -2,
      -1,
      2
    ],
    "io_out": [
      -1,
      0,
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(add_n(sort_asc(input),-2)),2),-1)"
  },
  {
    "input": "input : list = [-3, -5, -1, 2, -4, -2]\noutput : list = [-5, -4, -3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(reverse([-3, -5, -1, 2, -4, -2])),-1),1))",
    "io_inp": [
      -3,
      -5,
      -1,
      2,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(reverse(input)),-1),1))"
  },
  {
    "input": "input : list = [2, 1, 1]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n(add_n(reverse([2, 1, 1]),3),5))",
    "io_inp": [
      2,
      1,
      1
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(reverse(input),3),5))"
  },
  {
    "input": "input : list = [-3, -2, 3, -5, -3, -1]\noutput : list = [-4, -6, -8, 0, -5, -6]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(sub_n([-3, -2, 3, -5, -3, -1],5),-2),3),3))",
    "io_inp": [
      -3,
      -2,
      3,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -6,
      -8,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(sub_n(input,5),-2),3),3))"
  },
  {
    "input": "input : list = [4, -1, -2, 3]\noutput : list = [-2, -3, -7, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sub_n([4, -1, -2, 3],1),-5))))",
    "io_inp": [
      4,
      -1,
      -2,
      3
    ],
    "io_out": [
      -2,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sub_n(input,1),-5))))"
  },
  {
    "input": "input : list = [-4, -2, 4, 5]\noutput : list = [-4]",
    "output": "generated_output : list = drop(drop(sort_des(reverse([-4, -2, 4, 5])),1),2)",
    "io_inp": [
      -4,
      -2,
      4,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(drop(sort_des(reverse(input)),1),2)"
  },
  {
    "input": "input : list = [-5, 4, -3]\noutput : list = [3, -15, -1]",
    "output": "generated_output : list = mul_n(take(add_n(mul_n(add_n([-5, 4, -3],5),-2),3),20),1)",
    "io_inp": [
      -5,
      4,
      -3
    ],
    "io_out": [
      3,
      -15,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(mul_n(add_n(input,5),-2),3),20),1)"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = take(add_n(take(add_n(sort_asc([2, 1, 4]),-3),8),3),40)",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(sort_asc(input),-3),8),3),40)"
  },
  {
    "input": "input : list = [-2, 3, 4, 1]\noutput : list = [4, 7, 6, 1]",
    "output": "generated_output : list = reverse(add_n(take(add_n(add_n([-2, 3, 4, 1],1),-1),15),3))",
    "io_inp": [
      -2,
      3,
      4,
      1
    ],
    "io_out": [
      4,
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(add_n(input,1),-1),15),3))"
  },
  {
    "input": "input : list = [3, -3, 4, -5]\noutput : list = [9, 5, -19, -27]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(mul_n([3, -3, 4, -5],4),-4))),-3)",
    "io_inp": [
      3,
      -3,
      4,
      -5
    ],
    "io_out": [
      9,
      5,
      -19,
      -27
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(mul_n(input,4),-4))),-3)"
  },
  {
    "input": "input : list = [1, 4, -4, -5]\noutput : list = [1, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(take([1, 4, -4, -5],2)))),25)",
    "io_inp": [
      1,
      4,
      -4,
      -5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(take(input,2)))),25)"
  },
  {
    "input": "input : list = [-3, -5, 5, 0, 0]\noutput : list = [0, 0, 5, -5, -3]",
    "output": "generated_output : list = reverse([-3, -5, 5, 0, 0])",
    "io_inp": [
      -3,
      -5,
      5,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, -2, 4, -3]\noutput : list = [-2, -3, -4, -9, -10]",
    "output": "generated_output : list = sort_des(reverse(reverse(add_n(sub_n([3, 5, -2, 4, -3],3),-4))))",
    "io_inp": [
      3,
      5,
      -2,
      4,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(add_n(sub_n(input,3),-4))))"
  },
  {
    "input": "input : list = [-5, -2, -4, 3]\noutput : list = [3, -4, -2, -5]",
    "output": "generated_output : list = reverse([-5, -2, -4, 3])",
    "io_inp": [
      -5,
      -2,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-90, -105]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(add_n([-1, 0],4),3),5),-3),26)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -90,
      -105
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(add_n(input,4),3),5),-3),26)"
  },
  {
    "input": "input : list = [5, 2, -4, 4, 5, -5]\noutput : list = [-11, -10, -4, -2, -1, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(sort_asc([5, 2, -4, 4, 5, -5])),2),-5),-1)",
    "io_inp": [
      5,
      2,
      -4,
      4,
      5,
      -5
    ],
    "io_out": [
      -11,
      -10,
      -4,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(sort_asc(input)),2),-5),-1)"
  },
  {
    "input": "input : list = [1, 0, -1, -3, 2]\noutput : list = [-3, -1, 0, 1, 2]",
    "output": "generated_output : list = reverse(take(sort_des([1, 0, -1, -3, 2]),22))",
    "io_inp": [
      1,
      0,
      -1,
      -3,
      2
    ],
    "io_out": [
      -3,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(input),22))"
  },
  {
    "input": "input : list = [5, -5, -4, 1, 5, 0]\noutput : list = [-5, -4, 0, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([5, -5, -4, 1, 5, 0])",
    "io_inp": [
      5,
      -5,
      -4,
      1,
      5,
      0
    ],
    "io_out": [
      -5,
      -4,
      0,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc([-3, 2])",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [10]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(take([5, 2, -3],1),2),12)))",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(take(input,1),2),12)))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n([3, 2],5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 1, -2, -1, 0, 1]\noutput : list = [8, 4, 4, 3, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n([5, 1, -2, -1, 0, 1],-2)),25),-1))",
    "io_inp": [
      5,
      1,
      -2,
      -1,
      0,
      1
    ],
    "io_out": [
      8,
      4,
      4,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(sub_n(input,-2)),25),-1))"
  },
  {
    "input": "input : list = [1, -1, -3, 3, -5, -1]\noutput : list = [9, -9, -27, 27, -45, -9]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(reverse([1, -1, -3, 3, -5, -1])),3),39),3)",
    "io_inp": [
      1,
      -1,
      -3,
      3,
      -5,
      -1
    ],
    "io_out": [
      9,
      -9,
      -27,
      27,
      -45,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(reverse(input)),3),39),3)"
  },
  {
    "input": "input : list = [5, -4, 2, -2, -3]\noutput : list = [-80, 100]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take([5, -4, 2, -2, -3],2),4)),5)",
    "io_inp": [
      5,
      -4,
      2,
      -2,
      -3
    ],
    "io_out": [
      -80,
      100
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(input,2),4)),5)"
  },
  {
    "input": "input : list = [0, -1, -3, -3, -2]\noutput : list = [-1, -2, -3, -4, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_asc([0, -1, -3, -3, -2])),1)",
    "io_inp": [
      0,
      -1,
      -3,
      -3,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [2, 5, 1]\noutput : list = [-32, -20, -16]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(add_n([2, 5, 1],3),-4))),3)",
    "io_inp": [
      2,
      5,
      1
    ],
    "io_out": [
      -32,
      -20,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(add_n(input,3),-4))),3)"
  },
  {
    "input": "input : list = [5, -1, -5, 0, -3]\noutput : list = [4, 1]",
    "output": "generated_output : list = take(sub_n(drop([5, -1, -5, 0, -3],3),-4),30)",
    "io_inp": [
      5,
      -1,
      -5,
      0,
      -3
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,3),-4),30)"
  },
  {
    "input": "input : list = [-2, -4, -3, 4]\noutput : list = [4, -2, -3, -4]",
    "output": "generated_output : list = sort_des([-2, -4, -3, 4])",
    "io_inp": [
      -2,
      -4,
      -3,
      4
    ],
    "io_out": [
      4,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, 5, -3]\noutput : list = [-4, 5, 5, -3]",
    "output": "generated_output : list = take(take(reverse(take(reverse([-4, 5, 5, -3]),9)),11),28)",
    "io_inp": [
      -4,
      5,
      5,
      -3
    ],
    "io_out": [
      -4,
      5,
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(reverse(input),9)),11),28)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sort_asc([3, 2])",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4, 4, -1, 0]\noutput : list = [-11, -19]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(add_n([-2, -4, 4, -1, 0],2),2),-2),4),3)",
    "io_inp": [
      -2,
      -4,
      4,
      -1,
      0
    ],
    "io_out": [
      -11,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(add_n(input,2),2),-2),4),3)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sub_n([-5, -1],1)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [0, 4, 0, 5, 2]\noutput : list = [5, 4, 2, 0, 0]",
    "output": "generated_output : list = reverse(sort_asc([0, 4, 0, 5, 2]))",
    "io_inp": [
      0,
      4,
      0,
      5,
      2
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 5, 5, 2, 0]\noutput : list = [26, 20, 8, -10, -10]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(add_n([-1, 5, 5, 2, 0],-5),-3),-5)),2)",
    "io_inp": [
      -1,
      5,
      5,
      2,
      0
    ],
    "io_out": [
      26,
      20,
      8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(add_n(input,-5),-3),-5)),2)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [6, 8]",
    "output": "generated_output : list = add_n(reverse([5, 3]),3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(add_n([1, 4],2),3)),5))",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(add_n(input,2),3)),5))"
  },
  {
    "input": "input : list = [1, -4, 3, 0, -3]\noutput : list = [-3]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(take([1, -4, 3, 0, -3],1),2),5)),37)",
    "io_inp": [
      1,
      -4,
      3,
      0,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(take(input,1),2),5)),37)"
  },
  {
    "input": "input : list = [-4, 4, 3, -2]\noutput : list = [-32, -28, -8, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sub_n([-4, 4, 3, -2],-4),-4))))",
    "io_inp": [
      -4,
      4,
      3,
      -2
    ],
    "io_out": [
      -32,
      -28,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(mul_n(sub_n(input,-4),-4))))"
  },
  {
    "input": "input : list = [-2, -1, 2, 1, 3]\noutput : list = [5, 4, 3, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n([-2, -1, 2, 1, 3],-2))",
    "io_inp": [
      -2,
      -1,
      2,
      1,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [1, -5, -5, -5, 5]\noutput : list = [1, -5, -5]",
    "output": "generated_output : list = take([1, -5, -5, -5, 5],3)",
    "io_inp": [
      1,
      -5,
      -5,
      -5,
      5
    ],
    "io_out": [
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, 3, 0]\noutput : list = [-10, 6, 0]",
    "output": "generated_output : list = add_n(add_n(take(add_n(mul_n([-5, 3, 0],2),5),25),-2),-3)",
    "io_inp": [
      -5,
      3,
      0
    ],
    "io_out": [
      -10,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(mul_n(input,2),5),25),-2),-3)"
  },
  {
    "input": "input : list = [2, -5, 3, -3]\noutput : list = [1, 0, -5, -7]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(sort_asc([2, -5, 3, -3])),2)))",
    "io_inp": [
      2,
      -5,
      3,
      -3
    ],
    "io_out": [
      1,
      0,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [-9, -21, -13]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n(reverse([-2, -4, -1]),4),-5),1),6)",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -21,
      -13
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(reverse(input),4),-5),1),6)"
  },
  {
    "input": "input : list = [-2, 1, -5, 1, 4]\noutput : list = [4, 1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(drop([-2, 1, -5, 1, 4],2)),22)))",
    "io_inp": [
      -2,
      1,
      -5,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(drop(input,2)),22)))"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(sort_des([-3, -5]),-4))),2)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(sort_des(input),-4))),2)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [0, 3]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(sort_des([-1, 2])),16)),1)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(sort_des(input)),16)),1)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [90, 30]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-3, -1],-2),-5),-3)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      90,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-2),-5),-3)"
  },
  {
    "input": "input : list = [-5, -3, -5]\noutput : list = [2, 2, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(reverse([-5, -3, -5])),-4)),-2)",
    "io_inp": [
      -5,
      -3,
      -5
    ],
    "io_out": [
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(reverse(input)),-4)),-2)"
  },
  {
    "input": "input : list = [-3, -5, -3, -1]\noutput : list = [-245, -145, -145, -45]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(mul_n([-3, -5, -3, -1],2),5),5)),-5)",
    "io_inp": [
      -3,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -245,
      -145,
      -145,
      -45
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(mul_n(mul_n(input,2),5),5)),-5)"
  },
  {
    "input": "input : list = [1, 0, -2, -4, 5]\noutput : list = [2, 4, 5, 9]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse(add_n([1, 0, -2, -4, 5],4))),4))",
    "io_inp": [
      1,
      0,
      -2,
      -4,
      5
    ],
    "io_out": [
      2,
      4,
      5,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(add_n(input,4))),4))"
  },
  {
    "input": "input : list = [-4, 5, 0, 0, 0]\noutput : list = [5, 0, 0, 0, -4]",
    "output": "generated_output : list = take(sort_des([-4, 5, 0, 0, 0]),16)",
    "io_inp": [
      -4,
      5,
      0,
      0,
      0
    ],
    "io_out": [
      5,
      0,
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),16)"
  },
  {
    "input": "input : list = [4, 2, 0]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(mul_n([4, 2, 0],-1),12)),1),-1)",
    "io_inp": [
      4,
      2,
      0
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(mul_n(input,-1),12)),1),-1)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des([-1, -4]))))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(input))))"
  },
  {
    "input": "input : list = [-1, -3, -4, 2]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(drop(sub_n(sub_n(drop([-1, -3, -4, 2],1),1),4),2),-2)",
    "io_inp": [
      -1,
      -3,
      -4,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(sub_n(sub_n(drop(input,1),1),4),2),-2)"
  },
  {
    "input": "input : list = [0, 0, -3]\noutput : list = [0, 0, 15]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(mul_n([0, 0, -3],-5))),12))",
    "io_inp": [
      0,
      0,
      -3
    ],
    "io_out": [
      0,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(mul_n(input,-5))),12))"
  },
  {
    "input": "input : list = [-4, -3, -2, 3]\noutput : list = [7, 2, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(add_n([-4, -3, -2, 3],1),16))),-3)",
    "io_inp": [
      -4,
      -3,
      -2,
      3
    ],
    "io_out": [
      7,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(add_n(input,1),16))),-3)"
  },
  {
    "input": "input : list = [-2, -4, -5, 0]\noutput : list = [-4, -5, 0]",
    "output": "generated_output : list = add_n(take(sub_n(drop([-2, -4, -5, 0],1),-3),15),-3)",
    "io_inp": [
      -2,
      -4,
      -5,
      0
    ],
    "io_out": [
      -4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(drop(input,1),-3),15),-3)"
  },
  {
    "input": "input : list = [-1, -4, -2]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(take([-1, -4, -2],1))),22))",
    "io_inp": [
      -1,
      -4,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(take(input,1))),22))"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sub_n(take(drop([5, 2, 4],1),8),1))",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(drop(input,1),8),1))"
  },
  {
    "input": "input : list = [-5, -2, 4, 2]\noutput : list = [15, 6, -12, -6]",
    "output": "generated_output : list = mul_n([-5, -2, 4, 2],-3)",
    "io_inp": [
      -5,
      -2,
      4,
      2
    ],
    "io_out": [
      15,
      6,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, -2, -4, -3, -2]\noutput : list = [-4, -3, -2, -2, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_des([2, -2, -4, -3, -2])))))",
    "io_inp": [
      2,
      -2,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(take([-3, 4, -1],1)))))",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [-3, -3, -5, -3, -5, -3]\noutput : list = [-4, -4, -4, -4, -6, -6]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse([-3, -3, -5, -3, -5, -3]))),-1)",
    "io_inp": [
      -3,
      -3,
      -5,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(input))),-1)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [7, 16]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-5, 4],-4),5),-3)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      7,
      16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-4),5),-3)"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [1]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take([1, -4, -5],1),1),1),-1)",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(input,1),1),1),-1)"
  },
  {
    "input": "input : list = [-5, -2, 5, 3, 0]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(take(sort_des([-5, -2, 5, 3, 0]),3),-5)),-1)",
    "io_inp": [
      -5,
      -2,
      5,
      3,
      0
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(take(sort_des(input),3),-5)),-1)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [3, 1]",
    "output": "generated_output : list = take(reverse(sub_n(sort_asc(sort_asc([4, 2])),1)),16)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sort_asc(sort_asc(input)),1)),16)"
  },
  {
    "input": "input : list = [-1, 5, 2, 2]\noutput : list = [1, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(reverse([-1, 5, 2, 2]),-1))))",
    "io_inp": [
      -1,
      5,
      2,
      2
    ],
    "io_out": [
      1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-4, -5, 2, -5, -5, 4]\noutput : list = [-10, -10, -10, -9, -3, -1]",
    "output": "generated_output : list = sub_n(sort_asc([-4, -5, 2, -5, -5, 4]),5)",
    "io_inp": [
      -4,
      -5,
      2,
      -5,
      -5,
      4
    ],
    "io_out": [
      -10,
      -10,
      -10,
      -9,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [6, 0, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_des([5, -3, 0]),-2)),1))",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      6,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(sort_des(input),-2)),1))"
  },
  {
    "input": "input : list = [2, 3, 4, 1, -1]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sort_des(take([2, 3, 4, 1, -1],3))",
    "io_inp": [
      2,
      3,
      4,
      1,
      -1
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [5, -1, -5, 5, 3]\noutput : list = [5, 3, -1, -5]",
    "output": "generated_output : list = sort_des(drop([5, -1, -5, 5, 3],1))",
    "io_inp": [
      5,
      -1,
      -5,
      5,
      3
    ],
    "io_out": [
      5,
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [5, 1, 2]\noutput : list = [-51, -21, -11]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(mul_n([5, 1, 2],2)),1),-5),-4)",
    "io_inp": [
      5,
      1,
      2
    ],
    "io_out": [
      -51,
      -21,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(mul_n(input,2)),1),-5),-4)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-7, -6]",
    "output": "generated_output : list = add_n([-4, -3],-3)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 2, 3, -1, 4]\noutput : list = [9, 5, -7, -11, -15]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(sub_n([-2, 2, 3, -1, 4],-4),3)),-4),5)",
    "io_inp": [
      -2,
      2,
      3,
      -1,
      4
    ],
    "io_out": [
      9,
      5,
      -7,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(sub_n(input,-4),3)),-4),5)"
  },
  {
    "input": "input : list = [-2, -2, 2, 4, -4]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(sub_n([-2, -2, 2, 4, -4],-5),4),1)),-5)",
    "io_inp": [
      -2,
      -2,
      2,
      4,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(sub_n(input,-5),4),1)),-5)"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [50, -20, -20]",
    "output": "generated_output : list = mul_n(mul_n([5, -2, -2],2),5)",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      50,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),5)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [6, 6]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_asc([-1, -1])),2)),-2)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_asc(input)),2)),-2)"
  },
  {
    "input": "input : list = [5, -4, -2, -3, -3]\noutput : list = [8, 1, 0, 0, -1]",
    "output": "generated_output : list = add_n(take(sort_des([5, -4, -2, -3, -3]),23),3)",
    "io_inp": [
      5,
      -4,
      -2,
      -3,
      -3
    ],
    "io_out": [
      8,
      1,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),23),3)"
  },
  {
    "input": "input : list = [3, -4, -1, -1, 1, -1]\noutput : list = [10, 0, -10, -10, -10, -25]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(add_n([3, -4, -1, -1, 1, -1],-1),5),1)))",
    "io_inp": [
      3,
      -4,
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      10,
      0,
      -10,
      -10,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(add_n(input,-1),5),1)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [5, -4]",
    "output": "generated_output : list = add_n([4, -5],1)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, 1, 0, 3]\noutput : list = [0, -3, -2, 0]",
    "output": "generated_output : list = reverse(take(sub_n(take(sub_n([3, 1, 0, 3],-2),11),5),34))",
    "io_inp": [
      3,
      1,
      0,
      3
    ],
    "io_out": [
      0,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(sub_n(input,-2),11),5),34))"
  },
  {
    "input": "input : list = [-1, 1, -1]\noutput : list = [8, 0, 8]",
    "output": "generated_output : list = mul_n(sub_n(add_n([-1, 1, -1],-5),-4),-4)",
    "io_inp": [
      -1,
      1,
      -1
    ],
    "io_out": [
      8,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,-5),-4),-4)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-30, -30]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(sub_n([-5, -5],-4),5),-1),5),-5)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(sub_n(input,-4),5),-1),5),-5)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-30, -25]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des([1, 0])),5),-5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -30,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(input)),5),-5)"
  },
  {
    "input": "input : list = [1, -5, -5, -3]\noutput : list = [-2, -2, 0, 4]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(sort_des([1, -5, -5, -3])),15)),3)",
    "io_inp": [
      1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(sort_des(input)),15)),3)"
  },
  {
    "input": "input : list = [-4, -3, 2, -1, 4]\noutput : list = [-45, -36, 9, -18, 27]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(add_n([-4, -3, 2, -1, 4],4),5),-3),-3),18)",
    "io_inp": [
      -4,
      -3,
      2,
      -1,
      4
    ],
    "io_out": [
      -45,
      -36,
      9,
      -18,
      27
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(add_n(input,4),5),-3),-3),18)"
  },
  {
    "input": "input : list = [-3, -4, 0, 2, -5, -1]\noutput : list = [8, 6, 5, 3, 2, 1]",
    "output": "generated_output : list = sort_des(add_n(add_n([-3, -4, 0, 2, -5, -1],3),3))",
    "io_inp": [
      -3,
      -4,
      0,
      2,
      -5,
      -1
    ],
    "io_out": [
      8,
      6,
      5,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,3),3))"
  },
  {
    "input": "input : list = [5, -1, 5, -1, 4]\noutput : list = [-1, -1, -2, -7, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(add_n(sort_asc([5, -1, 5, -1, 4]),-4))),2)",
    "io_inp": [
      5,
      -1,
      5,
      -1,
      4
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(add_n(sort_asc(input),-4))),2)"
  },
  {
    "input": "input : list = [-1, -2, -2, 3, -1, -2]\noutput : list = [2, 1, 1, 6, 2, 1]",
    "output": "generated_output : list = sub_n([-1, -2, -2, 3, -1, -2],-3)",
    "io_inp": [
      -1,
      -2,
      -2,
      3,
      -1,
      -2
    ],
    "io_out": [
      2,
      1,
      1,
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [5, 4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des([-4, -5]),14),-1)))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(take(sort_des(input),14),-1)))"
  },
  {
    "input": "input : list = [3, 3, 5]\noutput : list = [29, 19, 19]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(mul_n([3, 3, 5],5)))),4)",
    "io_inp": [
      3,
      3,
      5
    ],
    "io_out": [
      29,
      19,
      19
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(mul_n(input,5)))),4)"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(reverse(take([-2, 1, -5],1)),1)",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,1)),1)"
  },
  {
    "input": "input : list = [2, 5, -1, -2]\noutput : list = [8, 5, 2, 1]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(sort_des([2, 5, -1, -2])),-3)))",
    "io_inp": [
      2,
      5,
      -1,
      -2
    ],
    "io_out": [
      8,
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_asc(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [-2, -4, 2, 2, -2]\noutput : list = [-6, -2, -2, 6, 6]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n([-2, -4, 2, 2, -2],2),3),1))",
    "io_inp": [
      -2,
      -4,
      2,
      2,
      -2
    ],
    "io_out": [
      -6,
      -2,
      -2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(input,2),3),1))"
  },
  {
    "input": "input : list = [3, -4, 5, 0]\noutput : list = [9, 1, -5, -9]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n([3, -4, 5, 0],-2)),-1),1)",
    "io_inp": [
      3,
      -4,
      5,
      0
    ],
    "io_out": [
      9,
      1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(input,-2)),-1),1)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [18, -14]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(reverse([-2, 2]),11),2),4),2)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      18,
      -14
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(reverse(input),11),2),4),2)"
  },
  {
    "input": "input : list = [1, -4, 2, 3, 5]\noutput : list = [-4, 1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sort_des([1, -4, 2, 3, 5])))))",
    "io_inp": [
      1,
      -4,
      2,
      3,
      5
    ],
    "io_out": [
      -4,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 4, 3, 1]\noutput : list = [15, 12, 9, 3]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(reverse([5, 4, 3, 1])))),3)",
    "io_inp": [
      5,
      4,
      3,
      1
    ],
    "io_out": [
      15,
      12,
      9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-4, -5, 2]\noutput : list = [7, 1, 0]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sub_n([-4, -5, 2],-4))),-1),11)",
    "io_inp": [
      -4,
      -5,
      2
    ],
    "io_out": [
      7,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sub_n(input,-4))),-1),11)"
  },
  {
    "input": "input : list = [-4, -5, 0, 0, -2, -2]\noutput : list = [0, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(take([-4, -5, 0, 0, -2, -2],3)))))",
    "io_inp": [
      -4,
      -5,
      0,
      0,
      -2,
      -2
    ],
    "io_out": [
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(take(input,3)))))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse([3, -1])",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, 1, -1, -5]\noutput : list = [-14, -11, -10, -8, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(add_n(add_n([5, -2, 1, -1, -5],1),-5),-5)))",
    "io_inp": [
      5,
      -2,
      1,
      -1,
      -5
    ],
    "io_out": [
      -14,
      -11,
      -10,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(add_n(add_n(input,1),-5),-5)))"
  },
  {
    "input": "input : list = [3, 2, 2]\noutput : list = [5, 5]",
    "output": "generated_output : list = take(add_n(sub_n(drop([3, 2, 2],1),2),5),8)",
    "io_inp": [
      3,
      2,
      2
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(drop(input,1),2),5),8)"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [9, 6, 18]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(reverse([0, 4, 3]),-4),-3),-2),-4)",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      9,
      6,
      18
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(reverse(input),-4),-3),-2),-4)"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [5, 7, 5]",
    "output": "generated_output : list = add_n(reverse([1, 3, 1]),4)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      5,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-6, -6]",
    "output": "generated_output : list = reverse(sub_n(sort_des([-5, -5]),1))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [-5, 1, 2, -4, -5]\noutput : list = [6, 3, -12, -15, -15]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(mul_n([-5, 1, 2, -4, -5],3)))))",
    "io_inp": [
      -5,
      1,
      2,
      -4,
      -5
    ],
    "io_out": [
      6,
      3,
      -12,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [4, 5, 3, -2]\noutput : list = [-6, -5]",
    "output": "generated_output : list = take(mul_n(take(add_n(sort_des([4, 5, 3, -2]),1),2),-1),41)",
    "io_inp": [
      4,
      5,
      3,
      -2
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(take(add_n(sort_des(input),1),2),-1),41)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [2, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_des([-1, 5])),-3)))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [15, 15]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_asc([-5, -5]))),-3))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(sort_asc(input))),-3))"
  },
  {
    "input": "input : list = [2, 3, 4, -3]\noutput : list = [7, 8, 9, 2]",
    "output": "generated_output : list = add_n([2, 3, 4, -3],5)",
    "io_inp": [
      2,
      3,
      4,
      -3
    ],
    "io_out": [
      7,
      8,
      9,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 5, -1, 4, 0, -2]\noutput : list = [-14, -12, -11, -10, -6, -5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(add_n(sub_n([-4, 5, -1, 4, 0, -2],4),-2)),4))",
    "io_inp": [
      -4,
      5,
      -1,
      4,
      0,
      -2
    ],
    "io_out": [
      -14,
      -12,
      -11,
      -10,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(add_n(sub_n(input,4),-2)),4))"
  },
  {
    "input": "input : list = [-1, 5, -3, -1, -3, 0]\noutput : list = [-3, -3, -1, -1, 0, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(add_n([-1, 5, -3, -1, -3, 0],3),3))))",
    "io_inp": [
      -1,
      5,
      -3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -3,
      -3,
      -1,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(add_n(input,3),3))))"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [2, -6, -6]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(sub_n([1, 1, -3],-2)))),-2)",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(sub_n(input,-2)))),-2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(add_n([-1, 4],-4),2)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),2)"
  },
  {
    "input": "input : list = [-1, 1, -2, 5, 2]\noutput : list = [-5, -2, -1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(drop([-1, 1, -2, 5, 2],1)),15)),3)",
    "io_inp": [
      -1,
      1,
      -2,
      5,
      2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(drop(input,1)),15)),3)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-75, -75]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(mul_n([-5, -5],4),4),5)))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -75,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(mul_n(input,4),4),5)))"
  },
  {
    "input": "input : list = [4, 4, -2, -2, 4]\noutput : list = [1, 1, 1, -5, -5]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(reverse([4, 4, -2, -2, 4])),1)),-4)",
    "io_inp": [
      4,
      4,
      -2,
      -2,
      4
    ],
    "io_out": [
      1,
      1,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(reverse(input)),1)),-4)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = take(take(sort_des([-1, -2]),3),6)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),3),6)"
  },
  {
    "input": "input : list = [1, -4, 4, -1, 0, 2]\noutput : list = [4, 2, 1, 0, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des([1, -4, 4, -1, 0, 2])))))",
    "io_inp": [
      1,
      -4,
      4,
      -1,
      0,
      2
    ],
    "io_out": [
      4,
      2,
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sort_des([4, 5]),-2)),1))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sort_des(input),-2)),1))"
  },
  {
    "input": "input : list = [3, -1, -4, 5, 5]\noutput : list = [5, 5, 3, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sort_des([3, -1, -4, 5, 5])),1)))",
    "io_inp": [
      3,
      -1,
      -4,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [0, 5, 2, 2, 1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(reverse(take(reverse(take([0, 5, 2, 2, 1],1)),24)),-1)",
    "io_inp": [
      0,
      5,
      2,
      2,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(take(input,1)),24)),-1)"
  },
  {
    "input": "input : list = [-2, 3, 5, 0, 5, -5]\noutput : list = [-5, -2, 0, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([-2, 3, 5, 0, 5, -5])",
    "io_inp": [
      -2,
      3,
      5,
      0,
      5,
      -5
    ],
    "io_out": [
      -5,
      -2,
      0,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(add_n([-1, 1],5),-4),21),-3))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(add_n(input,5),-4),21),-3))"
  },
  {
    "input": "input : list = [-1, 4, 1, -5]\noutput : list = [16, -4]",
    "output": "generated_output : list = reverse(mul_n(take([-1, 4, 1, -5],2),4))",
    "io_inp": [
      -1,
      4,
      1,
      -5
    ],
    "io_out": [
      16,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,2),4))"
  },
  {
    "input": "input : list = [-2, 2, 2, 0, -4]\noutput : list = [-4, -2, 0, 2, 2]",
    "output": "generated_output : list = sort_asc([-2, 2, 2, 0, -4])",
    "io_inp": [
      -2,
      2,
      2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -2,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [-100, -200, -400]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(mul_n([2, 1, 4],5),5)),-4),36)",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      -100,
      -200,
      -400
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(mul_n(input,5),5)),-4),36)"
  },
  {
    "input": "input : list = [4, 3, 4, 3]\noutput : list = [-2, -2, -1, -1]",
    "output": "generated_output : list = add_n(sort_asc([4, 3, 4, 3]),-5)",
    "io_inp": [
      4,
      3,
      4,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [1, 3, 0, 3, 1]\noutput : list = [3, 3, 1, 1, 0]",
    "output": "generated_output : list = sort_des([1, 3, 0, 3, 1])",
    "io_inp": [
      1,
      3,
      0,
      3,
      1
    ],
    "io_out": [
      3,
      3,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 2, 0, 3, 3]\noutput : list = [4, 2, 2, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des([5, 2, 0, 3, 3]),1)",
    "io_inp": [
      5,
      2,
      0,
      3,
      3
    ],
    "io_out": [
      4,
      2,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-10, -25]",
    "output": "generated_output : list = sort_des(mul_n([5, 2],-5))",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-4, -4, 5, 0, 4, 1]\noutput : list = [24, 24, -12, 8, -8, 4]",
    "output": "generated_output : list = mul_n(sub_n([-4, -4, 5, 0, 4, 1],2),-4)",
    "io_inp": [
      -4,
      -4,
      5,
      0,
      4,
      1
    ],
    "io_out": [
      24,
      24,
      -12,
      8,
      -8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),-4)"
  },
  {
    "input": "input : list = [5, 0, 4, -3]\noutput : list = [35, 20, 0, -5]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_des([5, 0, 4, -3]))),-4),-5)",
    "io_inp": [
      5,
      0,
      4,
      -3
    ],
    "io_out": [
      35,
      20,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_des(input))),-4),-5)"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = take(sort_asc([-2, 2, -1]),18)",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),18)"
  },
  {
    "input": "input : list = [4, -5, -3, 2, 1, 0]\noutput : list = [-15, -9, -6, -3, 6, 12]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(sub_n([4, -5, -3, 2, 1, 0],-2),15)),-3),3)",
    "io_inp": [
      4,
      -5,
      -3,
      2,
      1,
      0
    ],
    "io_out": [
      -15,
      -9,
      -6,
      -3,
      6,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(sub_n(input,-2),15)),-3),3)"
  },
  {
    "input": "input : list = [-2, 3, 3, -1, 3, 3]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(drop(add_n(mul_n(sort_des([-2, 3, 3, -1, 3, 3]),3),-2),5))",
    "io_inp": [
      -2,
      3,
      3,
      -1,
      3,
      3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(mul_n(sort_des(input),3),-2),5))"
  },
  {
    "input": "input : list = [-5, 0, -4, -3, -4]\noutput : list = [-6, 9, 14, 14, 19]",
    "output": "generated_output : list = sort_asc(add_n(add_n(take(mul_n([-5, 0, -4, -3, -4],-5),8),-1),-5))",
    "io_inp": [
      -5,
      0,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -6,
      9,
      14,
      14,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(take(mul_n(input,-5),8),-1),-5))"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [-24, 11, 26]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(mul_n([-2, -5, 5],-5)))),1)",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      -24,
      11,
      26
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(mul_n(input,-5)))),1)"
  },
  {
    "input": "input : list = [2, 5, 2, 5, -2, -4]\noutput : list = [-4, -2, 2, 2, 5, 5]",
    "output": "generated_output : list = sort_asc([2, 5, 2, 5, -2, -4])",
    "io_inp": [
      2,
      5,
      2,
      5,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      2,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [9, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(mul_n([-3, 3],-3)))))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [-4, -4, -5, 4, 3, 1]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(reverse(take([-4, -4, -5, 4, 3, 1],2)),-4)))",
    "io_inp": [
      -4,
      -4,
      -5,
      4,
      3,
      1
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(reverse(take(input,2)),-4)))"
  },
  {
    "input": "input : list = [0, 0, -5]\noutput : list = [-1, -1, -6]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(sort_des([0, 0, -5])),-1)))",
    "io_inp": [
      0,
      0,
      -5
    ],
    "io_out": [
      -1,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(sort_des(input)),-1)))"
  },
  {
    "input": "input : list = [-4, -1, 4, 1]\noutput : list = [16, 4, -4, -16]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_asc([-4, -1, 4, 1])),4)),1)",
    "io_inp": [
      -4,
      -1,
      4,
      1
    ],
    "io_out": [
      16,
      4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_asc(input)),4)),1)"
  },
  {
    "input": "input : list = [2, -5, 5, 0, -5]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = drop(add_n(take(sort_asc(sub_n([2, -5, 5, 0, -5],3)),25),3),2)",
    "io_inp": [
      2,
      -5,
      5,
      0,
      -5
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(add_n(take(sort_asc(sub_n(input,3)),25),3),2)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(sort_asc([0, 4]),1),-2)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(sort_asc(input),1),-2)))"
  },
  {
    "input": "input : list = [4, 5, -3, 0, 0, -2]\noutput : list = [6, 0, 0, 9, -15, -12]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(reverse([4, 5, -3, 0, 0, -2]),-3),18)))",
    "io_inp": [
      4,
      5,
      -3,
      0,
      0,
      -2
    ],
    "io_out": [
      6,
      0,
      0,
      9,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(reverse(input),-3),18)))"
  },
  {
    "input": "input : list = [-2, -1, 1, 1, 2]\noutput : list = [0, 2, 2, 6, 8]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(reverse([-2, -1, 1, 1, 2]))),-2),4)",
    "io_inp": [
      -2,
      -1,
      1,
      1,
      2
    ],
    "io_out": [
      0,
      2,
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(reverse(input))),-2),4)"
  },
  {
    "input": "input : list = [1, 0, 2, -5, 2]\noutput : list = [-3, -3, -1, 4]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(reverse([1, 0, 2, -5, 2]),1),4)),-1)",
    "io_inp": [
      1,
      0,
      2,
      -5,
      2
    ],
    "io_out": [
      -3,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(reverse(input),1),4)),-1)"
  },
  {
    "input": "input : list = [3, 5, -4, 0]\noutput : list = [3, 5]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(take([3, 5, -4, 0],2)))),17)",
    "io_inp": [
      3,
      5,
      -4,
      0
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(take(input,2)))),17)"
  },
  {
    "input": "input : list = [1, 2, -3, -2, 5]\noutput : list = [6, 7, 10, 11, 14]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(add_n([1, 2, -3, -2, 5],4)),18),38),-5)",
    "io_inp": [
      1,
      2,
      -3,
      -2,
      5
    ],
    "io_out": [
      6,
      7,
      10,
      11,
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(add_n(input,4)),18),38),-5)"
  },
  {
    "input": "input : list = [-3, -4, 1, -4]\noutput : list = [-15, -15, -12, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sub_n([-3, -4, 1, -4],1),3))))",
    "io_inp": [
      -3,
      -4,
      1,
      -4
    ],
    "io_out": [
      -15,
      -15,
      -12,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(mul_n(sub_n(input,1),3))))"
  },
  {
    "input": "input : list = [1, 0, 5, -4, -3]\noutput : list = [-4, -3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([1, 0, 5, -4, -3],2)))",
    "io_inp": [
      1,
      0,
      5,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,2)))"
  },
  {
    "input": "input : list = [2, 3, -4, 1, 2, 2]\noutput : list = [-30, -45, 60, -15, -30, -30]",
    "output": "generated_output : list = mul_n(mul_n([2, 3, -4, 1, 2, 2],5),-3)",
    "io_inp": [
      2,
      3,
      -4,
      1,
      2,
      2
    ],
    "io_out": [
      -30,
      -45,
      60,
      -15,
      -30,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,5),-3)"
  },
  {
    "input": "input : list = [-1, 4, -5, 1, 0]\noutput : list = [5, -1, 0]",
    "output": "generated_output : list = mul_n(drop([-1, 4, -5, 1, 0],2),-1)",
    "io_inp": [
      -1,
      4,
      -5,
      1,
      0
    ],
    "io_out": [
      5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [1, -1, 4, -3]\noutput : list = [4, 1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_asc([1, -1, 4, -3]))",
    "io_inp": [
      1,
      -1,
      4,
      -3
    ],
    "io_out": [
      4,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, 4, -3, 5]\noutput : list = [3, -15, -18, -21]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(sort_des([3, 4, -3, 5])),1),3),-3)",
    "io_inp": [
      3,
      4,
      -3,
      5
    ],
    "io_out": [
      3,
      -15,
      -18,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(sort_des(input)),1),3),-3)"
  },
  {
    "input": "input : list = [-2, 2, -3, -5]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(take([-2, 2, -3, -5],1),-2)",
    "io_inp": [
      -2,
      2,
      -3,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-2)"
  },
  {
    "input": "input : list = [-3, 4, -5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(mul_n(take([-3, 4, -5],1),-3),-4)",
    "io_inp": [
      -3,
      4,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,1),-3),-4)"
  },
  {
    "input": "input : list = [4, 2, 3, -3]\noutput : list = [2, 3, -3]",
    "output": "generated_output : list = drop([4, 2, 3, -3],1)",
    "io_inp": [
      4,
      2,
      3,
      -3
    ],
    "io_out": [
      2,
      3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 1, 5, 1]\noutput : list = [5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take([5, 1, 5, 1],1))))",
    "io_inp": [
      5,
      1,
      5,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(input,1))))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([0, 0],-5)))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-5)))"
  },
  {
    "input": "input : list = [2, 0, -3, 2, -3]\noutput : list = [-1, -1, 5, 9, 9]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(mul_n([2, 0, -3, 2, -3],2)),4),-1))",
    "io_inp": [
      2,
      0,
      -3,
      2,
      -3
    ],
    "io_out": [
      -1,
      -1,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(mul_n(input,2)),4),-1))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [7, 2]",
    "output": "generated_output : list = sub_n([2, -3],-5)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -2, 0, 5, 0, -4]\noutput : list = [19, -1, -1, -5, -9, -17]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(sort_des([-1, -2, 0, 5, 0, -4])),4),-1),20)",
    "io_inp": [
      -1,
      -2,
      0,
      5,
      0,
      -4
    ],
    "io_out": [
      19,
      -1,
      -1,
      -5,
      -9,
      -17
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(sort_des(input)),4),-1),20)"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(take(reverse(take(mul_n([-3, -3, 3],-1),2)),7),-5)",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(mul_n(input,-1),2)),7),-5)"
  },
  {
    "input": "input : list = [1, -5, -1, 4, -4]\noutput : list = [15, 3, -5, -17, -21]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(reverse([1, -5, -1, 4, -4]),1),4),1))",
    "io_inp": [
      1,
      -5,
      -1,
      4,
      -4
    ],
    "io_out": [
      15,
      3,
      -5,
      -17,
      -21
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(reverse(input),1),4),1))"
  },
  {
    "input": "input : list = [4, 5, -1, -3, 5]\noutput : list = [-18, -18, -15, 0]",
    "output": "generated_output : list = sub_n(mul_n(take(sort_des(sort_des([4, 5, -1, -3, 5])),4),-3),3)",
    "io_inp": [
      4,
      5,
      -1,
      -3,
      5
    ],
    "io_out": [
      -18,
      -18,
      -15,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(sort_des(sort_des(input)),4),-3),3)"
  },
  {
    "input": "input : list = [1, 3, -5]\noutput : list = [-2, 4, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(add_n([1, 3, -5],3),5),-5)))",
    "io_inp": [
      1,
      3,
      -5
    ],
    "io_out": [
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(add_n(input,3),5),-5)))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [5, 4]",
    "output": "generated_output : list = reverse(sub_n([2, 3],-2))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [5, 4, 1, 4, -2]\noutput : list = [-2, 1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc([5, 4, 1, 4, -2])),8)))",
    "io_inp": [
      5,
      4,
      1,
      4,
      -2
    ],
    "io_out": [
      -2,
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(sort_asc(input)),8)))"
  },
  {
    "input": "input : list = [-4, 4, -5, -1]\noutput : list = [3, 23, -22, 18]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse([-4, 4, -5, -1]),5),4),-1),2)",
    "io_inp": [
      -4,
      4,
      -5,
      -1
    ],
    "io_out": [
      3,
      23,
      -22,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(reverse(input),5),4),-1),2)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -1, 3],1)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -3, -1, -3, 3, -2]\noutput : list = [8, 2, 4, 2, 8, 3]",
    "output": "generated_output : list = add_n([3, -3, -1, -3, 3, -2],5)",
    "io_inp": [
      3,
      -3,
      -1,
      -3,
      3,
      -2
    ],
    "io_out": [
      8,
      2,
      4,
      2,
      8,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 3, -4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = drop([-2, 3, -4, 1],2)",
    "io_inp": [
      -2,
      3,
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, 5, -1, 5, 3, 0]\noutput : list = [-5, -5, -3, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(mul_n([1, 5, -1, 5, 3, 0],-1)))))",
    "io_inp": [
      1,
      5,
      -1,
      5,
      3,
      0
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(mul_n(input,-1)))))"
  },
  {
    "input": "input : list = [-2, -3, -2, 0, 3]\noutput : list = [-6, -5, -5, -3, 0]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(add_n([-2, -3, -2, 0, 3],2))),-5))",
    "io_inp": [
      -2,
      -3,
      -2,
      0,
      3
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(add_n(input,2))),-5))"
  },
  {
    "input": "input : list = [-1, -4, 3, 0, 0, 2]\noutput : list = [3, 0, -1, -1, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc([-1, -4, 3, 0, 0, 2]),-1))),-1)",
    "io_inp": [
      -1,
      -4,
      3,
      0,
      0,
      2
    ],
    "io_out": [
      3,
      0,
      -1,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(sort_asc(input),-1))),-1)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(sort_des([1, -3]),-2)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-4, -4, -3, -4]\noutput : list = [-45, -45, -35, -45]",
    "output": "generated_output : list = reverse(reverse(add_n(mul_n(mul_n([-4, -4, -3, -4],5),2),-5)))",
    "io_inp": [
      -4,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -45,
      -45,
      -35,
      -45
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(mul_n(mul_n(input,5),2),-5)))"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(sub_n(take([1, -3, 2],1),-4),-2)",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),-4),-2)"
  },
  {
    "input": "input : list = [2, -5, -1, -2]\noutput : list = [-43, -16, -7, 20]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(sort_asc([2, -5, -1, -2]),3),12),3),-2)",
    "io_inp": [
      2,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -43,
      -16,
      -7,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(sort_asc(input),3),12),3),-2)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [0, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_des([-3, -4]),-3))))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(sort_des(input),-3))))"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [16, 14, 14]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n([3, 4, 4],5),2),-4),-2)",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      16,
      14,
      14
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(input,5),2),-4),-2)"
  },
  {
    "input": "input : list = [-4, -5, 3, 4, 4, -5]\noutput : list = [-3, -4, 4, 5, 5, -4]",
    "output": "generated_output : list = reverse(sub_n(reverse([-4, -5, 3, 4, 4, -5]),-1))",
    "io_inp": [
      -4,
      -5,
      3,
      4,
      4,
      -5
    ],
    "io_out": [
      -3,
      -4,
      4,
      5,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [2, 8, 1]",
    "output": "generated_output : list = reverse(sub_n([-4, 3, -3],-5))",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      2,
      8,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [5, -1, -2, -4]\noutput : list = [-2, 0, 1, 7]",
    "output": "generated_output : list = sub_n(take(take(reverse(sort_des([5, -1, -2, -4])),7),14),-2)",
    "io_inp": [
      5,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -2,
      0,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(take(reverse(sort_des(input)),7),14),-2)"
  },
  {
    "input": "input : list = [-3, 1, 2, -4, -3, -2]\noutput : list = [-11, -8, 1, 4, 4, 7]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(add_n([-3, 1, 2, -4, -3, -2],2),-3))),-1)",
    "io_inp": [
      -3,
      1,
      2,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -11,
      -8,
      1,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(add_n(input,2),-3))),-1)"
  },
  {
    "input": "input : list = [-3, 3, 5, 5, -2]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 3, 5, 5, -2],1)",
    "io_inp": [
      -3,
      3,
      5,
      5,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 0, 5, -5]\noutput : list = [-7, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sort_asc([-1, 0, 5, -5]),-2),-1)))",
    "io_inp": [
      -1,
      0,
      5,
      -5
    ],
    "io_out": [
      -7,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sub_n(sort_asc(input),-2),-1)))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-10, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(take(sort_des([0, 5]),4)),-2))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(take(sort_des(input),4)),-2))"
  },
  {
    "input": "input : list = [5, -5, -3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = take(drop(sort_des(reverse(sub_n([5, -5, -3],3))),1),36)",
    "io_inp": [
      5,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(drop(sort_des(reverse(sub_n(input,3))),1),36)"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = sub_n(reverse(take(add_n(sort_asc([1, -4, -1]),-5),17)),-5)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(add_n(sort_asc(input),-5),17)),-5)"
  },
  {
    "input": "input : list = [1, 2, -1, -5, 1]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(take([1, 2, -1, -5, 1],3)),1)",
    "io_inp": [
      1,
      2,
      -1,
      -5,
      1
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,3)),1)"
  },
  {
    "input": "input : list = [0, -4, -3, 4, -4, 4]\noutput : list = [-2, -2, -1, 2, 6, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_asc(sort_asc([0, -4, -3, 4, -4, 4]))),2),37)",
    "io_inp": [
      0,
      -4,
      -3,
      4,
      -4,
      4
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      6,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_asc(sort_asc(input))),2),37)"
  },
  {
    "input": "input : list = [-5, 4, 4, 0, -4]\noutput : list = [-12, -10, -2, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(mul_n(reverse([-5, 4, 4, 0, -4]),2))),2)",
    "io_inp": [
      -5,
      4,
      4,
      0,
      -4
    ],
    "io_out": [
      -12,
      -10,
      -2,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(mul_n(reverse(input),2))),2)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [3, 10]",
    "output": "generated_output : list = sub_n(reverse(sub_n([4, -3],-1)),-5)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      3,
      10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,-1)),-5)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [10, 10]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(reverse([-2, -2])),-5)),16)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(reverse(input)),-5)),16)"
  },
  {
    "input": "input : list = [0, 0, 4, 4]\noutput : list = [12, 12, 0, 0]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(sort_asc([0, 0, 4, 4]))),6),3)",
    "io_inp": [
      0,
      0,
      4,
      4
    ],
    "io_out": [
      12,
      12,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(sort_asc(input))),6),3)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = reverse(sort_des([0, 5]))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -3, 2, -5, 2, 3]\noutput : list = [-5, -3, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take([4, -3, 2, -5, 2, 3],4)))",
    "io_inp": [
      4,
      -3,
      2,
      -5,
      2,
      3
    ],
    "io_out": [
      -5,
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,4)))"
  },
  {
    "input": "input : list = [0, 3, 4, 2, 5, -2]\noutput : list = [-25, -20, -15, -10, 0, 10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc([0, 3, 4, 2, 5, -2]))),-5)",
    "io_inp": [
      0,
      3,
      4,
      2,
      5,
      -2
    ],
    "io_out": [
      -25,
      -20,
      -15,
      -10,
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [-12, -16, -40]",
    "output": "generated_output : list = sort_des(mul_n(reverse(add_n(sort_asc([5, -2, -1]),5)),-4))",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      -12,
      -16,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(add_n(sort_asc(input),5)),-4))"
  },
  {
    "input": "input : list = [-1, -2, 1, 4, 2]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(reverse(add_n(take([-1, -2, 1, 4, 2],1),4)),-4),8)",
    "io_inp": [
      -1,
      -2,
      1,
      4,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(take(input,1),4)),-4),8)"
  },
  {
    "input": "input : list = [5, 0, 5, 2, 1, 2]\noutput : list = [5, 5, 2, 2, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_asc(reverse([5, 0, 5, 2, 1, 2])),1)))",
    "io_inp": [
      5,
      0,
      5,
      2,
      1,
      2
    ],
    "io_out": [
      5,
      5,
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_asc(reverse(input)),1)))"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-4, -4, 1]",
    "output": "generated_output : list = sort_asc([1, -4, -4])",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, 2, -3]\noutput : list = [28, -2]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(drop([2, -5, 2, -3],2),3),-5)),-2)",
    "io_inp": [
      2,
      -5,
      2,
      -3
    ],
    "io_out": [
      28,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(drop(input,2),3),-5)),-2)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-15, -30]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_asc([4, 1]),-5),-3),3),4)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -15,
      -30
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_asc(input),-5),-3),3),4)"
  },
  {
    "input": "input : list = [1, -2, -2, 0, 0, 3]\noutput : list = [-2, -2, 0, 0, 1, 3]",
    "output": "generated_output : list = mul_n(sort_asc(reverse([1, -2, -2, 0, 0, 3])),1)",
    "io_inp": [
      1,
      -2,
      -2,
      0,
      0,
      3
    ],
    "io_out": [
      -2,
      -2,
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(input)),1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [15, 5]",
    "output": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc([-2, 0]),-1),-3),-5))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      15,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(mul_n(sort_asc(input),-1),-3),-5))"
  },
  {
    "input": "input : list = [1, 3, 1, -2]\noutput : list = [1, -1, -1, -4]",
    "output": "generated_output : list = add_n(take(sort_des(add_n([1, 3, 1, -2],2)),4),-4)",
    "io_inp": [
      1,
      3,
      1,
      -2
    ],
    "io_out": [
      1,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(input,2)),4),-4)"
  },
  {
    "input": "input : list = [2, -2, 5, 4]\noutput : list = [5, 4, 2, -2]",
    "output": "generated_output : list = sort_des(take(reverse([2, -2, 5, 4]),19))",
    "io_inp": [
      2,
      -2,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),19))"
  },
  {
    "input": "input : list = [1, -2, 1, 2]\noutput : list = [1, 4, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(reverse(sort_des([1, -2, 1, 2])))),3)",
    "io_inp": [
      1,
      -2,
      1,
      2
    ],
    "io_out": [
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(reverse(sort_des(input)))),3)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [0, -10]",
    "output": "generated_output : list = reverse(mul_n(sub_n(add_n(drop([5, -5, 0],1),3),3),2))",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(add_n(drop(input,1),3),3),2))"
  },
  {
    "input": "input : list = [-1, 5, 1, -3, 0]\noutput : list = [-8, 10, -2, -14, -5]",
    "output": "generated_output : list = sub_n(mul_n([-1, 5, 1, -3, 0],3),5)",
    "io_inp": [
      -1,
      5,
      1,
      -3,
      0
    ],
    "io_out": [
      -8,
      10,
      -2,
      -14,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),5)"
  },
  {
    "input": "input : list = [2, -2, -4, 1, 5, 0]\noutput : list = [0, 5, 1, -4, -2, 2]",
    "output": "generated_output : list = reverse([2, -2, -4, 1, 5, 0])",
    "io_inp": [
      2,
      -2,
      -4,
      1,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      1,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(drop([3, 1, -5, 0],2))",
    "io_inp": [
      3,
      1,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [5, 2, 4, 3, -3, 4]\noutput : list = [-16, 4, 8, 12, 12, 16]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_des([5, 2, 4, 3, -3, 4]),-1)),4))",
    "io_inp": [
      5,
      2,
      4,
      3,
      -3,
      4
    ],
    "io_out": [
      -16,
      4,
      8,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(add_n(sort_des(input),-1)),4))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse(sort_asc([-2, 1])),1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [0, 4]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(add_n([2, -2],1)),-1),-2),-5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(add_n(input,1)),-1),-2),-5)"
  },
  {
    "input": "input : list = [0, 4, -1, 3, -2]\noutput : list = [7, 6, 3, 2, 1]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(mul_n([0, 4, -1, 3, -2],1)),3),5))",
    "io_inp": [
      0,
      4,
      -1,
      3,
      -2
    ],
    "io_out": [
      7,
      6,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(mul_n(input,1)),3),5))"
  },
  {
    "input": "input : list = [-1, 0, -4, -1, -2]\noutput : list = [8, 9, 6, 10, 9]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(sub_n([-1, 0, -4, -1, -2],-3),-1)),-4),4)",
    "io_inp": [
      -1,
      0,
      -4,
      -1,
      -2
    ],
    "io_out": [
      8,
      9,
      6,
      10,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(sub_n(input,-3),-1)),-4),4)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [11, -7]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_asc([-3, 3])),-3),-2))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      11,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(sort_asc(input)),-3),-2))"
  },
  {
    "input": "input : list = [-4, 5, 1, -4, 3]\noutput : list = [-3, -5, -7, -12, -12]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des([-4, 5, 1, -4, 3]),-4),1),4)",
    "io_inp": [
      -4,
      5,
      1,
      -4,
      3
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(input),-4),1),4)"
  },
  {
    "input": "input : list = [0, -3, 1, 4]\noutput : list = [7, 4, 3, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n([0, -3, 1, 4],2)),-1))",
    "io_inp": [
      0,
      -3,
      1,
      4
    ],
    "io_out": [
      7,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(input,2)),-1))"
  },
  {
    "input": "input : list = [-5, -4, -5, -4, 0]\noutput : list = [25]",
    "output": "generated_output : list = mul_n(take(sort_des(take(take([-5, -4, -5, -4, 0],1),25)),29),-5)",
    "io_inp": [
      -5,
      -4,
      -5,
      -4,
      0
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(take(take(input,1),25)),29),-5)"
  },
  {
    "input": "input : list = [-4, 4, 5, 4, 1]\noutput : list = [-3, -6, -7, -6, 2]",
    "output": "generated_output : list = add_n(mul_n(reverse(sub_n([-4, 4, 5, 4, 1],-4)),-1),2)",
    "io_inp": [
      -4,
      4,
      5,
      4,
      1
    ],
    "io_out": [
      -3,
      -6,
      -7,
      -6,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sub_n(input,-4)),-1),2)"
  },
  {
    "input": "input : list = [4, -5, -5, -3, -4]\noutput : list = [-1, -10, -10, -8, -9]",
    "output": "generated_output : list = sub_n([4, -5, -5, -3, -4],5)",
    "io_inp": [
      4,
      -5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -1,
      -10,
      -10,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [3, -6]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(reverse([5, -4])),4),2),6)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(reverse(input)),4),2),6)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc([3, 4])),5),-3))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc(input)),5),-3))"
  },
  {
    "input": "input : list = [0, 2, 4]\noutput : list = [-6, -4, -2]",
    "output": "generated_output : list = add_n(add_n(reverse(sub_n(sort_des([0, 2, 4]),1)),-2),-3)",
    "io_inp": [
      0,
      2,
      4
    ],
    "io_out": [
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sub_n(sort_des(input),1)),-2),-3)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [11, 11]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(mul_n([5, 5],3),7)),29),4)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(mul_n(input,3),7)),29),4)"
  },
  {
    "input": "input : list = [3, 5, 0, -1, 5]\noutput : list = [-25, -15]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(take([3, 5, 0, -1, 5],2)))),-5)",
    "io_inp": [
      3,
      5,
      0,
      -1,
      5
    ],
    "io_out": [
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(take(input,2)))),-5)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [16, 0]",
    "output": "generated_output : list = add_n(take(mul_n(sort_des([1, 5]),4),19),-4)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_des(input),4),19),-4)"
  },
  {
    "input": "input : list = [-4, -3, -1, -5, -1, -5]\noutput : list = [20]",
    "output": "generated_output : list = mul_n(take([-4, -3, -1, -5, -1, -5],1),-5)",
    "io_inp": [
      -4,
      -3,
      -1,
      -5,
      -1,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [-2, -5, -1, -1]\noutput : list = [-10, -25, -5, -5]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(sub_n([-2, -5, -1, -1],-3),-2),-4),1),5)",
    "io_inp": [
      -2,
      -5,
      -1,
      -1
    ],
    "io_out": [
      -10,
      -25,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(sub_n(input,-3),-2),-4),1),5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [16, 7]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(mul_n([5, 2],3),1),-5),5),1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      16,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(mul_n(input,3),1),-5),5),1)"
  },
  {
    "input": "input : list = [-1, -3, 2]\noutput : list = [4]",
    "output": "generated_output : list = take(take(reverse(mul_n(take([-1, -3, 2],1),-4)),14),11)",
    "io_inp": [
      -1,
      -3,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(take(input,1),-4)),14),11)"
  },
  {
    "input": "input : list = [3, 5, 0, 4, -5, 0]\noutput : list = [5, 4, 3, 0, 0, -5]",
    "output": "generated_output : list = add_n(take(mul_n(sort_des(sub_n([3, 5, 0, 4, -5, 0],-5)),1),17),-5)",
    "io_inp": [
      3,
      5,
      0,
      4,
      -5,
      0
    ],
    "io_out": [
      5,
      4,
      3,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_des(sub_n(input,-5)),1),17),-5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-1, -5],3)))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,3)))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n([-2, 0],1)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 5, 0, -3, -2, 0]\noutput : list = [-4, -2]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(drop([3, 5, 0, -3, -2, 0],4))),-2))",
    "io_inp": [
      3,
      5,
      0,
      -3,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(drop(input,4))),-2))"
  },
  {
    "input": "input : list = [-5, 0, -1, -1]\noutput : list = [-14, -10, -10, -9]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n([-5, 0, -1, -1],-4),4),1)))",
    "io_inp": [
      -5,
      0,
      -1,
      -1
    ],
    "io_out": [
      -14,
      -10,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(add_n(input,-4),4),1)))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [10, 2]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(sub_n([3, -5],-5),3),19),1))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      10,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(sub_n(input,-5),3),19),1))"
  },
  {
    "input": "input : list = [-1, -1, 5, 0, 5]\noutput : list = [3, 3, 9, 4, 9]",
    "output": "generated_output : list = sub_n([-1, -1, 5, 0, 5],-4)",
    "io_inp": [
      -1,
      -1,
      5,
      0,
      5
    ],
    "io_out": [
      3,
      3,
      9,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [-21, -15, -15]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(add_n([-4, -2, -2],-1),-5),-3)),3)",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      -21,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(add_n(input,-1),-5),-3)),3)"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [16, -4, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_des([-3, -2, 3]),1),4)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      16,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),1),4)"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [20, -4, -20]",
    "output": "generated_output : list = sort_des(reverse(reverse(mul_n(sort_des([-5, 5, -1]),4))))",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      20,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(mul_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [4, -1, 3, -3, -4]\noutput : list = [4, -1, 3]",
    "output": "generated_output : list = take([4, -1, 3, -3, -4],3)",
    "io_inp": [
      4,
      -1,
      3,
      -3,
      -4
    ],
    "io_out": [
      4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n(take(sort_des(sub_n([-4, -5],-4)),10),-1)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sub_n(input,-4)),10),-1)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(reverse([5, 2]),1))),-5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(reverse(input),1))),-5)"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [2, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(sub_n([-2, -2, 2],2),7),1),-3))",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(sub_n(input,2),7),1),-3))"
  },
  {
    "input": "input : list = [4, -3, -2, 3]\noutput : list = [-9, -7, 3, 5]",
    "output": "generated_output : list = add_n(take(sort_asc(mul_n(sub_n([4, -3, -2, 3],-2),-2)),9),3)",
    "io_inp": [
      4,
      -3,
      -2,
      3
    ],
    "io_out": [
      -9,
      -7,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(mul_n(sub_n(input,-2),-2)),9),3)"
  },
  {
    "input": "input : list = [-3, 3, 2, -3, -2, -4]\noutput : list = [-11, -10, -10, -9, -5, -4]",
    "output": "generated_output : list = sub_n(sub_n(take(take(sort_asc([-3, 3, 2, -3, -2, -4]),19),38),5),2)",
    "io_inp": [
      -3,
      3,
      2,
      -3,
      -2,
      -4
    ],
    "io_out": [
      -11,
      -10,
      -10,
      -9,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(sort_asc(input),19),38),5),2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [4, 6]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(reverse([1, -1]),-3)),-2))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(reverse(input),-3)),-2))"
  },
  {
    "input": "input : list = [-4, -3, 1, 3, 1]\noutput : list = [1, 3, 1, -3, -4]",
    "output": "generated_output : list = reverse([-4, -3, 1, 3, 1])",
    "io_inp": [
      -4,
      -3,
      1,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, 3]\noutput : list = [11, 17]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(add_n(drop([2, 5, 3],1),1),3)),1)",
    "io_inp": [
      2,
      5,
      3
    ],
    "io_out": [
      11,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(add_n(drop(input,1),1),3)),1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sub_n(take(reverse(take(sub_n([3, 2],4),5)),25),-5)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(take(sub_n(input,4),5)),25),-5)"
  },
  {
    "input": "input : list = [0, -2, 3, 4, -4]\noutput : list = [360, -120, -60, 240, 120]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(add_n([0, -2, 3, 4, -4],-2),-3)),4),5)",
    "io_inp": [
      0,
      -2,
      3,
      4,
      -4
    ],
    "io_out": [
      360,
      -120,
      -60,
      240,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(add_n(input,-2),-3)),4),5)"
  },
  {
    "input": "input : list = [-5, 3, 2, 4, -5]\noutput : list = [4, 3, 2, -5, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 2, 4, -5])",
    "io_inp": [
      -5,
      3,
      2,
      4,
      -5
    ],
    "io_out": [
      4,
      3,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, 5, -4]\noutput : list = [2, 3, -4, 5]",
    "output": "generated_output : list = mul_n(sub_n([-1, -2, 5, -4],1),-1)",
    "io_inp": [
      -1,
      -2,
      5,
      -4
    ],
    "io_out": [
      2,
      3,
      -4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-1)"
  },
  {
    "input": "input : list = [1, -1, 0, -5]\noutput : list = [1, 4, 7, 19]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_des([1, -1, 0, -5]),3),-1),4))",
    "io_inp": [
      1,
      -1,
      0,
      -5
    ],
    "io_out": [
      1,
      4,
      7,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(mul_n(sort_des(input),3),-1),4))"
  },
  {
    "input": "input : list = [-2, 2, -5, -4, 4]\noutput : list = [4, 2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(drop([-2, 2, -5, -4, 4],1),23))))",
    "io_inp": [
      -2,
      2,
      -5,
      -4,
      4
    ],
    "io_out": [
      4,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(drop(input,1),23))))"
  },
  {
    "input": "input : list = [4, -3, 1, 0]\noutput : list = [4, -3, 1]",
    "output": "generated_output : list = take(reverse(reverse([4, -3, 1, 0])),3)",
    "io_inp": [
      4,
      -3,
      1,
      0
    ],
    "io_out": [
      4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(input)),3)"
  },
  {
    "input": "input : list = [-3, -1, 5, 4]\noutput : list = [-1, 5, 4]",
    "output": "generated_output : list = drop([-3, -1, 5, 4],1)",
    "io_inp": [
      -3,
      -1,
      5,
      4
    ],
    "io_out": [
      -1,
      5,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = drop([5, -2, 2],1)",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -5, 3, 1, -2, -4]\noutput : list = [80, 60, 20, -40, -80, -100]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sort_des([4, -5, 3, 1, -2, -4]),5))),4)",
    "io_inp": [
      4,
      -5,
      3,
      1,
      -2,
      -4
    ],
    "io_out": [
      80,
      60,
      20,
      -40,
      -80,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(sort_des(input),5))),4)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [30, 20]",
    "output": "generated_output : list = mul_n(add_n([-2, 0],-4),-5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      30,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),-5)"
  },
  {
    "input": "input : list = [1, 2, -4, 3, 4, -2]\noutput : list = [1, 7]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse(drop([1, 2, -4, 3, 4, -2],4)))),3)",
    "io_inp": [
      1,
      2,
      -4,
      3,
      4,
      -2
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(drop(input,4)))),3)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-2, -14]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc([-4, -1]),4),2))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -2,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(input),4),2))"
  },
  {
    "input": "input : list = [0, -2, 1, -4, -4]\noutput : list = [-4, -4, -2, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([0, -2, 1, -4, -4]))",
    "io_inp": [
      0,
      -2,
      1,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [5, -4, -3, 0]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = add_n(add_n(sort_des(drop(sub_n([5, -4, -3, 0],-3),1)),-4),1)",
    "io_inp": [
      5,
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(drop(sub_n(input,-3),1)),-4),1)"
  },
  {
    "input": "input : list = [3, 0, 0, -5]\noutput : list = [22, 7, 7, -2]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(reverse([3, 0, 0, -5]),-3),2),14),5)",
    "io_inp": [
      3,
      0,
      0,
      -5
    ],
    "io_out": [
      22,
      7,
      7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(reverse(input),-3),2),14),5)"
  },
  {
    "input": "input : list = [-3, 3, -3, 4]\noutput : list = [12, -12, -16]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(sort_des([-3, 3, -3, 4]),3)),-4),44)",
    "io_inp": [
      -3,
      3,
      -3,
      4
    ],
    "io_out": [
      12,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(sort_des(input),3)),-4),44)"
  },
  {
    "input": "input : list = [0, -5, 4, 5, 1]\noutput : list = [-8, -3, -2, 1, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([0, -5, 4, 5, 1]),-1),-4)",
    "io_inp": [
      0,
      -5,
      4,
      5,
      1
    ],
    "io_out": [
      -8,
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-1),-4)"
  },
  {
    "input": "input : list = [-2, 5, -1]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = take(reverse(take(sort_des(add_n([-2, 5, -1],-2)),16)),21)",
    "io_inp": [
      -2,
      5,
      -1
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_des(add_n(input,-2)),16)),21)"
  },
  {
    "input": "input : list = [-5, -5, -3, -4]\noutput : list = [-4, -3, -5, -5]",
    "output": "generated_output : list = reverse([-5, -5, -3, -4])",
    "io_inp": [
      -5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse(reverse([-4, -3]))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 1, 0]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse([-1, 1, 0]))),3)",
    "io_inp": [
      -1,
      1,
      0
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(input))),3)"
  },
  {
    "input": "input : list = [-5, 4, 1, -2]\noutput : list = [2, -1, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(sort_asc([-5, 4, 1, -2]))),-2))",
    "io_inp": [
      -5,
      4,
      1,
      -2
    ],
    "io_out": [
      2,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(sort_asc(input))),-2))"
  },
  {
    "input": "input : list = [-3, -3, -3, -3, 2]\noutput : list = [-2, -2, -2, -2, 18]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(mul_n([-3, -3, -3, -3, 2],-4),-1),27),5),5)",
    "io_inp": [
      -3,
      -3,
      -3,
      -3,
      2
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -2,
      18
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(mul_n(input,-4),-1),27),5),5)"
  },
  {
    "input": "input : list = [2, 2, 1, 4, -1, -1]\noutput : list = [2, 2, 4, 5, 5, 7]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sub_n([2, 2, 1, 4, -1, -1],-1)))),-2)",
    "io_inp": [
      2,
      2,
      1,
      4,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      4,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(sub_n(input,-1)))),-2)"
  },
  {
    "input": "input : list = [4, 0, 3, -2, -1, 1]\noutput : list = [2, 1, -1, -2, -3, -4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_des([4, 0, 3, -2, -1, 1])),-2)))",
    "io_inp": [
      4,
      0,
      3,
      -2,
      -1,
      1
    ],
    "io_out": [
      2,
      1,
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sort_des(input)),-2)))"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = drop([1, 1, -2],1)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 3, 0, 1, -4]\noutput : list = [-6, -2, 0, 2, 8, 8]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -4, 3, 0, 1, -4],-2))",
    "io_inp": [
      -1,
      -4,
      3,
      0,
      1,
      -4
    ],
    "io_out": [
      -6,
      -2,
      0,
      2,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-2))"
  },
  {
    "input": "input : list = [-5, 2, 1, -4, 2]\noutput : list = [1, 1, 0, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n([-5, 2, 1, -4, 2],-1),-2)),-2)",
    "io_inp": [
      -5,
      2,
      1,
      -4,
      2
    ],
    "io_out": [
      1,
      1,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(input,-1),-2)),-2)"
  },
  {
    "input": "input : list = [1, -1, 3, 3, -3, 4]\noutput : list = [-3, -1, 1, 3, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(reverse([1, -1, 3, 3, -3, 4])))))",
    "io_inp": [
      1,
      -1,
      3,
      3,
      -3,
      4
    ],
    "io_out": [
      -3,
      -1,
      1,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-3, 4, 0, -3]\noutput : list = [4, 7, 11, 4]",
    "output": "generated_output : list = add_n(add_n(reverse([-3, 4, 0, -3]),4),3)",
    "io_inp": [
      -3,
      4,
      0,
      -3
    ],
    "io_out": [
      4,
      7,
      11,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),4),3)"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [24, -3, -6]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sub_n([5, -5, -4],-3)))),3)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      24,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sub_n(input,-3)))),3)"
  },
  {
    "input": "input : list = [2, 4, -1, -3, 3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = add_n(sub_n(sort_des(take(take([2, 4, -1, -3, 3],2),6)),5),-5)",
    "io_inp": [
      2,
      4,
      -1,
      -3,
      3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(take(take(input,2),6)),5),-5)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0]",
    "output": "generated_output : list = drop(sort_des([4, 0]),1)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),1)"
  },
  {
    "input": "input : list = [-3, 3, -3, 2, -1, -2]\noutput : list = [-3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(drop([-3, 3, -3, 2, -1, -2],2))",
    "io_inp": [
      -3,
      3,
      -3,
      2,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [3, -1, -1, -3, 3, 1]\noutput : list = [3, 3, 1, -1, -1, -3]",
    "output": "generated_output : list = sort_des(mul_n([3, -1, -1, -3, 3, 1],1))",
    "io_inp": [
      3,
      -1,
      -1,
      -3,
      3,
      1
    ],
    "io_out": [
      3,
      3,
      1,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [-1, 0, 3, -2, 5, -2]\noutput : list = [17, 9, -3, -11, -11]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_des(drop([-1, 0, 3, -2, 5, -2],1)),4),-1),-4)",
    "io_inp": [
      -1,
      0,
      3,
      -2,
      5,
      -2
    ],
    "io_out": [
      17,
      9,
      -3,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_des(drop(input,1)),4),-1),-4)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse([1, -3, 0]))),1)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(input))),1)"
  },
  {
    "input": "input : list = [3, -2, 2, 0, 0, 4]\noutput : list = [11]",
    "output": "generated_output : list = drop(sort_asc(add_n(reverse(sub_n([3, -2, 2, 0, 0, 4],-5)),2)),5)",
    "io_inp": [
      3,
      -2,
      2,
      0,
      0,
      4
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(reverse(sub_n(input,-5)),2)),5)"
  },
  {
    "input": "input : list = [5, 0, 3, 5, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([5, 0, 3, 5, 0, -5],4)",
    "io_inp": [
      5,
      0,
      3,
      5,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-3, 0, 3, 2, 1, 3]\noutput : list = [0, 0, -1, -2, -3, -6]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(add_n([-3, 0, 3, 2, 1, 3],-3)),26),19))",
    "io_inp": [
      -3,
      0,
      3,
      2,
      1,
      3
    ],
    "io_out": [
      0,
      0,
      -1,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(add_n(input,-3)),26),19))"
  },
  {
    "input": "input : list = [5, 3, 3, -3]\noutput : list = [-9, -7, -7, -1]",
    "output": "generated_output : list = mul_n(add_n([5, 3, 3, -3],4),-1)",
    "io_inp": [
      5,
      3,
      3,
      -3
    ],
    "io_out": [
      -9,
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),-1)"
  },
  {
    "input": "input : list = [4, -3, -4, -1]\noutput : list = [11, -10]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(take([4, -3, -4, -1],2),-3),2),4))",
    "io_inp": [
      4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      11,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(take(input,2),-3),2),4))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(drop(sort_des([1, -1]),1)),4),1)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(drop(sort_des(input),1)),4),1)"
  },
  {
    "input": "input : list = [5, 5, 2, -1, 0]\noutput : list = [-2, -2, -8, -12, -14]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(sort_des([5, 5, 2, -1, 0]),5),3),4),2)",
    "io_inp": [
      5,
      5,
      2,
      -1,
      0
    ],
    "io_out": [
      -2,
      -2,
      -8,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(sort_des(input),5),3),4),2)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des([5, 0])",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [1, -3, -4]",
    "output": "generated_output : list = sub_n([2, -2, -3],1)",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 5, 1, -5]\noutput : list = [5, 3, 1, -5]",
    "output": "generated_output : list = sort_des([3, 5, 1, -5])",
    "io_inp": [
      3,
      5,
      1,
      -5
    ],
    "io_out": [
      5,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [10, 9]",
    "output": "generated_output : list = reverse(reverse(reverse(sub_n(sub_n([4, 5],-3),-2))))",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      10,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sub_n(sub_n(input,-3),-2))))"
  },
  {
    "input": "input : list = [4, 2, 2]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = take(reverse([4, 2, 2]),6)",
    "io_inp": [
      4,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),6)"
  },
  {
    "input": "input : list = [3, -5, 4, -4, 4]\noutput : list = [-12, -12, -8, 20, 24]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(mul_n(add_n([3, -5, 4, -4, 4],-1),-4))))",
    "io_inp": [
      3,
      -5,
      4,
      -4,
      4
    ],
    "io_out": [
      -12,
      -12,
      -8,
      20,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(mul_n(add_n(input,-1),-4))))"
  },
  {
    "input": "input : list = [5, 1, 2, 0, -1]\noutput : list = [-3, -8, -13, -18, -33]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n([5, 1, 2, 0, -1],1)),-5),-3))",
    "io_inp": [
      5,
      1,
      2,
      0,
      -1
    ],
    "io_out": [
      -3,
      -8,
      -13,
      -18,
      -33
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(add_n(input,1)),-5),-3))"
  },
  {
    "input": "input : list = [-1, -2, -4]\noutput : list = [11, 3, -1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n([-1, -2, -4],-4),5))",
    "io_inp": [
      -1,
      -2,
      -4
    ],
    "io_out": [
      11,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(input,-4),5))"
  },
  {
    "input": "input : list = [-2, -5, 5]\noutput : list = [-4, -1, 6]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(sub_n([-2, -5, 5],-1)),14)))",
    "io_inp": [
      -2,
      -5,
      5
    ],
    "io_out": [
      -4,
      -1,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(sub_n(input,-1)),14)))"
  },
  {
    "input": "input : list = [-1, -4, 2, 2, -2, 1]\noutput : list = [-4, -2, -1, 1, 2, 2]",
    "output": "generated_output : list = take(sort_asc([-1, -4, 2, 2, -2, 1]),24)",
    "io_inp": [
      -1,
      -4,
      2,
      2,
      -2,
      1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),24)"
  },
  {
    "input": "input : list = [-4, -1, 4, 0, 4]\noutput : list = [8, 2, 0, -8, -8]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_des([-4, -1, 4, 0, 4]),-2)),1))",
    "io_inp": [
      -4,
      -1,
      4,
      0,
      4
    ],
    "io_out": [
      8,
      2,
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_des(input),-2)),1))"
  },
  {
    "input": "input : list = [2, 3, 0]\noutput : list = [-5, -6, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(add_n(reverse([2, 3, 0]),-5)),3))",
    "io_inp": [
      2,
      3,
      0
    ],
    "io_out": [
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(add_n(reverse(input),-5)),3))"
  },
  {
    "input": "input : list = [-5, -5, 0, 5, -4, 5]\noutput : list = [5, 5, 0, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-5, -5, 0, 5, -4, 5])",
    "io_inp": [
      -5,
      -5,
      0,
      5,
      -4,
      5
    ],
    "io_out": [
      5,
      5,
      0,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = drop([-5, 4, -1],1)",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3, 3, 0]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(take([0, 3, 3, 0],2))",
    "io_inp": [
      0,
      3,
      3,
      0
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [4, 1, 3]\noutput : list = [9, 8, 6]",
    "output": "generated_output : list = sub_n(sort_des(take(take(sort_des([4, 1, 3]),13),15)),-5)",
    "io_inp": [
      4,
      1,
      3
    ],
    "io_out": [
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(sort_des(input),13),15)),-5)"
  },
  {
    "input": "input : list = [-5, -3, 1]\noutput : list = [-25, -17, -1]",
    "output": "generated_output : list = add_n(sort_asc(reverse(mul_n(reverse([-5, -3, 1]),4))),-5)",
    "io_inp": [
      -5,
      -3,
      1
    ],
    "io_out": [
      -25,
      -17,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(mul_n(reverse(input),4))),-5)"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = take(sort_asc([-2, 1, 1]),10)",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),10)"
  },
  {
    "input": "input : list = [5, 2, -4, 1]\noutput : list = [8, 5, -1, 4]",
    "output": "generated_output : list = take(add_n([5, 2, -4, 1],3),4)",
    "io_inp": [
      5,
      2,
      -4,
      1
    ],
    "io_out": [
      8,
      5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(input,3),4)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-24, -32]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(mul_n([-3, -4],-4)),-2),21))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -24,
      -32
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(mul_n(input,-4)),-2),21))"
  },
  {
    "input": "input : list = [4, -5, -2, -3]\noutput : list = [0, 18, 21, 27]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n([4, -5, -2, -3],4),-3))))",
    "io_inp": [
      4,
      -5,
      -2,
      -3
    ],
    "io_out": [
      0,
      18,
      21,
      27
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(sub_n(input,4),-3))))"
  },
  {
    "input": "input : list = [3, 4, -4, 5]\noutput : list = [-3, 4, 5, 6]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des([3, 4, -4, 5]),-3)),-2)",
    "io_inp": [
      3,
      4,
      -4,
      5
    ],
    "io_out": [
      -3,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(input),-3)),-2)"
  },
  {
    "input": "input : list = [-1, 3, -3, -4]\noutput : list = [-4, -3, -1, 3]",
    "output": "generated_output : list = reverse(take(sort_des([-1, 3, -3, -4]),5))",
    "io_inp": [
      -1,
      3,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(input),5))"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [-35, 10, -10]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(add_n([-4, 5, 1],-2),13),1),5),1)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      -35,
      10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(add_n(input,-2),13),1),5),1)"
  },
  {
    "input": "input : list = [0, -2, -2, 5, 1, -2]\noutput : list = [-2, 1, 5, -2]",
    "output": "generated_output : list = reverse(take(drop([0, -2, -2, 5, 1, -2],2),26))",
    "io_inp": [
      0,
      -2,
      -2,
      5,
      1,
      -2
    ],
    "io_out": [
      -2,
      1,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,2),26))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [32, 20]",
    "output": "generated_output : list = take(mul_n(take(add_n(sort_asc([-3, 0]),-5),20),-4),40)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      32,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(take(add_n(sort_asc(input),-5),20),-4),40)"
  },
  {
    "input": "input : list = [-4, 4, -5, -4]\noutput : list = [4, -5, -4]",
    "output": "generated_output : list = add_n(take(sub_n(take(drop([-4, 4, -5, -4],1),16),-2),3),-2)",
    "io_inp": [
      -4,
      4,
      -5,
      -4
    ],
    "io_out": [
      4,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(drop(input,1),16),-2),3),-2)"
  },
  {
    "input": "input : list = [2, 2, -5, -2, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(take([2, 2, -5, -2, 3],2)))),1)",
    "io_inp": [
      2,
      2,
      -5,
      -2,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sort_asc(take(input,2)))),1)"
  },
  {
    "input": "input : list = [3, 0, -3, -5]\noutput : list = [21, 12, 3, -3]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(reverse([3, 0, -3, -5]),-4)),3))",
    "io_inp": [
      3,
      0,
      -3,
      -5
    ],
    "io_out": [
      21,
      12,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(reverse(input),-4)),3))"
  },
  {
    "input": "input : list = [3, -4, -4, -3]\noutput : list = [-4, -4, -3]",
    "output": "generated_output : list = drop([3, -4, -4, -3],1)",
    "io_inp": [
      3,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -5, 1, -3, 0]\noutput : list = [19, 19, 11, -1, -5]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sub_n([-5, -5, 1, -3, 0],-1)),-4),-5),2)",
    "io_inp": [
      -5,
      -5,
      1,
      -3,
      0
    ],
    "io_out": [
      19,
      19,
      11,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(sub_n(input,-1)),-4),-5),2)"
  },
  {
    "input": "input : list = [-2, 4, 4, 5, 2]\noutput : list = [-1, 5, 5, 6, 3]",
    "output": "generated_output : list = take(add_n(take(sub_n(sub_n([-2, 4, 4, 5, 2],-2),4),24),3),16)",
    "io_inp": [
      -2,
      4,
      4,
      5,
      2
    ],
    "io_out": [
      -1,
      5,
      5,
      6,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(sub_n(input,-2),4),24),3),16)"
  },
  {
    "input": "input : list = [-5, -4, 2, 3, -3]\noutput : list = [10, -2]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(drop([-5, -4, 2, 3, -3],3),14)),-2),4)",
    "io_inp": [
      -5,
      -4,
      2,
      3,
      -3
    ],
    "io_out": [
      10,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(drop(input,3),14)),-2),4)"
  },
  {
    "input": "input : list = [-5, 0, 4, 2, 3, 0]\noutput : list = [-3, 2, 6, 4, 5, 2]",
    "output": "generated_output : list = sub_n([-5, 0, 4, 2, 3, 0],-2)",
    "io_inp": [
      -5,
      0,
      4,
      2,
      3,
      0
    ],
    "io_out": [
      -3,
      2,
      6,
      4,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [7, 0, -1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(add_n([-5, 3, -4],-1),3)),5))",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      7,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(add_n(input,-1),3)),5))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [2, -6]",
    "output": "generated_output : list = reverse(take(reverse(sub_n([5, -3],3)),18))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(input,3)),18))"
  },
  {
    "input": "input : list = [1, -5, 1, 1, 3, 1]\noutput : list = [-29, 1, 1, 1, 1, 11]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(mul_n([1, -5, 1, 1, 3, 1],5),-4)))",
    "io_inp": [
      1,
      -5,
      1,
      1,
      3,
      1
    ],
    "io_out": [
      -29,
      1,
      1,
      1,
      1,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(mul_n(input,5),-4)))"
  },
  {
    "input": "input : list = [2, 1, 2, 5, -4, 4]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(drop([2, 1, 2, 5, -4, 4],2),1))))",
    "io_inp": [
      2,
      1,
      2,
      5,
      -4,
      4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(drop(input,2),1))))"
  },
  {
    "input": "input : list = [5, 4, 3, -3, 0]\noutput : list = [-41, -26, -11, -6, -1]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(add_n([5, 4, 3, -3, 0],-5),5)),-3),-4)",
    "io_inp": [
      5,
      4,
      3,
      -3,
      0
    ],
    "io_out": [
      -41,
      -26,
      -11,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(add_n(input,-5),5)),-3),-4)"
  },
  {
    "input": "input : list = [-1, -4, 0, 5, 5, 5]\noutput : list = [3, 3, 3, -2, -3, -6]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(sort_des([-1, -4, 0, 5, 5, 5]),19),4),-1),1)",
    "io_inp": [
      -1,
      -4,
      0,
      5,
      5,
      5
    ],
    "io_out": [
      3,
      3,
      3,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(sort_des(input),19),4),-1),1)"
  },
  {
    "input": "input : list = [5, -4, 1, -3, 5, -3]\noutput : list = [0, 1, 1, 5, 9, 9]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(sort_asc([5, -4, 1, -3, 5, -3]),-4))))",
    "io_inp": [
      5,
      -4,
      1,
      -3,
      5,
      -3
    ],
    "io_out": [
      0,
      1,
      1,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [1, 3, -5, 1, 1]\noutput : list = [1, 1, -5]",
    "output": "generated_output : list = reverse(take(take(sort_asc(drop([1, 3, -5, 1, 1],2)),8),31))",
    "io_inp": [
      1,
      3,
      -5,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(drop(input,2)),8),31))"
  },
  {
    "input": "input : list = [-2, 5, -3, -1]\noutput : list = [9, 6, 3, -15]",
    "output": "generated_output : list = take(take(sort_des(mul_n([-2, 5, -3, -1],-3)),12),7)",
    "io_inp": [
      -2,
      5,
      -3,
      -1
    ],
    "io_out": [
      9,
      6,
      3,
      -15
    ],
    "output_masked": "generated_output : list = take(take(sort_des(mul_n(input,-3)),12),7)"
  },
  {
    "input": "input : list = [5, -2, 0, 3, 3]\noutput : list = [9, 9, 0]",
    "output": "generated_output : list = sort_des(mul_n(drop([5, -2, 0, 3, 3],2),3))",
    "io_inp": [
      5,
      -2,
      0,
      3,
      3
    ],
    "io_out": [
      9,
      9,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,2),3))"
  },
  {
    "input": "input : list = [-4, -1, 0, 4, -4, -3]\noutput : list = [0, 3, 4, 8, 0, 1]",
    "output": "generated_output : list = sub_n(add_n([-4, -1, 0, 4, -4, -3],-1),-5)",
    "io_inp": [
      -4,
      -1,
      0,
      4,
      -4,
      -3
    ],
    "io_out": [
      0,
      3,
      4,
      8,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),-5)"
  },
  {
    "input": "input : list = [-4, 3, 1, -2]\noutput : list = [-1, 6]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(take([-4, 3, 1, -2],2),2),-2),11),3)",
    "io_inp": [
      -4,
      3,
      1,
      -2
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(take(input,2),2),-2),11),3)"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [2, 4, 8]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_asc([-2, -5, -3]),-2)),-3),5)",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_asc(input),-2)),-3),5)"
  },
  {
    "input": "input : list = [-1, -2, -5, 4]\noutput : list = [8]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(take([-1, -2, -5, 4],1),-3),5),38))",
    "io_inp": [
      -1,
      -2,
      -5,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(take(input,1),-3),5),38))"
  },
  {
    "input": "input : list = [-3, -1, 2, -1, -5, 3]\noutput : list = [12]",
    "output": "generated_output : list = take(mul_n(sub_n(drop(sort_asc([-3, -1, 2, -1, -5, 3]),3),-4),4),1)",
    "io_inp": [
      -3,
      -1,
      2,
      -1,
      -5,
      3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(drop(sort_asc(input),3),-4),4),1)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse([-1, 1])",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, 0, -2, -2, -2]\noutput : list = [11, 11, 11, 6, 1, 1]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n([-1, 0, 0, -2, -2, -2],-5)),1))",
    "io_inp": [
      -1,
      0,
      0,
      -2,
      -2,
      -2
    ],
    "io_out": [
      11,
      11,
      11,
      6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(input,-5)),1))"
  },
  {
    "input": "input : list = [-1, -4, -5]\noutput : list = [-4, -5]",
    "output": "generated_output : list = drop([-1, -4, -5],1)",
    "io_inp": [
      -1,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -4, -3, -2]\noutput : list = [-6, -7, -8, -2]",
    "output": "generated_output : list = sub_n(reverse([2, -4, -3, -2]),4)",
    "io_inp": [
      2,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [1, -5, 2]\noutput : list = [-41, -11, -6]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(add_n([1, -5, 2],-3),5),13),1))",
    "io_inp": [
      1,
      -5,
      2
    ],
    "io_out": [
      -41,
      -11,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(add_n(input,-3),5),13),1))"
  },
  {
    "input": "input : list = [-2, 3, 0, 3, 3]\noutput : list = [-6, -14, -26, -26, -26]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(sort_des([-2, 3, 0, 3, 3]),3),-4),2))",
    "io_inp": [
      -2,
      3,
      0,
      3,
      3
    ],
    "io_out": [
      -6,
      -14,
      -26,
      -26,
      -26
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(sort_des(input),3),-4),2))"
  },
  {
    "input": "input : list = [2, 5, -1, 3, -3]\noutput : list = [-15, -5, 10, 15, 25]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(add_n(sub_n([2, 5, -1, 3, -3],-4),-1),-3),5))",
    "io_inp": [
      2,
      5,
      -1,
      3,
      -3
    ],
    "io_out": [
      -15,
      -5,
      10,
      15,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(add_n(sub_n(input,-4),-1),-3),5))"
  },
  {
    "input": "input : list = [-2, -3, -5]\noutput : list = [-6, -7, -9]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(mul_n([-2, -3, -5],1)),4),31))",
    "io_inp": [
      -2,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(mul_n(input,1)),4),31))"
  },
  {
    "input": "input : list = [3, 4, -3]\noutput : list = [16, 12, -12]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des([3, 4, -3])),4),4)",
    "io_inp": [
      3,
      4,
      -3
    ],
    "io_out": [
      16,
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(input)),4),4)"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [4, 2, -10]",
    "output": "generated_output : list = mul_n(sort_asc([-1, -2, 5]),-2)",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      4,
      2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-1, -4, -3, -1, 0]\noutput : list = [4, 3]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(drop([-1, -4, -3, -1, 0],3)),-5),-2),1)",
    "io_inp": [
      -1,
      -4,
      -3,
      -1,
      0
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(drop(input,3)),-5),-2),1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [75, -15]",
    "output": "generated_output : list = sort_des(mul_n(mul_n([5, -1],-3),-5))",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      75,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(input,-3),-5))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [35, 30]",
    "output": "generated_output : list = take(add_n(add_n(mul_n(reverse([4, 5]),5),5),5),5)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      35,
      30
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(mul_n(reverse(input),5),5),5),5)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [2, 0, -3]",
    "output": "generated_output : list = sort_des(reverse(reverse([2, 0, -3])))",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [2, 1, -4, 3]\noutput : list = [3, 2, 1, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n([2, 1, -4, 3],1)))),-1)",
    "io_inp": [
      2,
      1,
      -4,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(reverse(sub_n(input,1)))),-1)"
  },
  {
    "input": "input : list = [1, -5, -1, -2, -1, 0]\noutput : list = [20, 8, 4, 4, 0, -4]",
    "output": "generated_output : list = mul_n(sort_asc([1, -5, -1, -2, -1, 0]),-4)",
    "io_inp": [
      1,
      -5,
      -1,
      -2,
      -1,
      0
    ],
    "io_out": [
      20,
      8,
      4,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-14, 11]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n([3, -2],5))),31),4)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -14,
      11
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(mul_n(input,5))),31),4)"
  },
  {
    "input": "input : list = [3, 4, 1, -3]\noutput : list = [7]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(take([3, 4, 1, -3],1)),4)),1)",
    "io_inp": [
      3,
      4,
      1,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(take(input,1)),4)),1)"
  },
  {
    "input": "input : list = [-2, 5, 0, 3, 1, 4]\noutput : list = [-5, 2, -3, 0, -2, 1]",
    "output": "generated_output : list = add_n([-2, 5, 0, 3, 1, 4],-3)",
    "io_inp": [
      -2,
      5,
      0,
      3,
      1,
      4
    ],
    "io_out": [
      -5,
      2,
      -3,
      0,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sort_des([4, -1]),12)),-1),3)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sort_des(input),12)),-1),3)"
  },
  {
    "input": "input : list = [5, -4, -4]\noutput : list = [20, -16, -16]",
    "output": "generated_output : list = mul_n(mul_n([5, -4, -4],2),2)",
    "io_inp": [
      5,
      -4,
      -4
    ],
    "io_out": [
      20,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),2)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(add_n([-1, -3],-4),2))))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(add_n(input,-4),2))))"
  },
  {
    "input": "input : list = [0, -3, -5, 4]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(take([0, -3, -5, 4],1),-1),-1),1))",
    "io_inp": [
      0,
      -3,
      -5,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(take(input,1),-1),-1),1))"
  },
  {
    "input": "input : list = [-2, -5, 2, 3, 2]\noutput : list = [17, 12, 12, -8, -23]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n([-2, -5, 2, 3, 2],5)),2))",
    "io_inp": [
      -2,
      -5,
      2,
      3,
      2
    ],
    "io_out": [
      17,
      12,
      12,
      -8,
      -23
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(input,5)),2))"
  },
  {
    "input": "input : list = [0, 3, 0]\noutput : list = [-5, -5, 10]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(mul_n([0, 3, 0],5)),5)),5)",
    "io_inp": [
      0,
      3,
      0
    ],
    "io_out": [
      -5,
      -5,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(mul_n(input,5)),5)),5)"
  },
  {
    "input": "input : list = [0, -2, -2]\noutput : list = [28, 28, 20]",
    "output": "generated_output : list = reverse(take(sort_asc(mul_n(add_n([0, -2, -2],-5),-4)),39))",
    "io_inp": [
      0,
      -2,
      -2
    ],
    "io_out": [
      28,
      28,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(mul_n(add_n(input,-5),-4)),39))"
  },
  {
    "input": "input : list = [3, -5, 2, -1]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des(take([3, -5, 2, -1],2)),28)))",
    "io_inp": [
      3,
      -5,
      2,
      -1
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(take(input,2)),28)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [6, -3]",
    "output": "generated_output : list = take(sub_n(take(sub_n([4, -5],1),4),-3),14)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      6,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sub_n(input,1),4),-3),14)"
  },
  {
    "input": "input : list = [-4, 2, -3, -3, -3, 4]\noutput : list = [-24, -4, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(take([-4, 2, -3, -3, -3, 4],3)),-4),40),-4)",
    "io_inp": [
      -4,
      2,
      -3,
      -3,
      -3,
      4
    ],
    "io_out": [
      -24,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(take(input,3)),-4),40),-4)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(take([-3, 2, -5],1),-1)))",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(take(input,1),-1)))"
  },
  {
    "input": "input : list = [5, -4, -3]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, -3],1)",
    "io_inp": [
      5,
      -4,
      -3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -4, -2, -4, 3, 0]\noutput : list = [6, 4, 1, -1, -3, -3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des([5, -4, -2, -4, 3, 0]),2),-3)",
    "io_inp": [
      5,
      -4,
      -2,
      -4,
      3,
      0
    ],
    "io_out": [
      6,
      4,
      1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(input),2),-3)"
  },
  {
    "input": "input : list = [2, 2, -5]\noutput : list = [-7, 0, 0]",
    "output": "generated_output : list = add_n(reverse([2, 2, -5]),-2)",
    "io_inp": [
      2,
      2,
      -5
    ],
    "io_out": [
      -7,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [5, -1, -5]\noutput : list = [-32, -8, 8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(reverse([5, -1, -5])),3)),-4)",
    "io_inp": [
      5,
      -1,
      -5
    ],
    "io_out": [
      -32,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(reverse(input)),3)),-4)"
  },
  {
    "input": "input : list = [2, 5, 2, 2, 0, -2]\noutput : list = [-4, -2, 0, 0, 0, 3]",
    "output": "generated_output : list = take(add_n(sort_asc(sort_des(reverse([2, 5, 2, 2, 0, -2]))),-2),56)",
    "io_inp": [
      2,
      5,
      2,
      2,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sort_des(reverse(input))),-2),56)"
  },
  {
    "input": "input : list = [-3, 3, -3, -1, -3, 2]\noutput : list = [0, 6, 0, 2, 0, 5]",
    "output": "generated_output : list = sub_n([-3, 3, -3, -1, -3, 2],-3)",
    "io_inp": [
      -3,
      3,
      -3,
      -1,
      -3,
      2
    ],
    "io_out": [
      0,
      6,
      0,
      2,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, -1, -1, -2, 2]\noutput : list = [-4, -12, -12, -8, -24]",
    "output": "generated_output : list = mul_n(add_n([-3, -1, -1, -2, 2],4),-4)",
    "io_inp": [
      -3,
      -1,
      -1,
      -2,
      2
    ],
    "io_out": [
      -4,
      -12,
      -12,
      -8,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,4),-4)"
  },
  {
    "input": "input : list = [-4, -5, -1, 3, 5]\noutput : list = [-5, -4, -1, 3, 5]",
    "output": "generated_output : list = sort_asc([-4, -5, -1, 3, 5])",
    "io_inp": [
      -4,
      -5,
      -1,
      3,
      5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -5, -4, -1]\noutput : list = [-5, -4, -4, -1]",
    "output": "generated_output : list = sort_asc(take(sort_asc([-4, -5, -4, -1]),24))",
    "io_inp": [
      -4,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),24))"
  },
  {
    "input": "input : list = [-4, 2, 3, -2]\noutput : list = [1, 7, 8, 3]",
    "output": "generated_output : list = take(add_n([-4, 2, 3, -2],5),21)",
    "io_inp": [
      -4,
      2,
      3,
      -2
    ],
    "io_out": [
      1,
      7,
      8,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),21)"
  },
  {
    "input": "input : list = [1, -1, 5, 0, 5]\noutput : list = [-5, -10, -15, -35, -35]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sub_n([1, -1, 5, 0, 5],-2)),-5)))",
    "io_inp": [
      1,
      -1,
      5,
      0,
      5
    ],
    "io_out": [
      -5,
      -10,
      -15,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sub_n(input,-2)),-5)))"
  },
  {
    "input": "input : list = [2, 0, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(sub_n(take([2, 0, -1],1),1),2)",
    "io_inp": [
      2,
      0,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,1),1),2)"
  },
  {
    "input": "input : list = [5, -2, -2, 4, -1]\noutput : list = [-25, 10, 10, -20, 5]",
    "output": "generated_output : list = mul_n([5, -2, -2, 4, -1],-5)",
    "io_inp": [
      5,
      -2,
      -2,
      4,
      -1
    ],
    "io_out": [
      -25,
      10,
      10,
      -20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [1, 2, 1, -4, 4, -3]\noutput : list = [0, 5, 0, -25, 15, -20]",
    "output": "generated_output : list = sub_n(mul_n([1, 2, 1, -4, 4, -3],5),5)",
    "io_inp": [
      1,
      2,
      1,
      -4,
      4,
      -3
    ],
    "io_out": [
      0,
      5,
      0,
      -25,
      15,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),5)"
  },
  {
    "input": "input : list = [-1, -3, 5]\noutput : list = [-4, -12, 20]",
    "output": "generated_output : list = mul_n(mul_n([-1, -3, 5],-2),-2)",
    "io_inp": [
      -1,
      -3,
      5
    ],
    "io_out": [
      -4,
      -12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),-2)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [0, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(reverse([1, 3, 4]),-1))))",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-4, 3, -2, 0]\noutput : list = [4, 2, 0, -3]",
    "output": "generated_output : list = mul_n(sort_asc([-4, 3, -2, 0]),-1)",
    "io_inp": [
      -4,
      3,
      -2,
      0
    ],
    "io_out": [
      4,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [-4, 2, 1, 2, 3, -4]\noutput : list = [-6, 0, -1, 0, 1, -6]",
    "output": "generated_output : list = take(take(mul_n(add_n(sub_n([-4, 2, 1, 2, 3, -4],5),3),1),24),27)",
    "io_inp": [
      -4,
      2,
      1,
      2,
      3,
      -4
    ],
    "io_out": [
      -6,
      0,
      -1,
      0,
      1,
      -6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(add_n(sub_n(input,5),3),1),24),27)"
  },
  {
    "input": "input : list = [-1, 0, 4]\noutput : list = [2, 0, -8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-1, 0, 4])),-2)",
    "io_inp": [
      -1,
      0,
      4
    ],
    "io_out": [
      2,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [3, 4, 5]\noutput : list = [4, 5, 6]",
    "output": "generated_output : list = add_n([3, 4, 5],1)",
    "io_inp": [
      3,
      4,
      5
    ],
    "io_out": [
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, 1, -1]\noutput : list = [1, -1, -3]",
    "output": "generated_output : list = sort_des([-3, 1, -1])",
    "io_inp": [
      -3,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-9, -13]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(reverse([-4, -3]),4),-2),2),-1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(reverse(input),4),-2),2),-1)"
  },
  {
    "input": "input : list = [2, 1, -4, -1]\noutput : list = [-4, -1, 1, 2]",
    "output": "generated_output : list = reverse(sort_des([2, 1, -4, -1]))",
    "io_inp": [
      2,
      1,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 4, 0]\noutput : list = [0, 4, 8]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(add_n([-4, 4, 0],-2),-3),3)))",
    "io_inp": [
      -4,
      4,
      0
    ],
    "io_out": [
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(add_n(input,-2),-3),3)))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sub_n([4, -2],2))))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sub_n(input,2))))"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [4, 6, 7]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc([0, -2, 1]),1),2),-5)",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(input),1),2),-5)"
  },
  {
    "input": "input : list = [-1, 2, 3, 1, 5]\noutput : list = [-5, -3, -2, -1, 1]",
    "output": "generated_output : list = sort_asc(sub_n([-1, 2, 3, 1, 5],4))",
    "io_inp": [
      -1,
      2,
      3,
      1,
      5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,4))"
  },
  {
    "input": "input : list = [5, -5, 2, -3, -5]\noutput : list = [5]",
    "output": "generated_output : list = sort_asc(take(add_n(sub_n([5, -5, 2, -3, -5],1),1),1))",
    "io_inp": [
      5,
      -5,
      2,
      -3,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sub_n(input,1),1),1))"
  },
  {
    "input": "input : list = [-5, -5, 0, -5, -3]\noutput : list = [-33, -63, 12]",
    "output": "generated_output : list = mul_n(reverse(add_n(drop(mul_n([-5, -5, 0, -5, -3],5),2),4)),3)",
    "io_inp": [
      -5,
      -5,
      0,
      -5,
      -3
    ],
    "io_out": [
      -33,
      -63,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(drop(mul_n(input,5),2),4)),3)"
  },
  {
    "input": "input : list = [-2, -2, -5, 1]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sub_n(take([-2, -2, -5, 1],1),-5),-4)))",
    "io_inp": [
      -2,
      -2,
      -5,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sub_n(take(input,1),-5),-4)))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [45, 54]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sub_n([-2, -3],3)),-3)),3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      45,
      54
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(sub_n(input,3)),-3)),3)"
  },
  {
    "input": "input : list = [1, 3, 5, 5, -5]\noutput : list = [-18, 12, 22, 32, 32]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(mul_n([1, 3, 5, 5, -5],5))),3),4)",
    "io_inp": [
      1,
      3,
      5,
      5,
      -5
    ],
    "io_out": [
      -18,
      12,
      22,
      32,
      32
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(mul_n(input,5))),3),4)"
  },
  {
    "input": "input : list = [-3, -2, -1, -4, 5]\noutput : list = [-5, -4, -3, -2, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(sub_n([-3, -2, -1, -4, 5],4)),-2)),-1)",
    "io_inp": [
      -3,
      -2,
      -1,
      -4,
      5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(sub_n(input,4)),-2)),-1)"
  },
  {
    "input": "input : list = [-5, -3, -4, 2]\noutput : list = [5, 10]",
    "output": "generated_output : list = drop(sort_asc(add_n(sort_des(sub_n([-5, -3, -4, 2],-3)),5)),2)",
    "io_inp": [
      -5,
      -3,
      -4,
      2
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(sort_des(sub_n(input,-3)),5)),2)"
  },
  {
    "input": "input : list = [3, -3, 4, 1, 0]\noutput : list = [4, 3, 1, 0, -3]",
    "output": "generated_output : list = sort_des([3, -3, 4, 1, 0])",
    "io_inp": [
      3,
      -3,
      4,
      1,
      0
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [6, 8]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(sub_n([0, -2],-4))),18),4)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(sub_n(input,-4))),18),4)"
  },
  {
    "input": "input : list = [-4, -5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = drop([-4, -5, -1],1)",
    "io_inp": [
      -4,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -2, 5, -3]\noutput : list = [5, 4, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des([4, -2, 5, -3])))))",
    "io_inp": [
      4,
      -2,
      5,
      -3
    ],
    "io_out": [
      5,
      4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [-2]",
    "output": "generated_output : list = take(sub_n(take(reverse(take([-4, -3, 3],1)),11),-2),38)",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(take(input,1)),11),-2),38)"
  },
  {
    "input": "input : list = [-4, 1, 5, -1, 1]\noutput : list = [-56, -32, -16, -16, 16]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sub_n([-4, 1, 5, -1, 1],3)),2)),4)",
    "io_inp": [
      -4,
      1,
      5,
      -1,
      1
    ],
    "io_out": [
      -56,
      -32,
      -16,
      -16,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sub_n(input,3)),2)),4)"
  },
  {
    "input": "input : list = [1, 0, -4, 0, -3, 5]\noutput : list = [12, 9, 0, 0, -3, -15]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(reverse([1, 0, -4, 0, -3, 5]))),3),-1)",
    "io_inp": [
      1,
      0,
      -4,
      0,
      -3,
      5
    ],
    "io_out": [
      12,
      9,
      0,
      0,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_des(reverse(input))),3),-1)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [0, 5, -2]",
    "output": "generated_output : list = reverse([-2, 5, 0])",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      0,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0, 2, 5, -2]\noutput : list = [-2, 5, 2, 0, -5]",
    "output": "generated_output : list = take(reverse([-5, 0, 2, 5, -2]),18)",
    "io_inp": [
      -5,
      0,
      2,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(input),18)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n([-1, 3],-5)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-7, -4]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n([-3, 0],4))))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(input,4))))"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [-2, -11]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(drop([-1, 4, -5],1))),3),3)",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(drop(input,1))),3),3)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([2, 0]),1),-1)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),1),-1)"
  },
  {
    "input": "input : list = [0, -4, -1, -3, -5, -3]\noutput : list = [0, -15, -5, 5, -5]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(drop([0, -4, -1, -3, -5, -3],1),26),3),-1),-5)",
    "io_inp": [
      0,
      -4,
      -1,
      -3,
      -5,
      -3
    ],
    "io_out": [
      0,
      -15,
      -5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(drop(input,1),26),3),-1),-5)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [4, -4]",
    "output": "generated_output : list = sub_n(sort_des([3, -5]),-1)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [4, 2, -4, 3, -2]\noutput : list = [0, -2, -8, -1, -6]",
    "output": "generated_output : list = add_n(add_n([4, 2, -4, 3, -2],-2),-2)",
    "io_inp": [
      4,
      2,
      -4,
      3,
      -2
    ],
    "io_out": [
      0,
      -2,
      -8,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-2),-2)"
  },
  {
    "input": "input : list = [-2, 5, -5, 1]\noutput : list = [8, 4, 1, -2]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(sub_n([-2, 5, -5, 1],-1)),2)),25)",
    "io_inp": [
      -2,
      5,
      -5,
      1
    ],
    "io_out": [
      8,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(sub_n(input,-1)),2)),25)"
  },
  {
    "input": "input : list = [4, -2, 0, 4, -4]\noutput : list = [4, 4, 0, -2, -4]",
    "output": "generated_output : list = sort_des(reverse([4, -2, 0, 4, -4]))",
    "io_inp": [
      4,
      -2,
      0,
      4,
      -4
    ],
    "io_out": [
      4,
      4,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [2, 3, -5, 0, -3, 2]\noutput : list = [-20, -12, 0, 8, 8, 12]",
    "output": "generated_output : list = take(mul_n(sort_asc([2, 3, -5, 0, -3, 2]),4),34)",
    "io_inp": [
      2,
      3,
      -5,
      0,
      -3,
      2
    ],
    "io_out": [
      -20,
      -12,
      0,
      8,
      8,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(input),4),34)"
  },
  {
    "input": "input : list = [5, 0, -4, 3, 2, -1]\noutput : list = [-15, 0, 12, -9, -6, 3]",
    "output": "generated_output : list = mul_n([5, 0, -4, 3, 2, -1],-3)",
    "io_inp": [
      5,
      0,
      -4,
      3,
      2,
      -1
    ],
    "io_out": [
      -15,
      0,
      12,
      -9,
      -6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [5, 5, 0, -1]\noutput : list = [-56, -40, 40, 40]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(mul_n([5, 5, 0, -1],-2)),5),-2),4)",
    "io_inp": [
      5,
      5,
      0,
      -1
    ],
    "io_out": [
      -56,
      -40,
      40,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(mul_n(input,-2)),5),-2),4)"
  },
  {
    "input": "input : list = [-1, 2, -2, -4, 2]\noutput : list = [-2, 0, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(add_n([-1, 2, -2, -4, 2],-2),20),4)))",
    "io_inp": [
      -1,
      2,
      -2,
      -4,
      2
    ],
    "io_out": [
      -2,
      0,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(add_n(input,-2),20),4)))"
  },
  {
    "input": "input : list = [4, 5, 2, -4, -3]\noutput : list = [5, 2, -4, -3]",
    "output": "generated_output : list = drop([4, 5, 2, -4, -3],1)",
    "io_inp": [
      4,
      5,
      2,
      -4,
      -3
    ],
    "io_out": [
      5,
      2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2, 2, -4, 1]\noutput : list = [2, 2, 2, 1, -4]",
    "output": "generated_output : list = sort_des([2, 2, 2, -4, 1])",
    "io_inp": [
      2,
      2,
      2,
      -4,
      1
    ],
    "io_out": [
      2,
      2,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, 1, -2, 1]\noutput : list = [5, 2, 2]",
    "output": "generated_output : list = add_n(take(mul_n([4, 1, 1, -2, 1],1),3),1)",
    "io_inp": [
      4,
      1,
      1,
      -2,
      1
    ],
    "io_out": [
      5,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,1),3),1)"
  },
  {
    "input": "input : list = [4, 4, -5, 0, 4, -2]\noutput : list = [7, 7, -2, 3, 7, 1]",
    "output": "generated_output : list = add_n(sub_n([4, 4, -5, 0, 4, -2],-2),1)",
    "io_inp": [
      4,
      4,
      -5,
      0,
      4,
      -2
    ],
    "io_out": [
      7,
      7,
      -2,
      3,
      7,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),1)"
  },
  {
    "input": "input : list = [4, -2, -3, -3, -5]\noutput : list = [13, 13, 23]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(drop([4, -2, -3, -3, -5],2),-5))),2)",
    "io_inp": [
      4,
      -2,
      -3,
      -3,
      -5
    ],
    "io_out": [
      13,
      13,
      23
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(drop(input,2),-5))),2)"
  },
  {
    "input": "input : list = [-3, -4, -2, 5]\noutput : list = [5, -2, -3, -4]",
    "output": "generated_output : list = take(reverse(reverse(reverse(sort_asc([-3, -4, -2, 5])))),29)",
    "io_inp": [
      -3,
      -4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(sort_asc(input)))),29)"
  },
  {
    "input": "input : list = [-3, -3, -1, -2, 2, 3]\noutput : list = [-3, -1, -2, 2, 3]",
    "output": "generated_output : list = drop([-3, -3, -1, -2, 2, 3],1)",
    "io_inp": [
      -3,
      -3,
      -1,
      -2,
      2,
      3
    ],
    "io_out": [
      -3,
      -1,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -3, 4, -1, 2]\noutput : list = [4, 2, -1, -2, -3]",
    "output": "generated_output : list = sort_des(take(take(reverse(reverse([-2, -3, 4, -1, 2])),5),23))",
    "io_inp": [
      -2,
      -3,
      4,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(reverse(input)),5),23))"
  },
  {
    "input": "input : list = [-1, -3, 1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take([-1, -3, 1, -3],2)",
    "io_inp": [
      -1,
      -3,
      1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [16, 40]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse([-2, 1]),3),-2),4)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      16,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(input),3),-2),4)"
  },
  {
    "input": "input : list = [0, 3, -3, 2]\noutput : list = [14, 17, 11, 16]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(sub_n([0, 3, -3, 2],-5),-4))),5)",
    "io_inp": [
      0,
      3,
      -3,
      2
    ],
    "io_out": [
      14,
      17,
      11,
      16
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(sub_n(input,-5),-4))),5)"
  },
  {
    "input": "input : list = [2, 1, -2, 1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(drop([2, 1, -2, 1],2)))))",
    "io_inp": [
      2,
      1,
      -2,
      1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(drop(input,2)))))"
  },
  {
    "input": "input : list = [-1, -1, 5]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_des(take([-1, -1, 5],1)),-1)",
    "io_inp": [
      -1,
      -1,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(input,1)),-1)"
  },
  {
    "input": "input : list = [0, -2, 3]\noutput : list = [2, 0, 5]",
    "output": "generated_output : list = add_n(sub_n([0, -2, 3],-1),1)",
    "io_inp": [
      0,
      -2,
      3
    ],
    "io_out": [
      2,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),1)"
  },
  {
    "input": "input : list = [-3, -3, 4, -4, 2]\noutput : list = [4, 2, -3, -3, -4]",
    "output": "generated_output : list = add_n(reverse(reverse(add_n(sort_des([-3, -3, 4, -4, 2]),4))),-4)",
    "io_inp": [
      -3,
      -3,
      4,
      -4,
      2
    ],
    "io_out": [
      4,
      2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(add_n(sort_des(input),4))),-4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [3, -6]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(reverse([-5, 4]),1))))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(take(sort_asc([5, -3]),5),20)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(input),5),20)"
  },
  {
    "input": "input : list = [-4, 5, 5, -2]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = drop([-4, 5, 5, -2],1)",
    "io_inp": [
      -4,
      5,
      5,
      -2
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 3, -5, -3, 2, 1]\noutput : list = [17, 11, 11, -1, -4, -7]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_des([-3, 3, -5, -3, 2, 1]),-3),2))",
    "io_inp": [
      -3,
      3,
      -5,
      -3,
      2,
      1
    ],
    "io_out": [
      17,
      11,
      11,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_des(input),-3),2))"
  },
  {
    "input": "input : list = [5, -3, -1]\noutput : list = [5, -1, -3]",
    "output": "generated_output : list = reverse(take(take(take(sort_asc([5, -3, -1]),11),28),27))",
    "io_inp": [
      5,
      -3,
      -1
    ],
    "io_out": [
      5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(sort_asc(input),11),28),27))"
  },
  {
    "input": "input : list = [3, -1, -1]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sub_n(add_n(take([3, -1, -1],1),5),4),1)",
    "io_inp": [
      3,
      -1,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(input,1),5),4),1)"
  },
  {
    "input": "input : list = [5, -4, 5, -5, -3, 2]\noutput : list = [2, -3, -5, 5, -4, 5]",
    "output": "generated_output : list = reverse(sub_n(add_n([5, -4, 5, -5, -3, 2],-5),-5))",
    "io_inp": [
      5,
      -4,
      5,
      -5,
      -3,
      2
    ],
    "io_out": [
      2,
      -3,
      -5,
      5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-5),-5))"
  },
  {
    "input": "input : list = [1, 2, -4]\noutput : list = [-4, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([1, 2, -4]))",
    "io_inp": [
      1,
      2,
      -4
    ],
    "io_out": [
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -1, 2, -2]\noutput : list = [0, 0, -3]",
    "output": "generated_output : list = add_n(take(sort_des([2, -1, 2, -2]),3),-2)",
    "io_inp": [
      2,
      -1,
      2,
      -2
    ],
    "io_out": [
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(input),3),-2)"
  },
  {
    "input": "input : list = [-5, 1, 3, 3]\noutput : list = [15, 15]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(drop([-5, 1, 3, 3],2),5)))",
    "io_inp": [
      -5,
      1,
      3,
      3
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(drop(input,2),5)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des([-4, 2])",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 3, 0, 5]\noutput : list = [240, 144, 0, 0]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(mul_n([0, 3, 0, 5],4)),3)),4)",
    "io_inp": [
      0,
      3,
      0,
      5
    ],
    "io_out": [
      240,
      144,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(mul_n(input,4)),3)),4)"
  },
  {
    "input": "input : list = [5, 3, -2, -5, 2, 4]\noutput : list = [13, 7, -8, -17, 4, 10]",
    "output": "generated_output : list = sub_n(mul_n([5, 3, -2, -5, 2, 4],3),2)",
    "io_inp": [
      5,
      3,
      -2,
      -5,
      2,
      4
    ],
    "io_out": [
      13,
      7,
      -8,
      -17,
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),2)"
  },
  {
    "input": "input : list = [-1, -4, 1, -1, 0, -4]\noutput : list = [12, 12, 3, 0, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(drop([-1, -4, 1, -1, 0, -4],1)),-3))",
    "io_inp": [
      -1,
      -4,
      1,
      -1,
      0,
      -4
    ],
    "io_out": [
      12,
      12,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(drop(input,1)),-3))"
  },
  {
    "input": "input : list = [-4, -1, 2, -3, 5, -1]\noutput : list = [4, 1, -2, -2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(add_n(add_n([-4, -1, 2, -3, 5, -1],1),-2))))",
    "io_inp": [
      -4,
      -1,
      2,
      -3,
      5,
      -1
    ],
    "io_out": [
      4,
      1,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(add_n(add_n(input,1),-2))))"
  },
  {
    "input": "input : list = [1, -2, 0, 4, 2, -4]\noutput : list = [-16, -8, 0, 4, 8, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([1, -2, 0, 4, 2, -4]),4))",
    "io_inp": [
      1,
      -2,
      0,
      4,
      2,
      -4
    ],
    "io_out": [
      -16,
      -8,
      0,
      4,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-1, 5, 2]\noutput : list = [-1, 2, 5]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(reverse([-1, 5, 2]),6)),4),-4)",
    "io_inp": [
      -1,
      5,
      2
    ],
    "io_out": [
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(reverse(input),6)),4),-4)"
  },
  {
    "input": "input : list = [0, 4, 1, -5]\noutput : list = [-5, 1, 4]",
    "output": "generated_output : list = sort_asc(drop([0, 4, 1, -5],1))",
    "io_inp": [
      0,
      4,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-3, 0, 3]\noutput : list = [-6, -3, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([-3, 0, 3])),3)",
    "io_inp": [
      -3,
      0,
      3
    ],
    "io_out": [
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [0, -1, 4, 3, -1]\noutput : list = [0, -1, -4, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_des(add_n([0, -1, 4, 3, -1],1)),-2),3))",
    "io_inp": [
      0,
      -1,
      4,
      3,
      -1
    ],
    "io_out": [
      0,
      -1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_des(add_n(input,1)),-2),3))"
  },
  {
    "input": "input : list = [5, -3, 0, -1, -5, 0]\noutput : list = [6, 1, 1, 0, -2, -4]",
    "output": "generated_output : list = sort_des(take(add_n(add_n(sort_des([5, -3, 0, -1, -5, 0]),2),-1),47))",
    "io_inp": [
      5,
      -3,
      0,
      -1,
      -5,
      0
    ],
    "io_out": [
      6,
      1,
      1,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(add_n(sort_des(input),2),-1),47))"
  },
  {
    "input": "input : list = [1, -3, 1, -1, -4, -5]\noutput : list = [10, 6, 10, 8, 5, 4]",
    "output": "generated_output : list = sub_n(add_n([1, -3, 1, -1, -4, -5],5),-4)",
    "io_inp": [
      1,
      -3,
      1,
      -1,
      -4,
      -5
    ],
    "io_out": [
      10,
      6,
      10,
      8,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),-4)"
  },
  {
    "input": "input : list = [2, 2, -1, 3, 4, 4]\noutput : list = [-1, 2, 2, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(reverse([2, 2, -1, 3, 4, 4]),-2)),2))",
    "io_inp": [
      2,
      2,
      -1,
      3,
      4,
      4
    ],
    "io_out": [
      -1,
      2,
      2,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(reverse(input),-2)),2))"
  },
  {
    "input": "input : list = [-5, 4, -3, -1]\noutput : list = [1, 10]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse(take([-5, 4, -3, -1],2))),3),3)",
    "io_inp": [
      -5,
      4,
      -3,
      -1
    ],
    "io_out": [
      1,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(take(input,2))),3),3)"
  },
  {
    "input": "input : list = [3, 0, -4, -5, 3, -1]\noutput : list = [-3, 0, 4, 5, -3, 1]",
    "output": "generated_output : list = mul_n([3, 0, -4, -5, 3, -1],-1)",
    "io_inp": [
      3,
      0,
      -4,
      -5,
      3,
      -1
    ],
    "io_out": [
      -3,
      0,
      4,
      5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [-5, -3, -11]",
    "output": "generated_output : list = add_n(sub_n([2, 4, -4],5),-2)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      -5,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,5),-2)"
  },
  {
    "input": "input : list = [5, 4, 2, -1, 0, -5]\noutput : list = [11, 10, 8, 6, 5, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse([5, 4, 2, -1, 0, -5])),-2),-4)",
    "io_inp": [
      5,
      4,
      2,
      -1,
      0,
      -5
    ],
    "io_out": [
      11,
      10,
      8,
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(input)),-2),-4)"
  },
  {
    "input": "input : list = [3, 4, 2, -2]\noutput : list = [-19, -24, -14, 6]",
    "output": "generated_output : list = sub_n(take(mul_n(take(sub_n([3, 4, 2, -2],-1),4),-5),4),-1)",
    "io_inp": [
      3,
      4,
      2,
      -2
    ],
    "io_out": [
      -19,
      -24,
      -14,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(sub_n(input,-1),4),-5),4),-1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-1, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n([4, -2],5)),-4)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,5)),-4)"
  },
  {
    "input": "input : list = [3, 0, -4, 3, -2, -1]\noutput : list = [3, 3, 0, -1, -2, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(reverse([3, 0, -4, 3, -2, -1])),1))",
    "io_inp": [
      3,
      0,
      -4,
      3,
      -2,
      -1
    ],
    "io_out": [
      3,
      3,
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(reverse(input)),1))"
  },
  {
    "input": "input : list = [3, 1, -1, 3, -5, 2]\noutput : list = [18, 18, 15, 12, 6, -6]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_des([3, 1, -1, 3, -5, 2]))),-3),3)",
    "io_inp": [
      3,
      1,
      -1,
      3,
      -5,
      2
    ],
    "io_out": [
      18,
      18,
      15,
      12,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_des(input))),-3),3)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc([1, -3])",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -1, 0, -1, -5]\noutput : list = [-19, -3, -3, 1, 21]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n([5, -1, 0, -1, -5],4)),1),-2))",
    "io_inp": [
      5,
      -1,
      0,
      -1,
      -5
    ],
    "io_out": [
      -19,
      -3,
      -3,
      1,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(mul_n(input,4)),1),-2))"
  },
  {
    "input": "input : list = [-4, -4, 1, -5]\noutput : list = [20]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(drop(mul_n([-4, -4, 1, -5],-4),3))))",
    "io_inp": [
      -4,
      -4,
      1,
      -5
    ],
    "io_out": [
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(drop(mul_n(input,-4),3))))"
  },
  {
    "input": "input : list = [1, 5, -1, -5, 5, -4]\noutput : list = [-4]",
    "output": "generated_output : list = drop(mul_n(sub_n(reverse([1, 5, -1, -5, 5, -4]),2),4),5)",
    "io_inp": [
      1,
      5,
      -1,
      -5,
      5,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = drop(mul_n(sub_n(reverse(input),2),4),5)"
  },
  {
    "input": "input : list = [-2, 2, 3, -5, -1]\noutput : list = [10, -10, -15, 25, 5]",
    "output": "generated_output : list = mul_n([-2, 2, 3, -5, -1],-5)",
    "io_inp": [
      -2,
      2,
      3,
      -5,
      -1
    ],
    "io_out": [
      10,
      -10,
      -15,
      25,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 5, 4, -3]\noutput : list = [-9, 0, -1, -8]",
    "output": "generated_output : list = take(add_n([-4, 5, 4, -3],-5),13)",
    "io_inp": [
      -4,
      5,
      4,
      -3
    ],
    "io_out": [
      -9,
      0,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),13)"
  },
  {
    "input": "input : list = [-3, 2, 5, 1, -4]\noutput : list = [1, -2, -3, -7, -8]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(mul_n(sub_n([-3, 2, 5, 1, -4],-1),1),1),5))",
    "io_inp": [
      -3,
      2,
      5,
      1,
      -4
    ],
    "io_out": [
      1,
      -2,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(mul_n(sub_n(input,-1),1),1),5))"
  },
  {
    "input": "input : list = [-2, -2, 1, 2]\noutput : list = [-2, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -2, 1, 2]))",
    "io_inp": [
      -2,
      -2,
      1,
      2
    ],
    "io_out": [
      -2,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 3, 0, -5, 5, 5]\noutput : list = [9, 9, 7, 4, 0, -1]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_des([-4, 3, 0, -5, 5, 5])),-3),-4),3)",
    "io_inp": [
      -4,
      3,
      0,
      -5,
      5,
      5
    ],
    "io_out": [
      9,
      9,
      7,
      4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_des(input)),-3),-4),3)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [2, 2, 2]",
    "output": "generated_output : list = sort_asc([2, 2, 2])",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [0, -30, -75]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(add_n([1, -2, 3],-3)),-3)),-5)",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      0,
      -30,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(add_n(input,-3)),-3)),-5)"
  },
  {
    "input": "input : list = [-3, -4, 0, -3, -1, -2]\noutput : list = [-6, -2, -10, 2, -14, -10]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse([-3, -4, 0, -3, -1, -2]),4),2),1)",
    "io_inp": [
      -3,
      -4,
      0,
      -3,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -2,
      -10,
      2,
      -14,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(input),4),2),1)"
  },
  {
    "input": "input : list = [-5, -2, 5, 1]\noutput : list = [-20, -8, 4, 20]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc([-5, -2, 5, 1]),4)))",
    "io_inp": [
      -5,
      -2,
      5,
      1
    ],
    "io_out": [
      -20,
      -8,
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(input),4)))"
  },
  {
    "input": "input : list = [4, 2, 4, 2, 0]\noutput : list = [2, 4, 4, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc(take(add_n(sort_asc([4, 2, 4, 2, 0]),-2),28)),-4)",
    "io_inp": [
      4,
      2,
      4,
      2,
      0
    ],
    "io_out": [
      2,
      4,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(add_n(sort_asc(input),-2),28)),-4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-6, 12]",
    "output": "generated_output : list = reverse(mul_n([4, -2],3))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -6,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [0, -5, -1, 5, -4]\noutput : list = [-4, 5, -1, -5, 0]",
    "output": "generated_output : list = reverse([0, -5, -1, 5, -4])",
    "io_inp": [
      0,
      -5,
      -1,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -1,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 3]\noutput : list = [-6, -18]",
    "output": "generated_output : list = add_n(sort_des(mul_n(add_n(drop([-1, -1, 3],1),4),-3)),3)",
    "io_inp": [
      -1,
      -1,
      3
    ],
    "io_out": [
      -6,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(add_n(drop(input,1),4),-3)),3)"
  },
  {
    "input": "input : list = [-4, 4, 2]\noutput : list = [144, -144, -72]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(reverse(reverse([-4, 4, 2])),-3),-4),-3)",
    "io_inp": [
      -4,
      4,
      2
    ],
    "io_out": [
      144,
      -144,
      -72
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(reverse(reverse(input)),-3),-4),-3)"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [-6]",
    "output": "generated_output : list = add_n(add_n(take([0, -3, 4],1),-3),-3)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),-3),-3)"
  },
  {
    "input": "input : list = [-4, -2, -2, -2, 3]\noutput : list = [-2, -2, 3]",
    "output": "generated_output : list = drop([-4, -2, -2, -2, 3],2)",
    "io_inp": [
      -4,
      -2,
      -2,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [8, -28]",
    "output": "generated_output : list = add_n(mul_n(reverse(mul_n(sub_n([-4, 5],4),-1)),-4),4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      8,
      -28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(mul_n(sub_n(input,4),-1)),-4),4)"
  },
  {
    "input": "input : list = [-1, -4, -4, 2, 3, 1]\noutput : list = [-5, -5, -2, 0, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(sub_n([-1, -4, -4, 2, 3, 1],5),-2))),-2)",
    "io_inp": [
      -1,
      -4,
      -4,
      2,
      3,
      1
    ],
    "io_out": [
      -5,
      -5,
      -2,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(sub_n(input,5),-2))),-2)"
  },
  {
    "input": "input : list = [0, 1, 5, 3, 0]\noutput : list = [5, 3, 1, 0, 0]",
    "output": "generated_output : list = sort_des([0, 1, 5, 3, 0])",
    "io_inp": [
      0,
      1,
      5,
      3,
      0
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(mul_n([-3, -3],-1)))),-5)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(mul_n(input,-1)))),-5)"
  },
  {
    "input": "input : list = [3, 5, 1, -1]\noutput : list = [3, 5, 1, -1]",
    "output": "generated_output : list = reverse(reverse([3, 5, 1, -1]))",
    "io_inp": [
      3,
      5,
      1,
      -1
    ],
    "io_out": [
      3,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-2, -1, -5, 4]\noutput : list = [-10, -7, -6, -1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n([-2, -1, -5, 4],-5))),8))",
    "io_inp": [
      -2,
      -1,
      -5,
      4
    ],
    "io_out": [
      -10,
      -7,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n(input,-5))),8))"
  },
  {
    "input": "input : list = [0, 3, -2, 0, 1, 5]\noutput : list = [5, 3, 1, 0, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc([0, 3, -2, 0, 1, 5]))",
    "io_inp": [
      0,
      3,
      -2,
      0,
      1,
      5
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [0, 6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n([3, -3],3),-5)),-5)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(input,3),-5)),-5)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(add_n(reverse([2, 0]),3),-2)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),3),-2)"
  },
  {
    "input": "input : list = [-4, 4, 2, 0, -4, 2]\noutput : list = [-16, 8, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(take([-4, 4, 2, 0, -4, 2],3),2)),2))",
    "io_inp": [
      -4,
      4,
      2,
      0,
      -4,
      2
    ],
    "io_out": [
      -16,
      8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(take(input,3),2)),2))"
  },
  {
    "input": "input : list = [-4, 4, 1, 2]\noutput : list = [1, -1, -2, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_des([-4, 4, 1, 2])))),-3)",
    "io_inp": [
      -4,
      4,
      1,
      2
    ],
    "io_out": [
      1,
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(sort_des(input)))),-3)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-14, 4]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(mul_n([3, -3],-3))),-5))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -14,
      4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(mul_n(input,-3))),-5))"
  },
  {
    "input": "input : list = [-4, 5, -4, 0]\noutput : list = [-48, -48, 16, 96]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(add_n([-4, 5, -4, 0],1),4)),4))",
    "io_inp": [
      -4,
      5,
      -4,
      0
    ],
    "io_out": [
      -48,
      -48,
      16,
      96
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(mul_n(add_n(input,1),4)),4))"
  },
  {
    "input": "input : list = [-4, 0, 4, -5]\noutput : list = [-9, -8, -4]",
    "output": "generated_output : list = sort_asc(reverse(drop(sort_des(add_n([-4, 0, 4, -5],-4)),1)))",
    "io_inp": [
      -4,
      0,
      4,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(sort_des(add_n(input,-4)),1)))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(reverse([0, 4]),5)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [0, 5, 0, 2, 5, 5]\noutput : list = [-17, -17, -17, -8, -2, -2]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(mul_n([0, 5, 0, 2, 5, 5],-3))),-2))",
    "io_inp": [
      0,
      5,
      0,
      2,
      5,
      5
    ],
    "io_out": [
      -17,
      -17,
      -17,
      -8,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(mul_n(input,-3))),-2))"
  },
  {
    "input": "input : list = [4, 1, -3, -5]\noutput : list = [-1, 1, 5, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse([4, 1, -3, -5])),4)",
    "io_inp": [
      4,
      1,
      -3,
      -5
    ],
    "io_out": [
      -1,
      1,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(input)),4)"
  },
  {
    "input": "input : list = [-5, 0, 2, 0]\noutput : list = [-22, 3, 3, 13]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(mul_n(sort_asc([-5, 0, 2, 0]),5))),-3)",
    "io_inp": [
      -5,
      0,
      2,
      0
    ],
    "io_out": [
      -22,
      3,
      3,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(mul_n(sort_asc(input),5))),-3)"
  },
  {
    "input": "input : list = [-5, -5, 5, -3]\noutput : list = [11, -5]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(drop([-5, -5, 5, -3],2),-2)),1),-1)",
    "io_inp": [
      -5,
      -5,
      5,
      -3
    ],
    "io_out": [
      11,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(drop(input,2),-2)),1),-1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-13, -4]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(reverse([-4, -1])),3),-5),-4)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -13,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(reverse(input)),3),-5),-4)"
  },
  {
    "input": "input : list = [5, -2, 5, -2, 0, 1]\noutput : list = [6, 6, 2, 0, -8, -8]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n(reverse([5, -2, 5, -2, 0, 1]),1)),-2),39)",
    "io_inp": [
      5,
      -2,
      5,
      -2,
      0,
      1
    ],
    "io_out": [
      6,
      6,
      2,
      0,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(reverse(input),1)),-2),39)"
  },
  {
    "input": "input : list = [1, -5, -5, -5, -1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(take([1, -5, -5, -5, -1],2)))))",
    "io_inp": [
      1,
      -5,
      -5,
      -5,
      -1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(take(input,2)))))"
  },
  {
    "input": "input : list = [-4, -5, 0, -4]\noutput : list = [1, 2, 2, 6]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_asc([-4, -5, 0, -4]),3)),-3),1)",
    "io_inp": [
      -4,
      -5,
      0,
      -4
    ],
    "io_out": [
      1,
      2,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_asc(input),3)),-3),1)"
  },
  {
    "input": "input : list = [5, -3, 0, 5, -1]\noutput : list = [-1, 5, 0, -3, 5]",
    "output": "generated_output : list = reverse([5, -3, 0, 5, -1])",
    "io_inp": [
      5,
      -3,
      0,
      5,
      -1
    ],
    "io_out": [
      -1,
      5,
      0,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, 3, -3, -2]\noutput : list = [4, 3, -2, -3, -3]",
    "output": "generated_output : list = take(sort_des(reverse([4, -3, 3, -3, -2])),17)",
    "io_inp": [
      4,
      -3,
      3,
      -3,
      -2
    ],
    "io_out": [
      4,
      3,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),17)"
  },
  {
    "input": "input : list = [-4, -5, -4, -5, -5, 2]\noutput : list = [4, 5, 4, 5, 5, -2]",
    "output": "generated_output : list = mul_n([-4, -5, -4, -5, -5, 2],-1)",
    "io_inp": [
      -4,
      -5,
      -4,
      -5,
      -5,
      2
    ],
    "io_out": [
      4,
      5,
      4,
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [0, -5, 0, -5, 0]\noutput : list = [-20, -20, 0, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(take(mul_n(sort_asc([0, -5, 0, -5, 0]),4),17)))",
    "io_inp": [
      0,
      -5,
      0,
      -5,
      0
    ],
    "io_out": [
      -20,
      -20,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(mul_n(sort_asc(input),4),17)))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-8, 7]",
    "output": "generated_output : list = sub_n(mul_n([1, -4],-3),5)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),5)"
  },
  {
    "input": "input : list = [-5, 2, 0, -4]\noutput : list = [-5, -7, -11]",
    "output": "generated_output : list = sub_n(take(sort_des(take(add_n([-5, 2, 0, -4],-2),15)),3),5)",
    "io_inp": [
      -5,
      2,
      0,
      -4
    ],
    "io_out": [
      -5,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(take(add_n(input,-2),15)),3),5)"
  },
  {
    "input": "input : list = [2, 5, -1, -4]\noutput : list = [9, 6, 3, 0]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(sub_n([2, 5, -1, -4],-4),-4)),4))",
    "io_inp": [
      2,
      5,
      -1,
      -4
    ],
    "io_out": [
      9,
      6,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(sub_n(input,-4),-4)),4))"
  },
  {
    "input": "input : list = [2, -4, 2, -2]\noutput : list = [-9, -7, -3, -3]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_des([2, -4, 2, -2]))),22),-5)",
    "io_inp": [
      2,
      -4,
      2,
      -2
    ],
    "io_out": [
      -9,
      -7,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(sort_des(input))),22),-5)"
  },
  {
    "input": "input : list = [1, 3, 2, 5, 1, -3]\noutput : list = [-3, 1, 5, 2, 3, 1]",
    "output": "generated_output : list = reverse([1, 3, 2, 5, 1, -3])",
    "io_inp": [
      1,
      3,
      2,
      5,
      1,
      -3
    ],
    "io_out": [
      -3,
      1,
      5,
      2,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, 4]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(take([1, 3, 4],1),-3),23),2))",
    "io_inp": [
      1,
      3,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(take(input,1),-3),23),2))"
  },
  {
    "input": "input : list = [-2, 0, 0, 0, 1, 5]\noutput : list = [0, 0, -2]",
    "output": "generated_output : list = drop(sort_des([-2, 0, 0, 0, 1, 5]),3)",
    "io_inp": [
      -2,
      0,
      0,
      0,
      1,
      5
    ],
    "io_out": [
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),3)"
  },
  {
    "input": "input : list = [3, -2, -3, -3]\noutput : list = [15, -5, -9, -9]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(reverse([3, -2, -3, -3])),4),3),33)",
    "io_inp": [
      3,
      -2,
      -3,
      -3
    ],
    "io_out": [
      15,
      -5,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(reverse(input)),4),3),33)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [10, 7]",
    "output": "generated_output : list = sort_des(take(add_n([2, 5],5),5))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      10,
      7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,5),5))"
  },
  {
    "input": "input : list = [5, -4, 4, 2]\noutput : list = [2, -7, 1, -1]",
    "output": "generated_output : list = mul_n(add_n([5, -4, 4, 2],-3),1)",
    "io_inp": [
      5,
      -4,
      4,
      2
    ],
    "io_out": [
      2,
      -7,
      1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-3),1)"
  },
  {
    "input": "input : list = [2, 1, 4, -2]\noutput : list = [8, 20, 24, 32]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(sort_asc([2, 1, 4, -2])),4),4))",
    "io_inp": [
      2,
      1,
      4,
      -2
    ],
    "io_out": [
      8,
      20,
      24,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(sort_asc(input)),4),4))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-40, -15]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_asc([0, -5]))),-3),5)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -40,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(sort_asc(input))),-3),5)"
  },
  {
    "input": "input : list = [-5, 2, -3]\noutput : list = [15, 9, -6]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(mul_n([-5, 2, -3],-3)),22),4),-4)",
    "io_inp": [
      -5,
      2,
      -3
    ],
    "io_out": [
      15,
      9,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(mul_n(input,-3)),22),4),-4)"
  },
  {
    "input": "input : list = [5, 1, -4, 2, 0]\noutput : list = [0, -6, -1, 3]",
    "output": "generated_output : list = take(drop(sub_n(reverse([5, 1, -4, 2, 0]),2),1),6)",
    "io_inp": [
      5,
      1,
      -4,
      2,
      0
    ],
    "io_out": [
      0,
      -6,
      -1,
      3
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(reverse(input),2),1),6)"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-33, -53, -38]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(reverse([2, -1, 3]),-5),4),5),3)",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -33,
      -53,
      -38
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(reverse(input),-5),4),5),3)"
  },
  {
    "input": "input : list = [0, 1, -4, -2, 5, 2]\noutput : list = [-4, 0, -20, -12, 16, 4]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n([0, 1, -4, -2, 5, 2],-4),-4),-1),43)",
    "io_inp": [
      0,
      1,
      -4,
      -2,
      5,
      2
    ],
    "io_out": [
      -4,
      0,
      -20,
      -12,
      16,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(input,-4),-4),-1),43)"
  },
  {
    "input": "input : list = [-1, -1, 5, 2]\noutput : list = [1, -2, -5, -5]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sort_asc([-1, -1, 5, 2]))),4))",
    "io_inp": [
      -1,
      -1,
      5,
      2
    ],
    "io_out": [
      1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [5, -2, -4]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_asc([5, -4, -2]),10),1))",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      5,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_asc(input),10),1))"
  },
  {
    "input": "input : list = [-2, 5, 2, -1, 4]\noutput : list = [24, 20, 12, 0, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n([-2, 5, 2, -1, 4],4),-2)),-2)",
    "io_inp": [
      -2,
      5,
      2,
      -1,
      4
    ],
    "io_out": [
      24,
      20,
      12,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(input,4),-2)),-2)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(sub_n(sort_asc(take(sort_asc([-2, -4]),3)),-1),33)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(take(sort_asc(input),3)),-1),33)"
  },
  {
    "input": "input : list = [-2, 3, -3, 4, 3, 1]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take([-2, 3, -3, 4, 3, 1],2)",
    "io_inp": [
      -2,
      3,
      -3,
      4,
      3,
      1
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des([5, -2]),-3),-2))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(input),-3),-2))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [9, -6]",
    "output": "generated_output : list = reverse(add_n(mul_n([1, -4],-3),-3))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-3),-3))"
  },
  {
    "input": "input : list = [1, 5, 3]\noutput : list = [13, 3]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(drop([1, 5, 3],1),3)),5),3)",
    "io_inp": [
      1,
      5,
      3
    ],
    "io_out": [
      13,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(drop(input,1),3)),5),3)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc([-2, -2])",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, 3, -2]\noutput : list = [31, 23, 11, 3]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(sub_n([0, 5, 3, -2],5),-4)),1),2)",
    "io_inp": [
      0,
      5,
      3,
      -2
    ],
    "io_out": [
      31,
      23,
      11,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(sub_n(input,5),-4)),1),2)"
  },
  {
    "input": "input : list = [-3, -4, 0, 1, -5]\noutput : list = [9, 8, 5, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(reverse([-3, -4, 0, 1, -5]),5),-1)),-4)",
    "io_inp": [
      -3,
      -4,
      0,
      1,
      -5
    ],
    "io_out": [
      9,
      8,
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(reverse(input),5),-1)),-4)"
  },
  {
    "input": "input : list = [0, -1, 3, 2]\noutput : list = [15, 10, 0, -5]",
    "output": "generated_output : list = sort_des(mul_n([0, -1, 3, 2],5))",
    "io_inp": [
      0,
      -1,
      3,
      2
    ],
    "io_out": [
      15,
      10,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [-4, 2, -5, -1]\noutput : list = [-3, -6, -9, -10]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sort_asc([-4, 2, -5, -1]),-5),10)))",
    "io_inp": [
      -4,
      2,
      -5,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sort_asc(input),-5),10)))"
  },
  {
    "input": "input : list = [-2, -4, -3, 2]\noutput : list = [6, -2, -4, -6]",
    "output": "generated_output : list = sub_n(take(take(sort_des(mul_n([-2, -4, -3, 2],2)),11),34),-2)",
    "io_inp": [
      -2,
      -4,
      -3,
      2
    ],
    "io_out": [
      6,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_des(mul_n(input,2)),11),34),-2)"
  },
  {
    "input": "input : list = [3, -2, 0, -1, -4, 3]\noutput : list = [140, 100, 80, 60, 0, 0]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(mul_n(add_n([3, -2, 0, -1, -4, 3],-3),-5)),4))",
    "io_inp": [
      3,
      -2,
      0,
      -1,
      -4,
      3
    ],
    "io_out": [
      140,
      100,
      80,
      60,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(mul_n(add_n(input,-3),-5)),4))"
  },
  {
    "input": "input : list = [2, 1, 4, -2, -4, 4]\noutput : list = [2, 1]",
    "output": "generated_output : list = take([2, 1, 4, -2, -4, 4],2)",
    "io_inp": [
      2,
      1,
      4,
      -2,
      -4,
      4
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-6, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(mul_n([4, 3],-1))),-1),4)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_asc(mul_n(input,-1))),-1),4)"
  },
  {
    "input": "input : list = [-5, 3, 3, 5, 5, -3]\noutput : list = [-15, 9, 9, 15, 15, -9]",
    "output": "generated_output : list = mul_n([-5, 3, 3, 5, 5, -3],3)",
    "io_inp": [
      -5,
      3,
      3,
      5,
      5,
      -3
    ],
    "io_out": [
      -15,
      9,
      9,
      15,
      15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = drop([-3, 5, -4],1)",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -1, 1, -3, 3]\noutput : list = [11, 11, 9, 7, 5]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n(sort_des([3, -1, 1, -3, 3]),-3),5)))",
    "io_inp": [
      3,
      -1,
      1,
      -3,
      3
    ],
    "io_out": [
      11,
      11,
      9,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(sort_des(input),-3),5)))"
  },
  {
    "input": "input : list = [1, 1, -2, 3]\noutput : list = [3, -2, 1, 1]",
    "output": "generated_output : list = reverse([1, 1, -2, 3])",
    "io_inp": [
      1,
      1,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 3, -4, -5, 0, -3]\noutput : list = [-10, -9, -8, -5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(drop([-2, 3, -4, -5, 0, -3],2),16)),-5))",
    "io_inp": [
      -2,
      3,
      -4,
      -5,
      0,
      -3
    ],
    "io_out": [
      -10,
      -9,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(drop(input,2),16)),-5))"
  },
  {
    "input": "input : list = [2, 4, 2, -5]\noutput : list = [4, 2, 2, -5]",
    "output": "generated_output : list = mul_n(sort_des([2, 4, 2, -5]),1)",
    "io_inp": [
      2,
      4,
      2,
      -5
    ],
    "io_out": [
      4,
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [5, -1, 2, 4, 3]\noutput : list = [36, -84, -124, -164, -204]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(mul_n([5, -1, 2, 4, 3],-2),-5)),-4),-4)",
    "io_inp": [
      5,
      -1,
      2,
      4,
      3
    ],
    "io_out": [
      36,
      -84,
      -124,
      -164,
      -204
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(mul_n(input,-2),-5)),-4),-4)"
  },
  {
    "input": "input : list = [3, -4, 2, 2, 5]\noutput : list = [-9, -3, -3, -2, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_des([3, -4, 2, 2, 5]),8))),5)",
    "io_inp": [
      3,
      -4,
      2,
      2,
      5
    ],
    "io_out": [
      -9,
      -3,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_des(input),8))),5)"
  },
  {
    "input": "input : list = [-5, 0, -3, -4, -4, -2]\noutput : list = [6, 1, 4, 5, 5, 3]",
    "output": "generated_output : list = mul_n(add_n([-5, 0, -3, -4, -4, -2],-1),-1)",
    "io_inp": [
      -5,
      0,
      -3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      6,
      1,
      4,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-1)"
  },
  {
    "input": "input : list = [4, -4, -1, 4, 2, 3]\noutput : list = [1, -7, -4, 1, -1, 0]",
    "output": "generated_output : list = sub_n([4, -4, -1, 4, 2, 3],3)",
    "io_inp": [
      4,
      -4,
      -1,
      4,
      2,
      3
    ],
    "io_out": [
      1,
      -7,
      -4,
      1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [0, -4, 5]\noutput : list = [2, -2, 7]",
    "output": "generated_output : list = sub_n([0, -4, 5],-2)",
    "io_inp": [
      0,
      -4,
      5
    ],
    "io_out": [
      2,
      -2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, -3, 1, 2, 5, 0]\noutput : list = [15, 15, -5, -10, -25, 0]",
    "output": "generated_output : list = mul_n([-3, -3, 1, 2, 5, 0],-5)",
    "io_inp": [
      -3,
      -3,
      1,
      2,
      5,
      0
    ],
    "io_out": [
      15,
      15,
      -5,
      -10,
      -25,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n([0, -5],2),1)))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(input,2),1)))"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [4]",
    "output": "generated_output : list = drop(sort_asc([4, 2, 4]),2)",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-5, -4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = drop([-5, -4, -3],1)",
    "io_inp": [
      -5,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -4, 4, -2, -5]\noutput : list = [-12, -8, -4, 0, 24]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(sub_n([-3, -4, 4, -2, -5],-2))),1),4)",
    "io_inp": [
      -3,
      -4,
      4,
      -2,
      -5
    ],
    "io_out": [
      -12,
      -8,
      -4,
      0,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(sub_n(input,-2))),1),4)"
  },
  {
    "input": "input : list = [1, 3, -1, 3, -2, -3]\noutput : list = [-1, 1, 3, 3]",
    "output": "generated_output : list = sort_asc(take([1, 3, -1, 3, -2, -3],4))",
    "io_inp": [
      1,
      3,
      -1,
      3,
      -2,
      -3
    ],
    "io_out": [
      -1,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,4))"
  },
  {
    "input": "input : list = [-2, -2, 2, 5, -1]\noutput : list = [-2, -2, 2, 5, -1]",
    "output": "generated_output : list = reverse(reverse([-2, -2, 2, 5, -1]))",
    "io_inp": [
      -2,
      -2,
      2,
      5,
      -1
    ],
    "io_out": [
      -2,
      -2,
      2,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [6, 6]",
    "output": "generated_output : list = reverse(mul_n([-2, -2],-3))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-1, 2, -3, 2, -3]\noutput : list = [-6, -3, -8]",
    "output": "generated_output : list = sub_n(take(take(take([-1, 2, -3, 2, -3],3),21),18),5)",
    "io_inp": [
      -1,
      2,
      -3,
      2,
      -3
    ],
    "io_out": [
      -6,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(input,3),21),18),5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(sort_des([-4, -4])),3)),-4)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(sort_des(input)),3)),-4)"
  },
  {
    "input": "input : list = [4, 5, 2, -1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(drop([4, 5, 2, -1],2),-1),15)))",
    "io_inp": [
      4,
      5,
      2,
      -1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(drop(input,2),-1),15)))"
  },
  {
    "input": "input : list = [-2, -2, 3, -1, 3, 0]\noutput : list = [-7, -7, 5, 9, 13, 13]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(mul_n([-2, -2, 3, -1, 3, 0],-1),4),5),26))",
    "io_inp": [
      -2,
      -2,
      3,
      -1,
      3,
      0
    ],
    "io_out": [
      -7,
      -7,
      5,
      9,
      13,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(mul_n(input,-1),4),5),26))"
  },
  {
    "input": "input : list = [4, 3, -4, -4, -1]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n(drop([4, 3, -4, -4, -1],3),1)),5),5)",
    "io_inp": [
      4,
      3,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(drop(input,3),1)),5),5)"
  },
  {
    "input": "input : list = [-2, -4, 0, -5, 0]\noutput : list = [-25, -20, -10, 0, 0]",
    "output": "generated_output : list = sort_asc(mul_n([-2, -4, 0, -5, 0],5))",
    "io_inp": [
      -2,
      -4,
      0,
      -5,
      0
    ],
    "io_out": [
      -25,
      -20,
      -10,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-3, -4, 4, -1, 2]\noutput : list = [-10, 4, 6]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(sub_n([-3, -4, 4, -1, 2],-1),3))),-2)",
    "io_inp": [
      -3,
      -4,
      4,
      -1,
      2
    ],
    "io_out": [
      -10,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(sub_n(input,-1),3))),-2)"
  },
  {
    "input": "input : list = [-4, -3, 0, -4, 4, -3]\noutput : list = [-13]",
    "output": "generated_output : list = add_n(take(mul_n(drop(sort_asc([-4, -3, 0, -4, 4, -3]),5),-2),13),-5)",
    "io_inp": [
      -4,
      -3,
      0,
      -4,
      4,
      -3
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(drop(sort_asc(input),5),-2),13),-5)"
  },
  {
    "input": "input : list = [2, -4, -4, -4]\noutput : list = [2, 2, 2, -4]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sub_n([2, -4, -4, -4],2)),-1),4))",
    "io_inp": [
      2,
      -4,
      -4,
      -4
    ],
    "io_out": [
      2,
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_asc(sub_n(input,2)),-1),4))"
  },
  {
    "input": "input : list = [-1, -3, 2, 0]\noutput : list = [6, 4]",
    "output": "generated_output : list = add_n(sub_n(take([-1, -3, 2, 0],2),-5),2)",
    "io_inp": [
      -1,
      -3,
      2,
      0
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,2),-5),2)"
  },
  {
    "input": "input : list = [-5, -3, 0]\noutput : list = [5, 2, 0]",
    "output": "generated_output : list = sub_n(reverse([-5, -3, 0]),-5)",
    "io_inp": [
      -5,
      -3,
      0
    ],
    "io_out": [
      5,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-2, -5, 3, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse(drop([-2, -5, 3, -2, 4],3)))))",
    "io_inp": [
      -2,
      -5,
      3,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(drop(input,3)))))"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [1, -7, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(sub_n([-3, 5, -4],4))),3))",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      1,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(sub_n(input,4))),3))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(sort_des([-1, -1]))),-3),1)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(sort_des(input))),-3),1)"
  },
  {
    "input": "input : list = [-4, -4, -3, -4, -1, 2]\noutput : list = [55, 55, 55, 50, 40, 25]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(sub_n([-4, -4, -3, -4, -1, 2],4)),3),-5))",
    "io_inp": [
      -4,
      -4,
      -3,
      -4,
      -1,
      2
    ],
    "io_out": [
      55,
      55,
      55,
      50,
      40,
      25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(sub_n(input,4)),3),-5))"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [-16, -16, -16]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n(add_n([-1, -1, -1],-5),2)),6),2)",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      -16,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(add_n(input,-5),2)),6),2)"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [-15]",
    "output": "generated_output : list = take(mul_n(take(take(take([5, 0, 1],1),7),23),-3),32)",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(take(input,1),7),23),-3),32)"
  },
  {
    "input": "input : list = [5, -5, 1, -3, 1, -5]\noutput : list = [-10, 2, 2, 14, 20, 20]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(mul_n([5, -5, 1, -3, 1, -5],-3),4))),-1)",
    "io_inp": [
      5,
      -5,
      1,
      -3,
      1,
      -5
    ],
    "io_out": [
      -10,
      2,
      2,
      14,
      20,
      20
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(mul_n(input,-3),4))),-1)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc([-1, -2]),2))),37)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(mul_n(sort_asc(input),2))),37)"
  },
  {
    "input": "input : list = [-3, -3, -4, 1, 5]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse(drop([-3, -3, -4, 1, 5],3))",
    "io_inp": [
      -3,
      -3,
      -4,
      1,
      5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [0, -5, -1, 0]\noutput : list = [6, 6, 8, 16]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(mul_n([0, -5, -1, 0],-2),1))),-5)",
    "io_inp": [
      0,
      -5,
      -1,
      0
    ],
    "io_out": [
      6,
      6,
      8,
      16
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(mul_n(input,-2),1))),-5)"
  },
  {
    "input": "input : list = [-1, 0, -5]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n(take(sort_asc(drop(reverse([-1, 0, -5]),1)),15),5)",
    "io_inp": [
      -1,
      0,
      -5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(drop(reverse(input),1)),15),5)"
  },
  {
    "input": "input : list = [1, 3, 5, -4]\noutput : list = [-65, 10, 40, 70]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(mul_n([1, 3, 5, -4],-3)),-1),-5))",
    "io_inp": [
      1,
      3,
      5,
      -4
    ],
    "io_out": [
      -65,
      10,
      40,
      70
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(mul_n(input,-3)),-1),-5))"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [12, 16, 0]",
    "output": "generated_output : list = mul_n([3, 4, 0],4)",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      12,
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [0, -5, 3]\noutput : list = [0, -40, 24]",
    "output": "generated_output : list = take(sub_n(add_n(mul_n(mul_n([0, -5, 3],-4),-2),5),5),46)",
    "io_inp": [
      0,
      -5,
      3
    ],
    "io_out": [
      0,
      -40,
      24
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(mul_n(mul_n(input,-4),-2),5),5),46)"
  },
  {
    "input": "input : list = [2, -2, -4, -4, -5, 1]\noutput : list = [7, 6, 3, 1, 1, 0]",
    "output": "generated_output : list = add_n(sort_des([2, -2, -4, -4, -5, 1]),5)",
    "io_inp": [
      2,
      -2,
      -4,
      -4,
      -5,
      1
    ],
    "io_out": [
      7,
      6,
      3,
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-2, -5, -5, -2]\noutput : list = [-100, -100, -40, -40]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(mul_n([-2, -5, -5, -2],-4)),12),1),-5)",
    "io_inp": [
      -2,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -100,
      -100,
      -40,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(mul_n(input,-4)),12),1),-5)"
  },
  {
    "input": "input : list = [2, -3, 2, 3, -3, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(sort_asc([2, -3, 2, 3, -3, 4]),-1)),4),1)",
    "io_inp": [
      2,
      -3,
      2,
      3,
      -3,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(sort_asc(input),-1)),4),1)"
  },
  {
    "input": "input : list = [4, -1, -2, -3, 0, 1]\noutput : list = [-3, -2, -1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc([4, -1, -2, -3, 0, 1])",
    "io_inp": [
      4,
      -1,
      -2,
      -3,
      0,
      1
    ],
    "io_out": [
      -3,
      -2,
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-8, 8]",
    "output": "generated_output : list = mul_n(take(sort_des(add_n([-3, 5],-1)),2),-2)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(add_n(input,-1)),2),-2)"
  },
  {
    "input": "input : list = [-4, 4, -5, 0, 2]\noutput : list = [-5, -4, 0, 2, 4]",
    "output": "generated_output : list = reverse(sort_des([-4, 4, -5, 0, 2]))",
    "io_inp": [
      -4,
      4,
      -5,
      0,
      2
    ],
    "io_out": [
      -5,
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [0, -5, -1, -5, 2]\noutput : list = [-5, -5, -1, 0, 2]",
    "output": "generated_output : list = sort_asc([0, -5, -1, -5, 2])",
    "io_inp": [
      0,
      -5,
      -1,
      -5,
      2
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 1, 2]\noutput : list = [7, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sort_asc([-5, 1, 2]),-2),-1)),4)",
    "io_inp": [
      -5,
      1,
      2
    ],
    "io_out": [
      7,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(mul_n(sort_asc(input),-2),-1)),4)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [-5, -1, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n([-5, -1, -1],-1),-5),-4)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(input,-1),-5),-4)"
  },
  {
    "input": "input : list = [-3, -5, 0, -5]\noutput : list = [9]",
    "output": "generated_output : list = sort_des(take(mul_n(take([-3, -5, 0, -5],1),-3),23))",
    "io_inp": [
      -3,
      -5,
      0,
      -5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(input,1),-3),23))"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [-48, 22, 52]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(mul_n([2, -5, 5],5),1))),2)",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      -48,
      22,
      52
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(mul_n(input,5),1))),2)"
  },
  {
    "input": "input : list = [-2, -5, 1, -5]\noutput : list = [-5, 1, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, 1, -5])",
    "io_inp": [
      -2,
      -5,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2, -3, 2, -3]\noutput : list = [2, -4, -5, 0, -5]",
    "output": "generated_output : list = reverse(reverse(sub_n(add_n(add_n([4, -2, -3, 2, -3],4),-4),2)))",
    "io_inp": [
      4,
      -2,
      -3,
      2,
      -3
    ],
    "io_out": [
      2,
      -4,
      -5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(add_n(add_n(input,4),-4),2)))"
  },
  {
    "input": "input : list = [3, -5, -4, -4]\noutput : list = [-7, -7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(drop([3, -5, -4, -4],2),15)),-5),2)",
    "io_inp": [
      3,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(drop(input,2),15)),-5),2)"
  },
  {
    "input": "input : list = [-2, -5, 3, -1]\noutput : list = [-1, 2, 3, 7]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(reverse([-2, -5, 3, -1])),-1),23),-5)",
    "io_inp": [
      -2,
      -5,
      3,
      -1
    ],
    "io_out": [
      -1,
      2,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(reverse(input)),-1),23),-5)"
  },
  {
    "input": "input : list = [2, 3, 1, -2]\noutput : list = [2, 3, 1, -2]",
    "output": "generated_output : list = reverse(reverse([2, 3, 1, -2]))",
    "io_inp": [
      2,
      3,
      1,
      -2
    ],
    "io_out": [
      2,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, -3, 0, 4]\noutput : list = [10, 8, 7, 3]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_asc(mul_n([-1, -3, 0, 4],-1)),2),5))",
    "io_inp": [
      -1,
      -3,
      0,
      4
    ],
    "io_out": [
      10,
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_asc(mul_n(input,-1)),2),5))"
  },
  {
    "input": "input : list = [-4, -3, -5, 3, -2]\noutput : list = [4]",
    "output": "generated_output : list = reverse(drop(mul_n([-4, -3, -5, 3, -2],-2),4))",
    "io_inp": [
      -4,
      -3,
      -5,
      3,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(mul_n(input,-2),4))"
  },
  {
    "input": "input : list = [-5, 3, -2, 0, 5]\noutput : list = [-200, -150, -75, -25, 50]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(sub_n([-5, 3, -2, 0, 5],-3),14)),5),-5)",
    "io_inp": [
      -5,
      3,
      -2,
      0,
      5
    ],
    "io_out": [
      -200,
      -150,
      -75,
      -25,
      50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(sub_n(input,-3),14)),5),-5)"
  },
  {
    "input": "input : list = [3, 3, 3, -1]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(take([3, 3, 3, -1],2),-1)),1))",
    "io_inp": [
      3,
      3,
      3,
      -1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(take(input,2),-1)),1))"
  },
  {
    "input": "input : list = [0, 2, -5, 4, -4]\noutput : list = [18, 15, 3, -3, -9]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(sub_n([0, 2, -5, 4, -4],1))),-3))",
    "io_inp": [
      0,
      2,
      -5,
      4,
      -4
    ],
    "io_out": [
      18,
      15,
      3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(sub_n(input,1))),-3))"
  },
  {
    "input": "input : list = [1, -4, 4, -1, 2]\noutput : list = [-2, 1, 3, 4, 6]",
    "output": "generated_output : list = take(sort_asc(take(add_n(sort_des([1, -4, 4, -1, 2]),2),9)),47)",
    "io_inp": [
      1,
      -4,
      4,
      -1,
      2
    ],
    "io_out": [
      -2,
      1,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(sort_des(input),2),9)),47)"
  },
  {
    "input": "input : list = [2, 2, -3, 2, 2, 3]\noutput : list = [-7, -12, -12, -12, -12, -37]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(sub_n([2, 2, -3, 2, 2, 3],5),5),3),20))",
    "io_inp": [
      2,
      2,
      -3,
      2,
      2,
      3
    ],
    "io_out": [
      -7,
      -12,
      -12,
      -12,
      -12,
      -37
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(sub_n(input,5),5),3),20))"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [-380, 220, -380]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(mul_n([3, -3, 3],-5),8),4),5),4)",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      -380,
      220,
      -380
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(mul_n(input,-5),8),4),5),4)"
  },
  {
    "input": "input : list = [-3, 2, -2, 3]\noutput : list = [-15]",
    "output": "generated_output : list = take(sort_asc(sort_des(drop(mul_n([-3, 2, -2, 3],-5),3))),23)",
    "io_inp": [
      -3,
      2,
      -2,
      3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(drop(mul_n(input,-5),3))),23)"
  },
  {
    "input": "input : list = [-2, 4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_asc(drop([-2, 4, -3],1))),1),-1)",
    "io_inp": [
      -2,
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_asc(drop(input,1))),1),-1)"
  },
  {
    "input": "input : list = [1, -5, 5, -2, -5]\noutput : list = [-5, -5, -2]",
    "output": "generated_output : list = sort_asc(take(sort_asc([1, -5, 5, -2, -5]),3))",
    "io_inp": [
      1,
      -5,
      5,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(input),3))"
  },
  {
    "input": "input : list = [4, -2, 4, -4, 3, 5]\noutput : list = [-20, -16, -12, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(drop([4, -2, 4, -4, 3, 5],2),14),-4)))",
    "io_inp": [
      4,
      -2,
      4,
      -4,
      3,
      5
    ],
    "io_out": [
      -20,
      -16,
      -12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(drop(input,2),14),-4)))"
  },
  {
    "input": "input : list = [-3, -4, 5, 3]\noutput : list = [16, 12, -12, -20]",
    "output": "generated_output : list = mul_n(sort_asc([-3, -4, 5, 3]),-4)",
    "io_inp": [
      -3,
      -4,
      5,
      3
    ],
    "io_out": [
      16,
      12,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [30]",
    "output": "generated_output : list = drop(mul_n(mul_n(mul_n(add_n([-2, 1, 1],-4),-1),2),5),2)",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      30
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(mul_n(add_n(input,-4),-1),2),5),2)"
  },
  {
    "input": "input : list = [3, 3, 2]\noutput : list = [22, 22, 13]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(mul_n([3, 3, 2],-1),-3),3),-3),-2)",
    "io_inp": [
      3,
      3,
      2
    ],
    "io_out": [
      22,
      22,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(mul_n(input,-1),-3),3),-3),-2)"
  },
  {
    "input": "input : list = [-3, -3, -5, 5, 1]\noutput : list = [14, 10, 10, 2, -6]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(mul_n([-3, -3, -5, 5, 1],-2)),-3)),-1)",
    "io_inp": [
      -3,
      -3,
      -5,
      5,
      1
    ],
    "io_out": [
      14,
      10,
      10,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(mul_n(input,-2)),-3)),-1)"
  },
  {
    "input": "input : list = [-3, -2, -4, 5, 2]\noutput : list = [-3, -2, -1, 3, 6]",
    "output": "generated_output : list = sort_asc(take(reverse(take(sub_n([-3, -2, -4, 5, 2],-1),11)),39))",
    "io_inp": [
      -3,
      -2,
      -4,
      5,
      2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(sub_n(input,-1),11)),39))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [36, 48]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take(add_n([3, 2],1),4)),4),3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      36,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(add_n(input,1),4)),4),3)"
  },
  {
    "input": "input : list = [-4, -2, 1, 4]\noutput : list = [-5, -3, 0, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_des([-4, -2, 1, 4]))),-1))",
    "io_inp": [
      -4,
      -2,
      1,
      4
    ],
    "io_out": [
      -5,
      -3,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_asc(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [0, 0, -3, 2, 4]\noutput : list = [5, 5, -19, 21, 37]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(mul_n([0, 0, -3, 2, 4],-1),2),2),-2),5)",
    "io_inp": [
      0,
      0,
      -3,
      2,
      4
    ],
    "io_out": [
      5,
      5,
      -19,
      21,
      37
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(mul_n(input,-1),2),2),-2),5)"
  },
  {
    "input": "input : list = [0, -2, 2, 1, -3, 5]\noutput : list = [-9, -6, 0, 3, 6, 15]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(reverse([0, -2, 2, 1, -3, 5]),3)),30))",
    "io_inp": [
      0,
      -2,
      2,
      1,
      -3,
      5
    ],
    "io_out": [
      -9,
      -6,
      0,
      3,
      6,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(reverse(input),3)),30))"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [6, 6, 2]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n([0, -4, -4],-5),-1),3))",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(input,-5),-1),3))"
  },
  {
    "input": "input : list = [-3, 1, -4, 0, -2, 2]\noutput : list = [4, 44, -36]",
    "output": "generated_output : list = add_n(mul_n(add_n(mul_n(drop([-3, 1, -4, 0, -2, 2],3),5),-2),-4),-4)",
    "io_inp": [
      -3,
      1,
      -4,
      0,
      -2,
      2
    ],
    "io_out": [
      4,
      44,
      -36
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(mul_n(drop(input,3),5),-2),-4),-4)"
  },
  {
    "input": "input : list = [1, -5, 1, 3, 1]\noutput : list = [2, 4, 2]",
    "output": "generated_output : list = add_n(sub_n(take(reverse([1, -5, 1, 3, 1]),3),-2),-1)",
    "io_inp": [
      1,
      -5,
      1,
      3,
      1
    ],
    "io_out": [
      2,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(reverse(input),3),-2),-1)"
  },
  {
    "input": "input : list = [-5, -2, 2, -5, 5, -4]\noutput : list = [15, 12, 8, 6, 5, 5]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n([-5, -2, 2, -5, 5, -4],2),-4),-4))",
    "io_inp": [
      -5,
      -2,
      2,
      -5,
      5,
      -4
    ],
    "io_out": [
      15,
      12,
      8,
      6,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(input,2),-4),-4))"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [-10, -10]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(add_n([-5, -5, -1],1),-1),2)),2)",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(add_n(input,1),-1),2)),2)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_des([5, -5]),10)))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_des(input),10)))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [4, -6, -1]",
    "output": "generated_output : list = sub_n([5, -5, 0],1)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      4,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-2, -3, -5, -3, 0]\noutput : list = [-9, -5, -5, -3, 1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sort_asc([-2, -3, -5, -3, 0])),2)),1)",
    "io_inp": [
      -2,
      -3,
      -5,
      -3,
      0
    ],
    "io_out": [
      -9,
      -5,
      -5,
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_asc(sort_asc(input)),2)),1)"
  },
  {
    "input": "input : list = [-4, 5, 3, -1, -3]\noutput : list = [1, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(take([-4, 5, 3, -1, -3],2),1),-4)),-1)",
    "io_inp": [
      -4,
      5,
      3,
      -1,
      -3
    ],
    "io_out": [
      1,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(take(input,2),1),-4)),-1)"
  },
  {
    "input": "input : list = [1, -2, -4, 3, -2]\noutput : list = [-18, -8, -8, 7, 17]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(mul_n([1, -2, -4, 3, -2],5)),29),-2))",
    "io_inp": [
      1,
      -2,
      -4,
      3,
      -2
    ],
    "io_out": [
      -18,
      -8,
      -8,
      7,
      17
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(mul_n(input,5)),29),-2))"
  },
  {
    "input": "input : list = [-3, 3, -5]\noutput : list = [-6, 0, -8]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-3, 3, -5],-2),2),-3)",
    "io_inp": [
      -3,
      3,
      -5
    ],
    "io_out": [
      -6,
      0,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,-2),2),-3)"
  },
  {
    "input": "input : list = [-1, -2, 1]\noutput : list = [-2, 8, 13]",
    "output": "generated_output : list = add_n(take(mul_n(sort_asc(mul_n([-1, -2, 1],-1)),5),18),3)",
    "io_inp": [
      -1,
      -2,
      1
    ],
    "io_out": [
      -2,
      8,
      13
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sort_asc(mul_n(input,-1)),5),18),3)"
  },
  {
    "input": "input : list = [5, 4, -3, -2]\noutput : list = [20, 30, -40, -50]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(mul_n([5, 4, -3, -2],2)),-5)))",
    "io_inp": [
      5,
      4,
      -3,
      -2
    ],
    "io_out": [
      20,
      30,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(mul_n(input,2)),-5)))"
  },
  {
    "input": "input : list = [2, -4, 3, -5, -3, 1]\noutput : list = [-5, -4, -3, 1, 2, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_des([2, -4, 3, -5, -3, 1]))),-3),-3)",
    "io_inp": [
      2,
      -4,
      3,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_des(input))),-3),-3)"
  },
  {
    "input": "input : list = [-2, 1, 1, 4, -1, 1]\noutput : list = [-2, 1, 1, 4]",
    "output": "generated_output : list = take([-2, 1, 1, 4, -1, 1],4)",
    "io_inp": [
      -2,
      1,
      1,
      4,
      -1,
      1
    ],
    "io_out": [
      -2,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [-3, -2, 5]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = sort_asc([-3, -2, 5])",
    "io_inp": [
      -3,
      -2,
      5
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des(take(reverse([2, -2, 0]),3))),43)",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(take(reverse(input),3))),43)"
  },
  {
    "input": "input : list = [-1, 2, 4, -5, -3, -2]\noutput : list = [-5, -3, 0, 1, 2, 4]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(sort_asc([-1, 2, 4, -5, -3, -2])),36),-1),-1)",
    "io_inp": [
      -1,
      2,
      4,
      -5,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -3,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(sort_asc(input)),36),-1),-1)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-5, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(reverse([-3, -4]),-2))),5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(reverse(input),-2))),5)"
  },
  {
    "input": "input : list = [3, 1, -2, 2, -4, -2]\noutput : list = [9, 6, 3, -6, -6, -12]",
    "output": "generated_output : list = sort_des(mul_n([3, 1, -2, 2, -4, -2],3))",
    "io_inp": [
      3,
      1,
      -2,
      2,
      -4,
      -2
    ],
    "io_out": [
      9,
      6,
      3,
      -6,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [0, -4, -4, 0]\noutput : list = [2, 2, -2, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(sub_n([0, -4, -4, 0],-5))),-3))",
    "io_inp": [
      0,
      -4,
      -4,
      0
    ],
    "io_out": [
      2,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(sub_n(input,-5))),-3))"
  },
  {
    "input": "input : list = [4, -5, -4, -2, -4]\noutput : list = [15, 12, 12, 6, -12]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n([4, -5, -4, -2, -4],-3),1)))",
    "io_inp": [
      4,
      -5,
      -4,
      -2,
      -4
    ],
    "io_out": [
      15,
      12,
      12,
      6,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(input,-3),1)))"
  },
  {
    "input": "input : list = [2, 3, 3, -4, 1, 3]\noutput : list = [16, 8, -12, 16, 16, 12]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(mul_n([2, 3, 3, -4, 1, 3],-2),22),-2)),4)",
    "io_inp": [
      2,
      3,
      3,
      -4,
      1,
      3
    ],
    "io_out": [
      16,
      8,
      -12,
      16,
      16,
      12
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(mul_n(input,-2),22),-2)),4)"
  },
  {
    "input": "input : list = [-5, -1, 2, 0, -5, -5]\noutput : list = [-5, -5, 0, 2, -1, -5]",
    "output": "generated_output : list = reverse([-5, -1, 2, 0, -5, -5])",
    "io_inp": [
      -5,
      -1,
      2,
      0,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      0,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = sort_des([3, -5])",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, -1, 4, -5]\noutput : list = [4, 2, -1, -2, -5]",
    "output": "generated_output : list = sort_des([2, -2, -1, 4, -5])",
    "io_inp": [
      2,
      -2,
      -1,
      4,
      -5
    ],
    "io_out": [
      4,
      2,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-3, 21]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-5, 3],2),-3))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -3,
      21
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,2),-3))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-14, -12]",
    "output": "generated_output : list = add_n(sub_n(mul_n(add_n(add_n([-1, 0],-1),-4),2),-2),-4)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -14,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(add_n(add_n(input,-1),-4),2),-2),-4)"
  },
  {
    "input": "input : list = [-1, -4, -4]\noutput : list = [4, 16, 16]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -4, -4],-4))",
    "io_inp": [
      -1,
      -4,
      -4
    ],
    "io_out": [
      4,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 3, 4, 5, 5]\noutput : list = [-2, 3, 4]",
    "output": "generated_output : list = take([-2, 3, 4, 5, 5],3)",
    "io_inp": [
      -2,
      3,
      4,
      5,
      5
    ],
    "io_out": [
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-5, -3, -3, -3, -5]\noutput : list = [-3, -1]",
    "output": "generated_output : list = take(add_n(sort_asc(drop(add_n([-5, -3, -3, -3, -5],-1),3)),3),3)",
    "io_inp": [
      -5,
      -3,
      -3,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(drop(add_n(input,-1),3)),3),3)"
  },
  {
    "input": "input : list = [-1, 0, -4]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(reverse([-1, 0, -4]),-4),15)),1)",
    "io_inp": [
      -1,
      0,
      -4
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(reverse(input),-4),15)),1)"
  },
  {
    "input": "input : list = [-1, 3, 4, 5, 3, -3]\noutput : list = [-4, 12, 16]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(take([-1, 3, 4, 5, 3, -3],3),1)),4))",
    "io_inp": [
      -1,
      3,
      4,
      5,
      3,
      -3
    ],
    "io_out": [
      -4,
      12,
      16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(take(input,3),1)),4))"
  },
  {
    "input": "input : list = [-1, 1, 0]\noutput : list = [-3, -4, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(reverse([-1, 1, 0]),-1)),5),1)",
    "io_inp": [
      -1,
      1,
      0
    ],
    "io_out": [
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(reverse(input),-1)),5),1)"
  },
  {
    "input": "input : list = [4, -1, 5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(drop([4, -1, 5, -4],2))",
    "io_inp": [
      4,
      -1,
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-5, 0, 5]\noutput : list = [-5]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_asc(take([-5, 0, 5],1)))),24)",
    "io_inp": [
      -5,
      0,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_asc(take(input,1)))),24)"
  },
  {
    "input": "input : list = [1, -4, 3, -3]\noutput : list = [-20, -15, 5, 15]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc([1, -4, 3, -3]),5)))",
    "io_inp": [
      1,
      -4,
      3,
      -3
    ],
    "io_out": [
      -20,
      -15,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(input),5)))"
  },
  {
    "input": "input : list = [-4, 5, 0, 5, -5]\noutput : list = [7]",
    "output": "generated_output : list = mul_n(sub_n(take([-4, 5, 0, 5, -5],1),3),-1)",
    "io_inp": [
      -4,
      5,
      0,
      5,
      -5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),3),-1)"
  },
  {
    "input": "input : list = [-3, -3, -5, 4, -1, 3]\noutput : list = [-2, -1, 3, 5, 5, 7]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(add_n([-3, -3, -5, 4, -1, 3],-2)))),-1)",
    "io_inp": [
      -3,
      -3,
      -5,
      4,
      -1,
      3
    ],
    "io_out": [
      -2,
      -1,
      3,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(add_n(input,-2)))),-1)"
  },
  {
    "input": "input : list = [-2, 5, 2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 5, 2],1)",
    "io_inp": [
      -2,
      5,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -3, -1]\noutput : list = [0, 2, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(drop([-1, 4, -3, -1],1)))),-3)",
    "io_inp": [
      -1,
      4,
      -3,
      -1
    ],
    "io_out": [
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_asc(drop(input,1)))),-3)"
  },
  {
    "input": "input : list = [4, 3, 2]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = sort_des([4, 3, 2])",
    "io_inp": [
      4,
      3,
      2
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -3, -1, -3, 0, 2]\noutput : list = [6, 4, 2, 1, -1, -1]",
    "output": "generated_output : list = sort_des(add_n([4, -3, -1, -3, 0, 2],2))",
    "io_inp": [
      4,
      -3,
      -1,
      -3,
      0,
      2
    ],
    "io_out": [
      6,
      4,
      2,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [4, 0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = drop([4, 0, -2],1)",
    "io_inp": [
      4,
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, 5, -3, 3, -2, -2]\noutput : list = [6, 4, 3, 3, -2, -4]",
    "output": "generated_output : list = sort_des(take(mul_n(take(sub_n([-5, 5, -3, 3, -2, -2],1),13),-1),41))",
    "io_inp": [
      -5,
      5,
      -3,
      3,
      -2,
      -2
    ],
    "io_out": [
      6,
      4,
      3,
      3,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(sub_n(input,1),13),-1),41))"
  },
  {
    "input": "input : list = [5, -1, 2, 1, -4]\noutput : list = [-6, -1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(drop([5, -1, 2, 1, -4],3),2)))",
    "io_inp": [
      5,
      -1,
      2,
      1,
      -4
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(drop(input,3),2)))"
  },
  {
    "input": "input : list = [2, 0, -4]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(take([2, 0, -4],1),-4))),-2)",
    "io_inp": [
      2,
      0,
      -4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(take(input,1),-4))),-2)"
  },
  {
    "input": "input : list = [1, 3, -3, 5, 1]\noutput : list = [0, 4, 4, 6, 8]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(sort_asc([1, 3, -3, 5, 1])),-2),35),5)",
    "io_inp": [
      1,
      3,
      -3,
      5,
      1
    ],
    "io_out": [
      0,
      4,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(sort_asc(input)),-2),35),5)"
  },
  {
    "input": "input : list = [2, 3, -1, 4]\noutput : list = [8, 9, 5, 10]",
    "output": "generated_output : list = take(sub_n(sub_n([2, 3, -1, 4],-3),-3),25)",
    "io_inp": [
      2,
      3,
      -1,
      4
    ],
    "io_out": [
      8,
      9,
      5,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,-3),-3),25)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [78, 3]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(add_n([-1, 4],-4),5)),-3),3)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      78,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(add_n(input,-4),5)),-3),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [7, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n([-3, -4],1)),5),-5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(input,1)),5),-5)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-2, -10]",
    "output": "generated_output : list = take(reverse(take(sort_asc(sub_n([3, -5],5)),16)),35)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(sub_n(input,5)),16)),35)"
  },
  {
    "input": "input : list = [2, -3, -1, -5, -3]\noutput : list = [10, -10]",
    "output": "generated_output : list = sub_n(mul_n(take([2, -3, -1, -5, -3],2),4),-2)",
    "io_inp": [
      2,
      -3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,2),4),-2)"
  },
  {
    "input": "input : list = [1, -5, 1, 0, 4, 2]\noutput : list = [-4, -2, -1, 0, 5]",
    "output": "generated_output : list = take(reverse(sort_des(mul_n(drop([1, -5, 1, 0, 4, 2],1),-1))),12)",
    "io_inp": [
      1,
      -5,
      1,
      0,
      4,
      2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(mul_n(drop(input,1),-1))),12)"
  },
  {
    "input": "input : list = [-4, 0, -2, 5]\noutput : list = [24, 16, 8, -12]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(sort_asc([-4, 0, -2, 5]),-2),-4)))",
    "io_inp": [
      -4,
      0,
      -2,
      5
    ],
    "io_out": [
      24,
      16,
      8,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(sort_asc(input),-2),-4)))"
  },
  {
    "input": "input : list = [-2, 2, 4, 1, 3, 1]\noutput : list = [20, -28, -52, -16, -40, -16]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(reverse([-2, 2, 4, 1, 3, 1]),4),-3)),-4)",
    "io_inp": [
      -2,
      2,
      4,
      1,
      3,
      1
    ],
    "io_out": [
      20,
      -28,
      -52,
      -16,
      -40,
      -16
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(reverse(input),4),-3)),-4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 13]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(mul_n(add_n([4, 1],-5),-4),2),5))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(mul_n(add_n(input,-5),-4),2),5))"
  },
  {
    "input": "input : list = [3, -2, 5]\noutput : list = [5, 3, -2]",
    "output": "generated_output : list = sort_des([3, -2, 5])",
    "io_inp": [
      3,
      -2,
      5
    ],
    "io_out": [
      5,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [-9, -4, 0]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse(sort_asc([5, -4, 1]))),-5),36)",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      -9,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(sort_asc(input))),-5),36)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse([0, -5])",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -1, 5, -3]\noutput : list = [5, -1, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc([-3, -1, 5, -3]))",
    "io_inp": [
      -3,
      -1,
      5,
      -3
    ],
    "io_out": [
      5,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 4, -1, -2, 2, -5]\noutput : list = [4, 2, -1, -2, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-4, 4, -1, -2, 2, -5]))",
    "io_inp": [
      -4,
      4,
      -1,
      -2,
      2,
      -5
    ],
    "io_out": [
      4,
      2,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, -4, 2, -2]\noutput : list = [-6, -5, 1, -3]",
    "output": "generated_output : list = add_n([-5, -4, 2, -2],-1)",
    "io_inp": [
      -5,
      -4,
      2,
      -2
    ],
    "io_out": [
      -6,
      -5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, -1, 0, -1, 1, 1]\noutput : list = [-1, -1, 0, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([2, -1, 0, -1, 1, 1])))",
    "io_inp": [
      2,
      -1,
      0,
      -1,
      1,
      1
    ],
    "io_out": [
      -1,
      -1,
      0,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, 4, -1, 1]\noutput : list = [14, 2, -6, -14]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(mul_n([-3, 4, -1, 1],4),3),-3)),-2)",
    "io_inp": [
      -3,
      4,
      -1,
      1
    ],
    "io_out": [
      14,
      2,
      -6,
      -14
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(mul_n(input,4),3),-3)),-2)"
  },
  {
    "input": "input : list = [-1, -5, 0]\noutput : list = [6, 1]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(drop([-1, -5, 0],1),5)),3),1)",
    "io_inp": [
      -1,
      -5,
      0
    ],
    "io_out": [
      6,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(drop(input,1),5)),3),1)"
  },
  {
    "input": "input : list = [3, 4, -4, 5]\noutput : list = [3, 4, 5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(drop(sort_asc([3, 4, -4, 5]),1),-1),-1),-2)",
    "io_inp": [
      3,
      4,
      -4,
      5
    ],
    "io_out": [
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(drop(sort_asc(input),1),-1),-1),-2)"
  },
  {
    "input": "input : list = [0, -1, -3, 3, 2]\noutput : list = [11, 12, 6, 8, 9]",
    "output": "generated_output : list = mul_n(take(add_n(reverse(add_n([0, -1, -3, 3, 2],5)),4),12),1)",
    "io_inp": [
      0,
      -1,
      -3,
      3,
      2
    ],
    "io_out": [
      11,
      12,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(add_n(input,5)),4),12),1)"
  },
  {
    "input": "input : list = [-1, 0, 0, -5, -3]\noutput : list = [0, 0, 3, 9, 15]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(mul_n([-1, 0, 0, -5, -3],-3),19))))",
    "io_inp": [
      -1,
      0,
      0,
      -5,
      -3
    ],
    "io_out": [
      0,
      0,
      3,
      9,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(mul_n(input,-3),19))))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [60, 18]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(add_n([-5, 2],-5)),-1),-2),-3)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      60,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(add_n(input,-5)),-1),-2),-3)"
  },
  {
    "input": "input : list = [-3, 2, -5, 0, 1]\noutput : list = [-4, -2, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(add_n(reverse(take(add_n([-3, 2, -5, 0, 1],-4),24)),5))",
    "io_inp": [
      -3,
      2,
      -5,
      0,
      1
    ],
    "io_out": [
      -4,
      -2,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(take(add_n(input,-4),24)),5))"
  },
  {
    "input": "input : list = [4, 2, -1, 2]\noutput : list = [20, 12, 0, 12]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(mul_n([4, 2, -1, 2],4),-5),-1),24),1)",
    "io_inp": [
      4,
      2,
      -1,
      2
    ],
    "io_out": [
      20,
      12,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(mul_n(input,4),-5),-1),24),1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [7, -28]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(mul_n([-2, 5],-5),3),1)),-5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      7,
      -28
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(mul_n(input,-5),3),1)),-5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-60, -60]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(mul_n([-4, -4],2),2),4)),5)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -60,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(mul_n(input,2),2),4)),5)"
  },
  {
    "input": "input : list = [-1, 1, 3, 5, -2]\noutput : list = [5, 3, 1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-1, 1, 3, 5, -2])))",
    "io_inp": [
      -1,
      1,
      3,
      5,
      -2
    ],
    "io_out": [
      5,
      3,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [2, -1, 5, 3, 2, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take(take([2, -1, 5, 3, 2, -1],3),1))",
    "io_inp": [
      2,
      -1,
      5,
      3,
      2,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(input,3),1))"
  },
  {
    "input": "input : list = [3, -5, 4, -3]\noutput : list = [4, 3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([3, -5, 4, -3]))",
    "io_inp": [
      3,
      -5,
      4,
      -3
    ],
    "io_out": [
      4,
      3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -3, -1, -1, 5]\noutput : list = [-3, -3, -5, -7]",
    "output": "generated_output : list = drop(sort_des(add_n(sort_asc(reverse([-5, -3, -1, -1, 5])),-2)),1)",
    "io_inp": [
      -5,
      -3,
      -1,
      -1,
      5
    ],
    "io_out": [
      -3,
      -3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(sort_asc(reverse(input)),-2)),1)"
  },
  {
    "input": "input : list = [0, 2, -5, 2, 0]\noutput : list = [2, 2, 0, 0, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(sort_asc([0, 2, -5, 2, 0])))))",
    "io_inp": [
      0,
      2,
      -5,
      2,
      0
    ],
    "io_out": [
      2,
      2,
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-4, 1, -5, 4, -5]\noutput : list = [-30, 45]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(add_n(take([-4, 1, -5, 4, -5],2),1)),-5),3)",
    "io_inp": [
      -4,
      1,
      -5,
      4,
      -5
    ],
    "io_out": [
      -30,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(add_n(take(input,2),1)),-5),3)"
  },
  {
    "input": "input : list = [-3, 4, 0, 4, 2, 0]\noutput : list = [-30]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take([-3, 4, 0, 4, 2, 0],1),3)),5)",
    "io_inp": [
      -3,
      4,
      0,
      4,
      2,
      0
    ],
    "io_out": [
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(input,1),3)),5)"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [-6, -3, -1]",
    "output": "generated_output : list = take(sub_n([-5, -2, 0],1),6)",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),6)"
  },
  {
    "input": "input : list = [3, 5, 1, 4, -4, 2]\noutput : list = [2, 4, 0, 3, -5, 1]",
    "output": "generated_output : list = add_n(sub_n([3, 5, 1, 4, -4, 2],-4),-5)",
    "io_inp": [
      3,
      5,
      1,
      4,
      -4,
      2
    ],
    "io_out": [
      2,
      4,
      0,
      3,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-5)"
  },
  {
    "input": "input : list = [-4, 4, -2, -4, -1]\noutput : list = [-16, 16, -8, -16, -4]",
    "output": "generated_output : list = mul_n([-4, 4, -2, -4, -1],4)",
    "io_inp": [
      -4,
      4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -16,
      16,
      -8,
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [0, 1, 4, 0, 3]\noutput : list = [-20, -15, -5, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(mul_n([0, 1, 4, 0, 3],-5)))))",
    "io_inp": [
      0,
      1,
      4,
      0,
      3
    ],
    "io_out": [
      -20,
      -15,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(mul_n(input,-5)))))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [6, 4]",
    "output": "generated_output : list = take(mul_n([3, 2],2),11)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),11)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-25, -20]",
    "output": "generated_output : list = take(mul_n(reverse([-4, -5]),5),13)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -25,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),5),13)"
  },
  {
    "input": "input : list = [3, 0, 5, 0, -4]\noutput : list = [10, 8, 5, 5, 1]",
    "output": "generated_output : list = add_n(sort_des([3, 0, 5, 0, -4]),5)",
    "io_inp": [
      3,
      0,
      5,
      0,
      -4
    ],
    "io_out": [
      10,
      8,
      5,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-5, 5, -1, 4, -1, -4]\noutput : list = [-24, -21, -12, -12, 3, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n([-5, 5, -1, 4, -1, -4],3)),3))",
    "io_inp": [
      -5,
      5,
      -1,
      4,
      -1,
      -4
    ],
    "io_out": [
      -24,
      -21,
      -12,
      -12,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(input,3)),3))"
  },
  {
    "input": "input : list = [2, -3, -4, 5, -1]\noutput : list = [1, 7, -2, -1, 4]",
    "output": "generated_output : list = add_n(take(mul_n(mul_n(reverse([2, -3, -4, 5, -1]),-1),-1),33),2)",
    "io_inp": [
      2,
      -3,
      -4,
      5,
      -1
    ],
    "io_out": [
      1,
      7,
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(mul_n(reverse(input),-1),-1),33),2)"
  },
  {
    "input": "input : list = [2, -5, -3, -2, 2, -2]\noutput : list = [9, 9, 5, 5, 4, 2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(add_n([2, -5, -3, -2, 2, -2],1),5)),-1),-2)",
    "io_inp": [
      2,
      -5,
      -3,
      -2,
      2,
      -2
    ],
    "io_out": [
      9,
      9,
      5,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(add_n(input,1),5)),-1),-2)"
  },
  {
    "input": "input : list = [-4, -1, 0, -4, -3, 0]\noutput : list = [-4, -7]",
    "output": "generated_output : list = add_n(take(take(reverse(take([-4, -1, 0, -4, -3, 0],2)),11),20),-3)",
    "io_inp": [
      -4,
      -1,
      0,
      -4,
      -3,
      0
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(take(reverse(take(input,2)),11),20),-3)"
  },
  {
    "input": "input : list = [5, 3, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([5, 3, 0, -5],2)",
    "io_inp": [
      5,
      3,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [0, 1]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(add_n(sort_asc([0, -1]),-2),-2),-1),1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(add_n(sort_asc(input),-2),-2),-1),1)"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [0, -5, 4]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(add_n([4, -5, 0],-3)),1),7),-2)",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(add_n(input,-3)),1),7),-2)"
  },
  {
    "input": "input : list = [4, -3, -4, -4]\noutput : list = [2, -5, -6, -6]",
    "output": "generated_output : list = add_n(reverse(take(sort_asc(reverse([4, -3, -4, -4])),24)),-2)",
    "io_inp": [
      4,
      -3,
      -4,
      -4
    ],
    "io_out": [
      2,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_asc(reverse(input)),24)),-2)"
  },
  {
    "input": "input : list = [5, -5, -3, 5, -1]\noutput : list = [-1, -7]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(drop([5, -5, -3, 5, -1],3),3),3)))",
    "io_inp": [
      5,
      -5,
      -3,
      5,
      -1
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(drop(input,3),3),3)))"
  },
  {
    "input": "input : list = [3, -2, 0, -2, 4]\noutput : list = [7, 3, -9, -17, -17]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(mul_n([3, -2, 0, -2, 4],1)),4),-4),-5)",
    "io_inp": [
      3,
      -2,
      0,
      -2,
      4
    ],
    "io_out": [
      7,
      3,
      -9,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(mul_n(input,1)),4),-4),-5)"
  },
  {
    "input": "input : list = [-5, 0, -2, -5, -1, -4]\noutput : list = [-2, -3, -4, -6, -7, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n(mul_n(sort_asc([-5, 0, -2, -5, -1, -4]),1),-2)))",
    "io_inp": [
      -5,
      0,
      -2,
      -5,
      -1,
      -4
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(mul_n(sort_asc(input),1),-2)))"
  },
  {
    "input": "input : list = [1, 1, 2, -1]\noutput : list = [0, -2, -2, -6]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(mul_n([1, 1, 2, -1],2))),35),4)",
    "io_inp": [
      1,
      1,
      2,
      -1
    ],
    "io_out": [
      0,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(mul_n(input,2))),35),4)"
  },
  {
    "input": "input : list = [-3, 1, 5, -5, 0, 3]\noutput : list = [3, 1, -1, -2, -5, -7]",
    "output": "generated_output : list = sub_n(sort_des([-3, 1, 5, -5, 0, 3]),2)",
    "io_inp": [
      -3,
      1,
      5,
      -5,
      0,
      3
    ],
    "io_out": [
      3,
      1,
      -1,
      -2,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [-4, -5, -8]",
    "output": "generated_output : list = add_n(add_n(sort_des(reverse([2, -2, 1])),-1),-5)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(reverse(input)),-1),-5)"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [7, 2, 0]",
    "output": "generated_output : list = sort_des(sub_n([-1, 4, -3],-3))",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      7,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(sort_des([0, 3]),-5),4),14))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(sort_des(input),-5),4),14))"
  },
  {
    "input": "input : list = [-1, 1, -4, 2, -3, -1]\noutput : list = [1, -4, 2, -3, -1]",
    "output": "generated_output : list = drop([-1, 1, -4, 2, -3, -1],1)",
    "io_inp": [
      -1,
      1,
      -4,
      2,
      -3,
      -1
    ],
    "io_out": [
      1,
      -4,
      2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -2, -1, -4, -1]\noutput : list = [-6, -15]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(drop([-2, -2, -1, -4, -1],3),1),3),28))",
    "io_inp": [
      -2,
      -2,
      -1,
      -4,
      -1
    ],
    "io_out": [
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(drop(input,3),1),3),28))"
  },
  {
    "input": "input : list = [2, -1, -2, -5, -4, -4]\noutput : list = [-16, -8, 16]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(take([2, -1, -2, -5, -4, -4],3)),37),2),4)",
    "io_inp": [
      2,
      -1,
      -2,
      -5,
      -4,
      -4
    ],
    "io_out": [
      -16,
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(take(input,3)),37),2),4)"
  },
  {
    "input": "input : list = [1, 2, -5, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(sort_des([1, 2, -5, -2]),1))",
    "io_inp": [
      1,
      2,
      -5,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),1))"
  },
  {
    "input": "input : list = [0, 1, 0, 1, 1, 1]\noutput : list = [-3, -1, -1, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(drop([0, 1, 0, 1, 1, 1],2),1)),2),-1)",
    "io_inp": [
      0,
      1,
      0,
      1,
      1,
      1
    ],
    "io_out": [
      -3,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(drop(input,2),1)),2),-1)"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [5, -4, -5]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(sort_asc([5, -5, -4]),-1)),-3),-2)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(sort_asc(input),-1)),-3),-2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([-4, -3]),-5))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [3, -5, 0, 0, -3]\noutput : list = [-5, -2, -2, 1]",
    "output": "generated_output : list = sub_n(add_n(reverse(take(sort_des([3, -5, 0, 0, -3]),4)),1),3)",
    "io_inp": [
      3,
      -5,
      0,
      0,
      -3
    ],
    "io_out": [
      -5,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(take(sort_des(input),4)),1),3)"
  },
  {
    "input": "input : list = [4, -2, 2, 0, -2, 5]\noutput : list = [5, 4, 2, 0, -2, -2]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc([4, -2, 2, 0, -2, 5]))),19)",
    "io_inp": [
      4,
      -2,
      2,
      0,
      -2,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(input))),19)"
  },
  {
    "input": "input : list = [4, -1, 2, -4]\noutput : list = [2, -1, -4]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(drop([4, -1, 2, -4],1)),13),31))",
    "io_inp": [
      4,
      -1,
      2,
      -4
    ],
    "io_out": [
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(drop(input,1)),13),31))"
  },
  {
    "input": "input : list = [2, -5, 3, 3, -4, 1]\noutput : list = [6, 6, 5, 4, -1, -2]",
    "output": "generated_output : list = take(sort_des(take(sort_des(add_n([2, -5, 3, 3, -4, 1],3)),31)),44)",
    "io_inp": [
      2,
      -5,
      3,
      3,
      -4,
      1
    ],
    "io_out": [
      6,
      6,
      5,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(add_n(input,3)),31)),44)"
  },
  {
    "input": "input : list = [-4, -3, -5, -3, 0]\noutput : list = [15, 24, 24, 27, 30]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_asc([-4, -3, -5, -3, 0])),-5)),-3)",
    "io_inp": [
      -4,
      -3,
      -5,
      -3,
      0
    ],
    "io_out": [
      15,
      24,
      24,
      27,
      30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_asc(sort_asc(input)),-5)),-3)"
  },
  {
    "input": "input : list = [-5, 2, 2, -1, -3]\noutput : list = [-45, -33, -21, -3, -3]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sort_asc([-5, 2, 2, -1, -3])),2),5),3)",
    "io_inp": [
      -5,
      2,
      2,
      -1,
      -3
    ],
    "io_out": [
      -45,
      -33,
      -21,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_asc(sort_asc(input)),2),5),3)"
  },
  {
    "input": "input : list = [5, 5, 2, 0]\noutput : list = [2, 2, -1, -3]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(sort_des([5, 5, 2, 0]),1),19)),2)",
    "io_inp": [
      5,
      5,
      2,
      0
    ],
    "io_out": [
      2,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(sort_des(input),1),19)),2)"
  },
  {
    "input": "input : list = [1, 4, 3, 0]\noutput : list = [24, 60, 72]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(drop([1, 4, 3, 0],1),-2),-3),-4))",
    "io_inp": [
      1,
      4,
      3,
      0
    ],
    "io_out": [
      24,
      60,
      72
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(drop(input,1),-2),-3),-4))"
  },
  {
    "input": "input : list = [2, -4, 5, 0, 3, 5]\noutput : list = [-40, 80, -100]",
    "output": "generated_output : list = mul_n(mul_n(reverse(reverse(take([2, -4, 5, 0, 3, 5],3))),4),-5)",
    "io_inp": [
      2,
      -4,
      5,
      0,
      3,
      5
    ],
    "io_out": [
      -40,
      80,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(reverse(take(input,3))),4),-5)"
  },
  {
    "input": "input : list = [-5, -4, -1, 0]\noutput : list = [-4, -3, 0, 1]",
    "output": "generated_output : list = add_n([-5, -4, -1, 0],1)",
    "io_inp": [
      -5,
      -4,
      -1,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, -4, 0, -5]\noutput : list = [-5, -9, -5, -10]",
    "output": "generated_output : list = take(sub_n([0, -4, 0, -5],5),20)",
    "io_inp": [
      0,
      -4,
      0,
      -5
    ],
    "io_out": [
      -5,
      -9,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),20)"
  },
  {
    "input": "input : list = [0, -3, 1, 5, -1, -4]\noutput : list = [3, 7, 1, -2]",
    "output": "generated_output : list = sub_n(drop([0, -3, 1, 5, -1, -4],2),-2)",
    "io_inp": [
      0,
      -3,
      1,
      5,
      -1,
      -4
    ],
    "io_out": [
      3,
      7,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-2)"
  },
  {
    "input": "input : list = [-2, -5, -2, 0]\noutput : list = [3, 1, -2, 1]",
    "output": "generated_output : list = reverse(add_n(sub_n([-2, -5, -2, 0],1),4))",
    "io_inp": [
      -2,
      -5,
      -2,
      0
    ],
    "io_out": [
      3,
      1,
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,1),4))"
  },
  {
    "input": "input : list = [-3, -3, -4, -5, -3, -4]\noutput : list = [-5, -4, -4, -3, -3, -3]",
    "output": "generated_output : list = sort_asc([-3, -3, -4, -5, -3, -4])",
    "io_inp": [
      -3,
      -3,
      -4,
      -5,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, -2, 0, 3]\noutput : list = [-2, 2, -6, 2, 14]",
    "output": "generated_output : list = sub_n(mul_n([-1, 0, -2, 0, 3],4),-2)",
    "io_inp": [
      -1,
      0,
      -2,
      0,
      3
    ],
    "io_out": [
      -2,
      2,
      -6,
      2,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),-2)"
  },
  {
    "input": "input : list = [-5, -1, -3]\noutput : list = [-2, -6, -10]",
    "output": "generated_output : list = reverse(take(sort_asc(reverse(mul_n([-5, -1, -3],2))),18))",
    "io_inp": [
      -5,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(reverse(mul_n(input,2))),18))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [2, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc([-2, -2]),4),17))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(input),4),17))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(add_n([-4, -5],-3)))))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(add_n(input,-3)))))"
  },
  {
    "input": "input : list = [-5, -4, 2]\noutput : list = [-6, -5, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(add_n([-5, -4, 2],1),3),1)))",
    "io_inp": [
      -5,
      -4,
      2
    ],
    "io_out": [
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(add_n(input,1),3),1)))"
  },
  {
    "input": "input : list = [3, -1, -3, 2, -5]\noutput : list = [15]",
    "output": "generated_output : list = take(take(mul_n(take(reverse([3, -1, -3, 2, -5]),20),-3),1),10)",
    "io_inp": [
      3,
      -1,
      -3,
      2,
      -5
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(take(reverse(input),20),-3),1),10)"
  },
  {
    "input": "input : list = [5, -5, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(drop([5, -5, -5, -4],2))",
    "io_inp": [
      5,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-75, 75]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(mul_n([-3, 3],5),14)),5),9)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -75,
      75
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(mul_n(input,5),14)),5),9)"
  },
  {
    "input": "input : list = [1, 4, 3, -3]\noutput : list = [-20, 0, 10, 15]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sort_asc([1, 4, 3, -3]),5)),5))",
    "io_inp": [
      1,
      4,
      3,
      -3
    ],
    "io_out": [
      -20,
      0,
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(mul_n(sort_asc(input),5)),5))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n([0, 3],-5)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [4, 0, -1, -2]\noutput : list = [2, -2, -3, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(add_n([4, 0, -1, -2],-1),-2)),1))",
    "io_inp": [
      4,
      0,
      -1,
      -2
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(add_n(input,-1),-2)),1))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_des([2, -2]),2))))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [-4, -4, 4, -5, -5, -5]\noutput : list = [-5, -5, -5, 4, -4, -4]",
    "output": "generated_output : list = reverse([-4, -4, 4, -5, -5, -5])",
    "io_inp": [
      -4,
      -4,
      4,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, 4, 5, 3, 4]\noutput : list = [18, 3, 21]",
    "output": "generated_output : list = mul_n(sub_n(take([3, -2, 4, 5, 3, 4],3),-3),3)",
    "io_inp": [
      3,
      -2,
      4,
      5,
      3,
      4
    ],
    "io_out": [
      18,
      3,
      21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,3),-3),3)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-5, 0]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(sort_des([-3, 2]),4)),2),5)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(sort_des(input),4)),2),5)"
  },
  {
    "input": "input : list = [-2, -3, 0, 4, -4, -4]\noutput : list = [-4, -4, -3, -2, 0, 4]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_asc(sub_n([-2, -3, 0, 4, -4, -4],3)),3)),20)",
    "io_inp": [
      -2,
      -3,
      0,
      4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_asc(sub_n(input,3)),3)),20)"
  },
  {
    "input": "input : list = [0, -3, -2, -3]\noutput : list = [-5, -7, -8, -8]",
    "output": "generated_output : list = add_n(sort_des([0, -3, -2, -3]),-5)",
    "io_inp": [
      0,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-4, 5, 1, -2, -3]\noutput : list = [-2, -1, 0, 3, 7]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(sort_des([-4, 5, 1, -2, -3]))),27),-2)",
    "io_inp": [
      -4,
      5,
      1,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -1,
      0,
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(sort_des(input))),27),-2)"
  },
  {
    "input": "input : list = [4, 2, -2, -1, -3, 4]\noutput : list = [16, 16, 8, -4, -8, -12]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(mul_n([4, 2, -2, -1, -3, 4],-2)),-2)))",
    "io_inp": [
      4,
      2,
      -2,
      -1,
      -3,
      4
    ],
    "io_out": [
      16,
      16,
      8,
      -4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(mul_n(input,-2)),-2)))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [9, -6]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc([-3, 2]),-3))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(input),-3))"
  },
  {
    "input": "input : list = [-1, 1, 1, -2]\noutput : list = [-2, -1, 1, 1]",
    "output": "generated_output : list = sort_asc([-1, 1, 1, -2])",
    "io_inp": [
      -1,
      1,
      1,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 4, -1, 5]\noutput : list = [-30, -24, -15, -12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(sub_n([1, 4, -1, 5],5)),4)),3)",
    "io_inp": [
      1,
      4,
      -1,
      5
    ],
    "io_out": [
      -30,
      -24,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(sub_n(input,5)),4)),3)"
  },
  {
    "input": "input : list = [-5, 3, 4, 3, -1, -3]\noutput : list = [4, 3, 3, -1, -3, -5]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(reverse([-5, 3, 4, 3, -1, -3])),29),11))",
    "io_inp": [
      -5,
      3,
      4,
      3,
      -1,
      -3
    ],
    "io_out": [
      4,
      3,
      3,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(reverse(input)),29),11))"
  },
  {
    "input": "input : list = [-3, 1, -3, 4, -4, -3]\noutput : list = [-3, 1, 4]",
    "output": "generated_output : list = drop(sort_asc(add_n(sub_n(sort_des([-3, 1, -3, 4, -4, -3]),1),1)),3)",
    "io_inp": [
      -3,
      1,
      -3,
      4,
      -4,
      -3
    ],
    "io_out": [
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(sub_n(sort_des(input),1),1)),3)"
  },
  {
    "input": "input : list = [-5, 5, 5, 0, -1, 5]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take(sort_asc(drop(drop([-5, 5, 5, 0, -1, 5],4),1)),44))",
    "io_inp": [
      -5,
      5,
      5,
      0,
      -1,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(drop(drop(input,4),1)),44))"
  },
  {
    "input": "input : list = [0, 2, 1, -1, 3]\noutput : list = [2, 1, -1, 3]",
    "output": "generated_output : list = drop([0, 2, 1, -1, 3],1)",
    "io_inp": [
      0,
      2,
      1,
      -1,
      3
    ],
    "io_out": [
      2,
      1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sort_des([-4, -4])),1)),3)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(sort_des(input)),1)),3)"
  },
  {
    "input": "input : list = [1, -4, -3, 5]\noutput : list = [-11, -10, -2]",
    "output": "generated_output : list = sub_n(sub_n(drop([1, -4, -3, 5],1),3),4)",
    "io_inp": [
      1,
      -4,
      -3,
      5
    ],
    "io_out": [
      -11,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(drop(input,1),3),4)"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [15, -12, -12]",
    "output": "generated_output : list = take(sort_des(mul_n(reverse(sort_des([4, -5, 4])),-3)),14)",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      15,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(reverse(sort_des(input)),-3)),14)"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [-4, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse([-4, 2, 5]))",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-5, -1, 5, 3]\noutput : list = [-10, -2, 10, 6]",
    "output": "generated_output : list = mul_n([-5, -1, 5, 3],2)",
    "io_inp": [
      -5,
      -1,
      5,
      3
    ],
    "io_out": [
      -10,
      -2,
      10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-2, 5, -3, 5]\noutput : list = [-9, -2, -10, -2]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(sub_n([-2, 5, -3, 5],-2),4)),5))",
    "io_inp": [
      -2,
      5,
      -3,
      5
    ],
    "io_out": [
      -9,
      -2,
      -10,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(sub_n(input,-2),4)),5))"
  },
  {
    "input": "input : list = [3, -4, 2, 5]\noutput : list = [6, -1, 5, 8]",
    "output": "generated_output : list = sub_n([3, -4, 2, 5],-3)",
    "io_inp": [
      3,
      -4,
      2,
      5
    ],
    "io_out": [
      6,
      -1,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -3, -2, 4, -1, -5]\noutput : list = [0, -5, -6, -7, -8, -9]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n([-4, -3, -2, 4, -1, -5],4))),20)",
    "io_inp": [
      -4,
      -3,
      -2,
      4,
      -1,
      -5
    ],
    "io_out": [
      0,
      -5,
      -6,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(input,4))),20)"
  },
  {
    "input": "input : list = [-4, -2, -2, -3, 4]\noutput : list = [-3, -9, -9, -10, -11]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(sort_des([-4, -2, -2, -3, 4]),4),2)),5)",
    "io_inp": [
      -4,
      -2,
      -2,
      -3,
      4
    ],
    "io_out": [
      -3,
      -9,
      -9,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(sort_des(input),4),2)),5)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [1, 7]",
    "output": "generated_output : list = add_n(sort_asc([-2, 4]),3)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-3, 5, -3, 3]\noutput : list = [-39, -39, -9, 1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(add_n([-3, 5, -3, 3],-5)),5)),1)",
    "io_inp": [
      -3,
      5,
      -3,
      3
    ],
    "io_out": [
      -39,
      -39,
      -9,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(add_n(input,-5)),5)),1)"
  },
  {
    "input": "input : list = [2, -4, 0, 3]\noutput : list = [-5, 7, 13, 16]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(mul_n([2, -4, 0, 3],3)),-2),-5))",
    "io_inp": [
      2,
      -4,
      0,
      3
    ],
    "io_out": [
      -5,
      7,
      13,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_des(mul_n(input,3)),-2),-5))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_asc([-5, 1])))))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [9, 3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(reverse([-1, 5]),4))))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [9, 6]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(sub_n([-1, 2],-2))),-5))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(sub_n(input,-2))),-5))"
  },
  {
    "input": "input : list = [0, -5, 5]\noutput : list = [-24, -4, 16]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n([0, -5, 5],-4),-2)),-2)",
    "io_inp": [
      0,
      -5,
      5
    ],
    "io_out": [
      -24,
      -4,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(input,-4),-2)),-2)"
  },
  {
    "input": "input : list = [-4, -4, -4, 0, -1]\noutput : list = [-13, -13, -13, -4, -1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n([-4, -4, -4, 0, -1],-3),5),-1)),4)",
    "io_inp": [
      -4,
      -4,
      -4,
      0,
      -1
    ],
    "io_out": [
      -13,
      -13,
      -13,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(add_n(mul_n(input,-3),5),-1)),4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-320, -192]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([5, 3],4),4),-4)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -320,
      -192
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,4),4),-4)"
  },
  {
    "input": "input : list = [-5, 2, 4]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(sort_des(take([-5, 2, 4],1)),3)",
    "io_inp": [
      -5,
      2,
      4
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,1)),3)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [5, 0, 0]",
    "output": "generated_output : list = reverse(reverse(sort_des(take(add_n([1, -4, -4],4),13))))",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      5,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(add_n(input,4),13))))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = sub_n(take(sort_des(add_n(reverse([5, 4]),-1)),30),-1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(add_n(reverse(input),-1)),30),-1)"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [6, 5, 1]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(sub_n([-3, 1, 2],1)))),5)",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(sub_n(input,1)))),5)"
  },
  {
    "input": "input : list = [-3, -2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(drop([-3, -2, 5],1)))))",
    "io_inp": [
      -3,
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [7, 1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n([4, -2],4),-4),5),2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(input,4),-4),5),2)"
  },
  {
    "input": "input : list = [-5, 0, 2, -5]\noutput : list = [45, 45, 0]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(mul_n([-5, 0, 2, -5],3))),3),-3)",
    "io_inp": [
      -5,
      0,
      2,
      -5
    ],
    "io_out": [
      45,
      45,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(mul_n(input,3))),3),-3)"
  },
  {
    "input": "input : list = [3, 4, 3, -3]\noutput : list = [11, 11, 12]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(sort_des([3, 4, 3, -3]),3),-4),4))",
    "io_inp": [
      3,
      4,
      3,
      -3
    ],
    "io_out": [
      11,
      11,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(sort_des(input),3),-4),4))"
  },
  {
    "input": "input : list = [1, 0, 5]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(take(take([1, 0, 5],1),7),3)",
    "io_inp": [
      1,
      0,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(input,1),7),3)"
  },
  {
    "input": "input : list = [-5, -2, -5, 2, 5, 3]\noutput : list = [-5, -2, 2, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(drop([-5, -2, -5, 2, 5, 3],1))))",
    "io_inp": [
      -5,
      -2,
      -5,
      2,
      5,
      3
    ],
    "io_out": [
      -5,
      -2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(drop(input,1))))"
  },
  {
    "input": "input : list = [-3, -3, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = drop([-3, -3, -4, -2],2)",
    "io_inp": [
      -3,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [-1, -2, 5]",
    "output": "generated_output : list = reverse(mul_n([5, -2, -1],1))",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-5, 10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sub_n([-2, -5],-3),-5)),-3),3)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -5,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sub_n(input,-3),-5)),-3),3)"
  },
  {
    "input": "input : list = [-5, -5, 0, -3, 4, 2]\noutput : list = [-11, 3, -1]",
    "output": "generated_output : list = add_n(add_n(add_n(mul_n(drop([-5, -5, 0, -3, 4, 2],3),2),-5),5),-5)",
    "io_inp": [
      -5,
      -5,
      0,
      -3,
      4,
      2
    ],
    "io_out": [
      -11,
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(mul_n(drop(input,3),2),-5),5),-5)"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n([2, -2, -5],2),2)))",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(input,2),2)))"
  },
  {
    "input": "input : list = [3, 5, -3, -2, 0]\noutput : list = [2, 4, -4, -3, -1]",
    "output": "generated_output : list = add_n(take(sub_n([3, 5, -3, -2, 0],3),24),2)",
    "io_inp": [
      3,
      5,
      -3,
      -2,
      0
    ],
    "io_out": [
      2,
      4,
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,3),24),2)"
  },
  {
    "input": "input : list = [0, -5, 4, -2, 3, -5]\noutput : list = [-2, 3, -6]",
    "output": "generated_output : list = mul_n(take(take(add_n(take([0, -5, 4, -2, 3, -5],3),2),13),13),-1)",
    "io_inp": [
      0,
      -5,
      4,
      -2,
      3,
      -5
    ],
    "io_out": [
      -2,
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(take(input,3),2),13),13),-1)"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [8, 7]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(drop([5, 4, 5],1))),3),7)",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(drop(input,1))),3),7)"
  },
  {
    "input": "input : list = [-5, -4, 4, -2, -3, 3]\noutput : list = [17, 14, 11, 8, -7, -10]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_asc([-5, -4, 4, -2, -3, 3])),-3)),-2)",
    "io_inp": [
      -5,
      -4,
      4,
      -2,
      -3,
      3
    ],
    "io_out": [
      17,
      14,
      11,
      8,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_asc(input)),-3)),-2)"
  },
  {
    "input": "input : list = [5, -3, -5]\noutput : list = [-27, -3, 3]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_asc([5, -3, -5]))),4),-3)",
    "io_inp": [
      5,
      -3,
      -5
    ],
    "io_out": [
      -27,
      -3,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_asc(sort_asc(input))),4),-3)"
  },
  {
    "input": "input : list = [-3, -3, -1, -2]\noutput : list = [3, 3, 2, 1]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(reverse([-3, -3, -1, -2])))),-1)",
    "io_inp": [
      -3,
      -3,
      -1,
      -2
    ],
    "io_out": [
      3,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [-5, 4, -4, -3, -4]\noutput : list = [21, -6, 18, 15, 18]",
    "output": "generated_output : list = mul_n(sub_n([-5, 4, -4, -3, -4],2),-3)",
    "io_inp": [
      -5,
      4,
      -4,
      -3,
      -4
    ],
    "io_out": [
      21,
      -6,
      18,
      15,
      18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),-3)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(drop([1, 1, -3],1),11),1)))",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(drop(input,1),11),1)))"
  },
  {
    "input": "input : list = [2, 3, 0, 5, 0, 3]\noutput : list = [6, 3, 8, 3, 6, 5]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse([2, 3, 0, 5, 0, 3]),1),4),1)",
    "io_inp": [
      2,
      3,
      0,
      5,
      0,
      3
    ],
    "io_out": [
      6,
      3,
      8,
      3,
      6,
      5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(input),1),4),1)"
  },
  {
    "input": "input : list = [-4, 4, -3, -5, -2]\noutput : list = [-5, -4, -3, -2, 4]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n([-4, 4, -3, -5, -2],1)),-1),1)",
    "io_inp": [
      -4,
      4,
      -3,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(input,1)),-1),1)"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [30, -60, -90]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(sort_asc([3, 1, -5]),-3),1),-5),3)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      30,
      -60,
      -90
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(sort_asc(input),-3),1),-5),3)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [8, 2]",
    "output": "generated_output : list = reverse(add_n([-2, 4],4))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([-4, -1])),-5)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),-5)"
  },
  {
    "input": "input : list = [0, -5, 0, 5]\noutput : list = [1, -4, -4, -9]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(mul_n([0, -5, 0, 5],-1),2)),-2))",
    "io_inp": [
      0,
      -5,
      0,
      5
    ],
    "io_out": [
      1,
      -4,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(mul_n(input,-1),2)),-2))"
  },
  {
    "input": "input : list = [-2, -4, 0, 2, 1, -3]\noutput : list = [11, 6, 1, -9, -14, -19]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sort_asc([-2, -4, 0, 2, 1, -3]))),5),1)",
    "io_inp": [
      -2,
      -4,
      0,
      2,
      1,
      -3
    ],
    "io_out": [
      11,
      6,
      1,
      -9,
      -14,
      -19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(sort_asc(input))),5),1)"
  },
  {
    "input": "input : list = [-5, -3, 2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(take([-5, -3, 2],1)))),3)",
    "io_inp": [
      -5,
      -3,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(take(input,1)))),3)"
  },
  {
    "input": "input : list = [4, 5, -3, -2]\noutput : list = [7, 6, 0, -1]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse([4, 5, -3, -2])),1),-2)",
    "io_inp": [
      4,
      5,
      -3,
      -2
    ],
    "io_out": [
      7,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(input)),1),-2)"
  },
  {
    "input": "input : list = [-3, -3, 0]\noutput : list = [-8, -8, -5]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(sort_asc([-3, -3, 0])),-5)),30)",
    "io_inp": [
      -3,
      -3,
      0
    ],
    "io_out": [
      -8,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(sort_asc(input)),-5)),30)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = mul_n([2, -2],1)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, 3, 0, -4, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(drop(take(sort_des(reverse([4, 3, 0, -4, 3])),3),2),46)",
    "io_inp": [
      4,
      3,
      0,
      -4,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(drop(take(sort_des(reverse(input)),3),2),46)"
  },
  {
    "input": "input : list = [-3, -3, -3]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_des([-3, -3, -3]),3),4)",
    "io_inp": [
      -3,
      -3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(input),3),4)"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [16, -8, -40]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(mul_n([1, 5, -2],2),-4)),37))",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      16,
      -8,
      -40
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(mul_n(input,2),-4)),37))"
  },
  {
    "input": "input : list = [2, 4, -4, 4]\noutput : list = [4, -2, -4, -4]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sort_des(reverse([2, 4, -4, 4])),-1)))",
    "io_inp": [
      2,
      4,
      -4,
      4
    ],
    "io_out": [
      4,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sort_des(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-5, -5, 1, -1, 0]\noutput : list = [9, 8, 10, 4, 4]",
    "output": "generated_output : list = take(reverse(add_n(take(add_n([-5, -5, 1, -1, 0],5),5),4)),31)",
    "io_inp": [
      -5,
      -5,
      1,
      -1,
      0
    ],
    "io_out": [
      9,
      8,
      10,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(take(add_n(input,5),5),4)),31)"
  },
  {
    "input": "input : list = [-4, -1, 5, 2, -3, 3]\noutput : list = [-6, -3, 3, 0, -5, 1]",
    "output": "generated_output : list = sub_n(add_n([-4, -1, 5, 2, -3, 3],-1),1)",
    "io_inp": [
      -4,
      -1,
      5,
      2,
      -3,
      3
    ],
    "io_out": [
      -6,
      -3,
      3,
      0,
      -5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),1)"
  },
  {
    "input": "input : list = [-1, 3, -5]\noutput : list = [8, 4, 0]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_asc(reverse([-1, 3, -5])),-5)))",
    "io_inp": [
      -1,
      3,
      -5
    ],
    "io_out": [
      8,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_asc(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [-1, -3, 0, -1, -2, -1]\noutput : list = [3, 15, 3]",
    "output": "generated_output : list = mul_n(take(drop(sub_n(mul_n([-1, -3, 0, -1, -2, -1],4),-3),3),27),-3)",
    "io_inp": [
      -1,
      -3,
      0,
      -1,
      -2,
      -1
    ],
    "io_out": [
      3,
      15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(sub_n(mul_n(input,4),-3),3),27),-3)"
  },
  {
    "input": "input : list = [0, 1, 4, 1, 3]\noutput : list = [-4, 4]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(drop([0, 1, 4, 1, 3],3)),3),1),-4)",
    "io_inp": [
      0,
      1,
      4,
      1,
      3
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(drop(input,3)),3),1),-4)"
  },
  {
    "input": "input : list = [-4, -4, 1, -5, 0]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n(sort_des(drop([-4, -4, 1, -5, 0],3)),-1)",
    "io_inp": [
      -4,
      -4,
      1,
      -5,
      0
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,3)),-1)"
  },
  {
    "input": "input : list = [-1, 1, 0, -1, 2, 0]\noutput : list = [2, 1, 0, 0, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_des([-1, 1, 0, -1, 2, 0])))))",
    "io_inp": [
      -1,
      1,
      0,
      -1,
      2,
      0
    ],
    "io_out": [
      2,
      1,
      0,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 2, -4, 4, -3]\noutput : list = [-16, -9, -17, -11, -15]",
    "output": "generated_output : list = add_n(sub_n(sub_n(reverse(sub_n([-2, 2, -4, 4, -3],3)),4),2),-4)",
    "io_inp": [
      -2,
      2,
      -4,
      4,
      -3
    ],
    "io_out": [
      -16,
      -9,
      -17,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(reverse(sub_n(input,3)),4),2),-4)"
  },
  {
    "input": "input : list = [0, -5, 2, 1]\noutput : list = [5, 0]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(take(take([0, -5, 2, 1],2),13),-5)))",
    "io_inp": [
      0,
      -5,
      2,
      1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(take(take(input,2),13),-5)))"
  },
  {
    "input": "input : list = [4, -3, -3, 4, -5]\noutput : list = [-10, -8, -8, -1, -1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse(add_n([4, -3, -3, 4, -5],-1)),-2),2))",
    "io_inp": [
      4,
      -3,
      -3,
      4,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(add_n(input,-1)),-2),2))"
  },
  {
    "input": "input : list = [2, -1, -3]\noutput : list = [2, 6]",
    "output": "generated_output : list = mul_n(sort_des(drop([2, -1, -3],1)),-2)",
    "io_inp": [
      2,
      -1,
      -3
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [160, -128]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(mul_n([5, -4],-2),4),-4)))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      160,
      -128
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(mul_n(input,-2),4),-4)))"
  },
  {
    "input": "input : list = [1, 5, -4, 2, -1, 3]\noutput : list = [-9, -6, -4, -3, -2, 0]",
    "output": "generated_output : list = take(add_n(take(take(sort_asc([1, 5, -4, 2, -1, 3]),19),33),-5),49)",
    "io_inp": [
      1,
      5,
      -4,
      2,
      -1,
      3
    ],
    "io_out": [
      -9,
      -6,
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(sort_asc(input),19),33),-5),49)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [15, -25]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n([5, -5],-4),-4)),1)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      15,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(input,-4),-4)),1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-8, 2]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_des([0, 5])),-2),2))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_des(input)),-2),2))"
  },
  {
    "input": "input : list = [2, 3, 1, 2, 3]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 3, 1, 2, 3],1)",
    "io_inp": [
      2,
      3,
      1,
      2,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 4, 1, -3, 3, -4]\noutput : list = [-5, 13, 4, -8, 10, -11]",
    "output": "generated_output : list = add_n(mul_n([-2, 4, 1, -3, 3, -4],3),1)",
    "io_inp": [
      -2,
      4,
      1,
      -3,
      3,
      -4
    ],
    "io_out": [
      -5,
      13,
      4,
      -8,
      10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),1)"
  },
  {
    "input": "input : list = [3, 5, -5, -4, -4]\noutput : list = [3, 5, -5, -4, -4]",
    "output": "generated_output : list = reverse(take(reverse(reverse(reverse([3, 5, -5, -4, -4]))),33))",
    "io_inp": [
      3,
      5,
      -5,
      -4,
      -4
    ],
    "io_out": [
      3,
      5,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(reverse(input))),33))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, 6]",
    "output": "generated_output : list = reverse(sub_n([2, -2],-4))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-4))"
  },
  {
    "input": "input : list = [-1, -1, 1, -4, 0, -1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(drop(add_n(sort_des(take([-1, -1, 1, -4, 0, -1],3)),5),2))",
    "io_inp": [
      -1,
      -1,
      1,
      -4,
      0,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(sort_des(take(input,3)),5),2))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(reverse([-2, 2])))))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [7, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n([-4, -3, 3],4),-2)),2))",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      7,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sub_n(add_n(input,4),-2)),2))"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(take([0, -2, -4],1),3),19)),-4)",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(take(input,1),3),19)),-4)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(reverse([-1, 4]))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-2, -1, 2, 0]\noutput : list = [11, 6, -9, 1]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(mul_n([-2, -1, 2, 0],-5),-1))),14)",
    "io_inp": [
      -2,
      -1,
      2,
      0
    ],
    "io_out": [
      11,
      6,
      -9,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(mul_n(input,-5),-1))),14)"
  },
  {
    "input": "input : list = [3, -1, -1, 5, 3]\noutput : list = [-6, -6, -2, -2, 0]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(reverse([3, -1, -1, 5, 3])),15),-4),1)",
    "io_inp": [
      3,
      -1,
      -1,
      5,
      3
    ],
    "io_out": [
      -6,
      -6,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(reverse(input)),15),-4),1)"
  },
  {
    "input": "input : list = [-2, -5, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc(drop([-2, -5, -5, -5],2))",
    "io_inp": [
      -2,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [11, -1, -10]",
    "output": "generated_output : list = add_n(add_n(reverse(take(mul_n([4, 1, -3],-3),13)),-2),4)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      11,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(take(mul_n(input,-3),13)),-2),4)"
  },
  {
    "input": "input : list = [-2, -3, 5, -4, -2]\noutput : list = [6, -1, -2]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n([-2, -3, 5, -4, -2],4),3),3))",
    "io_inp": [
      -2,
      -3,
      5,
      -4,
      -2
    ],
    "io_out": [
      6,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(input,4),3),3))"
  },
  {
    "input": "input : list = [5, 5, -1, 1, -2, -2]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(drop(reverse(sort_asc(mul_n([5, 5, -1, 1, -2, -2],2))),5),3)",
    "io_inp": [
      5,
      5,
      -1,
      1,
      -2,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(reverse(sort_asc(mul_n(input,2))),5),3)"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc([0, -5, 1]),4)",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-1, 0, -1, -1, 3]\noutput : list = [3, 0, -1, -1, -1]",
    "output": "generated_output : list = sort_des([-1, 0, -1, -1, 3])",
    "io_inp": [
      -1,
      0,
      -1,
      -1,
      3
    ],
    "io_out": [
      3,
      0,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, -4, 0, 1]\noutput : list = [12, 4, 2, 2, -2]",
    "output": "generated_output : list = take(mul_n(sort_asc(reverse(sub_n([1, 3, -4, 0, 1],2))),-2),19)",
    "io_inp": [
      1,
      3,
      -4,
      0,
      1
    ],
    "io_out": [
      12,
      4,
      2,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(reverse(sub_n(input,2))),-2),19)"
  },
  {
    "input": "input : list = [-1, 4, 2, 1, -5, -3]\noutput : list = [-5, -3, -1, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([-1, 4, 2, 1, -5, -3])",
    "io_inp": [
      -1,
      4,
      2,
      1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 5, 0, 0, 5, 4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(drop(sort_des([-5, 5, 0, 0, 5, 4]),5))",
    "io_inp": [
      -5,
      5,
      0,
      0,
      5,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(input),5))"
  },
  {
    "input": "input : list = [4, -2, -3, 5, -4, 4]\noutput : list = [5, 4, 4, -2, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_des([4, -2, -3, 5, -4, 4])))))",
    "io_inp": [
      4,
      -2,
      -3,
      5,
      -4,
      4
    ],
    "io_out": [
      5,
      4,
      4,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, -2, 2, 5]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take([-1, -2, 2, 5],1),5)",
    "io_inp": [
      -1,
      -2,
      2,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-3, 4, 3, -1, 4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = add_n(sort_asc(take([-3, 4, 3, -1, 4, 3],2)),-1)",
    "io_inp": [
      -3,
      4,
      3,
      -1,
      4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,2)),-1)"
  },
  {
    "input": "input : list = [2, -3, 1, -1]\noutput : list = [-14, -10, -6, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(sort_des([2, -3, 1, -1])),4),2))",
    "io_inp": [
      2,
      -3,
      1,
      -1
    ],
    "io_out": [
      -14,
      -10,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_asc(sort_des(input)),4),2))"
  },
  {
    "input": "input : list = [0, -2, 3, 4]\noutput : list = [0, -1, -4, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_des([0, -2, 3, 4])),-1),-5))",
    "io_inp": [
      0,
      -2,
      3,
      4
    ],
    "io_out": [
      0,
      -1,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_des(input)),-1),-5))"
  },
  {
    "input": "input : list = [-4, 2, -2, 1, -3, 5]\noutput : list = [20, 15, 10, -5, -10, -25]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des([-4, 2, -2, 1, -3, 5]),24),-5))",
    "io_inp": [
      -4,
      2,
      -2,
      1,
      -3,
      5
    ],
    "io_out": [
      20,
      15,
      10,
      -5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(input),24),-5))"
  },
  {
    "input": "input : list = [-3, 1, -1, -3, 2, 5]\noutput : list = [31]",
    "output": "generated_output : list = add_n(sort_des(drop(mul_n(add_n([-3, 1, -1, -3, 2, 5],3),4),5)),-1)",
    "io_inp": [
      -3,
      1,
      -1,
      -3,
      2,
      5
    ],
    "io_out": [
      31
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(mul_n(add_n(input,3),4),5)),-1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, -4]",
    "output": "generated_output : list = mul_n([0, 4],-1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [9, 5]",
    "output": "generated_output : list = add_n([4, 0],5)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      9,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-3, 4, 1]\noutput : list = [8, 5, 1]",
    "output": "generated_output : list = sub_n(take(sort_des(sort_des([-3, 4, 1])),18),-4)",
    "io_inp": [
      -3,
      4,
      1
    ],
    "io_out": [
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(sort_des(input)),18),-4)"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n(drop([2, 3, -3],1),4)),-4),-2)",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(drop(input,1),4)),-4),-2)"
  },
  {
    "input": "input : list = [2, 4, 4, -2, -2]\noutput : list = [-8, -20, -20, 16, 16]",
    "output": "generated_output : list = add_n(mul_n(take(mul_n([2, 4, 4, -2, -2],-3),13),2),4)",
    "io_inp": [
      2,
      4,
      4,
      -2,
      -2
    ],
    "io_out": [
      -8,
      -20,
      -20,
      16,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(mul_n(input,-3),13),2),4)"
  },
  {
    "input": "input : list = [-4, -2, -2, -5, 3]\noutput : list = [-2, -2, -4]",
    "output": "generated_output : list = sort_des(take([-4, -2, -2, -5, 3],3))",
    "io_inp": [
      -4,
      -2,
      -2,
      -5,
      3
    ],
    "io_out": [
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [5, 0, -2, 5]\noutput : list = [165, 115, -10, -10]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(add_n([5, 0, -2, 5],-4),-5)),-3),5)",
    "io_inp": [
      5,
      0,
      -2,
      5
    ],
    "io_out": [
      165,
      115,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(add_n(input,-4),-5)),-3),5)"
  },
  {
    "input": "input : list = [0, 2, 5, 2]\noutput : list = [28, 13, 13, 3]",
    "output": "generated_output : list = add_n(sort_des(mul_n([0, 2, 5, 2],5)),3)",
    "io_inp": [
      0,
      2,
      5,
      2
    ],
    "io_out": [
      28,
      13,
      13,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,5)),3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-1, -2])),-4)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),-4)"
  },
  {
    "input": "input : list = [1, -5, -1, -3, 1]\noutput : list = [-12, -10, -8, -6]",
    "output": "generated_output : list = add_n(sort_asc(add_n(reverse(drop([1, -5, -1, -3, 1],1)),-5)),-2)",
    "io_inp": [
      1,
      -5,
      -1,
      -3,
      1
    ],
    "io_out": [
      -12,
      -10,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(reverse(drop(input,1)),-5)),-2)"
  },
  {
    "input": "input : list = [0, 0, 0, -3]\noutput : list = [-3, -3, -3, -6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(reverse([0, 0, 0, -3]),4)),1),1)",
    "io_inp": [
      0,
      0,
      0,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(reverse(input),4)),1),1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_des([5, 0])),1)),5)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_des(input)),1)),5)"
  },
  {
    "input": "input : list = [0, 0, -2, -2]\noutput : list = [0, 0, 12, 12]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_asc([0, 0, -2, -2]),-3)),2),5)",
    "io_inp": [
      0,
      0,
      -2,
      -2
    ],
    "io_out": [
      0,
      0,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_asc(input),-3)),2),5)"
  },
  {
    "input": "input : list = [-2, -2, -4, -1]\noutput : list = [5, 7, 7, 11]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(mul_n([-2, -2, -4, -1],-2))),1),-2)",
    "io_inp": [
      -2,
      -2,
      -4,
      -1
    ],
    "io_out": [
      5,
      7,
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(mul_n(input,-2))),1),-2)"
  },
  {
    "input": "input : list = [1, 4, -5, -2, 2, -2]\noutput : list = [-4, 2, 5]",
    "output": "generated_output : list = sort_asc(sub_n(take([1, 4, -5, -2, 2, -2],3),-1))",
    "io_inp": [
      1,
      4,
      -5,
      -2,
      2,
      -2
    ],
    "io_out": [
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(input,3),-1))"
  },
  {
    "input": "input : list = [-1, -2, 2, -1, -4]\noutput : list = [2, -1, -1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des([-1, -2, 2, -1, -4]))",
    "io_inp": [
      -1,
      -2,
      2,
      -1,
      -4
    ],
    "io_out": [
      2,
      -1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-10, -5]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(add_n([-3, -2],3),-5),15),5))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(add_n(input,3),-5),15),5))"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [9, 8, 7]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sub_n([2, 4, 3],4),-5))),-4)",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      9,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(sub_n(input,4),-5))),-4)"
  },
  {
    "input": "input : list = [-2, -1, -4, -1]\noutput : list = [9, 9, 8, 6]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(add_n([-2, -1, -4, -1],3),-3)),-4),52)",
    "io_inp": [
      -2,
      -1,
      -4,
      -1
    ],
    "io_out": [
      9,
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(add_n(input,3),-3)),-4),52)"
  },
  {
    "input": "input : list = [5, -1, -2, 3, -5]\noutput : list = [-5, -2, -1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([5, -1, -2, 3, -5])))",
    "io_inp": [
      5,
      -1,
      -2,
      3,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-6, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(reverse([-3, 3]),-2))))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc([2, -4, -1])),-1))",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(input)),-1))"
  },
  {
    "input": "input : list = [0, -2, -3, 1]\noutput : list = [-90, -120, -135, -75]",
    "output": "generated_output : list = take(mul_n(add_n(mul_n(sub_n([0, -2, -3, 1],5),-3),3),-5),32)",
    "io_inp": [
      0,
      -2,
      -3,
      1
    ],
    "io_out": [
      -90,
      -120,
      -135,
      -75
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(mul_n(sub_n(input,5),-3),3),-5),32)"
  },
  {
    "input": "input : list = [3, 1, 0]\noutput : list = [-1, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n([3, 1, 0],-1),13)),-2)",
    "io_inp": [
      3,
      1,
      0
    ],
    "io_out": [
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(input,-1),13)),-2)"
  },
  {
    "input": "input : list = [-5, -2, 3, 3, -4, 1]\noutput : list = [5, 5, 3]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(drop([-5, -2, 3, 3, -4, 1],1),1),-3)),3)",
    "io_inp": [
      -5,
      -2,
      3,
      3,
      -4,
      1
    ],
    "io_out": [
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(drop(input,1),1),-3)),3)"
  },
  {
    "input": "input : list = [3, -4, 5, -3, 4, 2]\noutput : list = [3, 2, 1, 0, -5, -6]",
    "output": "generated_output : list = add_n(sort_des(reverse(add_n(sort_asc([3, -4, 5, -3, 4, 2]),-1))),-1)",
    "io_inp": [
      3,
      -4,
      5,
      -3,
      4,
      2
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(add_n(sort_asc(input),-1))),-1)"
  },
  {
    "input": "input : list = [1, -1, 1]\noutput : list = [2, 0, 2]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(reverse([1, -1, 1]),14),3),-1),3)",
    "io_inp": [
      1,
      -1,
      1
    ],
    "io_out": [
      2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(reverse(input),14),3),-1),3)"
  },
  {
    "input": "input : list = [4, -5, 4, -1, 2, 5]\noutput : list = [4, 3, 3, 1, -2, -6]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(reverse([4, -5, 4, -1, 2, 5])),5)),4)",
    "io_inp": [
      4,
      -5,
      4,
      -1,
      2,
      5
    ],
    "io_out": [
      4,
      3,
      3,
      1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(reverse(input)),5)),4)"
  },
  {
    "input": "input : list = [0, 5, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(reverse(take([0, 5, 4],1)),21)",
    "io_inp": [
      0,
      5,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),21)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des([0, -2]),1),-2),18)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(input),1),-2),18)"
  },
  {
    "input": "input : list = [-1, -5, -3, -5]\noutput : list = [12, 28, 44, 44]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(reverse([-1, -5, -3, -5]),-4),2)),2)",
    "io_inp": [
      -1,
      -5,
      -3,
      -5
    ],
    "io_out": [
      12,
      28,
      44,
      44
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(reverse(input),-4),2)),2)"
  },
  {
    "input": "input : list = [3, -3, -5, -2, 0]\noutput : list = [0, -2, -5, -3, 3]",
    "output": "generated_output : list = reverse([3, -3, -5, -2, 0])",
    "io_inp": [
      3,
      -3,
      -5,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      -5,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, 0, 4, -1, 4]\noutput : list = [4, 3, 3, -1, -2, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc(reverse([-4, 5, 0, 4, -1, 4]))),-1))",
    "io_inp": [
      -4,
      5,
      0,
      4,
      -1,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(reverse(input))),-1))"
  },
  {
    "input": "input : list = [-3, 2, -4, -2]\noutput : list = [-5, -13, 11, -9]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(mul_n([-3, 2, -4, -2],1),-1),4)),-1)",
    "io_inp": [
      -3,
      2,
      -4,
      -2
    ],
    "io_out": [
      -5,
      -13,
      11,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(mul_n(input,1),-1),4)),-1)"
  },
  {
    "input": "input : list = [-2, 0, 3, 0, -2, 1]\noutput : list = [7, 5, 4, 4, 2, 2]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(sort_des([-2, 0, 3, 0, -2, 1])),4)))",
    "io_inp": [
      -2,
      0,
      3,
      0,
      -2,
      1
    ],
    "io_out": [
      7,
      5,
      4,
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [11, 6, 1]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(mul_n([0, 5, -5],-1),-2)),4))",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      11,
      6,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(mul_n(input,-1),-2)),4))"
  },
  {
    "input": "input : list = [4, 2, -1, -1]\noutput : list = [-4, -4, 8, 16]",
    "output": "generated_output : list = reverse(take(take(mul_n(sort_des([4, 2, -1, -1]),4),16),26))",
    "io_inp": [
      4,
      2,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      8,
      16
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(sort_des(input),4),16),26))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-15, 0]",
    "output": "generated_output : list = sort_asc(mul_n([0, -3],5))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -15,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [-3, -2, 1, 4]\noutput : list = [8, 7, 4, 1]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(add_n([-3, -2, 1, 4],1),12),-1),-1),-5)",
    "io_inp": [
      -3,
      -2,
      1,
      4
    ],
    "io_out": [
      8,
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(add_n(input,1),12),-1),-1),-5)"
  },
  {
    "input": "input : list = [0, 2, -3, 5]\noutput : list = [27, 18, 12, 3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_asc([0, 2, -3, 5]),5),2),-3),3)",
    "io_inp": [
      0,
      2,
      -3,
      5
    ],
    "io_out": [
      27,
      18,
      12,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_asc(input),5),2),-3),3)"
  },
  {
    "input": "input : list = [-4, 1, 0, -5, -5]\noutput : list = [-2, -2, -1, 3, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n([-4, 1, 0, -5, -5],-4)),1))",
    "io_inp": [
      -4,
      1,
      0,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(input,-4)),1))"
  },
  {
    "input": "input : list = [5, 4, -2, -3, 1]\noutput : list = [8]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(take([5, 4, -2, -3, 1],1))),40),3)",
    "io_inp": [
      5,
      4,
      -2,
      -3,
      1
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(take(input,1))),40),3)"
  },
  {
    "input": "input : list = [-5, 0, -5, 3]\noutput : list = [-12, -3, 12, 12]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_des([-5, 0, -5, 3]),-1),-3),-1),-3)",
    "io_inp": [
      -5,
      0,
      -5,
      3
    ],
    "io_out": [
      -12,
      -3,
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_des(input),-1),-3),-1),-3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-13, 11]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-3, 5]),3),4)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -13,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),3),4)"
  },
  {
    "input": "input : list = [-5, -3, 4, 5]\noutput : list = [-5]",
    "output": "generated_output : list = take(reverse(take([-5, -3, 4, 5],1)),23)",
    "io_inp": [
      -5,
      -3,
      4,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,1)),23)"
  },
  {
    "input": "input : list = [4, -2, -5, 1, 3, -1]\noutput : list = [7, -1, 3, 15, 9, -3]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(sub_n([4, -2, -5, 1, 3, -1],4),-2),33),-3))",
    "io_inp": [
      4,
      -2,
      -5,
      1,
      3,
      -1
    ],
    "io_out": [
      7,
      -1,
      3,
      15,
      9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(sub_n(input,4),-2),33),-3))"
  },
  {
    "input": "input : list = [4, -1, 3, 3]\noutput : list = [-6, -10]",
    "output": "generated_output : list = add_n(sort_des(take(sort_asc(add_n([4, -1, 3, 3],-4)),2)),-5)",
    "io_inp": [
      4,
      -1,
      3,
      3
    ],
    "io_out": [
      -6,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_asc(add_n(input,-4)),2)),-5)"
  },
  {
    "input": "input : list = [1, 4, -1, 2]\noutput : list = [-2, 1, -4, -1]",
    "output": "generated_output : list = add_n([1, 4, -1, 2],-3)",
    "io_inp": [
      1,
      4,
      -1,
      2
    ],
    "io_out": [
      -2,
      1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -4, 0, -2]\noutput : list = [2, 6, -2, -2]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n([-4, -4, 0, -2],2),3)),-3)",
    "io_inp": [
      -4,
      -4,
      0,
      -2
    ],
    "io_out": [
      2,
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(input,2),3)),-3)"
  },
  {
    "input": "input : list = [4, -5, -4, 3, 3]\noutput : list = [9, 8, 8, 1, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(sub_n([4, -5, -4, 3, 3],-4),1))))",
    "io_inp": [
      4,
      -5,
      -4,
      3,
      3
    ],
    "io_out": [
      9,
      8,
      8,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(sub_n(input,-4),1))))"
  },
  {
    "input": "input : list = [-5, 4, 1, -1, 3]\noutput : list = [4, 3, 1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, 4, 1, -1, 3]))",
    "io_inp": [
      -5,
      4,
      1,
      -1,
      3
    ],
    "io_out": [
      4,
      3,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, 5, 4, 5]\noutput : list = [5, 4, 5, 0]",
    "output": "generated_output : list = reverse([0, 5, 4, 5])",
    "io_inp": [
      0,
      5,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, -3, 4, -5]\noutput : list = [4, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(reverse([-2, -4, -3, 4, -5])))))",
    "io_inp": [
      -2,
      -4,
      -3,
      4,
      -5
    ],
    "io_out": [
      4,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [3, 1, -2, -3, -5]\noutput : list = [5, 3, 0, -1, -3]",
    "output": "generated_output : list = sub_n([3, 1, -2, -3, -5],-2)",
    "io_inp": [
      3,
      1,
      -2,
      -3,
      -5
    ],
    "io_out": [
      5,
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 5, 2, -2]\noutput : list = [-18, -9, 0, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(mul_n([-1, 5, 2, -2],-3),3))),51)",
    "io_inp": [
      -1,
      5,
      2,
      -2
    ],
    "io_out": [
      -18,
      -9,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(mul_n(input,-3),3))),51)"
  },
  {
    "input": "input : list = [2, -3, 2]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc([2, -3, 2])),3)))",
    "io_inp": [
      2,
      -3,
      2
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(reverse(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [0, 4, 1, -4]\noutput : list = [0, 20]",
    "output": "generated_output : list = take(mul_n([0, 4, 1, -4],5),2)",
    "io_inp": [
      0,
      4,
      1,
      -4
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(input,5),2)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [15, -30]",
    "output": "generated_output : list = mul_n(add_n([-4, 5],1),-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,1),-5)"
  },
  {
    "input": "input : list = [-3, -3, -3, 4]\noutput : list = [30, 30, 30, -40]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([-3, -3, -3, 4],-2)),5)",
    "io_inp": [
      -3,
      -3,
      -3,
      4
    ],
    "io_out": [
      30,
      30,
      30,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,-2)),5)"
  },
  {
    "input": "input : list = [0, 2, 1, 1, -3]\noutput : list = [-13, -8, -8, -3, 12]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_des(mul_n([0, 2, 1, 1, -3],-5))),-3))",
    "io_inp": [
      0,
      2,
      1,
      1,
      -3
    ],
    "io_out": [
      -13,
      -8,
      -8,
      -3,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_des(mul_n(input,-5))),-3))"
  },
  {
    "input": "input : list = [4, -2, -3]\noutput : list = [15, 10, -20]",
    "output": "generated_output : list = sort_des(mul_n([4, -2, -3],-5))",
    "io_inp": [
      4,
      -2,
      -3
    ],
    "io_out": [
      15,
      10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-2, 2, -1, 3, 3, 4]\noutput : list = [-5, -4, -1, 0, 0, 1]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_des([-2, 2, -1, 3, 3, 4]),1))),-2)",
    "io_inp": [
      -2,
      2,
      -1,
      3,
      3,
      4
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_des(input),1))),-2)"
  },
  {
    "input": "input : list = [3, 2, -5, -2]\noutput : list = [-5, -2, 2, 3]",
    "output": "generated_output : list = reverse(sort_des([3, 2, -5, -2]))",
    "io_inp": [
      3,
      2,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 0, -2, 0, -1, 2]\noutput : list = [-4, 0, 0, 2, 4, 4]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc([-2, 0, -2, 0, -1, 2])),1),-2)",
    "io_inp": [
      -2,
      0,
      -2,
      0,
      -1,
      2
    ],
    "io_out": [
      -4,
      0,
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(input)),1),-2)"
  },
  {
    "input": "input : list = [5, 1, 5, -4]\noutput : list = [-20, 5, 25]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(drop([5, 1, 5, -4],1),11),5)),3)",
    "io_inp": [
      5,
      1,
      5,
      -4
    ],
    "io_out": [
      -20,
      5,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(drop(input,1),11),5)),3)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(sort_des([5, 4]),3),17),-1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(sort_des(input),3),17),-1))"
  },
  {
    "input": "input : list = [-3, 3, 3]\noutput : list = [12, 12, 6]",
    "output": "generated_output : list = add_n(add_n(take(add_n(sort_des([-3, 3, 3]),5),5),3),1)",
    "io_inp": [
      -3,
      3,
      3
    ],
    "io_out": [
      12,
      12,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(sort_des(input),5),5),3),1)"
  },
  {
    "input": "input : list = [3, 4, 4, -1]\noutput : list = [-1, 3, 4, 4]",
    "output": "generated_output : list = sort_asc([3, 4, 4, -1])",
    "io_inp": [
      3,
      4,
      4,
      -1
    ],
    "io_out": [
      -1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 0, 0, 5, 5, -3]\noutput : list = [-3, 0, 0, 2, 5, 5]",
    "output": "generated_output : list = sort_asc([2, 0, 0, 5, 5, -3])",
    "io_inp": [
      2,
      0,
      0,
      5,
      5,
      -3
    ],
    "io_out": [
      -3,
      0,
      0,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -5, 0]\noutput : list = [-2, 10, 0]",
    "output": "generated_output : list = mul_n([1, -5, 0],-2)",
    "io_inp": [
      1,
      -5,
      0
    ],
    "io_out": [
      -2,
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, 4, 5, 3, -5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(drop([0, 4, 5, 3, -5],3)))))",
    "io_inp": [
      0,
      4,
      5,
      3,
      -5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(drop(input,3)))))"
  },
  {
    "input": "input : list = [2, 2, 3, -4]\noutput : list = [1, 0, 0, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([2, 2, 3, -4]),-2))",
    "io_inp": [
      2,
      2,
      3,
      -4
    ],
    "io_out": [
      1,
      0,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [15, 12]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(sub_n([1, 2],2))),-5),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      15,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_asc(sub_n(input,2))),-5),3)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [3, 1]",
    "output": "generated_output : list = sub_n(sub_n([0, -2],-2),-1)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-1)"
  },
  {
    "input": "input : list = [5, 0, 2]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = reverse(take(take(sort_des(sort_des([5, 0, 2])),7),8))",
    "io_inp": [
      5,
      0,
      2
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_des(sort_des(input)),7),8))"
  },
  {
    "input": "input : list = [-1, -4, 0, 1, 1, -3]\noutput : list = [1, 1, 0, -1, -3, -4]",
    "output": "generated_output : list = sort_des([-1, -4, 0, 1, 1, -3])",
    "io_inp": [
      -1,
      -4,
      0,
      1,
      1,
      -3
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 3, -5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(drop([2, 3, -5],1)))))",
    "io_inp": [
      2,
      3,
      -5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [4, -3, 0]\noutput : list = [-6, -10, -13]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(add_n([4, -3, 0],-5),4),5)))",
    "io_inp": [
      4,
      -3,
      0
    ],
    "io_out": [
      -6,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(add_n(input,-5),4),5)))"
  },
  {
    "input": "input : list = [2, 3, 4, -5, 5, 5]\noutput : list = [3, 1, -1]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(take([2, 3, 4, -5, 5, 5],3),2),5)))",
    "io_inp": [
      2,
      3,
      4,
      -5,
      5,
      5
    ],
    "io_out": [
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(take(input,3),2),5)))"
  },
  {
    "input": "input : list = [1, 3, -1, -1, 1]\noutput : list = [-20, -24, -16, -16, -20]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(mul_n([1, 3, -1, -1, 1],-1),-4),-5),2),53)",
    "io_inp": [
      1,
      3,
      -1,
      -1,
      1
    ],
    "io_out": [
      -20,
      -24,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(mul_n(input,-1),-4),-5),2),53)"
  },
  {
    "input": "input : list = [4, 2, -2, 2, -2, -5]\noutput : list = [8, -8, -16]",
    "output": "generated_output : list = take(reverse(mul_n(take([4, 2, -2, 2, -2, -5],3),-4)),35)",
    "io_inp": [
      4,
      2,
      -2,
      2,
      -2,
      -5
    ],
    "io_out": [
      8,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(take(input,3),-4)),35)"
  },
  {
    "input": "input : list = [1, 2, -2]\noutput : list = [-16, -1, 4]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(sort_des([1, 2, -2])),2),5),-4)",
    "io_inp": [
      1,
      2,
      -2
    ],
    "io_out": [
      -16,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(sort_des(input)),2),5),-4)"
  },
  {
    "input": "input : list = [2, 3, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = drop([2, 3, 2],1)",
    "io_inp": [
      2,
      3,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [20, -34]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(reverse([-4, 5]),3)),-2),4)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      20,
      -34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(reverse(input),3)),-2),4)"
  },
  {
    "input": "input : list = [-5, -3, 2, -4, -3, 0]\noutput : list = [-7, -5, 0, -6, -5, -2]",
    "output": "generated_output : list = sub_n([-5, -3, 2, -4, -3, 0],2)",
    "io_inp": [
      -5,
      -3,
      2,
      -4,
      -3,
      0
    ],
    "io_out": [
      -7,
      -5,
      0,
      -6,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [8, 8]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(add_n([-4, -4],2),9)),-4),7)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      8,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(add_n(input,2),9)),-4),7)"
  },
  {
    "input": "input : list = [-3, -2, -4, -4, -1, -3]\noutput : list = [-5, -3, -6, -6, -4, -5]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(sub_n([-3, -2, -4, -4, -1, -3],5),5)),3),1)",
    "io_inp": [
      -3,
      -2,
      -4,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -6,
      -6,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(sub_n(input,5),5)),3),1)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [14, 14]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(reverse([-4, -4])),-4)),-2)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      14,
      14
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(reverse(input)),-4)),-2)"
  },
  {
    "input": "input : list = [-3, -3, -1, 3]\noutput : list = [7, 7, 5, 1]",
    "output": "generated_output : list = take(reverse(mul_n(reverse(add_n([-3, -3, -1, 3],-4)),-1)),19)",
    "io_inp": [
      -3,
      -3,
      -1,
      3
    ],
    "io_out": [
      7,
      7,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(reverse(add_n(input,-4)),-1)),19)"
  },
  {
    "input": "input : list = [-5, -2, 0, -4, 5]\noutput : list = [0, -12, 15]",
    "output": "generated_output : list = mul_n(drop([-5, -2, 0, -4, 5],2),3)",
    "io_inp": [
      -5,
      -2,
      0,
      -4,
      5
    ],
    "io_out": [
      0,
      -12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [-2, 2, 5, -2, 1, -4]\noutput : list = [-10, -4, -2, 4, 4, 8]",
    "output": "generated_output : list = take(reverse(sort_des(take(mul_n([-2, 2, 5, -2, 1, -4],-2),20))),11)",
    "io_inp": [
      -2,
      2,
      5,
      -2,
      1,
      -4
    ],
    "io_out": [
      -10,
      -4,
      -2,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(take(mul_n(input,-2),20))),11)"
  },
  {
    "input": "input : list = [0, 2, 1, 1, 3]\noutput : list = [0, -4, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_des(reverse(take([0, 2, 1, 1, 3],3)))),-4)",
    "io_inp": [
      0,
      2,
      1,
      1,
      3
    ],
    "io_out": [
      0,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(reverse(take(input,3)))),-4)"
  },
  {
    "input": "input : list = [-4, -3, -4, 1]\noutput : list = [-5, 11, 15]",
    "output": "generated_output : list = reverse(sort_des(sub_n(drop(mul_n([-4, -3, -4, 1],-4),1),1)))",
    "io_inp": [
      -4,
      -3,
      -4,
      1
    ],
    "io_out": [
      -5,
      11,
      15
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(drop(mul_n(input,-4),1),1)))"
  },
  {
    "input": "input : list = [5, 4, 0]\noutput : list = [7, 6, 2]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des([5, 4, 0]),-2)))",
    "io_inp": [
      5,
      4,
      0
    ],
    "io_out": [
      7,
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(input),-2)))"
  },
  {
    "input": "input : list = [2, -2, 3, 1]\noutput : list = [4, 0, 5, 3]",
    "output": "generated_output : list = sub_n([2, -2, 3, 1],-2)",
    "io_inp": [
      2,
      -2,
      3,
      1
    ],
    "io_out": [
      4,
      0,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, 2, -1, 2, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take([3, 2, -1, 2, 2],2))))",
    "io_inp": [
      3,
      2,
      -1,
      2,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(input,2))))"
  },
  {
    "input": "input : list = [5, 0, -3, 2, 5, 2]\noutput : list = [5, 5, 2, 2, 0, -3]",
    "output": "generated_output : list = sort_des([5, 0, -3, 2, 5, 2])",
    "io_inp": [
      5,
      0,
      -3,
      2,
      5,
      2
    ],
    "io_out": [
      5,
      5,
      2,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 2, -1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(take(drop([4, 2, -1],1),13),-5),-4))",
    "io_inp": [
      4,
      2,
      -1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(take(drop(input,1),13),-5),-4))"
  },
  {
    "input": "input : list = [5, -3, -4, -1, 5]\noutput : list = [5, -3, -4, -1, 5]",
    "output": "generated_output : list = reverse(reverse([5, -3, -4, -1, 5]))",
    "io_inp": [
      5,
      -3,
      -4,
      -1,
      5
    ],
    "io_out": [
      5,
      -3,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(drop([-1, 4, -4],1))",
    "io_inp": [
      -1,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [2, 0, -5]",
    "output": "generated_output : list = sub_n(add_n(reverse(add_n([-5, 0, 2],2)),-1),1)",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(add_n(input,2)),-1),1)"
  },
  {
    "input": "input : list = [-3, 4, 4, 0, -3, 1]\noutput : list = [-8, -8, 6]",
    "output": "generated_output : list = take(take(mul_n(sort_des(take([-3, 4, 4, 0, -3, 1],3)),-2),8),34)",
    "io_inp": [
      -3,
      4,
      4,
      0,
      -3,
      1
    ],
    "io_out": [
      -8,
      -8,
      6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(take(input,3)),-2),8),34)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = take(sub_n(take(sort_des([1, -3]),6),2),10)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(input),6),2),10)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [0, 15]",
    "output": "generated_output : list = mul_n(sub_n(take(sub_n(add_n([1, -2],2),2),19),1),-5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sub_n(add_n(input,2),2),19),1),-5)"
  },
  {
    "input": "input : list = [-4, -3, 2, -5, 2]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take([-4, -3, 2, -5, 2],1),-3)",
    "io_inp": [
      -4,
      -3,
      2,
      -5,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-3)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sub_n(mul_n([-2, -2],3),-5),-4)))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sub_n(mul_n(input,3),-5),-4)))"
  },
  {
    "input": "input : list = [5, 5, 2, 1]\noutput : list = [6, 6, 3, 2]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([5, 5, 2, 1],1),1),-2)",
    "io_inp": [
      5,
      5,
      2,
      1
    ],
    "io_out": [
      6,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,1),1),-2)"
  },
  {
    "input": "input : list = [-3, 5, 5, -2, -2, -3]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = add_n(take(sub_n(sub_n(drop([-3, 5, 5, -2, -2, -3],3),3),-5),21),-1)",
    "io_inp": [
      -3,
      5,
      5,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sub_n(drop(input,3),3),-5),21),-1)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(sub_n(sub_n([-1, -4],-5),-1),9)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(input,-5),-1),9)"
  },
  {
    "input": "input : list = [-3, 3, 3, -3, 2, 4]\noutput : list = [10, 8, 3]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(drop([-3, 3, 3, -3, 2, 4],3),8),-2),4))",
    "io_inp": [
      -3,
      3,
      3,
      -3,
      2,
      4
    ],
    "io_out": [
      10,
      8,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(drop(input,3),8),-2),4))"
  },
  {
    "input": "input : list = [-4, 0, 4, -2]\noutput : list = [-4, -2, 0, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(reverse([-4, 0, 4, -2]))),12))",
    "io_inp": [
      -4,
      0,
      4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(reverse(input))),12))"
  },
  {
    "input": "input : list = [-4, -1, -2, 0, 5]\noutput : list = [-10, 0, 2, 4, 8]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-4, -1, -2, 0, 5]),-2))",
    "io_inp": [
      -4,
      -1,
      -2,
      0,
      5
    ],
    "io_out": [
      -10,
      0,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [2, 3, -5, 5, 4]\noutput : list = [25, -10, -15, -20, -25]",
    "output": "generated_output : list = sort_des(mul_n([2, 3, -5, 5, 4],-5))",
    "io_inp": [
      2,
      3,
      -5,
      5,
      4
    ],
    "io_out": [
      25,
      -10,
      -15,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-5, 0, 3, 4]\noutput : list = [9]",
    "output": "generated_output : list = take(drop(sub_n(add_n([-5, 0, 3, 4],2),-4),2),1)",
    "io_inp": [
      -5,
      0,
      3,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = take(drop(sub_n(add_n(input,2),-4),2),1)"
  },
  {
    "input": "input : list = [4, -1, -2, -2, 1]\noutput : list = [-20]",
    "output": "generated_output : list = mul_n(reverse(take(sort_des(take([4, -1, -2, -2, 1],3)),1)),-5)",
    "io_inp": [
      4,
      -1,
      -2,
      -2,
      1
    ],
    "io_out": [
      -20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_des(take(input,3)),1)),-5)"
  },
  {
    "input": "input : list = [-5, 4, 5, -1, 4, 5]\noutput : list = [-2, -2, -3, -3, -8, -12]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sub_n([-5, 4, 5, -1, 4, 5],-2)),-4),5))",
    "io_inp": [
      -5,
      4,
      5,
      -1,
      4,
      5
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -3,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sub_n(input,-2)),-4),5))"
  },
  {
    "input": "input : list = [-1, 4, 0]\noutput : list = [-1, -6, -2]",
    "output": "generated_output : list = take(mul_n(take(sub_n([-1, 4, 0],-2),11),-1),8)",
    "io_inp": [
      -1,
      4,
      0
    ],
    "io_out": [
      -1,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(input,-2),11),-1),8)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-80, -20]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(mul_n([-5, 0],-3)),2),5),-4)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -80,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(mul_n(input,-3)),2),5),-4)"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [3, -37]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(mul_n([-4, 0],2),5),-2),-5))",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      3,
      -37
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(mul_n(input,2),5),-2),-5))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-1, -1])),3)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [4, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(reverse(sort_des([-4, -4, 4])))))",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-3, 3, -1, 2, 3]\noutput : list = [2, 8, 4, 7, 8]",
    "output": "generated_output : list = add_n([-3, 3, -1, 2, 3],5)",
    "io_inp": [
      -3,
      3,
      -1,
      2,
      3
    ],
    "io_out": [
      2,
      8,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-1, 2, 3, -5]\noutput : list = [-9, -5, -2, -1]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc([-1, 2, 3, -5]))),-3),-1)",
    "io_inp": [
      -1,
      2,
      3,
      -5
    ],
    "io_out": [
      -9,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc(input))),-3),-1)"
  },
  {
    "input": "input : list = [-1, 5, -2, 0]\noutput : list = [-2, 16]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(mul_n(take([-1, 5, -2, 0],2),3)),-2),-1)",
    "io_inp": [
      -1,
      5,
      -2,
      0
    ],
    "io_out": [
      -2,
      16
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(mul_n(take(input,2),3)),-2),-1)"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [2, 1, -4]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(reverse([3, -3, -2])),-1)),-1)",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(reverse(input)),-1)),-1)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [10, 10, 10]",
    "output": "generated_output : list = sort_des(mul_n(take(take(add_n([-1, -1, -1],-1),10),10),-5))",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(add_n(input,-1),10),10),-5))"
  },
  {
    "input": "input : list = [2, -3, -2, 4, -1, 2]\noutput : list = [2, -1, 4, -2, -3, 2]",
    "output": "generated_output : list = reverse([2, -3, -2, 4, -1, 2])",
    "io_inp": [
      2,
      -3,
      -2,
      4,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      4,
      -2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(reverse([2, -2]),-2),10)),16)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(reverse(input),-2),10)),16)"
  },
  {
    "input": "input : list = [0, 1, -3, -2, 4, 1]\noutput : list = [1, 2, -2, -1, 5, 2]",
    "output": "generated_output : list = add_n([0, 1, -3, -2, 4, 1],1)",
    "io_inp": [
      0,
      1,
      -3,
      -2,
      4,
      1
    ],
    "io_out": [
      1,
      2,
      -2,
      -1,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, 4, -2, 1]\noutput : list = [-13, -7, -3, -1]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(reverse([-1, 4, -2, 1])),-2),-5),35)",
    "io_inp": [
      -1,
      4,
      -2,
      1
    ],
    "io_out": [
      -13,
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(reverse(input)),-2),-5),35)"
  },
  {
    "input": "input : list = [-5, 4, 2, -4]\noutput : list = [4, 2, -4]",
    "output": "generated_output : list = take(drop([-5, 4, 2, -4],1),12)",
    "io_inp": [
      -5,
      4,
      2,
      -4
    ],
    "io_out": [
      4,
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(input,1),12)"
  },
  {
    "input": "input : list = [4, 5, 4, -5, 0]\noutput : list = [9, 8, 4, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(take(drop([4, 5, 4, -5, 0],1),15)),4))",
    "io_inp": [
      4,
      5,
      4,
      -5,
      0
    ],
    "io_out": [
      9,
      8,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(take(drop(input,1),15)),4))"
  },
  {
    "input": "input : list = [-2, 2, -1, 0, 1]\noutput : list = [2, 1, 0, -1, -2]",
    "output": "generated_output : list = take(sort_des(mul_n(take(sort_des([-2, 2, -1, 0, 1]),7),-1)),48)",
    "io_inp": [
      -2,
      2,
      -1,
      0,
      1
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(take(sort_des(input),7),-1)),48)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [6, -24]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(mul_n([1, -4],-3),1)),-2))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      6,
      -24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(mul_n(input,-3),1)),-2))"
  },
  {
    "input": "input : list = [-1, 3, 0, -5, -4, 5]\noutput : list = [-5, -4, -1, 0, 3, 5]",
    "output": "generated_output : list = sort_asc([-1, 3, 0, -5, -4, 5])",
    "io_inp": [
      -1,
      3,
      0,
      -5,
      -4,
      5
    ],
    "io_out": [
      -5,
      -4,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = reverse([-2, -2, -3])",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5, 3, 3]\noutput : list = [5, 3, 3]",
    "output": "generated_output : list = take(drop([4, 5, 3, 3],1),3)",
    "io_inp": [
      4,
      5,
      3,
      3
    ],
    "io_out": [
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),3)"
  },
  {
    "input": "input : list = [-5, -2, 4, -5, 3, 4]\noutput : list = [9, 8, 3, 0, 0]",
    "output": "generated_output : list = drop(reverse(add_n(sort_asc(reverse([-5, -2, 4, -5, 3, 4])),5)),1)",
    "io_inp": [
      -5,
      -2,
      4,
      -5,
      3,
      4
    ],
    "io_out": [
      9,
      8,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = drop(reverse(add_n(sort_asc(reverse(input)),5)),1)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse([0, 4])",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, 3, 3, -5, -1]\noutput : list = [3, 1, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(reverse(take([-4, 5, 3, 3, -5, -1],3)),2)))",
    "io_inp": [
      -4,
      5,
      3,
      3,
      -5,
      -1
    ],
    "io_out": [
      3,
      1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(reverse(take(input,3)),2)))"
  },
  {
    "input": "input : list = [-1, -4, 1, 2, 3, 1]\noutput : list = [5, 4, 3, 3, 1, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(sub_n([-1, -4, 1, 2, 3, 1],-2))),35))",
    "io_inp": [
      -1,
      -4,
      1,
      2,
      3,
      1
    ],
    "io_out": [
      5,
      4,
      3,
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(sub_n(input,-2))),35))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse([2, -3])",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, 0, 1, -2]\noutput : list = [-5, -2, -3, 2, -6]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(mul_n([-3, 5, 0, 1, -2],1)),3)))",
    "io_inp": [
      -3,
      5,
      0,
      1,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -3,
      2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(mul_n(input,1)),3)))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-4, -7]",
    "output": "generated_output : list = add_n(sort_des(add_n([-2, -5],3)),-5)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(input,3)),-5)"
  },
  {
    "input": "input : list = [3, 0, -5]\noutput : list = [0, -5]",
    "output": "generated_output : list = drop([3, 0, -5],1)",
    "io_inp": [
      3,
      0,
      -5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [10, 0]",
    "output": "generated_output : list = sort_des(mul_n([0, 2],5))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-7, -6]",
    "output": "generated_output : list = add_n([-2, -1],-5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 2, 2, -3, 1]\noutput : list = [-3, -3, -3, 0, 12]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_des(reverse([2, 2, 2, -3, 1])),1)),-3)",
    "io_inp": [
      2,
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      -3,
      -3,
      -3,
      0,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_des(reverse(input)),1)),-3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-39, -84]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sort_des([-2, -5]),-5),-3)),-3)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -39,
      -84
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(mul_n(sort_des(input),-5),-3)),-3)"
  },
  {
    "input": "input : list = [-4, 4, -1, -3, 3]\noutput : list = [5, 4, 2, -2, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sub_n([-4, 4, -1, -3, 3],2))),-1),-1)",
    "io_inp": [
      -4,
      4,
      -1,
      -3,
      3
    ],
    "io_out": [
      5,
      4,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(sub_n(input,2))),-1),-1)"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [1, 8, 10]",
    "output": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_asc([5, 3, -4])),5)))",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      1,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sort_des(sort_asc(input)),5)))"
  },
  {
    "input": "input : list = [0, -4, 4, 2]\noutput : list = [0, 12, -12, -6]",
    "output": "generated_output : list = mul_n([0, -4, 4, 2],-3)",
    "io_inp": [
      0,
      -4,
      4,
      2
    ],
    "io_out": [
      0,
      12,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, -2, 1, 1]\noutput : list = [-1, -3, -3, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(mul_n([2, -2, 1, 1],2),20))),5)",
    "io_inp": [
      2,
      -2,
      1,
      1
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(mul_n(input,2),20))),5)"
  },
  {
    "input": "input : list = [-2, 3, -5, 3]\noutput : list = [-5, -5, -10, -13]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des([-2, 3, -5, 3]),3)),5)",
    "io_inp": [
      -2,
      3,
      -5,
      3
    ],
    "io_out": [
      -5,
      -5,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(input),3)),5)"
  },
  {
    "input": "input : list = [0, -1, -5, 0, -2, -3]\noutput : list = [-20, -20, -25, -30, -35, -45]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sort_asc([0, -1, -5, 0, -2, -3]),5),-1),5))",
    "io_inp": [
      0,
      -1,
      -5,
      0,
      -2,
      -3
    ],
    "io_out": [
      -20,
      -20,
      -25,
      -30,
      -35,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(sort_asc(input),5),-1),5))"
  },
  {
    "input": "input : list = [-1, -3, 1, -1, -4, 5]\noutput : list = [-6, 0, -12, -6, 3, -24]",
    "output": "generated_output : list = mul_n(add_n([-1, -3, 1, -1, -4, 5],3),-3)",
    "io_inp": [
      -1,
      -3,
      1,
      -1,
      -4,
      5
    ],
    "io_out": [
      -6,
      0,
      -12,
      -6,
      3,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-3)"
  },
  {
    "input": "input : list = [-3, -2, 4, 1, 0, 5]\noutput : list = [-3, -6, -18]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n(drop([-3, -2, 4, 1, 0, 5],3),-3)),-3),7)",
    "io_inp": [
      -3,
      -2,
      4,
      1,
      0,
      5
    ],
    "io_out": [
      -3,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(drop(input,3),-3)),-3),7)"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-1, -2, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_asc(reverse([-2, -1, -4])))),43)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_asc(reverse(input)))),43)"
  },
  {
    "input": "input : list = [-1, 2, -5]\noutput : list = [9, 5, 2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sub_n(mul_n([-1, 2, -5],-1),-5))),1)",
    "io_inp": [
      -1,
      2,
      -5
    ],
    "io_out": [
      9,
      5,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sub_n(mul_n(input,-1),-5))),1)"
  },
  {
    "input": "input : list = [-1, -2, 4, -1, -2]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(drop([-1, -2, 4, -1, -2],3)),5),2)",
    "io_inp": [
      -1,
      -2,
      4,
      -1,
      -2
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(drop(input,3)),5),2)"
  },
  {
    "input": "input : list = [-1, 2, 1, -2]\noutput : list = [-1, 2, 1, -2]",
    "output": "generated_output : list = add_n(sub_n([-1, 2, 1, -2],3),3)",
    "io_inp": [
      -1,
      2,
      1,
      -2
    ],
    "io_out": [
      -1,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [-4, -4, -2, -4, 2, 1]\noutput : list = [-21, -21, -21, -15, -6, -3]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sort_asc([-4, -4, -2, -4, 2, 1]),3),3)))",
    "io_inp": [
      -4,
      -4,
      -2,
      -4,
      2,
      1
    ],
    "io_out": [
      -21,
      -21,
      -21,
      -15,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(sort_asc(input),3),3)))"
  },
  {
    "input": "input : list = [4, -2, 0, -1, 3, -5]\noutput : list = [-9, -6, -5, -4, -1, 0]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(sort_des([4, -2, 0, -1, 3, -5]),-4),-5)),-5)",
    "io_inp": [
      4,
      -2,
      0,
      -1,
      3,
      -5
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(sort_des(input),-4),-5)),-5)"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = drop([-2, 3, -2],1)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [3, -3]",
    "output": "generated_output : list = drop([0, 3, -3],1)",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 2, -5, -5, -5, -5]\noutput : list = [-5, -1, -15, -15, -15, -15]",
    "output": "generated_output : list = sub_n(mul_n([0, 2, -5, -5, -5, -5],2),5)",
    "io_inp": [
      0,
      2,
      -5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -15,
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,2),5)"
  },
  {
    "input": "input : list = [2, 1, -3]\noutput : list = [12, -4, -8]",
    "output": "generated_output : list = reverse(sort_asc(mul_n([2, 1, -3],-4)))",
    "io_inp": [
      2,
      1,
      -3
    ],
    "io_out": [
      12,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(input,-4)))"
  },
  {
    "input": "input : list = [-2, -2, 3, 3]\noutput : list = [4, 4]",
    "output": "generated_output : list = mul_n(reverse(take([-2, -2, 3, 3],2)),-2)",
    "io_inp": [
      -2,
      -2,
      3,
      3
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,2)),-2)"
  },
  {
    "input": "input : list = [-4, -2, 5, 4, 4, -2]\noutput : list = [-7, -5, 2, 1, 1, -5]",
    "output": "generated_output : list = take(add_n([-4, -2, 5, 4, 4, -2],-3),13)",
    "io_inp": [
      -4,
      -2,
      5,
      4,
      4,
      -2
    ],
    "io_out": [
      -7,
      -5,
      2,
      1,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),13)"
  },
  {
    "input": "input : list = [4, -4, 0, 1]\noutput : list = [0, -8]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(take([4, -4, 0, 1],2)),5)),4)",
    "io_inp": [
      4,
      -4,
      0,
      1
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(take(input,2)),5)),4)"
  },
  {
    "input": "input : list = [-5, -2, 2, 1, -1, -2]\noutput : list = [5, 2, -2, -1, 1, 2]",
    "output": "generated_output : list = sub_n(add_n(mul_n([-5, -2, 2, 1, -1, -2],-1),2),2)",
    "io_inp": [
      -5,
      -2,
      2,
      1,
      -1,
      -2
    ],
    "io_out": [
      5,
      2,
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(input,-1),2),2)"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [2, 2, -10]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc(sort_des([1, 1, -5]))),2),39)",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      2,
      2,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(sort_des(input))),2),39)"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [0, 8, 28]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(add_n([-5, 0, 2],-2),3))),-4)",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      0,
      8,
      28
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(add_n(input,-2),3))),-4)"
  },
  {
    "input": "input : list = [-1, -1, 4, 4, -1, 5]\noutput : list = [-10, -10, -10, -5, -5, -4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(add_n([-1, -1, 4, 4, -1, 5],-4)))),5)",
    "io_inp": [
      -1,
      -1,
      4,
      4,
      -1,
      5
    ],
    "io_out": [
      -10,
      -10,
      -10,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(add_n(input,-4)))),5)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [1, 2, 9]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc([-3, 5, -2])),-4)))",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      1,
      2,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_asc(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [-1, -5, -3, -2, 2, 5]\noutput : list = [7, 4, 0]",
    "output": "generated_output : list = reverse(add_n(drop([-1, -5, -3, -2, 2, 5],3),2))",
    "io_inp": [
      -1,
      -5,
      -3,
      -2,
      2,
      5
    ],
    "io_out": [
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(input,3),2))"
  },
  {
    "input": "input : list = [-5, -3, 0, 1, 0]\noutput : list = [-3, -1, 2, 3, 2]",
    "output": "generated_output : list = take(reverse(reverse(sub_n([-5, -3, 0, 1, 0],-2))),35)",
    "io_inp": [
      -5,
      -3,
      0,
      1,
      0
    ],
    "io_out": [
      -3,
      -1,
      2,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(input,-2))),35)"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [-3, 9]",
    "output": "generated_output : list = mul_n(take(take(reverse(drop([1, 3, -1],1)),11),21),3)",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      -3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(drop(input,1)),11),21),3)"
  },
  {
    "input": "input : list = [-4, 0, -3, 5, 1]\noutput : list = [3]",
    "output": "generated_output : list = take(add_n(take(mul_n(reverse([-4, 0, -3, 5, 1]),-1),1),4),32)",
    "io_inp": [
      -4,
      0,
      -3,
      5,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(reverse(input),-1),1),4),32)"
  },
  {
    "input": "input : list = [-5, -1, 4, -5, 0]\noutput : list = [8, -8]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(take([-5, -1, 4, -5, 0],2),1),-4),38),-4)",
    "io_inp": [
      -5,
      -1,
      4,
      -5,
      0
    ],
    "io_out": [
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(take(input,2),1),-4),38),-4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = mul_n([2, 1],-1)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, 5, 4, -1, 0, 0]\noutput : list = [3, 6, 5, 0, 1, 1]",
    "output": "generated_output : list = sub_n([2, 5, 4, -1, 0, 0],-1)",
    "io_inp": [
      2,
      5,
      4,
      -1,
      0,
      0
    ],
    "io_out": [
      3,
      6,
      5,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [2, 4, 4, -5]\noutput : list = [18, -10, -18, -18]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(mul_n([2, 4, 4, -5],-4)),-3)),1)",
    "io_inp": [
      2,
      4,
      4,
      -5
    ],
    "io_out": [
      18,
      -10,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(mul_n(input,-4)),-3)),1)"
  },
  {
    "input": "input : list = [5, 1, 5, 2]\noutput : list = [1, 2, 5]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(drop([5, 1, 5, 2],1),2))),-2)",
    "io_inp": [
      5,
      1,
      5,
      2
    ],
    "io_out": [
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(drop(input,1),2))),-2)"
  },
  {
    "input": "input : list = [0, 2, 4, -2, -2, 5]\noutput : list = [-15, 6, 6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(drop([0, 2, 4, -2, -2, 5],3),-3)))",
    "io_inp": [
      0,
      2,
      4,
      -2,
      -2,
      5
    ],
    "io_out": [
      -15,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(drop(input,3),-3)))"
  },
  {
    "input": "input : list = [5, -2, 4, 3, 0, 5]\noutput : list = [5, 5, 4, 3, 0, -2]",
    "output": "generated_output : list = take(reverse(take(sort_asc(sort_des([5, -2, 4, 3, 0, 5])),35)),29)",
    "io_inp": [
      5,
      -2,
      4,
      3,
      0,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(sort_des(input)),35)),29)"
  },
  {
    "input": "input : list = [4, 4, -1, 5]\noutput : list = [-4, -4, -9, -3]",
    "output": "generated_output : list = reverse(take(add_n(reverse(add_n([4, 4, -1, 5],-3)),-5),22))",
    "io_inp": [
      4,
      4,
      -1,
      5
    ],
    "io_out": [
      -4,
      -4,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(add_n(input,-3)),-5),22))"
  },
  {
    "input": "input : list = [1, -4, -5, 5]\noutput : list = [-1, 0, 5, 9]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n([1, -4, -5, 5],1))),-5)",
    "io_inp": [
      1,
      -4,
      -5,
      5
    ],
    "io_out": [
      -1,
      0,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(input,1))),-5)"
  },
  {
    "input": "input : list = [-3, -3, -2, -1]\noutput : list = [16, 32, 48, 48]",
    "output": "generated_output : list = sort_asc(mul_n(take(mul_n(sort_des([-3, -3, -2, -1]),4),25),-4))",
    "io_inp": [
      -3,
      -3,
      -2,
      -1
    ],
    "io_out": [
      16,
      32,
      48,
      48
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(mul_n(sort_des(input),4),25),-4))"
  },
  {
    "input": "input : list = [-1, 0, 5, 1]\noutput : list = [12, 8, 7, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(add_n(sort_des([-1, 0, 5, 1]),4)),2),-1)",
    "io_inp": [
      -1,
      0,
      5,
      1
    ],
    "io_out": [
      12,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(add_n(sort_des(input),4)),2),-1)"
  },
  {
    "input": "input : list = [5, 4, 2, 2]\noutput : list = [39, 30, 12, 12]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(mul_n([5, 4, 2, 2],3),3),3),5),4)",
    "io_inp": [
      5,
      4,
      2,
      2
    ],
    "io_out": [
      39,
      30,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(mul_n(input,3),3),3),5),4)"
  },
  {
    "input": "input : list = [2, -1, 2, 3]\noutput : list = [-2, -5, -2, -1]",
    "output": "generated_output : list = sub_n(add_n([2, -1, 2, 3],1),5)",
    "io_inp": [
      2,
      -1,
      2,
      3
    ],
    "io_out": [
      -2,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),5)"
  },
  {
    "input": "input : list = [3, 3, -1, -3, 1]\noutput : list = [3, 3]",
    "output": "generated_output : list = take([3, 3, -1, -3, 1],2)",
    "io_inp": [
      3,
      3,
      -1,
      -3,
      1
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -2, -1, 1, -3]\noutput : list = [14, 12, 10, 6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(add_n([1, -2, -1, 1, -3],-2),23),2)),-2)",
    "io_inp": [
      1,
      -2,
      -1,
      1,
      -3
    ],
    "io_out": [
      14,
      12,
      10,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(add_n(input,-2),23),2)),-2)"
  },
  {
    "input": "input : list = [1, 1, -1, -4, 3]\noutput : list = [-1, -1, -3, -6, 1]",
    "output": "generated_output : list = add_n([1, 1, -1, -4, 3],-2)",
    "io_inp": [
      1,
      1,
      -1,
      -4,
      3
    ],
    "io_out": [
      -1,
      -1,
      -3,
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -4, -3, 0, -4]\noutput : list = [-1, 5, 7, 7]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(drop([-5, -4, -3, 0, -4],1),-3),-2)),5)",
    "io_inp": [
      -5,
      -4,
      -3,
      0,
      -4
    ],
    "io_out": [
      -1,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(drop(input,1),-3),-2)),5)"
  },
  {
    "input": "input : list = [0, 3, -1, 5, 1]\noutput : list = [5, 3, 1, 0, -1]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(sort_asc([0, 3, -1, 5, 1])))),53)",
    "io_inp": [
      0,
      3,
      -1,
      5,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(sort_asc(input)))),53)"
  },
  {
    "input": "input : list = [2, -5, 3, 4]\noutput : list = [2, 1, 0, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(add_n([2, -5, 3, 4],3)),5))",
    "io_inp": [
      2,
      -5,
      3,
      4
    ],
    "io_out": [
      2,
      1,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(add_n(input,3)),5))"
  },
  {
    "input": "input : list = [-5, -3, 0, 1, -1, -2]\noutput : list = [-1, -2, -3, -4, -5, -7]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(add_n([-5, -3, 0, 1, -1, -2],-1),4)),5),16)",
    "io_inp": [
      -5,
      -3,
      0,
      1,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(add_n(input,-1),4)),5),16)"
  },
  {
    "input": "input : list = [0, -4, -5, -5, -1]\noutput : list = [2, 1, -2, -3, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse(take(add_n([0, -4, -5, -5, -1],-3),26))),5)",
    "io_inp": [
      0,
      -4,
      -5,
      -5,
      -1
    ],
    "io_out": [
      2,
      1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(take(add_n(input,-3),26))),5)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-16, -12]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(sub_n([2, 3],2)),-4)),4)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(sub_n(input,2)),-4)),4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [0, 4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(reverse(reverse([2, 1])),1)),4)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(reverse(reverse(input)),1)),4)"
  },
  {
    "input": "input : list = [3, 5, -4, 3, -1]\noutput : list = [-2, 6, -8, 10, 6]",
    "output": "generated_output : list = mul_n(reverse([3, 5, -4, 3, -1]),2)",
    "io_inp": [
      3,
      5,
      -4,
      3,
      -1
    ],
    "io_out": [
      -2,
      6,
      -8,
      10,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [0, 0, -2, 2, -2]\noutput : list = [1, 1, -1, 3, -1]",
    "output": "generated_output : list = sub_n([0, 0, -2, 2, -2],-1)",
    "io_inp": [
      0,
      0,
      -2,
      2,
      -2
    ],
    "io_out": [
      1,
      1,
      -1,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = reverse([5, -1])",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2, 5, 5]\noutput : list = [-2, -2, 1, 1]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(mul_n([2, 2, 5, 5],1),1),-3)))",
    "io_inp": [
      2,
      2,
      5,
      5
    ],
    "io_out": [
      -2,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(mul_n(input,1),1),-3)))"
  },
  {
    "input": "input : list = [-2, 4, 0, 3, -3, 2]\noutput : list = [-6, 0, 9, 12]",
    "output": "generated_output : list = sort_asc(take(mul_n(take(take([-2, 4, 0, 3, -3, 2],4),6),3),25))",
    "io_inp": [
      -2,
      4,
      0,
      3,
      -3,
      2
    ],
    "io_out": [
      -6,
      0,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(take(take(input,4),6),3),25))"
  },
  {
    "input": "input : list = [-4, 5, 3, -3, 5, 3]\noutput : list = [5, 5, 3, 3, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc([-4, 5, 3, -3, 5, 3]))))",
    "io_inp": [
      -4,
      5,
      3,
      -3,
      5,
      3
    ],
    "io_out": [
      5,
      5,
      3,
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [1, -4, 2]\noutput : list = [-10, -5, 20]",
    "output": "generated_output : list = reverse(take(mul_n(reverse(sort_des([1, -4, 2])),-5),9))",
    "io_inp": [
      1,
      -4,
      2
    ],
    "io_out": [
      -10,
      -5,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(sort_des(input)),-5),9))"
  },
  {
    "input": "input : list = [-3, -4, 4, 4, -2]\noutput : list = [1, 1, -5, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(reverse(take(add_n([-3, -4, 4, 4, -2],-5),15)),-2))",
    "io_inp": [
      -3,
      -4,
      4,
      4,
      -2
    ],
    "io_out": [
      1,
      1,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(take(add_n(input,-5),15)),-2))"
  },
  {
    "input": "input : list = [1, -4, 4, 3]\noutput : list = [-20, -23, 1, -14]",
    "output": "generated_output : list = take(add_n(reverse(mul_n(sub_n([1, -4, 4, 3],-2),-3)),-5),38)",
    "io_inp": [
      1,
      -4,
      4,
      3
    ],
    "io_out": [
      -20,
      -23,
      1,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(mul_n(sub_n(input,-2),-3)),-5),38)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [3]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take([-3, 5, -2],1))),-1)",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(input,1))),-1)"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [-1, -4, -5]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-2, 1, -3],-5),-3))",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-5),-3))"
  },
  {
    "input": "input : list = [3, 3, 0, -1, 5, 0]\noutput : list = [12, 6, 6, -12, -12, -24]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(add_n([3, 3, 0, -1, 5, 0],-1),3)),-2))",
    "io_inp": [
      3,
      3,
      0,
      -1,
      5,
      0
    ],
    "io_out": [
      12,
      6,
      6,
      -12,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(add_n(input,-1),3)),-2))"
  },
  {
    "input": "input : list = [-1, 0, 5]\noutput : list = [-3, -8, -9]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(sort_des([-1, 0, 5]),-3),2),36),-3)",
    "io_inp": [
      -1,
      0,
      5
    ],
    "io_out": [
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(sort_des(input),-3),2),36),-3)"
  },
  {
    "input": "input : list = [2, 1, 0, 2, -5]\noutput : list = [2, 1, 0, 2, -5]",
    "output": "generated_output : list = reverse(add_n(add_n(take(reverse([2, 1, 0, 2, -5]),10),3),-3))",
    "io_inp": [
      2,
      1,
      0,
      2,
      -5
    ],
    "io_out": [
      2,
      1,
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(take(reverse(input),10),3),-3))"
  },
  {
    "input": "input : list = [3, -5, -2, -3]\noutput : list = [9, 1, 4, 3]",
    "output": "generated_output : list = sub_n(add_n([3, -5, -2, -3],2),-4)",
    "io_inp": [
      3,
      -5,
      -2,
      -3
    ],
    "io_out": [
      9,
      1,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),-4)"
  },
  {
    "input": "input : list = [5, -2, 0, -3, 1, 4]\noutput : list = [6, -1, 1, -2, 2, 5]",
    "output": "generated_output : list = add_n([5, -2, 0, -3, 1, 4],1)",
    "io_inp": [
      5,
      -2,
      0,
      -3,
      1,
      4
    ],
    "io_out": [
      6,
      -1,
      1,
      -2,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-3, 0, -4, 4, 1]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take([-3, 0, -4, 4, 1],2)",
    "io_inp": [
      -3,
      0,
      -4,
      4,
      1
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 3, 0, -5, -2, 2]\noutput : list = [-6, -4, -2, 0, 4, 10]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(sort_asc([1, 3, 0, -5, -2, 2]),-2),7)),1)",
    "io_inp": [
      1,
      3,
      0,
      -5,
      -2,
      2
    ],
    "io_out": [
      -6,
      -4,
      -2,
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(sort_asc(input),-2),7)),1)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-9, -7, -7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(sort_asc([-2, -4, -2]),-3)),-2))",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -9,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(sort_asc(input),-3)),-2))"
  },
  {
    "input": "input : list = [-4, 4, -3, 4, 2, -5]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(reverse(take(take(sort_des([-4, 4, -3, 4, 2, -5]),13),2)),43)",
    "io_inp": [
      -4,
      4,
      -3,
      4,
      2,
      -5
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(take(take(sort_des(input),13),2)),43)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [18, 18]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(sort_des([4, 4]),2),5)),-2)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      18,
      18
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(sort_des(input),2),5)),-2)"
  },
  {
    "input": "input : list = [-2, 1, 4]\noutput : list = [-10, 5, 20]",
    "output": "generated_output : list = take(take(mul_n(sort_asc(sort_asc([-2, 1, 4])),5),19),13)",
    "io_inp": [
      -2,
      1,
      4
    ],
    "io_out": [
      -10,
      5,
      20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_asc(sort_asc(input)),5),19),13)"
  },
  {
    "input": "input : list = [-1, 2, -1, 2]\noutput : list = [0, 0, -6, -6]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc([-1, 2, -1, 2]),-2),2),39)",
    "io_inp": [
      -1,
      2,
      -1,
      2
    ],
    "io_out": [
      0,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(input),-2),2),39)"
  },
  {
    "input": "input : list = [2, -2, 0, -3]\noutput : list = [0, -4, -2, -5]",
    "output": "generated_output : list = add_n([2, -2, 0, -3],-2)",
    "io_inp": [
      2,
      -2,
      0,
      -3
    ],
    "io_out": [
      0,
      -4,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse(reverse(add_n(add_n(sub_n([5, 1],4),-1),3)))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(add_n(sub_n(input,4),-1),3)))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [36, 0]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(sort_asc([-3, 0]),-1),-4),-3))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      36,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(sort_asc(input),-1),-4),-3))"
  },
  {
    "input": "input : list = [-2, 0, 4, -2, 5, -4]\noutput : list = [-15, -12, 0, 6, 6, 12]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-2, 0, 4, -2, 5, -4],-3)))",
    "io_inp": [
      -2,
      0,
      4,
      -2,
      5,
      -4
    ],
    "io_out": [
      -15,
      -12,
      0,
      6,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-3)))"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(drop([-3, -5, 0],1))))",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(drop(input,1))))"
  },
  {
    "input": "input : list = [-4, 0, -2, -1]\noutput : list = [-3, -1, 0, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_des([-4, 0, -2, -1])),1))",
    "io_inp": [
      -4,
      0,
      -2,
      -1
    ],
    "io_out": [
      -3,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_des(input)),1))"
  },
  {
    "input": "input : list = [5, -3, -4, 4]\noutput : list = [4, 3, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(add_n([5, -3, -4, 4],5)),4)),-2)",
    "io_inp": [
      5,
      -3,
      -4,
      4
    ],
    "io_out": [
      4,
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(add_n(input,5)),4)),-2)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [6, 5]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_des([4, 3]),-3),-4),5))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_des(input),-3),-4),5))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [21, -14]",
    "output": "generated_output : list = sub_n(mul_n(take(reverse(reverse([-5, 2])),2),-5),4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      21,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(reverse(reverse(input)),2),-5),4)"
  },
  {
    "input": "input : list = [2, 4, -2, 1, -2, 3]\noutput : list = [-1, 0]",
    "output": "generated_output : list = drop(sort_asc(take(reverse(sub_n([2, 4, -2, 1, -2, 3],4)),20)),4)",
    "io_inp": [
      2,
      4,
      -2,
      1,
      -2,
      3
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = drop(sort_asc(take(reverse(sub_n(input,4)),20)),4)"
  },
  {
    "input": "input : list = [3, 0, -1, 3, 3, -1]\noutput : list = [10, 16]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(take([3, 0, -1, 3, 3, -1],2),5),2),6))",
    "io_inp": [
      3,
      0,
      -1,
      3,
      3,
      -1
    ],
    "io_out": [
      10,
      16
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(take(input,2),5),2),6))"
  },
  {
    "input": "input : list = [2, 1, -4, 4, -5]\noutput : list = [1, -1, -2, -7, -8]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(add_n([2, 1, -4, 4, -5],-3),6),-4)),4)",
    "io_inp": [
      2,
      1,
      -4,
      4,
      -5
    ],
    "io_out": [
      1,
      -1,
      -2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(add_n(input,-3),6),-4)),4)"
  },
  {
    "input": "input : list = [1, 1, 2, -2]\noutput : list = [9, 9, 10, 6]",
    "output": "generated_output : list = add_n(take(sub_n([1, 1, 2, -2],-4),18),4)",
    "io_inp": [
      1,
      1,
      2,
      -2
    ],
    "io_out": [
      9,
      9,
      10,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-4),18),4)"
  },
  {
    "input": "input : list = [-4, -3, -4, -1, 4, 5]\noutput : list = [-7, -7, -6, -4, 1, 2]",
    "output": "generated_output : list = sub_n(sort_asc([-4, -3, -4, -1, 4, 5]),3)",
    "io_inp": [
      -4,
      -3,
      -4,
      -1,
      4,
      5
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -4,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-3, -2, 4, 4, 0, -1]\noutput : list = [8, 8, 4, 3, 2, 1]",
    "output": "generated_output : list = sort_des(sub_n([-3, -2, 4, 4, 0, -1],-4))",
    "io_inp": [
      -3,
      -2,
      4,
      4,
      0,
      -1
    ],
    "io_out": [
      8,
      8,
      4,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-4))"
  },
  {
    "input": "input : list = [3, -4, 5, 3, -4, 3]\noutput : list = [4, -5, 2]",
    "output": "generated_output : list = reverse(sub_n(take([3, -4, 5, 3, -4, 3],3),1))",
    "io_inp": [
      3,
      -4,
      5,
      3,
      -4,
      3
    ],
    "io_out": [
      4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(input,3),1))"
  },
  {
    "input": "input : list = [0, 0, 1]\noutput : list = [5, 4, 4]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sub_n(reverse([0, 0, 1]),-3),1),1),-3)",
    "io_inp": [
      0,
      0,
      1
    ],
    "io_out": [
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sub_n(reverse(input),-3),1),1),-3)"
  },
  {
    "input": "input : list = [-5, -4, 5, -3]\noutput : list = [5, -3, -4, -5]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(sort_des([-5, -4, 5, -3])))),9)",
    "io_inp": [
      -5,
      -4,
      5,
      -3
    ],
    "io_out": [
      5,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(sort_des(input)))),9)"
  },
  {
    "input": "input : list = [5, -2, -5, 3]\noutput : list = [1, 4, 9, 11]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_asc([5, -2, -5, 3]),-1),5))",
    "io_inp": [
      5,
      -2,
      -5,
      3
    ],
    "io_out": [
      1,
      4,
      9,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_asc(input),-1),5))"
  },
  {
    "input": "input : list = [-2, -1, 0, 4, -1]\noutput : list = [-1, 0, 0, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([-2, -1, 0, 4, -1])),-1)",
    "io_inp": [
      -2,
      -1,
      0,
      4,
      -1
    ],
    "io_out": [
      -1,
      0,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),-1)"
  },
  {
    "input": "input : list = [-2, -3, -3, -1, -3, -4]\noutput : list = [-6, -7, -8, -8, -8, -9]",
    "output": "generated_output : list = take(take(sub_n(sort_des(sort_asc([-2, -3, -3, -1, -3, -4])),5),30),57)",
    "io_inp": [
      -2,
      -3,
      -3,
      -1,
      -3,
      -4
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_des(sort_asc(input)),5),30),57)"
  },
  {
    "input": "input : list = [5, 2, 1, -1, -5, -4]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(take([5, 2, 1, -1, -5, -4],2)))),38)",
    "io_inp": [
      5,
      2,
      1,
      -1,
      -5,
      -4
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(take(input,2)))),38)"
  },
  {
    "input": "input : list = [4, 1, 0, 4]\noutput : list = [-1, -1, -4, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(add_n([4, 1, 0, 4],-5))),18))",
    "io_inp": [
      4,
      1,
      0,
      4
    ],
    "io_out": [
      -1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(add_n(input,-5))),18))"
  },
  {
    "input": "input : list = [5, 3, -4, -4, 1, -4]\noutput : list = [14, 14, 0, -4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_des(take([5, 3, -4, -4, 1, -4],4)),-3)),-2)",
    "io_inp": [
      5,
      3,
      -4,
      -4,
      1,
      -4
    ],
    "io_out": [
      14,
      14,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_des(take(input,4)),-3)),-2)"
  },
  {
    "input": "input : list = [-1, -2, 3]\noutput : list = [-2, -6, -7]",
    "output": "generated_output : list = sort_des(reverse(sub_n(take(sort_asc([-1, -2, 3]),12),5)))",
    "io_inp": [
      -1,
      -2,
      3
    ],
    "io_out": [
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(take(sort_asc(input),12),5)))"
  },
  {
    "input": "input : list = [5, 5, 4, 1, 3]\noutput : list = [5, 4, 2]",
    "output": "generated_output : list = sort_des(sub_n(drop([5, 5, 4, 1, 3],2),-1))",
    "io_inp": [
      5,
      5,
      4,
      1,
      3
    ],
    "io_out": [
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,2),-1))"
  },
  {
    "input": "input : list = [3, -1, -3, 1, -3, 2]\noutput : list = [-12, -12, -4, 4, 8, 12]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(sort_asc([3, -1, -3, 1, -3, 2])),4)))",
    "io_inp": [
      3,
      -1,
      -3,
      1,
      -3,
      2
    ],
    "io_out": [
      -12,
      -12,
      -4,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_des(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-4, 14, -6]",
    "output": "generated_output : list = take(add_n(mul_n(reverse([-5, 5, -4]),2),4),32)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -4,
      14,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(input),2),4),32)"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [-3, -10, -11]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-5, 3, -4]),2),-4)",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      -3,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),2),-4)"
  },
  {
    "input": "input : list = [0, -1, 5, -2, -3, 3]\noutput : list = [2, 0, -3, -4, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(reverse([0, -1, 5, -2, -3, 3]),16),-5),-2))",
    "io_inp": [
      0,
      -1,
      5,
      -2,
      -3,
      3
    ],
    "io_out": [
      2,
      0,
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(reverse(input),16),-5),-2))"
  },
  {
    "input": "input : list = [4, 1, -2, -4]\noutput : list = [1, -1]",
    "output": "generated_output : list = sub_n(drop([4, 1, -2, -4],2),-3)",
    "io_inp": [
      4,
      1,
      -2,
      -4
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(sort_asc([0, 2]),3),2)))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(sort_asc(input),3),2)))"
  },
  {
    "input": "input : list = [1, -2, -4, -3, 2, -1]\noutput : list = [2, -4, -8, -6, 4, -2]",
    "output": "generated_output : list = mul_n([1, -2, -4, -3, 2, -1],2)",
    "io_inp": [
      1,
      -2,
      -4,
      -3,
      2,
      -1
    ],
    "io_out": [
      2,
      -4,
      -8,
      -6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, -2, 2, 3]\noutput : list = [-16, -11, 9]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(drop([-4, -2, 2, 3],1),-5)),1),-1)",
    "io_inp": [
      -4,
      -2,
      2,
      3
    ],
    "io_out": [
      -16,
      -11,
      9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(drop(input,1),-5)),1),-1)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(reverse([4, 2])))),5)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(reverse(input)))),5)"
  },
  {
    "input": "input : list = [-1, 5, -4, -2, 5, 1]\noutput : list = [-40, -40, -20, -10, -5, 5]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(add_n([-1, 5, -4, -2, 5, 1],3),-5))),1)",
    "io_inp": [
      -1,
      5,
      -4,
      -2,
      5,
      1
    ],
    "io_out": [
      -40,
      -40,
      -20,
      -10,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(add_n(input,3),-5))),1)"
  },
  {
    "input": "input : list = [-2, -4, 2, -2, 5]\noutput : list = [-13, -11, -11, -7, -4]",
    "output": "generated_output : list = add_n(add_n(sort_asc([-2, -4, 2, -2, 5]),-5),-4)",
    "io_inp": [
      -2,
      -4,
      2,
      -2,
      5
    ],
    "io_out": [
      -13,
      -11,
      -11,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),-5),-4)"
  },
  {
    "input": "input : list = [0, 4, -4, 0, 5]\noutput : list = [-3, 1, 1, 5, 6]",
    "output": "generated_output : list = take(sort_asc(sub_n(reverse(sub_n([0, 4, -4, 0, 5],4)),-5)),6)",
    "io_inp": [
      0,
      4,
      -4,
      0,
      5
    ],
    "io_out": [
      -3,
      1,
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(reverse(sub_n(input,4)),-5)),6)"
  },
  {
    "input": "input : list = [4, -3, 0, -3, -4, -2]\noutput : list = [1, 2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(drop([4, -3, 0, -3, -4, -2],3),-5))",
    "io_inp": [
      4,
      -3,
      0,
      -3,
      -4,
      -2
    ],
    "io_out": [
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,3),-5))"
  },
  {
    "input": "input : list = [4, 4, -1, -5, 3]\noutput : list = [14, 6, -2, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(mul_n(add_n([4, 4, -1, -5, 3],-2),-2)))",
    "io_inp": [
      4,
      4,
      -1,
      -5,
      3
    ],
    "io_out": [
      14,
      6,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(add_n(input,-2),-2)))"
  },
  {
    "input": "input : list = [4, -1, 3, 3]\noutput : list = [3, -2]",
    "output": "generated_output : list = take(take(sort_des(add_n(take([4, -1, 3, 3],2),-1)),30),20)",
    "io_inp": [
      4,
      -1,
      3,
      3
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(take(input,2),-1)),30),20)"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [-12, -9, -3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sub_n([-2, -3, 0],1)))),3)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      -12,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sub_n(input,1)))),3)"
  },
  {
    "input": "input : list = [3, 3, -3, -4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(drop([3, 3, -3, -4, 1],3)),15)))",
    "io_inp": [
      3,
      3,
      -3,
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(drop(input,3)),15)))"
  },
  {
    "input": "input : list = [-2, -1, 1, -4, 0]\noutput : list = [-6, -7, -8, -9, -11]",
    "output": "generated_output : list = add_n(add_n(take(sort_des(sort_asc([-2, -1, 1, -4, 0])),19),-2),-5)",
    "io_inp": [
      -2,
      -1,
      1,
      -4,
      0
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_des(sort_asc(input)),19),-2),-5)"
  },
  {
    "input": "input : list = [-5, -4, 3, 4]\noutput : list = [8]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_des(take([-5, -4, 3, 4],1)),-3),-3),-4)",
    "io_inp": [
      -5,
      -4,
      3,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_des(take(input,1)),-3),-3),-4)"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [0, -9, -3]",
    "output": "generated_output : list = reverse(reverse(sub_n([4, -5, 1],4)))",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,4)))"
  },
  {
    "input": "input : list = [5, 0, -4, 3, -2, -3]\noutput : list = [25, 0, -20, 15, -10, -15]",
    "output": "generated_output : list = mul_n([5, 0, -4, 3, -2, -3],5)",
    "io_inp": [
      5,
      0,
      -4,
      3,
      -2,
      -3
    ],
    "io_out": [
      25,
      0,
      -20,
      15,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -1, 5, 2, 2]\noutput : list = [-3, -6, 0, -3, -3]",
    "output": "generated_output : list = mul_n(sub_n([2, -1, 5, 2, 2],5),1)",
    "io_inp": [
      2,
      -1,
      5,
      2,
      2
    ],
    "io_out": [
      -3,
      -6,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),1)"
  },
  {
    "input": "input : list = [1, -2, -3, 3, -1, -3]\noutput : list = [5, 5, 4, 3, 1, -1]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n(mul_n([1, -2, -3, 3, -1, -3],-1),-2)),28))",
    "io_inp": [
      1,
      -2,
      -3,
      3,
      -1,
      -3
    ],
    "io_out": [
      5,
      5,
      4,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(mul_n(input,-1),-2)),28))"
  },
  {
    "input": "input : list = [5, -4, 4, 4, 1, -3]\noutput : list = [-9, -5, -2, -2]",
    "output": "generated_output : list = reverse(add_n(add_n(drop([5, -4, 4, 4, 1, -3],2),-1),-5))",
    "io_inp": [
      5,
      -4,
      4,
      4,
      1,
      -3
    ],
    "io_out": [
      -9,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(drop(input,2),-1),-5))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [0, 6]",
    "output": "generated_output : list = add_n([-2, 4],2)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, -2, 0, 5]\noutput : list = [-2, -1, 0, 5]",
    "output": "generated_output : list = sort_asc([-1, -2, 0, 5])",
    "io_inp": [
      -1,
      -2,
      0,
      5
    ],
    "io_out": [
      -2,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [9, -3]",
    "output": "generated_output : list = mul_n(sort_asc([1, -3]),-3)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      9,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [-22, -42, -30]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(add_n([1, -4, -1],-5),1),4),5),5)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      -22,
      -42,
      -30
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(add_n(input,-5),1),4),5),5)"
  },
  {
    "input": "input : list = [-1, 0, -2, 3, -2, -3]\noutput : list = [9, 6, 6, 3, 0, -9]",
    "output": "generated_output : list = sort_des(take(take(sort_des(mul_n([-1, 0, -2, 3, -2, -3],-3)),28),7))",
    "io_inp": [
      -1,
      0,
      -2,
      3,
      -2,
      -3
    ],
    "io_out": [
      9,
      6,
      6,
      3,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(mul_n(input,-3)),28),7))"
  },
  {
    "input": "input : list = [5, 0, 0]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n([5, 0, 0],2),5)))",
    "io_inp": [
      5,
      0,
      0
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(input,2),5)))"
  },
  {
    "input": "input : list = [-4, -3, -4, -1, 2]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(drop(sort_des(drop(sort_des([-4, -3, -4, -1, 2]),2)),2))",
    "io_inp": [
      -4,
      -3,
      -4,
      -1,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(drop(sort_des(input),2)),2))"
  },
  {
    "input": "input : list = [3, 1, -3, 2, -3, -5]\noutput : list = [20, 10, 10, -10, -15, -20]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_des([3, 1, -3, 2, -3, -5])),-1),-5),39)",
    "io_inp": [
      3,
      1,
      -3,
      2,
      -3,
      -5
    ],
    "io_out": [
      20,
      10,
      10,
      -10,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(sort_des(input)),-1),-5),39)"
  },
  {
    "input": "input : list = [-4, -1, 1, 3]\noutput : list = [-3, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sort_asc([-4, -1, 1, 3]),1),1)))",
    "io_inp": [
      -4,
      -1,
      1,
      3
    ],
    "io_out": [
      -3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(sort_asc(input),1),1)))"
  },
  {
    "input": "input : list = [-2, 1, 0, 1]\noutput : list = [-1, 1, 2, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(sort_des([-2, 1, 0, 1]),-1)),5),-5)",
    "io_inp": [
      -2,
      1,
      0,
      1
    ],
    "io_out": [
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sub_n(sort_des(input),-1)),5),-5)"
  },
  {
    "input": "input : list = [-5, 3, -2, 0]\noutput : list = [1, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_des(drop([-5, 3, -2, 0],2)))),-3)",
    "io_inp": [
      -5,
      3,
      -2,
      0
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_des(drop(input,2)))),-3)"
  },
  {
    "input": "input : list = [3, 2, 1]\noutput : list = [-5, -6]",
    "output": "generated_output : list = sort_des(add_n(sub_n(drop([3, 2, 1],1),3),-4))",
    "io_inp": [
      3,
      2,
      1
    ],
    "io_out": [
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(drop(input,1),3),-4))"
  },
  {
    "input": "input : list = [1, 2, -3, 2, -3]\noutput : list = [-5, -5, -1, 0, 0]",
    "output": "generated_output : list = take(take(take(sub_n(sort_asc([1, 2, -3, 2, -3]),2),29),23),24)",
    "io_inp": [
      1,
      2,
      -3,
      2,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(sort_asc(input),2),29),23),24)"
  },
  {
    "input": "input : list = [0, 0, 2, -1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(sort_des(take([0, 0, 2, -1],1)))",
    "io_inp": [
      0,
      0,
      2,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [3, 1, 2, 5, -3, -1]\noutput : list = [-5, 5, 10, 15, 25, 35]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(add_n([3, 1, 2, 5, -3, -1],-4))),-5)",
    "io_inp": [
      3,
      1,
      2,
      5,
      -3,
      -1
    ],
    "io_out": [
      -5,
      5,
      10,
      15,
      25,
      35
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(add_n(input,-4))),-5)"
  },
  {
    "input": "input : list = [-5, -3, -4, 5, 5, 3]\noutput : list = [-2, -1, 0, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des([-5, -3, -4, 5, 5, 3]),1),-3)))",
    "io_inp": [
      -5,
      -3,
      -4,
      5,
      5,
      3
    ],
    "io_out": [
      -2,
      -1,
      0,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(sort_des(input),1),-3)))"
  },
  {
    "input": "input : list = [1, 2, -5, 3, -1, -5]\noutput : list = [-4, 12, 28]",
    "output": "generated_output : list = mul_n(sort_asc(drop(sub_n(sub_n([1, 2, -5, 3, -1, -5],-5),1),3)),4)",
    "io_inp": [
      1,
      2,
      -5,
      3,
      -1,
      -5
    ],
    "io_out": [
      -4,
      12,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(sub_n(sub_n(input,-5),1),3)),4)"
  },
  {
    "input": "input : list = [-3, -1, 0]\noutput : list = [1, 2]",
    "output": "generated_output : list = reverse(add_n(take(mul_n(drop([-3, -1, 0],1),-1),4),1))",
    "io_inp": [
      -3,
      -1,
      0
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(drop(input,1),-1),4),1))"
  },
  {
    "input": "input : list = [2, 1, 0, 5]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(sub_n(drop(reverse(sort_asc([2, 1, 0, 5])),3),3))",
    "io_inp": [
      2,
      1,
      0,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(reverse(sort_asc(input)),3),3))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [7, 2]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n([-1, 4],2)),-5),31)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(input,2)),-5),31)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n([-1, 1],2),-2)))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(input,2),-2)))"
  },
  {
    "input": "input : list = [-4, -1, 0, -4, -2]\noutput : list = [-7, -4, -3, -7, -5]",
    "output": "generated_output : list = sub_n([-4, -1, 0, -4, -2],3)",
    "io_inp": [
      -4,
      -1,
      0,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -4,
      -3,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [3, -2, 1, -4, -1]\noutput : list = [-3, 2, -1, 4, 1]",
    "output": "generated_output : list = mul_n([3, -2, 1, -4, -1],-1)",
    "io_inp": [
      3,
      -2,
      1,
      -4,
      -1
    ],
    "io_out": [
      -3,
      2,
      -1,
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, -1, -5, 3]\noutput : list = [3, -5, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -5, 3])",
    "io_inp": [
      5,
      -1,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [3, -6]",
    "output": "generated_output : list = mul_n([1, -2],3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, -2, -5, -3, -5]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take([-3, -2, -5, -3, -5],2)",
    "io_inp": [
      -3,
      -2,
      -5,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [-1, -5, -5]",
    "output": "generated_output : list = sub_n([1, -3, -3],2)",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-4, -3, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc([-3, 5, -4])),6)",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),6)"
  },
  {
    "input": "input : list = [5, -3, -5, 0, 5, 2]\noutput : list = [8, 0, -2, 3, 8, 5]",
    "output": "generated_output : list = add_n([5, -3, -5, 0, 5, 2],3)",
    "io_inp": [
      5,
      -3,
      -5,
      0,
      5,
      2
    ],
    "io_out": [
      8,
      0,
      -2,
      3,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-2, 5, 5, 1, -3, -1]\noutput : list = [-25, -20, -15, -5, 15, 15]",
    "output": "generated_output : list = sort_asc(take(mul_n(mul_n(sub_n([-2, 5, 5, 1, -3, -1],2),-5),-1),16))",
    "io_inp": [
      -2,
      5,
      5,
      1,
      -3,
      -1
    ],
    "io_out": [
      -25,
      -20,
      -15,
      -5,
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(mul_n(sub_n(input,2),-5),-1),16))"
  },
  {
    "input": "input : list = [2, -4, -4, 0]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(take(reverse(reverse(take([2, -4, -4, 0],1))),4),3)",
    "io_inp": [
      2,
      -4,
      -4,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(take(input,1))),4),3)"
  },
  {
    "input": "input : list = [0, -4, -3, 4, 1]\noutput : list = [12, 3, 0, -9, -12]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n(reverse([0, -4, -3, 4, 1]),3))))",
    "io_inp": [
      0,
      -4,
      -3,
      4,
      1
    ],
    "io_out": [
      12,
      3,
      0,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [-4, 1, -3, 4, -2, -2]\noutput : list = [-12, 0, -15]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(take([-4, 1, -3, 4, -2, -2],3),3),-5)),2)",
    "io_inp": [
      -4,
      1,
      -3,
      4,
      -2,
      -2
    ],
    "io_out": [
      -12,
      0,
      -15
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(take(input,3),3),-5)),2)"
  },
  {
    "input": "input : list = [-2, 4, 5]\noutput : list = [2, 8, 9]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(reverse([-2, 4, 5])),-4)))",
    "io_inp": [
      -2,
      4,
      5
    ],
    "io_out": [
      2,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-1, 5, 2, 0, 1, 2]\noutput : list = [5, 2, 2, 1, 0, -1]",
    "output": "generated_output : list = sort_des([-1, 5, 2, 0, 1, 2])",
    "io_inp": [
      -1,
      5,
      2,
      0,
      1,
      2
    ],
    "io_out": [
      5,
      2,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 2, 4, 0, 3]\noutput : list = [-2, -5]",
    "output": "generated_output : list = take(reverse(add_n([2, 2, 4, 0, 3],-5)),2)",
    "io_inp": [
      2,
      2,
      4,
      0,
      3
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,-5)),2)"
  },
  {
    "input": "input : list = [0, -4, 3, 2, 4]\noutput : list = [7, 6, 8]",
    "output": "generated_output : list = take(sub_n(drop([0, -4, 3, 2, 4],2),-4),11)",
    "io_inp": [
      0,
      -4,
      3,
      2,
      4
    ],
    "io_out": [
      7,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,2),-4),11)"
  },
  {
    "input": "input : list = [2, 0, -2, -5, -5, -4]\noutput : list = [-4, -5, -5, -2, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, -2, -5, -5, -4])",
    "io_inp": [
      2,
      0,
      -2,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -1, -1]\noutput : list = [2, -2, -2]",
    "output": "generated_output : list = sub_n(sort_des([3, -1, -1]),1)",
    "io_inp": [
      3,
      -1,
      -1
    ],
    "io_out": [
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-3, -3, 2]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_des(sort_asc(take([-3, -3, 2],1))),34)",
    "io_inp": [
      -3,
      -3,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(take(input,1))),34)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-1, 7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_asc([3, -5]),-5)),-4),3)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_asc(input),-5)),-4),3)"
  },
  {
    "input": "input : list = [1, -1, 2, -3]\noutput : list = [2, 1, -1, -3]",
    "output": "generated_output : list = sort_des([1, -1, 2, -3])",
    "io_inp": [
      1,
      -1,
      2,
      -3
    ],
    "io_out": [
      2,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, 1, -5, -2]\noutput : list = [-69, -33, 3, 39, 51]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_asc([5, 4, 1, -5, -2]),4),5),-2),3)",
    "io_inp": [
      5,
      4,
      1,
      -5,
      -2
    ],
    "io_out": [
      -69,
      -33,
      3,
      39,
      51
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(sort_asc(input),4),5),-2),3)"
  },
  {
    "input": "input : list = [0, -4, -1, -5, 0]\noutput : list = [0, 0, 4, 16, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(mul_n([0, -4, -1, -5, 0],-4)))))",
    "io_inp": [
      0,
      -4,
      -1,
      -5,
      0
    ],
    "io_out": [
      0,
      0,
      4,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(mul_n(input,-4)))))"
  },
  {
    "input": "input : list = [-3, 3, 2, -5, -3, 3]\noutput : list = [4, 4, 3, -2, -2, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_des([-3, 3, 2, -5, -3, 3])))),-1)",
    "io_inp": [
      -3,
      3,
      2,
      -5,
      -3,
      3
    ],
    "io_out": [
      4,
      4,
      3,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [-4, 5, -2, 0]\noutput : list = [-8, -10, -3, -12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(reverse([-4, 5, -2, 0]),20),4),4),1)",
    "io_inp": [
      -4,
      5,
      -2,
      0
    ],
    "io_out": [
      -8,
      -10,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(reverse(input),20),4),4),1)"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [36, 12, -48]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(mul_n([5, -2, 0],4),4),9)),-3)",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      36,
      12,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(mul_n(input,4),4),9)),-3)"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [0, 5, 10]",
    "output": "generated_output : list = sort_asc(add_n([5, 0, -5],5))",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      0,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [-4, -2, 2, -1]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_asc([-4, -2, 2, -1]),1))))",
    "io_inp": [
      -4,
      -2,
      2,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(sub_n([0, -1],-5),2))),5)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(sub_n(input,-5),2))),5)"
  },
  {
    "input": "input : list = [2, -2, 5, -1]\noutput : list = [3, 9]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(drop([2, -2, 5, -1],2),7)),-5),-1)",
    "io_inp": [
      2,
      -2,
      5,
      -1
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(drop(input,2),7)),-5),-1)"
  },
  {
    "input": "input : list = [-5, -3, 5, -3, -1]\noutput : list = [-1, -3, 5, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, 5, -3, -1])",
    "io_inp": [
      -5,
      -3,
      5,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3,
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, -4, -1]\noutput : list = [-4, -4, -1, 4]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(mul_n([4, -4, -4, -1],1)))),33)",
    "io_inp": [
      4,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(mul_n(input,1)))),33)"
  },
  {
    "input": "input : list = [1, -1, -1, 1, 4]\noutput : list = [-1, -1, 1, 1, 4]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(add_n([1, -1, -1, 1, 4],-3),12)),18),-3)",
    "io_inp": [
      1,
      -1,
      -1,
      1,
      4
    ],
    "io_out": [
      -1,
      -1,
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(add_n(input,-3),12)),18),-3)"
  },
  {
    "input": "input : list = [-1, 3, -3, -2, 0, 3]\noutput : list = [5, 5, 2, 1, 0, -1]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(sub_n([-1, 3, -3, -2, 0, 3],5),-5)),1),2)",
    "io_inp": [
      -1,
      3,
      -3,
      -2,
      0,
      3
    ],
    "io_out": [
      5,
      5,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(sub_n(input,5),-5)),1),2)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [2, 2]",
    "output": "generated_output : list = take(sub_n(sort_des(take(reverse([3, 3]),10)),1),9)",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(take(reverse(input),10)),1),9)"
  },
  {
    "input": "input : list = [-4, -4, -2, 1]\noutput : list = [-3, -3, -1, 2]",
    "output": "generated_output : list = add_n([-4, -4, -2, 1],1)",
    "io_inp": [
      -4,
      -4,
      -2,
      1
    ],
    "io_out": [
      -3,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-4, 3, -1, 4, 0]\noutput : list = [1, 4, 5, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(sort_des([-4, 3, -1, 4, 0])),5)",
    "io_inp": [
      -4,
      3,
      -1,
      4,
      0
    ],
    "io_out": [
      1,
      4,
      5,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-4, -4, -4, -2, -1, -5]\noutput : list = [-14, -13, -13, -13, -11, -10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(add_n([-4, -4, -4, -2, -1, -5],1),-5))),5)",
    "io_inp": [
      -4,
      -4,
      -4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -14,
      -13,
      -13,
      -13,
      -11,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(add_n(input,1),-5))),5)"
  },
  {
    "input": "input : list = [2, -2, 4, 0]\noutput : list = [4, 2, 0, -2]",
    "output": "generated_output : list = sort_des([2, -2, 4, 0])",
    "io_inp": [
      2,
      -2,
      4,
      0
    ],
    "io_out": [
      4,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -2, 2, -3, -4]\noutput : list = [7, 5, 1, 0, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(sub_n([4, -2, 2, -3, -4],-3)))))",
    "io_inp": [
      4,
      -2,
      2,
      -3,
      -4
    ],
    "io_out": [
      7,
      5,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_des(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [-2, 2, 4]\noutput : list = [35, 115, 155]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(add_n([-2, 2, 4],4),4)),5),5)",
    "io_inp": [
      -2,
      2,
      4
    ],
    "io_out": [
      35,
      115,
      155
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(add_n(input,4),4)),5),5)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [-8, 8, 10]",
    "output": "generated_output : list = take(mul_n(sort_asc(take(sort_des([4, -4, 5]),18)),2),12)",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      -8,
      8,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(take(sort_des(input),18)),2),12)"
  },
  {
    "input": "input : list = [3, 5, -1, 1]\noutput : list = [125, 75, 25, -25]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_des([3, 5, -1, 1])),5),5))",
    "io_inp": [
      3,
      5,
      -1,
      1
    ],
    "io_out": [
      125,
      75,
      25,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(sort_des(input)),5),5))"
  },
  {
    "input": "input : list = [-5, -4, 0, -4, 1]\noutput : list = [-4, -3, 1, -3, 2]",
    "output": "generated_output : list = sub_n([-5, -4, 0, -4, 1],-1)",
    "io_inp": [
      -5,
      -4,
      0,
      -4,
      1
    ],
    "io_out": [
      -4,
      -3,
      1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-3]",
    "output": "generated_output : list = drop(sort_des(sort_des(add_n(sub_n([-4, -3],1),2))),1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = drop(sort_des(sort_des(add_n(sub_n(input,1),2))),1)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(drop(reverse([4, 2]),1)),3),3)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(drop(reverse(input),1)),3),3)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [0, 6]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(reverse([5, -1]),-1))),3)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(reverse(input),-1))),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-7, -6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(reverse([-3, -4]))),2),-5)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(reverse(input))),2),-5)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [5, 1]",
    "output": "generated_output : list = reverse(take(sub_n(sort_asc(sort_des([4, 0])),-1),11))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(sort_asc(sort_des(input)),-1),11))"
  },
  {
    "input": "input : list = [1, -5, -1, -1, -5]\noutput : list = [-9, -9, -5, -5, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([1, -5, -1, -1, -5],2)),2)",
    "io_inp": [
      1,
      -5,
      -1,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -9,
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,2)),2)"
  },
  {
    "input": "input : list = [1, 0, 0, 1]\noutput : list = [9, 9, 18, 18]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(sort_des([1, 0, 0, 1]),1)),3),3)",
    "io_inp": [
      1,
      0,
      0,
      1
    ],
    "io_out": [
      9,
      9,
      18,
      18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(sort_des(input),1)),3),3)"
  },
  {
    "input": "input : list = [-2, 4, -4]\noutput : list = [-5]",
    "output": "generated_output : list = take(take(sub_n(drop(sort_des([-2, 4, -4]),2),1),14),33)",
    "io_inp": [
      -2,
      4,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(drop(sort_des(input),2),1),14),33)"
  },
  {
    "input": "input : list = [-4, -1, -5, 0, -1]\noutput : list = [-68, 22, -98, 52, 22]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n([-4, -1, -5, 0, -1],2),3),-5),4),-2)",
    "io_inp": [
      -4,
      -1,
      -5,
      0,
      -1
    ],
    "io_out": [
      -68,
      22,
      -98,
      52,
      22
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n(input,2),3),-5),4),-2)"
  },
  {
    "input": "input : list = [-4, 3, -5, -5, 3, -3]\noutput : list = [-2, -2, -1, 0, 6, 6]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(sort_asc([-4, 3, -5, -5, 3, -3]))),3))",
    "io_inp": [
      -4,
      3,
      -5,
      -5,
      3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [-15, -12]",
    "output": "generated_output : list = take(take(reverse(mul_n(sort_asc([4, 5]),-3)),29),21)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      -15,
      -12
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(sort_asc(input),-3)),29),21)"
  },
  {
    "input": "input : list = [1, -2, -2, 0]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(drop([1, -2, -2, 0],2)),-2)),46)",
    "io_inp": [
      1,
      -2,
      -2,
      0
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(drop(input,2)),-2)),46)"
  },
  {
    "input": "input : list = [-1, 4, -2, -5]\noutput : list = [4, -1, -2, -5]",
    "output": "generated_output : list = sort_des([-1, 4, -2, -5])",
    "io_inp": [
      -1,
      4,
      -2,
      -5
    ],
    "io_out": [
      4,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1, 3, -4, -3, 5]\noutput : list = [-10, -9, -6, -5, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(sub_n([0, 1, 3, -4, -3, 5],-3),5),4)))",
    "io_inp": [
      0,
      1,
      3,
      -4,
      -3,
      5
    ],
    "io_out": [
      -10,
      -9,
      -6,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sub_n(sub_n(input,-3),5),4)))"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [-6, -2]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_des(drop([5, -2, 2],1))),12),4)",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_des(drop(input,1))),12),4)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-7, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse([-3, 4])),4)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),4)"
  },
  {
    "input": "input : list = [-5, 4, 4]\noutput : list = [4, 4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des([-5, 4, 4])))",
    "io_inp": [
      -5,
      4,
      4
    ],
    "io_out": [
      4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [0, 3, 4]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = add_n([0, 3, 4],1)",
    "io_inp": [
      0,
      3,
      4
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [3, -3, 1]\noutput : list = [6, 0, 4]",
    "output": "generated_output : list = sub_n([3, -3, 1],-3)",
    "io_inp": [
      3,
      -3,
      1
    ],
    "io_out": [
      6,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [7, 6, 3]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_asc([-1, 3, 2]),10)),-4))",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(sort_asc(input),10)),-4))"
  },
  {
    "input": "input : list = [0, 5, -4, 1, 4, 5]\noutput : list = [5, 0, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(take([0, 5, -4, 1, 4, 5],3)))))",
    "io_inp": [
      0,
      5,
      -4,
      1,
      4,
      5
    ],
    "io_out": [
      5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(take(input,3)))))"
  },
  {
    "input": "input : list = [-1, 5, 1]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(sub_n([-1, 5, 1],1)))",
    "io_inp": [
      -1,
      5,
      1
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,1)))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc([-5, 1])",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(sub_n(take([-3, 3, 2],1),-1),-3)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,1),-1),-3)"
  },
  {
    "input": "input : list = [-3, 5, 4, 0, 2, -4]\noutput : list = [-4, 2, 0, 4, 5, -3]",
    "output": "generated_output : list = reverse([-3, 5, 4, 0, 2, -4])",
    "io_inp": [
      -3,
      5,
      4,
      0,
      2,
      -4
    ],
    "io_out": [
      -4,
      2,
      0,
      4,
      5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(sort_asc([2, -1])),-5),2))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(sort_asc(input)),-5),2))"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [8, 8, 0]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(add_n([3, 3, -5],2),3)),30))",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      8,
      8,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(add_n(input,2),3)),30))"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [9, 6, -9]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sub_n(sort_asc([-1, 4, 5]),2),3)))",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      9,
      6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sub_n(sort_asc(input),2),3)))"
  },
  {
    "input": "input : list = [5, -5, -3, -3, -3, 2]\noutput : list = [59, -91, -61, -61, -61, 14]",
    "output": "generated_output : list = sub_n(mul_n(add_n(add_n(mul_n([5, -5, -3, -3, -3, 2],-3),5),-1),-5),-4)",
    "io_inp": [
      5,
      -5,
      -3,
      -3,
      -3,
      2
    ],
    "io_out": [
      59,
      -91,
      -61,
      -61,
      -61,
      14
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(add_n(mul_n(input,-3),5),-1),-5),-4)"
  },
  {
    "input": "input : list = [-2, -1, 2, -1]\noutput : list = [-9, -7]",
    "output": "generated_output : list = add_n(mul_n(take([-2, -1, 2, -1],2),2),-5)",
    "io_inp": [
      -2,
      -1,
      2,
      -1
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,2),2),-5)"
  },
  {
    "input": "input : list = [-5, -5, -1, 0]\noutput : list = [15, 15]",
    "output": "generated_output : list = reverse(reverse(take(mul_n(take([-5, -5, -1, 0],2),-3),4)))",
    "io_inp": [
      -5,
      -5,
      -1,
      0
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(mul_n(take(input,2),-3),4)))"
  },
  {
    "input": "input : list = [-4, 3, -1]\noutput : list = [-8, -2, 6]",
    "output": "generated_output : list = mul_n(sort_asc([-4, 3, -1]),2)",
    "io_inp": [
      -4,
      3,
      -1
    ],
    "io_out": [
      -8,
      -2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [4, -1, 4]\noutput : list = [0, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(reverse([4, -1, 4])),-4)))",
    "io_inp": [
      4,
      -1,
      4
    ],
    "io_out": [
      0,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-3, 2, -5, 5, 1]\noutput : list = [1, 5, -5, 2, -3]",
    "output": "generated_output : list = reverse([-3, 2, -5, 5, 1])",
    "io_inp": [
      -3,
      2,
      -5,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      -5,
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-6, -8, -6]",
    "output": "generated_output : list = add_n([-2, -4, -2],-4)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(take(drop([4, 2, 4],1),9))",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(input,1),9))"
  },
  {
    "input": "input : list = [-5, -1, -4]\noutput : list = [-10]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(take([-5, -1, -4],1),5))))",
    "io_inp": [
      -5,
      -1,
      -4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(take(input,1),5))))"
  },
  {
    "input": "input : list = [-5, -4, 5, 1, -4, 1]\noutput : list = [-7, -6]",
    "output": "generated_output : list = sub_n(take(take(take([-5, -4, 5, 1, -4, 1],2),3),12),2)",
    "io_inp": [
      -5,
      -4,
      5,
      1,
      -4,
      1
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(input,2),3),12),2)"
  },
  {
    "input": "input : list = [1, -1, 4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(take([1, -1, 4],1)),4)))",
    "io_inp": [
      1,
      -1,
      4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(take(input,1)),4)))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [4, 16]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(sort_des([-1, -5]),-2),-3),1),4)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      4,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(sort_des(input),-2),-3),1),4)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(sub_n(reverse(reverse([4, 1])),2),14)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(input)),2),14)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(add_n([3, 4],-3),-4),-5)),1)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(add_n(input,-3),-4),-5)),1)"
  },
  {
    "input": "input : list = [-3, 2, -1, -2]\noutput : list = [-3, -2, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, 2, -1, -2]))",
    "io_inp": [
      -3,
      2,
      -1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -1, -4, -1, 3, 3]\noutput : list = [2, 2, -2, -5, -2, -3]",
    "output": "generated_output : list = add_n(reverse([-2, -1, -4, -1, 3, 3]),-1)",
    "io_inp": [
      -2,
      -1,
      -4,
      -1,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      -2,
      -5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [2, -2, 1, 1, -4]\noutput : list = [2, -2, 1]",
    "output": "generated_output : list = take(take([2, -2, 1, 1, -4],3),19)",
    "io_inp": [
      2,
      -2,
      1,
      1,
      -4
    ],
    "io_out": [
      2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(take(input,3),19)"
  },
  {
    "input": "input : list = [-4, 1, -3, -4]\noutput : list = [-4, -4, -3, 1]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse([-4, 1, -3, -4])),7))",
    "io_inp": [
      -4,
      1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(input)),7))"
  },
  {
    "input": "input : list = [-5, 1, 2, 3]\noutput : list = [-5, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([-5, 1, 2, 3])))",
    "io_inp": [
      -5,
      1,
      2,
      3
    ],
    "io_out": [
      -5,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-4, 3, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = reverse(drop([-4, 3, -2],1))",
    "io_inp": [
      -4,
      3,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [2, 5, 2, 2, -1]\noutput : list = [4, 7, 7, 10, 7]",
    "output": "generated_output : list = reverse(add_n(add_n(reverse(reverse([2, 5, 2, 2, -1])),4),1))",
    "io_inp": [
      2,
      5,
      2,
      2,
      -1
    ],
    "io_out": [
      4,
      7,
      7,
      10,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(reverse(reverse(input)),4),1))"
  },
  {
    "input": "input : list = [0, -5, -1, -1]\noutput : list = [25, 5, 5, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(reverse(sort_des([0, -5, -1, -1]))),-5))",
    "io_inp": [
      0,
      -5,
      -1,
      -1
    ],
    "io_out": [
      25,
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(reverse(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [4, 1, 5, -3, -2, 5]\noutput : list = [-4, -3, 0, 3, 4, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_des([4, 1, 5, -3, -2, 5]))),4),-5)",
    "io_inp": [
      4,
      1,
      5,
      -3,
      -2,
      5
    ],
    "io_out": [
      -4,
      -3,
      0,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(sort_des(input))),4),-5)"
  },
  {
    "input": "input : list = [-5, 4, 3, -5, 3]\noutput : list = [-8, 0, 0, 1]",
    "output": "generated_output : list = add_n(drop(sort_asc(reverse([-5, 4, 3, -5, 3])),1),-3)",
    "io_inp": [
      -5,
      4,
      3,
      -5,
      3
    ],
    "io_out": [
      -8,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_asc(reverse(input)),1),-3)"
  },
  {
    "input": "input : list = [-2, -5, -4, -2, 5]\noutput : list = [5, -2, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(drop([-2, -5, -4, -2, 5],1))))",
    "io_inp": [
      -2,
      -5,
      -4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(drop(input,1))))"
  },
  {
    "input": "input : list = [-5, -3, -2, 5, -4, -2]\noutput : list = [-11, -9]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(take([-5, -3, -2, 5, -4, -2],2)),-5)),1)",
    "io_inp": [
      -5,
      -3,
      -2,
      5,
      -4,
      -2
    ],
    "io_out": [
      -11,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_asc(take(input,2)),-5)),1)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, -4]))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, -3, 3, 3]\noutput : list = [-5, -8]",
    "output": "generated_output : list = add_n(take([0, -3, 3, 3],2),-5)",
    "io_inp": [
      0,
      -3,
      3,
      3
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-5)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-2, 8]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_asc(add_n([0, -5],1)))),-2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_asc(add_n(input,1)))),-2)"
  },
  {
    "input": "input : list = [0, 1, 3, -3, 3]\noutput : list = [2, 6, 8]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(take([0, 1, 3, -3, 3],3),4))),-2)",
    "io_inp": [
      0,
      1,
      3,
      -3,
      3
    ],
    "io_out": [
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(take(input,3),4))),-2)"
  },
  {
    "input": "input : list = [4, 2, -4, 0, 1, 1]\noutput : list = [0, -2, -3, -3, -4, -8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(sub_n([4, 2, -4, 0, 1, 1],5)),-2)),-1)",
    "io_inp": [
      4,
      2,
      -4,
      0,
      1,
      1
    ],
    "io_out": [
      0,
      -2,
      -3,
      -3,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(sub_n(input,5)),-2)),-1)"
  },
  {
    "input": "input : list = [0, 5, 4, -2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take(drop(sort_des([0, 5, 4, -2, -3]),4),5))",
    "io_inp": [
      0,
      5,
      4,
      -2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(sort_des(input),4),5))"
  },
  {
    "input": "input : list = [0, -2, 4]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([0, -2, 4]))",
    "io_inp": [
      0,
      -2,
      4
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 2, -4]\noutput : list = [0, 2, 6]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_des(add_n([-2, 2, -4],4))),8))",
    "io_inp": [
      -2,
      2,
      -4
    ],
    "io_out": [
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_des(add_n(input,4))),8))"
  },
  {
    "input": "input : list = [1, -5, -2, -2, -4, -4]\noutput : list = [2, -7, -7, -13, -13, -16]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(sort_des([1, -5, -2, -2, -4, -4]),17),3),-1),-2)",
    "io_inp": [
      1,
      -5,
      -2,
      -2,
      -4,
      -4
    ],
    "io_out": [
      2,
      -7,
      -7,
      -13,
      -13,
      -16
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(sort_des(input),17),3),-1),-2)"
  },
  {
    "input": "input : list = [2, -2, -1, -3]\noutput : list = [-8, -7, -6, -3]",
    "output": "generated_output : list = add_n(take(sort_asc([2, -2, -1, -3]),6),-5)",
    "io_inp": [
      2,
      -2,
      -1,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(input),6),-5)"
  },
  {
    "input": "input : list = [0, 3, -3]\noutput : list = [0, -12, 12]",
    "output": "generated_output : list = mul_n([0, 3, -3],-4)",
    "io_inp": [
      0,
      3,
      -3
    ],
    "io_out": [
      0,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -3, -1, -3, 1]\noutput : list = [3, -3, -9, -9, -15]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(sort_asc([-5, -3, -1, -3, 1]),3))))",
    "io_inp": [
      -5,
      -3,
      -1,
      -3,
      1
    ],
    "io_out": [
      3,
      -3,
      -9,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(mul_n(sort_asc(input),3))))"
  },
  {
    "input": "input : list = [0, 0, -4, -1, 0, 3]\noutput : list = [60, 15, 0, 0, -45]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take(reverse([0, 0, -4, -1, 0, 3]),5)),-5),3)",
    "io_inp": [
      0,
      0,
      -4,
      -1,
      0,
      3
    ],
    "io_out": [
      60,
      15,
      0,
      0,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(reverse(input),5)),-5),3)"
  },
  {
    "input": "input : list = [-5, 1, -1, -1]\noutput : list = [1, -1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des([-5, 1, -1, -1]))",
    "io_inp": [
      -5,
      1,
      -1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-2, 3, 2]\noutput : list = [10, -2, -5]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_des([-2, 3, 2]),-3)),-4))",
    "io_inp": [
      -2,
      3,
      2
    ],
    "io_out": [
      10,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_des(input),-3)),-4))"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-35, -30]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(add_n([-2, -1],-5),8))),5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -35,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(add_n(input,-5),8))),5)"
  },
  {
    "input": "input : list = [4, -5, -4, -1]\noutput : list = [-5, 31, 27, 15]",
    "output": "generated_output : list = sub_n(mul_n(take(mul_n(sub_n([4, -5, -4, -1],4),-2),18),2),5)",
    "io_inp": [
      4,
      -5,
      -4,
      -1
    ],
    "io_out": [
      -5,
      31,
      27,
      15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(mul_n(sub_n(input,4),-2),18),2),5)"
  },
  {
    "input": "input : list = [5, -5, -1, -2, 5]\noutput : list = [2, -8, -4, -5, 2]",
    "output": "generated_output : list = take(sub_n([5, -5, -1, -2, 5],3),11)",
    "io_inp": [
      5,
      -5,
      -1,
      -2,
      5
    ],
    "io_out": [
      2,
      -8,
      -4,
      -5,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,3),11)"
  },
  {
    "input": "input : list = [2, 4, 4, 3, 3]\noutput : list = [-36, -36, -30, -30, -24]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(reverse([2, 4, 4, 3, 3]),2),-3)),2)",
    "io_inp": [
      2,
      4,
      4,
      3,
      3
    ],
    "io_out": [
      -36,
      -36,
      -30,
      -30,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(reverse(input),2),-3)),2)"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [-2, 0, 1]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(sort_des([1, 0, -2]),4),1),-4))",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(sort_des(input),4),1),-4))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(reverse([-5, -4]),8))))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(reverse(input),8))))"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = take(drop([5, 2, 5],1),11)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = take(drop(input,1),11)"
  },
  {
    "input": "input : list = [-5, -2, -4]\noutput : list = [-5, -4, -2]",
    "output": "generated_output : list = sort_asc([-5, -2, -4])",
    "io_inp": [
      -5,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take([1, 1, -3],1))",
    "io_inp": [
      1,
      1,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [1, -2, 0, 5, 1, 2]\noutput : list = [-1, 1, 2, 2, 3, 6]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse([1, -2, 0, 5, 1, 2]),1)))",
    "io_inp": [
      1,
      -2,
      0,
      5,
      1,
      2
    ],
    "io_out": [
      -1,
      1,
      2,
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(input),1)))"
  },
  {
    "input": "input : list = [3, -5, -4, 4, 3]\noutput : list = [3, 4, -4, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, -4, 4, 3])",
    "io_inp": [
      3,
      -5,
      -4,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      -4,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(take(reverse([2, -5]),1))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),1))"
  },
  {
    "input": "input : list = [-3, 0, 3, 4, -4]\noutput : list = [4, 3, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(take(sort_des([-3, 0, 3, 4, -4]),3))))",
    "io_inp": [
      -3,
      0,
      3,
      4,
      -4
    ],
    "io_out": [
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(take(sort_des(input),3))))"
  },
  {
    "input": "input : list = [-3, 5, -5, -2, -4]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(take([-3, 5, -5, -2, -4],1),-1))),-2)",
    "io_inp": [
      -3,
      5,
      -5,
      -2,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(take(input,1),-1))),-2)"
  },
  {
    "input": "input : list = [-2, 4, -3, -1, -3, 2]\noutput : list = [-7, -7, -6, -5, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n([-2, 4, -3, -1, -3, 2],-1)))),-5)",
    "io_inp": [
      -2,
      4,
      -3,
      -1,
      -3,
      2
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n(input,-1)))),-5)"
  },
  {
    "input": "input : list = [-5, 1, 1, 5, 1, 0]\noutput : list = [2, -2, -2, -2, -3, -8]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n([-5, 1, 1, 5, 1, 0],-5))),-3),5)",
    "io_inp": [
      -5,
      1,
      1,
      5,
      1,
      0
    ],
    "io_out": [
      2,
      -2,
      -2,
      -2,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sub_n(input,-5))),-3),5)"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [-3, -3, 0]",
    "output": "generated_output : list = take(sort_asc(sub_n([2, 2, 5],5)),22)",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      -3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,5)),22)"
  },
  {
    "input": "input : list = [3, -5, -2]\noutput : list = [3, 8, 11]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sub_n([3, -5, -2],4),2))),-1)",
    "io_inp": [
      3,
      -5,
      -2
    ],
    "io_out": [
      3,
      8,
      11
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sub_n(sub_n(input,4),2))),-1)"
  },
  {
    "input": "input : list = [-4, 1, 3, -3, 5]\noutput : list = [-8, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take([-4, 1, 3, -3, 5],2),2))))",
    "io_inp": [
      -4,
      1,
      3,
      -3,
      5
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take(input,2),2))))"
  },
  {
    "input": "input : list = [2, -4, -2, -1]\noutput : list = [2, -1, -2, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(reverse([2, -4, -2, -1])))))",
    "io_inp": [
      2,
      -4,
      -2,
      -1
    ],
    "io_out": [
      2,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 3, 5, -2, -1, -4]\noutput : list = [-2, 0, 1, 1, 5, 7]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_asc([-1, 3, 5, -2, -1, -4]),-2)))",
    "io_inp": [
      -1,
      3,
      5,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -2,
      0,
      1,
      1,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_asc(input),-2)))"
  },
  {
    "input": "input : list = [-4, 5, 0, -5, -1]\noutput : list = [-9, -8, -5, -4, 1]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_des([-4, 5, 0, -5, -1]))),4))",
    "io_inp": [
      -4,
      5,
      0,
      -5,
      -1
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(sort_des(input))),4))"
  },
  {
    "input": "input : list = [1, 3, -3, 3]\noutput : list = [-3, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(drop([1, 3, -3, 3],1),18))))",
    "io_inp": [
      1,
      3,
      -3,
      3
    ],
    "io_out": [
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(drop(input,1),18))))"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [3, -1, -2]",
    "output": "generated_output : list = reverse(take(take(reverse(sort_des([-2, -1, 3])),16),23))",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(sort_des(input)),16),23))"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [-16, -12, -4]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(mul_n([1, -2, -1],4),-5)),-3))",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      -16,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(mul_n(input,4),-5)),-3))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-6, -10]",
    "output": "generated_output : list = sort_des(mul_n(take(sub_n([5, 1],-5),9),-1))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -6,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sub_n(input,-5),9),-1))"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [-8, -8, -10]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc([2, 0, 2]),-3),-3),4))",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      -8,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc(input),-3),-3),4))"
  },
  {
    "input": "input : list = [4, -4, -4, -4, 4, 2]\noutput : list = [-2, -2, -2, 4, 6, 6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_des(sort_des([4, -4, -4, -4, 4, 2])))),-2)",
    "io_inp": [
      4,
      -4,
      -4,
      -4,
      4,
      2
    ],
    "io_out": [
      -2,
      -2,
      -2,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_des(sort_des(input)))),-2)"
  },
  {
    "input": "input : list = [-2, 4, 4, -3, -4, 0]\noutput : list = [4, -3, -4, 0]",
    "output": "generated_output : list = drop([-2, 4, 4, -3, -4, 0],2)",
    "io_inp": [
      -2,
      4,
      4,
      -3,
      -4,
      0
    ],
    "io_out": [
      4,
      -3,
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -2, -2, -4]\noutput : list = [-10, 10, 10, 20]",
    "output": "generated_output : list = mul_n([2, -2, -2, -4],-5)",
    "io_inp": [
      2,
      -2,
      -2,
      -4
    ],
    "io_out": [
      -10,
      10,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 4, -1, -5]\noutput : list = [13, 8, 7, 4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(add_n([-2, 4, -1, -5],1),-1),-2),-5))",
    "io_inp": [
      -2,
      4,
      -1,
      -5
    ],
    "io_out": [
      13,
      8,
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(add_n(input,1),-1),-2),-5))"
  },
  {
    "input": "input : list = [2, -4, 5, 2, 3]\noutput : list = [-1, 5, 5, 6, 8]",
    "output": "generated_output : list = add_n(sort_asc([2, -4, 5, 2, 3]),3)",
    "io_inp": [
      2,
      -4,
      5,
      2,
      3
    ],
    "io_out": [
      -1,
      5,
      5,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),3)"
  },
  {
    "input": "input : list = [-5, -3, 4, 0, -4]\noutput : list = [-68, -56, -44, -8, 40]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(reverse([-5, -3, 4, 0, -4]),3)),-2),4)",
    "io_inp": [
      -5,
      -3,
      4,
      0,
      -4
    ],
    "io_out": [
      -68,
      -56,
      -44,
      -8,
      40
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(reverse(input),3)),-2),4)"
  },
  {
    "input": "input : list = [-5, -4, -3, 4]\noutput : list = [1, 2, 3, 10]",
    "output": "generated_output : list = take(add_n(take(add_n([-5, -4, -3, 4],2),9),4),36)",
    "io_inp": [
      -5,
      -4,
      -3,
      4
    ],
    "io_out": [
      1,
      2,
      3,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(input,2),9),4),36)"
  },
  {
    "input": "input : list = [-2, -3, 2, -1, -1, -3]\noutput : list = [-3, -3, -2, -1, -1, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(reverse([-2, -3, 2, -1, -1, -3])),21))",
    "io_inp": [
      -2,
      -3,
      2,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(reverse(input)),21))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sub_n([-2, 1],1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, 0, -2, -4]\noutput : list = [-2, 3, 1, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse([-5, 0, -2, -4]),-3))",
    "io_inp": [
      -5,
      0,
      -2,
      -4
    ],
    "io_out": [
      -2,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),-3))"
  },
  {
    "input": "input : list = [0, 1, 5, -3, -2]\noutput : list = [3, 4, 8, 0, 1]",
    "output": "generated_output : list = sub_n([0, 1, 5, -3, -2],-3)",
    "io_inp": [
      0,
      1,
      5,
      -3,
      -2
    ],
    "io_out": [
      3,
      4,
      8,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, 3, 2, -2]\noutput : list = [-2, 2, 3, 5]",
    "output": "generated_output : list = reverse([5, 3, 2, -2])",
    "io_inp": [
      5,
      3,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -5, 5]\noutput : list = [0, 0, 10]",
    "output": "generated_output : list = sort_asc(add_n([-5, -5, 5],5))",
    "io_inp": [
      -5,
      -5,
      5
    ],
    "io_out": [
      0,
      0,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [4, -4, 5, 0, 5, 3]\noutput : list = [25, 25, 20, 15, 0, -20]",
    "output": "generated_output : list = sort_des(mul_n([4, -4, 5, 0, 5, 3],5))",
    "io_inp": [
      4,
      -4,
      5,
      0,
      5,
      3
    ],
    "io_out": [
      25,
      25,
      20,
      15,
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,5))"
  },
  {
    "input": "input : list = [4, 3, -3, -2, -3, 0]\noutput : list = [-5, -4, -2]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(drop([4, 3, -3, -2, -3, 0],3)),20)),-2)",
    "io_inp": [
      4,
      3,
      -3,
      -2,
      -3,
      0
    ],
    "io_out": [
      -5,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(drop(input,3)),20)),-2)"
  },
  {
    "input": "input : list = [-1, -4, 0, 4, 0]\noutput : list = [2, 11, -1, -13, -1]",
    "output": "generated_output : list = add_n(mul_n([-1, -4, 0, 4, 0],-3),-1)",
    "io_inp": [
      -1,
      -4,
      0,
      4,
      0
    ],
    "io_out": [
      2,
      11,
      -1,
      -13,
      -1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),-1)"
  },
  {
    "input": "input : list = [5, 2, 5, -4, -5, 4]\noutput : list = [-9, -8, -2, 0, 1, 1]",
    "output": "generated_output : list = add_n(sort_asc([5, 2, 5, -4, -5, 4]),-4)",
    "io_inp": [
      5,
      2,
      5,
      -4,
      -5,
      4
    ],
    "io_out": [
      -9,
      -8,
      -2,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(sort_des([2, 5]))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [3, 1, -3, -1, 4]\noutput : list = [-3, 2]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(add_n(drop([3, 1, -3, -1, 4],3),-2))))",
    "io_inp": [
      3,
      1,
      -3,
      -1,
      4
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(add_n(drop(input,3),-2))))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-10, -7]",
    "output": "generated_output : list = reverse(sub_n(sub_n([-1, -4],2),4))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -10,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,2),4))"
  },
  {
    "input": "input : list = [4, -4, 5, 3, 0]\noutput : list = [-19, -15, -12, -11, -10]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc([4, -4, 5, 3, 0]),2),4),-5),4)",
    "io_inp": [
      4,
      -4,
      5,
      3,
      0
    ],
    "io_out": [
      -19,
      -15,
      -12,
      -11,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc(input),2),4),-5),4)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [12, -4]",
    "output": "generated_output : list = reverse(add_n(mul_n([3, -5],-2),2))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      12,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-2),2))"
  },
  {
    "input": "input : list = [5, 0, -3, -5, 2, -1]\noutput : list = [-25]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take([5, 0, -3, -5, 2, -1],1))),-5)",
    "io_inp": [
      5,
      0,
      -3,
      -5,
      2,
      -1
    ],
    "io_out": [
      -25
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(input,1))),-5)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [9, 7]",
    "output": "generated_output : list = sort_des(sub_n([4, 2],-5))",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-3, 1, 0, -3, -2]\noutput : list = [-3, -3, -2, 0, 1]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(mul_n([-3, 1, 0, -3, -2],1)),27)),48)",
    "io_inp": [
      -3,
      1,
      0,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(mul_n(input,1)),27)),48)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-8, -4]",
    "output": "generated_output : list = sort_asc(mul_n([1, 2],-4))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -8,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [-3, 1]",
    "output": "generated_output : list = add_n([-2, 2],-1)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -3, 2, 3, 3]\noutput : list = [-9]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take([-2, -3, 2, 3, 3],1),-4),3))",
    "io_inp": [
      -2,
      -3,
      2,
      3,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(input,1),-4),3))"
  },
  {
    "input": "input : list = [2, -2, 5, -1, 4, 3]\noutput : list = [6, 2, 9, 3, 8, 7]",
    "output": "generated_output : list = sub_n([2, -2, 5, -1, 4, 3],-4)",
    "io_inp": [
      2,
      -2,
      5,
      -1,
      4,
      3
    ],
    "io_out": [
      6,
      2,
      9,
      3,
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 0, -4, -3]\noutput : list = [1, 2, 4, 5]",
    "output": "generated_output : list = take(take(sub_n(sort_asc([-1, 0, -4, -3]),-5),16),24)",
    "io_inp": [
      -1,
      0,
      -4,
      -3
    ],
    "io_out": [
      1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(input),-5),16),24)"
  },
  {
    "input": "input : list = [-5, 1, -5, -5, 3]\noutput : list = [0, 0, 0, 6, 8]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse([-5, 1, -5, -5, 3]),1),-5),29))",
    "io_inp": [
      -5,
      1,
      -5,
      -5,
      3
    ],
    "io_out": [
      0,
      0,
      0,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse(input),1),-5),29))"
  },
  {
    "input": "input : list = [-4, 2, 5, 2, 0, 2]\noutput : list = [16, 0, -8, -8, -8, -20]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n(sort_des([-4, 2, 5, 2, 0, 2]),-4))),42)",
    "io_inp": [
      -4,
      2,
      5,
      2,
      0,
      2
    ],
    "io_out": [
      16,
      0,
      -8,
      -8,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(sort_des(input),-4))),42)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [5, -10]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(mul_n([3, 0],-5),-5))),5)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(mul_n(input,-5),-5))),5)"
  },
  {
    "input": "input : list = [-2, -5, 5, 2, -4, -5]\noutput : list = [35, 20, 0, -10, -15, -15]",
    "output": "generated_output : list = add_n(add_n(sort_des(mul_n(reverse([-2, -5, 5, 2, -4, -5]),5)),5),5)",
    "io_inp": [
      -2,
      -5,
      5,
      2,
      -4,
      -5
    ],
    "io_out": [
      35,
      20,
      0,
      -10,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(mul_n(reverse(input),5)),5),5)"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [-4, -4, 2]",
    "output": "generated_output : list = sub_n(take(mul_n([-3, -3, 3],1),6),1)",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,1),6),1)"
  },
  {
    "input": "input : list = [-2, 0, 5, 3]\noutput : list = [-7, -9]",
    "output": "generated_output : list = reverse(add_n(take(add_n(take([-2, 0, 5, 3],2),-5),10),-2))",
    "io_inp": [
      -2,
      0,
      5,
      3
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(add_n(take(input,2),-5),10),-2))"
  },
  {
    "input": "input : list = [4, 3, 0, -5, -5]\noutput : list = [-8, -6, 0, 10, 10]",
    "output": "generated_output : list = mul_n([4, 3, 0, -5, -5],-2)",
    "io_inp": [
      4,
      3,
      0,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -6,
      0,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 1, 1, 3, -5]\noutput : list = [15, 9, 9, -3, -9]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(add_n([-3, 1, 1, 3, -5],2),23)),1),3)",
    "io_inp": [
      -3,
      1,
      1,
      3,
      -5
    ],
    "io_out": [
      15,
      9,
      9,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(add_n(input,2),23)),1),3)"
  },
  {
    "input": "input : list = [1, 0, -1, -3, 3]\noutput : list = [5, 4, 3, 1, 7]",
    "output": "generated_output : list = sub_n([1, 0, -1, -3, 3],-4)",
    "io_inp": [
      1,
      0,
      -1,
      -3,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [2, 2, 1, 3, -2, 2]\noutput : list = [-2, -3, -3, -3, -4, -7]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n(sort_des([2, 2, 1, 3, -2, 2]),-1),-4)))",
    "io_inp": [
      2,
      2,
      1,
      3,
      -2,
      2
    ],
    "io_out": [
      -2,
      -3,
      -3,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(sort_des(input),-1),-4)))"
  },
  {
    "input": "input : list = [5, 1, 4, 3, -3]\noutput : list = [-3, 3, 4, 1, 5]",
    "output": "generated_output : list = reverse([5, 1, 4, 3, -3])",
    "io_inp": [
      5,
      1,
      4,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      4,
      1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -2, 4, 4, 3]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(drop([-1, -2, 4, 4, 3],3))",
    "io_inp": [
      -1,
      -2,
      4,
      4,
      3
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [1, -3, 4, 5]\noutput : list = [6, 5, 2, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n(sub_n([1, -3, 4, 5],1),-2),19)))",
    "io_inp": [
      1,
      -3,
      4,
      5
    ],
    "io_out": [
      6,
      5,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(sub_n(input,1),-2),19)))"
  },
  {
    "input": "input : list = [-4, 3, 5, 1]\noutput : list = [-5, -30, -40, -50]",
    "output": "generated_output : list = reverse(sort_asc(take(mul_n(sub_n([-4, 3, 5, 1],-5),-5),9)))",
    "io_inp": [
      -4,
      3,
      5,
      1
    ],
    "io_out": [
      -5,
      -30,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(mul_n(sub_n(input,-5),-5),9)))"
  },
  {
    "input": "input : list = [5, -4, -5, -4]\noutput : list = [8, -1, -1, -2]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_des([5, -4, -5, -4])),-3),-4),-4)",
    "io_inp": [
      5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      8,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_des(sort_des(input)),-3),-4),-4)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-13, 1]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sub_n(reverse([2, -5]),-5),-2)),-1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -13,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sub_n(reverse(input),-5),-2)),-1)"
  },
  {
    "input": "input : list = [2, 1, -1, -4]\noutput : list = [3, 2, 0, -3]",
    "output": "generated_output : list = take(reverse(sort_asc(reverse(add_n([2, 1, -1, -4],1)))),16)",
    "io_inp": [
      2,
      1,
      -1,
      -4
    ],
    "io_out": [
      3,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(reverse(add_n(input,1)))),16)"
  },
  {
    "input": "input : list = [-3, -3, 0, -2]\noutput : list = [0, -8, -12, -12]",
    "output": "generated_output : list = take(sort_des(mul_n([-3, -3, 0, -2],4)),12)",
    "io_inp": [
      -3,
      -3,
      0,
      -2
    ],
    "io_out": [
      0,
      -8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,4)),12)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [28, 28]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sort_des(sub_n([-3, -3],5)),-3),-4))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      28,
      28
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sort_des(sub_n(input,5)),-3),-4))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-3, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([0, -5]),4),3)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -3,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),4),3)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-14, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(sub_n([4, -3],-5),2))),-2)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -14,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(sub_n(input,-5),2))),-2)"
  },
  {
    "input": "input : list = [-2, 4, 1, -3, 1, 3]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(reverse(take(drop(add_n([-2, 4, 1, -3, 1, 3],-2),4),18)))",
    "io_inp": [
      -2,
      4,
      1,
      -3,
      1,
      3
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(drop(add_n(input,-2),4),18)))"
  },
  {
    "input": "input : list = [-5, -5, 4, 1, -4]\noutput : list = [7, 1, -9, -11, -11]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(mul_n([-5, -5, 4, 1, -4],2))),31),1)",
    "io_inp": [
      -5,
      -5,
      4,
      1,
      -4
    ],
    "io_out": [
      7,
      1,
      -9,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(mul_n(input,2))),31),1)"
  },
  {
    "input": "input : list = [5, -1, 2, -1, 1]\noutput : list = [1, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(reverse([5, -1, 2, -1, 1]),4))))",
    "io_inp": [
      5,
      -1,
      2,
      -1,
      1
    ],
    "io_out": [
      1,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(reverse(input),4))))"
  },
  {
    "input": "input : list = [3, -2, 1]\noutput : list = [11, 6, 9]",
    "output": "generated_output : list = sub_n(add_n([3, -2, 1],5),-3)",
    "io_inp": [
      3,
      -2,
      1
    ],
    "io_out": [
      11,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,5),-3)"
  },
  {
    "input": "input : list = [0, 2, -4, 1]\noutput : list = [-6, -3, 0, 12]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_des([0, 2, -4, 1]),-3)))",
    "io_inp": [
      0,
      2,
      -4,
      1
    ],
    "io_out": [
      -6,
      -3,
      0,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_des(input),-3)))"
  },
  {
    "input": "input : list = [5, 0, 2, -2, -1, -4]\noutput : list = [-1, -4, -3, -7, -5, -10]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(sub_n([5, 0, 2, -2, -1, -4],-3),-4)),-2),-1)",
    "io_inp": [
      5,
      0,
      2,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4,
      -3,
      -7,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(sub_n(input,-3),-4)),-2),-1)"
  },
  {
    "input": "input : list = [3, 5, 5, 0, 5, 4]\noutput : list = [4, 5, 0, 5, 5, 3]",
    "output": "generated_output : list = reverse(mul_n([3, 5, 5, 0, 5, 4],1))",
    "io_inp": [
      3,
      5,
      5,
      0,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      0,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-5, 3, 1, 5, 2]\noutput : list = [-1, 2, -2, 0]",
    "output": "generated_output : list = reverse(add_n(drop([-5, 3, 1, 5, 2],1),-3))",
    "io_inp": [
      -5,
      3,
      1,
      5,
      2
    ],
    "io_out": [
      -1,
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(input,1),-3))"
  },
  {
    "input": "input : list = [-2, -2, -1, 1]\noutput : list = [-6, -6, -5, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-2, -2, -1, 1],4)))",
    "io_inp": [
      -2,
      -2,
      -1,
      1
    ],
    "io_out": [
      -6,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,4)))"
  },
  {
    "input": "input : list = [3, -1, 1, -1]\noutput : list = [1, 1, -1, -3]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(mul_n([3, -1, 1, -1],-1)),6)),46)",
    "io_inp": [
      3,
      -1,
      1,
      -1
    ],
    "io_out": [
      1,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(mul_n(input,-1)),6)),46)"
  },
  {
    "input": "input : list = [2, -4, -1, 4, 2, 1]\noutput : list = [8, 2, -2, -4, -4, -8]",
    "output": "generated_output : list = reverse(reverse(sort_des(mul_n(reverse([2, -4, -1, 4, 2, 1]),-2))))",
    "io_inp": [
      2,
      -4,
      -1,
      4,
      2,
      1
    ],
    "io_out": [
      8,
      2,
      -2,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(mul_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [2, -1, 5, 1]\noutput : list = [1, 5, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, 5, 1])",
    "io_inp": [
      2,
      -1,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-3, 5]",
    "output": "generated_output : list = take(mul_n(sort_des([-5, 3]),-1),5)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),-1),5)"
  },
  {
    "input": "input : list = [5, -4, -3, 4]\noutput : list = [-14, -13, -6, -5]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_asc([5, -4, -3, 4]),1)),-4),-5)",
    "io_inp": [
      5,
      -4,
      -3,
      4
    ],
    "io_out": [
      -14,
      -13,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_asc(input),1)),-4),-5)"
  },
  {
    "input": "input : list = [-2, 3, 5, 5]\noutput : list = [2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(mul_n([-2, 3, 5, 5],-1))),20))",
    "io_inp": [
      -2,
      3,
      5,
      5
    ],
    "io_out": [
      2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(mul_n(input,-1))),20))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2, 1, 4]\noutput : list = [-5, -2]",
    "output": "generated_output : list = take([-5, -2, 1, 4],2)",
    "io_inp": [
      -5,
      -2,
      1,
      4
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -4, 3, 1, 4, -5]\noutput : list = [-16, -12, -4, 16, 16, 20]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(reverse([-4, -4, 3, 1, 4, -5]))),14),-4)",
    "io_inp": [
      -4,
      -4,
      3,
      1,
      4,
      -5
    ],
    "io_out": [
      -16,
      -12,
      -4,
      16,
      16,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(reverse(input))),14),-4)"
  },
  {
    "input": "input : list = [-3, 4, 1, 3, -4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = take([-3, 4, 1, 3, -4],2)",
    "io_inp": [
      -3,
      4,
      1,
      3,
      -4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-12, -8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(add_n([0, -1],3),1)),1),-4)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(add_n(input,3),1)),1),-4)"
  },
  {
    "input": "input : list = [4, 1, 5, -3, -3]\noutput : list = [-3, -15, 9, 9]",
    "output": "generated_output : list = reverse(mul_n(reverse(mul_n(drop([4, 1, 5, -3, -3],1),-1)),3))",
    "io_inp": [
      4,
      1,
      5,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -15,
      9,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(mul_n(drop(input,1),-1)),3))"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-6, 6]",
    "output": "generated_output : list = reverse(reverse(mul_n([-3, 3],2)))",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,2)))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sub_n([-3, -3],-2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [-9, -6, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(sub_n([3, -2, -5],3)),5)),4)",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      -9,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(sub_n(input,3)),5)),4)"
  },
  {
    "input": "input : list = [1, 4, 1, 4, 1]\noutput : list = [3, 3, 6]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(drop([1, 4, 1, 4, 1],2)),-1)),1)",
    "io_inp": [
      1,
      4,
      1,
      4,
      1
    ],
    "io_out": [
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(drop(input,2)),-1)),1)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [1, 10]",
    "output": "generated_output : list = sub_n([-4, 5],-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      1,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [0, -4, 4, 4, 0, -3]\noutput : list = [9, 6, -3, -15, -15]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(drop([0, -4, 4, 4, 0, -3],1),-3)),-3))",
    "io_inp": [
      0,
      -4,
      4,
      4,
      0,
      -3
    ],
    "io_out": [
      9,
      6,
      -3,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(drop(input,1),-3)),-3))"
  },
  {
    "input": "input : list = [-5, -2, -5, 2]\noutput : list = [-2, -5, 2]",
    "output": "generated_output : list = drop([-5, -2, -5, 2],1)",
    "io_inp": [
      -5,
      -2,
      -5,
      2
    ],
    "io_out": [
      -2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 3, -3]\noutput : list = [19, 20, 14]",
    "output": "generated_output : list = take(add_n(add_n(add_n(add_n([2, 3, -3],3),5),4),5),31)",
    "io_inp": [
      2,
      3,
      -3
    ],
    "io_out": [
      19,
      20,
      14
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(add_n(add_n(input,3),5),4),5),31)"
  },
  {
    "input": "input : list = [4, 4, 1, 0]\noutput : list = [12, 12, 9, 8]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(reverse([4, 4, 1, 0])),1),4),5)",
    "io_inp": [
      4,
      4,
      1,
      0
    ],
    "io_out": [
      12,
      12,
      9,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(reverse(input)),1),4),5)"
  },
  {
    "input": "input : list = [5, 3, -3, -2, 4, -2]\noutput : list = [-6, -5, -5, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sub_n([5, 3, -3, -2, 4, -2],3))",
    "io_inp": [
      5,
      3,
      -3,
      -2,
      4,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -5,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [-3, -3, 5, 0, 5]\noutput : list = [-3, -3]",
    "output": "generated_output : list = drop(sort_des([-3, -3, 5, 0, 5]),3)",
    "io_inp": [
      -3,
      -3,
      5,
      0,
      5
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = drop(sort_des(input),3)"
  },
  {
    "input": "input : list = [1, 0, -4, -5, 1]\noutput : list = [6, 6, 5, 1, 0]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc(sort_des([1, 0, -4, -5, 1])),5)),40)",
    "io_inp": [
      1,
      0,
      -4,
      -5,
      1
    ],
    "io_out": [
      6,
      6,
      5,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(sort_des(input)),5)),40)"
  },
  {
    "input": "input : list = [4, -1, 0]\noutput : list = [25, 20, 45]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(sub_n([4, -1, 0],-3),2),5)),36)",
    "io_inp": [
      4,
      -1,
      0
    ],
    "io_out": [
      25,
      20,
      45
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(sub_n(input,-3),2),5)),36)"
  },
  {
    "input": "input : list = [-1, 1, 3]\noutput : list = [2, -2, -6]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc([-1, 1, 3]))),2),4)",
    "io_inp": [
      -1,
      1,
      3
    ],
    "io_out": [
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc(input))),2),4)"
  },
  {
    "input": "input : list = [4, 4, 2, 5, 4]\noutput : list = [-28, -23, -23, -23, -13]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(mul_n(reverse([4, 4, 2, 5, 4]),-5),1)),-3)",
    "io_inp": [
      4,
      4,
      2,
      5,
      4
    ],
    "io_out": [
      -28,
      -23,
      -23,
      -23,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(mul_n(reverse(input),-5),1)),-3)"
  },
  {
    "input": "input : list = [-5, -3, 4, 5]\noutput : list = [8, 2, -19, -22]",
    "output": "generated_output : list = add_n(take(add_n(take(mul_n([-5, -3, 4, 5],-3),14),-5),26),-2)",
    "io_inp": [
      -5,
      -3,
      4,
      5
    ],
    "io_out": [
      8,
      2,
      -19,
      -22
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(mul_n(input,-3),14),-5),26),-2)"
  },
  {
    "input": "input : list = [2, 4, 5, -5, 2, 0]\noutput : list = [5, -5, 2, 0]",
    "output": "generated_output : list = take(drop([2, 4, 5, -5, 2, 0],2),12)",
    "io_inp": [
      2,
      4,
      5,
      -5,
      2,
      0
    ],
    "io_out": [
      5,
      -5,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(drop(input,2),12)"
  },
  {
    "input": "input : list = [2, 0, -5, -2, 4]\noutput : list = [4, 2, -3, 0, 6]",
    "output": "generated_output : list = add_n([2, 0, -5, -2, 4],2)",
    "io_inp": [
      2,
      0,
      -5,
      -2,
      4
    ],
    "io_out": [
      4,
      2,
      -3,
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 3, 1, 4, 4]\noutput : list = [5, 15, 20, 20, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(sort_des([4, 3, 1, 4, 4]),-4),-4)),5)",
    "io_inp": [
      4,
      3,
      1,
      4,
      4
    ],
    "io_out": [
      5,
      15,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(sort_des(input),-4),-4)),5)"
  },
  {
    "input": "input : list = [0, 4, 0, 3, -4]\noutput : list = [-3, -4, -7, -7, -11]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(sub_n([0, 4, 0, 3, -4],5)),2)))",
    "io_inp": [
      0,
      4,
      0,
      3,
      -4
    ],
    "io_out": [
      -3,
      -4,
      -7,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(sub_n(input,5)),2)))"
  },
  {
    "input": "input : list = [-1, -3, 4, 5]\noutput : list = [10, 0, -25, -30]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n([-1, -3, 4, 5],-1)),-2),-5)",
    "io_inp": [
      -1,
      -3,
      4,
      5
    ],
    "io_out": [
      10,
      0,
      -25,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(input,-1)),-2),-5)"
  },
  {
    "input": "input : list = [-2, -1, 5, 2]\noutput : list = [-2, -1, 2, 5]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des([-2, -1, 5, 2]),1),-1))",
    "io_inp": [
      -2,
      -1,
      5,
      2
    ],
    "io_out": [
      -2,
      -1,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(input),1),-1))"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(reverse([0, 2]),1))))",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [-4, 2, -5, 0, 2]\noutput : list = [8, 8, 0, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n([-4, 2, -5, 0, 2],4))",
    "io_inp": [
      -4,
      2,
      -5,
      0,
      2
    ],
    "io_out": [
      8,
      8,
      0,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [-3, -4, 1]\noutput : list = [-6]",
    "output": "generated_output : list = reverse(sub_n(reverse(take([-3, -4, 1],1)),3))",
    "io_inp": [
      -3,
      -4,
      1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(input,1)),3))"
  },
  {
    "input": "input : list = [1, 2, 5, -5]\noutput : list = [6, 3, -6, 24]",
    "output": "generated_output : list = reverse(take(mul_n(reverse(add_n([1, 2, 5, -5],-3)),-3),39))",
    "io_inp": [
      1,
      2,
      5,
      -5
    ],
    "io_out": [
      6,
      3,
      -6,
      24
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(add_n(input,-3)),-3),39))"
  },
  {
    "input": "input : list = [-2, -2, -2, 4, -1, 3]\noutput : list = [4, 3, -1, -2, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(take(reverse([-2, -2, -2, 4, -1, 3]),17)))",
    "io_inp": [
      -2,
      -2,
      -2,
      4,
      -1,
      3
    ],
    "io_out": [
      4,
      3,
      -1,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(reverse(input),17)))"
  },
  {
    "input": "input : list = [-4, -2, 4, 3, 3]\noutput : list = [6, 6, 8, -4, -8]",
    "output": "generated_output : list = mul_n(reverse([-4, -2, 4, 3, 3]),2)",
    "io_inp": [
      -4,
      -2,
      4,
      3,
      3
    ],
    "io_out": [
      6,
      6,
      8,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-2, -5, 0, 2]\noutput : list = [7, 5, 3, 0]",
    "output": "generated_output : list = sub_n(sort_des(reverse(take(sort_des([-2, -5, 0, 2]),18))),-5)",
    "io_inp": [
      -2,
      -5,
      0,
      2
    ],
    "io_out": [
      7,
      5,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(take(sort_des(input),18))),-5)"
  },
  {
    "input": "input : list = [-1, 5, 3, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(sub_n(reverse(sort_des([-1, 5, 3, -2])),-1),23),1)",
    "io_inp": [
      -1,
      5,
      3,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(sort_des(input)),-1),23),1)"
  },
  {
    "input": "input : list = [-4, 1, 1, -5]\noutput : list = [-1, 4, 4, -2]",
    "output": "generated_output : list = take(add_n(mul_n([-4, 1, 1, -5],1),3),13)",
    "io_inp": [
      -4,
      1,
      1,
      -5
    ],
    "io_out": [
      -1,
      4,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,1),3),13)"
  },
  {
    "input": "input : list = [0, -1, -3, 5, 4]\noutput : list = [3, 2, -2, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n([0, -1, -3, 5, 4],1),3)))",
    "io_inp": [
      0,
      -1,
      -3,
      5,
      4
    ],
    "io_out": [
      3,
      2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(input,1),3)))"
  },
  {
    "input": "input : list = [-4, 2, -3, 3, 0, -4]\noutput : list = [9, 6, 0, -9, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n([-4, 2, -3, 3, 0, -4],3))",
    "io_inp": [
      -4,
      2,
      -3,
      3,
      0,
      -4
    ],
    "io_out": [
      9,
      6,
      0,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sub_n(sub_n([-3, 4],-3),4)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),4)"
  },
  {
    "input": "input : list = [2, 0, 5, 1, 1]\noutput : list = [-1, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(drop([2, 0, 5, 1, 1],3),2)))",
    "io_inp": [
      2,
      0,
      5,
      1,
      1
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(drop(input,3),2)))"
  },
  {
    "input": "input : list = [3, -2, 1, 3, -4]\noutput : list = [0, 0, -8, -20, -28]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc([3, -2, 1, 3, -4]),-3))),4)",
    "io_inp": [
      3,
      -2,
      1,
      3,
      -4
    ],
    "io_out": [
      0,
      0,
      -8,
      -20,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(sort_asc(input),-3))),4)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-9]",
    "output": "generated_output : list = reverse(drop(take(mul_n(sub_n([-2, -2],1),3),17),1))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = reverse(drop(take(mul_n(sub_n(input,1),3),17),1))"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take([0, 0, 5],1))",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [4, -4, 1]\noutput : list = [12, -8, -20]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(reverse([4, -4, 1]),13),-1),-4))",
    "io_inp": [
      4,
      -4,
      1
    ],
    "io_out": [
      12,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(reverse(input),13),-1),-4))"
  },
  {
    "input": "input : list = [-3, -2, 3, -3, -2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(take(take([-3, -2, 3, -3, -2],1),23))))",
    "io_inp": [
      -3,
      -2,
      3,
      -3,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(take(take(input,1),23))))"
  },
  {
    "input": "input : list = [0, -1, 5, 4]\noutput : list = [-17, -14, -2, 1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sort_des(mul_n([0, -1, 5, 4],-3))),-2))",
    "io_inp": [
      0,
      -1,
      5,
      4
    ],
    "io_out": [
      -17,
      -14,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sort_des(mul_n(input,-3))),-2))"
  },
  {
    "input": "input : list = [0, 2, -3, 4]\noutput : list = [0, 3, 5, 7]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(sub_n([0, 2, -3, 4],1)),13),-4))",
    "io_inp": [
      0,
      2,
      -3,
      4
    ],
    "io_out": [
      0,
      3,
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(sub_n(input,1)),13),-4))"
  },
  {
    "input": "input : list = [0, -5, -4]\noutput : list = [-5, -4, 0]",
    "output": "generated_output : list = sort_asc([0, -5, -4])",
    "io_inp": [
      0,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -5, -2, -4]\noutput : list = [0, -36, -24, -32]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(add_n(add_n([4, -5, -2, -4],-2),-4),2),-4),2)",
    "io_inp": [
      4,
      -5,
      -2,
      -4
    ],
    "io_out": [
      0,
      -36,
      -24,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(add_n(add_n(input,-2),-4),2),-4),2)"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [-43]",
    "output": "generated_output : list = sort_des(add_n(mul_n(mul_n(take([4, 4, 5],1),5),-2),-3))",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      -43
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(mul_n(take(input,1),5),-2),-3))"
  },
  {
    "input": "input : list = [5, -3, -1, 0]\noutput : list = [-1, 0]",
    "output": "generated_output : list = drop([5, -3, -1, 0],2)",
    "io_inp": [
      5,
      -3,
      -1,
      0
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(sort_des(reverse(add_n(take([3, 3, 4],1),-1))),-5)",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(add_n(take(input,1),-1))),-5)"
  },
  {
    "input": "input : list = [1, -4, -2, -2]\noutput : list = [-4, -2, -2, 1]",
    "output": "generated_output : list = sort_asc([1, -4, -2, -2])",
    "io_inp": [
      1,
      -4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 4, -2, -4, 2]\noutput : list = [6, 8, 2, 0, 6]",
    "output": "generated_output : list = take(take(add_n(mul_n(sub_n([2, 4, -2, -4, 2],-5),1),-1),28),13)",
    "io_inp": [
      2,
      4,
      -2,
      -4,
      2
    ],
    "io_out": [
      6,
      8,
      2,
      0,
      6
    ],
    "output_masked": "generated_output : list = take(take(add_n(mul_n(sub_n(input,-5),1),-1),28),13)"
  },
  {
    "input": "input : list = [4, 2, -1, 3, -1]\noutput : list = [1, -1, -4, 0, -4]",
    "output": "generated_output : list = sub_n([4, 2, -1, 3, -1],3)",
    "io_inp": [
      4,
      2,
      -1,
      3,
      -1
    ],
    "io_out": [
      1,
      -1,
      -4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n([1, 1],3),-3),-2))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(input,3),-3),-2))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [8, -20]",
    "output": "generated_output : list = mul_n([-2, 5],-4)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, 4, -5, -2]\noutput : list = [-14, -11, -9, -5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(reverse(reverse([0, 4, -5, -2]))),5),4)",
    "io_inp": [
      0,
      4,
      -5,
      -2
    ],
    "io_out": [
      -14,
      -11,
      -9,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(reverse(reverse(input))),5),4)"
  },
  {
    "input": "input : list = [-1, 5, -2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(drop([-1, 5, -2, 5],2))",
    "io_inp": [
      -1,
      5,
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 3, -2, 0, -1, 5]\noutput : list = [-10, 0, -10, -6, -8, 4]",
    "output": "generated_output : list = sub_n(add_n(take(take(mul_n([-2, 3, -2, 0, -1, 5],2),14),24),-1),5)",
    "io_inp": [
      -2,
      3,
      -2,
      0,
      -1,
      5
    ],
    "io_out": [
      -10,
      0,
      -10,
      -6,
      -8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(mul_n(input,2),14),24),-1),5)"
  },
  {
    "input": "input : list = [-4, -3, 3]\noutput : list = [59, 44, -46]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(mul_n([-4, -3, 3],5),-3),-1),27))",
    "io_inp": [
      -4,
      -3,
      3
    ],
    "io_out": [
      59,
      44,
      -46
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(mul_n(input,5),-3),-1),27))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sub_n(add_n([4, 0],-4),2)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-4),2)"
  },
  {
    "input": "input : list = [-3, -1, -4, 4]\noutput : list = [5, 6, 8, 13]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(take(sub_n([-3, -1, -4, 4],-5),19))),4)",
    "io_inp": [
      -3,
      -1,
      -4,
      4
    ],
    "io_out": [
      5,
      6,
      8,
      13
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(take(sub_n(input,-5),19))),4)"
  },
  {
    "input": "input : list = [2, -5, 2, -2, -4, -2]\noutput : list = [5, -2, 5, 1, -1, 1]",
    "output": "generated_output : list = take(add_n([2, -5, 2, -2, -4, -2],3),17)",
    "io_inp": [
      2,
      -5,
      2,
      -2,
      -4,
      -2
    ],
    "io_out": [
      5,
      -2,
      5,
      1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,3),17)"
  },
  {
    "input": "input : list = [0, -4, -5]\noutput : list = [0]",
    "output": "generated_output : list = take([0, -4, -5],1)",
    "io_inp": [
      0,
      -4,
      -5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [-6, -1, -6]",
    "output": "generated_output : list = sub_n([-3, 2, -3],3)",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      -6,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [1, -5, -1, -4, -5, 1]\noutput : list = [26, 26, 21, 6, -4, -4]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(sort_des([1, -5, -1, -4, -5, 1]),13),-5),-1))",
    "io_inp": [
      1,
      -5,
      -1,
      -4,
      -5,
      1
    ],
    "io_out": [
      26,
      26,
      21,
      6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(sort_des(input),13),-5),-1))"
  },
  {
    "input": "input : list = [-5, 5, 1, 3]\noutput : list = [20, 12, 4, -20]",
    "output": "generated_output : list = mul_n(sort_des([-5, 5, 1, 3]),4)",
    "io_inp": [
      -5,
      5,
      1,
      3
    ],
    "io_out": [
      20,
      12,
      4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [5, 0, -5, 3]\noutput : list = [10, -6]",
    "output": "generated_output : list = sort_des(mul_n(take(drop([5, 0, -5, 3],2),7),-2))",
    "io_inp": [
      5,
      0,
      -5,
      3
    ],
    "io_out": [
      10,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(drop(input,2),7),-2))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-7, -3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse([2, -2]),5))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(input),5))"
  },
  {
    "input": "input : list = [5, 5, -2, 1, 3]\noutput : list = [4, -2, -6, -10, -10]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(mul_n([5, 5, -2, 1, 3],-1),5),-2),-1))",
    "io_inp": [
      5,
      5,
      -2,
      1,
      3
    ],
    "io_out": [
      4,
      -2,
      -6,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(mul_n(input,-1),5),-2),-1))"
  },
  {
    "input": "input : list = [4, 2, 4]\noutput : list = [10, 8]",
    "output": "generated_output : list = take(sub_n(sub_n(reverse(drop([4, 2, 4],1)),-1),-5),6)",
    "io_inp": [
      4,
      2,
      4
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(reverse(drop(input,1)),-1),-5),6)"
  },
  {
    "input": "input : list = [-3, -4, -3]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = sort_des(add_n([-3, -4, -3],3))",
    "io_inp": [
      -3,
      -4,
      -3
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [3, 2, -4, 1]\noutput : list = [-2, 3, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc(drop([3, 2, -4, 1],1)))),-2)",
    "io_inp": [
      3,
      2,
      -4,
      1
    ],
    "io_out": [
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(drop(input,1)))),-2)"
  },
  {
    "input": "input : list = [5, -2, 0, -2]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(reverse(take(drop(sub_n([5, -2, 0, -2],-2),3),9)))",
    "io_inp": [
      5,
      -2,
      0,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(drop(sub_n(input,-2),3),9)))"
  },
  {
    "input": "input : list = [-1, 5, -5]\noutput : list = [-3]",
    "output": "generated_output : list = take(sub_n(reverse(take(mul_n([-1, 5, -5],1),1)),2),44)",
    "io_inp": [
      -1,
      5,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(mul_n(input,1),1)),2),44)"
  },
  {
    "input": "input : list = [-2, 3, 4, 0]\noutput : list = [3, 4, 0]",
    "output": "generated_output : list = drop([-2, 3, 4, 0],1)",
    "io_inp": [
      -2,
      3,
      4,
      0
    ],
    "io_out": [
      3,
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [-14, -4]",
    "output": "generated_output : list = reverse(add_n(sub_n(mul_n(drop([5, 0, 5],1),-2),3),-1))",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      -14,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(mul_n(drop(input,1),-2),3),-1))"
  },
  {
    "input": "input : list = [-3, -1, -3, 2]\noutput : list = [5, 7, 5, 10]",
    "output": "generated_output : list = take(reverse(add_n(reverse(add_n([-3, -1, -3, 2],3)),5)),36)",
    "io_inp": [
      -3,
      -1,
      -3,
      2
    ],
    "io_out": [
      5,
      7,
      5,
      10
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(add_n(input,3)),5)),36)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [2, -1, -5]",
    "output": "generated_output : list = sort_des([-5, -1, 2])",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, 1, 1, -5]\noutput : list = [1, 1, 1, -1, -5]",
    "output": "generated_output : list = sort_des([1, -1, 1, 1, -5])",
    "io_inp": [
      1,
      -1,
      1,
      1,
      -5
    ],
    "io_out": [
      1,
      1,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3, -1, 2]\noutput : list = [40, 64]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(take([-5, -3, -1, 2],2)),4),-3),4)",
    "io_inp": [
      -5,
      -3,
      -1,
      2
    ],
    "io_out": [
      40,
      64
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(take(input,2)),4),-3),4)"
  },
  {
    "input": "input : list = [5, 5, -2, -4, 5, -5]\noutput : list = [-5, -5, 2, 4, -5, 5]",
    "output": "generated_output : list = mul_n(mul_n([5, 5, -2, -4, 5, -5],-1),1)",
    "io_inp": [
      5,
      5,
      -2,
      -4,
      5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      2,
      4,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [1, 7]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sort_asc(add_n([4, -2],-3)),5)),1)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sort_asc(add_n(input,-3)),5)),1)"
  },
  {
    "input": "input : list = [2, -3, -3, 0]\noutput : list = [0, 60, 60, 24]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(reverse([2, -3, -3, 0]),-2),-4)),3)",
    "io_inp": [
      2,
      -3,
      -3,
      0
    ],
    "io_out": [
      0,
      60,
      60,
      24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(reverse(input),-2),-4)),3)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [-6, 1, 2]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(sort_asc([-3, 5, 4]),1),-3)),20)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      -6,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(sort_asc(input),1),-3)),20)"
  },
  {
    "input": "input : list = [1, -3, 2, 3, -3]\noutput : list = [2, -2, 3, 4, -2]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n(reverse([1, -3, 2, 3, -3]),3)),-2),-4)",
    "io_inp": [
      1,
      -3,
      2,
      3,
      -3
    ],
    "io_out": [
      2,
      -2,
      3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(reverse(input),3)),-2),-4)"
  },
  {
    "input": "input : list = [-4, 1, -4, 1, -5]\noutput : list = [-10, -10, -11]",
    "output": "generated_output : list = add_n(drop(sort_des(sort_des(sub_n([-4, 1, -4, 1, -5],2))),2),-4)",
    "io_inp": [
      -4,
      1,
      -4,
      1,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(drop(sort_des(sort_des(sub_n(input,2))),2),-4)"
  },
  {
    "input": "input : list = [-5, 5, -5, 0, -5]\noutput : list = [-5, 5, -5, 0, -5]",
    "output": "generated_output : list = reverse(reverse([-5, 5, -5, 0, -5]))",
    "io_inp": [
      -5,
      5,
      -5,
      0,
      -5
    ],
    "io_out": [
      -5,
      5,
      -5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-1, -5, 4, -2, -1, 1]\noutput : list = [3, 0, -2, -2, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse([-1, -5, 4, -2, -1, 1])),1)",
    "io_inp": [
      -1,
      -5,
      4,
      -2,
      -1,
      1
    ],
    "io_out": [
      3,
      0,
      -2,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [3, 4, 5, 0, -1, 0]\noutput : list = [19, 24, 29, 4, -1, 4]",
    "output": "generated_output : list = sub_n(mul_n([3, 4, 5, 0, -1, 0],5),-4)",
    "io_inp": [
      3,
      4,
      5,
      0,
      -1,
      0
    ],
    "io_out": [
      19,
      24,
      29,
      4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-4)"
  },
  {
    "input": "input : list = [1, 0, 4]\noutput : list = [-9, -4, -24]",
    "output": "generated_output : list = add_n(mul_n([1, 0, 4],-5),-4)",
    "io_inp": [
      1,
      0,
      4
    ],
    "io_out": [
      -9,
      -4,
      -24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-4)"
  },
  {
    "input": "input : list = [-3, -3, -5, 2, -2]\noutput : list = [-7, -3, -2, -2, 0]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n([-3, -3, -5, 2, -2],-5)),-1),30)",
    "io_inp": [
      -3,
      -3,
      -5,
      2,
      -2
    ],
    "io_out": [
      -7,
      -3,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(input,-5)),-1),30)"
  },
  {
    "input": "input : list = [5, 4, 5, -2, -5, -3]\noutput : list = [9, 9, 8, 2, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(reverse([5, 4, 5, -2, -5, -3]),-5))),1)",
    "io_inp": [
      5,
      4,
      5,
      -2,
      -5,
      -3
    ],
    "io_out": [
      9,
      9,
      8,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(reverse(input),-5))),1)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [-7, -3, -1]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(sub_n([3, 5, -1],3)),-1),-1),3)",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(sub_n(input,3)),-1),-1),3)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(reverse([-4, 5]),-1))))",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-5, 0, 3, -1, 4]\noutput : list = [25, 50]",
    "output": "generated_output : list = take(mul_n(add_n(drop(sub_n([-5, 0, 3, -1, 4],-3),3),3),5),10)",
    "io_inp": [
      -5,
      0,
      3,
      -1,
      4
    ],
    "io_out": [
      25,
      50
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(drop(sub_n(input,-3),3),3),5),10)"
  },
  {
    "input": "input : list = [-2, -3, -5, 3, -4]\noutput : list = [-40, -5, 0]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_des(drop([-2, -3, -5, 3, -4],2)),-1),4),-5)",
    "io_inp": [
      -2,
      -3,
      -5,
      3,
      -4
    ],
    "io_out": [
      -40,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_des(drop(input,2)),-1),4),-5)"
  },
  {
    "input": "input : list = [3, 5, -3, -4, 4, -2]\noutput : list = [1, 3, -5, -6, 2, -4]",
    "output": "generated_output : list = reverse(add_n(take(reverse(sub_n([3, 5, -3, -4, 4, -2],5)),11),3))",
    "io_inp": [
      3,
      5,
      -3,
      -4,
      4,
      -2
    ],
    "io_out": [
      1,
      3,
      -5,
      -6,
      2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(sub_n(input,5)),11),3))"
  },
  {
    "input": "input : list = [-4, 1, 0, -4]\noutput : list = [-4, -4, 0, 1]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc([-4, 1, 0, -4]))),40)",
    "io_inp": [
      -4,
      1,
      0,
      -4
    ],
    "io_out": [
      -4,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(input))),40)"
  },
  {
    "input": "input : list = [1, 3, 0, 2, 0]\noutput : list = [4, 2, 2]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(drop([1, 3, 0, 2, 0],2),-4),13),2))",
    "io_inp": [
      1,
      3,
      0,
      2,
      0
    ],
    "io_out": [
      4,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(drop(input,2),-4),13),2))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [2, 6]",
    "output": "generated_output : list = sub_n(take(reverse([1, -3]),9),-5)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),9),-5)"
  },
  {
    "input": "input : list = [2, -4, 1, 5]\noutput : list = [-30, -15, -10, 15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(reverse(sub_n([2, -4, 1, 5],-1)))),-5)",
    "io_inp": [
      2,
      -4,
      1,
      5
    ],
    "io_out": [
      -30,
      -15,
      -10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(reverse(sub_n(input,-1)))),-5)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n([0, -1],-4),1),6))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(input,-4),1),6))"
  },
  {
    "input": "input : list = [1, -5, -1, 0]\noutput : list = [16]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(take(take([1, -5, -1, 0],1),13),-4),-4))",
    "io_inp": [
      1,
      -5,
      -1,
      0
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(take(take(input,1),13),-4),-4))"
  },
  {
    "input": "input : list = [3, 0, 5]\noutput : list = [-2, 3]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(drop([3, 0, 5],1),-2),-1)),5)",
    "io_inp": [
      3,
      0,
      5
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(drop(input,1),-2),-1)),5)"
  },
  {
    "input": "input : list = [-1, -4, -3, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc(add_n([-1, -4, -3, 5],2)),1)",
    "io_inp": [
      -1,
      -4,
      -3,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,2)),1)"
  },
  {
    "input": "input : list = [4, -1, -5, 4]\noutput : list = [1, 1, -4, -8]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sub_n(sort_des([4, -1, -5, 4]),3)),-4),-4)",
    "io_inp": [
      4,
      -1,
      -5,
      4
    ],
    "io_out": [
      1,
      1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sub_n(sort_des(input),3)),-4),-4)"
  },
  {
    "input": "input : list = [-4, -2, 2, 1, -3, -5]\noutput : list = [1, 0, -3, -4, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sort_des([-4, -2, 2, 1, -3, -5]))),1))",
    "io_inp": [
      -4,
      -2,
      2,
      1,
      -3,
      -5
    ],
    "io_out": [
      1,
      0,
      -3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-3, -4, -4, -2]\noutput : list = [-8, -8, -7, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(reverse(reverse([-3, -4, -4, -2])),-4)))",
    "io_inp": [
      -3,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-5, 0, -5, 0, -3, 1]\noutput : list = [-5, -5, -3, 0, 0, 1]",
    "output": "generated_output : list = sort_asc([-5, 0, -5, 0, -3, 1])",
    "io_inp": [
      -5,
      0,
      -5,
      0,
      -3,
      1
    ],
    "io_out": [
      -5,
      -5,
      -3,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [12, 8]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(add_n([3, 1],5),2)),-4))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      12,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(add_n(input,5),2)),-4))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [19, 23]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des([-3, -4]),-4),-5)),-2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      19,
      23
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des(input),-4),-5)),-2)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [13, 10]",
    "output": "generated_output : list = sort_des(sort_des(add_n(add_n(sort_asc([2, 5]),4),4)))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      13,
      10
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(add_n(sort_asc(input),4),4)))"
  },
  {
    "input": "input : list = [-5, 0, -3, -5, -3]\noutput : list = [-40, -40, -30, -30, -15]",
    "output": "generated_output : list = mul_n(add_n(take(sort_asc(sort_asc([-5, 0, -3, -5, -3])),27),-3),5)",
    "io_inp": [
      -5,
      0,
      -3,
      -5,
      -3
    ],
    "io_out": [
      -40,
      -40,
      -30,
      -30,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_asc(sort_asc(input)),27),-3),5)"
  },
  {
    "input": "input : list = [2, -1, 3, -1, 4, -5]\noutput : list = [-3, 1, 1, 4, 5, 6]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sub_n(sort_asc([2, -1, 3, -1, 4, -5]),2),4)))",
    "io_inp": [
      2,
      -1,
      3,
      -1,
      4,
      -5
    ],
    "io_out": [
      -3,
      1,
      1,
      4,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sub_n(sort_asc(input),2),4)))"
  },
  {
    "input": "input : list = [1, 1, 3]\noutput : list = [7, 9]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(sub_n([1, 1, 3],-2)),4),2))",
    "io_inp": [
      1,
      1,
      3
    ],
    "io_out": [
      7,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(sub_n(input,-2)),4),2))"
  },
  {
    "input": "input : list = [5, -4, 5, 4, 2, -1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(drop([5, -4, 5, 4, 2, -1],4),1))))",
    "io_inp": [
      5,
      -4,
      5,
      4,
      2,
      -1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(drop(input,4),1))))"
  },
  {
    "input": "input : list = [-5, 1, 5, -4, -3, -2]\noutput : list = [0, -30, -50, -5, -10, -15]",
    "output": "generated_output : list = mul_n(add_n([-5, 1, 5, -4, -3, -2],5),-5)",
    "io_inp": [
      -5,
      1,
      5,
      -4,
      -3,
      -2
    ],
    "io_out": [
      0,
      -30,
      -50,
      -5,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,5),-5)"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [-4, -1, 5]",
    "output": "generated_output : list = sort_asc([-1, -4, 5])",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2, 3, 1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(take(reverse(mul_n(drop([3, 2, 3, 1],2),-1)),25),27)",
    "io_inp": [
      3,
      2,
      3,
      1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(drop(input,2),-1)),25),27)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(add_n([5, 3],-3),-1)),34))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(add_n(input,-3),-1)),34))"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [-2, 5, 4]",
    "output": "generated_output : list = reverse([4, 5, -2])",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, 2]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(take([-5, 3, 2],1),5)),-5),-2)",
    "io_inp": [
      -5,
      3,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(take(input,1),5)),-5),-2)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [5, -2, -5]",
    "output": "generated_output : list = add_n(take(sub_n(sort_des(reverse([5, -5, -2])),3),28),3)",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      5,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_des(reverse(input)),3),28),3)"
  },
  {
    "input": "input : list = [1, -3, -5]\noutput : list = [-10, -8, -4]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(add_n([1, -3, -5],2),2),3)),-5)",
    "io_inp": [
      1,
      -3,
      -5
    ],
    "io_out": [
      -10,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(add_n(input,2),2),3)),-5)"
  },
  {
    "input": "input : list = [3, -3, -2, 1]\noutput : list = [-15, -11, 1, 9]",
    "output": "generated_output : list = add_n(sort_asc(add_n(mul_n(reverse([3, -3, -2, 1]),4),-4)),1)",
    "io_inp": [
      3,
      -3,
      -2,
      1
    ],
    "io_out": [
      -15,
      -11,
      1,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(mul_n(reverse(input),4),-4)),1)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(sort_asc([-3, -5]))),3))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [3, -5, 1, -1, 3, 2]\noutput : list = [-2, -2, -3, -4, -6, -10]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_des(add_n([3, -5, 1, -1, 3, 2],-5)))),45)",
    "io_inp": [
      3,
      -5,
      1,
      -1,
      3,
      2
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -4,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_des(add_n(input,-5)))),45)"
  },
  {
    "input": "input : list = [-2, 5, -3, 2, 2]\noutput : list = [-3, -2, 2, 2, 5]",
    "output": "generated_output : list = sort_asc([-2, 5, -3, 2, 2])",
    "io_inp": [
      -2,
      5,
      -3,
      2,
      2
    ],
    "io_out": [
      -3,
      -2,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [-2, 4, 5]",
    "output": "generated_output : list = sort_asc([-2, 5, 4])",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -2, 0, 1, -1]\noutput : list = [2, 0, -1, -2, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(mul_n(reverse([3, -2, 0, 1, -1]),1)),1))",
    "io_inp": [
      3,
      -2,
      0,
      1,
      -1
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(mul_n(reverse(input),1)),1))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n([-5, 0],-4),3)),-5))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(add_n(sub_n(input,-4),3)),-5))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [16, 0]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_asc([-5, -1]),-1),-4),22)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_asc(input),-1),-4),22)"
  },
  {
    "input": "input : list = [5, -2, -2, 5]\noutput : list = [6, -1, -1, 6]",
    "output": "generated_output : list = add_n([5, -2, -2, 5],1)",
    "io_inp": [
      5,
      -2,
      -2,
      5
    ],
    "io_out": [
      6,
      -1,
      -1,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-5, -4, -1, 2, 3]\noutput : list = [-75, -60, -15, 30, 45]",
    "output": "generated_output : list = sort_asc(mul_n(take(take(mul_n([-5, -4, -1, 2, 3],3),9),15),5))",
    "io_inp": [
      -5,
      -4,
      -1,
      2,
      3
    ],
    "io_out": [
      -75,
      -60,
      -15,
      30,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(take(mul_n(input,3),9),15),5))"
  },
  {
    "input": "input : list = [-4, 1, -4, -5, 1]\noutput : list = [-7, -2, -7, -8, -2]",
    "output": "generated_output : list = take(mul_n(reverse(add_n(reverse([-4, 1, -4, -5, 1]),-3)),1),20)",
    "io_inp": [
      -4,
      1,
      -4,
      -5,
      1
    ],
    "io_out": [
      -7,
      -2,
      -7,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(add_n(reverse(input),-3)),1),20)"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [-16, 12]",
    "output": "generated_output : list = sort_asc(mul_n(drop([5, -4, 3],1),4))",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      -16,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,1),4))"
  },
  {
    "input": "input : list = [-1, 2, -3]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(reverse(add_n(take(take([-1, 2, -3],1),3),-2)))",
    "io_inp": [
      -1,
      2,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(take(input,1),3),-2)))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-7, -4]",
    "output": "generated_output : list = sub_n([-3, 0],4)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [-5, -3, -1]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_asc([-1, 3, 1]),-1),1)),3)",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_asc(input),-1),1)),3)"
  },
  {
    "input": "input : list = [-3, 3, -2, -3, 3]\noutput : list = [-16, -16, -13, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(mul_n(reverse([-3, 3, -2, -3, 3]),3),-3)),4)",
    "io_inp": [
      -3,
      3,
      -2,
      -3,
      3
    ],
    "io_out": [
      -16,
      -16,
      -13,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(mul_n(reverse(input),3),-3)),4)"
  },
  {
    "input": "input : list = [3, -1, 5, -1, 2, -4]\noutput : list = [-5, 1, -5, -1]",
    "output": "generated_output : list = reverse(sub_n(take(sub_n(take([3, -1, 5, -1, 2, -4],4),5),21),-1))",
    "io_inp": [
      3,
      -1,
      5,
      -1,
      2,
      -4
    ],
    "io_out": [
      -5,
      1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sub_n(take(input,4),5),21),-1))"
  },
  {
    "input": "input : list = [-1, 4, 4, 4]\noutput : list = [13, 13, 13, 8]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(sort_des([-1, 4, 4, 4]),4))),5)",
    "io_inp": [
      -1,
      4,
      4,
      4
    ],
    "io_out": [
      13,
      13,
      13,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(sort_des(input),4))),5)"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [-1, -1, 2]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(sort_asc([-5, -2, -5]),12))),-4)",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(sort_asc(input),12))),-4)"
  },
  {
    "input": "input : list = [0, 4, -4, -5, -5, 0]\noutput : list = [5, 9, 1, 0, 0, 5]",
    "output": "generated_output : list = reverse(reverse(sub_n([0, 4, -4, -5, -5, 0],-5)))",
    "io_inp": [
      0,
      4,
      -4,
      -5,
      -5,
      0
    ],
    "io_out": [
      5,
      9,
      1,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,-5)))"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [4, -2]",
    "output": "generated_output : list = sub_n(add_n(add_n([2, -4],-2),-1),-5)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,-2),-1),-5)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-1, 7]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(sort_des([-5, 3]),-4),2)),1)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(sort_des(input),-4),2)),1)"
  },
  {
    "input": "input : list = [-4, -4, 5]\noutput : list = [8, -1, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(sub_n([-4, -4, 5],-3)),17))",
    "io_inp": [
      -4,
      -4,
      5
    ],
    "io_out": [
      8,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sub_n(input,-3)),17))"
  },
  {
    "input": "input : list = [3, 3, 2, -4]\noutput : list = [12, 12, 8, -16]",
    "output": "generated_output : list = reverse(mul_n(take(take(reverse([3, 3, 2, -4]),7),14),4))",
    "io_inp": [
      3,
      3,
      2,
      -4
    ],
    "io_out": [
      12,
      12,
      8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(reverse(input),7),14),4))"
  },
  {
    "input": "input : list = [-5, 5, 0, -1, -5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = take(take(sort_des([-5, 5, 0, -1, -5, 2]),28),2)",
    "io_inp": [
      -5,
      5,
      0,
      -1,
      -5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(input),28),2)"
  },
  {
    "input": "input : list = [-2, -3, 3]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_des([-2, -3, 3]))),1),20)",
    "io_inp": [
      -2,
      -3,
      3
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_des(input))),1),20)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [-5, -5, -3]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sort_des([-2, 0, -2]),-2)),5))",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(sort_des(input),-2)),5))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-2, -2]",
    "output": "generated_output : list = sort_asc(reverse(add_n([3, 3],-5)))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-5)))"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [1]",
    "output": "generated_output : list = add_n(sort_asc(take([2, -4, -2],1)),-1)",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,1)),-1)"
  },
  {
    "input": "input : list = [1, -2, -1, -2, -2]\noutput : list = [2, -4, -2, -4, -4]",
    "output": "generated_output : list = mul_n([1, -2, -1, -2, -2],2)",
    "io_inp": [
      1,
      -2,
      -1,
      -2,
      -2
    ],
    "io_out": [
      2,
      -4,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -3, 0],1)",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([4, -1],3)))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,3)))"
  },
  {
    "input": "input : list = [1, 2, -3, 4]\noutput : list = [-3, -6, 9, -12]",
    "output": "generated_output : list = take(mul_n([1, 2, -3, 4],-3),15)",
    "io_inp": [
      1,
      2,
      -3,
      4
    ],
    "io_out": [
      -3,
      -6,
      9,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),15)"
  },
  {
    "input": "input : list = [0, 1, 4, 1, 3, 0]\noutput : list = [5, 5, 1, 1, -7, -11]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_asc([0, 1, 4, 1, 3, 0])),-4),5)",
    "io_inp": [
      0,
      1,
      4,
      1,
      3,
      0
    ],
    "io_out": [
      5,
      5,
      1,
      1,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_asc(input)),-4),5)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [128, 128]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(add_n([3, 3],5),-4),-4)))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      128,
      128
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(add_n(input,5),-4),-4)))"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [-6, -8]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n(drop([4, -4, -2],1),-2),22)),2)",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(drop(input,1),-2),22)),2)"
  },
  {
    "input": "input : list = [2, 1, -4, -3, 2, 2]\noutput : list = [-4, -4, -4, -2, 6, 8]",
    "output": "generated_output : list = mul_n(reverse(take(sort_asc(reverse([2, 1, -4, -3, 2, 2])),27)),-2)",
    "io_inp": [
      2,
      1,
      -4,
      -3,
      2,
      2
    ],
    "io_out": [
      -4,
      -4,
      -4,
      -2,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sort_asc(reverse(input)),27)),-2)"
  },
  {
    "input": "input : list = [-1, -2, -5, 2, 0, 3]\noutput : list = [-5, -10, -25, 10, 0, 15]",
    "output": "generated_output : list = mul_n([-1, -2, -5, 2, 0, 3],5)",
    "io_inp": [
      -1,
      -2,
      -5,
      2,
      0,
      3
    ],
    "io_out": [
      -5,
      -10,
      -25,
      10,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [8, -1]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sub_n([-5, 4],-2),-2),-1),3),8)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      8,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sub_n(input,-2),-2),-1),3),8)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([3, 0],-2)))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [3, -5, 3, 5, -2]\noutput : list = [-10, 4]",
    "output": "generated_output : list = mul_n(sort_des(take(take(drop([3, -5, 3, 5, -2],3),13),16)),-2)",
    "io_inp": [
      3,
      -5,
      3,
      5,
      -2
    ],
    "io_out": [
      -10,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(drop(input,3),13),16)),-2)"
  },
  {
    "input": "input : list = [3, -3, -4, -5]\noutput : list = [4, -2, -3, -4]",
    "output": "generated_output : list = add_n([3, -3, -4, -5],1)",
    "io_inp": [
      3,
      -3,
      -4,
      -5
    ],
    "io_out": [
      4,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [-1, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse(sub_n([2, -3, -1],-1)))),-1)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(sub_n(input,-1)))),-1)"
  },
  {
    "input": "input : list = [-3, 2, -4, -5, -1, 1]\noutput : list = [6, 3, -12]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(take([-3, 2, -4, -5, -1, 1],3),-3),1),-5))",
    "io_inp": [
      -3,
      2,
      -4,
      -5,
      -1,
      1
    ],
    "io_out": [
      6,
      3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(take(input,3),-3),1),-5))"
  },
  {
    "input": "input : list = [-5, -1, 5, 5]\noutput : list = [-44, -8, 46, 46]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_asc([-5, -1, 5, 5]),-3),-3),-3),2)",
    "io_inp": [
      -5,
      -1,
      5,
      5
    ],
    "io_out": [
      -44,
      -8,
      46,
      46
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_asc(input),-3),-3),-3),2)"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sub_n([2, -2, 1],2),1),3)),1)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sub_n(input,2),1),3)),1)"
  },
  {
    "input": "input : list = [-2, 0, -5, -2, -2, 2]\noutput : list = [-9, -6, -6, -6, -4, -2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(sort_asc([-2, 0, -5, -2, -2, 2])),4)))",
    "io_inp": [
      -2,
      0,
      -5,
      -2,
      -2,
      2
    ],
    "io_out": [
      -9,
      -6,
      -6,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [4, 1, -1, 2, -4, 1]\noutput : list = [9, 6, 4, 7, 1, 6]",
    "output": "generated_output : list = take(add_n([4, 1, -1, 2, -4, 1],5),16)",
    "io_inp": [
      4,
      1,
      -1,
      2,
      -4,
      1
    ],
    "io_out": [
      9,
      6,
      4,
      7,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),16)"
  },
  {
    "input": "input : list = [5, -1, -2]\noutput : list = [12, 16, 40]",
    "output": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sub_n([5, -1, -2],-4),4))),4)",
    "io_inp": [
      5,
      -1,
      -2
    ],
    "io_out": [
      12,
      16,
      40
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_des(mul_n(sub_n(input,-4),4))),4)"
  },
  {
    "input": "input : list = [0, 3, -4, 3, -3, -5]\noutput : list = [17, 13, 9, -3, -15, -15]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(reverse([0, 3, -4, 3, -3, -5]),-4),2),5))",
    "io_inp": [
      0,
      3,
      -4,
      3,
      -3,
      -5
    ],
    "io_out": [
      17,
      13,
      9,
      -3,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(reverse(input),-4),2),5))"
  },
  {
    "input": "input : list = [1, -3, 2, 2, -4, -5]\noutput : list = [-20, -16, -12, 4, 8, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc([1, -3, 2, 2, -4, -5]),4)),27)",
    "io_inp": [
      1,
      -3,
      2,
      2,
      -4,
      -5
    ],
    "io_out": [
      -20,
      -16,
      -12,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(input),4)),27)"
  },
  {
    "input": "input : list = [3, -5, 4, -4]\noutput : list = [-9, 15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(take([3, -5, 4, -4],2),13))),-3)",
    "io_inp": [
      3,
      -5,
      4,
      -4
    ],
    "io_out": [
      -9,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(take(input,2),13))),-3)"
  },
  {
    "input": "input : list = [-1, 5, -4]\noutput : list = [-2, -8, -20]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sub_n([-1, 5, -4],-3),-1)),2),2)",
    "io_inp": [
      -1,
      5,
      -4
    ],
    "io_out": [
      -2,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(mul_n(sub_n(input,-3),-1)),2),2)"
  },
  {
    "input": "input : list = [2, -3, -4, 5, -3]\noutput : list = [5, 2, -3, -3, -4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des([2, -3, -4, 5, -3])),-5),5)",
    "io_inp": [
      2,
      -3,
      -4,
      5,
      -3
    ],
    "io_out": [
      5,
      2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(input)),-5),5)"
  },
  {
    "input": "input : list = [-5, -2, 1, -1]\noutput : list = [-36, -24, -12, -20]",
    "output": "generated_output : list = mul_n(take(reverse(add_n(reverse([-5, -2, 1, -1]),-4)),33),4)",
    "io_inp": [
      -5,
      -2,
      1,
      -1
    ],
    "io_out": [
      -36,
      -24,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(add_n(reverse(input),-4)),33),4)"
  },
  {
    "input": "input : list = [4, 1, 4]\noutput : list = [7, 4, 7]",
    "output": "generated_output : list = sub_n(take(mul_n([4, 1, 4],1),6),-3)",
    "io_inp": [
      4,
      1,
      4
    ],
    "io_out": [
      7,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,1),6),-3)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-20, 12]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n([4, -4],-5),4))),4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -20,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(add_n(add_n(input,-5),4))),4)"
  },
  {
    "input": "input : list = [-5, 2, -3, -2]\noutput : list = [8, -8, -12, -20]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc([-5, 2, -3, -2])),4)))",
    "io_inp": [
      -5,
      2,
      -3,
      -2
    ],
    "io_out": [
      8,
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-1, 0, 5, -4, -2, -2]\noutput : list = [1, -4, -5, -6, -6, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sub_n([-1, 0, 5, -4, -2, -2],5),-1))))",
    "io_inp": [
      -1,
      0,
      5,
      -4,
      -2,
      -2
    ],
    "io_out": [
      1,
      -4,
      -5,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sub_n(sub_n(input,5),-1))))"
  },
  {
    "input": "input : list = [3, 2, 5, -1, -3, 0]\noutput : list = [7, 1, -1, 2]",
    "output": "generated_output : list = add_n(drop([3, 2, 5, -1, -3, 0],2),2)",
    "io_inp": [
      3,
      2,
      5,
      -1,
      -3,
      0
    ],
    "io_out": [
      7,
      1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),2)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [25]",
    "output": "generated_output : list = mul_n(take(take(take(reverse([0, 5]),10),18),1),5)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(take(take(reverse(input),10),18),1),5)"
  },
  {
    "input": "input : list = [3, -3, 1, 0]\noutput : list = [-8, -4, -2, 4]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse(reverse([3, -3, 1, 0])),1)),-2)",
    "io_inp": [
      3,
      -3,
      1,
      0
    ],
    "io_out": [
      -8,
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(reverse(input)),1)),-2)"
  },
  {
    "input": "input : list = [-2, 0, -2, 2, -3]\noutput : list = [36, 24, 24, 0, -24]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(sort_asc([-2, 0, -2, 2, -3]),-4),3)))",
    "io_inp": [
      -2,
      0,
      -2,
      2,
      -3
    ],
    "io_out": [
      36,
      24,
      24,
      0,
      -24
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(sort_asc(input),-4),3)))"
  },
  {
    "input": "input : list = [-5, 4, 2]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, 4, 2],1)",
    "io_inp": [
      -5,
      4,
      2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [19, -37]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n(reverse([-2, 5]),2),4),2),-5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      19,
      -37
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(reverse(input),2),4),2),-5)"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [-3, 0, 1]",
    "output": "generated_output : list = sort_asc(reverse([1, -3, 0]))",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-5, 5, -4, -3, 0]\noutput : list = [-5, 4, -6]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(take([-5, 5, -4, -3, 0],3)),1)))",
    "io_inp": [
      -5,
      5,
      -4,
      -3,
      0
    ],
    "io_out": [
      -5,
      4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(take(input,3)),1)))"
  },
  {
    "input": "input : list = [4, -2, -5, 4]\noutput : list = [-15, -6, 12, 12]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(mul_n([4, -2, -5, 4],3))),28),26)",
    "io_inp": [
      4,
      -2,
      -5,
      4
    ],
    "io_out": [
      -15,
      -6,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(mul_n(input,3))),28),26)"
  },
  {
    "input": "input : list = [4, 0, 0]\noutput : list = [-10, -10]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(drop([4, 0, 0],1),1)),2),5)",
    "io_inp": [
      4,
      0,
      0
    ],
    "io_out": [
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(drop(input,1),1)),2),5)"
  },
  {
    "input": "input : list = [-1, 0, -4, 2, 2, -3]\noutput : list = [-3, 2, 2, -4, 0, -1]",
    "output": "generated_output : list = reverse([-1, 0, -4, 2, 2, -3])",
    "io_inp": [
      -1,
      0,
      -4,
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      2,
      -4,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 5, 4, 3, -4]\noutput : list = [3, -4]",
    "output": "generated_output : list = drop([-3, 5, 4, 3, -4],3)",
    "io_inp": [
      -3,
      5,
      4,
      3,
      -4
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-4, -1, 0, -1, -4, 5]\noutput : list = [-1, 0, -1, -4, 5]",
    "output": "generated_output : list = drop([-4, -1, 0, -1, -4, 5],1)",
    "io_inp": [
      -4,
      -1,
      0,
      -1,
      -4,
      5
    ],
    "io_out": [
      -1,
      0,
      -1,
      -4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [5, 4]",
    "output": "generated_output : list = mul_n(take(reverse(sort_asc([5, 4])),8),1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sort_asc(input)),8),1)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-50, 6]",
    "output": "generated_output : list = reverse(mul_n(add_n(sub_n(mul_n([-3, 4],4),-4),5),-2))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -50,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(sub_n(mul_n(input,4),-4),5),-2))"
  },
  {
    "input": "input : list = [5, -2, -2, -1, -1]\noutput : list = [-2, -2, -3, -3, 4]",
    "output": "generated_output : list = add_n(reverse([5, -2, -2, -1, -1]),-1)",
    "io_inp": [
      5,
      -2,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -3,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [3, 3, -4, 0, -2]\noutput : list = [-7, -5, -3, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(reverse([3, 3, -4, 0, -2]))),3)",
    "io_inp": [
      3,
      3,
      -4,
      0,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(reverse(input))),3)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [5, 10]",
    "output": "generated_output : list = add_n(sort_asc(take(sub_n(reverse([4, -1]),-2),10)),4)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      5,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sub_n(reverse(input),-2),10)),4)"
  },
  {
    "input": "input : list = [-2, -5, -5, -2, 1]\noutput : list = [-4, -7, -7, -4, -1]",
    "output": "generated_output : list = take(add_n(take(take(sub_n([-2, -5, -5, -2, 1],3),10),19),1),19)",
    "io_inp": [
      -2,
      -5,
      -5,
      -2,
      1
    ],
    "io_out": [
      -4,
      -7,
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(sub_n(input,3),10),19),1),19)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-16, -32]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_des([-4, -2])),2)),4)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -16,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(sort_des(input)),2)),4)"
  },
  {
    "input": "input : list = [-2, -5, 4]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(take([-2, -5, 4],1)))))",
    "io_inp": [
      -2,
      -5,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [3, -2, 2, -1, 4, 2]\noutput : list = [-2, -1, 2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([3, -2, 2, -1, 4, 2])",
    "io_inp": [
      3,
      -2,
      2,
      -1,
      4,
      2
    ],
    "io_out": [
      -2,
      -1,
      2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 5, -4]\noutput : list = [7, 1, -2]",
    "output": "generated_output : list = sort_des(sub_n([-1, 5, -4],-2))",
    "io_inp": [
      -1,
      5,
      -4
    ],
    "io_out": [
      7,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 2, 0]\noutput : list = [-4]",
    "output": "generated_output : list = add_n(add_n(sub_n(take([-1, 2, 0],1),3),2),-2)",
    "io_inp": [
      -1,
      2,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(take(input,1),3),2),-2)"
  },
  {
    "input": "input : list = [-4, -4, -1, 0, -1, 5]\noutput : list = [-6, -6, -3, -2, -3, 3]",
    "output": "generated_output : list = take(sub_n([-4, -4, -1, 0, -1, 5],2),9)",
    "io_inp": [
      -4,
      -4,
      -1,
      0,
      -1,
      5
    ],
    "io_out": [
      -6,
      -6,
      -3,
      -2,
      -3,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,2),9)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(drop(add_n([3, -3],1),1),7))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(drop(add_n(input,1),1),7))"
  },
  {
    "input": "input : list = [-1, 2, -3, 2]\noutput : list = [21, 21, 12, 6]",
    "output": "generated_output : list = mul_n(sort_des(take(take(add_n([-1, 2, -3, 2],5),17),20)),3)",
    "io_inp": [
      -1,
      2,
      -3,
      2
    ],
    "io_out": [
      21,
      21,
      12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(take(add_n(input,5),17),20)),3)"
  },
  {
    "input": "input : list = [2, 2, -5, -4]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(add_n(sort_asc(take([2, 2, -5, -4],2)),4),5)",
    "io_inp": [
      2,
      2,
      -5,
      -4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(take(input,2)),4),5)"
  },
  {
    "input": "input : list = [2, 5, 2, 0, 4, -1]\noutput : list = [0, 4, -1]",
    "output": "generated_output : list = drop([2, 5, 2, 0, 4, -1],3)",
    "io_inp": [
      2,
      5,
      2,
      0,
      4,
      -1
    ],
    "io_out": [
      0,
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 5, 0, 0, 1]\noutput : list = [8, 0, -2, -2, -6]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_asc([-2, 5, 0, 0, 1]),1)),2))",
    "io_inp": [
      -2,
      5,
      0,
      0,
      1
    ],
    "io_out": [
      8,
      0,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_asc(input),1)),2))"
  },
  {
    "input": "input : list = [-5, 3, 4, -4, -3]\noutput : list = [-32, -28, -4, 0, 4]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc([-5, 3, 4, -4, -3]),4)),-4)",
    "io_inp": [
      -5,
      3,
      4,
      -4,
      -3
    ],
    "io_out": [
      -32,
      -28,
      -4,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(input),4)),-4)"
  },
  {
    "input": "input : list = [-1, 0, -1, 4, -4]\noutput : list = [20, -12]",
    "output": "generated_output : list = take(reverse(sub_n(mul_n(drop([-1, 0, -1, 4, -4],3),-4),-4)),26)",
    "io_inp": [
      -1,
      0,
      -1,
      4,
      -4
    ],
    "io_out": [
      20,
      -12
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(mul_n(drop(input,3),-4),-4)),26)"
  },
  {
    "input": "input : list = [-3, 3, 1, 3, 3, -5]\noutput : list = [-6, 0]",
    "output": "generated_output : list = add_n(take([-3, 3, 1, 3, 3, -5],2),-3)",
    "io_inp": [
      -3,
      3,
      1,
      3,
      3,
      -5
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),-3)"
  },
  {
    "input": "input : list = [-5, 1, 5, 2, 2]\noutput : list = [16, 4, -4, 2, 2]",
    "output": "generated_output : list = mul_n(sub_n([-5, 1, 5, 2, 2],3),-2)",
    "io_inp": [
      -5,
      1,
      5,
      2,
      2
    ],
    "io_out": [
      16,
      4,
      -4,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-2)"
  },
  {
    "input": "input : list = [2, 4, -5]\noutput : list = [-1, 8]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des(drop([2, 4, -5],1)))),4)",
    "io_inp": [
      2,
      4,
      -5
    ],
    "io_out": [
      -1,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(drop(input,1)))),4)"
  },
  {
    "input": "input : list = [-3, 3, 5, -3, 3]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 3, 5, -3, 3],1)",
    "io_inp": [
      -3,
      3,
      5,
      -3,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(reverse(take(sort_des([-5, 0]),3)))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_des(input),3)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [125, 100]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse(sub_n([4, 3],-1)),-5)),-5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      125,
      100
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(sub_n(input,-1)),-5)),-5)"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [-30]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(take([-5, 5, -3],1),5),5),10))",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      -30
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(take(input,1),5),5),10))"
  },
  {
    "input": "input : list = [0, 3, -5, 1, -1]\noutput : list = [1, -1, -2, -3, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sub_n([0, 3, -5, 1, -1],4)),2)))",
    "io_inp": [
      0,
      3,
      -5,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(sub_n(input,4)),2)))"
  },
  {
    "input": "input : list = [-1, -1, 5, -2]\noutput : list = [-4, -4, 8, -6]",
    "output": "generated_output : list = add_n(mul_n(mul_n(take(sub_n([-1, -1, 5, -2],-1),4),1),2),-4)",
    "io_inp": [
      -1,
      -1,
      5,
      -2
    ],
    "io_out": [
      -4,
      -4,
      8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(take(sub_n(input,-1),4),1),2),-4)"
  },
  {
    "input": "input : list = [4, -4, 1, 1, 1]\noutput : list = [1, 10, 10, 10, 25]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(add_n([4, -4, 1, 1, 1],-3),-3),4))",
    "io_inp": [
      4,
      -4,
      1,
      1,
      1
    ],
    "io_out": [
      1,
      10,
      10,
      10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(add_n(input,-3),-3),4))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [48, -48]",
    "output": "generated_output : list = mul_n(add_n(reverse(mul_n(mul_n([-5, 3],4),1)),4),3)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(mul_n(mul_n(input,4),1)),4),3)"
  },
  {
    "input": "input : list = [5, -4, 5, 5, 3, 1]\noutput : list = [4, -5, 4, 4, 2, 0]",
    "output": "generated_output : list = sub_n([5, -4, 5, 5, 3, 1],1)",
    "io_inp": [
      5,
      -4,
      5,
      5,
      3,
      1
    ],
    "io_out": [
      4,
      -5,
      4,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-2, -10]",
    "output": "generated_output : list = sort_des(take(add_n([3, -5],-5),10))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(input,-5),10))"
  },
  {
    "input": "input : list = [-2, -4, 1, 1, 2]\noutput : list = [4, -4, -16, -16, -20]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([-2, -4, 1, 1, 2]),3),-4)",
    "io_inp": [
      -2,
      -4,
      1,
      1,
      2
    ],
    "io_out": [
      4,
      -4,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),3),-4)"
  },
  {
    "input": "input : list = [5, 0, 1, -5]\noutput : list = [-5, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 0, 1, -5])",
    "io_inp": [
      5,
      0,
      1,
      -5
    ],
    "io_out": [
      -5,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -2, 4, -4]\noutput : list = [4, 2, 1, -4]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sort_asc([-1, -2, 4, -4])),-1))",
    "io_inp": [
      -1,
      -2,
      4,
      -4
    ],
    "io_out": [
      4,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sort_asc(input)),-1))"
  },
  {
    "input": "input : list = [0, 5, -4, -2, 0, -1]\noutput : list = [-2, 3, -6, -4, -2, -3]",
    "output": "generated_output : list = sub_n([0, 5, -4, -2, 0, -1],2)",
    "io_inp": [
      0,
      5,
      -4,
      -2,
      0,
      -1
    ],
    "io_out": [
      -2,
      3,
      -6,
      -4,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [2, -4]",
    "output": "generated_output : list = mul_n(sort_des([-4, 2]),1)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [-1, -5, 1, 0, 0, 5]\noutput : list = [0, -4, -5, -5, -6, -10]",
    "output": "generated_output : list = add_n(take(add_n(sort_des(sort_asc([-1, -5, 1, 0, 0, 5])),-2),18),-3)",
    "io_inp": [
      -1,
      -5,
      1,
      0,
      0,
      5
    ],
    "io_out": [
      0,
      -4,
      -5,
      -5,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_des(sort_asc(input)),-2),18),-3)"
  },
  {
    "input": "input : list = [4, 0, 1]\noutput : list = [2, 3, 6]",
    "output": "generated_output : list = sort_asc(take(sort_asc(add_n(add_n([4, 0, 1],3),-1)),12))",
    "io_inp": [
      4,
      0,
      1
    ],
    "io_out": [
      2,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(add_n(add_n(input,3),-1)),12))"
  },
  {
    "input": "input : list = [5, 0, 3, 3]\noutput : list = [-10, -4, -4, 5]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(reverse(reverse([5, 0, 3, 3])),-3)),5)",
    "io_inp": [
      5,
      0,
      3,
      3
    ],
    "io_out": [
      -10,
      -4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(reverse(reverse(input)),-3)),5)"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [3, -2, -3]",
    "output": "generated_output : list = sort_des([3, -3, -2])",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -1, -1, 4]\noutput : list = [-25, -35, -35, -10]",
    "output": "generated_output : list = mul_n(add_n(sub_n([1, -1, -1, 4],4),-2),5)",
    "io_inp": [
      1,
      -1,
      -1,
      4
    ],
    "io_out": [
      -25,
      -35,
      -35,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,4),-2),5)"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take(sort_des([0, -1, 1]),1))",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),1))"
  },
  {
    "input": "input : list = [-1, 3, 3, 0]\noutput : list = [-12, -12, 0, 4]",
    "output": "generated_output : list = mul_n(sort_des([-1, 3, 3, 0]),-4)",
    "io_inp": [
      -1,
      3,
      3,
      0
    ],
    "io_out": [
      -12,
      -12,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = drop([2, 2, -3],1)",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 2, 3, 3, -4, -5]\noutput : list = [-4, -3, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(drop([2, 2, 3, 3, -4, -5],1),2)),-1))",
    "io_inp": [
      2,
      2,
      3,
      3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(drop(input,1),2)),-1))"
  },
  {
    "input": "input : list = [-2, 2, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(take([-2, 2, 5],1))),1),18)",
    "io_inp": [
      -2,
      2,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(take(input,1))),1),18)"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [-6, -9, -9]",
    "output": "generated_output : list = take(mul_n([2, 3, 3],-3),17)",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      -6,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),17)"
  },
  {
    "input": "input : list = [-2, 4, -1, 5, 3]\noutput : list = [-15, -5, -35, -10, -40]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(add_n([-2, 4, -1, 5, 3],-5),5),1),-5))",
    "io_inp": [
      -2,
      4,
      -1,
      5,
      3
    ],
    "io_out": [
      -15,
      -5,
      -35,
      -10,
      -40
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(add_n(input,-5),5),1),-5))"
  },
  {
    "input": "input : list = [-1, 0, -5, 1, 1, 5]\noutput : list = [-10, -6, -5, -4, -4, 0]",
    "output": "generated_output : list = take(sort_asc(add_n([-1, 0, -5, 1, 1, 5],-5)),24)",
    "io_inp": [
      -1,
      0,
      -5,
      1,
      1,
      5
    ],
    "io_out": [
      -10,
      -6,
      -5,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-5)),24)"
  },
  {
    "input": "input : list = [4, -1, -3, -3, -1]\noutput : list = [-64, 16, 48, 48, 16]",
    "output": "generated_output : list = mul_n(mul_n([4, -1, -3, -3, -1],4),-4)",
    "io_inp": [
      4,
      -1,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -64,
      16,
      48,
      48,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),-4)"
  },
  {
    "input": "input : list = [5, -2, -4, -4, -5]\noutput : list = [-5, -4, -4, -2]",
    "output": "generated_output : list = reverse(drop([5, -2, -4, -4, -5],1))",
    "io_inp": [
      5,
      -2,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-2, -2, 5, 5, -4, 4]\noutput : list = [0, 0, -1, -7, -7, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n([-2, -2, 5, 5, -4, 4],-5))))",
    "io_inp": [
      -2,
      -2,
      5,
      5,
      -4,
      4
    ],
    "io_out": [
      0,
      0,
      -1,
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(input,-5))))"
  },
  {
    "input": "input : list = [5, 0, 5, 1, 2, 0]\noutput : list = [-2, -2, -5, -6, -7, -7]",
    "output": "generated_output : list = take(add_n(take(sub_n(sort_des([5, 0, 5, 1, 2, 0]),3),22),-4),15)",
    "io_inp": [
      5,
      0,
      5,
      1,
      2,
      0
    ],
    "io_out": [
      -2,
      -2,
      -5,
      -6,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(take(sub_n(sort_des(input),3),22),-4),15)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [60, -75]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(mul_n([-5, 4],-3),-5))))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      60,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(mul_n(input,-3),-5))))"
  },
  {
    "input": "input : list = [2, -3, 5, -1, -3, 0]\noutput : list = [9, 6, 4, 3, 1, 1]",
    "output": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n([2, -3, 5, -1, -3, 0],-4)))))",
    "io_inp": [
      2,
      -3,
      5,
      -1,
      -3,
      0
    ],
    "io_out": [
      9,
      6,
      4,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(sort_asc(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [-3, 3, 3, -5]\noutput : list = [0, 0, -8]",
    "output": "generated_output : list = add_n(reverse(sort_asc(reverse(drop([-3, 3, 3, -5],1)))),-3)",
    "io_inp": [
      -3,
      3,
      3,
      -5
    ],
    "io_out": [
      0,
      0,
      -8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(reverse(drop(input,1)))),-3)"
  },
  {
    "input": "input : list = [5, 4, -5]\noutput : list = [-12, 24, 28]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sub_n([5, 4, -5],-3))),1),4)",
    "io_inp": [
      5,
      4,
      -5
    ],
    "io_out": [
      -12,
      24,
      28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sub_n(input,-3))),1),4)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [18, -9]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(mul_n([-1, 2],3),-3))),-3)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(mul_n(input,3),-3))),-3)"
  },
  {
    "input": "input : list = [3, -4, 3]\noutput : list = [5, 5, -2]",
    "output": "generated_output : list = add_n(take(sort_des(take(sort_asc([3, -4, 3]),7)),21),2)",
    "io_inp": [
      3,
      -4,
      3
    ],
    "io_out": [
      5,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(sort_asc(input),7)),21),2)"
  },
  {
    "input": "input : list = [2, -1, -4, 5]\noutput : list = [4, -2, -8, 10]",
    "output": "generated_output : list = mul_n([2, -1, -4, 5],2)",
    "io_inp": [
      2,
      -1,
      -4,
      5
    ],
    "io_out": [
      4,
      -2,
      -8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-3, 3, -5, -5, -4, -1]\noutput : list = [0, 0, 1, 2, 4, 8]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(sub_n([-3, 3, -5, -5, -4, -1],-1),-3)),4),3)",
    "io_inp": [
      -3,
      3,
      -5,
      -5,
      -4,
      -1
    ],
    "io_out": [
      0,
      0,
      1,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(sub_n(input,-1),-3)),4),3)"
  },
  {
    "input": "input : list = [4, -2, 1, 0, -4]\noutput : list = [-8, -4, 0, 2, 8]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(reverse([4, -2, 1, 0, -4]),11)),22),2)",
    "io_inp": [
      4,
      -2,
      1,
      0,
      -4
    ],
    "io_out": [
      -8,
      -4,
      0,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(reverse(input),11)),22),2)"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [9, 12, 6]",
    "output": "generated_output : list = take(take(mul_n([-3, -4, -2],-3),7),20)",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      9,
      12,
      6
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,-3),7),20)"
  },
  {
    "input": "input : list = [-5, -2, -2, 2, 5]\noutput : list = [4, 1, -3, -3, -6]",
    "output": "generated_output : list = reverse(sub_n([-5, -2, -2, 2, 5],1))",
    "io_inp": [
      -5,
      -2,
      -2,
      2,
      5
    ],
    "io_out": [
      4,
      1,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,1))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [5, 5]",
    "output": "generated_output : list = sub_n([1, 1],-4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [4, -2, -1, -5]\noutput : list = [2, -3, -4, -7]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(add_n(add_n([4, -2, -1, -5],-5),4)),2),-1)",
    "io_inp": [
      4,
      -2,
      -1,
      -5
    ],
    "io_out": [
      2,
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(add_n(add_n(input,-5),4)),2),-1)"
  },
  {
    "input": "input : list = [2, 0, 5, 5, 2, -2]\noutput : list = [-2, 2, 5, 5, 0, 2]",
    "output": "generated_output : list = reverse([2, 0, 5, 5, 2, -2])",
    "io_inp": [
      2,
      0,
      5,
      5,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      5,
      5,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4, 4, -2, -1, 1]\noutput : list = [-4, -4, -2, -1, 1, 4]",
    "output": "generated_output : list = sort_asc([-4, -4, 4, -2, -1, 1])",
    "io_inp": [
      -4,
      -4,
      4,
      -2,
      -1,
      1
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, -1, -5]\noutput : list = [3, 3]",
    "output": "generated_output : list = reverse(take(take(mul_n(sub_n([-1, -1, -1, -5],2),-1),7),2))",
    "io_inp": [
      -1,
      -1,
      -1,
      -5
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(take(mul_n(sub_n(input,2),-1),7),2))"
  },
  {
    "input": "input : list = [1, -2, 1, 0, 1, 5]\noutput : list = [-6, -4, -3, -3, -3, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(add_n([1, -2, 1, 0, 1, 5],-4),24),11)))",
    "io_inp": [
      1,
      -2,
      1,
      0,
      1,
      5
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -3,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(add_n(input,-4),24),11)))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = mul_n([3, 5],1)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [10, 20, 0]",
    "output": "generated_output : list = mul_n(add_n(take(add_n(reverse([5, -5, 0]),-3),25),-2),-2)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      10,
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(add_n(reverse(input),-3),25),-2),-2)"
  },
  {
    "input": "input : list = [0, 5, 3, -1, 4]\noutput : list = [-10, 0]",
    "output": "generated_output : list = mul_n(reverse(take([0, 5, 3, -1, 4],2)),-2)",
    "io_inp": [
      0,
      5,
      3,
      -1,
      4
    ],
    "io_out": [
      -10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,2)),-2)"
  },
  {
    "input": "input : list = [-3, -4, -4, 4, 0]\noutput : list = [-4, -4, -3, 0, 4]",
    "output": "generated_output : list = sort_asc([-3, -4, -4, 4, 0])",
    "io_inp": [
      -3,
      -4,
      -4,
      4,
      0
    ],
    "io_out": [
      -4,
      -4,
      -3,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 4, -5, 1, 4]\noutput : list = [-2, -4, 5, -1, -4]",
    "output": "generated_output : list = mul_n([2, 4, -5, 1, 4],-1)",
    "io_inp": [
      2,
      4,
      -5,
      1,
      4
    ],
    "io_out": [
      -2,
      -4,
      5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 1, 0, -1, 5]\noutput : list = [1, 2, 3, 3, 7]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(sort_des([1, 1, 0, -1, 5]),11))),2)",
    "io_inp": [
      1,
      1,
      0,
      -1,
      5
    ],
    "io_out": [
      1,
      2,
      3,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(sort_des(input),11))),2)"
  },
  {
    "input": "input : list = [-3, 0, -4, -2]\noutput : list = [-7, -6, -5, -3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse([-3, 0, -4, -2]),5))),2)",
    "io_inp": [
      -3,
      0,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(reverse(input),5))),2)"
  },
  {
    "input": "input : list = [5, 3, 2, 0, -1]\noutput : list = [0, -2, -3, -5, -6]",
    "output": "generated_output : list = add_n([5, 3, 2, 0, -1],-5)",
    "io_inp": [
      5,
      3,
      2,
      0,
      -1
    ],
    "io_out": [
      0,
      -2,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [5, 3, -1, 4, -1, -3]\noutput : list = [16, 12, 4, 14, 4, 0]",
    "output": "generated_output : list = mul_n(take(add_n([5, 3, -1, 4, -1, -3],3),15),2)",
    "io_inp": [
      5,
      3,
      -1,
      4,
      -1,
      -3
    ],
    "io_out": [
      16,
      12,
      4,
      14,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(input,3),15),2)"
  },
  {
    "input": "input : list = [3, 4, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = drop([3, 4, 1, -5],2)",
    "io_inp": [
      3,
      4,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [-26, -14, -8]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(add_n(reverse([-5, 1, 4]),-4),4)),2)",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      -26,
      -14,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(add_n(reverse(input),-4),4)),2)"
  },
  {
    "input": "input : list = [-2, 2, 3, 5]\noutput : list = [5, 3, 2, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(reverse([-2, 2, 3, 5]),14))))",
    "io_inp": [
      -2,
      2,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(reverse(input),14))))"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-7, -7, -9]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n(sub_n([-2, -2, -3],-1),2),2),-1))",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(sub_n(input,-1),2),2),-1))"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [-8, -8, -4]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(reverse([1, -3, -3])),23),5))",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(reverse(input)),23),5))"
  },
  {
    "input": "input : list = [1, 3, 3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 3, 3],1)",
    "io_inp": [
      1,
      3,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(mul_n([5, 5],-2),-4),3)))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(mul_n(input,-2),-4),3)))"
  },
  {
    "input": "input : list = [-2, 0, 3, -1, -2]\noutput : list = [-32]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(sort_des([-2, 0, 3, -1, -2]),1),-4),2),1)",
    "io_inp": [
      -2,
      0,
      3,
      -1,
      -2
    ],
    "io_out": [
      -32
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(sort_des(input),1),-4),2),1)"
  },
  {
    "input": "input : list = [1, -4, 5, 4, 2]\noutput : list = [9, 8, 6, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(drop([1, -4, 5, 4, 2],1))),-5),-1)",
    "io_inp": [
      1,
      -4,
      5,
      4,
      2
    ],
    "io_out": [
      9,
      8,
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(drop(input,1))),-5),-1)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse([0, -5])",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [-4, -2, -1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n([2, 0, 3],-4))))",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(input,-4))))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-1, -7]",
    "output": "generated_output : list = sort_des(sub_n([-2, 4],5))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [-12, 4]",
    "output": "generated_output : list = reverse(mul_n([-1, 3],-4))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      -12,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [-4, -5, -3, -1, -5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = reverse(drop([-4, -5, -3, -1, -5, 4],4))",
    "io_inp": [
      -4,
      -5,
      -3,
      -1,
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,4))"
  },
  {
    "input": "input : list = [-4, -1, 5]\noutput : list = [-12, -9, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sort_des([-4, -1, 5]),4),-4)))",
    "io_inp": [
      -4,
      -1,
      5
    ],
    "io_out": [
      -12,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sort_des(input),4),-4)))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-40, 0]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n([-2, 0],-4))),-5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -40,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(input,-4))),-5)"
  },
  {
    "input": "input : list = [4, -2, -3, 3, -1, 5]\noutput : list = [12, -6, 6, -12, -9, 9]",
    "output": "generated_output : list = mul_n(sub_n(reverse([4, -2, -3, 3, -1, 5]),1),3)",
    "io_inp": [
      4,
      -2,
      -3,
      3,
      -1,
      5
    ],
    "io_out": [
      12,
      -6,
      6,
      -12,
      -9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),1),3)"
  },
  {
    "input": "input : list = [-4, -4, -4]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = sort_asc(sort_des([-4, -4, -4]))",
    "io_inp": [
      -4,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [0, 30, 40]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(add_n([5, 2, 1],-5)),5)),-2)",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      0,
      30,
      40
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(add_n(input,-5)),5)),-2)"
  },
  {
    "input": "input : list = [3, -1, -3, 3, 1, 4]\noutput : list = [-3, -1, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(take([3, -1, -3, 3, 1, 4],4),18))))",
    "io_inp": [
      3,
      -1,
      -3,
      3,
      1,
      4
    ],
    "io_out": [
      -3,
      -1,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(take(input,4),18))))"
  },
  {
    "input": "input : list = [-3, 3, -2, -2, -1]\noutput : list = [-6, -5, -5, -4, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(add_n(sub_n([-3, 3, -2, -2, -1],2),-1))))",
    "io_inp": [
      -3,
      3,
      -2,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(add_n(sub_n(input,2),-1))))"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [-7, -7, -8]",
    "output": "generated_output : list = sub_n(sub_n(reverse([-3, -2, -2]),4),1)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),4),1)"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(sort_asc(take(take(drop([-4, 5, 2],1),5),10)))",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(take(drop(input,1),5),10)))"
  },
  {
    "input": "input : list = [1, 2, 3, -1, 0]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 2, 3, -1, 0],1)",
    "io_inp": [
      1,
      2,
      3,
      -1,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 1, -1, -1, 3]\noutput : list = [-5, -5, -5, 5, 15]",
    "output": "generated_output : list = sort_asc(mul_n([-1, 1, -1, -1, 3],5))",
    "io_inp": [
      -1,
      1,
      -1,
      -1,
      3
    ],
    "io_out": [
      -5,
      -5,
      -5,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,5))"
  },
  {
    "input": "input : list = [2, -2, -4, -3, -2]\noutput : list = [5, 1, 1, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([2, -2, -4, -3, -2]),3))",
    "io_inp": [
      2,
      -2,
      -4,
      -3,
      -2
    ],
    "io_out": [
      5,
      1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [2, 5, 3]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = sort_asc([2, 5, 3])",
    "io_inp": [
      2,
      5,
      3
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, 1, 4, 5]\noutput : list = [-12, -12, -20, -32, -36]",
    "output": "generated_output : list = reverse(mul_n(sub_n(take(sort_des([-1, -1, 1, 4, 5]),10),-4),-4))",
    "io_inp": [
      -1,
      -1,
      1,
      4,
      5
    ],
    "io_out": [
      -12,
      -12,
      -20,
      -32,
      -36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(take(sort_des(input),10),-4),-4))"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [-7, -6, -2]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sort_des([4, -1, 3]),-1),-1)),2)",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      -7,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sub_n(sort_des(input),-1),-1)),2)"
  },
  {
    "input": "input : list = [1, 5, 1, -4, 2, -4]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(take([1, 5, 1, -4, 2, -4],1)),1)))",
    "io_inp": [
      1,
      5,
      1,
      -4,
      2,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(take(input,1)),1)))"
  },
  {
    "input": "input : list = [-1, 2, 2, -3, -5]\noutput : list = [-3, 6, 6, -9, -15]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(sub_n([-1, 2, 2, -3, -5],4),-5),1),3),21)",
    "io_inp": [
      -1,
      2,
      2,
      -3,
      -5
    ],
    "io_out": [
      -3,
      6,
      6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(sub_n(input,4),-5),1),3),21)"
  },
  {
    "input": "input : list = [-1, -4, 3, 0, -1]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(take(drop(take(mul_n([-1, -4, 3, 0, -1],-1),18),3),6),-2)",
    "io_inp": [
      -1,
      -4,
      3,
      0,
      -1
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(take(mul_n(input,-1),18),3),6),-2)"
  },
  {
    "input": "input : list = [2, -2, -2, -2, 2]\noutput : list = [-10, 54, 54, 54, -10]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(mul_n([2, -2, -2, -2, 2],4),5),21),-4),2)",
    "io_inp": [
      2,
      -2,
      -2,
      -2,
      2
    ],
    "io_out": [
      -10,
      54,
      54,
      54,
      -10
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(mul_n(input,4),5),21),-4),2)"
  },
  {
    "input": "input : list = [-3, -5, -3, -4, -2]\noutput : list = [-75, -60, -45, -45, -30]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des(mul_n([-3, -5, -3, -4, -2],-5))),-3),6)",
    "io_inp": [
      -3,
      -5,
      -3,
      -4,
      -2
    ],
    "io_out": [
      -75,
      -60,
      -45,
      -45,
      -30
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(mul_n(input,-5))),-3),6)"
  },
  {
    "input": "input : list = [-4, 3, -3, -3, 0]\noutput : list = [2, -1, -1, 5, -2]",
    "output": "generated_output : list = reverse(add_n(take(mul_n([-4, 3, -3, -3, 0],1),23),2))",
    "io_inp": [
      -4,
      3,
      -3,
      -3,
      0
    ],
    "io_out": [
      2,
      -1,
      -1,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(mul_n(input,1),23),2))"
  },
  {
    "input": "input : list = [2, 3, -3, -4, -1]\noutput : list = [-8, -7, -5, -2, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sort_des([2, 3, -3, -4, -1])),1)),3)",
    "io_inp": [
      2,
      3,
      -3,
      -4,
      -1
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sort_des(input)),1)),3)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-32, -27]",
    "output": "generated_output : list = sub_n(reverse(take(mul_n(sub_n([-3, -4],2),5),24)),2)",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -32,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(mul_n(sub_n(input,2),5),24)),2)"
  },
  {
    "input": "input : list = [2, 0, -5, 3]\noutput : list = [-20, -12, 8, -24]",
    "output": "generated_output : list = mul_n(sub_n([2, 0, -5, 3],-3),-4)",
    "io_inp": [
      2,
      0,
      -5,
      3
    ],
    "io_out": [
      -20,
      -12,
      8,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-3),-4)"
  },
  {
    "input": "input : list = [-3, -4, 2, -3, -4]\noutput : list = [2, -3, -3, -4, -4]",
    "output": "generated_output : list = sort_des([-3, -4, 2, -3, -4])",
    "io_inp": [
      -3,
      -4,
      2,
      -3,
      -4
    ],
    "io_out": [
      2,
      -3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, -3, -5]\noutput : list = [21, 0, -6, -6]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take(sort_des([-5, 4, -3, -5]),12),1),3),3)",
    "io_inp": [
      -5,
      4,
      -3,
      -5
    ],
    "io_out": [
      21,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(sort_des(input),12),1),3),3)"
  },
  {
    "input": "input : list = [-2, 3, -2, 4]\noutput : list = [5, -5]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse(take([-2, 3, -2, 4],2)),-2),-1))",
    "io_inp": [
      -2,
      3,
      -2,
      4
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(take(input,2)),-2),-1))"
  },
  {
    "input": "input : list = [5, -4, 3]\noutput : list = [8]",
    "output": "generated_output : list = add_n(take(sort_des(sort_des(take([5, -4, 3],1))),14),3)",
    "io_inp": [
      5,
      -4,
      3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(sort_des(take(input,1))),14),3)"
  },
  {
    "input": "input : list = [-5, -1, -1, 1]\noutput : list = [-10, -6, -6, -4]",
    "output": "generated_output : list = sub_n([-5, -1, -1, 1],5)",
    "io_inp": [
      -5,
      -1,
      -1,
      1
    ],
    "io_out": [
      -10,
      -6,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, -1, 4, 5]\noutput : list = [6, 2, -8, -10]",
    "output": "generated_output : list = mul_n([-3, -1, 4, 5],-2)",
    "io_inp": [
      -3,
      -1,
      4,
      5
    ],
    "io_out": [
      6,
      2,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 4, -4, -3]\noutput : list = [-3, 2, -6, -5]",
    "output": "generated_output : list = add_n([-1, 4, -4, -3],-2)",
    "io_inp": [
      -1,
      4,
      -4,
      -3
    ],
    "io_out": [
      -3,
      2,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-6, -2]",
    "output": "generated_output : list = add_n(sub_n([-5, -1],-3),-4)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -6,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-3),-4)"
  },
  {
    "input": "input : list = [0, 5, -2, -2]\noutput : list = [5, -2, -2]",
    "output": "generated_output : list = take(drop([0, 5, -2, -2],1),9)",
    "io_inp": [
      0,
      5,
      -2,
      -2
    ],
    "io_out": [
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(drop(input,1),9)"
  },
  {
    "input": "input : list = [-5, 1, 3, -5]\noutput : list = [-2, -2, 4, 6]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(reverse([-5, 1, 3, -5]),21))),-3)",
    "io_inp": [
      -5,
      1,
      3,
      -5
    ],
    "io_out": [
      -2,
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(reverse(input),21))),-3)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(reverse([3, 2])))),1)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(reverse(input)))),1)"
  },
  {
    "input": "input : list = [1, 3, 3, -1, 3, -5]\noutput : list = [2, 2, 2, 0, -2, -6]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sort_asc([1, 3, 3, -1, 3, -5])),-1),23))",
    "io_inp": [
      1,
      3,
      3,
      -1,
      3,
      -5
    ],
    "io_out": [
      2,
      2,
      2,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sort_asc(input)),-1),23))"
  },
  {
    "input": "input : list = [0, 1, -2, -2]\noutput : list = [1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sub_n([0, 1, -2, -2],2)),5)))",
    "io_inp": [
      0,
      1,
      -2,
      -2
    ],
    "io_out": [
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(sub_n(input,2)),5)))"
  },
  {
    "input": "input : list = [-3, 4, 0, -1, -1]\noutput : list = [-9, 27, 36, 36, 54]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n([-3, 4, 0, -1, -1],-3),-3)),13),3)",
    "io_inp": [
      -3,
      4,
      0,
      -1,
      -1
    ],
    "io_out": [
      -9,
      27,
      36,
      36,
      54
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n(input,-3),-3)),13),3)"
  },
  {
    "input": "input : list = [2, -3, -2, 0]\noutput : list = [-8, -6, -2, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(add_n([2, -3, -2, 0],-5),2)),-4),-4)",
    "io_inp": [
      2,
      -3,
      -2,
      0
    ],
    "io_out": [
      -8,
      -6,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(add_n(input,-5),2)),-4),-4)"
  },
  {
    "input": "input : list = [-1, -2, 1, 1]\noutput : list = [3, 3, 1, 0]",
    "output": "generated_output : list = sub_n(sort_des([-1, -2, 1, 1]),-2)",
    "io_inp": [
      -1,
      -2,
      1,
      1
    ],
    "io_out": [
      3,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [5, 3, -1, 5, 4]\noutput : list = [-1, 3, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 3, -1, 5, 4])",
    "io_inp": [
      5,
      3,
      -1,
      5,
      4
    ],
    "io_out": [
      -1,
      3,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [6, 9]",
    "output": "generated_output : list = mul_n([-2, -3],-3)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -2, -5, -2, -3, -5]\noutput : list = [12, 12, 12, 16, 24, 24]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(mul_n([-2, -2, -5, -2, -3, -5],-4)),1),3))",
    "io_inp": [
      -2,
      -2,
      -5,
      -2,
      -3,
      -5
    ],
    "io_out": [
      12,
      12,
      12,
      16,
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(mul_n(input,-4)),1),3))"
  },
  {
    "input": "input : list = [5, -5, 0, -1, 1]\noutput : list = [-11, -7, -6, -5, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(sub_n([5, -5, 0, -1, 1],2),16)),4))",
    "io_inp": [
      5,
      -5,
      0,
      -1,
      1
    ],
    "io_out": [
      -11,
      -7,
      -6,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(sub_n(input,2),16)),4))"
  },
  {
    "input": "input : list = [-4, 4, -2, 2, -4, -3]\noutput : list = [16, -16, 8, -8, 16, 12]",
    "output": "generated_output : list = mul_n([-4, 4, -2, 2, -4, -3],-4)",
    "io_inp": [
      -4,
      4,
      -2,
      2,
      -4,
      -3
    ],
    "io_out": [
      16,
      -16,
      8,
      -8,
      16,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 4, -1, 3, 5, -5]\noutput : list = [-5, 5, 3, -1, 4, -1]",
    "output": "generated_output : list = mul_n(reverse([-1, 4, -1, 3, 5, -5]),1)",
    "io_inp": [
      -1,
      4,
      -1,
      3,
      5,
      -5
    ],
    "io_out": [
      -5,
      5,
      3,
      -1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [-4, 5, 1, 3, 1, 4]\noutput : list = [10, 9, 8, 6]",
    "output": "generated_output : list = take(take(add_n(take(sort_des([-4, 5, 1, 3, 1, 4]),4),5),23),14)",
    "io_inp": [
      -4,
      5,
      1,
      3,
      1,
      4
    ],
    "io_out": [
      10,
      9,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(sort_des(input),4),5),23),14)"
  },
  {
    "input": "input : list = [-5, -5, -1, -4, 2, -1]\noutput : list = [-10, -10, -9, -6, -6, -3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(take(add_n([-5, -5, -1, -4, 2, -1],-5),28),2)),2)",
    "io_inp": [
      -5,
      -5,
      -1,
      -4,
      2,
      -1
    ],
    "io_out": [
      -10,
      -10,
      -9,
      -6,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(take(add_n(input,-5),28),2)),2)"
  },
  {
    "input": "input : list = [-1, 0, 1, 2, 5, 2]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = take([-1, 0, 1, 2, 5, 2],3)",
    "io_inp": [
      -1,
      0,
      1,
      2,
      5,
      2
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, 3, -5, -1, 4, -4]\noutput : list = [3, 2, -1, -4, -5, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(reverse([2, 3, -5, -1, 4, -4]),-1),26),2))",
    "io_inp": [
      2,
      3,
      -5,
      -1,
      4,
      -4
    ],
    "io_out": [
      3,
      2,
      -1,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(reverse(input),-1),26),2))"
  },
  {
    "input": "input : list = [-5, 4, -5, 2]\noutput : list = [-5, -15, -50, -50]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n([-5, 4, -5, 2],5)))),5)",
    "io_inp": [
      -5,
      4,
      -5,
      2
    ],
    "io_out": [
      -5,
      -15,
      -50,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(sub_n(input,5)))),5)"
  },
  {
    "input": "input : list = [-2, -5, 4, -1, 2, 0]\noutput : list = [3, 0, 9, 4, 7, 5]",
    "output": "generated_output : list = add_n([-2, -5, 4, -1, 2, 0],5)",
    "io_inp": [
      -2,
      -5,
      4,
      -1,
      2,
      0
    ],
    "io_out": [
      3,
      0,
      9,
      4,
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, 2, 4, 3]\noutput : list = [2, 3, 4]",
    "output": "generated_output : list = sort_asc(reverse(drop([5, 2, 4, 3],1)))",
    "io_inp": [
      5,
      2,
      4,
      3
    ],
    "io_out": [
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, 1, -5, 1, 5]\noutput : list = [-3, 2, -4, 2, 6]",
    "output": "generated_output : list = add_n([-4, 1, -5, 1, 5],1)",
    "io_inp": [
      -4,
      1,
      -5,
      1,
      5
    ],
    "io_out": [
      -3,
      2,
      -4,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-1, -4, 3, 3]\noutput : list = [-8, -5, -1, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_des([-1, -4, 3, 3]))),4))",
    "io_inp": [
      -1,
      -4,
      3,
      3
    ],
    "io_out": [
      -8,
      -5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_asc(sort_des(input))),4))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [50, 25]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(add_n([0, 5],-5)),5),8),-5)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      50,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(add_n(input,-5)),5),8),-5)"
  },
  {
    "input": "input : list = [3, 2, -1, -5, -4, -3]\noutput : list = [16, 12, 8, 0, -12, -16]",
    "output": "generated_output : list = sort_des(mul_n(reverse(sub_n(sort_des([3, 2, -1, -5, -4, -3]),-1)),-4))",
    "io_inp": [
      3,
      2,
      -1,
      -5,
      -4,
      -3
    ],
    "io_out": [
      16,
      12,
      8,
      0,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(sub_n(sort_des(input),-1)),-4))"
  },
  {
    "input": "input : list = [5, 2, 0, 2, -4, -5]\noutput : list = [-120, -48, 0, -48, 96, 120]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(reverse([5, 2, 0, 2, -4, -5]),-2)),-3),-4)",
    "io_inp": [
      5,
      2,
      0,
      2,
      -4,
      -5
    ],
    "io_out": [
      -120,
      -48,
      0,
      -48,
      96,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(reverse(input),-2)),-3),-4)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [10, 6]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([1, 5]),-5))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      10,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [4, -3, 3, 2, 0]\noutput : list = [1, 4, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(add_n([4, -3, 3, 2, 0],-1),-5)),7))",
    "io_inp": [
      4,
      -3,
      3,
      2,
      0
    ],
    "io_out": [
      1,
      4,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(add_n(input,-1),-5)),7))"
  },
  {
    "input": "input : list = [-4, 1, 1, -4]\noutput : list = [-35, -35, -10, -10]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(reverse(add_n([-4, 1, 1, -4],1)),-4),5))",
    "io_inp": [
      -4,
      1,
      1,
      -4
    ],
    "io_out": [
      -35,
      -35,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(reverse(add_n(input,1)),-4),5))"
  },
  {
    "input": "input : list = [1, -2, -1, -2, -2, -5]\noutput : list = [-2, -8, -11, -11, -11, -20]",
    "output": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_des([1, -2, -1, -2, -2, -5]),3))),-5)",
    "io_inp": [
      1,
      -2,
      -1,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -8,
      -11,
      -11,
      -11,
      -20
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(mul_n(sort_des(input),3))),-5)"
  },
  {
    "input": "input : list = [0, 3, -5, 0]\noutput : list = [16, -4, -4, -16]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc([0, 3, -5, 0]),-4),-2),-2)",
    "io_inp": [
      0,
      3,
      -5,
      0
    ],
    "io_out": [
      16,
      -4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(input),-4),-2),-2)"
  },
  {
    "input": "input : list = [-3, -1, -3, -5]\noutput : list = [10, 8, 8, 6]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_des([-3, -1, -3, -5])),-1)),-5)",
    "io_inp": [
      -3,
      -1,
      -3,
      -5
    ],
    "io_out": [
      10,
      8,
      8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_des(input)),-1)),-5)"
  },
  {
    "input": "input : list = [0, 3, -2, -3, -2, 0]\noutput : list = [-6, -9, -6, 0]",
    "output": "generated_output : list = mul_n(drop([0, 3, -2, -3, -2, 0],2),3)",
    "io_inp": [
      0,
      3,
      -2,
      -3,
      -2,
      0
    ],
    "io_out": [
      -6,
      -9,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),3)"
  },
  {
    "input": "input : list = [-5, 5, 5, 1, -4]\noutput : list = [-4, -4, -8, -13, -14]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(add_n([-5, 5, 5, 1, -4],-4),5))),34)",
    "io_inp": [
      -5,
      5,
      5,
      1,
      -4
    ],
    "io_out": [
      -4,
      -4,
      -8,
      -13,
      -14
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(add_n(input,-4),5))),34)"
  },
  {
    "input": "input : list = [0, 4, 0, 2, 4]\noutput : list = [6, 10, 6, 8, 10]",
    "output": "generated_output : list = take(take(sub_n(add_n(add_n([0, 4, 0, 2, 4],1),1),-4),35),45)",
    "io_inp": [
      0,
      4,
      0,
      2,
      4
    ],
    "io_out": [
      6,
      10,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(add_n(input,1),1),-4),35),45)"
  },
  {
    "input": "input : list = [4, -5, -1, -5]\noutput : list = [-2, -2, 2, 7]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc([4, -5, -1, -5]),4),-5),-1),-3)",
    "io_inp": [
      4,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -2,
      -2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sub_n(sort_asc(input),4),-5),-1),-3)"
  },
  {
    "input": "input : list = [1, 3, 3, 4, -1, 4]\noutput : list = [-1, 1, 3, 3, 4, 4]",
    "output": "generated_output : list = sort_asc([1, 3, 3, 4, -1, 4])",
    "io_inp": [
      1,
      3,
      3,
      4,
      -1,
      4
    ],
    "io_out": [
      -1,
      1,
      3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 3, 1, -3]\noutput : list = [-4, 0, 2, 2]",
    "output": "generated_output : list = take(sort_asc(add_n(take(add_n([3, 3, 1, -3],1),13),-2)),43)",
    "io_inp": [
      3,
      3,
      1,
      -3
    ],
    "io_out": [
      -4,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(take(add_n(input,1),13),-2)),43)"
  },
  {
    "input": "input : list = [3, 5, 0, 0, 5]\noutput : list = [1, 3, -2, -2, 3]",
    "output": "generated_output : list = add_n([3, 5, 0, 0, 5],-2)",
    "io_inp": [
      3,
      5,
      0,
      0,
      5
    ],
    "io_out": [
      1,
      3,
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [2, 1, -5]\noutput : list = [-5, 1, 2]",
    "output": "generated_output : list = reverse([2, 1, -5])",
    "io_inp": [
      2,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 5, -4, 2, 1]\noutput : list = [5, 2, 2, 1, -4]",
    "output": "generated_output : list = sort_des([2, 5, -4, 2, 1])",
    "io_inp": [
      2,
      5,
      -4,
      2,
      1
    ],
    "io_out": [
      5,
      2,
      2,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [1, -1, -4]",
    "output": "generated_output : list = mul_n(sort_des([1, -4, -1]),1)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),1)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = drop([3, -2, -5],1)",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_des(sort_des([4, 5])),23)),-3)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_des(sort_des(input)),23)),-3)"
  },
  {
    "input": "input : list = [4, -1, -2, -4, -1]\noutput : list = [10, 5, 5, 4, 2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sub_n(add_n([4, -1, -2, -4, -1],2),1)),-5))",
    "io_inp": [
      4,
      -1,
      -2,
      -4,
      -1
    ],
    "io_out": [
      10,
      5,
      5,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sub_n(add_n(input,2),1)),-5))"
  },
  {
    "input": "input : list = [-3, -2, 5, 3]\noutput : list = [-3, 4, 2]",
    "output": "generated_output : list = sub_n(drop([-3, -2, 5, 3],1),1)",
    "io_inp": [
      -3,
      -2,
      5,
      3
    ],
    "io_out": [
      -3,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [-1, -7, -8]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(reverse([-3, -2, 4])),-5)),8)",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      -1,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(reverse(input)),-5)),8)"
  },
  {
    "input": "input : list = [4, -5, 0, -1, -5]\noutput : list = [4, 0, -1, -5, -5]",
    "output": "generated_output : list = sort_des([4, -5, 0, -1, -5])",
    "io_inp": [
      4,
      -5,
      0,
      -1,
      -5
    ],
    "io_out": [
      4,
      0,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [4, -2]",
    "output": "generated_output : list = add_n([1, -5],3)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [0, 5, -3]\noutput : list = [5, -3]",
    "output": "generated_output : list = drop([0, 5, -3],1)",
    "io_inp": [
      0,
      5,
      -3
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -1, 3, -1, -4]\noutput : list = [-28, -16, -16, -7, -4]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sub_n([-5, -1, 3, -1, -4],-1),-4),-3),-4))",
    "io_inp": [
      -5,
      -1,
      3,
      -1,
      -4
    ],
    "io_out": [
      -28,
      -16,
      -16,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(sub_n(sub_n(input,-1),-4),-3),-4))"
  },
  {
    "input": "input : list = [-2, -3, -1, 4]\noutput : list = [2, 1, 0, -5]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n([-2, -3, -1, 4],-2),3)),-1)",
    "io_inp": [
      -2,
      -3,
      -1,
      4
    ],
    "io_out": [
      2,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(input,-2),3)),-1)"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [-4, -1, -3]",
    "output": "generated_output : list = sub_n(mul_n([1, 4, 2],1),5)",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      -4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),5)"
  },
  {
    "input": "input : list = [4, 3, 4]\noutput : list = [-14, -12, -14]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n([4, 3, 4],4),-2),8),-2)",
    "io_inp": [
      4,
      3,
      4
    ],
    "io_out": [
      -14,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(input,4),-2),8),-2)"
  },
  {
    "input": "input : list = [4, 4, -2]\noutput : list = [8, -16, -16]",
    "output": "generated_output : list = mul_n(reverse([4, 4, -2]),-4)",
    "io_inp": [
      4,
      4,
      -2
    ],
    "io_out": [
      8,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [19, 24]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(mul_n([5, 4],5),13),1)),-1)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      19,
      24
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(mul_n(input,5),13),1)),-1)"
  },
  {
    "input": "input : list = [3, 4, -3, 0, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = add_n(sub_n(take(drop([3, 4, -3, 0, -4, -2],4),26),1),1)",
    "io_inp": [
      3,
      4,
      -3,
      0,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(drop(input,4),26),1),1)"
  },
  {
    "input": "input : list = [-5, 3, 5]\noutput : list = [10, 8, 0]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(reverse([-5, 3, 5])),14)),5)",
    "io_inp": [
      -5,
      3,
      5
    ],
    "io_out": [
      10,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(reverse(input)),14)),5)"
  },
  {
    "input": "input : list = [-2, 3, -2]\noutput : list = [16]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(take([-2, 3, -2],1),8),-3),-5),-4)",
    "io_inp": [
      -2,
      3,
      -2
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(take(input,1),8),-3),-5),-4)"
  },
  {
    "input": "input : list = [-4, 0, -5, 1, 4]\noutput : list = [12, 9, 3, 8, 4]",
    "output": "generated_output : list = sub_n(take(sub_n(reverse(add_n([-4, 0, -5, 1, 4],5)),-5),42),2)",
    "io_inp": [
      -4,
      0,
      -5,
      1,
      4
    ],
    "io_out": [
      12,
      9,
      3,
      8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(reverse(add_n(input,5)),-5),42),2)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [1, -4]",
    "output": "generated_output : list = take(mul_n(reverse([4, -1]),-1),18)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),-1),18)"
  },
  {
    "input": "input : list = [-4, 2, 0, -5, 4, -2]\noutput : list = [-7, -6, -4, -2, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n([-4, 2, 0, -5, 4, -2],-2))))",
    "io_inp": [
      -4,
      2,
      0,
      -5,
      4,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -4,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(input,-2))))"
  },
  {
    "input": "input : list = [3, -5, -4, -1, -3]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(take(sort_des(mul_n(drop([3, -5, -4, -1, -3],3),2)),35))",
    "io_inp": [
      3,
      -5,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(mul_n(drop(input,3),2)),35))"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-1, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc([-5, 2]),3)),1))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(add_n(sort_asc(input),3)),1))"
  },
  {
    "input": "input : list = [1, -3, 1]\noutput : list = [0, 4, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(add_n([1, -3, 1],3))),12))",
    "io_inp": [
      1,
      -3,
      1
    ],
    "io_out": [
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(add_n(input,3))),12))"
  },
  {
    "input": "input : list = [3, 0, 5]\noutput : list = [-12, 0, -20]",
    "output": "generated_output : list = take(reverse(reverse(take(mul_n([3, 0, 5],-4),10))),26)",
    "io_inp": [
      3,
      0,
      5
    ],
    "io_out": [
      -12,
      0,
      -20
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(take(mul_n(input,-4),10))),26)"
  },
  {
    "input": "input : list = [-4, 5, -3, -4, -2]\noutput : list = [10, 18]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n(drop([-4, 5, -3, -4, -2],3),-4),-2),36))",
    "io_inp": [
      -4,
      5,
      -3,
      -4,
      -2
    ],
    "io_out": [
      10,
      18
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(drop(input,3),-4),-2),36))"
  },
  {
    "input": "input : list = [1, 1, -1, 0]\noutput : list = [-7, -3, 1]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(drop(sort_des([1, 1, -1, 0]),1),-4),3))",
    "io_inp": [
      1,
      1,
      -1,
      0
    ],
    "io_out": [
      -7,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(drop(sort_des(input),1),-4),3))"
  },
  {
    "input": "input : list = [-5, -5, 1, 5, -1]\noutput : list = [10, -2]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(drop([-5, -5, 1, 5, -1],3),2),2),-4))",
    "io_inp": [
      -5,
      -5,
      1,
      5,
      -1
    ],
    "io_out": [
      10,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(drop(input,3),2),2),-4))"
  },
  {
    "input": "input : list = [-2, -5, 2, 1, -2, 4]\noutput : list = [4, 8, -20, -8]",
    "output": "generated_output : list = reverse(mul_n(take(take(take([-2, -5, 2, 1, -2, 4],4),9),15),4))",
    "io_inp": [
      -2,
      -5,
      2,
      1,
      -2,
      4
    ],
    "io_out": [
      4,
      8,
      -20,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(take(take(input,4),9),15),4))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(sort_asc([-1, -4]))),31))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(sort_asc(input))),31))"
  },
  {
    "input": "input : list = [0, -4, 0, -3]\noutput : list = [0, 0, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc([0, -4, 0, -3]))",
    "io_inp": [
      0,
      -4,
      0,
      -3
    ],
    "io_out": [
      0,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -4, 4, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_des(take([0, -4, 4, 0],1))",
    "io_inp": [
      0,
      -4,
      4,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(add_n([-1, -4],1),2)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(input,1),2)"
  },
  {
    "input": "input : list = [0, 4, 3, -4]\noutput : list = [0]",
    "output": "generated_output : list = take(take(reverse(mul_n(take([0, 4, 3, -4],1),5)),24),28)",
    "io_inp": [
      0,
      4,
      3,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(take(input,1),5)),24),28)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [15, 9]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(add_n([-3, -1],-4),-2),-3)))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      15,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(add_n(input,-4),-2),-3)))"
  },
  {
    "input": "input : list = [4, 1, 0, -3, 3]\noutput : list = [7, 6, 4, 3, 0]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(add_n([4, 1, 0, -3, 3],-1),-3))),1)",
    "io_inp": [
      4,
      1,
      0,
      -3,
      3
    ],
    "io_out": [
      7,
      6,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(add_n(input,-1),-3))),1)"
  },
  {
    "input": "input : list = [-3, 1, -3, 1]\noutput : list = [-15, -15, 5, 5]",
    "output": "generated_output : list = sort_asc(take(take(mul_n(add_n([-3, 1, -3, 1],2),-5),5),34))",
    "io_inp": [
      -3,
      1,
      -3,
      1
    ],
    "io_out": [
      -15,
      -15,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(add_n(input,2),-5),5),34))"
  },
  {
    "input": "input : list = [4, 4, -3, -2, -5, 3]\noutput : list = [-11, -11, -9, 1, 3, 7]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(add_n([4, 4, -3, -2, -5, 3],4)),-2),5))",
    "io_inp": [
      4,
      4,
      -3,
      -2,
      -5,
      3
    ],
    "io_out": [
      -11,
      -11,
      -9,
      1,
      3,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(add_n(input,4)),-2),5))"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [-2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([2, -2, 1]))",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 4, 0, -4]\noutput : list = [-4, 0, 0, 4]",
    "output": "generated_output : list = sort_asc([0, 4, 0, -4])",
    "io_inp": [
      0,
      4,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 4, 1, -3]\noutput : list = [-1, 3, 6, 4]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(reverse([2, 4, 1, -3]),-3),-4),14),1)",
    "io_inp": [
      2,
      4,
      1,
      -3
    ],
    "io_out": [
      -1,
      3,
      6,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(reverse(input),-3),-4),14),1)"
  },
  {
    "input": "input : list = [1, -3, -2, 1]\noutput : list = [3, -6]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(drop([1, -3, -2, 1],2))),29),3)",
    "io_inp": [
      1,
      -3,
      -2,
      1
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(drop(input,2))),29),3)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-21, -1]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n([0, -4],-5)),-1),1)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -21,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(input,-5)),-1),1)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = reverse([4, 0])",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 2, -4, -2, -5]\noutput : list = [-6, 3, 6, 12, 15]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(sort_asc([-1, 2, -4, -2, -5])),-3)))",
    "io_inp": [
      -1,
      2,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -6,
      3,
      6,
      12,
      15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(sort_asc(input)),-3)))"
  },
  {
    "input": "input : list = [5, -5, 5, -4, 1, 0]\noutput : list = [20, -20, 20, -16, 4, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse([5, -5, 5, -4, 1, 0]),4))",
    "io_inp": [
      5,
      -5,
      5,
      -4,
      1,
      0
    ],
    "io_out": [
      20,
      -20,
      20,
      -16,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),4))"
  },
  {
    "input": "input : list = [1, -4, -2, -4, 5, 2]\noutput : list = [-13, -7, -5, 1, 5, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_asc([1, -4, -2, -4, 5, 2]),-2),36)),3)",
    "io_inp": [
      1,
      -4,
      -2,
      -4,
      5,
      2
    ],
    "io_out": [
      -13,
      -7,
      -5,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(sort_asc(input),-2),36)),3)"
  },
  {
    "input": "input : list = [0, 4, 1, -5, -1, 3]\noutput : list = [-10, -6, -5, -4, -2, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(reverse([0, 4, 1, -5, -1, 3])),5),35))",
    "io_inp": [
      0,
      4,
      1,
      -5,
      -1,
      3
    ],
    "io_out": [
      -10,
      -6,
      -5,
      -4,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(reverse(input)),5),35))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-4, -8]",
    "output": "generated_output : list = sub_n([-1, -5],3)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, 2, -4, 1, 2, -4]\noutput : list = [-14, -8, -9, -14, -8, -15]",
    "output": "generated_output : list = sub_n(sub_n(reverse(take(add_n([-5, 2, -4, 1, 2, -4],-5),20)),3),2)",
    "io_inp": [
      -5,
      2,
      -4,
      1,
      2,
      -4
    ],
    "io_out": [
      -14,
      -8,
      -9,
      -14,
      -8,
      -15
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(take(add_n(input,-5),20)),3),2)"
  },
  {
    "input": "input : list = [4, -5, 0, -2]\noutput : list = [5, 1, -1, -4]",
    "output": "generated_output : list = sub_n(sub_n(take(take(sort_des([4, -5, 0, -2]),13),27),3),-4)",
    "io_inp": [
      4,
      -5,
      0,
      -2
    ],
    "io_out": [
      5,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(sort_des(input),13),27),3),-4)"
  },
  {
    "input": "input : list = [2, 3, 5, -4]\noutput : list = [5, 4]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(take([2, 3, 5, -4],2))),1),2)",
    "io_inp": [
      2,
      3,
      5,
      -4
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(take(input,2))),1),2)"
  },
  {
    "input": "input : list = [-3, 5, 4, 5, 4, -3]\noutput : list = [9, 8, 9, 8, 1]",
    "output": "generated_output : list = add_n(drop([-3, 5, 4, 5, 4, -3],1),4)",
    "io_inp": [
      -3,
      5,
      4,
      5,
      4,
      -3
    ],
    "io_out": [
      9,
      8,
      9,
      8,
      1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),4)"
  },
  {
    "input": "input : list = [-3, 5, 5]\noutput : list = [14, 14, -2]",
    "output": "generated_output : list = add_n(mul_n(reverse([-3, 5, 5]),2),4)",
    "io_inp": [
      -3,
      5,
      5
    ],
    "io_out": [
      14,
      14,
      -2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),2),4)"
  },
  {
    "input": "input : list = [-4, 3, -1]\noutput : list = [-11, -4, -8]",
    "output": "generated_output : list = sub_n(sub_n([-4, 3, -1],4),3)",
    "io_inp": [
      -4,
      3,
      -1
    ],
    "io_out": [
      -11,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),3)"
  },
  {
    "input": "input : list = [4, -2, 2, 0, -5, 2]\noutput : list = [12, 10, 10, 8, 6, 3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sub_n([4, -2, 2, 0, -5, 2],-3)),5)))",
    "io_inp": [
      4,
      -2,
      2,
      0,
      -5,
      2
    ],
    "io_out": [
      12,
      10,
      10,
      8,
      6,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(sub_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [0, -25]",
    "output": "generated_output : list = mul_n([0, -5],5)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      0,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, 2, 5]\noutput : list = [9]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(add_n(take([5, 2, 5],1),-4),-3)),-3)",
    "io_inp": [
      5,
      2,
      5
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(add_n(take(input,1),-4),-3)),-3)"
  },
  {
    "input": "input : list = [1, 4, -4, 5]\noutput : list = [5, -4, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, -4, 5])",
    "io_inp": [
      1,
      4,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, -5, 1, 1]\noutput : list = [-4, -2, -2, 0, 10]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(reverse([0, 2, -5, 1, 1])))),-2)",
    "io_inp": [
      0,
      2,
      -5,
      1,
      1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [17]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(take([4, -1, 3],1),3),1)),4)",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      17
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(take(input,1),3),1)),4)"
  },
  {
    "input": "input : list = [-5, -1, 5, 1]\noutput : list = [-7, -3, -1, 3]",
    "output": "generated_output : list = sort_asc(take(sub_n([-5, -1, 5, 1],2),13))",
    "io_inp": [
      -5,
      -1,
      5,
      1
    ],
    "io_out": [
      -7,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,2),13))"
  },
  {
    "input": "input : list = [3, 0, 2, -4]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = sort_asc(drop([3, 0, 2, -4],1))",
    "io_inp": [
      3,
      0,
      2,
      -4
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc([0, 1])",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -1, -5, -5, 3, 1]\noutput : list = [1, 3, -5, -5, -1, -3]",
    "output": "generated_output : list = reverse([-3, -1, -5, -5, 3, 1])",
    "io_inp": [
      -3,
      -1,
      -5,
      -5,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -5,
      -5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -5, -4, 2, 3]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(take([-4, -5, -4, 2, 3],2),-1)),34))",
    "io_inp": [
      -4,
      -5,
      -4,
      2,
      3
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(take(input,2),-1)),34))"
  },
  {
    "input": "input : list = [4, -5, 4, -5, 2, -4]\noutput : list = [20, -8, 16]",
    "output": "generated_output : list = sub_n(drop(sub_n(mul_n(drop([4, -5, 4, -5, 2, -4],2),-4),-2),1),2)",
    "io_inp": [
      4,
      -5,
      4,
      -5,
      2,
      -4
    ],
    "io_out": [
      20,
      -8,
      16
    ],
    "output_masked": "generated_output : list = sub_n(drop(sub_n(mul_n(drop(input,2),-4),-2),1),2)"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [-2, 2, 6]",
    "output": "generated_output : list = mul_n(add_n([-3, -1, 1],2),2)",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),2)"
  },
  {
    "input": "input : list = [-1, 2, 5, 1]\noutput : list = [15, 0, -15, 5]",
    "output": "generated_output : list = mul_n(sub_n(take(take(sub_n([-1, 2, 5, 1],5),16),29),-3),-5)",
    "io_inp": [
      -1,
      2,
      5,
      1
    ],
    "io_out": [
      15,
      0,
      -15,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(take(sub_n(input,5),16),29),-3),-5)"
  },
  {
    "input": "input : list = [-5, -5, 4, 1]\noutput : list = [-4, -4, 5, 2]",
    "output": "generated_output : list = add_n(sub_n([-5, -5, 4, 1],2),3)",
    "io_inp": [
      -5,
      -5,
      4,
      1
    ],
    "io_out": [
      -4,
      -4,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),3)"
  },
  {
    "input": "input : list = [-1, 1, 5, 2]\noutput : list = [5, 2, 1, -1]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(sort_asc([-1, 1, 5, 2])))),48)",
    "io_inp": [
      -1,
      1,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(sort_asc(input)))),48)"
  },
  {
    "input": "input : list = [-2, 3, 5]\noutput : list = [-25, -5, 3]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n([-2, 3, 5],-4)),4)),1)",
    "io_inp": [
      -2,
      3,
      5
    ],
    "io_out": [
      -25,
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(add_n(input,-4)),4)),1)"
  },
  {
    "input": "input : list = [5, 0, -3, -4]\noutput : list = [9, -6, -15, -18]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(sub_n([5, 0, -3, -4],2),13))),3)",
    "io_inp": [
      5,
      0,
      -3,
      -4
    ],
    "io_out": [
      9,
      -6,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(sub_n(input,2),13))),3)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-8, 1]",
    "output": "generated_output : list = add_n([-5, 4],-3)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, -3, -3, -4, 5]\noutput : list = [10, 7, 2, 2, 1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_des([2, -3, -3, -4, 5]),5))))",
    "io_inp": [
      2,
      -3,
      -3,
      -4,
      5
    ],
    "io_out": [
      10,
      7,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = reverse(sub_n(take(sort_asc(add_n([1, 2],-1)),17),2))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_asc(add_n(input,-1)),17),2))"
  },
  {
    "input": "input : list = [4, -2, -1, 0, -3, 1]\noutput : list = [4, 1, 0, -1, -2, -3]",
    "output": "generated_output : list = sort_des([4, -2, -1, 0, -3, 1])",
    "io_inp": [
      4,
      -2,
      -1,
      0,
      -3,
      1
    ],
    "io_out": [
      4,
      1,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [7, 4]",
    "output": "generated_output : list = sub_n(sub_n(take(add_n(sub_n([1, -2],-3),4),6),-1),2)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(add_n(sub_n(input,-3),4),6),-1),2)"
  },
  {
    "input": "input : list = [-2, 4, 1, 2, 4]\noutput : list = [4, 4, 2, 1, -2]",
    "output": "generated_output : list = sort_des([-2, 4, 1, 2, 4])",
    "io_inp": [
      -2,
      4,
      1,
      2,
      4
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 0, 0, -2, 4]\noutput : list = [4, 0, 0, -6, -8]",
    "output": "generated_output : list = sort_des(mul_n([3, 0, 0, -2, 4],-2))",
    "io_inp": [
      3,
      0,
      0,
      -2,
      4
    ],
    "io_out": [
      4,
      0,
      0,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-2))"
  },
  {
    "input": "input : list = [0, 4, -2, 4, 0]\noutput : list = [-20, -20, 0, 0, 10]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(sort_asc([0, 4, -2, 4, 0]))),15),-5)",
    "io_inp": [
      0,
      4,
      -2,
      4,
      0
    ],
    "io_out": [
      -20,
      -20,
      0,
      0,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(sort_asc(input))),15),-5)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-28, -28]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(sort_asc([-1, -1])),4),5),3)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -28,
      -28
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(sort_asc(input)),4),5),3)"
  },
  {
    "input": "input : list = [5, 3, 5, 3]\noutput : list = [14, 24, 14, 24]",
    "output": "generated_output : list = add_n(mul_n(reverse([5, 3, 5, 3]),5),-1)",
    "io_inp": [
      5,
      3,
      5,
      3
    ],
    "io_out": [
      14,
      24,
      14,
      24
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),5),-1)"
  },
  {
    "input": "input : list = [-4, -4, 1, -5, -3, 1]\noutput : list = [-5, -4, -4, -3, 1, 1]",
    "output": "generated_output : list = reverse(sort_des([-4, -4, 1, -5, -3, 1]))",
    "io_inp": [
      -4,
      -4,
      1,
      -5,
      -3,
      1
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 0, -1, 0, 0, 0]\noutput : list = [-3, -1, 0, 0, 0, 0]",
    "output": "generated_output : list = sort_asc([-3, 0, -1, 0, 0, 0])",
    "io_inp": [
      -3,
      0,
      -1,
      0,
      0,
      0
    ],
    "io_out": [
      -3,
      -1,
      0,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 0, 3, -5]\noutput : list = [0, 5, 5, 8]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n(reverse([0, 0, 3, -5]),5))))",
    "io_inp": [
      0,
      0,
      3,
      -5
    ],
    "io_out": [
      0,
      5,
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-3, 5, 4, -5]\noutput : list = [8, 7, -2]",
    "output": "generated_output : list = add_n(drop([-3, 5, 4, -5],1),3)",
    "io_inp": [
      -3,
      5,
      4,
      -5
    ],
    "io_out": [
      8,
      7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [2, 1, 5, -4]\noutput : list = [-4, -2, -10, 8]",
    "output": "generated_output : list = mul_n([2, 1, 5, -4],-2)",
    "io_inp": [
      2,
      1,
      5,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 2, 2]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(take(take([4, 2, 2],1),8))",
    "io_inp": [
      4,
      2,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,1),8))"
  },
  {
    "input": "input : list = [2, -4, 0, -4]\noutput : list = [10]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(take([2, -4, 0, -4],1))),-5),-3)",
    "io_inp": [
      2,
      -4,
      0,
      -4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(take(input,1))),-5),-3)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(add_n(sub_n([1, 0],2),2))),-2)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(add_n(sub_n(input,2),2))),-2)"
  },
  {
    "input": "input : list = [4, 3, -2]\noutput : list = [-2, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 3, -2])",
    "io_inp": [
      4,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, -5]\noutput : list = [5, -5]",
    "output": "generated_output : list = drop([-2, 5, -5],1)",
    "io_inp": [
      -2,
      5,
      -5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -5, 0, 1, 0, -5]\noutput : list = [-7, -2, -1, -2, -7]",
    "output": "generated_output : list = take(add_n(take(add_n(drop([-5, -5, 0, 1, 0, -5],1),-4),12),2),44)",
    "io_inp": [
      -5,
      -5,
      0,
      1,
      0,
      -5
    ],
    "io_out": [
      -7,
      -2,
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(drop(input,1),-4),12),2),44)"
  },
  {
    "input": "input : list = [5, 4, 3, 5]\noutput : list = [-14, -14, -12, -10]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(mul_n([5, 4, 3, 5],-2)),-4)))",
    "io_inp": [
      5,
      4,
      3,
      5
    ],
    "io_out": [
      -14,
      -14,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(mul_n(input,-2)),-4)))"
  },
  {
    "input": "input : list = [-2, -5, 2, -4, -3, 5]\noutput : list = [0, -6]",
    "output": "generated_output : list = take(add_n(take(mul_n(take([-2, -5, 2, -4, -3, 5],2),2),31),4),49)",
    "io_inp": [
      -2,
      -5,
      2,
      -4,
      -3,
      5
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(take(input,2),2),31),4),49)"
  },
  {
    "input": "input : list = [5, 4, 3, 3, 4, 5]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = take(take(take(take(take([5, 4, 3, 3, 4, 5],3),14),33),30),42)",
    "io_inp": [
      5,
      4,
      3,
      3,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = take(take(take(take(take(input,3),14),33),30),42)"
  },
  {
    "input": "input : list = [-2, -5, -2]\noutput : list = [0]",
    "output": "generated_output : list = take(sub_n(take(take([-2, -5, -2],1),18),-2),6)",
    "io_inp": [
      -2,
      -5,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(input,1),18),-2),6)"
  },
  {
    "input": "input : list = [-3, -5, 4]\noutput : list = [-20, -10, 25]",
    "output": "generated_output : list = take(sort_asc(mul_n(take(add_n([-3, -5, 4],1),11),5)),37)",
    "io_inp": [
      -3,
      -5,
      4
    ],
    "io_out": [
      -20,
      -10,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(take(add_n(input,1),11),5)),37)"
  },
  {
    "input": "input : list = [3, 1, 0, 2, 4]\noutput : list = [10, 9, 8, 7, 6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sub_n([3, 1, 0, 2, 4],-1),-5)))",
    "io_inp": [
      3,
      1,
      0,
      2,
      4
    ],
    "io_out": [
      10,
      9,
      8,
      7,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sub_n(input,-1),-5)))"
  },
  {
    "input": "input : list = [4, 0, -3, 5]\noutput : list = [-3, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des([4, 0, -3, 5])),19))",
    "io_inp": [
      4,
      0,
      -3,
      5
    ],
    "io_out": [
      -3,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(input)),19))"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [6, 5, 4]",
    "output": "generated_output : list = add_n(take(sub_n(add_n(add_n([1, 0, -1],-2),5),-5),3),-3)",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(add_n(add_n(input,-2),5),-5),3),-3)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [-15, -15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(sort_des([5, 5]),9))),-3)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(sort_des(input),9))),-3)"
  },
  {
    "input": "input : list = [3, -5, -3, -3, 5]\noutput : list = [6, -10, -6, -6, 10]",
    "output": "generated_output : list = mul_n([3, -5, -3, -3, 5],2)",
    "io_inp": [
      3,
      -5,
      -3,
      -3,
      5
    ],
    "io_out": [
      6,
      -10,
      -6,
      -6,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, -1, -1, -2]\noutput : list = [8, 9]",
    "output": "generated_output : list = add_n(add_n(sort_asc(add_n(drop([-4, -1, -1, -2],2),4)),1),5)",
    "io_inp": [
      -4,
      -1,
      -1,
      -2
    ],
    "io_out": [
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(add_n(drop(input,2),4)),1),5)"
  },
  {
    "input": "input : list = [-3, 1, 2, -2, -4, 0]\noutput : list = [0, -4, -2, 2, 1, -3]",
    "output": "generated_output : list = reverse([-3, 1, 2, -2, -4, 0])",
    "io_inp": [
      -3,
      1,
      2,
      -2,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      -2,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, 1, -5, 1, 3]\noutput : list = [3, -18, -6, -24, -6, 0]",
    "output": "generated_output : list = add_n(add_n(take(mul_n(mul_n([4, -3, 1, -5, 1, 3],-3),-1),19),-5),-4)",
    "io_inp": [
      4,
      -3,
      1,
      -5,
      1,
      3
    ],
    "io_out": [
      3,
      -18,
      -6,
      -24,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(mul_n(mul_n(input,-3),-1),19),-5),-4)"
  },
  {
    "input": "input : list = [-5, -4, 5]\noutput : list = [-48, -30, 132]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n([-5, -4, 5],2),-3),-3),3),2)",
    "io_inp": [
      -5,
      -4,
      5
    ],
    "io_out": [
      -48,
      -30,
      132
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(add_n(input,2),-3),-3),3),2)"
  },
  {
    "input": "input : list = [-1, -1, 4, 0]\noutput : list = [-1, 9, 1]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(take(drop([-1, -1, 4, 0],1),15),2),1),-2)",
    "io_inp": [
      -1,
      -1,
      4,
      0
    ],
    "io_out": [
      -1,
      9,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(take(drop(input,1),15),2),1),-2)"
  },
  {
    "input": "input : list = [4, -2, 3]\noutput : list = [-52, 20, -40]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([4, -2, 3],3),-1),-4)",
    "io_inp": [
      4,
      -2,
      3
    ],
    "io_out": [
      -52,
      20,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,3),-1),-4)"
  },
  {
    "input": "input : list = [1, -2, 2, 5, -1]\noutput : list = [-2, -1, 1, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse([1, -2, 2, 5, -1]))",
    "io_inp": [
      1,
      -2,
      2,
      5,
      -1
    ],
    "io_out": [
      -2,
      -1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-4, -3, 3, -2]\noutput : list = [-3, 2, 3, 4]",
    "output": "generated_output : list = reverse(mul_n(reverse(take(sort_des([-4, -3, 3, -2]),10)),-1))",
    "io_inp": [
      -4,
      -3,
      3,
      -2
    ],
    "io_out": [
      -3,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(take(sort_des(input),10)),-1))"
  },
  {
    "input": "input : list = [5, -5, 0, -4]\noutput : list = [5, -5, 0, -4]",
    "output": "generated_output : list = take(take(reverse(reverse([5, -5, 0, -4])),5),24)",
    "io_inp": [
      5,
      -5,
      0,
      -4
    ],
    "io_out": [
      5,
      -5,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(input)),5),24)"
  },
  {
    "input": "input : list = [-3, 4, 3, 5]\noutput : list = [7, 6, 5, -1]",
    "output": "generated_output : list = add_n(sort_des([-3, 4, 3, 5]),2)",
    "io_inp": [
      -3,
      4,
      3,
      5
    ],
    "io_out": [
      7,
      6,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [3, -1, 1, 4, -2, -1]\noutput : list = [1, 2, 2, 4, 6, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sub_n([3, -1, 1, 4, -2, -1],-3)))))",
    "io_inp": [
      3,
      -1,
      1,
      4,
      -2,
      -1
    ],
    "io_out": [
      1,
      2,
      2,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [9, 7]",
    "output": "generated_output : list = add_n(sort_des(sort_des([2, 4])),5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(input)),5)"
  },
  {
    "input": "input : list = [2, 5, -1, 2, 5]\noutput : list = [20, -40, -40, -100, -100]",
    "output": "generated_output : list = take(mul_n(mul_n(reverse(sort_des([2, 5, -1, 2, 5])),-5),4),5)",
    "io_inp": [
      2,
      5,
      -1,
      2,
      5
    ],
    "io_out": [
      20,
      -40,
      -40,
      -100,
      -100
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(reverse(sort_des(input)),-5),4),5)"
  },
  {
    "input": "input : list = [-1, 4, -1, 2, 2]\noutput : list = [1, 1, 4, 4, 6]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(sort_asc([-1, 4, -1, 2, 2]),1),1),35),2)",
    "io_inp": [
      -1,
      4,
      -1,
      2,
      2
    ],
    "io_out": [
      1,
      1,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(sort_asc(input),1),1),35),2)"
  },
  {
    "input": "input : list = [0, 4, 4, -4, 3, 1]\noutput : list = [5, 9, 9, 1, 8, 6]",
    "output": "generated_output : list = sub_n([0, 4, 4, -4, 3, 1],-5)",
    "io_inp": [
      0,
      4,
      4,
      -4,
      3,
      1
    ],
    "io_out": [
      5,
      9,
      9,
      1,
      8,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = drop([-3, -4, -1],1)",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3, 1]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = reverse([3, 3, 1])",
    "io_inp": [
      3,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, -1, -4]\noutput : list = [-3, 18, 3, -6]",
    "output": "generated_output : list = take(sub_n(mul_n(take(add_n([-3, 4, -1, -4],3),17),3),3),5)",
    "io_inp": [
      -3,
      4,
      -1,
      -4
    ],
    "io_out": [
      -3,
      18,
      3,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(add_n(input,3),17),3),3),5)"
  },
  {
    "input": "input : list = [4, -4, -3]\noutput : list = [-60, -45, 60]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(mul_n([4, -4, -3],1),14),5),3))",
    "io_inp": [
      4,
      -4,
      -3
    ],
    "io_out": [
      -60,
      -45,
      60
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(mul_n(input,1),14),5),3))"
  },
  {
    "input": "input : list = [1, -1, -2, -2]\noutput : list = [-10, -10, -9]",
    "output": "generated_output : list = reverse(sub_n(drop(sub_n(sub_n([1, -1, -2, -2],2),4),1),2))",
    "io_inp": [
      1,
      -1,
      -2,
      -2
    ],
    "io_out": [
      -10,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(drop(sub_n(sub_n(input,2),4),1),2))"
  },
  {
    "input": "input : list = [-5, -5, -3, 3]\noutput : list = [-1, -7, -9, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([-5, -5, -3, 3])),4)",
    "io_inp": [
      -5,
      -5,
      -3,
      3
    ],
    "io_out": [
      -1,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-1, 2, 2, 3, 2]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sub_n(take(mul_n(take(drop([-1, 2, 2, 3, 2],3),7),-2),8),1)",
    "io_inp": [
      -1,
      2,
      2,
      3,
      2
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(drop(input,3),7),-2),8),1)"
  },
  {
    "input": "input : list = [-2, -4, -4, -5]\noutput : list = [40, 80, 80, 100]",
    "output": "generated_output : list = mul_n(mul_n([-2, -4, -4, -5],-5),4)",
    "io_inp": [
      -2,
      -4,
      -4,
      -5
    ],
    "io_out": [
      40,
      80,
      80,
      100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-5),4)"
  },
  {
    "input": "input : list = [-5, -4, -3, 5, 4]\noutput : list = [-4, -3, -2, 5, 6]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n([-5, -4, -3, 5, 4],1)),-2)",
    "io_inp": [
      -5,
      -4,
      -3,
      5,
      4
    ],
    "io_out": [
      -4,
      -3,
      -2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(input,1)),-2)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-28, -32]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(sub_n([-2, -1],-4),-3),2),-4))",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -28,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(sub_n(input,-4),-3),2),-4))"
  },
  {
    "input": "input : list = [1, 5, -2]\noutput : list = [-11]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(take([1, 5, -2],1),-4)),5),2)",
    "io_inp": [
      1,
      5,
      -2
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(take(input,1),-4)),5),2)"
  },
  {
    "input": "input : list = [-3, -3, -3, -5, -4, 4]\noutput : list = [8, 1, 1, 1, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(sub_n([-3, -3, -3, -5, -4, 4],-4)))))",
    "io_inp": [
      -3,
      -3,
      -3,
      -5,
      -4,
      4
    ],
    "io_out": [
      8,
      1,
      1,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [2, 1, 5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_des(take([2, 1, 5],1)))))",
    "io_inp": [
      2,
      1,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [5, -4, 2, -2, 4]\noutput : list = [15, -3, 9, -9, 18]",
    "output": "generated_output : list = mul_n(take(add_n(reverse([5, -4, 2, -2, 4]),1),21),3)",
    "io_inp": [
      5,
      -4,
      2,
      -2,
      4
    ],
    "io_out": [
      15,
      -3,
      9,
      -9,
      18
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(reverse(input),1),21),3)"
  },
  {
    "input": "input : list = [-5, -2, 4, 1]\noutput : list = [-10, -7, -4, -1]",
    "output": "generated_output : list = take(add_n(take(sort_asc(sort_des([-5, -2, 4, 1])),12),-5),46)",
    "io_inp": [
      -5,
      -2,
      4,
      1
    ],
    "io_out": [
      -10,
      -7,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(sort_des(input)),12),-5),46)"
  },
  {
    "input": "input : list = [2, 2, -2, -3, 2]\noutput : list = [-6, -4, 4, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(mul_n([2, 2, -2, -3, 2],2)))))",
    "io_inp": [
      2,
      2,
      -2,
      -3,
      2
    ],
    "io_out": [
      -6,
      -4,
      4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_des(mul_n(input,2)))))"
  },
  {
    "input": "input : list = [-2, -4, 2, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(take([-2, -4, 2, -1],1),2),1)))",
    "io_inp": [
      -2,
      -4,
      2,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(mul_n(take(input,1),2),1)))"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [-5, 0, -6]",
    "output": "generated_output : list = reverse(add_n([-4, 2, -3],-2))",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      -5,
      0,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 2, -5]\noutput : list = [-5, 3, 9]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(mul_n([-2, 2, -5],-2),1))))",
    "io_inp": [
      -2,
      2,
      -5
    ],
    "io_out": [
      -5,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(mul_n(input,-2),1))))"
  },
  {
    "input": "input : list = [-1, -5, -4, -1, -3, -2]\noutput : list = [-5, -4, -3, -2, -1, -1]",
    "output": "generated_output : list = sort_asc([-1, -5, -4, -1, -3, -2])",
    "io_inp": [
      -1,
      -5,
      -4,
      -1,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -3,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, -2, 5, -3, 3]\noutput : list = [-50, 20]",
    "output": "generated_output : list = drop(mul_n(mul_n(reverse(drop([2, 3, -2, 5, -3, 3],2)),-2),5),2)",
    "io_inp": [
      2,
      3,
      -2,
      5,
      -3,
      3
    ],
    "io_out": [
      -50,
      20
    ],
    "output_masked": "generated_output : list = drop(mul_n(mul_n(reverse(drop(input,2)),-2),5),2)"
  },
  {
    "input": "input : list = [5, 0, -1, 4]\noutput : list = [7, 2, 1, 6]",
    "output": "generated_output : list = sub_n([5, 0, -1, 4],-2)",
    "io_inp": [
      5,
      0,
      -1,
      4
    ],
    "io_out": [
      7,
      2,
      1,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [0, 4, -1]\noutput : list = [-1, 3, -2]",
    "output": "generated_output : list = add_n([0, 4, -1],-1)",
    "io_inp": [
      0,
      4,
      -1
    ],
    "io_out": [
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, 1, 3, 3, -4]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(drop(sort_asc(sub_n([1, 1, 3, 3, -4],-2)),3)))",
    "io_inp": [
      1,
      1,
      3,
      3,
      -4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(sort_asc(sub_n(input,-2)),3)))"
  },
  {
    "input": "input : list = [2, 2, -3, -2]\noutput : list = [-1, 0, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(drop([2, 2, -3, -2],1),2),28)))",
    "io_inp": [
      2,
      2,
      -3,
      -2
    ],
    "io_out": [
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(drop(input,1),2),28)))"
  },
  {
    "input": "input : list = [0, -1, 1]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = reverse(sort_asc([0, -1, 1]))",
    "io_inp": [
      0,
      -1,
      1
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [15, 21]",
    "output": "generated_output : list = mul_n(add_n(take(sub_n(sort_des([5, 3]),5),13),-5),-3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      15,
      21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sub_n(sort_des(input),5),13),-5),-3)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [-75, -30, 30]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sort_des([-3, 4, 0])),-2),3),5)",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      -75,
      -30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sort_des(input)),-2),3),5)"
  },
  {
    "input": "input : list = [-1, 1, -2, 0, -3]\noutput : list = [-1]",
    "output": "generated_output : list = take(take(sort_asc(take(take([-1, 1, -2, 0, -3],1),18)),37),14)",
    "io_inp": [
      -1,
      1,
      -2,
      0,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(take(take(input,1),18)),37),14)"
  },
  {
    "input": "input : list = [-4, -5, -5, 4, 1]\noutput : list = [3, 0, -5, -6, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(sort_asc([-4, -5, -5, 4, 1]),-2),27),-1))",
    "io_inp": [
      -4,
      -5,
      -5,
      4,
      1
    ],
    "io_out": [
      3,
      0,
      -5,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(sort_asc(input),-2),27),-1))"
  },
  {
    "input": "input : list = [-2, -2, 2]\noutput : list = [7, 3]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(drop([-2, -2, 2],1),10)),5),-1)",
    "io_inp": [
      -2,
      -2,
      2
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(drop(input,1),10)),5),-1)"
  },
  {
    "input": "input : list = [-5, 4, 3, 2, 3]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(sort_des(reverse(add_n(take([-5, 4, 3, 2, 3],1),1))))",
    "io_inp": [
      -5,
      4,
      3,
      2,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(add_n(take(input,1),1))))"
  },
  {
    "input": "input : list = [4, -4, -4, 1]\noutput : list = [8, -12, -12]",
    "output": "generated_output : list = reverse(drop(take(mul_n(sub_n([4, -4, -4, 1],-1),4),23),1))",
    "io_inp": [
      4,
      -4,
      -4,
      1
    ],
    "io_out": [
      8,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = reverse(drop(take(mul_n(sub_n(input,-1),4),23),1))"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_des([3, 3])",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, 2, 1, -4, -4]\noutput : list = [11, 11, -4, -7, 2, 11]",
    "output": "generated_output : list = add_n(take(add_n(reverse(mul_n([-4, -1, 2, 1, -4, -4],-3)),-2),6),1)",
    "io_inp": [
      -4,
      -1,
      2,
      1,
      -4,
      -4
    ],
    "io_out": [
      11,
      11,
      -4,
      -7,
      2,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(mul_n(input,-3)),-2),6),1)"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [-8, 2, 2]",
    "output": "generated_output : list = mul_n(reverse(sub_n(reverse([5, -5, -5]),-3)),-1)",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      -8,
      2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(reverse(input),-3)),-1)"
  },
  {
    "input": "input : list = [-5, 5, 5, -2, -3]\noutput : list = [5, 3, 2, -5, -5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_asc([-5, 5, 5, -2, -3])))),-1)",
    "io_inp": [
      -5,
      5,
      5,
      -2,
      -3
    ],
    "io_out": [
      5,
      3,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sort_asc(input)))),-1)"
  },
  {
    "input": "input : list = [-3, 5, 3, -1]\noutput : list = [8, 6, 2, 0]",
    "output": "generated_output : list = sort_des(add_n([-3, 5, 3, -1],3))",
    "io_inp": [
      -3,
      5,
      3,
      -1
    ],
    "io_out": [
      8,
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,3))"
  },
  {
    "input": "input : list = [-5, 5, 2, -2]\noutput : list = [-4, -1, 3, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_des([-5, 5, 2, -2]),-1))))",
    "io_inp": [
      -5,
      5,
      2,
      -2
    ],
    "io_out": [
      -4,
      -1,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_des(input),-1))))"
  },
  {
    "input": "input : list = [0, 4, -5, -5, 5]\noutput : list = [5, 4, 0, -5, -5]",
    "output": "generated_output : list = sort_des([0, 4, -5, -5, 5])",
    "io_inp": [
      0,
      4,
      -5,
      -5,
      5
    ],
    "io_out": [
      5,
      4,
      0,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, 3]\noutput : list = [-1]",
    "output": "generated_output : list = mul_n(drop(sub_n(reverse(mul_n([0, -1, 3],2)),1),2),1)",
    "io_inp": [
      0,
      -1,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = mul_n(drop(sub_n(reverse(mul_n(input,2)),1),2),1)"
  },
  {
    "input": "input : list = [-4, 1, 0]\noutput : list = [-6, -2, -1]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(sub_n([-4, 1, 0],3)),1))",
    "io_inp": [
      -4,
      1,
      0
    ],
    "io_out": [
      -6,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(sub_n(input,3)),1))"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [14, 14, -2]",
    "output": "generated_output : list = take(add_n(sort_des(sort_des(mul_n([-4, 0, -4],-4))),-2),44)",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      14,
      14,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_des(mul_n(input,-4))),-2),44)"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(add_n(sort_des(mul_n(take([3, -1, -4],1),-1)),5))",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(mul_n(take(input,1),-1)),5))"
  },
  {
    "input": "input : list = [5, -2, -3, -2, -3, -2]\noutput : list = [9, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(take([5, -2, -3, -2, -3, -2],2)))),-4)",
    "io_inp": [
      5,
      -2,
      -3,
      -2,
      -3,
      -2
    ],
    "io_out": [
      9,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(take(input,2)))),-4)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(take(take(sub_n(add_n([2, 5],-4),1),13),29),16)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(add_n(input,-4),1),13),29),16)"
  },
  {
    "input": "input : list = [-4, -1, 1, 1]\noutput : list = [15, 15, 9, 0]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-4, -1, 1, 1],-4),3))",
    "io_inp": [
      -4,
      -1,
      1,
      1
    ],
    "io_out": [
      15,
      15,
      9,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,-4),3))"
  },
  {
    "input": "input : list = [-5, 5, 2, -4]\noutput : list = [-5, 5]",
    "output": "generated_output : list = take([-5, 5, 2, -4],2)",
    "io_inp": [
      -5,
      5,
      2,
      -4
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, -2, -5, 1]\noutput : list = [-2, 4, 10, 16]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(reverse([4, -2, -5, 1]),-4),2)))",
    "io_inp": [
      4,
      -2,
      -5,
      1
    ],
    "io_out": [
      -2,
      4,
      10,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(reverse(input),-4),2)))"
  },
  {
    "input": "input : list = [-3, 5, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = drop([-3, 5, 1, 2],2)",
    "io_inp": [
      -3,
      5,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 0, -5, -5, -2, 5]\noutput : list = [1, 1, 2, 4, 6, 11]",
    "output": "generated_output : list = add_n(sub_n(sort_asc([-4, 0, -5, -5, -2, 5]),-5),1)",
    "io_inp": [
      -4,
      0,
      -5,
      -5,
      -2,
      5
    ],
    "io_out": [
      1,
      1,
      2,
      4,
      6,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(input),-5),1)"
  },
  {
    "input": "input : list = [0, 3, 1, -5, 5]\noutput : list = [4, 2, 0, -6]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(drop([0, 3, 1, -5, 5],1),2))),-1)",
    "io_inp": [
      0,
      3,
      1,
      -5,
      5
    ],
    "io_out": [
      4,
      2,
      0,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(drop(input,1),2))),-1)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(sort_des([1, -1])),1)))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [0, -5, 1, 0]\noutput : list = [-2, -7, -1, -2]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(sub_n([0, -5, 1, 0],-5)),4)),-3)",
    "io_inp": [
      0,
      -5,
      1,
      0
    ],
    "io_out": [
      -2,
      -7,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(sub_n(input,-5)),4)),-3)"
  },
  {
    "input": "input : list = [2, 5, 5, -1]\noutput : list = [-2, 4, 10, 10]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_asc(sort_asc([2, 5, 5, -1])),27),2))",
    "io_inp": [
      2,
      5,
      5,
      -1
    ],
    "io_out": [
      -2,
      4,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_asc(sort_asc(input)),27),2))"
  },
  {
    "input": "input : list = [3, 0, -4, -3, 4, 5]\noutput : list = [-15, -10, -5, 10, 25]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sort_des([3, 0, -4, -3, 4, 5]),2),35),5),-5)",
    "io_inp": [
      3,
      0,
      -4,
      -3,
      4,
      5
    ],
    "io_out": [
      -15,
      -10,
      -5,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sort_des(input),2),35),5),-5)"
  },
  {
    "input": "input : list = [3, -4, -2, 5]\noutput : list = [-19, -13, 2, 8]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse([3, -4, -2, 5]),-3),4),38))",
    "io_inp": [
      3,
      -4,
      -2,
      5
    ],
    "io_out": [
      -19,
      -13,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse(input),-3),4),38))"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [20, 0, -20]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sub_n([5, 1, -3],2),11),1),-2),5)",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      20,
      0,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sub_n(input,2),11),1),-2),5)"
  },
  {
    "input": "input : list = [2, -5, -5, -2, 1, 1]\noutput : list = [-2, -2, 1, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(add_n([2, -5, -5, -2, 1, 1],-2),-5))))",
    "io_inp": [
      2,
      -5,
      -5,
      -2,
      1,
      1
    ],
    "io_out": [
      -2,
      -2,
      1,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(add_n(input,-2),-5))))"
  },
  {
    "input": "input : list = [-5, 5, -3, -1, 0]\noutput : list = [2, -3, -4, -6, -8]",
    "output": "generated_output : list = reverse(reverse(reverse(add_n(sort_asc([-5, 5, -3, -1, 0]),-3))))",
    "io_inp": [
      -5,
      5,
      -3,
      -1,
      0
    ],
    "io_out": [
      2,
      -3,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [0, -1, 1, 0, 1, -4]\noutput : list = [12, 12, 9, 9, 6, -3]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(sub_n([0, -1, 1, 0, 1, -4],-2),4)),5),3)",
    "io_inp": [
      0,
      -1,
      1,
      0,
      1,
      -4
    ],
    "io_out": [
      12,
      12,
      9,
      9,
      6,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(sub_n(input,-2),4)),5),3)"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [15, -5, -20]",
    "output": "generated_output : list = take(take(mul_n(sort_des(reverse([-1, 3, -4])),5),36),30)",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      15,
      -5,
      -20
    ],
    "output_masked": "generated_output : list = take(take(mul_n(sort_des(reverse(input)),5),36),30)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [-1, 1, 5]",
    "output": "generated_output : list = sort_asc([1, -1, 5])",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 4, -5, 3, 2]\noutput : list = [6, 7]",
    "output": "generated_output : list = take(sub_n(drop(sort_asc(sort_asc([-1, 4, -5, 3, 2])),3),-3),10)",
    "io_inp": [
      -1,
      4,
      -5,
      3,
      2
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(sort_asc(sort_asc(input)),3),-3),10)"
  },
  {
    "input": "input : list = [1, 2, -5]\noutput : list = [-7, -1, 0]",
    "output": "generated_output : list = take(sub_n(sort_asc([1, 2, -5]),2),20)",
    "io_inp": [
      1,
      2,
      -5
    ],
    "io_out": [
      -7,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(input),2),20)"
  },
  {
    "input": "input : list = [4, -2, -2, -5]\noutput : list = [-1, 2, 2, 8]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sub_n([4, -2, -2, -5],-4)))))",
    "io_inp": [
      4,
      -2,
      -2,
      -5
    ],
    "io_out": [
      -1,
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [-5, 1, 4, 3, 0]\noutput : list = [4, 3, 1, 0, -5]",
    "output": "generated_output : list = sort_des([-5, 1, 4, 3, 0])",
    "io_inp": [
      -5,
      1,
      4,
      3,
      0
    ],
    "io_out": [
      4,
      3,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse([1, -5])))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-3, 1, -3, 5, -2]\noutput : list = [-3, -3, -2, 1, 5]",
    "output": "generated_output : list = sort_asc([-3, 1, -3, 5, -2])",
    "io_inp": [
      -3,
      1,
      -3,
      5,
      -2
    ],
    "io_out": [
      -3,
      -3,
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = sort_asc([-3, 5, -2])",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-25, -10]",
    "output": "generated_output : list = mul_n([-5, -2],5)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -25,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [5, -1, 1, 5, 5]\noutput : list = [2]",
    "output": "generated_output : list = take(sub_n(take([5, -1, 1, 5, 5],1),3),21)",
    "io_inp": [
      5,
      -1,
      1,
      5,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),3),21)"
  },
  {
    "input": "input : list = [-4, 5, -1, 4, -3]\noutput : list = [1, 2, 4, 9, 10]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(reverse([-4, 5, -1, 4, -3]))),-5))",
    "io_inp": [
      -4,
      5,
      -1,
      4,
      -3
    ],
    "io_out": [
      1,
      2,
      4,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(reverse(input))),-5))"
  },
  {
    "input": "input : list = [1, -1, -2, 0, 4]\noutput : list = [4, 0, -2, -1, 1]",
    "output": "generated_output : list = take(reverse([1, -1, -2, 0, 4]),19)",
    "io_inp": [
      1,
      -1,
      -2,
      0,
      4
    ],
    "io_out": [
      4,
      0,
      -2,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),19)"
  },
  {
    "input": "input : list = [0, -3, 5, -3, 4, -1]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(take([0, -3, 5, -3, 4, -1],1))),5),3)",
    "io_inp": [
      0,
      -3,
      5,
      -3,
      4,
      -1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(take(input,1))),5),3)"
  },
  {
    "input": "input : list = [-3, 2, 4]\noutput : list = [3]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(take([-3, 2, 4],1),-1)),23),5)",
    "io_inp": [
      -3,
      2,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(take(input,1),-1)),23),5)"
  },
  {
    "input": "input : list = [-3, 0, 3, -1]\noutput : list = [-6, -3, 0, -4]",
    "output": "generated_output : list = add_n([-3, 0, 3, -1],-3)",
    "io_inp": [
      -3,
      0,
      3,
      -1
    ],
    "io_out": [
      -6,
      -3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 0, -1, 0]\noutput : list = [-3, -1, 0, 0]",
    "output": "generated_output : list = sort_asc([-3, 0, -1, 0])",
    "io_inp": [
      -3,
      0,
      -1,
      0
    ],
    "io_out": [
      -3,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, -1]",
    "output": "generated_output : list = add_n([3, 1],-2)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -4, 4, 5, -4, 2]\noutput : list = [-3, -4, -4, -10, -12, -13]",
    "output": "generated_output : list = sort_des(add_n(take(mul_n(add_n([-5, -4, 4, 5, -4, 2],4),-1),18),-4))",
    "io_inp": [
      -5,
      -4,
      4,
      5,
      -4,
      2
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -10,
      -12,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(mul_n(add_n(input,4),-1),18),-4))"
  },
  {
    "input": "input : list = [-3, -5, -5]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(sort_des([-3, -5, -5]),2),5)))",
    "io_inp": [
      -3,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(sort_des(input),2),5)))"
  },
  {
    "input": "input : list = [0, 1, -1, -1]\noutput : list = [1, 2, 0, 0]",
    "output": "generated_output : list = sub_n([0, 1, -1, -1],-1)",
    "io_inp": [
      0,
      1,
      -1,
      -1
    ],
    "io_out": [
      1,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [-1, -5, 1, -2, -5]\noutput : list = [-5, -1, 1]",
    "output": "generated_output : list = sort_asc(take([-1, -5, 1, -2, -5],3))",
    "io_inp": [
      -1,
      -5,
      1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [0, -1, 5, 1]\noutput : list = [-22, -14, -12, -10]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(sub_n([0, -1, 5, 1],-4),2),15)),-2)",
    "io_inp": [
      0,
      -1,
      5,
      1
    ],
    "io_out": [
      -22,
      -14,
      -12,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(sub_n(input,-4),2),15)),-2)"
  },
  {
    "input": "input : list = [-5, 2, 4, 1, 2, 4]\noutput : list = [-3, 3, 4, 4, 6, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des(add_n(add_n([-5, 2, 4, 1, 2, 4],2),-1))),1)",
    "io_inp": [
      -5,
      2,
      4,
      1,
      2,
      4
    ],
    "io_out": [
      -3,
      3,
      4,
      4,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(add_n(add_n(input,2),-1))),1)"
  },
  {
    "input": "input : list = [1, 2, 0, -2]\noutput : list = [-7, -4, -1, 5]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(mul_n([1, 2, 0, -2],-3),-3)),4),1)",
    "io_inp": [
      1,
      2,
      0,
      -2
    ],
    "io_out": [
      -7,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sub_n(mul_n(input,-3),-3)),4),1)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [2, 0]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sort_des([-1, 1])),21),1))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sort_des(input)),21),1))"
  },
  {
    "input": "input : list = [-3, 0, 0, 4, -3]\noutput : list = [-20, 0, 0, 15]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(drop([-3, 0, 0, 4, -3],1))),-5))",
    "io_inp": [
      -3,
      0,
      0,
      4,
      -3
    ],
    "io_out": [
      -20,
      0,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(drop(input,1))),-5))"
  },
  {
    "input": "input : list = [-5, -4, 0, 5]\noutput : list = [-10]",
    "output": "generated_output : list = sort_des(sub_n(add_n(mul_n(take([-5, -4, 0, 5],1),1),-2),3))",
    "io_inp": [
      -5,
      -4,
      0,
      5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(mul_n(take(input,1),1),-2),3))"
  },
  {
    "input": "input : list = [-4, -4, 2, 1, 3, 2]\noutput : list = [5, 6, 4, 5, -1, -1]",
    "output": "generated_output : list = take(sub_n(reverse([-4, -4, 2, 1, 3, 2]),-3),14)",
    "io_inp": [
      -4,
      -4,
      2,
      1,
      3,
      2
    ],
    "io_out": [
      5,
      6,
      4,
      5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),-3),14)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [8, -16]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(sort_des([3, -5])),3),4),5)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(sort_des(input)),3),4),5)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [6, 5]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n(reverse([2, 1]),-2),2),-1),3)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(reverse(input),-2),2),-1),3)"
  },
  {
    "input": "input : list = [0, -1, -1]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(mul_n([0, -1, -1],1)),2),16),-4)",
    "io_inp": [
      0,
      -1,
      -1
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(mul_n(input,1)),2),16),-4)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse([5, -4]))))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(input))))"
  },
  {
    "input": "input : list = [3, 2, -2, 4]\noutput : list = [-10, 10, 15, 20]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(mul_n([3, 2, -2, 4],5)))))",
    "io_inp": [
      3,
      2,
      -2,
      4
    ],
    "io_out": [
      -10,
      10,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-4, 2, 1, 5]\noutput : list = [1, -3, -2, -8]",
    "output": "generated_output : list = reverse(add_n([-4, 2, 1, 5],-4))",
    "io_inp": [
      -4,
      2,
      1,
      5
    ],
    "io_out": [
      1,
      -3,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [3, 2, -3]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(sort_asc(take(take(take([3, 2, -3],1),3),6)),-4)",
    "io_inp": [
      3,
      2,
      -3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(take(take(input,1),3),6)),-4)"
  },
  {
    "input": "input : list = [-1, -2, -5]\noutput : list = [-24, -28, -40]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(reverse([-1, -2, -5]),5)),4)",
    "io_inp": [
      -1,
      -2,
      -5
    ],
    "io_out": [
      -24,
      -28,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(reverse(input),5)),4)"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 1, 5],1)",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 2, -1, -4, 3]\noutput : list = [0, 12, 24, 36, 8]",
    "output": "generated_output : list = mul_n(sub_n([5, 2, -1, -4, 3],5),-4)",
    "io_inp": [
      5,
      2,
      -1,
      -4,
      3
    ],
    "io_out": [
      0,
      12,
      24,
      36,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),-4)"
  },
  {
    "input": "input : list = [2, -2, -3, 3, 2]\noutput : list = [5, -7, -10, 8, 5]",
    "output": "generated_output : list = sub_n(mul_n([2, -2, -3, 3, 2],3),1)",
    "io_inp": [
      2,
      -2,
      -3,
      3,
      2
    ],
    "io_out": [
      5,
      -7,
      -10,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-2, -10]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_asc(mul_n([-1, -5],2)))),13)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_asc(mul_n(input,2)))),13)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [22, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sort_des([-1, -4]),-5)),-2))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      22,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sort_des(input),-5)),-2))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(take(sort_des([-2, -5]),12))",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),12))"
  },
  {
    "input": "input : list = [-5, 5, 5, 1, -4, 0]\noutput : list = [5, 5, 1, 0, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 5, 5, 1, -4, 0])",
    "io_inp": [
      -5,
      5,
      5,
      1,
      -4,
      0
    ],
    "io_out": [
      5,
      5,
      1,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -5, 0, 1, -2]\noutput : list = [-5, 3]",
    "output": "generated_output : list = reverse(take([3, -5, 0, 1, -2],2))",
    "io_inp": [
      3,
      -5,
      0,
      1,
      -2
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [1, 3, -5]\noutput : list = [-4, -2, 4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(sort_des([1, 3, -5]),8),1),-1),-2)",
    "io_inp": [
      1,
      3,
      -5
    ],
    "io_out": [
      -4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(sort_des(input),8),1),-1),-2)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(drop([-3, 1, 3],1),5),5)))",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(drop(input,1),5),5)))"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [11, 11, 11]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(add_n([3, 3, 3],-2),-4)),-3),-2)",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      11,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(add_n(input,-2),-4)),-3),-2)"
  },
  {
    "input": "input : list = [-5, -3, 3, -1, -1]\noutput : list = [25, 15, -15, 5, 5]",
    "output": "generated_output : list = mul_n([-5, -3, 3, -1, -1],-5)",
    "io_inp": [
      -5,
      -3,
      3,
      -1,
      -1
    ],
    "io_out": [
      25,
      15,
      -15,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [4, 1, -5, 5]\noutput : list = [-1, -2, -5, -11]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sub_n([4, 1, -5, 5],1),5))))",
    "io_inp": [
      4,
      1,
      -5,
      5
    ],
    "io_out": [
      -1,
      -2,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(sub_n(input,1),5))))"
  },
  {
    "input": "input : list = [2, 5, 3, 3]\noutput : list = [-18, -8, -8, -3]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(mul_n([2, 5, 3, 3],-5),5),-2)),10)",
    "io_inp": [
      2,
      5,
      3,
      3
    ],
    "io_out": [
      -18,
      -8,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(mul_n(input,-5),5),-2)),10)"
  },
  {
    "input": "input : list = [-2, -4, -2, 4, 0, -2]\noutput : list = [-10, -14, -10, 2, -6, -10]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(mul_n([-2, -4, -2, 4, 0, -2],2)),1),-5))",
    "io_inp": [
      -2,
      -4,
      -2,
      4,
      0,
      -2
    ],
    "io_out": [
      -10,
      -14,
      -10,
      2,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(mul_n(input,2)),1),-5))"
  },
  {
    "input": "input : list = [-2, 5, -5, 0, 0, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(drop([-2, 5, -5, 0, 0, -1],4)))",
    "io_inp": [
      -2,
      5,
      -5,
      0,
      0,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(drop(input,4)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n(sort_des([-5, 0]),-1)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-2, 2, -3, -5, 0, 5]\noutput : list = [5, 2, 0, -2, -3, -5]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des([-2, 2, -3, -5, 0, 5])),-4),-3),-1)",
    "io_inp": [
      -2,
      2,
      -3,
      -5,
      0,
      5
    ],
    "io_out": [
      5,
      2,
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_des(input)),-4),-3),-1)"
  },
  {
    "input": "input : list = [-4, 0, 1, -1]\noutput : list = [9, 8, 7]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(sub_n([-4, 0, 1, -1],-4)),-1),-5),3)",
    "io_inp": [
      -4,
      0,
      1,
      -1
    ],
    "io_out": [
      9,
      8,
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(sub_n(input,-4)),-1),-5),3)"
  },
  {
    "input": "input : list = [-2, 5, -1, -5, -2]\noutput : list = [12, -16, 8, 24, 12]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(mul_n([-2, 5, -1, -5, -2],-4),-4)),42))",
    "io_inp": [
      -2,
      5,
      -1,
      -5,
      -2
    ],
    "io_out": [
      12,
      -16,
      8,
      24,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(mul_n(input,-4),-4)),42))"
  },
  {
    "input": "input : list = [2, 3, 2, -2]\noutput : list = [8, 4, 3]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(drop(add_n([2, 3, 2, -2],-1),1),-1)),-5)",
    "io_inp": [
      2,
      3,
      2,
      -2
    ],
    "io_out": [
      8,
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(drop(add_n(input,-1),1),-1)),-5)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des([-4, -2, 0])),16))",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(input)),16))"
  },
  {
    "input": "input : list = [5, 5, 0, -3]\noutput : list = [-4, -1, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sub_n([5, 5, 0, -3],1)))))",
    "io_inp": [
      5,
      5,
      0,
      -3
    ],
    "io_out": [
      -4,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_asc(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-4, 1, -5, 3, 4, 0]\noutput : list = [-9, -4, -10, -2, -1, -5]",
    "output": "generated_output : list = add_n([-4, 1, -5, 3, 4, 0],-5)",
    "io_inp": [
      -4,
      1,
      -5,
      3,
      4,
      0
    ],
    "io_out": [
      -9,
      -4,
      -10,
      -2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-10, -20]",
    "output": "generated_output : list = take(sort_des(take(sort_des(mul_n([2, 4],-5)),4)),29)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -10,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(mul_n(input,-5)),4)),29)"
  },
  {
    "input": "input : list = [4, 0, 3, -5]\noutput : list = [-6, -1, 2, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([4, 0, 3, -5]),-2),3)",
    "io_inp": [
      4,
      0,
      3,
      -5
    ],
    "io_out": [
      -6,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),-2),3)"
  },
  {
    "input": "input : list = [5, -1, 4, -5, 1, 5]\noutput : list = [0, -6, -1, -10, -4, 0]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n([5, -1, 4, -5, 1, 5],1),-4),-4),-5)",
    "io_inp": [
      5,
      -1,
      4,
      -5,
      1,
      5
    ],
    "io_out": [
      0,
      -6,
      -1,
      -10,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(input,1),-4),-4),-5)"
  },
  {
    "input": "input : list = [-2, -4, 0, -2]\noutput : list = [-6, -8, -4, -6]",
    "output": "generated_output : list = add_n([-2, -4, 0, -2],-4)",
    "io_inp": [
      -2,
      -4,
      0,
      -2
    ],
    "io_out": [
      -6,
      -8,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [5, 0, -4, 2, -4, -1]\noutput : list = [5, 2, 0, -1, -4, -4]",
    "output": "generated_output : list = sort_des([5, 0, -4, 2, -4, -1])",
    "io_inp": [
      5,
      0,
      -4,
      2,
      -4,
      -1
    ],
    "io_out": [
      5,
      2,
      0,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1, 5]\noutput : list = [8, 7, 4]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des(sort_asc([4, 1, 5])),3)),35)",
    "io_inp": [
      4,
      1,
      5
    ],
    "io_out": [
      8,
      7,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(sort_asc(input)),3)),35)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-4, -1]",
    "output": "generated_output : list = add_n(sub_n([-3, 0],-1),-2)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),-2)"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(take([4, 0, -4],1))))",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(take(input,1))))"
  },
  {
    "input": "input : list = [3, 3, -2, 1, -4, -3]\noutput : list = [3, 3, 1, -2, -3, -4]",
    "output": "generated_output : list = take(take(sort_des(sort_asc(sort_des([3, 3, -2, 1, -4, -3]))),7),12)",
    "io_inp": [
      3,
      3,
      -2,
      1,
      -4,
      -3
    ],
    "io_out": [
      3,
      3,
      1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(sort_des(input))),7),12)"
  },
  {
    "input": "input : list = [-2, 3, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sub_n(drop(sub_n(mul_n([-2, 3, 0],-3),2),2),-5))",
    "io_inp": [
      -2,
      3,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(sub_n(mul_n(input,-3),2),2),-5))"
  },
  {
    "input": "input : list = [-2, 5, 0, -4, 4, -1]\noutput : list = [0, -4, -5, -8]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(drop([-2, 5, 0, -4, 4, -1],2))),-4)",
    "io_inp": [
      -2,
      5,
      0,
      -4,
      4,
      -1
    ],
    "io_out": [
      0,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(drop(input,2))),-4)"
  },
  {
    "input": "input : list = [-4, 0, -4]\noutput : list = [16, 0, 16]",
    "output": "generated_output : list = mul_n([-4, 0, -4],-4)",
    "io_inp": [
      -4,
      0,
      -4
    ],
    "io_out": [
      16,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [1, 3, -5, -4, 4]\noutput : list = [-25, -20, 5, 15, 20]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sort_asc([1, 3, -5, -4, 4])),5))",
    "io_inp": [
      1,
      3,
      -5,
      -4,
      4
    ],
    "io_out": [
      -25,
      -20,
      5,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sort_asc(input)),5))"
  },
  {
    "input": "input : list = [-1, 0, -4, -4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = drop([-1, 0, -4, -4, -1],3)",
    "io_inp": [
      -1,
      0,
      -4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [-1, -5]",
    "output": "generated_output : list = add_n(drop([5, 1, -3],1),-2)",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [4, 4, 3, 0, -4]\noutput : list = [-8, -4, -1, 0, 0]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc([4, 4, 3, 0, -4]))),3),-1)",
    "io_inp": [
      4,
      4,
      3,
      0,
      -4
    ],
    "io_out": [
      -8,
      -4,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(reverse(sort_asc(input))),3),-1)"
  },
  {
    "input": "input : list = [5, -3, -2]\noutput : list = [-5, -2, 19]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(mul_n([5, -3, -2],3)),1),-5),1)",
    "io_inp": [
      5,
      -3,
      -2
    ],
    "io_out": [
      -5,
      -2,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(mul_n(input,3)),1),-5),1)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-11, -29]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(add_n([0, 3],1),-2),3),1),4)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -11,
      -29
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(add_n(input,1),-2),3),1),4)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [2, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-3, 1],-1),-4))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-1),-4))"
  },
  {
    "input": "input : list = [-4, -5, 3, 1]\noutput : list = [3, 1, -4, -5]",
    "output": "generated_output : list = sort_des([-4, -5, 3, 1])",
    "io_inp": [
      -4,
      -5,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 0, 2, -3, 1, -1]\noutput : list = [15, -60, -30, -105]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n([5, 0, 2, -3, 1, -1],-4),3),4),5)",
    "io_inp": [
      5,
      0,
      2,
      -3,
      1,
      -1
    ],
    "io_out": [
      15,
      -60,
      -30,
      -105
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(input,-4),3),4),5)"
  },
  {
    "input": "input : list = [-3, 3, 3, 5, 1, 5]\noutput : list = [-3, 3, 3, 5]",
    "output": "generated_output : list = take([-3, 3, 3, 5, 1, 5],4)",
    "io_inp": [
      -3,
      3,
      3,
      5,
      1,
      5
    ],
    "io_out": [
      -3,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sort_des([3, 5])),22),-5),4)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sort_des(input)),22),-5),4)"
  },
  {
    "input": "input : list = [-3, 0, -5, -5, -3, -5]\noutput : list = [0, -3, -3, -5, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_des([-3, 0, -5, -5, -3, -5])))))",
    "io_inp": [
      -3,
      0,
      -5,
      -5,
      -3,
      -5
    ],
    "io_out": [
      0,
      -3,
      -3,
      -5,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, 0, 5, -2]\noutput : list = [-7, -5, -3, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([2, 0, 5, -2],-5)))",
    "io_inp": [
      2,
      0,
      5,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-5)))"
  },
  {
    "input": "input : list = [2, 2, 1]\noutput : list = [1, 0]",
    "output": "generated_output : list = sub_n(drop([2, 2, 1],1),1)",
    "io_inp": [
      2,
      2,
      1
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [1, 4, -3, -3]\noutput : list = [-2, 1, -6, -6]",
    "output": "generated_output : list = add_n(add_n(sub_n([1, 4, -3, -3],4),3),-2)",
    "io_inp": [
      1,
      4,
      -3,
      -3
    ],
    "io_out": [
      -2,
      1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,4),3),-2)"
  },
  {
    "input": "input : list = [-3, 4, 3, -5, -2, 0]\noutput : list = [-4, 3, 2, -6, -3, -1]",
    "output": "generated_output : list = add_n(take(add_n([-3, 4, 3, -5, -2, 0],-3),25),2)",
    "io_inp": [
      -3,
      4,
      3,
      -5,
      -2,
      0
    ],
    "io_out": [
      -4,
      3,
      2,
      -6,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(input,-3),25),2)"
  },
  {
    "input": "input : list = [-1, -1, -2, -4, -2]\noutput : list = [0, 0, -1, -3, -1]",
    "output": "generated_output : list = add_n(sub_n(sub_n([-1, -1, -2, -4, -2],2),1),4)",
    "io_inp": [
      -1,
      -1,
      -2,
      -4,
      -2
    ],
    "io_out": [
      0,
      0,
      -1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,2),1),4)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [13, -22]",
    "output": "generated_output : list = reverse(add_n(take(take(mul_n([-5, 2],5),14),16),3))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      13,
      -22
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(mul_n(input,5),14),16),3))"
  },
  {
    "input": "input : list = [-5, 3, 0, 2, -4, -4]\noutput : list = [5, 4, 4, 0, -2, -3]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_des([-5, 3, 0, 2, -4, -4]),-5)),-5),-1)",
    "io_inp": [
      -5,
      3,
      0,
      2,
      -4,
      -4
    ],
    "io_out": [
      5,
      4,
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(add_n(sort_des(input),-5)),-5),-1)"
  },
  {
    "input": "input : list = [3, -3, -3, -1]\noutput : list = [60, -20, -60]",
    "output": "generated_output : list = mul_n(mul_n(reverse(drop(sort_asc([3, -3, -3, -1]),1)),5),4)",
    "io_inp": [
      3,
      -3,
      -3,
      -1
    ],
    "io_out": [
      60,
      -20,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(drop(sort_asc(input),1)),5),4)"
  },
  {
    "input": "input : list = [-1, -2, -4, -2, -1]\noutput : list = [2, 6, 8]",
    "output": "generated_output : list = mul_n(sub_n(drop([-1, -2, -4, -2, -1],2),-5),2)",
    "io_inp": [
      -1,
      -2,
      -4,
      -2,
      -1
    ],
    "io_out": [
      2,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,2),-5),2)"
  },
  {
    "input": "input : list = [-5, 3, 1]\noutput : list = [3, -5, -29]",
    "output": "generated_output : list = add_n(sub_n(mul_n(reverse(sort_asc([-5, 3, 1])),4),5),-4)",
    "io_inp": [
      -5,
      3,
      1
    ],
    "io_out": [
      3,
      -5,
      -29
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(reverse(sort_asc(input)),4),5),-4)"
  },
  {
    "input": "input : list = [1, 5, -3, 2]\noutput : list = [5, 2, 1, -3]",
    "output": "generated_output : list = sort_des([1, 5, -3, 2])",
    "io_inp": [
      1,
      5,
      -3,
      2
    ],
    "io_out": [
      5,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [5, 7]",
    "output": "generated_output : list = reverse(sub_n(sub_n(mul_n(sort_asc([-5, -3]),-1),-3),1))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(mul_n(sort_asc(input),-1),-3),1))"
  },
  {
    "input": "input : list = [-1, -4, -3]\noutput : list = [-7, -6, -4]",
    "output": "generated_output : list = add_n(reverse(sort_des(reverse([-1, -4, -3]))),-3)",
    "io_inp": [
      -1,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(reverse(input))),-3)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(reverse(drop([-2, -1, -5],1)))",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [2, 1, 2, 1, -1, 4]\noutput : list = [5, 5, 7]",
    "output": "generated_output : list = sort_asc(sub_n(take(add_n(sort_des([2, 1, 2, 1, -1, 4]),-1),3),-4))",
    "io_inp": [
      2,
      1,
      2,
      1,
      -1,
      4
    ],
    "io_out": [
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(add_n(sort_des(input),-1),3),-4))"
  },
  {
    "input": "input : list = [3, 3, -5, 3]\noutput : list = [-25, -1, -1, -1]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sub_n(sort_asc([3, 3, -5, 3]),4),3),-5),3)",
    "io_inp": [
      3,
      3,
      -5,
      3
    ],
    "io_out": [
      -25,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sub_n(sort_asc(input),4),3),-5),3)"
  },
  {
    "input": "input : list = [0, -1, 5, -3, 2, 5]\noutput : list = [-3, -1, 0, 2, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(reverse(reverse([0, -1, 5, -3, 2, 5])))))",
    "io_inp": [
      0,
      -1,
      5,
      -3,
      2,
      5
    ],
    "io_out": [
      -3,
      -1,
      0,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(take([3, -1, -4],1),-1)),-3))",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sub_n(take(input,1),-1)),-3))"
  },
  {
    "input": "input : list = [0, 0, 4, 0, -1, 4]\noutput : list = [6, 3, -9, -9]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(drop([0, 0, 4, 0, -1, 4],2)),-3)),3)",
    "io_inp": [
      0,
      0,
      4,
      0,
      -1,
      4
    ],
    "io_out": [
      6,
      3,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(drop(input,2)),-3)),3)"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [9, 5, 9]",
    "output": "generated_output : list = reverse(sub_n([4, 0, 4],-5))",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      9,
      5,
      9
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-4, 2, -1]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(take([-4, 2, -1],1))",
    "io_inp": [
      -4,
      2,
      -1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-1, -5, 4]\noutput : list = [-20, -4, 16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(mul_n([-1, -5, 4],1)))),4)",
    "io_inp": [
      -1,
      -5,
      4
    ],
    "io_out": [
      -20,
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(mul_n(input,1)))),4)"
  },
  {
    "input": "input : list = [4, 4, -1, -5]\noutput : list = [-5, -1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, 4, -1, -5])",
    "io_inp": [
      4,
      4,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 2, -3, -3, -4]\noutput : list = [2, 7, 8]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_des(reverse([3, 2, -3, -3, -4])),5),3))",
    "io_inp": [
      3,
      2,
      -3,
      -3,
      -4
    ],
    "io_out": [
      2,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_des(reverse(input)),5),3))"
  },
  {
    "input": "input : list = [-1, 3, 4, 1]\noutput : list = [6, 2]",
    "output": "generated_output : list = mul_n(add_n(reverse(sort_des(take([-1, 3, 4, 1],2))),-5),-1)",
    "io_inp": [
      -1,
      3,
      4,
      1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sort_des(take(input,2))),-5),-1)"
  },
  {
    "input": "input : list = [-4, -5, 2, 3, 3, -3]\noutput : list = [-1, 0, 1, 6, 7, 7]",
    "output": "generated_output : list = reverse(add_n(take(reverse(sort_asc([-4, -5, 2, 3, 3, -3])),24),4))",
    "io_inp": [
      -4,
      -5,
      2,
      3,
      3,
      -3
    ],
    "io_out": [
      -1,
      0,
      1,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(reverse(sort_asc(input)),24),4))"
  },
  {
    "input": "input : list = [-2, -2, 3]\noutput : list = [-4, -9, -9]",
    "output": "generated_output : list = add_n(sort_des(add_n(sub_n(sort_asc([-2, -2, 3]),4),2)),-5)",
    "io_inp": [
      -2,
      -2,
      3
    ],
    "io_out": [
      -4,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sub_n(sort_asc(input),4),2)),-5)"
  },
  {
    "input": "input : list = [2, -5, -4, 3]\noutput : list = [3, 2, -4, -5]",
    "output": "generated_output : list = reverse(take(sort_asc(take(reverse([2, -5, -4, 3]),20)),39))",
    "io_inp": [
      2,
      -5,
      -4,
      3
    ],
    "io_out": [
      3,
      2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(take(reverse(input),20)),39))"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [1, -2, -1]",
    "output": "generated_output : list = sub_n(take(mul_n(reverse(sub_n([-2, -3, 0],1)),1),31),-2)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      1,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(reverse(sub_n(input,1)),1),31),-2)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-1, -2]",
    "output": "generated_output : list = add_n([0, -1],-1)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [3, 4]",
    "output": "generated_output : list = sub_n([-2, -1],-5)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, 5, 5, -5, -5]\noutput : list = [-2, 5, 5]",
    "output": "generated_output : list = sort_asc(take([-2, 5, 5, -5, -5],3))",
    "io_inp": [
      -2,
      5,
      5,
      -5,
      -5
    ],
    "io_out": [
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [0, 5, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = drop([0, 5, 1, -5],2)",
    "io_inp": [
      0,
      5,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 0, -4, -5, 4, 4]\noutput : list = [-4, -7, -11, -12, -3, -3]",
    "output": "generated_output : list = sub_n(add_n([3, 0, -4, -5, 4, 4],-3),4)",
    "io_inp": [
      3,
      0,
      -4,
      -5,
      4,
      4
    ],
    "io_out": [
      -4,
      -7,
      -11,
      -12,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),4)"
  },
  {
    "input": "input : list = [-1, 0, -1, 5]\noutput : list = [-4, -3, -4, 2]",
    "output": "generated_output : list = add_n([-1, 0, -1, 5],-3)",
    "io_inp": [
      -1,
      0,
      -1,
      5
    ],
    "io_out": [
      -4,
      -3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [2, 4, 0, 2, 5, 4]\noutput : list = [-20, -16, -16, -8, -8, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(mul_n([2, 4, 0, 2, 5, 4],-4)),4)),-4)",
    "io_inp": [
      2,
      4,
      0,
      2,
      5,
      4
    ],
    "io_out": [
      -20,
      -16,
      -16,
      -8,
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(mul_n(input,-4)),4)),-4)"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [13, 10, -11]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc([-3, 4, 5]),3)),-2)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      13,
      10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(input),3)),-2)"
  },
  {
    "input": "input : list = [1, 2, -5, 2, 0]\noutput : list = [0]",
    "output": "generated_output : list = sub_n(sort_des(take(take(sort_des([1, 2, -5, 2, 0]),22),1)),2)",
    "io_inp": [
      1,
      2,
      -5,
      2,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(sort_des(input),22),1)),2)"
  },
  {
    "input": "input : list = [3, 2, -1]\noutput : list = [-2, 4, 6]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_asc([3, 2, -1]),1))),2)",
    "io_inp": [
      3,
      2,
      -1
    ],
    "io_out": [
      -2,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(mul_n(sort_asc(input),1))),2)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [4, 20]",
    "output": "generated_output : list = sort_asc(mul_n([1, 5],4))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      4,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,4))"
  },
  {
    "input": "input : list = [0, 4, 4, 5]\noutput : list = [0, -1, -1, -5]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(reverse([0, 4, 4, 5]),8)),-5))",
    "io_inp": [
      0,
      4,
      4,
      5
    ],
    "io_out": [
      0,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(reverse(input),8)),-5))"
  },
  {
    "input": "input : list = [-4, 0, 0, 0, 2]\noutput : list = [-2, -4, -4, -4, -8]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sub_n([-4, 0, 0, 0, 2],4)),-5)),5)",
    "io_inp": [
      -4,
      0,
      0,
      0,
      2
    ],
    "io_out": [
      -2,
      -4,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sub_n(input,4)),-5)),5)"
  },
  {
    "input": "input : list = [0, 1, 1, 0, 0, -4]\noutput : list = [2, 2, 1, 1, 1, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(add_n([0, 1, 1, 0, 0, -4],4))),-3))",
    "io_inp": [
      0,
      1,
      1,
      0,
      0,
      -4
    ],
    "io_out": [
      2,
      2,
      1,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(add_n(input,4))),-3))"
  },
  {
    "input": "input : list = [-4, 0, 2, -4, 4]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = take([-4, 0, 2, -4, 4],3)",
    "io_inp": [
      -4,
      0,
      2,
      -4,
      4
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [2, 1, -2, 2, 5, -2]\noutput : list = [3, 0, 0, -1, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sort_asc([2, 1, -2, 2, 5, -2]),2))))",
    "io_inp": [
      2,
      1,
      -2,
      2,
      5,
      -2
    ],
    "io_out": [
      3,
      0,
      0,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sub_n(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(reverse([2, -2, -3])),5),-5))",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(reverse(input)),5),-5))"
  },
  {
    "input": "input : list = [-2, 2, 1, 5, 1, -4]\noutput : list = [20, 8, 4, 4, -8, -16]",
    "output": "generated_output : list = mul_n(sort_des([-2, 2, 1, 5, 1, -4]),4)",
    "io_inp": [
      -2,
      2,
      1,
      5,
      1,
      -4
    ],
    "io_out": [
      20,
      8,
      4,
      4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [4, 0, 0]",
    "output": "generated_output : list = take(add_n([0, -4, -4],4),11)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(input,4),11)"
  },
  {
    "input": "input : list = [1, -3, -2, -5]\noutput : list = [-12, 36, 20, 84]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(add_n([1, -3, -2, -5],3),-4)),5),-4)",
    "io_inp": [
      1,
      -3,
      -2,
      -5
    ],
    "io_out": [
      -12,
      36,
      20,
      84
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(add_n(input,3),-4)),5),-4)"
  },
  {
    "input": "input : list = [4, 2, -2, 4, 4, -4]\noutput : list = [-9, -7, -3, -1, -1, -1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n([4, 2, -2, 4, 4, -4],1),3)),-2))",
    "io_inp": [
      4,
      2,
      -2,
      4,
      4,
      -4
    ],
    "io_out": [
      -9,
      -7,
      -3,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n(input,1),3)),-2))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-5, -8]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(reverse([1, -2])),-5),-1))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(reverse(input)),-5),-1))"
  },
  {
    "input": "input : list = [-4, -3, -2, 2, 4]\noutput : list = [-3, -5, -9, -10, -11]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_asc(sort_des([-4, -3, -2, 2, 4])),-3),-4))",
    "io_inp": [
      -4,
      -3,
      -2,
      2,
      4
    ],
    "io_out": [
      -3,
      -5,
      -9,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_asc(sort_des(input)),-3),-4))"
  },
  {
    "input": "input : list = [5, -5, -1]\noutput : list = [-12, -8, -2]",
    "output": "generated_output : list = reverse(add_n(sort_des(reverse(sub_n([5, -5, -1],4))),-3))",
    "io_inp": [
      5,
      -5,
      -1
    ],
    "io_out": [
      -12,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(reverse(sub_n(input,4))),-3))"
  },
  {
    "input": "input : list = [-4, -3, 4, 3]\noutput : list = [3, 4, -3, -4]",
    "output": "generated_output : list = take(reverse([-4, -3, 4, 3]),9)",
    "io_inp": [
      -4,
      -3,
      4,
      3
    ],
    "io_out": [
      3,
      4,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [5, -1, 3, 4, 2]\noutput : list = [-6, -3, -2, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_des([5, -1, 3, 4, 2]),5))))",
    "io_inp": [
      5,
      -1,
      3,
      4,
      2
    ],
    "io_out": [
      -6,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_des(input),5))))"
  },
  {
    "input": "input : list = [4, 0, -2, -2]\noutput : list = [9, 9, 3, -9]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(add_n([4, 0, -2, -2],-1)))),-3)",
    "io_inp": [
      4,
      0,
      -2,
      -2
    ],
    "io_out": [
      9,
      9,
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(add_n(input,-1)))),-3)"
  },
  {
    "input": "input : list = [-4, -4, -2, -1]\noutput : list = [-1, -2, -4, -4]",
    "output": "generated_output : list = reverse(take(take(reverse(reverse([-4, -4, -2, -1])),26),40))",
    "io_inp": [
      -4,
      -4,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(reverse(input)),26),40))"
  },
  {
    "input": "input : list = [4, 4, 0, 5, -5]\noutput : list = [-5, 0, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([4, 4, 0, 5, -5]))",
    "io_inp": [
      4,
      4,
      0,
      5,
      -5
    ],
    "io_out": [
      -5,
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 4, 5, 3]\noutput : list = [-2, 3, 4, 5]",
    "output": "generated_output : list = reverse(take(sort_des(sort_asc(reverse([-2, 4, 5, 3]))),7))",
    "io_inp": [
      -2,
      4,
      5,
      3
    ],
    "io_out": [
      -2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_asc(reverse(input))),7))"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [8, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse(add_n(sort_des([-5, 5]),1)),2))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      8,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(add_n(sort_des(input),1)),2))"
  },
  {
    "input": "input : list = [2, 3, 1, 3, -5, 2]\noutput : list = [12, 0, -2, -2, -4, -4]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(sub_n([2, 3, 1, 3, -5, 2],1)),7)),-2)",
    "io_inp": [
      2,
      3,
      1,
      3,
      -5,
      2
    ],
    "io_out": [
      12,
      0,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(sub_n(input,1)),7)),-2)"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [8, -4]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(sort_des([-1, 2, -1]),1),2)),-4)",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(sort_des(input),1),2)),-4)"
  },
  {
    "input": "input : list = [1, 0, 1, -1]\noutput : list = [-1, 0, 1, 1]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(sort_asc([1, 0, 1, -1])),15),33))",
    "io_inp": [
      1,
      0,
      1,
      -1
    ],
    "io_out": [
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(sort_asc(input)),15),33))"
  },
  {
    "input": "input : list = [0, -4, -3, 2]\noutput : list = [9, 3, -6, -9]",
    "output": "generated_output : list = take(sort_des(sub_n(mul_n(sort_des([0, -4, -3, 2]),3),-3)),6)",
    "io_inp": [
      0,
      -4,
      -3,
      2
    ],
    "io_out": [
      9,
      3,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(mul_n(sort_des(input),3),-3)),6)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des(take(reverse([4, -5]),14))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),14))"
  },
  {
    "input": "input : list = [-3, 1, 5]\noutput : list = [5, 1, -3]",
    "output": "generated_output : list = take(sort_des(take(sort_des(sort_des([-3, 1, 5])),11)),39)",
    "io_inp": [
      -3,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(sort_des(input)),11)),39)"
  },
  {
    "input": "input : list = [-1, 5, -3, 2]\noutput : list = [-2, -5, -8, -10]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n([-1, 5, -3, 2],5))),-2))",
    "io_inp": [
      -1,
      5,
      -3,
      2
    ],
    "io_out": [
      -2,
      -5,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n(input,5))),-2))"
  },
  {
    "input": "input : list = [1, 2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(reverse(reverse(drop(add_n([1, 2, 2],-2),2))),-1)",
    "io_inp": [
      1,
      2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(drop(add_n(input,-2),2))),-1)"
  },
  {
    "input": "input : list = [3, -5, 4, 3, -2, -4]\noutput : list = [2, 1, -1, -6, -6, -7]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_asc([3, -5, 4, 3, -2, -4]),-1),5),-3),5)",
    "io_inp": [
      3,
      -5,
      4,
      3,
      -2,
      -4
    ],
    "io_out": [
      2,
      1,
      -1,
      -6,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_asc(input),-1),5),-3),5)"
  },
  {
    "input": "input : list = [-3, 2, 1, 1, 3]\noutput : list = [-6, -1, -2, -2, 0]",
    "output": "generated_output : list = add_n([-3, 2, 1, 1, 3],-3)",
    "io_inp": [
      -3,
      2,
      1,
      1,
      3
    ],
    "io_out": [
      -6,
      -1,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -4, 5, -4, -2, -5]\noutput : list = [-23, -23, 22, -23, -13, -28]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n([-4, -4, 5, -4, -2, -5],1),5),-3),10)",
    "io_inp": [
      -4,
      -4,
      5,
      -4,
      -2,
      -5
    ],
    "io_out": [
      -23,
      -23,
      22,
      -23,
      -13,
      -28
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(input,1),5),-3),10)"
  },
  {
    "input": "input : list = [1, -5, 0, 4]\noutput : list = [4, 1, 0, -5]",
    "output": "generated_output : list = sort_des([1, -5, 0, 4])",
    "io_inp": [
      1,
      -5,
      0,
      4
    ],
    "io_out": [
      4,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1, -1, 5, -4]\noutput : list = [12, 3, 3, -9, -15]",
    "output": "generated_output : list = mul_n(sort_asc([3, -1, -1, 5, -4]),-3)",
    "io_inp": [
      3,
      -1,
      -1,
      5,
      -4
    ],
    "io_out": [
      12,
      3,
      3,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [7]",
    "output": "generated_output : list = take(sub_n(take([3, -3, -5],1),-4),13)",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(sub_n(take(input,1),-4),13)"
  },
  {
    "input": "input : list = [-5, 3, 5, 5, -1, 0]\noutput : list = [-5, -1, 0, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([-5, 3, 5, 5, -1, 0])",
    "io_inp": [
      -5,
      3,
      5,
      5,
      -1,
      0
    ],
    "io_out": [
      -5,
      -1,
      0,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -5, 3, 4, -1]\noutput : list = [9, 8, 4, 0, 0]",
    "output": "generated_output : list = add_n(sort_des([-5, -5, 3, 4, -1]),5)",
    "io_inp": [
      -5,
      -5,
      3,
      4,
      -1
    ],
    "io_out": [
      9,
      8,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [1, 7]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(reverse([-1, 5])),2)))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_asc(reverse(input)),2)))"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_des([1, -4, -5]))",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [4, 7]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(add_n([0, 3],1)),15),-3))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(add_n(input,1)),15),-3))"
  },
  {
    "input": "input : list = [0, -1, 2, -4, 4]\noutput : list = [7, 1, -1]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n(drop([0, -1, 2, -4, 4],2),3),-1),14))",
    "io_inp": [
      0,
      -1,
      2,
      -4,
      4
    ],
    "io_out": [
      7,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(drop(input,2),3),-1),14))"
  },
  {
    "input": "input : list = [-3, -5, 4, -5, -3]\noutput : list = [16, 16, 12, 12, -2]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sub_n(sub_n([-3, -5, 4, -5, -3],1),2)),-2))",
    "io_inp": [
      -3,
      -5,
      4,
      -5,
      -3
    ],
    "io_out": [
      16,
      16,
      12,
      12,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sub_n(sub_n(input,1),2)),-2))"
  },
  {
    "input": "input : list = [2, -2, 1]\noutput : list = [-6, 3, 6]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_des([2, -2, 1]),3))),26)",
    "io_inp": [
      2,
      -2,
      1
    ],
    "io_out": [
      -6,
      3,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_des(input),3))),26)"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [36, -27, -27]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(mul_n([4, -3, -3],-3),-3))))",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      36,
      -27,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(mul_n(input,-3),-3))))"
  },
  {
    "input": "input : list = [0, -1, 2, 5, 3]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take(take(sub_n(mul_n([0, -1, 2, 5, 3],5),5),1),11),1)",
    "io_inp": [
      0,
      -1,
      2,
      5,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(mul_n(input,5),5),1),11),1)"
  },
  {
    "input": "input : list = [-2, -2, 0, 3, 1]\noutput : list = [0, 2, -1, -3, -3]",
    "output": "generated_output : list = reverse(add_n([-2, -2, 0, 3, 1],-1))",
    "io_inp": [
      -2,
      -2,
      0,
      3,
      1
    ],
    "io_out": [
      0,
      2,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [-2, 3, 2]\noutput : list = [7, -13, -18]",
    "output": "generated_output : list = take(add_n(sort_des(mul_n([-2, 3, 2],-5)),-3),10)",
    "io_inp": [
      -2,
      3,
      2
    ],
    "io_out": [
      7,
      -13,
      -18
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(mul_n(input,-5)),-3),10)"
  },
  {
    "input": "input : list = [4, 3, -1]\noutput : list = [21]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(take(take([4, 3, -1],1),16),-3),3))",
    "io_inp": [
      4,
      3,
      -1
    ],
    "io_out": [
      21
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(take(take(input,1),16),-3),3))"
  },
  {
    "input": "input : list = [-2, 3, 5]\noutput : list = [0, 15, 21]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(mul_n([-2, 3, 5],3))),3),3)",
    "io_inp": [
      -2,
      3,
      5
    ],
    "io_out": [
      0,
      15,
      21
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(mul_n(input,3))),3),3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [9, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n([2, -1],-2))),5),-2)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      9,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_des(mul_n(input,-2))),5),-2)"
  },
  {
    "input": "input : list = [-4, 5, 1, -3, -4]\noutput : list = [9, 5, 1, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(mul_n([-4, 5, 1, -3, -4],1)),-4)",
    "io_inp": [
      -4,
      5,
      1,
      -3,
      -4
    ],
    "io_out": [
      9,
      5,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(input,1)),-4)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [-7, -6, -3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n([-3, -2, 1],4),12))))",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n(input,4),12))))"
  },
  {
    "input": "input : list = [2, 2, 4, 5, 1, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, 2, 4, 5, 1, -2],1))",
    "io_inp": [
      2,
      2,
      4,
      5,
      1,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, -4, 5, -4, -1, -3]\noutput : list = [5, -4, -1, -3]",
    "output": "generated_output : list = drop([-5, -4, 5, -4, -1, -3],2)",
    "io_inp": [
      -5,
      -4,
      5,
      -4,
      -1,
      -3
    ],
    "io_out": [
      5,
      -4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n(take(sort_asc(reverse([-3, -5])),18),1)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(reverse(input)),18),1)"
  },
  {
    "input": "input : list = [-2, 2, -5]\noutput : list = [-8]",
    "output": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc([-2, 2, -5]),1),4),1))",
    "io_inp": [
      -2,
      2,
      -5
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(take(sort_asc(input),1),4),1))"
  },
  {
    "input": "input : list = [-1, 2, 0, -3, 0]\noutput : list = [-4, -2, -1, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n([-1, 2, 0, -3, 0],-3)),-2)))",
    "io_inp": [
      -1,
      2,
      0,
      -3,
      0
    ],
    "io_out": [
      -4,
      -2,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(add_n(input,-3)),-2)))"
  },
  {
    "input": "input : list = [3, 0, -2, 2, -1, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(take([3, 0, -2, 2, -1, -1],1),20))))",
    "io_inp": [
      3,
      0,
      -2,
      2,
      -1,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(take(input,1),20))))"
  },
  {
    "input": "input : list = [-5, -1, 5]\noutput : list = [2, -6, -18]",
    "output": "generated_output : list = reverse(mul_n(take(sub_n(reverse([-5, -1, 5]),-4),27),-2))",
    "io_inp": [
      -5,
      -1,
      5
    ],
    "io_out": [
      2,
      -6,
      -18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sub_n(reverse(input),-4),27),-2))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, 1]",
    "output": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc([1, 5]),2),2)),16)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sub_n(sort_asc(input),2),2)),16)"
  },
  {
    "input": "input : list = [4, -1, -3, -5]\noutput : list = [-6, 4, 8, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sort_des(sort_des([4, -1, -3, -5]))),-1),-2)",
    "io_inp": [
      4,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -6,
      4,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sort_des(sort_des(input))),-1),-2)"
  },
  {
    "input": "input : list = [1, -2, 0]\noutput : list = [0, 6, 2]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(reverse([1, -2, 0]),-1),-2),19))",
    "io_inp": [
      1,
      -2,
      0
    ],
    "io_out": [
      0,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(reverse(input),-1),-2),19))"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [18, 3]",
    "output": "generated_output : list = mul_n(reverse(sort_des(add_n(drop([-2, -5, 0],1),-1))),-3)",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      18,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(add_n(drop(input,1),-1))),-3)"
  },
  {
    "input": "input : list = [1, -1, 0, 1]\noutput : list = [-1, 0, 1, 1]",
    "output": "generated_output : list = sort_asc([1, -1, 0, 1])",
    "io_inp": [
      1,
      -1,
      0,
      1
    ],
    "io_out": [
      -1,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(sub_n(take(mul_n(sort_asc([-4, -3]),1),21),-4))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(mul_n(sort_asc(input),1),21),-4))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [1, 1]",
    "output": "generated_output : list = take(sub_n(mul_n(take(reverse([-3, -3]),5),-2),5),34)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(reverse(input),5),-2),5),34)"
  },
  {
    "input": "input : list = [-2, 5, 2, 3]\noutput : list = [5, 3, 2, -2]",
    "output": "generated_output : list = take(sort_des([-2, 5, 2, 3]),20)",
    "io_inp": [
      -2,
      5,
      2,
      3
    ],
    "io_out": [
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(input),20)"
  },
  {
    "input": "input : list = [3, 5, -5, -5, 5, 5]\noutput : list = [8, 8, 8, 6, -2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_asc([3, 5, -5, -5, 5, 5]),-2),-3),2))",
    "io_inp": [
      3,
      5,
      -5,
      -5,
      5,
      5
    ],
    "io_out": [
      8,
      8,
      8,
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sub_n(sort_asc(input),-2),-3),2))"
  },
  {
    "input": "input : list = [-4, -5, -4, -1, -1]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sub_n(take([-4, -5, -4, -1, -1],2),-2),-4),-2))",
    "io_inp": [
      -4,
      -5,
      -4,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sub_n(take(input,2),-2),-4),-2))"
  },
  {
    "input": "input : list = [-2, 0, 1, 5]\noutput : list = [24, 8, 4]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(mul_n([-2, 0, 1, 5],4),-4))),3)",
    "io_inp": [
      -2,
      0,
      1,
      5
    ],
    "io_out": [
      24,
      8,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(mul_n(input,4),-4))),3)"
  },
  {
    "input": "input : list = [0, -5, 0, 4]\noutput : list = [-2, -7, -2, 2]",
    "output": "generated_output : list = add_n([0, -5, 0, 4],-2)",
    "io_inp": [
      0,
      -5,
      0,
      4
    ],
    "io_out": [
      -2,
      -7,
      -2,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [5, -35]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(add_n([-2, 2],2),2),-1)),-5)",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      5,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(add_n(input,2),2),-1)),-5)"
  },
  {
    "input": "input : list = [1, 5, -4, -3, -4, 1]\noutput : list = [4, 0, 0, -4, -5, -5]",
    "output": "generated_output : list = add_n(take(sort_des(take(add_n([1, 5, -4, -3, -4, 1],-5),19)),47),4)",
    "io_inp": [
      1,
      5,
      -4,
      -3,
      -4,
      1
    ],
    "io_out": [
      4,
      0,
      0,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(add_n(input,-5),19)),47),4)"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(drop([3, -5, -4],1)),-5),29),-5)",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(drop(input,1)),-5),29),-5)"
  },
  {
    "input": "input : list = [-4, 1, -2, -2]\noutput : list = [12, 6, 6, -3]",
    "output": "generated_output : list = reverse(take(mul_n(take(sort_des([-4, 1, -2, -2]),20),-3),12))",
    "io_inp": [
      -4,
      1,
      -2,
      -2
    ],
    "io_out": [
      12,
      6,
      6,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(sort_des(input),20),-3),12))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_asc(reverse([-1, 0])),-4)))",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_asc(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-3, 2, -3]\noutput : list = [2, -3, -3]",
    "output": "generated_output : list = sort_des([-3, 2, -3])",
    "io_inp": [
      -3,
      2,
      -3
    ],
    "io_out": [
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 1, 4, 2, -2]\noutput : list = [8]",
    "output": "generated_output : list = reverse(mul_n(take(sort_asc(sort_asc([-1, 1, 4, 2, -2])),1),-4))",
    "io_inp": [
      -1,
      1,
      4,
      2,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(sort_asc(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [-2, 4, 1, 4, 4, -5]\noutput : list = [-4, -1, 2, 5, 5]",
    "output": "generated_output : list = take(reverse(drop(sort_des(add_n([-2, 4, 1, 4, 4, -5],1)),1)),5)",
    "io_inp": [
      -2,
      4,
      1,
      4,
      4,
      -5
    ],
    "io_out": [
      -4,
      -1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(reverse(drop(sort_des(add_n(input,1)),1)),5)"
  },
  {
    "input": "input : list = [-1, -1, 4, -3]\noutput : list = [4, -1, -1, -3]",
    "output": "generated_output : list = take(sort_des([-1, -1, 4, -3]),10)",
    "io_inp": [
      -1,
      -1,
      4,
      -3
    ],
    "io_out": [
      4,
      -1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),10)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [11, 3]",
    "output": "generated_output : list = add_n(mul_n(add_n(reverse(reverse([0, 4])),-3),-2),5)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      11,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(reverse(reverse(input)),-3),-2),5)"
  },
  {
    "input": "input : list = [4, -4, 2, 2, 5, -2]\noutput : list = [-2, 5, 2, 2, -4, 4]",
    "output": "generated_output : list = reverse(sub_n(add_n([4, -4, 2, 2, 5, -2],-5),-5))",
    "io_inp": [
      4,
      -4,
      2,
      2,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      2,
      2,
      -4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-5),-5))"
  },
  {
    "input": "input : list = [-4, 3, 4, 0, 0]\noutput : list = [-2, 5, 6, 2, 2]",
    "output": "generated_output : list = sub_n(take(reverse(reverse([-4, 3, 4, 0, 0])),21),-2)",
    "io_inp": [
      -4,
      3,
      4,
      0,
      0
    ],
    "io_out": [
      -2,
      5,
      6,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(reverse(input)),21),-2)"
  },
  {
    "input": "input : list = [-4, -4, -1, -4, 0]\noutput : list = [-4, 0]",
    "output": "generated_output : list = drop([-4, -4, -1, -4, 0],3)",
    "io_inp": [
      -4,
      -4,
      -1,
      -4,
      0
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [7, -1]",
    "output": "generated_output : list = add_n([3, -5],4)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, 2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse(reverse(drop([-2, 2, 1],1)))",
    "io_inp": [
      -2,
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [1, 5, -4, 1, 1, 0]\noutput : list = [15, -5, -5, -5, -10, -30]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(add_n([1, 5, -4, 1, 1, 0],-2),5))))",
    "io_inp": [
      1,
      5,
      -4,
      1,
      1,
      0
    ],
    "io_out": [
      15,
      -5,
      -5,
      -5,
      -10,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(add_n(input,-2),5))))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-3, -7]",
    "output": "generated_output : list = take(add_n([2, -2],-5),5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -3,
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),5)"
  },
  {
    "input": "input : list = [-5, 1, -3, 1, 5]\noutput : list = [-1, 1, 5, 5, 9]",
    "output": "generated_output : list = take(sort_asc(sort_asc(add_n([-5, 1, -3, 1, 5],4))),44)",
    "io_inp": [
      -5,
      1,
      -3,
      1,
      5
    ],
    "io_out": [
      -1,
      1,
      5,
      5,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(add_n(input,4))),44)"
  },
  {
    "input": "input : list = [-5, -5, 3, 1]\noutput : list = [-5, -5, 1, 3]",
    "output": "generated_output : list = mul_n(reverse(sort_des([-5, -5, 3, 1])),1)",
    "io_inp": [
      -5,
      -5,
      3,
      1
    ],
    "io_out": [
      -5,
      -5,
      1,
      3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [6, 3]",
    "output": "generated_output : list = add_n(add_n([4, 1],4),-2)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),-2)"
  },
  {
    "input": "input : list = [-3, 3, -3]\noutput : list = [-4, -4, 2]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sub_n([-3, 3, -3],1)))))",
    "io_inp": [
      -3,
      3,
      -3
    ],
    "io_out": [
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [-4, -1, 1, 0, 5]\noutput : list = [0, -4, -5, -6, -9]",
    "output": "generated_output : list = sub_n(take(add_n(sort_des([-4, -1, 1, 0, 5]),-4),8),1)",
    "io_inp": [
      -4,
      -1,
      1,
      0,
      5
    ],
    "io_out": [
      0,
      -4,
      -5,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_des(input),-4),8),1)"
  },
  {
    "input": "input : list = [4, -2, -5]\noutput : list = [-2, 1, 7]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_asc(sort_asc([4, -2, -5])),3)))",
    "io_inp": [
      4,
      -2,
      -5
    ],
    "io_out": [
      -2,
      1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-5, -4, -3, 2, -5, 1]\noutput : list = [1, -5, 2, -3, -4, -5]",
    "output": "generated_output : list = take(reverse([-5, -4, -3, 2, -5, 1]),7)",
    "io_inp": [
      -5,
      -4,
      -3,
      2,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(input),7)"
  },
  {
    "input": "input : list = [4, -2, -2, 2, 3, 1]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(drop(sort_asc(sort_des(reverse([4, -2, -2, 2, 3, 1]))),5))",
    "io_inp": [
      4,
      -2,
      -2,
      2,
      3,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_asc(sort_des(reverse(input))),5))"
  },
  {
    "input": "input : list = [-1, -3, 0, -2, 5, -2]\noutput : list = [5, 0, -1, -2, -2, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 0, -2, 5, -2])",
    "io_inp": [
      -1,
      -3,
      0,
      -2,
      5,
      -2
    ],
    "io_out": [
      5,
      0,
      -1,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -4, -5, 3, 1, -4]\noutput : list = [8, 10]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(take([-5, -4, -5, 3, 1, -4],2),-2)),37))",
    "io_inp": [
      -5,
      -4,
      -5,
      3,
      1,
      -4
    ],
    "io_out": [
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(take(input,2),-2)),37))"
  },
  {
    "input": "input : list = [-3, 0, 1]\noutput : list = [-19, 1, 61]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sort_des([-3, 0, 1])),-5),4),-1)",
    "io_inp": [
      -3,
      0,
      1
    ],
    "io_out": [
      -19,
      1,
      61
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sort_des(input)),-5),4),-1)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [-25, -5, 5]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc([5, -1, 1]),-5))",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      -25,
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [0, 3, 0, 5]\noutput : list = [5, 0, 3, 0]",
    "output": "generated_output : list = reverse(mul_n([0, 3, 0, 5],1))",
    "io_inp": [
      0,
      3,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [36, -45]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse(sub_n([5, -4],1)),-3),-3))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      36,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(sub_n(input,1)),-3),-3))"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [-4, -3, -2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, -3, -4]))",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, -5, 4, 0]\noutput : list = [0, 18, -9, 3]",
    "output": "generated_output : list = mul_n(sub_n([1, -5, 4, 0],1),-3)",
    "io_inp": [
      1,
      -5,
      4,
      0
    ],
    "io_out": [
      0,
      18,
      -9,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-3)"
  },
  {
    "input": "input : list = [-4, 1, -1, 1, -5]\noutput : list = [-3, -5, -8]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(add_n([-4, 1, -1, 1, -5],-1),2),3),5))",
    "io_inp": [
      -4,
      1,
      -1,
      1,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(add_n(input,-1),2),3),5))"
  },
  {
    "input": "input : list = [-2, 3, 0]\noutput : list = [9, -3, -11]",
    "output": "generated_output : list = sort_des(take(add_n(mul_n(sort_des([-2, 3, 0]),4),-3),8))",
    "io_inp": [
      -2,
      3,
      0
    ],
    "io_out": [
      9,
      -3,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(mul_n(sort_des(input),4),-3),8))"
  },
  {
    "input": "input : list = [4, 2, -1, -2, -4]\noutput : list = [8, 6, 3, 2, 0]",
    "output": "generated_output : list = add_n([4, 2, -1, -2, -4],4)",
    "io_inp": [
      4,
      2,
      -1,
      -2,
      -4
    ],
    "io_out": [
      8,
      6,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [0, 20]",
    "output": "generated_output : list = mul_n([0, 4],5)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 5, 2, -4, -3]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(take([3, 5, 2, -4, -3],3))))",
    "io_inp": [
      3,
      5,
      2,
      -4,
      -3
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(take(input,3))))"
  },
  {
    "input": "input : list = [2, 3, -2, 5, 4, 4]\noutput : list = [1, 0, 0, -1, -2, -6]",
    "output": "generated_output : list = sort_des(reverse(sub_n(reverse(sort_asc([2, 3, -2, 5, 4, 4])),4)))",
    "io_inp": [
      2,
      3,
      -2,
      5,
      4,
      4
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(reverse(sort_asc(input)),4)))"
  },
  {
    "input": "input : list = [-1, 3, -4, 2, 4, 0]\noutput : list = [1, 4, 5, 7, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse([-1, 3, -4, 2, 4, 0]),-2)),3)",
    "io_inp": [
      -1,
      3,
      -4,
      2,
      4,
      0
    ],
    "io_out": [
      1,
      4,
      5,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(input),-2)),3)"
  },
  {
    "input": "input : list = [-1, 0, -5, 1, 3, -4]\noutput : list = [-2, -4, -5, -6, -9, -10]",
    "output": "generated_output : list = take(sort_des(sub_n([-1, 0, -5, 1, 3, -4],5)),32)",
    "io_inp": [
      -1,
      0,
      -5,
      1,
      3,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -6,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(input,5)),32)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [1, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, 1])",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 5, 1, 3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = drop([1, 5, 1, 3, -5],3)",
    "io_inp": [
      1,
      5,
      1,
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, -2, -2, -4, -2]\noutput : list = [-1, -2, -2, -2, -4]",
    "output": "generated_output : list = sort_des([-1, -2, -2, -4, -2])",
    "io_inp": [
      -1,
      -2,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4, -3]\noutput : list = [-8, -7, -6]",
    "output": "generated_output : list = sort_asc(sort_asc(take(take(sub_n([-2, -4, -3],4),15),19)))",
    "io_inp": [
      -2,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(take(sub_n(input,4),15),19)))"
  },
  {
    "input": "input : list = [1, -4, -4, -5, -4, 2]\noutput : list = [5, 4, -1, -1, -1, -2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(take(reverse([1, -4, -4, -5, -4, 2]),7))),-3)",
    "io_inp": [
      1,
      -4,
      -4,
      -5,
      -4,
      2
    ],
    "io_out": [
      5,
      4,
      -1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(take(reverse(input),7))),-3)"
  },
  {
    "input": "input : list = [-5, 3, -2, -2]\noutput : list = [-2, -2, 3, -5]",
    "output": "generated_output : list = reverse([-5, 3, -2, -2])",
    "io_inp": [
      -5,
      3,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc([4, 1])",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [4, 8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(reverse([-2, 2]),-2),-2),-2))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(reverse(input),-2),-2),-2))"
  },
  {
    "input": "input : list = [-5, 4, 1, 5]\noutput : list = [16, -4, 11, -34]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(reverse([-5, 4, 1, 5]),18),1),5),4)",
    "io_inp": [
      -5,
      4,
      1,
      5
    ],
    "io_out": [
      16,
      -4,
      11,
      -34
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(reverse(input),18),1),5),4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -2, -2, -3, -2]\noutput : list = [20, 10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(take([-4, -2, -2, -3, -2],2))),-5))",
    "io_inp": [
      -4,
      -2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      20,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(take(input,2))),-5))"
  },
  {
    "input": "input : list = [2, 3, -5, 5, -4]\noutput : list = [-4, 5, -5, 3, 2]",
    "output": "generated_output : list = take(reverse([2, 3, -5, 5, -4]),16)",
    "io_inp": [
      2,
      3,
      -5,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -5,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),16)"
  },
  {
    "input": "input : list = [1, 0, -4, -3]\noutput : list = [-7, -6, -3, -2]",
    "output": "generated_output : list = add_n(sort_asc([1, 0, -4, -3]),-3)",
    "io_inp": [
      1,
      0,
      -4,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [3, -4, -1, 5, 4, -1]\noutput : list = [11, 4, 7, 13, 12, 7]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n([3, -4, -1, 5, 4, -1],3)),5))",
    "io_inp": [
      3,
      -4,
      -1,
      5,
      4,
      -1
    ],
    "io_out": [
      11,
      4,
      7,
      13,
      12,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(input,3)),5))"
  },
  {
    "input": "input : list = [-5, 5, 2]\noutput : list = [15, 6, -15]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n([-5, 5, 2],3)),27)))",
    "io_inp": [
      -5,
      5,
      2
    ],
    "io_out": [
      15,
      6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n(input,3)),27)))"
  },
  {
    "input": "input : list = [4, 0, -4]\noutput : list = [4, 0, -4]",
    "output": "generated_output : list = sort_des([4, 0, -4])",
    "io_inp": [
      4,
      0,
      -4
    ],
    "io_out": [
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sub_n([-5, 1],-5)),-1),5))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(reverse(sub_n(input,-5)),-1),5))"
  },
  {
    "input": "input : list = [-5, 0, 5, 4]\noutput : list = [-5, 0, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(sort_des([-5, 0, 5, 4])))))",
    "io_inp": [
      -5,
      0,
      5,
      4
    ],
    "io_out": [
      -5,
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [0, 4, 3, -4]\noutput : list = [0, 4, 7, 8]",
    "output": "generated_output : list = take(add_n(add_n(sort_asc(sort_des([0, 4, 3, -4])),3),1),10)",
    "io_inp": [
      0,
      4,
      3,
      -4
    ],
    "io_out": [
      0,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sort_asc(sort_des(input)),3),1),10)"
  },
  {
    "input": "input : list = [3, -2, -1]\noutput : list = [6, 2, 1]",
    "output": "generated_output : list = mul_n(add_n(sort_des(sub_n(sub_n([3, -2, -1],1),-3)),1),1)",
    "io_inp": [
      3,
      -2,
      -1
    ],
    "io_out": [
      6,
      2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(sub_n(sub_n(input,1),-3)),1),1)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, -21]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(reverse([-5, 2]),-2),3)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      -21
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(reverse(input),-2),3)))"
  },
  {
    "input": "input : list = [0, -4, -1, -3, 0]\noutput : list = [20, 16, 8, 4, 4]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(sort_des([0, -4, -1, -3, 0]),3),-2),-4))",
    "io_inp": [
      0,
      -4,
      -1,
      -3,
      0
    ],
    "io_out": [
      20,
      16,
      8,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(sort_des(input),3),-2),-4))"
  },
  {
    "input": "input : list = [2, -3, 4, -1, 4]\noutput : list = [4, 4, 2, -1, -3]",
    "output": "generated_output : list = sort_des([2, -3, 4, -1, 4])",
    "io_inp": [
      2,
      -3,
      4,
      -1,
      4
    ],
    "io_out": [
      4,
      4,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(reverse([0, 0]))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [9, 4]",
    "output": "generated_output : list = add_n(sub_n([5, 0],-2),2)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      9,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),2)"
  },
  {
    "input": "input : list = [-4, -4, 1, -3, -4]\noutput : list = [-9, -9, -4, -8, -9]",
    "output": "generated_output : list = sub_n([-4, -4, 1, -3, -4],5)",
    "io_inp": [
      -4,
      -4,
      1,
      -3,
      -4
    ],
    "io_out": [
      -9,
      -9,
      -4,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-5, -2, 4, -2]\noutput : list = [1, 7, 1, -2]",
    "output": "generated_output : list = add_n(reverse([-5, -2, 4, -2]),3)",
    "io_inp": [
      -5,
      -2,
      4,
      -2
    ],
    "io_out": [
      1,
      7,
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),3)"
  },
  {
    "input": "input : list = [2, 2, 4]\noutput : list = [9, 7, 7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(add_n([2, 2, 4],2),-5),2)))",
    "io_inp": [
      2,
      2,
      4
    ],
    "io_out": [
      9,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(add_n(input,2),-5),2)))"
  },
  {
    "input": "input : list = [2, 0, -4]\noutput : list = [-3, 3, 15]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(mul_n([2, 0, -4],-3))),11),3)",
    "io_inp": [
      2,
      0,
      -4
    ],
    "io_out": [
      -3,
      3,
      15
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(mul_n(input,-3))),11),3)"
  },
  {
    "input": "input : list = [-2, -3, 2, 5]\noutput : list = [6, 9]",
    "output": "generated_output : list = take(sub_n(drop([-2, -3, 2, 5],2),-4),7)",
    "io_inp": [
      -2,
      -3,
      2,
      5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,2),-4),7)"
  },
  {
    "input": "input : list = [-2, -5, 1, 2]\noutput : list = [0, -1, -4, -7]",
    "output": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sub_n([-2, -5, 1, 2],1)),-3),-2))",
    "io_inp": [
      -2,
      -5,
      1,
      2
    ],
    "io_out": [
      0,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(sort_asc(sub_n(input,1)),-3),-2))"
  },
  {
    "input": "input : list = [3, -2, 1, 1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take([3, -2, 1, 1],1))",
    "io_inp": [
      3,
      -2,
      1,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-2, 4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 4, 2],1)",
    "io_inp": [
      -2,
      4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [-2, 0, 7]",
    "output": "generated_output : list = add_n(sort_asc([5, -4, -2]),2)",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      -2,
      0,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-28, -25]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sub_n([-1, -2],4)),2),3),-4)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -28,
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_asc(sub_n(input,4)),2),3),-4)"
  },
  {
    "input": "input : list = [0, 0, 1, 5, 3]\noutput : list = [69, 45, 21, 9, 9]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(mul_n([0, 0, 1, 5, 3],3),4),-4),5))",
    "io_inp": [
      0,
      0,
      1,
      5,
      3
    ],
    "io_out": [
      69,
      45,
      21,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(mul_n(input,3),4),-4),5))"
  },
  {
    "input": "input : list = [-3, -2, -4, 1, -2, -3]\noutput : list = [-5, -4, -6, -1, -4, -5]",
    "output": "generated_output : list = sub_n([-3, -2, -4, 1, -2, -3],2)",
    "io_inp": [
      -3,
      -2,
      -4,
      1,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -4,
      -6,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [0, 3]",
    "output": "generated_output : list = add_n(add_n(sort_asc([2, -1]),-2),3)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),-2),3)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc([4, -5])),5),14))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(sort_asc(input)),5),14))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [10, 8]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(sort_asc([5, 3])),-2)),3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(sort_asc(input)),-2)),3)"
  },
  {
    "input": "input : list = [1, 1, 1, -1, -3, -2]\noutput : list = [4, 4, 4, 2, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([1, 1, 1, -1, -3, -2]),3))",
    "io_inp": [
      1,
      1,
      1,
      -1,
      -3,
      -2
    ],
    "io_out": [
      4,
      4,
      4,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [3, -1, -3, -4, -1, -5]\noutput : list = [25]",
    "output": "generated_output : list = reverse(drop(take(take(mul_n([3, -1, -3, -4, -1, -5],-5),24),38),5))",
    "io_inp": [
      3,
      -1,
      -3,
      -4,
      -1,
      -5
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = reverse(drop(take(take(mul_n(input,-5),24),38),5))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(add_n(sort_des([4, 1]),-4)),5))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(add_n(sort_des(input),-4)),5))"
  },
  {
    "input": "input : list = [-3, 5, -5, 1, 1]\noutput : list = [-10, 6, -14, -2, -2]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n([-3, 5, -5, 1, 1],-3),-1),2),13)",
    "io_inp": [
      -3,
      5,
      -5,
      1,
      1
    ],
    "io_out": [
      -10,
      6,
      -14,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(input,-3),-1),2),13)"
  },
  {
    "input": "input : list = [0, 3, 5, 2]\noutput : list = [0, 2, 3, 5]",
    "output": "generated_output : list = take(sort_asc([0, 3, 5, 2]),7)",
    "io_inp": [
      0,
      3,
      5,
      2
    ],
    "io_out": [
      0,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),7)"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [5, 1, -1]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(sort_des([1, 5, -1]),5),5),1),25)",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(sort_des(input),5),5),1),25)"
  },
  {
    "input": "input : list = [-2, 1, 4, 1]\noutput : list = [4, 1]",
    "output": "generated_output : list = sort_des(drop([-2, 1, 4, 1],2))",
    "io_inp": [
      -2,
      1,
      4,
      1
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [-5, 4, 1, 3, 0]\noutput : list = [0, -3, -9]",
    "output": "generated_output : list = sort_des(take(take(take(add_n([-5, 4, 1, 3, 0],-4),3),22),35))",
    "io_inp": [
      -5,
      4,
      1,
      3,
      0
    ],
    "io_out": [
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(take(take(add_n(input,-4),3),22),35))"
  },
  {
    "input": "input : list = [-5, 5, -4, 0]\noutput : list = [-3, -2, 2, 7]",
    "output": "generated_output : list = sort_asc(take(reverse(add_n(mul_n([-5, 5, -4, 0],1),2)),8))",
    "io_inp": [
      -5,
      5,
      -4,
      0
    ],
    "io_out": [
      -3,
      -2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(add_n(mul_n(input,1),2)),8))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [15, 15]",
    "output": "generated_output : list = sort_des(mul_n(take(take(sort_asc([-5, -5]),3),13),-3))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(sort_asc(input),3),13),-3))"
  },
  {
    "input": "input : list = [1, 1, 2, -4, 5]\noutput : list = [1, 1]",
    "output": "generated_output : list = take([1, 1, 2, -4, 5],2)",
    "io_inp": [
      1,
      1,
      2,
      -4,
      5
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -3, 5, -2]\noutput : list = [-97, 63, -97, 43]",
    "output": "generated_output : list = sub_n(mul_n(reverse(mul_n(reverse([5, -3, 5, -2]),5)),-4),-3)",
    "io_inp": [
      5,
      -3,
      5,
      -2
    ],
    "io_out": [
      -97,
      63,
      -97,
      43
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(mul_n(reverse(input),5)),-4),-3)"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(drop([4, -2, 2],1),-5)",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [0, 5, 1, 2]\noutput : list = [-1, 0, 1, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(reverse([0, 5, 1, 2]))),1))",
    "io_inp": [
      0,
      5,
      1,
      2
    ],
    "io_out": [
      -1,
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_des(reverse(input))),1))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [17, -3]",
    "output": "generated_output : list = add_n(mul_n([5, 0],4),-3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      17,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),-3)"
  },
  {
    "input": "input : list = [4, 4, -2, 3]\noutput : list = [24, 24, 19, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc([4, 4, -2, 3]),5)),4))",
    "io_inp": [
      4,
      4,
      -2,
      3
    ],
    "io_out": [
      24,
      24,
      19,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc(input),5)),4))"
  },
  {
    "input": "input : list = [2, -5, 5]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(take(take([2, -5, 5],1),8))",
    "io_inp": [
      2,
      -5,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,1),8))"
  },
  {
    "input": "input : list = [4, 4, 2, -3]\noutput : list = [8, 8, 6, 1]",
    "output": "generated_output : list = take(sort_des(take(reverse(add_n([4, 4, 2, -3],4)),17)),5)",
    "io_inp": [
      4,
      4,
      2,
      -3
    ],
    "io_out": [
      8,
      8,
      6,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(reverse(add_n(input,4)),17)),5)"
  },
  {
    "input": "input : list = [-3, 2, 2, -3, 1]\noutput : list = [-11, -11, -7, -6, -6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(reverse([-3, 2, 2, -3, 1]))),-4),-4)",
    "io_inp": [
      -3,
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      -11,
      -11,
      -7,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(reverse(input))),-4),-4)"
  },
  {
    "input": "input : list = [-5, -5, -3, 3]\noutput : list = [-5, -5]",
    "output": "generated_output : list = reverse(take([-5, -5, -3, 3],2))",
    "io_inp": [
      -5,
      -5,
      -3,
      3
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [-1, 5, -1]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(take([-1, 5, -1],1),-4)",
    "io_inp": [
      -1,
      5,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-4)"
  },
  {
    "input": "input : list = [0, 2, 3, -2, 4, -4]\noutput : list = [-3, -1, 1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(sub_n([0, 2, 3, -2, 4, -4],-1)),28),9))",
    "io_inp": [
      0,
      2,
      3,
      -2,
      4,
      -4
    ],
    "io_out": [
      -3,
      -1,
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(sub_n(input,-1)),28),9))"
  },
  {
    "input": "input : list = [3, -1, 5, -3]\noutput : list = [-3, -1, 3, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sort_des([3, -1, 5, -3])))))",
    "io_inp": [
      3,
      -1,
      5,
      -3
    ],
    "io_out": [
      -3,
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [8, -4, -20]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc(mul_n([-2, 1, 5],-4))),29))",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      8,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(mul_n(input,-4))),29))"
  },
  {
    "input": "input : list = [-3, 5, -2, 1]\noutput : list = [5, 1, -2, -3]",
    "output": "generated_output : list = sort_des([-3, 5, -2, 1])",
    "io_inp": [
      -3,
      5,
      -2,
      1
    ],
    "io_out": [
      5,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5, -5, 1, 4]\noutput : list = [-4, -1, 1, 5, 5]",
    "output": "generated_output : list = mul_n(sort_des([-1, -5, -5, 1, 4]),-1)",
    "io_inp": [
      -1,
      -5,
      -5,
      1,
      4
    ],
    "io_out": [
      -4,
      -1,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [0, -4, -4, 2]\noutput : list = [2, -4, -4, 0]",
    "output": "generated_output : list = take(reverse([0, -4, -4, 2]),21)",
    "io_inp": [
      0,
      -4,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(input),21)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [3, 3]",
    "output": "generated_output : list = add_n(mul_n(add_n(add_n(reverse([2, 2]),-3),3),2),-1)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(add_n(reverse(input),-3),3),2),-1)"
  },
  {
    "input": "input : list = [2, 2, -4, -4]\noutput : list = [-4, -4, 8, 8]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(reverse(sort_des([2, 2, -4, -4])),2)),-4)",
    "io_inp": [
      2,
      2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(reverse(sort_des(input)),2)),-4)"
  },
  {
    "input": "input : list = [-5, 1, 5, 1]\noutput : list = [3, 9, 9, 13]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n([-5, 1, 5, 1],3))),-5)",
    "io_inp": [
      -5,
      1,
      5,
      1
    ],
    "io_out": [
      3,
      9,
      9,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(input,3))),-5)"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [5, 3, -4]",
    "output": "generated_output : list = take(sort_des(sort_des([3, -4, 5])),22)",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      5,
      3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),22)"
  },
  {
    "input": "input : list = [1, 5, 2, -2]\noutput : list = [-2, -10, -4, 4]",
    "output": "generated_output : list = mul_n([1, 5, 2, -2],-2)",
    "io_inp": [
      1,
      5,
      2,
      -2
    ],
    "io_out": [
      -2,
      -10,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [1, -1, -3, -1, 4, -1]\noutput : list = [1, -19, 1, 9, 1, -7]",
    "output": "generated_output : list = mul_n(take(reverse(sub_n(mul_n([1, -1, -3, -1, 4, -1],-4),3)),17),1)",
    "io_inp": [
      1,
      -1,
      -3,
      -1,
      4,
      -1
    ],
    "io_out": [
      1,
      -19,
      1,
      9,
      1,
      -7
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(sub_n(mul_n(input,-4),3)),17),1)"
  },
  {
    "input": "input : list = [-3, -4, 1, -3, 0]\noutput : list = [-7, -6, -6, -3, -2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_asc([-3, -4, 1, -3, 0]),4),3),-4))",
    "io_inp": [
      -3,
      -4,
      1,
      -3,
      0
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(add_n(sort_asc(input),4),3),-4))"
  },
  {
    "input": "input : list = [3, 3, 2, -4, 1, -2]\noutput : list = [0, 2, 5, 6, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(add_n([3, 3, 2, -4, 1, -2],2)),22)),-2)",
    "io_inp": [
      3,
      3,
      2,
      -4,
      1,
      -2
    ],
    "io_out": [
      0,
      2,
      5,
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(add_n(input,2)),22)),-2)"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(take(add_n(sub_n(take([3, -3, -2],1),1),2),25),-5)",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(take(input,1),1),2),25),-5)"
  },
  {
    "input": "input : list = [3, 1, -3, 4, 3]\noutput : list = [-16, -12, -4, -18, -16]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(sub_n([3, 1, -3, 4, 3],-5),-2))),40)",
    "io_inp": [
      3,
      1,
      -3,
      4,
      3
    ],
    "io_out": [
      -16,
      -12,
      -4,
      -18,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(sub_n(input,-5),-2))),40)"
  },
  {
    "input": "input : list = [-1, 1, -5, 2, -4, 2]\noutput : list = [-10, -10, -8, -4, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(add_n([-1, 1, -5, 2, -4, 2],4),2),2),-1))",
    "io_inp": [
      -1,
      1,
      -5,
      2,
      -4,
      2
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(mul_n(add_n(input,4),2),2),-1))"
  },
  {
    "input": "input : list = [3, -4, 1, 2, 2, -5]\noutput : list = [3, 2, 2, 1, -4, -5]",
    "output": "generated_output : list = sort_des(take(sort_asc([3, -4, 1, 2, 2, -5]),24))",
    "io_inp": [
      3,
      -4,
      1,
      2,
      2,
      -5
    ],
    "io_out": [
      3,
      2,
      2,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),24))"
  },
  {
    "input": "input : list = [-2, -5, 4, 2, 5, -2]\noutput : list = [53, 41, 41, 25, 17, 13]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(add_n([-2, -5, 4, 2, 5, -2],-5),-3),-4)),-1)",
    "io_inp": [
      -2,
      -5,
      4,
      2,
      5,
      -2
    ],
    "io_out": [
      53,
      41,
      41,
      25,
      17,
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(add_n(input,-5),-3),-4)),-1)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-20, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_asc([1, -4]),5))))",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -20,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(mul_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [5, 2, -5, -1, -2, 1]\noutput : list = [5, 20, 25, 35, 40, 55]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sort_asc([5, 2, -5, -1, -2, 1]),-3),-2),-1),5)",
    "io_inp": [
      5,
      2,
      -5,
      -1,
      -2,
      1
    ],
    "io_out": [
      5,
      20,
      25,
      35,
      40,
      55
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sort_asc(input),-3),-2),-1),5)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des([5, 5])",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n(take(sort_asc([-2, -4]),10),2)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),10),2)"
  },
  {
    "input": "input : list = [1, 3, 3, -3, -1, -2]\noutput : list = [3, 3, -3, -1, -2]",
    "output": "generated_output : list = drop([1, 3, 3, -3, -1, -2],1)",
    "io_inp": [
      1,
      3,
      3,
      -3,
      -1,
      -2
    ],
    "io_out": [
      3,
      3,
      -3,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 2, -2]\noutput : list = [16, 8, -8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des([-4, 2, -2]))),-4)",
    "io_inp": [
      -4,
      2,
      -2
    ],
    "io_out": [
      16,
      8,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(input))),-4)"
  },
  {
    "input": "input : list = [0, 5, 4, 0, 0]\noutput : list = [5, 5, 5, 9, 10]",
    "output": "generated_output : list = sub_n(take(reverse(sort_des(add_n([0, 5, 4, 0, 0],4))),21),-1)",
    "io_inp": [
      0,
      5,
      4,
      0,
      0
    ],
    "io_out": [
      5,
      5,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_des(add_n(input,4))),21),-1)"
  },
  {
    "input": "input : list = [5, -5, 0, 5]\noutput : list = [-3, 2, 7, 7]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(sort_asc([5, -5, 0, 5]),-2))),5)",
    "io_inp": [
      5,
      -5,
      0,
      5
    ],
    "io_out": [
      -3,
      2,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(sort_asc(input),-2))),5)"
  },
  {
    "input": "input : list = [-5, -5, 4, -4]\noutput : list = [15, 15, 12, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([-5, -5, 4, -4])),-3)",
    "io_inp": [
      -5,
      -5,
      4,
      -4
    ],
    "io_out": [
      15,
      15,
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [40]",
    "output": "generated_output : list = drop(mul_n(sort_asc(sub_n(sort_des([-3, -5, 5]),-5)),4),2)",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      40
    ],
    "output_masked": "generated_output : list = drop(mul_n(sort_asc(sub_n(sort_des(input),-5)),4),2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = reverse([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 0, -2, 3]\noutput : list = [-10, 0, 0, 15]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n(sort_des([0, 0, -2, 3]),-5)),-1))",
    "io_inp": [
      0,
      0,
      -2,
      3
    ],
    "io_out": [
      -10,
      0,
      0,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(sort_des(input),-5)),-1))"
  },
  {
    "input": "input : list = [2, 2, 3, -4, 4, -5]\noutput : list = [6]",
    "output": "generated_output : list = reverse(mul_n(take(drop(reverse([2, 2, 3, -4, 4, -5]),5),32),3))",
    "io_inp": [
      2,
      2,
      3,
      -4,
      4,
      -5
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(drop(reverse(input),5),32),3))"
  },
  {
    "input": "input : list = [-5, 0, -1, 2]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(take(sub_n(add_n(take([-5, 0, -1, 2],1),1),-3),36),1)",
    "io_inp": [
      -5,
      0,
      -1,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(add_n(take(input,1),1),-3),36),1)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-3, -5]",
    "output": "generated_output : list = reverse(add_n([-2, 0],-3))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-3))"
  },
  {
    "input": "input : list = [0, -2, -5, 2, 5, -5]\noutput : list = [0, 10, 25, -10, -25, 25]",
    "output": "generated_output : list = mul_n([0, -2, -5, 2, 5, -5],-5)",
    "io_inp": [
      0,
      -2,
      -5,
      2,
      5,
      -5
    ],
    "io_out": [
      0,
      10,
      25,
      -10,
      -25,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [0, 3, -5]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(sort_asc([0, 3, -5]),-1)),8))",
    "io_inp": [
      0,
      3,
      -5
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(sort_asc(input),-1)),8))"
  },
  {
    "input": "input : list = [2, 5, 0, 1]\noutput : list = [-3, 0, -5, -4]",
    "output": "generated_output : list = sub_n([2, 5, 0, 1],5)",
    "io_inp": [
      2,
      5,
      0,
      1
    ],
    "io_out": [
      -3,
      0,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [0, 0, -2]\noutput : list = [-4]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(take([0, 0, -2],1)),4),4),17)",
    "io_inp": [
      0,
      0,
      -2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(take(input,1)),4),4),17)"
  },
  {
    "input": "input : list = [0, -5, -3]\noutput : list = [-5, -3, 0]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(sort_asc([0, -5, -3]))),34))",
    "io_inp": [
      0,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(sort_asc(input))),34))"
  },
  {
    "input": "input : list = [-2, -1, 4, -3, -4]\noutput : list = [-6, 4, 6]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take([-2, -1, 4, -3, -4],3)),-1),-2)",
    "io_inp": [
      -2,
      -1,
      4,
      -3,
      -4
    ],
    "io_out": [
      -6,
      4,
      6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(input,3)),-1),-2)"
  },
  {
    "input": "input : list = [-1, 4, -4, -1]\noutput : list = [-4, -7]",
    "output": "generated_output : list = take(sub_n(reverse(sub_n(drop([-1, 4, -4, -1],2),1)),2),39)",
    "io_inp": [
      -1,
      4,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sub_n(drop(input,2),1)),2),39)"
  },
  {
    "input": "input : list = [-3, -2, -3, -3]\noutput : list = [-2, -2, -2, -3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse([-3, -2, -3, -3]),-5),-1))",
    "io_inp": [
      -3,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(input),-5),-1))"
  },
  {
    "input": "input : list = [0, -2, 1]\noutput : list = [-10, 0, 5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([0, -2, 1]),5))",
    "io_inp": [
      0,
      -2,
      1
    ],
    "io_out": [
      -10,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [4, 0, 5, 2]\noutput : list = [11, 14]",
    "output": "generated_output : list = sub_n(take(add_n(sort_asc(drop([4, 0, 5, 2],2)),4),35),-5)",
    "io_inp": [
      4,
      0,
      5,
      2
    ],
    "io_out": [
      11,
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sort_asc(drop(input,2)),4),35),-5)"
  },
  {
    "input": "input : list = [-3, -2, -4, 5, -5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -2, -4, 5, -5],1)",
    "io_inp": [
      -3,
      -2,
      -4,
      5,
      -5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -2, -1, 3, -3]\noutput : list = [3, 1, 2, 6, 0]",
    "output": "generated_output : list = sub_n([0, -2, -1, 3, -3],-3)",
    "io_inp": [
      0,
      -2,
      -1,
      3,
      -3
    ],
    "io_out": [
      3,
      1,
      2,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [1, 0, -5]\noutput : list = [80, 0, -16]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_des([1, 0, -5]),4)),-4),14)",
    "io_inp": [
      1,
      0,
      -5
    ],
    "io_out": [
      80,
      0,
      -16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sort_des(input),4)),-4),14)"
  },
  {
    "input": "input : list = [5, -4, 3, 1]\noutput : list = [23, 17, 11, -4]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(reverse(mul_n([5, -4, 3, 1],3)),-5),-3))",
    "io_inp": [
      5,
      -4,
      3,
      1
    ],
    "io_out": [
      23,
      17,
      11,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(reverse(mul_n(input,3)),-5),-3))"
  },
  {
    "input": "input : list = [4, 1, -5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = reverse(drop([4, 1, -5, -4],2))",
    "io_inp": [
      4,
      1,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [-6, -3, 1]",
    "output": "generated_output : list = reverse(add_n(reverse([-2, 1, 5]),-4))",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      -6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [-3, 0, 1, -2]\noutput : list = [5, 4, 2, 1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(take(add_n([-3, 0, 1, -2],5),10),-1)))",
    "io_inp": [
      -3,
      0,
      1,
      -2
    ],
    "io_out": [
      5,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(take(add_n(input,5),10),-1)))"
  },
  {
    "input": "input : list = [-2, 4, 0, -3, -4]\noutput : list = [4, 0, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(drop(take(sort_asc([-2, 4, 0, -3, -4]),16),1)))",
    "io_inp": [
      -2,
      4,
      0,
      -3,
      -4
    ],
    "io_out": [
      4,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(take(sort_asc(input),16),1)))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [4, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sub_n(add_n([0, -4],3),1))),2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sub_n(add_n(input,3),1))),2)"
  },
  {
    "input": "input : list = [-3, 0, 0]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse(add_n([-3, 0, 0],1)))))",
    "io_inp": [
      -3,
      0,
      0
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(add_n(input,1)))))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [9, 6]",
    "output": "generated_output : list = reverse(sub_n(add_n([2, 5],-1),-5))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,-1),-5))"
  },
  {
    "input": "input : list = [5, 0, 4, -1, -4]\noutput : list = [-16, -12, 4]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(take([5, 0, 4, -1, -4],3),1),-1),4))",
    "io_inp": [
      5,
      0,
      4,
      -1,
      -4
    ],
    "io_out": [
      -16,
      -12,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(take(input,3),1),-1),4))"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [1, -5, -9]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_des(mul_n([-3, -5, 0],2)),-1)),20)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      1,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_des(mul_n(input,2)),-1)),20)"
  },
  {
    "input": "input : list = [-3, 5, -1, -3, 5]\noutput : list = [-40, -40, 0, 120, 120]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(mul_n([-3, 5, -1, -3, 5],4),2),2)),5)",
    "io_inp": [
      -3,
      5,
      -1,
      -3,
      5
    ],
    "io_out": [
      -40,
      -40,
      0,
      120,
      120
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(mul_n(input,4),2),2)),5)"
  },
  {
    "input": "input : list = [0, -4, 5, 4, 3, 5]\noutput : list = [4, 0]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(take([0, -4, 5, 4, 3, 5],2),1),-1),-3),-1)",
    "io_inp": [
      0,
      -4,
      5,
      4,
      3,
      5
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(take(input,2),1),-1),-3),-1)"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [-5, 3, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_des([3, -5, 3]))),22)",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      -5,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_des(input))),22)"
  },
  {
    "input": "input : list = [1, -4, -5, -2, 1]\noutput : list = [-12, -27, -30]",
    "output": "generated_output : list = sort_des(mul_n(take(take(add_n([1, -4, -5, -2, 1],-5),3),11),3))",
    "io_inp": [
      1,
      -4,
      -5,
      -2,
      1
    ],
    "io_out": [
      -12,
      -27,
      -30
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(add_n(input,-5),3),11),3))"
  },
  {
    "input": "input : list = [-3, 2, 4, -4, 3]\noutput : list = [4, 3, 2, -3, -4]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(reverse([-3, 2, 4, -4, 3])))),53)",
    "io_inp": [
      -3,
      2,
      4,
      -4,
      3
    ],
    "io_out": [
      4,
      3,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(reverse(input)))),53)"
  },
  {
    "input": "input : list = [-1, 4, -2, 1, -4, -1]\noutput : list = [4, 1, -1, -1, -2]",
    "output": "generated_output : list = reverse(drop(sort_asc([-1, 4, -2, 1, -4, -1]),1))",
    "io_inp": [
      -1,
      4,
      -2,
      1,
      -4,
      -1
    ],
    "io_out": [
      4,
      1,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-2, -4, 0]\noutput : list = [0, -10, -20]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(mul_n([-2, -4, 0],-1),-5))))",
    "io_inp": [
      -2,
      -4,
      0
    ],
    "io_out": [
      0,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(mul_n(input,-1),-5))))"
  },
  {
    "input": "input : list = [2, 2, 5, -5]\noutput : list = [-36, -27, -27, -6]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(reverse([2, 2, 5, -5])),3),-4),-3)",
    "io_inp": [
      2,
      2,
      5,
      -5
    ],
    "io_out": [
      -36,
      -27,
      -27,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(reverse(input)),3),-4),-3)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [6, 14]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sub_n([3, -1],-4),2),11)),2)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      6,
      14
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sub_n(input,-4),2),11)),2)"
  },
  {
    "input": "input : list = [4, 1, 0, -3, -4]\noutput : list = [4, 1, 0, -3, -4]",
    "output": "generated_output : list = take(sort_des([4, 1, 0, -3, -4]),8)",
    "io_inp": [
      4,
      1,
      0,
      -3,
      -4
    ],
    "io_out": [
      4,
      1,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),8)"
  },
  {
    "input": "input : list = [4, 0, 3, 0]\noutput : list = [16, 12, 0, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse([4, 0, 3, 0])))),4)",
    "io_inp": [
      4,
      0,
      3,
      0
    ],
    "io_out": [
      16,
      12,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse(input)))),4)"
  },
  {
    "input": "input : list = [3, 2, -4, 5, -3, -1]\noutput : list = [6, 2, 0, -6, -10, -12]",
    "output": "generated_output : list = add_n(sort_des(mul_n([3, 2, -4, 5, -3, -1],2)),-4)",
    "io_inp": [
      3,
      2,
      -4,
      5,
      -3,
      -1
    ],
    "io_out": [
      6,
      2,
      0,
      -6,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(input,2)),-4)"
  },
  {
    "input": "input : list = [-1, -3, -1, 0]\noutput : list = [-2, -14, -38, -14]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(mul_n([-1, -3, -1, 0],-4)),-3),-2),31)",
    "io_inp": [
      -1,
      -3,
      -1,
      0
    ],
    "io_out": [
      -2,
      -14,
      -38,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(mul_n(input,-4)),-3),-2),31)"
  },
  {
    "input": "input : list = [1, 2, 0, 4, 2]\noutput : list = [-8, -7, -9, -5, -7]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(sub_n([1, 2, 0, 4, 2],4),-4),5),-4),14)",
    "io_inp": [
      1,
      2,
      0,
      4,
      2
    ],
    "io_out": [
      -8,
      -7,
      -9,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(sub_n(input,4),-4),5),-4),14)"
  },
  {
    "input": "input : list = [4, -3, -3, -1]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(take([4, -3, -3, -1],2)))),12)",
    "io_inp": [
      4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(take(input,2)))),12)"
  },
  {
    "input": "input : list = [5, -5, 3, -1, 3, -3]\noutput : list = [-10, -8, -6, -2, -2, 0]",
    "output": "generated_output : list = sort_asc(reverse(take(add_n(sort_des([5, -5, 3, -1, 3, -3]),-5),37)))",
    "io_inp": [
      5,
      -5,
      3,
      -1,
      3,
      -3
    ],
    "io_out": [
      -10,
      -8,
      -6,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(add_n(sort_des(input),-5),37)))"
  },
  {
    "input": "input : list = [-3, -5, 1, 5, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = take([-3, -5, 1, 5, -5],2)",
    "io_inp": [
      -3,
      -5,
      1,
      5,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 0, 3, 4]\noutput : list = [0, 3, 4]",
    "output": "generated_output : list = drop([1, 0, 3, 4],1)",
    "io_inp": [
      1,
      0,
      3,
      4
    ],
    "io_out": [
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 3, -3, 0, 4, 1]\noutput : list = [-30, -30, 0, -15, -35, -20]",
    "output": "generated_output : list = mul_n(take(add_n(add_n(add_n([3, 3, -3, 0, 4, 1],2),-1),2),45),-5)",
    "io_inp": [
      3,
      3,
      -3,
      0,
      4,
      1
    ],
    "io_out": [
      -30,
      -30,
      0,
      -15,
      -35,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(add_n(add_n(input,2),-1),2),45),-5)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [8, 14]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n(sort_asc([-3, -5]),-3)),1),10)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      8,
      14
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(sort_asc(input),-3)),1),10)"
  },
  {
    "input": "input : list = [2, -2, 4, -2, 5, 4]\noutput : list = [3, 3, -9, -15, -15, -18]",
    "output": "generated_output : list = add_n(mul_n(take(take(sort_asc([2, -2, 4, -2, 5, 4]),13),24),-3),-3)",
    "io_inp": [
      2,
      -2,
      4,
      -2,
      5,
      4
    ],
    "io_out": [
      3,
      3,
      -9,
      -15,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(sort_asc(input),13),24),-3),-3)"
  },
  {
    "input": "input : list = [0, -1, -2, -1, 2]\noutput : list = [0, 1, 1, 2, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(mul_n(sort_des([0, -1, -2, -1, 2]),1)),-2))",
    "io_inp": [
      0,
      -1,
      -2,
      -1,
      2
    ],
    "io_out": [
      0,
      1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(mul_n(sort_des(input),1)),-2))"
  },
  {
    "input": "input : list = [4, -5, 1, -5]\noutput : list = [1, -2, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sub_n(add_n([4, -5, 1, -5],-5),2))),-4)",
    "io_inp": [
      4,
      -5,
      1,
      -5
    ],
    "io_out": [
      1,
      -2,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sub_n(add_n(input,-5),2))),-4)"
  },
  {
    "input": "input : list = [5, -4, 0, -1, -1, 1]\noutput : list = [-20, -8, -8, -14, 10, -44]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sub_n(reverse([5, -4, 0, -1, -1, 1]),-2),-3),2),-2)",
    "io_inp": [
      5,
      -4,
      0,
      -1,
      -1,
      1
    ],
    "io_out": [
      -20,
      -8,
      -8,
      -14,
      10,
      -44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sub_n(reverse(input),-2),-3),2),-2)"
  },
  {
    "input": "input : list = [-4, 4, 4, 2, -3]\noutput : list = [-4, -3, 2, 4, 4]",
    "output": "generated_output : list = take(sort_asc([-4, 4, 4, 2, -3]),23)",
    "io_inp": [
      -4,
      4,
      4,
      2,
      -3
    ],
    "io_out": [
      -4,
      -3,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),23)"
  },
  {
    "input": "input : list = [-1, 2, 1, -4, -4]\noutput : list = [4, -11, -6, 19, 19]",
    "output": "generated_output : list = sub_n(mul_n([-1, 2, 1, -4, -4],-5),1)",
    "io_inp": [
      -1,
      2,
      1,
      -4,
      -4
    ],
    "io_out": [
      4,
      -11,
      -6,
      19,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-5),1)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-10, -8]",
    "output": "generated_output : list = mul_n(reverse(add_n(add_n(reverse([-3, -2]),-5),3)),2)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -10,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(add_n(reverse(input),-5),3)),2)"
  },
  {
    "input": "input : list = [-3, 5, -3, -3]\noutput : list = [-16, 8, 8, 8]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n([-3, 5, -3, -3],-3)))),1)",
    "io_inp": [
      -3,
      5,
      -3,
      -3
    ],
    "io_out": [
      -16,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(mul_n(input,-3)))),1)"
  },
  {
    "input": "input : list = [-5, 0, -3]\noutput : list = [-5, -3, 0]",
    "output": "generated_output : list = sort_asc([-5, 0, -3])",
    "io_inp": [
      -5,
      0,
      -3
    ],
    "io_out": [
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -5, -1]\noutput : list = [-5, -1]",
    "output": "generated_output : list = drop([2, -5, -1],1)",
    "io_inp": [
      2,
      -5,
      -1
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -3, -3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = drop([3, -3, -3, -1],2)",
    "io_inp": [
      3,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, -4, -2, 1, -5]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take([-4, -4, -2, 1, -5],1))),1)",
    "io_inp": [
      -4,
      -4,
      -2,
      1,
      -5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(input,1))),1)"
  },
  {
    "input": "input : list = [-1, 4, 5, -2, -3, 3]\noutput : list = [-1, 2, 5, 17, 20, 23]",
    "output": "generated_output : list = take(add_n(mul_n(add_n(sort_asc([-1, 4, 5, -2, -3, 3]),2),3),2),18)",
    "io_inp": [
      -1,
      4,
      5,
      -2,
      -3,
      3
    ],
    "io_out": [
      -1,
      2,
      5,
      17,
      20,
      23
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(sort_asc(input),2),3),2),18)"
  },
  {
    "input": "input : list = [-4, -5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(drop([-4, -5, 0],1))",
    "io_inp": [
      -4,
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-3, 0]",
    "output": "generated_output : list = reverse([0, -3])",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [-30, 6, 24]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(mul_n([-5, 4, 1],3)),2)))",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      -30,
      6,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(mul_n(input,3)),2)))"
  },
  {
    "input": "input : list = [1, -4, 2, -5, -3]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(take([1, -4, 2, -5, -3],2)),3),4))",
    "io_inp": [
      1,
      -4,
      2,
      -5,
      -3
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(take(input,2)),3),4))"
  },
  {
    "input": "input : list = [2, 1, 4]\noutput : list = [3, 6, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_asc([2, 1, 4]))),3))",
    "io_inp": [
      2,
      1,
      4
    ],
    "io_out": [
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_asc(input))),3))"
  },
  {
    "input": "input : list = [-2, 4, -3, -5, 3]\noutput : list = [5, 13]",
    "output": "generated_output : list = add_n(sub_n(drop([-2, 4, -3, -5, 3],3),-5),5)",
    "io_inp": [
      -2,
      4,
      -3,
      -5,
      3
    ],
    "io_out": [
      5,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,3),-5),5)"
  },
  {
    "input": "input : list = [-5, -2, -5]\noutput : list = [-50]",
    "output": "generated_output : list = take(take(mul_n(mul_n(take([-5, -2, -5],1),-2),-5),32),1)",
    "io_inp": [
      -5,
      -2,
      -5
    ],
    "io_out": [
      -50
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(take(input,1),-2),-5),32),1)"
  },
  {
    "input": "input : list = [1, 4, 3, 2, -5, 5]\noutput : list = [-3, 21, 25, 29, 33, 37]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(add_n([1, 4, 3, 2, -5, 5],3),4),10)),-5)",
    "io_inp": [
      1,
      4,
      3,
      2,
      -5,
      5
    ],
    "io_out": [
      -3,
      21,
      25,
      29,
      33,
      37
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(add_n(input,3),4),10)),-5)"
  },
  {
    "input": "input : list = [-3, 0, -4, 2, -4, -3]\noutput : list = [2, 0, -3, -3, -4, -4]",
    "output": "generated_output : list = add_n(sub_n(sort_des([-3, 0, -4, 2, -4, -3]),-3),-3)",
    "io_inp": [
      -3,
      0,
      -4,
      2,
      -4,
      -3
    ],
    "io_out": [
      2,
      0,
      -3,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(input),-3),-3)"
  },
  {
    "input": "input : list = [2, 5, 3, 4]\noutput : list = [4, 3, 5, 2]",
    "output": "generated_output : list = reverse([2, 5, 3, 4])",
    "io_inp": [
      2,
      5,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, 3, 4, 5]\noutput : list = [23, -47, -37, -47, -57]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(mul_n([-3, 4, 3, 4, 5],-5),2),-1),4),-2)",
    "io_inp": [
      -3,
      4,
      3,
      4,
      5
    ],
    "io_out": [
      23,
      -47,
      -37,
      -47,
      -57
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(mul_n(input,-5),2),-1),4),-2)"
  },
  {
    "input": "input : list = [0, 1, 0, 4, -3, 4]\noutput : list = [0, 1]",
    "output": "generated_output : list = take(sort_asc(take([0, 1, 0, 4, -3, 4],2)),26)",
    "io_inp": [
      0,
      1,
      0,
      4,
      -3,
      4
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(input,2)),26)"
  },
  {
    "input": "input : list = [5, -4, 0]\noutput : list = [-148, -68, -4]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sub_n(sort_des([5, -4, 0]),-4),-4),-1),4)",
    "io_inp": [
      5,
      -4,
      0
    ],
    "io_out": [
      -148,
      -68,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sub_n(sort_des(input),-4),-4),-1),4)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(sort_des([-3, 5]),12))))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(sort_des(input),12))))"
  },
  {
    "input": "input : list = [-1, -3, 0, 5]\noutput : list = [-3, -1, 0, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(reverse([-1, -3, 0, 5])),3)),-3)",
    "io_inp": [
      -1,
      -3,
      0,
      5
    ],
    "io_out": [
      -3,
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(reverse(input)),3)),-3)"
  },
  {
    "input": "input : list = [5, 1, 1, 2]\noutput : list = [0, -1, -1, 3]",
    "output": "generated_output : list = reverse(take(sub_n([5, 1, 1, 2],2),18))",
    "io_inp": [
      5,
      1,
      1,
      2
    ],
    "io_out": [
      0,
      -1,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,2),18))"
  },
  {
    "input": "input : list = [-3, 3, 3, -1, -3]\noutput : list = [-4, -4, -2, 2, 2]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(add_n([-3, 3, 3, -1, -3],-5))),-4))",
    "io_inp": [
      -3,
      3,
      3,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -4,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(add_n(input,-5))),-4))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [39, 24]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_asc(sub_n([4, -1],-5)),-4),3))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      39,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_asc(sub_n(input,-5)),-4),3))"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [-4, -2, 5]",
    "output": "generated_output : list = sort_asc([5, -4, -2])",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -1, 3]\noutput : list = [-3, -4, -7]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sub_n([2, -1, 3],1),-5)))",
    "io_inp": [
      2,
      -1,
      3
    ],
    "io_out": [
      -3,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sub_n(input,1),-5)))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, -5]",
    "output": "generated_output : list = sort_des([-5, 4])",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, 3]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(take([1, -2, 3],1))",
    "io_inp": [
      1,
      -2,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [-1, 0, -4]\noutput : list = [0, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(drop([-1, 0, -4],1),-4))),8)",
    "io_inp": [
      -1,
      0,
      -4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(drop(input,1),-4))),8)"
  },
  {
    "input": "input : list = [-5, -2, -4, 5, -1]\noutput : list = [-5, -4, -2, -1, 5]",
    "output": "generated_output : list = sort_asc([-5, -2, -4, 5, -1])",
    "io_inp": [
      -5,
      -2,
      -4,
      5,
      -1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 1, 2, 4]\noutput : list = [4, 2, 1, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des([-3, -2, 1, 2, 4])))",
    "io_inp": [
      -3,
      -2,
      1,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [15, 0, -35]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(add_n([5, -5, -2],-1),-3)),1),-5)",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      15,
      0,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(add_n(input,-1),-3)),1),-5)"
  },
  {
    "input": "input : list = [1, 1, -5, -1, 3]\noutput : list = [-7, -3, -1, -1, 1]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_des(sub_n([1, 1, -5, -1, 3],2)))),9)",
    "io_inp": [
      1,
      1,
      -5,
      -1,
      3
    ],
    "io_out": [
      -7,
      -3,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_des(sub_n(input,2)))),9)"
  },
  {
    "input": "input : list = [-5, 0, 2, -4]\noutput : list = [8, 6, -2, -6]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(sub_n([-5, 0, 2, -4],-1))),-2),19)",
    "io_inp": [
      -5,
      0,
      2,
      -4
    ],
    "io_out": [
      8,
      6,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(sub_n(input,-1))),-2),19)"
  },
  {
    "input": "input : list = [1, 5, 5, -4]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(take([1, 5, 5, -4],1)))),-3)",
    "io_inp": [
      1,
      5,
      5,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(take(input,1)))),-3)"
  },
  {
    "input": "input : list = [-2, -5, -2]\noutput : list = [-5, -2, -2]",
    "output": "generated_output : list = sub_n(sort_asc(take(add_n(sort_des([-2, -5, -2]),3),10)),3)",
    "io_inp": [
      -2,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(add_n(sort_des(input),3),10)),3)"
  },
  {
    "input": "input : list = [-4, 2, -3]\noutput : list = [-1, 5, 0]",
    "output": "generated_output : list = sub_n(sub_n([-4, 2, -3],-5),2)",
    "io_inp": [
      -4,
      2,
      -3
    ],
    "io_out": [
      -1,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [4, 0, 3, -3, 5]\noutput : list = [8]",
    "output": "generated_output : list = add_n(take([4, 0, 3, -3, 5],1),4)",
    "io_inp": [
      4,
      0,
      3,
      -3,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),4)"
  },
  {
    "input": "input : list = [-5, 0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(take(drop([-5, 0, 2],1),8))))",
    "io_inp": [
      -5,
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(take(drop(input,1),8))))"
  },
  {
    "input": "input : list = [-2, 2, -3, -4]\noutput : list = [2, -2, -3, -4]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(reverse([-2, 2, -3, -4]))),1))",
    "io_inp": [
      -2,
      2,
      -3,
      -4
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_asc(reverse(input))),1))"
  },
  {
    "input": "input : list = [4, 1, 4, -4, -3]\noutput : list = [1, 4, 4]",
    "output": "generated_output : list = sort_asc(take([4, 1, 4, -4, -3],3))",
    "io_inp": [
      4,
      1,
      4,
      -4,
      -3
    ],
    "io_out": [
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [0, -3, -4]\noutput : list = [-11, -10, -7]",
    "output": "generated_output : list = add_n(sort_asc(add_n(take(reverse([0, -3, -4]),7),-3)),-4)",
    "io_inp": [
      0,
      -3,
      -4
    ],
    "io_out": [
      -11,
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(take(reverse(input),7),-3)),-4)"
  },
  {
    "input": "input : list = [-1, 0, -1, -2]\noutput : list = [1, 10, 10, 19]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n([-1, 0, -1, -2],3)),-3),-1))",
    "io_inp": [
      -1,
      0,
      -1,
      -2
    ],
    "io_out": [
      1,
      10,
      10,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(mul_n(input,3)),-3),-1))"
  },
  {
    "input": "input : list = [1, 5, 0, 0]\noutput : list = [0, 0, 5, 1]",
    "output": "generated_output : list = reverse([1, 5, 0, 0])",
    "io_inp": [
      1,
      5,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, -4]\noutput : list = [9, 1, 1]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(sort_asc([4, -4, -4]),10))),5)",
    "io_inp": [
      4,
      -4,
      -4
    ],
    "io_out": [
      9,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(sort_asc(input),10))),5)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [4, 4, 0]",
    "output": "generated_output : list = sub_n(add_n([0, 0, -4],1),-3)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      4,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,1),-3)"
  },
  {
    "input": "input : list = [2, 3, -5, 5, 3]\noutput : list = [-1, 7, 7, 9]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(drop([2, 3, -5, 5, 3],1))),-4))",
    "io_inp": [
      2,
      3,
      -5,
      5,
      3
    ],
    "io_out": [
      -1,
      7,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(drop(input,1))),-4))"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [5, 3, 3]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(mul_n([-1, -1, -2],-2))),-1),2)",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(mul_n(input,-2))),-1),2)"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [6]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(drop([-3, 3, 0],1),1))),2)",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(drop(input,1),1))),2)"
  },
  {
    "input": "input : list = [-5, 0, 4, 1, 2, 3]\noutput : list = [-6, -1, 3, 0, 1, 2]",
    "output": "generated_output : list = add_n([-5, 0, 4, 1, 2, 3],-1)",
    "io_inp": [
      -5,
      0,
      4,
      1,
      2,
      3
    ],
    "io_out": [
      -6,
      -1,
      3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [2, 0, 2, 5, 3, -3]\noutput : list = [-2, 1, 3, 3, 4, 6]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_asc(sort_asc([2, 0, 2, 5, 3, -3])),1),5),5)",
    "io_inp": [
      2,
      0,
      2,
      5,
      3,
      -3
    ],
    "io_out": [
      -2,
      1,
      3,
      3,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_asc(sort_asc(input)),1),5),5)"
  },
  {
    "input": "input : list = [3, 1, 0, -2, 1]\noutput : list = [8, 6, 5, 3, 6]",
    "output": "generated_output : list = add_n([3, 1, 0, -2, 1],5)",
    "io_inp": [
      3,
      1,
      0,
      -2,
      1
    ],
    "io_out": [
      8,
      6,
      5,
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [2, -2, -1, -2, 5, 2]\noutput : list = [2, -1, -1, -4, -5, -5]",
    "output": "generated_output : list = take(sort_des(reverse(take(add_n([2, -2, -1, -2, 5, 2],-3),13))),20)",
    "io_inp": [
      2,
      -2,
      -1,
      -2,
      5,
      2
    ],
    "io_out": [
      2,
      -1,
      -1,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(add_n(input,-3),13))),20)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [1, 0]",
    "output": "generated_output : list = add_n([4, 3],-3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [36]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take([-1, 5, 5],1),-3),5),-4))",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      36
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(take(input,1),-3),5),-4))"
  },
  {
    "input": "input : list = [-4, -4, -3, -5, 0, -2]\noutput : list = [-10, -8, -8, -6]",
    "output": "generated_output : list = sort_asc(mul_n(take([-4, -4, -3, -5, 0, -2],4),2))",
    "io_inp": [
      -4,
      -4,
      -3,
      -5,
      0,
      -2
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,4),2))"
  },
  {
    "input": "input : list = [4, 1, 2, -5]\noutput : list = [7, 5, 4, -2]",
    "output": "generated_output : list = add_n(sort_des([4, 1, 2, -5]),3)",
    "io_inp": [
      4,
      1,
      2,
      -5
    ],
    "io_out": [
      7,
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sort_des([-1, -4]),-2))))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(add_n(sort_des(input),-2))))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(sort_des([0, 5]))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [1, 2]",
    "output": "generated_output : list = sub_n([-4, -3],-5)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [4, 18, 0]",
    "output": "generated_output : list = reverse(mul_n(mul_n(add_n(reverse([3, -4, 5]),-5),1),-2))",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      4,
      18,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(add_n(reverse(input),-5),1),-2))"
  },
  {
    "input": "input : list = [-2, -5, 3, 1]\noutput : list = [-20, -8, 4, 12]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(sort_asc([-2, -5, 3, 1]),10),4)))",
    "io_inp": [
      -2,
      -5,
      3,
      1
    ],
    "io_out": [
      -20,
      -8,
      4,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(sort_asc(input),10),4)))"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [-2, -2, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sub_n([-5, -4, -4],-2)))))",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [-3, -4, -3, -5]\noutput : list = [-2, -2, -3, -4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n([-3, -4, -3, -5],-1))),1)",
    "io_inp": [
      -3,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(input,-1))),1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [6, 0]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(reverse([4, -2])),2)),31)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(reverse(input)),2)),31)"
  },
  {
    "input": "input : list = [-4, -3, 2, -3, 4]\noutput : list = [-300, 260, -140, 260, 340]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(mul_n([-4, -3, 2, -3, 4],4),1)),-5),4)",
    "io_inp": [
      -4,
      -3,
      2,
      -3,
      4
    ],
    "io_out": [
      -300,
      260,
      -140,
      260,
      340
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(mul_n(input,4),1)),-5),4)"
  },
  {
    "input": "input : list = [2, 2, -4, 3, 5, 2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(drop([2, 2, -4, 3, 5, 2],4),-4),15)))",
    "io_inp": [
      2,
      2,
      -4,
      3,
      5,
      2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(drop(input,4),-4),15)))"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [-8, -3, -13]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(add_n([-2, -3, -1],3),-5),5),4),-2)",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      -8,
      -3,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(add_n(input,3),-5),5),4),-2)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [44, 24, 44]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sub_n(add_n([1, -4, 1],1),-4),-5),-4),-1)",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      44,
      24,
      44
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sub_n(add_n(input,1),-4),-5),-4),-1)"
  },
  {
    "input": "input : list = [-2, 3, 4, -3, 5]\noutput : list = [-6, -1]",
    "output": "generated_output : list = take(add_n(sub_n(sub_n(take([-2, 3, 4, -3, 5],2),-1),3),-2),19)",
    "io_inp": [
      -2,
      3,
      4,
      -3,
      5
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sub_n(take(input,2),-1),3),-2),19)"
  },
  {
    "input": "input : list = [0, 2, 2, -1]\noutput : list = [4, 4, 2, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take(reverse([0, 2, 2, -1]),6),-2)))",
    "io_inp": [
      0,
      2,
      2,
      -1
    ],
    "io_out": [
      4,
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(reverse(input),6),-2)))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(take(mul_n(reverse(sort_asc([-5, -2])),-1),25))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(reverse(sort_asc(input)),-1),25))"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [4, 5]",
    "output": "generated_output : list = take(sub_n([0, 1],-4),10)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),10)"
  },
  {
    "input": "input : list = [5, -4, -2, -1, -4]\noutput : list = [-3, -3, -1, 0, 6]",
    "output": "generated_output : list = sub_n(sort_asc([5, -4, -2, -1, -4]),-1)",
    "io_inp": [
      5,
      -4,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -1,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [0, 2, -5, -5, -3]\noutput : list = [4, 10, -11, -11, -5]",
    "output": "generated_output : list = add_n(mul_n([0, 2, -5, -5, -3],3),4)",
    "io_inp": [
      0,
      2,
      -5,
      -5,
      -3
    ],
    "io_out": [
      4,
      10,
      -11,
      -11,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,3),4)"
  },
  {
    "input": "input : list = [1, 2, 0, 0, -5, -2]\noutput : list = [6, -4, 2]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sub_n(drop([1, 2, 0, 0, -5, -2],3),-3),-2),-2),2)",
    "io_inp": [
      1,
      2,
      0,
      0,
      -5,
      -2
    ],
    "io_out": [
      6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sub_n(drop(input,3),-3),-2),-2),2)"
  },
  {
    "input": "input : list = [1, 3, 5, -1, -2]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 3, 5, -1, -2],1)",
    "io_inp": [
      1,
      3,
      5,
      -1,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -1, 4]\noutput : list = [-8, -3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_des(drop([-1, -1, 4],1)),5)),-2)",
    "io_inp": [
      -1,
      -1,
      4
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_des(drop(input,1)),5)),-2)"
  },
  {
    "input": "input : list = [-3, -2, 2, 5, 3, -4]\noutput : list = [13, 9, -7, -19, -11, 17]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(reverse([-3, -2, 2, 5, 3, -4]),-4)),-4),-5)",
    "io_inp": [
      -3,
      -2,
      2,
      5,
      3,
      -4
    ],
    "io_out": [
      13,
      9,
      -7,
      -19,
      -11,
      17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(reverse(input),-4)),-4),-5)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-20, -35]",
    "output": "generated_output : list = reverse(mul_n(reverse(reverse(add_n([-5, -2],-2))),5))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -20,
      -35
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(reverse(add_n(input,-2))),5))"
  },
  {
    "input": "input : list = [-4, 2, -4, -2]\noutput : list = [0, 0, 2, 6]",
    "output": "generated_output : list = sort_asc(add_n([-4, 2, -4, -2],4))",
    "io_inp": [
      -4,
      2,
      -4,
      -2
    ],
    "io_out": [
      0,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,4))"
  },
  {
    "input": "input : list = [1, 5, -3, -2]\noutput : list = [-6, -5, -2, 2]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_des([1, 5, -3, -2])),-3)))",
    "io_inp": [
      1,
      5,
      -3,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [-4, 1, -2, -4]\noutput : list = [-5, 10, 20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_asc([-4, 1, -2, -4]))),-5))",
    "io_inp": [
      -4,
      1,
      -2,
      -4
    ],
    "io_out": [
      -5,
      10,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [-2, -1, 3, -1, 5]\noutput : list = [-4, -3, 1, -3, 3]",
    "output": "generated_output : list = sub_n([-2, -1, 3, -1, 5],2)",
    "io_inp": [
      -2,
      -1,
      3,
      -1,
      5
    ],
    "io_out": [
      -4,
      -3,
      1,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-3, 0, 3, 1]\noutput : list = [-4, -1, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(sort_des([-3, 0, 3, 1]),1),10)))",
    "io_inp": [
      -3,
      0,
      3,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(sort_des(input),1),10)))"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [-3, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, -3])",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -1, -1, -3, -5, -2]\noutput : list = [5, 5, 15, 25, 10]",
    "output": "generated_output : list = reverse(reverse(take(drop(mul_n([2, -1, -1, -3, -5, -2],-5),1),5)))",
    "io_inp": [
      2,
      -1,
      -1,
      -3,
      -5,
      -2
    ],
    "io_out": [
      5,
      5,
      15,
      25,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(drop(mul_n(input,-5),1),5)))"
  },
  {
    "input": "input : list = [1, -4, 4, -1]\noutput : list = [3, 0, -2, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(sort_des([1, -4, 4, -1])))),-1)",
    "io_inp": [
      1,
      -4,
      4,
      -1
    ],
    "io_out": [
      3,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(sort_des(input)))),-1)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [9, 12]",
    "output": "generated_output : list = mul_n([3, 4],3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [5, -1, 0, 2, 4, 4]\noutput : list = [200, -100, -50, 50, 150, 150]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(mul_n([5, -1, 0, 2, 4, 4],5),12),5),2),5)",
    "io_inp": [
      5,
      -1,
      0,
      2,
      4,
      4
    ],
    "io_out": [
      200,
      -100,
      -50,
      50,
      150,
      150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(mul_n(input,5),12),5),2),5)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-3, 2]",
    "output": "generated_output : list = take(add_n([0, 5],-3),2)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),2)"
  },
  {
    "input": "input : list = [-1, -5, 1, -3]\noutput : list = [7, 5, 3, 1]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_asc([-1, -5, 1, -3])),2)),-4)",
    "io_inp": [
      -1,
      -5,
      1,
      -3
    ],
    "io_out": [
      7,
      5,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(sort_asc(input)),2)),-4)"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = sort_des([0, -2, -4])",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(sort_des([-2, -2]),3),-3),-2))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(sort_des(input),3),-3),-2))"
  },
  {
    "input": "input : list = [-2, 3, 3, -1, -5]\noutput : list = [-1, -1, -5, -6, -9]",
    "output": "generated_output : list = sort_des(add_n([-2, 3, 3, -1, -5],-4))",
    "io_inp": [
      -2,
      3,
      3,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -1,
      -5,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-4))"
  },
  {
    "input": "input : list = [-2, 2, -1, -5, 1]\noutput : list = [-2, -1, 2]",
    "output": "generated_output : list = sort_asc(take(take(sort_des(take([-2, 2, -1, -5, 1],3)),29),35))",
    "io_inp": [
      -2,
      2,
      -1,
      -5,
      1
    ],
    "io_out": [
      -2,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_des(take(input,3)),29),35))"
  },
  {
    "input": "input : list = [1, -5, 5, -3, -1, 2]\noutput : list = [-3, 0, 2, -6, 4, -2]",
    "output": "generated_output : list = take(add_n(mul_n(take(reverse([1, -5, 5, -3, -1, 2]),13),-1),-1),37)",
    "io_inp": [
      1,
      -5,
      5,
      -3,
      -1,
      2
    ],
    "io_out": [
      -3,
      0,
      2,
      -6,
      4,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(reverse(input),13),-1),-1),37)"
  },
  {
    "input": "input : list = [-4, -1, 0, 5]\noutput : list = [16, 11, 10, 7]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n([-4, -1, 0, 5],5)),-4),2)",
    "io_inp": [
      -4,
      -1,
      0,
      5
    ],
    "io_out": [
      16,
      11,
      10,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(input,5)),-4),2)"
  },
  {
    "input": "input : list = [0, 4, 3, 2, -4]\noutput : list = [4, 8, 7, 6, 0]",
    "output": "generated_output : list = reverse(sub_n(reverse([0, 4, 3, 2, -4]),-4))",
    "io_inp": [
      0,
      4,
      3,
      2,
      -4
    ],
    "io_out": [
      4,
      8,
      7,
      6,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(input),-4))"
  },
  {
    "input": "input : list = [4, 2, -4]\noutput : list = [-4, 2]",
    "output": "generated_output : list = sort_asc(sort_des(drop([4, 2, -4],1)))",
    "io_inp": [
      4,
      2,
      -4
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [2, 2, -1]\noutput : list = [1, 1, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(reverse(reverse([2, 2, -1])),-1)))",
    "io_inp": [
      2,
      2,
      -1
    ],
    "io_out": [
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(reverse(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [-1, 2, 5]\noutput : list = [-20, -5, 10]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(reverse(sort_des([-1, 2, 5])),-5)),-5)",
    "io_inp": [
      -1,
      2,
      5
    ],
    "io_out": [
      -20,
      -5,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(reverse(sort_des(input)),-5)),-5)"
  },
  {
    "input": "input : list = [1, 5, -1]\noutput : list = [0, 2, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([1, 5, -1]),-1))",
    "io_inp": [
      1,
      5,
      -1
    ],
    "io_out": [
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),-1))"
  },
  {
    "input": "input : list = [-2, -1, -4]\noutput : list = [-4, -7]",
    "output": "generated_output : list = add_n(drop([-2, -1, -4],1),-3)",
    "io_inp": [
      -2,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-4, -2]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sub_n([-5, -3],-4),1))),-2)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(sub_n(sub_n(input,-4),1))),-2)"
  },
  {
    "input": "input : list = [2, 4, 1, -2]\noutput : list = [1, 3, 0, -3]",
    "output": "generated_output : list = sub_n([2, 4, 1, -2],1)",
    "io_inp": [
      2,
      4,
      1,
      -2
    ],
    "io_out": [
      1,
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, 0, -1, -4, -1, 3]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = take(take(reverse(mul_n(reverse([2, 0, -1, -4, -1, 3]),2)),3),15)",
    "io_inp": [
      2,
      0,
      -1,
      -4,
      -1,
      3
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(reverse(input),2)),3),15)"
  },
  {
    "input": "input : list = [-4, 1, -5, 5]\noutput : list = [5, 1, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc([-4, 1, -5, 5]))",
    "io_inp": [
      -4,
      1,
      -5,
      5
    ],
    "io_out": [
      5,
      1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -4, -2]\noutput : list = [-7, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(drop([-2, -4, -2],1))),-1),-4)",
    "io_inp": [
      -2,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sort_asc(drop(input,1))),-1),-4)"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc([-4, 5])",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [2]",
    "output": "generated_output : list = take(take(sub_n(reverse(take([-3, 4, 3],1)),-5),26),1)",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(take(input,1)),-5),26),1)"
  },
  {
    "input": "input : list = [3, 3, 4]\noutput : list = [9, 9, 12]",
    "output": "generated_output : list = reverse(mul_n(sort_des([3, 3, 4]),3))",
    "io_inp": [
      3,
      3,
      4
    ],
    "io_out": [
      9,
      9,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [0, -3, 1, 5, 0]\noutput : list = [-5, -1, 0]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse(drop([0, -3, 1, 5, 0],2)))),-1)",
    "io_inp": [
      0,
      -3,
      1,
      5,
      0
    ],
    "io_out": [
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(drop(input,2)))),-1)"
  },
  {
    "input": "input : list = [-3, -2, -5, 0]\noutput : list = [0, -2, -3, -5]",
    "output": "generated_output : list = sort_des([-3, -2, -5, 0])",
    "io_inp": [
      -3,
      -2,
      -5,
      0
    ],
    "io_out": [
      0,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -3, 0, 5]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take([0, -3, 0, 5],1))",
    "io_inp": [
      0,
      -3,
      0,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [0, 1, -4, 1, 1, 0]\noutput : list = [18, -2, -2, -7, -7, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(mul_n([0, 1, -4, 1, 1, 0],1)),-5),2)",
    "io_inp": [
      0,
      1,
      -4,
      1,
      1,
      0
    ],
    "io_out": [
      18,
      -2,
      -2,
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(mul_n(input,1)),-5),2)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [0, -10, -10]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_asc([-2, 0, -2]),-5)),-1))",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      0,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_asc(input),-5)),-1))"
  },
  {
    "input": "input : list = [0, 3, 5, -3, -5, 1]\noutput : list = [5, 8, 10, 2, 0, 6]",
    "output": "generated_output : list = sub_n([0, 3, 5, -3, -5, 1],-5)",
    "io_inp": [
      0,
      3,
      5,
      -3,
      -5,
      1
    ],
    "io_out": [
      5,
      8,
      10,
      2,
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -1, 0, -5, 4, -3]\noutput : list = [10, 6, 2, 2, 0, -8]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(sort_asc([-1, -1, 0, -5, 4, -3]),-2)),42))",
    "io_inp": [
      -1,
      -1,
      0,
      -5,
      4,
      -3
    ],
    "io_out": [
      10,
      6,
      2,
      2,
      0,
      -8
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(sort_asc(input),-2)),42))"
  },
  {
    "input": "input : list = [-4, -1, 5, -5, -3, -1]\noutput : list = [-8, -7, -6, -4, -4, 2]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(sub_n([-4, -1, 5, -5, -3, -1],5),-2))),51)",
    "io_inp": [
      -4,
      -1,
      5,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -8,
      -7,
      -6,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(sub_n(input,5),-2))),51)"
  },
  {
    "input": "input : list = [-1, -4, 3]\noutput : list = [-4, -1, 3]",
    "output": "generated_output : list = sort_asc([-1, -4, 3])",
    "io_inp": [
      -1,
      -4,
      3
    ],
    "io_out": [
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 0, -2]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(take([1, 0, -2],1)))),-1)",
    "io_inp": [
      1,
      0,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(take(input,1)))),-1)"
  },
  {
    "input": "input : list = [-4, -5, -2, -3]\noutput : list = [-9, -10, -7, -8]",
    "output": "generated_output : list = add_n([-4, -5, -2, -3],-5)",
    "io_inp": [
      -4,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -9,
      -10,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [3, -5, -3, 4, 4, -5]\noutput : list = [6, 6, 5, -1, -3, -3]",
    "output": "generated_output : list = take(sort_des(add_n([3, -5, -3, 4, 4, -5],2)),28)",
    "io_inp": [
      3,
      -5,
      -3,
      4,
      4,
      -5
    ],
    "io_out": [
      6,
      6,
      5,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,2)),28)"
  },
  {
    "input": "input : list = [-4, -5, 2, 0]\noutput : list = [-5, -6, 1, -1]",
    "output": "generated_output : list = sub_n([-4, -5, 2, 0],1)",
    "io_inp": [
      -4,
      -5,
      2,
      0
    ],
    "io_out": [
      -5,
      -6,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [15, 0]",
    "output": "generated_output : list = reverse(mul_n(reverse([5, 0]),3))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),3))"
  },
  {
    "input": "input : list = [5, 1, 3, 5, -3]\noutput : list = [5, 3, 1, -3]",
    "output": "generated_output : list = sort_des(sort_des(drop([5, 1, 3, 5, -3],1)))",
    "io_inp": [
      5,
      1,
      3,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(drop(input,1)))"
  },
  {
    "input": "input : list = [5, -1, 2, -5]\noutput : list = [6, 3, 0, -4]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse([5, -1, 2, -5])),4),3)",
    "io_inp": [
      5,
      -1,
      2,
      -5
    ],
    "io_out": [
      6,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(input)),4),3)"
  },
  {
    "input": "input : list = [3, -2, -2, 3, -4, 5]\noutput : list = [7, 2, 2, 7, 0, 9]",
    "output": "generated_output : list = add_n([3, -2, -2, 3, -4, 5],4)",
    "io_inp": [
      3,
      -2,
      -2,
      3,
      -4,
      5
    ],
    "io_out": [
      7,
      2,
      2,
      7,
      0,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [1, 1, -3, 1]\noutput : list = [-3, -3, -7, -3]",
    "output": "generated_output : list = sub_n([1, 1, -3, 1],4)",
    "io_inp": [
      1,
      1,
      -3,
      1
    ],
    "io_out": [
      -3,
      -3,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [-30, 18, 2]",
    "output": "generated_output : list = sub_n(sub_n(take(mul_n(mul_n([-4, 2, 0],2),4),19),-3),1)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      -30,
      18,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(mul_n(mul_n(input,2),4),19),-3),1)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sub_n([-4, 4],-3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-10, 15]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-2, 3])),5)",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [4, -1, 1, 4]\noutput : list = [4, 4, 1, -1]",
    "output": "generated_output : list = reverse(reverse(sort_des(sort_des(reverse([4, -1, 1, 4])))))",
    "io_inp": [
      4,
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [1, 0, 3]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des([1, 0, 3]),1),13))",
    "io_inp": [
      1,
      0,
      3
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(input),1),13))"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [-9, 26, -14]",
    "output": "generated_output : list = reverse(add_n(add_n(sub_n(mul_n([3, -5, 2],-5),3),3),1))",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      -9,
      26,
      -14
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sub_n(mul_n(input,-5),3),3),1))"
  },
  {
    "input": "input : list = [-3, 2, -1, -5, 5, -2]\noutput : list = [-2, 0, 1, 2, 5, 8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(add_n([-3, 2, -1, -5, 5, -2],2)),3)),-4)",
    "io_inp": [
      -3,
      2,
      -1,
      -5,
      5,
      -2
    ],
    "io_out": [
      -2,
      0,
      1,
      2,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(add_n(input,2)),3)),-4)"
  },
  {
    "input": "input : list = [1, 5, 4, -2]\noutput : list = [0, 3, 6, 7]",
    "output": "generated_output : list = add_n(sort_asc([1, 5, 4, -2]),2)",
    "io_inp": [
      1,
      5,
      4,
      -2
    ],
    "io_out": [
      0,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [2, 1, 1, -3, -2, -4]\noutput : list = [6, 3, 3]",
    "output": "generated_output : list = take(take(mul_n([2, 1, 1, -3, -2, -4],3),3),17)",
    "io_inp": [
      2,
      1,
      1,
      -3,
      -2,
      -4
    ],
    "io_out": [
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,3),3),17)"
  },
  {
    "input": "input : list = [0, -5, -5]\noutput : list = [-1, 4, 4]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sub_n([0, -5, -5],4),-5),16),33),-1)",
    "io_inp": [
      0,
      -5,
      -5
    ],
    "io_out": [
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sub_n(input,4),-5),16),33),-1)"
  },
  {
    "input": "input : list = [4, 5, 4]\noutput : list = [-20, -25]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(drop([4, 5, 4],1))),5),-1)",
    "io_inp": [
      4,
      5,
      4
    ],
    "io_out": [
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(drop(input,1))),5),-1)"
  },
  {
    "input": "input : list = [-4, 1, -2, 3, -1, -1]\noutput : list = [3, 1, -1, -1, -2, -4]",
    "output": "generated_output : list = sort_des([-4, 1, -2, 3, -1, -1])",
    "io_inp": [
      -4,
      1,
      -2,
      3,
      -1,
      -1
    ],
    "io_out": [
      3,
      1,
      -1,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [5, 5, 5]",
    "output": "generated_output : list = sort_asc(add_n([3, 3, 3],2))",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [-6, 1, -2]",
    "output": "generated_output : list = take(add_n([-4, 3, 0],-2),9)",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      -6,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-2),9)"
  },
  {
    "input": "input : list = [-2, 2, -2, -5]\noutput : list = [1, 4, 4, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n(reverse([-2, 2, -2, -5]),2),4))",
    "io_inp": [
      -2,
      2,
      -2,
      -5
    ],
    "io_out": [
      1,
      4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(reverse(input),2),4))"
  },
  {
    "input": "input : list = [-1, 1, 3, -1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(take(add_n(reverse(take([-1, 1, 3, -1],1)),-1),33),1)",
    "io_inp": [
      -1,
      1,
      3,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(take(input,1)),-1),33),1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-2, 16]",
    "output": "generated_output : list = mul_n(reverse(take(sub_n(reverse([5, -4]),4),21)),-2)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -2,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(sub_n(reverse(input),4),21)),-2)"
  },
  {
    "input": "input : list = [0, -4, 1, -4, 3, 1]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(add_n(reverse(take(take([0, -4, 1, -4, 3, 1],2),11)),4))",
    "io_inp": [
      0,
      -4,
      1,
      -4,
      3,
      1
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(take(input,2),11)),4))"
  },
  {
    "input": "input : list = [1, 4, 2, 3, 1, -2]\noutput : list = [0, -1, -2, -3, -3, -6]",
    "output": "generated_output : list = sort_des(take(sort_des(take(sub_n([1, 4, 2, 3, 1, -2],4),20)),39))",
    "io_inp": [
      1,
      4,
      2,
      3,
      1,
      -2
    ],
    "io_out": [
      0,
      -1,
      -2,
      -3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(take(sub_n(input,4),20)),39))"
  },
  {
    "input": "input : list = [-4, -4, 3, 3, -5]\noutput : list = [-4, 4, 4, -3, -3]",
    "output": "generated_output : list = reverse(take(take(sub_n(add_n([-4, -4, 3, 3, -5],-4),-5),25),21))",
    "io_inp": [
      -4,
      -4,
      3,
      3,
      -5
    ],
    "io_out": [
      -4,
      4,
      4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(add_n(input,-4),-5),25),21))"
  },
  {
    "input": "input : list = [-2, -1, 2, -5]\noutput : list = [9, 3, 1, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(mul_n([-2, -1, 2, -5],2),5))),17)",
    "io_inp": [
      -2,
      -1,
      2,
      -5
    ],
    "io_out": [
      9,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(mul_n(input,2),5))),17)"
  },
  {
    "input": "input : list = [4, -5, -2, -4]\noutput : list = [0, -5, -15, -45]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(add_n([4, -5, -2, -4],5),-1)),5))",
    "io_inp": [
      4,
      -5,
      -2,
      -4
    ],
    "io_out": [
      0,
      -5,
      -15,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(add_n(input,5),-1)),5))"
  },
  {
    "input": "input : list = [-4, 0, 2, 4, -5, -5]\noutput : list = [11, 9, 7, 3, 2, 2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(reverse([-4, 0, 2, 4, -5, -5]))),-5),2)",
    "io_inp": [
      -4,
      0,
      2,
      4,
      -5,
      -5
    ],
    "io_out": [
      11,
      9,
      7,
      3,
      2,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(reverse(input))),-5),2)"
  },
  {
    "input": "input : list = [-3, 3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des(reverse(drop([-3, 3, -1],1)))",
    "io_inp": [
      -3,
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [11, 14]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(mul_n([-4, -5],-3)))),-1)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      11,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(mul_n(input,-3)))),-1)"
  },
  {
    "input": "input : list = [5, -2, 2, -5, -3]\noutput : list = [-28, -22]",
    "output": "generated_output : list = add_n(take(mul_n(drop(add_n([5, -2, 2, -5, -3],-3),3),3),7),-4)",
    "io_inp": [
      5,
      -2,
      2,
      -5,
      -3
    ],
    "io_out": [
      -28,
      -22
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(drop(add_n(input,-3),3),3),7),-4)"
  },
  {
    "input": "input : list = [4, 4, 4, 5, -2]\noutput : list = [7, -11, -11, -11, -14]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n(sub_n([4, 4, 4, 5, -2],2),-3),-5)))",
    "io_inp": [
      4,
      4,
      4,
      5,
      -2
    ],
    "io_out": [
      7,
      -11,
      -11,
      -11,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(sub_n(input,2),-3),-5)))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [2, 3]",
    "output": "generated_output : list = take(add_n(add_n(reverse([5, 4]),-3),1),9)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(input),-3),1),9)"
  },
  {
    "input": "input : list = [-5, 5, 5, -4, -2]\noutput : list = [-1, -3, 6, 6]",
    "output": "generated_output : list = reverse(add_n(drop([-5, 5, 5, -4, -2],1),1))",
    "io_inp": [
      -5,
      5,
      5,
      -4,
      -2
    ],
    "io_out": [
      -1,
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(drop(input,1),1))"
  },
  {
    "input": "input : list = [-4, 3, -1, 1]\noutput : list = [-5, 2, -2, 0]",
    "output": "generated_output : list = sub_n([-4, 3, -1, 1],1)",
    "io_inp": [
      -4,
      3,
      -1,
      1
    ],
    "io_out": [
      -5,
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -2, 4, -2, -4, -1]\noutput : list = [-7, -5, -4, 1]",
    "output": "generated_output : list = sub_n(reverse(sort_des(drop([-3, -2, 4, -2, -4, -1],2))),3)",
    "io_inp": [
      -3,
      -2,
      4,
      -2,
      -4,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(drop(input,2))),3)"
  },
  {
    "input": "input : list = [0, 5, 5, -1, 0]\noutput : list = [0, 5]",
    "output": "generated_output : list = take([0, 5, 5, -1, 0],2)",
    "io_inp": [
      0,
      5,
      5,
      -1,
      0
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [7, 8]",
    "output": "generated_output : list = add_n(take(take(add_n(add_n([4, 5],-2),1),2),9),4)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(add_n(input,-2),1),2),9),4)"
  },
  {
    "input": "input : list = [3, 2, -3, 5, -1]\noutput : list = [7, 1, 9, 4, 3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(reverse([3, 2, -3, 5, -1]),13),-1),-2),4)",
    "io_inp": [
      3,
      2,
      -3,
      5,
      -1
    ],
    "io_out": [
      7,
      1,
      9,
      4,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(reverse(input),13),-1),-2),4)"
  },
  {
    "input": "input : list = [-4, -3, -4, 3, 3, 3]\noutput : list = [1, 2, 1, 8, 8, 8]",
    "output": "generated_output : list = sub_n([-4, -3, -4, 3, 3, 3],-5)",
    "io_inp": [
      -4,
      -3,
      -4,
      3,
      3,
      3
    ],
    "io_out": [
      1,
      2,
      1,
      8,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [1, -4]",
    "output": "generated_output : list = mul_n([-1, 4],-1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-3, 3, -3, 3, -4]\noutput : list = [-22]",
    "output": "generated_output : list = sub_n(add_n(sort_des(drop(mul_n([-3, 3, -3, 3, -4],3),4)),-5),5)",
    "io_inp": [
      -3,
      3,
      -3,
      3,
      -4
    ],
    "io_out": [
      -22
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(drop(mul_n(input,3),4)),-5),5)"
  },
  {
    "input": "input : list = [2, -2, 2, -3, 5, -4]\noutput : list = [0, 0, -4]",
    "output": "generated_output : list = add_n(sort_des(drop(reverse([2, -2, 2, -3, 5, -4]),3)),-2)",
    "io_inp": [
      2,
      -2,
      2,
      -3,
      5,
      -4
    ],
    "io_out": [
      0,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(reverse(input),3)),-2)"
  },
  {
    "input": "input : list = [5, -4, -5]\noutput : list = [-49, -40]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(drop([5, -4, -5],1)),-3),-3),4)",
    "io_inp": [
      5,
      -4,
      -5
    ],
    "io_out": [
      -49,
      -40
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(drop(input,1)),-3),-3),4)"
  },
  {
    "input": "input : list = [4, 5, -5, -4, -3, 5]\noutput : list = [4, 5, -5, -4, -3, 5]",
    "output": "generated_output : list = sub_n(sub_n([4, 5, -5, -4, -3, 5],-4),4)",
    "io_inp": [
      4,
      5,
      -5,
      -4,
      -3,
      5
    ],
    "io_out": [
      4,
      5,
      -5,
      -4,
      -3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-4),4)"
  },
  {
    "input": "input : list = [-3, 2, 2]\noutput : list = [-6, -1, -1]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n([-3, 2, 2],3),6)))",
    "io_inp": [
      -3,
      2,
      2
    ],
    "io_out": [
      -6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(input,3),6)))"
  },
  {
    "input": "input : list = [5, 0, 2, -4, -1, 0]\noutput : list = [5, 2, 0, 0, -1, -4]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(reverse([5, 0, 2, -4, -1, 0]))),-1),-1)",
    "io_inp": [
      5,
      0,
      2,
      -4,
      -1,
      0
    ],
    "io_out": [
      5,
      2,
      0,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(reverse(input))),-1),-1)"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [-6, -4, -3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_asc([-1, 2, 1])),-5)))",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      -6,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sort_des(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [3, 3, 1, -4, -1]\noutput : list = [5, 0, 3]",
    "output": "generated_output : list = take(take(sub_n(add_n(drop([3, 3, 1, -4, -1],2),5),1),14),38)",
    "io_inp": [
      3,
      3,
      1,
      -4,
      -1
    ],
    "io_out": [
      5,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(drop(input,2),5),1),14),38)"
  },
  {
    "input": "input : list = [-1, 5, -1, -3, -5]\noutput : list = [-2, 0, 2, 8, 2]",
    "output": "generated_output : list = add_n(add_n(reverse([-1, 5, -1, -3, -5]),2),1)",
    "io_inp": [
      -1,
      5,
      -1,
      -3,
      -5
    ],
    "io_out": [
      -2,
      0,
      2,
      8,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),2),1)"
  },
  {
    "input": "input : list = [1, -2, 3, -2, -5]\noutput : list = [2]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(take([1, -2, 3, -2, -5],1)))),1)",
    "io_inp": [
      1,
      -2,
      3,
      -2,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(take(input,1)))),1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n([-5, -1],-2)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [4, 2, 3, -5, 1]\noutput : list = [-9, -3, -2, -1, 0]",
    "output": "generated_output : list = add_n(sort_asc([4, 2, 3, -5, 1]),-4)",
    "io_inp": [
      4,
      2,
      3,
      -5,
      1
    ],
    "io_out": [
      -9,
      -3,
      -2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-3, -4, -4, 4, 1]\noutput : list = [7, 4, 0, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(reverse([-3, -4, -4, 4, 1])),3)))",
    "io_inp": [
      -3,
      -4,
      -4,
      4,
      1
    ],
    "io_out": [
      7,
      4,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(reverse(input)),3)))"
  },
  {
    "input": "input : list = [-4, 4, -4, 2, 3, 1]\noutput : list = [1, 3, 2, -4, 4, -4]",
    "output": "generated_output : list = reverse([-4, 4, -4, 2, 3, 1])",
    "io_inp": [
      -4,
      4,
      -4,
      2,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      2,
      -4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2, -3, 0, -4, -3]\noutput : list = [75, 105, 120, 120, 135, 150]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_des([-5, -2, -3, 0, -4, -3]),3),-2),3),-5)",
    "io_inp": [
      -5,
      -2,
      -3,
      0,
      -4,
      -3
    ],
    "io_out": [
      75,
      105,
      120,
      120,
      135,
      150
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_des(input),3),-2),3),-5)"
  },
  {
    "input": "input : list = [5, -2, 3, -3, 3]\noutput : list = [-42, -30, 30, 30, 54]",
    "output": "generated_output : list = mul_n(take(sub_n(mul_n(sort_asc([5, -2, 3, -3, 3]),-4),-2),45),-3)",
    "io_inp": [
      5,
      -2,
      3,
      -3,
      3
    ],
    "io_out": [
      -42,
      -30,
      30,
      30,
      54
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(mul_n(sort_asc(input),-4),-2),45),-3)"
  },
  {
    "input": "input : list = [0, 4, -2, -3, 2, 4]\noutput : list = [-2, -1, 1, 3, 5, 5]",
    "output": "generated_output : list = add_n(sort_asc([0, 4, -2, -3, 2, 4]),1)",
    "io_inp": [
      0,
      4,
      -2,
      -3,
      2,
      4
    ],
    "io_out": [
      -2,
      -1,
      1,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [0, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sort_des([5, 1, 4])),1)))",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_asc(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [-5, 2, -5, -3]\noutput : list = [-3, -5, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, -5, -3])",
    "io_inp": [
      -5,
      2,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, 0]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = sort_asc(add_n([1, 3, 0],-4))",
    "io_inp": [
      1,
      3,
      0
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [0, -5, -2, 1]\noutput : list = [40, 25, 15, 10]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sub_n([0, -5, -2, 1],3)),-5)))",
    "io_inp": [
      0,
      -5,
      -2,
      1
    ],
    "io_out": [
      40,
      25,
      15,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sub_n(input,3)),-5)))"
  },
  {
    "input": "input : list = [-5, -5, 3, 2, 2, -1]\noutput : list = [4, 4, -4, -10, -10, -12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_des([-5, -5, 3, 2, 2, -1]),-1),-2)),-2)",
    "io_inp": [
      -5,
      -5,
      3,
      2,
      2,
      -1
    ],
    "io_out": [
      4,
      4,
      -4,
      -10,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_des(input),-1),-2)),-2)"
  },
  {
    "input": "input : list = [-4, -4, -1, -2]\noutput : list = [-14, -14, 4, -2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(mul_n([-4, -4, -1, -2],-3),-2),-3),-4),-3)",
    "io_inp": [
      -4,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -14,
      -14,
      4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(mul_n(input,-3),-2),-3),-4),-3)"
  },
  {
    "input": "input : list = [5, 2, 1, -1]\noutput : list = [2, -1, -2, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([5, 2, 1, -1]),3))",
    "io_inp": [
      5,
      2,
      1,
      -1
    ],
    "io_out": [
      2,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-2, -2, -2, 3, 3]\noutput : list = [10, 10, 35, 35, 35]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n([-2, -2, -2, 3, 3],5)))),-5)",
    "io_inp": [
      -2,
      -2,
      -2,
      3,
      3
    ],
    "io_out": [
      10,
      10,
      35,
      35,
      35
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n(input,5)))),-5)"
  },
  {
    "input": "input : list = [4, 0, 2, 2, 5, 0]\noutput : list = [-4, -8, -16, -16, -24, -24]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(add_n([4, 0, 2, 2, 5, 0],-5),-4),3),4))",
    "io_inp": [
      4,
      0,
      2,
      2,
      5,
      0
    ],
    "io_out": [
      -4,
      -8,
      -16,
      -16,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(add_n(input,-5),-4),3),4))"
  },
  {
    "input": "input : list = [-4, -1, -2, 2, 1, -1]\noutput : list = [2, -1, -2, -4]",
    "output": "generated_output : list = sort_des(take([-4, -1, -2, 2, 1, -1],4))",
    "io_inp": [
      -4,
      -1,
      -2,
      2,
      1,
      -1
    ],
    "io_out": [
      2,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,4))"
  },
  {
    "input": "input : list = [-1, 2, -3, -4, 5]\noutput : list = [-4, -5, 4]",
    "output": "generated_output : list = reverse(take(add_n(reverse(drop([-1, 2, -3, -4, 5],2)),-1),15))",
    "io_inp": [
      -1,
      2,
      -3,
      -4,
      5
    ],
    "io_out": [
      -4,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(drop(input,2)),-1),15))"
  },
  {
    "input": "input : list = [-1, 1, -3, 5]\noutput : list = [6, 2, 0, -2]",
    "output": "generated_output : list = take(take(sort_des(take(add_n([-1, 1, -3, 5],1),18)),30),22)",
    "io_inp": [
      -1,
      1,
      -3,
      5
    ],
    "io_out": [
      6,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(take(add_n(input,1),18)),30),22)"
  },
  {
    "input": "input : list = [-5, 2, 3, -3, -1, 3]\noutput : list = [2, 2, 1, -2, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(take(add_n(sub_n([-5, 2, 3, -3, -1, 3],1),-1),9)),1)",
    "io_inp": [
      -5,
      2,
      3,
      -3,
      -1,
      3
    ],
    "io_out": [
      2,
      2,
      1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(add_n(sub_n(input,1),-1),9)),1)"
  },
  {
    "input": "input : list = [-2, 5, 4, -1, 5, -4]\noutput : list = [-2, -3, -8, -2, -11]",
    "output": "generated_output : list = sub_n(add_n(take(drop([-2, 5, 4, -1, 5, -4],1),24),-2),5)",
    "io_inp": [
      -2,
      5,
      4,
      -1,
      5,
      -4
    ],
    "io_out": [
      -2,
      -3,
      -8,
      -2,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(drop(input,1),24),-2),5)"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [-26, -11]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(drop(sub_n([0, 1, -2],3),1),5)),-1)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      -26,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(drop(sub_n(input,3),1),5)),-1)"
  },
  {
    "input": "input : list = [-4, -4, 5, -4, -2, 0]\noutput : list = [20, 0, -8, -16, -16, -16]",
    "output": "generated_output : list = take(sort_des(mul_n([-4, -4, 5, -4, -2, 0],4)),18)",
    "io_inp": [
      -4,
      -4,
      5,
      -4,
      -2,
      0
    ],
    "io_out": [
      20,
      0,
      -8,
      -16,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,4)),18)"
  },
  {
    "input": "input : list = [5, -2, -1]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(take(drop(add_n([5, -2, -1],2),1),7)))",
    "io_inp": [
      5,
      -2,
      -1
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(drop(add_n(input,2),1),7)))"
  },
  {
    "input": "input : list = [-2, -3, -2, -2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take([-2, -3, -2, -2],1))",
    "io_inp": [
      -2,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [0, 1, 1, -4, 1, -5]\noutput : list = [0, 1, 1, -4, 1, -5]",
    "output": "generated_output : list = mul_n([0, 1, 1, -4, 1, -5],1)",
    "io_inp": [
      0,
      1,
      1,
      -4,
      1,
      -5
    ],
    "io_out": [
      0,
      1,
      1,
      -4,
      1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [1, -5, 2, -2, -4]\noutput : list = [1, 2, 4, 7, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(add_n([1, -5, 2, -2, -4],3),3),-3),3))",
    "io_inp": [
      1,
      -5,
      2,
      -2,
      -4
    ],
    "io_out": [
      1,
      2,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(add_n(input,3),3),-3),3))"
  },
  {
    "input": "input : list = [-3, -2, 3, 0, 4]\noutput : list = [-27, -18, 0, 27, 36]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_des([-3, -2, 3, 0, 4]),3)),3))",
    "io_inp": [
      -3,
      -2,
      3,
      0,
      4
    ],
    "io_out": [
      -27,
      -18,
      0,
      27,
      36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_des(input),3)),3))"
  },
  {
    "input": "input : list = [-2, 3, -3]\noutput : list = [0, 1, 6]",
    "output": "generated_output : list = add_n(reverse(add_n(add_n(sort_des([-2, 3, -3]),3),-1)),1)",
    "io_inp": [
      -2,
      3,
      -3
    ],
    "io_out": [
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(add_n(sort_des(input),3),-1)),1)"
  },
  {
    "input": "input : list = [-2, 1, 2, -2]\noutput : list = [-7, -8, -11, -11]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(sub_n([-2, 1, 2, -2],3),-4)),-2),31)",
    "io_inp": [
      -2,
      1,
      2,
      -2
    ],
    "io_out": [
      -7,
      -8,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(sub_n(input,3),-4)),-2),31)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [9, 6]",
    "output": "generated_output : list = mul_n(reverse([2, 3]),3)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [0, 2, -4]\noutput : list = [-11, -3, 13]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(add_n(mul_n([0, 2, -4],-4),-3))))",
    "io_inp": [
      0,
      2,
      -4
    ],
    "io_out": [
      -11,
      -3,
      13
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(add_n(mul_n(input,-4),-3))))"
  },
  {
    "input": "input : list = [0, -3, -3, 4]\noutput : list = [0, -3]",
    "output": "generated_output : list = take([0, -3, -3, 4],2)",
    "io_inp": [
      0,
      -3,
      -3,
      4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 4, 2, -2]\noutput : list = [-2, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sub_n([3, 4, 2, -2],-4))),4))",
    "io_inp": [
      3,
      4,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_des(sub_n(input,-4))),4))"
  },
  {
    "input": "input : list = [0, 5, 5, 0, -1]\noutput : list = [5, 5, 0, 0, -1]",
    "output": "generated_output : list = sort_des([0, 5, 5, 0, -1])",
    "io_inp": [
      0,
      5,
      5,
      0,
      -1
    ],
    "io_out": [
      5,
      5,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -2, -3, -5]\noutput : list = [-3, -1, 0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n([-2, -2, -3, -5],-2)))",
    "io_inp": [
      -2,
      -2,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(input,-2)))"
  },
  {
    "input": "input : list = [4, -3, 0, 2, -1, 0]\noutput : list = [-13, -11, -10, -10, -8, -6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(mul_n([4, -3, 0, 2, -1, 0],1),4),4),2))",
    "io_inp": [
      4,
      -3,
      0,
      2,
      -1,
      0
    ],
    "io_out": [
      -13,
      -11,
      -10,
      -10,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(mul_n(input,1),4),4),2))"
  },
  {
    "input": "input : list = [-4, -1, -5, -3, 1, -2]\noutput : list = [-3, 0, -4, -6, -2, -5]",
    "output": "generated_output : list = add_n(reverse([-4, -1, -5, -3, 1, -2]),-1)",
    "io_inp": [
      -4,
      -1,
      -5,
      -3,
      1,
      -2
    ],
    "io_out": [
      -3,
      0,
      -4,
      -6,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [-21, -1, 24]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_asc(mul_n([-4, 5, 1],-5)))),-4)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      -21,
      -1,
      24
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_asc(mul_n(input,-5)))),-4)"
  },
  {
    "input": "input : list = [-3, -2, 2]\noutput : list = [-2, 2, 3]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_des(add_n([-3, -2, 2],-4)),4)),-1)",
    "io_inp": [
      -3,
      -2,
      2
    ],
    "io_out": [
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_des(add_n(input,-4)),4)),-1)"
  },
  {
    "input": "input : list = [2, 5, -3, -4]\noutput : list = [4, 16, -16, -20]",
    "output": "generated_output : list = sub_n(mul_n([2, 5, -3, -4],4),4)",
    "io_inp": [
      2,
      5,
      -3,
      -4
    ],
    "io_out": [
      4,
      16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,4),4)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(sort_des(sort_des([4, 4])),11)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(input)),11)"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [24, 12, 8]",
    "output": "generated_output : list = reverse(reverse(sub_n(sub_n(mul_n([5, 2, 1],4),-1),-3)))",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      24,
      12,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sub_n(mul_n(input,4),-1),-3)))"
  },
  {
    "input": "input : list = [4, -2, 2, -1, -5]\noutput : list = [-5, -9]",
    "output": "generated_output : list = add_n(drop([4, -2, 2, -1, -5],3),-4)",
    "io_inp": [
      4,
      -2,
      2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -9
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-4)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [8, 4]",
    "output": "generated_output : list = take(mul_n(add_n(sort_asc(sort_asc([-5, -4])),3),-4),7)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_asc(sort_asc(input)),3),-4),7)"
  },
  {
    "input": "input : list = [0, 1, 3]\noutput : list = [0, 1, 3]",
    "output": "generated_output : list = sort_asc([0, 1, 3])",
    "io_inp": [
      0,
      1,
      3
    ],
    "io_out": [
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [0, -8]",
    "output": "generated_output : list = sub_n([4, -4],4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      0,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [0, 5, -3, 1, -1]\noutput : list = [8, 4, 3, 2, 0]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(add_n([0, 5, -3, 1, -1],4))),-3),-4)",
    "io_inp": [
      0,
      5,
      -3,
      1,
      -1
    ],
    "io_out": [
      8,
      4,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(add_n(input,4))),-3),-4)"
  },
  {
    "input": "input : list = [-3, -5, -4, 3, 3]\noutput : list = [-9, -9, 9, 12, 15]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(take(mul_n([-3, -5, -4, 3, 3],1),20))),-3)",
    "io_inp": [
      -3,
      -5,
      -4,
      3,
      3
    ],
    "io_out": [
      -9,
      -9,
      9,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(take(mul_n(input,1),20))),-3)"
  },
  {
    "input": "input : list = [-5, 0, -3, 1]\noutput : list = [-5, 0]",
    "output": "generated_output : list = reverse(take(sort_des(sort_des(take([-5, 0, -3, 1],2))),13))",
    "io_inp": [
      -5,
      0,
      -3,
      1
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sort_des(take(input,2))),13))"
  },
  {
    "input": "input : list = [-1, -4, 5, 1]\noutput : list = [12, 4, 0, -6]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_des([-1, -4, 5, 1]),-4),-3),-1),-2)",
    "io_inp": [
      -1,
      -4,
      5,
      1
    ],
    "io_out": [
      12,
      4,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sub_n(sort_des(input),-4),-3),-1),-2)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [30, 0]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(add_n([-5, 5],2)),-3)),3)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      30,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(add_n(input,2)),-3)),3)"
  },
  {
    "input": "input : list = [2, -5, -3, 0, -3, 1]\noutput : list = [5, 3, 0, -2]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(take([2, -5, -3, 0, -3, 1],4)),3),6))",
    "io_inp": [
      2,
      -5,
      -3,
      0,
      -3,
      1
    ],
    "io_out": [
      5,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(take(input,4)),3),6))"
  },
  {
    "input": "input : list = [1, 3, 4, -2, -5]\noutput : list = [1]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(take([1, 3, 4, -2, -5],1),4)),39),4)",
    "io_inp": [
      1,
      3,
      4,
      -2,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(take(input,1),4)),39),4)"
  },
  {
    "input": "input : list = [5, -5, 0, -4]\noutput : list = [8, 6, -2, -12]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sub_n([5, -5, 0, -4],-2)),-1),-1),2)",
    "io_inp": [
      5,
      -5,
      0,
      -4
    ],
    "io_out": [
      8,
      6,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sub_n(input,-2)),-1),-1),2)"
  },
  {
    "input": "input : list = [4, 0, 2, 4, 4, -2]\noutput : list = [1, 1, 1, -1, -3, -5]",
    "output": "generated_output : list = take(reverse(reverse(sub_n(sort_des([4, 0, 2, 4, 4, -2]),3))),9)",
    "io_inp": [
      4,
      0,
      2,
      4,
      4,
      -2
    ],
    "io_out": [
      1,
      1,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sub_n(sort_des(input),3))),9)"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = mul_n(sort_asc(take(reverse(drop([-5, -2, 0],1)),23)),-2)",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(reverse(drop(input,1)),23)),-2)"
  },
  {
    "input": "input : list = [-3, 1, -3]\noutput : list = [40, -20, 40]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(mul_n([-3, 1, -3],-3)),-1),5),37)",
    "io_inp": [
      -3,
      1,
      -3
    ],
    "io_out": [
      40,
      -20,
      40
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(mul_n(input,-3)),-1),5),37)"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [-4, -5, 0]",
    "output": "generated_output : list = reverse(add_n([5, 0, 1],-5))",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      -4,
      -5,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-5))"
  },
  {
    "input": "input : list = [1, -2, -4, 2, 3, -4]\noutput : list = [-4, -5, -6, -9, -11, -11]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(sort_des([1, -2, -4, 2, 3, -4]),2)),2),-3)",
    "io_inp": [
      1,
      -2,
      -4,
      2,
      3,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -9,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(sort_des(input),2)),2),-3)"
  },
  {
    "input": "input : list = [-4, 0, 3, 3, -5]\noutput : list = [-5]",
    "output": "generated_output : list = sort_des(drop(sort_des(sort_des(reverse([-4, 0, 3, 3, -5]))),4))",
    "io_inp": [
      -4,
      0,
      3,
      3,
      -5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(sort_des(reverse(input))),4))"
  },
  {
    "input": "input : list = [3, 2, -5, -5]\noutput : list = [21, 0, -3]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(take(add_n([3, 2, -5, -5],-2),3)),-1),3)",
    "io_inp": [
      3,
      2,
      -5,
      -5
    ],
    "io_out": [
      21,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(take(add_n(input,-2),3)),-1),3)"
  },
  {
    "input": "input : list = [-2, -5, 1, -4, -2, -5]\noutput : list = [6, 3, 3, 1, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_des([-2, -5, 1, -4, -2, -5]),-1)),4))",
    "io_inp": [
      -2,
      -5,
      1,
      -4,
      -2,
      -5
    ],
    "io_out": [
      6,
      3,
      3,
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sub_n(sort_des(input),-1)),4))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n([1, -2],5)))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(input,5)))"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sort_des(take(take(sort_des([1, 3, -1]),1),6)))",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(sort_des(input),1),6)))"
  },
  {
    "input": "input : list = [-1, -3, 2, 1, 1]\noutput : list = [2, 0, 5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take([-1, -3, 2, 1, 1],3),1),-5),-1)",
    "io_inp": [
      -1,
      -3,
      2,
      1,
      1
    ],
    "io_out": [
      2,
      0,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(input,3),1),-5),-1)"
  },
  {
    "input": "input : list = [3, -5, -1]\noutput : list = [16, 0]",
    "output": "generated_output : list = sub_n(mul_n(take(drop([3, -5, -1],1),14),-4),4)",
    "io_inp": [
      3,
      -5,
      -1
    ],
    "io_out": [
      16,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(drop(input,1),14),-4),4)"
  },
  {
    "input": "input : list = [-5, -5, 0]\noutput : list = [-5, -10, -10]",
    "output": "generated_output : list = sub_n(add_n(reverse([-5, -5, 0]),-4),1)",
    "io_inp": [
      -5,
      -5,
      0
    ],
    "io_out": [
      -5,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-4),1)"
  },
  {
    "input": "input : list = [5, 2, -5, 5, -3]\noutput : list = [-35, -20, 15, -35, 5]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n([5, 2, -5, 5, -3],3),-4),-5),5)",
    "io_inp": [
      5,
      2,
      -5,
      5,
      -3
    ],
    "io_out": [
      -35,
      -20,
      15,
      -35,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(input,3),-4),-5),5)"
  },
  {
    "input": "input : list = [0, 1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_asc(drop([0, 1, 5],1))),31))",
    "io_inp": [
      0,
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_asc(drop(input,1))),31))"
  },
  {
    "input": "input : list = [4, -3, -2, -4, -3]\noutput : list = [-4, -3]",
    "output": "generated_output : list = drop([4, -3, -2, -4, -3],3)",
    "io_inp": [
      4,
      -3,
      -2,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [2, -3, 0, 1, -5, 2]\noutput : list = [10, -15, 0, 5, -25, 10]",
    "output": "generated_output : list = mul_n([2, -3, 0, 1, -5, 2],5)",
    "io_inp": [
      2,
      -3,
      0,
      1,
      -5,
      2
    ],
    "io_out": [
      10,
      -15,
      0,
      5,
      -25,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -4, -4, 0]\noutput : list = [-12, -28, -28, -24]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n([-3, -4, -4, 0],2),-2),2)),-2)",
    "io_inp": [
      -3,
      -4,
      -4,
      0
    ],
    "io_out": [
      -12,
      -28,
      -28,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n(input,2),-2),2)),-2)"
  },
  {
    "input": "input : list = [-4, 3, -1, -1, -5, -3]\noutput : list = [9, 2, 6, 6, 10, 8]",
    "output": "generated_output : list = mul_n(add_n([-4, 3, -1, -1, -5, -3],-5),-1)",
    "io_inp": [
      -4,
      3,
      -1,
      -1,
      -5,
      -3
    ],
    "io_out": [
      9,
      2,
      6,
      6,
      10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),-1)"
  },
  {
    "input": "input : list = [-5, 1, -3, -2]\noutput : list = [-4, -7, -8, -10]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sort_asc([-5, 1, -3, -2]),16),4),-1))",
    "io_inp": [
      -5,
      1,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -7,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sort_asc(input),16),4),-1))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [30, 60]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sort_asc([1, 2]),3),-2),-5),19)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      30,
      60
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sort_asc(input),3),-2),-5),19)"
  },
  {
    "input": "input : list = [-2, 2, 5, -2, -3]\noutput : list = [3, 0, -4, -4, -5]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(sort_asc([-2, 2, 5, -2, -3]),1),3)),-5)",
    "io_inp": [
      -2,
      2,
      5,
      -2,
      -3
    ],
    "io_out": [
      3,
      0,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(sort_asc(input),1),3)),-5)"
  },
  {
    "input": "input : list = [0, -3, 3, 4]\noutput : list = [-5, 10, 25, 30]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n([0, -3, 3, 4],3),5),5))",
    "io_inp": [
      0,
      -3,
      3,
      4
    ],
    "io_out": [
      -5,
      10,
      25,
      30
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(input,3),5),5))"
  },
  {
    "input": "input : list = [1, 3, 3, 5, 1, 2]\noutput : list = [7, 5, 5, 4, 3, 3]",
    "output": "generated_output : list = take(add_n(take(sort_des(sort_des([1, 3, 3, 5, 1, 2])),19),2),20)",
    "io_inp": [
      1,
      3,
      3,
      5,
      1,
      2
    ],
    "io_out": [
      7,
      5,
      5,
      4,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(sort_des(input)),19),2),20)"
  },
  {
    "input": "input : list = [-5, 1, 5, 1, -4, -4]\noutput : list = [0, -4, -4, -9, -9, -10]",
    "output": "generated_output : list = take(sort_des(take(take(add_n([-5, 1, 5, 1, -4, -4],-5),16),25)),7)",
    "io_inp": [
      -5,
      1,
      5,
      1,
      -4,
      -4
    ],
    "io_out": [
      0,
      -4,
      -4,
      -9,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(take(take(add_n(input,-5),16),25)),7)"
  },
  {
    "input": "input : list = [-5, -3, 0, 1, 3, 3]\noutput : list = [15, 13, 10, 9, 7, 7]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(sub_n(add_n([-5, -3, 0, 1, 3, 3],-5),5),-1)))",
    "io_inp": [
      -5,
      -3,
      0,
      1,
      3,
      3
    ],
    "io_out": [
      15,
      13,
      10,
      9,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(sub_n(add_n(input,-5),5),-1)))"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(take(drop([-3, 1, -2],1),14),25)",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(take(drop(input,1),14),25)"
  },
  {
    "input": "input : list = [0, 1, 1]\noutput : list = [-8, -8, -5]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(reverse([0, 1, 1]),-3),5)))",
    "io_inp": [
      0,
      1,
      1
    ],
    "io_out": [
      -8,
      -8,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(mul_n(reverse(input),-3),5)))"
  },
  {
    "input": "input : list = [-3, 3, 1]\noutput : list = [1, 3, -3]",
    "output": "generated_output : list = reverse([-3, 3, 1])",
    "io_inp": [
      -3,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, -2, -3]\noutput : list = [12, -9, -9, -12]",
    "output": "generated_output : list = add_n(mul_n(reverse(reverse(sort_des([5, -2, -2, -3]))),3),-3)",
    "io_inp": [
      5,
      -2,
      -2,
      -3
    ],
    "io_out": [
      12,
      -9,
      -9,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(reverse(sort_des(input))),3),-3)"
  },
  {
    "input": "input : list = [3, 0, 3, -2]\noutput : list = [14, 5, 14, -1]",
    "output": "generated_output : list = sub_n(mul_n([3, 0, 3, -2],3),-5)",
    "io_inp": [
      3,
      0,
      3,
      -2
    ],
    "io_out": [
      14,
      5,
      14,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),-5)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [-4, 8, 20]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n([5, -1, 2],2)),-2)),4)",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      -4,
      8,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n(input,2)),-2)),4)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [3, 6]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sort_asc([2, -1]))),-4))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sort_asc(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(reverse(sort_des([3, 4])))))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse([-5, -2])",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, 5]\noutput : list = [25, -5]",
    "output": "generated_output : list = sort_des(reverse(mul_n(drop([4, -1, 5],1),5)))",
    "io_inp": [
      4,
      -1,
      5
    ],
    "io_out": [
      25,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(drop(input,1),5)))"
  },
  {
    "input": "input : list = [-1, 5, -3, 2, -2, 1]\noutput : list = [2, -2, -4, -10]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(sort_des([-1, 5, -3, 2, -2, 1])),4),-2))",
    "io_inp": [
      -1,
      5,
      -3,
      2,
      -2,
      1
    ],
    "io_out": [
      2,
      -2,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(sort_des(input)),4),-2))"
  },
  {
    "input": "input : list = [4, 5, 3, 5, 4]\noutput : list = [24, 28, 20, 28, 24]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(add_n([4, 5, 3, 5, 4],-2),-2),-2),4),25)",
    "io_inp": [
      4,
      5,
      3,
      5,
      4
    ],
    "io_out": [
      24,
      28,
      20,
      28,
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(add_n(input,-2),-2),-2),4),25)"
  },
  {
    "input": "input : list = [0, 0, -5, 5]\noutput : list = [-5, 0, 0, 5]",
    "output": "generated_output : list = sort_asc([0, 0, -5, 5])",
    "io_inp": [
      0,
      0,
      -5,
      5
    ],
    "io_out": [
      -5,
      0,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, 5, -1, -2, 4, 2]\noutput : list = [-2, -2, -1, 2, 4, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(sub_n(sort_des([-2, 5, -1, -2, 4, 2]),-2),25)),2)",
    "io_inp": [
      -2,
      5,
      -1,
      -2,
      4,
      2
    ],
    "io_out": [
      -2,
      -2,
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sub_n(sort_des(input),-2),25)),2)"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [250, 0, -250]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(mul_n([0, -2, 2],-5),-5)),-5),29)",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      250,
      0,
      -250
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(mul_n(input,-5),-5)),-5),29)"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [-3, 2, 4]",
    "output": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse([0, 5, -2]),2),-1)),21)",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      -3,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sub_n(reverse(input),2),-1)),21)"
  },
  {
    "input": "input : list = [-2, -1, 1, 4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = drop([-2, -1, 1, 4, -1],3)",
    "io_inp": [
      -2,
      -1,
      1,
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, -1, 5]\noutput : list = [0, -4, -6]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_asc(reverse([1, -1, 5])),23),5))",
    "io_inp": [
      1,
      -1,
      5
    ],
    "io_out": [
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_asc(reverse(input)),23),5))"
  },
  {
    "input": "input : list = [2, -2, -4, -5, 3]\noutput : list = [8, 7, 3, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(add_n([2, -2, -4, -5, 3],5)))",
    "io_inp": [
      2,
      -2,
      -4,
      -5,
      3
    ],
    "io_out": [
      8,
      7,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(input,5)))"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [18, 20]",
    "output": "generated_output : list = mul_n(sub_n([4, 5],-5),2)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      18,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-5, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sub_n(mul_n([-5, 0],-1),5))))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sub_n(mul_n(input,-1),5))))"
  },
  {
    "input": "input : list = [1, -4, -1, 3, -2, 1]\noutput : list = [13, -37, -7, 33, -17, 13]",
    "output": "generated_output : list = reverse(add_n(mul_n(reverse(mul_n([1, -4, -1, 3, -2, 1],-2)),-5),3))",
    "io_inp": [
      1,
      -4,
      -1,
      3,
      -2,
      1
    ],
    "io_out": [
      13,
      -37,
      -7,
      33,
      -17,
      13
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(reverse(mul_n(input,-2)),-5),3))"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n(sub_n(drop([-5, -4, -4],1),-5),-1)",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),-5),-1)"
  },
  {
    "input": "input : list = [-1, 4, 2, -1, 3, -5]\noutput : list = [4, 3, 2, -1, -1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_des(reverse([-1, 4, 2, -1, 3, -5])),20)))",
    "io_inp": [
      -1,
      4,
      2,
      -1,
      3,
      -5
    ],
    "io_out": [
      4,
      3,
      2,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_des(reverse(input)),20)))"
  },
  {
    "input": "input : list = [-4, -1, 0, -3, -1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = add_n(take(sub_n(sort_asc(drop([-4, -1, 0, -3, -1],3)),-1),18),-4)",
    "io_inp": [
      -4,
      -1,
      0,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(sort_asc(drop(input,3)),-1),18),-4)"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [0, 1, -5]",
    "output": "generated_output : list = add_n([3, 4, -2],-3)",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      0,
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, 3, -5, -5, 5, -3]\noutput : list = [20, 6, 22, 22, 2, 18]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(add_n([-4, 3, -5, -5, 5, -3],-5)),1),-2))",
    "io_inp": [
      -4,
      3,
      -5,
      -5,
      5,
      -3
    ],
    "io_out": [
      20,
      6,
      22,
      22,
      2,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(add_n(input,-5)),1),-2))"
  },
  {
    "input": "input : list = [-1, -2, 0]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(sort_asc(sub_n(take([-1, -2, 0],1),-3)),-3),9)",
    "io_inp": [
      -1,
      -2,
      0
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(sub_n(take(input,1),-3)),-3),9)"
  },
  {
    "input": "input : list = [1, 5, -5, -4, 1]\noutput : list = [-11, 9, 13, -27, -11]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(reverse([1, 5, -5, -4, 1]),2),-1),-4),-5)",
    "io_inp": [
      1,
      5,
      -5,
      -4,
      1
    ],
    "io_out": [
      -11,
      9,
      13,
      -27,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(reverse(input),2),-1),-4),-5)"
  },
  {
    "input": "input : list = [3, -1, 4, -4, 3, -3]\noutput : list = [7, 3, 8, 0]",
    "output": "generated_output : list = add_n(take(take(add_n([3, -1, 4, -4, 3, -3],5),4),11),-1)",
    "io_inp": [
      3,
      -1,
      4,
      -4,
      3,
      -3
    ],
    "io_out": [
      7,
      3,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(input,5),4),11),-1)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-4, -28]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sub_n([2, -4],-5),4)),-1))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -4,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sub_n(input,-5),4)),-1))"
  },
  {
    "input": "input : list = [4, 2, -1, 2]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sub_n(reverse(take([4, 2, -1, 2],1)),-4),-2)",
    "io_inp": [
      4,
      2,
      -1,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(input,1)),-4),-2)"
  },
  {
    "input": "input : list = [-4, 5, -4, -3, -1, -1]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(take([-4, 5, -4, -3, -1, -1],1)),-1)))",
    "io_inp": [
      -4,
      5,
      -4,
      -3,
      -1,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(take(input,1)),-1)))"
  },
  {
    "input": "input : list = [4, -1, 2, 4]\noutput : list = [-2, 4, 8, 8]",
    "output": "generated_output : list = reverse(mul_n(sort_des([4, -1, 2, 4]),2))",
    "io_inp": [
      4,
      -1,
      2,
      4
    ],
    "io_out": [
      -2,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [5, -3, 3, 3]\noutput : list = [-23, 17, -13, -13]",
    "output": "generated_output : list = sub_n(mul_n([5, -3, 3, 3],-5),-2)",
    "io_inp": [
      5,
      -3,
      3,
      3
    ],
    "io_out": [
      -23,
      17,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-5),-2)"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [7, 9, 10]",
    "output": "generated_output : list = sort_asc(reverse(add_n([2, 4, 5],5)))",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,5)))"
  },
  {
    "input": "input : list = [5, -5, 5, -4]\noutput : list = [-4, -3, 6, 6]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(sub_n([5, -5, 5, -4],2)),1),2))",
    "io_inp": [
      5,
      -5,
      5,
      -4
    ],
    "io_out": [
      -4,
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(sub_n(input,2)),1),2))"
  },
  {
    "input": "input : list = [-2, 1, -2, -5, 1]\noutput : list = [6, 18, 12, 6, 12]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(mul_n([-2, 1, -2, -5, 1],-2),5),-2),5))",
    "io_inp": [
      -2,
      1,
      -2,
      -5,
      1
    ],
    "io_out": [
      6,
      18,
      12,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(mul_n(input,-2),5),-2),5))"
  },
  {
    "input": "input : list = [1, 5, 2]\noutput : list = [5, 2, 1]",
    "output": "generated_output : list = reverse(reverse(sort_des(reverse(reverse([1, 5, 2])))))",
    "io_inp": [
      1,
      5,
      2
    ],
    "io_out": [
      5,
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [8, 7]",
    "output": "generated_output : list = reverse(take(add_n(add_n(sort_asc([1, 2]),4),2),20))",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(add_n(sort_asc(input),4),2),20))"
  },
  {
    "input": "input : list = [-3, -5, -3]\noutput : list = [-5, -7, -5]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(reverse([-3, -5, -3]),4),4),-2),6)",
    "io_inp": [
      -3,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(reverse(input),4),4),-2),6)"
  },
  {
    "input": "input : list = [0, 0, 3, 3]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(take([0, 0, 3, 3],1),2),22),-5),4)",
    "io_inp": [
      0,
      0,
      3,
      3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(take(input,1),2),22),-5),4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [0, 9]",
    "output": "generated_output : list = sub_n(sort_asc([-5, 4]),-5)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [-4, -3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = take(sub_n(take(add_n(drop([-4, -3, -3],1),4),26),2),3)",
    "io_inp": [
      -4,
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(add_n(drop(input,1),4),26),2),3)"
  },
  {
    "input": "input : list = [2, 4, 3, -5, -1]\noutput : list = [3]",
    "output": "generated_output : list = take(drop([2, 4, 3, -5, -1],2),1)",
    "io_inp": [
      2,
      4,
      3,
      -5,
      -1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,2),1)"
  },
  {
    "input": "input : list = [-5, -3, 1, 3, 1, -2]\noutput : list = [1, -1, -1, -4, -5, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(add_n([-5, -3, 1, 3, 1, -2],-4)),-2)))",
    "io_inp": [
      -5,
      -3,
      1,
      3,
      1,
      -2
    ],
    "io_out": [
      1,
      -1,
      -1,
      -4,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(add_n(input,-4)),-2)))"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [16, 8]",
    "output": "generated_output : list = mul_n([4, 2],4)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-29, 1]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(take(add_n([-2, 4],-3),15)),5),-4)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -29,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(take(add_n(input,-3),15)),5),-4)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [-2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(reverse(sort_asc([-3, -5, -2])))))",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -4, -1]\noutput : list = [11, 7, 4]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des([3, -4, -1]),-5),-3),13))",
    "io_inp": [
      3,
      -4,
      -1
    ],
    "io_out": [
      11,
      7,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des(input),-5),-3),13))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = add_n(reverse(sub_n([1, -4],-2)),1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,-2)),1)"
  },
  {
    "input": "input : list = [2, -1, -5, 2, 3, -2]\noutput : list = [10, -5, -25]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(reverse(take([2, -1, -5, 2, 3, -2],3)),5)))",
    "io_inp": [
      2,
      -1,
      -5,
      2,
      3,
      -2
    ],
    "io_out": [
      10,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(reverse(take(input,3)),5)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [5, -11]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(sub_n([-4, 4],-1)),-1),2),3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(sub_n(input,-1)),-1),2),3)"
  },
  {
    "input": "input : list = [-3, 2, -1, -3]\noutput : list = [16, 16, 6, -9]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sort_des(reverse([-3, 2, -1, -3]))),-5),1)",
    "io_inp": [
      -3,
      2,
      -1,
      -3
    ],
    "io_out": [
      16,
      16,
      6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sort_des(reverse(input))),-5),1)"
  },
  {
    "input": "input : list = [2, 4, 3, 5, -5]\noutput : list = [8, 7, 6, 5, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_asc(add_n([2, 4, 3, 5, -5],3)))))",
    "io_inp": [
      2,
      4,
      3,
      5,
      -5
    ],
    "io_out": [
      8,
      7,
      6,
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_asc(add_n(input,3)))))"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [5, 0, -5]",
    "output": "generated_output : list = sort_des([5, 0, -5])",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, 0, 3, -4, -3]\noutput : list = [-22, -20, -14, -8, -8]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(drop([1, 3, 0, 3, -4, -3],1),5),2),2))",
    "io_inp": [
      1,
      3,
      0,
      3,
      -4,
      -3
    ],
    "io_out": [
      -22,
      -20,
      -14,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sub_n(drop(input,1),5),2),2))"
  },
  {
    "input": "input : list = [3, -4, 4, 0, 3, 3]\noutput : list = [8, 7, 7, 7, 4, 0]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n([3, -4, 4, 0, 3, 3],-4),-5),5))",
    "io_inp": [
      3,
      -4,
      4,
      0,
      3,
      3
    ],
    "io_out": [
      8,
      7,
      7,
      7,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(input,-4),-5),5))"
  },
  {
    "input": "input : list = [0, 4, 3, -4]\noutput : list = [1]",
    "output": "generated_output : list = add_n(add_n(take([0, 4, 3, -4],1),4),-3)",
    "io_inp": [
      0,
      4,
      3,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,1),4),-3)"
  },
  {
    "input": "input : list = [3, 4, 4, 0]\noutput : list = [0, 3, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(sort_asc([3, 4, 4, 0]),5))))",
    "io_inp": [
      3,
      4,
      4,
      0
    ],
    "io_out": [
      0,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [-4, -3, -2]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sub_n(take(sub_n(take(sub_n([-4, -3, -2],2),8),-1),2),-3)",
    "io_inp": [
      -4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(sub_n(input,2),8),-1),2),-3)"
  },
  {
    "input": "input : list = [-4, 5, -5, 2, -5]\noutput : list = [5, -4]",
    "output": "generated_output : list = sort_des(take([-4, 5, -5, 2, -5],2))",
    "io_inp": [
      -4,
      5,
      -5,
      2,
      -5
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [4]",
    "output": "generated_output : list = add_n(take(add_n(reverse(add_n([5, -5],3)),4),1),2)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(add_n(input,3)),4),1),2)"
  },
  {
    "input": "input : list = [1, -2, 1]\noutput : list = [-4, -1, -1]",
    "output": "generated_output : list = sub_n(sort_asc([1, -2, 1]),2)",
    "io_inp": [
      1,
      -2,
      1
    ],
    "io_out": [
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [2, 1, 3, 5, -5]\noutput : list = [-4, -3]",
    "output": "generated_output : list = reverse(take(add_n([2, 1, 3, 5, -5],-5),2))",
    "io_inp": [
      2,
      1,
      3,
      5,
      -5
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(input,-5),2))"
  },
  {
    "input": "input : list = [-2, 2, 4, 0, -5]\noutput : list = [-15, -5, 3, -1, -9]",
    "output": "generated_output : list = take(reverse(add_n(mul_n([-2, 2, 4, 0, -5],2),-5)),16)",
    "io_inp": [
      -2,
      2,
      4,
      0,
      -5
    ],
    "io_out": [
      -15,
      -5,
      3,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(mul_n(input,2),-5)),16)"
  },
  {
    "input": "input : list = [-2, 2, -5, 0, -3, 1]\noutput : list = [-6, -3, 0, 6, 9, 15]",
    "output": "generated_output : list = take(mul_n(sort_des([-2, 2, -5, 0, -3, 1]),-3),10)",
    "io_inp": [
      -2,
      2,
      -5,
      0,
      -3,
      1
    ],
    "io_out": [
      -6,
      -3,
      0,
      6,
      9,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),-3),10)"
  },
  {
    "input": "input : list = [-4, 2, 4, 1]\noutput : list = [6, 4, 3, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sub_n([-4, 2, 4, 1],-2)))))",
    "io_inp": [
      -4,
      2,
      4,
      1
    ],
    "io_out": [
      6,
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sub_n(input,-2)))))"
  },
  {
    "input": "input : list = [4, 5, 1, 3, 4]\noutput : list = [-3, -7, -9, -9, -11]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sort_asc([4, 5, 1, 3, 4]),1),-2)),1)",
    "io_inp": [
      4,
      5,
      1,
      3,
      4
    ],
    "io_out": [
      -3,
      -7,
      -9,
      -9,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(mul_n(sort_asc(input),1),-2)),1)"
  },
  {
    "input": "input : list = [-4, -3, 4, 3]\noutput : list = [-14]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(take([-4, -3, 4, 3],1)),-5),35),5)",
    "io_inp": [
      -4,
      -3,
      4,
      3
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(take(input,1)),-5),35),5)"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [-4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(take([-4, 2, 5],1)),8),30))",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(take(input,1)),8),30))"
  },
  {
    "input": "input : list = [0, 5, -5, 0, 5, 3]\noutput : list = [10, 5, 0]",
    "output": "generated_output : list = sub_n(sort_des(take([0, 5, -5, 0, 5, 3],3)),-5)",
    "io_inp": [
      0,
      5,
      -5,
      0,
      5,
      3
    ],
    "io_out": [
      10,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(input,3)),-5)"
  },
  {
    "input": "input : list = [3, 2, 3, 2, 0, 1]\noutput : list = [6, 5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_des(take([3, 2, 3, 2, 0, 1],2))),3))",
    "io_inp": [
      3,
      2,
      3,
      2,
      0,
      1
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_des(take(input,2))),3))"
  },
  {
    "input": "input : list = [1, 5, 1]\noutput : list = [5, 1, 1]",
    "output": "generated_output : list = sort_des([1, 5, 1])",
    "io_inp": [
      1,
      5,
      1
    ],
    "io_out": [
      5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -1, 2, -4]\noutput : list = [-2, -5, -2, -8]",
    "output": "generated_output : list = reverse(sub_n(add_n(take(reverse([2, -1, 2, -4]),8),-1),3))",
    "io_inp": [
      2,
      -1,
      2,
      -4
    ],
    "io_out": [
      -2,
      -5,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(take(reverse(input),8),-1),3))"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [-14, -10]",
    "output": "generated_output : list = sub_n(add_n(add_n(sort_asc(reverse([1, -3])),-3),-5),3)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      -14,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(sort_asc(reverse(input)),-3),-5),3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-18, 12]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n([-4, 2],5)),-2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -18,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(input,5)),-2)"
  },
  {
    "input": "input : list = [-5, 3, -3, -3, 5, 1]\noutput : list = [5, 3, 1, -3, -3, -5]",
    "output": "generated_output : list = sort_des([-5, 3, -3, -3, 5, 1])",
    "io_inp": [
      -5,
      3,
      -3,
      -3,
      5,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, 2, 2, -4]\noutput : list = [-20, -10, 5, 10, 10]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des([1, -2, 2, 2, -4])),5)",
    "io_inp": [
      1,
      -2,
      2,
      2,
      -4
    ],
    "io_out": [
      -20,
      -10,
      5,
      10,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(sub_n([-5, -5],-1)))),2)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(sub_n(input,-1)))),2)"
  },
  {
    "input": "input : list = [1, 1, 4, -1]\noutput : list = [5, 8]",
    "output": "generated_output : list = sort_asc(drop(add_n(add_n(sort_asc([1, 1, 4, -1]),2),2),2))",
    "io_inp": [
      1,
      1,
      4,
      -1
    ],
    "io_out": [
      5,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(drop(add_n(add_n(sort_asc(input),2),2),2))"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [12, 9, 5]",
    "output": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_des([1, 4, -3])),4),4))",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      12,
      9,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sort_des(sort_des(input)),4),4))"
  },
  {
    "input": "input : list = [0, 0, 5]\noutput : list = [2, -3]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(drop([0, 0, 5],1)),25),1),2)",
    "io_inp": [
      0,
      0,
      5
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(drop(input,1)),25),1),2)"
  },
  {
    "input": "input : list = [-1, 2, 5, -2, -2, 2]\noutput : list = [-1, 2, 5, -2, -2, 2]",
    "output": "generated_output : list = reverse(reverse(take(reverse(reverse([-1, 2, 5, -2, -2, 2])),19)))",
    "io_inp": [
      -1,
      2,
      5,
      -2,
      -2,
      2
    ],
    "io_out": [
      -1,
      2,
      5,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(reverse(input)),19)))"
  },
  {
    "input": "input : list = [4, 2, -4, 3, -2, -4]\noutput : list = [-1, -3, -9, -2, -7, -9]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(sub_n([4, 2, -4, 3, -2, -4],5),1),-4),-3),48)",
    "io_inp": [
      4,
      2,
      -4,
      3,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -3,
      -9,
      -2,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(sub_n(input,5),1),-4),-3),48)"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [2, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, 2])",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [7, 3]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_des([-3, -1]),2),-4),5)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_des(input),2),-4),5)"
  },
  {
    "input": "input : list = [3, 1, -4, -5, -1, 4]\noutput : list = [-2, -4, -9, -10, -6, -1]",
    "output": "generated_output : list = add_n(sub_n([3, 1, -4, -5, -1, 4],3),-2)",
    "io_inp": [
      3,
      1,
      -4,
      -5,
      -1,
      4
    ],
    "io_out": [
      -2,
      -4,
      -9,
      -10,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),-2)"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sort_des(mul_n(take(sort_des([-2, -4, 1]),1),2)))",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(take(sort_des(input),1),2)))"
  },
  {
    "input": "input : list = [3, -5, 5, -4, 1, 1]\noutput : list = [3]",
    "output": "generated_output : list = take([3, -5, 5, -4, 1, 1],1)",
    "io_inp": [
      3,
      -5,
      5,
      -4,
      1,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-43, -3]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(mul_n([5, 0],4)),-2)),-3)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -43,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(mul_n(input,4)),-2)),-3)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(mul_n([0, 0, -4],-4),1)),-3))",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(mul_n(input,-4),1)),-3))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [4, 5]",
    "output": "generated_output : list = take(sort_asc(take(reverse(mul_n([5, 4],1)),2)),37)",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(reverse(mul_n(input,1)),2)),37)"
  },
  {
    "input": "input : list = [-2, 2, -1, 3]\noutput : list = [7, 6, 3, 2]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_des(sort_des([-2, 2, -1, 3])),4)))",
    "io_inp": [
      -2,
      2,
      -1,
      3
    ],
    "io_out": [
      7,
      6,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_des(sort_des(input)),4)))"
  },
  {
    "input": "input : list = [-4, -2, 5, -4]\noutput : list = [120, 60, -150, 120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([-4, -2, 5, -4],-5),-3),-2)",
    "io_inp": [
      -4,
      -2,
      5,
      -4
    ],
    "io_out": [
      120,
      60,
      -150,
      120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-5),-3),-2)"
  },
  {
    "input": "input : list = [1, 4, 4, 3, 1]\noutput : list = [1, 3, 4, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, 4, 3, 1])",
    "io_inp": [
      1,
      4,
      4,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      4,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse(mul_n([-4, -2],1))))",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(mul_n(input,1))))"
  },
  {
    "input": "input : list = [-2, 5, 3, 4]\noutput : list = [0, -1, -2, -7]",
    "output": "generated_output : list = sort_des(sub_n([-2, 5, 3, 4],5))",
    "io_inp": [
      -2,
      5,
      3,
      4
    ],
    "io_out": [
      0,
      -1,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,5))"
  },
  {
    "input": "input : list = [5, -3, -5, 4, -1]\noutput : list = [-2, 22, 28, 1, 16]",
    "output": "generated_output : list = add_n(mul_n(add_n([5, -3, -5, 4, -1],-5),-3),-2)",
    "io_inp": [
      5,
      -3,
      -5,
      4,
      -1
    ],
    "io_out": [
      -2,
      22,
      28,
      1,
      16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,-5),-3),-2)"
  },
  {
    "input": "input : list = [1, -1, 2]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(sort_des(reverse([1, -1, 2])))),-1)",
    "io_inp": [
      1,
      -1,
      2
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(sort_des(reverse(input)))),-1)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [10, 8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(reverse([5, 3])),-5)))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [-1, 5, -4, 4, -1]\noutput : list = [4, -1, -1, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc([-1, 5, -4, 4, -1]),4))",
    "io_inp": [
      -1,
      5,
      -4,
      4,
      -1
    ],
    "io_out": [
      4,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),4))"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-35, -35]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(mul_n([-3, -3],-3)),-4),1))",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -35,
      -35
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(mul_n(input,-3)),-4),1))"
  },
  {
    "input": "input : list = [-1, -3, -3, 0]\noutput : list = [1]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(sort_asc([-1, -3, -3, 0]),5),1)),1)",
    "io_inp": [
      -1,
      -3,
      -3,
      0
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(sort_asc(input),5),1)),1)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [3, -1]",
    "output": "generated_output : list = take(take(sort_des(sort_asc(sub_n([0, -4],-3))),12),14)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(sub_n(input,-3))),12),14)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [25, 0]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(sort_asc([0, -5]),-5))))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      25,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(sort_asc(input),-5))))"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [-13, -10, 2]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(mul_n([3, 2, -2],-3)),3),-5),-2)",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      -13,
      -10,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(mul_n(input,-3)),3),-5),-2)"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(reverse(add_n([-4, 1, 4],1)),-3)),-4)",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(reverse(add_n(input,1)),-3)),-4)"
  },
  {
    "input": "input : list = [-1, -3, 4, -5, 1]\noutput : list = [0, -3, -5, -7, -9]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse([-1, -3, 4, -5, 1]),-4)))",
    "io_inp": [
      -1,
      -3,
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      -3,
      -5,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(input),-4)))"
  },
  {
    "input": "input : list = [3, 5, 2, -1, 4]\noutput : list = [-15, -12, -9, -6, 3]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_asc([3, 5, 2, -1, 4]))),-3),22)",
    "io_inp": [
      3,
      5,
      2,
      -1,
      4
    ],
    "io_out": [
      -15,
      -12,
      -9,
      -6,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(sort_asc(input))),-3),22)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-8, -3]",
    "output": "generated_output : list = add_n([-4, 1],-4)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-5, -4, 3, -1]\noutput : list = [-15, -12, -3, 9]",
    "output": "generated_output : list = reverse(sort_des(mul_n([-5, -4, 3, -1],3)))",
    "io_inp": [
      -5,
      -4,
      3,
      -1
    ],
    "io_out": [
      -15,
      -12,
      -3,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(input,3)))"
  },
  {
    "input": "input : list = [-5, 3, 5, -4, 2, 2]\noutput : list = [6, 4, 3, 3, -3, -4]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(add_n([-5, 3, 5, -4, 2, 2],5),-4))))",
    "io_inp": [
      -5,
      3,
      5,
      -4,
      2,
      2
    ],
    "io_out": [
      6,
      4,
      3,
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(add_n(input,5),-4))))"
  },
  {
    "input": "input : list = [-1, -3, 0, -4]\noutput : list = [0, -2, 1, -3]",
    "output": "generated_output : list = add_n(sub_n([-1, -3, 0, -4],-2),-1)",
    "io_inp": [
      -1,
      -3,
      0,
      -4
    ],
    "io_out": [
      0,
      -2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-2),-1)"
  },
  {
    "input": "input : list = [-3, -2, 1, -5]\noutput : list = [24, 36, 72, 0]",
    "output": "generated_output : list = mul_n(sub_n(add_n(mul_n(sub_n([-3, -2, 1, -5],-3),-4),-5),3),-3)",
    "io_inp": [
      -3,
      -2,
      1,
      -5
    ],
    "io_out": [
      24,
      36,
      72,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(mul_n(sub_n(input,-3),-4),-5),3),-3)"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [-14, -14, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_des([5, -2, -2])),5)),2)",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      -14,
      -14,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(reverse(sort_des(input)),5)),2)"
  },
  {
    "input": "input : list = [-4, 1, -4, -5]\noutput : list = [-5, -4, -4, 1]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, 1, -4, -5]))",
    "io_inp": [
      -4,
      1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -1, 1]\noutput : list = [0, -3, -1]",
    "output": "generated_output : list = add_n([2, -1, 1],-2)",
    "io_inp": [
      2,
      -1,
      1
    ],
    "io_out": [
      0,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [5, 4, -3, 5, 3, -1]\noutput : list = [12, 6, -6, -9, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sub_n(sort_asc([5, 4, -3, 5, 3, -1]),-4),-5),-3))",
    "io_inp": [
      5,
      4,
      -3,
      5,
      3,
      -1
    ],
    "io_out": [
      12,
      6,
      -6,
      -9,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sub_n(sort_asc(input),-4),-5),-3))"
  },
  {
    "input": "input : list = [1, 4, 2, 3]\noutput : list = [1, 2, 3, 4]",
    "output": "generated_output : list = add_n(sort_asc(take(add_n(sub_n([1, 4, 2, 3],5),3),28)),2)",
    "io_inp": [
      1,
      4,
      2,
      3
    ],
    "io_out": [
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(add_n(sub_n(input,5),3),28)),2)"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [1, -2]",
    "output": "generated_output : list = sort_des([-2, 1])",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-8, 0]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_asc(mul_n([0, -2],4)))))",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_asc(mul_n(input,4)))))"
  },
  {
    "input": "input : list = [1, -3, -1, -2, 2, -2]\noutput : list = [-1, -5, -3, -4, 0, -4]",
    "output": "generated_output : list = add_n([1, -3, -1, -2, 2, -2],-2)",
    "io_inp": [
      1,
      -3,
      -1,
      -2,
      2,
      -2
    ],
    "io_out": [
      -1,
      -5,
      -3,
      -4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -2, -3, -3, -4, 3]\noutput : list = [-4, -2]",
    "output": "generated_output : list = take([-4, -2, -3, -3, -4, 3],2)",
    "io_inp": [
      -4,
      -2,
      -3,
      -3,
      -4,
      3
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 1, 4, 2, -3]\noutput : list = [-1, -3, -4, -4, -8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_asc([1, 1, 4, 2, -3]),-5),4),-4))",
    "io_inp": [
      1,
      1,
      4,
      2,
      -3
    ],
    "io_out": [
      -1,
      -3,
      -4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(add_n(sort_asc(input),-5),4),-4))"
  },
  {
    "input": "input : list = [2, -4, 2, -5, 1, -4]\noutput : list = [6, -12, 6, -15, 3, -12]",
    "output": "generated_output : list = mul_n([2, -4, 2, -5, 1, -4],3)",
    "io_inp": [
      2,
      -4,
      2,
      -5,
      1,
      -4
    ],
    "io_out": [
      6,
      -12,
      6,
      -15,
      3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 3, 2, -3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = take([-4, 3, 2, -3],2)",
    "io_inp": [
      -4,
      3,
      2,
      -3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-5, -5, 4, 0, 4, -5]\noutput : list = [-5, 4, 0, 4, -5, -5]",
    "output": "generated_output : list = reverse([-5, -5, 4, 0, 4, -5])",
    "io_inp": [
      -5,
      -5,
      4,
      0,
      4,
      -5
    ],
    "io_out": [
      -5,
      4,
      0,
      4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [7, 11]",
    "output": "generated_output : list = sort_asc(take(add_n(take(add_n([1, 5],2),2),4),2))",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      7,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(add_n(input,2),2),4),2))"
  },
  {
    "input": "input : list = [2, 4, -5, 2, 3, -4]\noutput : list = [-8, -6, -4, -4, 8, 10]",
    "output": "generated_output : list = sort_asc(reverse(take(mul_n(sort_asc([2, 4, -5, 2, 3, -4]),-2),12)))",
    "io_inp": [
      2,
      4,
      -5,
      2,
      3,
      -4
    ],
    "io_out": [
      -8,
      -6,
      -4,
      -4,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(mul_n(sort_asc(input),-2),12)))"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [-16, 4, 8]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(reverse([-4, 2, 1])),-3),-3),4)",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      -16,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(reverse(input)),-3),-3),4)"
  },
  {
    "input": "input : list = [-4, 0, 2]\noutput : list = [20, 4, -4]",
    "output": "generated_output : list = mul_n(sub_n([-4, 0, 2],1),-4)",
    "io_inp": [
      -4,
      0,
      2
    ],
    "io_out": [
      20,
      4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-4)"
  },
  {
    "input": "input : list = [-5, 4, -1]\noutput : list = [-5, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 4, -1]))",
    "io_inp": [
      -5,
      4,
      -1
    ],
    "io_out": [
      -5,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-5, 1]",
    "output": "generated_output : list = add_n(mul_n([5, 2],-2),5)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-2),5)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(drop(sort_des(add_n(sort_asc([4, -2]),4)),1))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(add_n(sort_asc(input),4)),1))"
  },
  {
    "input": "input : list = [-5, 2, 2]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(drop([-5, 2, 2],1),14),3)))",
    "io_inp": [
      -5,
      2,
      2
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(drop(input,1),14),3)))"
  },
  {
    "input": "input : list = [2, 3, -3, -2, 2, 3]\noutput : list = [18, 18, 13, 13, -7, -12]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sub_n(mul_n([2, 3, -3, -2, 2, 3],5),-1))),-2)",
    "io_inp": [
      2,
      3,
      -3,
      -2,
      2,
      3
    ],
    "io_out": [
      18,
      18,
      13,
      13,
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sub_n(mul_n(input,5),-1))),-2)"
  },
  {
    "input": "input : list = [-3, 1, 2, 4]\noutput : list = [17, -3, -8, -18]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des([-3, 1, 2, 4]),-5),4)),2)",
    "io_inp": [
      -3,
      1,
      2,
      4
    ],
    "io_out": [
      17,
      -3,
      -8,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sort_des(input),-5),4)),2)"
  },
  {
    "input": "input : list = [5, -2, -2]\noutput : list = [-2, -2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([5, -2, -2])))",
    "io_inp": [
      5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, -2, 3, 4, 0, -1]\noutput : list = [-4, -2, -1, 0, 3, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse([-4, -2, 3, 4, 0, -1])))),47)",
    "io_inp": [
      -4,
      -2,
      3,
      4,
      0,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(reverse(input)))),47)"
  },
  {
    "input": "input : list = [4, -4, -1]\noutput : list = [16, -16, -4]",
    "output": "generated_output : list = mul_n([4, -4, -1],4)",
    "io_inp": [
      4,
      -4,
      -1
    ],
    "io_out": [
      16,
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 2, -5, -5, -3]\noutput : list = [-3, -3, -8, -10, -10]",
    "output": "generated_output : list = take(sort_des(sort_asc(add_n(add_n([2, 2, -5, -5, -3],-1),-4))),33)",
    "io_inp": [
      2,
      2,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(add_n(add_n(input,-1),-4))),33)"
  },
  {
    "input": "input : list = [1, -4, 1, 4, -1, 5]\noutput : list = [0, 20, 0, -12, 8, -16]",
    "output": "generated_output : list = mul_n(sub_n([1, -4, 1, 4, -1, 5],1),-4)",
    "io_inp": [
      1,
      -4,
      1,
      4,
      -1,
      5
    ],
    "io_out": [
      0,
      20,
      0,
      -12,
      8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,1),-4)"
  },
  {
    "input": "input : list = [-1, -2, -3, 0]\noutput : list = [3, 2, 1, 4]",
    "output": "generated_output : list = add_n([-1, -2, -3, 0],4)",
    "io_inp": [
      -1,
      -2,
      -3,
      0
    ],
    "io_out": [
      3,
      2,
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-5, -1, 3, -3]\noutput : list = [4, -2, 2, 6]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(add_n([-5, -1, 3, -3],3),-1),-1),5))",
    "io_inp": [
      -5,
      -1,
      3,
      -3
    ],
    "io_out": [
      4,
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(add_n(input,3),-1),-1),5))"
  },
  {
    "input": "input : list = [4, 4, 3, 1, -5, 0]\noutput : list = [-2, -7, -1, 1, 2, 2]",
    "output": "generated_output : list = reverse(sub_n([4, 4, 3, 1, -5, 0],2))",
    "io_inp": [
      4,
      4,
      3,
      1,
      -5,
      0
    ],
    "io_out": [
      -2,
      -7,
      -1,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-9, -6]",
    "output": "generated_output : list = add_n(reverse(take(sort_des(sort_des([-5, -2])),6)),-4)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -9,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sort_des(sort_des(input)),6)),-4)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [14, 22]",
    "output": "generated_output : list = add_n(take(take(add_n(mul_n([-2, -4],-4),2),10),34),4)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      14,
      22
    ],
    "output_masked": "generated_output : list = add_n(take(take(add_n(mul_n(input,-4),2),10),34),4)"
  },
  {
    "input": "input : list = [3, 0, 3, 3, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(take([3, 0, 3, 3, 0],1)))))",
    "io_inp": [
      3,
      0,
      3,
      3,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [0, -2, 2]\noutput : list = [13, -3, -19]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_des(mul_n([0, -2, 2],-2)),-4)),3)",
    "io_inp": [
      0,
      -2,
      2
    ],
    "io_out": [
      13,
      -3,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_des(mul_n(input,-2)),-4)),3)"
  },
  {
    "input": "input : list = [1, -5, -3, 1, 4, 3]\noutput : list = [10, 30, 40, 10]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n(take([1, -5, -3, 1, 4, 3],4),3)),-1),5)",
    "io_inp": [
      1,
      -5,
      -3,
      1,
      4,
      3
    ],
    "io_out": [
      10,
      30,
      40,
      10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(take(input,4),3)),-1),5)"
  },
  {
    "input": "input : list = [-3, -3, -4, -3, 0, 4]\noutput : list = [-2, -2, -4]",
    "output": "generated_output : list = sub_n(take(take(mul_n(take([-3, -3, -4, -3, 0, 4],3),2),10),18),-4)",
    "io_inp": [
      -3,
      -3,
      -4,
      -3,
      0,
      4
    ],
    "io_out": [
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(take(input,3),2),10),18),-4)"
  },
  {
    "input": "input : list = [1, 0, 2, 4]\noutput : list = [0, 1, 2, 4]",
    "output": "generated_output : list = sort_asc([1, 0, 2, 4])",
    "io_inp": [
      1,
      0,
      2,
      4
    ],
    "io_out": [
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -2, -1, 1]\noutput : list = [7]",
    "output": "generated_output : list = take(add_n(take(take(take([2, -2, -1, 1],1),9),4),5),2)",
    "io_inp": [
      2,
      -2,
      -1,
      1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = take(add_n(take(take(take(input,1),9),4),5),2)"
  },
  {
    "input": "input : list = [0, -4, -1, 3, -4, -4]\noutput : list = [-3, -6, -7, -10, -10, -10]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc([0, -4, -1, 3, -4, -4])),4)),2)",
    "io_inp": [
      0,
      -4,
      -1,
      3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -6,
      -7,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_asc(sort_asc(input)),4)),2)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-5, -4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(reverse([-5, 5, -4])))))",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, 1, -2]\noutput : list = [4, -2]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(mul_n([-1, 1, -2],3),1)),2))",
    "io_inp": [
      -1,
      1,
      -2
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(mul_n(input,3),1)),2))"
  },
  {
    "input": "input : list = [2, 3, 0, 3, 2, 1]\noutput : list = [5, 6, 3, 6, 5, 4]",
    "output": "generated_output : list = add_n([2, 3, 0, 3, 2, 1],3)",
    "io_inp": [
      2,
      3,
      0,
      3,
      2,
      1
    ],
    "io_out": [
      5,
      6,
      3,
      6,
      5,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-4, -1, 1, -3]\noutput : list = [-7, -9, -11, -12]",
    "output": "generated_output : list = add_n(sort_des(sub_n(add_n(reverse([-4, -1, 1, -3]),-4),2)),-2)",
    "io_inp": [
      -4,
      -1,
      1,
      -3
    ],
    "io_out": [
      -7,
      -9,
      -11,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(add_n(reverse(input),-4),2)),-2)"
  },
  {
    "input": "input : list = [5, 3, 3, -1, -4]\noutput : list = [5, 3, 3]",
    "output": "generated_output : list = take([5, 3, 3, -1, -4],3)",
    "io_inp": [
      5,
      3,
      3,
      -1,
      -4
    ],
    "io_out": [
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, -5, 1, -2]\noutput : list = [-3, 0, 3, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n([4, -5, 1, -2],1),-1),4))",
    "io_inp": [
      4,
      -5,
      1,
      -2
    ],
    "io_out": [
      -3,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(input,1),-1),4))"
  },
  {
    "input": "input : list = [-4, 3, 5, -2, 0]\noutput : list = [4, 12, 24, 32, 40]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sort_asc([-4, 3, 5, -2, 0]),1),5)),-4)",
    "io_inp": [
      -4,
      3,
      5,
      -2,
      0
    ],
    "io_out": [
      4,
      12,
      24,
      32,
      40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(sort_asc(input),1),5)),-4)"
  },
  {
    "input": "input : list = [-2, -4, -5]\noutput : list = [-7, -9, -10]",
    "output": "generated_output : list = add_n([-2, -4, -5],-5)",
    "io_inp": [
      -2,
      -4,
      -5
    ],
    "io_out": [
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 4, 1, 5, 1, -2]\noutput : list = [-9, 0, -3, 1, -3, -6]",
    "output": "generated_output : list = sub_n([-5, 4, 1, 5, 1, -2],4)",
    "io_inp": [
      -5,
      4,
      1,
      5,
      1,
      -2
    ],
    "io_out": [
      -9,
      0,
      -3,
      1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-5, 1, 5, 3]\noutput : list = [3, 5, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 5, 3])",
    "io_inp": [
      -5,
      1,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, -5, -3]\noutput : list = [11, 4, 2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(drop([2, 4, -5, -3],1)),-5)),2)",
    "io_inp": [
      2,
      4,
      -5,
      -3
    ],
    "io_out": [
      11,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(drop(input,1)),-5)),2)"
  },
  {
    "input": "input : list = [-3, -4, -1, 1]\noutput : list = [-11, -13, -15, -16]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sort_des([-3, -4, -1, 1]),5),-2),5),12)",
    "io_inp": [
      -3,
      -4,
      -1,
      1
    ],
    "io_out": [
      -11,
      -13,
      -15,
      -16
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sort_des(input),5),-2),5),12)"
  },
  {
    "input": "input : list = [3, -1, 5, 0]\noutput : list = [13]",
    "output": "generated_output : list = sub_n(sort_des(add_n(reverse(take([3, -1, 5, 0],1)),5)),-5)",
    "io_inp": [
      3,
      -1,
      5,
      0
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(reverse(take(input,1)),5)),-5)"
  },
  {
    "input": "input : list = [-2, 3, 5, -1, 2]\noutput : list = [0, 9]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(drop([-2, 3, 5, -1, 2],3),3),3)),25)",
    "io_inp": [
      -2,
      3,
      5,
      -1,
      2
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(drop(input,3),3),3)),25)"
  },
  {
    "input": "input : list = [2, 1, 3, -4, -3, -5]\noutput : list = [-6, -4]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(drop([2, 1, 3, -4, -3, -5],4))),1)",
    "io_inp": [
      2,
      1,
      3,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(drop(input,4))),1)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [7, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc([-5, 3]),-4))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(input),-4))"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [-4, -6, -7]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(sort_des([-4, -2, -5]),-1),1),22),1)",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(sort_des(input),-1),1),22),1)"
  },
  {
    "input": "input : list = [2, -1, 1, 5, -4, -5]\noutput : list = [14, 11, 2, -4, -7, -16]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([2, -1, 1, 5, -4, -5]),-3),1)",
    "io_inp": [
      2,
      -1,
      1,
      5,
      -4,
      -5
    ],
    "io_out": [
      14,
      11,
      2,
      -4,
      -7,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),-3),1)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [8, -2, 1]",
    "output": "generated_output : list = sub_n([5, -5, -2],-3)",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      8,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 3, -2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_asc(take(reverse(take([-3, 3, -2],1)),26)),1)",
    "io_inp": [
      -3,
      3,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(reverse(take(input,1)),26)),1)"
  },
  {
    "input": "input : list = [1, 2, -4]\noutput : list = [6, 5, 0]",
    "output": "generated_output : list = reverse(sort_asc(take(sub_n(sort_asc([1, 2, -4]),-4),6)))",
    "io_inp": [
      1,
      2,
      -4
    ],
    "io_out": [
      6,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sub_n(sort_asc(input),-4),6)))"
  },
  {
    "input": "input : list = [2, -4, 1, -2, 0, -2]\noutput : list = [10, 5, 0, -10, -10, -20]",
    "output": "generated_output : list = mul_n(sort_des([2, -4, 1, -2, 0, -2]),5)",
    "io_inp": [
      2,
      -4,
      1,
      -2,
      0,
      -2
    ],
    "io_out": [
      10,
      5,
      0,
      -10,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [0, -5, 1]\noutput : list = [-8, 2, 4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(add_n(reverse([0, -5, 1]),-2),3)),2)",
    "io_inp": [
      0,
      -5,
      1
    ],
    "io_out": [
      -8,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(add_n(reverse(input),-2),3)),2)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-2, 19]",
    "output": "generated_output : list = sub_n(sort_asc(take(mul_n(add_n([-5, 2],4),3),7)),-1)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -2,
      19
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(mul_n(add_n(input,4),3),7)),-1)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-12, -6]",
    "output": "generated_output : list = mul_n(add_n([5, 3],-1),-3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),-3)"
  },
  {
    "input": "input : list = [4, 4, -5, -1]\noutput : list = [4, -5, -1]",
    "output": "generated_output : list = drop([4, 4, -5, -1],1)",
    "io_inp": [
      4,
      4,
      -5,
      -1
    ],
    "io_out": [
      4,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 4, -5, 2]\noutput : list = [9, 9, 7, 0]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([4, 4, -5, 2],-5)))",
    "io_inp": [
      4,
      4,
      -5,
      2
    ],
    "io_out": [
      9,
      9,
      7,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,-5)))"
  },
  {
    "input": "input : list = [4, 1, 1, 3, -4]\noutput : list = [36]",
    "output": "generated_output : list = reverse(mul_n(add_n(take([4, 1, 1, 3, -4],1),5),4))",
    "io_inp": [
      4,
      1,
      1,
      3,
      -4
    ],
    "io_out": [
      36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(take(input,1),5),4))"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-24, -24, -3]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse(sub_n([4, -3, -3],2)),27),3),3)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -24,
      -24,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(sub_n(input,2)),27),3),3)"
  },
  {
    "input": "input : list = [4, -4, 3, 2, 3, -5]\noutput : list = [2, 3, -5]",
    "output": "generated_output : list = take(drop([4, -4, 3, 2, 3, -5],3),12)",
    "io_inp": [
      4,
      -4,
      3,
      2,
      3,
      -5
    ],
    "io_out": [
      2,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(drop(input,3),12)"
  },
  {
    "input": "input : list = [-5, 0, -5]\noutput : list = [22, 22, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des([-5, 0, -5])),-4),-2)",
    "io_inp": [
      -5,
      0,
      -5
    ],
    "io_out": [
      22,
      22,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(input)),-4),-2)"
  },
  {
    "input": "input : list = [-3, 4, 4, -1, 4]\noutput : list = [-1, 4, 4]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(drop([-3, 4, 4, -1, 4],2)),-4),-4))",
    "io_inp": [
      -3,
      4,
      4,
      -1,
      4
    ],
    "io_out": [
      -1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(drop(input,2)),-4),-4))"
  },
  {
    "input": "input : list = [5, 5, -4, -2, 0, 5]\noutput : list = [5, 0, -2, -4, 5, 5]",
    "output": "generated_output : list = reverse([5, 5, -4, -2, 0, 5])",
    "io_inp": [
      5,
      5,
      -4,
      -2,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -2,
      -4,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [-9, -6, 3]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(mul_n([0, 4, 3],-3),-2)),1))",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      -9,
      -6,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(mul_n(input,-3),-2)),1))"
  },
  {
    "input": "input : list = [-2, -4, -3, -4, 1]\noutput : list = [-7, -9, -8, -9, -4]",
    "output": "generated_output : list = sub_n([-2, -4, -3, -4, 1],5)",
    "io_inp": [
      -2,
      -4,
      -3,
      -4,
      1
    ],
    "io_out": [
      -7,
      -9,
      -8,
      -9,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [0, 1, 2, 3, 2, -1]\noutput : list = [0, -2, -4, -6, -4, 2]",
    "output": "generated_output : list = mul_n([0, 1, 2, 3, 2, -1],-2)",
    "io_inp": [
      0,
      1,
      2,
      3,
      2,
      -1
    ],
    "io_out": [
      0,
      -2,
      -4,
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -1, -1, 1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = add_n(take(add_n(reverse(drop([-1, -1, -1, 1, 4],3)),-3),43),3)",
    "io_inp": [
      -1,
      -1,
      -1,
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(reverse(drop(input,3)),-3),43),3)"
  },
  {
    "input": "input : list = [-2, 2, 4, 3, 3, 3]\noutput : list = [4, 3, 3, 3, 2, -2]",
    "output": "generated_output : list = reverse(reverse(sort_des([-2, 2, 4, 3, 3, 3])))",
    "io_inp": [
      -2,
      2,
      4,
      3,
      3,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(input)))"
  },
  {
    "input": "input : list = [2, 3, 5, 2, -1, 2]\noutput : list = [4, 2, 1, 1, 1, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(mul_n([2, 3, 5, 2, -1, 2],1)))),1)",
    "io_inp": [
      2,
      3,
      5,
      2,
      -1,
      2
    ],
    "io_out": [
      4,
      2,
      1,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(mul_n(input,1)))),1)"
  },
  {
    "input": "input : list = [-2, 5, 1]\noutput : list = [7, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(drop([-2, 5, 1],1),-2))),-4)",
    "io_inp": [
      -2,
      5,
      1
    ],
    "io_out": [
      7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(drop(input,1),-2))),-4)"
  },
  {
    "input": "input : list = [4, 2, 2]\noutput : list = [-1]",
    "output": "generated_output : list = take(sub_n([4, 2, 2],5),1)",
    "io_inp": [
      4,
      2,
      2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),1)"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [4, 3, 1]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_des([5, 2, 4]),4),2),1),-5)",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      4,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(sort_des(input),4),2),1),-5)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-4, 2]",
    "output": "generated_output : list = take(sub_n(sub_n(add_n(sort_asc([3, -3]),5),3),3),25)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(add_n(sort_asc(input),5),3),3),25)"
  },
  {
    "input": "input : list = [3, 3, -2]\noutput : list = [13]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(take([3, 3, -2],1),-2),3),5),41)",
    "io_inp": [
      3,
      3,
      -2
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(take(input,1),-2),3),5),41)"
  },
  {
    "input": "input : list = [5, -2, -5]\noutput : list = [-10, -7, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(reverse([5, -2, -5]),5))))",
    "io_inp": [
      5,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sub_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-10, -9, -6]",
    "output": "generated_output : list = sub_n([-5, -4, -1],5)",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -10,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, -4, 1, 4]\noutput : list = [-2, -3, 2, 5]",
    "output": "generated_output : list = add_n([-3, -4, 1, 4],1)",
    "io_inp": [
      -3,
      -4,
      1,
      4
    ],
    "io_out": [
      -2,
      -3,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [5, 5, 0, 4]\noutput : list = [0, 0, -1, -5]",
    "output": "generated_output : list = add_n(reverse(sort_asc(take(mul_n([5, 5, 0, 4],1),11))),-5)",
    "io_inp": [
      5,
      5,
      0,
      4
    ],
    "io_out": [
      0,
      0,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(take(mul_n(input,1),11))),-5)"
  },
  {
    "input": "input : list = [5, -2, 1, -5, 5]\noutput : list = [13, 4, -5, -17, -17]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(mul_n([5, -2, 1, -5, 5],-3))),2))",
    "io_inp": [
      5,
      -2,
      1,
      -5,
      5
    ],
    "io_out": [
      13,
      4,
      -5,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(mul_n(input,-3))),2))"
  },
  {
    "input": "input : list = [4, 1, -4, 1]\noutput : list = [0, -3, -3, -8]",
    "output": "generated_output : list = mul_n(sort_des(add_n(add_n([4, 1, -4, 1],-1),-3)),1)",
    "io_inp": [
      4,
      1,
      -4,
      1
    ],
    "io_out": [
      0,
      -3,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(add_n(input,-1),-3)),1)"
  },
  {
    "input": "input : list = [2, -3, -1, 3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(take([2, -3, -1, 3],1)))),-2)",
    "io_inp": [
      2,
      -3,
      -1,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(take(input,1)))),-2)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-6, -6]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(add_n([-3, -3],3)),-3),-5),2)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(add_n(input,3)),-3),-5),2)"
  },
  {
    "input": "input : list = [5, 4, 5]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n(drop([5, 4, 5],1),-2)",
    "io_inp": [
      5,
      4,
      5
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-2)"
  },
  {
    "input": "input : list = [-1, -1, -1, 1, -1]\noutput : list = [-40, -40, -40, -40, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(add_n([-1, -1, -1, 1, -1],-1),-5),-4)))",
    "io_inp": [
      -1,
      -1,
      -1,
      1,
      -1
    ],
    "io_out": [
      -40,
      -40,
      -40,
      -40,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(add_n(input,-1),-5),-4)))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = reverse(take(sub_n(take(reverse([-1, -1]),15),4),5))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(reverse(input),15),4),5))"
  },
  {
    "input": "input : list = [5, 0, -2]\noutput : list = [3]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(take([5, 0, -2],1),-2),1)))",
    "io_inp": [
      5,
      0,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(take(input,1),-2),1)))"
  },
  {
    "input": "input : list = [2, -1, 4, 4, -1, 3]\noutput : list = [1, -14, 11, 11, -14, 6]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(sub_n([2, -1, 4, 4, -1, 3],2),5),-1)))",
    "io_inp": [
      2,
      -1,
      4,
      4,
      -1,
      3
    ],
    "io_out": [
      1,
      -14,
      11,
      11,
      -14,
      6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(sub_n(input,2),5),-1)))"
  },
  {
    "input": "input : list = [1, -2, 5, 5]\noutput : list = [-3, -6, 1, 1]",
    "output": "generated_output : list = sub_n([1, -2, 5, 5],4)",
    "io_inp": [
      1,
      -2,
      5,
      5
    ],
    "io_out": [
      -3,
      -6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [0, 1, 4, -4, 2]\noutput : list = [-18, 2, 7, 12, 22]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([0, 1, 4, -4, 2],5)),2)",
    "io_inp": [
      0,
      1,
      4,
      -4,
      2
    ],
    "io_out": [
      -18,
      2,
      7,
      12,
      22
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,5)),2)"
  },
  {
    "input": "input : list = [1, -1, -4]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = sort_asc([1, -1, -4])",
    "io_inp": [
      1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, -1, 3, 5]\noutput : list = [60, 60, 20, -60, -100]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_des(reverse([-3, -3, -1, 3, 5])),-5)),4)",
    "io_inp": [
      -3,
      -3,
      -1,
      3,
      5
    ],
    "io_out": [
      60,
      60,
      20,
      -60,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_des(reverse(input)),-5)),4)"
  },
  {
    "input": "input : list = [1, 0, 0, -2, -2]\noutput : list = [1, 0, 0, -2, -2]",
    "output": "generated_output : list = mul_n(sort_des(reverse(take(sort_asc([1, 0, 0, -2, -2]),25))),1)",
    "io_inp": [
      1,
      0,
      0,
      -2,
      -2
    ],
    "io_out": [
      1,
      0,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(take(sort_asc(input),25))),1)"
  },
  {
    "input": "input : list = [4, -5, 5, -5, -3, 3]\noutput : list = [-9, -9, -7, -1, 0, 1]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_des(sub_n([4, -5, 5, -5, -3, 3],2))),18),-2)",
    "io_inp": [
      4,
      -5,
      5,
      -5,
      -3,
      3
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_des(sub_n(input,2))),18),-2)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [2, -10]",
    "output": "generated_output : list = reverse(mul_n(reverse(sort_des(sort_asc([1, -5]))),2))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      2,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(sort_des(sort_asc(input))),2))"
  },
  {
    "input": "input : list = [3, -4, -3, -1]\noutput : list = [9, 5, 3, 2]",
    "output": "generated_output : list = sort_des(take(add_n(sort_asc(sub_n([3, -4, -3, -1],-5)),1),7))",
    "io_inp": [
      3,
      -4,
      -3,
      -1
    ],
    "io_out": [
      9,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_asc(sub_n(input,-5)),1),7))"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [3, 3, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n([1, -1, -1],4))),26)",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(input,4))),26)"
  },
  {
    "input": "input : list = [2, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([2, 4, -4],1)",
    "io_inp": [
      2,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 2, 3, 0]\noutput : list = [0, 3, 2, -4]",
    "output": "generated_output : list = mul_n(reverse([-4, 2, 3, 0]),1)",
    "io_inp": [
      -4,
      2,
      3,
      0
    ],
    "io_out": [
      0,
      3,
      2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),1)"
  },
  {
    "input": "input : list = [1, -5, 0, -4, -3]\noutput : list = [1, 0, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(take(sort_asc([1, -5, 0, -4, -3]),14))))",
    "io_inp": [
      1,
      -5,
      0,
      -4,
      -3
    ],
    "io_out": [
      1,
      0,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(take(sort_asc(input),14))))"
  },
  {
    "input": "input : list = [-4, 5, -5, -3, -5, 2]\noutput : list = [-6, 3, -7, -5, -7, 0]",
    "output": "generated_output : list = sub_n([-4, 5, -5, -3, -5, 2],2)",
    "io_inp": [
      -4,
      5,
      -5,
      -3,
      -5,
      2
    ],
    "io_out": [
      -6,
      3,
      -7,
      -5,
      -7,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, 3, -4, 5, -4, -1]\noutput : list = [9, 4, 2]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(take([-2, 3, -4, 5, -4, -1],3),4),21),-2))",
    "io_inp": [
      -2,
      3,
      -4,
      5,
      -4,
      -1
    ],
    "io_out": [
      9,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(take(input,3),4),21),-2))"
  },
  {
    "input": "input : list = [-1, -2, -3]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(take(add_n(take([-1, -2, -3],1),-2),12),5)",
    "io_inp": [
      -1,
      -2,
      -3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(input,1),-2),12),5)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [3, 3]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(sort_asc([-2, -2]),-5),16),7))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(sort_asc(input),-5),16),7))"
  },
  {
    "input": "input : list = [3, -2, 3, -2]\noutput : list = [-4, 6]",
    "output": "generated_output : list = sub_n(mul_n(drop(reverse(reverse([3, -2, 3, -2])),2),-2),-2)",
    "io_inp": [
      3,
      -2,
      3,
      -2
    ],
    "io_out": [
      -4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(reverse(reverse(input)),2),-2),-2)"
  },
  {
    "input": "input : list = [1, -5, -5]\noutput : list = [1, -5, -5]",
    "output": "generated_output : list = take(mul_n([1, -5, -5],1),13)",
    "io_inp": [
      1,
      -5,
      -5
    ],
    "io_out": [
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(input,1),13)"
  },
  {
    "input": "input : list = [0, -1, 0, 1]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(take(reverse(mul_n(drop([0, -1, 0, 1],2),4)),26),40)",
    "io_inp": [
      0,
      -1,
      0,
      1
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(drop(input,2),4)),26),40)"
  },
  {
    "input": "input : list = [-2, -1, 4, -4, 4]\noutput : list = [-1, -1, -6, -7, -9]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take(reverse([-2, -1, 4, -4, 4]),7)),5))",
    "io_inp": [
      -2,
      -1,
      4,
      -4,
      4
    ],
    "io_out": [
      -1,
      -1,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(reverse(input),7)),5))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [12]",
    "output": "generated_output : list = sub_n(add_n(take(mul_n(mul_n([5, 1],1),1),1),5),-2)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(mul_n(mul_n(input,1),1),1),5),-2)"
  },
  {
    "input": "input : list = [-5, 3, -4, -2]\noutput : list = [-5]",
    "output": "generated_output : list = take(take([-5, 3, -4, -2],1),17)",
    "io_inp": [
      -5,
      3,
      -4,
      -2
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(take(input,1),17)"
  },
  {
    "input": "input : list = [3, -5, -4]\noutput : list = [9, -7, -5]",
    "output": "generated_output : list = add_n(take(add_n(mul_n(mul_n([3, -5, -4],-2),-1),5),32),-2)",
    "io_inp": [
      3,
      -5,
      -4
    ],
    "io_out": [
      9,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(mul_n(mul_n(input,-2),-1),5),32),-2)"
  },
  {
    "input": "input : list = [2, -4, -3, 3, -5, 5]\noutput : list = [-1, 0, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(take([2, -4, -3, 3, -5, 5],3),21))),-3)",
    "io_inp": [
      2,
      -4,
      -3,
      3,
      -5,
      5
    ],
    "io_out": [
      -1,
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(take(input,3),21))),-3)"
  },
  {
    "input": "input : list = [-3, 5, 4, -4, 3]\noutput : list = [-20, -16, -12, 12, 16]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 5, 4, -4, 3],-4))",
    "io_inp": [
      -3,
      5,
      4,
      -4,
      3
    ],
    "io_out": [
      -20,
      -16,
      -12,
      12,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-4))"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [0, 8, 6]",
    "output": "generated_output : list = take(mul_n([0, -4, -3],-2),7)",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      0,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-2),7)"
  },
  {
    "input": "input : list = [4, 2, -3]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = take(take(sort_asc(add_n(add_n([4, 2, -3],-4),2)),33),35)",
    "io_inp": [
      4,
      2,
      -3
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(add_n(input,-4),2)),33),35)"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [3, -3, -4]",
    "output": "generated_output : list = sort_des([3, -4, -3])",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 5, -1]\noutput : list = [1]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(take([4, 5, -1],1)),5)),-1)",
    "io_inp": [
      4,
      5,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(take(input,1)),5)),-1)"
  },
  {
    "input": "input : list = [-4, -3, -4, -2, -4]\noutput : list = [-4, -5, -6, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des(sub_n([-4, -3, -4, -2, -4],-3)))),-5)",
    "io_inp": [
      -4,
      -3,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(sub_n(input,-3)))),-5)"
  },
  {
    "input": "input : list = [-1, -1, -5, -3, 4]\noutput : list = [0, -8, -16, -16, -36]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(add_n([-1, -1, -5, -3, 4],5),12),4)),-1)",
    "io_inp": [
      -1,
      -1,
      -5,
      -3,
      4
    ],
    "io_out": [
      0,
      -8,
      -16,
      -16,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(add_n(input,5),12),4)),-1)"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [15, 0, 15]",
    "output": "generated_output : list = mul_n(sub_n([0, 5, 0],5),-3)",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      15,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,5),-3)"
  },
  {
    "input": "input : list = [4, 0, -1, 2, 2]\noutput : list = [4, 2, 2, 0, -1]",
    "output": "generated_output : list = sort_des([4, 0, -1, 2, 2])",
    "io_inp": [
      4,
      0,
      -1,
      2,
      2
    ],
    "io_out": [
      4,
      2,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -2, 0, -2, 4, -3]\noutput : list = [4, 2, 8, 1]",
    "output": "generated_output : list = take(add_n(drop([3, -2, 0, -2, 4, -3],2),4),19)",
    "io_inp": [
      3,
      -2,
      0,
      -2,
      4,
      -3
    ],
    "io_out": [
      4,
      2,
      8,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,2),4),19)"
  },
  {
    "input": "input : list = [2, 4, 0, 2, 1, -4]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 4, 0, 2, 1, -4],1)",
    "io_inp": [
      2,
      4,
      0,
      2,
      1,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -2, 2, 0]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(take([2, -2, 2, 0],2)))",
    "io_inp": [
      2,
      -2,
      2,
      0
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,2)))"
  },
  {
    "input": "input : list = [-4, 1, -1, -5, 4]\noutput : list = [5, 4, 1, -1, -4]",
    "output": "generated_output : list = take(sort_des(take(mul_n([-4, 1, -1, -5, 4],-1),6)),16)",
    "io_inp": [
      -4,
      1,
      -1,
      -5,
      4
    ],
    "io_out": [
      5,
      4,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(mul_n(input,-1),6)),16)"
  },
  {
    "input": "input : list = [-2, -3, 2]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(reverse(take([-2, -3, 2],1))),1))",
    "io_inp": [
      -2,
      -3,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(reverse(take(input,1))),1))"
  },
  {
    "input": "input : list = [-5, 5, 0, -3]\noutput : list = [30, 0, -50, 50]",
    "output": "generated_output : list = reverse(mul_n(mul_n([-5, 5, 0, -3],2),-5))",
    "io_inp": [
      -5,
      5,
      0,
      -3
    ],
    "io_out": [
      30,
      0,
      -50,
      50
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,2),-5))"
  },
  {
    "input": "input : list = [-3, 4, 3, 4, -2]\noutput : list = [-4, 0, 20, 24, 24]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(add_n([-3, 4, 3, 4, -2],-3),5)),-4),-1)",
    "io_inp": [
      -3,
      4,
      3,
      4,
      -2
    ],
    "io_out": [
      -4,
      0,
      20,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(add_n(input,-3),5)),-4),-1)"
  },
  {
    "input": "input : list = [2, 0, 5, 5, 3]\noutput : list = [10, 10, 8, 7, 5]",
    "output": "generated_output : list = take(add_n(sort_des(add_n([2, 0, 5, 5, 3],2)),3),38)",
    "io_inp": [
      2,
      0,
      5,
      5,
      3
    ],
    "io_out": [
      10,
      10,
      8,
      7,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(input,2)),3),38)"
  },
  {
    "input": "input : list = [-2, 3, -2, 0, -4, -1]\noutput : list = [5, 2, 1, 0, 0, -2]",
    "output": "generated_output : list = sort_des(sub_n(take(reverse(sort_des([-2, 3, -2, 0, -4, -1])),17),-2))",
    "io_inp": [
      -2,
      3,
      -2,
      0,
      -4,
      -1
    ],
    "io_out": [
      5,
      2,
      1,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(reverse(sort_des(input)),17),-2))"
  },
  {
    "input": "input : list = [-4, 4, -3, -5]\noutput : list = [-6, -7, -8]",
    "output": "generated_output : list = drop(take(sort_des(sub_n(reverse([-4, 4, -3, -5]),3)),10),1)",
    "io_inp": [
      -4,
      4,
      -3,
      -5
    ],
    "io_out": [
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = drop(take(sort_des(sub_n(reverse(input),3)),10),1)"
  },
  {
    "input": "input : list = [-4, -1, -3]\noutput : list = [-3, -1, -4]",
    "output": "generated_output : list = reverse([-4, -1, -3])",
    "io_inp": [
      -4,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 3, 4, 0, 5]\noutput : list = [-5, 0, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([-5, 3, 4, 0, 5])",
    "io_inp": [
      -5,
      3,
      4,
      0,
      5
    ],
    "io_out": [
      -5,
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 4, -1, -1, -4, 3]\noutput : list = [3, -1, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(take(drop([4, 4, -1, -1, -4, 3],3),5)),44))",
    "io_inp": [
      4,
      4,
      -1,
      -1,
      -4,
      3
    ],
    "io_out": [
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(take(drop(input,3),5)),44))"
  },
  {
    "input": "input : list = [0, -5, 4]\noutput : list = [-3, 24, 9]",
    "output": "generated_output : list = reverse(mul_n(take(add_n([0, -5, 4],-3),14),-3))",
    "io_inp": [
      0,
      -5,
      4
    ],
    "io_out": [
      -3,
      24,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(input,-3),14),-3))"
  },
  {
    "input": "input : list = [4, -1, -1, 5]\noutput : list = [-14, 1, 1, -17]",
    "output": "generated_output : list = add_n(mul_n([4, -1, -1, 5],-3),-2)",
    "io_inp": [
      4,
      -1,
      -1,
      5
    ],
    "io_out": [
      -14,
      1,
      1,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),-2)"
  },
  {
    "input": "input : list = [5, -2, 5]\noutput : list = [0, 0, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des([5, -2, 5])),5))",
    "io_inp": [
      5,
      -2,
      5
    ],
    "io_out": [
      0,
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(input)),5))"
  },
  {
    "input": "input : list = [5, 4, -1]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(add_n(take([5, 4, -1],1),-3),-5)",
    "io_inp": [
      5,
      4,
      -1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,1),-3),-5)"
  },
  {
    "input": "input : list = [2, 2, 1, -3, 2, 1]\noutput : list = [1, 2, -3, 1, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, 1, -3, 2, 1])",
    "io_inp": [
      2,
      2,
      1,
      -3,
      2,
      1
    ],
    "io_out": [
      1,
      2,
      -3,
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -2, 3, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse(sort_asc(take([-5, -2, 3, -2],2)))",
    "io_inp": [
      -5,
      -2,
      3,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [-5, -4, 1, -4, -4]\noutput : list = [-2, -1, 4]",
    "output": "generated_output : list = add_n(mul_n(take([-5, -4, 1, -4, -4],3),1),3)",
    "io_inp": [
      -5,
      -4,
      1,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -1,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(input,3),1),3)"
  },
  {
    "input": "input : list = [-2, -1, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(drop([-2, -1, 0],1),11),-5),-5),2)",
    "io_inp": [
      -2,
      -1,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(drop(input,1),11),-5),-5),2)"
  },
  {
    "input": "input : list = [-4, -1, -2]\noutput : list = [20, 5, 10]",
    "output": "generated_output : list = mul_n([-4, -1, -2],-5)",
    "io_inp": [
      -4,
      -1,
      -2
    ],
    "io_out": [
      20,
      5,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 1, 0, 1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = add_n(take(sort_asc(take(reverse([2, 1, 0, 1]),2)),15),-2)",
    "io_inp": [
      2,
      1,
      0,
      1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(reverse(input),2)),15),-2)"
  },
  {
    "input": "input : list = [2, -1, -5, -2]\noutput : list = [15, 6, 3, -6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(reverse([2, -1, -5, -2]),-3))))",
    "io_inp": [
      2,
      -1,
      -5,
      -2
    ],
    "io_out": [
      15,
      6,
      3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(reverse(input),-3))))"
  },
  {
    "input": "input : list = [1, -2, -3]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(reverse([1, -2, -3])),18)))",
    "io_inp": [
      1,
      -2,
      -3
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(reverse(input)),18)))"
  },
  {
    "input": "input : list = [3, -3, -4, -3, -1]\noutput : list = [-4, -3, -3, -1]",
    "output": "generated_output : list = take(sort_asc([3, -3, -4, -3, -1]),4)",
    "io_inp": [
      3,
      -3,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-2, 2, 1, -4, 5]\noutput : list = [7, -2]",
    "output": "generated_output : list = sub_n(reverse(take(take(drop([-2, 2, 1, -4, 5],3),3),14)),-2)",
    "io_inp": [
      -2,
      2,
      1,
      -4,
      5
    ],
    "io_out": [
      7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(drop(input,3),3),14)),-2)"
  },
  {
    "input": "input : list = [-5, 2, -5, 2]\noutput : list = [0, 0, -7, -7]",
    "output": "generated_output : list = add_n(take(sort_des(take(sort_asc([-5, 2, -5, 2]),18)),39),-2)",
    "io_inp": [
      -5,
      2,
      -5,
      2
    ],
    "io_out": [
      0,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(take(sort_asc(input),18)),39),-2)"
  },
  {
    "input": "input : list = [5, 5, -4, 1, -5]\noutput : list = [14]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sub_n(take([5, 5, -4, 1, -5],1),-2))),2)",
    "io_inp": [
      5,
      5,
      -4,
      1,
      -5
    ],
    "io_out": [
      14
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sub_n(take(input,1),-2))),2)"
  },
  {
    "input": "input : list = [5, 0, -5]\noutput : list = [9, 4, -1]",
    "output": "generated_output : list = add_n(add_n([5, 0, -5],2),2)",
    "io_inp": [
      5,
      0,
      -5
    ],
    "io_out": [
      9,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),2)"
  },
  {
    "input": "input : list = [-1, -3, -3, 4, 3, 4]\noutput : list = [-17, -17, -9, 7, 11, 11]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_asc([-1, -3, -3, 4, 3, 4]),-2),-4),-1),-3)",
    "io_inp": [
      -1,
      -3,
      -3,
      4,
      3,
      4
    ],
    "io_out": [
      -17,
      -17,
      -9,
      7,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(add_n(sort_asc(input),-2),-4),-1),-3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = reverse(take(take(take(reverse([2, -1]),14),9),24))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(reverse(input),14),9),24))"
  },
  {
    "input": "input : list = [3, -1, -2, 2, -3]\noutput : list = [3, 2, -1, -2]",
    "output": "generated_output : list = sort_des(take(take(sort_des([3, -1, -2, 2, -3]),20),4))",
    "io_inp": [
      3,
      -1,
      -2,
      2,
      -3
    ],
    "io_out": [
      3,
      2,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(input),20),4))"
  },
  {
    "input": "input : list = [-4, -1, 5, -4]\noutput : list = [-3, -3, 0, 6]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(mul_n([-4, -1, 5, -4],1)),1)))",
    "io_inp": [
      -4,
      -1,
      5,
      -4
    ],
    "io_out": [
      -3,
      -3,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(mul_n(input,1)),1)))"
  },
  {
    "input": "input : list = [2, 3, 4, 5, -1]\noutput : list = [5, 6, 7]",
    "output": "generated_output : list = sub_n(take([2, 3, 4, 5, -1],3),-3)",
    "io_inp": [
      2,
      3,
      4,
      5,
      -1
    ],
    "io_out": [
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),-3)"
  },
  {
    "input": "input : list = [-2, -1, -5, 5]\noutput : list = [6, 5]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(take([-2, -1, -5, 5],2),9)),5),2)",
    "io_inp": [
      -2,
      -1,
      -5,
      5
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(take(input,2),9)),5),2)"
  },
  {
    "input": "input : list = [-2, -3, 2, -4, 3, -3]\noutput : list = [-30, -45, -105, -120, -120, -135]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des([-2, -3, 2, -4, 3, -3]),5),-5),-3))",
    "io_inp": [
      -2,
      -3,
      2,
      -4,
      3,
      -3
    ],
    "io_out": [
      -30,
      -45,
      -105,
      -120,
      -120,
      -135
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_des(input),5),-5),-3))"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [-3, -8, -9]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_asc([-3, -2, 3])),5),-1))",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      -3,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_asc(sort_asc(input)),5),-1))"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [5, -4, -5]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(sort_asc([-4, 5, -5])),1),4),-5)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(sort_asc(input)),1),4),-5)"
  },
  {
    "input": "input : list = [-4, 3, -1, 3, 0, -3]\noutput : list = [-6, -6, 6, 10, 18, 22]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(sort_des([-4, 3, -1, 3, 0, -3]),1),-4),-2))",
    "io_inp": [
      -4,
      3,
      -1,
      3,
      0,
      -3
    ],
    "io_out": [
      -6,
      -6,
      6,
      10,
      18,
      22
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sub_n(sort_des(input),1),-4),-2))"
  },
  {
    "input": "input : list = [0, -3, -3, -2, -1, 1]\noutput : list = [-2, -2, -1, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_des(sort_asc([0, -3, -3, -2, -1, 1])),-3),-2))",
    "io_inp": [
      0,
      -3,
      -3,
      -2,
      -1,
      1
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_des(sort_asc(input)),-3),-2))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [6, 10]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(add_n([1, -1],4)),1),2))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sort_asc(add_n(input,4)),1),2))"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = add_n(sub_n([-4, -4],-1),-1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-1),-1)"
  },
  {
    "input": "input : list = [2, -1, -2, 1, 1, -4]\noutput : list = [-4, 2, 4]",
    "output": "generated_output : list = mul_n(take([2, -1, -2, 1, 1, -4],3),-2)",
    "io_inp": [
      2,
      -1,
      -2,
      1,
      1,
      -4
    ],
    "io_out": [
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(input,3),-2)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n([1, 0],3),3)),-1))",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(mul_n(input,3),3)),-1))"
  },
  {
    "input": "input : list = [-2, -2, -2, -1, 1]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = add_n(drop([-2, -2, -2, -1, 1],2),-1)",
    "io_inp": [
      -2,
      -2,
      -2,
      -1,
      1
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [5, 1, -3]\noutput : list = [7]",
    "output": "generated_output : list = mul_n(add_n(take([5, 1, -3],1),2),1)",
    "io_inp": [
      5,
      1,
      -3
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,1),2),1)"
  },
  {
    "input": "input : list = [-5, -1, 0, -2]\noutput : list = [-3, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(sort_asc([-5, -1, 0, -2]),-2))))",
    "io_inp": [
      -5,
      -1,
      0,
      -2
    ],
    "io_out": [
      -3,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sub_n(sort_asc(input),-2))))"
  },
  {
    "input": "input : list = [-1, 1, 0, -3, -1]\noutput : list = [12, 18, 9, 6, 12]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n([-1, 1, 0, -3, -1],2),-3),3))",
    "io_inp": [
      -1,
      1,
      0,
      -3,
      -1
    ],
    "io_out": [
      12,
      18,
      9,
      6,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(input,2),-3),3))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_des([2, -1]))),24))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_des(sort_des(input))),24))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(reverse([4, 3]),-5),-5)),1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(reverse(input),-5),-5)),1)"
  },
  {
    "input": "input : list = [-3, 4, 3, -5, -1, -5]\noutput : list = [10, -25, -20, 20, 0, 20]",
    "output": "generated_output : list = sub_n(mul_n(add_n([-3, 4, 3, -5, -1, -5],2),-5),-5)",
    "io_inp": [
      -3,
      4,
      3,
      -5,
      -1,
      -5
    ],
    "io_out": [
      10,
      -25,
      -20,
      20,
      0,
      20
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,2),-5),-5)"
  },
  {
    "input": "input : list = [-3, 3, 5, -1, 1]\noutput : list = [7, 1, 3]",
    "output": "generated_output : list = add_n(drop([-3, 3, 5, -1, 1],2),2)",
    "io_inp": [
      -3,
      3,
      5,
      -1,
      1
    ],
    "io_out": [
      7,
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),2)"
  },
  {
    "input": "input : list = [2, -2, 3, 4, 3]\noutput : list = [3, 3, 4]",
    "output": "generated_output : list = add_n(drop(add_n(sort_asc(drop([2, -2, 3, 4, 3],1)),5),1),-5)",
    "io_inp": [
      2,
      -2,
      3,
      4,
      3
    ],
    "io_out": [
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(sort_asc(drop(input,1)),5),1),-5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [0, 7]",
    "output": "generated_output : list = sub_n(take(sort_asc(take(sort_des([-5, 2]),7)),30),-5)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(take(sort_des(input),7)),30),-5)"
  },
  {
    "input": "input : list = [5, -1, -3, -3]\noutput : list = [11, 5, 3, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_des([5, -1, -3, -3]))),-1),-5)",
    "io_inp": [
      5,
      -1,
      -3,
      -3
    ],
    "io_out": [
      11,
      5,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_des(input))),-1),-5)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [6, 4]",
    "output": "generated_output : list = mul_n([-3, -2],-2)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 5, 5, 2]\noutput : list = [6]",
    "output": "generated_output : list = sort_des(take(sort_asc(drop(mul_n([-3, 5, 5, 2],3),3)),9))",
    "io_inp": [
      -3,
      5,
      5,
      2
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(drop(mul_n(input,3),3)),9))"
  },
  {
    "input": "input : list = [5, 0, 4, -1, 5, 5]\noutput : list = [-3, -8, -4, -9]",
    "output": "generated_output : list = add_n(take(take(sub_n(take([5, 0, 4, -1, 5, 5],4),4),26),37),-4)",
    "io_inp": [
      5,
      0,
      4,
      -1,
      5,
      5
    ],
    "io_out": [
      -3,
      -8,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(take(input,4),4),26),37),-4)"
  },
  {
    "input": "input : list = [3, 0, 2, 2, 1, 4]\noutput : list = [-2, -2, -3, 0]",
    "output": "generated_output : list = drop(sub_n([3, 0, 2, 2, 1, 4],4),2)",
    "io_inp": [
      3,
      0,
      2,
      2,
      1,
      4
    ],
    "io_out": [
      -2,
      -2,
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,4),2)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(add_n([4, 4],1))",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,1))"
  },
  {
    "input": "input : list = [-1, 3, -4, -5, -3]\noutput : list = [4, 8, 1, 0, 2]",
    "output": "generated_output : list = take(sub_n([-1, 3, -4, -5, -3],-5),24)",
    "io_inp": [
      -1,
      3,
      -4,
      -5,
      -3
    ],
    "io_out": [
      4,
      8,
      1,
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),24)"
  },
  {
    "input": "input : list = [3, -1, -5, -4, -5, 0]\noutput : list = [-7, -2]",
    "output": "generated_output : list = take(add_n(drop([3, -1, -5, -4, -5, 0],4),-2),9)",
    "io_inp": [
      3,
      -1,
      -5,
      -4,
      -5,
      0
    ],
    "io_out": [
      -7,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,4),-2),9)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sort_asc(take(take(take([-5, 5, -4],1),10),7)),-5)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(take(input,1),10),7)),-5)"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = reverse(take(add_n(sort_des(add_n([-3, -3, -5],-2)),2),38))",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sort_des(add_n(input,-2)),2),38))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, -10]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n([-3, 4],2),1),-3))",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(input,2),1),-3))"
  },
  {
    "input": "input : list = [5, -4, -5]\noutput : list = [-1]",
    "output": "generated_output : list = sub_n(reverse(add_n(add_n(take([5, -4, -5],1),-5),-2)),-1)",
    "io_inp": [
      5,
      -4,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(add_n(take(input,1),-5),-2)),-1)"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [-15, -6, 12]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(mul_n([-5, 4, -2],3),5)),-5),1)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      -15,
      -6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(mul_n(input,3),5)),-5),1)"
  },
  {
    "input": "input : list = [5, 0, 5]\noutput : list = [0, 5, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc([5, 0, 5])))))",
    "io_inp": [
      5,
      0,
      5
    ],
    "io_out": [
      0,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -3, 4, 3, 0]\noutput : list = [-15, -12, -3, 6, 12]",
    "output": "generated_output : list = add_n(mul_n(take(sort_des(sort_asc([-5, -3, 4, 3, 0])),28),-3),-3)",
    "io_inp": [
      -5,
      -3,
      4,
      3,
      0
    ],
    "io_out": [
      -15,
      -12,
      -3,
      6,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sort_des(sort_asc(input)),28),-3),-3)"
  },
  {
    "input": "input : list = [-4, -5, -5]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(drop([-4, -5, -5],1))),-5),3)",
    "io_inp": [
      -4,
      -5,
      -5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(drop(input,1))),-5),3)"
  },
  {
    "input": "input : list = [-5, -2, 1, 5, -5, -3]\noutput : list = [18, 24, -6, 6, 15, 24]",
    "output": "generated_output : list = mul_n(sub_n(take(reverse(add_n([-5, -2, 1, 5, -5, -3],1)),22),4),-3)",
    "io_inp": [
      -5,
      -2,
      1,
      5,
      -5,
      -3
    ],
    "io_out": [
      18,
      24,
      -6,
      6,
      15,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(reverse(add_n(input,1)),22),4),-3)"
  },
  {
    "input": "input : list = [0, -1, -1, -3]\noutput : list = [-5, -6, -6, -8]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(sort_des([0, -1, -1, -3]))),-5),4)",
    "io_inp": [
      0,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -5,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(sort_des(input))),-5),4)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sub_n([-2, 4],5)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-2, 1, 2]\noutput : list = [12, 11, 8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n([-2, 1, 2],5),-5)))",
    "io_inp": [
      -2,
      1,
      2
    ],
    "io_out": [
      12,
      11,
      8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(input,5),-5)))"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [-12, 4, 16]",
    "output": "generated_output : list = mul_n(reverse(sort_des([4, 1, -3])),4)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      -12,
      4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(input)),4)"
  },
  {
    "input": "input : list = [1, 4, -3, 4]\noutput : list = [-3, 1, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(take(sort_asc(reverse([1, 4, -3, 4])),21)))",
    "io_inp": [
      1,
      4,
      -3,
      4
    ],
    "io_out": [
      -3,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_asc(reverse(input)),21)))"
  },
  {
    "input": "input : list = [-4, 2, 0, 1, 4, -4]\noutput : list = [4, 2, 1, 0, -4, -4]",
    "output": "generated_output : list = sort_des([-4, 2, 0, 1, 4, -4])",
    "io_inp": [
      -4,
      2,
      0,
      1,
      4,
      -4
    ],
    "io_out": [
      4,
      2,
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = take(take(sort_asc(drop([1, 1, -2],1)),14),20)",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(drop(input,1)),14),20)"
  },
  {
    "input": "input : list = [3, 4, 0, 0]\noutput : list = [4, 3, 0, 0]",
    "output": "generated_output : list = add_n(add_n(sort_des(add_n(add_n([3, 4, 0, 0],4),-4)),1),-1)",
    "io_inp": [
      3,
      4,
      0,
      0
    ],
    "io_out": [
      4,
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(add_n(add_n(input,4),-4)),1),-1)"
  },
  {
    "input": "input : list = [0, 4, -4]\noutput : list = [0, 4, 8]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_asc(add_n([0, 4, -4],2)),-2),4))",
    "io_inp": [
      0,
      4,
      -4
    ],
    "io_out": [
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_asc(add_n(input,2)),-2),4))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des(add_n([2, 2],5))),-2))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(add_n(input,5))),-2))"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [-8, -7, -5]",
    "output": "generated_output : list = sort_asc(reverse(add_n([-3, -4, -1],-4)))",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      -8,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-5, -4, 2, -3, -4]\noutput : list = [-40, -30, 20, -40, -50]",
    "output": "generated_output : list = take(take(mul_n(mul_n(reverse([-5, -4, 2, -3, -4]),5),2),21),28)",
    "io_inp": [
      -5,
      -4,
      2,
      -3,
      -4
    ],
    "io_out": [
      -40,
      -30,
      20,
      -40,
      -50
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(reverse(input),5),2),21),28)"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-30, -35, -45]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(add_n([-2, -5, -3],-4)),-5),-1))",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -30,
      -35,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(add_n(input,-4)),-5),-1))"
  },
  {
    "input": "input : list = [0, 5, 0, -2]\noutput : list = [-4, -2, 3, -2]",
    "output": "generated_output : list = add_n(reverse([0, 5, 0, -2]),-2)",
    "io_inp": [
      0,
      5,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [6, 3]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n([-4, -3],-5),-1)),-3),32)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n(input,-5),-1)),-3),32)"
  },
  {
    "input": "input : list = [5, 0, -1, 3, -4]\noutput : list = [5, 0, -1]",
    "output": "generated_output : list = sort_des(take([5, 0, -1, 3, -4],3))",
    "io_inp": [
      5,
      0,
      -1,
      3,
      -4
    ],
    "io_out": [
      5,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(input,3))"
  },
  {
    "input": "input : list = [-1, 0, 3]\noutput : list = [6, 7, 10]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des([-1, 0, 3]),-5),-2))",
    "io_inp": [
      -1,
      0,
      3
    ],
    "io_out": [
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(input),-5),-2))"
  },
  {
    "input": "input : list = [5, 2, 3, 0, -1]\noutput : list = [28, 16, 10, -2, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(mul_n([5, 2, 3, 0, -1],3),2)),2))",
    "io_inp": [
      5,
      2,
      3,
      0,
      -1
    ],
    "io_out": [
      28,
      16,
      10,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(mul_n(input,3),2)),2))"
  },
  {
    "input": "input : list = [2, 1, -4, 3, -2]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(take([2, 1, -4, 3, -2],1))),-5),5)",
    "io_inp": [
      2,
      1,
      -4,
      3,
      -2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(take(input,1))),-5),5)"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [4, -5, 4]",
    "output": "generated_output : list = reverse([4, -5, 4])",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      4,
      -5,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -3, 0, 1, 4, -3]\noutput : list = [7, 4, 3, 0]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(drop([-5, -3, 0, 1, 4, -3],2),2),-5),17))",
    "io_inp": [
      -5,
      -3,
      0,
      1,
      4,
      -3
    ],
    "io_out": [
      7,
      4,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(drop(input,2),2),-5),17))"
  },
  {
    "input": "input : list = [0, -2, 3, -2, 4, 2]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(take([0, -2, 3, -2, 4, 2],1)),-3)))",
    "io_inp": [
      0,
      -2,
      3,
      -2,
      4,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(take(input,1)),-3)))"
  },
  {
    "input": "input : list = [5, -2, 4]\noutput : list = [5, 4, -2]",
    "output": "generated_output : list = reverse(sort_asc(reverse([5, -2, 4])))",
    "io_inp": [
      5,
      -2,
      4
    ],
    "io_out": [
      5,
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-5, 0, -3, -3, 0]\noutput : list = [20, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take([-5, 0, -3, -3, 0],2),2))),-2)",
    "io_inp": [
      -5,
      0,
      -3,
      -3,
      0
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(mul_n(take(input,2),2))),-2)"
  },
  {
    "input": "input : list = [0, 2, 5]\noutput : list = [-3, -6, -8]",
    "output": "generated_output : list = sub_n(add_n(reverse([0, 2, 5]),-3),5)",
    "io_inp": [
      0,
      2,
      5
    ],
    "io_out": [
      -3,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(input),-3),5)"
  },
  {
    "input": "input : list = [-5, 2, 0, 3, -1, 1]\noutput : list = [-11, -7, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(drop([-5, 2, 0, 3, -1, 1],3),-2)),5))",
    "io_inp": [
      -5,
      2,
      0,
      3,
      -1,
      1
    ],
    "io_out": [
      -11,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(mul_n(drop(input,3),-2)),5))"
  },
  {
    "input": "input : list = [-1, -5, -1, 2, 4]\noutput : list = [3, -1, 3, 6, 8]",
    "output": "generated_output : list = add_n([-1, -5, -1, 2, 4],4)",
    "io_inp": [
      -1,
      -5,
      -1,
      2,
      4
    ],
    "io_out": [
      3,
      -1,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(sub_n([5, 0],2),5)),-5),30)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(sub_n(input,2),5)),-5),30)"
  },
  {
    "input": "input : list = [4, 3, -2, -5, -1, 0]\noutput : list = [15, 12, 3, 0, -3, -12]",
    "output": "generated_output : list = take(sort_des(mul_n(sub_n(add_n([4, 3, -2, -5, -1, 0],-2),-3),3)),17)",
    "io_inp": [
      4,
      3,
      -2,
      -5,
      -1,
      0
    ],
    "io_out": [
      15,
      12,
      3,
      0,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sub_n(add_n(input,-2),-3),3)),17)"
  },
  {
    "input": "input : list = [-5, 2, 2, 4, -1]\noutput : list = [18, 3, 9, 9]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(take(reverse([-5, 2, 2, 4, -1]),4),4),-3),-3)",
    "io_inp": [
      -5,
      2,
      2,
      4,
      -1
    ],
    "io_out": [
      18,
      3,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(take(reverse(input),4),4),-3),-3)"
  },
  {
    "input": "input : list = [-5, 3, 1, -5, 3]\noutput : list = [2, 2, 0, -6, -6]",
    "output": "generated_output : list = reverse(sort_asc(take(add_n(sub_n([-5, 3, 1, -5, 3],4),3),6)))",
    "io_inp": [
      -5,
      3,
      1,
      -5,
      3
    ],
    "io_out": [
      2,
      2,
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(add_n(sub_n(input,4),3),6)))"
  },
  {
    "input": "input : list = [2, -1, 5, 3, -3]\noutput : list = [-2, -4]",
    "output": "generated_output : list = add_n(sub_n(drop(take(sort_des([2, -1, 5, 3, -3]),23),3),3),2)",
    "io_inp": [
      2,
      -1,
      5,
      3,
      -3
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(take(sort_des(input),23),3),3),2)"
  },
  {
    "input": "input : list = [1, 5, 0, -1, 5]\noutput : list = [-1, -5, 0, 1, -5]",
    "output": "generated_output : list = mul_n([1, 5, 0, -1, 5],-1)",
    "io_inp": [
      1,
      5,
      0,
      -1,
      5
    ],
    "io_out": [
      -1,
      -5,
      0,
      1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = reverse([2, -2])",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 2]\noutput : list = [5, -10]",
    "output": "generated_output : list = mul_n(drop([-1, -1, 2],1),-5)",
    "io_inp": [
      -1,
      -1,
      2
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-3, -5, -1, 3, 2]\noutput : list = [-9, -7, -5, -2, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([-3, -5, -1, 3, 2]),-1),5)",
    "io_inp": [
      -3,
      -5,
      -1,
      3,
      2
    ],
    "io_out": [
      -9,
      -7,
      -5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),-1),5)"
  },
  {
    "input": "input : list = [4, -4, 2, -2]\noutput : list = [7, 5, 1, -1]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des([4, -4, 2, -2]),3),31),1)",
    "io_inp": [
      4,
      -4,
      2,
      -2
    ],
    "io_out": [
      7,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(input),3),31),1)"
  },
  {
    "input": "input : list = [-4, -2, -1, 4, -1, -3]\noutput : list = [-4, -3, -2, -1, -1, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc([-4, -2, -1, 4, -1, -3])))",
    "io_inp": [
      -4,
      -2,
      -1,
      4,
      -1,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(input)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [8, -1]",
    "output": "generated_output : list = take(sort_des(reverse(sub_n([5, -4],-3))),5)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      8,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sub_n(input,-3))),5)"
  },
  {
    "input": "input : list = [-2, -4, -1]\noutput : list = [-9, -7, -6]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sub_n([-2, -4, -1],5))))",
    "io_inp": [
      -2,
      -4,
      -1
    ],
    "io_out": [
      -9,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sub_n(input,5))))"
  },
  {
    "input": "input : list = [5, 2, 3]\noutput : list = [-7, -5, -1]",
    "output": "generated_output : list = reverse(add_n(mul_n(add_n(sort_des([5, 2, 3]),-4),2),-3))",
    "io_inp": [
      5,
      2,
      3
    ],
    "io_out": [
      -7,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(add_n(sort_des(input),-4),2),-3))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_asc(sort_asc([4, 0])))),15)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_asc(sort_asc(input)))),15)"
  },
  {
    "input": "input : list = [-4, -2, -1, -1, 0]\noutput : list = [-4, -5, -5, -6, -8]",
    "output": "generated_output : list = sort_des(take(sort_asc(reverse(add_n([-4, -2, -1, -1, 0],-4))),24))",
    "io_inp": [
      -4,
      -2,
      -1,
      -1,
      0
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(reverse(add_n(input,-4))),24))"
  },
  {
    "input": "input : list = [2, 4, 1, -4, -2]\noutput : list = [-6, -4, -1, 0, 2]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(reverse([2, 4, 1, -4, -2]),4)),-2))",
    "io_inp": [
      2,
      4,
      1,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -1,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(reverse(input),4)),-2))"
  },
  {
    "input": "input : list = [-5, 1, -4, 5]\noutput : list = [4, -5]",
    "output": "generated_output : list = mul_n(drop([-5, 1, -4, 5],2),-1)",
    "io_inp": [
      -5,
      1,
      -4,
      5
    ],
    "io_out": [
      4,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-1)"
  },
  {
    "input": "input : list = [2, 4, 4, -4, 0]\noutput : list = [7, 7, 3, -1, -9]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sort_asc([2, 4, 4, -4, 0]),2),1)))",
    "io_inp": [
      2,
      4,
      4,
      -4,
      0
    ],
    "io_out": [
      7,
      7,
      3,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(mul_n(sort_asc(input),2),1)))"
  },
  {
    "input": "input : list = [-4, -5, 0, 0]\noutput : list = [-5, -4, 0]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(sort_des([-4, -5, 0, 0]),10)),3))",
    "io_inp": [
      -4,
      -5,
      0,
      0
    ],
    "io_out": [
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(sort_des(input),10)),3))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-10, 2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n([-4, 0],-3))),5),5)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n(input,-3))),5),5)"
  },
  {
    "input": "input : list = [-3, -4, 2, -4, -1, -1]\noutput : list = [2, -1, -1, -3, -4, -4]",
    "output": "generated_output : list = sort_des(reverse([-3, -4, 2, -4, -1, -1]))",
    "io_inp": [
      -3,
      -4,
      2,
      -4,
      -1,
      -1
    ],
    "io_out": [
      2,
      -1,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, -4, 4, 5, 5, 4]\noutput : list = [6, 7, 7]",
    "output": "generated_output : list = reverse(sort_des(sort_des(drop(add_n([3, -4, 4, 5, 5, 4],2),3))))",
    "io_inp": [
      3,
      -4,
      4,
      5,
      5,
      4
    ],
    "io_out": [
      6,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(drop(add_n(input,2),3))))"
  },
  {
    "input": "input : list = [2, 5, -2]\noutput : list = [-5, 9, 3]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(reverse(add_n([2, 5, -2],2)),2),2),1)",
    "io_inp": [
      2,
      5,
      -2
    ],
    "io_out": [
      -5,
      9,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(reverse(add_n(input,2)),2),2),1)"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [-20, 0, 12]",
    "output": "generated_output : list = sort_asc(sub_n(take(mul_n(reverse([-4, 1, 4]),4),22),4))",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      -20,
      0,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(mul_n(reverse(input),4),22),4))"
  },
  {
    "input": "input : list = [4, 5, -2]\noutput : list = [15, 13, 1]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sort_des(sort_des([4, 5, -2])),2)),-5)",
    "io_inp": [
      4,
      5,
      -2
    ],
    "io_out": [
      15,
      13,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sort_des(sort_des(input)),2)),-5)"
  },
  {
    "input": "input : list = [0, -1, -4, 1, 5]\noutput : list = [-5, -2, -1, 0, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(add_n([0, -1, -4, 1, 5],2),-4),4),3))",
    "io_inp": [
      0,
      -1,
      -4,
      1,
      5
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(add_n(input,2),-4),4),3))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [4, -1]",
    "output": "generated_output : list = sub_n([0, -5],-4)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [1, -2, -1, 5, 4, -2]\noutput : list = [1, -2, -1, 5]",
    "output": "generated_output : list = take(take([1, -2, -1, 5, 4, -2],4),16)",
    "io_inp": [
      1,
      -2,
      -1,
      5,
      4,
      -2
    ],
    "io_out": [
      1,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = take(take(input,4),16)"
  },
  {
    "input": "input : list = [4, -5, 0, 5, 5, 4]\noutput : list = [-10, -5, -1, 0]",
    "output": "generated_output : list = sub_n(take(sort_asc(mul_n(take([4, -5, 0, 5, 5, 4],4),1)),6),5)",
    "io_inp": [
      4,
      -5,
      0,
      5,
      5,
      4
    ],
    "io_out": [
      -10,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(mul_n(take(input,4),1)),6),5)"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(take([0, -2, 0],1),-4))),1)",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(take(input,1),-4))),1)"
  },
  {
    "input": "input : list = [-3, 2, 2, -3, -2, 5]\noutput : list = [15, 12, 12, 8, 7, 7]",
    "output": "generated_output : list = take(add_n(add_n(sub_n(sort_des([-3, 2, 2, -3, -2, 5]),-4),5),1),42)",
    "io_inp": [
      -3,
      2,
      2,
      -3,
      -2,
      5
    ],
    "io_out": [
      15,
      12,
      12,
      8,
      7,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(sub_n(sort_des(input),-4),5),1),42)"
  },
  {
    "input": "input : list = [-3, 2, 4, -1]\noutput : list = [6, 4, 1]",
    "output": "generated_output : list = sub_n(sort_des(drop([-3, 2, 4, -1],1)),-2)",
    "io_inp": [
      -3,
      2,
      4,
      -1
    ],
    "io_out": [
      6,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(drop(input,1)),-2)"
  },
  {
    "input": "input : list = [0, -4, 2, 1, -1]\noutput : list = [-3, -7, -1, -2, -4]",
    "output": "generated_output : list = add_n([0, -4, 2, 1, -1],-3)",
    "io_inp": [
      0,
      -4,
      2,
      1,
      -1
    ],
    "io_out": [
      -3,
      -7,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 3, -3, 2, 4]\noutput : list = [-3, -3, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_des([-3, 3, -3, 2, 4])))))",
    "io_inp": [
      -3,
      3,
      -3,
      2,
      4
    ],
    "io_out": [
      -3,
      -3,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [2, 4, 4, 5, -5, -5]\noutput : list = [2, 1, 1, -1, -8, -8]",
    "output": "generated_output : list = sub_n(sort_des([2, 4, 4, 5, -5, -5]),3)",
    "io_inp": [
      2,
      4,
      4,
      5,
      -5,
      -5
    ],
    "io_out": [
      2,
      1,
      1,
      -1,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [-1, -4, 2, 3, -3]\noutput : list = [-5, -6, 0]",
    "output": "generated_output : list = mul_n(sub_n(drop([-1, -4, 2, 3, -3],2),-3),-1)",
    "io_inp": [
      -1,
      -4,
      2,
      3,
      -3
    ],
    "io_out": [
      -5,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,2),-3),-1)"
  },
  {
    "input": "input : list = [2, 0, -3]\noutput : list = [6]",
    "output": "generated_output : list = add_n(sub_n(take([2, 0, -3],1),-2),2)",
    "io_inp": [
      2,
      0,
      -3
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,1),-2),2)"
  },
  {
    "input": "input : list = [-4, 2, -5, -2, 2, 3]\noutput : list = [-20, 10]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take([-4, 2, -5, -2, 2, 3],2),-5),-1))",
    "io_inp": [
      -4,
      2,
      -5,
      -2,
      2,
      3
    ],
    "io_out": [
      -20,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(input,2),-5),-1))"
  },
  {
    "input": "input : list = [-4, 4, -2]\noutput : list = [9, -3, -7]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(sub_n([-4, 4, -2],-2),2),3),8))",
    "io_inp": [
      -4,
      4,
      -2
    ],
    "io_out": [
      9,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(sub_n(input,-2),2),3),8))"
  },
  {
    "input": "input : list = [1, 1, 5, -5, -2, -1]\noutput : list = [1, -1, -2, -5]",
    "output": "generated_output : list = sort_des(take(take(sort_asc([1, 1, 5, -5, -2, -1]),8),4))",
    "io_inp": [
      1,
      1,
      5,
      -5,
      -2,
      -1
    ],
    "io_out": [
      1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(input),8),4))"
  },
  {
    "input": "input : list = [3, 5, 0, 0, 2, 3]\noutput : list = [0, 0, 2, 3, 3, 5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(take(sort_des([3, 5, 0, 0, 2, 3]),26))))",
    "io_inp": [
      3,
      5,
      0,
      0,
      2,
      3
    ],
    "io_out": [
      0,
      0,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(take(sort_des(input),26))))"
  },
  {
    "input": "input : list = [1, 5, 2, 0]\noutput : list = [-1, 3, 0, -2]",
    "output": "generated_output : list = sub_n([1, 5, 2, 0],2)",
    "io_inp": [
      1,
      5,
      2,
      0
    ],
    "io_out": [
      -1,
      3,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-1, 4, 3]\noutput : list = [-2, 8, 6]",
    "output": "generated_output : list = mul_n(mul_n([-1, 4, 3],-1),-2)",
    "io_inp": [
      -1,
      4,
      3
    ],
    "io_out": [
      -2,
      8,
      6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-1),-2)"
  },
  {
    "input": "input : list = [-5, 1, -5]\noutput : list = [-9, -3, -9]",
    "output": "generated_output : list = add_n(reverse([-5, 1, -5]),-4)",
    "io_inp": [
      -5,
      1,
      -5
    ],
    "io_out": [
      -9,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [2, -5, 1, -4]\noutput : list = [-7, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(take([2, -5, 1, -4],2),18)),-2))",
    "io_inp": [
      2,
      -5,
      1,
      -4
    ],
    "io_out": [
      -7,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(take(input,2),18)),-2))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [18, 27]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_asc([1, -2]),3)),-4),-3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      18,
      27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_asc(input),3)),-4),-3)"
  },
  {
    "input": "input : list = [-4, 0, -3, 2, -1, -4]\noutput : list = [0, -3, 2, -1, -4]",
    "output": "generated_output : list = take(drop(take(reverse(reverse([-4, 0, -3, 2, -1, -4])),16),1),39)",
    "io_inp": [
      -4,
      0,
      -3,
      2,
      -1,
      -4
    ],
    "io_out": [
      0,
      -3,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(drop(take(reverse(reverse(input)),16),1),39)"
  },
  {
    "input": "input : list = [-4, -2, -5, 0, 3, -3]\noutput : list = [7, 4, 1]",
    "output": "generated_output : list = sub_n(sort_des(take(sub_n(drop([-4, -2, -5, 0, 3, -3],3),-1),34)),-3)",
    "io_inp": [
      -4,
      -2,
      -5,
      0,
      3,
      -3
    ],
    "io_out": [
      7,
      4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(sub_n(drop(input,3),-1),34)),-3)"
  },
  {
    "input": "input : list = [2, 3, 5, 5, 1]\noutput : list = [3, 4, 5, 7, 7]",
    "output": "generated_output : list = sort_asc(add_n([2, 3, 5, 5, 1],2))",
    "io_inp": [
      2,
      3,
      5,
      5,
      1
    ],
    "io_out": [
      3,
      4,
      5,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [-3, 5, -3, 1, 1, 0]\noutput : list = [-56]",
    "output": "generated_output : list = take(take(mul_n(mul_n(sub_n([-3, 5, -3, 1, 1, 0],4),-2),-4),15),1)",
    "io_inp": [
      -3,
      5,
      -3,
      1,
      1,
      0
    ],
    "io_out": [
      -56
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(sub_n(input,4),-2),-4),15),1)"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [6, 2, -3]",
    "output": "generated_output : list = sort_des(sub_n(take(add_n(sort_des([0, 4, -5]),4),15),2))",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      6,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(add_n(sort_des(input),4),15),2))"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(sort_des(sort_des(take(sort_des([4, 4]),11))),35)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(take(sort_des(input),11))),35)"
  },
  {
    "input": "input : list = [5, -4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(take(reverse(sort_asc(drop([5, -4, 1],1))),23))",
    "io_inp": [
      5,
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(sort_asc(drop(input,1))),23))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = take(mul_n([2, 1],-1),11)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),11)"
  },
  {
    "input": "input : list = [3, -5, 3, -3]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_des(reverse(take([3, -5, 3, -3],1))),31)",
    "io_inp": [
      3,
      -5,
      3,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(input,1))),31)"
  },
  {
    "input": "input : list = [5, 2, 1]\noutput : list = [-11]",
    "output": "generated_output : list = add_n(sub_n(mul_n(sort_asc(take([5, 2, 1],1)),-2),4),3)",
    "io_inp": [
      5,
      2,
      1
    ],
    "io_out": [
      -11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(sort_asc(take(input,1)),-2),4),3)"
  },
  {
    "input": "input : list = [-3, -4, 0, 4, 3, -2]\noutput : list = [-2, 3, 4, 0, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, 0, 4, 3, -2])",
    "io_inp": [
      -3,
      -4,
      0,
      4,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      4,
      0,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -4, -4]\noutput : list = [4, 4, 7]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(add_n([-1, -4, -4],4),-3),1)),2)",
    "io_inp": [
      -1,
      -4,
      -4
    ],
    "io_out": [
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(add_n(input,4),-3),1)),2)"
  },
  {
    "input": "input : list = [-3, -2, 1, 2, -3, -2]\noutput : list = [8, 8, 9, 9, 12, 13]",
    "output": "generated_output : list = sub_n(reverse(sub_n(sort_des(add_n([-3, -2, 1, 2, -3, -2],5)),-4)),-2)",
    "io_inp": [
      -3,
      -2,
      1,
      2,
      -3,
      -2
    ],
    "io_out": [
      8,
      8,
      9,
      9,
      12,
      13
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(sort_des(add_n(input,5)),-4)),-2)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-16, 8]",
    "output": "generated_output : list = mul_n([-4, 2],4)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -16,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [1, -2, -3, -4, 0, -2]\noutput : list = [-4, 0, -2]",
    "output": "generated_output : list = drop([1, -2, -3, -4, 0, -2],3)",
    "io_inp": [
      1,
      -2,
      -3,
      -4,
      0,
      -2
    ],
    "io_out": [
      -4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [0, -3]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(add_n([-1, 2],-4)),3)),-1)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(add_n(input,-4)),3)),-1)"
  },
  {
    "input": "input : list = [5, 4, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(take([5, 4, -5, -4],2))),-1))",
    "io_inp": [
      5,
      4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_asc(take(input,2))),-1))"
  },
  {
    "input": "input : list = [5, -2, 5, 4, -1, -2]\noutput : list = [23, 2, 23, 20, 5, 2]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(sub_n([5, -2, 5, 4, -1, -2],-2),15),-1),3),-1)",
    "io_inp": [
      5,
      -2,
      5,
      4,
      -1,
      -2
    ],
    "io_out": [
      23,
      2,
      23,
      20,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(sub_n(input,-2),15),-1),3),-1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [43, 19]",
    "output": "generated_output : list = add_n(reverse(mul_n(add_n(add_n([4, -2],-5),-5),-4)),-5)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      43,
      19
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(add_n(add_n(input,-5),-5),-4)),-5)"
  },
  {
    "input": "input : list = [1, 5, -3]\noutput : list = [5, 1, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_des(sort_des([1, 5, -3]))),5))",
    "io_inp": [
      1,
      5,
      -3
    ],
    "io_out": [
      5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_des(sort_des(input))),5))"
  },
  {
    "input": "input : list = [-2, 1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(sub_n([-2, 1],2),-5),-3),-4),-1)",
    "io_inp": [
      -2,
      1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(sub_n(input,2),-5),-3),-4),-1)"
  },
  {
    "input": "input : list = [0, 4, -5, -4]\noutput : list = [-1]",
    "output": "generated_output : list = drop(sort_des(add_n(take(sort_asc([0, 4, -5, -4]),14),4)),3)",
    "io_inp": [
      0,
      4,
      -5,
      -4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(take(sort_asc(input),14),4)),3)"
  },
  {
    "input": "input : list = [-3, -4, 5, -2, 0, -3]\noutput : list = [6, 8, -10, 4, 0, 6]",
    "output": "generated_output : list = mul_n([-3, -4, 5, -2, 0, -3],-2)",
    "io_inp": [
      -3,
      -4,
      5,
      -2,
      0,
      -3
    ],
    "io_out": [
      6,
      8,
      -10,
      4,
      0,
      6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 3, 5]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = sort_des([4, 3, 5])",
    "io_inp": [
      4,
      3,
      5
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(sort_asc(reverse(sort_des([5, 1]))),1))",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-2, -4, 4, -2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -4, 4, -2],1)",
    "io_inp": [
      -2,
      -4,
      4,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [5, 4, -2, -5]\noutput : list = [27, 18, 0, -3]",
    "output": "generated_output : list = mul_n(add_n(take(take(reverse([5, 4, -2, -5]),18),28),-4),-3)",
    "io_inp": [
      5,
      4,
      -2,
      -5
    ],
    "io_out": [
      27,
      18,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(reverse(input),18),28),-4),-3)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(sub_n(add_n(sort_des(sort_des([-1, -1])),5),-2),25)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sort_des(sort_des(input)),5),-2),25)"
  },
  {
    "input": "input : list = [5, 3, 5, -2, 2, -3]\noutput : list = [3, 2, -2, -3, -5, -5]",
    "output": "generated_output : list = sort_des(mul_n([5, 3, 5, -2, 2, -3],-1))",
    "io_inp": [
      5,
      3,
      5,
      -2,
      2,
      -3
    ],
    "io_out": [
      3,
      2,
      -2,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-2, 4, -1, -3, -4, 3]\noutput : list = [-12, -4, 16, -8]",
    "output": "generated_output : list = reverse(mul_n(take([-2, 4, -1, -3, -4, 3],4),4))",
    "io_inp": [
      -2,
      4,
      -1,
      -3,
      -4,
      3
    ],
    "io_out": [
      -12,
      -4,
      16,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,4),4))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = take(add_n(sort_des(add_n(sort_des([5, 5]),4)),-3),38)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(add_n(sort_des(input),4)),-3),38)"
  },
  {
    "input": "input : list = [-2, 3, 4, -4, -1]\noutput : list = [-13, -11, -10, -6, -5]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_des(reverse([-2, 3, 4, -4, -1]))),-5),4)",
    "io_inp": [
      -2,
      3,
      4,
      -4,
      -1
    ],
    "io_out": [
      -13,
      -11,
      -10,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_des(reverse(input))),-5),4)"
  },
  {
    "input": "input : list = [3, -2, 0, 3]\noutput : list = [18, 6, -12, -12]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse(sub_n([3, -2, 0, 3],1))),-2),3)",
    "io_inp": [
      3,
      -2,
      0,
      3
    ],
    "io_out": [
      18,
      6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(sub_n(input,1))),-2),3)"
  },
  {
    "input": "input : list = [1, 1, -2, 3, 1, -4]\noutput : list = [4, -4, -4, -4, -16, -24]",
    "output": "generated_output : list = sort_des(take(mul_n(sub_n([1, 1, -2, 3, 1, -4],2),4),23))",
    "io_inp": [
      1,
      1,
      -2,
      3,
      1,
      -4
    ],
    "io_out": [
      4,
      -4,
      -4,
      -4,
      -16,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sub_n(input,2),4),23))"
  },
  {
    "input": "input : list = [1, -3, -2]\noutput : list = [2, 3]",
    "output": "generated_output : list = add_n(add_n(sort_asc(take(drop([1, -3, -2],1),8)),2),3)",
    "io_inp": [
      1,
      -3,
      -2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(take(drop(input,1),8)),2),3)"
  },
  {
    "input": "input : list = [-4, -1, -4, 4, 4]\noutput : list = [4, 4]",
    "output": "generated_output : list = reverse(reverse(drop([-4, -1, -4, 4, 4],3)))",
    "io_inp": [
      -4,
      -1,
      -4,
      4,
      4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,3)))"
  },
  {
    "input": "input : list = [-5, 1, -1, 4, -2, 5]\noutput : list = [5, 4, 1, -1, -2, -5]",
    "output": "generated_output : list = sort_des([-5, 1, -1, 4, -2, 5])",
    "io_inp": [
      -5,
      1,
      -1,
      4,
      -2,
      5
    ],
    "io_out": [
      5,
      4,
      1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, -3, 2, 0]\noutput : list = [-4, -4, -3]",
    "output": "generated_output : list = take([-4, -4, -3, 2, 0],3)",
    "io_inp": [
      -4,
      -4,
      -3,
      2,
      0
    ],
    "io_out": [
      -4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [4, -1, -3, -5, -2, -1]\noutput : list = [-20, -10, -5, 0, 0, 25]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_des(sort_asc([4, -1, -3, -5, -2, -1]))),5),-5)",
    "io_inp": [
      4,
      -1,
      -3,
      -5,
      -2,
      -1
    ],
    "io_out": [
      -20,
      -10,
      -5,
      0,
      0,
      25
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_des(sort_asc(input))),5),-5)"
  },
  {
    "input": "input : list = [-5, -4, -4]\noutput : list = [-3, -3, -4]",
    "output": "generated_output : list = sub_n(sub_n(reverse(add_n(sub_n([-5, -4, -4],-2),-2)),4),-5)",
    "io_inp": [
      -5,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(add_n(sub_n(input,-2),-2)),4),-5)"
  },
  {
    "input": "input : list = [0, 1, -2, 2, 3]\noutput : list = [4, 6, 7, 8, 9]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(add_n([0, 1, -2, 2, 3],-1)),-2)),5)",
    "io_inp": [
      0,
      1,
      -2,
      2,
      3
    ],
    "io_out": [
      4,
      6,
      7,
      8,
      9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(add_n(input,-1)),-2)),5)"
  },
  {
    "input": "input : list = [-3, -5, 3, 4, -2, 4]\noutput : list = [4, -2, 4]",
    "output": "generated_output : list = reverse(drop([-3, -5, 3, 4, -2, 4],3))",
    "io_inp": [
      -3,
      -5,
      3,
      4,
      -2,
      4
    ],
    "io_out": [
      4,
      -2,
      4
    ],
    "output_masked": "generated_output : list = reverse(drop(input,3))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-11, -13]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_asc([-2, -4]))),4),5)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(sort_des(sort_asc(input))),4),5)"
  },
  {
    "input": "input : list = [4, 5, -2, -3, 4, -5]\noutput : list = [6, 4, 3, -3, -3, -4]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(sort_des([4, 5, -2, -3, 4, -5])),1),-1))",
    "io_inp": [
      4,
      5,
      -2,
      -3,
      4,
      -5
    ],
    "io_out": [
      6,
      4,
      3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(sort_des(input)),1),-1))"
  },
  {
    "input": "input : list = [3, -4, 2, 3, -3]\noutput : list = [7, 7, 6, 1, 0]",
    "output": "generated_output : list = sub_n(take(add_n(take(sort_des([3, -4, 2, 3, -3]),16),2),10),-2)",
    "io_inp": [
      3,
      -4,
      2,
      3,
      -3
    ],
    "io_out": [
      7,
      7,
      6,
      1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(take(sort_des(input),16),2),10),-2)"
  },
  {
    "input": "input : list = [-1, 1, 2, -5, -3, 3]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take([-1, 1, 2, -5, -3, 3],1)),1)))",
    "io_inp": [
      -1,
      1,
      2,
      -5,
      -3,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(sort_des(take(input,1)),1)))"
  },
  {
    "input": "input : list = [-1, 2, 0, 4]\noutput : list = [2, 0, 4]",
    "output": "generated_output : list = drop([-1, 2, 0, 4],1)",
    "io_inp": [
      -1,
      2,
      0,
      4
    ],
    "io_out": [
      2,
      0,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -2, -2, 2]\noutput : list = [2, -1, -2, -2, -5]",
    "output": "generated_output : list = add_n(sub_n(take(take(sort_des([-1, -5, -2, -2, 2]),27),7),4),4)",
    "io_inp": [
      -1,
      -5,
      -2,
      -2,
      2
    ],
    "io_out": [
      2,
      -1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(sort_des(input),27),7),4),4)"
  },
  {
    "input": "input : list = [1, -1, -5, 5, -5, 5]\noutput : list = [3, -7, 3, -7, -3, -1]",
    "output": "generated_output : list = reverse(sub_n([1, -1, -5, 5, -5, 5],2))",
    "io_inp": [
      1,
      -1,
      -5,
      5,
      -5,
      5
    ],
    "io_out": [
      3,
      -7,
      3,
      -7,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [-3, 0]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse([0, -1]),1)),3)",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(input),1)),3)"
  },
  {
    "input": "input : list = [-5, 2, 3, 4, 0, 3]\noutput : list = [0, 3, 4]",
    "output": "generated_output : list = sort_asc(drop([-5, 2, 3, 4, 0, 3],3))",
    "io_inp": [
      -5,
      2,
      3,
      4,
      0,
      3
    ],
    "io_out": [
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,3))"
  },
  {
    "input": "input : list = [5, -3, -2, -5]\noutput : list = [9, 1, 2, -1]",
    "output": "generated_output : list = take(sub_n([5, -3, -2, -5],-4),5)",
    "io_inp": [
      5,
      -3,
      -2,
      -5
    ],
    "io_out": [
      9,
      1,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),5)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc([-5, -1]),2))))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [2, -6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc(drop([4, 5, -3],1))),-1),2)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(drop(input,1))),-1),2)"
  },
  {
    "input": "input : list = [-2, 0, -3]\noutput : list = [-3, -2, 0]",
    "output": "generated_output : list = sort_asc([-2, 0, -3])",
    "io_inp": [
      -2,
      0,
      -3
    ],
    "io_out": [
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, 2, -4]\noutput : list = [-4, -3, -3, 2]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(sort_asc([-3, -3, 2, -4]),9))),1)",
    "io_inp": [
      -3,
      -3,
      2,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(sort_asc(input),9))),1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc(sort_des([4, -4]))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-5, -1, -5, 0]\noutput : list = [-5, -5, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, -1, -5, 0]))",
    "io_inp": [
      -5,
      -1,
      -5,
      0
    ],
    "io_out": [
      -5,
      -5,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-6, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse([-4, 2])),2)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(input)),2)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [11, 20]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse(reverse([-5, -2])),-3)),5)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      11,
      20
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(reverse(input)),-3)),5)"
  },
  {
    "input": "input : list = [0, -5, -1, -3]\noutput : list = [0, -5]",
    "output": "generated_output : list = take([0, -5, -1, -3],2)",
    "io_inp": [
      0,
      -5,
      -1,
      -3
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [1, 3, 4, -2, 3, 2]\noutput : list = [2, 1, 1, 0, -1, -4]",
    "output": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_des([1, 3, 4, -2, 3, 2])),2),-1),-5)",
    "io_inp": [
      1,
      3,
      4,
      -2,
      3,
      2
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(sort_des(sort_des(input)),2),-1),-5)"
  },
  {
    "input": "input : list = [2, -1, 2, 4]\noutput : list = [40, -80, -80, -160]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sort_asc([2, -1, 2, 4]),2),-5),4),40)",
    "io_inp": [
      2,
      -1,
      2,
      4
    ],
    "io_out": [
      40,
      -80,
      -80,
      -160
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sort_asc(input),2),-5),4),40)"
  },
  {
    "input": "input : list = [-1, 5, 1, 4, 4, 3]\noutput : list = [10, 14, 16, 16, 18]",
    "output": "generated_output : list = add_n(mul_n(drop(sub_n(sort_asc([-1, 5, 1, 4, 4, 3]),-3),1),2),2)",
    "io_inp": [
      -1,
      5,
      1,
      4,
      4,
      3
    ],
    "io_out": [
      10,
      14,
      16,
      16,
      18
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(sub_n(sort_asc(input),-3),1),2),2)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [10, 10]",
    "output": "generated_output : list = sort_des(reverse(sort_des(mul_n(mul_n([-2, -2],1),-5))))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(mul_n(mul_n(input,1),-5))))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-10, -7]",
    "output": "generated_output : list = add_n(add_n([-3, 0],-5),-2)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -10,
      -7
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),-2)"
  },
  {
    "input": "input : list = [5, 2, 1, 5]\noutput : list = [45, 9, 18, 45]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(sub_n([5, 2, 1, 5],-1)),3),-3),3)",
    "io_inp": [
      5,
      2,
      1,
      5
    ],
    "io_out": [
      45,
      9,
      18,
      45
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(sub_n(input,-1)),3),-3),3)"
  },
  {
    "input": "input : list = [-4, -4, 3, 3]\noutput : list = [8, 8, -6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(reverse([-4, -4, 3, 3]),-2))))",
    "io_inp": [
      -4,
      -4,
      3,
      3
    ],
    "io_out": [
      8,
      8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [5, 1, 1, 5, 4, 2]\noutput : list = [11, 7, 7, 11]",
    "output": "generated_output : list = add_n(take(take(sub_n(take([5, 1, 1, 5, 4, 2],4),-1),22),12),5)",
    "io_inp": [
      5,
      1,
      1,
      5,
      4,
      2
    ],
    "io_out": [
      11,
      7,
      7,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(take(input,4),-1),22),12),5)"
  },
  {
    "input": "input : list = [4, -5, 5, 5]\noutput : list = [-20, -20]",
    "output": "generated_output : list = take(take(sort_asc(mul_n(reverse([4, -5, 5, 5]),-4)),2),4)",
    "io_inp": [
      4,
      -5,
      5,
      5
    ],
    "io_out": [
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(mul_n(reverse(input),-4)),2),4)"
  },
  {
    "input": "input : list = [4, -5, 1, -3, 5]\noutput : list = [4, 3, 0, -4, -6]",
    "output": "generated_output : list = reverse(take(sort_asc(sub_n([4, -5, 1, -3, 5],1)),9))",
    "io_inp": [
      4,
      -5,
      1,
      -3,
      5
    ],
    "io_out": [
      4,
      3,
      0,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sub_n(input,1)),9))"
  },
  {
    "input": "input : list = [-3, 2, 5, -1, 1, 2]\noutput : list = [-6, -4, -2, -1, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_des([-3, 2, 5, -1, 1, 2])),3)))",
    "io_inp": [
      -3,
      2,
      5,
      -1,
      1,
      2
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(sort_des(input)),3)))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des([3, 1])),5)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(input)),5)"
  },
  {
    "input": "input : list = [-2, 1, -5, -3]\noutput : list = [0, -6, -8, -12]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(add_n([-2, 1, -5, -3],3),-4),2)))",
    "io_inp": [
      -2,
      1,
      -5,
      -3
    ],
    "io_out": [
      0,
      -6,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(add_n(input,3),-4),2)))"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [-7, -5, -10]",
    "output": "generated_output : list = reverse(add_n(add_n([-4, 1, -1],-1),-5))",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-1),-5))"
  },
  {
    "input": "input : list = [1, 3, -3, 5, -3]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(take([1, 3, -3, 5, -3],1),-2),5)),-5)",
    "io_inp": [
      1,
      3,
      -3,
      5,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(take(input,1),-2),5)),-5)"
  },
  {
    "input": "input : list = [-5, 5, 0]\noutput : list = [25, 5, -15]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(mul_n(add_n([-5, 5, 0],1),4),-4),3))",
    "io_inp": [
      -5,
      5,
      0
    ],
    "io_out": [
      25,
      5,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(mul_n(add_n(input,1),4),-4),3))"
  },
  {
    "input": "input : list = [-4, -2, -3]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sub_n(take([-4, -2, -3],1),-3))",
    "io_inp": [
      -4,
      -2,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(input,1),-3))"
  },
  {
    "input": "input : list = [-4, 5, 4, 2, -3]\noutput : list = [7, 6, 4, -1, -2]",
    "output": "generated_output : list = sort_des(take(reverse(add_n(reverse([-4, 5, 4, 2, -3]),2)),21))",
    "io_inp": [
      -4,
      5,
      4,
      2,
      -3
    ],
    "io_out": [
      7,
      6,
      4,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(add_n(reverse(input),2)),21))"
  },
  {
    "input": "input : list = [5, -2, 0, -5, -5, -5]\noutput : list = [-22, -2, 6, 18, 18, 18]",
    "output": "generated_output : list = sort_asc(add_n(add_n(mul_n(mul_n([5, -2, 0, -5, -5, -5],-1),4),-1),-1))",
    "io_inp": [
      5,
      -2,
      0,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -22,
      -2,
      6,
      18,
      18,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(mul_n(mul_n(input,-1),4),-1),-1))"
  },
  {
    "input": "input : list = [-3, 0, 3, 1]\noutput : list = [85, 61, 49, 13]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sort_des([-3, 0, 3, 1]),-4),-4),-3),-1)",
    "io_inp": [
      -3,
      0,
      3,
      1
    ],
    "io_out": [
      85,
      61,
      49,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sort_des(input),-4),-4),-3),-1)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [3, -3]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(reverse([2, -4]),7)),1))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(reverse(input),7)),1))"
  },
  {
    "input": "input : list = [1, 2, -3, -4, -5, 5]\noutput : list = [8, 12, 28, 32]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(add_n(take([1, 2, -3, -4, -5, 5],4),-3)),1),-4)",
    "io_inp": [
      1,
      2,
      -3,
      -4,
      -5,
      5
    ],
    "io_out": [
      8,
      12,
      28,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(add_n(take(input,4),-3)),1),-4)"
  },
  {
    "input": "input : list = [5, 2, 5, 5]\noutput : list = [6, 6, 6, 3]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_des(add_n([5, 2, 5, 5],1)))))",
    "io_inp": [
      5,
      2,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_des(add_n(input,1)))))"
  },
  {
    "input": "input : list = [-4, 4, -4, 5, -5, 4]\noutput : list = [-8, 1]",
    "output": "generated_output : list = reverse(sort_des(sort_des(drop(add_n([-4, 4, -4, 5, -5, 4],-3),4))))",
    "io_inp": [
      -4,
      4,
      -4,
      5,
      -5,
      4
    ],
    "io_out": [
      -8,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(drop(add_n(input,-3),4))))"
  },
  {
    "input": "input : list = [3, -5, 1, 5, -1]\noutput : list = [-25, 125, 25, -125]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(drop([3, -5, 1, 5, -1],1),4)),-5),-5)",
    "io_inp": [
      3,
      -5,
      1,
      5,
      -1
    ],
    "io_out": [
      -25,
      125,
      25,
      -125
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(drop(input,1),4)),-5),-5)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [2, 4]",
    "output": "generated_output : list = mul_n(add_n([-4, -5],3),-2)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-2)"
  },
  {
    "input": "input : list = [-3, 4, -2, 0, 5]\noutput : list = [-12, 16, -8, 0, 20]",
    "output": "generated_output : list = mul_n([-3, 4, -2, 0, 5],4)",
    "io_inp": [
      -3,
      4,
      -2,
      0,
      5
    ],
    "io_out": [
      -12,
      16,
      -8,
      0,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 0, 2, 4, -5]\noutput : list = [-1, 8, 6, 4, -1]",
    "output": "generated_output : list = sub_n(reverse(take(take(sub_n([-5, 0, 2, 4, -5],1),19),7)),-5)",
    "io_inp": [
      -5,
      0,
      2,
      4,
      -5
    ],
    "io_out": [
      -1,
      8,
      6,
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(take(sub_n(input,1),19),7)),-5)"
  },
  {
    "input": "input : list = [-3, 0, 0, 5]\noutput : list = [-13, -3, -3, 3]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(mul_n([-3, 0, 0, 5],-2))),3))",
    "io_inp": [
      -3,
      0,
      0,
      5
    ],
    "io_out": [
      -13,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(mul_n(input,-2))),3))"
  },
  {
    "input": "input : list = [2, -5, 1]\noutput : list = [2, -5, 1]",
    "output": "generated_output : list = mul_n([2, -5, 1],1)",
    "io_inp": [
      2,
      -5,
      1
    ],
    "io_out": [
      2,
      -5,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-1, 3, 0]\noutput : list = [0, -3, -4]",
    "output": "generated_output : list = sort_des(add_n([-1, 3, 0],-3))",
    "io_inp": [
      -1,
      3,
      0
    ],
    "io_out": [
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [4, -5, 4, 5, -2, 5]\noutput : list = [8, -1, 8, 9, 2, 9]",
    "output": "generated_output : list = add_n([4, -5, 4, 5, -2, 5],4)",
    "io_inp": [
      4,
      -5,
      4,
      5,
      -2,
      5
    ],
    "io_out": [
      8,
      -1,
      8,
      9,
      2,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [4, 0, 3, 5, 0]\noutput : list = [5, 9]",
    "output": "generated_output : list = take(reverse(sort_des(add_n(take([4, 0, 3, 5, 0],2),5))),41)",
    "io_inp": [
      4,
      0,
      3,
      5,
      0
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(add_n(take(input,2),5))),41)"
  },
  {
    "input": "input : list = [4, -4, 3, 0]\noutput : list = [-4, 0, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(drop([4, -4, 3, 0],1),1))))",
    "io_inp": [
      4,
      -4,
      3,
      0
    ],
    "io_out": [
      -4,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [-4, 3, -5, -3, 5, 2]\noutput : list = [-1, 2, -6, -8, 0, -7]",
    "output": "generated_output : list = add_n(sub_n(reverse(add_n([-4, 3, -5, -3, 5, 2],-4)),-2),-1)",
    "io_inp": [
      -4,
      3,
      -5,
      -3,
      5,
      2
    ],
    "io_out": [
      -1,
      2,
      -6,
      -8,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(add_n(input,-4)),-2),-1)"
  },
  {
    "input": "input : list = [-1, -5, -4, 4, 2, 0]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = drop([-1, -5, -4, 4, 2, 0],3)",
    "io_inp": [
      -1,
      -5,
      -4,
      4,
      2,
      0
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, -5, 3, 1, 4]\noutput : list = [-22, -14]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take([-3, -5, 3, 1, 4],2),4)),2),1)",
    "io_inp": [
      -3,
      -5,
      3,
      1,
      4
    ],
    "io_out": [
      -22,
      -14
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(mul_n(take(input,2),4)),2),1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [0, -4]",
    "output": "generated_output : list = add_n([3, -1],-3)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 1, -4, -4, -1, 3]\noutput : list = [-60, -60, -15, -15, 15, 45]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(mul_n([-1, 1, -4, -4, -1, 3],5)),3),25))",
    "io_inp": [
      -1,
      1,
      -4,
      -4,
      -1,
      3
    ],
    "io_out": [
      -60,
      -60,
      -15,
      -15,
      15,
      45
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(mul_n(input,5)),3),25))"
  },
  {
    "input": "input : list = [-1, -5, 3, -1]\noutput : list = [6]",
    "output": "generated_output : list = reverse(add_n(sub_n(take([-1, -5, 3, -1],1),-5),2))",
    "io_inp": [
      -1,
      -5,
      3,
      -1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(input,1),-5),2))"
  },
  {
    "input": "input : list = [1, 4, 2, 3]\noutput : list = [2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_des([1, 4, 2, 3]),1))",
    "io_inp": [
      1,
      4,
      2,
      3
    ],
    "io_out": [
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(input),1))"
  },
  {
    "input": "input : list = [3, -5, 1, 4, -2, -2]\noutput : list = [2, 2, 8, 5, -1, 7]",
    "output": "generated_output : list = add_n(reverse([3, -5, 1, 4, -2, -2]),4)",
    "io_inp": [
      3,
      -5,
      1,
      4,
      -2,
      -2
    ],
    "io_out": [
      2,
      2,
      8,
      5,
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [8, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(mul_n([-3, -5],-4),5),-3),4))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(mul_n(input,-4),5),-3),4))"
  },
  {
    "input": "input : list = [2, 2, -4, 5, 4, 0]\noutput : list = [-2, 2, 4, 4, 6, 7]",
    "output": "generated_output : list = reverse(add_n(sub_n(take(sort_des([2, 2, -4, 5, 4, 0]),9),1),3))",
    "io_inp": [
      2,
      2,
      -4,
      5,
      4,
      0
    ],
    "io_out": [
      -2,
      2,
      4,
      4,
      6,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(take(sort_des(input),9),1),3))"
  },
  {
    "input": "input : list = [-1, -3, 5, 4, 5]\noutput : list = [-1]",
    "output": "generated_output : list = take(sort_asc(take(sort_asc(take([-1, -3, 5, 4, 5],1)),17)),31)",
    "io_inp": [
      -1,
      -3,
      5,
      4,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_asc(take(input,1)),17)),31)"
  },
  {
    "input": "input : list = [0, 3, 5, 2, 3, 0]\noutput : list = [10, 8, 8, 7, 5, 5]",
    "output": "generated_output : list = take(sort_des(sub_n(sort_asc(reverse([0, 3, 5, 2, 3, 0])),-5)),32)",
    "io_inp": [
      0,
      3,
      5,
      2,
      3,
      0
    ],
    "io_out": [
      10,
      8,
      8,
      7,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sort_asc(reverse(input)),-5)),32)"
  },
  {
    "input": "input : list = [1, -5, -5, -3]\noutput : list = [1, -3, -5, -5]",
    "output": "generated_output : list = take(sort_des(reverse([1, -5, -5, -3])),11)",
    "io_inp": [
      1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),11)"
  },
  {
    "input": "input : list = [-2, 3, 4, -1, -5]\noutput : list = [-12, 3, 6, -9, -21]",
    "output": "generated_output : list = mul_n(add_n([-2, 3, 4, -1, -5],-2),3)",
    "io_inp": [
      -2,
      3,
      4,
      -1,
      -5
    ],
    "io_out": [
      -12,
      3,
      6,
      -9,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-2),3)"
  },
  {
    "input": "input : list = [-3, 4, -1, -1, -5, 2]\noutput : list = [-4, 3, -2, -2, -6, 1]",
    "output": "generated_output : list = add_n([-3, 4, -1, -1, -5, 2],-1)",
    "io_inp": [
      -3,
      4,
      -1,
      -1,
      -5,
      2
    ],
    "io_out": [
      -4,
      3,
      -2,
      -2,
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [3, 2, 4, 5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(drop([3, 2, 4, 5, -1],3))",
    "io_inp": [
      3,
      2,
      4,
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,3))"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [8, 1, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n([5, -4, -2],5),-2))",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      8,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(input,5),-2))"
  },
  {
    "input": "input : list = [4, -5, -5, -2]\noutput : list = [-60, -96, -96, 12]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(reverse([4, -5, -5, -2]),3),3),4)",
    "io_inp": [
      4,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -60,
      -96,
      -96,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(reverse(input),3),3),4)"
  },
  {
    "input": "input : list = [-1, 4, -1]\noutput : list = [4, 9, 4]",
    "output": "generated_output : list = sub_n([-1, 4, -1],-5)",
    "io_inp": [
      -1,
      4,
      -1
    ],
    "io_out": [
      4,
      9,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [19]",
    "output": "generated_output : list = add_n(reverse(mul_n(mul_n(take([-2, -1, -1],1),2),-4)),3)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      19
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(mul_n(take(input,1),2),-4)),3)"
  },
  {
    "input": "input : list = [5, 0, 0, 2]\noutput : list = [7, 7, 9, 12]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(sort_asc([5, 0, 0, 2]),3),-5),3),-4)",
    "io_inp": [
      5,
      0,
      0,
      2
    ],
    "io_out": [
      7,
      7,
      9,
      12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(sort_asc(input),3),-5),3),-4)"
  },
  {
    "input": "input : list = [-5, 0, -1, 4]\noutput : list = [0, -4, -5, -9]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_asc([-5, 0, -1, 4]),4))),4)",
    "io_inp": [
      -5,
      0,
      -1,
      4
    ],
    "io_out": [
      0,
      -4,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_asc(input),4))),4)"
  },
  {
    "input": "input : list = [4, -2, -2, 0, -3, 4]\noutput : list = [9, 9, 5, 3, 3, 2]",
    "output": "generated_output : list = reverse(take(reverse(sort_des(add_n([4, -2, -2, 0, -3, 4],5))),30))",
    "io_inp": [
      4,
      -2,
      -2,
      0,
      -3,
      4
    ],
    "io_out": [
      9,
      9,
      5,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_des(add_n(input,5))),30))"
  },
  {
    "input": "input : list = [-3, -1, 0, 2, 2]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(take(drop(mul_n(reverse([-3, -1, 0, 2, 2]),2),3),21))",
    "io_inp": [
      -3,
      -1,
      0,
      2,
      2
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(mul_n(reverse(input),2),3),21))"
  },
  {
    "input": "input : list = [-3, 1, -3, 1, -2]\noutput : list = [5, 5, 2, 1, 1]",
    "output": "generated_output : list = add_n(take(sort_des(reverse(sort_des([-3, 1, -3, 1, -2]))),30),4)",
    "io_inp": [
      -3,
      1,
      -3,
      1,
      -2
    ],
    "io_out": [
      5,
      5,
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(reverse(sort_des(input))),30),4)"
  },
  {
    "input": "input : list = [3, 3, -2, -4, -4, 3]\noutput : list = [3, 3]",
    "output": "generated_output : list = take([3, 3, -2, -4, -4, 3],2)",
    "io_inp": [
      3,
      3,
      -2,
      -4,
      -4,
      3
    ],
    "io_out": [
      3,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, -3, -2, 1]\noutput : list = [-15, -3, 15, 21]",
    "output": "generated_output : list = mul_n(sort_asc(take(sub_n(mul_n([3, -3, -2, 1],-2),-1),11)),3)",
    "io_inp": [
      3,
      -3,
      -2,
      1
    ],
    "io_out": [
      -15,
      -3,
      15,
      21
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(sub_n(mul_n(input,-2),-1),11)),3)"
  },
  {
    "input": "input : list = [1, -2, -5]\noutput : list = [-5, -2, 1]",
    "output": "generated_output : list = sort_asc([1, -2, -5])",
    "io_inp": [
      1,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, 1, -2]\noutput : list = [-20, -4]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(take([0, 4, 1, -2],2),8)),-4),4)",
    "io_inp": [
      0,
      4,
      1,
      -2
    ],
    "io_out": [
      -20,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(take(input,2),8)),-4),4)"
  },
  {
    "input": "input : list = [-2, 2, 3]\noutput : list = [1, 5, 6]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n([-2, 2, 3],-3))))",
    "io_inp": [
      -2,
      2,
      3
    ],
    "io_out": [
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(input,-3))))"
  },
  {
    "input": "input : list = [1, 1, -1, -5, -1, 3]\noutput : list = [2, -2, -6, -2, 0, 0]",
    "output": "generated_output : list = reverse(sub_n(add_n([1, 1, -1, -5, -1, 3],3),4))",
    "io_inp": [
      1,
      1,
      -1,
      -5,
      -1,
      3
    ],
    "io_out": [
      2,
      -2,
      -6,
      -2,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(input,3),4))"
  },
  {
    "input": "input : list = [2, -4, -4, -5, -5]\noutput : list = [0, 0, -1, -1]",
    "output": "generated_output : list = sub_n(drop([2, -4, -4, -5, -5],1),-4)",
    "io_inp": [
      2,
      -4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [5, -1, 1]\noutput : list = [-1, 1, 5]",
    "output": "generated_output : list = sort_asc([5, -1, 1])",
    "io_inp": [
      5,
      -1,
      1
    ],
    "io_out": [
      -1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, 2, -1]\noutput : list = [-5, -3, -1, 2]",
    "output": "generated_output : list = sort_asc([-3, -5, 2, -1])",
    "io_inp": [
      -3,
      -5,
      2,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, 1, -5]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(drop([-1, -1, 1, -5],1),-1),-5)),6)",
    "io_inp": [
      -1,
      -1,
      1,
      -5
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(drop(input,1),-1),-5)),6)"
  },
  {
    "input": "input : list = [5, 4, -1, -1]\noutput : list = [-20, -17, -2, -2]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(sub_n([5, 4, -1, -1],-4),1),5),-3),5)",
    "io_inp": [
      5,
      4,
      -1,
      -1
    ],
    "io_out": [
      -20,
      -17,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(sub_n(input,-4),1),5),-3),5)"
  },
  {
    "input": "input : list = [3, 4, 0]\noutput : list = [2, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(take(reverse([3, 4, 0]),7)),-2))",
    "io_inp": [
      3,
      4,
      0
    ],
    "io_out": [
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(take(reverse(input),7)),-2))"
  },
  {
    "input": "input : list = [-5, 4, -5, 0, 1]\noutput : list = [12, 8, -12, 24, -12]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n([-5, 4, -5, 0, 1],-2)),4),23)",
    "io_inp": [
      -5,
      4,
      -5,
      0,
      1
    ],
    "io_out": [
      12,
      8,
      -12,
      24,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(input,-2)),4),23)"
  },
  {
    "input": "input : list = [0, 1, 3, 4]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 1, 3, 4],1)",
    "io_inp": [
      0,
      1,
      3,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, 5, 1, 4, 5]\noutput : list = [96, 96, 76, 16]",
    "output": "generated_output : list = add_n(sort_des(mul_n(mul_n(drop([-3, 5, 1, 4, 5],1),-5),-4)),-4)",
    "io_inp": [
      -3,
      5,
      1,
      4,
      5
    ],
    "io_out": [
      96,
      96,
      76,
      16
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(mul_n(drop(input,1),-5),-4)),-4)"
  },
  {
    "input": "input : list = [3, 2, -1, 2, -3, 4]\noutput : list = [4, 3, 2, 2, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(mul_n([3, 2, -1, 2, -3, 4],1)))))",
    "io_inp": [
      3,
      2,
      -1,
      2,
      -3,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [-4, 0, -3, 0]\noutput : list = [-4]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_asc(take([-4, 0, -3, 0],1)))),10)",
    "io_inp": [
      -4,
      0,
      -3,
      0
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_asc(take(input,1)))),10)"
  },
  {
    "input": "input : list = [4, 5, -3, -5, 0, -1]\noutput : list = [15, 16, 8, 6, 11, 10]",
    "output": "generated_output : list = take(add_n(take(add_n(add_n([4, 5, -3, -5, 0, -1],5),1),12),5),30)",
    "io_inp": [
      4,
      5,
      -3,
      -5,
      0,
      -1
    ],
    "io_out": [
      15,
      16,
      8,
      6,
      11,
      10
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(add_n(input,5),1),12),5),30)"
  },
  {
    "input": "input : list = [-2, 0, 2, 1, 0]\noutput : list = [-2, -3, -4, -4, -6]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n([-2, 0, 2, 1, 0],3))),5),-2)",
    "io_inp": [
      -2,
      0,
      2,
      1,
      0
    ],
    "io_out": [
      -2,
      -3,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(add_n(input,3))),5),-2)"
  },
  {
    "input": "input : list = [-2, -5, 5, 0, -3]\noutput : list = [1, -2]",
    "output": "generated_output : list = add_n(drop([-2, -5, 5, 0, -3],3),1)",
    "io_inp": [
      -2,
      -5,
      5,
      0,
      -3
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),1)"
  },
  {
    "input": "input : list = [-2, -1, 4, 0]\noutput : list = [6, 5, 4, 0]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(reverse([-2, -1, 4, 0])),4),-1))",
    "io_inp": [
      -2,
      -1,
      4,
      0
    ],
    "io_out": [
      6,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(reverse(input)),4),-1))"
  },
  {
    "input": "input : list = [-5, 2, 1, 0, -5, -3]\noutput : list = [12, 4]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sub_n(drop([-5, 2, 1, 0, -5, -3],4),-4),3),-4),-4)",
    "io_inp": [
      -5,
      2,
      1,
      0,
      -5,
      -3
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sub_n(drop(input,4),-4),3),-4),-4)"
  },
  {
    "input": "input : list = [0, 5, 0, 2, 2, 2]\noutput : list = [0, 0, 2, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([0, 5, 0, 2, 2, 2])))",
    "io_inp": [
      0,
      5,
      0,
      2,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      2,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-2, 4, 0, -1, 4, -2]\noutput : list = [2, 2, -2, -3, -4, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(add_n(reverse([-2, 4, 0, -1, 4, -2]),-2))))",
    "io_inp": [
      -2,
      4,
      0,
      -1,
      4,
      -2
    ],
    "io_out": [
      2,
      2,
      -2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(add_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [0, 3, -1, 2]\noutput : list = [-1, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(reverse([0, 3, -1, 2]),-4),-4))",
    "io_inp": [
      0,
      3,
      -1,
      2
    ],
    "io_out": [
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(reverse(input),-4),-4))"
  },
  {
    "input": "input : list = [1, 4, 2, -4, 5, -5]\noutput : list = [0, 1, 6, 7, 9, 10]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(sort_asc([1, 4, 2, -4, 5, -5]),-5))))",
    "io_inp": [
      1,
      4,
      2,
      -4,
      5,
      -5
    ],
    "io_out": [
      0,
      1,
      6,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(sort_asc(input),-5))))"
  },
  {
    "input": "input : list = [4, -1, 1, 0, 0, -1]\noutput : list = [0, -1]",
    "output": "generated_output : list = drop([4, -1, 1, 0, 0, -1],4)",
    "io_inp": [
      4,
      -1,
      1,
      0,
      0,
      -1
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,4)"
  },
  {
    "input": "input : list = [-3, -4, -4]\noutput : list = [-15, -20, -20]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(mul_n([-3, -4, -4],1),5))))",
    "io_inp": [
      -3,
      -4,
      -4
    ],
    "io_out": [
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(mul_n(mul_n(input,1),5))))"
  },
  {
    "input": "input : list = [-3, 0, 5, -5, 4, -3]\noutput : list = [34]",
    "output": "generated_output : list = sub_n(add_n(mul_n(mul_n(take([-3, 0, 5, -5, 4, -3],1),-3),4),1),3)",
    "io_inp": [
      -3,
      0,
      5,
      -5,
      4,
      -3
    ],
    "io_out": [
      34
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(mul_n(take(input,1),-3),4),1),3)"
  },
  {
    "input": "input : list = [0, -1, 0]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = sort_asc(take(sort_des([0, -1, 0]),12))",
    "io_inp": [
      0,
      -1,
      0
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(input),12))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [30, 45]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(sort_des([4, 3])),-1),-3),-5)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      30,
      45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(sort_des(input)),-1),-3),-5)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [0, 9]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([0, 3],-3),1),-1)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,-3),1),-1)"
  },
  {
    "input": "input : list = [2, 0, -1, -2, -5]\noutput : list = [-4, -1, 0, 1, 3]",
    "output": "generated_output : list = take(reverse(reverse(sort_asc(sub_n([2, 0, -1, -2, -5],-1)))),50)",
    "io_inp": [
      2,
      0,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_asc(sub_n(input,-1)))),50)"
  },
  {
    "input": "input : list = [-5, -3, -1, 5]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_des(drop([-5, -3, -1, 5],1))),-1),23)",
    "io_inp": [
      -5,
      -3,
      -1,
      5
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_des(drop(input,1))),-1),23)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sub_n([-1, -2],3)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, -3, 4, -2, 5, -4]\noutput : list = [-5]",
    "output": "generated_output : list = take([-5, -3, 4, -2, 5, -4],1)",
    "io_inp": [
      -5,
      -3,
      4,
      -2,
      5,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -3, 4]\noutput : list = [0, -9, -63]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(add_n([3, -3, 4],-4))),-3),-3)",
    "io_inp": [
      3,
      -3,
      4
    ],
    "io_out": [
      0,
      -9,
      -63
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(add_n(input,-4))),-3),-3)"
  },
  {
    "input": "input : list = [5, -5, -3, -4, -2, 2]\noutput : list = [0, -3, -7, -8, -9]",
    "output": "generated_output : list = mul_n(take(take(sub_n(sort_des([5, -5, -3, -4, -2, 2]),5),5),36),1)",
    "io_inp": [
      5,
      -5,
      -3,
      -4,
      -2,
      2
    ],
    "io_out": [
      0,
      -3,
      -7,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sub_n(sort_des(input),5),5),36),1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_des([3, -1]),-1),-2)))",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_des(input),-1),-2)))"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(reverse(reverse([-1, 0])),-2),3),1)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(reverse(reverse(input)),-2),3),1)"
  },
  {
    "input": "input : list = [1, -2, 2]\noutput : list = [-7, -4, -3]",
    "output": "generated_output : list = add_n(sort_asc([1, -2, 2]),-5)",
    "io_inp": [
      1,
      -2,
      2
    ],
    "io_out": [
      -7,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [3, 1, 5, -2, 0, -4]\noutput : list = [0, 2, 4, 5, 7, 9]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(sort_des([3, 1, 5, -2, 0, -4]))),17),-4)",
    "io_inp": [
      3,
      1,
      5,
      -2,
      0,
      -4
    ],
    "io_out": [
      0,
      2,
      4,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(sort_des(input))),17),-4)"
  },
  {
    "input": "input : list = [-5, 0, -4, -1, 4]\noutput : list = [-2, 3]",
    "output": "generated_output : list = drop(sub_n([-5, 0, -4, -1, 4],1),3)",
    "io_inp": [
      -5,
      0,
      -4,
      -1,
      4
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,1),3)"
  },
  {
    "input": "input : list = [1, 1, -5, -4, 3, -2]\noutput : list = [1, -5, -4, 3, -2]",
    "output": "generated_output : list = drop([1, 1, -5, -4, 3, -2],1)",
    "io_inp": [
      1,
      1,
      -5,
      -4,
      3,
      -2
    ],
    "io_out": [
      1,
      -5,
      -4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-5, -1]",
    "output": "generated_output : list = sort_asc([-1, -5])",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1, -4, 3]\noutput : list = [1, -4, 3]",
    "output": "generated_output : list = take(drop([2, 1, -4, 3],1),9)",
    "io_inp": [
      2,
      1,
      -4,
      3
    ],
    "io_out": [
      1,
      -4,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),9)"
  },
  {
    "input": "input : list = [3, 0, 4, -2, 2, 3]\noutput : list = [15, 10, -5]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take([3, 0, 4, -2, 2, 3],3)),1),5)",
    "io_inp": [
      3,
      0,
      4,
      -2,
      2,
      3
    ],
    "io_out": [
      15,
      10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(input,3)),1),5)"
  },
  {
    "input": "input : list = [-5, -5, 3, -2, -2, 3]\noutput : list = [-16, -16, -7, -7, 8, 8]",
    "output": "generated_output : list = take(sub_n(sort_asc(mul_n(sort_des([-5, -5, 3, -2, -2, 3]),3)),1),29)",
    "io_inp": [
      -5,
      -5,
      3,
      -2,
      -2,
      3
    ],
    "io_out": [
      -16,
      -16,
      -7,
      -7,
      8,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(mul_n(sort_des(input),3)),1),29)"
  },
  {
    "input": "input : list = [-1, 1, -3, 5]\noutput : list = [-7, 1]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(drop([-1, 1, -3, 5],2)),8),4))",
    "io_inp": [
      -1,
      1,
      -3,
      5
    ],
    "io_out": [
      -7,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(drop(input,2)),8),4))"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-5, -10]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(mul_n([1, 2],-5)))),43)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -5,
      -10
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(mul_n(input,-5)))),43)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [8, 0, 2]",
    "output": "generated_output : list = add_n(mul_n(reverse(add_n(reverse([4, -4, -2]),1)),1),3)",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      8,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(add_n(reverse(input),1)),1),3)"
  },
  {
    "input": "input : list = [2, 4, 2, 0, 4, -4]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take([2, 4, 2, 0, 4, -4],3)),-5),-5)",
    "io_inp": [
      2,
      4,
      2,
      0,
      4,
      -4
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(input,3)),-5),-5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-4, -32]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc([4, -3]),-4),-4))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -4,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(input),-4),-4))"
  },
  {
    "input": "input : list = [-4, 1, 4]\noutput : list = [11, 16, 19]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(add_n([-4, 1, 4],5),-5),17),-5))",
    "io_inp": [
      -4,
      1,
      4
    ],
    "io_out": [
      11,
      16,
      19
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(add_n(input,5),-5),17),-5))"
  },
  {
    "input": "input : list = [-4, 5, 0, -2]\noutput : list = [-2]",
    "output": "generated_output : list = take(sub_n(take(reverse(take([-4, 5, 0, -2],1)),12),-2),47)",
    "io_inp": [
      -4,
      5,
      0,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(take(input,1)),12),-2),47)"
  },
  {
    "input": "input : list = [4, 1, 2, -3]\noutput : list = [4, 2, 1, -3]",
    "output": "generated_output : list = sort_des([4, 1, 2, -3])",
    "io_inp": [
      4,
      1,
      2,
      -3
    ],
    "io_out": [
      4,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 5, 2, -1]\noutput : list = [6, 3, 2, 0]",
    "output": "generated_output : list = sub_n(sort_des(add_n(add_n(add_n([1, 5, 2, -1],-2),2),4)),3)",
    "io_inp": [
      1,
      5,
      2,
      -1
    ],
    "io_out": [
      6,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(add_n(add_n(input,-2),2),4)),3)"
  },
  {
    "input": "input : list = [-5, 0, -1]\noutput : list = [-8, -3, -4]",
    "output": "generated_output : list = add_n(sub_n([-5, 0, -1],4),1)",
    "io_inp": [
      -5,
      0,
      -1
    ],
    "io_out": [
      -8,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),1)"
  },
  {
    "input": "input : list = [5, -3, 5, -2, 5]\noutput : list = [-9, -9, -9, 5, 7]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(mul_n([5, -3, 5, -2, 5],-2))),1),-1)",
    "io_inp": [
      5,
      -3,
      5,
      -2,
      5
    ],
    "io_out": [
      -9,
      -9,
      -9,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(mul_n(input,-2))),1),-1)"
  },
  {
    "input": "input : list = [-2, -5, 4, -1, 2, -3]\noutput : list = [-20, -10, 5, 10, 15, 25]",
    "output": "generated_output : list = take(mul_n(sort_des(mul_n(mul_n([-2, -5, 4, -1, 2, -3],1),1)),-5),8)",
    "io_inp": [
      -2,
      -5,
      4,
      -1,
      2,
      -3
    ],
    "io_out": [
      -20,
      -10,
      5,
      10,
      15,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(mul_n(mul_n(input,1),1)),-5),8)"
  },
  {
    "input": "input : list = [5, -2, 3, 5, 5, 2]\noutput : list = [25, 25, 15, -10]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(take([5, -2, 3, 5, 5, 2],4),5)),-1),-1)",
    "io_inp": [
      5,
      -2,
      3,
      5,
      5,
      2
    ],
    "io_out": [
      25,
      25,
      15,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(take(input,4),5)),-1),-1)"
  },
  {
    "input": "input : list = [-3, 2, 3, -1]\noutput : list = [-9, 27, 18, -27]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(mul_n([-3, 2, 3, -1],-3),-3)),4),-4)",
    "io_inp": [
      -3,
      2,
      3,
      -1
    ],
    "io_out": [
      -9,
      27,
      18,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(mul_n(input,-3),-3)),4),-4)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [57, -3]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_asc(mul_n([0, -4],-3))),5),-3)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      57,
      -3
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_asc(mul_n(input,-3))),5),-3)"
  },
  {
    "input": "input : list = [5, -2, 0]\noutput : list = [7, 0, 2]",
    "output": "generated_output : list = sub_n([5, -2, 0],-2)",
    "io_inp": [
      5,
      -2,
      0
    ],
    "io_out": [
      7,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -2, 1]\noutput : list = [6, 3, 3]",
    "output": "generated_output : list = reverse(sub_n([-2, -2, 1],-5))",
    "io_inp": [
      -2,
      -2,
      1
    ],
    "io_out": [
      6,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [1, 2, 2, 0, -3]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(reverse(drop(sub_n(add_n([1, 2, 2, 0, -3],4),-3),4)),-3)",
    "io_inp": [
      1,
      2,
      2,
      0,
      -3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(drop(sub_n(add_n(input,4),-3),4)),-3)"
  },
  {
    "input": "input : list = [3, 4, -2]\noutput : list = [2, -3, -4]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_asc([3, 4, -2]),-1),-1),-1))",
    "io_inp": [
      3,
      4,
      -2
    ],
    "io_out": [
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_asc(input),-1),-1),-1))"
  },
  {
    "input": "input : list = [0, 4, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(sub_n([0, 4, -4],4),4),1)))",
    "io_inp": [
      0,
      4,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(sub_n(input,4),4),1)))"
  },
  {
    "input": "input : list = [3, 2, -5, -3]\noutput : list = [-2, -3, -8, -10]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc([3, 2, -5, -3]),1))),-4)",
    "io_inp": [
      3,
      2,
      -5,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sub_n(sort_asc(input),1))),-4)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-7, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(sub_n([-4, -3],-1)))),5)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(sub_n(input,-1)))),5)"
  },
  {
    "input": "input : list = [-3, 0, 5, 3, 4, 0]\noutput : list = [3, 4, 0]",
    "output": "generated_output : list = drop([-3, 0, 5, 3, 4, 0],3)",
    "io_inp": [
      -3,
      0,
      5,
      3,
      4,
      0
    ],
    "io_out": [
      3,
      4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [0, 3, -2, -2, 5, 4]\noutput : list = [-5, -5, -1, 5, 7, 9]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sort_des([0, 3, -2, -2, 5, 4]),2)),4),-3)",
    "io_inp": [
      0,
      3,
      -2,
      -2,
      5,
      4
    ],
    "io_out": [
      -5,
      -5,
      -1,
      5,
      7,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(mul_n(sort_des(input),2)),4),-3)"
  },
  {
    "input": "input : list = [1, -4, -4]\noutput : list = [-2, -2, 3]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(add_n([1, -4, -4],-2),-1),5)),41)",
    "io_inp": [
      1,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(add_n(input,-2),-1),5)),41)"
  },
  {
    "input": "input : list = [-4, -5, 4]\noutput : list = [-21, 19, 24]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(mul_n([-4, -5, 4],-5),17))),-1)",
    "io_inp": [
      -4,
      -5,
      4
    ],
    "io_out": [
      -21,
      19,
      24
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(mul_n(input,-5),17))),-1)"
  },
  {
    "input": "input : list = [-2, 0, -4, -4]\noutput : list = [-3, -3, -1, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n([-2, 0, -4, -4],-1)))",
    "io_inp": [
      -2,
      0,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [2, 3, 5]",
    "output": "generated_output : list = reverse([5, 3, 2])",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, -3, -4, -5]\noutput : list = [4, -1]",
    "output": "generated_output : list = take([4, -1, -3, -4, -5],2)",
    "io_inp": [
      4,
      -1,
      -3,
      -4,
      -5
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [-2, 3, 3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_asc([2, 2, -3]),-1))))",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [3, 1, -4, -1]\noutput : list = [3, 1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des([3, 1, -4, -1]))",
    "io_inp": [
      3,
      1,
      -4,
      -1
    ],
    "io_out": [
      3,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 5, -5, -2, 5, -4]\noutput : list = [-5, -4, -4, -2, 5, 5]",
    "output": "generated_output : list = sort_asc([-4, 5, -5, -2, 5, -4])",
    "io_inp": [
      -4,
      5,
      -5,
      -2,
      5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 0, 1, -1]\noutput : list = [-8, 0, 2, 4]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(mul_n([-5, 0, 1, -1],2)),2)),4)",
    "io_inp": [
      -5,
      0,
      1,
      -1
    ],
    "io_out": [
      -8,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sort_asc(mul_n(input,2)),2)),4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-15, 0]",
    "output": "generated_output : list = sort_asc(mul_n([3, 0],-5))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -15,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [-2, -2, -5, -4, 2]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(take([-2, -2, -5, -4, 2],2),1))))",
    "io_inp": [
      -2,
      -2,
      -5,
      -4,
      2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(take(input,2),1))))"
  },
  {
    "input": "input : list = [0, 0, 0, -5, 5]\noutput : list = [-22, -2, -2, -2, 18]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(add_n(sort_des([0, 0, 0, -5, 5]),-1),4),-2))",
    "io_inp": [
      0,
      0,
      0,
      -5,
      5
    ],
    "io_out": [
      -22,
      -2,
      -2,
      -2,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(add_n(sort_des(input),-1),4),-2))"
  },
  {
    "input": "input : list = [2, -2, 0, 0, 2]\noutput : list = [-10, -10, 0, 0, 10]",
    "output": "generated_output : list = take(sort_asc(mul_n([2, -2, 0, 0, 2],-5)),19)",
    "io_inp": [
      2,
      -2,
      0,
      0,
      2
    ],
    "io_out": [
      -10,
      -10,
      0,
      0,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-5)),19)"
  },
  {
    "input": "input : list = [5, -3, -5, -1, -1, 2]\noutput : list = [30, 15, 0, 0, -10, -20]",
    "output": "generated_output : list = sort_des(add_n(mul_n([5, -3, -5, -1, -1, 2],5),5))",
    "io_inp": [
      5,
      -3,
      -5,
      -1,
      -1,
      2
    ],
    "io_out": [
      30,
      15,
      0,
      0,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,5),5))"
  },
  {
    "input": "input : list = [-1, -4, -4, 3]\noutput : list = [-2, -8, -8, 6]",
    "output": "generated_output : list = take(mul_n(mul_n([-1, -4, -4, 3],-1),-2),5)",
    "io_inp": [
      -1,
      -4,
      -4,
      3
    ],
    "io_out": [
      -2,
      -8,
      -8,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(input,-1),-2),5)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_des(reverse([-5, -5])))))",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [4, -2, 5, 2, 2]\noutput : list = [0, 0, 3, -4, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(reverse(reverse([4, -2, 5, 2, 2]))),-4),-2)",
    "io_inp": [
      4,
      -2,
      5,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(reverse(reverse(input))),-4),-2)"
  },
  {
    "input": "input : list = [0, -5, -3, 3]\noutput : list = [27, 3, -5, 15]",
    "output": "generated_output : list = sub_n(reverse(add_n(mul_n(sub_n([0, -5, -3, 3],-2),4),3)),-4)",
    "io_inp": [
      0,
      -5,
      -3,
      3
    ],
    "io_out": [
      27,
      3,
      -5,
      15
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(mul_n(sub_n(input,-2),4),3)),-4)"
  },
  {
    "input": "input : list = [5, 4, 5, 5, 3]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n(reverse(add_n(drop(sub_n([5, 4, 5, 5, 3],-3),3),-1)),-4)",
    "io_inp": [
      5,
      4,
      5,
      5,
      3
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(drop(sub_n(input,-3),3),-1)),-4)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [7, 7]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take(sort_des([-4, -4]),5)),-3),-1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(sort_des(input),5)),-3),-1)"
  },
  {
    "input": "input : list = [3, 2, 1, 2, 4]\noutput : list = [4, 3, 2, 2, 1]",
    "output": "generated_output : list = sort_des(sort_asc([3, 2, 1, 2, 4]))",
    "io_inp": [
      3,
      2,
      1,
      2,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 2, 1, 1, -2]\noutput : list = [0, 2, 1]",
    "output": "generated_output : list = take([0, 2, 1, 1, -2],3)",
    "io_inp": [
      0,
      2,
      1,
      1,
      -2
    ],
    "io_out": [
      0,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, 1, -4]\noutput : list = [8, 8, -2]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc(mul_n([-4, 1, -4],-2)))),18)",
    "io_inp": [
      -4,
      1,
      -4
    ],
    "io_out": [
      8,
      8,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(mul_n(input,-2)))),18)"
  },
  {
    "input": "input : list = [-5, -1, -5, 1, 0]\noutput : list = [-15, 5, -25, -20]",
    "output": "generated_output : list = take(mul_n(add_n(take(drop([-5, -1, -5, 1, 0],1),22),4),-5),12)",
    "io_inp": [
      -5,
      -1,
      -5,
      1,
      0
    ],
    "io_out": [
      -15,
      5,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(take(drop(input,1),22),4),-5),12)"
  },
  {
    "input": "input : list = [-1, 2, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = drop([-1, 2, 3, -2],2)",
    "io_inp": [
      -1,
      2,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [5, -4, 0, -3, -2]\noutput : list = [-5, 4, 0, 3, 2]",
    "output": "generated_output : list = mul_n([5, -4, 0, -3, -2],-1)",
    "io_inp": [
      5,
      -4,
      0,
      -3,
      -2
    ],
    "io_out": [
      -5,
      4,
      0,
      3,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [1, 2, -5, 4, -1]\noutput : list = [-7, -10, 11, -16, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(add_n([1, 2, -5, 4, -1],2),-3),-2)))",
    "io_inp": [
      1,
      2,
      -5,
      4,
      -1
    ],
    "io_out": [
      -7,
      -10,
      11,
      -16,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(add_n(input,2),-3),-2)))"
  },
  {
    "input": "input : list = [-1, 5, 2, -1, 5, -3]\noutput : list = [-5, 25, 10, -5, 25, -15]",
    "output": "generated_output : list = take(take(mul_n([-1, 5, 2, -1, 5, -3],5),9),8)",
    "io_inp": [
      -1,
      5,
      2,
      -1,
      5,
      -3
    ],
    "io_out": [
      -5,
      25,
      10,
      -5,
      25,
      -15
    ],
    "output_masked": "generated_output : list = take(take(mul_n(input,5),9),8)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [-10, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_des([-2, 5])),5)))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      -10,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(sort_asc(sort_des(input)),5)))"
  },
  {
    "input": "input : list = [-5, 2, 4, -5, -2, -2]\noutput : list = [2, -5]",
    "output": "generated_output : list = take(sort_des(take([-5, 2, 4, -5, -2, -2],2)),6)",
    "io_inp": [
      -5,
      2,
      4,
      -5,
      -2,
      -2
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(take(input,2)),6)"
  },
  {
    "input": "input : list = [4, -2, -1, 5]\noutput : list = [4, 3, -2, -3]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sort_des([4, -2, -1, 5]))),1))",
    "io_inp": [
      4,
      -2,
      -1,
      5
    ],
    "io_out": [
      4,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(sort_des(input))),1))"
  },
  {
    "input": "input : list = [4, 0, -3, 1, 4]\noutput : list = [-1, -1, -4, -5, -8]",
    "output": "generated_output : list = take(sub_n(take(sort_des(sort_asc([4, 0, -3, 1, 4])),25),5),52)",
    "io_inp": [
      4,
      0,
      -3,
      1,
      4
    ],
    "io_out": [
      -1,
      -1,
      -4,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(sort_asc(input)),25),5),52)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [5, 2]",
    "output": "generated_output : list = mul_n([-5, -2],-1)",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_des([-5, -5])),1)),-2)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(sort_des(input)),1)),-2)"
  },
  {
    "input": "input : list = [5, 3, -3, -3, 1]\noutput : list = [-28, -20, -12, 4, 4]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_des([5, 3, -3, -3, 1]),1),-4),3),5)",
    "io_inp": [
      5,
      3,
      -3,
      -3,
      1
    ],
    "io_out": [
      -28,
      -20,
      -12,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(mul_n(sort_des(input),1),-4),3),5)"
  },
  {
    "input": "input : list = [4, 2, 5, 3, 4]\noutput : list = [11, 8, 14, 5, 11]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse([4, 2, 5, 3, 4]),3),2),-3)",
    "io_inp": [
      4,
      2,
      5,
      3,
      4
    ],
    "io_out": [
      11,
      8,
      14,
      5,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(input),3),2),-3)"
  },
  {
    "input": "input : list = [2, 3, 3, -4, -4, -3]\noutput : list = [0, -1, -1]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(drop([2, 3, 3, -4, -4, -3],3))),3),41)",
    "io_inp": [
      2,
      3,
      3,
      -4,
      -4,
      -3
    ],
    "io_out": [
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(drop(input,3))),3),41)"
  },
  {
    "input": "input : list = [1, -1, 5, -4, 1, 1]\noutput : list = [6]",
    "output": "generated_output : list = drop(sort_asc(sub_n([1, -1, 5, -4, 1, 1],-1)),5)",
    "io_inp": [
      1,
      -1,
      5,
      -4,
      1,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = drop(sort_asc(sub_n(input,-1)),5)"
  },
  {
    "input": "input : list = [4, -5, -1]\noutput : list = [3, -6, -2]",
    "output": "generated_output : list = take(add_n([4, -5, -1],-1),18)",
    "io_inp": [
      4,
      -5,
      -1
    ],
    "io_out": [
      3,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),18)"
  },
  {
    "input": "input : list = [-3, 1, 3, -3, -2]\noutput : list = [-15, 5, 15, -15, -10]",
    "output": "generated_output : list = mul_n([-3, 1, 3, -3, -2],5)",
    "io_inp": [
      -3,
      1,
      3,
      -3,
      -2
    ],
    "io_out": [
      -15,
      5,
      15,
      -15,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, 0, -2, 3]\noutput : list = [7, 4, 3, 2]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(add_n([-1, 0, -2, 3],4))),1))",
    "io_inp": [
      -1,
      0,
      -2,
      3
    ],
    "io_out": [
      7,
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(add_n(input,4))),1))"
  },
  {
    "input": "input : list = [-1, 0, -2, 5, 2, -3]\noutput : list = [16, 10, 6, 4, 2, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(add_n(sort_asc([-1, 0, -2, 5, 2, -3]),3)),2))",
    "io_inp": [
      -1,
      0,
      -2,
      5,
      2,
      -3
    ],
    "io_out": [
      16,
      10,
      6,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(add_n(sort_asc(input),3)),2))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sort_asc([2, -1])",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, -2, 1, -5, -2, -4]\noutput : list = [-5, -7]",
    "output": "generated_output : list = take(reverse(add_n(sort_asc(drop([0, -2, 1, -5, -2, -4],4)),-3)),55)",
    "io_inp": [
      0,
      -2,
      1,
      -5,
      -2,
      -4
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(sort_asc(drop(input,4)),-3)),55)"
  },
  {
    "input": "input : list = [-5, -2, 2]\noutput : list = [1, 4, 8]",
    "output": "generated_output : list = mul_n(take(add_n(sub_n(sort_asc([-5, -2, 2]),-4),2),18),1)",
    "io_inp": [
      -5,
      -2,
      2
    ],
    "io_out": [
      1,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sub_n(sort_asc(input),-4),2),18),1)"
  },
  {
    "input": "input : list = [-5, 2, -2, 0, -2]\noutput : list = [-5, -2, -2, 0, 2]",
    "output": "generated_output : list = sort_asc([-5, 2, -2, 0, -2])",
    "io_inp": [
      -5,
      2,
      -2,
      0,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -1, -3, 5, -3]\noutput : list = [-48, 48]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(drop([1, -1, -3, 5, -3],3),4),-4)),3)",
    "io_inp": [
      1,
      -1,
      -3,
      5,
      -3
    ],
    "io_out": [
      -48,
      48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(drop(input,3),4),-4)),3)"
  },
  {
    "input": "input : list = [-1, -2, 4, 1, 4]\noutput : list = [10, 6, -2, -14, -14]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc([-1, -2, 4, 1, 4]),-4)),2))",
    "io_inp": [
      -1,
      -2,
      4,
      1,
      4
    ],
    "io_out": [
      10,
      6,
      -2,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(sort_asc(input),-4)),2))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [-19, 21]",
    "output": "generated_output : list = add_n(mul_n(sub_n([5, -5],-1),-4),5)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      -19,
      21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,-1),-4),5)"
  },
  {
    "input": "input : list = [-4, -2, -2, 0, 3]\noutput : list = [-1, -4, -6, -6, -8]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(sort_des([-4, -2, -2, 0, 3]))),4),53)",
    "io_inp": [
      -4,
      -2,
      -2,
      0,
      3
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(sort_des(input))),4),53)"
  },
  {
    "input": "input : list = [2, -3, 4, -1]\noutput : list = [5, 0, 7, 2]",
    "output": "generated_output : list = sub_n([2, -3, 4, -1],-3)",
    "io_inp": [
      2,
      -3,
      4,
      -1
    ],
    "io_out": [
      5,
      0,
      7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-1, 4, -5]\noutput : list = [-12, 15]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(drop([-1, 4, -5],1)),-3))",
    "io_inp": [
      -1,
      4,
      -5
    ],
    "io_out": [
      -12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(drop(input,1)),-3))"
  },
  {
    "input": "input : list = [-3, 1, 0, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([-3, 1, 0, 4, -4],3)",
    "io_inp": [
      -3,
      1,
      0,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-2, 0, -3, -3]\noutput : list = [-2, -4, -5, -5]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(sort_des([-2, 0, -3, -3]),5))),3)",
    "io_inp": [
      -2,
      0,
      -3,
      -3
    ],
    "io_out": [
      -2,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(sort_des(input),5))),3)"
  },
  {
    "input": "input : list = [0, 4, 2, 0, -2, -5]\noutput : list = [-10, -7, -5, -5, -3, -1]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take(sort_des([0, 4, 2, 0, -2, -5]),6),5)),1)",
    "io_inp": [
      0,
      4,
      2,
      0,
      -2,
      -5
    ],
    "io_out": [
      -10,
      -7,
      -5,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(sort_des(input),6),5)),1)"
  },
  {
    "input": "input : list = [4, -4, -2, -5, 1]\noutput : list = [20, 5, -10, -20, -25]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(sort_des([4, -4, -2, -5, 1]),21))),5)",
    "io_inp": [
      4,
      -4,
      -2,
      -5,
      1
    ],
    "io_out": [
      20,
      5,
      -10,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(sort_des(input),21))),5)"
  },
  {
    "input": "input : list = [3, 1, -4, -4, 2]\noutput : list = [30, 10, -40, -40, 20]",
    "output": "generated_output : list = mul_n(mul_n([3, 1, -4, -4, 2],2),5)",
    "io_inp": [
      3,
      1,
      -4,
      -4,
      2
    ],
    "io_out": [
      30,
      10,
      -40,
      -40,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),5)"
  },
  {
    "input": "input : list = [0, -5, 1, 4, 4, -2]\noutput : list = [9, 6, 5, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take(take([0, -5, 1, 4, 4, -2],4),17))),-5)",
    "io_inp": [
      0,
      -5,
      1,
      4,
      4,
      -2
    ],
    "io_out": [
      9,
      6,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(take(input,4),17))),-5)"
  },
  {
    "input": "input : list = [3, -1, 3, -5, -2, 5]\noutput : list = [5, 3, 3, -1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(reverse([3, -1, 3, -5, -2, 5])))))",
    "io_inp": [
      3,
      -1,
      3,
      -5,
      -2,
      5
    ],
    "io_out": [
      5,
      3,
      3,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(reverse(input)))))"
  },
  {
    "input": "input : list = [-4, 0, 5, -2, 3, 5]\noutput : list = [-1, -3, -5, -8, -10, -10]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(sub_n([-4, 0, 5, -2, 3, 5],-3),-1),2),-4))",
    "io_inp": [
      -4,
      0,
      5,
      -2,
      3,
      5
    ],
    "io_out": [
      -1,
      -3,
      -5,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(sub_n(input,-3),-1),2),-4))"
  },
  {
    "input": "input : list = [-4, 4, -2, 5]\noutput : list = [-8, -4, 8, 10]",
    "output": "generated_output : list = reverse(take(reverse(mul_n(sort_asc([-4, 4, -2, 5]),2)),4))",
    "io_inp": [
      -4,
      4,
      -2,
      5
    ],
    "io_out": [
      -8,
      -4,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(mul_n(sort_asc(input),2)),4))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [1, 4]",
    "output": "generated_output : list = sub_n(sort_asc([2, 5]),1)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [0, 5, -3]\noutput : list = [-3, 0, 5]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc([0, 5, -3]),18),16))",
    "io_inp": [
      0,
      5,
      -3
    ],
    "io_out": [
      -3,
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(input),18),16))"
  },
  {
    "input": "input : list = [-5, 4, -5, 4]\noutput : list = [2, 2, -7, -7]",
    "output": "generated_output : list = take(sub_n(sort_des(add_n(sort_asc([-5, 4, -5, 4]),-3)),-1),34)",
    "io_inp": [
      -5,
      4,
      -5,
      4
    ],
    "io_out": [
      2,
      2,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(add_n(sort_asc(input),-3)),-1),34)"
  },
  {
    "input": "input : list = [-4, -4, -3, -1]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(drop([-4, -4, -3, -1],1))))",
    "io_inp": [
      -4,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(drop(input,1))))"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-9, -5]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(mul_n([5, 3],-2),2),-2)),1)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -9,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(mul_n(input,-2),2),-2)),1)"
  },
  {
    "input": "input : list = [-2, 5, -3, -4, 2, 1]\noutput : list = [-1, -2, 4, 3, -5, 2]",
    "output": "generated_output : list = mul_n(reverse([-2, 5, -3, -4, 2, 1]),-1)",
    "io_inp": [
      -2,
      5,
      -3,
      -4,
      2,
      1
    ],
    "io_out": [
      -1,
      -2,
      4,
      3,
      -5,
      2
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [4, -4, 2, -2]\noutput : list = [4, -4]",
    "output": "generated_output : list = take([4, -4, 2, -2],2)",
    "io_inp": [
      4,
      -4,
      2,
      -2
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -1, -3, 1, 2, 2]\noutput : list = [2, 2, 1, -3, -1]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(drop([-4, -1, -3, 1, 2, 2],1),5),-4)),4)",
    "io_inp": [
      -4,
      -1,
      -3,
      1,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(drop(input,1),5),-4)),4)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n([0, 1],-3)),3),2),-4)",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(reverse(sub_n(input,-3)),3),2),-4)"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [-20, 15, 25]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([4, -5, 2]),1),5)",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      -20,
      15,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),1),5)"
  },
  {
    "input": "input : list = [-2, -1, -5]\noutput : list = [-16, -4, 0]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse([-2, -1, -5])),4),37),-4)",
    "io_inp": [
      -2,
      -1,
      -5
    ],
    "io_out": [
      -16,
      -4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse(input)),4),37),-4)"
  },
  {
    "input": "input : list = [-3, 0, -3, -1]\noutput : list = [2, 5, 2, 4]",
    "output": "generated_output : list = add_n(reverse(take(reverse(mul_n([-3, 0, -3, -1],1)),30)),5)",
    "io_inp": [
      -3,
      0,
      -3,
      -1
    ],
    "io_out": [
      2,
      5,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(mul_n(input,1)),30)),5)"
  },
  {
    "input": "input : list = [-2, 2, -2]\noutput : list = [10, 2, 10]",
    "output": "generated_output : list = mul_n(sub_n([-2, 2, -2],3),-2)",
    "io_inp": [
      -2,
      2,
      -2
    ],
    "io_out": [
      10,
      2,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,3),-2)"
  },
  {
    "input": "input : list = [0, 4, 3]\noutput : list = [0, 3, 4]",
    "output": "generated_output : list = sort_asc([0, 4, 3])",
    "io_inp": [
      0,
      4,
      3
    ],
    "io_out": [
      0,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 0, -2, -1, -1]\noutput : list = [3, 0, -1, -1, -2]",
    "output": "generated_output : list = sort_des([3, 0, -2, -1, -1])",
    "io_inp": [
      3,
      0,
      -2,
      -1,
      -1
    ],
    "io_out": [
      3,
      0,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [0, -2]",
    "output": "generated_output : list = sub_n([-2, -4],-2)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-6, -4]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(reverse([-4, -5])),2)),2)",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(reverse(input)),2)),2)"
  },
  {
    "input": "input : list = [5, -5, 2, 5, 1, 2]\noutput : list = [-5, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take([5, -5, 2, 5, 1, 2],4))))",
    "io_inp": [
      5,
      -5,
      2,
      5,
      1,
      2
    ],
    "io_out": [
      -5,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(input,4))))"
  },
  {
    "input": "input : list = [-2, 2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = drop([-2, 2, 5],1)",
    "io_inp": [
      -2,
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-5, -5, 1, 4, -2, 4]\noutput : list = [4, 4, 1, -2, -5, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(add_n([-5, -5, 1, 4, -2, 4],3)),-3)))",
    "io_inp": [
      -5,
      -5,
      1,
      4,
      -2,
      4
    ],
    "io_out": [
      4,
      4,
      1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_asc(add_n(input,3)),-3)))"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(sub_n([-2, -3],-5),2)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-5),2)"
  },
  {
    "input": "input : list = [0, -5, 5, -5, 2]\noutput : list = [100, 100, 0, -100]",
    "output": "generated_output : list = sort_des(take(mul_n(take(mul_n([0, -5, 5, -5, 2],-5),4),4),17))",
    "io_inp": [
      0,
      -5,
      5,
      -5,
      2
    ],
    "io_out": [
      100,
      100,
      0,
      -100
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(mul_n(input,-5),4),4),17))"
  },
  {
    "input": "input : list = [4, -5, 5, -3, -4, 5]\noutput : list = [7, -2, -1, 7, -3, 6]",
    "output": "generated_output : list = reverse(add_n(reverse(take(reverse([4, -5, 5, -3, -4, 5]),28)),2))",
    "io_inp": [
      4,
      -5,
      5,
      -3,
      -4,
      5
    ],
    "io_out": [
      7,
      -2,
      -1,
      7,
      -3,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(reverse(input),28)),2))"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [-12]",
    "output": "generated_output : list = add_n(reverse(mul_n(sub_n(take([-4, -2, 3],1),4),2)),4)",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sub_n(take(input,1),4),2)),4)"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [-12]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(mul_n([2, 0, 3],-4)),1)))",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(mul_n(input,-4)),1)))"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-7, 17]",
    "output": "generated_output : list = sub_n(add_n(take(take(mul_n([-4, 2],4),5),16),5),-4)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -7,
      17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(take(mul_n(input,4),5),16),5),-4)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [10, 8]",
    "output": "generated_output : list = take(add_n(sub_n([5, 3],-4),1),8)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      10,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(input,-4),1),8)"
  },
  {
    "input": "input : list = [1, 2, -3, 2, -4]\noutput : list = [18, 18, 8, -32, -42]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(mul_n([1, 2, -3, 2, -4],-5),-2)),2))",
    "io_inp": [
      1,
      2,
      -3,
      2,
      -4
    ],
    "io_out": [
      18,
      18,
      8,
      -32,
      -42
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(mul_n(input,-5),-2)),2))"
  },
  {
    "input": "input : list = [-1, -5, -5, 4, 1, 0]\noutput : list = [1, -4]",
    "output": "generated_output : list = sub_n(mul_n(drop([-1, -5, -5, 4, 1, 0],4),5),4)",
    "io_inp": [
      -1,
      -5,
      -5,
      4,
      1,
      0
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(input,4),5),4)"
  },
  {
    "input": "input : list = [-4, -4, 1, 2]\noutput : list = [0, -1, -6, -6]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_des(reverse([-4, -4, 1, 2])))),-2)",
    "io_inp": [
      -4,
      -4,
      1,
      2
    ],
    "io_out": [
      0,
      -1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_des(reverse(input)))),-2)"
  },
  {
    "input": "input : list = [-5, -1, 1, -2]\noutput : list = [-6, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(sub_n([-5, -1, 1, -2],2),4)),1))",
    "io_inp": [
      -5,
      -1,
      1,
      -2
    ],
    "io_out": [
      -6,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(sub_n(input,2),4)),1))"
  },
  {
    "input": "input : list = [5, -1, 4, 3]\noutput : list = [16, 14]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(drop([5, -1, 4, 3],2),-2),2)),-4)",
    "io_inp": [
      5,
      -1,
      4,
      3
    ],
    "io_out": [
      16,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(drop(input,2),-2),2)),-4)"
  },
  {
    "input": "input : list = [4, 1, 5, 5, -1, 1]\noutput : list = [-5, -3, -3, 0, 1, 1]",
    "output": "generated_output : list = add_n(sort_asc([4, 1, 5, 5, -1, 1]),-4)",
    "io_inp": [
      4,
      1,
      5,
      5,
      -1,
      1
    ],
    "io_out": [
      -5,
      -3,
      -3,
      0,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-4)"
  },
  {
    "input": "input : list = [-3, -2, -1, -5, -3]\noutput : list = [-3, -5, -7, -7, -11]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(mul_n([-3, -2, -1, -5, -3],2)))),1)",
    "io_inp": [
      -3,
      -2,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      -7,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(mul_n(input,2)))),1)"
  },
  {
    "input": "input : list = [-3, 4, 5, 0, -3, -3]\noutput : list = [-7, -7, -16, -31, -28, -7]",
    "output": "generated_output : list = add_n(sub_n(reverse(mul_n(sub_n([-3, 4, 5, 0, -3, -3],-3),-3)),5),-2)",
    "io_inp": [
      -3,
      4,
      5,
      0,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -16,
      -31,
      -28,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(mul_n(sub_n(input,-3),-3)),5),-2)"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-6, -4]",
    "output": "generated_output : list = take(sub_n(reverse(take(mul_n([1, -1],1),8)),5),27)",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(mul_n(input,1),8)),5),27)"
  },
  {
    "input": "input : list = [3, -1, -4, 1]\noutput : list = [-2, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_asc(sub_n([3, -1, -4, 1],-4)),2),11))",
    "io_inp": [
      3,
      -1,
      -4,
      1
    ],
    "io_out": [
      -2,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_asc(sub_n(input,-4)),2),11))"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [7, 3]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sort_asc(reverse([3, -1])),3)),-1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sort_asc(reverse(input)),3)),-1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [7, 19]",
    "output": "generated_output : list = add_n(mul_n([-1, -5],-3),4)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      7,
      19
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),4)"
  },
  {
    "input": "input : list = [4, -1, -5, -5, -3]\noutput : list = [-1, -6, -8, -10, -10]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sort_des(sort_asc([4, -1, -5, -5, -3])),-5)))",
    "io_inp": [
      4,
      -1,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -1,
      -6,
      -8,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sort_des(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [2, 0, 1, -2]\noutput : list = [-1, -3, -2, -5]",
    "output": "generated_output : list = sub_n([2, 0, 1, -2],3)",
    "io_inp": [
      2,
      0,
      1,
      -2
    ],
    "io_out": [
      -1,
      -3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [3, -1]",
    "output": "generated_output : list = reverse([-1, 3])",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 5, -5]\noutput : list = [2, -7, -8]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(sort_asc([-4, 5, -5]),3))),41)",
    "io_inp": [
      -4,
      5,
      -5
    ],
    "io_out": [
      2,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(sort_asc(input),3))),41)"
  },
  {
    "input": "input : list = [-5, 4, -1, -1, 0]\noutput : list = [-10, -2, -2, 0, 8]",
    "output": "generated_output : list = mul_n(reverse(sort_des(mul_n(reverse([-5, 4, -1, -1, 0]),2))),1)",
    "io_inp": [
      -5,
      4,
      -1,
      -1,
      0
    ],
    "io_out": [
      -10,
      -2,
      -2,
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(mul_n(reverse(input),2))),1)"
  },
  {
    "input": "input : list = [-3, -5, -4, -5, -4]\noutput : list = [-2, -4, -3, -4, -3]",
    "output": "generated_output : list = sub_n([-3, -5, -4, -5, -4],-1)",
    "io_inp": [
      -3,
      -5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -2,
      -4,
      -3,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, -2, -1, 2]\noutput : list = [-4, 2, 4]",
    "output": "generated_output : list = take(mul_n(take(take(reverse([3, -2, -1, 2]),3),28),-2),40)",
    "io_inp": [
      3,
      -2,
      -1,
      2
    ],
    "io_out": [
      -4,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(reverse(input),3),28),-2),40)"
  },
  {
    "input": "input : list = [-4, 0, -1, -4, 2, -3]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = sort_asc(take([-4, 0, -1, -4, 2, -3],3))",
    "io_inp": [
      -4,
      0,
      -1,
      -4,
      2,
      -3
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [-5, 1, 3, 2, 0, -2]\noutput : list = [32, 8, 0, 4, 12, 20]",
    "output": "generated_output : list = mul_n(add_n([-5, 1, 3, 2, 0, -2],-3),-4)",
    "io_inp": [
      -5,
      1,
      3,
      2,
      0,
      -2
    ],
    "io_out": [
      32,
      8,
      0,
      4,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-3),-4)"
  },
  {
    "input": "input : list = [0, 1, 1, 3]\noutput : list = [-2, -1, -1, 1]",
    "output": "generated_output : list = reverse(sort_des(add_n([0, 1, 1, 3],-2)))",
    "io_inp": [
      0,
      1,
      1,
      3
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(input,-2)))"
  },
  {
    "input": "input : list = [0, -3, 2, 5]\noutput : list = [1, -2]",
    "output": "generated_output : list = sub_n(sub_n(take(take([0, -3, 2, 5],2),3),2),-3)",
    "io_inp": [
      0,
      -3,
      2,
      5
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(input,2),3),2),-3)"
  },
  {
    "input": "input : list = [0, 0, -2, 4, -1, 4]\noutput : list = [2, 3, 4, 4, 8, 8]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(reverse([0, 0, -2, 4, -1, 4])))),-4)",
    "io_inp": [
      0,
      0,
      -2,
      4,
      -1,
      4
    ],
    "io_out": [
      2,
      3,
      4,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(reverse(input)))),-4)"
  },
  {
    "input": "input : list = [-2, -5, 3]\noutput : list = [24, -16, -40]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc([-2, -5, 3])),4),2)",
    "io_inp": [
      -2,
      -5,
      3
    ],
    "io_out": [
      24,
      -16,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(input)),4),2)"
  },
  {
    "input": "input : list = [-4, -4, -4, 2, -4]\noutput : list = [0, -12, -12, -12, -12]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_des([-4, -4, -4, 2, -4]),2),4),4),4)",
    "io_inp": [
      -4,
      -4,
      -4,
      2,
      -4
    ],
    "io_out": [
      0,
      -12,
      -12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(sort_des(input),2),4),4),4)"
  },
  {
    "input": "input : list = [2, 0, 1, -5, -5]\noutput : list = [15, 10, 5, -20, -20]",
    "output": "generated_output : list = take(mul_n(sub_n(sort_des([2, 0, 1, -5, -5]),-1),5),27)",
    "io_inp": [
      2,
      0,
      1,
      -5,
      -5
    ],
    "io_out": [
      15,
      10,
      5,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sort_des(input),-1),5),27)"
  },
  {
    "input": "input : list = [5, 1, 1]\noutput : list = [25]",
    "output": "generated_output : list = mul_n(take([5, 1, 1],1),5)",
    "io_inp": [
      5,
      1,
      1
    ],
    "io_out": [
      25
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),5)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [10, 10]",
    "output": "generated_output : list = reverse(reverse(mul_n([-2, -2],-5)))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [20, -20]",
    "output": "generated_output : list = sort_des(reverse(mul_n(take(reverse([-4, 4]),9),-5)))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(take(reverse(input),9),-5)))"
  },
  {
    "input": "input : list = [5, -3, -5, 3, 0, 2]\noutput : list = [-3, -1, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(add_n(drop([5, -3, -5, 3, 0, 2],1),2))",
    "io_inp": [
      5,
      -3,
      -5,
      3,
      0,
      2
    ],
    "io_out": [
      -3,
      -1,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(drop(input,1),2))"
  },
  {
    "input": "input : list = [-5, 3, -4]\noutput : list = [0, 1, 8]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_des([-5, 3, -4]),-3),-2))",
    "io_inp": [
      -5,
      3,
      -4
    ],
    "io_out": [
      0,
      1,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_des(input),-3),-2))"
  },
  {
    "input": "input : list = [0, 5, 3, -4, -4, 0]\noutput : list = [2, 4, 7, 7, 11, 11]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des([0, 5, 3, -4, -4, 0]),-1),-2)),-5)",
    "io_inp": [
      0,
      5,
      3,
      -4,
      -4,
      0
    ],
    "io_out": [
      2,
      4,
      7,
      7,
      11,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sort_des(input),-1),-2)),-5)"
  },
  {
    "input": "input : list = [0, 4, 0, -4, 1, 4]\noutput : list = [-9, -5, -5, -4, -1, -1]",
    "output": "generated_output : list = sort_asc(take(sub_n(sort_des(add_n([0, 4, 0, -4, 1, 4],-2)),3),38))",
    "io_inp": [
      0,
      4,
      0,
      -4,
      1,
      4
    ],
    "io_out": [
      -9,
      -5,
      -5,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sort_des(add_n(input,-2)),3),38))"
  },
  {
    "input": "input : list = [1, -1, -5, -5]\noutput : list = [6, 4, 0, 0]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(sub_n([1, -1, -5, -5],-5),4))))",
    "io_inp": [
      1,
      -1,
      -5,
      -5
    ],
    "io_out": [
      6,
      4,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(sub_n(input,-5),4))))"
  },
  {
    "input": "input : list = [-3, 4, 0, 1]\noutput : list = [-2, -9]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_asc(take([-3, 4, 0, 1],2))),3),3)",
    "io_inp": [
      -3,
      4,
      0,
      1
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_asc(take(input,2))),3),3)"
  },
  {
    "input": "input : list = [5, -5, 2, 1]\noutput : list = [15, 12, 11, 5]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des([5, -5, 2, 1])),-5),5))",
    "io_inp": [
      5,
      -5,
      2,
      1
    ],
    "io_out": [
      15,
      12,
      11,
      5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_des(input)),-5),5))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-2, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n([-5, -1],-4)),-5))",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(input,-4)),-5))"
  },
  {
    "input": "input : list = [-4, -5, -1, -4, 0]\noutput : list = [0, 1, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse(sub_n([-4, -5, -1, -4, 0],-1))),-4))",
    "io_inp": [
      -4,
      -5,
      -1,
      -4,
      0
    ],
    "io_out": [
      0,
      1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(sub_n(input,-1))),-4))"
  },
  {
    "input": "input : list = [5, 4, 4, 1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = add_n(sort_asc(take([5, 4, 4, 1],2)),-5)",
    "io_inp": [
      5,
      4,
      4,
      1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(input,2)),-5)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n(reverse(take(reverse(sort_des([-4, -4])),5)),-1)",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(reverse(sort_des(input)),5)),-1)"
  },
  {
    "input": "input : list = [2, 1, 2, -3]\noutput : list = [2, 2, 1, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc([2, 1, 2, -3])))",
    "io_inp": [
      2,
      1,
      2,
      -3
    ],
    "io_out": [
      2,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [7, 19]",
    "output": "generated_output : list = take(reverse(sub_n(take(mul_n([-4, -1],-4),15),-3)),27)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      7,
      19
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(mul_n(input,-4),15),-3)),27)"
  },
  {
    "input": "input : list = [0, -5, 4, -4, -3]\noutput : list = [-6, -7, 1, -8, -3]",
    "output": "generated_output : list = reverse(sub_n([0, -5, 4, -4, -3],3))",
    "io_inp": [
      0,
      -5,
      4,
      -4,
      -3
    ],
    "io_out": [
      -6,
      -7,
      1,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,3))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [4, 1]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(mul_n([1, 4],-1)))),-1)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(mul_n(input,-1)))),-1)"
  },
  {
    "input": "input : list = [-2, -2, 0]\noutput : list = [-15, -15, -5]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n([-2, -2, 0],1),5))",
    "io_inp": [
      -2,
      -2,
      0
    ],
    "io_out": [
      -15,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(input,1),5))"
  },
  {
    "input": "input : list = [1, 2, -4, 1, 5, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(take([1, 2, -4, 1, 5, 0],2))),7),-5)",
    "io_inp": [
      1,
      2,
      -4,
      1,
      5,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(take(input,2))),7),-5)"
  },
  {
    "input": "input : list = [5, -1, -4, 4, -4]\noutput : list = [5, -67, -103, -7, -103]",
    "output": "generated_output : list = add_n(mul_n(mul_n(add_n(mul_n([5, -1, -4, 4, -4],-1),5),4),-3),5)",
    "io_inp": [
      5,
      -1,
      -4,
      4,
      -4
    ],
    "io_out": [
      5,
      -67,
      -103,
      -7,
      -103
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(add_n(mul_n(input,-1),5),4),-3),5)"
  },
  {
    "input": "input : list = [-5, 0, -1, 5]\noutput : list = [4, -2, -1, -6]",
    "output": "generated_output : list = take(sub_n(take(reverse(sub_n([-5, 0, -1, 5],-1)),25),2),16)",
    "io_inp": [
      -5,
      0,
      -1,
      5
    ],
    "io_out": [
      4,
      -2,
      -1,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(take(reverse(sub_n(input,-1)),25),2),16)"
  },
  {
    "input": "input : list = [1, -2, -2]\noutput : list = [-2, -11, -11]",
    "output": "generated_output : list = sub_n(take(mul_n([1, -2, -2],3),3),5)",
    "io_inp": [
      1,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(input,3),3),5)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-2, -8]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_asc([-4, 2])),1),-2),-1)",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(sort_asc(input)),1),-2),-1)"
  },
  {
    "input": "input : list = [-2, 3, -1, -5]\noutput : list = [12, -4, -8, -20]",
    "output": "generated_output : list = sort_des(mul_n([-2, 3, -1, -5],4))",
    "io_inp": [
      -2,
      3,
      -1,
      -5
    ],
    "io_out": [
      12,
      -4,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [1, -2, 3, -3, 1]\noutput : list = [-3, 1]",
    "output": "generated_output : list = drop([1, -2, 3, -3, 1],3)",
    "io_inp": [
      1,
      -2,
      3,
      -3,
      1
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 2, 3, -1, 3, 4]\noutput : list = [10, 9, 9, 8, 5, 1]",
    "output": "generated_output : list = add_n(reverse(add_n(take(sort_asc([-5, 2, 3, -1, 3, 4]),13),3)),3)",
    "io_inp": [
      -5,
      2,
      3,
      -1,
      3,
      4
    ],
    "io_out": [
      10,
      9,
      9,
      8,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(take(sort_asc(input),13),3)),3)"
  },
  {
    "input": "input : list = [-1, 4, 3, 4]\noutput : list = [3, 3, 1, -7]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(mul_n([-1, 4, 3, 4],2))),1),-5)",
    "io_inp": [
      -1,
      4,
      3,
      4
    ],
    "io_out": [
      3,
      3,
      1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(mul_n(input,2))),1),-5)"
  },
  {
    "input": "input : list = [-3, -4, -1, -5, -3]\noutput : list = [-4, -3, -2, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc([-3, -4, -1, -5, -3]),1)",
    "io_inp": [
      -3,
      -4,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [4, -2, -2, 3, 4]\noutput : list = [1, 7]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(take([4, -2, -2, 3, 4],2)),1)),-3)",
    "io_inp": [
      4,
      -2,
      -2,
      3,
      4
    ],
    "io_out": [
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_des(take(input,2)),1)),-3)"
  },
  {
    "input": "input : list = [-3, 1, -2, 2]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(take([-3, 1, -2, 2],1))",
    "io_inp": [
      -3,
      1,
      -2,
      2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, -5, 1]\noutput : list = [10, -80]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(drop([-5, -5, 1],1)),3),-1),5)",
    "io_inp": [
      -5,
      -5,
      1
    ],
    "io_out": [
      10,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(drop(input,1)),3),-1),5)"
  },
  {
    "input": "input : list = [-5, 0, 2, 3, -5]\noutput : list = [-16, 8]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(drop([-5, 0, 2, 3, -5],3)),3),1),-2)",
    "io_inp": [
      -5,
      0,
      2,
      3,
      -5
    ],
    "io_out": [
      -16,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(drop(input,3)),3),1),-2)"
  },
  {
    "input": "input : list = [1, 1, -5, -3, 0]\noutput : list = [-5, -8]",
    "output": "generated_output : list = sort_des(sort_asc(drop(add_n(drop([1, 1, -5, -3, 0],2),-5),1)))",
    "io_inp": [
      1,
      1,
      -5,
      -3,
      0
    ],
    "io_out": [
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(add_n(drop(input,2),-5),1)))"
  },
  {
    "input": "input : list = [-3, -4, -2, 3, -1, -1]\noutput : list = [-9, -8, -7, -6, -6, -2]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_asc([-3, -4, -2, 3, -1, -1])),5),1))",
    "io_inp": [
      -3,
      -4,
      -2,
      3,
      -1,
      -1
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sort_des(sort_asc(input)),5),1))"
  },
  {
    "input": "input : list = [3, 1, -4]\noutput : list = [-1, 4, 6]",
    "output": "generated_output : list = reverse(sub_n([3, 1, -4],-3))",
    "io_inp": [
      3,
      1,
      -4
    ],
    "io_out": [
      -1,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-4, -5, -1, -5, 4, -5]\noutput : list = [-5, -5, -5, -4, -1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(reverse(mul_n([-4, -5, -1, -5, 4, -5],1)))))",
    "io_inp": [
      -4,
      -5,
      -1,
      -5,
      4,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -4,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(reverse(mul_n(input,1)))))"
  },
  {
    "input": "input : list = [2, -5, -3, 5, -4, 2]\noutput : list = [1, 31, -14, 26, 36, 1]",
    "output": "generated_output : list = take(sub_n(reverse(mul_n(add_n([2, -5, -3, 5, -4, 2],-3),-5)),4),53)",
    "io_inp": [
      2,
      -5,
      -3,
      5,
      -4,
      2
    ],
    "io_out": [
      1,
      31,
      -14,
      26,
      36,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(mul_n(add_n(input,-3),-5)),4),53)"
  },
  {
    "input": "input : list = [-1, 5, 0]\noutput : list = [-3, -15, -5]",
    "output": "generated_output : list = add_n(add_n(add_n(sub_n(mul_n([-1, 5, 0],-2),2),-4),4),-3)",
    "io_inp": [
      -1,
      5,
      0
    ],
    "io_out": [
      -3,
      -15,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sub_n(mul_n(input,-2),2),-4),4),-3)"
  },
  {
    "input": "input : list = [-4, -1, -2, -3, -5, 3]\noutput : list = [-3, -1, 0]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(take([-4, -1, -2, -3, -5, 3],3),-3),2),-2))",
    "io_inp": [
      -4,
      -1,
      -2,
      -3,
      -5,
      3
    ],
    "io_out": [
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(take(input,3),-3),2),-2))"
  },
  {
    "input": "input : list = [-1, 4, 2, 4]\noutput : list = [-3, 6, 12, 12]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n([-1, 4, 2, 4],3)))",
    "io_inp": [
      -1,
      4,
      2,
      4
    ],
    "io_out": [
      -3,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(input,3)))"
  },
  {
    "input": "input : list = [-2, -3, 0]\noutput : list = [2]",
    "output": "generated_output : list = add_n(take([-2, -3, 0],1),4)",
    "io_inp": [
      -2,
      -3,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),4)"
  },
  {
    "input": "input : list = [3, 1, 2, 3, -1, -2]\noutput : list = [7, 5, 6, 7, 3, 2]",
    "output": "generated_output : list = add_n([3, 1, 2, 3, -1, -2],4)",
    "io_inp": [
      3,
      1,
      2,
      3,
      -1,
      -2
    ],
    "io_out": [
      7,
      5,
      6,
      7,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [2, -3, 4, -2, -4, -2]\noutput : list = [-16, -8, 8, 8, 12, 16]",
    "output": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_des([2, -3, 4, -2, -4, -2]),-3),-5),-2),-4)",
    "io_inp": [
      2,
      -3,
      4,
      -2,
      -4,
      -2
    ],
    "io_out": [
      -16,
      -8,
      8,
      8,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(add_n(sort_des(input),-3),-5),-2),-4)"
  },
  {
    "input": "input : list = [5, 0, 0, -3]\noutput : list = [-10, -7, -7, -2]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(add_n([5, 0, 0, -3],-4))),1),2)",
    "io_inp": [
      5,
      0,
      0,
      -3
    ],
    "io_out": [
      -10,
      -7,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_des(add_n(input,-4))),1),2)"
  },
  {
    "input": "input : list = [1, -3, 3, 5, -4]\noutput : list = [-6, 0, 2, -7]",
    "output": "generated_output : list = sub_n(drop([1, -3, 3, 5, -4],1),3)",
    "io_inp": [
      1,
      -3,
      3,
      5,
      -4
    ],
    "io_out": [
      -6,
      0,
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [-1, 5, 0, 5, -2]\noutput : list = [5, -13, 2, -13, 8]",
    "output": "generated_output : list = sub_n(mul_n([-1, 5, 0, 5, -2],-3),-2)",
    "io_inp": [
      -1,
      5,
      0,
      5,
      -2
    ],
    "io_out": [
      5,
      -13,
      2,
      -13,
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),-2)"
  },
  {
    "input": "input : list = [2, 2, -2, 5]\noutput : list = [5, -2, 2, 2]",
    "output": "generated_output : list = sub_n(reverse(sub_n([2, 2, -2, 5],-5)),5)",
    "io_inp": [
      2,
      2,
      -2,
      5
    ],
    "io_out": [
      5,
      -2,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(input,-5)),5)"
  },
  {
    "input": "input : list = [-2, -3, 4]\noutput : list = [-6, 1]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_asc(drop([-2, -3, 4],1))),-3))",
    "io_inp": [
      -2,
      -3,
      4
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_asc(drop(input,1))),-3))"
  },
  {
    "input": "input : list = [0, 0, 5, 3]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(take([0, 0, 5, 3],2)))",
    "io_inp": [
      0,
      0,
      5,
      3
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [-3, 2, 5, 1, -3]\noutput : list = [30, -10, -50]",
    "output": "generated_output : list = mul_n(mul_n(reverse(drop([-3, 2, 5, 1, -3],2)),2),-5)",
    "io_inp": [
      -3,
      2,
      5,
      1,
      -3
    ],
    "io_out": [
      30,
      -10,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(drop(input,2)),2),-5)"
  },
  {
    "input": "input : list = [3, 3, 5]\noutput : list = [-12, -12, -20]",
    "output": "generated_output : list = mul_n(take(sort_asc([3, 3, 5]),8),-4)",
    "io_inp": [
      3,
      3,
      5
    ],
    "io_out": [
      -12,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(input),8),-4)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [-2, -4]",
    "output": "generated_output : list = add_n([2, 0],-4)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc(add_n([-1, 1],-4))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-4))"
  },
  {
    "input": "input : list = [-5, 2, 2, 5]\noutput : list = [0, 6, 6, 20]",
    "output": "generated_output : list = take(mul_n(sort_des(add_n(sort_des([-5, 2, 2, 5]),-5)),-2),26)",
    "io_inp": [
      -5,
      2,
      2,
      5
    ],
    "io_out": [
      0,
      6,
      6,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(add_n(sort_des(input),-5)),-2),26)"
  },
  {
    "input": "input : list = [5, 2, -2, 1, -1]\noutput : list = [-2]",
    "output": "generated_output : list = take(drop(sort_des(sort_asc([5, 2, -2, 1, -1])),4),9)",
    "io_inp": [
      5,
      2,
      -2,
      1,
      -1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(drop(sort_des(sort_asc(input)),4),9)"
  },
  {
    "input": "input : list = [-3, -2, -5]\noutput : list = [-3, -2, -5]",
    "output": "generated_output : list = mul_n(add_n(sub_n([-3, -2, -5],-2),-2),1)",
    "io_inp": [
      -3,
      -2,
      -5
    ],
    "io_out": [
      -3,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,-2),-2),1)"
  },
  {
    "input": "input : list = [-4, -3, -4]\noutput : list = [-5, -4, -5]",
    "output": "generated_output : list = take(add_n([-4, -3, -4],-1),9)",
    "io_inp": [
      -4,
      -3,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(input,-1),9)"
  },
  {
    "input": "input : list = [1, 4, 0, -2, -4, 1]\noutput : list = [-25, -35, -45, -50, -50, -65]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(add_n([1, 4, 0, -2, -4, 1],2),-4),-3)),-5)",
    "io_inp": [
      1,
      4,
      0,
      -2,
      -4,
      1
    ],
    "io_out": [
      -25,
      -35,
      -45,
      -50,
      -50,
      -65
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(add_n(input,2),-4),-3)),-5)"
  },
  {
    "input": "input : list = [-1, -2, 0, 5, -3, 4]\noutput : list = [-35]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(take([-1, -2, 0, 5, -3, 4],1)),4),2),5)",
    "io_inp": [
      -1,
      -2,
      0,
      5,
      -3,
      4
    ],
    "io_out": [
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(take(input,1)),4),2),5)"
  },
  {
    "input": "input : list = [1, -1, -1, -3, 1, 1]\noutput : list = [6, 2, 2, -2, -2, -2]",
    "output": "generated_output : list = sort_des(take(take(reverse(mul_n([1, -1, -1, -3, 1, 1],-2)),38),22))",
    "io_inp": [
      1,
      -1,
      -1,
      -3,
      1,
      1
    ],
    "io_out": [
      6,
      2,
      2,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(mul_n(input,-2)),38),22))"
  },
  {
    "input": "input : list = [0, -4, 2, -1, -1, 3]\noutput : list = [0, -16]",
    "output": "generated_output : list = mul_n(sort_des(take([0, -4, 2, -1, -1, 3],2)),4)",
    "io_inp": [
      0,
      -4,
      2,
      -1,
      -1,
      3
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(input,2)),4)"
  },
  {
    "input": "input : list = [3, 0, 3, 0, 4, 3]\noutput : list = [3, 2, 2, 2, -1, -1]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(take(sub_n([3, 0, 3, 0, 4, 3],2),24),1)))",
    "io_inp": [
      3,
      0,
      3,
      0,
      4,
      3
    ],
    "io_out": [
      3,
      2,
      2,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(take(sub_n(input,2),24),1)))"
  },
  {
    "input": "input : list = [4, -2, 3, -5]\noutput : list = [16, 4, -16, -20]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n(reverse([4, -2, 3, -5]),-4)),25),4)",
    "io_inp": [
      4,
      -2,
      3,
      -5
    ],
    "io_out": [
      16,
      4,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(reverse(input),-4)),25),4)"
  },
  {
    "input": "input : list = [1, 2, 5, 2]\noutput : list = [-40, -45, -45, -60]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(add_n([1, 2, 5, 2],3),4)),-5),1)",
    "io_inp": [
      1,
      2,
      5,
      2
    ],
    "io_out": [
      -40,
      -45,
      -45,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(add_n(input,3),4)),-5),1)"
  },
  {
    "input": "input : list = [-2, 0, -4, 1]\noutput : list = [3, 5, 1]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n(sub_n([-2, 0, -4, 1],1),1),3),2),-5)",
    "io_inp": [
      -2,
      0,
      -4,
      1
    ],
    "io_out": [
      3,
      5,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(sub_n(input,1),1),3),2),-5)"
  },
  {
    "input": "input : list = [5, -4, -3, 4, -1, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(take([5, -4, -3, 4, -1, -5],2)),-1),9))",
    "io_inp": [
      5,
      -4,
      -3,
      4,
      -1,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(take(input,2)),-1),9))"
  },
  {
    "input": "input : list = [-5, -3, 4, 5, -4, -5]\noutput : list = [-40, -36, -8, -4, 0, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n([-5, -3, 4, 5, -4, -5],-5)),-4))",
    "io_inp": [
      -5,
      -3,
      4,
      5,
      -4,
      -5
    ],
    "io_out": [
      -40,
      -36,
      -8,
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(input,-5)),-4))"
  },
  {
    "input": "input : list = [-5, -3, -4, 5]\noutput : list = [-1, -9, -10, -11]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse([-5, -3, -4, 5]),-2),-4))",
    "io_inp": [
      -5,
      -3,
      -4,
      5
    ],
    "io_out": [
      -1,
      -9,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(input),-2),-4))"
  },
  {
    "input": "input : list = [-1, 2, 4, -3, 0, 2]\noutput : list = [-8, -2, 1, 7, 7, 13]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take(mul_n([-1, 2, 4, -3, 0, 2],3),11)),-1))",
    "io_inp": [
      -1,
      2,
      4,
      -3,
      0,
      2
    ],
    "io_out": [
      -8,
      -2,
      1,
      7,
      7,
      13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(mul_n(input,3),11)),-1))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = reverse([-4, 4])",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -3, 2, 3]\noutput : list = [-7, -7, -2, -1]",
    "output": "generated_output : list = take(sub_n(take(sort_asc([-3, -3, 2, 3]),11),4),8)",
    "io_inp": [
      -3,
      -3,
      2,
      3
    ],
    "io_out": [
      -7,
      -7,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_asc(input),11),4),8)"
  },
  {
    "input": "input : list = [4, 4, 1, -1]\noutput : list = [0, 0, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(add_n([4, 4, 1, -1],-4)))",
    "io_inp": [
      4,
      4,
      1,
      -1
    ],
    "io_out": [
      0,
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,-4)))"
  },
  {
    "input": "input : list = [-5, -2, -4, 4, -2]\noutput : list = [-15, 3, 3, 9, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(mul_n([-5, -2, -4, 4, -2],-1)),1)),3)",
    "io_inp": [
      -5,
      -2,
      -4,
      4,
      -2
    ],
    "io_out": [
      -15,
      3,
      3,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(mul_n(input,-1)),1)),3)"
  },
  {
    "input": "input : list = [2, -4, 4, 3]\noutput : list = [-4, 2, 3, 4]",
    "output": "generated_output : list = reverse(sort_des(reverse([2, -4, 4, 3])))",
    "io_inp": [
      2,
      -4,
      4,
      3
    ],
    "io_out": [
      -4,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [1, 4, 4, 0, 4, -4]\noutput : list = [-20, 0, 5, 20, 20, 20]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n([1, 4, 4, 0, 4, -4],5))))",
    "io_inp": [
      1,
      4,
      4,
      0,
      4,
      -4
    ],
    "io_out": [
      -20,
      0,
      5,
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(input,5))))"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [80, -60]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(drop([-4, -4, 3],1),5),-4),15),1)",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      80,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(drop(input,1),5),-4),15),1)"
  },
  {
    "input": "input : list = [-2, 5, -1, 5, -3]\noutput : list = [2, 2, -4, -5, -6]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_des([-2, 5, -1, 5, -3])),3)))",
    "io_inp": [
      -2,
      5,
      -1,
      5,
      -3
    ],
    "io_out": [
      2,
      2,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(reverse(sort_des(input)),3)))"
  },
  {
    "input": "input : list = [-3, 4, 1, -2]\noutput : list = [-3, -2, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([-3, 4, 1, -2])))",
    "io_inp": [
      -3,
      4,
      1,
      -2
    ],
    "io_out": [
      -3,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [0, 5, 0, -5, -2, 2]\noutput : list = [0, 3, 5, 5, 7, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse([0, 5, 0, -5, -2, 2]),4))),-1)",
    "io_inp": [
      0,
      5,
      0,
      -5,
      -2,
      2
    ],
    "io_out": [
      0,
      3,
      5,
      5,
      7,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(reverse(input),4))),-1)"
  },
  {
    "input": "input : list = [0, 3, 0, 4, 1]\noutput : list = [0, 12, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(take(take([0, 3, 0, 4, 1],3),12),-4),-1),19)",
    "io_inp": [
      0,
      3,
      0,
      4,
      1
    ],
    "io_out": [
      0,
      12,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(take(take(input,3),12),-4),-1),19)"
  },
  {
    "input": "input : list = [1, -2, 4, 0, 3]\noutput : list = [-2, 4, 0, 3]",
    "output": "generated_output : list = take(drop([1, -2, 4, 0, 3],1),14)",
    "io_inp": [
      1,
      -2,
      4,
      0,
      3
    ],
    "io_out": [
      -2,
      4,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(drop(input,1),14)"
  },
  {
    "input": "input : list = [-4, 2, 2]\noutput : list = [-9, -3, -3]",
    "output": "generated_output : list = sub_n([-4, 2, 2],5)",
    "io_inp": [
      -4,
      2,
      2
    ],
    "io_out": [
      -9,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [4, 0, 3, -2]\noutput : list = [-2, 3, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, 3, -2])",
    "io_inp": [
      4,
      0,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, 3, -4, 1]\noutput : list = [2, 1, -3, -5, -6]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_asc([4, -3, 3, -4, 1])),-1)),-2)",
    "io_inp": [
      4,
      -3,
      3,
      -4,
      1
    ],
    "io_out": [
      2,
      1,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_asc(input)),-1)),-2)"
  },
  {
    "input": "input : list = [3, 3, 3]\noutput : list = [5, 5, 5]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_des([3, 3, 3]),-2),-5),1),-5)",
    "io_inp": [
      3,
      3,
      3
    ],
    "io_out": [
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(mul_n(sort_des(input),-2),-5),1),-5)"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [4, -2, -8]",
    "output": "generated_output : list = mul_n(mul_n(take(sort_des(sub_n([5, 2, -1],3)),21),-2),-1)",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      4,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sort_des(sub_n(input,3)),21),-2),-1)"
  },
  {
    "input": "input : list = [-4, -5, 1, -1, 5, -2]\noutput : list = [0, -16]",
    "output": "generated_output : list = drop(mul_n(reverse(sort_des(sub_n([-4, -5, 1, -1, 5, -2],1))),-4),4)",
    "io_inp": [
      -4,
      -5,
      1,
      -1,
      5,
      -2
    ],
    "io_out": [
      0,
      -16
    ],
    "output_masked": "generated_output : list = drop(mul_n(reverse(sort_des(sub_n(input,1))),-4),4)"
  },
  {
    "input": "input : list = [4, 3, -3, 3, 0]\noutput : list = [9, 8, 2, 8, 5]",
    "output": "generated_output : list = sub_n([4, 3, -3, 3, 0],-5)",
    "io_inp": [
      4,
      3,
      -3,
      3,
      0
    ],
    "io_out": [
      9,
      8,
      2,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -5, 5, 4]\noutput : list = [-3, 5, 6, 7]",
    "output": "generated_output : list = sort_asc(add_n(add_n([3, -5, 5, 4],5),-3))",
    "io_inp": [
      3,
      -5,
      5,
      4
    ],
    "io_out": [
      -3,
      5,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(input,5),-3))"
  },
  {
    "input": "input : list = [5, -3, -4, 0]\noutput : list = [30, -10]",
    "output": "generated_output : list = take(add_n(mul_n(take(take([5, -3, -4, 0],2),18),5),5),19)",
    "io_inp": [
      5,
      -3,
      -4,
      0
    ],
    "io_out": [
      30,
      -10
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(take(take(input,2),18),5),5),19)"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [6, 0, -2]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(add_n([-3, -1, 5],-2),3))))",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      6,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(add_n(input,-2),3))))"
  },
  {
    "input": "input : list = [-5, -5, 4]\noutput : list = [18, 18, -9]",
    "output": "generated_output : list = mul_n(take(take(add_n([-5, -5, 4],-1),19),24),-3)",
    "io_inp": [
      -5,
      -5,
      4
    ],
    "io_out": [
      18,
      18,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(take(add_n(input,-1),19),24),-3)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(sort_asc([-1, -3])))),38)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(sort_asc(input)))),38)"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [10, -15]",
    "output": "generated_output : list = sort_des(take(mul_n(take(drop([3, -3, 2],1),7),5),18))",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      10,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(drop(input,1),7),5),18))"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(take([1, -5, 5],1)),-3))",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(take(input,1)),-3))"
  },
  {
    "input": "input : list = [-1, -5, -4]\noutput : list = [-1, 0, 3]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sub_n([-1, -5, -4],-3),-1)),-1),-1)",
    "io_inp": [
      -1,
      -5,
      -4
    ],
    "io_out": [
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sub_n(sub_n(input,-3),-1)),-1),-1)"
  },
  {
    "input": "input : list = [4, 3, -2, -5]\noutput : list = [-12, -9, -4, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc([4, 3, -2, -5]),-2),5)",
    "io_inp": [
      4,
      3,
      -2,
      -5
    ],
    "io_out": [
      -12,
      -9,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(input),-2),5)"
  },
  {
    "input": "input : list = [5, 5, 5, 1]\noutput : list = [-2, -2, -2, -18]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n([5, 5, 5, 1],5),4),25),-2)",
    "io_inp": [
      5,
      5,
      5,
      1
    ],
    "io_out": [
      -2,
      -2,
      -2,
      -18
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(input,5),4),25),-2)"
  },
  {
    "input": "input : list = [2, 4, 1, 1, -1]\noutput : list = [1, -1, -1]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_des(drop([2, 4, 1, 1, -1],2))),-1))",
    "io_inp": [
      2,
      4,
      1,
      1,
      -1
    ],
    "io_out": [
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_des(drop(input,2))),-1))"
  },
  {
    "input": "input : list = [2, 0, 3, 1, 4]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take(sort_asc([2, 0, 3, 1, 4]),2)),-1),2)",
    "io_inp": [
      2,
      0,
      3,
      1,
      4
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(sort_asc(input),2)),-1),2)"
  },
  {
    "input": "input : list = [1, 2, -5, -2]\noutput : list = [-1, 0, -7, -4]",
    "output": "generated_output : list = sub_n([1, 2, -5, -2],2)",
    "io_inp": [
      1,
      2,
      -5,
      -2
    ],
    "io_out": [
      -1,
      0,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, -3, 3, 1, 3]\noutput : list = [-3, 1, 2, 3, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(reverse(sort_des([2, -3, 3, 1, 3])))))",
    "io_inp": [
      2,
      -3,
      3,
      1,
      3
    ],
    "io_out": [
      -3,
      1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 1, 1]\noutput : list = [2, -1, -1]",
    "output": "generated_output : list = take(mul_n([-2, 1, 1],-1),8)",
    "io_inp": [
      -2,
      1,
      1
    ],
    "io_out": [
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),8)"
  },
  {
    "input": "input : list = [-1, 2, 4]\noutput : list = [4, -8, -16]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(take(sort_asc([-1, 2, 4]),18))),-4)",
    "io_inp": [
      -1,
      2,
      4
    ],
    "io_out": [
      4,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(take(sort_asc(input),18))),-4)"
  },
  {
    "input": "input : list = [-3, 3, 0]\noutput : list = [-1, -4, -7]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sort_des([-3, 3, 0]))),4)",
    "io_inp": [
      -3,
      3,
      0
    ],
    "io_out": [
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sort_des(input))),4)"
  },
  {
    "input": "input : list = [5, 2, -3, 1, -1, 3]\noutput : list = [15, 9, 6, 3]",
    "output": "generated_output : list = take(sub_n(sub_n(mul_n(sort_des([5, 2, -3, 1, -1, 3]),3),1),-1),4)",
    "io_inp": [
      5,
      2,
      -3,
      1,
      -1,
      3
    ],
    "io_out": [
      15,
      9,
      6,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(mul_n(sort_des(input),3),1),-1),4)"
  },
  {
    "input": "input : list = [-5, -1, -2, -1]\noutput : list = [15, 15, 27, 63]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(mul_n([-5, -1, -2, -1],4),3),-3)),-1)",
    "io_inp": [
      -5,
      -1,
      -2,
      -1
    ],
    "io_out": [
      15,
      15,
      27,
      63
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(mul_n(input,4),3),-3)),-1)"
  },
  {
    "input": "input : list = [-5, -4, -3, 1]\noutput : list = [-5, -4, -3, 1]",
    "output": "generated_output : list = mul_n([-5, -4, -3, 1],1)",
    "io_inp": [
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      -5,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, 2, 0, -5, -2]\noutput : list = [5, 3, 1, -4, -1]",
    "output": "generated_output : list = reverse(reverse(sub_n([4, 2, 0, -5, -2],-1)))",
    "io_inp": [
      4,
      2,
      0,
      -5,
      -2
    ],
    "io_out": [
      5,
      3,
      1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [-2, 0, -3, -5]\noutput : list = [-3, -1, -4]",
    "output": "generated_output : list = reverse(drop(add_n(reverse(add_n([-2, 0, -3, -5],2)),-3),1))",
    "io_inp": [
      -2,
      0,
      -3,
      -5
    ],
    "io_out": [
      -3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(add_n(reverse(add_n(input,2)),-3),1))"
  },
  {
    "input": "input : list = [2, 4, 0, 3]\noutput : list = [1, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_des([2, 4, 0, 3])),1),19))",
    "io_inp": [
      2,
      4,
      0,
      3
    ],
    "io_out": [
      1,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(sort_asc(sort_des(input)),1),19))"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [-6, -26]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(reverse([-1, -5])),5),-1))",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      -6,
      -26
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(reverse(input)),5),-1))"
  },
  {
    "input": "input : list = [3, 5, 1]\noutput : list = [-12, -8, -4]",
    "output": "generated_output : list = take(mul_n(add_n(sort_des(reverse([3, 5, 1])),1),-2),45)",
    "io_inp": [
      3,
      5,
      1
    ],
    "io_out": [
      -12,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sort_des(reverse(input)),1),-2),45)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc([-4, -5])",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [-12, -3, 6]",
    "output": "generated_output : list = mul_n(sort_des(add_n(reverse(reverse([5, 2, -1])),-1)),-3)",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      -12,
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(reverse(reverse(input)),-1)),-3)"
  },
  {
    "input": "input : list = [-5, 3, 0, 0, 5]\noutput : list = [8, 6, 3, 3, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(reverse([-5, 3, 0, 0, 5])))),3)",
    "io_inp": [
      -5,
      3,
      0,
      0,
      5
    ],
    "io_out": [
      8,
      6,
      3,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(reverse(input)))),3)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [6, 2]",
    "output": "generated_output : list = mul_n([3, 1],2)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(reverse([2, -2]))),20))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(reverse(input))),20))"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [15, 15]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(mul_n([0, 0],1),5)),2),-5)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(mul_n(input,1),5)),2),-5)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-6, 2]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 1],2))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -6,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [1, 0, -5, 4, 1, 0]\noutput : list = [77, 53, 53, 45, 45, 5]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(add_n([1, 0, -5, 4, 1, 0],5)),2),4),-5)",
    "io_inp": [
      1,
      0,
      -5,
      4,
      1,
      0
    ],
    "io_out": [
      77,
      53,
      53,
      45,
      45,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(add_n(input,5)),2),4),-5)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [0, 1]",
    "output": "generated_output : list = sub_n(sub_n(add_n([1, 2],3),1),3)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,3),1),3)"
  },
  {
    "input": "input : list = [1, -5, 0, 5]\noutput : list = [-9, -4, -3, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(sort_asc([1, -5, 0, 5])))),4)",
    "io_inp": [
      1,
      -5,
      0,
      5
    ],
    "io_out": [
      -9,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_asc(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [-4, -5, 1, -5, 4, 0]\noutput : list = [0, 100]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(take(drop([-4, -5, 1, -5, 4, 0],4),8),-5),-5))",
    "io_inp": [
      -4,
      -5,
      1,
      -5,
      4,
      0
    ],
    "io_out": [
      0,
      100
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(take(drop(input,4),8),-5),-5))"
  },
  {
    "input": "input : list = [4, 1, -5]\noutput : list = [-4, 2, 5]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc([4, 1, -5]),1))",
    "io_inp": [
      4,
      1,
      -5
    ],
    "io_out": [
      -4,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(input),1))"
  },
  {
    "input": "input : list = [-3, 2, -4, 4, -4]\noutput : list = [16, 8, -12, -16, -16]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(sort_des([-3, 2, -4, 4, -4])),4))",
    "io_inp": [
      -3,
      2,
      -4,
      4,
      -4
    ],
    "io_out": [
      16,
      8,
      -12,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(sort_des(input)),4))"
  },
  {
    "input": "input : list = [2, 4, 2]\noutput : list = [-18, -10, -10]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(mul_n([2, 4, 2],2)),-1)),-2)",
    "io_inp": [
      2,
      4,
      2
    ],
    "io_out": [
      -18,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(mul_n(input,2)),-1)),-2)"
  },
  {
    "input": "input : list = [-1, -5, -2, -5, -3, 0]\noutput : list = [-24, -33, -39, -30, -39, -27]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(add_n([-1, -5, -2, -5, -3, 0],-3),4),3),-3))",
    "io_inp": [
      -1,
      -5,
      -2,
      -5,
      -3,
      0
    ],
    "io_out": [
      -24,
      -33,
      -39,
      -30,
      -39,
      -27
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(add_n(input,-3),4),3),-3))"
  },
  {
    "input": "input : list = [3, 3, -3]\noutput : list = [-15, -15, 15]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc([3, 3, -3]))),-5)",
    "io_inp": [
      3,
      3,
      -3
    ],
    "io_out": [
      -15,
      -15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(input))),-5)"
  },
  {
    "input": "input : list = [3, -3, -3, -4]\noutput : list = [3, -3, -3, -4]",
    "output": "generated_output : list = sort_des([3, -3, -3, -4])",
    "io_inp": [
      3,
      -3,
      -3,
      -4
    ],
    "io_out": [
      3,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -1, 4, -3]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(take([4, -1, 4, -3],1)))),-1)",
    "io_inp": [
      4,
      -1,
      4,
      -3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(take(input,1)))),-1)"
  },
  {
    "input": "input : list = [0, 1, -3, 4, 3]\noutput : list = [-3, -4, -6, -7, -10]",
    "output": "generated_output : list = sort_des(sub_n(reverse(add_n(sort_des([0, 1, -3, 4, 3]),-4)),3))",
    "io_inp": [
      0,
      1,
      -3,
      4,
      3
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(add_n(sort_des(input),-4)),3))"
  },
  {
    "input": "input : list = [-3, -5, 1]\noutput : list = [4, 0, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_des([-3, -5, 1]),3))",
    "io_inp": [
      -3,
      -5,
      1
    ],
    "io_out": [
      4,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),3))"
  },
  {
    "input": "input : list = [-4, -3, -1, -5]\noutput : list = [1, -3]",
    "output": "generated_output : list = reverse(take(sub_n(reverse(drop([-4, -3, -1, -5],2)),-2),7))",
    "io_inp": [
      -4,
      -3,
      -1,
      -5
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(reverse(drop(input,2)),-2),7))"
  },
  {
    "input": "input : list = [-1, 3, 4, 4, 1]\noutput : list = [-1, 1, 3, 4, 4]",
    "output": "generated_output : list = sort_asc([-1, 3, 4, 4, 1])",
    "io_inp": [
      -1,
      3,
      4,
      4,
      1
    ],
    "io_out": [
      -1,
      1,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 0, 5]\noutput : list = [7, 2, 5]",
    "output": "generated_output : list = reverse(sub_n([3, 0, 5],-2))",
    "io_inp": [
      3,
      0,
      5
    ],
    "io_out": [
      7,
      2,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 1, -2, 5, -4, 1]\noutput : list = [4, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse(mul_n(drop([-1, 1, -2, 5, -4, 1],3),-1))))",
    "io_inp": [
      -1,
      1,
      -2,
      5,
      -4,
      1
    ],
    "io_out": [
      4,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(mul_n(drop(input,3),-1))))"
  },
  {
    "input": "input : list = [0, -4, 2, 5, 2]\noutput : list = [-4, 0, 2, 2, 5]",
    "output": "generated_output : list = sort_asc([0, -4, 2, 5, 2])",
    "io_inp": [
      0,
      -4,
      2,
      5,
      2
    ],
    "io_out": [
      -4,
      0,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 5, 3]\noutput : list = [-17, 13, 23]",
    "output": "generated_output : list = add_n(add_n(mul_n(reverse(sort_des([-3, 5, 3])),5),2),-4)",
    "io_inp": [
      -3,
      5,
      3
    ],
    "io_out": [
      -17,
      13,
      23
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(reverse(sort_des(input)),5),2),-4)"
  },
  {
    "input": "input : list = [-2, 4, 4, -5, -3]\noutput : list = [-2, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take([-2, 4, 4, -5, -3],3))))",
    "io_inp": [
      -2,
      4,
      4,
      -5,
      -3
    ],
    "io_out": [
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(input,3))))"
  },
  {
    "input": "input : list = [-3, -3, 4, 5, -1]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(take(take(take([-3, -3, 4, 5, -1],1),13),30),1),4)",
    "io_inp": [
      -3,
      -3,
      4,
      5,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(take(take(input,1),13),30),1),4)"
  },
  {
    "input": "input : list = [0, -1, 5, -1, -5]\noutput : list = [-2, 2, 2, 8]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(drop([0, -1, 5, -1, -5],1))),3),1)",
    "io_inp": [
      0,
      -1,
      5,
      -1,
      -5
    ],
    "io_out": [
      -2,
      2,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_asc(drop(input,1))),3),1)"
  },
  {
    "input": "input : list = [0, 2, 4, -3, 1, 1]\noutput : list = [-4, -1, 0, 0, 1, 3]",
    "output": "generated_output : list = sub_n(take(sort_asc([0, 2, 4, -3, 1, 1]),16),1)",
    "io_inp": [
      0,
      2,
      4,
      -3,
      1,
      1
    ],
    "io_out": [
      -4,
      -1,
      0,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(input),16),1)"
  },
  {
    "input": "input : list = [-4, -1, -5, 1]\noutput : list = [13, -11, 5, -7]",
    "output": "generated_output : list = sub_n(mul_n(add_n(reverse(add_n([-4, -1, -5, 1],-1)),2),4),-5)",
    "io_inp": [
      -4,
      -1,
      -5,
      1
    ],
    "io_out": [
      13,
      -11,
      5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(reverse(add_n(input,-1)),2),4),-5)"
  },
  {
    "input": "input : list = [-1, 4, 5, -2]\noutput : list = [-2, 5, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, 5, -2])",
    "io_inp": [
      -1,
      4,
      5,
      -2
    ],
    "io_out": [
      -2,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -5, -5, 2]\noutput : list = [24, 16, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sort_des([4, -5, -5, 2])),-2),4))",
    "io_inp": [
      4,
      -5,
      -5,
      2
    ],
    "io_out": [
      24,
      16,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_des(sort_des(input)),-2),4))"
  },
  {
    "input": "input : list = [-3, 0, 5, -1]\noutput : list = [-10, -2, 2, 22]",
    "output": "generated_output : list = take(sort_asc(sub_n(mul_n(add_n([-3, 0, 5, -1],1),4),2)),27)",
    "io_inp": [
      -3,
      0,
      5,
      -1
    ],
    "io_out": [
      -10,
      -2,
      2,
      22
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(mul_n(add_n(input,1),4),2)),27)"
  },
  {
    "input": "input : list = [2, 1, 4, 3, 2]\noutput : list = [4, 2, 0, 0, -2]",
    "output": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_asc([2, 1, 4, 3, 2])),-2)),2)",
    "io_inp": [
      2,
      1,
      4,
      3,
      2
    ],
    "io_out": [
      4,
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(sort_asc(sort_asc(input)),-2)),2)"
  },
  {
    "input": "input : list = [-5, 0, -1, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(take(sort_des(sub_n(drop([-5, 0, -1, 2],2),-3)),29))",
    "io_inp": [
      -5,
      0,
      -1,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sub_n(drop(input,2),-3)),29))"
  },
  {
    "input": "input : list = [-5, 3, 0, -5, -4, -1]\noutput : list = [22, 22, 18, 6, 2, -10]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(mul_n([-5, 3, 0, -5, -4, -1],-4)),2),47))",
    "io_inp": [
      -5,
      3,
      0,
      -5,
      -4,
      -1
    ],
    "io_out": [
      22,
      22,
      18,
      6,
      2,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(mul_n(input,-4)),2),47))"
  },
  {
    "input": "input : list = [-4, -4, -1, 3, -2, 2]\noutput : list = [7, 4, 4]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(take([-4, -4, -1, 3, -2, 2],3),5)),-3),1)",
    "io_inp": [
      -4,
      -4,
      -1,
      3,
      -2,
      2
    ],
    "io_out": [
      7,
      4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(take(input,3),5)),-3),1)"
  },
  {
    "input": "input : list = [5, -4, 4, -5, 1, 1]\noutput : list = [-8, 8, 10]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sort_asc(take([5, -4, 4, -5, 1, 1],3)),2)))",
    "io_inp": [
      5,
      -4,
      4,
      -5,
      1,
      1
    ],
    "io_out": [
      -8,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sort_asc(take(input,3)),2)))"
  },
  {
    "input": "input : list = [-4, 3, 3, 4, -1]\noutput : list = [-5, 2, 2]",
    "output": "generated_output : list = take(take(sub_n([-4, 3, 3, 4, -1],1),11),3)",
    "io_inp": [
      -4,
      3,
      3,
      4,
      -1
    ],
    "io_out": [
      -5,
      2,
      2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(input,1),11),3)"
  },
  {
    "input": "input : list = [0, -1, 2, 4, -1, 0]\noutput : list = [9, 5, 1, 1, -1, -1]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(sub_n([0, -1, 2, 4, -1, 0],-3),21),2),-5))",
    "io_inp": [
      0,
      -1,
      2,
      4,
      -1,
      0
    ],
    "io_out": [
      9,
      5,
      1,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(sub_n(input,-3),21),2),-5))"
  },
  {
    "input": "input : list = [1, 0, -4]\noutput : list = [1, 0, -4]",
    "output": "generated_output : list = sort_des([1, 0, -4])",
    "io_inp": [
      1,
      0,
      -4
    ],
    "io_out": [
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 1, 1, 0, 3]\noutput : list = [-3, 1, 2, 2, 4]",
    "output": "generated_output : list = take(take(sub_n(sort_asc([-4, 1, 1, 0, 3]),-1),29),19)",
    "io_inp": [
      -4,
      1,
      1,
      0,
      3
    ],
    "io_out": [
      -3,
      1,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(take(sub_n(sort_asc(input),-1),29),19)"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([0, -2, -4]))",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -5, -4, 5, 3]\noutput : list = [12, 10, 3, 3, 2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(sort_asc([-4, -5, -4, 5, 3])),3),-4)",
    "io_inp": [
      -4,
      -5,
      -4,
      5,
      3
    ],
    "io_out": [
      12,
      10,
      3,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(sort_asc(input)),3),-4)"
  },
  {
    "input": "input : list = [1, 0, 1]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(take([1, 0, 1],1)))))",
    "io_inp": [
      1,
      0,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sort_des(take(input,1)))))"
  },
  {
    "input": "input : list = [-1, 1, -2, -1, -2, 2]\noutput : list = [4, 2, -2, -2, -4, -4]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n([-1, 1, -2, -1, -2, 2],-1)),1),2)",
    "io_inp": [
      -1,
      1,
      -2,
      -1,
      -2,
      2
    ],
    "io_out": [
      4,
      2,
      -2,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(input,-1)),1),2)"
  },
  {
    "input": "input : list = [-3, 4, 2, -1]\noutput : list = [-15, 20, 10, -5]",
    "output": "generated_output : list = mul_n([-3, 4, 2, -1],5)",
    "io_inp": [
      -3,
      4,
      2,
      -1
    ],
    "io_out": [
      -15,
      20,
      10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [3, 3, 1, 4, 1]\noutput : list = [4, 3, 3, 1, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([3, 3, 1, 4, 1])))",
    "io_inp": [
      3,
      3,
      1,
      4,
      1
    ],
    "io_out": [
      4,
      3,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [3, -5, -5, 2]\noutput : list = [2, -5, -5, 3]",
    "output": "generated_output : list = reverse([3, -5, -5, 2])",
    "io_inp": [
      3,
      -5,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, -4, -2, 5, 4]\noutput : list = [125, 155, -55, -115, 65]",
    "output": "generated_output : list = reverse(add_n(mul_n(mul_n(mul_n([2, -4, -2, 5, 4],-3),-2),5),5))",
    "io_inp": [
      2,
      -4,
      -2,
      5,
      4
    ],
    "io_out": [
      125,
      155,
      -55,
      -115,
      65
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(mul_n(mul_n(input,-3),-2),5),5))"
  },
  {
    "input": "input : list = [3, 3, 2]\noutput : list = [-3, -2, -2]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_asc([3, 3, 2])),1)),-4)",
    "io_inp": [
      3,
      3,
      2
    ],
    "io_out": [
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(sort_asc(input)),1)),-4)"
  },
  {
    "input": "input : list = [5, 2, 2, 4]\noutput : list = [20, 8, 8, 16]",
    "output": "generated_output : list = mul_n([5, 2, 2, 4],4)",
    "io_inp": [
      5,
      2,
      2,
      4
    ],
    "io_out": [
      20,
      8,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-4, -1, 0, 1, -4]\noutput : list = [13, 13, 4, 1, -2]",
    "output": "generated_output : list = take(add_n(mul_n(sort_asc(sort_des([-4, -1, 0, 1, -4])),-3),1),25)",
    "io_inp": [
      -4,
      -1,
      0,
      1,
      -4
    ],
    "io_out": [
      13,
      13,
      4,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_asc(sort_des(input)),-3),1),25)"
  },
  {
    "input": "input : list = [5, 2, 1, 0]\noutput : list = [3]",
    "output": "generated_output : list = add_n(sub_n(take([5, 2, 1, 0],1),3),1)",
    "io_inp": [
      5,
      2,
      1,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(input,1),3),1)"
  },
  {
    "input": "input : list = [-3, 5, 4, 2]\noutput : list = [20, 16, 8, -12]",
    "output": "generated_output : list = mul_n(take(sort_des([-3, 5, 4, 2]),20),4)",
    "io_inp": [
      -3,
      5,
      4,
      2
    ],
    "io_out": [
      20,
      16,
      8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),20),4)"
  },
  {
    "input": "input : list = [1, 0, 3, -4, -3]\noutput : list = [5, -20, 155, 80, 105]",
    "output": "generated_output : list = mul_n(add_n(mul_n(reverse(sub_n([1, 0, 3, -4, -3],-4)),-5),4),-5)",
    "io_inp": [
      1,
      0,
      3,
      -4,
      -3
    ],
    "io_out": [
      5,
      -20,
      155,
      80,
      105
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(reverse(sub_n(input,-4)),-5),4),-5)"
  },
  {
    "input": "input : list = [0, -1, 0, 0]\noutput : list = [-4, -5, -4, -4]",
    "output": "generated_output : list = sub_n([0, -1, 0, 0],4)",
    "io_inp": [
      0,
      -1,
      0,
      0
    ],
    "io_out": [
      -4,
      -5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, -12]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc([-4, 4]),-5)),-3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      -12
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(input),-5)),-3)"
  },
  {
    "input": "input : list = [0, -4, -5, 1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = drop(take(sort_asc(sub_n([0, -4, -5, 1],1)),5),2)",
    "io_inp": [
      0,
      -4,
      -5,
      1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(sub_n(input,1)),5),2)"
  },
  {
    "input": "input : list = [-3, 5, -3, 0, -1]\noutput : list = [19, 19, 9, 4, -21]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_asc([-3, 5, -3, 0, -1]),-5)),4))",
    "io_inp": [
      -3,
      5,
      -3,
      0,
      -1
    ],
    "io_out": [
      19,
      19,
      9,
      4,
      -21
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(sort_asc(input),-5)),4))"
  },
  {
    "input": "input : list = [4, 5, 5, -5, -5]\noutput : list = [20, 20, -30, -30, -25]",
    "output": "generated_output : list = add_n(mul_n(mul_n(reverse(sub_n([4, 5, 5, -5, -5],-2)),-5),1),5)",
    "io_inp": [
      4,
      5,
      5,
      -5,
      -5
    ],
    "io_out": [
      20,
      20,
      -30,
      -30,
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(reverse(sub_n(input,-2)),-5),1),5)"
  },
  {
    "input": "input : list = [-4, -2, 5, 1, 4, 2]\noutput : list = [10, 7, 1, -2, -11, -17]",
    "output": "generated_output : list = add_n(mul_n(sort_des([-4, -2, 5, 1, 4, 2]),3),-5)",
    "io_inp": [
      -4,
      -2,
      5,
      1,
      4,
      2
    ],
    "io_out": [
      10,
      7,
      1,
      -2,
      -11,
      -17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(input),3),-5)"
  },
  {
    "input": "input : list = [-3, -3, 2, 1, 0, 2]\noutput : list = [-1, -2, -3, -1]",
    "output": "generated_output : list = add_n(drop([-3, -3, 2, 1, 0, 2],2),-3)",
    "io_inp": [
      -3,
      -3,
      2,
      1,
      0,
      2
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [-5, -4, 0, -1, 5]\noutput : list = [-2, -1, 2, 3, 8]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sub_n([-5, -4, 0, -1, 5],3),5)),1))",
    "io_inp": [
      -5,
      -4,
      0,
      -1,
      5
    ],
    "io_out": [
      -2,
      -1,
      2,
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sub_n(input,3),5)),1))"
  },
  {
    "input": "input : list = [-1, -3, -1, 1]\noutput : list = [0, -2, -4]",
    "output": "generated_output : list = reverse(add_n(mul_n(sub_n(drop([-1, -3, -1, 1],1),5),1),4))",
    "io_inp": [
      -1,
      -3,
      -1,
      1
    ],
    "io_out": [
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sub_n(drop(input,1),5),1),4))"
  },
  {
    "input": "input : list = [-2, 3, -4, 5, 2]\noutput : list = [0, -2, -6, -7, -9]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(sort_des([-2, 3, -4, 5, 2])),4),-1),10)",
    "io_inp": [
      -2,
      3,
      -4,
      5,
      2
    ],
    "io_out": [
      0,
      -2,
      -6,
      -7,
      -9
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(sort_des(input)),4),-1),10)"
  },
  {
    "input": "input : list = [0, 3, -4, -2, 0, 5]\noutput : list = [2, 5, -2, 0, 2, 7]",
    "output": "generated_output : list = add_n([0, 3, -4, -2, 0, 5],2)",
    "io_inp": [
      0,
      3,
      -4,
      -2,
      0,
      5
    ],
    "io_out": [
      2,
      5,
      -2,
      0,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [5, 4, 4, 3]\noutput : list = [5, 4, 4, 3]",
    "output": "generated_output : list = sort_des([5, 4, 4, 3])",
    "io_inp": [
      5,
      4,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = reverse([5, 3, 1])",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 5, 3, 3, 2, -4]\noutput : list = [16, 8, 8, 4, -4, -20]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_des([0, 5, 3, 3, 2, -4]),1),4)))",
    "io_inp": [
      0,
      5,
      3,
      3,
      2,
      -4
    ],
    "io_out": [
      16,
      8,
      8,
      4,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_des(input),1),4)))"
  },
  {
    "input": "input : list = [2, 2, 5]\noutput : list = [6, 6, 15]",
    "output": "generated_output : list = mul_n([2, 2, 5],3)",
    "io_inp": [
      2,
      2,
      5
    ],
    "io_out": [
      6,
      6,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, -4, -3, 5, 4, -1]\noutput : list = [0, 4, 3, -5, -4, 1]",
    "output": "generated_output : list = mul_n([0, -4, -3, 5, 4, -1],-1)",
    "io_inp": [
      0,
      -4,
      -3,
      5,
      4,
      -1
    ],
    "io_out": [
      0,
      4,
      3,
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [2, -2]",
    "output": "generated_output : list = take(sub_n(sort_des(reverse(sub_n([4, 0],5))),-3),40)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(reverse(sub_n(input,5))),-3),40)"
  },
  {
    "input": "input : list = [-5, 3, 4]\noutput : list = [0, -1, -9]",
    "output": "generated_output : list = reverse(add_n(add_n([-5, 3, 4],-5),1))",
    "io_inp": [
      -5,
      3,
      4
    ],
    "io_out": [
      0,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(input,-5),1))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(sort_des([-2, -4]))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [1, 3, 3, -5]\noutput : list = [4, 6, 6, -2]",
    "output": "generated_output : list = sub_n([1, 3, 3, -5],-3)",
    "io_inp": [
      1,
      3,
      3,
      -5
    ],
    "io_out": [
      4,
      6,
      6,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, 5, 3, -2, 1]\noutput : list = [-14, 13, 31, 40, 49]",
    "output": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_asc([4, 5, 3, -2, 1])),-3),-3),4)",
    "io_inp": [
      4,
      5,
      3,
      -2,
      1
    ],
    "io_out": [
      -14,
      13,
      31,
      40,
      49
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(sort_asc(sort_asc(input)),-3),-3),4)"
  },
  {
    "input": "input : list = [3, 5, -4, 0, 4]\noutput : list = [-4]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(take([3, 5, -4, 0, 4],1)),-2),-5),4)",
    "io_inp": [
      3,
      5,
      -4,
      0,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(take(input,1)),-2),-5),4)"
  },
  {
    "input": "input : list = [-3, 5, -2, -4, 3]\noutput : list = [-1, -8, -6]",
    "output": "generated_output : list = add_n(reverse(drop([-3, 5, -2, -4, 3],2)),-4)",
    "io_inp": [
      -3,
      5,
      -2,
      -4,
      3
    ],
    "io_out": [
      -1,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,2)),-4)"
  },
  {
    "input": "input : list = [-5, 3, 2, 0, 2, 0]\noutput : list = [-2, 6, 5, 3, 5, 3]",
    "output": "generated_output : list = sub_n([-5, 3, 2, 0, 2, 0],-3)",
    "io_inp": [
      -5,
      3,
      2,
      0,
      2,
      0
    ],
    "io_out": [
      -2,
      6,
      5,
      3,
      5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [0, 6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sub_n([-5, -2],-2),-2),1)))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sub_n(input,-2),-2),1)))"
  },
  {
    "input": "input : list = [-1, -4, 0, 5, -3, 2]\noutput : list = [-4, -7, -3, 2, -6, -1]",
    "output": "generated_output : list = take(add_n([-1, -4, 0, 5, -3, 2],-3),19)",
    "io_inp": [
      -1,
      -4,
      0,
      5,
      -3,
      2
    ],
    "io_out": [
      -4,
      -7,
      -3,
      2,
      -6,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),19)"
  },
  {
    "input": "input : list = [-1, 4, -2, -3, -1, 1]\noutput : list = [-15, -7, 1, -3, -27, -7]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(reverse([-1, 4, -2, -3, -1, 1]),21),-3),-4),1)",
    "io_inp": [
      -1,
      4,
      -2,
      -3,
      -1,
      1
    ],
    "io_out": [
      -15,
      -7,
      1,
      -3,
      -27,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(reverse(input),21),-3),-4),1)"
  },
  {
    "input": "input : list = [0, -5, -1, 5, -2]\noutput : list = [-10, -7, -6, -5, 0]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_des([0, -5, -1, 5, -2]))),5))",
    "io_inp": [
      0,
      -5,
      -1,
      5,
      -2
    ],
    "io_out": [
      -10,
      -7,
      -6,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_des(input))),5))"
  },
  {
    "input": "input : list = [-3, 4, 5, 5]\noutput : list = [-8, 6, 8, 8]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(sort_asc([-3, 4, 5, 5]),2),4),-2)",
    "io_inp": [
      -3,
      4,
      5,
      5
    ],
    "io_out": [
      -8,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(sort_asc(input),2),4),-2)"
  },
  {
    "input": "input : list = [1, 4, -1, 0, 3]\noutput : list = [-2, -3, -5, -6, -7]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(sort_des([1, 4, -1, 0, 3]),1)),5))",
    "io_inp": [
      1,
      4,
      -1,
      0,
      3
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(sort_des(input),1)),5))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [4, 14]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(reverse([1, 3]),5),4)),3)",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      4,
      14
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(reverse(input),5),4)),3)"
  },
  {
    "input": "input : list = [0, -4, -3]\noutput : list = [0, -4, -3]",
    "output": "generated_output : list = add_n(sub_n([0, -4, -3],2),2)",
    "io_inp": [
      0,
      -4,
      -3
    ],
    "io_out": [
      0,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,2),2)"
  },
  {
    "input": "input : list = [4, -3, 0, -1, 3]\noutput : list = [-16, -14, -13, -10, -9]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n([4, -3, 0, -1, 3],5),3))),-5)",
    "io_inp": [
      4,
      -3,
      0,
      -1,
      3
    ],
    "io_out": [
      -16,
      -14,
      -13,
      -10,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n(input,5),3))),-5)"
  },
  {
    "input": "input : list = [-1, 4, 5]\noutput : list = [10, 9, 4]",
    "output": "generated_output : list = take(reverse(add_n([-1, 4, 5],5)),12)",
    "io_inp": [
      -1,
      4,
      5
    ],
    "io_out": [
      10,
      9,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(input,5)),12)"
  },
  {
    "input": "input : list = [5, 4, -1]\noutput : list = [10, 0, -2]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(add_n(mul_n([5, 4, -1],1),-4),-2)))",
    "io_inp": [
      5,
      4,
      -1
    ],
    "io_out": [
      10,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(add_n(mul_n(input,1),-4),-2)))"
  },
  {
    "input": "input : list = [2, -5, 4, 1, 3, 0]\noutput : list = [-10]",
    "output": "generated_output : list = take(mul_n(take([2, -5, 4, 1, 3, 0],1),-5),3)",
    "io_inp": [
      2,
      -5,
      4,
      1,
      3,
      0
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(take(input,1),-5),3)"
  },
  {
    "input": "input : list = [-2, 0, 1, -4]\noutput : list = [-7, -5, -3, -2]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc([-2, 0, 1, -4]),-1)),-2))",
    "io_inp": [
      -2,
      0,
      1,
      -4
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc(input),-1)),-2))"
  },
  {
    "input": "input : list = [-5, 4, 3, 5, -1]\noutput : list = [12, 0, -12, -15, -18]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(add_n([-5, 4, 3, 5, -1],1),6))),-3)",
    "io_inp": [
      -5,
      4,
      3,
      5,
      -1
    ],
    "io_out": [
      12,
      0,
      -12,
      -15,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(add_n(input,1),6))),-3)"
  },
  {
    "input": "input : list = [4, 5, 4, -3, 4]\noutput : list = [-20, 15, -20, -25, -20]",
    "output": "generated_output : list = reverse(mul_n([4, 5, 4, -3, 4],-5))",
    "io_inp": [
      4,
      5,
      4,
      -3,
      4
    ],
    "io_out": [
      -20,
      15,
      -20,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-5))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-480, -120]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sort_des([4, 1]),-5),-2),4),-3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -480,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(mul_n(sort_des(input),-5),-2),4),-3)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-1, 7]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(add_n([-2, 0],3)),4)),-5)",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(add_n(input,3)),4)),-5)"
  },
  {
    "input": "input : list = [-3, 3, 5, 4]\noutput : list = [4, 3]",
    "output": "generated_output : list = sub_n(take(drop([-3, 3, 5, 4],2),4),1)",
    "io_inp": [
      -3,
      3,
      5,
      4
    ],
    "io_out": [
      4,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,2),4),1)"
  },
  {
    "input": "input : list = [2, -3, 5]\noutput : list = [14, -18]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(drop([2, -3, 5],1))),-4),-2)",
    "io_inp": [
      2,
      -3,
      5
    ],
    "io_out": [
      14,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_des(drop(input,1))),-4),-2)"
  },
  {
    "input": "input : list = [-4, -5, 5, -1, 4]\noutput : list = [4, 3, -2, -5, -6]",
    "output": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_asc([-4, -5, 5, -1, 4])),1),44))",
    "io_inp": [
      -4,
      -5,
      5,
      -1,
      4
    ],
    "io_out": [
      4,
      3,
      -2,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sort_asc(sort_asc(input)),1),44))"
  },
  {
    "input": "input : list = [-2, -5, -2, -2, 5, 4]\noutput : list = [-4, -7, -4, -4, 3, 2]",
    "output": "generated_output : list = sub_n(add_n([-2, -5, -2, -2, 5, 4],-3),-1)",
    "io_inp": [
      -2,
      -5,
      -2,
      -2,
      5,
      4
    ],
    "io_out": [
      -4,
      -7,
      -4,
      -4,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),-1)"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [6, 2, 0]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(mul_n([-1, 0, -3],2)),-1)))",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      6,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(mul_n(input,2)),-1)))"
  },
  {
    "input": "input : list = [-4, -5, -2, 0]\noutput : list = [3, 5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(drop([-4, -5, -2, 0],2)))),-5)",
    "io_inp": [
      -4,
      -5,
      -2,
      0
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(drop(input,2)))),-5)"
  },
  {
    "input": "input : list = [1, 1, 3, 4, -4]\noutput : list = [5, 5, 7, 8, 0]",
    "output": "generated_output : list = take(add_n(take(add_n(add_n([1, 1, 3, 4, -4],5),-5),29),4),35)",
    "io_inp": [
      1,
      1,
      3,
      4,
      -4
    ],
    "io_out": [
      5,
      5,
      7,
      8,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(take(add_n(add_n(input,5),-5),29),4),35)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [0, 24]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sub_n([4, -2],5),-4),2)),2)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      0,
      24
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(sub_n(input,5),-4),2)),2)"
  },
  {
    "input": "input : list = [2, -4, 4, 0, 0, 2]\noutput : list = [-4]",
    "output": "generated_output : list = reverse(drop(take([2, -4, 4, 0, 0, 2],2),1))",
    "io_inp": [
      2,
      -4,
      4,
      0,
      0,
      2
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = reverse(drop(take(input,2),1))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [-75, -45]",
    "output": "generated_output : list = mul_n(mul_n(reverse([3, 5]),-3),5)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      -75,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(input),-3),5)"
  },
  {
    "input": "input : list = [5, 2, 1, -4, 2]\noutput : list = [-30, -10, -34]",
    "output": "generated_output : list = sub_n(sub_n(mul_n(add_n(drop([5, 2, 1, -4, 2],2),5),-4),3),3)",
    "io_inp": [
      5,
      2,
      1,
      -4,
      2
    ],
    "io_out": [
      -30,
      -10,
      -34
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(add_n(drop(input,2),5),-4),3),3)"
  },
  {
    "input": "input : list = [-5, -2, 0]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(drop([-5, -2, 0],1),4))))",
    "io_inp": [
      -5,
      -2,
      0
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sub_n(drop(input,1),4))))"
  },
  {
    "input": "input : list = [0, 1, 2]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sort_des(drop([0, 1, 2],1)),1),-3))",
    "io_inp": [
      0,
      1,
      2
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sort_des(drop(input,1)),1),-3))"
  },
  {
    "input": "input : list = [-4, 5, 5]\noutput : list = [-1, -1, -10]",
    "output": "generated_output : list = sort_des(sub_n(add_n([-4, 5, 5],-1),5))",
    "io_inp": [
      -4,
      5,
      5
    ],
    "io_out": [
      -1,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(input,-1),5))"
  },
  {
    "input": "input : list = [-1, 5, 2, 3]\noutput : list = [4, 2, 1, -2]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(sort_asc([-1, 5, 2, 3]),5),-4)),-3)",
    "io_inp": [
      -1,
      5,
      2,
      3
    ],
    "io_out": [
      4,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(sort_asc(input),5),-4)),-3)"
  },
  {
    "input": "input : list = [-1, -3, 4, -3, 4, 2]\noutput : list = [-5, -5, -3, 0, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(sub_n([-1, -3, 4, -3, 4, 2],4)),1)),-3)",
    "io_inp": [
      -1,
      -3,
      4,
      -3,
      4,
      2
    ],
    "io_out": [
      -5,
      -5,
      -3,
      0,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_des(sub_n(input,4)),1)),-3)"
  },
  {
    "input": "input : list = [-3, 2, -5, 4, 0, -2]\noutput : list = [-6, -4, -3, -1, 1, 3]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_des([-3, 2, -5, 4, 0, -2]),-3))),4)",
    "io_inp": [
      -3,
      2,
      -5,
      4,
      0,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -3,
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_des(input),-3))),4)"
  },
  {
    "input": "input : list = [-5, -2, -2]\noutput : list = [-2, -2, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, -2, -2]))",
    "io_inp": [
      -5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, -1, -1, 0, -2]\noutput : list = [-2, -2, -2]",
    "output": "generated_output : list = reverse(take(sub_n(take([-1, -1, -1, 0, -2],3),1),4))",
    "io_inp": [
      -1,
      -1,
      -1,
      0,
      -2
    ],
    "io_out": [
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(take(input,3),1),4))"
  },
  {
    "input": "input : list = [-2, 2, -1, 0]\noutput : list = [11, -5, 7, 3]",
    "output": "generated_output : list = reverse(reverse(take(add_n(mul_n([-2, 2, -1, 0],-4),3),6)))",
    "io_inp": [
      -2,
      2,
      -1,
      0
    ],
    "io_out": [
      11,
      -5,
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(mul_n(input,-4),3),6)))"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [2, 1, 0]",
    "output": "generated_output : list = sort_des([2, 1, 0])",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -2, -4, 3, -5, 3]\noutput : list = [3, 3, 2, -2, -4, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(sort_des(reverse([2, -2, -4, 3, -5, 3])))))",
    "io_inp": [
      2,
      -2,
      -4,
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [1, 5, 3, -4, -4]\noutput : list = [8, 1, 1]",
    "output": "generated_output : list = sub_n(drop([1, 5, 3, -4, -4],2),-5)",
    "io_inp": [
      1,
      5,
      3,
      -4,
      -4
    ],
    "io_out": [
      8,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,2),-5)"
  },
  {
    "input": "input : list = [2, 4, 3, -1]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(take([2, 4, 3, -1],1),-5)",
    "io_inp": [
      2,
      4,
      3,
      -1
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [3, 0, 0, 5, -2, -2]\noutput : list = [-2, -2, 0, 0, 3, 5]",
    "output": "generated_output : list = reverse(sort_des([3, 0, 0, 5, -2, -2]))",
    "io_inp": [
      3,
      0,
      0,
      5,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      0,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [5, -3, -3, 4, 2]\noutput : list = [12, 12, -8, -16, -20]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des([5, -3, -3, 4, 2]),-4))))",
    "io_inp": [
      5,
      -3,
      -3,
      4,
      2
    ],
    "io_out": [
      12,
      12,
      -8,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(mul_n(sort_des(input),-4))))"
  },
  {
    "input": "input : list = [2, 4, -1, 1]\noutput : list = [-11, 13, -47, -23]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(mul_n([2, 4, -1, 1],-1)),-3),-4),-1)",
    "io_inp": [
      2,
      4,
      -1,
      1
    ],
    "io_out": [
      -11,
      13,
      -47,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(mul_n(input,-1)),-3),-4),-1)"
  },
  {
    "input": "input : list = [-5, -3, 4]\noutput : list = [14, 0]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(drop([-5, -3, 4],1)),4),5),-2)",
    "io_inp": [
      -5,
      -3,
      4
    ],
    "io_out": [
      14,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(drop(input,1)),4),5),-2)"
  },
  {
    "input": "input : list = [1, 1, 0, -3, 5]\noutput : list = [78, -18, 18, 30, 30]",
    "output": "generated_output : list = mul_n(add_n(reverse(add_n(mul_n([1, 1, 0, -3, 5],-4),-1)),-5),-3)",
    "io_inp": [
      1,
      1,
      0,
      -3,
      5
    ],
    "io_out": [
      78,
      -18,
      18,
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(add_n(mul_n(input,-4),-1)),-5),-3)"
  },
  {
    "input": "input : list = [-1, 2, -4, 3, 4]\noutput : list = [0, 3, 6, 7, 8]",
    "output": "generated_output : list = add_n(sort_asc(add_n([-1, 2, -4, 3, 4],2)),2)",
    "io_inp": [
      -1,
      2,
      -4,
      3,
      4
    ],
    "io_out": [
      0,
      3,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,2)),2)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc([5, -4])",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, -4, 0, 1]\noutput : list = [-8, 0, 2, 6, 10]",
    "output": "generated_output : list = reverse(mul_n(sort_des([3, 5, -4, 0, 1]),2))",
    "io_inp": [
      3,
      5,
      -4,
      0,
      1
    ],
    "io_out": [
      -8,
      0,
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [3, 1, 4, -4, 4]\noutput : list = [1, 0, -2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(sub_n(take([3, 1, 4, -4, 4],3),2),4)),5)",
    "io_inp": [
      3,
      1,
      4,
      -4,
      4
    ],
    "io_out": [
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(sub_n(take(input,3),2),4)),5)"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [9, -3, -6]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(reverse([-2, -1, 3]),-1),3),3))",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      9,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(reverse(input),-1),3),3))"
  },
  {
    "input": "input : list = [-1, -1, 5, 2, 0]\noutput : list = [-1, -1, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([-1, -1, 5, 2, 0])",
    "io_inp": [
      -1,
      -1,
      5,
      2,
      0
    ],
    "io_out": [
      -1,
      -1,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 1, -4]\noutput : list = [7, 6, 1]",
    "output": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc([2, 1, -4]),5),-5),-5))",
    "io_inp": [
      2,
      1,
      -4
    ],
    "io_out": [
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(add_n(sort_asc(input),5),-5),-5))"
  },
  {
    "input": "input : list = [-5, 4, 3, -5, -2, -3]\noutput : list = [-5, -5, -3, -2, 3, 4]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(add_n([-5, 4, 3, -5, -2, -3],3))),-4),1)",
    "io_inp": [
      -5,
      4,
      3,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(add_n(input,3))),-4),1)"
  },
  {
    "input": "input : list = [2, 5, 5, -1]\noutput : list = [-1, 2, 5, 5]",
    "output": "generated_output : list = sort_asc([2, 5, 5, -1])",
    "io_inp": [
      2,
      5,
      5,
      -1
    ],
    "io_out": [
      -1,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = take(mul_n(sub_n([-2, -1],-3),-2),17)",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(input,-3),-2),17)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [8, -7, -32]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n([4, -1, -4],3),-5)),-1),-2)",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      8,
      -7,
      -32
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n(input,3),-5)),-1),-2)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [3, -3]",
    "output": "generated_output : list = sort_des([-3, 3])",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, -4, 1, 0]\noutput : list = [-4, 0, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -4, 1, 0]))",
    "io_inp": [
      5,
      -4,
      1,
      0
    ],
    "io_out": [
      -4,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-3, -1, -1, -5, -4, 0]\noutput : list = [-1, -5, -4, 0]",
    "output": "generated_output : list = drop([-3, -1, -1, -5, -4, 0],2)",
    "io_inp": [
      -3,
      -1,
      -1,
      -5,
      -4,
      0
    ],
    "io_out": [
      -1,
      -5,
      -4,
      0
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(reverse([3, 2])),1))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(reverse(input)),1))"
  },
  {
    "input": "input : list = [-4, -3, 2, 2]\noutput : list = [2, 2, -3, -4]",
    "output": "generated_output : list = reverse(reverse(take(sort_des(reverse([-4, -3, 2, 2])),24)))",
    "io_inp": [
      -4,
      -3,
      2,
      2
    ],
    "io_out": [
      2,
      2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_des(reverse(input)),24)))"
  },
  {
    "input": "input : list = [0, -1, -4, 1, 4, -4]\noutput : list = [21, 18, 9, 24, 33, 9]",
    "output": "generated_output : list = take(mul_n(take(add_n(sub_n([0, -1, -4, 1, 4, -4],-3),4),16),3),15)",
    "io_inp": [
      0,
      -1,
      -4,
      1,
      4,
      -4
    ],
    "io_out": [
      21,
      18,
      9,
      24,
      33,
      9
    ],
    "output_masked": "generated_output : list = take(mul_n(take(add_n(sub_n(input,-3),4),16),3),15)"
  },
  {
    "input": "input : list = [5, 1, -5, 0, -5, -2]\noutput : list = [29, 5, 25, 5, 17]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(drop(sub_n([5, 1, -5, 0, -5, -2],-5),1),-1),-4),-5)",
    "io_inp": [
      5,
      1,
      -5,
      0,
      -5,
      -2
    ],
    "io_out": [
      29,
      5,
      25,
      5,
      17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(drop(sub_n(input,-5),1),-1),-4),-5)"
  },
  {
    "input": "input : list = [-4, -4, -1, 2]\noutput : list = [0, 0, 3, 6]",
    "output": "generated_output : list = reverse(add_n(reverse([-4, -4, -1, 2]),4))",
    "io_inp": [
      -4,
      -4,
      -1,
      2
    ],
    "io_out": [
      0,
      0,
      3,
      6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(input),4))"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [-7, -7]",
    "output": "generated_output : list = reverse(sub_n(take(drop([-5, -3, -3],1),16),4))",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(drop(input,1),16),4))"
  },
  {
    "input": "input : list = [3, -4, -2, 0, -3]\noutput : list = [-4, -3, -2, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, -4, -2, 0, -3]))",
    "io_inp": [
      3,
      -4,
      -2,
      0,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-3, -3, -4, 3]\noutput : list = [0, 0, -4, 24]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([-3, -3, -4, 3],-3),2),2)",
    "io_inp": [
      -3,
      -3,
      -4,
      3
    ],
    "io_out": [
      0,
      0,
      -4,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,-3),2),2)"
  },
  {
    "input": "input : list = [3, -1, 3, -4, -2, 5]\noutput : list = [12, 6, 3, -9, -9, -15]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_des([3, -1, 3, -4, -2, 5])),1)),-3)",
    "io_inp": [
      3,
      -1,
      3,
      -4,
      -2,
      5
    ],
    "io_out": [
      12,
      6,
      3,
      -9,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(reverse(sort_des(input)),1)),-3)"
  },
  {
    "input": "input : list = [-2, -3, 4, 1, 5, 3]\noutput : list = [3, 2, 1, -1, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(add_n(reverse([-2, -3, 4, 1, 5, 3]),3),-5)))",
    "io_inp": [
      -2,
      -3,
      4,
      1,
      5,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(add_n(reverse(input),3),-5)))"
  },
  {
    "input": "input : list = [0, 2, 4, -4, -2]\noutput : list = [-3, -1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(take([0, 2, 4, -4, -2],3),-2))),1)",
    "io_inp": [
      0,
      2,
      4,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(add_n(take(input,3),-2))),1)"
  },
  {
    "input": "input : list = [0, 5, -5]\noutput : list = [-9, -4, 1]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(reverse(reverse([0, 5, -5])),-4)))",
    "io_inp": [
      0,
      5,
      -5
    ],
    "io_out": [
      -9,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = sort_des(sort_des(reverse(sort_asc(drop([-4, 3, 5],1)))))",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(sort_asc(drop(input,1)))))"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [-9]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(drop(drop([-3, -4, 2],1),1)),-5),-1)",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(drop(drop(input,1),1)),-5),-1)"
  },
  {
    "input": "input : list = [3, -2, -2, 2, -1]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(take([3, -2, -2, 2, -1],1),1)",
    "io_inp": [
      3,
      -2,
      -2,
      2,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),1)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(sub_n([-1, -1],-2),1)),-2))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(sub_n(input,-2),1)),-2))"
  },
  {
    "input": "input : list = [2, -4, 2, 2, -4, -5]\noutput : list = [-9, -8, -8, -2, -2, -2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(sort_des([2, -4, 2, 2, -4, -5]),4))))",
    "io_inp": [
      2,
      -4,
      2,
      2,
      -4,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(sort_des(input),4))))"
  },
  {
    "input": "input : list = [3, -4, -4, 5, -2, -3]\noutput : list = [-15, -18]",
    "output": "generated_output : list = mul_n(sub_n(take(drop(add_n([3, -4, -4, 5, -2, -3],-5),4),24),-2),3)",
    "io_inp": [
      3,
      -4,
      -4,
      5,
      -2,
      -3
    ],
    "io_out": [
      -15,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(drop(add_n(input,-5),4),24),-2),3)"
  },
  {
    "input": "input : list = [3, -3, -4, 0, 4, -2]\noutput : list = [4, 3, 0, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_des(take(reverse(sort_asc([3, -3, -4, 0, 4, -2])),31)))",
    "io_inp": [
      3,
      -3,
      -4,
      0,
      4,
      -2
    ],
    "io_out": [
      4,
      3,
      0,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(reverse(sort_asc(input)),31)))"
  },
  {
    "input": "input : list = [4, -1, 2, -4, 5]\noutput : list = [5, 4, 2, -1, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc([4, -1, 2, -4, 5]),10))",
    "io_inp": [
      4,
      -1,
      2,
      -4,
      5
    ],
    "io_out": [
      5,
      4,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),10))"
  },
  {
    "input": "input : list = [-3, -5, 3, 0, -1]\noutput : list = [19, 4]",
    "output": "generated_output : list = take(add_n(take(mul_n(drop([-3, -5, 3, 0, -1],2),5),2),4),46)",
    "io_inp": [
      -3,
      -5,
      3,
      0,
      -1
    ],
    "io_out": [
      19,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(drop(input,2),5),2),4),46)"
  },
  {
    "input": "input : list = [-1, -1, -2]\noutput : list = [-1, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des([-1, -1, -2])))",
    "io_inp": [
      -1,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [4, 4, 2, 2, 3]\noutput : list = [1, 1, 0, -1, -1]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(reverse([4, 4, 2, 2, 3])),-3)))",
    "io_inp": [
      4,
      4,
      2,
      2,
      3
    ],
    "io_out": [
      1,
      1,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(reverse(input)),-3)))"
  },
  {
    "input": "input : list = [-5, -5, 1, 3, 0, 5]\noutput : list = [0, 0, 6, 8, 5, 10]",
    "output": "generated_output : list = add_n([-5, -5, 1, 3, 0, 5],5)",
    "io_inp": [
      -5,
      -5,
      1,
      3,
      0,
      5
    ],
    "io_out": [
      0,
      0,
      6,
      8,
      5,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, -5, 5]\noutput : list = [15]",
    "output": "generated_output : list = sort_asc(mul_n(take([5, -5, 5],1),3))",
    "io_inp": [
      5,
      -5,
      5
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(input,1),3))"
  },
  {
    "input": "input : list = [2, -4, 5, 2]\noutput : list = [8, 5, 5, -1]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(reverse([2, -4, 5, 2])),5),-3))",
    "io_inp": [
      2,
      -4,
      5,
      2
    ],
    "io_out": [
      8,
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(reverse(input)),5),-3))"
  },
  {
    "input": "input : list = [4, -3, -2, -5, -5, -3]\noutput : list = [-6, -6, -4, -4, -3, 3]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(take(sort_des([4, -3, -2, -5, -5, -3]),17)),1),2)",
    "io_inp": [
      4,
      -3,
      -2,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -4,
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(take(sort_des(input),17)),1),2)"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-9, -15, 0]",
    "output": "generated_output : list = take(sub_n(add_n(take(mul_n([-3, -5, 0],3),12),4),4),37)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -9,
      -15,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(take(mul_n(input,3),12),4),4),37)"
  },
  {
    "input": "input : list = [1, -4, -3, 3]\noutput : list = [3, 1, -3, -4]",
    "output": "generated_output : list = sort_des([1, -4, -3, 3])",
    "io_inp": [
      1,
      -4,
      -3,
      3
    ],
    "io_out": [
      3,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, 2, 3]\noutput : list = [-4, -4, -1, 2]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(mul_n(sort_des([1, 3, 2, 3]),-3),5)),1)",
    "io_inp": [
      1,
      3,
      2,
      3
    ],
    "io_out": [
      -4,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(mul_n(sort_des(input),-3),5)),1)"
  },
  {
    "input": "input : list = [-3, 3, -1, 2]\noutput : list = [5, 7, 10, 11]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([-3, 3, -1, 2],-4),-4))",
    "io_inp": [
      -3,
      3,
      -1,
      2
    ],
    "io_out": [
      5,
      7,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-4),-4))"
  },
  {
    "input": "input : list = [1, 5, -1, 0]\noutput : list = [-11, -12, -6]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(drop([1, 5, -1, 0],1),2),5),-4))",
    "io_inp": [
      1,
      5,
      -1,
      0
    ],
    "io_out": [
      -11,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(drop(input,1),2),5),-4))"
  },
  {
    "input": "input : list = [-1, 0, 4, 4, 0]\noutput : list = [0, -2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(reverse(take([-1, 0, 4, 4, 0],2)))),2)",
    "io_inp": [
      -1,
      0,
      4,
      4,
      0
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(reverse(take(input,2)))),2)"
  },
  {
    "input": "input : list = [-4, 1, -4, 5, 0]\noutput : list = [6, 11]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(take([-4, 1, -4, 5, 0],2),5)),-5))",
    "io_inp": [
      -4,
      1,
      -4,
      5,
      0
    ],
    "io_out": [
      6,
      11
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(take(input,2),5)),-5))"
  },
  {
    "input": "input : list = [-5, 3, -3, 3, 0]\noutput : list = [2, 4, 7, 10, 10]",
    "output": "generated_output : list = add_n(sort_asc(add_n(add_n(sub_n([-5, 3, -3, 3, 0],-4),1),1)),1)",
    "io_inp": [
      -5,
      3,
      -3,
      3,
      0
    ],
    "io_out": [
      2,
      4,
      7,
      10,
      10
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(add_n(sub_n(input,-4),1),1)),1)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [1, -11]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des(mul_n([2, -2],-3)))),5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      1,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(mul_n(input,-3)))),5)"
  },
  {
    "input": "input : list = [-3, 5, -4]\noutput : list = [-5, -4, 4]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_asc([-3, 5, -4]))),-4),-3)",
    "io_inp": [
      -3,
      5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(reverse(sort_asc(input))),-4),-3)"
  },
  {
    "input": "input : list = [-1, 5, 1, -1, 2, 5]\noutput : list = [2, 2, 4, 5, 8, 8]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n([-1, 5, 1, -1, 2, 5],3),-1))),5)",
    "io_inp": [
      -1,
      5,
      1,
      -1,
      2,
      5
    ],
    "io_out": [
      2,
      2,
      4,
      5,
      8,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sub_n(input,3),-1))),5)"
  },
  {
    "input": "input : list = [-2, 0, -1, -5, -3]\noutput : list = [-5, -7, -3, -2]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(drop([-2, 0, -1, -5, -3],1),2),-1)),-1)",
    "io_inp": [
      -2,
      0,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -7,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(drop(input,1),2),-1)),-1)"
  },
  {
    "input": "input : list = [-4, -2, -4, -5]\noutput : list = [-5, -4, -4, -2]",
    "output": "generated_output : list = sort_asc([-4, -2, -4, -5])",
    "io_inp": [
      -4,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, 0]\noutput : list = [12, -9, 0]",
    "output": "generated_output : list = mul_n([-4, 3, 0],-3)",
    "io_inp": [
      -4,
      3,
      0
    ],
    "io_out": [
      12,
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [2, 4, -4, -1]\noutput : list = [2, 8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(drop([2, 4, -4, -1],2))),-2))",
    "io_inp": [
      2,
      4,
      -4,
      -1
    ],
    "io_out": [
      2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(drop(input,2))),-2))"
  },
  {
    "input": "input : list = [3, -1, -2, 5, 4]\noutput : list = [-50, -35, -20, 40, 55]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sort_asc([3, -1, -2, 5, 4]),-3)),5),5)",
    "io_inp": [
      3,
      -1,
      -2,
      5,
      4
    ],
    "io_out": [
      -50,
      -35,
      -20,
      40,
      55
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(mul_n(sort_asc(input),-3)),5),5)"
  },
  {
    "input": "input : list = [5, -2, 1]\noutput : list = [7, 3, 0]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([5, -2, 1])),-2)",
    "io_inp": [
      5,
      -2,
      1
    ],
    "io_out": [
      7,
      3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-3, -3, -2]\noutput : list = [1, 0, 0]",
    "output": "generated_output : list = sort_des(add_n(add_n(add_n(reverse([-3, -3, -2]),2),5),-4))",
    "io_inp": [
      -3,
      -3,
      -2
    ],
    "io_out": [
      1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(add_n(reverse(input),2),5),-4))"
  },
  {
    "input": "input : list = [1, -3, 3]\noutput : list = [10, -2, -8]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(mul_n([1, -3, 3],3),-1),-1),27))",
    "io_inp": [
      1,
      -3,
      3
    ],
    "io_out": [
      10,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(mul_n(input,3),-1),-1),27))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(reverse([2, 0]),9)",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(input),9)"
  },
  {
    "input": "input : list = [5, 5, -4, 5, -1, -5]\noutput : list = [2, 2, 2, -4, -7, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(reverse([5, 5, -4, 5, -1, -5])))),3)",
    "io_inp": [
      5,
      5,
      -4,
      5,
      -1,
      -5
    ],
    "io_out": [
      2,
      2,
      2,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(reverse(input)))),3)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [7, 4]",
    "output": "generated_output : list = sub_n([2, -1],-5)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      7,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, 1, -1, 4, 5, -2]\noutput : list = [-2, -1, 1, 4, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 1, -1, 4, 5, -2])",
    "io_inp": [
      5,
      1,
      -1,
      4,
      5,
      -2
    ],
    "io_out": [
      -2,
      -1,
      1,
      4,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -3, 5, 4, 5, -2]\noutput : list = [0, 1, 2, 8, 9, 9]",
    "output": "generated_output : list = mul_n(take(sub_n(reverse(sort_des([-4, -3, 5, 4, 5, -2])),-4),17),1)",
    "io_inp": [
      -4,
      -3,
      5,
      4,
      5,
      -2
    ],
    "io_out": [
      0,
      1,
      2,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(reverse(sort_des(input)),-4),17),1)"
  },
  {
    "input": "input : list = [-1, -2, 0, 1]\noutput : list = [1]",
    "output": "generated_output : list = take(reverse([-1, -2, 0, 1]),1)",
    "io_inp": [
      -1,
      -2,
      0,
      1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(reverse(input),1)"
  },
  {
    "input": "input : list = [-3, -1, 2, 5, -3, 1]\noutput : list = [3, -1, -5]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(drop([-3, -1, 2, 5, -3, 1],3)))),-1)",
    "io_inp": [
      -3,
      -1,
      2,
      5,
      -3,
      1
    ],
    "io_out": [
      3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(sort_asc(drop(input,3)))),-1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc(sort_des([5, -4]))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [1, -2, -3]\noutput : list = [0, 1, 4]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(sort_asc([1, -2, -3]),-1)),-2))",
    "io_inp": [
      1,
      -2,
      -3
    ],
    "io_out": [
      0,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(sort_asc(input),-1)),-2))"
  },
  {
    "input": "input : list = [-5, -5, -1]\noutput : list = [-40, -40, -8]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(mul_n(reverse([-5, -5, -1]),-2))),-4)",
    "io_inp": [
      -5,
      -5,
      -1
    ],
    "io_out": [
      -40,
      -40,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(mul_n(reverse(input),-2))),-4)"
  },
  {
    "input": "input : list = [5, -4, -1, -3, 3, -2]\noutput : list = [-6, -4, 0, 1, 2, 3]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(sub_n([5, -4, -1, -3, 3, -2],1),-1),-2)),30)",
    "io_inp": [
      5,
      -4,
      -1,
      -3,
      3,
      -2
    ],
    "io_out": [
      -6,
      -4,
      0,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(sub_n(input,1),-1),-2)),30)"
  },
  {
    "input": "input : list = [-1, -2, 5, 2]\noutput : list = [-5, -6, 1, -2]",
    "output": "generated_output : list = sub_n([-1, -2, 5, 2],4)",
    "io_inp": [
      -1,
      -2,
      5,
      2
    ],
    "io_out": [
      -5,
      -6,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [4, -2, -3, -3, -5, 1]\noutput : list = [-20, 10, 15, 15, 25, -5]",
    "output": "generated_output : list = mul_n([4, -2, -3, -3, -5, 1],-5)",
    "io_inp": [
      4,
      -2,
      -3,
      -3,
      -5,
      1
    ],
    "io_out": [
      -20,
      10,
      15,
      15,
      25,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-4, -2, 1, -3, 5]\noutput : list = [-2, -1, 0, 3, 7]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take(reverse([-4, -2, 1, -3, 5]),13))),2)",
    "io_inp": [
      -4,
      -2,
      1,
      -3,
      5
    ],
    "io_out": [
      -2,
      -1,
      0,
      3,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(reverse(input),13))),2)"
  },
  {
    "input": "input : list = [0, 0, 2, 5, -1]\noutput : list = [-10, 0, 0, 20, 50]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(mul_n([0, 0, 2, 5, -1],-2)),10),-5))",
    "io_inp": [
      0,
      0,
      2,
      5,
      -1
    ],
    "io_out": [
      -10,
      0,
      0,
      20,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(mul_n(input,-2)),10),-5))"
  },
  {
    "input": "input : list = [-4, 1, -1, 2]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(reverse(reverse(take(take([-4, 1, -1, 2],1),11))),-1)",
    "io_inp": [
      -4,
      1,
      -1,
      2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(take(take(input,1),11))),-1)"
  },
  {
    "input": "input : list = [-5, -2, 0, 4]\noutput : list = [-8, -10, -13]",
    "output": "generated_output : list = add_n(reverse(take(mul_n(sub_n([-5, -2, 0, 4],4),1),3)),-4)",
    "io_inp": [
      -5,
      -2,
      0,
      4
    ],
    "io_out": [
      -8,
      -10,
      -13
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(mul_n(sub_n(input,4),1),3)),-4)"
  },
  {
    "input": "input : list = [1, 0, 2]\noutput : list = [2, 1, 0]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(add_n([1, 0, 2],-4)),-2),-2))",
    "io_inp": [
      1,
      0,
      2
    ],
    "io_out": [
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_asc(add_n(input,-4)),-2),-2))"
  },
  {
    "input": "input : list = [4, 4, -4, 1]\noutput : list = [-4, 1, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_asc([4, 4, -4, 1])))))",
    "io_inp": [
      4,
      4,
      -4,
      1
    ],
    "io_out": [
      -4,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, 0, 1, 5, 3]\noutput : list = [5, 5, 3, 1, 0]",
    "output": "generated_output : list = take(sort_des([5, 0, 1, 5, 3]),7)",
    "io_inp": [
      5,
      0,
      1,
      5,
      3
    ],
    "io_out": [
      5,
      5,
      3,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(input),7)"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(drop([1, 1, -5],1),-1))))",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sub_n(drop(input,1),-1))))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [-6, 3]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(sub_n([-1, -4],-3)),7),-3))",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(sub_n(input,-3)),7),-3))"
  },
  {
    "input": "input : list = [3, 0, -4, 2, 5, 1]\noutput : list = [-3, 1, -2, -8, -4, -1]",
    "output": "generated_output : list = mul_n(reverse(add_n([3, 0, -4, 2, 5, 1],-4)),1)",
    "io_inp": [
      3,
      0,
      -4,
      2,
      5,
      1
    ],
    "io_out": [
      -3,
      1,
      -2,
      -8,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-4)),1)"
  },
  {
    "input": "input : list = [-4, -2, -4]\noutput : list = [24, 32, 32]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(add_n([-4, -2, -4],4),4),-4),-4))",
    "io_inp": [
      -4,
      -2,
      -4
    ],
    "io_out": [
      24,
      32,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(add_n(input,4),4),-4),-4))"
  },
  {
    "input": "input : list = [2, 2, -3]\noutput : list = [-3, 2, 2]",
    "output": "generated_output : list = reverse([2, 2, -3])",
    "io_inp": [
      2,
      2,
      -3
    ],
    "io_out": [
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 5, 2, -4, -3, -5]\noutput : list = [-9, -8, -7, -2, 1, 1]",
    "output": "generated_output : list = take(take(sort_asc(add_n(reverse([5, 5, 2, -4, -3, -5]),-4)),13),45)",
    "io_inp": [
      5,
      5,
      2,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -9,
      -8,
      -7,
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(reverse(input),-4)),13),45)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sub_n(sub_n([5, 3],3),5)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,3),5)"
  },
  {
    "input": "input : list = [1, 5, -4, -3, -4, -5]\noutput : list = [-4, -3, -4, -5]",
    "output": "generated_output : list = drop([1, 5, -4, -3, -4, -5],2)",
    "io_inp": [
      1,
      5,
      -4,
      -3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 3, 1, -3, 2, 2]\noutput : list = [-3, 4, 2, -2, 3, 3]",
    "output": "generated_output : list = sub_n(add_n([-4, 3, 1, -3, 2, 2],-3),-4)",
    "io_inp": [
      -4,
      3,
      1,
      -3,
      2,
      2
    ],
    "io_out": [
      -3,
      4,
      2,
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-3),-4)"
  },
  {
    "input": "input : list = [-2, -3, -4]\noutput : list = [12, 18, 24]",
    "output": "generated_output : list = mul_n(mul_n([-2, -3, -4],-2),3)",
    "io_inp": [
      -2,
      -3,
      -4
    ],
    "io_out": [
      12,
      18,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-2),3)"
  },
  {
    "input": "input : list = [-5, 4, 4, 4, 0]\noutput : list = [0, 0, 0, -4, -9]",
    "output": "generated_output : list = take(take(sort_des(add_n(mul_n([-5, 4, 4, 4, 0],1),-4)),26),49)",
    "io_inp": [
      -5,
      4,
      4,
      4,
      0
    ],
    "io_out": [
      0,
      0,
      0,
      -4,
      -9
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(mul_n(input,1),-4)),26),49)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = add_n(add_n([-5, -1],-3),4)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-3),4)"
  },
  {
    "input": "input : list = [-5, 3, 0, 3, -2]\noutput : list = [8, 8, 2, -2, -8]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sub_n(sort_asc([-5, 3, 0, 3, -2]),-3)),2),-4)",
    "io_inp": [
      -5,
      3,
      0,
      3,
      -2
    ],
    "io_out": [
      8,
      8,
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sub_n(sort_asc(input),-3)),2),-4)"
  },
  {
    "input": "input : list = [2, 0, 0, -1]\noutput : list = [10, 0, 0, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_asc([2, 0, 0, -1]),-5)),2))",
    "io_inp": [
      2,
      0,
      0,
      -1
    ],
    "io_out": [
      10,
      0,
      0,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(mul_n(sort_asc(input),-5)),2))"
  },
  {
    "input": "input : list = [5, -4, -2]\noutput : list = [40, 80, -100]",
    "output": "generated_output : list = reverse(mul_n(mul_n([5, -4, -2],5),-4))",
    "io_inp": [
      5,
      -4,
      -2
    ],
    "io_out": [
      40,
      80,
      -100
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,5),-4))"
  },
  {
    "input": "input : list = [1, 2, 3, 4]\noutput : list = [-16, -12, -8, -4]",
    "output": "generated_output : list = reverse(mul_n([1, 2, 3, 4],-4))",
    "io_inp": [
      1,
      2,
      3,
      4
    ],
    "io_out": [
      -16,
      -12,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-4))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(reverse(reverse([0, 4])))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-2, -4, 2, 3, -2, -1]\noutput : list = [-6, -8, -2, -1, -6, -5]",
    "output": "generated_output : list = add_n([-2, -4, 2, 3, -2, -1],-4)",
    "io_inp": [
      -2,
      -4,
      2,
      3,
      -2,
      -1
    ],
    "io_out": [
      -6,
      -8,
      -2,
      -1,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -1, 0, -5]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, 0, -5],1)",
    "io_inp": [
      -1,
      -1,
      0,
      -5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 0, 2, 0]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sub_n(drop([3, 0, 2, 0],2),5),1),-3))",
    "io_inp": [
      3,
      0,
      2,
      0
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sub_n(drop(input,2),5),1),-3))"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [-2, 4, 8]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n([-5, 5, 1],4),1)),34)",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      -2,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(input,4),1)),34)"
  },
  {
    "input": "input : list = [-2, 0, 4, 5, 2, 2]\noutput : list = [-1, 1, 3, 3, 5, 6]",
    "output": "generated_output : list = add_n(sub_n(reverse(mul_n(sort_des([-2, 0, 4, 5, 2, 2]),1)),1),2)",
    "io_inp": [
      -2,
      0,
      4,
      5,
      2,
      2
    ],
    "io_out": [
      -1,
      1,
      3,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(mul_n(sort_des(input),1)),1),2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = reverse([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, 0, -2, 2, -5, -4]\noutput : list = [-3, -2, -2, 0, 2, 4]",
    "output": "generated_output : list = take(reverse(sort_des(sub_n(reverse([-4, 0, -2, 2, -5, -4]),-2))),30)",
    "io_inp": [
      -4,
      0,
      -2,
      2,
      -5,
      -4
    ],
    "io_out": [
      -3,
      -2,
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sub_n(reverse(input),-2))),30)"
  },
  {
    "input": "input : list = [1, -3, -3, -1, -5]\noutput : list = [4, 2, 0, 0, -2]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_des(reverse([1, -3, -3, -1, -5])),1),25),-3)",
    "io_inp": [
      1,
      -3,
      -3,
      -1,
      -5
    ],
    "io_out": [
      4,
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_des(reverse(input)),1),25),-3)"
  },
  {
    "input": "input : list = [0, -3, 0, -1, -1, -1]\noutput : list = [-4, -2, -2, -2, -1, -1]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(add_n([0, -3, 0, -1, -1, -1],-1)))))",
    "io_inp": [
      0,
      -3,
      0,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -2,
      -2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [3, 3, -1, -3, 5]\noutput : list = [-5, -5, 3, 7, -9]",
    "output": "generated_output : list = sub_n(mul_n([3, 3, -1, -3, 5],-2),-1)",
    "io_inp": [
      3,
      3,
      -1,
      -3,
      5
    ],
    "io_out": [
      -5,
      -5,
      3,
      7,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-2),-1)"
  },
  {
    "input": "input : list = [4, -4, -1, -3, 1]\noutput : list = [4, -4, -1]",
    "output": "generated_output : list = take([4, -4, -1, -3, 1],3)",
    "io_inp": [
      4,
      -4,
      -1,
      -3,
      1
    ],
    "io_out": [
      4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-4, 2, -1, -2, -4, -5]\noutput : list = [-2, 0, 4, 6, 12, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(add_n([-4, 2, -1, -2, -4, -5],5),26)),-1),2)",
    "io_inp": [
      -4,
      2,
      -1,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -2,
      0,
      4,
      6,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(add_n(input,5),26)),-1),2)"
  },
  {
    "input": "input : list = [1, -4, -3, -2]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(drop([1, -4, -3, -2],1),-2))),2)",
    "io_inp": [
      1,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sub_n(drop(input,1),-2))),2)"
  },
  {
    "input": "input : list = [4, 3, -2, 3, 4]\noutput : list = [-10, -14, -34, -14, -10]",
    "output": "generated_output : list = sub_n(mul_n(take(add_n(sub_n([4, 3, -2, 3, 4],4),-2),22),4),2)",
    "io_inp": [
      4,
      3,
      -2,
      3,
      4
    ],
    "io_out": [
      -10,
      -14,
      -34,
      -14,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(add_n(sub_n(input,4),-2),22),4),2)"
  },
  {
    "input": "input : list = [-2, 2, 1, -1, 4]\noutput : list = [16, 8, 4, -4, -8]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_des([-2, 2, 1, -1, 4]),-2),-2))",
    "io_inp": [
      -2,
      2,
      1,
      -1,
      4
    ],
    "io_out": [
      16,
      8,
      4,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_des(input),-2),-2))"
  },
  {
    "input": "input : list = [1, -2, -4, 1, 2]\noutput : list = [4, 1, -1, 4, 5]",
    "output": "generated_output : list = add_n([1, -2, -4, 1, 2],3)",
    "io_inp": [
      1,
      -2,
      -4,
      1,
      2
    ],
    "io_out": [
      4,
      1,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-3, 4, -3]\noutput : list = [-2, -2, 5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(add_n(add_n([-3, 4, -3],-2),-1),5),-1))",
    "io_inp": [
      -3,
      4,
      -3
    ],
    "io_out": [
      -2,
      -2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(add_n(add_n(input,-2),-1),5),-1))"
  },
  {
    "input": "input : list = [-5, 1, 4]\noutput : list = [4, 7]",
    "output": "generated_output : list = add_n(sub_n(drop([-5, 1, 4],1),-4),-1)",
    "io_inp": [
      -5,
      1,
      4
    ],
    "io_out": [
      4,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),-4),-1)"
  },
  {
    "input": "input : list = [2, -4, 2, 3, 3]\noutput : list = [-1, -1, -2, -2, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([2, -4, 2, 3, 3])),4)",
    "io_inp": [
      2,
      -4,
      2,
      3,
      3
    ],
    "io_out": [
      -1,
      -1,
      -2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-5, 2, 0, 1, 3]\noutput : list = [3, -4]",
    "output": "generated_output : list = sort_des(sub_n(take(sort_des(take([-5, 2, 0, 1, 3],2)),15),-1))",
    "io_inp": [
      -5,
      2,
      0,
      1,
      3
    ],
    "io_out": [
      3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sort_des(take(input,2)),15),-1))"
  },
  {
    "input": "input : list = [0, 4, -1, -3]\noutput : list = [2, 6, 1, -1]",
    "output": "generated_output : list = reverse(sub_n(reverse(take(add_n([0, 4, -1, -3],4),4)),2))",
    "io_inp": [
      0,
      4,
      -1,
      -3
    ],
    "io_out": [
      2,
      6,
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(add_n(input,4),4)),2))"
  },
  {
    "input": "input : list = [1, 4, 2, 2]\noutput : list = [1]",
    "output": "generated_output : list = take(take([1, 4, 2, 2],1),16)",
    "io_inp": [
      1,
      4,
      2,
      2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(input,1),16)"
  },
  {
    "input": "input : list = [-3, 5, 4, -3]\noutput : list = [-3, 5, 4, -3]",
    "output": "generated_output : list = mul_n([-3, 5, 4, -3],1)",
    "io_inp": [
      -3,
      5,
      4,
      -3
    ],
    "io_out": [
      -3,
      5,
      4,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [6, 9]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_des(add_n([4, 1],5)))))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_des(add_n(input,5)))))"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-8, -5]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(sort_asc([0, -3]),5))))",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -8,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [-5, 1, -1, -1, 3, -5]\noutput : list = [4, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sub_n(take([-5, 1, -1, -1, 3, -5],2),-4)),-4),-5)",
    "io_inp": [
      -5,
      1,
      -1,
      -1,
      3,
      -5
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sub_n(take(input,2),-4)),-4),-5)"
  },
  {
    "input": "input : list = [-1, 4, 0, 5, 4, -2]\noutput : list = [-2, -1, 0, 4, 4, 5]",
    "output": "generated_output : list = sort_asc([-1, 4, 0, 5, 4, -2])",
    "io_inp": [
      -1,
      4,
      0,
      5,
      4,
      -2
    ],
    "io_out": [
      -2,
      -1,
      0,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 3, 3, 3, -4]\noutput : list = [-15, -15, -15]",
    "output": "generated_output : list = add_n(mul_n(reverse(take(add_n([3, 3, 3, 3, -4],1),3)),-3),-3)",
    "io_inp": [
      3,
      3,
      3,
      3,
      -4
    ],
    "io_out": [
      -15,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(take(add_n(input,1),3)),-3),-3)"
  },
  {
    "input": "input : list = [-1, -5, 0]\noutput : list = [10, 6, -10]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(add_n([-1, -5, 0],4)),4),-5),1)",
    "io_inp": [
      -1,
      -5,
      0
    ],
    "io_out": [
      10,
      6,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(add_n(input,4)),4),-5),1)"
  },
  {
    "input": "input : list = [-3, 4, 0]\noutput : list = [7]",
    "output": "generated_output : list = sub_n(mul_n(take([-3, 4, 0],1),-2),-1)",
    "io_inp": [
      -3,
      4,
      0
    ],
    "io_out": [
      7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,1),-2),-1)"
  },
  {
    "input": "input : list = [1, -1, 3]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = sort_asc([1, -1, 3])",
    "io_inp": [
      1,
      -1,
      3
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2, 1, 3]\noutput : list = [48, -16, -32, -48]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(mul_n([-3, 2, 1, 3],-4)),4)))",
    "io_inp": [
      -3,
      2,
      1,
      3
    ],
    "io_out": [
      48,
      -16,
      -32,
      -48
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(mul_n(input,-4)),4)))"
  },
  {
    "input": "input : list = [-5, -5, 4, 5]\noutput : list = [1, 0]",
    "output": "generated_output : list = reverse(take(mul_n(add_n(drop([-5, -5, 4, 5],2),-4),1),36))",
    "io_inp": [
      -5,
      -5,
      4,
      5
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(add_n(drop(input,2),-4),1),36))"
  },
  {
    "input": "input : list = [-4, -3, -3, -4, 1, -5]\noutput : list = [4, 3, 3, 4, -1, 5]",
    "output": "generated_output : list = mul_n([-4, -3, -3, -4, 1, -5],-1)",
    "io_inp": [
      -4,
      -3,
      -3,
      -4,
      1,
      -5
    ],
    "io_out": [
      4,
      3,
      3,
      4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [0, -6]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(add_n([4, -2],-1),1)),3),33)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      0,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(add_n(input,-1),1)),3),33)"
  },
  {
    "input": "input : list = [1, -5, -2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_des(drop([1, -5, -2],1)))),1)",
    "io_inp": [
      1,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_des(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [-4, -1, 3, 0, -1]\noutput : list = [-17, -2, 18]",
    "output": "generated_output : list = sub_n(take(mul_n(take(take([-4, -1, 3, 0, -1],3),18),5),4),-3)",
    "io_inp": [
      -4,
      -1,
      3,
      0,
      -1
    ],
    "io_out": [
      -17,
      -2,
      18
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(take(input,3),18),5),4),-3)"
  },
  {
    "input": "input : list = [-1, 2, 1]\noutput : list = [-5, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n([-1, 2, 1],4),3),5))",
    "io_inp": [
      -1,
      2,
      1
    ],
    "io_out": [
      -5,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(input,4),3),5))"
  },
  {
    "input": "input : list = [-5, 3, 1, 2, -1, 2]\noutput : list = [2, -1, 2, 1, 3, -5]",
    "output": "generated_output : list = reverse([-5, 3, 1, 2, -1, 2])",
    "io_inp": [
      -5,
      3,
      1,
      2,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      2,
      1,
      3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 3, -2]\noutput : list = [1, 3, 6, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_des([0, 4, 3, -2]),19))),-3)",
    "io_inp": [
      0,
      4,
      3,
      -2
    ],
    "io_out": [
      1,
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(sort_des(input),19))),-3)"
  },
  {
    "input": "input : list = [-5, -4, -2]\noutput : list = [-4, -8, -10]",
    "output": "generated_output : list = take(mul_n(reverse([-5, -4, -2]),2),19)",
    "io_inp": [
      -5,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),2),19)"
  },
  {
    "input": "input : list = [-4, 4, 3, -2, 3, -3]\noutput : list = [4, 3, 3, -2, -3]",
    "output": "generated_output : list = sort_des(drop([-4, 4, 3, -2, 3, -3],1))",
    "io_inp": [
      -4,
      4,
      3,
      -2,
      3,
      -3
    ],
    "io_out": [
      4,
      3,
      3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 2, 1, 4]\noutput : list = [4, 2, 1, -2]",
    "output": "generated_output : list = sort_des(reverse([-2, 2, 1, 4]))",
    "io_inp": [
      -2,
      2,
      1,
      4
    ],
    "io_out": [
      4,
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, 0, 5, -5, -2]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_des(add_n(take([1, 0, 5, -5, -2],1),2)),-5)",
    "io_inp": [
      1,
      0,
      5,
      -5,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(input,1),2)),-5)"
  },
  {
    "input": "input : list = [1, 3, -1, 3, -5]\noutput : list = [0, 0, -2, -4, -8]",
    "output": "generated_output : list = add_n(sort_des(take(sort_des(sort_des([1, 3, -1, 3, -5])),26)),-3)",
    "io_inp": [
      1,
      3,
      -1,
      3,
      -5
    ],
    "io_out": [
      0,
      0,
      -2,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(sort_des(sort_des(input)),26)),-3)"
  },
  {
    "input": "input : list = [1, -5, -5]\noutput : list = [-2, -2, 10]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_asc([1, -5, -5])),-4),2))",
    "io_inp": [
      1,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(sort_asc(input)),-4),2))"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [26, 18, 2]",
    "output": "generated_output : list = sub_n(sort_des(add_n(mul_n([3, -1, 5],4),3)),-3)",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      26,
      18,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(mul_n(input,4),3)),-3)"
  },
  {
    "input": "input : list = [1, -1, -1, -4, 3]\noutput : list = [32, 24, 24, 12, 40]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n([1, -1, -1, -4, 3],2),5),-1),-4)",
    "io_inp": [
      1,
      -1,
      -1,
      -4,
      3
    ],
    "io_out": [
      32,
      24,
      24,
      12,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(input,2),5),-1),-4)"
  },
  {
    "input": "input : list = [-1, 4, 5, -4, -4, -4]\noutput : list = [2, 7, 8, -1, -1, -1]",
    "output": "generated_output : list = take(mul_n(add_n([-1, 4, 5, -4, -4, -4],3),1),20)",
    "io_inp": [
      -1,
      4,
      5,
      -4,
      -4,
      -4
    ],
    "io_out": [
      2,
      7,
      8,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,3),1),20)"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [5, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, 5])",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 0, -2, 0, 3, 1]\noutput : list = [3, 1, 0, 0, 0, -2]",
    "output": "generated_output : list = sort_des([0, 0, -2, 0, 3, 1])",
    "io_inp": [
      0,
      0,
      -2,
      0,
      3,
      1
    ],
    "io_out": [
      3,
      1,
      0,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2, -2, 0, 5]\noutput : list = [-30, -20, -20, 0, 50]",
    "output": "generated_output : list = mul_n(take(sort_asc(sort_des(mul_n([-3, -2, -2, 0, 5],5))),36),2)",
    "io_inp": [
      -3,
      -2,
      -2,
      0,
      5
    ],
    "io_out": [
      -30,
      -20,
      -20,
      0,
      50
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(sort_des(mul_n(input,5))),36),2)"
  },
  {
    "input": "input : list = [0, 4, 5, -2, 3, -5]\noutput : list = [-4, 4, -1, 6, 5, 1]",
    "output": "generated_output : list = take(take(sub_n(reverse(mul_n([0, 4, 5, -2, 3, -5],1)),-1),39),47)",
    "io_inp": [
      0,
      4,
      5,
      -2,
      3,
      -5
    ],
    "io_out": [
      -4,
      4,
      -1,
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = take(take(sub_n(reverse(mul_n(input,1)),-1),39),47)"
  },
  {
    "input": "input : list = [5, 3, -5]\noutput : list = [5, 3, -5]",
    "output": "generated_output : list = take(sort_des([5, 3, -5]),12)",
    "io_inp": [
      5,
      3,
      -5
    ],
    "io_out": [
      5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),12)"
  },
  {
    "input": "input : list = [3, -3, 1, -2]\noutput : list = [7, 8, 11, 13]",
    "output": "generated_output : list = add_n(take(sort_asc(take(add_n([3, -3, 1, -2],5),19)),30),5)",
    "io_inp": [
      3,
      -3,
      1,
      -2
    ],
    "io_out": [
      7,
      8,
      11,
      13
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(take(add_n(input,5),19)),30),5)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [-24, -12, -52]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(sub_n([5, -5, -2],-4),-3),1)),-4)",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      -24,
      -12,
      -52
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(sub_n(input,-4),-3),1)),-4)"
  },
  {
    "input": "input : list = [-4, -1, -2, -3, 4, 1]\noutput : list = [-16, -4, -8, -12, 16, 4]",
    "output": "generated_output : list = mul_n([-4, -1, -2, -3, 4, 1],4)",
    "io_inp": [
      -4,
      -1,
      -2,
      -3,
      4,
      1
    ],
    "io_out": [
      -16,
      -4,
      -8,
      -12,
      16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-5, 0, 1, 1]\noutput : list = [15, -5, -9, -9]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(sort_asc([-5, 0, 1, 1])),-4),5),21)",
    "io_inp": [
      -5,
      0,
      1,
      1
    ],
    "io_out": [
      15,
      -5,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(sort_asc(input)),-4),5),21)"
  },
  {
    "input": "input : list = [-5, 0, -5, 3]\noutput : list = [3, 0, -5]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(drop([-5, 0, -5, 3],1),16))))",
    "io_inp": [
      -5,
      0,
      -5,
      3
    ],
    "io_out": [
      3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(drop(input,1),16))))"
  },
  {
    "input": "input : list = [4, -1, 3, -4]\noutput : list = [11, 4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(drop([4, -1, 3, -4],2),-5),-3)))",
    "io_inp": [
      4,
      -1,
      3,
      -4
    ],
    "io_out": [
      11,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(drop(input,2),-5),-3)))"
  },
  {
    "input": "input : list = [5, -4, 1, -3, -1, -3]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take([5, -4, 1, -3, -1, -3],1),-1)",
    "io_inp": [
      5,
      -4,
      1,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-1)"
  },
  {
    "input": "input : list = [-3, 1, -2]\noutput : list = [-4, -3, 0]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([-3, 1, -2],1)),-1)",
    "io_inp": [
      -3,
      1,
      -2
    ],
    "io_out": [
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,1)),-1)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [5, 0]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_asc([-4, 1])),-4)))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      5,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(sort_asc(sort_asc(input)),-4)))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sort_asc([0, 5])),-5))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sort_asc(input)),-5))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(mul_n([-1, 2],-1))",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-1, 1, 3, -5, -2, 4]\noutput : list = [-5, -2, -1, 1, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_des([-1, 1, 3, -5, -2, 4]))",
    "io_inp": [
      -1,
      1,
      3,
      -5,
      -2,
      4
    ],
    "io_out": [
      -5,
      -2,
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, 0, -2, -4]\noutput : list = [-50, 0, 25, 50]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n([-1, 0, -2, -4],2),5)),25),5)",
    "io_inp": [
      -1,
      0,
      -2,
      -4
    ],
    "io_out": [
      -50,
      0,
      25,
      50
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n(input,2),5)),25),5)"
  },
  {
    "input": "input : list = [-1, 3, -1]\noutput : list = [-12, 4]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(mul_n(drop([-1, 3, -1],1),4))),-1)",
    "io_inp": [
      -1,
      3,
      -1
    ],
    "io_out": [
      -12,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(mul_n(drop(input,1),4))),-1)"
  },
  {
    "input": "input : list = [1, -1, 5, -5, 4]\noutput : list = [-1, -3, 3, -7, 2]",
    "output": "generated_output : list = sub_n([1, -1, 5, -5, 4],2)",
    "io_inp": [
      1,
      -1,
      5,
      -5,
      4
    ],
    "io_out": [
      -1,
      -3,
      3,
      -7,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [0, 0, -1, -2]\noutput : list = [3, 3, 2, 1]",
    "output": "generated_output : list = take(sub_n([0, 0, -1, -2],-3),9)",
    "io_inp": [
      0,
      0,
      -1,
      -2
    ],
    "io_out": [
      3,
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),9)"
  },
  {
    "input": "input : list = [-4, 1, -1, -3]\noutput : list = [-9, -3, 3, -12]",
    "output": "generated_output : list = mul_n(reverse([-4, 1, -1, -3]),3)",
    "io_inp": [
      -4,
      1,
      -1,
      -3
    ],
    "io_out": [
      -9,
      -3,
      3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),3)"
  },
  {
    "input": "input : list = [-5, 4, -5, -1]\noutput : list = [-2, -2, 2, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-5, 4, -5, -1]),3))",
    "io_inp": [
      -5,
      4,
      -5,
      -1
    ],
    "io_out": [
      -2,
      -2,
      2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),3))"
  },
  {
    "input": "input : list = [-5, 3, 5, 2, 3, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = add_n(add_n(sort_des(take([-5, 3, 5, 2, 3, 3],2)),2),-2)",
    "io_inp": [
      -5,
      3,
      5,
      2,
      3,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(input,2)),2),-2)"
  },
  {
    "input": "input : list = [1, 4, -2]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 4, -2],1)",
    "io_inp": [
      1,
      4,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 0, 4, 4, -1, 0]\noutput : list = [8, 6, 14, 14, 4, 6]",
    "output": "generated_output : list = sub_n(take(sub_n(take(mul_n([1, 0, 4, 4, -1, 0],2),15),-5),10),-1)",
    "io_inp": [
      1,
      0,
      4,
      4,
      -1,
      0
    ],
    "io_out": [
      8,
      6,
      14,
      14,
      4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(mul_n(input,2),15),-5),10),-1)"
  },
  {
    "input": "input : list = [-2, 5, -1]\noutput : list = [4, 2, -10]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc([-2, 5, -1])),-2)),1)",
    "io_inp": [
      -2,
      5,
      -1
    ],
    "io_out": [
      4,
      2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(sort_asc(input)),-2)),1)"
  },
  {
    "input": "input : list = [2, -2, -4, -2, 0]\noutput : list = [2, 0, -2, -2, -4]",
    "output": "generated_output : list = take(sort_des(sub_n(add_n(reverse([2, -2, -4, -2, 0]),3),3)),15)",
    "io_inp": [
      2,
      -2,
      -4,
      -2,
      0
    ],
    "io_out": [
      2,
      0,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(add_n(reverse(input),3),3)),15)"
  },
  {
    "input": "input : list = [0, 2, 0, 5, 4, 1]\noutput : list = [1, 4, 5, 0, 2, 0]",
    "output": "generated_output : list = reverse([0, 2, 0, 5, 4, 1])",
    "io_inp": [
      0,
      2,
      0,
      5,
      4,
      1
    ],
    "io_out": [
      1,
      4,
      5,
      0,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [0, 6]",
    "output": "generated_output : list = take(sub_n(add_n(add_n(add_n([-2, 4],2),-2),3),1),3)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(add_n(add_n(input,2),-2),3),1),3)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc([-5, -4])",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 4, 2],1)",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -4, 1, 2, 2, -4]\noutput : list = [4, 4, 3, -2]",
    "output": "generated_output : list = sort_des(add_n(add_n(reverse(take([2, -4, 1, 2, 2, -4],4)),4),-2))",
    "io_inp": [
      2,
      -4,
      1,
      2,
      2,
      -4
    ],
    "io_out": [
      4,
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(reverse(take(input,4)),4),-2))"
  },
  {
    "input": "input : list = [3, -5, -5, 2, -5]\noutput : list = [0, -8, -8, -1, -8]",
    "output": "generated_output : list = sub_n([3, -5, -5, 2, -5],3)",
    "io_inp": [
      3,
      -5,
      -5,
      2,
      -5
    ],
    "io_out": [
      0,
      -8,
      -8,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, 1, -3]\noutput : list = [1, -3]",
    "output": "generated_output : list = drop([4, 1, -3],1)",
    "io_inp": [
      4,
      1,
      -3
    ],
    "io_out": [
      1,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-4, -6]",
    "output": "generated_output : list = add_n([-2, -4],-2)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [1, -3, -4, 2]\noutput : list = [16, -8]",
    "output": "generated_output : list = mul_n(drop([1, -3, -4, 2],2),-4)",
    "io_inp": [
      1,
      -3,
      -4,
      2
    ],
    "io_out": [
      16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-4)"
  },
  {
    "input": "input : list = [-1, 0, 1, 4]\noutput : list = [1, 4]",
    "output": "generated_output : list = drop([-1, 0, 1, 4],2)",
    "io_inp": [
      -1,
      0,
      1,
      4
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 1, 1, -4, -4]\noutput : list = [1, 1, -4, -4]",
    "output": "generated_output : list = drop([3, 1, 1, -4, -4],1)",
    "io_inp": [
      3,
      1,
      1,
      -4,
      -4
    ],
    "io_out": [
      1,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -4, 1, -1, 3, -2]\noutput : list = [1, -1, 3, -2]",
    "output": "generated_output : list = drop([-4, -4, 1, -1, 3, -2],2)",
    "io_inp": [
      -4,
      -4,
      1,
      -1,
      3,
      -2
    ],
    "io_out": [
      1,
      -1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, 1, -1, -1, -3]\noutput : list = [-6, -4, -4, -2, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse([4, 1, -1, -1, -3])),3)",
    "io_inp": [
      4,
      1,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -4,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(input)),3)"
  },
  {
    "input": "input : list = [-2, -1, 5, 1, -4, 5]\noutput : list = [2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n(take([-2, -1, 5, 1, -4, 5],1),4))))",
    "io_inp": [
      -2,
      -1,
      5,
      1,
      -4,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(take(input,1),4))))"
  },
  {
    "input": "input : list = [3, 5, -4, -4]\noutput : list = [2, 4, -5]",
    "output": "generated_output : list = take(sub_n([3, 5, -4, -4],1),3)",
    "io_inp": [
      3,
      5,
      -4,
      -4
    ],
    "io_out": [
      2,
      4,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,1),3)"
  },
  {
    "input": "input : list = [-1, -3, 0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(drop([-1, -3, 0, 3],2),7))))",
    "io_inp": [
      -1,
      -3,
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(drop(input,2),7))))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [4, 1]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sub_n(reverse([1, -2]),-1)),2))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sub_n(reverse(input),-1)),2))"
  },
  {
    "input": "input : list = [3, -2, 3, 2, -2, 4]\noutput : list = [-15, 10]",
    "output": "generated_output : list = mul_n(take(sort_des(reverse(take([3, -2, 3, 2, -2, 4],2))),23),-5)",
    "io_inp": [
      3,
      -2,
      3,
      2,
      -2,
      4
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(reverse(take(input,2))),23),-5)"
  },
  {
    "input": "input : list = [0, -5, 2, -4]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(add_n(add_n(take([0, -5, 2, -4],1),5),-4),34))",
    "io_inp": [
      0,
      -5,
      2,
      -4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(add_n(take(input,1),5),-4),34))"
  },
  {
    "input": "input : list = [4, -5, -3]\noutput : list = [-8, -6]",
    "output": "generated_output : list = add_n(drop([4, -5, -3],1),-3)",
    "io_inp": [
      4,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [3, 0, -1, -3]\noutput : list = [3, 0, -1, -3]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(reverse([3, 0, -1, -3]))),23))",
    "io_inp": [
      3,
      0,
      -1,
      -3
    ],
    "io_out": [
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(reverse(input))),23))"
  },
  {
    "input": "input : list = [5, 4, -5, 0]\noutput : list = [1, 2, 11, 6]",
    "output": "generated_output : list = sub_n(take(sub_n(mul_n(sub_n([5, 4, -5, 0],-2),-1),-4),6),-4)",
    "io_inp": [
      5,
      4,
      -5,
      0
    ],
    "io_out": [
      1,
      2,
      11,
      6
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(mul_n(sub_n(input,-2),-1),-4),6),-4)"
  },
  {
    "input": "input : list = [1, -1, 5, 0]\noutput : list = [5, 1, 0, -1]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc([1, -1, 5, 0])),1)",
    "io_inp": [
      1,
      -1,
      5,
      0
    ],
    "io_out": [
      5,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-4, 5, 1, 2, 2]\noutput : list = [0, 0, -1]",
    "output": "generated_output : list = take(add_n(add_n(reverse(drop([-4, 5, 1, 2, 2],2)),-3),1),4)",
    "io_inp": [
      -4,
      5,
      1,
      2,
      2
    ],
    "io_out": [
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(drop(input,2)),-3),1),4)"
  },
  {
    "input": "input : list = [-5, 1, 1, -1, -4]\noutput : list = [-29, -24, -9, 1, 1]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(mul_n([-5, 1, 1, -1, -4],5)))),-4)",
    "io_inp": [
      -5,
      1,
      1,
      -1,
      -4
    ],
    "io_out": [
      -29,
      -24,
      -9,
      1,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(mul_n(input,5)))),-4)"
  },
  {
    "input": "input : list = [0, 3, -3, 2, -3, -2]\noutput : list = [-2, -8]",
    "output": "generated_output : list = mul_n(add_n(sort_des(take([0, 3, -3, 2, -3, -2],2)),-4),2)",
    "io_inp": [
      0,
      3,
      -3,
      2,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(take(input,2)),-4),2)"
  },
  {
    "input": "input : list = [3, 0, 3]\noutput : list = [8, 8, 5]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse([3, 0, 3])))),-5)",
    "io_inp": [
      3,
      0,
      3
    ],
    "io_out": [
      8,
      8,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [-2, 0, -5]\noutput : list = [-5, 0, -2]",
    "output": "generated_output : list = reverse([-2, 0, -5])",
    "io_inp": [
      -2,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-2, -8]",
    "output": "generated_output : list = mul_n(reverse([4, 1]),-2)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-1, -1, -1]\noutput : list = [20, 20, 20]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sub_n([-1, -1, -1],4),2),-2)))",
    "io_inp": [
      -1,
      -1,
      -1
    ],
    "io_out": [
      20,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(sub_n(input,4),2),-2)))"
  },
  {
    "input": "input : list = [-4, 3, -2, -1]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(take([-4, 3, -2, -1],1)))),-3)",
    "io_inp": [
      -4,
      3,
      -2,
      -1
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(take(input,1)))),-3)"
  },
  {
    "input": "input : list = [2, -5, 0, 0]\noutput : list = [-6, -1, -1, 1]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(add_n([2, -5, 0, 0],-2)),1),13))",
    "io_inp": [
      2,
      -5,
      0,
      0
    ],
    "io_out": [
      -6,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(add_n(input,-2)),1),13))"
  },
  {
    "input": "input : list = [-1, -3, 4, -4, -5]\noutput : list = [-20, -15, -10, 0, 25]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(take(add_n([-1, -3, 4, -4, -5],3),26),-2),5))",
    "io_inp": [
      -1,
      -3,
      4,
      -4,
      -5
    ],
    "io_out": [
      -20,
      -15,
      -10,
      0,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(take(add_n(input,3),26),-2),5))"
  },
  {
    "input": "input : list = [-2, 1, 1, -2]\noutput : list = [2, 2, -1, -1]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(sub_n([-2, 1, 1, -2],-1),13))))",
    "io_inp": [
      -2,
      1,
      1,
      -2
    ],
    "io_out": [
      2,
      2,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(sub_n(input,-1),13))))"
  },
  {
    "input": "input : list = [2, -4, 0, 4, -5, -4]\noutput : list = [-8, 0]",
    "output": "generated_output : list = mul_n(sort_des(drop(sort_asc(drop([2, -4, 0, 4, -5, -4],1)),3)),-2)",
    "io_inp": [
      2,
      -4,
      0,
      4,
      -5,
      -4
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(sort_asc(drop(input,1)),3)),-2)"
  },
  {
    "input": "input : list = [-5, 3, 2, -2, 5, -3]\noutput : list = [-4, 0, 2, 10, 12, 16]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(mul_n(add_n([-5, 3, 2, -2, 5, -3],4),-2)),-1),2)",
    "io_inp": [
      -5,
      3,
      2,
      -2,
      5,
      -3
    ],
    "io_out": [
      -4,
      0,
      2,
      10,
      12,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(mul_n(add_n(input,4),-2)),-1),2)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-4, -9]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n([-4, 1],-2),3),10))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(input,-2),3),10))"
  },
  {
    "input": "input : list = [4, 4, -2, -2, 1]\noutput : list = [1, 1, -5, -5, -2]",
    "output": "generated_output : list = sub_n([4, 4, -2, -2, 1],3)",
    "io_inp": [
      4,
      4,
      -2,
      -2,
      1
    ],
    "io_out": [
      1,
      1,
      -5,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, -1, -2, -2, 4, 5]\noutput : list = [8, 7, 2, 1, 1, -2]",
    "output": "generated_output : list = mul_n(add_n(take(take(sort_des([-5, -1, -2, -2, 4, 5]),7),29),3),1)",
    "io_inp": [
      -5,
      -1,
      -2,
      -2,
      4,
      5
    ],
    "io_out": [
      8,
      7,
      2,
      1,
      1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(sort_des(input),7),29),3),1)"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = add_n(reverse([3, -5]),2)",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [-4, 1, 1]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = sort_des(add_n(sub_n(add_n(add_n([-4, 1, 1],-4),1),1),4))",
    "io_inp": [
      -4,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(add_n(add_n(input,-4),1),1),4))"
  },
  {
    "input": "input : list = [-1, -5, -3, 0, 5]\noutput : list = [1, -3, -1, 2, 7]",
    "output": "generated_output : list = take(add_n([-1, -5, -3, 0, 5],2),18)",
    "io_inp": [
      -1,
      -5,
      -3,
      0,
      5
    ],
    "io_out": [
      1,
      -3,
      -1,
      2,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(input,2),18)"
  },
  {
    "input": "input : list = [-4, -1, -5, -2, 1]\noutput : list = [1, -1, -2, -4, -5]",
    "output": "generated_output : list = sort_des(take(reverse([-4, -1, -5, -2, 1]),17))",
    "io_inp": [
      -4,
      -1,
      -5,
      -2,
      1
    ],
    "io_out": [
      1,
      -1,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),17))"
  },
  {
    "input": "input : list = [-3, -4, -3, 5, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(take(drop(sort_asc([-3, -4, -3, 5, 2]),3),8))",
    "io_inp": [
      -3,
      -4,
      -3,
      5,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(sort_asc(input),3),8))"
  },
  {
    "input": "input : list = [-5, 3, -3, -1, -2, 0]\noutput : list = [9, 0, -3, -6, -9, -15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(reverse([-5, 3, -3, -1, -2, 0])))),3)",
    "io_inp": [
      -5,
      3,
      -3,
      -1,
      -2,
      0
    ],
    "io_out": [
      9,
      0,
      -3,
      -6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(reverse(input)))),3)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [-5, -5]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(sub_n([4, 4],5),-5),2),-2),1)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(sub_n(input,5),-5),2),-2),1)"
  },
  {
    "input": "input : list = [0, -3, -3, 1, -1]\noutput : list = [1, 3, 3]",
    "output": "generated_output : list = drop(take(mul_n(sort_des(sort_asc([0, -3, -3, 1, -1])),-1),34),2)",
    "io_inp": [
      0,
      -3,
      -3,
      1,
      -1
    ],
    "io_out": [
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = drop(take(mul_n(sort_des(sort_asc(input)),-1),34),2)"
  },
  {
    "input": "input : list = [2, 1, -1]\noutput : list = [-50, -55, -65]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(sub_n([2, 1, -1],4),14),-4),4),5)",
    "io_inp": [
      2,
      1,
      -1
    ],
    "io_out": [
      -50,
      -55,
      -65
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(sub_n(input,4),14),-4),4),5)"
  },
  {
    "input": "input : list = [-3, 5, -3, 2]\noutput : list = [-5, 3, -5, 0]",
    "output": "generated_output : list = sub_n([-3, 5, -3, 2],2)",
    "io_inp": [
      -3,
      5,
      -3,
      2
    ],
    "io_out": [
      -5,
      3,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, 5, 1]\noutput : list = [1, 3, 5]",
    "output": "generated_output : list = sort_asc([3, 5, 1])",
    "io_inp": [
      3,
      5,
      1
    ],
    "io_out": [
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-4, -6]",
    "output": "generated_output : list = sub_n([-1, -3],3)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -4,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, 5, -4, -3, 1, -4]\noutput : list = [-7, 1, -8]",
    "output": "generated_output : list = add_n(take(sub_n([-3, 5, -4, -3, 1, -4],2),3),-2)",
    "io_inp": [
      -3,
      5,
      -4,
      -3,
      1,
      -4
    ],
    "io_out": [
      -7,
      1,
      -8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,2),3),-2)"
  },
  {
    "input": "input : list = [0, -1, 5, 5, 2]\noutput : list = [-10, 0, 20, 50, 50]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(mul_n([0, -1, 5, 5, 2],2)),5)))",
    "io_inp": [
      0,
      -1,
      5,
      5,
      2
    ],
    "io_out": [
      -10,
      0,
      20,
      50,
      50
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(mul_n(input,2)),5)))"
  },
  {
    "input": "input : list = [1, 4, 1, -4, -1, -4]\noutput : list = [-8, -5, -8, -3]",
    "output": "generated_output : list = reverse(reverse(add_n(reverse(drop([1, 4, 1, -4, -1, -4],2)),-4)))",
    "io_inp": [
      1,
      4,
      1,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -8,
      -5,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(reverse(drop(input,2)),-4)))"
  },
  {
    "input": "input : list = [-5, 2, 5, -3, -4]\noutput : list = [5, 2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(reverse(sort_asc([-5, 2, 5, -3, -4])))))",
    "io_inp": [
      -5,
      2,
      5,
      -3,
      -4
    ],
    "io_out": [
      5,
      2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, 1, 1, -5]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(reverse(add_n(sort_des(drop([4, 1, 1, -5],2)),2)))",
    "io_inp": [
      4,
      1,
      1,
      -5
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(sort_des(drop(input,2)),2)))"
  },
  {
    "input": "input : list = [2, 4, 0]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = sort_des(add_n(reverse([2, 4, 0]),-2))",
    "io_inp": [
      2,
      4,
      0
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [-1, 1, -4, -1]\noutput : list = [-6, -24, -24, -51]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(mul_n([-1, 1, -4, -1],3)),1),-5),3)",
    "io_inp": [
      -1,
      1,
      -4,
      -1
    ],
    "io_out": [
      -6,
      -24,
      -24,
      -51
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(mul_n(input,3)),1),-5),3)"
  },
  {
    "input": "input : list = [-3, 3, 0, 3]\noutput : list = [2, 8, 5, 8]",
    "output": "generated_output : list = sub_n(sub_n(add_n(add_n(sub_n([-3, 3, 0, 3],-2),-3),-1),-2),-5)",
    "io_inp": [
      -3,
      3,
      0,
      3
    ],
    "io_out": [
      2,
      8,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(add_n(sub_n(input,-2),-3),-1),-2),-5)"
  },
  {
    "input": "input : list = [2, -2, 5, 2, -2, 5]\noutput : list = [1, 1, -3, -3, -6, -6]",
    "output": "generated_output : list = sort_des(mul_n(add_n([2, -2, 5, 2, -2, 5],1),-1))",
    "io_inp": [
      2,
      -2,
      5,
      2,
      -2,
      5
    ],
    "io_out": [
      1,
      1,
      -3,
      -3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,1),-1))"
  },
  {
    "input": "input : list = [-5, 4, 2, 2, 1]\noutput : list = [-24, -18, -18, -15, 3]",
    "output": "generated_output : list = mul_n(add_n(take(sort_des(reverse([-5, 4, 2, 2, 1])),23),4),-3)",
    "io_inp": [
      -5,
      4,
      2,
      2,
      1
    ],
    "io_out": [
      -24,
      -18,
      -18,
      -15,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(sort_des(reverse(input)),23),4),-3)"
  },
  {
    "input": "input : list = [-1, 3, -2, 5]\noutput : list = [5]",
    "output": "generated_output : list = drop(take(sort_asc(sort_des(drop([-1, 3, -2, 5],1))),10),2)",
    "io_inp": [
      -1,
      3,
      -2,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(sort_des(drop(input,1))),10),2)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-11, -12]",
    "output": "generated_output : list = add_n(sub_n(sort_des(reverse(sub_n([-5, -4],5))),-1),-3)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -11,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(reverse(sub_n(input,5))),-1),-3)"
  },
  {
    "input": "input : list = [-3, 5, -1]\noutput : list = [-3]",
    "output": "generated_output : list = sort_des(take([-3, 5, -1],1))",
    "io_inp": [
      -3,
      5,
      -1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(take(sub_n(take(sort_des([2, 4]),13),1),29))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(take(sort_des(input),13),1),29))"
  },
  {
    "input": "input : list = [2, -2, 3, 1, 4]\noutput : list = [-8]",
    "output": "generated_output : list = mul_n(mul_n(take([2, -2, 3, 1, 4],1),4),-1)",
    "io_inp": [
      2,
      -2,
      3,
      1,
      4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(input,1),4),-1)"
  },
  {
    "input": "input : list = [3, -2, -2, 3, -5, -5]\noutput : list = [-8, -8, -5, -5, 0, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_des([3, -2, -2, 3, -5, -5]),2))),5)",
    "io_inp": [
      3,
      -2,
      -2,
      3,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -5,
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(sort_des(input),2))),5)"
  },
  {
    "input": "input : list = [5, 5, -4]\noutput : list = [2, 11, 11]",
    "output": "generated_output : list = sort_asc(sub_n(take(sub_n(sort_asc([5, 5, -4]),-3),4),-3))",
    "io_inp": [
      5,
      5,
      -4
    ],
    "io_out": [
      2,
      11,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sub_n(sort_asc(input),-3),4),-3))"
  },
  {
    "input": "input : list = [3, 4, 2, 3, 5, -4]\noutput : list = [-10, -4, -3, -3, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sort_des([3, 4, 2, 3, 5, -4]),-5),-3),4))",
    "io_inp": [
      3,
      4,
      2,
      3,
      5,
      -4
    ],
    "io_out": [
      -10,
      -4,
      -3,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(add_n(sort_des(input),-5),-3),4))"
  },
  {
    "input": "input : list = [5, 4, 4, 3, -3]\noutput : list = [-51, 39]",
    "output": "generated_output : list = add_n(drop(add_n(mul_n(mul_n([5, 4, 4, 3, -3],3),-5),-5),3),-1)",
    "io_inp": [
      5,
      4,
      4,
      3,
      -3
    ],
    "io_out": [
      -51,
      39
    ],
    "output_masked": "generated_output : list = add_n(drop(add_n(mul_n(mul_n(input,3),-5),-5),3),-1)"
  },
  {
    "input": "input : list = [1, -3]\noutput : list = [7, 3]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(sub_n([1, -3],-1))),5),24)",
    "io_inp": [
      1,
      -3
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(sub_n(input,-1))),5),24)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(reverse([0, 0]))),-3),14)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(reverse(input))),-3),14)"
  },
  {
    "input": "input : list = [-4, -3, 0, -4]\noutput : list = [-5, -5, -4, -1]",
    "output": "generated_output : list = sub_n(sort_asc(add_n([-4, -3, 0, -4],2)),3)",
    "io_inp": [
      -4,
      -3,
      0,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(input,2)),3)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [2, 2]",
    "output": "generated_output : list = sub_n([-1, -1],-3)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [4, -4, 2]\noutput : list = [-20, -12, 12]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n([4, -4, 2],-4),1),-5)))",
    "io_inp": [
      4,
      -4,
      2
    ],
    "io_out": [
      -20,
      -12,
      12
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n(input,-4),1),-5)))"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [0, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([4, 0, 4]))",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      0,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, -4, 5, 4, 1, 4]\noutput : list = [25, 20, 5, 20]",
    "output": "generated_output : list = mul_n(take(mul_n(drop([-1, -4, 5, 4, 1, 4],2),1),33),5)",
    "io_inp": [
      -1,
      -4,
      5,
      4,
      1,
      4
    ],
    "io_out": [
      25,
      20,
      5,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(drop(input,2),1),33),5)"
  },
  {
    "input": "input : list = [-1, -4, -5, 2]\noutput : list = [-8, 4, 16, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(reverse(reverse([-1, -4, -5, 2])),-4)))",
    "io_inp": [
      -1,
      -4,
      -5,
      2
    ],
    "io_out": [
      -8,
      4,
      16,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_des(sub_n(reverse([-2, -2]),4))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(input),4))"
  },
  {
    "input": "input : list = [-2, -1, 0, 3, 5, 5]\noutput : list = [5, 5, 3, 0, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(sort_des([-2, -1, 0, 3, 5, 5]),13))))",
    "io_inp": [
      -2,
      -1,
      0,
      3,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(sort_des(input),13))))"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(add_n(take(sort_asc(reverse([5, 1])),1),-2),-1)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sort_asc(reverse(input)),1),-2),-1)"
  },
  {
    "input": "input : list = [-4, 3, -3]\noutput : list = [-8, 6, -6]",
    "output": "generated_output : list = mul_n([-4, 3, -3],2)",
    "io_inp": [
      -4,
      3,
      -3
    ],
    "io_out": [
      -8,
      6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [3, -1]",
    "output": "generated_output : list = add_n(sort_des(take(take(reverse([0, 4]),7),13)),-1)",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(reverse(input),7),13)),-1)"
  },
  {
    "input": "input : list = [-2, -4, -4]\noutput : list = [-4, -4]",
    "output": "generated_output : list = drop([-2, -4, -4],1)",
    "io_inp": [
      -2,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, -5, -5, 1, 0, 1]\noutput : list = [3, 3, 7, 8, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(add_n([-1, -5, -5, 1, 0, 1],2),-5),1)))",
    "io_inp": [
      -1,
      -5,
      -5,
      1,
      0,
      1
    ],
    "io_out": [
      3,
      3,
      7,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(add_n(input,2),-5),1)))"
  },
  {
    "input": "input : list = [1, -2, 2, 2, -2]\noutput : list = [-15, -15, -10, 5, 5]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_asc(sub_n([1, -2, 2, 2, -2],-2))),-5),5)",
    "io_inp": [
      1,
      -2,
      2,
      2,
      -2
    ],
    "io_out": [
      -15,
      -15,
      -10,
      5,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_asc(sub_n(input,-2))),-5),5)"
  },
  {
    "input": "input : list = [-3, -1, -2]\noutput : list = [1, 2, 3]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n(reverse([-3, -1, -2]),-1)),17))",
    "io_inp": [
      -3,
      -1,
      -2
    ],
    "io_out": [
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(reverse(input),-1)),17))"
  },
  {
    "input": "input : list = [-3, 5, -2, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, 5, -2, 5],1)",
    "io_inp": [
      -3,
      5,
      -2,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, 3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(take(reverse([3, 3, 0]),2))",
    "io_inp": [
      3,
      3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),2))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [9, 6]",
    "output": "generated_output : list = add_n(sort_des(sub_n([3, 0],-3)),3)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      9,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(input,-3)),3)"
  },
  {
    "input": "input : list = [2, 4, -1, -4]\noutput : list = [-20, -14, -8, -4]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_des([2, 4, -1, -4]),1),5)),2)",
    "io_inp": [
      2,
      4,
      -1,
      -4
    ],
    "io_out": [
      -20,
      -14,
      -8,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(sort_des(input),1),5)),2)"
  },
  {
    "input": "input : list = [-5, 1, -5, 4, 5]\noutput : list = [4, 5]",
    "output": "generated_output : list = drop([-5, 1, -5, 4, 5],3)",
    "io_inp": [
      -5,
      1,
      -5,
      4,
      5
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-3, -3, 4]\noutput : list = [5, -2, -2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n([-3, -3, 4],-2))),-1))",
    "io_inp": [
      -3,
      -3,
      4
    ],
    "io_out": [
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(reverse(sub_n(input,-2))),-1))"
  },
  {
    "input": "input : list = [2, -4, -3, -1]\noutput : list = [2, -1, -3, -4]",
    "output": "generated_output : list = sort_des(take(take(reverse(sort_asc([2, -4, -3, -1])),14),9))",
    "io_inp": [
      2,
      -4,
      -3,
      -1
    ],
    "io_out": [
      2,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(sort_asc(input)),14),9))"
  },
  {
    "input": "input : list = [1, 5, -5]\noutput : list = [-3, -15]",
    "output": "generated_output : list = take(mul_n([1, 5, -5],-3),2)",
    "io_inp": [
      1,
      5,
      -5
    ],
    "io_out": [
      -3,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),2)"
  },
  {
    "input": "input : list = [-1, 1, -5, -1]\noutput : list = [-4, 0, 0, 2]",
    "output": "generated_output : list = reverse(sort_des(add_n(take(reverse([-1, 1, -5, -1]),14),1)))",
    "io_inp": [
      -1,
      1,
      -5,
      -1
    ],
    "io_out": [
      -4,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(take(reverse(input),14),1)))"
  },
  {
    "input": "input : list = [-5, 2, 2, 3, 1]\noutput : list = [12, 7, 7, 2, -28]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(mul_n([-5, 2, 2, 3, 1],5))),3))",
    "io_inp": [
      -5,
      2,
      2,
      3,
      1
    ],
    "io_out": [
      12,
      7,
      7,
      2,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sort_des(mul_n(input,5))),3))"
  },
  {
    "input": "input : list = [-5, 4, 2, -5]\noutput : list = [4, 2, -5, -5]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(sort_asc([-5, 4, 2, -5])))),11)",
    "io_inp": [
      -5,
      4,
      2,
      -5
    ],
    "io_out": [
      4,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(sort_asc(input)))),11)"
  },
  {
    "input": "input : list = [-1, 0, 4, 3, -1]\noutput : list = [0, 4, 3, -1]",
    "output": "generated_output : list = drop([-1, 0, 4, 3, -1],1)",
    "io_inp": [
      -1,
      0,
      4,
      3,
      -1
    ],
    "io_out": [
      0,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 5, -1, -5, 0, 3]\noutput : list = [-24, -8, -8, -4, 8, 16]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n([-1, 5, -1, -5, 0, 3],4))),4)",
    "io_inp": [
      -1,
      5,
      -1,
      -5,
      0,
      3
    ],
    "io_out": [
      -24,
      -8,
      -8,
      -4,
      8,
      16
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(input,4))),4)"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [2]",
    "output": "generated_output : list = add_n(add_n(drop(sort_asc(sub_n([0, -5, 0],-3)),2),4),-5)",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(sort_asc(sub_n(input,-3)),2),4),-5)"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(take(take([2, 1, -2],1),8),-1),-1))",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(take(take(input,1),8),-1),-1))"
  },
  {
    "input": "input : list = [-1, -3, -1, -3, -5, -1]\noutput : list = [0, 0, 0]",
    "output": "generated_output : list = reverse(drop(sort_asc(add_n(sort_asc([-1, -3, -1, -3, -5, -1]),1)),3))",
    "io_inp": [
      -1,
      -3,
      -1,
      -3,
      -5,
      -1
    ],
    "io_out": [
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(add_n(sort_asc(input),1)),3))"
  },
  {
    "input": "input : list = [2, -4, -1, -3, 3]\noutput : list = [2, -4]",
    "output": "generated_output : list = take([2, -4, -1, -3, 3],2)",
    "io_inp": [
      2,
      -4,
      -1,
      -3,
      3
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, 0, 2, 4, -1]\noutput : list = [5, 3, 1, 0, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(sort_asc([-4, 0, 2, 4, -1]))),1))",
    "io_inp": [
      -4,
      0,
      2,
      4,
      -1
    ],
    "io_out": [
      5,
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [-2, -3, 1, 5, 3]\noutput : list = [-3, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(drop([-2, -3, 1, 5, 3],1))",
    "io_inp": [
      -2,
      -3,
      1,
      5,
      3
    ],
    "io_out": [
      -3,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [0, -5, -2, 4]\noutput : list = [-1, -5, -7, -10]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(sort_des([0, -5, -2, 4]),5))),19)",
    "io_inp": [
      0,
      -5,
      -2,
      4
    ],
    "io_out": [
      -1,
      -5,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(sort_des(input),5))),19)"
  },
  {
    "input": "input : list = [-3, 1, -5, -1, 2, 1]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(add_n(take(sort_des(drop([-3, 1, -5, -1, 2, 1],4)),20),-4),2)",
    "io_inp": [
      -3,
      1,
      -5,
      -1,
      2,
      1
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(drop(input,4)),20),-4),2)"
  },
  {
    "input": "input : list = [5, 1, 3, -2, 3]\noutput : list = [-2, 1, 3, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 1, 3, -2, 3])",
    "io_inp": [
      5,
      1,
      3,
      -2,
      3
    ],
    "io_out": [
      -2,
      1,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -4, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(reverse(take(reverse(drop([4, -4, -2],1)),14)))",
    "io_inp": [
      4,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(reverse(drop(input,1)),14)))"
  },
  {
    "input": "input : list = [5, -2, -5, -3, 5]\noutput : list = [0, 2, 3, 10, 10]",
    "output": "generated_output : list = reverse(sort_des(take(sub_n(reverse([5, -2, -5, -3, 5]),-5),23)))",
    "io_inp": [
      5,
      -2,
      -5,
      -3,
      5
    ],
    "io_out": [
      0,
      2,
      3,
      10,
      10
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sub_n(reverse(input),-5),23)))"
  },
  {
    "input": "input : list = [-1, -2, 3, -3]\noutput : list = [3, -1, -2, -3]",
    "output": "generated_output : list = sort_des([-1, -2, 3, -3])",
    "io_inp": [
      -1,
      -2,
      3,
      -3
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [-63, -15, 49]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(reverse([-1, 3, -4]),-4),-4),-1))",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      -63,
      -15,
      49
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(mul_n(reverse(input),-4),-4),-1))"
  },
  {
    "input": "input : list = [1, 1, 3, -4, -5, 1]\noutput : list = [1, 3, -4, -5, 1]",
    "output": "generated_output : list = drop([1, 1, 3, -4, -5, 1],1)",
    "io_inp": [
      1,
      1,
      3,
      -4,
      -5,
      1
    ],
    "io_out": [
      1,
      3,
      -4,
      -5,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, -1, -4, -3]\noutput : list = [-5, 5, 15, 20]",
    "output": "generated_output : list = sort_asc(take(reverse(reverse(mul_n([1, -1, -4, -3],-5))),40))",
    "io_inp": [
      1,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -5,
      5,
      15,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(reverse(mul_n(input,-5))),40))"
  },
  {
    "input": "input : list = [-3, -4, -2, -4]\noutput : list = [5, 5, 0, -5]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc([-3, -4, -2, -4])),-2),-5),-5)",
    "io_inp": [
      -3,
      -4,
      -2,
      -4
    ],
    "io_out": [
      5,
      5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(sort_asc(input)),-2),-5),-5)"
  },
  {
    "input": "input : list = [-1, -1, 2, 0, -5]\noutput : list = [-6, 0, 3, 3, 15]",
    "output": "generated_output : list = take(sort_asc(reverse(mul_n(sort_des([-1, -1, 2, 0, -5]),-3))),18)",
    "io_inp": [
      -1,
      -1,
      2,
      0,
      -5
    ],
    "io_out": [
      -6,
      0,
      3,
      3,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(mul_n(sort_des(input),-3))),18)"
  },
  {
    "input": "input : list = [-1, 4, -3, -2, 5]\noutput : list = [-6, -4, 6, 8, 10]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(mul_n([-1, 4, -3, -2, 5],2),7),4)),-1)",
    "io_inp": [
      -1,
      4,
      -3,
      -2,
      5
    ],
    "io_out": [
      -6,
      -4,
      6,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(mul_n(input,2),7),4)),-1)"
  },
  {
    "input": "input : list = [0, 4, -2, 5, -1, 4]\noutput : list = [-90, -40, -100, -30, -90, -50]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sub_n(sub_n([0, 4, -2, 5, -1, 4],-2),-3),2),-5))",
    "io_inp": [
      0,
      4,
      -2,
      5,
      -1,
      4
    ],
    "io_out": [
      -90,
      -40,
      -100,
      -30,
      -90,
      -50
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sub_n(sub_n(input,-2),-3),2),-5))"
  },
  {
    "input": "input : list = [-2, 0, -4, 4, 2]\noutput : list = [-7, -5, -9, -1, -3]",
    "output": "generated_output : list = take(reverse(add_n(reverse([-2, 0, -4, 4, 2]),-5)),43)",
    "io_inp": [
      -2,
      0,
      -4,
      4,
      2
    ],
    "io_out": [
      -7,
      -5,
      -9,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(input),-5)),43)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = add_n(add_n(add_n(take(add_n([-3, 0],1),12),-1),-1),-1)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(add_n(input,1),12),-1),-1),-1)"
  },
  {
    "input": "input : list = [-5, 0, 1]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([-5, 0, 1],1),-3),-1)",
    "io_inp": [
      -5,
      0,
      1
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,1),-3),-1)"
  },
  {
    "input": "input : list = [2, 5, 0, 2]\noutput : list = [0, 2, 2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([2, 5, 0, 2]))",
    "io_inp": [
      2,
      5,
      0,
      2
    ],
    "io_out": [
      0,
      2,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [13, -2]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(mul_n(reverse([-1, 4]),3)),1))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      13,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(mul_n(reverse(input),3)),1))"
  },
  {
    "input": "input : list = [-5, 5, 3, -2, 5, 5]\noutput : list = [6, 9, 14, 16, 16, 16]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(add_n(sub_n([-5, 5, 3, -2, 5, 5],-5),3),-3),1))",
    "io_inp": [
      -5,
      5,
      3,
      -2,
      5,
      5
    ],
    "io_out": [
      6,
      9,
      14,
      16,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(add_n(sub_n(input,-5),3),-3),1))"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [2, -1, -3]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sub_n(reverse([1, -4, -1]),3),-5),-1))",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      2,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sub_n(reverse(input),3),-5),-1))"
  },
  {
    "input": "input : list = [2, 2, -3, 1]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(sub_n(reverse(sort_asc(take([2, 2, -3, 1],2))),-3),1)",
    "io_inp": [
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(sort_asc(take(input,2))),-3),1)"
  },
  {
    "input": "input : list = [3, 5, 1, 5, 3, -3]\noutput : list = [0, 6]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(reverse([3, 5, 1, 5, 3, -3]),2),-4),2),1)",
    "io_inp": [
      3,
      5,
      1,
      5,
      3,
      -3
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(reverse(input),2),-4),2),1)"
  },
  {
    "input": "input : list = [2, 1, 1, 2]\noutput : list = [1, 2]",
    "output": "generated_output : list = drop([2, 1, 1, 2],2)",
    "io_inp": [
      2,
      1,
      1,
      2
    ],
    "io_out": [
      1,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-2, 5, -1]\noutput : list = [-2, -1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_asc([-2, 5, -1])),1)))",
    "io_inp": [
      -2,
      5,
      -1
    ],
    "io_out": [
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_asc(input)),1)))"
  },
  {
    "input": "input : list = [3, 0, 2, 5]\noutput : list = [0, 15]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take([3, 0, 2, 5],2)),3)),-5)",
    "io_inp": [
      3,
      0,
      2,
      5
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(take(input,2)),3)),-5)"
  },
  {
    "input": "input : list = [5, -4, 5, -4, -2, -3]\noutput : list = [24]",
    "output": "generated_output : list = take(mul_n(add_n(reverse(take([5, -4, 5, -4, -2, -3],1)),1),4),9)",
    "io_inp": [
      5,
      -4,
      5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(reverse(take(input,1)),1),4),9)"
  },
  {
    "input": "input : list = [4, 2, -2, -4, -4]\noutput : list = [-16, -16, -8, 8, 16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sort_asc(mul_n([4, 2, -2, -4, -4],4)))),1)",
    "io_inp": [
      4,
      2,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -8,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sort_asc(mul_n(input,4)))),1)"
  },
  {
    "input": "input : list = [5, -5, 4, -5]\noutput : list = [1, 0, -9]",
    "output": "generated_output : list = sort_des(add_n(drop(sort_asc(sort_asc([5, -5, 4, -5])),1),-4))",
    "io_inp": [
      5,
      -5,
      4,
      -5
    ],
    "io_out": [
      1,
      0,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(sort_asc(sort_asc(input)),1),-4))"
  },
  {
    "input": "input : list = [1, 4, -1, 5, 2]\noutput : list = [-5, 5, 20]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(take([1, 4, -1, 5, 2],3)),5)))",
    "io_inp": [
      1,
      4,
      -1,
      5,
      2
    ],
    "io_out": [
      -5,
      5,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_des(take(input,3)),5)))"
  },
  {
    "input": "input : list = [-4, -4, -5, 3, -2]\noutput : list = [-6, -5, -5, -3, 2]",
    "output": "generated_output : list = add_n(sub_n(sub_n(add_n(sort_asc([-4, -4, -5, 3, -2]),1),-1),-2),-5)",
    "io_inp": [
      -4,
      -4,
      -5,
      3,
      -2
    ],
    "io_out": [
      -6,
      -5,
      -5,
      -3,
      2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(add_n(sort_asc(input),1),-1),-2),-5)"
  },
  {
    "input": "input : list = [-4, 4, 2, 3, -3, 5]\noutput : list = [-4, 4, 2, 3, -3, 5]",
    "output": "generated_output : list = reverse(reverse([-4, 4, 2, 3, -3, 5]))",
    "io_inp": [
      -4,
      4,
      2,
      3,
      -3,
      5
    ],
    "io_out": [
      -4,
      4,
      2,
      3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, -2, -1, -1]\noutput : list = [-4, -3, -3, -1]",
    "output": "generated_output : list = take(take(add_n(sort_asc(reverse([1, -2, -1, -1])),-2),13),32)",
    "io_inp": [
      1,
      -2,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(reverse(input)),-2),13),32)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(sort_des(sort_asc([2, 1])),22)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),22)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(sort_des([4, -3])),1)))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [2, -5, 2, 3, 1, 0]\noutput : list = [0, 1, 3, 2, -5, 2]",
    "output": "generated_output : list = reverse([2, -5, 2, 3, 1, 0])",
    "io_inp": [
      2,
      -5,
      2,
      3,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      3,
      2,
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -5, -4, -4, -2]\noutput : list = [-3, -4, -1]",
    "output": "generated_output : list = reverse(add_n(take([-2, -5, -4, -4, -2],3),1))",
    "io_inp": [
      -2,
      -5,
      -4,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(input,3),1))"
  },
  {
    "input": "input : list = [5, 2, 0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse(mul_n(drop([5, 2, 0, 0],2),1)),-3))",
    "io_inp": [
      5,
      2,
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(mul_n(drop(input,2),1)),-3))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_asc([-2, 5])))))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [0, -2, -3, 0, -3, 4]\noutput : list = [9]",
    "output": "generated_output : list = sub_n(add_n(add_n(drop(drop([0, -2, -3, 0, -3, 4],3),2),-2),5),-2)",
    "io_inp": [
      0,
      -2,
      -3,
      0,
      -3,
      4
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(drop(drop(input,3),2),-2),5),-2)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [16, -8]",
    "output": "generated_output : list = mul_n(add_n(sub_n([2, -4],-5),-3),4)",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      16,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(input,-5),-3),4)"
  },
  {
    "input": "input : list = [-4, 4, 5, 2]\noutput : list = [3, 15]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(sort_asc([-4, 4, 5, 2]),-5),2),2),1)",
    "io_inp": [
      -4,
      4,
      5,
      2
    ],
    "io_out": [
      3,
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(sort_asc(input),-5),2),2),1)"
  },
  {
    "input": "input : list = [4, -5, -1]\noutput : list = [4, -12, -32]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(take(sort_des([4, -5, -1]),16)),4),-4)",
    "io_inp": [
      4,
      -5,
      -1
    ],
    "io_out": [
      4,
      -12,
      -32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(take(sort_des(input),16)),4),-4)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [3, -6]",
    "output": "generated_output : list = mul_n([1, -2],3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, 2, -1, 1, -5, 2]\noutput : list = [1, 0, 0, -1, -3, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n(sub_n([3, 2, -1, 1, -5, 2],-1),-3)))",
    "io_inp": [
      3,
      2,
      -1,
      1,
      -5,
      2
    ],
    "io_out": [
      1,
      0,
      0,
      -1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sub_n(input,-1),-3)))"
  },
  {
    "input": "input : list = [5, 5, -5, 5, -4, 1]\noutput : list = [4, 4, 4, 0, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_des(add_n([5, 5, -5, 5, -4, 1],4))),-5))",
    "io_inp": [
      5,
      5,
      -5,
      5,
      -4,
      1
    ],
    "io_out": [
      4,
      4,
      4,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_des(add_n(input,4))),-5))"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-3, -11]",
    "output": "generated_output : list = sort_des(add_n(take(reverse(sub_n([-5, 3],5)),21),-1))",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -3,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(reverse(sub_n(input,5)),21),-1))"
  },
  {
    "input": "input : list = [-2, -2, -4, -2, 0]\noutput : list = [5, 11, 11, 11, 17]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(mul_n([-2, -2, -4, -2, 0],-3),10))),-5)",
    "io_inp": [
      -2,
      -2,
      -4,
      -2,
      0
    ],
    "io_out": [
      5,
      11,
      11,
      11,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(mul_n(input,-3),10))),-5)"
  },
  {
    "input": "input : list = [-2, 3, -4, 2, 3]\noutput : list = [3, -4, 2, 3]",
    "output": "generated_output : list = sub_n(reverse(add_n(reverse(drop([-2, 3, -4, 2, 3],1)),-3)),-3)",
    "io_inp": [
      -2,
      3,
      -4,
      2,
      3
    ],
    "io_out": [
      3,
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(reverse(drop(input,1)),-3)),-3)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(sub_n([-4, 4],3),2),5),25))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(sub_n(input,3),2),5),25))"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse([4, -1])))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [-6, 3, -1]",
    "output": "generated_output : list = take(take(add_n(sub_n(reverse([0, 4, -5]),4),3),18),8)",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      -6,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(reverse(input),4),3),18),8)"
  },
  {
    "input": "input : list = [2, 4, -4, -4, -5]\noutput : list = [-10]",
    "output": "generated_output : list = sort_des(sub_n(drop(sort_des(add_n([2, 4, -4, -4, -5],-4)),4),1))",
    "io_inp": [
      2,
      4,
      -4,
      -4,
      -5
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(sort_des(add_n(input,-4)),4),1))"
  },
  {
    "input": "input : list = [1, 1, -1, -4]\noutput : list = [-4, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse([1, 1, -1, -4])))",
    "io_inp": [
      1,
      1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-3, 1, 1, 3, -1]\noutput : list = [1, 3, 5, 5, 7]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_des(sort_asc([-3, 1, 1, 3, -1]))),1),3)",
    "io_inp": [
      -3,
      1,
      1,
      3,
      -1
    ],
    "io_out": [
      1,
      3,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_des(sort_asc(input))),1),3)"
  },
  {
    "input": "input : list = [2, -3, 3]\noutput : list = [-3, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_asc(reverse([2, -3, 3])))))",
    "io_inp": [
      2,
      -3,
      3
    ],
    "io_out": [
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(reverse([3, 0]))),-2))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(reverse(input))),-2))"
  },
  {
    "input": "input : list = [-1, 2, -3, -4]\noutput : list = [-4, -3, 2, -1]",
    "output": "generated_output : list = take(reverse(take(reverse(reverse([-1, 2, -3, -4])),25)),21)",
    "io_inp": [
      -1,
      2,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(reverse(input)),25)),21)"
  },
  {
    "input": "input : list = [3, 1, -2]\noutput : list = [21, 15, 6]",
    "output": "generated_output : list = mul_n(take(sub_n([3, 1, -2],-4),6),3)",
    "io_inp": [
      3,
      1,
      -2
    ],
    "io_out": [
      21,
      15,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-4),6),3)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(add_n([-1, 1],1))),10))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(add_n(input,1))),10))"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [12, 13]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_asc(sub_n([5, 4],-3))),5))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      12,
      13
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_asc(sub_n(input,-3))),5))"
  },
  {
    "input": "input : list = [-2, 2, -3, 1, 0]\noutput : list = [-9, -8, -6, -5, -4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(add_n(sub_n([-2, 2, -3, 1, 0],3),-3),5)),5)",
    "io_inp": [
      -2,
      2,
      -3,
      1,
      0
    ],
    "io_out": [
      -9,
      -8,
      -6,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(add_n(sub_n(input,3),-3),5)),5)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-4, -2]",
    "output": "generated_output : list = add_n([-5, -3],1)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [1, 0, 0, 1, -5]\noutput : list = [-6, -6, 0, 0, 30]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(sort_asc([1, 0, 0, 1, -5]),1)),2),-3)",
    "io_inp": [
      1,
      0,
      0,
      1,
      -5
    ],
    "io_out": [
      -6,
      -6,
      0,
      0,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(sort_asc(input),1)),2),-3)"
  },
  {
    "input": "input : list = [0, 4, -5, 2, 5, -4]\noutput : list = [7, 3, -2]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sub_n(take([0, 4, -5, 2, 5, -4],3),-1),1)),3)",
    "io_inp": [
      0,
      4,
      -5,
      2,
      5,
      -4
    ],
    "io_out": [
      7,
      3,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sub_n(take(input,3),-1),1)),3)"
  },
  {
    "input": "input : list = [-3, -2, -2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = drop([-3, -2, -2, 3],2)",
    "io_inp": [
      -3,
      -2,
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, -2, 0, -4, 2, -1]\noutput : list = [5, 3, 2, 1, -1, -1]",
    "output": "generated_output : list = take(sort_des(sort_des(sort_des(add_n([-4, -2, 0, -4, 2, -1],3)))),58)",
    "io_inp": [
      -4,
      -2,
      0,
      -4,
      2,
      -1
    ],
    "io_out": [
      5,
      3,
      2,
      1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sort_des(add_n(input,3)))),58)"
  },
  {
    "input": "input : list = [-4, -4, 1, -2]\noutput : list = [-9, 18, 36]",
    "output": "generated_output : list = reverse(mul_n(mul_n(sort_asc(drop([-4, -4, 1, -2],1)),-3),3))",
    "io_inp": [
      -4,
      -4,
      1,
      -2
    ],
    "io_out": [
      -9,
      18,
      36
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(sort_asc(drop(input,1)),-3),3))"
  },
  {
    "input": "input : list = [1, 5, 1, 3, 2]\noutput : list = [25, 15, 10, 5, 5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sort_asc([1, 5, 1, 3, 2]),5))))",
    "io_inp": [
      1,
      5,
      1,
      3,
      2
    ],
    "io_out": [
      25,
      15,
      10,
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(mul_n(sort_asc(input),5))))"
  },
  {
    "input": "input : list = [4, 3, -4, -4, -4]\noutput : list = [12, 9, -12, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n([4, 3, -4, -4, -4],3))",
    "io_inp": [
      4,
      3,
      -4,
      -4,
      -4
    ],
    "io_out": [
      12,
      9,
      -12,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,3))"
  },
  {
    "input": "input : list = [2, -5, -1, 3, 4]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(drop([2, -5, -1, 3, 4],3))),2)",
    "io_inp": [
      2,
      -5,
      -1,
      3,
      4
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(drop(input,3))),2)"
  },
  {
    "input": "input : list = [1, 3, -4, -2]\noutput : list = [5, 15, -20, -10]",
    "output": "generated_output : list = mul_n([1, 3, -4, -2],5)",
    "io_inp": [
      1,
      3,
      -4,
      -2
    ],
    "io_out": [
      5,
      15,
      -20,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-5, -5, -5, -3, 3, -2]\noutput : list = [13, 13, 13, 5, 1, -19]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sort_des([-5, -5, -5, -3, 3, -2])),-4),-5),2)",
    "io_inp": [
      -5,
      -5,
      -5,
      -3,
      3,
      -2
    ],
    "io_out": [
      13,
      13,
      13,
      5,
      1,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_asc(sort_des(input)),-4),-5),2)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc([5, 5])",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-2, -4, -3, -1, 2]\noutput : list = [-6, -8, -7, -5, -2]",
    "output": "generated_output : list = take(take(sub_n(add_n([-2, -4, -3, -1, 2],-3),1),16),39)",
    "io_inp": [
      -2,
      -4,
      -3,
      -1,
      2
    ],
    "io_out": [
      -6,
      -8,
      -7,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sub_n(add_n(input,-3),1),16),39)"
  },
  {
    "input": "input : list = [3, 0, -5, -3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = drop([3, 0, -5, -3, 0],3)",
    "io_inp": [
      3,
      0,
      -5,
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(sort_asc(sub_n([1, 4],1)),18)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(input,1)),18)"
  },
  {
    "input": "input : list = [2, -2, -5, -5, 4, 0]\noutput : list = [-21]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(take([2, -2, -5, -5, 4, 0],1),-5)),-3)",
    "io_inp": [
      2,
      -2,
      -5,
      -5,
      4,
      0
    ],
    "io_out": [
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(take(input,1),-5)),-3)"
  },
  {
    "input": "input : list = [1, 1, 1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = drop([1, 1, 1, -4],2)",
    "io_inp": [
      1,
      1,
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -5, 2, -1, 1]\noutput : list = [-3, -5, -2, -9, 0]",
    "output": "generated_output : list = sub_n(reverse([4, -5, 2, -1, 1]),4)",
    "io_inp": [
      4,
      -5,
      2,
      -1,
      1
    ],
    "io_out": [
      -3,
      -5,
      -2,
      -9,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [5, -2, 2, -1, -1]\noutput : list = [-13, -4, 8]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(take([5, -2, 2, -1, -1],3)),-3),-2))",
    "io_inp": [
      5,
      -2,
      2,
      -1,
      -1
    ],
    "io_out": [
      -13,
      -4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_des(take(input,3)),-3),-2))"
  },
  {
    "input": "input : list = [-3, 3, 5, -3, 0]\noutput : list = [0, -3, 5, 3, -3]",
    "output": "generated_output : list = reverse([-3, 3, 5, -3, 0])",
    "io_inp": [
      -3,
      3,
      5,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 5, -3, -5, 3]\noutput : list = [5, -3, -5, 3]",
    "output": "generated_output : list = drop([-5, 5, -3, -5, 3],1)",
    "io_inp": [
      -5,
      5,
      -3,
      -5,
      3
    ],
    "io_out": [
      5,
      -3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 3, -5, -1, 2]\noutput : list = [-44, -28, -16, -16, -12]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(reverse([2, 3, -5, -1, 2])),-2),4),4)",
    "io_inp": [
      2,
      3,
      -5,
      -1,
      2
    ],
    "io_out": [
      -44,
      -28,
      -16,
      -16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(reverse(input)),-2),4),4)"
  },
  {
    "input": "input : list = [4, -2, 3, -2]\noutput : list = [-4, -4, 6]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(drop([4, -2, 3, -2],1),2),1)))",
    "io_inp": [
      4,
      -2,
      3,
      -2
    ],
    "io_out": [
      -4,
      -4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(mul_n(drop(input,1),2),1)))"
  },
  {
    "input": "input : list = [-4, -3, 2, -2, 4]\noutput : list = [4, 2, -2, -3, -4]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des([-4, -3, 2, -2, 4]),1)),-1)",
    "io_inp": [
      -4,
      -3,
      2,
      -2,
      4
    ],
    "io_out": [
      4,
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(input),1)),-1)"
  },
  {
    "input": "input : list = [4, -5, -5, 0, -1]\noutput : list = [20, 20, 4, 0, -16]",
    "output": "generated_output : list = reverse(reverse(mul_n(reverse(sort_des([4, -5, -5, 0, -1])),-4)))",
    "io_inp": [
      4,
      -5,
      -5,
      0,
      -1
    ],
    "io_out": [
      20,
      20,
      4,
      0,
      -16
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(reverse(sort_des(input)),-4)))"
  },
  {
    "input": "input : list = [-3, -4, 4, -4, 3]\noutput : list = [3, -4, 4, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, 4, -4, 3])",
    "io_inp": [
      -3,
      -4,
      4,
      -4,
      3
    ],
    "io_out": [
      3,
      -4,
      4,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2, 5, 3, 3]\noutput : list = [13, 7, 14, 12, 12]",
    "output": "generated_output : list = take(sub_n(sub_n(take(sub_n([4, -2, 5, 3, 3],-1),16),-3),-5),8)",
    "io_inp": [
      4,
      -2,
      5,
      3,
      3
    ],
    "io_out": [
      13,
      7,
      14,
      12,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(take(sub_n(input,-1),16),-3),-5),8)"
  },
  {
    "input": "input : list = [1, 2, 4, 3, -2, 1]\noutput : list = [11, 10, 9, 8, 8, 5]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_asc(reverse([1, 2, 4, 3, -2, 1]))),-5),2)",
    "io_inp": [
      1,
      2,
      4,
      3,
      -2,
      1
    ],
    "io_out": [
      11,
      10,
      9,
      8,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_asc(reverse(input))),-5),2)"
  },
  {
    "input": "input : list = [0, 1, -3]\noutput : list = [-13, -1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(mul_n([0, 1, -3],4),8),-1)))",
    "io_inp": [
      0,
      1,
      -3
    ],
    "io_out": [
      -13,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(mul_n(input,4),8),-1)))"
  },
  {
    "input": "input : list = [2, 4, 5]\noutput : list = [-3, -1, 0]",
    "output": "generated_output : list = add_n([2, 4, 5],-5)",
    "io_inp": [
      2,
      4,
      5
    ],
    "io_out": [
      -3,
      -1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [1, 3, 3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sort_des(reverse(mul_n(take([1, 3, 3],1),-2))),2)",
    "io_inp": [
      1,
      3,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(mul_n(take(input,1),-2))),2)"
  },
  {
    "input": "input : list = [-4, -2, -5]\noutput : list = [-4, -8, -10]",
    "output": "generated_output : list = sort_des(take(mul_n([-4, -2, -5],2),10))",
    "io_inp": [
      -4,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,2),10))"
  },
  {
    "input": "input : list = [-5, -3, 5, -1]\noutput : list = [-8, -6, -4, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([-5, -3, 5, -1])),3)",
    "io_inp": [
      -5,
      -3,
      5,
      -1
    ],
    "io_out": [
      -8,
      -6,
      -4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [-9, -4]",
    "output": "generated_output : list = take(sub_n(sort_asc(drop([1, -4, 1],1)),5),30)",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      -9,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(drop(input,1)),5),30)"
  },
  {
    "input": "input : list = [-3, -1, -2, -3, 2, 0]\noutput : list = [13, 13, 8, 3, -2, -12]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(mul_n([-3, -1, -2, -3, 2, 0],-5)),1)),-1)",
    "io_inp": [
      -3,
      -1,
      -2,
      -3,
      2,
      0
    ],
    "io_out": [
      13,
      13,
      8,
      3,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(mul_n(input,-5)),1)),-1)"
  },
  {
    "input": "input : list = [2, 0, -5]\noutput : list = [-5, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(take(reverse([2, 0, -5]),4))))",
    "io_inp": [
      2,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(take(reverse(input),4))))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(sort_des([5, -2]),-1))),28)",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(sort_des(input),-1))),28)"
  },
  {
    "input": "input : list = [-3, -2, 4, -3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = sort_asc(mul_n(drop([-3, -2, 4, -3],2),-1))",
    "io_inp": [
      -3,
      -2,
      4,
      -3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,2),-1))"
  },
  {
    "input": "input : list = [-5, 2, 0, 5, 3]\noutput : list = [3, 5, 0, 2, -5]",
    "output": "generated_output : list = reverse([-5, 2, 0, 5, 3])",
    "io_inp": [
      -5,
      2,
      0,
      5,
      3
    ],
    "io_out": [
      3,
      5,
      0,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 0, 5, -3]\noutput : list = [17, 14, 12, 9]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_des(sub_n([2, 0, 5, -3],-3)),3),3),3)",
    "io_inp": [
      2,
      0,
      5,
      -3
    ],
    "io_out": [
      17,
      14,
      12,
      9
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_des(sub_n(input,-3)),3),3),3)"
  },
  {
    "input": "input : list = [0, -2, 5, -5]\noutput : list = [-2, 5, -5]",
    "output": "generated_output : list = drop([0, -2, 5, -5],1)",
    "io_inp": [
      0,
      -2,
      5,
      -5
    ],
    "io_out": [
      -2,
      5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 3, -3, -4]\noutput : list = [-14, -13, -7, -5]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sub_n(reverse([5, 3, -3, -4]),5),-5),1))",
    "io_inp": [
      5,
      3,
      -3,
      -4
    ],
    "io_out": [
      -14,
      -13,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sub_n(reverse(input),5),-5),1))"
  },
  {
    "input": "input : list = [1, -1, 0, 0]\noutput : list = [-4, -5, -5, -6]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc([1, -1, 0, 0])),5)",
    "io_inp": [
      1,
      -1,
      0,
      0
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [-2, -5, 5, -1, 0]\noutput : list = [2]",
    "output": "generated_output : list = take(sort_asc(sort_des(add_n(take([-2, -5, 5, -1, 0],1),4))),49)",
    "io_inp": [
      -2,
      -5,
      5,
      -1,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(add_n(take(input,1),4))),49)"
  },
  {
    "input": "input : list = [-1, 2, 4, -3, -4]\noutput : list = [-18, -13, 22, 12, -3]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(mul_n([-1, 2, 4, -3, -4],5),2)),1),-5)",
    "io_inp": [
      -1,
      2,
      4,
      -3,
      -4
    ],
    "io_out": [
      -18,
      -13,
      22,
      12,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(mul_n(input,5),2)),1),-5)"
  },
  {
    "input": "input : list = [3, 0, 3, 5, -4, -4]\noutput : list = [-4, -4, 5, 3, 0, 3]",
    "output": "generated_output : list = reverse([3, 0, 3, 5, -4, -4])",
    "io_inp": [
      3,
      0,
      3,
      5,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      5,
      3,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, -1, 4, -2]\noutput : list = [-8]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(mul_n([-5, -1, 4, -2],2),1),1),-2))",
    "io_inp": [
      -5,
      -1,
      4,
      -2
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(mul_n(input,2),1),1),-2))"
  },
  {
    "input": "input : list = [4, 0, -4, 2]\noutput : list = [-20, -10, 0, 20]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(reverse([4, 0, -4, 2]),17),-5)))",
    "io_inp": [
      4,
      0,
      -4,
      2
    ],
    "io_out": [
      -20,
      -10,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(reverse(input),17),-5)))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, -3]))",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [-3, -12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des([4, 1]))),-3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      -3,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(input))),-3)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [4, 5]",
    "output": "generated_output : list = add_n([2, 3],2)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [5, 5, -2, -4, 4, 3]\noutput : list = [60, 60, 48, 36, -24, -48]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(take(mul_n([5, 5, -2, -4, 4, 3],-4),11))),-3)",
    "io_inp": [
      5,
      5,
      -2,
      -4,
      4,
      3
    ],
    "io_out": [
      60,
      60,
      48,
      36,
      -24,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(take(mul_n(input,-4),11))),-3)"
  },
  {
    "input": "input : list = [-4, 3, -4, -1, -5]\noutput : list = [12, -4, -16, -16, -20]",
    "output": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n([-4, 3, -4, -1, -5],4)),16)))",
    "io_inp": [
      -4,
      3,
      -4,
      -1,
      -5
    ],
    "io_out": [
      12,
      -4,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(sort_asc(mul_n(input,4)),16)))"
  },
  {
    "input": "input : list = [0, 2, -5, -4, 5]\noutput : list = [5, 4, 0, -2, -5]",
    "output": "generated_output : list = take(take(mul_n(mul_n(sort_asc([0, 2, -5, -4, 5]),1),-1),27),48)",
    "io_inp": [
      0,
      2,
      -5,
      -4,
      5
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(sort_asc(input),1),-1),27),48)"
  },
  {
    "input": "input : list = [-3, -3, -4, -3, 3, -3]\noutput : list = [-9, -9, -10, -9, -3, -9]",
    "output": "generated_output : list = take(add_n(reverse(sub_n(reverse([-3, -3, -4, -3, 3, -3]),1)),-5),23)",
    "io_inp": [
      -3,
      -3,
      -4,
      -3,
      3,
      -3
    ],
    "io_out": [
      -9,
      -9,
      -10,
      -9,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sub_n(reverse(input),1)),-5),23)"
  },
  {
    "input": "input : list = [-1, 2, 1, -1, -1]\noutput : list = [19, 34, 29, 19, 19]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(sub_n([-1, 2, 1, -1, -1],-1),22),3),5),-4)",
    "io_inp": [
      -1,
      2,
      1,
      -1,
      -1
    ],
    "io_out": [
      19,
      34,
      29,
      19,
      19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(sub_n(input,-1),22),3),5),-4)"
  },
  {
    "input": "input : list = [-1, 1, -2, -1, 3, 5]\noutput : list = [-4, -2, -5, -4, 0, 2]",
    "output": "generated_output : list = add_n(add_n(reverse(reverse([-1, 1, -2, -1, 3, 5])),-4),1)",
    "io_inp": [
      -1,
      1,
      -2,
      -1,
      3,
      5
    ],
    "io_out": [
      -4,
      -2,
      -5,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(reverse(input)),-4),1)"
  },
  {
    "input": "input : list = [-5, -4, -5, -3, -5, -5]\noutput : list = [-8, -8, -7, -6]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(take([-5, -4, -5, -3, -5, -5],4),4),-3),4))",
    "io_inp": [
      -5,
      -4,
      -5,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(take(input,4),4),-3),4))"
  },
  {
    "input": "input : list = [5, -3, -3, 0]\noutput : list = [0, -3, -3, 5]",
    "output": "generated_output : list = reverse([5, -3, -3, 0])",
    "io_inp": [
      5,
      -3,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      -3,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 5, 0, 2, 1, 2]\noutput : list = [1, -1, -2, -2, -3, -4]",
    "output": "generated_output : list = add_n(sort_des([3, 5, 0, 2, 1, 2]),-4)",
    "io_inp": [
      3,
      5,
      0,
      2,
      1,
      2
    ],
    "io_out": [
      1,
      -1,
      -2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-4)"
  },
  {
    "input": "input : list = [4, -4, 3, -5]\noutput : list = [11, -21, 7, -25]",
    "output": "generated_output : list = add_n(mul_n([4, -4, 3, -5],4),-5)",
    "io_inp": [
      4,
      -4,
      3,
      -5
    ],
    "io_out": [
      11,
      -21,
      7,
      -25
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,4),-5)"
  },
  {
    "input": "input : list = [-3, 5, 4]\noutput : list = [8, 0, 1]",
    "output": "generated_output : list = take(mul_n(add_n([-3, 5, 4],-5),-1),16)",
    "io_inp": [
      -3,
      5,
      4
    ],
    "io_out": [
      8,
      0,
      1
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(input,-5),-1),16)"
  },
  {
    "input": "input : list = [1, 4, 3, -2, -3, 4]\noutput : list = [-9, -8, -5, -3, -2, -2]",
    "output": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_des([1, 4, 3, -2, -3, 4]),3))),-3)",
    "io_inp": [
      1,
      4,
      3,
      -2,
      -3,
      4
    ],
    "io_out": [
      -9,
      -8,
      -5,
      -3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sub_n(sort_des(input),3))),-3)"
  },
  {
    "input": "input : list = [-5, 4, -3, -4]\noutput : list = [-20, 15, 20, 25]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n([-5, 4, -3, -4],-5)))",
    "io_inp": [
      -5,
      4,
      -3,
      -4
    ],
    "io_out": [
      -20,
      15,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [5, 5, -4, 2, 4, 3]\noutput : list = [-12, -6, -5, -4, -3, -3]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des([5, 5, -4, 2, 4, 3]),4)),1),-5)",
    "io_inp": [
      5,
      5,
      -4,
      2,
      4,
      3
    ],
    "io_out": [
      -12,
      -6,
      -5,
      -4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_des(input),4)),1),-5)"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [4]",
    "output": "generated_output : list = take(take([4, 1, -1],1),3)",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(take(input,1),3)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [27, 22, -23]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(sort_asc([-5, 5, -4]),-5),3),5),11)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      27,
      22,
      -23
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(sort_asc(input),-5),3),5),11)"
  },
  {
    "input": "input : list = [2, 0, 0, -2]\noutput : list = [7, 5]",
    "output": "generated_output : list = add_n(reverse(reverse(take([2, 0, 0, -2],2))),5)",
    "io_inp": [
      2,
      0,
      0,
      -2
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(input,2))),5)"
  },
  {
    "input": "input : list = [3, 4, 1, 0, 5]\noutput : list = [0, -4, -12, -16, -20]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(sort_asc([3, 4, 1, 0, 5])))),-4)",
    "io_inp": [
      3,
      4,
      1,
      0,
      5
    ],
    "io_out": [
      0,
      -4,
      -12,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(sort_asc(input)))),-4)"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(add_n(mul_n(take([0, -3, 2],1),3),-3),2)",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(take(input,1),3),-3),2)"
  },
  {
    "input": "input : list = [-5, 2, 0, -2, -3]\noutput : list = [4, 2, 1]",
    "output": "generated_output : list = drop(add_n([-5, 2, 0, -2, -3],4),2)",
    "io_inp": [
      -5,
      2,
      0,
      -2,
      -3
    ],
    "io_out": [
      4,
      2,
      1
    ],
    "output_masked": "generated_output : list = drop(add_n(input,4),2)"
  },
  {
    "input": "input : list = [-2, -5, 0]\noutput : list = [0, -5]",
    "output": "generated_output : list = reverse(sort_asc(drop([-2, -5, 0],1)))",
    "io_inp": [
      -2,
      -5,
      0
    ],
    "io_out": [
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(drop(input,1)))"
  },
  {
    "input": "input : list = [3, 3, -3, -1, -4, -5]\noutput : list = [0, 0, 4, 6, 7, 8]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_asc(add_n([3, 3, -3, -1, -4, -5],-3))),-1),25)",
    "io_inp": [
      3,
      3,
      -3,
      -1,
      -4,
      -5
    ],
    "io_out": [
      0,
      0,
      4,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_asc(add_n(input,-3))),-1),25)"
  },
  {
    "input": "input : list = [-1, -2, 5]\noutput : list = [-18, -6, -4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(take(add_n([-1, -2, 5],4),5)),-2))",
    "io_inp": [
      -1,
      -2,
      5
    ],
    "io_out": [
      -18,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(take(add_n(input,4),5)),-2))"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [-2, 5, 6]",
    "output": "generated_output : list = sort_asc(take(take(take(sub_n([4, 5, -3],-1),13),17),32))",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      -2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sub_n(input,-1),13),17),32))"
  },
  {
    "input": "input : list = [-3, 3, -3]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(drop([-3, 3, -3],1),1))))",
    "io_inp": [
      -3,
      3,
      -3
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(drop(input,1),1))))"
  },
  {
    "input": "input : list = [-3, -5, 0]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -5, 0],1)",
    "io_inp": [
      -3,
      -5,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -2]\noutput : list = [-21, 39]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(add_n([3, -2],-2),4),-3),-3),22)",
    "io_inp": [
      3,
      -2
    ],
    "io_out": [
      -21,
      39
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(add_n(input,-2),4),-3),-3),22)"
  },
  {
    "input": "input : list = [5, 4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sort_des([5, 4]))),-1))",
    "io_inp": [
      5,
      4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(reverse(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [1, 1, 1, 0, 2]\noutput : list = [0, 3, 3, 3, 6]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(sort_asc([1, 1, 1, 0, 2])),3),21))",
    "io_inp": [
      1,
      1,
      1,
      0,
      2
    ],
    "io_out": [
      0,
      3,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(sort_asc(input)),3),21))"
  },
  {
    "input": "input : list = [-2, -3, -4, -5, -5]\noutput : list = [32, 48, 64, 80, 80]",
    "output": "generated_output : list = mul_n(mul_n([-2, -3, -4, -5, -5],-4),4)",
    "io_inp": [
      -2,
      -3,
      -4,
      -5,
      -5
    ],
    "io_out": [
      32,
      48,
      64,
      80,
      80
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),4)"
  },
  {
    "input": "input : list = [0, -5, -3]\noutput : list = [15]",
    "output": "generated_output : list = add_n(mul_n(drop(add_n(sub_n([0, -5, -3],4),2),2),-2),5)",
    "io_inp": [
      0,
      -5,
      -3
    ],
    "io_out": [
      15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(drop(add_n(sub_n(input,4),2),2),-2),5)"
  },
  {
    "input": "input : list = [-5, -1, 0, -2]\noutput : list = [-11, -3, -1, -5]",
    "output": "generated_output : list = add_n(mul_n([-5, -1, 0, -2],2),-1)",
    "io_inp": [
      -5,
      -1,
      0,
      -2
    ],
    "io_out": [
      -11,
      -3,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),-1)"
  },
  {
    "input": "input : list = [-3, 3, -4, 5, 4, 5]\noutput : list = [8, 7, 6, 0, -1]",
    "output": "generated_output : list = drop(sort_des(reverse(sub_n(add_n([-3, 3, -4, 5, 4, 5],2),-1))),1)",
    "io_inp": [
      -3,
      3,
      -4,
      5,
      4,
      5
    ],
    "io_out": [
      8,
      7,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = drop(sort_des(reverse(sub_n(add_n(input,2),-1))),1)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-7]",
    "output": "generated_output : list = take(reverse(sub_n(drop(sort_asc([-2, -2]),1),5)),35)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(drop(sort_asc(input),1),5)),35)"
  },
  {
    "input": "input : list = [-3, -1, 5, -2]\noutput : list = [1, -5, -6, -7]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(sub_n([-3, -1, 5, -2],4),2),-2)))",
    "io_inp": [
      -3,
      -1,
      5,
      -2
    ],
    "io_out": [
      1,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(sub_n(input,4),2),-2)))"
  },
  {
    "input": "input : list = [3, -5]\noutput : list = [-23]",
    "output": "generated_output : list = sort_des(drop(add_n(mul_n(add_n([3, -5],-1),3),-5),1))",
    "io_inp": [
      3,
      -5
    ],
    "io_out": [
      -23
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(mul_n(add_n(input,-1),3),-5),1))"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-15, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(reverse([2, -3]),5))))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(mul_n(reverse(input),5))))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [0, 0]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(sort_des([2, 2]),-2),-5)))",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(sort_des(input),-2),-5)))"
  },
  {
    "input": "input : list = [0, 0, 0, 2, -4]\noutput : list = [3, 1, 1, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(drop([0, 0, 0, 2, -4],1)),1))",
    "io_inp": [
      0,
      0,
      0,
      2,
      -4
    ],
    "io_out": [
      3,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(drop(input,1)),1))"
  },
  {
    "input": "input : list = [3, 0, -3, 0]\noutput : list = [-3, 0, 0, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([3, 0, -3, 0]))",
    "io_inp": [
      3,
      0,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [3, -5, -2, 4]\noutput : list = [-1, -2, -7, -10]",
    "output": "generated_output : list = sort_des(take(sub_n([3, -5, -2, 4],5),21))",
    "io_inp": [
      3,
      -5,
      -2,
      4
    ],
    "io_out": [
      -1,
      -2,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,5),21))"
  },
  {
    "input": "input : list = [-5, -2, 4, -2, -3]\noutput : list = [-2, 10, 10, 12, 16]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_asc([-5, -2, 4, -2, -3]))),3),-2)",
    "io_inp": [
      -5,
      -2,
      4,
      -2,
      -3
    ],
    "io_out": [
      -2,
      10,
      10,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_asc(sort_asc(input))),3),-2)"
  },
  {
    "input": "input : list = [5, 5, -3]\noutput : list = [-10, -2, -2]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des(sort_des([5, 5, -3])),-5),-2))",
    "io_inp": [
      5,
      5,
      -3
    ],
    "io_out": [
      -10,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(sort_des(input)),-5),-2))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [0, 9]",
    "output": "generated_output : list = sort_asc(sub_n([-5, 4],-5))",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-5))"
  },
  {
    "input": "input : list = [-1, 2, 4, 3, 4]\noutput : list = [4, 4, 3, 2, -1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(sub_n([-1, 2, 4, 3, 4],-1),15),-1)))",
    "io_inp": [
      -1,
      2,
      4,
      3,
      4
    ],
    "io_out": [
      4,
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(sub_n(input,-1),15),-1)))"
  },
  {
    "input": "input : list = [-5, -2, 4, 3]\noutput : list = [1, 4, 10, 9]",
    "output": "generated_output : list = sub_n(sub_n(add_n([-5, -2, 4, 3],5),-5),4)",
    "io_inp": [
      -5,
      -2,
      4,
      3
    ],
    "io_out": [
      1,
      4,
      10,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,5),-5),4)"
  },
  {
    "input": "input : list = [-3, -3, -4, -1, 5]\noutput : list = [-4, -3, -3, -1, 5]",
    "output": "generated_output : list = sort_asc([-3, -3, -4, -1, 5])",
    "io_inp": [
      -3,
      -3,
      -4,
      -1,
      5
    ],
    "io_out": [
      -4,
      -3,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 2, -4, -5, -4]\noutput : list = [-4, 0, 0, 24, 24]",
    "output": "generated_output : list = sort_asc(mul_n(take(sub_n(sort_des([2, 2, -4, -5, -4]),-4),26),4))",
    "io_inp": [
      2,
      2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -4,
      0,
      0,
      24,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sub_n(sort_des(input),-4),26),4))"
  },
  {
    "input": "input : list = [-2, 5, -5, -2, 5, 3]\noutput : list = [24, 192, 144]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sub_n(drop([-2, 5, -5, -2, 5, 3],3),-3),2),-4),-3)",
    "io_inp": [
      -2,
      5,
      -5,
      -2,
      5,
      3
    ],
    "io_out": [
      24,
      192,
      144
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sub_n(drop(input,3),-3),2),-4),-3)"
  },
  {
    "input": "input : list = [-4, 2, 0]\noutput : list = [4, -2, 0]",
    "output": "generated_output : list = mul_n([-4, 2, 0],-1)",
    "io_inp": [
      -4,
      2,
      0
    ],
    "io_out": [
      4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-1)"
  },
  {
    "input": "input : list = [5, -1, 2]\noutput : list = [5]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take(take([5, -1, 2],1),1),-3),1),-2)",
    "io_inp": [
      5,
      -1,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(take(input,1),1),-3),1),-2)"
  },
  {
    "input": "input : list = [-1, 1, -2, 3, 5]\noutput : list = [4, 2, 0, -2, -3]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(add_n([-1, 1, -2, 3, 5],-3)))),-2)",
    "io_inp": [
      -1,
      1,
      -2,
      3,
      5
    ],
    "io_out": [
      4,
      2,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(add_n(input,-3)))),-2)"
  },
  {
    "input": "input : list = [-4, -2, -4, -3, -4, 4]\noutput : list = [-7, -5, -7, -6]",
    "output": "generated_output : list = sub_n(add_n(take([-4, -2, -4, -3, -4, 4],4),-1),2)",
    "io_inp": [
      -4,
      -2,
      -4,
      -3,
      -4,
      4
    ],
    "io_out": [
      -7,
      -5,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(input,4),-1),2)"
  },
  {
    "input": "input : list = [-2, -2, -1, 4, 3]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(reverse(sub_n(take([-2, -2, -1, 4, 3],1),4)),-3)",
    "io_inp": [
      -2,
      -2,
      -1,
      4,
      3
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(take(input,1),4)),-3)"
  },
  {
    "input": "input : list = [-4, 2, 0, -1, 4, 5]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take([-4, 2, 0, -1, 4, 5],3),1)))",
    "io_inp": [
      -4,
      2,
      0,
      -1,
      4,
      5
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(input,3),1)))"
  },
  {
    "input": "input : list = [5, 3, 2]\noutput : list = [7, 5, 4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(mul_n([5, 3, 2],1)))),-2)",
    "io_inp": [
      5,
      3,
      2
    ],
    "io_out": [
      7,
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(mul_n(input,1)))),-2)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-3, -6]",
    "output": "generated_output : list = sub_n(add_n(mul_n(take(add_n([3, 0],2),4),1),-4),4)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(take(add_n(input,2),4),1),-4),4)"
  },
  {
    "input": "input : list = [-1, 5, 5, 0]\noutput : list = [12, 12, 7, 6]",
    "output": "generated_output : list = take(take(sort_des(sub_n(add_n([-1, 5, 5, 0],4),-3)),6),35)",
    "io_inp": [
      -1,
      5,
      5,
      0
    ],
    "io_out": [
      12,
      12,
      7,
      6
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sub_n(add_n(input,4),-3)),6),35)"
  },
  {
    "input": "input : list = [-2, 3, -4, 1, -3]\noutput : list = [-7, -6, -5, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sub_n([-2, 3, -4, 1, -3],3)))))",
    "io_inp": [
      -2,
      3,
      -4,
      1,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(reverse(sub_n(input,3)))))"
  },
  {
    "input": "input : list = [4, 3, 2, -5]\noutput : list = [-24, -19, -14, 21]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n([4, 3, 2, -5],-5),4))",
    "io_inp": [
      4,
      3,
      2,
      -5
    ],
    "io_out": [
      -24,
      -19,
      -14,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(input,-5),4))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(sort_asc([-3, 0])))),21)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(sort_asc(input)))),21)"
  },
  {
    "input": "input : list = [-3, 0, 0, 2]\noutput : list = [-3, 0, 0, 2]",
    "output": "generated_output : list = sort_asc([-3, 0, 0, 2])",
    "io_inp": [
      -3,
      0,
      0,
      2
    ],
    "io_out": [
      -3,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -4, -2, -1, 2]\noutput : list = [-14, -9, 1, 6, 16]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(mul_n([1, -4, -2, -1, 2],-5)),-4))",
    "io_inp": [
      1,
      -4,
      -2,
      -1,
      2
    ],
    "io_out": [
      -14,
      -9,
      1,
      6,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(mul_n(input,-5)),-4))"
  },
  {
    "input": "input : list = [3, 3, -5, 4]\noutput : list = [4, 4, -4, 5]",
    "output": "generated_output : list = add_n([3, 3, -5, 4],1)",
    "io_inp": [
      3,
      3,
      -5,
      4
    ],
    "io_out": [
      4,
      4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, -1, -3, -1]\noutput : list = [-7, -5, -5, -4]",
    "output": "generated_output : list = reverse(sort_des(take(take(sub_n([0, -1, -3, -1],4),15),4)))",
    "io_inp": [
      0,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(sub_n(input,4),15),4)))"
  },
  {
    "input": "input : list = [0, 0, 0, -3, -5]\noutput : list = [4, 4, 4, 13, 19]",
    "output": "generated_output : list = sub_n(take(take(mul_n(mul_n([0, 0, 0, -3, -5],1),-3),32),7),-4)",
    "io_inp": [
      0,
      0,
      0,
      -3,
      -5
    ],
    "io_out": [
      4,
      4,
      4,
      13,
      19
    ],
    "output_masked": "generated_output : list = sub_n(take(take(mul_n(mul_n(input,1),-3),32),7),-4)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [-2, 1]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([0, -3],1)),1)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,1)),1)"
  },
  {
    "input": "input : list = [-5, 0, -3, 2, -1]\noutput : list = [0, 5, 2, 7, 4]",
    "output": "generated_output : list = add_n([-5, 0, -3, 2, -1],5)",
    "io_inp": [
      -5,
      0,
      -3,
      2,
      -1
    ],
    "io_out": [
      0,
      5,
      2,
      7,
      4
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [6, 4]",
    "output": "generated_output : list = sub_n([3, 1],-3)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-11, -26]",
    "output": "generated_output : list = sub_n(mul_n(sub_n([2, -3],5),3),2)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -11,
      -26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(input,5),3),2)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = sub_n([-1, -1],4)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-4, 4, 2, 4, -4]\noutput : list = [30, 30, 40, 70, 70]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(add_n([-4, 4, 2, 4, -4],-5),5)),-5))",
    "io_inp": [
      -4,
      4,
      2,
      4,
      -4
    ],
    "io_out": [
      30,
      30,
      40,
      70,
      70
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sub_n(add_n(input,-5),5)),-5))"
  },
  {
    "input": "input : list = [2, -2, -1, -1, 4, -4]\noutput : list = [-8]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(take([2, -2, -1, -1, 4, -4],1),-2)),-2))",
    "io_inp": [
      2,
      -2,
      -1,
      -1,
      4,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sub_n(take(input,1),-2)),-2))"
  },
  {
    "input": "input : list = [1, -2, -4, -5, -5, 3]\noutput : list = [-44, -44, -36, -20, 4, 20]",
    "output": "generated_output : list = mul_n(add_n(mul_n(mul_n(sort_asc([1, -2, -4, -5, -5, 3]),-2),-2),-2),2)",
    "io_inp": [
      1,
      -2,
      -4,
      -5,
      -5,
      3
    ],
    "io_out": [
      -44,
      -44,
      -36,
      -20,
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(mul_n(sort_asc(input),-2),-2),-2),2)"
  },
  {
    "input": "input : list = [-1, 1, 5]\noutput : list = [-2, 0, 4]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(add_n([-1, 1, 5],3)),12),1),5)",
    "io_inp": [
      -1,
      1,
      5
    ],
    "io_out": [
      -2,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(add_n(input,3)),12),1),5)"
  },
  {
    "input": "input : list = [0, -4, 2, 4]\noutput : list = [3, 1, -1, -5]",
    "output": "generated_output : list = sub_n(reverse(take(reverse(sort_des([0, -4, 2, 4])),23)),1)",
    "io_inp": [
      0,
      -4,
      2,
      4
    ],
    "io_out": [
      3,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(reverse(sort_des(input)),23)),1)"
  },
  {
    "input": "input : list = [-4, -1, -3, -2, 1, 0]\noutput : list = [-3, 0, 3, 6, 9, 12]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(mul_n([-4, -1, -3, -2, 1, 0],-3),8))),38)",
    "io_inp": [
      -4,
      -1,
      -3,
      -2,
      1,
      0
    ],
    "io_out": [
      -3,
      0,
      3,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(mul_n(input,-3),8))),38)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-4, -4]),-2))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),-2))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-2, 1]",
    "output": "generated_output : list = mul_n(add_n(reverse([2, -1]),-1),1)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(input),-1),1)"
  },
  {
    "input": "input : list = [3, 2, -2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 2, -2],1)",
    "io_inp": [
      3,
      2,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, 0, -5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, 0, -5],1)",
    "io_inp": [
      -2,
      0,
      -5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_des(add_n([-1, 3],3)),15),-1))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_des(add_n(input,3)),15),-1))"
  },
  {
    "input": "input : list = [-2, 2, 4, -1, -5]\noutput : list = [-5, -1, 4, 2, -2]",
    "output": "generated_output : list = reverse([-2, 2, 4, -1, -5])",
    "io_inp": [
      -2,
      2,
      4,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, 0, 4, -5, 1, -4]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(take([5, 0, 4, -5, 1, -4],1))",
    "io_inp": [
      5,
      0,
      4,
      -5,
      1,
      -4
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,1))"
  },
  {
    "input": "input : list = [4, 1, 2, 3]\noutput : list = [1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc([4, 1, 2, 3]),19)))",
    "io_inp": [
      4,
      1,
      2,
      3
    ],
    "io_out": [
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(input),19)))"
  },
  {
    "input": "input : list = [-4, -4, 1, -5]\noutput : list = [-5, 20, 20, 25]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([-4, -4, 1, -5]),-5))",
    "io_inp": [
      -4,
      -4,
      1,
      -5
    ],
    "io_out": [
      -5,
      20,
      20,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-5))"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [1]",
    "output": "generated_output : list = take(take([1, -2, -1],1),7)",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(input,1),7)"
  },
  {
    "input": "input : list = [-2, 1, 3, 3, 2]\noutput : list = [6, -9, -14, -19, -19]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(mul_n([-2, 1, 3, 3, 2],-5)),5)),1)",
    "io_inp": [
      -2,
      1,
      3,
      3,
      2
    ],
    "io_out": [
      6,
      -9,
      -14,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(mul_n(input,-5)),5)),1)"
  },
  {
    "input": "input : list = [-3, -1, 1, -4, -1]\noutput : list = [5, -5, -5, -15, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_asc([-3, -1, 1, -4, -1]))),5))",
    "io_inp": [
      -3,
      -1,
      1,
      -4,
      -1
    ],
    "io_out": [
      5,
      -5,
      -5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(sort_asc(input))),5))"
  },
  {
    "input": "input : list = [-3, 0, 4, -2, -3, -1]\noutput : list = [3, -1, -2, -3, -4, -4]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des(mul_n([-3, 0, 4, -2, -3, -1],1)),-3),29),4)",
    "io_inp": [
      -3,
      0,
      4,
      -2,
      -3,
      -1
    ],
    "io_out": [
      3,
      -1,
      -2,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(mul_n(input,1)),-3),29),4)"
  },
  {
    "input": "input : list = [0, -2, 2, 0, -5]\noutput : list = [-25, -35, -15, -25, -50]",
    "output": "generated_output : list = mul_n(add_n([0, -2, 2, 0, -5],-5),5)",
    "io_inp": [
      0,
      -2,
      2,
      0,
      -5
    ],
    "io_out": [
      -25,
      -35,
      -15,
      -25,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-5),5)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-25, 20]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(reverse([4, -5])),6),5))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -25,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(reverse(input)),6),5))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(take(add_n(sort_des(reverse([-1, -3])),2),4))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sort_des(reverse(input)),2),4))"
  },
  {
    "input": "input : list = [3, -5, -5, -3, 2]\noutput : list = [-1, -9, -9, -7, -2]",
    "output": "generated_output : list = add_n([3, -5, -5, -3, 2],-4)",
    "io_inp": [
      3,
      -5,
      -5,
      -3,
      2
    ],
    "io_out": [
      -1,
      -9,
      -9,
      -7,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-1, -4, -2, -4]\noutput : list = [3, 12, 6, 12]",
    "output": "generated_output : list = mul_n([-1, -4, -2, -4],-3)",
    "io_inp": [
      -1,
      -4,
      -2,
      -4
    ],
    "io_out": [
      3,
      12,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-3, 1, 4, 4, -1, 4]\noutput : list = [-4, -7, -7, -2, -7]",
    "output": "generated_output : list = sub_n(mul_n(take(take(drop([-3, 1, 4, 4, -1, 4],1),16),32),-1),3)",
    "io_inp": [
      -3,
      1,
      4,
      4,
      -1,
      4
    ],
    "io_out": [
      -4,
      -7,
      -7,
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(take(drop(input,1),16),32),-1),3)"
  },
  {
    "input": "input : list = [-5, 5, 3, 0, 3]\noutput : list = [9, -21, -21, -66, -141]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n([-5, 5, 3, 0, 3],-5)),-5),-3),-3)",
    "io_inp": [
      -5,
      5,
      3,
      0,
      3
    ],
    "io_out": [
      9,
      -21,
      -21,
      -66,
      -141
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_des(add_n(input,-5)),-5),-3),-3)"
  },
  {
    "input": "input : list = [0, -5, 3]\noutput : list = [-6, -1, 2]",
    "output": "generated_output : list = sort_asc(reverse(take(sub_n(sort_asc([0, -5, 3]),1),17)))",
    "io_inp": [
      0,
      -5,
      3
    ],
    "io_out": [
      -6,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sub_n(sort_asc(input),1),17)))"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [7, 2, 0]",
    "output": "generated_output : list = take(add_n(reverse(add_n(sort_asc([-2, 5, 0]),1)),1),16)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      7,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(add_n(sort_asc(input),1)),1),16)"
  },
  {
    "input": "input : list = [0, -3, 0]\noutput : list = [-6, -9, -6]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(sub_n([0, -3, 0],-5),4),3),5),5)",
    "io_inp": [
      0,
      -3,
      0
    ],
    "io_out": [
      -6,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(sub_n(input,-5),4),3),5),5)"
  },
  {
    "input": "input : list = [4, 5, -1, 0, -4, 2]\noutput : list = [-4, -1, 0, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 5, -1, 0, -4, 2])",
    "io_inp": [
      4,
      5,
      -1,
      0,
      -4,
      2
    ],
    "io_out": [
      -4,
      -1,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -2, -5, 1, -5, -1]\noutput : list = [16, -8, -20, 4, -20, -4]",
    "output": "generated_output : list = mul_n([4, -2, -5, 1, -5, -1],4)",
    "io_inp": [
      4,
      -2,
      -5,
      1,
      -5,
      -1
    ],
    "io_out": [
      16,
      -8,
      -20,
      4,
      -20,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-3, 3, 0, 4]\noutput : list = [0, 6, 3, 7]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(sub_n([-3, 3, 0, 4],-4)),-4),-5))",
    "io_inp": [
      -3,
      3,
      0,
      4
    ],
    "io_out": [
      0,
      6,
      3,
      7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(sub_n(input,-4)),-4),-5))"
  },
  {
    "input": "input : list = [2, -2, -1, -1]\noutput : list = [2, -1, -1, -2]",
    "output": "generated_output : list = sort_des(sort_des(take(take(sort_des([2, -2, -1, -1]),9),23)))",
    "io_inp": [
      2,
      -2,
      -1,
      -1
    ],
    "io_out": [
      2,
      -1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(sort_des(input),9),23)))"
  },
  {
    "input": "input : list = [1, -4, -1, -3]\noutput : list = [-20, 80, 20, 60]",
    "output": "generated_output : list = mul_n(mul_n([1, -4, -1, -3],5),-4)",
    "io_inp": [
      1,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -20,
      80,
      20,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,5),-4)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-20, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(take(mul_n([1, -4],5),13),-1)),1)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -20,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(take(mul_n(input,5),13),-1)),1)"
  },
  {
    "input": "input : list = [-4, 2, 0, 5]\noutput : list = [-5, -1, 1, 4]",
    "output": "generated_output : list = reverse(sub_n(take(reverse(sort_asc([-4, 2, 0, 5])),25),1))",
    "io_inp": [
      -4,
      2,
      0,
      5
    ],
    "io_out": [
      -5,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(reverse(sort_asc(input)),25),1))"
  },
  {
    "input": "input : list = [5, 3, -3, -2]\noutput : list = [-4, -6, 6, 10]",
    "output": "generated_output : list = reverse(mul_n([5, 3, -3, -2],2))",
    "io_inp": [
      5,
      3,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -6,
      6,
      10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,2))"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [8, -22]",
    "output": "generated_output : list = reverse(sub_n(mul_n([-5, 1],5),-3))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      8,
      -22
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(input,5),-3))"
  },
  {
    "input": "input : list = [-5, 4, -4]\noutput : list = [4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 4, -4])",
    "io_inp": [
      -5,
      4,
      -4
    ],
    "io_out": [
      4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, -5, 3, 4]\noutput : list = [-2]",
    "output": "generated_output : list = add_n(sort_des(take(take([-5, 5, -5, 3, 4],1),2)),3)",
    "io_inp": [
      -5,
      5,
      -5,
      3,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(take(input,1),2)),3)"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [-3, 7, 17]",
    "output": "generated_output : list = add_n(mul_n(sort_des(mul_n(sub_n([5, 3, 1],2),-1)),-5),2)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      -3,
      7,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(mul_n(sub_n(input,2),-1)),-5),2)"
  },
  {
    "input": "input : list = [-2, -1, 1, -3]\noutput : list = [-5, -55, 45]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(mul_n(drop([-2, -1, 1, -3],1),-5),1),5),5)",
    "io_inp": [
      -2,
      -1,
      1,
      -3
    ],
    "io_out": [
      -5,
      -55,
      45
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(mul_n(drop(input,1),-5),1),5),5)"
  },
  {
    "input": "input : list = [0, 5, 0, -4, 2, -1]\noutput : list = [-1, 2, -4, 0, 5, 0]",
    "output": "generated_output : list = reverse([0, 5, 0, -4, 2, -1])",
    "io_inp": [
      0,
      5,
      0,
      -4,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      -4,
      0,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, -4, -4, 0]\noutput : list = [0, 0, -4, -4]",
    "output": "generated_output : list = sort_des([0, -4, -4, 0])",
    "io_inp": [
      0,
      -4,
      -4,
      0
    ],
    "io_out": [
      0,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, 2, 5, -2, -3]\noutput : list = [-7, -6, -5, -2, 0, 1]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sort_asc([-1, 4, 2, 5, -2, -3]))),4))",
    "io_inp": [
      -1,
      4,
      2,
      5,
      -2,
      -3
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(sort_asc(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [5, -3, 5, 3, 4, -5]\noutput : list = [10, 10, 9, 8, 2, 0]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(sort_asc([5, -3, 5, 3, 4, -5]),-2),32)),3)",
    "io_inp": [
      5,
      -3,
      5,
      3,
      4,
      -5
    ],
    "io_out": [
      10,
      10,
      9,
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(sort_asc(input),-2),32)),3)"
  },
  {
    "input": "input : list = [-5, 1, 1, 3, 5, -3]\noutput : list = [-5, 1]",
    "output": "generated_output : list = reverse(sort_des(take(take([-5, 1, 1, 3, 5, -3],2),17)))",
    "io_inp": [
      -5,
      1,
      1,
      3,
      5,
      -3
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(take(input,2),17)))"
  },
  {
    "input": "input : list = [3, 1, -2]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sub_n(take(drop([3, 1, -2],1),3),5)",
    "io_inp": [
      3,
      1,
      -2
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(drop(input,1),3),5)"
  },
  {
    "input": "input : list = [2, -3, 3, -4]\noutput : list = [0, 20, 120, 140]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sort_asc([2, -3, 3, -4]),4),4),5))",
    "io_inp": [
      2,
      -3,
      3,
      -4
    ],
    "io_out": [
      0,
      20,
      120,
      140
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sort_asc(input),4),4),5))"
  },
  {
    "input": "input : list = [-4, -4, -2, 2]\noutput : list = [-4, -4, -2, 2]",
    "output": "generated_output : list = take(reverse(take(reverse([-4, -4, -2, 2]),12)),31)",
    "io_inp": [
      -4,
      -4,
      -2,
      2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(input),12)),31)"
  },
  {
    "input": "input : list = [4, 4, -5, -1, -1, -2]\noutput : list = [7, 3, 3, 19, -17, -17]",
    "output": "generated_output : list = sub_n(add_n(sub_n(reverse(mul_n([4, 4, -5, -1, -1, -2],-4)),-5),-2),4)",
    "io_inp": [
      4,
      4,
      -5,
      -1,
      -1,
      -2
    ],
    "io_out": [
      7,
      3,
      3,
      19,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(reverse(mul_n(input,-4)),-5),-2),4)"
  },
  {
    "input": "input : list = [3, 3, 2, -1, 1]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(take([3, 3, 2, -1, 1],1))),4),4)",
    "io_inp": [
      3,
      3,
      2,
      -1,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(take(input,1))),4),4)"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [-20, 8, 16]",
    "output": "generated_output : list = mul_n(reverse(sort_des(sub_n(sub_n([-4, 3, 5],-4),5))),4)",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      -20,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(sub_n(sub_n(input,-4),5))),4)"
  },
  {
    "input": "input : list = [-1, 4, 0, 2, 5, 0]\noutput : list = [4, 9]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(drop([-1, 4, 0, 2, 5, 0],4)),-4)))",
    "io_inp": [
      -1,
      4,
      0,
      2,
      5,
      0
    ],
    "io_out": [
      4,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(drop(input,4)),-4)))"
  },
  {
    "input": "input : list = [0, 0, -5]\noutput : list = [1, 1, -4]",
    "output": "generated_output : list = add_n([0, 0, -5],1)",
    "io_inp": [
      0,
      0,
      -5
    ],
    "io_out": [
      1,
      1,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -7]",
    "output": "generated_output : list = reverse(sub_n([-5, -3],2))",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [-2, -1, 0, -2, -4, -5]\noutput : list = [-17, -16, -14, -14, -13, -12]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_des(sub_n([-2, -1, 0, -2, -4, -5],2)),-5),5))",
    "io_inp": [
      -2,
      -1,
      0,
      -2,
      -4,
      -5
    ],
    "io_out": [
      -17,
      -16,
      -14,
      -14,
      -13,
      -12
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_des(sub_n(input,2)),-5),5))"
  },
  {
    "input": "input : list = [5, 4, 3, -3, 5]\noutput : list = [7, 6]",
    "output": "generated_output : list = sub_n(sub_n(take([5, 4, 3, -3, 5],2),3),-5)",
    "io_inp": [
      5,
      4,
      3,
      -3,
      5
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(input,2),3),-5)"
  },
  {
    "input": "input : list = [-4, -3, 0, 3, -2, -5]\noutput : list = [5, 2, 0, -1, -2]",
    "output": "generated_output : list = sort_des(add_n(drop(sort_asc(sort_asc([-4, -3, 0, 3, -2, -5])),1),2))",
    "io_inp": [
      -4,
      -3,
      0,
      3,
      -2,
      -5
    ],
    "io_out": [
      5,
      2,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(sort_asc(sort_asc(input)),1),2))"
  },
  {
    "input": "input : list = [-3, 0, -4, -3, 3]\noutput : list = [-4, 8, -8, -4, 20]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse(mul_n([-3, 0, -4, -3, 3],2)),-4),2))",
    "io_inp": [
      -3,
      0,
      -4,
      -3,
      3
    ],
    "io_out": [
      -4,
      8,
      -8,
      -4,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(mul_n(input,2)),-4),2))"
  },
  {
    "input": "input : list = [5, -5, -4, 1, -2, -4]\noutput : list = [9, 7]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(add_n(drop([5, -5, -4, 1, -2, -4],4),-5),-1)))",
    "io_inp": [
      5,
      -5,
      -4,
      1,
      -2,
      -4
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(add_n(drop(input,4),-5),-1)))"
  },
  {
    "input": "input : list = [2, 3, 3, -4]\noutput : list = [2, 3]",
    "output": "generated_output : list = take([2, 3, 3, -4],2)",
    "io_inp": [
      2,
      3,
      3,
      -4
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -2, -1, -1]\noutput : list = [9, 12, 12, 30]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sub_n([5, -2, -1, -1],-5)))),3)",
    "io_inp": [
      5,
      -2,
      -1,
      -1
    ],
    "io_out": [
      9,
      12,
      12,
      30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sub_n(input,-5)))),3)"
  },
  {
    "input": "input : list = [2, 3, -3, -4, 0]\noutput : list = [-4, -3, 0, 2, 3]",
    "output": "generated_output : list = take(sort_asc([2, 3, -3, -4, 0]),20)",
    "io_inp": [
      2,
      3,
      -3,
      -4,
      0
    ],
    "io_out": [
      -4,
      -3,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),20)"
  },
  {
    "input": "input : list = [-5, -1, 4, 4, 5, 2]\noutput : list = [-9, -5, -2, 0, 0, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(reverse([-5, -1, 4, 4, 5, 2]))),4))",
    "io_inp": [
      -5,
      -1,
      4,
      4,
      5,
      2
    ],
    "io_out": [
      -9,
      -5,
      -2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(reverse(input))),4))"
  },
  {
    "input": "input : list = [-4, -1, -5, -1, -3, 3]\noutput : list = [3, -3, -1, -5, -1, -4]",
    "output": "generated_output : list = reverse([-4, -1, -5, -1, -3, 3])",
    "io_inp": [
      -4,
      -1,
      -5,
      -1,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      -1,
      -5,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-4, -4, -5]\noutput : list = [1, 1, 0]",
    "output": "generated_output : list = add_n([-4, -4, -5],5)",
    "io_inp": [
      -4,
      -4,
      -5
    ],
    "io_out": [
      1,
      1,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-9, -27]",
    "output": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_asc([-2, 4]))),-5),-3)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -9,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(sort_des(sort_asc(input))),-5),-3)"
  },
  {
    "input": "input : list = [-5, 5, 2, 3]\noutput : list = [15, -13, -17, -25]",
    "output": "generated_output : list = reverse(add_n(reverse(mul_n(sort_asc([-5, 5, 2, 3]),-4)),-5))",
    "io_inp": [
      -5,
      5,
      2,
      3
    ],
    "io_out": [
      15,
      -13,
      -17,
      -25
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(mul_n(sort_asc(input),-4)),-5))"
  },
  {
    "input": "input : list = [4, -1, -5, 0, 2]\noutput : list = [-4, -2, 0, 1, 5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([4, -1, -5, 0, 2]),-1))",
    "io_inp": [
      4,
      -1,
      -5,
      0,
      2
    ],
    "io_out": [
      -4,
      -2,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),-1))"
  },
  {
    "input": "input : list = [4, 4, -3, -2, -3, 0]\noutput : list = [3, 3, -1, -3, -4, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_des([4, 4, -3, -2, -3, 0]),16))),1)",
    "io_inp": [
      4,
      4,
      -3,
      -2,
      -3,
      0
    ],
    "io_out": [
      3,
      3,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(sort_des(input),16))),1)"
  },
  {
    "input": "input : list = [5, -3, 0, 4, -2]\noutput : list = [4, 0, -8]",
    "output": "generated_output : list = mul_n(take(sort_asc(drop([5, -3, 0, 4, -2],2)),7),-2)",
    "io_inp": [
      5,
      -3,
      0,
      4,
      -2
    ],
    "io_out": [
      4,
      0,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(drop(input,2)),7),-2)"
  },
  {
    "input": "input : list = [-1, 2, -1, 1, -1]\noutput : list = [1, 1, 1, 3, 4]",
    "output": "generated_output : list = sub_n(sort_asc([-1, 2, -1, 1, -1]),-2)",
    "io_inp": [
      -1,
      2,
      -1,
      1,
      -1
    ],
    "io_out": [
      1,
      1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [4, -2, -5, 5, 5, 2]\noutput : list = [-25, -25, -20, -10, 10, 25]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(reverse([4, -2, -5, 5, 5, 2])))),-5)",
    "io_inp": [
      4,
      -2,
      -5,
      5,
      5,
      2
    ],
    "io_out": [
      -25,
      -25,
      -20,
      -10,
      10,
      25
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(reverse(input)))),-5)"
  },
  {
    "input": "input : list = [3, 5, -5, 1, -3, -2]\noutput : list = [23, 13, -27]",
    "output": "generated_output : list = sort_des(add_n(reverse(mul_n(take([3, 5, -5, 1, -3, -2],3),5)),-2))",
    "io_inp": [
      3,
      5,
      -5,
      1,
      -3,
      -2
    ],
    "io_out": [
      23,
      13,
      -27
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(mul_n(take(input,3),5)),-2))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-2, -10]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_des([-4, 4]),-5)),-2),-3)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_des(input),-5)),-2),-3)"
  },
  {
    "input": "input : list = [0, 5, 3, 4, -3, -1]\noutput : list = [2, 7]",
    "output": "generated_output : list = take(add_n(take([0, 5, 3, 4, -3, -1],2),2),28)",
    "io_inp": [
      0,
      5,
      3,
      4,
      -3,
      -1
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,2),2),28)"
  },
  {
    "input": "input : list = [4, 0, -5, 3, 5]\noutput : list = [-5, 3]",
    "output": "generated_output : list = add_n(add_n(mul_n(drop(add_n([4, 0, -5, 3, 5],-4),3),4),-2),1)",
    "io_inp": [
      4,
      0,
      -5,
      3,
      5
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(drop(add_n(input,-4),3),4),-2),1)"
  },
  {
    "input": "input : list = [5, 3, 4, -1, -4, 1]\noutput : list = [2, 1, 0, -2, -4, -7]",
    "output": "generated_output : list = sort_des(reverse(sort_asc(add_n(sort_asc([5, 3, 4, -1, -4, 1]),-3))))",
    "io_inp": [
      5,
      3,
      4,
      -1,
      -4,
      1
    ],
    "io_out": [
      2,
      1,
      0,
      -2,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_asc(add_n(sort_asc(input),-3))))"
  },
  {
    "input": "input : list = [-2, 4, 0, 4, 3]\noutput : list = [13, 3, -12, -17, -17]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_des([-2, 4, 0, 4, 3]),-5),3),1))",
    "io_inp": [
      -2,
      4,
      0,
      4,
      3
    ],
    "io_out": [
      13,
      3,
      -12,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(sort_des(input),-5),3),1))"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [15, 3]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n([1, -5],-2))),-5)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      15,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(input,-2))),-5)"
  },
  {
    "input": "input : list = [-1, 0, 3]\noutput : list = [4, 5, 8]",
    "output": "generated_output : list = add_n([-1, 0, 3],5)",
    "io_inp": [
      -1,
      0,
      3
    ],
    "io_out": [
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [3, 5, 0]\noutput : list = [-6, -8, -3]",
    "output": "generated_output : list = take(add_n(mul_n([3, 5, 0],-1),-3),14)",
    "io_inp": [
      3,
      5,
      0
    ],
    "io_out": [
      -6,
      -8,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(input,-1),-3),14)"
  },
  {
    "input": "input : list = [5, 1, 1, 5, 2, -5]\noutput : list = [-2, 5, 8, 4, 4]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(drop([5, 1, 1, 5, 2, -5],1)))),3)",
    "io_inp": [
      5,
      1,
      1,
      5,
      2,
      -5
    ],
    "io_out": [
      -2,
      5,
      8,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(drop(input,1)))),3)"
  },
  {
    "input": "input : list = [0, 3, 3, -2, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take(sort_asc(sub_n(drop(drop([0, 3, 3, -2, -3],3),1),-1)),15)",
    "io_inp": [
      0,
      3,
      3,
      -2,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(drop(drop(input,3),1),-1)),15)"
  },
  {
    "input": "input : list = [3, 3]\noutput : list = [-13, -13]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(take(mul_n([3, 3],-4),7)),1))",
    "io_inp": [
      3,
      3
    ],
    "io_out": [
      -13,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(take(mul_n(input,-4),7)),1))"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [20, -10, -20]",
    "output": "generated_output : list = reverse(reverse(mul_n([4, -2, -4],5)))",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      20,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,5)))"
  },
  {
    "input": "input : list = [-2, -2, -2, 1, -5]\noutput : list = [1, -2, -2, -2, -5]",
    "output": "generated_output : list = sort_des([-2, -2, -2, 1, -5])",
    "io_inp": [
      -2,
      -2,
      -2,
      1,
      -5
    ],
    "io_out": [
      1,
      -2,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(sub_n([-5, -5],-3),6)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-3),6)"
  },
  {
    "input": "input : list = [-1, -3, 5, -3]\noutput : list = [13, 7, 5, 5]",
    "output": "generated_output : list = sort_des(sub_n(take(sub_n(add_n([-1, -3, 5, -3],3),-3),14),-2))",
    "io_inp": [
      -1,
      -3,
      5,
      -3
    ],
    "io_out": [
      13,
      7,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(take(sub_n(add_n(input,3),-3),14),-2))"
  },
  {
    "input": "input : list = [4, 0, -2, 0]\noutput : list = [12, 6, 6, -6]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sub_n([4, 0, -2, 0],3),-3),-3)))",
    "io_inp": [
      4,
      0,
      -2,
      0
    ],
    "io_out": [
      12,
      6,
      6,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sub_n(input,3),-3),-3)))"
  },
  {
    "input": "input : list = [4, -3, -1, 4, 2, 1]\noutput : list = [1, -6, -4, 1, -1, -2]",
    "output": "generated_output : list = add_n([4, -3, -1, 4, 2, 1],-3)",
    "io_inp": [
      4,
      -3,
      -1,
      4,
      2,
      1
    ],
    "io_out": [
      1,
      -6,
      -4,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [3, 3, 5, 1, -4]\noutput : list = [18, -7, -27, -17, -17]",
    "output": "generated_output : list = reverse(add_n(mul_n([3, 3, 5, 1, -4],-5),-2))",
    "io_inp": [
      3,
      3,
      5,
      1,
      -4
    ],
    "io_out": [
      18,
      -7,
      -27,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-5),-2))"
  },
  {
    "input": "input : list = [3, 0, -2]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 0, -2],1)",
    "io_inp": [
      3,
      0,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [4, 1, 2, 1, 4]\noutput : list = [4, 1, 2, 1]",
    "output": "generated_output : list = sub_n(take(add_n(reverse([4, 1, 2, 1, 4]),1),4),1)",
    "io_inp": [
      4,
      1,
      2,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      2,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(input),1),4),1)"
  },
  {
    "input": "input : list = [2, 1, -4, 3, 5, -1]\noutput : list = [2]",
    "output": "generated_output : list = sort_des(sort_des(take([2, 1, -4, 3, 5, -1],1)))",
    "io_inp": [
      2,
      1,
      -4,
      3,
      5,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-4, 4, 2, 5, 2, 1]\noutput : list = [-7, -2, -1, -1, 1, 2]",
    "output": "generated_output : list = sub_n(take(sort_asc(add_n(sub_n([-4, 4, 2, 5, 2, 1],-1),-3)),26),1)",
    "io_inp": [
      -4,
      4,
      2,
      5,
      2,
      1
    ],
    "io_out": [
      -7,
      -2,
      -1,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(add_n(sub_n(input,-1),-3)),26),1)"
  },
  {
    "input": "input : list = [4, -1, 0, -1]\noutput : list = [9]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(take([4, -1, 0, -1],1)),-4),1))",
    "io_inp": [
      4,
      -1,
      0,
      -1
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(take(input,1)),-4),1))"
  },
  {
    "input": "input : list = [-1, 3, 5, 1, 2]\noutput : list = [12]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_des(sub_n([-1, 3, 5, 1, 2],2))),1),4)",
    "io_inp": [
      -1,
      3,
      5,
      1,
      2
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_des(sub_n(input,2))),1),4)"
  },
  {
    "input": "input : list = [5, -3, 3, 5, -4, -3]\noutput : list = [-4, -3, -3, 3, 5, 5]",
    "output": "generated_output : list = sort_asc([5, -3, 3, 5, -4, -3])",
    "io_inp": [
      5,
      -3,
      3,
      5,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -3,
      3,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, 3, 2, 3, 0, -2]\noutput : list = [3, 3, 2, 0, -2, -5]",
    "output": "generated_output : list = sort_des(mul_n([-5, 3, 2, 3, 0, -2],1))",
    "io_inp": [
      -5,
      3,
      2,
      3,
      0,
      -2
    ],
    "io_out": [
      3,
      3,
      2,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,1))"
  },
  {
    "input": "input : list = [5, -1, -4, 3, -5, 4]\noutput : list = [-10, -8, -6, 2, 8, 10]",
    "output": "generated_output : list = take(mul_n(sort_des(sort_des(sort_des([5, -1, -4, 3, -5, 4]))),-2),48)",
    "io_inp": [
      5,
      -1,
      -4,
      3,
      -5,
      4
    ],
    "io_out": [
      -10,
      -8,
      -6,
      2,
      8,
      10
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sort_des(sort_des(input))),-2),48)"
  },
  {
    "input": "input : list = [4, 2]\noutput : list = [-14, -34]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(sub_n([4, 2],5),5),1),-3),2)",
    "io_inp": [
      4,
      2
    ],
    "io_out": [
      -14,
      -34
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(sub_n(input,5),5),1),-3),2)"
  },
  {
    "input": "input : list = [-2, 0, -5, 0]\noutput : list = [2]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(take([-2, 0, -5, 0],1),-1)),-2))",
    "io_inp": [
      -2,
      0,
      -5,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(take(input,1),-1)),-2))"
  },
  {
    "input": "input : list = [-4, -2, -2, -3, -2]\noutput : list = [-8, -8, -8, -13, -18]",
    "output": "generated_output : list = add_n(take(take(mul_n(sort_des([-4, -2, -2, -3, -2]),5),31),31),2)",
    "io_inp": [
      -4,
      -2,
      -2,
      -3,
      -2
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -13,
      -18
    ],
    "output_masked": "generated_output : list = add_n(take(take(mul_n(sort_des(input),5),31),31),2)"
  },
  {
    "input": "input : list = [1, 2, 2, -1, 0]\noutput : list = [-4, -4, 0, 4, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(add_n([1, 2, 2, -1, 0],-1)),-4)),13)",
    "io_inp": [
      1,
      2,
      2,
      -1,
      0
    ],
    "io_out": [
      -4,
      -4,
      0,
      4,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(add_n(input,-1)),-4)),13)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-6, 1]",
    "output": "generated_output : list = add_n(sort_asc([2, -5]),-1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -6,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [2, -5, -5, -2, -3]\noutput : list = [-6, -6, -4, -3, 1]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sort_asc([2, -5, -5, -2, -3]))),1))",
    "io_inp": [
      2,
      -5,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sort_asc(input))),1))"
  },
  {
    "input": "input : list = [2, -4, 1, -3]\noutput : list = [0, 1, 5, 6]",
    "output": "generated_output : list = sort_asc(reverse(take(sort_asc(add_n([2, -4, 1, -3],4)),29)))",
    "io_inp": [
      2,
      -4,
      1,
      -3
    ],
    "io_out": [
      0,
      1,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(take(sort_asc(add_n(input,4)),29)))"
  },
  {
    "input": "input : list = [-4, -1, -1, 2, -1, 5]\noutput : list = [-30, -12, 6, 6, 6, 24]",
    "output": "generated_output : list = mul_n(sort_des(mul_n([-4, -1, -1, 2, -1, 5],2)),-3)",
    "io_inp": [
      -4,
      -1,
      -1,
      2,
      -1,
      5
    ],
    "io_out": [
      -30,
      -12,
      6,
      6,
      6,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(input,2)),-3)"
  },
  {
    "input": "input : list = [-5, -1, 5, -4, -3, -4]\noutput : list = [-20, -15, -20]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(drop([-5, -1, 5, -4, -3, -4],3))),8),5)",
    "io_inp": [
      -5,
      -1,
      5,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -20,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(drop(input,3))),8),5)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-5, 1]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n([-5, 1],-1),-1)))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(input,-1),-1)))"
  },
  {
    "input": "input : list = [5, -2, -4]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(drop([5, -2, -4],1))",
    "io_inp": [
      5,
      -2,
      -4
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [-1, 3, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sort_des([3, -3, -1]),-1))),-2)",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      -1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sort_des(input),-1))),-2)"
  },
  {
    "input": "input : list = [4, -5, -5, 1]\noutput : list = [3, -6]",
    "output": "generated_output : list = take(take(add_n([4, -5, -5, 1],-1),5),2)",
    "io_inp": [
      4,
      -5,
      -5,
      1
    ],
    "io_out": [
      3,
      -6
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,-1),5),2)"
  },
  {
    "input": "input : list = [1, -5, 2, 5]\noutput : list = [12, 6]",
    "output": "generated_output : list = add_n(sub_n(sub_n(take([1, -5, 2, 5],2),-5),-1),5)",
    "io_inp": [
      1,
      -5,
      2,
      5
    ],
    "io_out": [
      12,
      6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(take(input,2),-5),-1),5)"
  },
  {
    "input": "input : list = [-4, 0, -5, -5, 2, 0]\noutput : list = [-4, -8, 6, 6]",
    "output": "generated_output : list = mul_n(reverse(sub_n(drop([-4, 0, -5, -5, 2, 0],2),-2)),-2)",
    "io_inp": [
      -4,
      0,
      -5,
      -5,
      2,
      0
    ],
    "io_out": [
      -4,
      -8,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(drop(input,2),-2)),-2)"
  },
  {
    "input": "input : list = [-2, 2, 0, 4, -4, -1]\noutput : list = [2, -1, 7, 3, 5, 1]",
    "output": "generated_output : list = add_n(reverse(take(add_n([-2, 2, 0, 4, -4, -1],1),20)),2)",
    "io_inp": [
      -2,
      2,
      0,
      4,
      -4,
      -1
    ],
    "io_out": [
      2,
      -1,
      7,
      3,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(add_n(input,1),20)),2)"
  },
  {
    "input": "input : list = [3, -1, -4, -4, -4]\noutput : list = [-6, -6, -6, -3, 1]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(sub_n([3, -1, -4, -4, -4],2),1),1)),9)",
    "io_inp": [
      3,
      -1,
      -4,
      -4,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(sub_n(input,2),1),1)),9)"
  },
  {
    "input": "input : list = [-1, 2, -1, 3, -2, 5]\noutput : list = [16, 12, 10, 4, 4, 2]",
    "output": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_asc([-1, 2, -1, 3, -2, 5]),-1)),2),2)",
    "io_inp": [
      -1,
      2,
      -1,
      3,
      -2,
      5
    ],
    "io_out": [
      16,
      12,
      10,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(sub_n(sort_asc(input),-1)),2),2)"
  },
  {
    "input": "input : list = [1, 3, -4, -3, 4]\noutput : list = [0, -1, -3, -7, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc([1, 3, -4, -3, 4])),4))",
    "io_inp": [
      1,
      3,
      -4,
      -3,
      4
    ],
    "io_out": [
      0,
      -1,
      -3,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(input)),4))"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(take([-1, 4, 1],1)))),5)",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_des(take(input,1)))),5)"
  },
  {
    "input": "input : list = [1, 0, 0, 5, -2]\noutput : list = [8, 4, 3, 3, 1]",
    "output": "generated_output : list = sub_n(reverse(take(sort_asc([1, 0, 0, 5, -2]),7)),-3)",
    "io_inp": [
      1,
      0,
      0,
      5,
      -2
    ],
    "io_out": [
      8,
      4,
      3,
      3,
      1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_asc(input),7)),-3)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse(add_n([-3, -2],4))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,4))"
  },
  {
    "input": "input : list = [4, 5, -4, -2]\noutput : list = [-11, -17, 10, 7]",
    "output": "generated_output : list = sub_n(take(add_n(reverse(mul_n([4, 5, -4, -2],3)),-4),19),1)",
    "io_inp": [
      4,
      5,
      -4,
      -2
    ],
    "io_out": [
      -11,
      -17,
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(mul_n(input,3)),-4),19),1)"
  },
  {
    "input": "input : list = [5, 4, 5, -3]\noutput : list = [2, 1, 2, -6]",
    "output": "generated_output : list = sub_n([5, 4, 5, -3],3)",
    "io_inp": [
      5,
      4,
      5,
      -3
    ],
    "io_out": [
      2,
      1,
      2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, -3, 3]\noutput : list = [-13]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(take([-5, -3, 3],1),3)),22),2)",
    "io_inp": [
      -5,
      -3,
      3
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(take(input,1),3)),22),2)"
  },
  {
    "input": "input : list = [2, -1, 0, -4, 5]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(take(add_n(take(drop([2, -1, 0, -4, 5],1),2),3),40))",
    "io_inp": [
      2,
      -1,
      0,
      -4,
      5
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(take(drop(input,1),2),3),40))"
  },
  {
    "input": "input : list = [-5, 1, -4, 0, -3]\noutput : list = [-2, -3, -6, -7, -8]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(reverse([-5, 1, -4, 0, -3]),3)))",
    "io_inp": [
      -5,
      1,
      -4,
      0,
      -3
    ],
    "io_out": [
      -2,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(reverse(input),3)))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-1, 7]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(add_n(mul_n([-3, 5],1),3),1)))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(add_n(mul_n(input,1),3),1)))"
  },
  {
    "input": "input : list = [2, -4, -3]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sort_asc([2, -4, -3])))))",
    "io_inp": [
      2,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -2, -5, -5]\noutput : list = [-2, -5, -5]",
    "output": "generated_output : list = sort_des(reverse(take(drop([5, -2, -5, -5],1),9)))",
    "io_inp": [
      5,
      -2,
      -5,
      -5
    ],
    "io_out": [
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(drop(input,1),9)))"
  },
  {
    "input": "input : list = [4, -5, -3, -3]\noutput : list = [4, -3, -3, -5]",
    "output": "generated_output : list = sort_des(sort_des([4, -5, -3, -3]))",
    "io_inp": [
      4,
      -5,
      -3,
      -3
    ],
    "io_out": [
      4,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-5, 2, 5]\noutput : list = [-10, -3, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(add_n([-5, 2, 5],-3))),2)",
    "io_inp": [
      -5,
      2,
      5
    ],
    "io_out": [
      -10,
      -3,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(add_n(input,-3))),2)"
  },
  {
    "input": "input : list = [-5, 5, -5, 1, -4]\noutput : list = [-9]",
    "output": "generated_output : list = reverse(add_n(sort_des(take(take([-5, 5, -5, 1, -4],1),4)),-4))",
    "io_inp": [
      -5,
      5,
      -5,
      1,
      -4
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(take(take(input,1),4)),-4))"
  },
  {
    "input": "input : list = [1, 2, 2, -2, 3, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(reverse(take([1, 2, 2, -2, 3, -1],2)),-2)),4)",
    "io_inp": [
      1,
      2,
      2,
      -2,
      3,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(reverse(take(input,2)),-2)),4)"
  },
  {
    "input": "input : list = [2, -1, -2, 3, -1, 5]\noutput : list = [-6, -1, -5, 1]",
    "output": "generated_output : list = add_n(sub_n(drop([2, -1, -2, 3, -1, 5],2),1),-3)",
    "io_inp": [
      2,
      -1,
      -2,
      3,
      -1,
      5
    ],
    "io_out": [
      -6,
      -1,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,2),1),-3)"
  },
  {
    "input": "input : list = [-3, 3, -4]\noutput : list = [12, -30, 6]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(reverse([-3, 3, -4]),-2),2),-3),22)",
    "io_inp": [
      -3,
      3,
      -4
    ],
    "io_out": [
      12,
      -30,
      6
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(reverse(input),-2),2),-3),22)"
  },
  {
    "input": "input : list = [4, -2, 5, -3, 1, 5]\noutput : list = [5, 5, 4, 1, -2, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(sub_n([4, -2, 5, -3, 1, 5],-1),1))),11)",
    "io_inp": [
      4,
      -2,
      5,
      -3,
      1,
      5
    ],
    "io_out": [
      5,
      5,
      4,
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(sub_n(input,-1),1))),11)"
  },
  {
    "input": "input : list = [3, -1, -5, -3]\noutput : list = [-5, -3, -1, 3]",
    "output": "generated_output : list = sort_asc([3, -1, -5, -3])",
    "io_inp": [
      3,
      -1,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, -4, 1]\noutput : list = [-5, -4, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(sort_des([-5, -2, -4, 1])))))",
    "io_inp": [
      -5,
      -2,
      -4,
      1
    ],
    "io_out": [
      -5,
      -4,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [4, -4, 0, -3, 3, -1]\noutput : list = [-7, -6, -3, -2, 0, 1]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(sort_des([4, -4, 0, -3, 3, -1]),-2),-4),-1),1)",
    "io_inp": [
      4,
      -4,
      0,
      -3,
      3,
      -1
    ],
    "io_out": [
      -7,
      -6,
      -3,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(sort_des(input),-2),-4),-1),1)"
  },
  {
    "input": "input : list = [-1, 5, 4, 0, 3]\noutput : list = [8, 7, 6, 3]",
    "output": "generated_output : list = take(sub_n(take(sort_des(sort_asc([-1, 5, 4, 0, 3])),32),-3),4)",
    "io_inp": [
      -1,
      5,
      4,
      0,
      3
    ],
    "io_out": [
      8,
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(sort_asc(input)),32),-3),4)"
  },
  {
    "input": "input : list = [2, -4, 2, 4, 5]\noutput : list = [7, 1, 7, 9, 10]",
    "output": "generated_output : list = sub_n([2, -4, 2, 4, 5],-5)",
    "io_inp": [
      2,
      -4,
      2,
      4,
      5
    ],
    "io_out": [
      7,
      1,
      7,
      9,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -5, -3, -4]\noutput : list = [48, 36, 60, 60]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n([-5, -5, -3, -4],-4),3))))",
    "io_inp": [
      -5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      48,
      36,
      60,
      60
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(mul_n(input,-4),3))))"
  },
  {
    "input": "input : list = [-1, 3, 1, 4, -5, 2]\noutput : list = [-6]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(take([-1, 3, 1, 4, -5, 2],1))),-5),13)",
    "io_inp": [
      -1,
      3,
      1,
      4,
      -5,
      2
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(take(input,1))),-5),13)"
  },
  {
    "input": "input : list = [5, -5, -4]\noutput : list = [-20, -17, 10]",
    "output": "generated_output : list = add_n(add_n(mul_n(sort_asc(reverse([5, -5, -4])),3),-1),-4)",
    "io_inp": [
      5,
      -5,
      -4
    ],
    "io_out": [
      -20,
      -17,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(sort_asc(reverse(input)),3),-1),-4)"
  },
  {
    "input": "input : list = [-1, -3, 4, 2, 3]\noutput : list = [-4, 1, 2, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(drop([-1, -3, 4, 2, 3],1),-1))))",
    "io_inp": [
      -1,
      -3,
      4,
      2,
      3
    ],
    "io_out": [
      -4,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(drop(input,1),-1))))"
  },
  {
    "input": "input : list = [-5, 5, 4, -1]\noutput : list = [-5, 0, 1, -9]",
    "output": "generated_output : list = reverse(take(sub_n([-5, 5, 4, -1],4),8))",
    "io_inp": [
      -5,
      5,
      4,
      -1
    ],
    "io_out": [
      -5,
      0,
      1,
      -9
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(input,4),8))"
  },
  {
    "input": "input : list = [1, -2, 2, 5, 5, 0]\noutput : list = [-5, -5, -2, 0, 2]",
    "output": "generated_output : list = mul_n(sort_des(reverse(drop([1, -2, 2, 5, 5, 0],1))),-1)",
    "io_inp": [
      1,
      -2,
      2,
      5,
      5,
      0
    ],
    "io_out": [
      -5,
      -5,
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(drop(input,1))),-1)"
  },
  {
    "input": "input : list = [-2, 5, -3, 3]\noutput : list = [10, 6, -14, -22]",
    "output": "generated_output : list = sort_des(reverse(sort_des(add_n(mul_n([-2, 5, -3, 3],-4),-2))))",
    "io_inp": [
      -2,
      5,
      -3,
      3
    ],
    "io_out": [
      10,
      6,
      -14,
      -22
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(add_n(mul_n(input,-4),-2))))"
  },
  {
    "input": "input : list = [-4, -2, -2]\noutput : list = [12, 12, 20]",
    "output": "generated_output : list = reverse(take(take(add_n(mul_n([-4, -2, -2],-4),4),25),30))",
    "io_inp": [
      -4,
      -2,
      -2
    ],
    "io_out": [
      12,
      12,
      20
    ],
    "output_masked": "generated_output : list = reverse(take(take(add_n(mul_n(input,-4),4),25),30))"
  },
  {
    "input": "input : list = [-3, 4, -4, -5, -3, 5]\noutput : list = [4, -3]",
    "output": "generated_output : list = reverse(reverse(sort_des(take([-3, 4, -4, -5, -3, 5],2))))",
    "io_inp": [
      -3,
      4,
      -4,
      -5,
      -3,
      5
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(take(input,2))))"
  },
  {
    "input": "input : list = [-1, 5, 1, 0, 2]\noutput : list = [-1, 0, 1, 2, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, 1, 0, 2])",
    "io_inp": [
      -1,
      5,
      1,
      0,
      2
    ],
    "io_out": [
      -1,
      0,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, -4, 2, 1, -1]\noutput : list = [-10, -7, -5, -4]",
    "output": "generated_output : list = add_n(sort_asc(drop(add_n(sub_n([-4, -4, 2, 1, -1],-2),-3),1)),-5)",
    "io_inp": [
      -4,
      -4,
      2,
      1,
      -1
    ],
    "io_out": [
      -10,
      -7,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(add_n(sub_n(input,-2),-3),1)),-5)"
  },
  {
    "input": "input : list = [1, 5, 3, -1]\noutput : list = [-11, -7, -9, -13]",
    "output": "generated_output : list = add_n(add_n(add_n([1, 5, 3, -1],-3),-4),-5)",
    "io_inp": [
      1,
      5,
      3,
      -1
    ],
    "io_out": [
      -11,
      -7,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,-3),-4),-5)"
  },
  {
    "input": "input : list = [-3, 4, -3, 2]\noutput : list = [3, 1, -4, -4]",
    "output": "generated_output : list = reverse(add_n(add_n(mul_n(sort_asc([-3, 4, -3, 2]),1),3),-4))",
    "io_inp": [
      -3,
      4,
      -3,
      2
    ],
    "io_out": [
      3,
      1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(mul_n(sort_asc(input),1),3),-4))"
  },
  {
    "input": "input : list = [-3, 1, 3, 2, -2, -3]\noutput : list = [-6, 2, 6]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(take([-3, 1, 3, 2, -2, -3],3)),2)))",
    "io_inp": [
      -3,
      1,
      3,
      2,
      -2,
      -3
    ],
    "io_out": [
      -6,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(take(input,3)),2)))"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [11, -25]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(reverse(mul_n([4, -5],-4)),-5),-1))",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      11,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(reverse(mul_n(input,-4)),-5),-1))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [2, -3]",
    "output": "generated_output : list = take(sort_des(add_n([-4, 1],1)),9)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,1)),9)"
  },
  {
    "input": "input : list = [4, -1, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = take(reverse(reverse(sort_des(sort_des([4, -1, 0])))),2)",
    "io_inp": [
      4,
      -1,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(sort_des(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [4, -4, 2, -2]\noutput : list = [3, -5, 1, -3]",
    "output": "generated_output : list = add_n([4, -4, 2, -2],-1)",
    "io_inp": [
      4,
      -4,
      2,
      -2
    ],
    "io_out": [
      3,
      -5,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [9, 0]",
    "output": "generated_output : list = take(sub_n([5, -4],-4),6)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      9,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),6)"
  },
  {
    "input": "input : list = [3, -5, 5, 0]\noutput : list = [-12, -7, -4, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(take(reverse([3, -5, 5, 0]),11)),3),-4)",
    "io_inp": [
      3,
      -5,
      5,
      0
    ],
    "io_out": [
      -12,
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(take(reverse(input),11)),3),-4)"
  },
  {
    "input": "input : list = [-3, -1, -4]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(sub_n([-3, -1, -4],-5)))),5)",
    "io_inp": [
      -3,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(sub_n(input,-5)))),5)"
  },
  {
    "input": "input : list = [4, 2, -2, -4]\noutput : list = [18, 14, 6, 2]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(add_n([4, 2, -2, -4],-5)),-2)),13)",
    "io_inp": [
      4,
      2,
      -2,
      -4
    ],
    "io_out": [
      18,
      14,
      6,
      2
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(add_n(input,-5)),-2)),13)"
  },
  {
    "input": "input : list = [-5, -1, -5, 1, 2, 0]\noutput : list = [-2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(drop([-5, -1, -5, 1, 2, 0],2),-3))",
    "io_inp": [
      -5,
      -1,
      -5,
      1,
      2,
      0
    ],
    "io_out": [
      -2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,2),-3))"
  },
  {
    "input": "input : list = [-2, -3, 4, 3, 5, -2]\noutput : list = [3, 2, 9, 8, 10, 3]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(sub_n([-2, -3, 4, 3, 5, -2],4),-1),1),-5),4)",
    "io_inp": [
      -2,
      -3,
      4,
      3,
      5,
      -2
    ],
    "io_out": [
      3,
      2,
      9,
      8,
      10,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(sub_n(input,4),-1),1),-5),4)"
  },
  {
    "input": "input : list = [0, 4, 1]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(drop(sort_asc(sort_asc(add_n([0, 4, 1],2))),2),-1)",
    "io_inp": [
      0,
      4,
      1
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(drop(sort_asc(sort_asc(add_n(input,2))),2),-1)"
  },
  {
    "input": "input : list = [-1, -1, -4, -5, -5]\noutput : list = [-5, -5, -4, -1, -1]",
    "output": "generated_output : list = sort_asc(sort_des([-1, -1, -4, -5, -5]))",
    "io_inp": [
      -1,
      -1,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -4,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 4, 3, -4]\noutput : list = [-16, -12, 16, 16]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(mul_n([-4, 4, 3, -4],-1)),4))",
    "io_inp": [
      -4,
      4,
      3,
      -4
    ],
    "io_out": [
      -16,
      -12,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(mul_n(input,-1)),4))"
  },
  {
    "input": "input : list = [-4, 2, -2, 5]\noutput : list = [10, -25]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse(drop([-4, 2, -2, 5],2))),-3),5)",
    "io_inp": [
      -4,
      2,
      -2,
      5
    ],
    "io_out": [
      10,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(drop(input,2))),-3),5)"
  },
  {
    "input": "input : list = [2, 5, 3, 3, -1, 3]\noutput : list = [-21, -11, -11, -11, -6, 9]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(sort_asc([2, 5, 3, 3, -1, 3])),-5),3),-1)",
    "io_inp": [
      2,
      5,
      3,
      3,
      -1,
      3
    ],
    "io_out": [
      -21,
      -11,
      -11,
      -11,
      -6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(sort_asc(input)),-5),3),-1)"
  },
  {
    "input": "input : list = [4, 1, -4]\noutput : list = [-8, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(drop([4, 1, -4],1),2))))",
    "io_inp": [
      4,
      1,
      -4
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(drop(input,1),2))))"
  },
  {
    "input": "input : list = [1, 4, 1, 5, -4, 4]\noutput : list = [16, 13, 17, 8, 16]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(drop([1, 4, 1, 5, -4, 4],1),4),10),4),-4)",
    "io_inp": [
      1,
      4,
      1,
      5,
      -4,
      4
    ],
    "io_out": [
      16,
      13,
      17,
      8,
      16
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(drop(input,1),4),10),4),-4)"
  },
  {
    "input": "input : list = [4, -5, 3, 0, 2, -1]\noutput : list = [-48, -24, -18, -6, 0, 6]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(add_n([4, -5, 3, 0, 2, -1],-1),-2),2),3))",
    "io_inp": [
      4,
      -5,
      3,
      0,
      2,
      -1
    ],
    "io_out": [
      -48,
      -24,
      -18,
      -6,
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(add_n(input,-1),-2),2),3))"
  },
  {
    "input": "input : list = [5, -5, 0, -5, 5]\noutput : list = [-15, -15, 0, 15, 15]",
    "output": "generated_output : list = take(mul_n(reverse(reverse(sort_des([5, -5, 0, -5, 5]))),-3),39)",
    "io_inp": [
      5,
      -5,
      0,
      -5,
      5
    ],
    "io_out": [
      -15,
      -15,
      0,
      15,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(reverse(sort_des(input))),-3),39)"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-4, -3]",
    "output": "generated_output : list = sort_asc(reverse([-3, -4]))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [-1, 5, -4, -2, -5]\noutput : list = [0, 3]",
    "output": "generated_output : list = take(sub_n(sort_asc(add_n(drop([-1, 5, -4, -2, -5],3),1)),-4),27)",
    "io_inp": [
      -1,
      5,
      -4,
      -2,
      -5
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(add_n(drop(input,3),1)),-4),27)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [-4, -3]",
    "output": "generated_output : list = add_n(reverse(sort_des([-1, 0])),-3)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(input)),-3)"
  },
  {
    "input": "input : list = [3, -3, -2, -2, -2]\noutput : list = [-3, -2, -2, -2, 3]",
    "output": "generated_output : list = sort_asc(sort_des([3, -3, -2, -2, -2]))",
    "io_inp": [
      3,
      -3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [-40]",
    "output": "generated_output : list = take(reverse(mul_n(mul_n(take([-4, 0, -3],1),-5),-2)),29)",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(mul_n(take(input,1),-5),-2)),29)"
  },
  {
    "input": "input : list = [-2, 0, -5, 5, -2, -2]\noutput : list = [-3, -1, -6, 4, -3, -3]",
    "output": "generated_output : list = sub_n(mul_n([-2, 0, -5, 5, -2, -2],1),1)",
    "io_inp": [
      -2,
      0,
      -5,
      5,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -1,
      -6,
      4,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,1),1)"
  },
  {
    "input": "input : list = [0, 5, -4, 5, 4, -4]\noutput : list = [8, 8, -4, -16, -19, -19]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sort_asc([0, 5, -4, 5, 4, -4]),-3)),4))",
    "io_inp": [
      0,
      5,
      -4,
      5,
      4,
      -4
    ],
    "io_out": [
      8,
      8,
      -4,
      -16,
      -19,
      -19
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(mul_n(sort_asc(input),-3)),4))"
  },
  {
    "input": "input : list = [5, -1, 3, 4]\noutput : list = [5, 4, 3, -1]",
    "output": "generated_output : list = sort_des([5, -1, 3, 4])",
    "io_inp": [
      5,
      -1,
      3,
      4
    ],
    "io_out": [
      5,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 2, 1, 3, -5, -3]\noutput : list = [-3, -5, 3, 1, 2, -2]",
    "output": "generated_output : list = reverse([-2, 2, 1, 3, -5, -3])",
    "io_inp": [
      -2,
      2,
      1,
      3,
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5,
      3,
      1,
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, -1, 0]\noutput : list = [20, 0, -20, -60]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(mul_n([1, 3, -1, 0],5)))),-4)",
    "io_inp": [
      1,
      3,
      -1,
      0
    ],
    "io_out": [
      20,
      0,
      -20,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(reverse(mul_n(input,5)))),-4)"
  },
  {
    "input": "input : list = [0, -2, 2, -5, -2]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(reverse(reverse([0, -2, 2, -5, -2])),1))",
    "io_inp": [
      0,
      -2,
      2,
      -5,
      -2
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(input)),1))"
  },
  {
    "input": "input : list = [0, 0, -4, -3, -4, -1]\noutput : list = [0, -1, -3, -4, -4]",
    "output": "generated_output : list = sort_des(drop([0, 0, -4, -3, -4, -1],1))",
    "io_inp": [
      0,
      0,
      -4,
      -3,
      -4,
      -1
    ],
    "io_out": [
      0,
      -1,
      -3,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [4, 4, -2, -1]\noutput : list = [16, -4, -8]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(drop([4, 4, -2, -1],1),4)))",
    "io_inp": [
      4,
      4,
      -2,
      -1
    ],
    "io_out": [
      16,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(drop(input,1),4)))"
  },
  {
    "input": "input : list = [0, -1, 3, 2, -5, -5]\noutput : list = [-6, -6, -2, -1, 1, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(add_n(reverse([0, -1, 3, 2, -5, -5]),-1))))",
    "io_inp": [
      0,
      -1,
      3,
      2,
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -2,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(add_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [-3, -3, 1, 5, 3, -2]\noutput : list = [5, 3, 1, -2, -3, -3]",
    "output": "generated_output : list = sort_des([-3, -3, 1, 5, 3, -2])",
    "io_inp": [
      -3,
      -3,
      1,
      5,
      3,
      -2
    ],
    "io_out": [
      5,
      3,
      1,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 4, 4, -5]\noutput : list = [5, 9, 9, 0]",
    "output": "generated_output : list = add_n(reverse(reverse(take(sub_n([0, 4, 4, -5],-3),7))),2)",
    "io_inp": [
      0,
      4,
      4,
      -5
    ],
    "io_out": [
      5,
      9,
      9,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(take(sub_n(input,-3),7))),2)"
  },
  {
    "input": "input : list = [3, 5, 2, -3, 4, 1]\noutput : list = [-3, 1, 2, 3, 4, 5]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([3, 5, 2, -3, 4, 1])),1)",
    "io_inp": [
      3,
      5,
      2,
      -3,
      4,
      1
    ],
    "io_out": [
      -3,
      1,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),1)"
  },
  {
    "input": "input : list = [-1, 0, 0]\noutput : list = [-1, 0, 0]",
    "output": "generated_output : list = sort_asc([-1, 0, 0])",
    "io_inp": [
      -1,
      0,
      0
    ],
    "io_out": [
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 0, 2, -4, 4, 2]\noutput : list = [-20, 20, 10]",
    "output": "generated_output : list = take(drop(mul_n([-4, 0, 2, -4, 4, 2],5),3),26)",
    "io_inp": [
      -4,
      0,
      2,
      -4,
      4,
      2
    ],
    "io_out": [
      -20,
      20,
      10
    ],
    "output_masked": "generated_output : list = take(drop(mul_n(input,5),3),26)"
  },
  {
    "input": "input : list = [4, -3, -5, -1, 1, 3]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = drop([4, -3, -5, -1, 1, 3],3)",
    "io_inp": [
      4,
      -3,
      -5,
      -1,
      1,
      3
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [40, 35]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(drop([-5, -5, -4],1))),3),-5)",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      40,
      35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(drop(input,1))),3),-5)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sub_n([-2, -5, 1],-5)),5)),1)",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(sub_n(input,-5)),5)),1)"
  },
  {
    "input": "input : list = [2, 0, 5, -5, -3, 4]\noutput : list = [-8, -6, -3, -1, 1, 2]",
    "output": "generated_output : list = take(add_n(sort_asc([2, 0, 5, -5, -3, 4]),-3),22)",
    "io_inp": [
      2,
      0,
      5,
      -5,
      -3,
      4
    ],
    "io_out": [
      -8,
      -6,
      -3,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),-3),22)"
  },
  {
    "input": "input : list = [0, -3, 3, 5, 0]\noutput : list = [4, 2, -1, -1, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n([0, -3, 3, 5, 0],4)),3))",
    "io_inp": [
      0,
      -3,
      3,
      5,
      0
    ],
    "io_out": [
      4,
      2,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(input,4)),3))"
  },
  {
    "input": "input : list = [1, -5, 3, -2, 4, -1]\noutput : list = [-3, -9, -1, -6, 0, -5]",
    "output": "generated_output : list = add_n([1, -5, 3, -2, 4, -1],-4)",
    "io_inp": [
      1,
      -5,
      3,
      -2,
      4,
      -1
    ],
    "io_out": [
      -3,
      -9,
      -1,
      -6,
      0,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 3, 0, -5]\noutput : list = [-6, -9, -12, -14]",
    "output": "generated_output : list = take(add_n(sub_n(sort_des(reverse([-3, 3, 0, -5])),5),-4),5)",
    "io_inp": [
      -3,
      3,
      0,
      -5
    ],
    "io_out": [
      -6,
      -9,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(sort_des(reverse(input)),5),-4),5)"
  },
  {
    "input": "input : list = [1, -5, 5, 0]\noutput : list = [-14, -6, -4, 6]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(mul_n([1, -5, 5, 0],-2),3))),1)",
    "io_inp": [
      1,
      -5,
      5,
      0
    ],
    "io_out": [
      -14,
      -6,
      -4,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(mul_n(input,-2),3))),1)"
  },
  {
    "input": "input : list = [-2, -1, 0, 0]\noutput : list = [4, 4, -16, -36]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sort_asc(mul_n([-2, -1, 0, 0],-5)),-4),4))",
    "io_inp": [
      -2,
      -1,
      0,
      0
    ],
    "io_out": [
      4,
      4,
      -16,
      -36
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sort_asc(mul_n(input,-5)),-4),4))"
  },
  {
    "input": "input : list = [-1, -4, -3, -5, 2, -2]\noutput : list = [0, -135, -90, -180, 135, -45]",
    "output": "generated_output : list = mul_n(take(mul_n(mul_n(sub_n([-1, -4, -3, -5, 2, -2],-1),-3),-5),20),3)",
    "io_inp": [
      -1,
      -4,
      -3,
      -5,
      2,
      -2
    ],
    "io_out": [
      0,
      -135,
      -90,
      -180,
      135,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(mul_n(sub_n(input,-1),-3),-5),20),3)"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [0, -2, 0]",
    "output": "generated_output : list = reverse([0, -2, 0])",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      0,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 3, -4, -5, -1, -2]\noutput : list = [-5, 1, -6, -7, -3, -4]",
    "output": "generated_output : list = take(add_n(add_n(take(sub_n([-3, 3, -4, -5, -1, -2],2),19),-1),1),26)",
    "io_inp": [
      -3,
      3,
      -4,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -5,
      1,
      -6,
      -7,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(take(sub_n(input,2),19),-1),1),26)"
  },
  {
    "input": "input : list = [-3, -5, 5, 4]\noutput : list = [35, 25, -10, -15]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_des([-3, -5, 5, 4]),1),-5),-5))",
    "io_inp": [
      -3,
      -5,
      5,
      4
    ],
    "io_out": [
      35,
      25,
      -10,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(sort_des(input),1),-5),-5))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = sort_des(reverse(sub_n(sort_des([-1, -1]),-5)))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sub_n(sort_des(input),-5)))"
  },
  {
    "input": "input : list = [5, 1, -2, -5, -2, 1]\noutput : list = [8, 2, 2, -4, -4, -12]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(sort_asc([5, 1, -2, -5, -2, 1]),-2)),3),1)",
    "io_inp": [
      5,
      1,
      -2,
      -5,
      -2,
      1
    ],
    "io_out": [
      8,
      2,
      2,
      -4,
      -4,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(sort_asc(input),-2)),3),1)"
  },
  {
    "input": "input : list = [1, -1, 3, -3, -2]\noutput : list = [-4, -5, 1, -3, -1]",
    "output": "generated_output : list = reverse(sub_n([1, -1, 3, -3, -2],2))",
    "io_inp": [
      1,
      -1,
      3,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -5,
      1,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,2))"
  },
  {
    "input": "input : list = [-2, 4, 3, 1, -5]\noutput : list = [-8, -5, -2, 0, 1]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(sort_asc([-2, 4, 3, 1, -5]),2)),-1))",
    "io_inp": [
      -2,
      4,
      3,
      1,
      -5
    ],
    "io_out": [
      -8,
      -5,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(sort_asc(input),2)),-1))"
  },
  {
    "input": "input : list = [2, 1, 5, 3]\noutput : list = [-4, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(add_n([2, 1, 5, 3],-5))",
    "io_inp": [
      2,
      1,
      5,
      3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [3, 0, -3, 2, -4, -2]\noutput : list = [21, 15, 9, 19, 7, 11]",
    "output": "generated_output : list = add_n(mul_n(take(take(sub_n([3, 0, -3, 2, -4, -2],-5),18),16),2),5)",
    "io_inp": [
      3,
      0,
      -3,
      2,
      -4,
      -2
    ],
    "io_out": [
      21,
      15,
      9,
      19,
      7,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(sub_n(input,-5),18),16),2),5)"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [-10]",
    "output": "generated_output : list = mul_n(take([2, 1, 2],1),-5)",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(input,1),-5)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [7, -1]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n([-1, -5],-2))),5),-2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(reverse(mul_n(input,-2))),5),-2)"
  },
  {
    "input": "input : list = [4, -5, 1, 2, 1]\noutput : list = [5, -4, 2, 3, 2]",
    "output": "generated_output : list = add_n([4, -5, 1, 2, 1],1)",
    "io_inp": [
      4,
      -5,
      1,
      2,
      1
    ],
    "io_out": [
      5,
      -4,
      2,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-50, -15]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sort_des([2, -5])),2),-3),5)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -50,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(sort_des(input)),2),-3),5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(reverse([-5, 2]),2),-1)))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(reverse(input),2),-1)))"
  },
  {
    "input": "input : list = [3, 5, 1, -3, 0]\noutput : list = [-4, -7, -3, 1, -1]",
    "output": "generated_output : list = sub_n(reverse([3, 5, 1, -3, 0]),4)",
    "io_inp": [
      3,
      5,
      1,
      -3,
      0
    ],
    "io_out": [
      -4,
      -7,
      -3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [1, -5, -4, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(take([1, -5, -4, 2],1),-1)),3))",
    "io_inp": [
      1,
      -5,
      -4,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(take(input,1),-1)),3))"
  },
  {
    "input": "input : list = [3, -4, 3, 3, 2]\noutput : list = [48, -64]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(take([3, -4, 3, 3, 2],2)),4)),4)",
    "io_inp": [
      3,
      -4,
      3,
      3,
      2
    ],
    "io_out": [
      48,
      -64
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(take(input,2)),4)),4)"
  },
  {
    "input": "input : list = [-5, -4, -3]\noutput : list = [-3, -4, -5]",
    "output": "generated_output : list = reverse(mul_n([-5, -4, -3],1))",
    "io_inp": [
      -5,
      -4,
      -3
    ],
    "io_out": [
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,1))"
  },
  {
    "input": "input : list = [-4, -3, 0]\noutput : list = [3, 6, 7]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(take(add_n([-4, -3, 0],-3),17))),-1)",
    "io_inp": [
      -4,
      -3,
      0
    ],
    "io_out": [
      3,
      6,
      7
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(take(add_n(input,-3),17))),-1)"
  },
  {
    "input": "input : list = [1, 5, 2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(drop([1, 5, 2, 3],2)))))",
    "io_inp": [
      1,
      5,
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [1, 2, 3, 2, 4]\noutput : list = [-7, -6, -5, -6, -4]",
    "output": "generated_output : list = sub_n(sub_n([1, 2, 3, 2, 4],5),3)",
    "io_inp": [
      1,
      2,
      3,
      2,
      4
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,5),3)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-6, -1]",
    "output": "generated_output : list = reverse(add_n([0, -5],-1))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-1))"
  },
  {
    "input": "input : list = [5, -3, 0]\noutput : list = [2, -6, -3]",
    "output": "generated_output : list = add_n([5, -3, 0],-3)",
    "io_inp": [
      5,
      -3,
      0
    ],
    "io_out": [
      2,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-4, -5, 2, 1, -5]\noutput : list = [-7, -7, -6, -1, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(reverse(sub_n([-4, -5, 2, 1, -5],5))),3),1)",
    "io_inp": [
      -4,
      -5,
      2,
      1,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(reverse(sub_n(input,5))),3),1)"
  },
  {
    "input": "input : list = [-5, 4, -4]\noutput : list = [15, 12, -12]",
    "output": "generated_output : list = mul_n(sort_asc([-5, 4, -4]),-3)",
    "io_inp": [
      -5,
      4,
      -4
    ],
    "io_out": [
      15,
      12,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sort_des(take([5, 1, 5],1)))),-3)",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sort_des(take(input,1)))),-3)"
  },
  {
    "input": "input : list = [2, -5, -3, 1]\noutput : list = [-4]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(take([2, -5, -3, 1],1),-2)),1)",
    "io_inp": [
      2,
      -5,
      -3,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(take(input,1),-2)),1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [40, 8]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(add_n(sort_asc([4, -4]),-5)),-1),-4)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      40,
      8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(add_n(sort_asc(input),-5)),-1),-4)"
  },
  {
    "input": "input : list = [3, -4, 2, -5]\noutput : list = [24, 18, -18, -24]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(reverse([3, -4, 2, -5])),2),2),-3)",
    "io_inp": [
      3,
      -4,
      2,
      -5
    ],
    "io_out": [
      24,
      18,
      -18,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(reverse(input)),2),2),-3)"
  },
  {
    "input": "input : list = [0, 5, 4, 1, 5]\noutput : list = [1, 4, 5]",
    "output": "generated_output : list = take(take(reverse(take(drop([0, 5, 4, 1, 5],1),3)),21),23)",
    "io_inp": [
      0,
      5,
      4,
      1,
      5
    ],
    "io_out": [
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(drop(input,1),3)),21),23)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-23, -18]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(mul_n([3, 4],-5),11))),3)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -23,
      -18
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(mul_n(input,-5),11))),3)"
  },
  {
    "input": "input : list = [-2, -1, -2, 5]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -1, -2, 5],1)",
    "io_inp": [
      -2,
      -1,
      -2,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [14, -6]",
    "output": "generated_output : list = sub_n(mul_n(add_n(take(reverse([3, -1]),10),-2),-5),1)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      14,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(take(reverse(input),10),-2),-5),1)"
  },
  {
    "input": "input : list = [-3, 2, -4, 4, -3, 3]\noutput : list = [-55, -25, -60, -20, -50, -25]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(add_n([-3, 2, -4, 4, -3, 3],3)),5),-5),1)",
    "io_inp": [
      -3,
      2,
      -4,
      4,
      -3,
      3
    ],
    "io_out": [
      -55,
      -25,
      -60,
      -20,
      -50,
      -25
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(add_n(input,3)),5),-5),1)"
  },
  {
    "input": "input : list = [-5, 5, 4]\noutput : list = [4, 5, -5]",
    "output": "generated_output : list = reverse([-5, 5, 4])",
    "io_inp": [
      -5,
      5,
      4
    ],
    "io_out": [
      4,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -3, 3]\noutput : list = [12, -12, 12]",
    "output": "generated_output : list = reverse(mul_n([3, -3, 3],4))",
    "io_inp": [
      3,
      -3,
      3
    ],
    "io_out": [
      12,
      -12,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [4, 4, 1, 0, 5, 4]\noutput : list = [-11, -8, -8, -8, 1, 4]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(add_n([4, 4, 1, 0, 5, 4],-1)),-3),1),16)",
    "io_inp": [
      4,
      4,
      1,
      0,
      5,
      4
    ],
    "io_out": [
      -11,
      -8,
      -8,
      -8,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(add_n(input,-1)),-3),1),16)"
  },
  {
    "input": "input : list = [3, -5, 2]\noutput : list = [-9, 15, -6]",
    "output": "generated_output : list = mul_n([3, -5, 2],-3)",
    "io_inp": [
      3,
      -5,
      2
    ],
    "io_out": [
      -9,
      15,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -5, -4, -2, -3]\noutput : list = [26, 26, 29, 32, 35]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sub_n([-2, -5, -4, -2, -3],5),-3))),-5)",
    "io_inp": [
      -2,
      -5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      26,
      26,
      29,
      32,
      35
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sub_n(input,5),-3))),-5)"
  },
  {
    "input": "input : list = [-1, 5, -3, 3]\noutput : list = [10, 4, -8, -14]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc([-1, 5, -3, 3]),3))),5)",
    "io_inp": [
      -1,
      5,
      -3,
      3
    ],
    "io_out": [
      10,
      4,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(sort_asc(input),3))),5)"
  },
  {
    "input": "input : list = [4, -5, -4, 3, 1]\noutput : list = [-32, 40, 32, -24, -8]",
    "output": "generated_output : list = reverse(reverse(mul_n(take(mul_n([4, -5, -4, 3, 1],-4),17),2)))",
    "io_inp": [
      4,
      -5,
      -4,
      3,
      1
    ],
    "io_out": [
      -32,
      40,
      32,
      -24,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(take(mul_n(input,-4),17),2)))"
  },
  {
    "input": "input : list = [2, -3, -1, -5, 0, 1]\noutput : list = [-1, -2, -3, -4, -6, -8]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([2, -3, -1, -5, 0, 1]),3))",
    "io_inp": [
      2,
      -3,
      -1,
      -5,
      0,
      1
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),3))"
  },
  {
    "input": "input : list = [5, -3, 1, 4]\noutput : list = [5, 4, 1, -3]",
    "output": "generated_output : list = sort_des([5, -3, 1, 4])",
    "io_inp": [
      5,
      -3,
      1,
      4
    ],
    "io_out": [
      5,
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, -1, -4, 4]\noutput : list = [-117, -57, -117, -177, -17]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(add_n([-1, 2, -1, -4, 4],-5),-1),-5),4),-3)",
    "io_inp": [
      -1,
      2,
      -1,
      -4,
      4
    ],
    "io_out": [
      -117,
      -57,
      -117,
      -177,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(add_n(input,-5),-1),-5),4),-3)"
  },
  {
    "input": "input : list = [1, -5, 0, 3, 4]\noutput : list = [20, -4, 16, 28, 32]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n([1, -5, 0, 3, 4],4),3),1),-2),4)",
    "io_inp": [
      1,
      -5,
      0,
      3,
      4
    ],
    "io_out": [
      20,
      -4,
      16,
      28,
      32
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sub_n(add_n(input,4),3),1),-2),4)"
  },
  {
    "input": "input : list = [2, 3, 1, 4, 4]\noutput : list = [40, 40, 30, 20, 10]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(reverse([2, 3, 1, 4, 4]),-5),-2))",
    "io_inp": [
      2,
      3,
      1,
      4,
      4
    ],
    "io_out": [
      40,
      40,
      30,
      20,
      10
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(reverse(input),-5),-2))"
  },
  {
    "input": "input : list = [1, 0, -3, 1]\noutput : list = [5, 9]",
    "output": "generated_output : list = sub_n(add_n(take(add_n(drop([1, 0, -3, 1],2),5),3),-1),-4)",
    "io_inp": [
      1,
      0,
      -3,
      1
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(add_n(drop(input,2),5),3),-1),-4)"
  },
  {
    "input": "input : list = [-1, -3, -5, -4, -2, -3]\noutput : list = [-22, -18, -14, -14, -10, -6]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(mul_n([-1, -3, -5, -4, -2, -3],-2),-2))),2)",
    "io_inp": [
      -1,
      -3,
      -5,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -22,
      -18,
      -14,
      -14,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(mul_n(input,-2),-2))),2)"
  },
  {
    "input": "input : list = [-4, 1, 0, -4]\noutput : list = [4, 4]",
    "output": "generated_output : list = drop(add_n(sub_n(sort_des(sort_des([-4, 1, 0, -4])),-5),3),2)",
    "io_inp": [
      -4,
      1,
      0,
      -4
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = drop(add_n(sub_n(sort_des(sort_des(input)),-5),3),2)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [48, 24]",
    "output": "generated_output : list = take(mul_n(sort_asc(sort_asc(mul_n([-4, -2],3))),-4),2)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      48,
      24
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sort_asc(mul_n(input,3))),-4),2)"
  },
  {
    "input": "input : list = [2, -4, -3, -2, -3]\noutput : list = [-3, -2, -3]",
    "output": "generated_output : list = drop([2, -4, -3, -2, -3],2)",
    "io_inp": [
      2,
      -4,
      -3,
      -2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [2, -4, 2]\noutput : list = [8]",
    "output": "generated_output : list = reverse(sub_n(reverse(sub_n(take([2, -4, 2],1),-1)),-5))",
    "io_inp": [
      2,
      -4,
      2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sub_n(take(input,1),-1)),-5))"
  },
  {
    "input": "input : list = [-5, 4, 1, 2, -2]\noutput : list = [3, -1]",
    "output": "generated_output : list = take(sub_n(drop(sub_n(add_n([-5, 4, 1, 2, -2],1),-5),3),5),3)",
    "io_inp": [
      -5,
      4,
      1,
      2,
      -2
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(sub_n(add_n(input,1),-5),3),5),3)"
  },
  {
    "input": "input : list = [3, -2, -1, -3, 3]\noutput : list = [-16, 9, 4, 14, -16]",
    "output": "generated_output : list = add_n(mul_n([3, -2, -1, -3, 3],-5),-1)",
    "io_inp": [
      3,
      -2,
      -1,
      -3,
      3
    ],
    "io_out": [
      -16,
      9,
      4,
      14,
      -16
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-5),-1)"
  },
  {
    "input": "input : list = [-2, 2, 2, -5, -3]\noutput : list = [7, 3]",
    "output": "generated_output : list = add_n(add_n(sub_n(sort_des(take([-2, 2, 2, -5, -3],2)),2),4),3)",
    "io_inp": [
      -2,
      2,
      2,
      -5,
      -3
    ],
    "io_out": [
      7,
      3
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sort_des(take(input,2)),2),4),3)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [1, 3]",
    "output": "generated_output : list = add_n([3, 5],-2)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, -2, -1, 2, 5]\noutput : list = [14, 11, 8]",
    "output": "generated_output : list = sub_n(reverse(sub_n(drop([-1, -2, -1, 2, 5],2),-5)),-4)",
    "io_inp": [
      -1,
      -2,
      -1,
      2,
      5
    ],
    "io_out": [
      14,
      11,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(drop(input,2),-5)),-4)"
  },
  {
    "input": "input : list = [0, -3, 2]\noutput : list = [5, -1, -10]",
    "output": "generated_output : list = add_n(sort_des(sort_des(sort_asc(mul_n([0, -3, 2],3)))),-1)",
    "io_inp": [
      0,
      -3,
      2
    ],
    "io_out": [
      5,
      -1,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(sort_asc(mul_n(input,3)))),-1)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [-6, 10]",
    "output": "generated_output : list = sort_asc(take(mul_n(reverse(reverse([5, -3])),2),23))",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      -6,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(reverse(reverse(input)),2),23))"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [3, -2, 3]",
    "output": "generated_output : list = mul_n([3, -2, 3],1)",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-3, -1, -2, 5, 2, 4]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = mul_n(take(add_n(sort_des(take([-3, -1, -2, 5, 2, 4],3)),2),21),-1)",
    "io_inp": [
      -3,
      -1,
      -2,
      5,
      2,
      4
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_des(take(input,3)),2),21),-1)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-1, -9]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_des([4, -4]),1),4)))",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sub_n(sort_des(input),1),4)))"
  },
  {
    "input": "input : list = [-1, -4, 0, -4, 1]\noutput : list = [0, 12, 48]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(mul_n(take([-1, -4, 0, -4, 1],3),1)),3),-4)",
    "io_inp": [
      -1,
      -4,
      0,
      -4,
      1
    ],
    "io_out": [
      0,
      12,
      48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(mul_n(take(input,3),1)),3),-4)"
  },
  {
    "input": "input : list = [3, 0, 1]\noutput : list = [12, 11, 14]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(add_n([3, 0, 1],2)),-5),4),19)",
    "io_inp": [
      3,
      0,
      1
    ],
    "io_out": [
      12,
      11,
      14
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(add_n(input,2)),-5),4),19)"
  },
  {
    "input": "input : list = [-1, 1, -4, -4]\noutput : list = [2, 0, -3, -3]",
    "output": "generated_output : list = take(sort_des(add_n(sort_des([-1, 1, -4, -4]),1)),19)",
    "io_inp": [
      -1,
      1,
      -4,
      -4
    ],
    "io_out": [
      2,
      0,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_des(input),1)),19)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [20, 20]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(sort_des([-5, -5]),5),-2)),30)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(sort_des(input),5),-2)),30)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-4, 3]",
    "output": "generated_output : list = mul_n([-4, 3],1)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, -4, -4, 3]\noutput : list = [2, 1, -6, -6]",
    "output": "generated_output : list = add_n(sort_des(sort_asc([4, -4, -4, 3])),-2)",
    "io_inp": [
      4,
      -4,
      -4,
      3
    ],
    "io_out": [
      2,
      1,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(input)),-2)"
  },
  {
    "input": "input : list = [-5, -5, -5, 2, -3]\noutput : list = [1, 6, -1, -1, -1]",
    "output": "generated_output : list = add_n(reverse(reverse(reverse(add_n([-5, -5, -5, 2, -3],5)))),-1)",
    "io_inp": [
      -5,
      -5,
      -5,
      2,
      -3
    ],
    "io_out": [
      1,
      6,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(reverse(add_n(input,5)))),-1)"
  },
  {
    "input": "input : list = [-3, -2, 4]\noutput : list = [-20, 10, 15]",
    "output": "generated_output : list = sort_asc(mul_n([-3, -2, 4],-5))",
    "io_inp": [
      -3,
      -2,
      4
    ],
    "io_out": [
      -20,
      10,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [2, 3, -3, -5, -3]\noutput : list = [100, 60, 60, -40, -60]",
    "output": "generated_output : list = take(mul_n(take(mul_n(sort_asc([2, 3, -3, -5, -3]),-5),23),4),15)",
    "io_inp": [
      2,
      3,
      -3,
      -5,
      -3
    ],
    "io_out": [
      100,
      60,
      60,
      -40,
      -60
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(sort_asc(input),-5),23),4),15)"
  },
  {
    "input": "input : list = [-2, 3, -4, -2]\noutput : list = [3, -2, -2, -4]",
    "output": "generated_output : list = sort_des([-2, 3, -4, -2])",
    "io_inp": [
      -2,
      3,
      -4,
      -2
    ],
    "io_out": [
      3,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -2, 5, 5, 0]\noutput : list = [0, 6, -15, -15, 0]",
    "output": "generated_output : list = take(mul_n([0, -2, 5, 5, 0],-3),15)",
    "io_inp": [
      0,
      -2,
      5,
      5,
      0
    ],
    "io_out": [
      0,
      6,
      -15,
      -15,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-3),15)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [8, 2]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(sort_des([-1, 5]),9),2),-1))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(sort_des(input),9),2),-1))"
  },
  {
    "input": "input : list = [-3, 1, -5, -4, 5, 5]\noutput : list = [-13, -12, -11, -7, -3, -3]",
    "output": "generated_output : list = sort_asc(take(sub_n(add_n(sort_asc([-3, 1, -5, -4, 5, 5]),-5),3),13))",
    "io_inp": [
      -3,
      1,
      -5,
      -4,
      5,
      5
    ],
    "io_out": [
      -13,
      -12,
      -11,
      -7,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(add_n(sort_asc(input),-5),3),13))"
  },
  {
    "input": "input : list = [-3, 2, -2]\noutput : list = [0, -4, -5]",
    "output": "generated_output : list = take(sort_des(sub_n(sub_n(add_n([-3, 2, -2],-4),-3),1)),21)",
    "io_inp": [
      -3,
      2,
      -2
    ],
    "io_out": [
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(sub_n(add_n(input,-4),-3),1)),21)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 24]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(sub_n([3, -4],2),-1)),4))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(mul_n(sub_n(input,2),-1)),4))"
  },
  {
    "input": "input : list = [-3, 4, -4, -5, 1]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(drop([-3, 4, -4, -5, 1],3)),-3)))",
    "io_inp": [
      -3,
      4,
      -4,
      -5,
      1
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(drop(input,3)),-3)))"
  },
  {
    "input": "input : list = [3, 1, -5]\noutput : list = [1, -5]",
    "output": "generated_output : list = drop([3, 1, -5],1)",
    "io_inp": [
      3,
      1,
      -5
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, 5, -4, -5, 1]\noutput : list = [1, -5, -4, 5, 3]",
    "output": "generated_output : list = reverse([3, 5, -4, -5, 1])",
    "io_inp": [
      3,
      5,
      -4,
      -5,
      1
    ],
    "io_out": [
      1,
      -5,
      -4,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 3, 2, 1, 4]\noutput : list = [12, 12, 6, 0, -6]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_asc([1, 3, 2, 1, 4]),-3),2),1),-3)",
    "io_inp": [
      1,
      3,
      2,
      1,
      4
    ],
    "io_out": [
      12,
      12,
      6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_asc(input),-3),2),1),-3)"
  },
  {
    "input": "input : list = [-4, 4, 3, 1, 3]\noutput : list = [-8, -6, -6, -2, 8]",
    "output": "generated_output : list = sort_asc(reverse(reverse(mul_n([-4, 4, 3, 1, 3],-2))))",
    "io_inp": [
      -4,
      4,
      3,
      1,
      3
    ],
    "io_out": [
      -8,
      -6,
      -6,
      -2,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(mul_n(input,-2))))"
  },
  {
    "input": "input : list = [1, 3, -2, 5, 0]\noutput : list = [-6, -1, -8, -3, -5]",
    "output": "generated_output : list = reverse(sub_n(sub_n(take(mul_n([1, 3, -2, 5, 0],1),19),1),5))",
    "io_inp": [
      1,
      3,
      -2,
      5,
      0
    ],
    "io_out": [
      -6,
      -1,
      -8,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(take(mul_n(input,1),19),1),5))"
  },
  {
    "input": "input : list = [1, 2, 5, 2, -1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sub_n(take([1, 2, 5, 2, -1],2),2)",
    "io_inp": [
      1,
      2,
      5,
      2,
      -1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),2)"
  },
  {
    "input": "input : list = [-4, -5, -2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(drop([-4, -5, -2, 2],2)))))",
    "io_inp": [
      -4,
      -5,
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [-5, -1, 4, 2, -5, 5]\noutput : list = [24, 24, 8, -4, -12, -16]",
    "output": "generated_output : list = mul_n(take(add_n(sort_asc(add_n([-5, -1, 4, 2, -5, 5],-4)),3),30),-4)",
    "io_inp": [
      -5,
      -1,
      4,
      2,
      -5,
      5
    ],
    "io_out": [
      24,
      24,
      8,
      -4,
      -12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(sort_asc(add_n(input,-4)),3),30),-4)"
  },
  {
    "input": "input : list = [4, 0, 1, -2]\noutput : list = [-5, -3, -2, 1]",
    "output": "generated_output : list = take(add_n(take(sort_asc(sort_des([4, 0, 1, -2])),23),-3),39)",
    "io_inp": [
      4,
      0,
      1,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(sort_des(input)),23),-3),39)"
  },
  {
    "input": "input : list = [1, -4, -4, 4, 5]\noutput : list = [-7, -7, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sub_n([1, -4, -4, 4, 5],1),3),1)))",
    "io_inp": [
      1,
      -4,
      -4,
      4,
      5
    ],
    "io_out": [
      -7,
      -7,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(sub_n(input,1),3),1)))"
  },
  {
    "input": "input : list = [-5, -5, -2]\noutput : list = [-4, -4, -1]",
    "output": "generated_output : list = add_n(add_n(add_n([-5, -5, -2],3),3),-5)",
    "io_inp": [
      -5,
      -5,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(input,3),3),-5)"
  },
  {
    "input": "input : list = [1, -5, -4, 1, -1, -2]\noutput : list = [-5, -4, -2, -1, 1, 1]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des([1, -5, -4, 1, -1, -2]))),47)",
    "io_inp": [
      1,
      -5,
      -4,
      1,
      -1,
      -2
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(input))),47)"
  },
  {
    "input": "input : list = [2, 3, 3, 0]\noutput : list = [0, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([2, 3, 3, 0])",
    "io_inp": [
      2,
      3,
      3,
      0
    ],
    "io_out": [
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [12, 14]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(add_n([5, 3],-3)),-4),5),-3)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      12,
      14
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(add_n(input,-3)),-4),5),-3)"
  },
  {
    "input": "input : list = [2, -2, 2, -5, -5, 4]\noutput : list = [3, 3, 0, -4, -4, -6]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_asc([2, -2, 2, -5, -5, 4])),-2)),-1)",
    "io_inp": [
      2,
      -2,
      2,
      -5,
      -5,
      4
    ],
    "io_out": [
      3,
      3,
      0,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(sort_asc(input)),-2)),-1)"
  },
  {
    "input": "input : list = [4, -3, 1, -1, 2, 2]\noutput : list = [-3, -5, -5, -6, -8, -10]",
    "output": "generated_output : list = sort_des(sort_asc(take(sub_n(sub_n([4, -3, 1, -1, 2, 2],4),3),18)))",
    "io_inp": [
      4,
      -3,
      1,
      -1,
      2,
      2
    ],
    "io_out": [
      -3,
      -5,
      -5,
      -6,
      -8,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sub_n(sub_n(input,4),3),18)))"
  },
  {
    "input": "input : list = [3, -3, 0, 1]\noutput : list = [3, 1, 0, -3]",
    "output": "generated_output : list = sort_des(take(sort_asc(sort_asc(sort_des([3, -3, 0, 1]))),37))",
    "io_inp": [
      3,
      -3,
      0,
      1
    ],
    "io_out": [
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(sort_asc(sort_des(input))),37))"
  },
  {
    "input": "input : list = [5, -4, 2]\noutput : list = [7, -2, 4]",
    "output": "generated_output : list = add_n(sub_n(sub_n([5, -4, 2],-1),-4),-3)",
    "io_inp": [
      5,
      -4,
      2
    ],
    "io_out": [
      7,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,-1),-4),-3)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [4, -1]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(reverse([4, -1]))),1)",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(reverse(input))),1)"
  },
  {
    "input": "input : list = [2, 1, 5, 4]\noutput : list = [-49, -44, -34, -29]",
    "output": "generated_output : list = reverse(sort_des(add_n(mul_n(add_n([2, 1, 5, 4],5),-5),1)))",
    "io_inp": [
      2,
      1,
      5,
      4
    ],
    "io_out": [
      -49,
      -44,
      -34,
      -29
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(mul_n(add_n(input,5),-5),1)))"
  },
  {
    "input": "input : list = [-3, 4, -5, -4, 2]\noutput : list = [-5, 2, -7, -6, 0]",
    "output": "generated_output : list = add_n([-3, 4, -5, -4, 2],-2)",
    "io_inp": [
      -3,
      4,
      -5,
      -4,
      2
    ],
    "io_out": [
      -5,
      2,
      -7,
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -4, 3]\noutput : list = [-6]",
    "output": "generated_output : list = mul_n(take(add_n(take([-5, -4, 3],1),2),8),2)",
    "io_inp": [
      -5,
      -4,
      3
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(input,1),2),8),2)"
  },
  {
    "input": "input : list = [1, -5, -3]\noutput : list = [10, 6, -2]",
    "output": "generated_output : list = mul_n(sort_asc([1, -5, -3]),-2)",
    "io_inp": [
      1,
      -5,
      -3
    ],
    "io_out": [
      10,
      6,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-5, -2, 2, 4, 1, 0]\noutput : list = [1, -1, -2, -3, -5, -8]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sub_n([-5, -2, 2, 4, 1, 0],5),-4)),2))",
    "io_inp": [
      -5,
      -2,
      2,
      4,
      1,
      0
    ],
    "io_out": [
      1,
      -1,
      -2,
      -3,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(sub_n(sub_n(input,5),-4)),2))"
  },
  {
    "input": "input : list = [2, 0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = reverse(drop([2, 0, 3],1))",
    "io_inp": [
      2,
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [3, -3, 2]\noutput : list = [3]",
    "output": "generated_output : list = take(take(add_n(sub_n([3, -3, 2],1),1),1),22)",
    "io_inp": [
      3,
      -3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(take(add_n(sub_n(input,1),1),1),22)"
  },
  {
    "input": "input : list = [-1, -3, 4, -2]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(add_n(sort_des(take([-1, -3, 4, -2],1)),-2),-1)",
    "io_inp": [
      -1,
      -3,
      4,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(take(input,1)),-2),-1)"
  },
  {
    "input": "input : list = [4, -4, 4, 0]\noutput : list = [204, 4, 204, 104]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(sub_n([4, -4, 4, 0],-4),5),5),4),31)",
    "io_inp": [
      4,
      -4,
      4,
      0
    ],
    "io_out": [
      204,
      4,
      204,
      104
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(sub_n(input,-4),5),5),4),31)"
  },
  {
    "input": "input : list = [5, 1, 5, -3]\noutput : list = [-3, 1, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 1, 5, -3])",
    "io_inp": [
      5,
      1,
      5,
      -3
    ],
    "io_out": [
      -3,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, 2, -4, 1, 4, -3]\noutput : list = [-4, -3, 1, 4]",
    "output": "generated_output : list = take(sort_asc(drop([-3, 2, -4, 1, 4, -3],2)),37)",
    "io_inp": [
      -3,
      2,
      -4,
      1,
      4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(input,2)),37)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-5, -3]",
    "output": "generated_output : list = sort_asc([-5, -3])",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [-11, 19, -51]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(mul_n([1, -2, 5],2),-5))),1)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      -11,
      19,
      -51
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(mul_n(input,2),-5))),1)"
  },
  {
    "input": "input : list = [5, 3, -1, 4]\noutput : list = [3, 1, -3, 2]",
    "output": "generated_output : list = sub_n([5, 3, -1, 4],2)",
    "io_inp": [
      5,
      3,
      -1,
      4
    ],
    "io_out": [
      3,
      1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [3, 4, -4]\noutput : list = [10, 9, 2]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(take(add_n([3, 4, -4],2),7))),-4)",
    "io_inp": [
      3,
      4,
      -4
    ],
    "io_out": [
      10,
      9,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(take(add_n(input,2),7))),-4)"
  },
  {
    "input": "input : list = [1, 3, 2]\noutput : list = [9, 10, 8]",
    "output": "generated_output : list = reverse(add_n(sub_n([1, 3, 2],-2),5))",
    "io_inp": [
      1,
      3,
      2
    ],
    "io_out": [
      9,
      10,
      8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-2),5))"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [40, 0, -60]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_des(mul_n([2, -3, 0],4)),5)))",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      40,
      0,
      -60
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_des(mul_n(input,4)),5)))"
  },
  {
    "input": "input : list = [-2, 0, -1, -5, -5]\noutput : list = [0, 0, 3, 4, 5]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(reverse([-2, 0, -1, -5, -5]))),2),3)",
    "io_inp": [
      -2,
      0,
      -1,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(reverse(input))),2),3)"
  },
  {
    "input": "input : list = [-4, 3, 4, 0, -1, -1]\noutput : list = [16, 12, 0, -4, -4, -16]",
    "output": "generated_output : list = mul_n(sort_des([-4, 3, 4, 0, -1, -1]),4)",
    "io_inp": [
      -4,
      3,
      4,
      0,
      -1,
      -1
    ],
    "io_out": [
      16,
      12,
      0,
      -4,
      -4,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [1, 4, 4]\noutput : list = [1, 4, 4]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(sort_asc([1, 4, 4]),15))))",
    "io_inp": [
      1,
      4,
      4
    ],
    "io_out": [
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(sort_asc(input),15))))"
  },
  {
    "input": "input : list = [5, -5, 2, -5]\noutput : list = [-7, -22, -57, -57]",
    "output": "generated_output : list = sub_n(add_n(sort_des(mul_n(sub_n([5, -5, 2, -5],5),5)),-5),2)",
    "io_inp": [
      5,
      -5,
      2,
      -5
    ],
    "io_out": [
      -7,
      -22,
      -57,
      -57
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(mul_n(sub_n(input,5),5)),-5),2)"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [-2, 5]",
    "output": "generated_output : list = reverse([5, -2])",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 1, 0, -4]\noutput : list = [21, 9, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(drop([0, 1, 0, -4],1),4),-1)),-3)",
    "io_inp": [
      0,
      1,
      0,
      -4
    ],
    "io_out": [
      21,
      9,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sub_n(drop(input,1),4),-1)),-3)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(sort_asc([-3, 4]))),1),-2)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(sort_asc(input))),1),-2)"
  },
  {
    "input": "input : list = [-1, 3, 5]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = sort_des([-1, 3, 5])",
    "io_inp": [
      -1,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, -4, -1, 2, -5, -3]\noutput : list = [12, 20, -8, 4]",
    "output": "generated_output : list = take(take(reverse(mul_n(drop([4, -4, -1, 2, -5, -3],2),-4)),11),36)",
    "io_inp": [
      4,
      -4,
      -1,
      2,
      -5,
      -3
    ],
    "io_out": [
      12,
      20,
      -8,
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(mul_n(drop(input,2),-4)),11),36)"
  },
  {
    "input": "input : list = [-2, 3, 2, -1]\noutput : list = [4, 9, 8, 5]",
    "output": "generated_output : list = add_n(add_n([-2, 3, 2, -1],1),5)",
    "io_inp": [
      -2,
      3,
      2,
      -1
    ],
    "io_out": [
      4,
      9,
      8,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,1),5)"
  },
  {
    "input": "input : list = [3, 3, 2]\noutput : list = [-4, -4, -5]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(sort_asc([3, 3, 2]),1)),3),-4)",
    "io_inp": [
      3,
      3,
      2
    ],
    "io_out": [
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(sort_asc(input),1)),3),-4)"
  },
  {
    "input": "input : list = [5, 4, 2]\noutput : list = [18, 14, 6]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc([5, 4, 2]),4)),-2)",
    "io_inp": [
      5,
      4,
      2
    ],
    "io_out": [
      18,
      14,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(input),4)),-2)"
  },
  {
    "input": "input : list = [-1, 0]\noutput : list = [3, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_asc([-1, 0]),1))),-5)",
    "io_inp": [
      -1,
      0
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sub_n(sort_asc(input),1))),-5)"
  },
  {
    "input": "input : list = [3, 3, 4, 3]\noutput : list = [11, 12, 11, 11]",
    "output": "generated_output : list = add_n(sub_n(reverse([3, 3, 4, 3]),-4),4)",
    "io_inp": [
      3,
      3,
      4,
      3
    ],
    "io_out": [
      11,
      12,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),-4),4)"
  },
  {
    "input": "input : list = [-5, 4, -1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(drop([-5, 4, -1, 5],2))",
    "io_inp": [
      -5,
      4,
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [1, -4, 3]\noutput : list = [8, -12]",
    "output": "generated_output : list = add_n(add_n(sort_des(take(mul_n([1, -4, 3],-4),2)),-5),-3)",
    "io_inp": [
      1,
      -4,
      3
    ],
    "io_out": [
      8,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(take(mul_n(input,-4),2)),-5),-3)"
  },
  {
    "input": "input : list = [-3, 0, 1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take(drop([-3, 0, 1, 0],2),12))))",
    "io_inp": [
      -3,
      0,
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(drop(input,2),12))))"
  },
  {
    "input": "input : list = [-5, -4, -1, 3]\noutput : list = [6, 4, -2, -10]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse([-5, -4, -1, 3])),2)),-2)",
    "io_inp": [
      -5,
      -4,
      -1,
      3
    ],
    "io_out": [
      6,
      4,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse(input)),2)),-2)"
  },
  {
    "input": "input : list = [-2, -5, 2, 2]\noutput : list = [4, 4, 0, -3]",
    "output": "generated_output : list = sort_des(add_n(take(take(reverse([-2, -5, 2, 2]),10),14),2))",
    "io_inp": [
      -2,
      -5,
      2,
      2
    ],
    "io_out": [
      4,
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(reverse(input),10),14),2))"
  },
  {
    "input": "input : list = [4, -4, -5, -1, 1, 2]\noutput : list = [4, -4]",
    "output": "generated_output : list = sort_des(take(take([4, -4, -5, -1, 1, 2],2),22))",
    "io_inp": [
      4,
      -4,
      -5,
      -1,
      1,
      2
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(take(input,2),22))"
  },
  {
    "input": "input : list = [2, 5, 4, -2, -2]\noutput : list = [-4, -4, 0, 2, 3]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_des([2, 5, 4, -2, -2]))),-2)",
    "io_inp": [
      2,
      5,
      4,
      -2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_des(input))),-2)"
  },
  {
    "input": "input : list = [-2, 3, 4, -2]\noutput : list = [3, 2, -3, -3]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sub_n([-2, 3, 4, -2],-3)),3)),-1)",
    "io_inp": [
      -2,
      3,
      4,
      -2
    ],
    "io_out": [
      3,
      2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sub_n(input,-3)),3)),-1)"
  },
  {
    "input": "input : list = [5, 5, -1, 2]\noutput : list = [-9, -9, 0, 9]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sort_asc(sub_n([5, 5, -1, 2],1))),-3),-3)",
    "io_inp": [
      5,
      5,
      -1,
      2
    ],
    "io_out": [
      -9,
      -9,
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sort_asc(sub_n(input,1))),-3),-3)"
  },
  {
    "input": "input : list = [3, -2, 5, 0]\noutput : list = [-10, -6, 0, 4]",
    "output": "generated_output : list = mul_n(sort_des([3, -2, 5, 0]),-2)",
    "io_inp": [
      3,
      -2,
      5,
      0
    ],
    "io_out": [
      -10,
      -6,
      0,
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-2, 5, -4, 0]\noutput : list = [0, -4, 5, -2]",
    "output": "generated_output : list = take(reverse([-2, 5, -4, 0]),17)",
    "io_inp": [
      -2,
      5,
      -4,
      0
    ],
    "io_out": [
      0,
      -4,
      5,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(input),17)"
  },
  {
    "input": "input : list = [-4, -4, -2]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(sort_asc([-4, -4, -2])))))",
    "io_inp": [
      -4,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, 1, 0]\noutput : list = [-2, -3]",
    "output": "generated_output : list = take(sub_n(take(take(drop([2, 1, 0],1),8),2),3),7)",
    "io_inp": [
      2,
      1,
      0
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(take(take(drop(input,1),8),2),3),7)"
  },
  {
    "input": "input : list = [-5, 0, -1, 3, 2]\noutput : list = [-5, -1, 0, 2, 3]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(reverse(add_n([-5, 0, -1, 3, 2],2)),2)))",
    "io_inp": [
      -5,
      0,
      -1,
      3,
      2
    ],
    "io_out": [
      -5,
      -1,
      0,
      2,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(reverse(add_n(input,2)),2)))"
  },
  {
    "input": "input : list = [2, 1, -2]\noutput : list = [2, 1, -2]",
    "output": "generated_output : list = sort_des(reverse([2, 1, -2]))",
    "io_inp": [
      2,
      1,
      -2
    ],
    "io_out": [
      2,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-4, 2, -5]\noutput : list = [-16, -14, -2]",
    "output": "generated_output : list = mul_n(sort_asc(reverse(reverse(sub_n([-4, 2, -5],3)))),2)",
    "io_inp": [
      -4,
      2,
      -5
    ],
    "io_out": [
      -16,
      -14,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(reverse(reverse(sub_n(input,3)))),2)"
  },
  {
    "input": "input : list = [-5, -1, 3, 5]\noutput : list = [20, 12, -4, -20]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(mul_n([-5, -1, 3, 5],4)),7)),9)",
    "io_inp": [
      -5,
      -1,
      3,
      5
    ],
    "io_out": [
      20,
      12,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(mul_n(input,4)),7)),9)"
  },
  {
    "input": "input : list = [-1, 2, -3, 1]\noutput : list = [9, 3, 13, 5]",
    "output": "generated_output : list = add_n(mul_n(sub_n([-1, 2, -3, 1],1),-2),5)",
    "io_inp": [
      -1,
      2,
      -3,
      1
    ],
    "io_out": [
      9,
      3,
      13,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,1),-2),5)"
  },
  {
    "input": "input : list = [-2, -1, -1, 5]\noutput : list = [-1, 0, 0, 6]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(sort_des([-2, -1, -1, 5])),9),-1))",
    "io_inp": [
      -2,
      -1,
      -1,
      5
    ],
    "io_out": [
      -1,
      0,
      0,
      6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(sort_des(input)),9),-1))"
  },
  {
    "input": "input : list = [3, 1, 1, 2, -3]\noutput : list = [1, 1, 2, -3]",
    "output": "generated_output : list = drop([3, 1, 1, 2, -3],1)",
    "io_inp": [
      3,
      1,
      1,
      2,
      -3
    ],
    "io_out": [
      1,
      1,
      2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [0, 5, -2, 2, -3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(add_n(reverse(sort_des(take([0, 5, -2, 2, -3],2))),-2),28)",
    "io_inp": [
      0,
      5,
      -2,
      2,
      -3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(sort_des(take(input,2))),-2),28)"
  },
  {
    "input": "input : list = [-2, -1, -2, -3]\noutput : list = [-6, -5]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n([-2, -1, -2, -3],4)),2))",
    "io_inp": [
      -2,
      -1,
      -2,
      -3
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(input,4)),2))"
  },
  {
    "input": "input : list = [2, 2, 1, -4, -1]\noutput : list = [0, 0, -1, -3, -6]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sub_n(reverse([2, 2, 1, -4, -1]),2))))",
    "io_inp": [
      2,
      2,
      1,
      -4,
      -1
    ],
    "io_out": [
      0,
      0,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sub_n(reverse(input),2))))"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [5, 5, 5]",
    "output": "generated_output : list = sort_asc([5, 5, 5])",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 3, -2, -2]\noutput : list = [-2, -9]",
    "output": "generated_output : list = add_n(reverse(sub_n(sub_n(take([-4, 3, -2, -2],2),3),-2)),-4)",
    "io_inp": [
      -4,
      3,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sub_n(take(input,2),3),-2)),-4)"
  },
  {
    "input": "input : list = [-3, 1, 4, -2, 0, -4]\noutput : list = [-3]",
    "output": "generated_output : list = sort_asc(take([-3, 1, 4, -2, 0, -4],1))",
    "io_inp": [
      -3,
      1,
      4,
      -2,
      0,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [2, 3, -3, -2, -1, 4]\noutput : list = [3, 2, 8, 7, 6, 1]",
    "output": "generated_output : list = sub_n(take(add_n(sub_n(mul_n([2, 3, -3, -2, -1, 4],-1),-3),-3),49),-5)",
    "io_inp": [
      2,
      3,
      -3,
      -2,
      -1,
      4
    ],
    "io_out": [
      3,
      2,
      8,
      7,
      6,
      1
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(sub_n(mul_n(input,-1),-3),-3),49),-5)"
  },
  {
    "input": "input : list = [5, 0, -4, -5, 5, 1]\noutput : list = [-20, -20, -4, 0, 16, 20]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(sort_asc([5, 0, -4, -5, 5, 1]))),-4))",
    "io_inp": [
      5,
      0,
      -4,
      -5,
      5,
      1
    ],
    "io_out": [
      -20,
      -20,
      -4,
      0,
      16,
      20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(sort_asc(input))),-4))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-4, 4]",
    "output": "generated_output : list = sort_asc([-4, 4])",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 5, -5, 5]\noutput : list = [-1, 2]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(take([-1, -4, 5, -5, 5],2)),20)),-3)",
    "io_inp": [
      -1,
      -4,
      5,
      -5,
      5
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(take(input,2)),20)),-3)"
  },
  {
    "input": "input : list = [2, -1, 4, 4]\noutput : list = [-3, 6, 12, 12]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_asc([2, -1, 4, 4])),3)))",
    "io_inp": [
      2,
      -1,
      4,
      4
    ],
    "io_out": [
      -3,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-2, 2, -4, 0, 0, -3]\noutput : list = [-2, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(drop([-2, 2, -4, 0, 0, -3],3),-5))),4)",
    "io_inp": [
      -2,
      2,
      -4,
      0,
      0,
      -3
    ],
    "io_out": [
      -2,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sub_n(drop(input,3),-5))),4)"
  },
  {
    "input": "input : list = [5, 1, 5, -3]\noutput : list = [-2, 6, 2, 6]",
    "output": "generated_output : list = add_n(reverse([5, 1, 5, -3]),1)",
    "io_inp": [
      5,
      1,
      5,
      -3
    ],
    "io_out": [
      -2,
      6,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),1)"
  },
  {
    "input": "input : list = [2, -4, -3, -2]\noutput : list = [-2, -3, -4, 2]",
    "output": "generated_output : list = take(take(take(take(reverse([2, -4, -3, -2]),9),16),6),10)",
    "io_inp": [
      2,
      -4,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3,
      -4,
      2
    ],
    "output_masked": "generated_output : list = take(take(take(take(reverse(input),9),16),6),10)"
  },
  {
    "input": "input : list = [2, 3, -5, -1]\noutput : list = [-15, -11, -8, -7]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(sub_n([2, 3, -5, -1],4)),27),-4),2)",
    "io_inp": [
      2,
      3,
      -5,
      -1
    ],
    "io_out": [
      -15,
      -11,
      -8,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(sub_n(input,4)),27),-4),2)"
  },
  {
    "input": "input : list = [4, -4, 2, -4, -1]\noutput : list = [-4, 2, -4, -1]",
    "output": "generated_output : list = drop([4, -4, 2, -4, -1],1)",
    "io_inp": [
      4,
      -4,
      2,
      -4,
      -1
    ],
    "io_out": [
      -4,
      2,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-1, 0, -5, 4, -1]\noutput : list = [4, 0, -1, -1, -5]",
    "output": "generated_output : list = sort_des([-1, 0, -5, 4, -1])",
    "io_inp": [
      -1,
      0,
      -5,
      4,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -5, 3, -4, -5]\noutput : list = [-4, -8, -11, -12, -12]",
    "output": "generated_output : list = add_n(sort_des(add_n(reverse(sort_asc([-1, -5, 3, -4, -5])),-4)),-3)",
    "io_inp": [
      -1,
      -5,
      3,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -8,
      -11,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(reverse(sort_asc(input)),-4)),-3)"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(add_n([2, -2, 0],-2)))",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(input,-2)))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [1, 3]",
    "output": "generated_output : list = reverse(reverse(reverse([3, 1])))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-2, 5, -2, -3, -3]\noutput : list = [-7, -7, -6, 1, -6]",
    "output": "generated_output : list = reverse(add_n([-2, 5, -2, -3, -3],-4))",
    "io_inp": [
      -2,
      5,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -6,
      1,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-4))"
  },
  {
    "input": "input : list = [4, -1, -3, 0, -5, 4]\noutput : list = [22, 14, 6, 2, -14, -14]",
    "output": "generated_output : list = reverse(sub_n(mul_n(take(sort_des([4, -1, -3, 0, -5, 4]),25),-4),-2))",
    "io_inp": [
      4,
      -1,
      -3,
      0,
      -5,
      4
    ],
    "io_out": [
      22,
      14,
      6,
      2,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(take(sort_des(input),25),-4),-2))"
  },
  {
    "input": "input : list = [-5, 0, -4, -2, 2, -5]\noutput : list = [-3, 4, 0, -2, 2, -3]",
    "output": "generated_output : list = sub_n(reverse(mul_n([-5, 0, -4, -2, 2, -5],1)),-2)",
    "io_inp": [
      -5,
      0,
      -4,
      -2,
      2,
      -5
    ],
    "io_out": [
      -3,
      4,
      0,
      -2,
      2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(input,1)),-2)"
  },
  {
    "input": "input : list = [5, 5, 2, -3, 2]\noutput : list = [-2, 3, 3, 6, 6]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(reverse([5, 5, 2, -3, 2])),1)))",
    "io_inp": [
      5,
      5,
      2,
      -3,
      2
    ],
    "io_out": [
      -2,
      3,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_des(reverse(input)),1)))"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [-8, -4, 0]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n([1, -3, 5],4)))),-1)",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      -8,
      -4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(reverse(sub_n(input,4)))),-1)"
  },
  {
    "input": "input : list = [0, 3, 0, 0]\noutput : list = [-14]",
    "output": "generated_output : list = mul_n(drop(take(sub_n(sort_asc([0, 3, 0, 0]),-4),17),3),-2)",
    "io_inp": [
      0,
      3,
      0,
      0
    ],
    "io_out": [
      -14
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(sub_n(sort_asc(input),-4),17),3),-2)"
  },
  {
    "input": "input : list = [0, -4, 2]\noutput : list = [-12, -6]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(drop([0, -4, 2],1),-3)),5)",
    "io_inp": [
      0,
      -4,
      2
    ],
    "io_out": [
      -12,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(drop(input,1),-3)),5)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [0, -3, -7]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(add_n([1, -2, 5],2))),-1))",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      0,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(add_n(input,2))),-1))"
  },
  {
    "input": "input : list = [-1, -4, -3, -1, 2]\noutput : list = [2, -1, -3, -4]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(drop([-1, -4, -3, -1, 2],1)),12)))",
    "io_inp": [
      -1,
      -4,
      -3,
      -1,
      2
    ],
    "io_out": [
      2,
      -1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(drop(input,1)),12)))"
  },
  {
    "input": "input : list = [-2, 4, 0, 2, -1]\noutput : list = [-12, -6, 0, 12, 24]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_des([-2, 4, 0, 2, -1])),-1),-3),2)",
    "io_inp": [
      -2,
      4,
      0,
      2,
      -1
    ],
    "io_out": [
      -12,
      -6,
      0,
      12,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_des(input)),-1),-3),2)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [1, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des([1, 0, -1]))",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [5, -1, -2, -1, 0]\noutput : list = [0, -1, -2, -1, 5]",
    "output": "generated_output : list = reverse([5, -1, -2, -1, 0])",
    "io_inp": [
      5,
      -1,
      -2,
      -1,
      0
    ],
    "io_out": [
      0,
      -1,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -5, 5, 2, 5]\noutput : list = [3, -5]",
    "output": "generated_output : list = take([3, -5, 5, 2, 5],2)",
    "io_inp": [
      3,
      -5,
      5,
      2,
      5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [4, 3, 1, -3, -4, -1]\noutput : list = [29, 21, 5, -11, -27, -35]",
    "output": "generated_output : list = sort_des(take(sub_n(mul_n(mul_n([4, 3, 1, -3, -4, -1],4),2),3),11))",
    "io_inp": [
      4,
      3,
      1,
      -3,
      -4,
      -1
    ],
    "io_out": [
      29,
      21,
      5,
      -11,
      -27,
      -35
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(mul_n(mul_n(input,4),2),3),11))"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-4, -1]",
    "output": "generated_output : list = take(sort_asc(take(add_n(reverse([1, 4]),-5),22)),21)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(reverse(input),-5),22)),21)"
  },
  {
    "input": "input : list = [-4, -4, -3]\noutput : list = [-8, -8, -6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des([-4, -4, -3]),2))",
    "io_inp": [
      -4,
      -4,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(input),2))"
  },
  {
    "input": "input : list = [4, -4, -3, 5, 5]\noutput : list = [-10, -9, -1]",
    "output": "generated_output : list = add_n(take(sub_n(take(drop([4, -4, -3, 5, 5],1),3),5),4),-1)",
    "io_inp": [
      4,
      -4,
      -3,
      5,
      5
    ],
    "io_out": [
      -10,
      -9,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(drop(input,1),3),5),4),-1)"
  },
  {
    "input": "input : list = [2, 4, -4, -2, 3]\noutput : list = [0, -4, -12, -14, -16]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_asc([2, 4, -4, -2, 3]))),-4),-2)",
    "io_inp": [
      2,
      4,
      -4,
      -2,
      3
    ],
    "io_out": [
      0,
      -4,
      -12,
      -14,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(sort_des(sort_asc(input))),-4),-2)"
  },
  {
    "input": "input : list = [-2, -5, -3, 5, 3, 2]\noutput : list = [7, 5, 4, 0, -1, -3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(add_n(add_n([-2, -5, -3, 5, 3, 2],1),4),2),1))",
    "io_inp": [
      -2,
      -5,
      -3,
      5,
      3,
      2
    ],
    "io_out": [
      7,
      5,
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(add_n(add_n(input,1),4),2),1))"
  },
  {
    "input": "input : list = [-4, 5, -2, -1, 1]\noutput : list = [1, -1, -2, 5, -4]",
    "output": "generated_output : list = reverse(reverse(reverse([-4, 5, -2, -1, 1])))",
    "io_inp": [
      -4,
      5,
      -2,
      -1,
      1
    ],
    "io_out": [
      1,
      -1,
      -2,
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-2, -5, -4, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = drop(mul_n(add_n(sort_des(sort_des([-2, -5, -4, -5])),4),2),2)",
    "io_inp": [
      -2,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = drop(mul_n(add_n(sort_des(sort_des(input)),4),2),2)"
  },
  {
    "input": "input : list = [-5, -3, -4, 2]\noutput : list = [3, -3]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(drop([-5, -3, -4, 2],2))),1))",
    "io_inp": [
      -5,
      -3,
      -4,
      2
    ],
    "io_out": [
      3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(drop(input,2))),1))"
  },
  {
    "input": "input : list = [-1, 4, -5, 1]\noutput : list = [0, -3, -5, -9]",
    "output": "generated_output : list = sub_n(sort_des([-1, 4, -5, 1]),4)",
    "io_inp": [
      -1,
      4,
      -5,
      1
    ],
    "io_out": [
      0,
      -3,
      -5,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-5, 4, 1, 5, -2]\noutput : list = [-14, -11, -8, -5, -4]",
    "output": "generated_output : list = sub_n(sort_asc(add_n(sort_des([-5, 4, 1, 5, -2]),-5)),4)",
    "io_inp": [
      -5,
      4,
      1,
      5,
      -2
    ],
    "io_out": [
      -14,
      -11,
      -8,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(add_n(sort_des(input),-5)),4)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [6, 8]",
    "output": "generated_output : list = sort_asc(take(sub_n(take(add_n([-3, -1],5),10),-4),26))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(take(add_n(input,5),10),-4),26))"
  },
  {
    "input": "input : list = [4, -1, 2, -4, 5]\noutput : list = [3, 1, -2]",
    "output": "generated_output : list = sort_des(reverse(add_n(sort_des(take([4, -1, 2, -4, 5],3)),-1)))",
    "io_inp": [
      4,
      -1,
      2,
      -4,
      5
    ],
    "io_out": [
      3,
      1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(sort_des(take(input,3)),-1)))"
  },
  {
    "input": "input : list = [4, -4, -2, -2, -2]\noutput : list = [1, 3, 3, 3, 9]",
    "output": "generated_output : list = reverse(add_n(sort_des([4, -4, -2, -2, -2]),5))",
    "io_inp": [
      4,
      -4,
      -2,
      -2,
      -2
    ],
    "io_out": [
      1,
      3,
      3,
      3,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),5))"
  },
  {
    "input": "input : list = [0, 4, -1, 5]\noutput : list = [4, 8, 3, 9]",
    "output": "generated_output : list = add_n([0, 4, -1, 5],4)",
    "io_inp": [
      0,
      4,
      -1,
      5
    ],
    "io_out": [
      4,
      8,
      3,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [1, 3, 1, -1, 2]\noutput : list = [-1, 1, 3, 1]",
    "output": "generated_output : list = drop(reverse([1, 3, 1, -1, 2]),1)",
    "io_inp": [
      1,
      3,
      1,
      -1,
      2
    ],
    "io_out": [
      -1,
      1,
      3,
      1
    ],
    "output_masked": "generated_output : list = drop(reverse(input),1)"
  },
  {
    "input": "input : list = [5, 4, -2]\noutput : list = [-15, -12]",
    "output": "generated_output : list = take(sort_asc(mul_n([5, 4, -2],-3)),2)",
    "io_inp": [
      5,
      4,
      -2
    ],
    "io_out": [
      -15,
      -12
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(input,-3)),2)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-8, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(sub_n([0, -5],2)))),1)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sort_des(sub_n(input,2)))),1)"
  },
  {
    "input": "input : list = [2, -1, 4, 4]\noutput : list = [4]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(take([2, -1, 4, 4],1)),29),-2))",
    "io_inp": [
      2,
      -1,
      4,
      4
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(take(input,1)),29),-2))"
  },
  {
    "input": "input : list = [4, -3, 1, -4, -5]\noutput : list = [-5, 0, 25]",
    "output": "generated_output : list = mul_n(add_n(sub_n(sort_asc(drop([4, -3, 1, -4, -5],2)),-2),2),5)",
    "io_inp": [
      4,
      -3,
      1,
      -4,
      -5
    ],
    "io_out": [
      -5,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(sort_asc(drop(input,2)),-2),2),5)"
  },
  {
    "input": "input : list = [5, -3, 3, 1, 1]\noutput : list = [5, 3, 1, 1, -3]",
    "output": "generated_output : list = take(sort_des(reverse(sort_asc([5, -3, 3, 1, 1]))),14)",
    "io_inp": [
      5,
      -3,
      3,
      1,
      1
    ],
    "io_out": [
      5,
      3,
      1,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_asc(input))),14)"
  },
  {
    "input": "input : list = [1, 1, 4, 1, 4, -1]\noutput : list = [5, 5, 5, -5]",
    "output": "generated_output : list = reverse(take(take(sort_asc(mul_n([1, 1, 4, 1, 4, -1],5)),5),4))",
    "io_inp": [
      1,
      1,
      4,
      1,
      4,
      -1
    ],
    "io_out": [
      5,
      5,
      5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(take(sort_asc(mul_n(input,5)),5),4))"
  },
  {
    "input": "input : list = [3, 1, 5]\noutput : list = [-2, 2]",
    "output": "generated_output : list = sub_n(drop([3, 1, 5],1),3)",
    "io_inp": [
      3,
      1,
      5
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [4, -3, -5, 5, 0, -1]\noutput : list = [9, 4, 3, -1]",
    "output": "generated_output : list = sub_n(sort_des(take(take(reverse([4, -3, -5, 5, 0, -1]),4),12)),-4)",
    "io_inp": [
      4,
      -3,
      -5,
      5,
      0,
      -1
    ],
    "io_out": [
      9,
      4,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(take(reverse(input),4),12)),-4)"
  },
  {
    "input": "input : list = [-3, 1, 0, 1, 1]\noutput : list = [1, 1, 1, 0, -3]",
    "output": "generated_output : list = sort_des(sort_des(take(take(sort_asc([-3, 1, 0, 1, 1]),7),21)))",
    "io_inp": [
      -3,
      1,
      0,
      1,
      1
    ],
    "io_out": [
      1,
      1,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(take(sort_asc(input),7),21)))"
  },
  {
    "input": "input : list = [4, -5, 1]\noutput : list = [27, 9, 0]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse(add_n([4, -5, 1],-4)),-3),16))",
    "io_inp": [
      4,
      -5,
      1
    ],
    "io_out": [
      27,
      9,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(add_n(input,-4)),-3),16))"
  },
  {
    "input": "input : list = [1, 0, -3, -4, 1, 2]\noutput : list = [1, 0]",
    "output": "generated_output : list = take(take([1, 0, -3, -4, 1, 2],2),24)",
    "io_inp": [
      1,
      0,
      -3,
      -4,
      1,
      2
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = take(take(input,2),24)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-15, 20]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(sort_asc([3, -4])),-5)),19)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -15,
      20
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(sort_asc(input)),-5)),19)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc([5, 1])",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4, -2]\noutput : list = [-10, 20, 10]",
    "output": "generated_output : list = mul_n([2, -4, -2],-5)",
    "io_inp": [
      2,
      -4,
      -2
    ],
    "io_out": [
      -10,
      20,
      10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-1, -1, 5, 1, 2, 1]\noutput : list = [5, 4]",
    "output": "generated_output : list = sub_n(drop([-1, -1, 5, 1, 2, 1],4),-3)",
    "io_inp": [
      -1,
      -1,
      5,
      1,
      2,
      1
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,4),-3)"
  },
  {
    "input": "input : list = [-4, 2, 2, 2, -3]\noutput : list = [-10, 2, 2, 2, -8]",
    "output": "generated_output : list = sub_n(add_n(mul_n(add_n([-4, 2, 2, 2, -3],-3),2),1),-3)",
    "io_inp": [
      -4,
      2,
      2,
      2,
      -3
    ],
    "io_out": [
      -10,
      2,
      2,
      2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(add_n(input,-3),2),1),-3)"
  },
  {
    "input": "input : list = [3, 1, -1, 0, 2]\noutput : list = [-4, 8, 32]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(drop([3, 1, -1, 0, 2],2)),3),2),4)",
    "io_inp": [
      3,
      1,
      -1,
      0,
      2
    ],
    "io_out": [
      -4,
      8,
      32
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(drop(input,2)),3),2),4)"
  },
  {
    "input": "input : list = [3, -5, -3, 4, 2, 2]\noutput : list = [7, 1, -1]",
    "output": "generated_output : list = take(sort_des(sub_n(take(take([3, -5, -3, 4, 2, 2],3),20),-4)),4)",
    "io_inp": [
      3,
      -5,
      -3,
      4,
      2,
      2
    ],
    "io_out": [
      7,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(take(take(input,3),20),-4)),4)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [-6, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(sort_des([-2, -2]))),4)",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(sort_des(input))),4)"
  },
  {
    "input": "input : list = [4, -5, 1, 4, 2, -4]\noutput : list = [4, -20]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(drop(add_n([4, -5, 1, 4, 2, -4],1),4),-2),-4))",
    "io_inp": [
      4,
      -5,
      1,
      4,
      2,
      -4
    ],
    "io_out": [
      4,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(drop(add_n(input,1),4),-2),-4))"
  },
  {
    "input": "input : list = [2, -1, 3, 3, -5, 4]\noutput : list = [4, 3, 3, 2, -1, -5]",
    "output": "generated_output : list = sort_des(sort_des([2, -1, 3, 3, -5, 4]))",
    "io_inp": [
      2,
      -1,
      3,
      3,
      -5,
      4
    ],
    "io_out": [
      4,
      3,
      3,
      2,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [2, -1, 1, 3, -2]\noutput : list = [-1, 0, 2, 4]",
    "output": "generated_output : list = add_n(sort_asc(drop([2, -1, 1, 3, -2],1)),1)",
    "io_inp": [
      2,
      -1,
      1,
      3,
      -2
    ],
    "io_out": [
      -1,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(input,1)),1)"
  },
  {
    "input": "input : list = [0, -3, 3, 4, -3]\noutput : list = [4, -3, -2, 4, 1]",
    "output": "generated_output : list = reverse(mul_n(take(add_n(sub_n([0, -3, 3, 4, -3],2),1),16),-1))",
    "io_inp": [
      0,
      -3,
      3,
      4,
      -3
    ],
    "io_out": [
      4,
      -3,
      -2,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(add_n(sub_n(input,2),1),16),-1))"
  },
  {
    "input": "input : list = [-3, 1, 0, -3, -2, -3]\noutput : list = [1, 0, -2, -3, -3, -3]",
    "output": "generated_output : list = sort_des([-3, 1, 0, -3, -2, -3])",
    "io_inp": [
      -3,
      1,
      0,
      -3,
      -2,
      -3
    ],
    "io_out": [
      1,
      0,
      -2,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_des([1, 2]),1),19),-2)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_des(input),1),19),-2)"
  },
  {
    "input": "input : list = [0, 3, -4, -4]\noutput : list = [-1, -10, 11, 11]",
    "output": "generated_output : list = add_n(mul_n([0, 3, -4, -4],-3),-1)",
    "io_inp": [
      0,
      3,
      -4,
      -4
    ],
    "io_out": [
      -1,
      -10,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-3),-1)"
  },
  {
    "input": "input : list = [-4, 1, 3]\noutput : list = [-13]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(mul_n([-4, 1, 3],-3)),1),-2),2)",
    "io_inp": [
      -4,
      1,
      3
    ],
    "io_out": [
      -13
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(mul_n(input,-3)),1),-2),2)"
  },
  {
    "input": "input : list = [-1, -5, 0, 0, -2]\noutput : list = [-5, -2, -1, 0, 0]",
    "output": "generated_output : list = sort_asc([-1, -5, 0, 0, -2])",
    "io_inp": [
      -1,
      -5,
      0,
      0,
      -2
    ],
    "io_out": [
      -5,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -4, 3, 4, -4]\noutput : list = [32, 24, -8, -32, -32]",
    "output": "generated_output : list = sort_des(take(mul_n(mul_n(sort_des([-1, -4, 3, 4, -4]),-2),-4),46))",
    "io_inp": [
      -1,
      -4,
      3,
      4,
      -4
    ],
    "io_out": [
      32,
      24,
      -8,
      -32,
      -32
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(mul_n(sort_des(input),-2),-4),46))"
  },
  {
    "input": "input : list = [-3, 0, -3, 4, 2]\noutput : list = [-3, -3, 0, 2, 4]",
    "output": "generated_output : list = take(sort_asc([-3, 0, -3, 4, 2]),25)",
    "io_inp": [
      -3,
      0,
      -3,
      4,
      2
    ],
    "io_out": [
      -3,
      -3,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),25)"
  },
  {
    "input": "input : list = [4, 2, 1, 2, 4, 3]\noutput : list = [9, 10, 10, 11, 12, 12]",
    "output": "generated_output : list = sort_asc(reverse(add_n(take(sub_n([4, 2, 1, 2, 4, 3],-3),14),5)))",
    "io_inp": [
      4,
      2,
      1,
      2,
      4,
      3
    ],
    "io_out": [
      9,
      10,
      10,
      11,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(take(sub_n(input,-3),14),5)))"
  },
  {
    "input": "input : list = [4, 2, -5, -4, -1, 2]\noutput : list = [4, -2, -8, -10, 4, 8]",
    "output": "generated_output : list = mul_n(reverse([4, 2, -5, -4, -1, 2]),2)",
    "io_inp": [
      4,
      2,
      -5,
      -4,
      -1,
      2
    ],
    "io_out": [
      4,
      -2,
      -8,
      -10,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),2)"
  },
  {
    "input": "input : list = [3, -3, 0, 4]\noutput : list = [-6, -3]",
    "output": "generated_output : list = take(add_n(drop([3, -3, 0, 4],1),-3),2)",
    "io_inp": [
      3,
      -3,
      0,
      4
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(drop(input,1),-3),2)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [4, 2]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(add_n(reverse([3, 5]),-3))),2)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(add_n(reverse(input),-3))),2)"
  },
  {
    "input": "input : list = [4, 0, 5, 2]\noutput : list = [0, 2, 4, 5]",
    "output": "generated_output : list = sort_asc([4, 0, 5, 2])",
    "io_inp": [
      4,
      0,
      5,
      2
    ],
    "io_out": [
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sub_n(drop([-3, -2, -2],1),1)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [3, 3, 4, 2]\noutput : list = [0, 1, 1, 2]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(add_n([3, 3, 4, 2],1)),-3),17))",
    "io_inp": [
      3,
      3,
      4,
      2
    ],
    "io_out": [
      0,
      1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(add_n(input,1)),-3),17))"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-16, 4]",
    "output": "generated_output : list = mul_n(take(reverse(take(sort_des([-4, 1]),12)),25),4)",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -16,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(sort_des(input),12)),25),4)"
  },
  {
    "input": "input : list = [-4, -2, 3]\noutput : list = [6, -4, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-4, -2, 3])),2)",
    "io_inp": [
      -4,
      -2,
      3
    ],
    "io_out": [
      6,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),2)"
  },
  {
    "input": "input : list = [-4, -2, 0]\noutput : list = [3, -3, -9]",
    "output": "generated_output : list = sub_n(reverse(sub_n(mul_n(add_n([-4, -2, 0],2),3),-2)),5)",
    "io_inp": [
      -4,
      -2,
      0
    ],
    "io_out": [
      3,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(mul_n(add_n(input,2),3),-2)),5)"
  },
  {
    "input": "input : list = [-2, -5, -2, 3, 2]\noutput : list = [11, 5, 5, -3, -5]",
    "output": "generated_output : list = reverse(sub_n(reverse(sort_des(mul_n([-2, -5, -2, 3, 2],-2))),-1))",
    "io_inp": [
      -2,
      -5,
      -2,
      3,
      2
    ],
    "io_out": [
      11,
      5,
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(sort_des(mul_n(input,-2))),-1))"
  },
  {
    "input": "input : list = [5, 3, -3, 2, 3, 4]\noutput : list = [-3, 2, 3, 3, 4, 5]",
    "output": "generated_output : list = sort_asc([5, 3, -3, 2, 3, 4])",
    "io_inp": [
      5,
      3,
      -3,
      2,
      3,
      4
    ],
    "io_out": [
      -3,
      2,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, -4]\noutput : list = [-8, 16]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sort_des(mul_n([2, -4],-4)))))",
    "io_inp": [
      2,
      -4
    ],
    "io_out": [
      -8,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sort_des(mul_n(input,-4)))))"
  },
  {
    "input": "input : list = [4, -1, -3, -3]\noutput : list = [-3, -3, -1, 4]",
    "output": "generated_output : list = sort_asc([4, -1, -3, -3])",
    "io_inp": [
      4,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, -1, -2, -1]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(take(reverse(take(sort_des([-1, -1, -2, -1]),1)),10))",
    "io_inp": [
      -1,
      -1,
      -2,
      -1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(sort_des(input),1)),10))"
  },
  {
    "input": "input : list = [-2, -1, -2]\noutput : list = [-16, -11, -16]",
    "output": "generated_output : list = reverse(add_n(reverse(sub_n(mul_n([-2, -1, -2],5),4)),-2))",
    "io_inp": [
      -2,
      -1,
      -2
    ],
    "io_out": [
      -16,
      -11,
      -16
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sub_n(mul_n(input,5),4)),-2))"
  },
  {
    "input": "input : list = [2, 5, -2, -3]\noutput : list = [5, 2, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc([2, 5, -2, -3]))",
    "io_inp": [
      2,
      5,
      -2,
      -3
    ],
    "io_out": [
      5,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [5, 0, -1, 1]\noutput : list = [6, 4]",
    "output": "generated_output : list = reverse(sort_asc(add_n(add_n(drop([5, 0, -1, 1],2),2),3)))",
    "io_inp": [
      5,
      0,
      -1,
      1
    ],
    "io_out": [
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(add_n(drop(input,2),2),3)))"
  },
  {
    "input": "input : list = [-4, -5, 1, -3]\noutput : list = [-5, -25, 5, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n([-4, -5, 1, -3],4)),-5)",
    "io_inp": [
      -4,
      -5,
      1,
      -3
    ],
    "io_out": [
      -5,
      -25,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,4)),-5)"
  },
  {
    "input": "input : list = [0, -4, 4, 5, -3]\noutput : list = [-26, -23, -11, -2, 1]",
    "output": "generated_output : list = add_n(mul_n(sub_n(sort_des(sort_des([0, -4, 4, 5, -3])),-5),-3),4)",
    "io_inp": [
      0,
      -4,
      4,
      5,
      -3
    ],
    "io_out": [
      -26,
      -23,
      -11,
      -2,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(sort_des(sort_des(input)),-5),-3),4)"
  },
  {
    "input": "input : list = [3, -4, 4, -1, 5]\noutput : list = [32, 8, -24, -32, -40]",
    "output": "generated_output : list = mul_n(take(take(sort_des(mul_n([3, -4, 4, -1, 5],-4)),29),32),2)",
    "io_inp": [
      3,
      -4,
      4,
      -1,
      5
    ],
    "io_out": [
      32,
      8,
      -24,
      -32,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(take(take(sort_des(mul_n(input,-4)),29),32),2)"
  },
  {
    "input": "input : list = [2, 0, -5, 0, 2, -5]\noutput : list = [-6, -6, -1, -1, 1, 1]",
    "output": "generated_output : list = sort_asc(add_n([2, 0, -5, 0, 2, -5],-1))",
    "io_inp": [
      2,
      0,
      -5,
      0,
      2,
      -5
    ],
    "io_out": [
      -6,
      -6,
      -1,
      -1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [-4, -2, 4, 0, -5, 1]\noutput : list = [3, 0, -1, -3, -5, -6]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_asc([-4, -2, 4, 0, -5, 1]),-5),-2),-4))",
    "io_inp": [
      -4,
      -2,
      4,
      0,
      -5,
      1
    ],
    "io_out": [
      3,
      0,
      -1,
      -3,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_asc(input),-5),-2),-4))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [19, -17]",
    "output": "generated_output : list = take(add_n(mul_n(sort_des(add_n([-4, 5],-1)),4),3),32)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      19,
      -17
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(sort_des(add_n(input,-1)),4),3),32)"
  },
  {
    "input": "input : list = [-3, -4, 2, -5, -1, -3]\noutput : list = [2, 1, 7, 0, 4, 2]",
    "output": "generated_output : list = sub_n([-3, -4, 2, -5, -1, -3],-5)",
    "io_inp": [
      -3,
      -4,
      2,
      -5,
      -1,
      -3
    ],
    "io_out": [
      2,
      1,
      7,
      0,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [5, -1, -4, 0, -2]\noutput : list = [-3, -6, -2, -4]",
    "output": "generated_output : list = take(take(take(sub_n(drop([5, -1, -4, 0, -2],1),2),31),39),26)",
    "io_inp": [
      5,
      -1,
      -4,
      0,
      -2
    ],
    "io_out": [
      -3,
      -6,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(take(take(sub_n(drop(input,1),2),31),39),26)"
  },
  {
    "input": "input : list = [4, -5, 5, 5]\noutput : list = [-3, -3, -2, 7]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sort_asc([4, -5, 5, 5])),2),-1))",
    "io_inp": [
      4,
      -5,
      5,
      5
    ],
    "io_out": [
      -3,
      -3,
      -2,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(sort_asc(input)),2),-1))"
  },
  {
    "input": "input : list = [0, 4]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sub_n([0, 4],5),4)))",
    "io_inp": [
      0,
      4
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sub_n(input,5),4)))"
  },
  {
    "input": "input : list = [-2, 2, -3, -3, 2, 3]\noutput : list = [-18, -12, -12, 12, 18, 18]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(mul_n([-2, 2, -3, -3, 2, 3],-1),-2),-3)),45)",
    "io_inp": [
      -2,
      2,
      -3,
      -3,
      2,
      3
    ],
    "io_out": [
      -18,
      -12,
      -12,
      12,
      18,
      18
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(mul_n(input,-1),-2),-3)),45)"
  },
  {
    "input": "input : list = [4, 5, -2, 1, 1, -5]\noutput : list = [5, 0, -15, -15, -30, -45]",
    "output": "generated_output : list = mul_n(sort_des(add_n(take(sort_des([4, 5, -2, 1, 1, -5]),7),-4)),5)",
    "io_inp": [
      4,
      5,
      -2,
      1,
      1,
      -5
    ],
    "io_out": [
      5,
      0,
      -15,
      -15,
      -30,
      -45
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(take(sort_des(input),7),-4)),5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [7, -1]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(sort_des([-3, 5])),-4),-2))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(sort_des(input)),-4),-2))"
  },
  {
    "input": "input : list = [-1, -4]\noutput : list = [0, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(add_n([-1, -4],5),4))),14)",
    "io_inp": [
      -1,
      -4
    ],
    "io_out": [
      0,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(add_n(input,5),4))),14)"
  },
  {
    "input": "input : list = [0, 1, 3, 3, -3]\noutput : list = [-8, -4, 4, 4, -20]",
    "output": "generated_output : list = mul_n(sub_n([0, 1, 3, 3, -3],2),4)",
    "io_inp": [
      0,
      1,
      3,
      3,
      -3
    ],
    "io_out": [
      -8,
      -4,
      4,
      4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,2),4)"
  },
  {
    "input": "input : list = [4, 5, 0, -4]\noutput : list = [10, 9]",
    "output": "generated_output : list = add_n(take(take(sort_des(take([4, 5, 0, -4],2)),12),31),5)",
    "io_inp": [
      4,
      5,
      0,
      -4
    ],
    "io_out": [
      10,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(take(input,2)),12),31),5)"
  },
  {
    "input": "input : list = [4, 2, 0, -2, 3, -4]\noutput : list = [6, 4, 2, 0, 5, -2]",
    "output": "generated_output : list = add_n([4, 2, 0, -2, 3, -4],2)",
    "io_inp": [
      4,
      2,
      0,
      -2,
      3,
      -4
    ],
    "io_out": [
      6,
      4,
      2,
      0,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [3, 1, 3]\noutput : list = [12, 12, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sub_n(add_n([3, 1, 3],3),4)),3),2)",
    "io_inp": [
      3,
      1,
      3
    ],
    "io_out": [
      12,
      12,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sub_n(add_n(input,3),4)),3),2)"
  },
  {
    "input": "input : list = [-1, 2, 3, 4]\noutput : list = [-3, 6, 9, 12]",
    "output": "generated_output : list = mul_n([-1, 2, 3, 4],3)",
    "io_inp": [
      -1,
      2,
      3,
      4
    ],
    "io_out": [
      -3,
      6,
      9,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [0, -4, -4, 2]\noutput : list = [-3, 21, 21, 5]",
    "output": "generated_output : list = sub_n(take(reverse(mul_n(add_n([0, -4, -4, 2],-1),-4)),11),-1)",
    "io_inp": [
      0,
      -4,
      -4,
      2
    ],
    "io_out": [
      -3,
      21,
      21,
      5
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(mul_n(add_n(input,-1),-4)),11),-1)"
  },
  {
    "input": "input : list = [-3, -3]\noutput : list = [-1, -1]",
    "output": "generated_output : list = add_n(take(add_n(sort_asc(sub_n([-3, -3],-4)),-1),15),-1)",
    "io_inp": [
      -3,
      -3
    ],
    "io_out": [
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sort_asc(sub_n(input,-4)),-1),15),-1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sort_des([3, 1]))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 4, -5, 5, 0, -1]\noutput : list = [-30, -15, 60, -90, 45, -75]",
    "output": "generated_output : list = mul_n(sub_n(reverse(mul_n(sub_n([-4, 4, -5, 5, 0, -1],2),5)),-5),3)",
    "io_inp": [
      -4,
      4,
      -5,
      5,
      0,
      -1
    ],
    "io_out": [
      -30,
      -15,
      60,
      -90,
      45,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(mul_n(sub_n(input,2),5)),-5),3)"
  },
  {
    "input": "input : list = [5, 0, 5, 2, 0, 3]\noutput : list = [5, 0, 5, 2, 0, 3]",
    "output": "generated_output : list = reverse(reverse([5, 0, 5, 2, 0, 3]))",
    "io_inp": [
      5,
      0,
      5,
      2,
      0,
      3
    ],
    "io_out": [
      5,
      0,
      5,
      2,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [5, -1, -4, 5]\noutput : list = [-10, -10, 2, 8]",
    "output": "generated_output : list = mul_n(sort_des([5, -1, -4, 5]),-2)",
    "io_inp": [
      5,
      -1,
      -4,
      5
    ],
    "io_out": [
      -10,
      -10,
      2,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [-4, 4, -4, 5]\noutput : list = [4, -4]",
    "output": "generated_output : list = reverse(sort_asc(take([-4, 4, -4, 5],2)))",
    "io_inp": [
      -4,
      4,
      -4,
      5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [3]",
    "output": "generated_output : list = take(reverse([4, 3]),1)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(reverse(input),1)"
  },
  {
    "input": "input : list = [-5, 5, 5, -3, -3, 2]\noutput : list = [9, -6]",
    "output": "generated_output : list = mul_n(drop([-5, 5, 5, -3, -3, 2],4),-3)",
    "io_inp": [
      -5,
      5,
      5,
      -3,
      -3,
      2
    ],
    "io_out": [
      9,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,4),-3)"
  },
  {
    "input": "input : list = [-2, -5, -1, -2]\noutput : list = [-24, -15, -15, -12]",
    "output": "generated_output : list = take(mul_n(sort_asc(sub_n([-2, -5, -1, -2],3)),3),25)",
    "io_inp": [
      -2,
      -5,
      -1,
      -2
    ],
    "io_out": [
      -24,
      -15,
      -15,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(sub_n(input,3)),3),25)"
  },
  {
    "input": "input : list = [-4, 5, 2, 5, -4, 5]\noutput : list = [-8, -26]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(take([-4, 5, 2, 5, -4, 5],2)),3),5),-2)",
    "io_inp": [
      -4,
      5,
      2,
      5,
      -4,
      5
    ],
    "io_out": [
      -8,
      -26
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(take(input,2)),3),5),-2)"
  },
  {
    "input": "input : list = [4, -5, -4, 5, 4, 2]\noutput : list = [-35, -25, 35, 55, 55, 65]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n([4, -5, -4, 5, 4, 2],-2),-3),-5))",
    "io_inp": [
      4,
      -5,
      -4,
      5,
      4,
      2
    ],
    "io_out": [
      -35,
      -25,
      35,
      55,
      55,
      65
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(input,-2),-3),-5))"
  },
  {
    "input": "input : list = [-4, -2, 0, 3, -2]\noutput : list = [-5, -15, -15, -25, -40]",
    "output": "generated_output : list = mul_n(sort_des(reverse(mul_n(sub_n([-4, -2, 0, 3, -2],-5),-5))),1)",
    "io_inp": [
      -4,
      -2,
      0,
      3,
      -2
    ],
    "io_out": [
      -5,
      -15,
      -15,
      -25,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(mul_n(sub_n(input,-5),-5))),1)"
  },
  {
    "input": "input : list = [-5, -3, 0, -2, 5]\noutput : list = [-1, 1, 4, 2, 9]",
    "output": "generated_output : list = add_n(reverse(reverse([-5, -3, 0, -2, 5])),4)",
    "io_inp": [
      -5,
      -3,
      0,
      -2,
      5
    ],
    "io_out": [
      -1,
      1,
      4,
      2,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(input)),4)"
  },
  {
    "input": "input : list = [-2, -5, 2, -2, 5, -3]\noutput : list = [5, 2, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(reverse(take(drop([-2, -5, 2, -2, 5, -3],2),22))))",
    "io_inp": [
      -2,
      -5,
      2,
      -2,
      5,
      -3
    ],
    "io_out": [
      5,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(take(drop(input,2),22))))"
  },
  {
    "input": "input : list = [3, -2, 3]\noutput : list = [-2, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_des([3, -2, 3])))))",
    "io_inp": [
      3,
      -2,
      3
    ],
    "io_out": [
      -2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-1, 1, 4, -3]\noutput : list = [-1, -4, -6, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n([-1, 1, 4, -3],5)))",
    "io_inp": [
      -1,
      1,
      4,
      -3
    ],
    "io_out": [
      -1,
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(input,5)))"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [1, -1]",
    "output": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_asc([-2, -4]),-5),-3),1))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(sub_n(sort_asc(input),-5),-3),1))"
  },
  {
    "input": "input : list = [3, -1, -3, -3]\noutput : list = [-23, -23, -15, 1]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(sub_n([3, -1, -3, -3],5),3),4),3))",
    "io_inp": [
      3,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -23,
      -23,
      -15,
      1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(sub_n(input,5),3),4),3))"
  },
  {
    "input": "input : list = [-3, 0, 3, 5, 5]\noutput : list = [3, 6, 9, 11, 11]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(reverse([-3, 0, 3, 5, 5])),-5),29),1)",
    "io_inp": [
      -3,
      0,
      3,
      5,
      5
    ],
    "io_out": [
      3,
      6,
      9,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(reverse(input)),-5),29),1)"
  },
  {
    "input": "input : list = [-1, -4, 0]\noutput : list = [-6, -2, 10]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(mul_n([-1, -4, 0],-4),3))),3)",
    "io_inp": [
      -1,
      -4,
      0
    ],
    "io_out": [
      -6,
      -2,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(sub_n(mul_n(input,-4),3))),3)"
  },
  {
    "input": "input : list = [0, 1, -2]\noutput : list = [5, 6, 3]",
    "output": "generated_output : list = sub_n(sub_n([0, 1, -2],-3),-2)",
    "io_inp": [
      0,
      1,
      -2
    ],
    "io_out": [
      5,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-3),-2)"
  },
  {
    "input": "input : list = [4, -3, 4, -2]\noutput : list = [6, 6, 0, -1]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(sort_asc([4, -3, 4, -2]),-3)),20),5)",
    "io_inp": [
      4,
      -3,
      4,
      -2
    ],
    "io_out": [
      6,
      6,
      0,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(sort_asc(input),-3)),20),5)"
  },
  {
    "input": "input : list = [-5, -1, 0]\noutput : list = [0, -3, -15]",
    "output": "generated_output : list = reverse(mul_n([-5, -1, 0],3))",
    "io_inp": [
      -5,
      -1,
      0
    ],
    "io_out": [
      0,
      -3,
      -15
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,3))"
  },
  {
    "input": "input : list = [1, 0, 1, 3]\noutput : list = [2, 0, 0, -1]",
    "output": "generated_output : list = sort_des(sort_des(add_n([1, 0, 1, 3],-1)))",
    "io_inp": [
      1,
      0,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-1)))"
  },
  {
    "input": "input : list = [-4, 1, 3, -5]\noutput : list = [6, 3, -12, -18]",
    "output": "generated_output : list = mul_n(sort_asc(add_n([-4, 1, 3, -5],3)),-3)",
    "io_inp": [
      -4,
      1,
      3,
      -5
    ],
    "io_out": [
      6,
      3,
      -12,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(input,3)),-3)"
  },
  {
    "input": "input : list = [5, -3, 1, -2, 3]\noutput : list = [-6, 4, -2, 6, -10]",
    "output": "generated_output : list = reverse(mul_n([5, -3, 1, -2, 3],-2))",
    "io_inp": [
      5,
      -3,
      1,
      -2,
      3
    ],
    "io_out": [
      -6,
      4,
      -2,
      6,
      -10
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-2))"
  },
  {
    "input": "input : list = [2, 2, 3, -3, -4, -3]\noutput : list = [3, 3, 4]",
    "output": "generated_output : list = reverse(sub_n(sort_des(take([2, 2, 3, -3, -4, -3],3)),-1))",
    "io_inp": [
      2,
      2,
      3,
      -3,
      -4,
      -3
    ],
    "io_out": [
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(take(input,3)),-1))"
  },
  {
    "input": "input : list = [1, -3, -2, -2, -2]\noutput : list = [-18, -21, -21, -21, -30]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n([1, -3, -2, -2, -2],-5)),-4)),-3)",
    "io_inp": [
      1,
      -3,
      -2,
      -2,
      -2
    ],
    "io_out": [
      -18,
      -21,
      -21,
      -21,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_des(sub_n(input,-5)),-4)),-3)"
  },
  {
    "input": "input : list = [-4, -4, 3, 2]\noutput : list = [3, 2, -4, -4]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des(sort_des([-4, -4, 3, 2])))))",
    "io_inp": [
      -4,
      -4,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [-4, 3, -5, -5, -5, -4]\noutput : list = [-12, 23, 23, 28, 28, 28]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(reverse([-4, 3, -5, -5, -5, -4])),-5)),3)",
    "io_inp": [
      -4,
      3,
      -5,
      -5,
      -5,
      -4
    ],
    "io_out": [
      -12,
      23,
      23,
      28,
      28,
      28
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(reverse(input)),-5)),3)"
  },
  {
    "input": "input : list = [-3, -4, -5]\noutput : list = [-9, -13, -17]",
    "output": "generated_output : list = reverse(sub_n(mul_n(reverse([-3, -4, -5]),4),-3))",
    "io_inp": [
      -3,
      -4,
      -5
    ],
    "io_out": [
      -9,
      -13,
      -17
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(reverse(input),4),-3))"
  },
  {
    "input": "input : list = [-2, 3, 0, 5, -3, -4]\noutput : list = [-25, -15, 0, 10, 15, 20]",
    "output": "generated_output : list = reverse(sort_des(mul_n(sub_n(add_n([-2, 3, 0, 5, -3, -4],2),2),-5)))",
    "io_inp": [
      -2,
      3,
      0,
      5,
      -3,
      -4
    ],
    "io_out": [
      -25,
      -15,
      0,
      10,
      15,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(sub_n(add_n(input,2),2),-5)))"
  },
  {
    "input": "input : list = [-2, 2, 5, 2, -1]\noutput : list = [-4, 4, 10, 4, -2]",
    "output": "generated_output : list = mul_n([-2, 2, 5, 2, -1],2)",
    "io_inp": [
      -2,
      2,
      5,
      2,
      -1
    ],
    "io_out": [
      -4,
      4,
      10,
      4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [4, -2, 1]\noutput : list = [0, -15, -30]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_asc(sub_n([4, -2, 1],-2)))),-5)",
    "io_inp": [
      4,
      -2,
      1
    ],
    "io_out": [
      0,
      -15,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_asc(sub_n(input,-2)))),-5)"
  },
  {
    "input": "input : list = [2, -2, 1, 2]\noutput : list = [2, 5, 6, 6]",
    "output": "generated_output : list = add_n(sort_asc(take(take(add_n([2, -2, 1, 2],2),16),28)),2)",
    "io_inp": [
      2,
      -2,
      1,
      2
    ],
    "io_out": [
      2,
      5,
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(add_n(input,2),16),28)),2)"
  },
  {
    "input": "input : list = [1, 5, 4, -4]\noutput : list = [5, 4, -4]",
    "output": "generated_output : list = drop([1, 5, 4, -4],1)",
    "io_inp": [
      1,
      5,
      4,
      -4
    ],
    "io_out": [
      5,
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -5, 3, 2, -2]\noutput : list = [4, -3, 5, 4, 0]",
    "output": "generated_output : list = sub_n([2, -5, 3, 2, -2],-2)",
    "io_inp": [
      2,
      -5,
      3,
      2,
      -2
    ],
    "io_out": [
      4,
      -3,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, 3, 5]\noutput : list = [-8, -8, -16]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des([5, 3, 5]),5),2),5),4)",
    "io_inp": [
      5,
      3,
      5
    ],
    "io_out": [
      -8,
      -8,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sort_des(input),5),2),5),4)"
  },
  {
    "input": "input : list = [2, -1, 0]\noutput : list = [-15]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_des(take([2, -1, 0],1)),-1),8),-5)",
    "io_inp": [
      2,
      -1,
      0
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_des(take(input,1)),-1),8),-5)"
  },
  {
    "input": "input : list = [1, -1, 0, -3]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take([1, -1, 0, -3],1),1))))",
    "io_inp": [
      1,
      -1,
      0,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take(input,1),1))))"
  },
  {
    "input": "input : list = [-2, -5, -5, 3]\noutput : list = [6, -4, -10, -10]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(sort_asc([-2, -5, -5, 3])),2)))",
    "io_inp": [
      -2,
      -5,
      -5,
      3
    ],
    "io_out": [
      6,
      -4,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_des(sort_asc(input)),2)))"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [15, 12]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n([4, 3],-1)))),3)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      15,
      12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_asc(sub_n(input,-1)))),3)"
  },
  {
    "input": "input : list = [2, 4, 1]\noutput : list = [15, 45, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(take(add_n([2, 4, 1],-1),8),-3),5),-1)",
    "io_inp": [
      2,
      4,
      1
    ],
    "io_out": [
      15,
      45,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(take(add_n(input,-1),8),-3),5),-1)"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [42, 26]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(sub_n([-5, -1],5),1),-4),22),2)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      42,
      26
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(sub_n(input,5),1),-4),22),2)"
  },
  {
    "input": "input : list = [-2, 2, -1]\noutput : list = [6, 7, 10]",
    "output": "generated_output : list = reverse(add_n(sub_n(reverse(sort_asc([-2, 2, -1])),-5),3))",
    "io_inp": [
      -2,
      2,
      -1
    ],
    "io_out": [
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(reverse(sort_asc(input)),-5),3))"
  },
  {
    "input": "input : list = [1, 3, -1]\noutput : list = [-2, 0, -4]",
    "output": "generated_output : list = add_n(add_n([1, 3, -1],2),-5)",
    "io_inp": [
      1,
      3,
      -1
    ],
    "io_out": [
      -2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-5)"
  },
  {
    "input": "input : list = [-4, 3, -4, 2, 0]\noutput : list = [-16, -16, 0, 8, 12]",
    "output": "generated_output : list = mul_n(sort_asc([-4, 3, -4, 2, 0]),4)",
    "io_inp": [
      -4,
      3,
      -4,
      2,
      0
    ],
    "io_out": [
      -16,
      -16,
      0,
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [7, 6]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(reverse([4, 5]),1),5)),2)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(reverse(input),1),5)),2)"
  },
  {
    "input": "input : list = [0, -1, 4, 3, -1, -3]\noutput : list = [-5, 0, 20]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take([0, -1, 4, 3, -1, -3],3))),5))",
    "io_inp": [
      0,
      -1,
      4,
      3,
      -1,
      -3
    ],
    "io_out": [
      -5,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(sort_des(take(input,3))),5))"
  },
  {
    "input": "input : list = [3, -3, 2, -3, -3]\noutput : list = [-6, -6, -1, -6, 0]",
    "output": "generated_output : list = take(reverse(sub_n(sub_n([3, -3, 2, -3, -3],5),-2)),19)",
    "io_inp": [
      3,
      -3,
      2,
      -3,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -1,
      -6,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(sub_n(input,5),-2)),19)"
  },
  {
    "input": "input : list = [1, -2, -4, -3]\noutput : list = [12, 24, 28, 32]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(sort_des([1, -2, -4, -3]),-4),-4)))",
    "io_inp": [
      1,
      -2,
      -4,
      -3
    ],
    "io_out": [
      12,
      24,
      28,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(sort_des(input),-4),-4)))"
  },
  {
    "input": "input : list = [-2, 1, -4, 4, -4, -1]\noutput : list = [9, 6, 4, 3, 1, 1]",
    "output": "generated_output : list = sort_des(add_n(take(sub_n(sort_asc([-2, 1, -4, 4, -4, -1]),-3),35),2))",
    "io_inp": [
      -2,
      1,
      -4,
      4,
      -4,
      -1
    ],
    "io_out": [
      9,
      6,
      4,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sub_n(sort_asc(input),-3),35),2))"
  },
  {
    "input": "input : list = [-4, 1, -1]\noutput : list = [1, 3, -2]",
    "output": "generated_output : list = take(sub_n(reverse([-4, 1, -1]),-2),13)",
    "io_inp": [
      -4,
      1,
      -1
    ],
    "io_out": [
      1,
      3,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(input),-2),13)"
  },
  {
    "input": "input : list = [0, 2]\noutput : list = [0, 2]",
    "output": "generated_output : list = sub_n(sub_n([0, 2],4),-4)",
    "io_inp": [
      0,
      2
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,4),-4)"
  },
  {
    "input": "input : list = [-2, 0, 1, 0]\noutput : list = [-2, 0, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc([-2, 0, 1, 0]))))",
    "io_inp": [
      -2,
      0,
      1,
      0
    ],
    "io_out": [
      -2,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(input))))"
  },
  {
    "input": "input : list = [5, 1, 0, -3, -4]\noutput : list = [-4, -3, 0, 1, 5]",
    "output": "generated_output : list = take(sort_asc(reverse(reverse(sort_des([5, 1, 0, -3, -4])))),47)",
    "io_inp": [
      5,
      1,
      0,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(reverse(sort_des(input)))),47)"
  },
  {
    "input": "input : list = [2, 1, -1, -4, 0]\noutput : list = [2, 1, -1, -4, 0]",
    "output": "generated_output : list = reverse(reverse([2, 1, -1, -4, 0]))",
    "io_inp": [
      2,
      1,
      -1,
      -4,
      0
    ],
    "io_out": [
      2,
      1,
      -1,
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-6, -6]",
    "output": "generated_output : list = add_n([-5, -5],-1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, -4, 5, 0, -2, -1]\noutput : list = [-2, -6, 3, -2, -4, -3]",
    "output": "generated_output : list = reverse(sub_n(reverse(add_n(add_n([0, -4, 5, 0, -2, -1],-3),3)),2))",
    "io_inp": [
      0,
      -4,
      5,
      0,
      -2,
      -1
    ],
    "io_out": [
      -2,
      -6,
      3,
      -2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(add_n(add_n(input,-3),3)),2))"
  },
  {
    "input": "input : list = [1, 2, -2, 0, 2, -2]\noutput : list = [-4, -4, -2, -1, 0, 0]",
    "output": "generated_output : list = take(sub_n(sub_n(sub_n(sort_asc([1, 2, -2, 0, 2, -2]),5),-1),-2),21)",
    "io_inp": [
      1,
      2,
      -2,
      0,
      2,
      -2
    ],
    "io_out": [
      -4,
      -4,
      -2,
      -1,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sub_n(sub_n(sub_n(sort_asc(input),5),-1),-2),21)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-1, 4]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sort_des([-1, 4]))),19))",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sort_des(input))),19))"
  },
  {
    "input": "input : list = [0, -2, -3, 5, -5]\noutput : list = [4, 6, 7, 9, 14]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(sort_asc([0, -2, -3, 5, -5]),2),4),20),-3)",
    "io_inp": [
      0,
      -2,
      -3,
      5,
      -5
    ],
    "io_out": [
      4,
      6,
      7,
      9,
      14
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(sort_asc(input),2),4),20),-3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [5, -3]",
    "output": "generated_output : list = sort_des([-3, 5])",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, 5, 0]\noutput : list = [-6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(take([-4, 5, 0],1)),4),-2))",
    "io_inp": [
      -4,
      5,
      0
    ],
    "io_out": [
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(take(input,1)),4),-2))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-14, 36]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(reverse([1, -4]),-5),2)),4)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -14,
      36
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(reverse(input),-5),2)),4)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take(take(reverse(reverse([-5, 4])),10),30)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(input)),10),30)"
  },
  {
    "input": "input : list = [-4, 5, 4, 5, -4]\noutput : list = [-6, 2, 3, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop([-4, 5, 4, 5, -4],1)))),2)",
    "io_inp": [
      -4,
      5,
      4,
      5,
      -4
    ],
    "io_out": [
      -6,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop(input,1)))),2)"
  },
  {
    "input": "input : list = [2, 3, -5, -5, 4]\noutput : list = [4, 3, 2, -5, -5]",
    "output": "generated_output : list = sort_des([2, 3, -5, -5, 4])",
    "io_inp": [
      2,
      3,
      -5,
      -5,
      4
    ],
    "io_out": [
      4,
      3,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [1]",
    "output": "generated_output : list = take([1, -2, -1],1)",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, -3, 4]\noutput : list = [-7]",
    "output": "generated_output : list = take(sub_n(reverse(take(drop([0, -3, 4],1),1)),4),11)",
    "io_inp": [
      0,
      -3,
      4
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(drop(input,1),1)),4),11)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc([5, -1])",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -5, -4, 3]\noutput : list = [-15, -9]",
    "output": "generated_output : list = mul_n(reverse(take([-3, -5, -4, 3],2)),3)",
    "io_inp": [
      -3,
      -5,
      -4,
      3
    ],
    "io_out": [
      -15,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(input,2)),3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [3, 2]",
    "output": "generated_output : list = take(add_n(sort_des([1, 2]),1),22)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(input),1),22)"
  },
  {
    "input": "input : list = [4, -3, 1, 2, -5, -1]\noutput : list = [36, 68, -156, -28]",
    "output": "generated_output : list = add_n(mul_n(mul_n(mul_n(drop([4, -3, 1, 2, -5, -1],2),-4),-2),4),4)",
    "io_inp": [
      4,
      -3,
      1,
      2,
      -5,
      -1
    ],
    "io_out": [
      36,
      68,
      -156,
      -28
    ],
    "output_masked": "generated_output : list = add_n(mul_n(mul_n(mul_n(drop(input,2),-4),-2),4),4)"
  },
  {
    "input": "input : list = [3, -2, 0]\noutput : list = [9]",
    "output": "generated_output : list = take(sub_n(mul_n(mul_n(take([3, -2, 0],1),1),2),-3),23)",
    "io_inp": [
      3,
      -2,
      0
    ],
    "io_out": [
      9
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(mul_n(take(input,1),1),2),-3),23)"
  },
  {
    "input": "input : list = [-4, -4, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, -4, 1],1)",
    "io_inp": [
      -4,
      -4,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -5, -4]\noutput : list = [-8]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(take([2, -5, -4],1)),-4)),25)",
    "io_inp": [
      2,
      -5,
      -4
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(take(input,1)),-4)),25)"
  },
  {
    "input": "input : list = [4, -2, -4, 2]\noutput : list = [-20, 4, -4, -28]",
    "output": "generated_output : list = mul_n(mul_n(take(add_n(reverse([4, -2, -4, 2]),3),26),4),-1)",
    "io_inp": [
      4,
      -2,
      -4,
      2
    ],
    "io_out": [
      -20,
      4,
      -4,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(add_n(reverse(input),3),26),4),-1)"
  },
  {
    "input": "input : list = [1, -4, 2, 4, 4]\noutput : list = [7, 7, 5, 4, -1]",
    "output": "generated_output : list = add_n(sort_des(add_n(take(sort_des([1, -4, 2, 4, 4]),23),2)),1)",
    "io_inp": [
      1,
      -4,
      2,
      4,
      4
    ],
    "io_out": [
      7,
      7,
      5,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(take(sort_des(input),23),2)),1)"
  },
  {
    "input": "input : list = [2, 3, -4]\noutput : list = [4, 3, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(add_n([2, 3, -4],1)))))",
    "io_inp": [
      2,
      3,
      -4
    ],
    "io_out": [
      4,
      3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(add_n(input,1)))))"
  },
  {
    "input": "input : list = [-4, -4, -3, 0, -4, 2]\noutput : list = [-7, -7, -6, -3, -7, -1]",
    "output": "generated_output : list = take(add_n([-4, -4, -3, 0, -4, 2],-3),30)",
    "io_inp": [
      -4,
      -4,
      -3,
      0,
      -4,
      2
    ],
    "io_out": [
      -7,
      -7,
      -6,
      -3,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(input,-3),30)"
  },
  {
    "input": "input : list = [0, 5, -4, 4]\noutput : list = [0, 10, -8, 8]",
    "output": "generated_output : list = mul_n(take(mul_n([0, 5, -4, 4],1),6),2)",
    "io_inp": [
      0,
      5,
      -4,
      4
    ],
    "io_out": [
      0,
      10,
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,1),6),2)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [-15, -15, -9]",
    "output": "generated_output : list = take(reverse(mul_n([3, 5, 5],-3)),9)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      -15,
      -15,
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(input,-3)),9)"
  },
  {
    "input": "input : list = [-5, 5, 4]\noutput : list = [8, 7]",
    "output": "generated_output : list = sub_n(drop([-5, 5, 4],1),-3)",
    "io_inp": [
      -5,
      5,
      4
    ],
    "io_out": [
      8,
      7
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-3)"
  },
  {
    "input": "input : list = [-3, -3, -3, -4, 5, -2]\noutput : list = [-20, 8, 12, 12, 12, 16]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(take(sort_des([-3, -3, -3, -4, 5, -2]),23))),-4)",
    "io_inp": [
      -3,
      -3,
      -3,
      -4,
      5,
      -2
    ],
    "io_out": [
      -20,
      8,
      12,
      12,
      12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(take(sort_des(input),23))),-4)"
  },
  {
    "input": "input : list = [5, -1, 2, 2, -1, -5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(drop(sort_asc(add_n(drop([5, -1, 2, 2, -1, -5],4),3)),1))",
    "io_inp": [
      5,
      -1,
      2,
      2,
      -1,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(drop(sort_asc(add_n(drop(input,4),3)),1))"
  },
  {
    "input": "input : list = [-2, -4, 3, 0]\noutput : list = [-5]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(take([-2, -4, 3, 0],1)),-5),-1),-5)",
    "io_inp": [
      -2,
      -4,
      3,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(take(input,1)),-5),-1),-5)"
  },
  {
    "input": "input : list = [-1, -1, 2]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(reverse(sort_asc(sort_asc(drop([-1, -1, 2],1)))),30)",
    "io_inp": [
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sort_asc(drop(input,1)))),30)"
  },
  {
    "input": "input : list = [1, 3, 3, -3, -3, 1]\noutput : list = [0, -4]",
    "output": "generated_output : list = take(add_n(take(sort_des(drop([1, 3, 3, -3, -3, 1],4)),24),-1),51)",
    "io_inp": [
      1,
      3,
      3,
      -3,
      -3,
      1
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_des(drop(input,4)),24),-1),51)"
  },
  {
    "input": "input : list = [1, 5, 1, -3, 1, 0]\noutput : list = [-15, -3, -3, -3, 0, 9]",
    "output": "generated_output : list = sort_asc(mul_n(take(reverse(reverse([1, 5, 1, -3, 1, 0])),10),-3))",
    "io_inp": [
      1,
      5,
      1,
      -3,
      1,
      0
    ],
    "io_out": [
      -15,
      -3,
      -3,
      -3,
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(reverse(reverse(input)),10),-3))"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = take(mul_n([0, -2],1),2)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,1),2)"
  },
  {
    "input": "input : list = [-4, -3, -1, -4, 3, -5]\noutput : list = [16, 12, 4, 16, -12, 20]",
    "output": "generated_output : list = mul_n([-4, -3, -1, -4, 3, -5],-4)",
    "io_inp": [
      -4,
      -3,
      -1,
      -4,
      3,
      -5
    ],
    "io_out": [
      16,
      12,
      4,
      16,
      -12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [3, -1, -3, 2, -3]\noutput : list = [6, 2, 0, 5, 0]",
    "output": "generated_output : list = sub_n(sub_n([3, -1, -3, 2, -3],1),-4)",
    "io_inp": [
      3,
      -1,
      -3,
      2,
      -3
    ],
    "io_out": [
      6,
      2,
      0,
      5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,1),-4)"
  },
  {
    "input": "input : list = [-3, -4, -2]\noutput : list = [-15, -25, -20]",
    "output": "generated_output : list = mul_n(take(take(reverse(add_n([-3, -4, -2],-1)),20),11),5)",
    "io_inp": [
      -3,
      -4,
      -2
    ],
    "io_out": [
      -15,
      -25,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(add_n(input,-1)),20),11),5)"
  },
  {
    "input": "input : list = [1, -2, -2, 3, 5]\noutput : list = [-8, -8, -5, -3, -1]",
    "output": "generated_output : list = add_n(take(sort_asc(sub_n(sort_des([1, -2, -2, 3, 5]),5)),22),-1)",
    "io_inp": [
      1,
      -2,
      -2,
      3,
      5
    ],
    "io_out": [
      -8,
      -8,
      -5,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sub_n(sort_des(input),5)),22),-1)"
  },
  {
    "input": "input : list = [2, -4, 2, -1, -3, 4]\noutput : list = [-40, 30, 10, -20, 40, -20]",
    "output": "generated_output : list = reverse(mul_n(mul_n([2, -4, 2, -1, -3, 4],5),-2))",
    "io_inp": [
      2,
      -4,
      2,
      -1,
      -3,
      4
    ],
    "io_out": [
      -40,
      30,
      10,
      -20,
      40,
      -20
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(input,5),-2))"
  },
  {
    "input": "input : list = [0, -5, -4, -4, -3]\noutput : list = [-1, -2, -2, -3, -6]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(sort_asc([0, -5, -4, -4, -3]),1),-1)),5)",
    "io_inp": [
      0,
      -5,
      -4,
      -4,
      -3
    ],
    "io_out": [
      -1,
      -2,
      -2,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(sort_asc(input),1),-1)),5)"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [7, 8, 0]",
    "output": "generated_output : list = add_n(sub_n([4, 5, -3],-4),-1)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      7,
      8,
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),-1)"
  },
  {
    "input": "input : list = [2, -3, 4, 0, -4, 4]\noutput : list = [1, 6, -1, 3, 7, -1]",
    "output": "generated_output : list = sub_n(mul_n([2, -3, 4, 0, -4, 4],-1),-3)",
    "io_inp": [
      2,
      -3,
      4,
      0,
      -4,
      4
    ],
    "io_out": [
      1,
      6,
      -1,
      3,
      7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-1),-3)"
  },
  {
    "input": "input : list = [1, 1, -2]\noutput : list = [-7, -7, -10]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(add_n([1, 1, -2],-3)),-5)))",
    "io_inp": [
      1,
      1,
      -2
    ],
    "io_out": [
      -7,
      -7,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(add_n(input,-3)),-5)))"
  },
  {
    "input": "input : list = [-3, -4, 3, -2, 4, 2]\noutput : list = [4, 3, 2, -2, -3, -4]",
    "output": "generated_output : list = take(sort_des([-3, -4, 3, -2, 4, 2]),15)",
    "io_inp": [
      -3,
      -4,
      3,
      -2,
      4,
      2
    ],
    "io_out": [
      4,
      3,
      2,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),15)"
  },
  {
    "input": "input : list = [5, 0, -1, 5, 5]\noutput : list = [-1, -2, 4, 4]",
    "output": "generated_output : list = add_n(sub_n(drop([5, 0, -1, 5, 5],1),2),1)",
    "io_inp": [
      5,
      0,
      -1,
      5,
      5
    ],
    "io_out": [
      -1,
      -2,
      4,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(input,1),2),1)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = mul_n([2, -3],1)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [0, -1, 4, 1]\noutput : list = [25, 0, -25, -100]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc([0, -1, 4, 1])),-5),5)",
    "io_inp": [
      0,
      -1,
      4,
      1
    ],
    "io_out": [
      25,
      0,
      -25,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(sort_asc(input)),-5),5)"
  },
  {
    "input": "input : list = [-1, 5, -4, -3, 1]\noutput : list = [-3, -2, 0, 2, 6]",
    "output": "generated_output : list = add_n(sort_asc([-1, 5, -4, -3, 1]),1)",
    "io_inp": [
      -1,
      5,
      -4,
      -3,
      1
    ],
    "io_out": [
      -3,
      -2,
      0,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-2, -5, -3, 0, 5, 1]\noutput : list = [0, 4]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop([-2, -5, -3, 0, 5, 1],4)))),1)",
    "io_inp": [
      -2,
      -5,
      -3,
      0,
      5,
      1
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(drop(input,4)))),1)"
  },
  {
    "input": "input : list = [1, 1, 0, -5, 2, -1]\noutput : list = [4, 4, 3, -2, 5, 2]",
    "output": "generated_output : list = take(take(add_n([1, 1, 0, -5, 2, -1],3),11),13)",
    "io_inp": [
      1,
      1,
      0,
      -5,
      2,
      -1
    ],
    "io_out": [
      4,
      4,
      3,
      -2,
      5,
      2
    ],
    "output_masked": "generated_output : list = take(take(add_n(input,3),11),13)"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [0, -63, -18]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(reverse([-3, 2, -5]),16),5),3),-3)",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      0,
      -63,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(reverse(input),16),5),3),-3)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, -3]",
    "output": "generated_output : list = reverse([-3, 4])",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, 4, -1, 5, -5, -5]\noutput : list = [1, 1, 5, 7, 10, 11]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(sort_asc([1, 4, -1, 5, -5, -5])),-4),2),-4)",
    "io_inp": [
      1,
      4,
      -1,
      5,
      -5,
      -5
    ],
    "io_out": [
      1,
      1,
      5,
      7,
      10,
      11
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(sort_asc(sort_asc(input)),-4),2),-4)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [4, -1]",
    "output": "generated_output : list = sub_n([5, 0],1)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-3, -5, 5, -5]\noutput : list = [11, -5, -9, -9]",
    "output": "generated_output : list = reverse(add_n(mul_n(take(sort_asc([-3, -5, 5, -5]),22),2),1))",
    "io_inp": [
      -3,
      -5,
      5,
      -5
    ],
    "io_out": [
      11,
      -5,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(take(sort_asc(input),22),2),1))"
  },
  {
    "input": "input : list = [3, 3, -5, -2, 3, -3]\noutput : list = [5, 5, -11, -5, 5, -7]",
    "output": "generated_output : list = sub_n(take(sub_n(take(mul_n([3, 3, -5, -2, 3, -3],2),24),2),24),-1)",
    "io_inp": [
      3,
      3,
      -5,
      -2,
      3,
      -3
    ],
    "io_out": [
      5,
      5,
      -11,
      -5,
      5,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(take(mul_n(input,2),24),2),24),-1)"
  },
  {
    "input": "input : list = [-2, -4, 3, 0, 5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(drop([-2, -4, 3, 0, 5, 5],4))))",
    "io_inp": [
      -2,
      -4,
      3,
      0,
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(drop(input,4))))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [8, 10]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_des([3, 5]))),-5),20)",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      8,
      10
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_asc(sort_des(input))),-5),20)"
  },
  {
    "input": "input : list = [-5, 3, 2, -2]\noutput : list = [-30, -20, 20, 50]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(mul_n([-5, 3, 2, -2],2)))),-5)",
    "io_inp": [
      -5,
      3,
      2,
      -2
    ],
    "io_out": [
      -30,
      -20,
      20,
      50
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_asc(mul_n(input,2)))),-5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse([2, 2])",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0, -4, 3, -4, 3]\noutput : list = [-4, 6, -2, 12, -2, 12]",
    "output": "generated_output : list = reverse(mul_n(sub_n(reverse([-5, 0, -4, 3, -4, 3]),-3),2))",
    "io_inp": [
      -5,
      0,
      -4,
      3,
      -4,
      3
    ],
    "io_out": [
      -4,
      6,
      -2,
      12,
      -2,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(reverse(input),-3),2))"
  },
  {
    "input": "input : list = [2, 5, -4, -5, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(take([2, 5, -4, -5, 0],2)))),-1)",
    "io_inp": [
      2,
      5,
      -4,
      -5,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(take(input,2)))),-1)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = sort_asc([-2, 4])",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 2, 5]\noutput : list = [3, -15, -24]",
    "output": "generated_output : list = mul_n(add_n(sub_n(take(add_n([-4, 2, 5],3),3),4),4),-3)",
    "io_inp": [
      -4,
      2,
      5
    ],
    "io_out": [
      3,
      -15,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(take(add_n(input,3),3),4),4),-3)"
  },
  {
    "input": "input : list = [1, -5, 1, -5, 4, 5]\noutput : list = [-1, 5, -1, 8, 9]",
    "output": "generated_output : list = sub_n(drop([1, -5, 1, -5, 4, 5],1),-4)",
    "io_inp": [
      1,
      -5,
      1,
      -5,
      4,
      5
    ],
    "io_out": [
      -1,
      5,
      -1,
      8,
      9
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-4)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [2, 1]",
    "output": "generated_output : list = take(add_n([-1, -2],3),4)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(input,3),4)"
  },
  {
    "input": "input : list = [-4, -4, -1, 2]\noutput : list = [4, 4, 7, 10]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(sub_n([-4, -4, -1, 2],-4)),-1),-5))",
    "io_inp": [
      -4,
      -4,
      -1,
      2
    ],
    "io_out": [
      4,
      4,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(sub_n(input,-4)),-1),-5))"
  },
  {
    "input": "input : list = [-2, 3, 2, 0, 2, 4]\noutput : list = [6, 5, 4, 4, 2, 0]",
    "output": "generated_output : list = sort_des(add_n(sort_asc([-2, 3, 2, 0, 2, 4]),2))",
    "io_inp": [
      -2,
      3,
      2,
      0,
      2,
      4
    ],
    "io_out": [
      6,
      5,
      4,
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [4, 2, 2, 1]\noutput : list = [4, 5, 5, 7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sort_asc([4, 2, 2, 1])),-5)),2)",
    "io_inp": [
      4,
      2,
      2,
      1
    ],
    "io_out": [
      4,
      5,
      5,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(sort_asc(input)),-5)),2)"
  },
  {
    "input": "input : list = [4, 4, 5]\noutput : list = [5, 4, 4]",
    "output": "generated_output : list = reverse([4, 4, 5])",
    "io_inp": [
      4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4, -4, -1, 3, 4]\noutput : list = [6, 9, 13, 14]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(take([3, 4, -4, -1, 3, 4],4),5)),5),48)",
    "io_inp": [
      3,
      4,
      -4,
      -1,
      3,
      4
    ],
    "io_out": [
      6,
      9,
      13,
      14
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(take(input,4),5)),5),48)"
  },
  {
    "input": "input : list = [-4, -2, -3]\noutput : list = [-8]",
    "output": "generated_output : list = take(take(mul_n(reverse(take([-4, -2, -3],1)),2),5),42)",
    "io_inp": [
      -4,
      -2,
      -3
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = take(take(mul_n(reverse(take(input,1)),2),5),42)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [-1, -13]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_des([2, -1]),-4),-5)))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      -1,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(mul_n(sort_des(input),-4),-5)))"
  },
  {
    "input": "input : list = [-3, -4, 4]\noutput : list = [-25, 10, 15]",
    "output": "generated_output : list = mul_n(reverse(sub_n(reverse(sort_des([-3, -4, 4])),-1)),-5)",
    "io_inp": [
      -3,
      -4,
      4
    ],
    "io_out": [
      -25,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(reverse(sort_des(input)),-1)),-5)"
  },
  {
    "input": "input : list = [2, -3, -1]\noutput : list = [2]",
    "output": "generated_output : list = take([2, -3, -1],1)",
    "io_inp": [
      2,
      -3,
      -1
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [3, -4, 4, -2, 4, -4]\noutput : list = [15, 15, 7, -13, -17, -17]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(sort_asc([3, -4, 4, -2, 4, -4]),-4),10),-3),-4)",
    "io_inp": [
      3,
      -4,
      4,
      -2,
      4,
      -4
    ],
    "io_out": [
      15,
      15,
      7,
      -13,
      -17,
      -17
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(sort_asc(input),-4),10),-3),-4)"
  },
  {
    "input": "input : list = [-2, 1, -2, 1]\noutput : list = [9, 9, 0, 0]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_des([-2, 1, -2, 1])),-3)),-3)",
    "io_inp": [
      -2,
      1,
      -2,
      1
    ],
    "io_out": [
      9,
      9,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(reverse(sort_des(input)),-3)),-3)"
  },
  {
    "input": "input : list = [3, -4, 1, 4]\noutput : list = [4, 1, -4, 3]",
    "output": "generated_output : list = reverse([3, -4, 1, 4])",
    "io_inp": [
      3,
      -4,
      1,
      4
    ],
    "io_out": [
      4,
      1,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -2, -3, -4, 1]\noutput : list = [2, -2, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(drop([4, -2, -3, -4, 1],2),-1))))",
    "io_inp": [
      4,
      -2,
      -3,
      -4,
      1
    ],
    "io_out": [
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sub_n(drop(input,2),-1))))"
  },
  {
    "input": "input : list = [0, -1, -3, 4, 2]\noutput : list = [12, 6, 0, -3, -9]",
    "output": "generated_output : list = mul_n(take(sort_des([0, -1, -3, 4, 2]),22),3)",
    "io_inp": [
      0,
      -1,
      -3,
      4,
      2
    ],
    "io_out": [
      12,
      6,
      0,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(input),22),3)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [-7]",
    "output": "generated_output : list = take(add_n(sub_n(reverse(mul_n([0, -2],3)),3),2),1)",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(reverse(mul_n(input,3)),3),2),1)"
  },
  {
    "input": "input : list = [5, 3, -3, -2]\noutput : list = [2, 0, -5, -6]",
    "output": "generated_output : list = sub_n(take(reverse(sort_asc(sort_asc([5, 3, -3, -2]))),12),3)",
    "io_inp": [
      5,
      3,
      -3,
      -2
    ],
    "io_out": [
      2,
      0,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(sort_asc(sort_asc(input))),12),3)"
  },
  {
    "input": "input : list = [5, 0, 4, -5]\noutput : list = [0, 5, 9, 10]",
    "output": "generated_output : list = sort_asc(add_n([5, 0, 4, -5],5))",
    "io_inp": [
      5,
      0,
      4,
      -5
    ],
    "io_out": [
      0,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-15, -25]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n([-3, -2],-1),2),1),-5))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -15,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(mul_n(mul_n(input,-1),2),1),-5))"
  },
  {
    "input": "input : list = [4, 5, 5]\noutput : list = [-2, -4, -4]",
    "output": "generated_output : list = reverse(add_n(sort_asc(mul_n(add_n([4, 5, 5],-1),-2)),4))",
    "io_inp": [
      4,
      5,
      5
    ],
    "io_out": [
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(mul_n(add_n(input,-1),-2)),4))"
  },
  {
    "input": "input : list = [2, -4, 2, -1]\noutput : list = [-8, -5, -2, -2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(reverse([2, -4, 2, -1]),-4))))",
    "io_inp": [
      2,
      -4,
      2,
      -1
    ],
    "io_out": [
      -8,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(add_n(reverse(input),-4))))"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -5]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(reverse([-1, -2]),3),-4),-3),17)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(reverse(input),3),-4),-3),17)"
  },
  {
    "input": "input : list = [-3, 2, -2, 1]\noutput : list = [-3, -2, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-3, 2, -2, 1]))",
    "io_inp": [
      -3,
      2,
      -2,
      1
    ],
    "io_out": [
      -3,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [4, 0, -5, -2]\noutput : list = [4, -6, 0]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(drop([4, 0, -5, -2],1),3),2),16),2)",
    "io_inp": [
      4,
      0,
      -5,
      -2
    ],
    "io_out": [
      4,
      -6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(drop(input,1),3),2),16),2)"
  },
  {
    "input": "input : list = [-2, -2, 1, -1, 0, -4]\noutput : list = [1, -1, -2, -2]",
    "output": "generated_output : list = sort_des(take(take(reverse(take([-2, -2, 1, -1, 0, -4],4)),32),41))",
    "io_inp": [
      -2,
      -2,
      1,
      -1,
      0,
      -4
    ],
    "io_out": [
      1,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(take(reverse(take(input,4)),32),41))"
  },
  {
    "input": "input : list = [3, -5, -2, 3, -5]\noutput : list = [4, 4, 7, 12, 12]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(add_n([3, -5, -2, 3, -5],-1),2),-4)),4)",
    "io_inp": [
      3,
      -5,
      -2,
      3,
      -5
    ],
    "io_out": [
      4,
      4,
      7,
      12,
      12
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(add_n(input,-1),2),-4)),4)"
  },
  {
    "input": "input : list = [4, 0, 3]\noutput : list = [11, 10, 7]",
    "output": "generated_output : list = reverse(sub_n(add_n(sort_asc([4, 0, 3]),5),-2))",
    "io_inp": [
      4,
      0,
      3
    ],
    "io_out": [
      11,
      10,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sort_asc(input),5),-2))"
  },
  {
    "input": "input : list = [3, -1, -4]\noutput : list = [-5, -2, 2]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sub_n([3, -1, -4],1))))",
    "io_inp": [
      3,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sub_n(input,1))))"
  },
  {
    "input": "input : list = [5, 0, -4, -5, 2, 4]\noutput : list = [0, 2]",
    "output": "generated_output : list = take(sort_asc(drop(drop(sub_n([5, 0, -4, -5, 2, 4],2),1),3)),23)",
    "io_inp": [
      5,
      0,
      -4,
      -5,
      2,
      4
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(drop(drop(sub_n(input,2),1),3)),23)"
  },
  {
    "input": "input : list = [-2, 0, -4]\noutput : list = [-4, -2, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_des([-2, 0, -4]))),1))",
    "io_inp": [
      -2,
      0,
      -4
    ],
    "io_out": [
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(reverse(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-5, -4, -5, -2, 5, 3]\noutput : list = [16, 20, 6, 0, 2, 0]",
    "output": "generated_output : list = reverse(take(mul_n(take(sub_n([-5, -4, -5, -2, 5, 3],-5),26),2),25))",
    "io_inp": [
      -5,
      -4,
      -5,
      -2,
      5,
      3
    ],
    "io_out": [
      16,
      20,
      6,
      0,
      2,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(take(sub_n(input,-5),26),2),25))"
  },
  {
    "input": "input : list = [1, -3, -3, 2, 5, 1]\noutput : list = [0, 0, 4, 4, 5, 8]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(sort_des([1, -3, -3, 2, 5, 1]))),-2),-1)",
    "io_inp": [
      1,
      -3,
      -3,
      2,
      5,
      1
    ],
    "io_out": [
      0,
      0,
      4,
      4,
      5,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(sort_des(input))),-2),-1)"
  },
  {
    "input": "input : list = [3, -1, -5, 3]\noutput : list = [16]",
    "output": "generated_output : list = take(mul_n(sort_des(sub_n(take([3, -1, -5, 3],1),-1)),4),15)",
    "io_inp": [
      3,
      -1,
      -5,
      3
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(sub_n(take(input,1),-1)),4),15)"
  },
  {
    "input": "input : list = [-3, -1, 5, 4]\noutput : list = [-12, -10, -5, -4]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(add_n([-3, -1, 5, 4],-2),5),-3)),1)",
    "io_inp": [
      -3,
      -1,
      5,
      4
    ],
    "io_out": [
      -12,
      -10,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(add_n(input,-2),5),-3)),1)"
  },
  {
    "input": "input : list = [5, 4, -1]\noutput : list = [-9, 16]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(reverse(drop([5, 4, -1],1))),5),4)",
    "io_inp": [
      5,
      4,
      -1
    ],
    "io_out": [
      -9,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(reverse(drop(input,1))),5),4)"
  },
  {
    "input": "input : list = [0, 4, 3, 1, -2]\noutput : list = [0, -4, -3, -1, 2]",
    "output": "generated_output : list = take(mul_n([0, 4, 3, 1, -2],-1),17)",
    "io_inp": [
      0,
      4,
      3,
      1,
      -2
    ],
    "io_out": [
      0,
      -4,
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),17)"
  },
  {
    "input": "input : list = [-1, -5, 0, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(drop([-1, -5, 0, 4],2),1)",
    "io_inp": [
      -1,
      -5,
      0,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(drop(input,2),1)"
  },
  {
    "input": "input : list = [4, 4, 3, -4, 5, -2]\noutput : list = [-3, -4, -4, -5, -10, -12]",
    "output": "generated_output : list = add_n(add_n(sort_des(sort_des(sort_des([4, 4, 3, -4, 5, -2]))),-5),-3)",
    "io_inp": [
      4,
      4,
      3,
      -4,
      5,
      -2
    ],
    "io_out": [
      -3,
      -4,
      -4,
      -5,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(sort_des(sort_des(input))),-5),-3)"
  },
  {
    "input": "input : list = [4, 4]\noutput : list = [12, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sub_n([4, 4],-4),-4))),3)",
    "io_inp": [
      4,
      4
    ],
    "io_out": [
      12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(add_n(sub_n(input,-4),-4))),3)"
  },
  {
    "input": "input : list = [5, -1, 3, -2]\noutput : list = [34, 22, -2, -8]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(sort_des([5, -1, 3, -2]),2),3),14),-4)",
    "io_inp": [
      5,
      -1,
      3,
      -2
    ],
    "io_out": [
      34,
      22,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(sort_des(input),2),3),14),-4)"
  },
  {
    "input": "input : list = [3, -2, -1, 2]\noutput : list = [1, 2, 5, 6]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(add_n([3, -2, -1, 2],3),8))))",
    "io_inp": [
      3,
      -2,
      -1,
      2
    ],
    "io_out": [
      1,
      2,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(add_n(input,3),8))))"
  },
  {
    "input": "input : list = [-1, 2, 2, -5]\noutput : list = [-4, 0, 3, 3]",
    "output": "generated_output : list = take(reverse(sort_des(sort_asc(add_n([-1, 2, 2, -5],1)))),30)",
    "io_inp": [
      -1,
      2,
      2,
      -5
    ],
    "io_out": [
      -4,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_asc(add_n(input,1)))),30)"
  },
  {
    "input": "input : list = [-2, 4, 0]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n(drop([-2, 4, 0],1),-5)",
    "io_inp": [
      -2,
      4,
      0
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),-5)"
  },
  {
    "input": "input : list = [-5, 1, -5, -4, -5, -4]\noutput : list = [5, 0, 0, -1, -1, -1]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n([-5, 1, -5, -4, -5, -4],-3),1),4)),-3)",
    "io_inp": [
      -5,
      1,
      -5,
      -4,
      -5,
      -4
    ],
    "io_out": [
      5,
      0,
      0,
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n(input,-3),1),4)),-3)"
  },
  {
    "input": "input : list = [-3, -3, -4, 4]\noutput : list = [-8, -6, -6, 8]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(mul_n([-3, -3, -4, 4],2)),8),1))",
    "io_inp": [
      -3,
      -3,
      -4,
      4
    ],
    "io_out": [
      -8,
      -6,
      -6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(mul_n(input,2)),8),1))"
  },
  {
    "input": "input : list = [0, -4, 1, -2]\noutput : list = [-4, -2, 0, 1]",
    "output": "generated_output : list = mul_n(add_n(add_n(sort_asc(sort_asc([0, -4, 1, -2])),-5),5),1)",
    "io_inp": [
      0,
      -4,
      1,
      -2
    ],
    "io_out": [
      -4,
      -2,
      0,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(sort_asc(sort_asc(input)),-5),5),1)"
  },
  {
    "input": "input : list = [2, -5, -3, 2]\noutput : list = [5, 0, -2, 5]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n([2, -5, -3, 2],1),-5),1),-2))",
    "io_inp": [
      2,
      -5,
      -3,
      2
    ],
    "io_out": [
      5,
      0,
      -2,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(add_n(input,1),-5),1),-2))"
  },
  {
    "input": "input : list = [-4, 1, 2, -4]\noutput : list = [-2, 3, 4, -2]",
    "output": "generated_output : list = add_n([-4, 1, 2, -4],2)",
    "io_inp": [
      -4,
      1,
      2,
      -4
    ],
    "io_out": [
      -2,
      3,
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [0, 3, 1]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(take([0, 3, 1],1),-2),15)),1)",
    "io_inp": [
      0,
      3,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(take(input,1),-2),15)),1)"
  },
  {
    "input": "input : list = [5, 4, -5, 0]\noutput : list = [27, 12, 0, -3]",
    "output": "generated_output : list = mul_n(reverse(add_n(sub_n(sort_des([5, 4, -5, 0]),3),-1)),-3)",
    "io_inp": [
      5,
      4,
      -5,
      0
    ],
    "io_out": [
      27,
      12,
      0,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sub_n(sort_des(input),3),-1)),-3)"
  },
  {
    "input": "input : list = [-3, 3, 2, -2, 0]\noutput : list = [-4, -5, -7, -9, -10]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(add_n([-3, 3, 2, -2, 0],-2)),-3)),-2)",
    "io_inp": [
      -3,
      3,
      2,
      -2,
      0
    ],
    "io_out": [
      -4,
      -5,
      -7,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(add_n(input,-2)),-3)),-2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-1, -8]",
    "output": "generated_output : list = sub_n([2, -5],3)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [2, 4, 3]\noutput : list = [7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(drop([2, 4, 3],1)),15),-4))",
    "io_inp": [
      2,
      4,
      3
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(drop(input,1)),15),-4))"
  },
  {
    "input": "input : list = [-4, -1, -2]\noutput : list = [-13, -10, -11]",
    "output": "generated_output : list = add_n(add_n([-4, -1, -2],-5),-4)",
    "io_inp": [
      -4,
      -1,
      -2
    ],
    "io_out": [
      -13,
      -10,
      -11
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-5),-4)"
  },
  {
    "input": "input : list = [5, 2, 2, 1]\noutput : list = [5, 2, 2, 1]",
    "output": "generated_output : list = sort_des([5, 2, 2, 1])",
    "io_inp": [
      5,
      2,
      2,
      1
    ],
    "io_out": [
      5,
      2,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, 5, 1]\noutput : list = [6, 4, -2, -6]",
    "output": "generated_output : list = sub_n(sort_des(take(mul_n(sort_asc([-1, 4, 5, 1]),2),8)),4)",
    "io_inp": [
      -1,
      4,
      5,
      1
    ],
    "io_out": [
      6,
      4,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(mul_n(sort_asc(input),2),8)),4)"
  },
  {
    "input": "input : list = [2, -2, 5, 0, 0]\noutput : list = [2, -2]",
    "output": "generated_output : list = take([2, -2, 5, 0, 0],2)",
    "io_inp": [
      2,
      -2,
      5,
      0,
      0
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -2, -2, 0, 1]\noutput : list = [-24, -12, 0, 24, 24]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc([2, -2, -2, 0, 1]))),3),-4)",
    "io_inp": [
      2,
      -2,
      -2,
      0,
      1
    ],
    "io_out": [
      -24,
      -12,
      0,
      24,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_asc(sort_asc(input))),3),-4)"
  },
  {
    "input": "input : list = [4, -2, 2]\noutput : list = [4, 8]",
    "output": "generated_output : list = sub_n(drop(add_n([4, -2, 2],5),1),-1)",
    "io_inp": [
      4,
      -2,
      2
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = sub_n(drop(add_n(input,5),1),-1)"
  },
  {
    "input": "input : list = [1, 1, 0]\noutput : list = [-3]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sort_des(take([1, 1, 0],1))),-3))",
    "io_inp": [
      1,
      1,
      0
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sort_des(take(input,1))),-3))"
  },
  {
    "input": "input : list = [4, -3, -1, -5, -5]\noutput : list = [4, -1, -3, -5, -5]",
    "output": "generated_output : list = take(sort_des([4, -3, -1, -5, -5]),9)",
    "io_inp": [
      4,
      -3,
      -1,
      -5,
      -5
    ],
    "io_out": [
      4,
      -1,
      -3,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),9)"
  },
  {
    "input": "input : list = [0, 4, 4, 2]\noutput : list = [2, 6, 6, 4]",
    "output": "generated_output : list = sub_n([0, 4, 4, 2],-2)",
    "io_inp": [
      0,
      4,
      4,
      2
    ],
    "io_out": [
      2,
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-2, 0, -2]\noutput : list = [11, 11, 5]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(add_n(reverse([-2, 0, -2]),-3),-3)),4)",
    "io_inp": [
      -2,
      0,
      -2
    ],
    "io_out": [
      11,
      11,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(add_n(reverse(input),-3),-3)),4)"
  },
  {
    "input": "input : list = [-1, 2, -1, -1]\noutput : list = [-5, -5]",
    "output": "generated_output : list = reverse(drop(sort_des(reverse(sub_n([-1, 2, -1, -1],4))),2))",
    "io_inp": [
      -1,
      2,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_des(reverse(sub_n(input,4))),2))"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [-9, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(add_n([3, -4, 5],-5)))))",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      -9,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(sort_asc(add_n(input,-5)))))"
  },
  {
    "input": "input : list = [-4, -2, -4, 3]\noutput : list = [12, 12, 6, -9]",
    "output": "generated_output : list = sort_des(mul_n([-4, -2, -4, 3],-3))",
    "io_inp": [
      -4,
      -2,
      -4,
      3
    ],
    "io_out": [
      12,
      12,
      6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-4, 5, 3]\noutput : list = [-7, 2, 0]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([-4, 5, 3],-3),4),2)",
    "io_inp": [
      -4,
      5,
      3
    ],
    "io_out": [
      -7,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,-3),4),2)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-10, -9]",
    "output": "generated_output : list = add_n(add_n([-3, -2],-4),-3)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -10,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,-4),-3)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [-45, -35]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(add_n([5, 3],-1),14),-5)),-5)",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      -45,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(add_n(input,-1),14),-5)),-5)"
  },
  {
    "input": "input : list = [-3, 2, -1]\noutput : list = [2, -7]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(drop([-3, 2, -1],1),-2),3),-2),38)",
    "io_inp": [
      -3,
      2,
      -1
    ],
    "io_out": [
      2,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(drop(input,1),-2),3),-2),38)"
  },
  {
    "input": "input : list = [5, -2, 0, 1, -4]\noutput : list = [7, 2, 0]",
    "output": "generated_output : list = take(sort_des(sort_des(sub_n(take([5, -2, 0, 1, -4],3),-2))),40)",
    "io_inp": [
      5,
      -2,
      0,
      1,
      -4
    ],
    "io_out": [
      7,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(sub_n(take(input,3),-2))),40)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [15, -1]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n([-3, 5],-2),1),5),-5)",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      15,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(input,-2),1),5),-5)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [4, -1]",
    "output": "generated_output : list = take(take(sort_des(add_n(reverse([2, -3]),2)),21),15)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(reverse(input),2)),21),15)"
  },
  {
    "input": "input : list = [0, 0, -1, -5, 5]\noutput : list = [4, -1, -1, -2, -6]",
    "output": "generated_output : list = take(sub_n(reverse(sort_asc(reverse([0, 0, -1, -5, 5]))),1),41)",
    "io_inp": [
      0,
      0,
      -1,
      -5,
      5
    ],
    "io_out": [
      4,
      -1,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_asc(reverse(input))),1),41)"
  },
  {
    "input": "input : list = [1, 1, -5]\noutput : list = [-5, 1, 1]",
    "output": "generated_output : list = take(reverse(sort_des(reverse(sort_asc([1, 1, -5])))),41)",
    "io_inp": [
      1,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(reverse(sort_asc(input)))),41)"
  },
  {
    "input": "input : list = [1, 0, -1]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = reverse([1, 0, -1])",
    "io_inp": [
      1,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 3, 2, -2, -1, 2]\noutput : list = [60, 40, 40, -20, -40, -60]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_asc(mul_n([-3, 3, 2, -2, -1, 2],4)),5)),10)",
    "io_inp": [
      -3,
      3,
      2,
      -2,
      -1,
      2
    ],
    "io_out": [
      60,
      40,
      40,
      -20,
      -40,
      -60
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_asc(mul_n(input,4)),5)),10)"
  },
  {
    "input": "input : list = [-5, -4, -2, -5, 1, 3]\noutput : list = [-2, -4, -7, -9, -10, -10]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n([-5, -4, -2, -5, 1, 3],-5))))",
    "io_inp": [
      -5,
      -4,
      -2,
      -5,
      1,
      3
    ],
    "io_out": [
      -2,
      -4,
      -7,
      -9,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(input,-5))))"
  },
  {
    "input": "input : list = [5, 1, 4, -4, 0]\noutput : list = [3, 12, 15]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take([5, 1, 4, -4, 0],3),3)))",
    "io_inp": [
      5,
      1,
      4,
      -4,
      0
    ],
    "io_out": [
      3,
      12,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(input,3),3)))"
  },
  {
    "input": "input : list = [-1, -1, 3, 4]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -1, 3, 4],1)",
    "io_inp": [
      -1,
      -1,
      3,
      4
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [10, 5]",
    "output": "generated_output : list = reverse(sub_n([0, 5],-5))",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      10,
      5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(input,-5))"
  },
  {
    "input": "input : list = [1, -2, 1, -4, 3, 5]\noutput : list = [15, 9, 3, 3, -6, -12]",
    "output": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(mul_n([1, -2, 1, -4, 3, 5],3)))))",
    "io_inp": [
      1,
      -2,
      1,
      -4,
      3,
      5
    ],
    "io_out": [
      15,
      9,
      3,
      3,
      -6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_des(sort_asc(mul_n(input,3)))))"
  },
  {
    "input": "input : list = [3, -1, -3, 2, 4, 2]\noutput : list = [6, -2, -6, 4, 8, 4]",
    "output": "generated_output : list = mul_n([3, -1, -3, 2, 4, 2],2)",
    "io_inp": [
      3,
      -1,
      -3,
      2,
      4,
      2
    ],
    "io_out": [
      6,
      -2,
      -6,
      4,
      8,
      4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [0, 2, 5, -4, 0, -2]\noutput : list = [100, 55, 25, 25, -5, -35]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sort_des(sort_des([0, 2, 5, -4, 0, -2])),-3),5),-5)",
    "io_inp": [
      0,
      2,
      5,
      -4,
      0,
      -2
    ],
    "io_out": [
      100,
      55,
      25,
      25,
      -5,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sort_des(sort_des(input)),-3),5),-5)"
  },
  {
    "input": "input : list = [5, -3, 0, 3, 1, -4]\noutput : list = [1, -7, -4, -1, -3, -8]",
    "output": "generated_output : list = mul_n(add_n([5, -3, 0, 3, 1, -4],-4),1)",
    "io_inp": [
      5,
      -3,
      0,
      3,
      1,
      -4
    ],
    "io_out": [
      1,
      -7,
      -4,
      -1,
      -3,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),1)"
  },
  {
    "input": "input : list = [1, 3, -5]\noutput : list = [-1, 7]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sort_asc(drop([1, 3, -5],1)))),4)",
    "io_inp": [
      1,
      3,
      -5
    ],
    "io_out": [
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sort_asc(drop(input,1)))),4)"
  },
  {
    "input": "input : list = [2, -4, 2, 0, 3]\noutput : list = [-8, 16, -8, 0, -12]",
    "output": "generated_output : list = mul_n([2, -4, 2, 0, 3],-4)",
    "io_inp": [
      2,
      -4,
      2,
      0,
      3
    ],
    "io_out": [
      -8,
      16,
      -8,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [3, 5]",
    "output": "generated_output : list = add_n(sub_n([2, 4],4),5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),5)"
  },
  {
    "input": "input : list = [1, 5, 3, -1, 1, -1]\noutput : list = [-1, -1, 1, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([1, 5, 3, -1, 1, -1])",
    "io_inp": [
      1,
      5,
      3,
      -1,
      1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 5, -1]\noutput : list = [-4, 14, 2]",
    "output": "generated_output : list = take(mul_n(add_n(add_n(add_n([-4, 5, -1],3),4),-5),2),14)",
    "io_inp": [
      -4,
      5,
      -1
    ],
    "io_out": [
      -4,
      14,
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(add_n(add_n(input,3),4),-5),2),14)"
  },
  {
    "input": "input : list = [3, -4, 5, 3, -2, 2]\noutput : list = [5, 3, -2, 2]",
    "output": "generated_output : list = drop([3, -4, 5, 3, -2, 2],2)",
    "io_inp": [
      3,
      -4,
      5,
      3,
      -2,
      2
    ],
    "io_out": [
      5,
      3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 2, 1, 1, 4]\noutput : list = [-2, 4, 3, 3, 6]",
    "output": "generated_output : list = sub_n([-4, 2, 1, 1, 4],-2)",
    "io_inp": [
      -4,
      2,
      1,
      1,
      4
    ],
    "io_out": [
      -2,
      4,
      3,
      3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -3, 0, -1, -1]\noutput : list = [-5, -3, -3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(mul_n(drop([2, -3, 0, -1, -1],2),-2)),-5))",
    "io_inp": [
      2,
      -3,
      0,
      -1,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(mul_n(drop(input,2),-2)),-5))"
  },
  {
    "input": "input : list = [3, 1, 4, -4, 0, 3]\noutput : list = [9, 8, 8, 6, 5, 1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n([3, 1, 4, -4, 0, 3],5)))))",
    "io_inp": [
      3,
      1,
      4,
      -4,
      0,
      3
    ],
    "io_out": [
      9,
      8,
      8,
      6,
      5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(add_n(input,5)))))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(sort_des([-3, 0]))),1))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(sort_des(input))),1))"
  },
  {
    "input": "input : list = [-3, -3, 3]\noutput : list = [-7, -7, -1]",
    "output": "generated_output : list = reverse(add_n(add_n(sort_des([-3, -3, 3]),-3),-1))",
    "io_inp": [
      -3,
      -3,
      3
    ],
    "io_out": [
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(sort_des(input),-3),-1))"
  },
  {
    "input": "input : list = [1, -4, -1, -2]\noutput : list = [1]",
    "output": "generated_output : list = sort_asc(take(drop(reverse(sort_des([1, -4, -1, -2])),3),36))",
    "io_inp": [
      1,
      -4,
      -1,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(drop(reverse(sort_des(input)),3),36))"
  },
  {
    "input": "input : list = [4, -4, 4, 3, -2, -1]\noutput : list = [30, 30, 35, 55, 60, 70]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(sub_n([4, -4, 4, 3, -2, -1],5),-5))),-5)",
    "io_inp": [
      4,
      -4,
      4,
      3,
      -2,
      -1
    ],
    "io_out": [
      30,
      30,
      35,
      55,
      60,
      70
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(sub_n(input,5),-5))),-5)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [4, -1]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(sub_n([-5, 0],-4)))))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(sub_n(input,-4)))))"
  },
  {
    "input": "input : list = [-1, -5, -5, 2]\noutput : list = [3, 15, 15, -6]",
    "output": "generated_output : list = mul_n([-1, -5, -5, 2],-3)",
    "io_inp": [
      -1,
      -5,
      -5,
      2
    ],
    "io_out": [
      3,
      15,
      15,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [0, -4, -2, 4, 2, 5]\noutput : list = [-15, -12]",
    "output": "generated_output : list = take(mul_n(reverse(sort_asc([0, -4, -2, 4, 2, 5])),-3),2)",
    "io_inp": [
      0,
      -4,
      -2,
      4,
      2,
      5
    ],
    "io_out": [
      -15,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_asc(input)),-3),2)"
  },
  {
    "input": "input : list = [3, -1, 5, -5, 5]\noutput : list = [4, 8, 10]",
    "output": "generated_output : list = sort_asc(sub_n(take(sort_asc(take([3, -1, 5, -5, 5],3)),10),-5))",
    "io_inp": [
      3,
      -1,
      5,
      -5,
      5
    ],
    "io_out": [
      4,
      8,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(sort_asc(take(input,3)),10),-5))"
  },
  {
    "input": "input : list = [-5, 4, 2, -4, -1, -2]\noutput : list = [-11, -10, -13, -7]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(drop([-5, 4, 2, -4, -1, -2],2)),-5),3),-1)",
    "io_inp": [
      -5,
      4,
      2,
      -4,
      -1,
      -2
    ],
    "io_out": [
      -11,
      -10,
      -13,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(drop(input,2)),-5),3),-1)"
  },
  {
    "input": "input : list = [-1, 3, 1, -1, -3]\noutput : list = [24, 12, 0, -12, 12]",
    "output": "generated_output : list = mul_n(take(mul_n(reverse(sub_n([-1, 3, 1, -1, -3],1)),2),26),-3)",
    "io_inp": [
      -1,
      3,
      1,
      -1,
      -3
    ],
    "io_out": [
      24,
      12,
      0,
      -12,
      12
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(reverse(sub_n(input,1)),2),26),-3)"
  },
  {
    "input": "input : list = [3, -4, -4]\noutput : list = [-2, -2]",
    "output": "generated_output : list = add_n(drop([3, -4, -4],1),2)",
    "io_inp": [
      3,
      -4,
      -4
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [2, 0, -2, -5, -1, -2]\noutput : list = [2, 0, -1, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc([2, 0, -2, -5, -1, -2]))",
    "io_inp": [
      2,
      0,
      -2,
      -5,
      -1,
      -2
    ],
    "io_out": [
      2,
      0,
      -1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [2, -2, -5]\noutput : list = [3, 6, 10]",
    "output": "generated_output : list = sub_n(sub_n(reverse([2, -2, -5]),-5),-3)",
    "io_inp": [
      2,
      -2,
      -5
    ],
    "io_out": [
      3,
      6,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(input),-5),-3)"
  },
  {
    "input": "input : list = [2, -2, 5, -1]\noutput : list = [-12, 8, -27, 3]",
    "output": "generated_output : list = mul_n(add_n(take(take(mul_n([2, -2, 5, -1],5),6),29),2),-1)",
    "io_inp": [
      2,
      -2,
      5,
      -1
    ],
    "io_out": [
      -12,
      8,
      -27,
      3
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(mul_n(input,5),6),29),2),-1)"
  },
  {
    "input": "input : list = [3, 2, -2, -3, -1, -2]\noutput : list = [14, 12, 6, 4, 4, 2]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(add_n([3, 2, -2, -3, -1, -2],4))),2))",
    "io_inp": [
      3,
      2,
      -2,
      -3,
      -1,
      -2
    ],
    "io_out": [
      14,
      12,
      6,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(add_n(input,4))),2))"
  },
  {
    "input": "input : list = [-1, 5, 0, 5, 2, 2]\noutput : list = [5, 0, 5, -1]",
    "output": "generated_output : list = reverse(take(take(take(take([-1, 5, 0, 5, 2, 2],4),15),13),16))",
    "io_inp": [
      -1,
      5,
      0,
      5,
      2,
      2
    ],
    "io_out": [
      5,
      0,
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(take(take(take(input,4),15),13),16))"
  },
  {
    "input": "input : list = [0, -1, -4]\noutput : list = [0, -1, -4]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(sort_asc([0, -1, -4])))))",
    "io_inp": [
      0,
      -1,
      -4
    ],
    "io_out": [
      0,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, -3, -5, 4, 2, 5]\noutput : list = [-3, -1, 4, 6, 6, 7]",
    "output": "generated_output : list = add_n(take(sort_asc(reverse(reverse([4, -3, -5, 4, 2, 5]))),36),2)",
    "io_inp": [
      4,
      -3,
      -5,
      4,
      2,
      5
    ],
    "io_out": [
      -3,
      -1,
      4,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(reverse(reverse(input))),36),2)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [0, 0]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(reverse([0, 0]),4)),31),4)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(reverse(input),4)),31),4)"
  },
  {
    "input": "input : list = [0, 3, -4, -5]\noutput : list = [-18, -15, -3, 6]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(mul_n([0, 3, -4, -5],3))),-3)",
    "io_inp": [
      0,
      3,
      -4,
      -5
    ],
    "io_out": [
      -18,
      -15,
      -3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(mul_n(input,3))),-3)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [3, -1]",
    "output": "generated_output : list = sort_des([3, -1])",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -2, 5, -3, 4]\noutput : list = [4, 3, -3, -4, -5]",
    "output": "generated_output : list = add_n(sort_des([-4, -2, 5, -3, 4]),-1)",
    "io_inp": [
      -4,
      -2,
      5,
      -3,
      4
    ],
    "io_out": [
      4,
      3,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [3, -7]",
    "output": "generated_output : list = add_n(mul_n(add_n([-5, 5],4),-1),2)",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,4),-1),2)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [-3, -6]",
    "output": "generated_output : list = mul_n(take(sort_asc(add_n(sort_asc([5, 2]),1)),33),-1)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(add_n(sort_asc(input),1)),33),-1)"
  },
  {
    "input": "input : list = [4, -3, -3, 0, -5, 2]\noutput : list = [45, -18]",
    "output": "generated_output : list = mul_n(mul_n(reverse(take(reverse([4, -3, -3, 0, -5, 2]),2)),3),-3)",
    "io_inp": [
      4,
      -3,
      -3,
      0,
      -5,
      2
    ],
    "io_out": [
      45,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(take(reverse(input),2)),3),-3)"
  },
  {
    "input": "input : list = [-3, 1, 5, -3, 5, -2]\noutput : list = [-50, -50, -10, 20, 30, 30]",
    "output": "generated_output : list = mul_n(mul_n(sort_des([-3, 1, 5, -3, 5, -2]),5),-2)",
    "io_inp": [
      -3,
      1,
      5,
      -3,
      5,
      -2
    ],
    "io_out": [
      -50,
      -50,
      -10,
      20,
      30,
      30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(input),5),-2)"
  },
  {
    "input": "input : list = [-1, -4, -5]\noutput : list = [-12]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(take([-1, -4, -5],1))),-4),-4)",
    "io_inp": [
      -1,
      -4,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(take(input,1))),-4),-4)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-9, -12]",
    "output": "generated_output : list = reverse(reverse(mul_n(mul_n(reverse([-4, -3]),1),3)))",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -9,
      -12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(mul_n(reverse(input),1),3)))"
  },
  {
    "input": "input : list = [-5, -1, 2, 1]\noutput : list = [2, 3, 0, -4]",
    "output": "generated_output : list = add_n(sub_n(reverse([-5, -1, 2, 1]),-4),-3)",
    "io_inp": [
      -5,
      -1,
      2,
      1
    ],
    "io_out": [
      2,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),-4),-3)"
  },
  {
    "input": "input : list = [1, 3, 2, -3]\noutput : list = [-12, 8, 12, 4]",
    "output": "generated_output : list = reverse(mul_n([1, 3, 2, -3],4))",
    "io_inp": [
      1,
      3,
      2,
      -3
    ],
    "io_out": [
      -12,
      8,
      12,
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,4))"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [-1, -5, -6]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(sort_des([3, -1, -2])),-4),28))",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(sort_des(input)),-4),28))"
  },
  {
    "input": "input : list = [-5, -4, 5, -1, 5]\noutput : list = [80, 60, -120, 0, -120]",
    "output": "generated_output : list = mul_n(take(mul_n(sub_n(add_n([-5, -4, 5, -1, 5],3),2),-5),19),4)",
    "io_inp": [
      -5,
      -4,
      5,
      -1,
      5
    ],
    "io_out": [
      80,
      60,
      -120,
      0,
      -120
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sub_n(add_n(input,3),2),-5),19),4)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [20, 20]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(take(sort_asc([5, 5]),11),-5)),2)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(take(sort_asc(input),11),-5)),2)"
  },
  {
    "input": "input : list = [-1, -1, 1, 2]\noutput : list = [-3, -4, -6, -6]",
    "output": "generated_output : list = sub_n(sub_n(take(add_n(reverse([-1, -1, 1, 2]),-4),31),-2),3)",
    "io_inp": [
      -1,
      -1,
      1,
      2
    ],
    "io_out": [
      -3,
      -4,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(add_n(reverse(input),-4),31),-2),3)"
  },
  {
    "input": "input : list = [-4, 3, -2, -1, -5]\noutput : list = [-5, -4, -2, -1, 3]",
    "output": "generated_output : list = sort_asc(take(sort_des(take(reverse([-4, 3, -2, -1, -5]),14)),35))",
    "io_inp": [
      -4,
      3,
      -2,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(reverse(input),14)),35))"
  },
  {
    "input": "input : list = [0, 2, 4, -1, 5]\noutput : list = [0, 2, 4]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(take([0, 2, 4, -1, 5],3),5)),16),1)",
    "io_inp": [
      0,
      2,
      4,
      -1,
      5
    ],
    "io_out": [
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(take(input,3),5)),16),1)"
  },
  {
    "input": "input : list = [-1, 4, -3, 5, 0, 4]\noutput : list = [-2, 0, 1, 5, 5, 6]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(add_n([-1, 4, -3, 5, 0, 4],1),4),-4),39))",
    "io_inp": [
      -1,
      4,
      -3,
      5,
      0,
      4
    ],
    "io_out": [
      -2,
      0,
      1,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(add_n(input,1),4),-4),39))"
  },
  {
    "input": "input : list = [5, 2, -3, 3]\noutput : list = [24, -16, -24, -40]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sort_asc([5, 2, -3, 3]),2),-4)))",
    "io_inp": [
      5,
      2,
      -3,
      3
    ],
    "io_out": [
      24,
      -16,
      -24,
      -40
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(sort_asc(input),2),-4)))"
  },
  {
    "input": "input : list = [4, -4, -3, -4, 0, 5]\noutput : list = [-13, -13, -12, -9, -5, -4]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(reverse([4, -4, -3, -4, 0, 5]),-4),5)))",
    "io_inp": [
      4,
      -4,
      -3,
      -4,
      0,
      5
    ],
    "io_out": [
      -13,
      -13,
      -12,
      -9,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(add_n(reverse(input),-4),5)))"
  },
  {
    "input": "input : list = [1, 1, 2, 1]\noutput : list = [5, 5, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n([1, 1, 2, 1],-2),-2))",
    "io_inp": [
      1,
      1,
      2,
      1
    ],
    "io_out": [
      5,
      5,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(input,-2),-2))"
  },
  {
    "input": "input : list = [-5, -4, -1, 2]\noutput : list = [2, 3, 6, 9]",
    "output": "generated_output : list = sub_n(take(take(add_n(sort_asc([-5, -4, -1, 2]),2),23),38),-5)",
    "io_inp": [
      -5,
      -4,
      -1,
      2
    ],
    "io_out": [
      2,
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(take(add_n(sort_asc(input),2),23),38),-5)"
  },
  {
    "input": "input : list = [0, 5, 0, -2]\noutput : list = [-5, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n([0, 5, 0, -2],-1))),26))",
    "io_inp": [
      0,
      5,
      0,
      -2
    ],
    "io_out": [
      -5,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sort_des(mul_n(input,-1))),26))"
  },
  {
    "input": "input : list = [1, -3, 0]\noutput : list = [-3, 0]",
    "output": "generated_output : list = drop([1, -3, 0],1)",
    "io_inp": [
      1,
      -3,
      0
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 4, 3, -1]\noutput : list = [-4, -5, -6, -10]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_des([5, 4, 3, -1])),-4)),-5)",
    "io_inp": [
      5,
      4,
      3,
      -1
    ],
    "io_out": [
      -4,
      -5,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_des(sort_des(input)),-4)),-5)"
  },
  {
    "input": "input : list = [0, -3, 1, -4]\noutput : list = [11]",
    "output": "generated_output : list = drop(add_n(sort_asc(add_n(sort_asc([0, -3, 1, -4]),5)),5),3)",
    "io_inp": [
      0,
      -3,
      1,
      -4
    ],
    "io_out": [
      11
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(add_n(sort_asc(input),5)),5),3)"
  },
  {
    "input": "input : list = [3, 1, -4, 1]\noutput : list = [-3, -8, -3, -1]",
    "output": "generated_output : list = add_n(reverse([3, 1, -4, 1]),-4)",
    "io_inp": [
      3,
      1,
      -4,
      1
    ],
    "io_out": [
      -3,
      -8,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [4, 4, -2, 4, 3, -4]\noutput : list = [-16, -16, -16, -12, 8, 16]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n([4, 4, -2, 4, 3, -4],-4),20)))",
    "io_inp": [
      4,
      4,
      -2,
      4,
      3,
      -4
    ],
    "io_out": [
      -16,
      -16,
      -16,
      -12,
      8,
      16
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(input,-4),20)))"
  },
  {
    "input": "input : list = [3, -3, 1, -5, 3, 2]\noutput : list = [-32, -48, 80, -16, 48, -48]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(mul_n([3, -3, 1, -5, 3, 2],-1),-1)),-4),4)",
    "io_inp": [
      3,
      -3,
      1,
      -5,
      3,
      2
    ],
    "io_out": [
      -32,
      -48,
      80,
      -16,
      48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(mul_n(input,-1),-1)),-4),4)"
  },
  {
    "input": "input : list = [-3, 4, 5]\noutput : list = [-11, -4, -3]",
    "output": "generated_output : list = add_n(sub_n([-3, 4, 5],4),-4)",
    "io_inp": [
      -3,
      4,
      5
    ],
    "io_out": [
      -11,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,4),-4)"
  },
  {
    "input": "input : list = [1, 2, 5, -1, 2]\noutput : list = [-125, -100, -25, -175, -100]",
    "output": "generated_output : list = mul_n(mul_n(add_n(take(add_n([1, 2, 5, -1, 2],-4),20),-2),-5),-5)",
    "io_inp": [
      1,
      2,
      5,
      -1,
      2
    ],
    "io_out": [
      -125,
      -100,
      -25,
      -175,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(take(add_n(input,-4),20),-2),-5),-5)"
  },
  {
    "input": "input : list = [3, -2, 3, -4]\noutput : list = [-16, -12, -2, -2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(take(sub_n([3, -2, 3, -4],4),8))),2)",
    "io_inp": [
      3,
      -2,
      3,
      -4
    ],
    "io_out": [
      -16,
      -12,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(take(sub_n(input,4),8))),2)"
  },
  {
    "input": "input : list = [3, 3, -4, 1, 3, 4]\noutput : list = [1, 1, -6, -1, 1, 2]",
    "output": "generated_output : list = sub_n(reverse(add_n(take(reverse([3, 3, -4, 1, 3, 4]),10),-5)),-3)",
    "io_inp": [
      3,
      3,
      -4,
      1,
      3,
      4
    ],
    "io_out": [
      1,
      1,
      -6,
      -1,
      1,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(take(reverse(input),10),-5)),-3)"
  },
  {
    "input": "input : list = [-4, 3, -2, 4, 5]\noutput : list = [5, 4, -2, 3, -4]",
    "output": "generated_output : list = reverse([-4, 3, -2, 4, 5])",
    "io_inp": [
      -4,
      3,
      -2,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -2,
      3,
      -4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, 0, 2]\noutput : list = [2, -2, 0]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(drop([-3, 4, 0, 2],1)),4)),2)",
    "io_inp": [
      -3,
      4,
      0,
      2
    ],
    "io_out": [
      2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(drop(input,1)),4)),2)"
  },
  {
    "input": "input : list = [-2, 2, -4, 2, -2, 4]\noutput : list = [-4, -2, -2, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([-2, 2, -4, 2, -2, 4])",
    "io_inp": [
      -2,
      2,
      -4,
      2,
      -2,
      4
    ],
    "io_out": [
      -4,
      -2,
      -2,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, 5, 3, 0, 0, -4]\noutput : list = [11, 9, 6, 6, 2]",
    "output": "generated_output : list = sort_des(add_n(sub_n(drop(add_n([5, 5, 3, 0, 0, -4],1),1),-4),1))",
    "io_inp": [
      5,
      5,
      3,
      0,
      0,
      -4
    ],
    "io_out": [
      11,
      9,
      6,
      6,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(drop(add_n(input,1),1),-4),1))"
  },
  {
    "input": "input : list = [2, -3, 5, 0, -5, 2]\noutput : list = [0, 2, 5, 7, 7, 10]",
    "output": "generated_output : list = take(sort_asc(sort_asc(take(add_n([2, -3, 5, 0, -5, 2],5),25))),27)",
    "io_inp": [
      2,
      -3,
      5,
      0,
      -5,
      2
    ],
    "io_out": [
      0,
      2,
      5,
      7,
      7,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(take(add_n(input,5),25))),27)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [0, -3, -5]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_asc([-3, 0, -5])))))",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      0,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(sort_asc(input)))))"
  },
  {
    "input": "input : list = [2, -3, 4, -2, 0, -2]\noutput : list = [2, 0, -2, -4, -4, -5]",
    "output": "generated_output : list = add_n(sort_des([2, -3, 4, -2, 0, -2]),-2)",
    "io_inp": [
      2,
      -3,
      4,
      -2,
      0,
      -2
    ],
    "io_out": [
      2,
      0,
      -2,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [1, -6]",
    "output": "generated_output : list = sort_des(sort_des(take(sub_n([2, -5],1),12)))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sub_n(input,1),12)))"
  },
  {
    "input": "input : list = [2, 2, 0, 4]\noutput : list = [0, 2, 2, 4]",
    "output": "generated_output : list = sort_asc([2, 2, 0, 4])",
    "io_inp": [
      2,
      2,
      0,
      4
    ],
    "io_out": [
      0,
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 0, -4, 3, 4, 3]\noutput : list = [-8, -5, -4, -1, -1, 0]",
    "output": "generated_output : list = sub_n(reverse(sort_des(sort_asc([-1, 0, -4, 3, 4, 3]))),4)",
    "io_inp": [
      -1,
      0,
      -4,
      3,
      4,
      3
    ],
    "io_out": [
      -8,
      -5,
      -4,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(sort_asc(input))),4)"
  },
  {
    "input": "input : list = [-1, -1, 3, -3, 2, 4]\noutput : list = [1, 0, -1, -4, -4, -6]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(sort_des([-1, -1, 3, -3, 2, 4])),3)),11)",
    "io_inp": [
      -1,
      -1,
      3,
      -3,
      2,
      4
    ],
    "io_out": [
      1,
      0,
      -1,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(sort_des(input)),3)),11)"
  },
  {
    "input": "input : list = [2, 2, 0, 5]\noutput : list = [5, 2, 2, 0]",
    "output": "generated_output : list = take(reverse(take(reverse(sort_des([2, 2, 0, 5])),26)),20)",
    "io_inp": [
      2,
      2,
      0,
      5
    ],
    "io_out": [
      5,
      2,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(sort_des(input)),26)),20)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [0, -10]",
    "output": "generated_output : list = mul_n([0, 5],-2)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [1, 4]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_asc([2, -1]),-5)),-5),2)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sub_n(sort_asc(input),-5)),-5),2)"
  },
  {
    "input": "input : list = [3, 3, 3, 4, -2, 1]\noutput : list = [9, 18, 0, 3, 3]",
    "output": "generated_output : list = reverse(drop(take(mul_n(sub_n([3, 3, 3, 4, -2, 1],4),-3),18),1))",
    "io_inp": [
      3,
      3,
      3,
      4,
      -2,
      1
    ],
    "io_out": [
      9,
      18,
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(drop(take(mul_n(sub_n(input,4),-3),18),1))"
  },
  {
    "input": "input : list = [5, 3, 1, -4, -2, -1]\noutput : list = [10, 6, -2, 18, 26, 34]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sub_n([5, 3, 1, -4, -2, -1],-4),4),2))",
    "io_inp": [
      5,
      3,
      1,
      -4,
      -2,
      -1
    ],
    "io_out": [
      10,
      6,
      -2,
      18,
      26,
      34
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sub_n(input,-4),4),2))"
  },
  {
    "input": "input : list = [0, -2, 1, 5]\noutput : list = [1, 5]",
    "output": "generated_output : list = drop([0, -2, 1, 5],2)",
    "io_inp": [
      0,
      -2,
      1,
      5
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [-20, 20, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([-4, 4, 4],5)))",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      -20,
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,5)))"
  },
  {
    "input": "input : list = [-5, 1, 1]\noutput : list = [-6, 0, 0]",
    "output": "generated_output : list = add_n([-5, 1, 1],-1)",
    "io_inp": [
      -5,
      1,
      1
    ],
    "io_out": [
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [1, -5, -5, 5, -1, -1]\noutput : list = [5, -1, -1, -5, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(take(drop([1, -5, -5, 5, -1, -1],1),10))))",
    "io_inp": [
      1,
      -5,
      -5,
      5,
      -1,
      -1
    ],
    "io_out": [
      5,
      -1,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(take(drop(input,1),10))))"
  },
  {
    "input": "input : list = [3, -4, -3, 0]\noutput : list = [6, -1, 0, 3]",
    "output": "generated_output : list = take(take(reverse(reverse(add_n([3, -4, -3, 0],3))),39),27)",
    "io_inp": [
      3,
      -4,
      -3,
      0
    ],
    "io_out": [
      6,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(add_n(input,3))),39),27)"
  },
  {
    "input": "input : list = [1, 2, 1, 5]\noutput : list = [-25, -10, -5, -5]",
    "output": "generated_output : list = mul_n(sort_des([1, 2, 1, 5]),-5)",
    "io_inp": [
      1,
      2,
      1,
      5
    ],
    "io_out": [
      -25,
      -10,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [3, 0, 0]",
    "output": "generated_output : list = sort_des(reverse(take(reverse(add_n([-2, -5, -5],5)),17)))",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      3,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(reverse(add_n(input,5)),17)))"
  },
  {
    "input": "input : list = [-1, 5, 0, -1, 5, -4]\noutput : list = [-4, 2, -3, -4, 2, -7]",
    "output": "generated_output : list = sub_n(add_n([-1, 5, 0, -1, 5, -4],-1),2)",
    "io_inp": [
      -1,
      5,
      0,
      -1,
      5,
      -4
    ],
    "io_out": [
      -4,
      2,
      -3,
      -4,
      2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-1),2)"
  },
  {
    "input": "input : list = [5, -4, -4, 5]\noutput : list = [5, -4, -4]",
    "output": "generated_output : list = take(mul_n(reverse([5, -4, -4, 5]),1),3)",
    "io_inp": [
      5,
      -4,
      -4,
      5
    ],
    "io_out": [
      5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(input),1),3)"
  },
  {
    "input": "input : list = [-4, 5, -1, 3]\noutput : list = [5, 3, -1, -4]",
    "output": "generated_output : list = sort_des([-4, 5, -1, 3])",
    "io_inp": [
      -4,
      5,
      -1,
      3
    ],
    "io_out": [
      5,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 0, 2, 1, 5, -5]\noutput : list = [27]",
    "output": "generated_output : list = sort_des(drop(sub_n(mul_n([1, 0, 2, 1, 5, -5],-5),-2),5))",
    "io_inp": [
      1,
      0,
      2,
      1,
      5,
      -5
    ],
    "io_out": [
      27
    ],
    "output_masked": "generated_output : list = sort_des(drop(sub_n(mul_n(input,-5),-2),5))"
  },
  {
    "input": "input : list = [-4, 2, -4, -1, 3, 1]\noutput : list = [3, 2, 1, -1, -4, -4]",
    "output": "generated_output : list = sort_des(add_n(reverse(take(sub_n([-4, 2, -4, -1, 3, 1],-3),18)),-3))",
    "io_inp": [
      -4,
      2,
      -4,
      -1,
      3,
      1
    ],
    "io_out": [
      3,
      2,
      1,
      -1,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(take(sub_n(input,-3),18)),-3))"
  },
  {
    "input": "input : list = [-4, -2, 1, -1]\noutput : list = [-3, -5]",
    "output": "generated_output : list = mul_n(sub_n(sort_asc(take(drop([-4, -2, 1, -1],2),9)),-4),-1)",
    "io_inp": [
      -4,
      -2,
      1,
      -1
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_asc(take(drop(input,2),9)),-4),-1)"
  },
  {
    "input": "input : list = [1, 3, -2, 5]\noutput : list = [-16, 8, 24, 40]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sort_des([1, 3, -2, 5])),2),4)",
    "io_inp": [
      1,
      3,
      -2,
      5
    ],
    "io_out": [
      -16,
      8,
      24,
      40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sort_des(input)),2),4)"
  },
  {
    "input": "input : list = [-1, 5, -2, -2, 5]\noutput : list = [-4, -4, -3, 3, 3]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(sub_n(reverse([-1, 5, -2, -2, 5]),1),-2)),-3)",
    "io_inp": [
      -1,
      5,
      -2,
      -2,
      5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      3,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(sub_n(reverse(input),1),-2)),-3)"
  },
  {
    "input": "input : list = [5, 0, -2, 0, 4, -1]\noutput : list = [70, 60, 50, 50, 10, 0]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_asc([5, 0, -2, 0, 4, -1]),5),-5),2)",
    "io_inp": [
      5,
      0,
      -2,
      0,
      4,
      -1
    ],
    "io_out": [
      70,
      60,
      50,
      50,
      10,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_asc(input),5),-5),2)"
  },
  {
    "input": "input : list = [2, 2, 1, -4, -5, 5]\noutput : list = [17, 13, -7, -11, -11, -23]",
    "output": "generated_output : list = add_n(mul_n(sort_asc([2, 2, 1, -4, -5, 5]),-4),-3)",
    "io_inp": [
      2,
      2,
      1,
      -4,
      -5,
      5
    ],
    "io_out": [
      17,
      13,
      -7,
      -11,
      -11,
      -23
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(input),-4),-3)"
  },
  {
    "input": "input : list = [0, -3, -4, 5, 0, 1]\noutput : list = [1, -3, -4, -4, -7, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_des([0, -3, -4, 5, 0, 1]),-4))",
    "io_inp": [
      0,
      -3,
      -4,
      5,
      0,
      1
    ],
    "io_out": [
      1,
      -3,
      -4,
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [4, -5, 4]\noutput : list = [-10, 8, -10]",
    "output": "generated_output : list = mul_n(take(reverse(take(add_n([4, -5, 4],1),3)),21),-2)",
    "io_inp": [
      4,
      -5,
      4
    ],
    "io_out": [
      -10,
      8,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(take(add_n(input,1),3)),21),-2)"
  },
  {
    "input": "input : list = [5, 1, -4]\noutput : list = [3, 8, 12]",
    "output": "generated_output : list = sort_asc(sub_n(take(reverse(sub_n([5, 1, -4],-2)),14),-5))",
    "io_inp": [
      5,
      1,
      -4
    ],
    "io_out": [
      3,
      8,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(take(reverse(sub_n(input,-2)),14),-5))"
  },
  {
    "input": "input : list = [3, 2, 5, 5, 0]\noutput : list = [-16, -12, -24]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(take([3, 2, 5, 5, 0],3),1),-4)))",
    "io_inp": [
      3,
      2,
      5,
      5,
      0
    ],
    "io_out": [
      -16,
      -12,
      -24
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(take(input,3),1),-4)))"
  },
  {
    "input": "input : list = [-5, 1, -5, 2, 5]\noutput : list = [-13, -13, -7, -6, -3]",
    "output": "generated_output : list = add_n(reverse(sort_des(take(sub_n([-5, 1, -5, 2, 5],3),16))),-5)",
    "io_inp": [
      -5,
      1,
      -5,
      2,
      5
    ],
    "io_out": [
      -13,
      -13,
      -7,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(take(sub_n(input,3),16))),-5)"
  },
  {
    "input": "input : list = [-3, 5, -2]\noutput : list = [6, -1, -2]",
    "output": "generated_output : list = sub_n(sort_des(take(add_n(sort_asc([-3, 5, -2]),2),28)),1)",
    "io_inp": [
      -3,
      5,
      -2
    ],
    "io_out": [
      6,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(take(add_n(sort_asc(input),2),28)),1)"
  },
  {
    "input": "input : list = [-3, 2, -2, -3, -1]\noutput : list = [17]",
    "output": "generated_output : list = add_n(mul_n(take(take([-3, 2, -2, -3, -1],1),18),-5),2)",
    "io_inp": [
      -3,
      2,
      -2,
      -3,
      -1
    ],
    "io_out": [
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(take(input,1),18),-5),2)"
  },
  {
    "input": "input : list = [3, 0, 0, 5, -1, 1]\noutput : list = [-5, 0, 0, 5, 15, 25]",
    "output": "generated_output : list = reverse(take(sort_des(mul_n(sort_des([3, 0, 0, 5, -1, 1]),5)),26))",
    "io_inp": [
      3,
      0,
      0,
      5,
      -1,
      1
    ],
    "io_out": [
      -5,
      0,
      0,
      5,
      15,
      25
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(mul_n(sort_des(input),5)),26))"
  },
  {
    "input": "input : list = [-4, -4, -4, -2, -5, 5]\noutput : list = [16, 16, 16, 8, 20, -20]",
    "output": "generated_output : list = mul_n([-4, -4, -4, -2, -5, 5],-4)",
    "io_inp": [
      -4,
      -4,
      -4,
      -2,
      -5,
      5
    ],
    "io_out": [
      16,
      16,
      16,
      8,
      20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-4, 3, 5]\noutput : list = [-84, 56, 96]",
    "output": "generated_output : list = take(mul_n(take(sub_n(mul_n([-4, 3, 5],5),1),23),4),16)",
    "io_inp": [
      -4,
      3,
      5
    ],
    "io_out": [
      -84,
      56,
      96
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sub_n(mul_n(input,5),1),23),4),16)"
  },
  {
    "input": "input : list = [-4, -1, 4, 0, 4]\noutput : list = [-64, -40, -32, 0, 0]",
    "output": "generated_output : list = take(sort_asc(mul_n(mul_n(add_n([-4, -1, 4, 0, 4],-4),2),4)),31)",
    "io_inp": [
      -4,
      -1,
      4,
      0,
      4
    ],
    "io_out": [
      -64,
      -40,
      -32,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(mul_n(add_n(input,-4),2),4)),31)"
  },
  {
    "input": "input : list = [0, -4, 5, 2, -2]\noutput : list = [-5, -3, -1, 1, 4]",
    "output": "generated_output : list = sort_asc(add_n([0, -4, 5, 2, -2],-1))",
    "io_inp": [
      0,
      -4,
      5,
      2,
      -2
    ],
    "io_out": [
      -5,
      -3,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-1))"
  },
  {
    "input": "input : list = [-1, 5, 5]\noutput : list = [-6, 0, 0]",
    "output": "generated_output : list = add_n([-1, 5, 5],-5)",
    "io_inp": [
      -1,
      5,
      5
    ],
    "io_out": [
      -6,
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-5, -5, 2, 3, 1]\noutput : list = [-3]",
    "output": "generated_output : list = take(take(sort_des(add_n(take([-5, -5, 2, 3, 1],1),2)),8),32)",
    "io_inp": [
      -5,
      -5,
      2,
      3,
      1
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(take(input,1),2)),8),32)"
  },
  {
    "input": "input : list = [1, 4, 2]\noutput : list = [-4, -1, -3]",
    "output": "generated_output : list = take(sub_n([1, 4, 2],5),4)",
    "io_inp": [
      1,
      4,
      2
    ],
    "io_out": [
      -4,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(input,5),4)"
  },
  {
    "input": "input : list = [1, -5, -1]\noutput : list = [3, -1, -3]",
    "output": "generated_output : list = add_n(sub_n(sort_des(mul_n(reverse([1, -5, -1]),-1)),-1),-3)",
    "io_inp": [
      1,
      -5,
      -1
    ],
    "io_out": [
      3,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(mul_n(reverse(input),-1)),-1),-3)"
  },
  {
    "input": "input : list = [-1, 4, 1]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(take([-1, 4, 1],1),3)),4)",
    "io_inp": [
      -1,
      4,
      1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(take(input,1),3)),4)"
  },
  {
    "input": "input : list = [2, -2, 3]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(drop([2, -2, 3],1)))),20)",
    "io_inp": [
      2,
      -2,
      3
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(drop(input,1)))),20)"
  },
  {
    "input": "input : list = [0, 5, 5]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 5, 5],1)",
    "io_inp": [
      0,
      5,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-2, -1, -3, -2, -2]\noutput : list = [8, 9, 7, 8, 8]",
    "output": "generated_output : list = sub_n(add_n(take(sub_n([-2, -1, -3, -2, -2],-1),19),5),-4)",
    "io_inp": [
      -2,
      -1,
      -3,
      -2,
      -2
    ],
    "io_out": [
      8,
      9,
      7,
      8,
      8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sub_n(input,-1),19),5),-4)"
  },
  {
    "input": "input : list = [0, 1, -2, -4, 1, 5]\noutput : list = [-2, -10, -20, -16, -10, -12]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n([0, 1, -2, -4, 1, 5],-5),2)),4),-2)",
    "io_inp": [
      0,
      1,
      -2,
      -4,
      1,
      5
    ],
    "io_out": [
      -2,
      -10,
      -20,
      -16,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n(input,-5),2)),4),-2)"
  },
  {
    "input": "input : list = [4, 0, 1, 2, 0]\noutput : list = [4, 6, 8]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(take(drop([4, 0, 1, 2, 0],2),5)),4),-2)",
    "io_inp": [
      4,
      0,
      1,
      2,
      0
    ],
    "io_out": [
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(take(drop(input,2),5)),4),-2)"
  },
  {
    "input": "input : list = [1, 2, -4, -2]\noutput : list = [-2, -1, -7, -5]",
    "output": "generated_output : list = sub_n([1, 2, -4, -2],3)",
    "io_inp": [
      1,
      2,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -1,
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [4, 2, 1, -4, 3]\noutput : list = [-4, 1, 2, 3, 4]",
    "output": "generated_output : list = sort_asc([4, 2, 1, -4, 3])",
    "io_inp": [
      4,
      2,
      1,
      -4,
      3
    ],
    "io_out": [
      -4,
      1,
      2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2, 1]\noutput : list = [7, 6, 3]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(sort_asc([-3, -2, 1]),15),5),-1),-1)",
    "io_inp": [
      -3,
      -2,
      1
    ],
    "io_out": [
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(sort_asc(input),15),5),-1),-1)"
  },
  {
    "input": "input : list = [5, 5, -4, 2, 2]\noutput : list = [54, 54, 9, 39, 39]",
    "output": "generated_output : list = add_n(add_n(mul_n(take(sub_n([5, 5, -4, 2, 2],-5),13),5),2),2)",
    "io_inp": [
      5,
      5,
      -4,
      2,
      2
    ],
    "io_out": [
      54,
      54,
      9,
      39,
      39
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(take(sub_n(input,-5),13),5),2),2)"
  },
  {
    "input": "input : list = [-1, -2, 1, 3, -4, -5]\noutput : list = [-5, -4, 3, 1, -2, -1]",
    "output": "generated_output : list = reverse([-1, -2, 1, 3, -4, -5])",
    "io_inp": [
      -1,
      -2,
      1,
      3,
      -4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      3,
      1,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [18, 13]",
    "output": "generated_output : list = add_n(mul_n([3, 2],5),3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      18,
      13
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,5),3)"
  },
  {
    "input": "input : list = [-2, 0, 5, 5, 1]\noutput : list = [-3, -1, 4]",
    "output": "generated_output : list = sort_asc(take(sort_des(sub_n(take([-2, 0, 5, 5, 1],3),1)),7))",
    "io_inp": [
      -2,
      0,
      5,
      5,
      1
    ],
    "io_out": [
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(sub_n(take(input,3),1)),7))"
  },
  {
    "input": "input : list = [-3, 2, 4, -4]\noutput : list = [4, -4]",
    "output": "generated_output : list = drop([-3, 2, 4, -4],2)",
    "io_inp": [
      -3,
      2,
      4,
      -4
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [4, -1, -5, 5, 4, 0]\noutput : list = [0, -16, -20, 20, 4, -16]",
    "output": "generated_output : list = take(reverse(reverse(reverse(mul_n([4, -1, -5, 5, 4, 0],-4)))),15)",
    "io_inp": [
      4,
      -1,
      -5,
      5,
      4,
      0
    ],
    "io_out": [
      0,
      -16,
      -20,
      20,
      4,
      -16
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(reverse(mul_n(input,-4)))),15)"
  },
  {
    "input": "input : list = [-5, 4, 0, -4, 3, -1]\noutput : list = [-1, 0, 3, 4, 7, 8]",
    "output": "generated_output : list = sub_n(reverse(reverse(reverse(sort_des([-5, 4, 0, -4, 3, -1])))),-4)",
    "io_inp": [
      -5,
      4,
      0,
      -4,
      3,
      -1
    ],
    "io_out": [
      -1,
      0,
      3,
      4,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(reverse(sort_des(input)))),-4)"
  },
  {
    "input": "input : list = [1, -4, 4, -5]\noutput : list = [4]",
    "output": "generated_output : list = add_n(sort_asc(sort_asc(take([1, -4, 4, -5],1))),3)",
    "io_inp": [
      1,
      -4,
      4,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sort_asc(take(input,1))),3)"
  },
  {
    "input": "input : list = [3, 5, -5, 3, 4]\noutput : list = [3, 5, -5]",
    "output": "generated_output : list = take([3, 5, -5, 3, 4],3)",
    "io_inp": [
      3,
      5,
      -5,
      3,
      4
    ],
    "io_out": [
      3,
      5,
      -5
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, -2, 1]\noutput : list = [-1]",
    "output": "generated_output : list = add_n(add_n(sub_n(add_n(take([-2, -2, 1],1),3),-5),-3),-4)",
    "io_inp": [
      -2,
      -2,
      1
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(add_n(take(input,1),3),-5),-3),-4)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [4, -3]",
    "output": "generated_output : list = take(reverse([-3, 4]),5)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),5)"
  },
  {
    "input": "input : list = [-4, 3, -1, 1, 4]\noutput : list = [3, 10, 6, 8]",
    "output": "generated_output : list = add_n(take(sub_n([-4, 3, -1, 1, 4],-4),4),3)",
    "io_inp": [
      -4,
      3,
      -1,
      1,
      4
    ],
    "io_out": [
      3,
      10,
      6,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,-4),4),3)"
  },
  {
    "input": "input : list = [-3, -2, -1, -5]\noutput : list = [0, -1, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(take(add_n(reverse([-3, -2, -1, -5]),1),28)))",
    "io_inp": [
      -3,
      -2,
      -1,
      -5
    ],
    "io_out": [
      0,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(add_n(reverse(input),1),28)))"
  },
  {
    "input": "input : list = [1, 1, -1, 5]\noutput : list = [8, 2, 4, 4]",
    "output": "generated_output : list = sub_n(mul_n(reverse([1, 1, -1, 5]),1),-3)",
    "io_inp": [
      1,
      1,
      -1,
      5
    ],
    "io_out": [
      8,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(input),1),-3)"
  },
  {
    "input": "input : list = [0, -4, 5, 1, -4, 5]\noutput : list = [7, 7, 3, 2, -2, -2]",
    "output": "generated_output : list = sort_des(add_n([0, -4, 5, 1, -4, 5],2))",
    "io_inp": [
      0,
      -4,
      5,
      1,
      -4,
      5
    ],
    "io_out": [
      7,
      7,
      3,
      2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [0, 1, -2, 3, 3]\noutput : list = [0, 0, -5, -2, -3]",
    "output": "generated_output : list = sub_n(take(reverse([0, 1, -2, 3, 3]),22),3)",
    "io_inp": [
      0,
      1,
      -2,
      3,
      3
    ],
    "io_out": [
      0,
      0,
      -5,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(reverse(input),22),3)"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [-25, 5, 15]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(reverse([-5, 1, 3]))),5))",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      -25,
      5,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_asc(reverse(input))),5))"
  },
  {
    "input": "input : list = [4, -2, 5]\noutput : list = [-2, 4, 5]",
    "output": "generated_output : list = sort_asc(take(take(reverse([4, -2, 5]),16),25))",
    "io_inp": [
      4,
      -2,
      5
    ],
    "io_out": [
      -2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(reverse(input),16),25))"
  },
  {
    "input": "input : list = [-4, -3, -1, -3, 0]\noutput : list = [-12, -9, -3, -9, 0]",
    "output": "generated_output : list = mul_n([-4, -3, -1, -3, 0],3)",
    "io_inp": [
      -4,
      -3,
      -1,
      -3,
      0
    ],
    "io_out": [
      -12,
      -9,
      -3,
      -9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [-20, 15]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(sort_des([-4, 3]),5),3)),32)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      -20,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(sort_des(input),5),3)),32)"
  },
  {
    "input": "input : list = [-1, 2, 2, -2]\noutput : list = [-6, -3, 6, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc([-1, 2, 2, -2])),3)",
    "io_inp": [
      -1,
      2,
      2,
      -2
    ],
    "io_out": [
      -6,
      -3,
      6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [1, 1, 1, 3, 5, -2]\noutput : list = [10, -5, -5, -5, -15, -25]",
    "output": "generated_output : list = take(mul_n(take(sort_asc(mul_n([1, 1, 1, 3, 5, -2],1)),6),-5),34)",
    "io_inp": [
      1,
      1,
      1,
      3,
      5,
      -2
    ],
    "io_out": [
      10,
      -5,
      -5,
      -5,
      -15,
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_asc(mul_n(input,1)),6),-5),34)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [0, 5]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(reverse([-1, 4]),14),9)),-1)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(reverse(input),14),9)),-1)"
  },
  {
    "input": "input : list = [-4, 1, -3]\noutput : list = [0, -4]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(drop([-4, 1, -3],1)))),1)",
    "io_inp": [
      -4,
      1,
      -3
    ],
    "io_out": [
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(sort_asc(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [5, -2, 2, 0, 3, 0]\noutput : list = [1, -1, -2, -4, -4, -6]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_asc([5, -2, 2, 0, 3, 0])),5)),1)",
    "io_inp": [
      5,
      -2,
      2,
      0,
      3,
      0
    ],
    "io_out": [
      1,
      -1,
      -2,
      -4,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(sort_asc(input)),5)),1)"
  },
  {
    "input": "input : list = [1, -4, -1]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n([1, -4, -1],4),-1))),2)",
    "io_inp": [
      1,
      -4,
      -1
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(sub_n(input,4),-1))),2)"
  },
  {
    "input": "input : list = [1, 0, -2, 1, 1]\noutput : list = [0, 0, 0, -1, -3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc([1, 0, -2, 1, 1]))),-1)",
    "io_inp": [
      1,
      0,
      -2,
      1,
      1
    ],
    "io_out": [
      0,
      0,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(input))),-1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [5, 12]",
    "output": "generated_output : list = reverse(add_n(sub_n([4, -3],-5),3))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      5,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(input,-5),3))"
  },
  {
    "input": "input : list = [2, 1, -1, -4, -2, -3]\noutput : list = [-16, -12, -8, -4, 4, 8]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse([2, 1, -1, -4, -2, -3]),4)))",
    "io_inp": [
      2,
      1,
      -1,
      -4,
      -2,
      -3
    ],
    "io_out": [
      -16,
      -12,
      -8,
      -4,
      4,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [3, 0, -3, 2, -1, -1]\noutput : list = [-8, -5, -2]",
    "output": "generated_output : list = take(take(sort_asc(add_n(take([3, 0, -3, 2, -1, -1],3),-5)),40),12)",
    "io_inp": [
      3,
      0,
      -3,
      2,
      -1,
      -1
    ],
    "io_out": [
      -8,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(take(input,3),-5)),40),12)"
  },
  {
    "input": "input : list = [1, -5, -2, 1]\noutput : list = [1, -5]",
    "output": "generated_output : list = take([1, -5, -2, 1],2)",
    "io_inp": [
      1,
      -5,
      -2,
      1
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [2, -1, 0, -4, 3]\noutput : list = [15, 14, 12, 11, 8]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sub_n([2, -1, 0, -4, 3],-3)),-5)),4)",
    "io_inp": [
      2,
      -1,
      0,
      -4,
      3
    ],
    "io_out": [
      15,
      14,
      12,
      11,
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sub_n(input,-3)),-5)),4)"
  },
  {
    "input": "input : list = [5, 3, 1, -2, -3]\noutput : list = [-116, -76, -36, 24, 44]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(mul_n([5, 3, 1, -2, -3],5),-5),25),-4),4)",
    "io_inp": [
      5,
      3,
      1,
      -2,
      -3
    ],
    "io_out": [
      -116,
      -76,
      -36,
      24,
      44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(mul_n(input,5),-5),25),-4),4)"
  },
  {
    "input": "input : list = [-3, -2, 2, -4, 3, 1]\noutput : list = [-3, -5, 2, -4, 0, 1]",
    "output": "generated_output : list = add_n(sub_n(mul_n(take(reverse([-3, -2, 2, -4, 3, 1]),12),-1),-3),-5)",
    "io_inp": [
      -3,
      -2,
      2,
      -4,
      3,
      1
    ],
    "io_out": [
      -3,
      -5,
      2,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(take(reverse(input),12),-1),-3),-5)"
  },
  {
    "input": "input : list = [2, -4, 1]\noutput : list = [-1, 4, 5]",
    "output": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc([2, -4, 1]))),1),2)",
    "io_inp": [
      2,
      -4,
      1
    ],
    "io_out": [
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(reverse(sort_asc(input))),1),2)"
  },
  {
    "input": "input : list = [4, -3, 3, -4]\noutput : list = [-6, -5, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_des(take(take(sub_n([4, -3, 3, -4],2),15),13)))",
    "io_inp": [
      4,
      -3,
      3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(take(sub_n(input,2),15),13)))"
  },
  {
    "input": "input : list = [-1, -1, -3, -1]\noutput : list = [-9, -3, -3, -3]",
    "output": "generated_output : list = sort_asc(mul_n([-1, -1, -3, -1],3))",
    "io_inp": [
      -1,
      -1,
      -3,
      -1
    ],
    "io_out": [
      -9,
      -3,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,3))"
  },
  {
    "input": "input : list = [-1, -4, -2, -5, -4]\noutput : list = [6, 8, 8, 12, 14]",
    "output": "generated_output : list = sort_asc(take(mul_n(add_n(add_n([-1, -4, -2, -5, -4],3),5),2),7))",
    "io_inp": [
      -1,
      -4,
      -2,
      -5,
      -4
    ],
    "io_out": [
      6,
      8,
      8,
      12,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(add_n(add_n(input,3),5),2),7))"
  },
  {
    "input": "input : list = [-1, -1, 4, 2, 1, 3]\noutput : list = [3, 3, -12, -6, -3, -9]",
    "output": "generated_output : list = mul_n([-1, -1, 4, 2, 1, 3],-3)",
    "io_inp": [
      -1,
      -1,
      4,
      2,
      1,
      3
    ],
    "io_out": [
      3,
      3,
      -12,
      -6,
      -3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-2, 5, 2, 5, 1]\noutput : list = [2, 5, -2]",
    "output": "generated_output : list = reverse(take([-2, 5, 2, 5, 1],3))",
    "io_inp": [
      -2,
      5,
      2,
      5,
      1
    ],
    "io_out": [
      2,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-5, -1, 3, -1, 0]\noutput : list = [0, 100, 200]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n([-5, -1, 3, -1, 0],-5),-5),-5),3)",
    "io_inp": [
      -5,
      -1,
      3,
      -1,
      0
    ],
    "io_out": [
      0,
      100,
      200
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(input,-5),-5),-5),3)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(reverse(add_n(reverse(mul_n([-1, -2],-3)),-1)))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(add_n(reverse(mul_n(input,-3)),-1)))"
  },
  {
    "input": "input : list = [-3, -4, -1]\noutput : list = [-3, -6, -5]",
    "output": "generated_output : list = add_n(sub_n(add_n(take(reverse([-3, -4, -1]),16),-5),-1),2)",
    "io_inp": [
      -3,
      -4,
      -1
    ],
    "io_out": [
      -3,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(take(reverse(input),16),-5),-1),2)"
  },
  {
    "input": "input : list = [-5, -5, -3, -5, 5]\noutput : list = [0, 0, 2, 0, 10]",
    "output": "generated_output : list = sub_n([-5, -5, -3, -5, 5],-5)",
    "io_inp": [
      -5,
      -5,
      -3,
      -5,
      5
    ],
    "io_out": [
      0,
      0,
      2,
      0,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [-4]",
    "output": "generated_output : list = take([-4, 5, 1],1)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-8, 0]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sort_des(reverse([-5, 3])))),3)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -8,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sort_des(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-3, -5, -2]\noutput : list = [13, 28, 18]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n([-3, -5, -2],-5),-3),11))",
    "io_inp": [
      -3,
      -5,
      -2
    ],
    "io_out": [
      13,
      28,
      18
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(input,-5),-3),11))"
  },
  {
    "input": "input : list = [4, -5, -5]\noutput : list = [0, 0, -27]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse([4, -5, -5]))),5),-3)",
    "io_inp": [
      4,
      -5,
      -5
    ],
    "io_out": [
      0,
      0,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sort_des(reverse(input))),5),-3)"
  },
  {
    "input": "input : list = [-4, 4, 1, 0]\noutput : list = [4, 1, 0, -4]",
    "output": "generated_output : list = take(sort_des(reverse(take(sort_des([-4, 4, 1, 0]),8))),8)",
    "io_inp": [
      -4,
      4,
      1,
      0
    ],
    "io_out": [
      4,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(take(sort_des(input),8))),8)"
  },
  {
    "input": "input : list = [-4, 1, -3]\noutput : list = [-21, 3, -27]",
    "output": "generated_output : list = mul_n(add_n(sub_n(reverse(mul_n([-4, 1, -3],-2)),3),4),-3)",
    "io_inp": [
      -4,
      1,
      -3
    ],
    "io_out": [
      -21,
      3,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sub_n(reverse(mul_n(input,-2)),3),4),-3)"
  },
  {
    "input": "input : list = [-5, 4, -3, 3, 3, -3]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(reverse(take(drop(sort_des([-5, 4, -3, 3, 3, -3]),5),6)),-3)",
    "io_inp": [
      -5,
      4,
      -3,
      3,
      3,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(drop(sort_des(input),5),6)),-3)"
  },
  {
    "input": "input : list = [3, 5, 5, -3, 5, 5]\noutput : list = [5, 5, -3, 5, 5, 3]",
    "output": "generated_output : list = reverse([3, 5, 5, -3, 5, 5])",
    "io_inp": [
      3,
      5,
      5,
      -3,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -3,
      5,
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, 5, -5, 1, 4, 1]\noutput : list = [3, 2, -1, -1, -4, -7]",
    "output": "generated_output : list = take(reverse(sort_asc(take(sub_n([-2, 5, -5, 1, 4, 1],2),17))),45)",
    "io_inp": [
      -2,
      5,
      -5,
      1,
      4,
      1
    ],
    "io_out": [
      3,
      2,
      -1,
      -1,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(take(sub_n(input,2),17))),45)"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [1, 1]",
    "output": "generated_output : list = sub_n(drop([-2, 4, 4],1),3)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),3)"
  },
  {
    "input": "input : list = [-4, 5, 4, 3, -3]\noutput : list = [-21, -17, 7, 11, 15]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(mul_n([-4, 5, 4, 3, -3],4),-5))))",
    "io_inp": [
      -4,
      5,
      4,
      3,
      -3
    ],
    "io_out": [
      -21,
      -17,
      7,
      11,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(add_n(mul_n(input,4),-5))))"
  },
  {
    "input": "input : list = [-1, 2, -1]\noutput : list = [-1, 2, 2]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(reverse([-1, 2, -1]),-1),-3)),2)",
    "io_inp": [
      -1,
      2,
      -1
    ],
    "io_out": [
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(mul_n(reverse(input),-1),-3)),2)"
  },
  {
    "input": "input : list = [-5, -4, 1, 5, 0]\noutput : list = [7, 3, 2, -2, -3]",
    "output": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_des([-5, -4, 1, 5, 0]),-2))),1)",
    "io_inp": [
      -5,
      -4,
      1,
      5,
      0
    ],
    "io_out": [
      7,
      3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(sub_n(sort_des(input),-2))),1)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = sort_asc([4, -5])",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 5, -2]\noutput : list = [0, 10, -4]",
    "output": "generated_output : list = mul_n([0, 5, -2],2)",
    "io_inp": [
      0,
      5,
      -2
    ],
    "io_out": [
      0,
      10,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, 5, 0, -4]\noutput : list = [-68, -4, 76, 76]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(reverse(mul_n([5, 5, 0, -4],-4)),-1),-4))",
    "io_inp": [
      5,
      5,
      0,
      -4
    ],
    "io_out": [
      -68,
      -4,
      76,
      76
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(reverse(mul_n(input,-4)),-1),-4))"
  },
  {
    "input": "input : list = [0, -2, -5, 2, -3, 2]\noutput : list = [3]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(take(mul_n([0, -2, -5, 2, -3, 2],2),1))),-3)",
    "io_inp": [
      0,
      -2,
      -5,
      2,
      -3,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(take(mul_n(input,2),1))),-3)"
  },
  {
    "input": "input : list = [4, -4, -1, 3, 2]\noutput : list = [26, 17, 8, 5, 2]",
    "output": "generated_output : list = sort_des(add_n(mul_n(sub_n([4, -4, -1, 3, 2],3),-3),5))",
    "io_inp": [
      4,
      -4,
      -1,
      3,
      2
    ],
    "io_out": [
      26,
      17,
      8,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(sub_n(input,3),-3),5))"
  },
  {
    "input": "input : list = [1, 4, -4, 0, 4, -5]\noutput : list = [4, 4, 0, -4, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(drop([1, 4, -4, 0, 4, -5],1))),29)",
    "io_inp": [
      1,
      4,
      -4,
      0,
      4,
      -5
    ],
    "io_out": [
      4,
      4,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(drop(input,1))),29)"
  },
  {
    "input": "input : list = [-3, -5, 5, 4, -2, 5]\noutput : list = [20, 20, 16, -8, -12, -20]",
    "output": "generated_output : list = sort_des(mul_n(sort_des([-3, -5, 5, 4, -2, 5]),4))",
    "io_inp": [
      -3,
      -5,
      5,
      4,
      -2,
      5
    ],
    "io_out": [
      20,
      20,
      16,
      -8,
      -12,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [1, -3, -5, 5, -1, 5]\noutput : list = [7, 7, 3, 1, -1, -3]",
    "output": "generated_output : list = sort_des(add_n([1, -3, -5, 5, -1, 5],2))",
    "io_inp": [
      1,
      -3,
      -5,
      5,
      -1,
      5
    ],
    "io_out": [
      7,
      7,
      3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,2))"
  },
  {
    "input": "input : list = [1, -1, -4, -2, -4]\noutput : list = [32, 32, 8, -4, -28]",
    "output": "generated_output : list = sort_des(mul_n(add_n(mul_n(add_n([1, -1, -4, -2, -4],2),-3),2),4))",
    "io_inp": [
      1,
      -1,
      -4,
      -2,
      -4
    ],
    "io_out": [
      32,
      32,
      8,
      -4,
      -28
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(mul_n(add_n(input,2),-3),2),4))"
  },
  {
    "input": "input : list = [0, 4, 2]\noutput : list = [4, 6, 8]",
    "output": "generated_output : list = sort_asc(sort_des(take(sub_n(sub_n([0, 4, 2],-3),-1),24)))",
    "io_inp": [
      0,
      4,
      2
    ],
    "io_out": [
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sub_n(sub_n(input,-3),-1),24)))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [0, 16]",
    "output": "generated_output : list = mul_n([0, -4],-4)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, -5, -3, 0, 1, -5]\noutput : list = [5, -5, -3, 0, 1, -5]",
    "output": "generated_output : list = mul_n([5, -5, -3, 0, 1, -5],1)",
    "io_inp": [
      5,
      -5,
      -3,
      0,
      1,
      -5
    ],
    "io_out": [
      5,
      -5,
      -3,
      0,
      1,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [3, 0, 2, 3, 1, 1]\noutput : list = [-15, 0, -10, -15, -5, -5]",
    "output": "generated_output : list = mul_n([3, 0, 2, 3, 1, 1],-5)",
    "io_inp": [
      3,
      0,
      2,
      3,
      1,
      1
    ],
    "io_out": [
      -15,
      0,
      -10,
      -15,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(drop(sort_des([3, -3, -2]),1))",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(input),1))"
  },
  {
    "input": "input : list = [3, 5, 1, 2]\noutput : list = [4, 8, 12, 20]",
    "output": "generated_output : list = mul_n(sort_asc(take(mul_n(sort_asc([3, 5, 1, 2]),1),7)),4)",
    "io_inp": [
      3,
      5,
      1,
      2
    ],
    "io_out": [
      4,
      8,
      12,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(take(mul_n(sort_asc(input),1),7)),4)"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [15, 15]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(sub_n([-2, -2],-5))),5))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      15,
      15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(sub_n(input,-5))),5))"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [4, -3]",
    "output": "generated_output : list = sub_n([3, -4],-1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [3, 0, 2]\noutput : list = [3, 2, 0]",
    "output": "generated_output : list = sort_des(reverse([3, 0, 2]))",
    "io_inp": [
      3,
      0,
      2
    ],
    "io_out": [
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [5, 2]",
    "output": "generated_output : list = add_n(take(reverse([-1, 2]),5),3)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(input),5),3)"
  },
  {
    "input": "input : list = [3, -1, -4, 4, 3]\noutput : list = [2, 0, 0, -8, -14]",
    "output": "generated_output : list = sort_des(mul_n(reverse(reverse(add_n([3, -1, -4, 4, 3],-3))),2))",
    "io_inp": [
      3,
      -1,
      -4,
      4,
      3
    ],
    "io_out": [
      2,
      0,
      0,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(reverse(add_n(input,-3))),2))"
  },
  {
    "input": "input : list = [4, 1, -3, 3, -4, -4]\noutput : list = [6, 6, 7, 11, 13, 14]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(take(sub_n([4, 1, -3, 3, -4, -4],-4),18),-3),3))",
    "io_inp": [
      4,
      1,
      -3,
      3,
      -4,
      -4
    ],
    "io_out": [
      6,
      6,
      7,
      11,
      13,
      14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(take(sub_n(input,-4),18),-3),3))"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [4, 0]",
    "output": "generated_output : list = sort_des(take(sort_des([4, 0]),12))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(input),12))"
  },
  {
    "input": "input : list = [2, 5, -4, 4, -3, -3]\noutput : list = [5, 4, 2, -3, -3, -4]",
    "output": "generated_output : list = sort_des([2, 5, -4, 4, -3, -3])",
    "io_inp": [
      2,
      5,
      -4,
      4,
      -3,
      -3
    ],
    "io_out": [
      5,
      4,
      2,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 3, 4, -2]\noutput : list = [-2, 4]",
    "output": "generated_output : list = take(reverse(sort_des(drop([1, 3, 4, -2],2))),19)",
    "io_inp": [
      1,
      3,
      4,
      -2
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(drop(input,2))),19)"
  },
  {
    "input": "input : list = [1, -2, 3, 0]\noutput : list = [-4, -7]",
    "output": "generated_output : list = take(sub_n(reverse(reverse(take([1, -2, 3, 0],2))),5),16)",
    "io_inp": [
      1,
      -2,
      3,
      0
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(reverse(take(input,2))),5),16)"
  },
  {
    "input": "input : list = [-1, 4, -4, 5, -5, 2]\noutput : list = [-20, -16, -8, 4, 16, 20]",
    "output": "generated_output : list = reverse(sort_des(mul_n(reverse(reverse([-1, 4, -4, 5, -5, 2])),-4)))",
    "io_inp": [
      -1,
      4,
      -4,
      5,
      -5,
      2
    ],
    "io_out": [
      -20,
      -16,
      -8,
      4,
      16,
      20
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(reverse(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [3, 4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sort_asc(add_n([1, 0],5)),-2),3),-3)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sort_asc(add_n(input,5)),-2),3),-3)"
  },
  {
    "input": "input : list = [-4, 2]\noutput : list = [-3, 3]",
    "output": "generated_output : list = sort_asc(add_n(reverse([-4, 2]),1))",
    "io_inp": [
      -4,
      2
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(input),1))"
  },
  {
    "input": "input : list = [0, 3, 1, -4, -5, -2]\noutput : list = [-32, -20]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(take([0, 3, 1, -4, -5, -2],2)),25),-5),-4)",
    "io_inp": [
      0,
      3,
      1,
      -4,
      -5,
      -2
    ],
    "io_out": [
      -32,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(take(input,2)),25),-5),-4)"
  },
  {
    "input": "input : list = [5, 5, 4, 1]\noutput : list = [7, 7, 6, 3]",
    "output": "generated_output : list = sub_n(take(add_n([5, 5, 4, 1],-2),6),-4)",
    "io_inp": [
      5,
      5,
      4,
      1
    ],
    "io_out": [
      7,
      7,
      6,
      3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(input,-2),6),-4)"
  },
  {
    "input": "input : list = [-2, 0, 1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(take(drop([-2, 0, 1],1),16)),-4))",
    "io_inp": [
      -2,
      0,
      1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(take(drop(input,1),16)),-4))"
  },
  {
    "input": "input : list = [-4, -1, 1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse(take(sort_asc(sort_asc(reverse([-4, -1, 1]))),2))",
    "io_inp": [
      -4,
      -1,
      1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(sort_asc(reverse(input))),2))"
  },
  {
    "input": "input : list = [1, -1]\noutput : list = [-11, -3]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n([1, -1],-4),4),3))",
    "io_inp": [
      1,
      -1
    ],
    "io_out": [
      -11,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(input,-4),4),3))"
  },
  {
    "input": "input : list = [-5, 0, 4, 5, 1]\noutput : list = [5, 4, 1, 0, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sort_asc([-5, 0, 4, 5, 1]),1))))",
    "io_inp": [
      -5,
      0,
      4,
      5,
      1
    ],
    "io_out": [
      5,
      4,
      1,
      0,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(sort_asc(input),1))))"
  },
  {
    "input": "input : list = [2, 3, 4, -5, -2]\noutput : list = [-5, -2]",
    "output": "generated_output : list = drop([2, 3, 4, -5, -2],3)",
    "io_inp": [
      2,
      3,
      4,
      -5,
      -2
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [5, -2, 3]\noutput : list = [-24, -9]",
    "output": "generated_output : list = mul_n(reverse(add_n(drop([5, -2, 3],1),5)),-3)",
    "io_inp": [
      5,
      -2,
      3
    ],
    "io_out": [
      -24,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(drop(input,1),5)),-3)"
  },
  {
    "input": "input : list = [-5, -1, -1]\noutput : list = [-4, 0, 0]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(sort_asc([-5, -1, -1])),1)),1)",
    "io_inp": [
      -5,
      -1,
      -1
    ],
    "io_out": [
      -4,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(sort_asc(sort_asc(input)),1)),1)"
  },
  {
    "input": "input : list = [-5, -4, 1, 0, 4]\noutput : list = [12, 3, 0, -12, -15]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(take(mul_n([-5, -4, 1, 0, 4],-3),7)),-1))",
    "io_inp": [
      -5,
      -4,
      1,
      0,
      4
    ],
    "io_out": [
      12,
      3,
      0,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(take(mul_n(input,-3),7)),-1))"
  },
  {
    "input": "input : list = [-4, 5, -2, -3, 4]\noutput : list = [0, -7, -6]",
    "output": "generated_output : list = add_n(reverse(drop([-4, 5, -2, -3, 4],2)),-4)",
    "io_inp": [
      -4,
      5,
      -2,
      -3,
      4
    ],
    "io_out": [
      0,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,2)),-4)"
  },
  {
    "input": "input : list = [0, 0, 1, -4]\noutput : list = [-29, 11, 11, 21]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(mul_n([0, 0, 1, -4],-2)),-3),-5),4)",
    "io_inp": [
      0,
      0,
      1,
      -4
    ],
    "io_out": [
      -29,
      11,
      11,
      21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(mul_n(input,-2)),-3),-5),4)"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [0, -7]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_asc(reverse([-3, 4])),-3)),-1)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_asc(reverse(input)),-3)),-1)"
  },
  {
    "input": "input : list = [-5, -3, -5, -4]\noutput : list = [10, 9, 8]",
    "output": "generated_output : list = take(add_n(mul_n(drop(sort_asc([-5, -3, -5, -4]),1),-1),5),10)",
    "io_inp": [
      -5,
      -3,
      -5,
      -4
    ],
    "io_out": [
      10,
      9,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(drop(sort_asc(input),1),-1),5),10)"
  },
  {
    "input": "input : list = [-1, 4, 1, 2, 0]\noutput : list = [4, 2, 1, 0, -1]",
    "output": "generated_output : list = sort_des(reverse(add_n(add_n(reverse([-1, 4, 1, 2, 0]),-5),5)))",
    "io_inp": [
      -1,
      4,
      1,
      2,
      0
    ],
    "io_out": [
      4,
      2,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(add_n(reverse(input),-5),5)))"
  },
  {
    "input": "input : list = [-4, 2, 2, 0]\noutput : list = [-5, 1, 1, -1]",
    "output": "generated_output : list = add_n([-4, 2, 2, 0],-1)",
    "io_inp": [
      -4,
      2,
      2,
      0
    ],
    "io_out": [
      -5,
      1,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [-3, -5, 5, 2, -4]\noutput : list = [15, 12, 9, -6, -15]",
    "output": "generated_output : list = take(mul_n(take(reverse(sort_des([-3, -5, 5, 2, -4])),26),-3),22)",
    "io_inp": [
      -3,
      -5,
      5,
      2,
      -4
    ],
    "io_out": [
      15,
      12,
      9,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = take(mul_n(take(reverse(sort_des(input)),26),-3),22)"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-15, 10]",
    "output": "generated_output : list = mul_n(add_n([0, -5],3),-5)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,3),-5)"
  },
  {
    "input": "input : list = [-2, 4, -5]\noutput : list = [-1, 8]",
    "output": "generated_output : list = sort_asc(add_n(take(sort_asc(drop([-2, 4, -5],1)),5),4))",
    "io_inp": [
      -2,
      4,
      -5
    ],
    "io_out": [
      -1,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(sort_asc(drop(input,1)),5),4))"
  },
  {
    "input": "input : list = [5, -5, 1, -1, 2, -1]\noutput : list = [54, 4, 34, 24]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(sub_n([5, -5, 1, -1, 2, -1],-1),-5),5),1),4)",
    "io_inp": [
      5,
      -5,
      1,
      -1,
      2,
      -1
    ],
    "io_out": [
      54,
      4,
      34,
      24
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(sub_n(input,-1),-5),5),1),4)"
  },
  {
    "input": "input : list = [-5, 3, -4, 2]\noutput : list = [-9, -4, 26, 31]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(sub_n([-5, 3, -4, 2],2),-5),3)),-1)",
    "io_inp": [
      -5,
      3,
      -4,
      2
    ],
    "io_out": [
      -9,
      -4,
      26,
      31
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(sub_n(input,2),-5),3)),-1)"
  },
  {
    "input": "input : list = [-3, 4, -5, -4]\noutput : list = [-5, -4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(reverse(drop([-3, 4, -5, -4],2)))))",
    "io_inp": [
      -3,
      4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(reverse(drop(input,2)))))"
  },
  {
    "input": "input : list = [3, -2, 2]\noutput : list = [-14, -8, 16]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(mul_n([3, -2, 2],-3)),2),-4))",
    "io_inp": [
      3,
      -2,
      2
    ],
    "io_out": [
      -14,
      -8,
      16
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(mul_n(input,-3)),2),-4))"
  },
  {
    "input": "input : list = [5, -4, -4, 1]\noutput : list = [4, -5, -5, 0]",
    "output": "generated_output : list = sub_n([5, -4, -4, 1],1)",
    "io_inp": [
      5,
      -4,
      -4,
      1
    ],
    "io_out": [
      4,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 2, -1, 3]\noutput : list = [-1, 2, 3, 5]",
    "output": "generated_output : list = sort_asc([5, 2, -1, 3])",
    "io_inp": [
      5,
      2,
      -1,
      3
    ],
    "io_out": [
      -1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -5, 0, 1, 5]\noutput : list = [3, -7, -2, -1, 3]",
    "output": "generated_output : list = add_n([5, -5, 0, 1, 5],-2)",
    "io_inp": [
      5,
      -5,
      0,
      1,
      5
    ],
    "io_out": [
      3,
      -7,
      -2,
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -3, 0, -5, 3, 1]\noutput : list = [-52, -36, -28, -12, -4, 12]",
    "output": "generated_output : list = mul_n(add_n(mul_n(sort_asc(sort_des([-2, -3, 0, -5, 3, 1])),2),-3),4)",
    "io_inp": [
      -2,
      -3,
      0,
      -5,
      3,
      1
    ],
    "io_out": [
      -52,
      -36,
      -28,
      -12,
      -4,
      12
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(sort_asc(sort_des(input)),2),-3),4)"
  },
  {
    "input": "input : list = [-4, 4, 4]\noutput : list = [-1, 7, 7]",
    "output": "generated_output : list = reverse(reverse(reverse(reverse(sub_n([-4, 4, 4],-3)))))",
    "io_inp": [
      -4,
      4,
      4
    ],
    "io_out": [
      -1,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(reverse(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [5, 0, -2, -4, -3]\noutput : list = [10, 0, -4, -8, -6]",
    "output": "generated_output : list = mul_n([5, 0, -2, -4, -3],2)",
    "io_inp": [
      5,
      0,
      -2,
      -4,
      -3
    ],
    "io_out": [
      10,
      0,
      -4,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [1, -5, 5]\noutput : list = [-9, 11]",
    "output": "generated_output : list = take(sub_n(mul_n(drop([1, -5, 5],1),2),-1),27)",
    "io_inp": [
      1,
      -5,
      5
    ],
    "io_out": [
      -9,
      11
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(drop(input,1),2),-1),27)"
  },
  {
    "input": "input : list = [5, -3, 2, 4, 2, 4]\noutput : list = [32, 24, 32, 24]",
    "output": "generated_output : list = take(reverse(mul_n(add_n(drop([5, -3, 2, 4, 2, 4],2),4),4)),40)",
    "io_inp": [
      5,
      -3,
      2,
      4,
      2,
      4
    ],
    "io_out": [
      32,
      24,
      32,
      24
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(add_n(drop(input,2),4),4)),40)"
  },
  {
    "input": "input : list = [5, -1, 4, -2, 1, 4]\noutput : list = [-9, -8, -3, -2]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n(take([5, -1, 4, -2, 1, 4],4),-5),-1),1))",
    "io_inp": [
      5,
      -1,
      4,
      -2,
      1,
      4
    ],
    "io_out": [
      -9,
      -8,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(take(input,4),-5),-1),1))"
  },
  {
    "input": "input : list = [1, -2, 3, -5]\noutput : list = [-25, -15, 0, 15]",
    "output": "generated_output : list = mul_n(sort_des(take(sub_n(add_n([1, -2, 3, -5],-2),-4),16)),-5)",
    "io_inp": [
      1,
      -2,
      3,
      -5
    ],
    "io_out": [
      -25,
      -15,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(sub_n(add_n(input,-2),-4),16)),-5)"
  },
  {
    "input": "input : list = [1, 5, 3, -3]\noutput : list = [2, 0, -2, -6]",
    "output": "generated_output : list = take(take(sort_des(add_n(sort_asc([1, 5, 3, -3]),-3)),37),12)",
    "io_inp": [
      1,
      5,
      3,
      -3
    ],
    "io_out": [
      2,
      0,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(sort_asc(input),-3)),37),12)"
  },
  {
    "input": "input : list = [-4, -3, 4, 0]\noutput : list = [-3, -2, 5]",
    "output": "generated_output : list = take(sub_n([-4, -3, 4, 0],-1),3)",
    "io_inp": [
      -4,
      -3,
      4,
      0
    ],
    "io_out": [
      -3,
      -2,
      5
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-1),3)"
  },
  {
    "input": "input : list = [-1, 2, -2]\noutput : list = [4]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(take([-1, 2, -2],1),3),1)),5)",
    "io_inp": [
      -1,
      2,
      -2
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(take(input,1),3),1)),5)"
  },
  {
    "input": "input : list = [-3, 2, 2]\noutput : list = [-5, -5, 10]",
    "output": "generated_output : list = sort_asc(take(add_n(mul_n(sort_des([-3, 2, 2]),-3),1),22))",
    "io_inp": [
      -3,
      2,
      2
    ],
    "io_out": [
      -5,
      -5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(mul_n(sort_des(input),-3),1),22))"
  },
  {
    "input": "input : list = [5, -1, 0, 0, 4]\noutput : list = [-7, 11]",
    "output": "generated_output : list = drop(reverse(sub_n(sub_n(mul_n([5, -1, 0, 0, 4],3),3),1)),3)",
    "io_inp": [
      5,
      -1,
      0,
      0,
      4
    ],
    "io_out": [
      -7,
      11
    ],
    "output_masked": "generated_output : list = drop(reverse(sub_n(sub_n(mul_n(input,3),3),1)),3)"
  },
  {
    "input": "input : list = [-5, -1, 0, 2, 0, 1]\noutput : list = [-2, 2, 3, 3, 4, 5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_des([-5, -1, 0, 2, 0, 1]),1))),-3)",
    "io_inp": [
      -5,
      -1,
      0,
      2,
      0,
      1
    ],
    "io_out": [
      -2,
      2,
      3,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(mul_n(sort_des(input),1))),-3)"
  },
  {
    "input": "input : list = [-4, 2, 4]\noutput : list = [-40, 20, 40]",
    "output": "generated_output : list = mul_n(take(mul_n(take(sort_asc([-4, 2, 4]),9),-2),31),-5)",
    "io_inp": [
      -4,
      2,
      4
    ],
    "io_out": [
      -40,
      20,
      40
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(sort_asc(input),9),-2),31),-5)"
  },
  {
    "input": "input : list = [2, 4, -3, -3]\noutput : list = [6, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n(reverse(drop(sub_n([2, 4, -3, -3],-4),1)),2))",
    "io_inp": [
      2,
      4,
      -3,
      -3
    ],
    "io_out": [
      6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(drop(sub_n(input,-4),1)),2))"
  },
  {
    "input": "input : list = [0, 2, 0, 5, 5]\noutput : list = [-1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(take([0, 2, 0, 5, 5],1),-1))))",
    "io_inp": [
      0,
      2,
      0,
      5,
      5
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(take(input,1),-1))))"
  },
  {
    "input": "input : list = [3, -4, 5, -4, 1]\noutput : list = [-4, -4, 1, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc([3, -4, 5, -4, 1]))))",
    "io_inp": [
      3,
      -4,
      5,
      -4,
      1
    ],
    "io_out": [
      -4,
      -4,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [0, 5, 3, 1, -2, -4]\noutput : list = [7, 5, 3, 2, 0, -2]",
    "output": "generated_output : list = sort_des(sort_des(add_n(add_n([0, 5, 3, 1, -2, -4],-3),5)))",
    "io_inp": [
      0,
      5,
      3,
      1,
      -2,
      -4
    ],
    "io_out": [
      7,
      5,
      3,
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(add_n(input,-3),5)))"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des(take(reverse(sort_des(sub_n([-3, -2],-5))),19))",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(sort_des(sub_n(input,-5))),19))"
  },
  {
    "input": "input : list = [3, 3, -4]\noutput : list = [5, -16, -16]",
    "output": "generated_output : list = sub_n(take(sort_des(mul_n(add_n([3, 3, -4],1),-3)),31),4)",
    "io_inp": [
      3,
      3,
      -4
    ],
    "io_out": [
      5,
      -16,
      -16
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(mul_n(add_n(input,1),-3)),31),4)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [2, 1]",
    "output": "generated_output : list = sort_des([2, 1])",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 4, 4, -4, 0, 2]\noutput : list = [5, 4, 4, 2, 0, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([5, 4, 4, -4, 0, 2])))",
    "io_inp": [
      5,
      4,
      4,
      -4,
      0,
      2
    ],
    "io_out": [
      5,
      4,
      4,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, 5, -2, 1]\noutput : list = [-8, -11, -4, -14]",
    "output": "generated_output : list = sub_n(reverse(add_n([-5, 5, -2, 1],-4)),5)",
    "io_inp": [
      -5,
      5,
      -2,
      1
    ],
    "io_out": [
      -8,
      -11,
      -4,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,-4)),5)"
  },
  {
    "input": "input : list = [2, 4, -5, 4, -5, -1]\noutput : list = [8, -1, 3]",
    "output": "generated_output : list = drop(add_n([2, 4, -5, 4, -5, -1],4),3)",
    "io_inp": [
      2,
      4,
      -5,
      4,
      -5,
      -1
    ],
    "io_out": [
      8,
      -1,
      3
    ],
    "output_masked": "generated_output : list = drop(add_n(input,4),3)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-4, 10]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([2, -5],-2)),1)",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -4,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-2)),1)"
  },
  {
    "input": "input : list = [5, -4, -1, -4, 4]\noutput : list = [6]",
    "output": "generated_output : list = take(reverse(sort_asc(sub_n(take([5, -4, -1, -4, 4],1),-1))),53)",
    "io_inp": [
      5,
      -4,
      -1,
      -4,
      4
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(sub_n(take(input,1),-1))),53)"
  },
  {
    "input": "input : list = [-3, -5, -1]\noutput : list = [-4, -6, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_des([-3, -5, -1])),3)",
    "io_inp": [
      -3,
      -5,
      -1
    ],
    "io_out": [
      -4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(input)),3)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [-5]",
    "output": "generated_output : list = drop(take(take(sub_n(sort_des([0, 0]),5),18),29),1)",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = drop(take(take(sub_n(sort_des(input),5),18),29),1)"
  },
  {
    "input": "input : list = [-5, 2, 2, 4, -4, -3]\noutput : list = [-4, -3, -2, 3, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_asc([-5, 2, 2, 4, -4, -3]),-1))))",
    "io_inp": [
      -5,
      2,
      2,
      4,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      -2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_asc(input),-1))))"
  },
  {
    "input": "input : list = [-4, 4, -4]\noutput : list = [-5, 3, -5]",
    "output": "generated_output : list = add_n(reverse([-4, 4, -4]),-1)",
    "io_inp": [
      -4,
      4,
      -4
    ],
    "io_out": [
      -5,
      3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-1)"
  },
  {
    "input": "input : list = [-1, -1, -3, 0, -3, 4]\noutput : list = [5, 1, 0, 0, -2, -2]",
    "output": "generated_output : list = take(reverse(sub_n(take(sort_asc([-1, -1, -3, 0, -3, 4]),18),-1)),35)",
    "io_inp": [
      -1,
      -1,
      -3,
      0,
      -3,
      4
    ],
    "io_out": [
      5,
      1,
      0,
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(take(sort_asc(input),18),-1)),35)"
  },
  {
    "input": "input : list = [1, 3, -5, 1, -3, -4]\noutput : list = [-4, -3, 1, -5, 3, 1]",
    "output": "generated_output : list = reverse([1, 3, -5, 1, -3, -4])",
    "io_inp": [
      1,
      3,
      -5,
      1,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      1,
      -5,
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 2, -1]\noutput : list = [2, 5]",
    "output": "generated_output : list = sub_n(sub_n(take(drop(mul_n([2, 2, -1],-1),1),23),-5),1)",
    "io_inp": [
      2,
      2,
      -1
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(drop(mul_n(input,-1),1),23),-5),1)"
  },
  {
    "input": "input : list = [0, 0, -1, -4, 3, 3]\noutput : list = [-9, -6, -5, -5, -2, -2]",
    "output": "generated_output : list = sort_asc(take(add_n(take(sub_n([0, 0, -1, -4, 3, 3],1),17),-4),27))",
    "io_inp": [
      0,
      0,
      -1,
      -4,
      3,
      3
    ],
    "io_out": [
      -9,
      -6,
      -5,
      -5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(take(sub_n(input,1),17),-4),27))"
  },
  {
    "input": "input : list = [0, -3, 1, 3, 5]\noutput : list = [0, -2, -4, -5]",
    "output": "generated_output : list = reverse(drop(sort_asc(add_n(sort_des([0, -3, 1, 3, 5]),-5)),1))",
    "io_inp": [
      0,
      -3,
      1,
      3,
      5
    ],
    "io_out": [
      0,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(sort_asc(add_n(sort_des(input),-5)),1))"
  },
  {
    "input": "input : list = [3, -3, -1]\noutput : list = [-5, -3]",
    "output": "generated_output : list = add_n(take(drop([3, -3, -1],1),14),-2)",
    "io_inp": [
      3,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,1),14),-2)"
  },
  {
    "input": "input : list = [-5, 4, 5, -3, 0]\noutput : list = [0, -3, 5, 4, -5]",
    "output": "generated_output : list = reverse([-5, 4, 5, -3, 0])",
    "io_inp": [
      -5,
      4,
      5,
      -3,
      0
    ],
    "io_out": [
      0,
      -3,
      5,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 0, -2]\noutput : list = [-1, 0, 1]",
    "output": "generated_output : list = reverse(take(sort_des(sub_n([-1, 0, -2],-1)),11))",
    "io_inp": [
      -1,
      0,
      -2
    ],
    "io_out": [
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(sub_n(input,-1)),11))"
  },
  {
    "input": "input : list = [3, 5, 4]\noutput : list = [5, 4, 3]",
    "output": "generated_output : list = sort_des(sort_asc([3, 5, 4]))",
    "io_inp": [
      3,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [8, 0]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(add_n(sort_asc([0, -4]),4))),2)",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      8,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(add_n(sort_asc(input),4))),2)"
  },
  {
    "input": "input : list = [-2, 1, 1, 0, -5, 0]\noutput : list = [5, 5, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_des(take(drop([-2, 1, 1, 0, -5, 0],3),9))),5)",
    "io_inp": [
      -2,
      1,
      1,
      0,
      -5,
      0
    ],
    "io_out": [
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(take(drop(input,3),9))),5)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [-1, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des([4, 3]),-4))",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(input),-4))"
  },
  {
    "input": "input : list = [-4, -1, 3, 3]\noutput : list = [2, 2, -2, -5]",
    "output": "generated_output : list = take(reverse(sub_n([-4, -1, 3, 3],1)),5)",
    "io_inp": [
      -4,
      -1,
      3,
      3
    ],
    "io_out": [
      2,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,1)),5)"
  },
  {
    "input": "input : list = [2, 0, -4, -1, 3, 3]\noutput : list = [-4, -1, 0, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([2, 0, -4, -1, 3, 3])",
    "io_inp": [
      2,
      0,
      -4,
      -1,
      3,
      3
    ],
    "io_out": [
      -4,
      -1,
      0,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 4, 4]\noutput : list = [-48, -60, -60]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_asc([3, 4, 4]),-1),-3),4))",
    "io_inp": [
      3,
      4,
      4
    ],
    "io_out": [
      -48,
      -60,
      -60
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(sort_asc(input),-1),-3),4))"
  },
  {
    "input": "input : list = [3, -2, 4, 2, 3]\noutput : list = [45, 20, 50, 40, 45]",
    "output": "generated_output : list = add_n(mul_n(sub_n(add_n([3, -2, 4, 2, 3],4),-3),5),-5)",
    "io_inp": [
      3,
      -2,
      4,
      2,
      3
    ],
    "io_out": [
      45,
      20,
      50,
      40,
      45
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(add_n(input,4),-3),5),-5)"
  },
  {
    "input": "input : list = [0, -2]\noutput : list = [0, -2]",
    "output": "generated_output : list = sort_des([0, -2])",
    "io_inp": [
      0,
      -2
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, -4, -3, -5, 2, 3]\noutput : list = [6, 5, 5, 0, -1, -2]",
    "output": "generated_output : list = add_n(sub_n(take(sub_n(sort_des([2, -4, -3, -5, 2, 3]),-2),11),-2),-1)",
    "io_inp": [
      2,
      -4,
      -3,
      -5,
      2,
      3
    ],
    "io_out": [
      6,
      5,
      5,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sub_n(sort_des(input),-2),11),-2),-1)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [2, -6]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n([-1, -5],4)),1),-2)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(input,4)),1),-2)"
  },
  {
    "input": "input : list = [4, 3, 4, 0, 2, 5]\noutput : list = [-4, -8, -10, -12, -12, -14]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(sort_asc([4, 3, 4, 0, 2, 5]),2),23),-2))",
    "io_inp": [
      4,
      3,
      4,
      0,
      2,
      5
    ],
    "io_out": [
      -4,
      -8,
      -10,
      -12,
      -12,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(sort_asc(input),2),23),-2))"
  },
  {
    "input": "input : list = [2, 3, 1, -3]\noutput : list = [3, 2, 1, -3]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n([2, 3, 1, -3],-1))),-1),49)",
    "io_inp": [
      2,
      3,
      1,
      -3
    ],
    "io_out": [
      3,
      2,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_asc(add_n(input,-1))),-1),49)"
  },
  {
    "input": "input : list = [-4, 3, 0, -5]\noutput : list = [-2, 7, 19, 22]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(sort_des([-4, 3, 0, -5]),1),-3),33),4)",
    "io_inp": [
      -4,
      3,
      0,
      -5
    ],
    "io_out": [
      -2,
      7,
      19,
      22
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(sort_des(input),1),-3),33),4)"
  },
  {
    "input": "input : list = [5, -2, -1, -3]\noutput : list = [5, -1, -2, -3]",
    "output": "generated_output : list = sort_des([5, -2, -1, -3])",
    "io_inp": [
      5,
      -2,
      -1,
      -3
    ],
    "io_out": [
      5,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1, 0, -3]\noutput : list = [-1]",
    "output": "generated_output : list = take(add_n(add_n(reverse([5, 1, 0, -3]),-3),5),1)",
    "io_inp": [
      5,
      1,
      0,
      -3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(add_n(add_n(reverse(input),-3),5),1)"
  },
  {
    "input": "input : list = [-4, -1, 2, -2, -1]\noutput : list = [-7, -8]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(drop([-4, -1, 2, -2, -1],3),5),-2),-3))",
    "io_inp": [
      -4,
      -1,
      2,
      -2,
      -1
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(drop(input,3),5),-2),-3))"
  },
  {
    "input": "input : list = [4, -5, 3, 0, 2, 3]\noutput : list = [-6, 4, 9, 9, 14]",
    "output": "generated_output : list = drop(add_n(add_n(sort_asc(mul_n([4, -5, 3, 0, 2, 3],5)),-3),-3),1)",
    "io_inp": [
      4,
      -5,
      3,
      0,
      2,
      3
    ],
    "io_out": [
      -6,
      4,
      9,
      9,
      14
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(sort_asc(mul_n(input,5)),-3),-3),1)"
  },
  {
    "input": "input : list = [-2, 2, 4, 3]\noutput : list = [-8, 8]",
    "output": "generated_output : list = take(reverse(mul_n(sort_asc(take([-2, 2, 4, 3],2)),-4)),10)",
    "io_inp": [
      -2,
      2,
      4,
      3
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sort_asc(take(input,2)),-4)),10)"
  },
  {
    "input": "input : list = [-5, -4, 0, 0]\noutput : list = [-8, -7, -3, -3]",
    "output": "generated_output : list = sub_n([-5, -4, 0, 0],3)",
    "io_inp": [
      -5,
      -4,
      0,
      0
    ],
    "io_out": [
      -8,
      -7,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [25, 15]",
    "output": "generated_output : list = mul_n([-5, -3],-5)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      25,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [2, 2, 3, -4]\noutput : list = [-6, -5, -12]",
    "output": "generated_output : list = add_n(take(take(sub_n(drop([2, 2, 3, -4],1),5),27),6),-3)",
    "io_inp": [
      2,
      2,
      3,
      -4
    ],
    "io_out": [
      -6,
      -5,
      -12
    ],
    "output_masked": "generated_output : list = add_n(take(take(sub_n(drop(input,1),5),27),6),-3)"
  },
  {
    "input": "input : list = [4, 4, 4]\noutput : list = [-7, -7, -7]",
    "output": "generated_output : list = add_n(take(mul_n([4, 4, 4],-3),3),5)",
    "io_inp": [
      4,
      4,
      4
    ],
    "io_out": [
      -7,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(input,-3),3),5)"
  },
  {
    "input": "input : list = [-2, 1, -3, 4, -3, -2]\noutput : list = [16, 14, 8, 2]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n(take([-2, 1, -3, 4, -3, -2],4),-5))),-2)",
    "io_inp": [
      -2,
      1,
      -3,
      4,
      -3,
      -2
    ],
    "io_out": [
      16,
      14,
      8,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(take(input,4),-5))),-2)"
  },
  {
    "input": "input : list = [5, 5, -2, -4, 1]\noutput : list = [7, 7]",
    "output": "generated_output : list = add_n(take([5, 5, -2, -4, 1],2),2)",
    "io_inp": [
      5,
      5,
      -2,
      -4,
      1
    ],
    "io_out": [
      7,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(input,2),2)"
  },
  {
    "input": "input : list = [5, 5, -2, 2, -2]\noutput : list = [4, 4, 1, -3, -3]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(reverse(add_n([5, 5, -2, 2, -2],-1)))))",
    "io_inp": [
      5,
      5,
      -2,
      2,
      -2
    ],
    "io_out": [
      4,
      4,
      1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(reverse(add_n(input,-1)))))"
  },
  {
    "input": "input : list = [5, 0, 3, 4, -3]\noutput : list = [-4, 1]",
    "output": "generated_output : list = add_n(sort_asc(reverse(sub_n(take([5, 0, 3, 4, -3],2),3))),-1)",
    "io_inp": [
      5,
      0,
      3,
      4,
      -3
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(sub_n(take(input,2),3))),-1)"
  },
  {
    "input": "input : list = [-1, -5, 5, -5]\noutput : list = [9, 3, -1, -1]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(sort_asc([-1, -5, 5, -5]),21)),-4))",
    "io_inp": [
      -1,
      -5,
      5,
      -5
    ],
    "io_out": [
      9,
      3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(sort_asc(input),21)),-4))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(sort_des([-3, -1]),4)",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(input),4)"
  },
  {
    "input": "input : list = [-1, 4, -3, -5, 3]\noutput : list = [3, 8]",
    "output": "generated_output : list = reverse(sub_n(reverse(take([-1, 4, -3, -5, 3],2)),-4))",
    "io_inp": [
      -1,
      4,
      -3,
      -5,
      3
    ],
    "io_out": [
      3,
      8
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(take(input,2)),-4))"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [5, 1]",
    "output": "generated_output : list = sort_des(take(sort_des(sub_n(sort_asc([-1, 3]),-2)),4))",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      5,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sub_n(sort_asc(input),-2)),4))"
  },
  {
    "input": "input : list = [3, 4, 1, 5, 2, -5]\noutput : list = [3, 4, 1]",
    "output": "generated_output : list = take([3, 4, 1, 5, 2, -5],3)",
    "io_inp": [
      3,
      4,
      1,
      5,
      2,
      -5
    ],
    "io_out": [
      3,
      4,
      1
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [5, 0, -5, 5, -2]\noutput : list = [9, 9, 4, 2, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_asc(add_n([5, 0, -5, 5, -2],-3)),-3)),4)",
    "io_inp": [
      5,
      0,
      -5,
      5,
      -2
    ],
    "io_out": [
      9,
      9,
      4,
      2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_asc(add_n(input,-3)),-3)),4)"
  },
  {
    "input": "input : list = [0, -4, 2, -4, 4]\noutput : list = [0]",
    "output": "generated_output : list = take(sort_asc(take(take([0, -4, 2, -4, 4],1),12)),33)",
    "io_inp": [
      0,
      -4,
      2,
      -4,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(take(input,1),12)),33)"
  },
  {
    "input": "input : list = [5, 2, -5]\noutput : list = [4, -3]",
    "output": "generated_output : list = sub_n(add_n(drop([5, 2, -5],1),-1),-3)",
    "io_inp": [
      5,
      2,
      -5
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(drop(input,1),-1),-3)"
  },
  {
    "input": "input : list = [-3, 3, -1, -4]\noutput : list = [20, 8, -8, 16]",
    "output": "generated_output : list = take(mul_n(sub_n(sub_n(reverse([-3, 3, -1, -4]),2),-1),-4),47)",
    "io_inp": [
      -3,
      3,
      -1,
      -4
    ],
    "io_out": [
      20,
      8,
      -8,
      16
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(sub_n(reverse(input),2),-1),-4),47)"
  },
  {
    "input": "input : list = [-5, 0, -3, 3]\noutput : list = [-4, -2, 1, 4]",
    "output": "generated_output : list = take(add_n(sort_asc(reverse([-5, 0, -3, 3])),1),14)",
    "io_inp": [
      -5,
      0,
      -3,
      3
    ],
    "io_out": [
      -4,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(reverse(input)),1),14)"
  },
  {
    "input": "input : list = [-1, -3, -2, 2, -4]\noutput : list = [-5, -7, -6, -2, -8]",
    "output": "generated_output : list = sub_n([-1, -3, -2, 2, -4],4)",
    "io_inp": [
      -1,
      -3,
      -2,
      2,
      -4
    ],
    "io_out": [
      -5,
      -7,
      -6,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, 0, 1, -3]\noutput : list = [-2]",
    "output": "generated_output : list = take(take([-2, 0, 1, -3],1),12)",
    "io_inp": [
      -2,
      0,
      1,
      -3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(take(input,1),12)"
  },
  {
    "input": "input : list = [-5, 4, 1]\noutput : list = [1, 4]",
    "output": "generated_output : list = sort_asc(take(reverse(take(drop([-5, 4, 1],1),10)),11))",
    "io_inp": [
      -5,
      4,
      1
    ],
    "io_out": [
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(take(drop(input,1),10)),11))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [3, 6]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sort_des(add_n([0, 3],-1)),-1)),5)",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      3,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sort_des(add_n(input,-1)),-1)),5)"
  },
  {
    "input": "input : list = [1, -5, -5, -4, 0]\noutput : list = [-5, -5, -4, 0, 1]",
    "output": "generated_output : list = sort_asc(take(reverse([1, -5, -5, -4, 0]),5))",
    "io_inp": [
      1,
      -5,
      -5,
      -4,
      0
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),5))"
  },
  {
    "input": "input : list = [2, -3, -5, -3, 0, -3]\noutput : list = [2, 0, -3, -3, -3, -5]",
    "output": "generated_output : list = sort_des([2, -3, -5, -3, 0, -3])",
    "io_inp": [
      2,
      -3,
      -5,
      -3,
      0,
      -3
    ],
    "io_out": [
      2,
      0,
      -3,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, -3, -2, -3, -5]\noutput : list = [1, 0, -1, 0, -1, -3]",
    "output": "generated_output : list = add_n([-1, -2, -3, -2, -3, -5],2)",
    "io_inp": [
      -1,
      -2,
      -3,
      -2,
      -3,
      -5
    ],
    "io_out": [
      1,
      0,
      -1,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, -4, -1, -4]\noutput : list = [-9, -9, 0, 0]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sort_des([-1, -4, -1, -4]),3))),-3)",
    "io_inp": [
      -1,
      -4,
      -1,
      -4
    ],
    "io_out": [
      -9,
      -9,
      0,
      0
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(mul_n(sort_des(input),3))),-3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [-96, -48]",
    "output": "generated_output : list = mul_n(reverse(mul_n(mul_n(mul_n([1, 2],-4),1),3)),4)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      -96,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(mul_n(mul_n(input,-4),1),3)),4)"
  },
  {
    "input": "input : list = [-3, 0, 5, -2]\noutput : list = [-13, -12, -10, -5]",
    "output": "generated_output : list = sub_n(add_n(sub_n(sort_asc(reverse([-3, 0, 5, -2])),1),-5),4)",
    "io_inp": [
      -3,
      0,
      5,
      -2
    ],
    "io_out": [
      -13,
      -12,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(sort_asc(reverse(input)),1),-5),4)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc([5, 5])))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, 0, 2, 2]\noutput : list = [2, 0, 0, -2]",
    "output": "generated_output : list = reverse(add_n(sort_asc(sort_asc([4, 0, 2, 2])),-2))",
    "io_inp": [
      4,
      0,
      2,
      2
    ],
    "io_out": [
      2,
      0,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(sort_asc(input)),-2))"
  },
  {
    "input": "input : list = [5, -2, -4, 4]\noutput : list = [8, 1, -1, 7]",
    "output": "generated_output : list = add_n([5, -2, -4, 4],3)",
    "io_inp": [
      5,
      -2,
      -4,
      4
    ],
    "io_out": [
      8,
      1,
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [4, -3, -3]\noutput : list = [-8, -8]",
    "output": "generated_output : list = sub_n(drop([4, -3, -3],1),5)",
    "io_inp": [
      4,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),5)"
  },
  {
    "input": "input : list = [2, 0, 4, -2, -5, 0]\noutput : list = [5, 3, 1, 1, -1, -4]",
    "output": "generated_output : list = sort_des(take(sort_asc(add_n(add_n([2, 0, 4, -2, -5, 0],-3),4)),12))",
    "io_inp": [
      2,
      0,
      4,
      -2,
      -5,
      0
    ],
    "io_out": [
      5,
      3,
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(add_n(add_n(input,-3),4)),12))"
  },
  {
    "input": "input : list = [-3, -1, -5, 2, -5]\noutput : list = [-5, 2, -5]",
    "output": "generated_output : list = reverse(drop([-3, -1, -5, 2, -5],2))",
    "io_inp": [
      -3,
      -1,
      -5,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(drop(input,2))"
  },
  {
    "input": "input : list = [2, 5, -4, -3, 3, -2]\noutput : list = [60, -30, -75]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(take([2, 5, -4, -3, 3, -2],3),1),-3),5))",
    "io_inp": [
      2,
      5,
      -4,
      -3,
      3,
      -2
    ],
    "io_out": [
      60,
      -30,
      -75
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(take(input,3),1),-3),5))"
  },
  {
    "input": "input : list = [-4, -1, 0, -1]\noutput : list = [-1, -4]",
    "output": "generated_output : list = sort_des(reverse(take([-4, -1, 0, -1],2)))",
    "io_inp": [
      -4,
      -1,
      0,
      -1
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(input,2)))"
  },
  {
    "input": "input : list = [-1, 2, 2, -5, -4]\noutput : list = [7, 7, 1, 0]",
    "output": "generated_output : list = sort_des(sort_asc(drop(add_n([-1, 2, 2, -5, -4],5),1)))",
    "io_inp": [
      -1,
      2,
      2,
      -5,
      -4
    ],
    "io_out": [
      7,
      7,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(drop(add_n(input,5),1)))"
  },
  {
    "input": "input : list = [3, 1, 4, 0]\noutput : list = [6, 4, 7, 3]",
    "output": "generated_output : list = reverse(take(reverse(add_n([3, 1, 4, 0],3)),4))",
    "io_inp": [
      3,
      1,
      4,
      0
    ],
    "io_out": [
      6,
      4,
      7,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(add_n(input,3)),4))"
  },
  {
    "input": "input : list = [0, -2, -4]\noutput : list = [-3, -7, -11]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sub_n([0, -2, -4],2)),1),2),-1)",
    "io_inp": [
      0,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(sub_n(input,2)),1),2),-1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc(add_n([3, 1],2))",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,2))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [17, -3]",
    "output": "generated_output : list = sort_des(add_n(reverse(sort_des(mul_n([-3, 1],-5))),2))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      17,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(sort_des(mul_n(input,-5))),2))"
  },
  {
    "input": "input : list = [-5, -3, 4, 0, -4]\noutput : list = [8, 4, 1, 0, -1]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_asc([-5, -3, 4, 0, -4])),-5),-1))",
    "io_inp": [
      -5,
      -3,
      4,
      0,
      -4
    ],
    "io_out": [
      8,
      4,
      1,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sort_des(sort_asc(input)),-5),-1))"
  },
  {
    "input": "input : list = [-3, -5, 2]\noutput : list = [-12, -5]",
    "output": "generated_output : list = sort_asc(add_n(add_n(sub_n(drop([-3, -5, 2],1),5),2),-4))",
    "io_inp": [
      -3,
      -5,
      2
    ],
    "io_out": [
      -12,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(add_n(sub_n(drop(input,1),5),2),-4))"
  },
  {
    "input": "input : list = [-2, 3, 4, 4]\noutput : list = [3, 4, 4]",
    "output": "generated_output : list = drop([-2, 3, 4, 4],1)",
    "io_inp": [
      -2,
      3,
      4,
      4
    ],
    "io_out": [
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [-40]",
    "output": "generated_output : list = mul_n(mul_n(take(take([4, -2, -4],1),6),-5),2)",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      -40
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(take(input,1),6),-5),2)"
  },
  {
    "input": "input : list = [1, 5, -2, -3, -3]\noutput : list = [-7, -7]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(drop([1, 5, -2, -3, -3],3),5),1),15))",
    "io_inp": [
      1,
      5,
      -2,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(drop(input,3),5),1),15))"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-3, -1]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_asc([-3, -1])))))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, 1, -4]\noutput : list = [16]",
    "output": "generated_output : list = take(sub_n(mul_n(take(sort_des([4, 1, -4]),1),5),4),28)",
    "io_inp": [
      4,
      1,
      -4
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(take(sort_des(input),1),5),4),28)"
  },
  {
    "input": "input : list = [-1, 4, 5, -1]\noutput : list = [-3, -3, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-1, 4, 5, -1]),2)",
    "io_inp": [
      -1,
      4,
      5,
      -1
    ],
    "io_out": [
      -3,
      -3,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [10, 6, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(reverse(mul_n([5, 3, -4],2))),6))",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      10,
      6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(reverse(mul_n(input,2))),6))"
  },
  {
    "input": "input : list = [0, -2, 3, -1, -4, -1]\noutput : list = [12, 9, 8, 8, 7, 5]",
    "output": "generated_output : list = sort_des(sort_asc(add_n(sub_n(sub_n([0, -2, 3, -1, -4, -1],-1),-3),5)))",
    "io_inp": [
      0,
      -2,
      3,
      -1,
      -4,
      -1
    ],
    "io_out": [
      12,
      9,
      8,
      8,
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(add_n(sub_n(sub_n(input,-1),-3),5)))"
  },
  {
    "input": "input : list = [4, 3, 3, -5, 4]\noutput : list = [0, 8, 8, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_des([4, 3, 3, -5, 4]),-5))))",
    "io_inp": [
      4,
      3,
      3,
      -5,
      4
    ],
    "io_out": [
      0,
      8,
      8,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sort_des(input),-5))))"
  },
  {
    "input": "input : list = [4, 1, -1]\noutput : list = [0, 2, 5]",
    "output": "generated_output : list = add_n(sort_asc(add_n([4, 1, -1],4)),-3)",
    "io_inp": [
      4,
      1,
      -1
    ],
    "io_out": [
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(input,4)),-3)"
  },
  {
    "input": "input : list = [1, -3, -5, -5, 1]\noutput : list = [6, 6, 2, 0, 0]",
    "output": "generated_output : list = take(take(sort_des(add_n([1, -3, -5, -5, 1],5)),13),15)",
    "io_inp": [
      1,
      -3,
      -5,
      -5,
      1
    ],
    "io_out": [
      6,
      6,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_des(add_n(input,5)),13),15)"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [11, -1, -9]",
    "output": "generated_output : list = sort_des(mul_n(add_n(sort_asc(mul_n([-5, 5, 1],-2)),1),1))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      11,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(sort_asc(mul_n(input,-2)),1),1))"
  },
  {
    "input": "input : list = [-1, -3, 0, -3, -1, 3]\noutput : list = [3, 0, -1, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_des([-1, -3, 0, -3, -1, 3]),4))))",
    "io_inp": [
      -1,
      -3,
      0,
      -3,
      -1,
      3
    ],
    "io_out": [
      3,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(sort_des(input),4))))"
  },
  {
    "input": "input : list = [-5, 2, 0, 4, 0]\noutput : list = [11, 1, 1, -3, -7]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(add_n([-5, 2, 0, 4, 0],1)),-2)),3)",
    "io_inp": [
      -5,
      2,
      0,
      4,
      0
    ],
    "io_out": [
      11,
      1,
      1,
      -3,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(add_n(input,1)),-2)),3)"
  },
  {
    "input": "input : list = [5, -1, 1, -4, 2, 3]\noutput : list = [18, 12, -24, 6]",
    "output": "generated_output : list = mul_n(take(mul_n(take(reverse([5, -1, 1, -4, 2, 3]),4),3),35),2)",
    "io_inp": [
      5,
      -1,
      1,
      -4,
      2,
      3
    ],
    "io_out": [
      18,
      12,
      -24,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(take(reverse(input),4),3),35),2)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(reverse([2, 0])),-2))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(reverse(input)),-2))"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [6, 18]",
    "output": "generated_output : list = reverse(mul_n(sub_n([-3, 1],3),-3))",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      6,
      18
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(input,3),-3))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-3, 6]",
    "output": "generated_output : list = mul_n(reverse(take(reverse(sort_des([1, -2])),13)),-3)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(reverse(sort_des(input)),13)),-3)"
  },
  {
    "input": "input : list = [3, 4, 4, 0]\noutput : list = [-3, -18, -23, -23]",
    "output": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse([3, 4, 4, 0])),-5),17),3)",
    "io_inp": [
      3,
      4,
      4,
      0
    ],
    "io_out": [
      -3,
      -18,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sort_asc(reverse(input)),-5),17),3)"
  },
  {
    "input": "input : list = [0, -3, 1]\noutput : list = [6]",
    "output": "generated_output : list = add_n(reverse(mul_n(take(sub_n([0, -3, 1],3),1),-3)),-3)",
    "io_inp": [
      0,
      -3,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(take(sub_n(input,3),1),-3)),-3)"
  },
  {
    "input": "input : list = [4, 2, -5, -4, -5]\noutput : list = [-14, -14, -12, 0, 4]",
    "output": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n([4, 2, -5, -4, -5],2),1),-5)))",
    "io_inp": [
      4,
      2,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -14,
      -14,
      -12,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(add_n(mul_n(input,2),1),-5)))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [8, 1]",
    "output": "generated_output : list = take(add_n(reverse([-4, 3]),5),18)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      8,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(reverse(input),5),18)"
  },
  {
    "input": "input : list = [3, -1, 3]\noutput : list = [12, -36, 12]",
    "output": "generated_output : list = mul_n(mul_n(sub_n([3, -1, 3],2),-3),-4)",
    "io_inp": [
      3,
      -1,
      3
    ],
    "io_out": [
      12,
      -36,
      12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(input,2),-3),-4)"
  },
  {
    "input": "input : list = [-2, -2, 2, -4]\noutput : list = [-21, -11, -11, 9]",
    "output": "generated_output : list = take(sort_asc(add_n(sort_des(mul_n([-2, -2, 2, -4],5)),-1)),34)",
    "io_inp": [
      -2,
      -2,
      2,
      -4
    ],
    "io_out": [
      -21,
      -11,
      -11,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(sort_des(mul_n(input,5)),-1)),34)"
  },
  {
    "input": "input : list = [5, 4, 3, -4, 2]\noutput : list = [-15, -12, -9, 12, -6]",
    "output": "generated_output : list = mul_n([5, 4, 3, -4, 2],-3)",
    "io_inp": [
      5,
      4,
      3,
      -4,
      2
    ],
    "io_out": [
      -15,
      -12,
      -9,
      12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-3)"
  },
  {
    "input": "input : list = [-5, 3, -3, 3, 3, 5]\noutput : list = [0, 8, 2, 8, 8, 10]",
    "output": "generated_output : list = add_n([-5, 3, -3, 3, 3, 5],5)",
    "io_inp": [
      -5,
      3,
      -3,
      3,
      3,
      5
    ],
    "io_out": [
      0,
      8,
      2,
      8,
      8,
      10
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [4, -2]",
    "output": "generated_output : list = add_n(sort_des(add_n(sort_asc([5, -1]),1)),-2)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(sort_asc(input),1)),-2)"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [9, -9]",
    "output": "generated_output : list = take(reverse(sort_asc(mul_n([3, -3],-3))),18)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      9,
      -9
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(mul_n(input,-3))),18)"
  },
  {
    "input": "input : list = [3, -1, -4, -2, -2, -3]\noutput : list = [-1, -5, -6, -6, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(reverse(reverse(add_n([3, -1, -4, -2, -2, -3],-4)))))",
    "io_inp": [
      3,
      -1,
      -4,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -1,
      -5,
      -6,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(reverse(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [4, -1, -3, -5, -4]\noutput : list = [-4, -5, -3, -1, 4]",
    "output": "generated_output : list = reverse([4, -1, -3, -5, -4])",
    "io_inp": [
      4,
      -1,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 2, -2, -1]\noutput : list = [-8, -3, -7, -6]",
    "output": "generated_output : list = sub_n([-3, 2, -2, -1],5)",
    "io_inp": [
      -3,
      2,
      -2,
      -1
    ],
    "io_out": [
      -8,
      -3,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [-3, 5, -3, -1, -1, 2]\noutput : list = [2, 10, 2, 4, 4, 7]",
    "output": "generated_output : list = take(add_n([-3, 5, -3, -1, -1, 2],5),21)",
    "io_inp": [
      -3,
      5,
      -3,
      -1,
      -1,
      2
    ],
    "io_out": [
      2,
      10,
      2,
      4,
      4,
      7
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),21)"
  },
  {
    "input": "input : list = [0, -4, 0, -5]\noutput : list = [4, 5, 9, 9]",
    "output": "generated_output : list = sub_n(reverse(add_n(sort_des(sub_n([0, -4, 0, -5],-3)),3)),-3)",
    "io_inp": [
      0,
      -4,
      0,
      -5
    ],
    "io_out": [
      4,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sort_des(sub_n(input,-3)),3)),-3)"
  },
  {
    "input": "input : list = [1, 3, -2]\noutput : list = [13, 7, -2]",
    "output": "generated_output : list = sub_n(add_n(mul_n(sort_des(add_n([1, 3, -2],1)),3),-4),-5)",
    "io_inp": [
      1,
      3,
      -2
    ],
    "io_out": [
      13,
      7,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(sort_des(add_n(input,1)),3),-4),-5)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-7, -3]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(add_n([3, -1],-1),-4),-1)),39)",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(add_n(input,-1),-4),-1)),39)"
  },
  {
    "input": "input : list = [-2, -1, 1, 5]\noutput : list = [5, 1, -1, -2]",
    "output": "generated_output : list = sort_des(mul_n(take(sort_des(reverse([-2, -1, 1, 5])),8),1))",
    "io_inp": [
      -2,
      -1,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(sort_des(reverse(input)),8),1))"
  },
  {
    "input": "input : list = [-5, -5, 4, -4, 1]\noutput : list = [-4, 1, 4]",
    "output": "generated_output : list = sort_asc(drop([-5, -5, 4, -4, 1],2))",
    "io_inp": [
      -5,
      -5,
      4,
      -4,
      1
    ],
    "io_out": [
      -4,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,2))"
  },
  {
    "input": "input : list = [-3, 4]\noutput : list = [11, -17]",
    "output": "generated_output : list = add_n(reverse(reverse(sub_n(mul_n([-3, 4],-4),-2))),-3)",
    "io_inp": [
      -3,
      4
    ],
    "io_out": [
      11,
      -17
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sub_n(mul_n(input,-4),-2))),-3)"
  },
  {
    "input": "input : list = [4, 3]\noutput : list = [2, 1]",
    "output": "generated_output : list = add_n(take(take(sort_des(mul_n([4, 3],1)),10),25),-2)",
    "io_inp": [
      4,
      3
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_des(mul_n(input,1)),10),25),-2)"
  },
  {
    "input": "input : list = [5, 2, 4]\noutput : list = [-10, -4, -8]",
    "output": "generated_output : list = mul_n([5, 2, 4],-2)",
    "io_inp": [
      5,
      2,
      4
    ],
    "io_out": [
      -10,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, 5, 2, 3, -2, -4]\noutput : list = [2, 1, 0, -1, -5, -7]",
    "output": "generated_output : list = take(sort_des(add_n([4, 5, 2, 3, -2, -4],-3)),34)",
    "io_inp": [
      4,
      5,
      2,
      3,
      -2,
      -4
    ],
    "io_out": [
      2,
      1,
      0,
      -1,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(input,-3)),34)"
  },
  {
    "input": "input : list = [-4, 0, -5, -5, 3]\noutput : list = [-1, -4, -8, -9, -9]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sort_asc([-4, 0, -5, -5, 3]),-4))))",
    "io_inp": [
      -4,
      0,
      -5,
      -5,
      3
    ],
    "io_out": [
      -1,
      -4,
      -8,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(add_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [3, 4, 1, 3]\noutput : list = [8, 9, 6, 8]",
    "output": "generated_output : list = take(add_n([3, 4, 1, 3],5),11)",
    "io_inp": [
      3,
      4,
      1,
      3
    ],
    "io_out": [
      8,
      9,
      6,
      8
    ],
    "output_masked": "generated_output : list = take(add_n(input,5),11)"
  },
  {
    "input": "input : list = [-5, -2, 1, -1, -2, -5]\noutput : list = [-2, -5]",
    "output": "generated_output : list = reverse(take([-5, -2, 1, -1, -2, -5],2))",
    "io_inp": [
      -5,
      -2,
      1,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [1, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = drop([1, 3, -2],1)",
    "io_inp": [
      1,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -3, 2, -2, 0]\noutput : list = [2, -3, 2]",
    "output": "generated_output : list = reverse(take([2, -3, 2, -2, 0],3))",
    "io_inp": [
      2,
      -3,
      2,
      -2,
      0
    ],
    "io_out": [
      2,
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(input,3))"
  },
  {
    "input": "input : list = [-1, 4, -3]\noutput : list = [7, 2, 0]",
    "output": "generated_output : list = take(add_n(sort_des(sort_asc(sort_des([-1, 4, -3]))),3),32)",
    "io_inp": [
      -1,
      4,
      -3
    ],
    "io_out": [
      7,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sort_asc(sort_des(input))),3),32)"
  },
  {
    "input": "input : list = [-5, -1, -5, -4, -5, 5]\noutput : list = [-5, -5, -5, -4, -1, 5]",
    "output": "generated_output : list = reverse(sort_des([-5, -1, -5, -4, -5, 5]))",
    "io_inp": [
      -5,
      -1,
      -5,
      -4,
      -5,
      5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [-3, 5, 4, -3, 0]\noutput : list = [4, 12, 11, 4, 7]",
    "output": "generated_output : list = sub_n(sub_n(add_n(sub_n(add_n([-3, 5, 4, -3, 0],-2),-1),2),-2),-4)",
    "io_inp": [
      -3,
      5,
      4,
      -3,
      0
    ],
    "io_out": [
      4,
      12,
      11,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(sub_n(add_n(input,-2),-1),2),-2),-4)"
  },
  {
    "input": "input : list = [4, 1, -5, 1, -2]\noutput : list = [5, 2, 2, -1, -4]",
    "output": "generated_output : list = take(mul_n(take(sort_des(sub_n([4, 1, -5, 1, -2],-1)),11),1),35)",
    "io_inp": [
      4,
      1,
      -5,
      1,
      -2
    ],
    "io_out": [
      5,
      2,
      2,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(sub_n(input,-1)),11),1),35)"
  },
  {
    "input": "input : list = [-4, -4, 4, -3]\noutput : list = [1, 1, 2, 9]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_des(sort_asc([-4, -4, 4, -3])),-5)))",
    "io_inp": [
      -4,
      -4,
      4,
      -3
    ],
    "io_out": [
      1,
      1,
      2,
      9
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_des(sort_asc(input)),-5)))"
  },
  {
    "input": "input : list = [-1, -5, 3, 1]\noutput : list = [3, 9]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(drop([-1, -5, 3, 1],2)))),3)",
    "io_inp": [
      -1,
      -5,
      3,
      1
    ],
    "io_out": [
      3,
      9
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(sort_asc(drop(input,2)))),3)"
  },
  {
    "input": "input : list = [2, 3, -3, 2, -4]\noutput : list = [2, 3, 8, 8, 9]",
    "output": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc([2, 3, -3, 2, -4]),3)),3))",
    "io_inp": [
      2,
      3,
      -3,
      2,
      -4
    ],
    "io_out": [
      2,
      3,
      8,
      8,
      9
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(add_n(sort_asc(input),3)),3))"
  },
  {
    "input": "input : list = [-1, -4, 5]\noutput : list = [-21, 3, 15]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(mul_n([-1, -4, 5],-4))),-1))",
    "io_inp": [
      -1,
      -4,
      5
    ],
    "io_out": [
      -21,
      3,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(mul_n(input,-4))),-1))"
  },
  {
    "input": "input : list = [-1, -5, 3, -3, -1, -5]\noutput : list = [-5, -1, -3, 3, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, 3, -3, -1, -5])",
    "io_inp": [
      -1,
      -5,
      3,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      -3,
      3,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 2, -4, -2, -4, 2]\noutput : list = [-9, -3]",
    "output": "generated_output : list = take(mul_n(take(mul_n(sub_n([4, 2, -4, -2, -4, 2],1),3),14),-1),2)",
    "io_inp": [
      4,
      2,
      -4,
      -2,
      -4,
      2
    ],
    "io_out": [
      -9,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(take(mul_n(sub_n(input,1),3),14),-1),2)"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-8, -2]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(mul_n([5, -1],-1)),-2),-2),1)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(mul_n(input,-1)),-2),-2),1)"
  },
  {
    "input": "input : list = [2, 1, -3]\noutput : list = [1]",
    "output": "generated_output : list = add_n(add_n(mul_n(add_n(take([2, 1, -3],1),-3),2),-2),5)",
    "io_inp": [
      2,
      1,
      -3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(add_n(take(input,1),-3),2),-2),5)"
  },
  {
    "input": "input : list = [-3, 0, 2]\noutput : list = [2, 0]",
    "output": "generated_output : list = take(sort_des(reverse(drop([-3, 0, 2],1))),31)",
    "io_inp": [
      -3,
      0,
      2
    ],
    "io_out": [
      2,
      0
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(drop(input,1))),31)"
  },
  {
    "input": "input : list = [-1, 3, 1]\noutput : list = [-16, -6, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n([-1, 3, 1],-5))),3),-2)",
    "io_inp": [
      -1,
      3,
      1
    ],
    "io_out": [
      -16,
      -6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(mul_n(input,-5))),3),-2)"
  },
  {
    "input": "input : list = [-5, -2, -5, 1]\noutput : list = [1, -2, -5, -5]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(sort_asc([-5, -2, -5, 1])),20),18))",
    "io_inp": [
      -5,
      -2,
      -5,
      1
    ],
    "io_out": [
      1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(sort_asc(input)),20),18))"
  },
  {
    "input": "input : list = [4, 2, -4, 5, 5]\noutput : list = [6, 6, 5, 3, -3]",
    "output": "generated_output : list = take(take(reverse(sort_asc(sub_n([4, 2, -4, 5, 5],-1))),26),27)",
    "io_inp": [
      4,
      2,
      -4,
      5,
      5
    ],
    "io_out": [
      6,
      6,
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(take(reverse(sort_asc(sub_n(input,-1))),26),27)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [-4, 0]",
    "output": "generated_output : list = reverse([0, -4])",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [-1, -2]",
    "output": "generated_output : list = mul_n([-1, -2],1)",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      -1,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-3, -3, -3, 1, -3]\noutput : list = [-6, -6, -6, -6, -2]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_des([-3, -3, -3, 1, -3]),14),3),1))",
    "io_inp": [
      -3,
      -3,
      -3,
      1,
      -3
    ],
    "io_out": [
      -6,
      -6,
      -6,
      -6,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(take(sort_des(input),14),3),1))"
  },
  {
    "input": "input : list = [-4, -4, 2]\noutput : list = [4, -2, -2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(reverse([-4, -4, 2]),-2))))",
    "io_inp": [
      -4,
      -4,
      2
    ],
    "io_out": [
      4,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [2, -1]",
    "output": "generated_output : list = take(sort_des(take(sort_asc(sort_asc([2, -1])),22)),27)",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_asc(sort_asc(input)),22)),27)"
  },
  {
    "input": "input : list = [5, -4, -1, 0, 3]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -4, -1, 0, 3],1)",
    "io_inp": [
      5,
      -4,
      -1,
      0,
      3
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-1, -1, -2, -1, 4]\noutput : list = [-3, -2, 3]",
    "output": "generated_output : list = add_n(take(take(drop([-1, -1, -2, -1, 4],2),17),17),-1)",
    "io_inp": [
      -1,
      -1,
      -2,
      -1,
      4
    ],
    "io_out": [
      -3,
      -2,
      3
    ],
    "output_masked": "generated_output : list = add_n(take(take(drop(input,2),17),17),-1)"
  },
  {
    "input": "input : list = [3, -1, -2, 5, -2]\noutput : list = [9, 1, -1, 13, -1]",
    "output": "generated_output : list = sub_n(take(mul_n(add_n(add_n([3, -1, -2, 5, -2],2),2),2),37),5)",
    "io_inp": [
      3,
      -1,
      -2,
      5,
      -2
    ],
    "io_out": [
      9,
      1,
      -1,
      13,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(add_n(add_n(input,2),2),2),37),5)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [-81, -36]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(reverse([-1, 4]),13),-5),3),-3)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      -81,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(reverse(input),13),-5),3),-3)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [6, -1]",
    "output": "generated_output : list = add_n(sort_des([-5, 2]),4)",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      6,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [5, 5, 1, -2, -4]\noutput : list = [0, 2, 5, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse([5, 5, 1, -2, -4]),23),4)))",
    "io_inp": [
      5,
      5,
      1,
      -2,
      -4
    ],
    "io_out": [
      0,
      2,
      5,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(reverse(input),23),4)))"
  },
  {
    "input": "input : list = [2, 5, -5]\noutput : list = [9, -6, 44]",
    "output": "generated_output : list = take(add_n(mul_n(add_n([2, 5, -5],-3),-5),4),3)",
    "io_inp": [
      2,
      5,
      -5
    ],
    "io_out": [
      9,
      -6,
      44
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(add_n(input,-3),-5),4),3)"
  },
  {
    "input": "input : list = [-4, 5, 3, 1, 2]\noutput : list = [-9, -4, -3, -2, 0]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(sort_des([-4, 5, 3, 1, 2]))),-5))",
    "io_inp": [
      -4,
      5,
      3,
      1,
      2
    ],
    "io_out": [
      -9,
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [4, 0, 2]\noutput : list = [27, 21, 33]",
    "output": "generated_output : list = sub_n(mul_n(reverse(sub_n(add_n([4, 0, 2],2),-4)),3),-3)",
    "io_inp": [
      4,
      0,
      2
    ],
    "io_out": [
      27,
      21,
      33
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(sub_n(add_n(input,2),-4)),3),-3)"
  },
  {
    "input": "input : list = [-1, 0, 2, 0]\noutput : list = [-2, -1, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des([-1, 0, 2, 0]),1),7)),-1)",
    "io_inp": [
      -1,
      0,
      2,
      0
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des(input),1),7)),-1)"
  },
  {
    "input": "input : list = [-1, -1, 2, 0, 2, -1]\noutput : list = [4, 4, 2, 1, 1, 1]",
    "output": "generated_output : list = sort_des(take(sub_n(reverse(sub_n([-1, -1, 2, 0, 2, -1],-1)),-1),26))",
    "io_inp": [
      -1,
      -1,
      2,
      0,
      2,
      -1
    ],
    "io_out": [
      4,
      4,
      2,
      1,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(reverse(sub_n(input,-1)),-1),26))"
  },
  {
    "input": "input : list = [5, 4, 2, 0]\noutput : list = [1, 3, 5, 6]",
    "output": "generated_output : list = sub_n(sort_asc(take(take(sort_asc([5, 4, 2, 0]),13),5)),-1)",
    "io_inp": [
      5,
      4,
      2,
      0
    ],
    "io_out": [
      1,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(take(sort_asc(input),13),5)),-1)"
  },
  {
    "input": "input : list = [-2, 1, 0, -1, -1, -1]\noutput : list = [2, 0, -2, -2, -2, -4]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sort_asc(reverse([-2, 1, 0, -1, -1, -1])),-2)),-1)",
    "io_inp": [
      -2,
      1,
      0,
      -1,
      -1,
      -1
    ],
    "io_out": [
      2,
      0,
      -2,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sort_asc(reverse(input)),-2)),-1)"
  },
  {
    "input": "input : list = [-1, -2, -3, -5, 4, 5]\noutput : list = [5, 4, -1, -2, -3, -5]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc([-1, -2, -3, -5, 4, 5])))",
    "io_inp": [
      -1,
      -2,
      -3,
      -5,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      -1,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-4, -9]",
    "output": "generated_output : list = sort_des(sub_n([-5, 0],4))",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -4,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,4))"
  },
  {
    "input": "input : list = [-1, 4, -2, 4]\noutput : list = [4, 4, -6, -8]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(sub_n([-1, 4, -2, 4],4)),2),4))",
    "io_inp": [
      -1,
      4,
      -2,
      4
    ],
    "io_out": [
      4,
      4,
      -6,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(sub_n(input,4)),2),4))"
  },
  {
    "input": "input : list = [-4, -4, 4, -1, 4]\noutput : list = [-11, -11, 9, 21, 21]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(take(sort_des([-4, -4, 4, -1, 4]),25),-4)),-5)",
    "io_inp": [
      -4,
      -4,
      4,
      -1,
      4
    ],
    "io_out": [
      -11,
      -11,
      9,
      21,
      21
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(take(sort_des(input),25),-4)),-5)"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [-6, -4, -2]",
    "output": "generated_output : list = sort_asc(add_n([-3, -1, 1],-3))",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-3))"
  },
  {
    "input": "input : list = [1, 2, 5, 4, -2, -2]\noutput : list = [-11, -11, -8, -7, -5, -4]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sub_n([1, 2, 5, 4, -2, -2],5)),-1)),-3)",
    "io_inp": [
      1,
      2,
      5,
      4,
      -2,
      -2
    ],
    "io_out": [
      -11,
      -11,
      -8,
      -7,
      -5,
      -4
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sub_n(input,5)),-1)),-3)"
  },
  {
    "input": "input : list = [2, -4, -4, 4]\noutput : list = [-4, 14, 14, -10]",
    "output": "generated_output : list = add_n(take(mul_n(add_n(add_n([2, -4, -4, 4],-5),3),-3),28),-4)",
    "io_inp": [
      2,
      -4,
      -4,
      4
    ],
    "io_out": [
      -4,
      14,
      14,
      -10
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(add_n(add_n(input,-5),3),-3),28),-4)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [12, 9]",
    "output": "generated_output : list = take(sort_des(add_n(add_n(sort_des([1, 4]),3),5)),18)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(add_n(sort_des(input),3),5)),18)"
  },
  {
    "input": "input : list = [-2, 2, 0, 2, 0]\noutput : list = [4, 0, 4, 0]",
    "output": "generated_output : list = mul_n(drop([-2, 2, 0, 2, 0],1),2)",
    "io_inp": [
      -2,
      2,
      0,
      2,
      0
    ],
    "io_out": [
      4,
      0,
      4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,1),2)"
  },
  {
    "input": "input : list = [-2, 1, 0, -1]\noutput : list = [-13, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(take([-2, 1, 0, -1],2))),5),3)",
    "io_inp": [
      -2,
      1,
      0,
      -1
    ],
    "io_out": [
      -13,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(sort_asc(take(input,2))),5),3)"
  },
  {
    "input": "input : list = [3, -2, 4, 1, 2]\noutput : list = [5]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(take([3, -2, 4, 1, 2],1),5),-3),5))",
    "io_inp": [
      3,
      -2,
      4,
      1,
      2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(take(input,1),5),-3),5))"
  },
  {
    "input": "input : list = [-5, -2, -5, 0]\noutput : list = [-15, -6, -15, 0]",
    "output": "generated_output : list = mul_n([-5, -2, -5, 0],3)",
    "io_inp": [
      -5,
      -2,
      -5,
      0
    ],
    "io_out": [
      -15,
      -6,
      -15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [1, -4, 1, -3, -1]\noutput : list = [-2, -7, -2, -6, -4]",
    "output": "generated_output : list = take(sub_n(add_n(sub_n(sub_n([1, -4, 1, -3, -1],-2),2),2),5),31)",
    "io_inp": [
      1,
      -4,
      1,
      -3,
      -1
    ],
    "io_out": [
      -2,
      -7,
      -2,
      -6,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(add_n(sub_n(sub_n(input,-2),2),2),5),31)"
  },
  {
    "input": "input : list = [1, -4, -3]\noutput : list = [-4, -3, 1]",
    "output": "generated_output : list = take(sort_asc([1, -4, -3]),18)",
    "io_inp": [
      1,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),18)"
  },
  {
    "input": "input : list = [5, 5, 3, -5, 5, 2]\noutput : list = [-98, 42, 62, 102, 102, 102]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse([5, 5, 3, -5, 5, 2]),4)),5),2)",
    "io_inp": [
      5,
      5,
      3,
      -5,
      5,
      2
    ],
    "io_out": [
      -98,
      42,
      62,
      102,
      102,
      102
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(mul_n(reverse(input),4)),5),2)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(take(sub_n(sub_n([-4, -3],-5),-2),21)),1)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sub_n(sub_n(input,-5),-2),21)),1)"
  },
  {
    "input": "input : list = [-3, 2, 4, -2]\noutput : list = [-3, -9, 9]",
    "output": "generated_output : list = sub_n(take(add_n(mul_n(drop([-3, 2, 4, -2],1),-3),2),32),-1)",
    "io_inp": [
      -3,
      2,
      4,
      -2
    ],
    "io_out": [
      -3,
      -9,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(mul_n(drop(input,1),-3),2),32),-1)"
  },
  {
    "input": "input : list = [0, 3, 1, -1]\noutput : list = [0, 2, 4, 8]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(sort_des([0, 3, 1, -1]),-1))),2)",
    "io_inp": [
      0,
      3,
      1,
      -1
    ],
    "io_out": [
      0,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sub_n(sort_des(input),-1))),2)"
  },
  {
    "input": "input : list = [-3, -4, 5]\noutput : list = [-4, 5]",
    "output": "generated_output : list = drop([-3, -4, 5],1)",
    "io_inp": [
      -3,
      -4,
      5
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, -2, 1, 2, 1, 1]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(drop([5, -2, 1, 2, 1, 1],3)))),49)",
    "io_inp": [
      5,
      -2,
      1,
      2,
      1,
      1
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(drop(input,3)))),49)"
  },
  {
    "input": "input : list = [1, 0, -5, 0, -2, 0]\noutput : list = [1, -1, -1, -1, -5, -11]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(reverse([1, 0, -5, 0, -2, 0]),2))),1)",
    "io_inp": [
      1,
      0,
      -5,
      0,
      -2,
      0
    ],
    "io_out": [
      1,
      -1,
      -1,
      -1,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(mul_n(reverse(input),2))),1)"
  },
  {
    "input": "input : list = [5, 3]\noutput : list = [4, 6]",
    "output": "generated_output : list = sort_asc(add_n([5, 3],1))",
    "io_inp": [
      5,
      3
    ],
    "io_out": [
      4,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,1))"
  },
  {
    "input": "input : list = [5, -3, 0, 2]\noutput : list = [-10, 6]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(take([5, -3, 0, 2],2),-2))),36)",
    "io_inp": [
      5,
      -3,
      0,
      2
    ],
    "io_out": [
      -10,
      6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(take(input,2),-2))),36)"
  },
  {
    "input": "input : list = [3, 4, 1, 4, 4]\noutput : list = [-16, -12, -10, -10, -10]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_asc(add_n([3, 4, 1, 4, 4],-4)),8),5),2)",
    "io_inp": [
      3,
      4,
      1,
      4,
      4
    ],
    "io_out": [
      -16,
      -12,
      -10,
      -10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_asc(add_n(input,-4)),8),5),2)"
  },
  {
    "input": "input : list = [2, -2, 3, -1]\noutput : list = [20, 40, 15, 35]",
    "output": "generated_output : list = mul_n(take(reverse(mul_n(sub_n([2, -2, 3, -1],-5),5)),16),1)",
    "io_inp": [
      2,
      -2,
      3,
      -1
    ],
    "io_out": [
      20,
      40,
      15,
      35
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(mul_n(sub_n(input,-5),5)),16),1)"
  },
  {
    "input": "input : list = [4, 5, -2, 1]\noutput : list = [1, 4, 8]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(drop([4, 5, -2, 1],1)),5),2),-4)",
    "io_inp": [
      4,
      5,
      -2,
      1
    ],
    "io_out": [
      1,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(drop(input,1)),5),2),-4)"
  },
  {
    "input": "input : list = [4, 4, 3, 2, -4, -4]\noutput : list = [-8, -8, -2]",
    "output": "generated_output : list = take(sort_asc(add_n([4, 4, 3, 2, -4, -4],-4)),3)",
    "io_inp": [
      4,
      4,
      3,
      2,
      -4,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-4)),3)"
  },
  {
    "input": "input : list = [3, 1, 4, 2, 0, 4]\noutput : list = [3, 3, 1, -1]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(drop([3, 1, 4, 2, 0, 4],2),-1)),2),36)",
    "io_inp": [
      3,
      1,
      4,
      2,
      0,
      4
    ],
    "io_out": [
      3,
      3,
      1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(drop(input,2),-1)),2),36)"
  },
  {
    "input": "input : list = [-2, 3, 4]\noutput : list = [7, 8]",
    "output": "generated_output : list = take(sub_n(drop([-2, 3, 4],1),-4),24)",
    "io_inp": [
      -2,
      3,
      4
    ],
    "io_out": [
      7,
      8
    ],
    "output_masked": "generated_output : list = take(sub_n(drop(input,1),-4),24)"
  },
  {
    "input": "input : list = [4, -1, -4, -3]\noutput : list = [-15, -12, -6, 9]",
    "output": "generated_output : list = sub_n(take(take(sort_asc(mul_n([4, -1, -4, -3],3)),18),18),3)",
    "io_inp": [
      4,
      -1,
      -4,
      -3
    ],
    "io_out": [
      -15,
      -12,
      -6,
      9
    ],
    "output_masked": "generated_output : list = sub_n(take(take(sort_asc(mul_n(input,3)),18),18),3)"
  },
  {
    "input": "input : list = [-2, 1, 2, 0, 3, -5]\noutput : list = [3, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(mul_n(drop([-2, 1, 2, 0, 3, -5],4),1))),14)",
    "io_inp": [
      -2,
      1,
      2,
      0,
      3,
      -5
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(mul_n(drop(input,4),1))),14)"
  },
  {
    "input": "input : list = [4, 3, 4, -2, -4]\noutput : list = [-20, -20, -15, 10, 20]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc([4, 3, 4, -2, -4]),-5)),1)",
    "io_inp": [
      4,
      3,
      4,
      -2,
      -4
    ],
    "io_out": [
      -20,
      -20,
      -15,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(input),-5)),1)"
  },
  {
    "input": "input : list = [-1, 5, -4, 0]\noutput : list = [3]",
    "output": "generated_output : list = add_n(take(take([-1, 5, -4, 0],1),9),4)",
    "io_inp": [
      -1,
      5,
      -4,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = add_n(take(take(input,1),9),4)"
  },
  {
    "input": "input : list = [3, -1, -5, 3]\noutput : list = [3, -5, -1, 3]",
    "output": "generated_output : list = reverse([3, -1, -5, 3])",
    "io_inp": [
      3,
      -1,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [15, 15, -6]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n([-5, 2, -5],-3)))))",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      15,
      15,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(mul_n(input,-3)))))"
  },
  {
    "input": "input : list = [5, 1, -2, 5, 1, 3]\noutput : list = [-2, 1, 5]",
    "output": "generated_output : list = sort_asc(take([5, 1, -2, 5, 1, 3],3))",
    "io_inp": [
      5,
      1,
      -2,
      5,
      1,
      3
    ],
    "io_out": [
      -2,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,3))"
  },
  {
    "input": "input : list = [5, 1, -5]\noutput : list = [12, 4]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(take(mul_n([5, 1, -5],2),2)),-1),-1)",
    "io_inp": [
      5,
      1,
      -5
    ],
    "io_out": [
      12,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(take(mul_n(input,2),2)),-1),-1)"
  },
  {
    "input": "input : list = [-5, -3, -3]\noutput : list = [-8, -6, -6]",
    "output": "generated_output : list = add_n(sub_n([-5, -3, -3],1),-2)",
    "io_inp": [
      -5,
      -3,
      -3
    ],
    "io_out": [
      -8,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,1),-2)"
  },
  {
    "input": "input : list = [0, 1, -1]\noutput : list = [-2, 0, 2]",
    "output": "generated_output : list = sort_asc(mul_n([0, 1, -1],2))",
    "io_inp": [
      0,
      1,
      -1
    ],
    "io_out": [
      -2,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-1, -4, 0, -2, 4, -4]\noutput : list = [1, 9, 3, 5, 1, 4]",
    "output": "generated_output : list = sub_n(reverse(sub_n(add_n(sub_n([-1, -4, 0, -2, 4, -4],-5),1),5)),-4)",
    "io_inp": [
      -1,
      -4,
      0,
      -2,
      4,
      -4
    ],
    "io_out": [
      1,
      9,
      3,
      5,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(add_n(sub_n(input,-5),1),5)),-4)"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-3, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(take(add_n([4, -2],-1),6))))",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(take(add_n(input,-1),6))))"
  },
  {
    "input": "input : list = [1, 4, 1, 2, -3, 5]\noutput : list = [10, 25, 10, 15, -10, 30]",
    "output": "generated_output : list = sub_n(mul_n([1, 4, 1, 2, -3, 5],5),-5)",
    "io_inp": [
      1,
      4,
      1,
      2,
      -3,
      5
    ],
    "io_out": [
      10,
      25,
      10,
      15,
      -10,
      30
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,5),-5)"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [20, 0, 4]",
    "output": "generated_output : list = take(mul_n([5, 0, 1],4),9)",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      20,
      0,
      4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,4),9)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-8, -8]",
    "output": "generated_output : list = add_n(add_n(take(add_n(add_n([-1, -1],-1),-3),14),2),-5)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -8,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(add_n(add_n(input,-1),-3),14),2),-5)"
  },
  {
    "input": "input : list = [0, 4, 5, -4]\noutput : list = [4, 0]",
    "output": "generated_output : list = reverse(sort_asc(take([0, 4, 5, -4],2)))",
    "io_inp": [
      0,
      4,
      5,
      -4
    ],
    "io_out": [
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [-3, -1, 0]\noutput : list = [-3, 1, 3]",
    "output": "generated_output : list = sub_n(mul_n(add_n([-3, -1, 0],3),2),3)",
    "io_inp": [
      -3,
      -1,
      0
    ],
    "io_out": [
      -3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(input,3),2),3)"
  },
  {
    "input": "input : list = [-4, 1, -2, 3, 0]\noutput : list = [-1, -61, 39]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(reverse(drop([-4, 1, -2, 3, 0],2)),-4),5),1)",
    "io_inp": [
      -4,
      1,
      -2,
      3,
      0
    ],
    "io_out": [
      -1,
      -61,
      39
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(reverse(drop(input,2)),-4),5),1)"
  },
  {
    "input": "input : list = [5, 0, -3, 0, 1]\noutput : list = [1, 0, -3]",
    "output": "generated_output : list = sort_des(take(take(sort_asc(drop([5, 0, -3, 0, 1],2)),6),40))",
    "io_inp": [
      5,
      0,
      -3,
      0,
      1
    ],
    "io_out": [
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_asc(drop(input,2)),6),40))"
  },
  {
    "input": "input : list = [2, 5, 2, 0]\noutput : list = [-5, 1, 1, 5]",
    "output": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(mul_n([2, 5, 2, 0],-2)),-5)))",
    "io_inp": [
      2,
      5,
      2,
      0
    ],
    "io_out": [
      -5,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sub_n(sort_asc(mul_n(input,-2)),-5)))"
  },
  {
    "input": "input : list = [-5, -1, 5, 2]\noutput : list = [-4, 0, 6, 3]",
    "output": "generated_output : list = add_n([-5, -1, 5, 2],1)",
    "io_inp": [
      -5,
      -1,
      5,
      2
    ],
    "io_out": [
      -4,
      0,
      6,
      3
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-24, 26]",
    "output": "generated_output : list = reverse(reverse(add_n(sort_asc(mul_n([-5, 5],-5)),1)))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -24,
      26
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(sort_asc(mul_n(input,-5)),1)))"
  },
  {
    "input": "input : list = [-1, -5, -5, 0, -2, 5]\noutput : list = [3, -1, -1, 4, 2, 9]",
    "output": "generated_output : list = reverse(take(reverse(take(add_n([-1, -5, -5, 0, -2, 5],4),17)),9))",
    "io_inp": [
      -1,
      -5,
      -5,
      0,
      -2,
      5
    ],
    "io_out": [
      3,
      -1,
      -1,
      4,
      2,
      9
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(add_n(input,4),17)),9))"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [32]",
    "output": "generated_output : list = add_n(take(mul_n(sub_n(take([-4, 5, 1],1),3),-4),31),4)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      32
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(sub_n(take(input,1),3),-4),31),4)"
  },
  {
    "input": "input : list = [0, 1]\noutput : list = [-2, -3]",
    "output": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc([0, 1])),-1),-4))",
    "io_inp": [
      0,
      1
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sort_asc(sort_asc(input)),-1),-4))"
  },
  {
    "input": "input : list = [-5, 0, 1, 3, 0]\noutput : list = [-180, -60, 0, 0, 300]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse([-5, 0, 1, 3, 0]),4),5),-3))",
    "io_inp": [
      -5,
      0,
      1,
      3,
      0
    ],
    "io_out": [
      -180,
      -60,
      0,
      0,
      300
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(mul_n(reverse(input),4),5),-3))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [-60, 75]",
    "output": "generated_output : list = mul_n(take(mul_n(sort_asc([-4, 5]),3),23),5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      -60,
      75
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(sort_asc(input),3),23),5)"
  },
  {
    "input": "input : list = [2, 0, 2]\noutput : list = [18, 18, 0]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_asc([2, 0, 2]))),3),3)",
    "io_inp": [
      2,
      0,
      2
    ],
    "io_out": [
      18,
      18,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_des(sort_asc(input))),3),3)"
  },
  {
    "input": "input : list = [-3, -5, -5, -5, 4]\noutput : list = [0, -2, -2, -2, 7]",
    "output": "generated_output : list = sub_n([-3, -5, -5, -5, 4],-3)",
    "io_inp": [
      -3,
      -5,
      -5,
      -5,
      4
    ],
    "io_out": [
      0,
      -2,
      -2,
      -2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, 2, 0, -1, 2]\noutput : list = [0, 2, 6, 6, 12]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sub_n([5, 2, 0, -1, 2],-1)))),2)",
    "io_inp": [
      5,
      2,
      0,
      -1,
      2
    ],
    "io_out": [
      0,
      2,
      6,
      6,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_asc(sub_n(input,-1)))),2)"
  },
  {
    "input": "input : list = [1, -4, -1, 1]\noutput : list = [-5, 10, 20, 20]",
    "output": "generated_output : list = take(mul_n(sub_n(add_n(sort_asc([1, -4, -1, 1]),2),-1),5),47)",
    "io_inp": [
      1,
      -4,
      -1,
      1
    ],
    "io_out": [
      -5,
      10,
      20,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(add_n(sort_asc(input),2),-1),5),47)"
  },
  {
    "input": "input : list = [3, 5, -1]\noutput : list = [0]",
    "output": "generated_output : list = reverse(add_n(sub_n(drop(drop([3, 5, -1],1),1),-2),-1))",
    "io_inp": [
      3,
      5,
      -1
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(drop(drop(input,1),1),-2),-1))"
  },
  {
    "input": "input : list = [4, -5, 2, 5, -2, 2]\noutput : list = [-20, -5, 15, 15, 25, 30]",
    "output": "generated_output : list = mul_n(add_n(sort_asc([4, -5, 2, 5, -2, 2]),1),5)",
    "io_inp": [
      4,
      -5,
      2,
      5,
      -2,
      2
    ],
    "io_out": [
      -20,
      -5,
      15,
      15,
      25,
      30
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(input),1),5)"
  },
  {
    "input": "input : list = [-4, -2, -1, 5, -1]\noutput : list = [5, -1]",
    "output": "generated_output : list = drop([-4, -2, -1, 5, -1],3)",
    "io_inp": [
      -4,
      -2,
      -1,
      5,
      -1
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,3)"
  },
  {
    "input": "input : list = [-5, 4, 2, 3]\noutput : list = [-16, -12, -8, 20]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(sort_des(reverse([-5, 4, 2, 3])),-4)))",
    "io_inp": [
      -5,
      4,
      2,
      3
    ],
    "io_out": [
      -16,
      -12,
      -8,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(sort_des(reverse(input)),-4)))"
  },
  {
    "input": "input : list = [2, 5, -5]\noutput : list = [25, -10, -25]",
    "output": "generated_output : list = sub_n(sub_n(take(sort_des(mul_n([2, 5, -5],-5)),4),2),-2)",
    "io_inp": [
      2,
      5,
      -5
    ],
    "io_out": [
      25,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sort_des(mul_n(input,-5)),4),2),-2)"
  },
  {
    "input": "input : list = [-4, 3, 1, 1, -2, 5]\noutput : list = [-20, -12, -4, -4, 8, 16]",
    "output": "generated_output : list = mul_n(sort_des(sort_des([-4, 3, 1, 1, -2, 5])),-4)",
    "io_inp": [
      -4,
      3,
      1,
      1,
      -2,
      5
    ],
    "io_out": [
      -20,
      -12,
      -4,
      -4,
      8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(input)),-4)"
  },
  {
    "input": "input : list = [-3, 5, 5, -3]\noutput : list = [6, 6, -2, -2]",
    "output": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc([-3, 5, 5, -3])))),1)",
    "io_inp": [
      -3,
      5,
      5,
      -3
    ],
    "io_out": [
      6,
      6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_des(reverse(sort_asc(input)))),1)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [11, 9]",
    "output": "generated_output : list = add_n(reverse(sub_n(reverse(add_n([3, 1],4)),1)),5)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      11,
      9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(reverse(add_n(input,4)),1)),5)"
  },
  {
    "input": "input : list = [2, -4, 0, 2, -3]\noutput : list = [-2, -6, 0]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(take([2, -4, 0, 2, -3],3),22)),-2),1)",
    "io_inp": [
      2,
      -4,
      0,
      2,
      -3
    ],
    "io_out": [
      -2,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(take(input,3),22)),-2),1)"
  },
  {
    "input": "input : list = [1, 1, 2, 3, 5]\noutput : list = [3, 1]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(mul_n([1, 1, 2, 3, 5],1),-1)),3),2)",
    "io_inp": [
      1,
      1,
      2,
      3,
      5
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(mul_n(input,1),-1)),3),2)"
  },
  {
    "input": "input : list = [5, 5, 5]\noutput : list = [55, 55, 55]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([5, 5, 5],-2),1),-5)",
    "io_inp": [
      5,
      5,
      5
    ],
    "io_out": [
      55,
      55,
      55
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,-2),1),-5)"
  },
  {
    "input": "input : list = [4, -2, 0, -1, -4, -5]\noutput : list = [5, -3, -5, -7, -11, -13]",
    "output": "generated_output : list = sort_des(add_n(sub_n(sub_n(mul_n([4, -2, 0, -1, -4, -5],2),4),3),4))",
    "io_inp": [
      4,
      -2,
      0,
      -1,
      -4,
      -5
    ],
    "io_out": [
      5,
      -3,
      -5,
      -7,
      -11,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(sub_n(mul_n(input,2),4),3),4))"
  },
  {
    "input": "input : list = [1, -4, -5]\noutput : list = [-6, -5]",
    "output": "generated_output : list = add_n(take(sub_n(reverse(drop([1, -4, -5],1)),2),25),1)",
    "io_inp": [
      1,
      -4,
      -5
    ],
    "io_out": [
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(reverse(drop(input,1)),2),25),1)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [10, 7]",
    "output": "generated_output : list = sub_n(reverse(sub_n(reverse(sort_des([-1, 2])),-4)),-4)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      10,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(reverse(sort_des(input)),-4)),-4)"
  },
  {
    "input": "input : list = [4, 4, -2, -1, -5, -1]\noutput : list = [-7, -4, -3, -3, 2, 2]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n([4, 4, -2, -1, -5, -1],-2))),22))",
    "io_inp": [
      4,
      4,
      -2,
      -1,
      -5,
      -1
    ],
    "io_out": [
      -7,
      -4,
      -3,
      -3,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_asc(add_n(input,-2))),22))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-3, -1]",
    "output": "generated_output : list = reverse([-1, -3])",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 2, -2, 1, 3]\noutput : list = [0, -6, -15, -3, -18]",
    "output": "generated_output : list = mul_n(reverse(add_n([-3, 2, -2, 1, 3],-3)),3)",
    "io_inp": [
      -3,
      2,
      -2,
      1,
      3
    ],
    "io_out": [
      0,
      -6,
      -15,
      -3,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,-3)),3)"
  },
  {
    "input": "input : list = [-2, 3, -5, 4, -3]\noutput : list = [-120, -72, -48, 72, 96]",
    "output": "generated_output : list = take(mul_n(mul_n(mul_n(sort_asc([-2, 3, -5, 4, -3]),-4),-3),2),22)",
    "io_inp": [
      -2,
      3,
      -5,
      4,
      -3
    ],
    "io_out": [
      -120,
      -72,
      -48,
      72,
      96
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(mul_n(sort_asc(input),-4),-3),2),22)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [-2, -8]",
    "output": "generated_output : list = take(sort_des(sort_des(reverse(sub_n([-3, 3],5)))),31)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(reverse(sub_n(input,5)))),31)"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [-6, 3]",
    "output": "generated_output : list = add_n(sort_asc([-5, 4]),-1)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      -6,
      3
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(input),-1)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-13, 15]",
    "output": "generated_output : list = take(sort_asc(reverse(sub_n(mul_n([4, -3],4),1))),14)",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -13,
      15
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sub_n(mul_n(input,4),1))),14)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-4, 1]",
    "output": "generated_output : list = reverse([1, -4])",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-2, -2, 0, 5, 0, 2]\noutput : list = [64, 64, 32, 32, 0, -48]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sort_asc([-2, -2, 0, 5, 0, 2])),-2),-4),4)",
    "io_inp": [
      -2,
      -2,
      0,
      5,
      0,
      2
    ],
    "io_out": [
      64,
      64,
      32,
      32,
      0,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_asc(sort_asc(input)),-2),-4),4)"
  },
  {
    "input": "input : list = [2, 0, -1, -3, -5]\noutput : list = [2]",
    "output": "generated_output : list = take(take(reverse(reverse(take([2, 0, -1, -3, -5],1))),27),25)",
    "io_inp": [
      2,
      0,
      -1,
      -3,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(take(reverse(reverse(take(input,1))),27),25)"
  },
  {
    "input": "input : list = [-2, 3, -3, 4, -3]\noutput : list = [-3, -3, -2, 3, 4]",
    "output": "generated_output : list = sort_asc(take(take(sort_asc(sort_des([-2, 3, -3, 4, -3])),22),31))",
    "io_inp": [
      -2,
      3,
      -3,
      4,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sort_asc(sort_des(input)),22),31))"
  },
  {
    "input": "input : list = [-5, 4, -1, -2, -5]\noutput : list = [-1, -2, -5]",
    "output": "generated_output : list = drop([-5, 4, -1, -2, -5],2)",
    "io_inp": [
      -5,
      4,
      -1,
      -2,
      -5
    ],
    "io_out": [
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, -5, 0, -2]\noutput : list = [-5, -2, 0]",
    "output": "generated_output : list = sort_asc(drop([-4, -5, 0, -2],1))",
    "io_inp": [
      -4,
      -5,
      0,
      -2
    ],
    "io_out": [
      -5,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [4, -5, -4, -5]\noutput : list = [21, 23]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(add_n(drop([4, -5, -4, -5],2),-1),3),-2),-5)",
    "io_inp": [
      4,
      -5,
      -4,
      -5
    ],
    "io_out": [
      21,
      23
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(add_n(drop(input,2),-1),3),-2),-5)"
  },
  {
    "input": "input : list = [0, 4, 3, 3, -4]\noutput : list = [4, 3, 3, 0, -4]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc([0, 4, 3, 3, -4])))",
    "io_inp": [
      0,
      4,
      3,
      3,
      -4
    ],
    "io_out": [
      4,
      3,
      3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(input)))"
  },
  {
    "input": "input : list = [4, -1, -3]\noutput : list = [9, 4, 2]",
    "output": "generated_output : list = reverse(take(add_n(reverse([4, -1, -3]),5),3))",
    "io_inp": [
      4,
      -1,
      -3
    ],
    "io_out": [
      9,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(reverse(input),5),3))"
  },
  {
    "input": "input : list = [5, 1, 4, -4, 2, 5]\noutput : list = [-22, -2, 2, 10, 14, 14]",
    "output": "generated_output : list = take(sort_asc(sub_n(add_n(mul_n([5, 1, 4, -4, 2, 5],4),-1),5)),33)",
    "io_inp": [
      5,
      1,
      4,
      -4,
      2,
      5
    ],
    "io_out": [
      -22,
      -2,
      2,
      10,
      14,
      14
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(add_n(mul_n(input,4),-1),5)),33)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-3, 4]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des([4, -3])))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [-2, 4, 3, -2, 2]\noutput : list = [16, 12, 8, -8, -8]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(reverse([-2, 4, 3, -2, 2]),4)))",
    "io_inp": [
      -2,
      4,
      3,
      -2,
      2
    ],
    "io_out": [
      16,
      12,
      8,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(reverse(input),4)))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [1, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sort_des([5, 0]),1)),2))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      1,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sort_des(input),1)),2))"
  },
  {
    "input": "input : list = [-5, 5, -5, -5]\noutput : list = [-3, -3, 7, -3]",
    "output": "generated_output : list = reverse(add_n([-5, 5, -5, -5],2))",
    "io_inp": [
      -5,
      5,
      -5,
      -5
    ],
    "io_out": [
      -3,
      -3,
      7,
      -3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,2))"
  },
  {
    "input": "input : list = [3, 4, 3, 0, 0, 2]\noutput : list = [0, 0, 2, 3, 3, 4]",
    "output": "generated_output : list = take(sort_asc(take(sort_des(reverse([3, 4, 3, 0, 0, 2])),10)),10)",
    "io_inp": [
      3,
      4,
      3,
      0,
      0,
      2
    ],
    "io_out": [
      0,
      0,
      2,
      3,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sort_des(reverse(input)),10)),10)"
  },
  {
    "input": "input : list = [2, 1, 5, 3, 5]\noutput : list = [3, 1, -1, -5, -5]",
    "output": "generated_output : list = take(add_n(take(mul_n(sort_asc([2, 1, 5, 3, 5]),-2),20),5),12)",
    "io_inp": [
      2,
      1,
      5,
      3,
      5
    ],
    "io_out": [
      3,
      1,
      -1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(add_n(take(mul_n(sort_asc(input),-2),20),5),12)"
  },
  {
    "input": "input : list = [-2, 4, -4, -5, -2]\noutput : list = [4, -2, -2, -4, -5]",
    "output": "generated_output : list = sort_des([-2, 4, -4, -5, -2])",
    "io_inp": [
      -2,
      4,
      -4,
      -5,
      -2
    ],
    "io_out": [
      4,
      -2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 5, -2, 1, -2, 1]\noutput : list = [-15, 6, -3, 6, -3]",
    "output": "generated_output : list = take(mul_n(drop([2, 5, -2, 1, -2, 1],1),-3),17)",
    "io_inp": [
      2,
      5,
      -2,
      1,
      -2,
      1
    ],
    "io_out": [
      -15,
      6,
      -3,
      6,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(drop(input,1),-3),17)"
  },
  {
    "input": "input : list = [-4, -3, -1, 1, 5]\noutput : list = [-25, -5, 5, 15, 20]",
    "output": "generated_output : list = mul_n(reverse([-4, -3, -1, 1, 5]),-5)",
    "io_inp": [
      -4,
      -3,
      -1,
      1,
      5
    ],
    "io_out": [
      -25,
      -5,
      5,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [-3, -2, 3]\noutput : list = [12]",
    "output": "generated_output : list = sub_n(mul_n(take([-3, -2, 3],1),-5),3)",
    "io_inp": [
      -3,
      -2,
      3
    ],
    "io_out": [
      12
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(take(input,1),-5),3)"
  },
  {
    "input": "input : list = [1, 5, -4, 4, 1]\noutput : list = [-20, -16, -4, -4, 16]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(sort_asc([1, 5, -4, 4, 1])),1),-4)",
    "io_inp": [
      1,
      5,
      -4,
      4,
      1
    ],
    "io_out": [
      -20,
      -16,
      -4,
      -4,
      16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(sort_asc(input)),1),-4)"
  },
  {
    "input": "input : list = [3, 1, 4, -4]\noutput : list = [-2, -3, -5, -10]",
    "output": "generated_output : list = sort_des(sub_n(add_n(take(sort_des([3, 1, 4, -4]),9),-5),1))",
    "io_inp": [
      3,
      1,
      4,
      -4
    ],
    "io_out": [
      -2,
      -3,
      -5,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(take(sort_des(input),9),-5),1))"
  },
  {
    "input": "input : list = [0, 1, 0, -4]\noutput : list = [-4, 0, 0, 1]",
    "output": "generated_output : list = sort_asc(sort_des([0, 1, 0, -4]))",
    "io_inp": [
      0,
      1,
      0,
      -4
    ],
    "io_out": [
      -4,
      0,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [0, 2, 0, 1]\noutput : list = [2, 0, 1]",
    "output": "generated_output : list = drop([0, 2, 0, 1],1)",
    "io_inp": [
      0,
      2,
      0,
      1
    ],
    "io_out": [
      2,
      0,
      1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, 4, -5, 1]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = take(sort_des(mul_n(sort_des(sort_des([-3, 4, -5, 1])),-1)),3)",
    "io_inp": [
      -3,
      4,
      -5,
      1
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(sort_des(sort_des(input)),-1)),3)"
  },
  {
    "input": "input : list = [-2, -1]\noutput : list = [-2, -1]",
    "output": "generated_output : list = sort_asc([-2, -1])",
    "io_inp": [
      -2,
      -1
    ],
    "io_out": [
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-4, 0, 0]\noutput : list = [0, 0, -12]",
    "output": "generated_output : list = mul_n(reverse(sort_asc([-4, 0, 0])),3)",
    "io_inp": [
      -4,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(input)),3)"
  },
  {
    "input": "input : list = [1, 4, 0, -2, 2, -1]\noutput : list = [-8, -4, -2, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(reverse(mul_n([1, 4, 0, -2, 2, -1],-2)))",
    "io_inp": [
      1,
      4,
      0,
      -2,
      2,
      -1
    ],
    "io_out": [
      -8,
      -4,
      -2,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(input,-2)))"
  },
  {
    "input": "input : list = [5, 2, 1, 0, 3, -4]\noutput : list = [3, 2, 1, 0, -4]",
    "output": "generated_output : list = sort_des(take(reverse(drop([5, 2, 1, 0, 3, -4],1)),17))",
    "io_inp": [
      5,
      2,
      1,
      0,
      3,
      -4
    ],
    "io_out": [
      3,
      2,
      1,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(drop(input,1)),17))"
  },
  {
    "input": "input : list = [3, -3, 1, -1, -4]\noutput : list = [13, -17]",
    "output": "generated_output : list = sub_n(sort_des(mul_n(sub_n(take([3, -3, 1, -1, -4],2),-1),-5)),-3)",
    "io_inp": [
      3,
      -3,
      1,
      -1,
      -4
    ],
    "io_out": [
      13,
      -17
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(mul_n(sub_n(take(input,2),-1),-5)),-3)"
  },
  {
    "input": "input : list = [-3, 0, -2, 1, 3]\noutput : list = [-3, -2, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([-3, 0, -2, 1, 3])",
    "io_inp": [
      -3,
      0,
      -2,
      1,
      3
    ],
    "io_out": [
      -3,
      -2,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 0, 3, -3, -3]\noutput : list = [28, 28, 16, 4, 0]",
    "output": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des([4, 0, 3, -3, -3]),-4)),-4))",
    "io_inp": [
      4,
      0,
      3,
      -3,
      -3
    ],
    "io_out": [
      28,
      28,
      16,
      4,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(add_n(sort_des(input),-4)),-4))"
  },
  {
    "input": "input : list = [1, 1, 4, -4, -5, 3]\noutput : list = [1]",
    "output": "generated_output : list = take([1, 1, 4, -4, -5, 3],1)",
    "io_inp": [
      1,
      1,
      4,
      -4,
      -5,
      3
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [0, 5, 1, -1, 2, -2]\noutput : list = [-2, 2, -1, 1, 5, 0]",
    "output": "generated_output : list = reverse([0, 5, 1, -1, 2, -2])",
    "io_inp": [
      0,
      5,
      1,
      -1,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      -1,
      1,
      5,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -1, 5, 4, 0]\noutput : list = [-20, -4, 0, -24, -24]",
    "output": "generated_output : list = mul_n(sub_n(reverse(reverse(reverse([-1, -1, 5, 4, 0]))),5),4)",
    "io_inp": [
      -1,
      -1,
      5,
      4,
      0
    ],
    "io_out": [
      -20,
      -4,
      0,
      -24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(reverse(reverse(input))),5),4)"
  },
  {
    "input": "input : list = [2, -2, -4]\noutput : list = [30, 20, 0]",
    "output": "generated_output : list = take(mul_n(reverse(sort_des(sub_n([2, -2, -4],2))),-5),10)",
    "io_inp": [
      2,
      -2,
      -4
    ],
    "io_out": [
      30,
      20,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sort_des(sub_n(input,2))),-5),10)"
  },
  {
    "input": "input : list = [2, 0, -3, -5, -5]\noutput : list = [-4, -7, -9, -9]",
    "output": "generated_output : list = sort_des(add_n(add_n(drop(sub_n([2, 0, -3, -5, -5],-2),1),-3),-3))",
    "io_inp": [
      2,
      0,
      -3,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -7,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(drop(sub_n(input,-2),1),-3),-3))"
  },
  {
    "input": "input : list = [-3, 5, 5, 2]\noutput : list = [-15]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(take([-3, 5, 5, 2],1),-1),17),5),-5)",
    "io_inp": [
      -3,
      5,
      5,
      2
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(take(input,1),-1),17),5),-5)"
  },
  {
    "input": "input : list = [5, -1, -2, 1, 4, 5]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(take([5, -1, -2, 1, 4, 5],1),3)",
    "io_inp": [
      5,
      -1,
      -2,
      1,
      4,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,1),3)"
  },
  {
    "input": "input : list = [1, 3, 5, 2, 1]\noutput : list = [-21, -13, -9, -5, -5]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sort_asc([1, 3, 5, 2, 1])),-4),1))",
    "io_inp": [
      1,
      3,
      5,
      2,
      1
    ],
    "io_out": [
      -21,
      -13,
      -9,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(sort_asc(input)),-4),1))"
  },
  {
    "input": "input : list = [1, 4, 1, -4, 5]\noutput : list = [-30, -18, -3]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(drop([1, 4, 1, -4, 5],2))),-5),-3)",
    "io_inp": [
      1,
      4,
      1,
      -4,
      5
    ],
    "io_out": [
      -30,
      -18,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(drop(input,2))),-5),-3)"
  },
  {
    "input": "input : list = [2, -4, 0]\noutput : list = [2, 0, -4]",
    "output": "generated_output : list = sort_des(reverse([2, -4, 0]))",
    "io_inp": [
      2,
      -4,
      0
    ],
    "io_out": [
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, 4, 3, 1, 4]\noutput : list = [-21, 15, 11, 3, 15]",
    "output": "generated_output : list = add_n(add_n(mul_n([-5, 4, 3, 1, 4],4),2),-3)",
    "io_inp": [
      -5,
      4,
      3,
      1,
      4
    ],
    "io_out": [
      -21,
      15,
      11,
      3,
      15
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(input,4),2),-3)"
  },
  {
    "input": "input : list = [-4, 5, 4, 2, 0]\noutput : list = [5, 4, 2, 0, -4]",
    "output": "generated_output : list = take(sort_des([-4, 5, 4, 2, 0]),24)",
    "io_inp": [
      -4,
      5,
      4,
      2,
      0
    ],
    "io_out": [
      5,
      4,
      2,
      0,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(input),24)"
  },
  {
    "input": "input : list = [0, 0, -5, 4, 0, 4]\noutput : list = [0]",
    "output": "generated_output : list = take([0, 0, -5, 4, 0, 4],1)",
    "io_inp": [
      0,
      0,
      -5,
      4,
      0,
      4
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 5, 5, -5, -5]\noutput : list = [2]",
    "output": "generated_output : list = take([2, 5, 5, -5, -5],1)",
    "io_inp": [
      2,
      5,
      5,
      -5,
      -5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, -1, -1]\noutput : list = [1, 1, 4]",
    "output": "generated_output : list = sub_n(sort_asc(take(sort_asc(sort_des([2, -1, -1])),11)),-2)",
    "io_inp": [
      2,
      -1,
      -1
    ],
    "io_out": [
      1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(sort_asc(sort_des(input)),11)),-2)"
  },
  {
    "input": "input : list = [-1, -5, 5]\noutput : list = [5, -5, -1]",
    "output": "generated_output : list = reverse([-1, -5, 5])",
    "io_inp": [
      -1,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [2, 7]",
    "output": "generated_output : list = take(take(reverse(add_n(sort_des([-1, 4]),3)),20),31)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = take(take(reverse(add_n(sort_des(input),3)),20),31)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [-10, 2]",
    "output": "generated_output : list = sort_asc(mul_n(reverse([1, -5]),2))",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      -10,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(input),2))"
  },
  {
    "input": "input : list = [5, 4, 5, -1, 2, -5]\noutput : list = [-5, 2, -1, 5, 4, 5]",
    "output": "generated_output : list = reverse([5, 4, 5, -1, 2, -5])",
    "io_inp": [
      5,
      4,
      5,
      -1,
      2,
      -5
    ],
    "io_out": [
      -5,
      2,
      -1,
      5,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -4, -2, 1, -4]\noutput : list = [-20, -10, 5]",
    "output": "generated_output : list = sort_asc(take(mul_n(drop([4, -4, -2, 1, -4],2),5),26))",
    "io_inp": [
      4,
      -4,
      -2,
      1,
      -4
    ],
    "io_out": [
      -20,
      -10,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(drop(input,2),5),26))"
  },
  {
    "input": "input : list = [-1, -1, 5, -3]\noutput : list = [-40, 0, 0, 120]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(add_n([-1, -1, 5, -3],1)),-4),-5),17)",
    "io_inp": [
      -1,
      -1,
      5,
      -3
    ],
    "io_out": [
      -40,
      0,
      0,
      120
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(add_n(input,1)),-4),-5),17)"
  },
  {
    "input": "input : list = [-3, 0, 5]\noutput : list = [5, 0, -3]",
    "output": "generated_output : list = sort_des([-3, 0, 5])",
    "io_inp": [
      -3,
      0,
      5
    ],
    "io_out": [
      5,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 4, 1]\noutput : list = [3, 6, 9]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(sort_des([-2, 4, 1]),5),1))",
    "io_inp": [
      -2,
      4,
      1
    ],
    "io_out": [
      3,
      6,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(sort_des(input),5),1))"
  },
  {
    "input": "input : list = [2, 1, 5, -4, 3]\noutput : list = [3, 1, 9, -9, 5]",
    "output": "generated_output : list = add_n(mul_n([2, 1, 5, -4, 3],2),-1)",
    "io_inp": [
      2,
      1,
      5,
      -4,
      3
    ],
    "io_out": [
      3,
      1,
      9,
      -9,
      5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),-1)"
  },
  {
    "input": "input : list = [5, 2, 3]\noutput : list = [4, 5, 7]",
    "output": "generated_output : list = reverse(reverse(reverse(add_n(sort_des([5, 2, 3]),2))))",
    "io_inp": [
      5,
      2,
      3
    ],
    "io_out": [
      4,
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(add_n(sort_des(input),2))))"
  },
  {
    "input": "input : list = [0, 1, -4, 1, -3]\noutput : list = [2, 8, -22, 8, -16]",
    "output": "generated_output : list = reverse(sub_n(mul_n(mul_n(reverse([0, 1, -4, 1, -3]),2),3),-2))",
    "io_inp": [
      0,
      1,
      -4,
      1,
      -3
    ],
    "io_out": [
      2,
      8,
      -22,
      8,
      -16
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(mul_n(reverse(input),2),3),-2))"
  },
  {
    "input": "input : list = [-4, -4, -3, 2, 2]\noutput : list = [3, 3, -2, -3, -3]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(add_n([-4, -4, -3, 2, 2],-3))),-4))",
    "io_inp": [
      -4,
      -4,
      -3,
      2,
      2
    ],
    "io_out": [
      3,
      3,
      -2,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(add_n(input,-3))),-4))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [0, 2]",
    "output": "generated_output : list = sub_n([2, 4],2)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [5, -2, 3, 3, -5, -3]\noutput : list = [79, 49, 49, -26, -41, -71]",
    "output": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n([5, -2, 3, 3, -5, -3],-5))),-3),4)",
    "io_inp": [
      5,
      -2,
      3,
      3,
      -5,
      -3
    ],
    "io_out": [
      79,
      49,
      49,
      -26,
      -41,
      -71
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(sort_des(mul_n(input,-5))),-3),4)"
  },
  {
    "input": "input : list = [0, -1, 4, 2]\noutput : list = [0, -1]",
    "output": "generated_output : list = take([0, -1, 4, 2],2)",
    "io_inp": [
      0,
      -1,
      4,
      2
    ],
    "io_out": [
      0,
      -1
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [5, -5, 2, -3, 0]\noutput : list = [-5, -3, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([5, -5, 2, -3, 0])",
    "io_inp": [
      5,
      -5,
      2,
      -3,
      0
    ],
    "io_out": [
      -5,
      -3,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, -3, -5]\noutput : list = [-16, -10, 8]",
    "output": "generated_output : list = sub_n(reverse(reverse(mul_n(sort_asc([3, -3, -5]),3))),1)",
    "io_inp": [
      3,
      -3,
      -5
    ],
    "io_out": [
      -16,
      -10,
      8
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(mul_n(sort_asc(input),3))),1)"
  },
  {
    "input": "input : list = [-2, 4, -3, -1, -4, 2]\noutput : list = [2, -1, 5]",
    "output": "generated_output : list = drop(sub_n([-2, 4, -3, -1, -4, 2],-3),3)",
    "io_inp": [
      -2,
      4,
      -3,
      -1,
      -4,
      2
    ],
    "io_out": [
      2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(sub_n(input,-3),3)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [0, 4]",
    "output": "generated_output : list = reverse(sort_des([4, 0]))",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -1, -3, 3, -2, 0]\noutput : list = [-15, -10, 5]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(add_n([4, -1, -3, 3, -2, 0],1)),3),2),-5)",
    "io_inp": [
      4,
      -1,
      -3,
      3,
      -2,
      0
    ],
    "io_out": [
      -15,
      -10,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(add_n(input,1)),3),2),-5)"
  },
  {
    "input": "input : list = [-5, 0]\noutput : list = [-8, -18]",
    "output": "generated_output : list = mul_n(reverse(reverse(sort_des(sub_n([-5, 0],4)))),2)",
    "io_inp": [
      -5,
      0
    ],
    "io_out": [
      -8,
      -18
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(sort_des(sub_n(input,4)))),2)"
  },
  {
    "input": "input : list = [-3, 1, 4, -5]\noutput : list = [-8, -6, -2, 1]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sub_n([-3, 1, 4, -5],5))),-2),5)",
    "io_inp": [
      -3,
      1,
      4,
      -5
    ],
    "io_out": [
      -8,
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sub_n(input,5))),-2),5)"
  },
  {
    "input": "input : list = [5, -3, 1, 3, 0, -5]\noutput : list = [5]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(take([5, -3, 1, 3, 0, -5],1)))),1)",
    "io_inp": [
      5,
      -3,
      1,
      3,
      0,
      -5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(take(input,1)))),1)"
  },
  {
    "input": "input : list = [5, 4, -3, 0, 4, 4]\noutput : list = [3, 2, 2, 2, -2, -5]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(reverse([5, 4, -3, 0, 4, 4]))),-2))",
    "io_inp": [
      5,
      4,
      -3,
      0,
      4,
      4
    ],
    "io_out": [
      3,
      2,
      2,
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sort_asc(reverse(input))),-2))"
  },
  {
    "input": "input : list = [4, 0, 4, 1, -5, 2]\noutput : list = [2, -5, 1, 4, 0, 4]",
    "output": "generated_output : list = reverse([4, 0, 4, 1, -5, 2])",
    "io_inp": [
      4,
      0,
      4,
      1,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      1,
      4,
      0,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [-9, -13]",
    "output": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_asc([3, 4]),2),-4),5))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      -9,
      -13
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(mul_n(sub_n(sort_asc(input),2),-4),5))"
  },
  {
    "input": "input : list = [3, 2, -3, 1, 4]\noutput : list = [3]",
    "output": "generated_output : list = take([3, 2, -3, 1, 4],1)",
    "io_inp": [
      3,
      2,
      -3,
      1,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-3, -4, 0, -3, 5]\noutput : list = [-9, -8, -8, -5, 0]",
    "output": "generated_output : list = sort_asc(add_n([-3, -4, 0, -3, 5],-5))",
    "io_inp": [
      -3,
      -4,
      0,
      -3,
      5
    ],
    "io_out": [
      -9,
      -8,
      -8,
      -5,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,-5))"
  },
  {
    "input": "input : list = [4, 4, -4, -5, -5]\noutput : list = [-104, -104, -84, 76, 76]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(mul_n([4, 4, -4, -5, -5],4),5)),4))",
    "io_inp": [
      4,
      4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -104,
      -104,
      -84,
      76,
      76
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(mul_n(input,4),5)),4))"
  },
  {
    "input": "input : list = [-4, -5, 5, 4, 3, 2]\noutput : list = [-1, -2, 8, 7, 6, 5]",
    "output": "generated_output : list = sub_n([-4, -5, 5, 4, 3, 2],-3)",
    "io_inp": [
      -4,
      -5,
      5,
      4,
      3,
      2
    ],
    "io_out": [
      -1,
      -2,
      8,
      7,
      6,
      5
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [5, -2, 2, -2, 5]\noutput : list = [-2, -2, 2, 5, 5]",
    "output": "generated_output : list = take(add_n(sort_asc(add_n(reverse([5, -2, 2, -2, 5]),5)),-5),53)",
    "io_inp": [
      5,
      -2,
      2,
      -2,
      5
    ],
    "io_out": [
      -2,
      -2,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(add_n(reverse(input),5)),-5),53)"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [-59]",
    "output": "generated_output : list = sub_n(mul_n(drop(mul_n([2, 3],-5),1),4),-1)",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      -59
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(mul_n(input,-5),1),4),-1)"
  },
  {
    "input": "input : list = [-3, -3, 1, -1, -2]\noutput : list = [1, -1, -2]",
    "output": "generated_output : list = drop([-3, -3, 1, -1, -2],2)",
    "io_inp": [
      -3,
      -3,
      1,
      -1,
      -2
    ],
    "io_out": [
      1,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [1, -5, 4, -3]\noutput : list = [6, 4, 0, -3]",
    "output": "generated_output : list = add_n(sub_n(add_n(mul_n(sort_asc([1, -5, 4, -3]),-1),-3),1),5)",
    "io_inp": [
      1,
      -5,
      4,
      -3
    ],
    "io_out": [
      6,
      4,
      0,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(mul_n(sort_asc(input),-1),-3),1),5)"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-7, -12]",
    "output": "generated_output : list = sort_des(take(take(add_n(sub_n([-3, 2],4),-5),17),9))",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -7,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(take(add_n(sub_n(input,4),-5),17),9))"
  },
  {
    "input": "input : list = [-5, -3, -2, 4, -5, -5]\noutput : list = [14, 10, 8, -4, 14, 14]",
    "output": "generated_output : list = add_n(take(mul_n(take(sub_n([-5, -3, -2, 4, -5, -5],4),11),-2),12),-4)",
    "io_inp": [
      -5,
      -3,
      -2,
      4,
      -5,
      -5
    ],
    "io_out": [
      14,
      10,
      8,
      -4,
      14,
      14
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(take(sub_n(input,4),11),-2),12),-4)"
  },
  {
    "input": "input : list = [-2, -5, 0, -5]\noutput : list = [-5, 0, -5]",
    "output": "generated_output : list = drop([-2, -5, 0, -5],1)",
    "io_inp": [
      -2,
      -5,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, 1, -2, 5]\noutput : list = [-12, -24, -33, -39]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sub_n(add_n([-4, 1, -2, 5],-1),4),4)),3)",
    "io_inp": [
      -4,
      1,
      -2,
      5
    ],
    "io_out": [
      -12,
      -24,
      -33,
      -39
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sub_n(add_n(input,-1),4),4)),3)"
  },
  {
    "input": "input : list = [4, -4, 5]\noutput : list = [2, 0, -16]",
    "output": "generated_output : list = mul_n(take(sort_des(sub_n([4, -4, 5],4)),9),2)",
    "io_inp": [
      4,
      -4,
      5
    ],
    "io_out": [
      2,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sub_n(input,4)),9),2)"
  },
  {
    "input": "input : list = [-5, -5, 0, -2, 2]\noutput : list = [2, 22, 12, 37, 37]",
    "output": "generated_output : list = reverse(sub_n(add_n(sub_n(mul_n([-5, -5, 0, -2, 2],-5),-5),5),-2))",
    "io_inp": [
      -5,
      -5,
      0,
      -2,
      2
    ],
    "io_out": [
      2,
      22,
      12,
      37,
      37
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(sub_n(mul_n(input,-5),-5),5),-2))"
  },
  {
    "input": "input : list = [0, -4, -3, 3]\noutput : list = [-5, -4, -1, 2]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n([0, -4, -3, 3],1))))",
    "io_inp": [
      0,
      -4,
      -3,
      3
    ],
    "io_out": [
      -5,
      -4,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(input,1))))"
  },
  {
    "input": "input : list = [4, -5, 2]\noutput : list = [7, 0]",
    "output": "generated_output : list = add_n(reverse(add_n(sub_n(drop([4, -5, 2],1),-4),5)),-4)",
    "io_inp": [
      4,
      -5,
      2
    ],
    "io_out": [
      7,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sub_n(drop(input,1),-4),5)),-4)"
  },
  {
    "input": "input : list = [1, 5, -4, -4, 2]\noutput : list = [0, 6]",
    "output": "generated_output : list = sort_asc(add_n(mul_n(reverse(drop([1, 5, -4, -4, 2],3)),1),4))",
    "io_inp": [
      1,
      5,
      -4,
      -4,
      2
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(reverse(drop(input,3)),1),4))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [9, 7]",
    "output": "generated_output : list = add_n(sub_n(sub_n([3, 1],-5),-5),-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      9,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(input,-5),-5),-4)"
  },
  {
    "input": "input : list = [-3, 2, -1, -3]\noutput : list = [-3, -3, -1]",
    "output": "generated_output : list = take(sort_asc([-3, 2, -1, -3]),3)",
    "io_inp": [
      -3,
      2,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),3)"
  },
  {
    "input": "input : list = [1, 2, -3, -1, -2, -5]\noutput : list = [4, 2, 1, 0, -2, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sub_n([1, 2, -3, -1, -2, -5],2),-3)),-1))",
    "io_inp": [
      1,
      2,
      -3,
      -1,
      -2,
      -5
    ],
    "io_out": [
      4,
      2,
      1,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sub_n(input,2),-3)),-1))"
  },
  {
    "input": "input : list = [-3, 0, 4]\noutput : list = [7, -5, -21]",
    "output": "generated_output : list = take(sub_n(mul_n(sort_asc(reverse([-3, 0, 4])),-4),5),16)",
    "io_inp": [
      -3,
      0,
      4
    ],
    "io_out": [
      7,
      -5,
      -21
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sort_asc(reverse(input)),-4),5),16)"
  },
  {
    "input": "input : list = [0, -1]\noutput : list = [18, 15]",
    "output": "generated_output : list = reverse(reverse(mul_n(sort_asc(add_n([0, -1],-5)),-3)))",
    "io_inp": [
      0,
      -1
    ],
    "io_out": [
      18,
      15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sort_asc(add_n(input,-5)),-3)))"
  },
  {
    "input": "input : list = [5, 0, -4, -1]\noutput : list = [5, 0, -4, -1]",
    "output": "generated_output : list = reverse(take(reverse([5, 0, -4, -1]),4))",
    "io_inp": [
      5,
      0,
      -4,
      -1
    ],
    "io_out": [
      5,
      0,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(input),4))"
  },
  {
    "input": "input : list = [2, -5, 0]\noutput : list = [2, 17, 23]",
    "output": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(add_n([2, -5, 0],4)),3)),-5)",
    "io_inp": [
      2,
      -5,
      0
    ],
    "io_out": [
      2,
      17,
      23
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(mul_n(sort_asc(add_n(input,4)),3)),-5)"
  },
  {
    "input": "input : list = [2, 5, -3, -5, 5]\noutput : list = [5, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse(reverse(drop([2, 5, -3, -5, 5],3)))))",
    "io_inp": [
      2,
      5,
      -3,
      -5,
      5
    ],
    "io_out": [
      5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(reverse(drop(input,3)))))"
  },
  {
    "input": "input : list = [5, 5, 5, -3, 5]\noutput : list = [2, 10, 10, 10, 10]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(sort_asc([5, 5, 5, -3, 5])),5),14))",
    "io_inp": [
      5,
      5,
      5,
      -3,
      5
    ],
    "io_out": [
      2,
      10,
      10,
      10,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(sort_asc(input)),5),14))"
  },
  {
    "input": "input : list = [3, 0, -1, -5]\noutput : list = [-5, -1, 0, 3]",
    "output": "generated_output : list = sort_asc([3, 0, -1, -5])",
    "io_inp": [
      3,
      0,
      -1,
      -5
    ],
    "io_out": [
      -5,
      -1,
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 3, -4, -3, -3, -5]\noutput : list = [13, 12, 5, 6, 6, 4]",
    "output": "generated_output : list = sub_n(take(mul_n(sub_n(sub_n([4, 3, -4, -3, -3, -5],-4),-1),1),21),-4)",
    "io_inp": [
      4,
      3,
      -4,
      -3,
      -3,
      -5
    ],
    "io_out": [
      13,
      12,
      5,
      6,
      6,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(sub_n(sub_n(input,-4),-1),1),21),-4)"
  },
  {
    "input": "input : list = [0, 5, -3, 3, -2]\noutput : list = [-2, 3, -5]",
    "output": "generated_output : list = sub_n(take([0, 5, -3, 3, -2],3),2)",
    "io_inp": [
      0,
      5,
      -3,
      3,
      -2
    ],
    "io_out": [
      -2,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(input,3),2)"
  },
  {
    "input": "input : list = [0, -3]\noutput : list = [0, -12]",
    "output": "generated_output : list = take(mul_n(take(sort_des(sort_asc([0, -3])),8),4),20)",
    "io_inp": [
      0,
      -3
    ],
    "io_out": [
      0,
      -12
    ],
    "output_masked": "generated_output : list = take(mul_n(take(sort_des(sort_asc(input)),8),4),20)"
  },
  {
    "input": "input : list = [-2, -1, -1]\noutput : list = [-4, -4, -5]",
    "output": "generated_output : list = sub_n(reverse(add_n(sub_n(sort_asc([-2, -1, -1]),3),3)),3)",
    "io_inp": [
      -2,
      -1,
      -1
    ],
    "io_out": [
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(sub_n(sort_asc(input),3),3)),3)"
  },
  {
    "input": "input : list = [-4, 5, 1, 2]\noutput : list = [6, 5, 9, 0]",
    "output": "generated_output : list = add_n(reverse([-4, 5, 1, 2]),4)",
    "io_inp": [
      -4,
      5,
      1,
      2
    ],
    "io_out": [
      6,
      5,
      9,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),4)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-12, -10]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(add_n([-3, -5],-1),-2),4))",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -12,
      -10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(add_n(input,-1),-2),4))"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [-4, 8, 14]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(mul_n([-5, 4, -2],-2)),2),-1),5)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      -4,
      8,
      14
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(mul_n(input,-2)),2),-1),5)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-2]",
    "output": "generated_output : list = sort_des(drop(sort_des(add_n(sort_asc([-3, 5]),1)),1))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(add_n(sort_asc(input),1)),1))"
  },
  {
    "input": "input : list = [3, -4, -3]\noutput : list = [-4, -3, 3]",
    "output": "generated_output : list = reverse(sort_des([3, -4, -3]))",
    "io_inp": [
      3,
      -4,
      -3
    ],
    "io_out": [
      -4,
      -3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(input))"
  },
  {
    "input": "input : list = [4, -3, 5, -4]\noutput : list = [-17, 11]",
    "output": "generated_output : list = sub_n(add_n(sub_n(mul_n(take([4, -3, 5, -4],2),-4),4),-2),-5)",
    "io_inp": [
      4,
      -3,
      5,
      -4
    ],
    "io_out": [
      -17,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sub_n(mul_n(take(input,2),-4),4),-2),-5)"
  },
  {
    "input": "input : list = [-4, 0, -3, -4, 0]\noutput : list = [0, 16]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(reverse(drop([-4, 0, -3, -4, 0],3))),-4))",
    "io_inp": [
      -4,
      0,
      -3,
      -4,
      0
    ],
    "io_out": [
      0,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(reverse(drop(input,3))),-4))"
  },
  {
    "input": "input : list = [2, 4, -1, 2, 0]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(take([2, 4, -1, 2, 0],1))",
    "io_inp": [
      2,
      4,
      -1,
      2,
      0
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [-5, 2, 3, 3, 1]\noutput : list = [2, -5]",
    "output": "generated_output : list = sort_des(take(reverse(reverse(take([-5, 2, 3, 3, 1],2))),14))",
    "io_inp": [
      -5,
      2,
      3,
      3,
      1
    ],
    "io_out": [
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(reverse(take(input,2))),14))"
  },
  {
    "input": "input : list = [-2, 4, 0, -1, -3, 0]\noutput : list = [-11, 5, 5, 9, 13, 17]",
    "output": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_des([-2, 4, 0, -1, -3, 0]))),-4),5)",
    "io_inp": [
      -2,
      4,
      0,
      -1,
      -3,
      0
    ],
    "io_out": [
      -11,
      5,
      5,
      9,
      13,
      17
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(sort_des(sort_des(input))),-4),5)"
  },
  {
    "input": "input : list = [4, 5, -3]\noutput : list = [-6, 8, 10]",
    "output": "generated_output : list = mul_n(sort_asc([4, 5, -3]),2)",
    "io_inp": [
      4,
      5,
      -3
    ],
    "io_out": [
      -6,
      8,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),2)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [-4, -7]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(add_n(drop([3, -2, -5],1),2),4)))",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      -4,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(add_n(drop(input,1),2),4)))"
  },
  {
    "input": "input : list = [0, 2, -4, 1, 1, -4]\noutput : list = [2, 1, 1, 0, -4, -4]",
    "output": "generated_output : list = sort_des([0, 2, -4, 1, 1, -4])",
    "io_inp": [
      0,
      2,
      -4,
      1,
      1,
      -4
    ],
    "io_out": [
      2,
      1,
      1,
      0,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 5, -1, -2]\noutput : list = [17, -7, -11, -23]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sort_asc([-5, 5, -1, -2]),4))),-3)",
    "io_inp": [
      -5,
      5,
      -1,
      -2
    ],
    "io_out": [
      17,
      -7,
      -11,
      -23
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(mul_n(sort_asc(input),4))),-3)"
  },
  {
    "input": "input : list = [4, 4, 1, 3]\noutput : list = [12, 12, 9, 3]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des([4, 4, 1, 3])),3)))",
    "io_inp": [
      4,
      4,
      1,
      3
    ],
    "io_out": [
      12,
      12,
      9,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des(input)),3)))"
  },
  {
    "input": "input : list = [-5, 2, -5]\noutput : list = [6, -1, -1]",
    "output": "generated_output : list = take(sub_n(reverse(take(sort_asc([-5, 2, -5]),6)),-4),39)",
    "io_inp": [
      -5,
      2,
      -5
    ],
    "io_out": [
      6,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(take(sort_asc(input),6)),-4),39)"
  },
  {
    "input": "input : list = [2, -5]\noutput : list = [-4, -11]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sub_n(reverse([2, -5]),4),-2)))",
    "io_inp": [
      2,
      -5
    ],
    "io_out": [
      -4,
      -11
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sub_n(reverse(input),4),-2)))"
  },
  {
    "input": "input : list = [1, 2, -3, 3, 2, -2]\noutput : list = [-10, -5, 10, 15, 15, 20]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(reverse([1, 2, -3, 3, 2, -2])),4),3),5)",
    "io_inp": [
      1,
      2,
      -3,
      3,
      2,
      -2
    ],
    "io_out": [
      -10,
      -5,
      10,
      15,
      15,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(reverse(input)),4),3),5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [2, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([2, 5]))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [1, 4, 1, -3, -4]\noutput : list = [-1, 2, -1, -5, -6]",
    "output": "generated_output : list = sub_n(sub_n(sub_n([1, 4, 1, -3, -4],5),-2),-1)",
    "io_inp": [
      1,
      4,
      1,
      -3,
      -4
    ],
    "io_out": [
      -1,
      2,
      -1,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(input,5),-2),-1)"
  },
  {
    "input": "input : list = [0, 2, -4, -3, -3, 0]\noutput : list = [-10, -12]",
    "output": "generated_output : list = drop(sort_des(add_n(sort_asc(mul_n([0, 2, -4, -3, -3, 0],2)),-4)),4)",
    "io_inp": [
      0,
      2,
      -4,
      -3,
      -3,
      0
    ],
    "io_out": [
      -10,
      -12
    ],
    "output_masked": "generated_output : list = drop(sort_des(add_n(sort_asc(mul_n(input,2)),-4)),4)"
  },
  {
    "input": "input : list = [-3, 5, 0, 4]\noutput : list = [6, 5, 1, -2]",
    "output": "generated_output : list = take(sub_n(sort_des([-3, 5, 0, 4]),-1),12)",
    "io_inp": [
      -3,
      5,
      0,
      4
    ],
    "io_out": [
      6,
      5,
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(input),-1),12)"
  },
  {
    "input": "input : list = [-4, 5, -1, 4, -2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = reverse(sub_n(take(add_n(drop([-4, 5, -1, 4, -2, 5],4),-3),27),-3))",
    "io_inp": [
      -4,
      5,
      -1,
      4,
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(add_n(drop(input,4),-3),27),-3))"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [-3, 5]",
    "output": "generated_output : list = sort_asc([-3, 5])",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      -3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 1, 3, -3]\noutput : list = [4, 8, 10, 11]",
    "output": "generated_output : list = reverse(add_n(sort_des(sub_n(sort_des([4, 1, 3, -3]),-4)),3))",
    "io_inp": [
      4,
      1,
      3,
      -3
    ],
    "io_out": [
      4,
      8,
      10,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sub_n(sort_des(input),-4)),3))"
  },
  {
    "input": "input : list = [4, -1, -3, 2, 4, -2]\noutput : list = [2, -3]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(add_n(take([4, -1, -3, 2, 4, -2],2),2)),-4))",
    "io_inp": [
      4,
      -1,
      -3,
      2,
      4,
      -2
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(add_n(take(input,2),2)),-4))"
  },
  {
    "input": "input : list = [-4, 3]\noutput : list = [3, 10]",
    "output": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_asc([-4, 3]),-3)),1),5)",
    "io_inp": [
      -4,
      3
    ],
    "io_out": [
      3,
      10
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_asc(sub_n(sort_asc(input),-3)),1),5)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [10, 4]",
    "output": "generated_output : list = sub_n(sort_des([-1, 5]),-5)",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      10,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),-5)"
  },
  {
    "input": "input : list = [5, 2, -2, 3]\noutput : list = [7, 5, 4, 0]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sort_asc([5, 2, -2, 3])),1)),3)",
    "io_inp": [
      5,
      2,
      -2,
      3
    ],
    "io_out": [
      7,
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_asc(sort_asc(input)),1)),3)"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [80, -80, -200]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(mul_n(reverse([-2, -5, 2]),-2),-4),5))",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      80,
      -80,
      -200
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(mul_n(reverse(input),-2),-4),5))"
  },
  {
    "input": "input : list = [5, 0, -1, 5, -3, -5]\noutput : list = [-4, 0, 20]",
    "output": "generated_output : list = sort_asc(take(mul_n(sort_des(take([5, 0, -1, 5, -3, -5],3)),4),40))",
    "io_inp": [
      5,
      0,
      -1,
      5,
      -3,
      -5
    ],
    "io_out": [
      -4,
      0,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sort_des(take(input,3)),4),40))"
  },
  {
    "input": "input : list = [-4, 0, 4, -2, 0]\noutput : list = [20, 0, 0, -10, -20]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(mul_n([-4, 0, 4, -2, 0],5)))))",
    "io_inp": [
      -4,
      0,
      4,
      -2,
      0
    ],
    "io_out": [
      20,
      0,
      0,
      -10,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(mul_n(input,5)))))"
  },
  {
    "input": "input : list = [-1, 5, -4, 4, -3, -4]\noutput : list = [-3, -3, -2, 0, 5, 6]",
    "output": "generated_output : list = sort_asc(sub_n([-1, 5, -4, 4, -3, -4],-1))",
    "io_inp": [
      -1,
      5,
      -4,
      4,
      -3,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -2,
      0,
      5,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-4, -3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(drop([-4, -3, 0],1)),3))",
    "io_inp": [
      -4,
      -3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(drop(input,1)),3))"
  },
  {
    "input": "input : list = [-5, -1, -2, 4, -5, 5]\noutput : list = [150, 150, 60, 30, -120, -150]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(mul_n([-5, -1, -2, 4, -5, 5],2)),3)),-5)",
    "io_inp": [
      -5,
      -1,
      -2,
      4,
      -5,
      5
    ],
    "io_out": [
      150,
      150,
      60,
      30,
      -120,
      -150
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(mul_n(input,2)),3)),-5)"
  },
  {
    "input": "input : list = [-5, 2]\noutput : list = [10, -4]",
    "output": "generated_output : list = reverse(mul_n(sort_des(sort_asc(reverse([-5, 2]))),-2))",
    "io_inp": [
      -5,
      2
    ],
    "io_out": [
      10,
      -4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(sort_asc(reverse(input))),-2))"
  },
  {
    "input": "input : list = [5, -5, 2, -1, -3, 2]\noutput : list = [-1, -1, 2]",
    "output": "generated_output : list = drop(add_n(sort_asc(reverse(sub_n([5, -5, 2, -1, -3, 2],1))),-2),3)",
    "io_inp": [
      5,
      -5,
      2,
      -1,
      -3,
      2
    ],
    "io_out": [
      -1,
      -1,
      2
    ],
    "output_masked": "generated_output : list = drop(add_n(sort_asc(reverse(sub_n(input,1))),-2),3)"
  },
  {
    "input": "input : list = [1, -1, -1]\noutput : list = [0, -2, -2]",
    "output": "generated_output : list = sub_n([1, -1, -1],1)",
    "io_inp": [
      1,
      -1,
      -1
    ],
    "io_out": [
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [5, 1, -3, 0]\noutput : list = [-3, 0, 1, 5]",
    "output": "generated_output : list = sort_asc([5, 1, -3, 0])",
    "io_inp": [
      5,
      1,
      -3,
      0
    ],
    "io_out": [
      -3,
      0,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -2, 4]\noutput : list = [-2, 4]",
    "output": "generated_output : list = drop([-5, -2, 4],1)",
    "io_inp": [
      -5,
      -2,
      4
    ],
    "io_out": [
      -2,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 1, -5, 1, 5]\noutput : list = [-16, 0, 0, 24]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(sub_n(drop([2, 1, -5, 1, 5],1),1)),-4))",
    "io_inp": [
      2,
      1,
      -5,
      1,
      5
    ],
    "io_out": [
      -16,
      0,
      0,
      24
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(sub_n(drop(input,1),1)),-4))"
  },
  {
    "input": "input : list = [-3, -3, -3]\noutput : list = [-9, -9, -9]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(reverse([-3, -3, -3]))),3)",
    "io_inp": [
      -3,
      -3,
      -3
    ],
    "io_out": [
      -9,
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(reverse(input))),3)"
  },
  {
    "input": "input : list = [3, 0, 4, -5, -1]\noutput : list = [-3, -4]",
    "output": "generated_output : list = drop(reverse(sort_asc(take(mul_n([3, 0, 4, -5, -1],-1),13))),3)",
    "io_inp": [
      3,
      0,
      4,
      -5,
      -1
    ],
    "io_out": [
      -3,
      -4
    ],
    "output_masked": "generated_output : list = drop(reverse(sort_asc(take(mul_n(input,-1),13))),3)"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [-1, 3]",
    "output": "generated_output : list = add_n(sub_n(reverse([2, -2]),4),5)",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(input),4),5)"
  },
  {
    "input": "input : list = [-2, -5, 1]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des(reverse([-2, -5, 1])))",
    "io_inp": [
      -2,
      -5,
      1
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(input)))"
  },
  {
    "input": "input : list = [-4, 0, 1]\noutput : list = [8, 7, 3]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_asc([-4, 0, 1])),-3),-4))",
    "io_inp": [
      -4,
      0,
      1
    ],
    "io_out": [
      8,
      7,
      3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(sort_asc(input)),-3),-4))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [3, 2]",
    "output": "generated_output : list = sort_des([2, 3])",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      3,
      2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, 1, 0, 3, 4]\noutput : list = [-100, -120, -120, -160, -180]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n([1, 1, 0, 3, 4],-5),5)),-4),39)",
    "io_inp": [
      1,
      1,
      0,
      3,
      4
    ],
    "io_out": [
      -100,
      -120,
      -120,
      -160,
      -180
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(sub_n(input,-5),5)),-4),39)"
  },
  {
    "input": "input : list = [2, 3, 0, -1, -5]\noutput : list = [-9, -4, -19, -24, -44]",
    "output": "generated_output : list = add_n(mul_n(sub_n([2, 3, 0, -1, -5],3),5),-4)",
    "io_inp": [
      2,
      3,
      0,
      -1,
      -5
    ],
    "io_out": [
      -9,
      -4,
      -19,
      -24,
      -44
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(input,3),5),-4)"
  },
  {
    "input": "input : list = [-1, -2, 4, 1, 0]\noutput : list = [4, 5, 8, 2, 3]",
    "output": "generated_output : list = sub_n(reverse([-1, -2, 4, 1, 0]),-4)",
    "io_inp": [
      -1,
      -2,
      4,
      1,
      0
    ],
    "io_out": [
      4,
      5,
      8,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-4)"
  },
  {
    "input": "input : list = [4, -3, 5, 5]\noutput : list = [5, 5, -3, 4]",
    "output": "generated_output : list = sub_n(take(add_n(reverse([4, -3, 5, 5]),1),14),1)",
    "io_inp": [
      4,
      -3,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      -3,
      4
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(reverse(input),1),14),1)"
  },
  {
    "input": "input : list = [0, -5, -5, -5, -5]\noutput : list = [-5, -5, -5, -5, 0]",
    "output": "generated_output : list = take(sort_asc([0, -5, -5, -5, -5]),5)",
    "io_inp": [
      0,
      -5,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),5)"
  },
  {
    "input": "input : list = [2, -4, -1, -2]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(take(take([2, -4, -1, -2],1),17),1)))",
    "io_inp": [
      2,
      -4,
      -1,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(take(take(input,1),17),1)))"
  },
  {
    "input": "input : list = [1, 5, -1, 0, 3, -4]\noutput : list = [8, 6, 4, 3, 2, -1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(sub_n([1, 5, -1, 0, 3, -4],-3)))))",
    "io_inp": [
      1,
      5,
      -1,
      0,
      3,
      -4
    ],
    "io_out": [
      8,
      6,
      4,
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(sub_n(input,-3)))))"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [-7, -9]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n([3, 1],-2),-1),-2),-5)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      -7,
      -9
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(input,-2),-1),-2),-5)"
  },
  {
    "input": "input : list = [4, 0]\noutput : list = [59, -5]",
    "output": "generated_output : list = sub_n(take(mul_n(mul_n(mul_n([4, 0],-1),-4),4),9),5)",
    "io_inp": [
      4,
      0
    ],
    "io_out": [
      59,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(mul_n(mul_n(input,-1),-4),4),9),5)"
  },
  {
    "input": "input : list = [0, -3, 5]\noutput : list = [21]",
    "output": "generated_output : list = sub_n(mul_n(add_n(sort_des(take([0, -3, 5],1)),-5),-5),4)",
    "io_inp": [
      0,
      -3,
      5
    ],
    "io_out": [
      21
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(sort_des(take(input,1)),-5),-5),4)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [16]",
    "output": "generated_output : list = sort_des(drop(add_n(sub_n(mul_n([-2, 4],3),-2),2),1))",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sort_des(drop(add_n(sub_n(mul_n(input,3),-2),2),1))"
  },
  {
    "input": "input : list = [5, 4, 4, -4]\noutput : list = [21, -19, -19, -24]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_des(sort_des([5, 4, 4, -4])),-5),-1))",
    "io_inp": [
      5,
      4,
      4,
      -4
    ],
    "io_out": [
      21,
      -19,
      -19,
      -24
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_des(sort_des(input)),-5),-1))"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [2, 11]",
    "output": "generated_output : list = add_n(reverse(mul_n(reverse([-2, -5]),-3)),-4)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      2,
      11
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(reverse(input),-3)),-4)"
  },
  {
    "input": "input : list = [-1, 3, 4]\noutput : list = [8, -8, -12]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_asc([-1, 3, 4])),-4),4))",
    "io_inp": [
      -1,
      3,
      4
    ],
    "io_out": [
      8,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_des(sort_asc(input)),-4),4))"
  },
  {
    "input": "input : list = [-2, 3]\noutput : list = [-17, -2]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sub_n([-2, 3],-3),-3),3),-4))",
    "io_inp": [
      -2,
      3
    ],
    "io_out": [
      -17,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(mul_n(sub_n(input,-3),-3),3),-4))"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [9, 2, 10]",
    "output": "generated_output : list = sub_n(sub_n([2, -5, 3],-2),-5)",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      9,
      2,
      10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(input,-2),-5)"
  },
  {
    "input": "input : list = [2, 0, 4, -5, 5]\noutput : list = [1, -8, 2]",
    "output": "generated_output : list = add_n(drop([2, 0, 4, -5, 5],2),-3)",
    "io_inp": [
      2,
      0,
      4,
      -5,
      5
    ],
    "io_out": [
      1,
      -8,
      2
    ],
    "output_masked": "generated_output : list = add_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [5, -3, -3, 1]\noutput : list = [1, -3, -7, -7]",
    "output": "generated_output : list = reverse(add_n(sort_asc(take(reverse([5, -3, -3, 1]),12)),-4))",
    "io_inp": [
      5,
      -3,
      -3,
      1
    ],
    "io_out": [
      1,
      -3,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_asc(take(reverse(input),12)),-4))"
  },
  {
    "input": "input : list = [1, 2, -4, -2, 2, 4]\noutput : list = [-11, -9, -6, -5, -5, -3]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sort_des([1, 2, -4, -2, 2, 4]),4)),-3))",
    "io_inp": [
      1,
      2,
      -4,
      -2,
      2,
      4
    ],
    "io_out": [
      -11,
      -9,
      -6,
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sub_n(sort_des(input),4)),-3))"
  },
  {
    "input": "input : list = [5, -3, -4]\noutput : list = [75, -45, -60]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(take(reverse([5, -3, -4]),16),-5)),-3)",
    "io_inp": [
      5,
      -3,
      -4
    ],
    "io_out": [
      75,
      -45,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(take(reverse(input),16),-5)),-3)"
  },
  {
    "input": "input : list = [1, -1, -3, 2]\noutput : list = [-1, -3, 2]",
    "output": "generated_output : list = drop([1, -1, -3, 2],1)",
    "io_inp": [
      1,
      -1,
      -3,
      2
    ],
    "io_out": [
      -1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, -2, -2, 0, -5, 5]\noutput : list = [15, 6, 6, 6, 0, -15]",
    "output": "generated_output : list = sort_des(mul_n([-2, -2, -2, 0, -5, 5],-3))",
    "io_inp": [
      -2,
      -2,
      -2,
      0,
      -5,
      5
    ],
    "io_out": [
      15,
      6,
      6,
      6,
      0,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-4, 4, -3, 5, -4]\noutput : list = [-2, 5, -3]",
    "output": "generated_output : list = add_n(reverse(take([-4, 4, -3, 5, -4],3)),1)",
    "io_inp": [
      -4,
      4,
      -3,
      5,
      -4
    ],
    "io_out": [
      -2,
      5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(input,3)),1)"
  },
  {
    "input": "input : list = [2, -4, 2, 2, 4]\noutput : list = [-8, 16, 16, 24]",
    "output": "generated_output : list = sort_asc(mul_n(drop(take(add_n([2, -4, 2, 2, 4],2),14),1),4))",
    "io_inp": [
      2,
      -4,
      2,
      2,
      4
    ],
    "io_out": [
      -8,
      16,
      16,
      24
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(take(add_n(input,2),14),1),4))"
  },
  {
    "input": "input : list = [4, 0, -2, -2, -3]\noutput : list = [-4, -5, -5, -7, -11]",
    "output": "generated_output : list = sort_des(sort_des(add_n(add_n(mul_n([4, 0, -2, -2, -3],-1),-5),-2)))",
    "io_inp": [
      4,
      0,
      -2,
      -2,
      -3
    ],
    "io_out": [
      -4,
      -5,
      -5,
      -7,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(add_n(mul_n(input,-1),-5),-2)))"
  },
  {
    "input": "input : list = [4, 4, 4, -4]\noutput : list = [480, 480, 480, -480]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(mul_n([4, 4, 4, -4],-5),-3),-2)),-4)",
    "io_inp": [
      4,
      4,
      4,
      -4
    ],
    "io_out": [
      480,
      480,
      480,
      -480
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(mul_n(mul_n(input,-5),-3),-2)),-4)"
  },
  {
    "input": "input : list = [-2, -2, -5, 5, 4]\noutput : list = [5, 4, -2, -2, -5]",
    "output": "generated_output : list = sort_des([-2, -2, -5, 5, 4])",
    "io_inp": [
      -2,
      -2,
      -5,
      5,
      4
    ],
    "io_out": [
      5,
      4,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -2, -4, 2, -3, -3]\noutput : list = [4]",
    "output": "generated_output : list = reverse(mul_n(take([-1, -2, -4, 2, -3, -3],1),-4))",
    "io_inp": [
      -1,
      -2,
      -4,
      2,
      -3,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(mul_n(take(input,1),-4))"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [4, 2]",
    "output": "generated_output : list = mul_n(sort_des([2, 1]),2)",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      4,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),2)"
  },
  {
    "input": "input : list = [1, 1, 5, -2, 2]\noutput : list = [-5, -5, -25, 10, -10]",
    "output": "generated_output : list = mul_n([1, 1, 5, -2, 2],-5)",
    "io_inp": [
      1,
      1,
      5,
      -2,
      2
    ],
    "io_out": [
      -5,
      -5,
      -25,
      10,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -5, 2, -5, -1, 0]\noutput : list = [-3, 3, 6, 9, 18, 18]",
    "output": "generated_output : list = take(add_n(sort_asc(mul_n(sort_des([-2, -5, 2, -5, -1, 0]),-3)),3),25)",
    "io_inp": [
      -2,
      -5,
      2,
      -5,
      -1,
      0
    ],
    "io_out": [
      -3,
      3,
      6,
      9,
      18,
      18
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(mul_n(sort_des(input),-3)),3),25)"
  },
  {
    "input": "input : list = [-1, 2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc([-1, 2]),-4)),29)",
    "io_inp": [
      -1,
      2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(input),-4)),29)"
  },
  {
    "input": "input : list = [-4, -1, -4, 0, -2]\noutput : list = [0, -5, -10, -20, -20]",
    "output": "generated_output : list = mul_n(sort_des([-4, -1, -4, 0, -2]),5)",
    "io_inp": [
      -4,
      -1,
      -4,
      0,
      -2
    ],
    "io_out": [
      0,
      -5,
      -10,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),5)"
  },
  {
    "input": "input : list = [3, 2, -3, -1, 1]\noutput : list = [2, 4, 6, 7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_des([3, 2, -3, -1, 1]))),-5))",
    "io_inp": [
      3,
      2,
      -3,
      -1,
      1
    ],
    "io_out": [
      2,
      4,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(sort_asc(sort_des(input))),-5))"
  },
  {
    "input": "input : list = [2, 0, 1, 5, 5, -3]\noutput : list = [3, -5, -5, -1]",
    "output": "generated_output : list = mul_n(reverse(reverse(reverse(drop([2, 0, 1, 5, 5, -3],2)))),-1)",
    "io_inp": [
      2,
      0,
      1,
      5,
      5,
      -3
    ],
    "io_out": [
      3,
      -5,
      -5,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(reverse(reverse(reverse(drop(input,2)))),-1)"
  },
  {
    "input": "input : list = [0, 3, 2, -5, 5]\noutput : list = [5, -5, 2, 3, 0]",
    "output": "generated_output : list = reverse([0, 3, 2, -5, 5])",
    "io_inp": [
      0,
      3,
      2,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      2,
      3,
      0
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [0, 6]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sub_n([1, -5],-5)))),37)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sort_asc(sub_n(input,-5)))),37)"
  },
  {
    "input": "input : list = [3, 4, 2, 0]\noutput : list = [-12, -9, -6, 0]",
    "output": "generated_output : list = mul_n(sort_des([3, 4, 2, 0]),-3)",
    "io_inp": [
      3,
      4,
      2,
      0
    ],
    "io_out": [
      -12,
      -9,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-3)"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [1, -4]",
    "output": "generated_output : list = sort_des([1, -4])",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [4, 4]",
    "output": "generated_output : list = take(sort_des(reverse(sort_des(mul_n([-1, -1],-4)))),6)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(sort_des(mul_n(input,-4)))),6)"
  },
  {
    "input": "input : list = [4, -5, 2, 0, -1]\noutput : list = [7, 5, 3, 2, -2]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(take(sort_asc([4, -5, 2, 0, -1]),22),-1),-2))",
    "io_inp": [
      4,
      -5,
      2,
      0,
      -1
    ],
    "io_out": [
      7,
      5,
      3,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(take(sort_asc(input),22),-1),-2))"
  },
  {
    "input": "input : list = [3, -2, -5, 5, -5]\noutput : list = [-7, -7, -4, 1, 3]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(sort_asc([3, -2, -5, 5, -5])),1),3))",
    "io_inp": [
      3,
      -2,
      -5,
      5,
      -5
    ],
    "io_out": [
      -7,
      -7,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_asc(sort_asc(input)),1),3))"
  },
  {
    "input": "input : list = [-5, -1, -2]\noutput : list = [3, 2, -1]",
    "output": "generated_output : list = take(sub_n(sort_des(sort_des(sort_des([-5, -1, -2]))),-4),15)",
    "io_inp": [
      -5,
      -1,
      -2
    ],
    "io_out": [
      3,
      2,
      -1
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sort_des(sort_des(input))),-4),15)"
  },
  {
    "input": "input : list = [-1, -1, -5, 3, -2]\noutput : list = [35, 15, 15, 10, -5]",
    "output": "generated_output : list = sort_des(take(mul_n(take(add_n([-1, -1, -5, 3, -2],4),9),5),11))",
    "io_inp": [
      -1,
      -1,
      -5,
      3,
      -2
    ],
    "io_out": [
      35,
      15,
      15,
      10,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(take(add_n(input,4),9),5),11))"
  },
  {
    "input": "input : list = [-5, 1, 3]\noutput : list = [3, 1, -5]",
    "output": "generated_output : list = reverse([-5, 1, 3])",
    "io_inp": [
      -5,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [7, 5]",
    "output": "generated_output : list = sort_des(sort_asc(take(sort_asc(sub_n([2, 4],-3)),11)))",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      7,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(take(sort_asc(sub_n(input,-3)),11)))"
  },
  {
    "input": "input : list = [3, -5, 0, 1, 3]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(reverse(take([3, -5, 0, 1, 3],1))),5))",
    "io_inp": [
      3,
      -5,
      0,
      1,
      3
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(reverse(take(input,1))),5))"
  },
  {
    "input": "input : list = [5, -5, -3, 2]\noutput : list = [-24, -9, 16, 26]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc([5, -5, -3, 2]))),-5),-1)",
    "io_inp": [
      5,
      -5,
      -3,
      2
    ],
    "io_out": [
      -24,
      -9,
      16,
      26
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sort_des(sort_asc(input))),-5),-1)"
  },
  {
    "input": "input : list = [-4, -5, -1, 1]\noutput : list = [40, 44, 28, 20]",
    "output": "generated_output : list = mul_n(take(add_n(take(sub_n([-4, -5, -1, 1],4),4),-2),6),-4)",
    "io_inp": [
      -4,
      -5,
      -1,
      1
    ],
    "io_out": [
      40,
      44,
      28,
      20
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(sub_n(input,4),4),-2),6),-4)"
  },
  {
    "input": "input : list = [5, 0, 0, 4]\noutput : list = [-108]",
    "output": "generated_output : list = mul_n(sort_des(drop(mul_n(add_n([5, 0, 0, 4],5),-3),3)),4)",
    "io_inp": [
      5,
      0,
      0,
      4
    ],
    "io_out": [
      -108
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(drop(mul_n(add_n(input,5),-3),3)),4)"
  },
  {
    "input": "input : list = [-5, 3]\noutput : list = [-15, 9]",
    "output": "generated_output : list = take(take(mul_n(mul_n(sort_asc([-5, 3]),-3),-1),22),38)",
    "io_inp": [
      -5,
      3
    ],
    "io_out": [
      -15,
      9
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(sort_asc(input),-3),-1),22),38)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-5, 5]",
    "output": "generated_output : list = sort_asc(sort_des([-5, 5]))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -4, -2, -4]\noutput : list = [-4, -2, -4]",
    "output": "generated_output : list = drop([-1, -4, -2, -4],1)",
    "io_inp": [
      -1,
      -4,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-3, -1, -3, -2, 3, -1]\noutput : list = [-1, -5, -5, -6, -7]",
    "output": "generated_output : list = sort_des(add_n(drop([-3, -1, -3, -2, 3, -1],1),-4))",
    "io_inp": [
      -3,
      -1,
      -3,
      -2,
      3,
      -1
    ],
    "io_out": [
      -1,
      -5,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(drop(input,1),-4))"
  },
  {
    "input": "input : list = [-1, 2, -5]\noutput : list = [-3, -24, -15]",
    "output": "generated_output : list = add_n(reverse(sub_n(mul_n(add_n([-1, 2, -5],4),-3),3)),-3)",
    "io_inp": [
      -1,
      2,
      -5
    ],
    "io_out": [
      -3,
      -24,
      -15
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(mul_n(add_n(input,4),-3),3)),-3)"
  },
  {
    "input": "input : list = [-1, -1, -5]\noutput : list = [-1, -1, -5]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_des([-1, -1, -5])),15))",
    "io_inp": [
      -1,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_des(input)),15))"
  },
  {
    "input": "input : list = [-3, 1, 5, 2]\noutput : list = [-3, 1, 5, 2]",
    "output": "generated_output : list = add_n(add_n([-3, 1, 5, 2],4),-4)",
    "io_inp": [
      -3,
      1,
      5,
      2
    ],
    "io_out": [
      -3,
      1,
      5,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,4),-4)"
  },
  {
    "input": "input : list = [3, -1, -2]\noutput : list = [-15, 5, 10]",
    "output": "generated_output : list = sort_asc(mul_n([3, -1, -2],-5))",
    "io_inp": [
      3,
      -1,
      -2
    ],
    "io_out": [
      -15,
      5,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-5))"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take(sub_n([1, 1],-2),1))",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(input,-2),1))"
  },
  {
    "input": "input : list = [-4, 5, 2]\noutput : list = [-7, 2, -1]",
    "output": "generated_output : list = sub_n(add_n(add_n([-4, 5, 2],4),-4),3)",
    "io_inp": [
      -4,
      5,
      2
    ],
    "io_out": [
      -7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(input,4),-4),3)"
  },
  {
    "input": "input : list = [1, 3, -5, 3]\noutput : list = [3, -5, 3]",
    "output": "generated_output : list = drop([1, 3, -5, 3],1)",
    "io_inp": [
      1,
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      -5,
      3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [0, 6]",
    "output": "generated_output : list = sub_n([-2, 4],-2)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      0,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [9, 12]",
    "output": "generated_output : list = take(sub_n(sort_asc(add_n(mul_n([3, 2],3),4)),1),3)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      9,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(add_n(mul_n(input,3),4)),1),3)"
  },
  {
    "input": "input : list = [2, -2, -3, -4]\noutput : list = [-4, -20, -24, -28]",
    "output": "generated_output : list = mul_n(add_n([2, -2, -3, -4],-3),4)",
    "io_inp": [
      2,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -20,
      -24,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-3),4)"
  },
  {
    "input": "input : list = [-4, 3, 2, 0, -1]\noutput : list = [3, 0, -6, -9, -18]",
    "output": "generated_output : list = add_n(sub_n(take(sort_des(mul_n([-4, 3, 2, 0, -1],3)),12),3),-3)",
    "io_inp": [
      -4,
      3,
      2,
      0,
      -1
    ],
    "io_out": [
      3,
      0,
      -6,
      -9,
      -18
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(sort_des(mul_n(input,3)),12),3),-3)"
  },
  {
    "input": "input : list = [3, -2, -2]\noutput : list = [3, -2, -2]",
    "output": "generated_output : list = sort_des(sort_des(sort_des([3, -2, -2])))",
    "io_inp": [
      3,
      -2,
      -2
    ],
    "io_out": [
      3,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [5, -4, 0, 0]\noutput : list = [0, 0, -4, 5]",
    "output": "generated_output : list = reverse([5, -4, 0, 0])",
    "io_inp": [
      5,
      -4,
      0,
      0
    ],
    "io_out": [
      0,
      0,
      -4,
      5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [1, -5, -2, 3, -4, 3]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(drop(take(add_n(sort_des([1, -5, -2, 3, -4, 3]),5),20),5),3)",
    "io_inp": [
      1,
      -5,
      -2,
      3,
      -4,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(take(add_n(sort_des(input),5),20),5),3)"
  },
  {
    "input": "input : list = [-5, 3, 4, 2]\noutput : list = [5, 7]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sub_n(drop([-5, 3, 4, 2],2),-2)),-1))",
    "io_inp": [
      -5,
      3,
      4,
      2
    ],
    "io_out": [
      5,
      7
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sub_n(drop(input,2),-2)),-1))"
  },
  {
    "input": "input : list = [-3, -2, 1, -2, 3]\noutput : list = [-3, -2, -2, 1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc([-3, -2, 1, -2, 3]))",
    "io_inp": [
      -3,
      -2,
      1,
      -2,
      3
    ],
    "io_out": [
      -3,
      -2,
      -2,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 1, -4, 3, 3]\noutput : list = [-11, -9, 1, 5, 5]",
    "output": "generated_output : list = sort_asc(take(sub_n(reverse(mul_n([-5, 1, -4, 3, 3],2)),1),30))",
    "io_inp": [
      -5,
      1,
      -4,
      3,
      3
    ],
    "io_out": [
      -11,
      -9,
      1,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(reverse(mul_n(input,2)),1),30))"
  },
  {
    "input": "input : list = [4, -5, 0, -1, 4, 1]\noutput : list = [3, 3, 0, -1, -2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(reverse([4, -5, 0, -1, 4, 1])),1)))",
    "io_inp": [
      4,
      -5,
      0,
      -1,
      4,
      1
    ],
    "io_out": [
      3,
      3,
      0,
      -1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(reverse(input)),1)))"
  },
  {
    "input": "input : list = [-1, -5, 0, 5]\noutput : list = [-9, -5, -4, 1]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc([-1, -5, 0, 5]),2),2)",
    "io_inp": [
      -1,
      -5,
      0,
      5
    ],
    "io_out": [
      -9,
      -5,
      -4,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(input),2),2)"
  },
  {
    "input": "input : list = [5, 0, 4, -2, -4]\noutput : list = [5, 4, 0, -2, -4]",
    "output": "generated_output : list = take(sort_des(sort_asc(reverse(sort_asc([5, 0, 4, -2, -4])))),41)",
    "io_inp": [
      5,
      0,
      4,
      -2,
      -4
    ],
    "io_out": [
      5,
      4,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(reverse(sort_asc(input)))),41)"
  },
  {
    "input": "input : list = [5, 4, 4]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(add_n([5, 4, 4],-5),5))))",
    "io_inp": [
      5,
      4,
      4
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(add_n(input,-5),5))))"
  },
  {
    "input": "input : list = [-2, 1, 0, 2, -2, -4]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(take(drop([-2, 1, 0, 2, -2, -4],4),4)),1))",
    "io_inp": [
      -2,
      1,
      0,
      2,
      -2,
      -4
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(take(drop(input,4),4)),1))"
  },
  {
    "input": "input : list = [-5, 4, -1, 2]\noutput : list = [3, 1, -2, -6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(sub_n([-5, 4, -1, 2],1)))))",
    "io_inp": [
      -5,
      4,
      -1,
      2
    ],
    "io_out": [
      3,
      1,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(sub_n(input,1)))))"
  },
  {
    "input": "input : list = [3, -3]\noutput : list = [2, -4]",
    "output": "generated_output : list = add_n(take(sort_des(add_n(sort_des([3, -3]),1)),9),-2)",
    "io_inp": [
      3,
      -3
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(add_n(sort_des(input),1)),9),-2)"
  },
  {
    "input": "input : list = [5, -4, 3, -5]\noutput : list = [-1, 0, 7, 9]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sub_n([5, -4, 3, -5],-3),-1))))",
    "io_inp": [
      5,
      -4,
      3,
      -5
    ],
    "io_out": [
      -1,
      0,
      7,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_asc(sub_n(sub_n(input,-3),-1))))"
  },
  {
    "input": "input : list = [5, -5, -1, 4]\noutput : list = [2, 1, -4, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc([5, -5, -1, 4]),3)))",
    "io_inp": [
      5,
      -5,
      -1,
      4
    ],
    "io_out": [
      2,
      1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_asc(input),3)))"
  },
  {
    "input": "input : list = [-3, -4]\noutput : list = [-3, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n([-3, -4],3)),3))",
    "io_inp": [
      -3,
      -4
    ],
    "io_out": [
      -3,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(input,3)),3))"
  },
  {
    "input": "input : list = [3, 3, -5]\noutput : list = [-2, -2, -10]",
    "output": "generated_output : list = add_n(add_n(sub_n([3, 3, -5],3),-4),2)",
    "io_inp": [
      3,
      3,
      -5
    ],
    "io_out": [
      -2,
      -2,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,3),-4),2)"
  },
  {
    "input": "input : list = [-2, 4, -4]\noutput : list = [-14, -8, -6]",
    "output": "generated_output : list = sub_n(add_n(mul_n(reverse(sort_asc([-2, 4, -4])),-1),-5),5)",
    "io_inp": [
      -2,
      4,
      -4
    ],
    "io_out": [
      -14,
      -8,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(mul_n(reverse(sort_asc(input)),-1),-5),5)"
  },
  {
    "input": "input : list = [-1, -1, -4]\noutput : list = [-6, -6, -9]",
    "output": "generated_output : list = sort_des(sort_des(add_n([-1, -1, -4],-5)))",
    "io_inp": [
      -1,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(input,-5)))"
  },
  {
    "input": "input : list = [0, -4, -4]\noutput : list = [-9, -9]",
    "output": "generated_output : list = mul_n(sort_des(reverse(add_n(drop([0, -4, -4],1),1))),3)",
    "io_inp": [
      0,
      -4,
      -4
    ],
    "io_out": [
      -9,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(reverse(add_n(drop(input,1),1))),3)"
  },
  {
    "input": "input : list = [3, -3, -4, 2, 3, 2]\noutput : list = [-3, 3, 4, -2, -3, -2]",
    "output": "generated_output : list = take(mul_n([3, -3, -4, 2, 3, 2],-1),6)",
    "io_inp": [
      3,
      -3,
      -4,
      2,
      3,
      2
    ],
    "io_out": [
      -3,
      3,
      4,
      -2,
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(mul_n(input,-1),6)"
  },
  {
    "input": "input : list = [-2, -5, 2, -2, 1]\noutput : list = [2, 1, -2, -2, -5]",
    "output": "generated_output : list = sort_des(sort_asc([-2, -5, 2, -2, 1]))",
    "io_inp": [
      -2,
      -5,
      2,
      -2,
      1
    ],
    "io_out": [
      2,
      1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, -5, -5, 3, 5]\noutput : list = [-77, -47, 28, 73, 73]",
    "output": "generated_output : list = take(sort_asc(add_n(mul_n(mul_n([-2, -5, -5, 3, 5],-3),5),-2)),27)",
    "io_inp": [
      -2,
      -5,
      -5,
      3,
      5
    ],
    "io_out": [
      -77,
      -47,
      28,
      73,
      73
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(mul_n(mul_n(input,-3),5),-2)),27)"
  },
  {
    "input": "input : list = [-2, -2, -3]\noutput : list = [-2, -2, 1]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(sub_n([-2, -2, -3],-2)),-3),2))",
    "io_inp": [
      -2,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(sub_n(input,-2)),-3),2))"
  },
  {
    "input": "input : list = [2, 0, -1, -2, 5]\noutput : list = [-2, -1, 0, 2, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(sort_des(reverse([2, 0, -1, -2, 5])))))",
    "io_inp": [
      2,
      0,
      -1,
      -2,
      5
    ],
    "io_out": [
      -2,
      -1,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-2, 0, 0, -3, -1, -3]\noutput : list = [10, 10, 8, 6, 4, 4]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(add_n([-2, 0, 0, -3, -1, -3],-2)),-2)))",
    "io_inp": [
      -2,
      0,
      0,
      -3,
      -1,
      -3
    ],
    "io_out": [
      10,
      10,
      8,
      6,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(sort_asc(add_n(input,-2)),-2)))"
  },
  {
    "input": "input : list = [4, 0, 4]\noutput : list = [0, 4]",
    "output": "generated_output : list = drop([4, 0, 4],1)",
    "io_inp": [
      4,
      0,
      4
    ],
    "io_out": [
      0,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [3, -4, 5]\noutput : list = [-5, -1, 13]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(sub_n(sort_asc([3, -4, 5]),3)),-2),1)",
    "io_inp": [
      3,
      -4,
      5
    ],
    "io_out": [
      -5,
      -1,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(sub_n(sort_asc(input),3)),-2),1)"
  },
  {
    "input": "input : list = [-1, -2, 5, 1]\noutput : list = [1, 5, -2, -1]",
    "output": "generated_output : list = reverse(reverse(take(take(reverse([-1, -2, 5, 1]),18),23)))",
    "io_inp": [
      -1,
      -2,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(take(reverse(input),18),23)))"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [0, -24]",
    "output": "generated_output : list = sort_des(sort_des(mul_n(mul_n(mul_n([3, 0],-1),-2),-4)))",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      0,
      -24
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(mul_n(mul_n(mul_n(input,-1),-2),-4)))"
  },
  {
    "input": "input : list = [-2, 2, -4, 4, 0, 2]\noutput : list = [0, 4, 6, 8]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(reverse(drop([-2, 2, -4, 4, 0, 2],2))),4))",
    "io_inp": [
      -2,
      2,
      -4,
      4,
      0,
      2
    ],
    "io_out": [
      0,
      4,
      6,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(reverse(drop(input,2))),4))"
  },
  {
    "input": "input : list = [-1, -1, 2, -3, 2]\noutput : list = [2, 4, 4, 7, 7]",
    "output": "generated_output : list = sub_n(sort_asc([-1, -1, 2, -3, 2]),-5)",
    "io_inp": [
      -1,
      -1,
      2,
      -3,
      2
    ],
    "io_out": [
      2,
      4,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-5)"
  },
  {
    "input": "input : list = [5, -1, -3, -2, -4]\noutput : list = [5, -1]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(take(take([5, -1, -3, -2, -4],2),5))))",
    "io_inp": [
      5,
      -1,
      -3,
      -2,
      -4
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(take(take(input,2),5))))"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-3, -5]",
    "output": "generated_output : list = reverse([-5, -3])",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [28, 23]",
    "output": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n([4, 5],5)))),-3)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      28,
      23
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(sort_des(mul_n(input,5)))),-3)"
  },
  {
    "input": "input : list = [3, -3, 4]\noutput : list = [8]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(take([3, -3, 4],1),1),17)),5)",
    "io_inp": [
      3,
      -3,
      4
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(take(input,1),1),17)),5)"
  },
  {
    "input": "input : list = [4, -2, -3, -5, 2, 1]\noutput : list = [12, 6, 3, -6, -9, -15]",
    "output": "generated_output : list = sort_des(take(mul_n(sort_des(sort_des([4, -2, -3, -5, 2, 1])),3),9))",
    "io_inp": [
      4,
      -2,
      -3,
      -5,
      2,
      1
    ],
    "io_out": [
      12,
      6,
      3,
      -6,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(sort_des(sort_des(input)),3),9))"
  },
  {
    "input": "input : list = [-5, 4, -2, 2, 0]\noutput : list = [114, 54, -6, -66, -156]",
    "output": "generated_output : list = mul_n(sort_des(add_n(mul_n(mul_n([-5, 4, -2, 2, 0],-5),-2),-2)),3)",
    "io_inp": [
      -5,
      4,
      -2,
      2,
      0
    ],
    "io_out": [
      114,
      54,
      -6,
      -66,
      -156
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(add_n(mul_n(mul_n(input,-5),-2),-2)),3)"
  },
  {
    "input": "input : list = [5, -5, 3, -4, -4, 4]\noutput : list = [17, -15, -15, 13, -19, 21]",
    "output": "generated_output : list = reverse(add_n(add_n(add_n(mul_n([5, -5, 3, -4, -4, 4],4),2),2),-3))",
    "io_inp": [
      5,
      -5,
      3,
      -4,
      -4,
      4
    ],
    "io_out": [
      17,
      -15,
      -15,
      13,
      -19,
      21
    ],
    "output_masked": "generated_output : list = reverse(add_n(add_n(add_n(mul_n(input,4),2),2),-3))"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [20, 55]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(take(reverse([-2, 5]),9),4),5),-5)",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      20,
      55
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(take(reverse(input),9),4),5),-5)"
  },
  {
    "input": "input : list = [0, -4, -1, -2, 4]\noutput : list = [1, -5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(drop([0, -4, -1, -2, 4],3),-1)),-4)",
    "io_inp": [
      0,
      -4,
      -1,
      -2,
      4
    ],
    "io_out": [
      1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(drop(input,3),-1)),-4)"
  },
  {
    "input": "input : list = [0, -5, -2]\noutput : list = [2, 5, 0]",
    "output": "generated_output : list = mul_n(take(reverse([0, -5, -2]),15),-1)",
    "io_inp": [
      0,
      -5,
      -2
    ],
    "io_out": [
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(input),15),-1)"
  },
  {
    "input": "input : list = [-2, 1, -2, 1, 5]\noutput : list = [15, 3, 3, -6, -6]",
    "output": "generated_output : list = take(reverse(reverse(mul_n(sort_des([-2, 1, -2, 1, 5]),3))),13)",
    "io_inp": [
      -2,
      1,
      -2,
      1,
      5
    ],
    "io_out": [
      15,
      3,
      3,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(reverse(reverse(mul_n(sort_des(input),3))),13)"
  },
  {
    "input": "input : list = [-1, -5, -1]\noutput : list = [-6, -2, -2]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sort_asc([-1, -5, -1])),2)),-3)",
    "io_inp": [
      -1,
      -5,
      -1
    ],
    "io_out": [
      -6,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sort_asc(input)),2)),-3)"
  },
  {
    "input": "input : list = [4, 5, 2, 1]\noutput : list = [0, -2]",
    "output": "generated_output : list = mul_n(sub_n(drop([4, 5, 2, 1],2),2),2)",
    "io_inp": [
      4,
      5,
      2,
      1
    ],
    "io_out": [
      0,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(drop(input,2),2),2)"
  },
  {
    "input": "input : list = [-3, -2, -1]\noutput : list = [-1, -2, -3]",
    "output": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des([-3, -2, -1])),1)))",
    "io_inp": [
      -3,
      -2,
      -1
    ],
    "io_out": [
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(mul_n(sort_des(sort_des(input)),1)))"
  },
  {
    "input": "input : list = [4, -5, 1, 3, 1]\noutput : list = [5, 4, 2, 2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(sort_des([4, -5, 1, 3, 1]),-1)))",
    "io_inp": [
      4,
      -5,
      1,
      3,
      1
    ],
    "io_out": [
      5,
      4,
      2,
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(sort_des(input),-1)))"
  },
  {
    "input": "input : list = [5, 0, -3]\noutput : list = [7, 2, -1]",
    "output": "generated_output : list = reverse(reverse(take(add_n(sort_des([5, 0, -3]),2),22)))",
    "io_inp": [
      5,
      0,
      -3
    ],
    "io_out": [
      7,
      2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(sort_des(input),2),22)))"
  },
  {
    "input": "input : list = [4, -1, 4, 1]\noutput : list = [-1, 1, 4, 4]",
    "output": "generated_output : list = sort_asc([4, -1, 4, 1])",
    "io_inp": [
      4,
      -1,
      4,
      1
    ],
    "io_out": [
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [4, 5]",
    "output": "generated_output : list = mul_n(sort_des([-5, -4]),-1)",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-1)"
  },
  {
    "input": "input : list = [0, 3, 3, 0, -4, 4]\noutput : list = [5, 5, 2]",
    "output": "generated_output : list = sort_des(sub_n(reverse(sort_asc(take([0, 3, 3, 0, -4, 4],3))),-2))",
    "io_inp": [
      0,
      3,
      3,
      0,
      -4,
      4
    ],
    "io_out": [
      5,
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(reverse(sort_asc(take(input,3))),-2))"
  },
  {
    "input": "input : list = [-4, -2, 5, 2, 4]\noutput : list = [8, 7, 5, 1, -1]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(take(mul_n([-4, -2, 5, 2, 4],1),16))),-3)",
    "io_inp": [
      -4,
      -2,
      5,
      2,
      4
    ],
    "io_out": [
      8,
      7,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(take(mul_n(input,1),16))),-3)"
  },
  {
    "input": "input : list = [-2, -3, -1, 0, 5]\noutput : list = [30, 40, 20, 10, -40]",
    "output": "generated_output : list = take(mul_n(mul_n(add_n(add_n([-2, -3, -1, 0, 5],-3),2),2),-5),5)",
    "io_inp": [
      -2,
      -3,
      -1,
      0,
      5
    ],
    "io_out": [
      30,
      40,
      20,
      10,
      -40
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(add_n(add_n(input,-3),2),2),-5),5)"
  },
  {
    "input": "input : list = [5, 4, 2, 5, -1]\noutput : list = [-8, -4, -2]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(take([5, 4, 2, 5, -1],3)),-4),2),2)",
    "io_inp": [
      5,
      4,
      2,
      5,
      -1
    ],
    "io_out": [
      -8,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(take(input,3)),-4),2),2)"
  },
  {
    "input": "input : list = [-5, 4, 3]\noutput : list = [2, 0, -16]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sort_des(reverse([-5, 4, 3]))),3),2)",
    "io_inp": [
      -5,
      4,
      3
    ],
    "io_out": [
      2,
      0,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sort_des(reverse(input))),3),2)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_asc([-5, -2])))))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -5, -4]\noutput : list = [-1, -1, 0]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(reverse([-5, -5, -4]),4)),1))",
    "io_inp": [
      -5,
      -5,
      -4
    ],
    "io_out": [
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(add_n(reverse(input),4)),1))"
  },
  {
    "input": "input : list = [0, 1, 3]\noutput : list = [-4, -3, -1]",
    "output": "generated_output : list = sub_n([0, 1, 3],4)",
    "io_inp": [
      0,
      1,
      3
    ],
    "io_out": [
      -4,
      -3,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [2, 1, 2]\noutput : list = [1, 2, 2]",
    "output": "generated_output : list = sort_asc([2, 1, 2])",
    "io_inp": [
      2,
      1,
      2
    ],
    "io_out": [
      1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, 5]\noutput : list = [7, 6]",
    "output": "generated_output : list = add_n(reverse(take(sub_n(mul_n([4, 5],1),3),3)),5)",
    "io_inp": [
      4,
      5
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(take(sub_n(mul_n(input,1),3),3)),5)"
  },
  {
    "input": "input : list = [2, 4, -5, 5]\noutput : list = [7, 9, 0, 10]",
    "output": "generated_output : list = sub_n([2, 4, -5, 5],-5)",
    "io_inp": [
      2,
      4,
      -5,
      5
    ],
    "io_out": [
      7,
      9,
      0,
      10
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [-5, 2, 4, 0, 4]\noutput : list = [-5, 0, 2, 4, 4]",
    "output": "generated_output : list = reverse(take(take(reverse(sort_asc([-5, 2, 4, 0, 4])),33),42))",
    "io_inp": [
      -5,
      2,
      4,
      0,
      4
    ],
    "io_out": [
      -5,
      0,
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(take(take(reverse(sort_asc(input)),33),42))"
  },
  {
    "input": "input : list = [-5, -2, 2, -2]\noutput : list = [-1, 2, 6, 2]",
    "output": "generated_output : list = take(sub_n([-5, -2, 2, -2],-4),15)",
    "io_inp": [
      -5,
      -2,
      2,
      -2
    ],
    "io_out": [
      -1,
      2,
      6,
      2
    ],
    "output_masked": "generated_output : list = take(sub_n(input,-4),15)"
  },
  {
    "input": "input : list = [5, 1, -3, -5, 4, 1]\noutput : list = [10, 0, -20, -20, -35, -40]",
    "output": "generated_output : list = mul_n(take(sort_asc(take(add_n([5, 1, -3, -5, 4, 1],3),23)),31),-5)",
    "io_inp": [
      5,
      1,
      -3,
      -5,
      4,
      1
    ],
    "io_out": [
      10,
      0,
      -20,
      -20,
      -35,
      -40
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(take(add_n(input,3),23)),31),-5)"
  },
  {
    "input": "input : list = [5, -2, -1, -3, -3, -1]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(take(add_n(drop([5, -2, -1, -3, -3, -1],3),5),30)))",
    "io_inp": [
      5,
      -2,
      -1,
      -3,
      -3,
      -1
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(add_n(drop(input,3),5),30)))"
  },
  {
    "input": "input : list = [0, 2, -5, 5, 4]\noutput : list = [2, 3, -7, 0, -2]",
    "output": "generated_output : list = reverse(sub_n(sub_n([0, 2, -5, 5, 4],1),1))",
    "io_inp": [
      0,
      2,
      -5,
      5,
      4
    ],
    "io_out": [
      2,
      3,
      -7,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(input,1),1))"
  },
  {
    "input": "input : list = [-2, -1, 3]\noutput : list = [-5, -3, 5]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(mul_n([-2, -1, 3],2)))),-1)",
    "io_inp": [
      -2,
      -1,
      3
    ],
    "io_out": [
      -5,
      -3,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(mul_n(input,2)))),-1)"
  },
  {
    "input": "input : list = [-3, 1]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(add_n(sort_asc([-3, 1]),1),7)",
    "io_inp": [
      -3,
      1
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(add_n(sort_asc(input),1),7)"
  },
  {
    "input": "input : list = [0, -3, -3, 0]\noutput : list = [0, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take([0, -3, -3, 0],2),-1))))",
    "io_inp": [
      0,
      -3,
      -3,
      0
    ],
    "io_out": [
      0,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(mul_n(take(input,2),-1))))"
  },
  {
    "input": "input : list = [-5, 1, -3, 0]\noutput : list = [0, 15]",
    "output": "generated_output : list = take(mul_n(sort_asc(mul_n(drop([-5, 1, -3, 0],2),-1)),5),18)",
    "io_inp": [
      -5,
      1,
      -3,
      0
    ],
    "io_out": [
      0,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(mul_n(drop(input,2),-1)),5),18)"
  },
  {
    "input": "input : list = [2, 4, -5]\noutput : list = [6, 4, -3]",
    "output": "generated_output : list = sort_des(reverse(sort_des(sort_des(add_n([2, 4, -5],2)))))",
    "io_inp": [
      2,
      4,
      -5
    ],
    "io_out": [
      6,
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(sort_des(add_n(input,2)))))"
  },
  {
    "input": "input : list = [-5, -5, 3, -2]\noutput : list = [21, 21, -11, 9]",
    "output": "generated_output : list = add_n(take(mul_n(reverse(reverse([-5, -5, 3, -2])),-4),41),1)",
    "io_inp": [
      -5,
      -5,
      3,
      -2
    ],
    "io_out": [
      21,
      21,
      -11,
      9
    ],
    "output_masked": "generated_output : list = add_n(take(mul_n(reverse(reverse(input)),-4),41),1)"
  },
  {
    "input": "input : list = [4, 0, 0, 3, -4, -5]\noutput : list = [4, 3, 0, 0, -4, -5]",
    "output": "generated_output : list = sort_des([4, 0, 0, 3, -4, -5])",
    "io_inp": [
      4,
      0,
      0,
      3,
      -4,
      -5
    ],
    "io_out": [
      4,
      3,
      0,
      0,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, 3, 1]\noutput : list = [12, -3]",
    "output": "generated_output : list = take(add_n(sub_n(mul_n(mul_n([-2, 3, 1],-3),1),-3),3),2)",
    "io_inp": [
      -2,
      3,
      1
    ],
    "io_out": [
      12,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sub_n(mul_n(mul_n(input,-3),1),-3),3),2)"
  },
  {
    "input": "input : list = [-1, 5, 1, 1, 3, 0]\noutput : list = [-1, 0, 1, 1, 3, 5]",
    "output": "generated_output : list = sort_asc([-1, 5, 1, 1, 3, 0])",
    "io_inp": [
      -1,
      5,
      1,
      1,
      3,
      0
    ],
    "io_out": [
      -1,
      0,
      1,
      1,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(take(sub_n([0, 3],2),4),4)))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(take(sub_n(input,2),4),4)))"
  },
  {
    "input": "input : list = [-3, -4, -5, -5, -5, -2]\noutput : list = [-3]",
    "output": "generated_output : list = take([-3, -4, -5, -5, -5, -2],1)",
    "io_inp": [
      -3,
      -4,
      -5,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [2, 3, 4, 4, -1, -1]\noutput : list = [12, 18, 24, 24, -6, -6]",
    "output": "generated_output : list = mul_n(mul_n(mul_n([2, 3, 4, 4, -1, -1],2),-3),-1)",
    "io_inp": [
      2,
      3,
      4,
      4,
      -1,
      -1
    ],
    "io_out": [
      12,
      18,
      24,
      24,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(input,2),-3),-1)"
  },
  {
    "input": "input : list = [-3, -2, 4, 0, 4, 5]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = add_n(add_n(drop([-3, -2, 4, 0, 4, 5],3),2),-2)",
    "io_inp": [
      -3,
      -2,
      4,
      0,
      4,
      5
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(add_n(drop(input,3),2),-2)"
  },
  {
    "input": "input : list = [-1, -4, -5, -3]\noutput : list = [-4, -6, -7, -8]",
    "output": "generated_output : list = sort_des(add_n([-1, -4, -5, -3],-3))",
    "io_inp": [
      -1,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -4,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-3))"
  },
  {
    "input": "input : list = [-1, 1, -1, -5, 5, 0]\noutput : list = [-2, 3, -7, -3]",
    "output": "generated_output : list = take(reverse(add_n(drop([-1, 1, -1, -5, 5, 0],2),-2)),32)",
    "io_inp": [
      -1,
      1,
      -1,
      -5,
      5,
      0
    ],
    "io_out": [
      -2,
      3,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(drop(input,2),-2)),32)"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [3, 5]",
    "output": "generated_output : list = sort_asc([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-3, -2]",
    "output": "generated_output : list = take(sort_asc([-3, -2]),16)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),16)"
  },
  {
    "input": "input : list = [4, 4, 4, 4]\noutput : list = [-14, -14, -14, -14]",
    "output": "generated_output : list = sort_asc(add_n(mul_n([4, 4, 4, 4],-3),-2))",
    "io_inp": [
      4,
      4,
      4,
      4
    ],
    "io_out": [
      -14,
      -14,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(mul_n(input,-3),-2))"
  },
  {
    "input": "input : list = [5, -5, -5]\noutput : list = [23, -177, -177]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sub_n([5, -5, -5],2),2),5),4),-3)",
    "io_inp": [
      5,
      -5,
      -5
    ],
    "io_out": [
      23,
      -177,
      -177
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(sub_n(input,2),2),5),4),-3)"
  },
  {
    "input": "input : list = [3, -2, 2]\noutput : list = [-2, -7, -3]",
    "output": "generated_output : list = add_n([3, -2, 2],-5)",
    "io_inp": [
      3,
      -2,
      2
    ],
    "io_out": [
      -2,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 2, -2, 0, 4, -4]\noutput : list = [-101, -51, -26, -1, 49, 99]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(mul_n([-1, 2, -2, 0, 4, -4],-5),-5)),1))",
    "io_inp": [
      -1,
      2,
      -2,
      0,
      4,
      -4
    ],
    "io_out": [
      -101,
      -51,
      -26,
      -1,
      49,
      99
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(mul_n(mul_n(input,-5),-5)),1))"
  },
  {
    "input": "input : list = [-5, -4]\noutput : list = [-4, -5]",
    "output": "generated_output : list = sort_des(sort_des(take(sort_asc(sort_asc([-5, -4])),11)))",
    "io_inp": [
      -5,
      -4
    ],
    "io_out": [
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(take(sort_asc(sort_asc(input)),11)))"
  },
  {
    "input": "input : list = [4, 0, 5, -1]\noutput : list = [4]",
    "output": "generated_output : list = take([4, 0, 5, -1],1)",
    "io_inp": [
      4,
      0,
      5,
      -1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, -1, 3, -2, -3, 3]\noutput : list = [-3, -9]",
    "output": "generated_output : list = take(sub_n(sort_des(mul_n(take([-4, -1, 3, -2, -3, 3],2),2)),1),27)",
    "io_inp": [
      -4,
      -1,
      3,
      -2,
      -3,
      3
    ],
    "io_out": [
      -3,
      -9
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(mul_n(take(input,2),2)),1),27)"
  },
  {
    "input": "input : list = [-5, 1, -3, -3, 1]\noutput : list = [-5, -3, -3, 1, 1]",
    "output": "generated_output : list = sort_asc([-5, 1, -3, -3, 1])",
    "io_inp": [
      -5,
      1,
      -3,
      -3,
      1
    ],
    "io_out": [
      -5,
      -3,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [1, 1, -5, -1, 3, -5]\noutput : list = [-10, -10, -6, -4, -4, -2]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sub_n(sort_asc([1, 1, -5, -1, 3, -5]),1)),-4))",
    "io_inp": [
      1,
      1,
      -5,
      -1,
      3,
      -5
    ],
    "io_out": [
      -10,
      -10,
      -6,
      -4,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sub_n(sort_asc(input),1)),-4))"
  },
  {
    "input": "input : list = [0, 3, -1, -2]\noutput : list = [-25, 50, 75, 100]",
    "output": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_asc([0, 3, -1, -2]),-2),5)),-5)",
    "io_inp": [
      0,
      3,
      -1,
      -2
    ],
    "io_out": [
      -25,
      50,
      75,
      100
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(add_n(sort_asc(input),-2),5)),-5)"
  },
  {
    "input": "input : list = [4, 3, -3]\noutput : list = [-3, 3, 4]",
    "output": "generated_output : list = reverse([4, 3, -3])",
    "io_inp": [
      4,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -4, -4, 4, -4]\noutput : list = [-6, -12, -12]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(add_n(take([-1, -4, -4, 4, -4],3),-2)),2))",
    "io_inp": [
      -1,
      -4,
      -4,
      4,
      -4
    ],
    "io_out": [
      -6,
      -12,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(add_n(take(input,3),-2)),2))"
  },
  {
    "input": "input : list = [0, 1, 4, -2, -1]\noutput : list = [-7, -5, -3, -1, 5]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sub_n(mul_n([0, 1, 4, -2, -1],2),3))))",
    "io_inp": [
      0,
      1,
      4,
      -2,
      -1
    ],
    "io_out": [
      -7,
      -5,
      -3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sub_n(mul_n(input,2),3))))"
  },
  {
    "input": "input : list = [-3, -1, -3, 4, 1]\noutput : list = [-2, -2, 0, 2, 5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(add_n(add_n([-3, -1, -3, 4, 1],4),-3),2)),2)",
    "io_inp": [
      -3,
      -1,
      -3,
      4,
      1
    ],
    "io_out": [
      -2,
      -2,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(add_n(add_n(input,4),-3),2)),2)"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [20, -20]",
    "output": "generated_output : list = sort_des(mul_n([5, -5],4))",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(input,4))"
  },
  {
    "input": "input : list = [3, 0, 1, -3, -4]\noutput : list = [15, 0, 5, -15, -20]",
    "output": "generated_output : list = mul_n([3, 0, 1, -3, -4],5)",
    "io_inp": [
      3,
      0,
      1,
      -3,
      -4
    ],
    "io_out": [
      15,
      0,
      5,
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -3, 4, -2, 0]\noutput : list = [3, 2, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(reverse([2, -3, 4, -2, 0])),-1)))",
    "io_inp": [
      2,
      -3,
      4,
      -2,
      0
    ],
    "io_out": [
      3,
      2,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(sort_asc(reverse(input)),-1)))"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [6, 9]",
    "output": "generated_output : list = add_n([2, 5],4)",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      6,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [0, -5, -1, -5]\noutput : list = [-8, 0, -8, 2]",
    "output": "generated_output : list = take(reverse(mul_n(sub_n(add_n([0, -5, -1, -5],3),2),2)),9)",
    "io_inp": [
      0,
      -5,
      -1,
      -5
    ],
    "io_out": [
      -8,
      0,
      -8,
      2
    ],
    "output_masked": "generated_output : list = take(reverse(mul_n(sub_n(add_n(input,3),2),2)),9)"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [13, -8, -8]",
    "output": "generated_output : list = sort_des(add_n(sort_asc(sub_n(mul_n([-2, 5, -2],3),-3)),-5))",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      13,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_asc(sub_n(mul_n(input,3),-3)),-5))"
  },
  {
    "input": "input : list = [-3, -1, -4, -3, -5, -4]\noutput : list = [-5, -7, -7, -8, -8, -9]",
    "output": "generated_output : list = add_n(sort_des(sub_n(reverse(sort_asc([-3, -1, -4, -3, -5, -4])),3)),-1)",
    "io_inp": [
      -3,
      -1,
      -4,
      -3,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -7,
      -7,
      -8,
      -8,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(reverse(sort_asc(input)),3)),-1)"
  },
  {
    "input": "input : list = [-3, 2, 5, 2, 3]\noutput : list = [-27, -18, -45, -18, 27]",
    "output": "generated_output : list = mul_n(take(take(reverse(mul_n([-3, 2, 5, 2, 3],3)),17),28),-3)",
    "io_inp": [
      -3,
      2,
      5,
      2,
      3
    ],
    "io_out": [
      -27,
      -18,
      -45,
      -18,
      27
    ],
    "output_masked": "generated_output : list = mul_n(take(take(reverse(mul_n(input,3)),17),28),-3)"
  },
  {
    "input": "input : list = [-3, 1, 2, -5, 2, -2]\noutput : list = [-4, -2, -1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n([-3, 1, 2, -5, 2, -2],-1),11))))",
    "io_inp": [
      -3,
      1,
      2,
      -5,
      2,
      -2
    ],
    "io_out": [
      -4,
      -2,
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(take(sub_n(input,-1),11))))"
  },
  {
    "input": "input : list = [3, 1, 0, -5]\noutput : list = [-1, -6]",
    "output": "generated_output : list = sort_des(sub_n(sub_n(sort_des(drop([3, 1, 0, -5],2)),3),-2))",
    "io_inp": [
      3,
      1,
      0,
      -5
    ],
    "io_out": [
      -1,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sub_n(sort_des(drop(input,2)),3),-2))"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [2, -2, -5]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_des(sort_des([-2, 1, 5]))),3))",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_des(sort_des(input))),3))"
  },
  {
    "input": "input : list = [-1, -2, 1, 0, 3, -1]\noutput : list = [-2, -1, -1, 0, 1, 3]",
    "output": "generated_output : list = sort_asc([-1, -2, 1, 0, 3, -1])",
    "io_inp": [
      -1,
      -2,
      1,
      0,
      3,
      -1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      0,
      1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-1, 1]\noutput : list = [-2, -4]",
    "output": "generated_output : list = sort_des(sub_n([-1, 1],3))",
    "io_inp": [
      -1,
      1
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,3))"
  },
  {
    "input": "input : list = [2, -1, -4]\noutput : list = [-6, -3, 0]",
    "output": "generated_output : list = reverse(add_n([2, -1, -4],-2))",
    "io_inp": [
      2,
      -1,
      -4
    ],
    "io_out": [
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-1, 3, 0, 4]\noutput : list = [1, -3, 0, -4]",
    "output": "generated_output : list = sub_n(reverse([-1, 3, 0, 4]),3)",
    "io_inp": [
      -1,
      3,
      0,
      4
    ],
    "io_out": [
      1,
      -3,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),3)"
  },
  {
    "input": "input : list = [0, 4, -5]\noutput : list = [1]",
    "output": "generated_output : list = sort_des(sort_des(add_n(take(take([0, 4, -5],1),15),1)))",
    "io_inp": [
      0,
      4,
      -5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(take(take(input,1),15),1)))"
  },
  {
    "input": "input : list = [-4, -1, -5, 2]\noutput : list = [-7, -6, -3, 0]",
    "output": "generated_output : list = reverse(take(add_n(take(sort_des([-4, -1, -5, 2]),5),-2),25))",
    "io_inp": [
      -4,
      -1,
      -5,
      2
    ],
    "io_out": [
      -7,
      -6,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(take(sort_des(input),5),-2),25))"
  },
  {
    "input": "input : list = [0, -2, 5, -1, -5, 2]\noutput : list = [-10, -7, -6, -5, -3, 0]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n([0, -2, 5, -1, -5, 2],5))))",
    "io_inp": [
      0,
      -2,
      5,
      -1,
      -5,
      2
    ],
    "io_out": [
      -10,
      -7,
      -6,
      -5,
      -3,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(input,5))))"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-12, -3]",
    "output": "generated_output : list = mul_n([-4, -1],3)",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -12,
      -3
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [3, 0, -4, 1, -2, -3]\noutput : list = [5, 6, 9, 4, 8, 11]",
    "output": "generated_output : list = sub_n(add_n(take(reverse(sub_n([3, 0, -4, 1, -2, -3],-4)),23),2),-2)",
    "io_inp": [
      3,
      0,
      -4,
      1,
      -2,
      -3
    ],
    "io_out": [
      5,
      6,
      9,
      4,
      8,
      11
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(reverse(sub_n(input,-4)),23),2),-2)"
  },
  {
    "input": "input : list = [5, 5, 0, 5, 2]\noutput : list = [20, 12, 0, 0, 0]",
    "output": "generated_output : list = take(mul_n(mul_n(sort_asc(sub_n([5, 5, 0, 5, 2],5)),-1),4),5)",
    "io_inp": [
      5,
      5,
      0,
      5,
      2
    ],
    "io_out": [
      20,
      12,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sort_asc(sub_n(input,5)),-1),4),5)"
  },
  {
    "input": "input : list = [-1, 3, 5, 4, -5, 4]\noutput : list = [-10, -8, -8, -6, 2, 10]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(take(sort_des([-1, 3, 5, 4, -5, 4]),22),-2)))",
    "io_inp": [
      -1,
      3,
      5,
      4,
      -5,
      4
    ],
    "io_out": [
      -10,
      -8,
      -8,
      -6,
      2,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(take(sort_des(input),22),-2)))"
  },
  {
    "input": "input : list = [4, 2, -4, 2]\noutput : list = [23, -1, -1, -9]",
    "output": "generated_output : list = add_n(mul_n(sort_asc(sub_n(sort_des([4, 2, -4, 2]),3)),-4),-5)",
    "io_inp": [
      4,
      2,
      -4,
      2
    ],
    "io_out": [
      23,
      -1,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_asc(sub_n(sort_des(input),3)),-4),-5)"
  },
  {
    "input": "input : list = [5, 2]\noutput : list = [4, 1]",
    "output": "generated_output : list = add_n(add_n(sort_des([5, 2]),-5),4)",
    "io_inp": [
      5,
      2
    ],
    "io_out": [
      4,
      1
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_des(input),-5),4)"
  },
  {
    "input": "input : list = [3, 0]\noutput : list = [-5, -2]",
    "output": "generated_output : list = take(take(add_n(sort_asc(reverse([3, 0])),-5),26),41)",
    "io_inp": [
      3,
      0
    ],
    "io_out": [
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(take(add_n(sort_asc(reverse(input)),-5),26),41)"
  },
  {
    "input": "input : list = [-5, 0, -5, -3, 3, 4]\noutput : list = [-5, 0]",
    "output": "generated_output : list = add_n(sort_asc(take(take(add_n([-5, 0, -5, -3, 3, 4],-3),2),26)),3)",
    "io_inp": [
      -5,
      0,
      -5,
      -3,
      3,
      4
    ],
    "io_out": [
      -5,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(take(add_n(input,-3),2),26)),3)"
  },
  {
    "input": "input : list = [2, -3, 2, -4]\noutput : list = [14, -34, 6, -34]",
    "output": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n([2, -3, 2, -4],-1),4),5)),-2)",
    "io_inp": [
      2,
      -3,
      2,
      -4
    ],
    "io_out": [
      14,
      -34,
      6,
      -34
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(mul_n(sub_n(input,-1),4),5)),-2)"
  },
  {
    "input": "input : list = [-4, -4]\noutput : list = [20, 20]",
    "output": "generated_output : list = sort_asc(mul_n(take(sort_des(sort_des([-4, -4])),20),-5))",
    "io_inp": [
      -4,
      -4
    ],
    "io_out": [
      20,
      20
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(take(sort_des(sort_des(input)),20),-5))"
  },
  {
    "input": "input : list = [3, 5, -2, -2, -2]\noutput : list = [5, 3, -2, -2, -2]",
    "output": "generated_output : list = sort_des([3, 5, -2, -2, -2])",
    "io_inp": [
      3,
      5,
      -2,
      -2,
      -2
    ],
    "io_out": [
      5,
      3,
      -2,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, 5, -3, -1]\noutput : list = [0, 5]",
    "output": "generated_output : list = sort_asc(reverse(reverse(take([0, 5, -3, -1],2))))",
    "io_inp": [
      0,
      5,
      -3,
      -1
    ],
    "io_out": [
      0,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(take(input,2))))"
  },
  {
    "input": "input : list = [1, 2, 3]\noutput : list = [3, 2, 1]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(take(reverse([1, 2, 3]),3))))",
    "io_inp": [
      1,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(take(reverse(input),3))))"
  },
  {
    "input": "input : list = [2, -4, -3, -5]\noutput : list = [-45]",
    "output": "generated_output : list = take(sub_n(mul_n(drop(mul_n([2, -4, -3, -5],-5),3),-2),-5),15)",
    "io_inp": [
      2,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -45
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(drop(mul_n(input,-5),3),-2),-5),15)"
  },
  {
    "input": "input : list = [-1, -3, 1, -2]\noutput : list = [-1]",
    "output": "generated_output : list = take([-1, -3, 1, -2],1)",
    "io_inp": [
      -1,
      -3,
      1,
      -2
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, 1, 5]\noutput : list = [5, 1, 1]",
    "output": "generated_output : list = sort_des(reverse([1, 1, 5]))",
    "io_inp": [
      1,
      1,
      5
    ],
    "io_out": [
      5,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [5, -10]",
    "output": "generated_output : list = mul_n([1, -2],5)",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      5,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-3, -4, -1, 2, 3]\noutput : list = [-9, -13]",
    "output": "generated_output : list = reverse(reverse(sub_n(mul_n(take([-3, -4, -1, 2, 3],2),4),-3)))",
    "io_inp": [
      -3,
      -4,
      -1,
      2,
      3
    ],
    "io_out": [
      -9,
      -13
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(mul_n(take(input,2),4),-3)))"
  },
  {
    "input": "input : list = [-2, 5, 0, 5, 2, 3]\noutput : list = [4, -11, 4, -5, -2]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(drop([-2, 5, 0, 5, 2, 3],1),-3),3),2),10)",
    "io_inp": [
      -2,
      5,
      0,
      5,
      2,
      3
    ],
    "io_out": [
      4,
      -11,
      4,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(drop(input,1),-3),3),2),10)"
  },
  {
    "input": "input : list = [-5, 4, -2]\noutput : list = [-10, -1, -7]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(reverse([-5, 4, -2])),24),2),3)",
    "io_inp": [
      -5,
      4,
      -2
    ],
    "io_out": [
      -10,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(reverse(input)),24),2),3)"
  },
  {
    "input": "input : list = [3, -5, 3, -1, 5]\noutput : list = [-18, -14, -14, -6, 2]",
    "output": "generated_output : list = mul_n(add_n(sort_des(reverse([3, -5, 3, -1, 5])),4),-2)",
    "io_inp": [
      3,
      -5,
      3,
      -1,
      5
    ],
    "io_out": [
      -18,
      -14,
      -14,
      -6,
      2
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(reverse(input)),4),-2)"
  },
  {
    "input": "input : list = [2, -5, -2, 2, 3]\noutput : list = [4, 3, 3, -1, -4]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sort_des(sub_n([2, -5, -2, 2, 3],-3)),3)),-1)",
    "io_inp": [
      2,
      -5,
      -2,
      2,
      3
    ],
    "io_out": [
      4,
      3,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sort_des(sub_n(input,-3)),3)),-1)"
  },
  {
    "input": "input : list = [-3, 1, 4, 3]\noutput : list = [4, 3, 1, -3]",
    "output": "generated_output : list = sort_des([-3, 1, 4, 3])",
    "io_inp": [
      -3,
      1,
      4,
      3
    ],
    "io_out": [
      4,
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-2, -5, -2, -4, 1, 1]\noutput : list = [-7, -7, -10, -12]",
    "output": "generated_output : list = sub_n(sort_des(add_n(drop(add_n([-2, -5, -2, -4, 1, 1],-2),2),-4)),2)",
    "io_inp": [
      -2,
      -5,
      -2,
      -4,
      1,
      1
    ],
    "io_out": [
      -7,
      -7,
      -10,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(add_n(drop(add_n(input,-2),2),-4)),2)"
  },
  {
    "input": "input : list = [3, -3, 2, 2]\noutput : list = [-27, -27, 33, -39]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n([3, -3, 2, 2],4),-2),1)),-3)",
    "io_inp": [
      3,
      -3,
      2,
      2
    ],
    "io_out": [
      -27,
      -27,
      33,
      -39
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sub_n(mul_n(input,4),-2),1)),-3)"
  },
  {
    "input": "input : list = [5, 3, 2, 2, 0]\noutput : list = [-1, 1]",
    "output": "generated_output : list = reverse(sort_des(sub_n(reverse(take([5, 3, 2, 2, 0],2)),4)))",
    "io_inp": [
      5,
      3,
      2,
      2,
      0
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(reverse(take(input,2)),4)))"
  },
  {
    "input": "input : list = [4, -4, -3, 4]\noutput : list = [-7, -6, 1, 1]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(mul_n([4, -4, -3, 4],1),3),2)),-2)",
    "io_inp": [
      4,
      -4,
      -3,
      4
    ],
    "io_out": [
      -7,
      -6,
      1,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sub_n(mul_n(input,1),3),2)),-2)"
  },
  {
    "input": "input : list = [-1, -3, -3, 4, 0, -1]\noutput : list = [4, 0, -1, -1, -3, -3]",
    "output": "generated_output : list = sort_des([-1, -3, -3, 4, 0, -1])",
    "io_inp": [
      -1,
      -3,
      -3,
      4,
      0,
      -1
    ],
    "io_out": [
      4,
      0,
      -1,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, -4, 0, 3]\noutput : list = [-6, -2, 2, 4, 8]",
    "output": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_asc([1, -2, -4, 0, 3])),2)),2)",
    "io_inp": [
      1,
      -2,
      -4,
      0,
      3
    ],
    "io_out": [
      -6,
      -2,
      2,
      4,
      8
    ],
    "output_masked": "generated_output : list = add_n(reverse(mul_n(sort_des(sort_asc(input)),2)),2)"
  },
  {
    "input": "input : list = [1, 1, -3, -5]\noutput : list = [-5, -3, 1, 1]",
    "output": "generated_output : list = reverse([1, 1, -3, -5])",
    "io_inp": [
      1,
      1,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -3,
      1,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -3, 1, 3, -3]\noutput : list = [-54, -45, -27, 9, 9]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sort_asc([4, -3, 1, 3, -3]),2),3),-3))",
    "io_inp": [
      4,
      -3,
      1,
      3,
      -3
    ],
    "io_out": [
      -54,
      -45,
      -27,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(add_n(sort_asc(input),2),3),-3))"
  },
  {
    "input": "input : list = [-5, -3, 5]\noutput : list = [-8, 0, 2]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(add_n(mul_n([-5, -3, 5],-1),-2))),1)",
    "io_inp": [
      -5,
      -3,
      5
    ],
    "io_out": [
      -8,
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(add_n(mul_n(input,-1),-2))),1)"
  },
  {
    "input": "input : list = [1, 5, 4, 2, 5, 5]\noutput : list = [5, 5, 8, 6, 5, 9]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n([1, 5, 4, 2, 5, 5],-4),-1)),-1),-5)",
    "io_inp": [
      1,
      5,
      4,
      2,
      5,
      5
    ],
    "io_out": [
      5,
      5,
      8,
      6,
      5,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(add_n(input,-4),-1)),-1),-5)"
  },
  {
    "input": "input : list = [0, -4, -1, -3]\noutput : list = [-50, -80, -60]",
    "output": "generated_output : list = mul_n(mul_n(add_n(add_n(drop([0, -4, -1, -3],1),4),5),-5),2)",
    "io_inp": [
      0,
      -4,
      -1,
      -3
    ],
    "io_out": [
      -50,
      -80,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(add_n(drop(input,1),4),5),-5),2)"
  },
  {
    "input": "input : list = [0, 5, 1, -2, 3, -2]\noutput : list = [-9, -9, -7, -6, -4, -2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sub_n(add_n([0, 5, 1, -2, 3, -2],-2),5))))",
    "io_inp": [
      0,
      5,
      1,
      -2,
      3,
      -2
    ],
    "io_out": [
      -9,
      -9,
      -7,
      -6,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sub_n(add_n(input,-2),5))))"
  },
  {
    "input": "input : list = [0, -3, 3]\noutput : list = [0]",
    "output": "generated_output : list = add_n(sub_n(drop(sort_asc(reverse([0, -3, 3])),2),-2),-5)",
    "io_inp": [
      0,
      -3,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(sub_n(drop(sort_asc(reverse(input)),2),-2),-5)"
  },
  {
    "input": "input : list = [-3, 2, -4, -2, 0]\noutput : list = [-9, 6, -12, -6, 0]",
    "output": "generated_output : list = mul_n([-3, 2, -4, -2, 0],3)",
    "io_inp": [
      -3,
      2,
      -4,
      -2,
      0
    ],
    "io_out": [
      -9,
      6,
      -12,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,3)"
  },
  {
    "input": "input : list = [-3, 0, -2]\noutput : list = [1, 2, 4]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_asc(add_n([-3, 0, -2],5)))),-1)",
    "io_inp": [
      -3,
      0,
      -2
    ],
    "io_out": [
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_asc(add_n(input,5)))),-1)"
  },
  {
    "input": "input : list = [-2, 1, 0, 5, 1]\noutput : list = [5, 1, 1, 0, -2]",
    "output": "generated_output : list = sort_des(take(sort_asc([-2, 1, 0, 5, 1]),6))",
    "io_inp": [
      -2,
      1,
      0,
      5,
      1
    ],
    "io_out": [
      5,
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_asc(input),6))"
  },
  {
    "input": "input : list = [-3, 2]\noutput : list = [-14, -4]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(sub_n(reverse([-3, 2]),2),2)),-4)",
    "io_inp": [
      -3,
      2
    ],
    "io_out": [
      -14,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(sub_n(reverse(input),2),2)),-4)"
  },
  {
    "input": "input : list = [-2, -1, -3]\noutput : list = [-15, -10, -5]",
    "output": "generated_output : list = mul_n(sort_asc([-2, -1, -3]),5)",
    "io_inp": [
      -2,
      -1,
      -3
    ],
    "io_out": [
      -15,
      -10,
      -5
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),5)"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [-2, -8]",
    "output": "generated_output : list = sub_n(sub_n(add_n(mul_n([2, 4],-3),-5),-4),-5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(mul_n(input,-3),-5),-4),-5)"
  },
  {
    "input": "input : list = [-3, -1, 1]\noutput : list = [-1, 1, 3]",
    "output": "generated_output : list = sub_n([-3, -1, 1],-2)",
    "io_inp": [
      -3,
      -1,
      1
    ],
    "io_out": [
      -1,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-3, 0, -3]\noutput : list = [2]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(take([-3, 0, -3],1),-2)),-2),14)",
    "io_inp": [
      -3,
      0,
      -3
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(take(input,1),-2)),-2),14)"
  },
  {
    "input": "input : list = [4, -1, 1, 2, 2]\noutput : list = [6, -4, -9, -9, -19]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(mul_n([4, -1, 1, 2, 2],1)),-5),1),-1)",
    "io_inp": [
      4,
      -1,
      1,
      2,
      2
    ],
    "io_out": [
      6,
      -4,
      -9,
      -9,
      -19
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_asc(mul_n(input,1)),-5),1),-1)"
  },
  {
    "input": "input : list = [-2, 0, -1, 5, -2, -4]\noutput : list = [1, 0, 6, -1, -3]",
    "output": "generated_output : list = add_n(drop([-2, 0, -1, 5, -2, -4],1),1)",
    "io_inp": [
      -2,
      0,
      -1,
      5,
      -2,
      -4
    ],
    "io_out": [
      1,
      0,
      6,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(drop(input,1),1)"
  },
  {
    "input": "input : list = [-5, 0, -3, 4, -2]\noutput : list = [-2, 4, -3, 0, -5]",
    "output": "generated_output : list = reverse([-5, 0, -3, 4, -2])",
    "io_inp": [
      -5,
      0,
      -3,
      4,
      -2
    ],
    "io_out": [
      -2,
      4,
      -3,
      0,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, -3, -5, 0]\noutput : list = [-8, -3]",
    "output": "generated_output : list = reverse(sort_des(sub_n(sort_asc(drop([-1, -3, -5, 0],2)),3)))",
    "io_inp": [
      -1,
      -3,
      -5,
      0
    ],
    "io_out": [
      -8,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(sort_asc(drop(input,2)),3)))"
  },
  {
    "input": "input : list = [4, 2, 5, -3, -4, 2]\noutput : list = [-15, -14, -12, -12, -7, -6]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(add_n([4, 2, 5, -3, -4, 2],5)),-1),5))",
    "io_inp": [
      4,
      2,
      5,
      -3,
      -4,
      2
    ],
    "io_out": [
      -15,
      -14,
      -12,
      -12,
      -7,
      -6
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(add_n(input,5)),-1),5))"
  },
  {
    "input": "input : list = [3, 3, -2, 5, 3, 2]\noutput : list = [7, 7, 2, 9, 7, 6]",
    "output": "generated_output : list = sub_n([3, 3, -2, 5, 3, 2],-4)",
    "io_inp": [
      3,
      3,
      -2,
      5,
      3,
      2
    ],
    "io_out": [
      7,
      7,
      2,
      9,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, -4, -3, -4, 2, 2]\noutput : list = [-12, -8, -8, 12, 16, 16]",
    "output": "generated_output : list = sort_asc(sort_asc(take(mul_n(sort_asc([3, -4, -3, -4, 2, 2]),-4),13)))",
    "io_inp": [
      3,
      -4,
      -3,
      -4,
      2,
      2
    ],
    "io_out": [
      -12,
      -8,
      -8,
      12,
      16,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(mul_n(sort_asc(input),-4),13)))"
  },
  {
    "input": "input : list = [-5, 1, -2, -2, 4]\noutput : list = [-6, 0]",
    "output": "generated_output : list = add_n(drop([-5, 1, -2, -2, 4],3),-4)",
    "io_inp": [
      -5,
      1,
      -2,
      -2,
      4
    ],
    "io_out": [
      -6,
      0
    ],
    "output_masked": "generated_output : list = add_n(drop(input,3),-4)"
  },
  {
    "input": "input : list = [-5, -2, 0, 3]\noutput : list = [-12, -9, -7, -4]",
    "output": "generated_output : list = add_n(take(sub_n([-5, -2, 0, 3],2),11),-5)",
    "io_inp": [
      -5,
      -2,
      0,
      3
    ],
    "io_out": [
      -12,
      -9,
      -7,
      -4
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(input,2),11),-5)"
  },
  {
    "input": "input : list = [-3, 2, -3, 0, -2, 0]\noutput : list = [-6, -1, -6, -3, -5, -3]",
    "output": "generated_output : list = add_n([-3, 2, -3, 0, -2, 0],-3)",
    "io_inp": [
      -3,
      2,
      -3,
      0,
      -2,
      0
    ],
    "io_out": [
      -6,
      -1,
      -6,
      -3,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [0, -3, 2, -4, 4]\noutput : list = [-8, -7, -4, -2, 0]",
    "output": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sort_asc([0, -3, 2, -4, 4]))),4))",
    "io_inp": [
      0,
      -3,
      2,
      -4,
      4
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -2,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_des(sort_asc(sort_asc(input))),4))"
  },
  {
    "input": "input : list = [-4, -1, -4, -5, 4, 2]\noutput : list = [9, 10, 10, 13, 16, 18]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sub_n([-4, -1, -4, -5, 4, 2],-1),-5),-3),-5))",
    "io_inp": [
      -4,
      -1,
      -4,
      -5,
      4,
      2
    ],
    "io_out": [
      9,
      10,
      10,
      13,
      16,
      18
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sub_n(sub_n(input,-1),-5),-3),-5))"
  },
  {
    "input": "input : list = [1, 4, -1, 5, -1, -3]\noutput : list = [-150, -225, -100, -250, -100, -50]",
    "output": "generated_output : list = mul_n(mul_n(add_n(reverse(reverse([1, 4, -1, 5, -1, -3])),5),-5),5)",
    "io_inp": [
      1,
      4,
      -1,
      5,
      -1,
      -3
    ],
    "io_out": [
      -150,
      -225,
      -100,
      -250,
      -100,
      -50
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(reverse(reverse(input)),5),-5),5)"
  },
  {
    "input": "input : list = [2, -3, -5, -1, 5, 1]\noutput : list = [30, 24, 18, 12, 9, 0]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_asc([2, -3, -5, -1, 5, 1]),-5),1),3),-1)",
    "io_inp": [
      2,
      -3,
      -5,
      -1,
      5,
      1
    ],
    "io_out": [
      30,
      24,
      18,
      12,
      9,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(add_n(sort_asc(input),-5),1),3),-1)"
  },
  {
    "input": "input : list = [4, -2, 0, 2]\noutput : list = [-1, 1]",
    "output": "generated_output : list = drop(sort_asc(add_n(mul_n(reverse([4, -2, 0, 2]),-1),-1)),2)",
    "io_inp": [
      4,
      -2,
      0,
      2
    ],
    "io_out": [
      -1,
      1
    ],
    "output_masked": "generated_output : list = drop(sort_asc(add_n(mul_n(reverse(input),-1),-1)),2)"
  },
  {
    "input": "input : list = [-1, -5]\noutput : list = [15, 31]",
    "output": "generated_output : list = add_n(sort_asc(mul_n(take(sub_n([-1, -5],4),15),-4)),-5)",
    "io_inp": [
      -1,
      -5
    ],
    "io_out": [
      15,
      31
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(take(sub_n(input,4),15),-4)),-5)"
  },
  {
    "input": "input : list = [1, -2, 5]\noutput : list = [16, -5, 4]",
    "output": "generated_output : list = add_n(mul_n(reverse([1, -2, 5]),3),1)",
    "io_inp": [
      1,
      -2,
      5
    ],
    "io_out": [
      16,
      -5,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(reverse(input),3),1)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [20, 0]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(mul_n([5, 0],4))))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      20,
      0
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(mul_n(input,4))))"
  },
  {
    "input": "input : list = [0, 2, 1]\noutput : list = [0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des([0, 2, 1])))",
    "io_inp": [
      0,
      2,
      1
    ],
    "io_out": [
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(input)))"
  },
  {
    "input": "input : list = [-1, 2, 3, 0, -2, 4]\noutput : list = [-7, -6, -5, -3, -2, -1]",
    "output": "generated_output : list = add_n(sort_asc(mul_n([-1, 2, 3, 0, -2, 4],-1)),-3)",
    "io_inp": [
      -1,
      2,
      3,
      0,
      -2,
      4
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -3,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(mul_n(input,-1)),-3)"
  },
  {
    "input": "input : list = [-5, -3, 1, 0]\noutput : list = [0, 1, -3]",
    "output": "generated_output : list = reverse(drop([-5, -3, 1, 0],1))",
    "io_inp": [
      -5,
      -3,
      1,
      0
    ],
    "io_out": [
      0,
      1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-5, 0, -2, 4]\noutput : list = [6, 2, 0, -3]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_des([-5, 0, -2, 4]),-2)),1))",
    "io_inp": [
      -5,
      0,
      -2,
      4
    ],
    "io_out": [
      6,
      2,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sub_n(sort_des(input),-2)),1))"
  },
  {
    "input": "input : list = [-3, 3, 4, 0, 1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = reverse(take(drop([-3, 3, 4, 0, 1, 3],4),24))",
    "io_inp": [
      -3,
      3,
      4,
      0,
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = reverse(take(drop(input,4),24))"
  },
  {
    "input": "input : list = [1, -2, -5]\noutput : list = [-9, 6, 21]",
    "output": "generated_output : list = sub_n(add_n(reverse(mul_n(sort_asc([1, -2, -5]),-5)),-5),-1)",
    "io_inp": [
      1,
      -2,
      -5
    ],
    "io_out": [
      -9,
      6,
      21
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(mul_n(sort_asc(input),-5)),-5),-1)"
  },
  {
    "input": "input : list = [-2, -1, 4, 3, -1, 1]\noutput : list = [-2, -1, -1, 1, 3, 4]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(reverse([-2, -1, 4, 3, -1, 1])),1),1)",
    "io_inp": [
      -2,
      -1,
      4,
      3,
      -1,
      1
    ],
    "io_out": [
      -2,
      -1,
      -1,
      1,
      3,
      4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(reverse(input)),1),1)"
  },
  {
    "input": "input : list = [-2, 5, 4]\noutput : list = [12, 9]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(sort_des(drop([-2, 5, 4],1)),1),-3),-1)",
    "io_inp": [
      -2,
      5,
      4
    ],
    "io_out": [
      12,
      9
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(sort_des(drop(input,1)),1),-3),-1)"
  },
  {
    "input": "input : list = [-5, 2, -1, -1, 3]\noutput : list = [-1, -4, -8]",
    "output": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(take([-5, 2, -1, -1, 3],3),-1))),4)",
    "io_inp": [
      -5,
      2,
      -1,
      -1,
      3
    ],
    "io_out": [
      -1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_asc(sub_n(take(input,3),-1))),4)"
  },
  {
    "input": "input : list = [4, -4, 0, 1]\noutput : list = [5, -3]",
    "output": "generated_output : list = take(mul_n(sub_n(mul_n(take([4, -4, 0, 1],2),1),-1),1),29)",
    "io_inp": [
      4,
      -4,
      0,
      1
    ],
    "io_out": [
      5,
      -3
    ],
    "output_masked": "generated_output : list = take(mul_n(sub_n(mul_n(take(input,2),1),-1),1),29)"
  },
  {
    "input": "input : list = [2, 0, 5]\noutput : list = [-4, -1, 1]",
    "output": "generated_output : list = mul_n(add_n(sort_des([2, 0, 5]),-1),-1)",
    "io_inp": [
      2,
      0,
      5
    ],
    "io_out": [
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),-1),-1)"
  },
  {
    "input": "input : list = [-4, -1, 0, 5, 0]\noutput : list = [15, 10]",
    "output": "generated_output : list = add_n(add_n(add_n(add_n(drop([-4, -1, 0, 5, 0],3),3),2),4),1)",
    "io_inp": [
      -4,
      -1,
      0,
      5,
      0
    ],
    "io_out": [
      15,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(add_n(drop(input,3),3),2),4),1)"
  },
  {
    "input": "input : list = [5, 4, -2, 2, 5, 5]\noutput : list = [-7, -3, -1, 0, 0, 0]",
    "output": "generated_output : list = reverse(sub_n(take(sort_des(sort_des([5, 4, -2, 2, 5, 5])),13),5))",
    "io_inp": [
      5,
      4,
      -2,
      2,
      5,
      5
    ],
    "io_out": [
      -7,
      -3,
      -1,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(sort_des(sort_des(input)),13),5))"
  },
  {
    "input": "input : list = [-2, 2]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(reverse([-2, 2]))",
    "io_inp": [
      -2,
      2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [5, 3, -4]\noutput : list = [2, 9, 11]",
    "output": "generated_output : list = reverse(add_n(sort_des(sort_des(add_n([5, 3, -4],1))),5))",
    "io_inp": [
      5,
      3,
      -4
    ],
    "io_out": [
      2,
      9,
      11
    ],
    "output_masked": "generated_output : list = reverse(add_n(sort_des(sort_des(add_n(input,1))),5))"
  },
  {
    "input": "input : list = [-1, -3, -4, 4]\noutput : list = [-4, -3, -1, 4]",
    "output": "generated_output : list = sort_asc(reverse(reverse(reverse(sort_des([-1, -3, -4, 4])))))",
    "io_inp": [
      -1,
      -3,
      -4,
      4
    ],
    "io_out": [
      -4,
      -3,
      -1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(reverse(sort_des(input)))))"
  },
  {
    "input": "input : list = [1, 4, -3, 3, 2, 5]\noutput : list = [8]",
    "output": "generated_output : list = sort_des(sub_n(add_n(add_n(take([1, 4, -3, 3, 2, 5],1),1),2),-4))",
    "io_inp": [
      1,
      4,
      -3,
      3,
      2,
      5
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(add_n(add_n(take(input,1),1),2),-4))"
  },
  {
    "input": "input : list = [5, -2, -1, 0, -2, 3]\noutput : list = [-2, -2, -1, 0, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc([5, -2, -1, 0, -2, 3]))",
    "io_inp": [
      5,
      -2,
      -1,
      0,
      -2,
      3
    ],
    "io_out": [
      -2,
      -2,
      -1,
      0,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [4, 0, -4, -1, -1, 4]\noutput : list = [6, 1, 1, -2, 2, 6]",
    "output": "generated_output : list = add_n(reverse([4, 0, -4, -1, -1, 4]),2)",
    "io_inp": [
      4,
      0,
      -4,
      -1,
      -1,
      4
    ],
    "io_out": [
      6,
      1,
      1,
      -2,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),2)"
  },
  {
    "input": "input : list = [2, -3, 4]\noutput : list = [-3, 4]",
    "output": "generated_output : list = drop([2, -3, 4],1)",
    "io_inp": [
      2,
      -3,
      4
    ],
    "io_out": [
      -3,
      4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 4, 0, -1]\noutput : list = [0, 1, 2, 6]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sort_des([-2, 4, 0, -1]))),2))",
    "io_inp": [
      -2,
      4,
      0,
      -1
    ],
    "io_out": [
      0,
      1,
      2,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sort_des(input))),2))"
  },
  {
    "input": "input : list = [-2, 0, 2, 1]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(reverse(take(take([-2, 0, 2, 1],1),15)),31))",
    "io_inp": [
      -2,
      0,
      2,
      1
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(take(take(input,1),15)),31))"
  },
  {
    "input": "input : list = [-1, 1, -4, -5, -3, 4]\noutput : list = [-4, 4, -16, -20, -12, 16]",
    "output": "generated_output : list = mul_n([-1, 1, -4, -5, -3, 4],4)",
    "io_inp": [
      -1,
      1,
      -4,
      -5,
      -3,
      4
    ],
    "io_out": [
      -4,
      4,
      -16,
      -20,
      -12,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [2, 3, -1, -5]\noutput : list = [33, 21, 9]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(drop([2, 3, -1, -5],1),1),5),-3))",
    "io_inp": [
      2,
      3,
      -1,
      -5
    ],
    "io_out": [
      33,
      21,
      9
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(drop(input,1),1),5),-3))"
  },
  {
    "input": "input : list = [2, 3, 5]\noutput : list = [6, 7, 9]",
    "output": "generated_output : list = reverse(reverse(sub_n([2, 3, 5],-4)))",
    "io_inp": [
      2,
      3,
      5
    ],
    "io_out": [
      6,
      7,
      9
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(input,-4)))"
  },
  {
    "input": "input : list = [-3, -1, -5, 0]\noutput : list = [0, -5, -1, -3]",
    "output": "generated_output : list = take(reverse([-3, -1, -5, 0]),8)",
    "io_inp": [
      -3,
      -1,
      -5,
      0
    ],
    "io_out": [
      0,
      -5,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(input),8)"
  },
  {
    "input": "input : list = [1, -4, 1]\noutput : list = [-4, 1, 1]",
    "output": "generated_output : list = sort_asc(reverse([1, -4, 1]))",
    "io_inp": [
      1,
      -4,
      1
    ],
    "io_out": [
      -4,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(input))"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [-16, 16, 0]",
    "output": "generated_output : list = mul_n(take(mul_n([2, -2, 0],-2),17),4)",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      -16,
      16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,-2),17),4)"
  },
  {
    "input": "input : list = [1, 1, 5, 4]\noutput : list = [2, 1, -2, -2]",
    "output": "generated_output : list = sort_des(reverse(reverse(sub_n(reverse([1, 1, 5, 4]),3))))",
    "io_inp": [
      1,
      1,
      5,
      4
    ],
    "io_out": [
      2,
      1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sub_n(reverse(input),3))))"
  },
  {
    "input": "input : list = [-5, 0, 4]\noutput : list = [8, 4]",
    "output": "generated_output : list = sort_des(sub_n(drop([-5, 0, 4],1),-4))",
    "io_inp": [
      -5,
      0,
      4
    ],
    "io_out": [
      8,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(drop(input,1),-4))"
  },
  {
    "input": "input : list = [-2, -1, -4, 3]\noutput : list = [-20, -15, -30, 5]",
    "output": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n([-2, -1, -4, 3],3),-5),4),6),5)",
    "io_inp": [
      -2,
      -1,
      -4,
      3
    ],
    "io_out": [
      -20,
      -15,
      -30,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sub_n(sub_n(input,3),-5),4),6),5)"
  },
  {
    "input": "input : list = [-5, -1, 3, -5, 4]\noutput : list = [1, 1, 5, 9, 10]",
    "output": "generated_output : list = add_n(add_n(sub_n(sub_n(sort_asc([-5, -1, 3, -5, 4]),4),-5),2),3)",
    "io_inp": [
      -5,
      -1,
      3,
      -5,
      4
    ],
    "io_out": [
      1,
      1,
      5,
      9,
      10
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(sub_n(sort_asc(input),4),-5),2),3)"
  },
  {
    "input": "input : list = [0, 1, 1, -4]\noutput : list = [32]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(take([0, 1, 1, -4],1),4),4)),-2)",
    "io_inp": [
      0,
      1,
      1,
      -4
    ],
    "io_out": [
      32
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(take(input,1),4),4)),-2)"
  },
  {
    "input": "input : list = [-1, -5, -5]\noutput : list = [-5, -5]",
    "output": "generated_output : list = drop([-1, -5, -5],1)",
    "io_inp": [
      -1,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [-7, -8]",
    "output": "generated_output : list = take(sub_n(take(sort_des(sort_des([-4, -3])),16),4),28)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      -7,
      -8
    ],
    "output_masked": "generated_output : list = take(sub_n(take(sort_des(sort_des(input)),16),4),28)"
  },
  {
    "input": "input : list = [-5, -3, -5, 0, 0]\noutput : list = [-4, -4, 0, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(mul_n(add_n(add_n([-5, -3, -5, 0, 0],1),2),2)))",
    "io_inp": [
      -5,
      -3,
      -5,
      0,
      0
    ],
    "io_out": [
      -4,
      -4,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(add_n(add_n(input,1),2),2)))"
  },
  {
    "input": "input : list = [-1, 4, 0, -2]\noutput : list = [18, 2, -2, -6]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_asc([-1, 4, 0, -2]),4)),-2))",
    "io_inp": [
      -1,
      4,
      0,
      -2
    ],
    "io_out": [
      18,
      2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(sort_asc(input),4)),-2))"
  },
  {
    "input": "input : list = [-1, -3, -3, 5]\noutput : list = [-1, -3]",
    "output": "generated_output : list = reverse(sort_asc(take([-1, -3, -3, 5],2)))",
    "io_inp": [
      -1,
      -3,
      -3,
      5
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,2)))"
  },
  {
    "input": "input : list = [5, 0, 3]\noutput : list = [-3, 6]",
    "output": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(drop([5, 0, 3],1)),1)),3)",
    "io_inp": [
      5,
      0,
      3
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sub_n(sort_asc(drop(input,1)),1)),3)"
  },
  {
    "input": "input : list = [4, -1, 4, 0]\noutput : list = [-4, -4, 0, 1]",
    "output": "generated_output : list = sort_asc(take(take(mul_n([4, -1, 4, 0],-1),14),4))",
    "io_inp": [
      4,
      -1,
      4,
      0
    ],
    "io_out": [
      -4,
      -4,
      0,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(mul_n(input,-1),14),4))"
  },
  {
    "input": "input : list = [0, -3, 4, 5, 3, -3]\noutput : list = [-7, -1, 1, 0, -7]",
    "output": "generated_output : list = add_n(reverse(drop([0, -3, 4, 5, 3, -3],1)),-4)",
    "io_inp": [
      0,
      -3,
      4,
      5,
      3,
      -3
    ],
    "io_out": [
      -7,
      -1,
      1,
      0,
      -7
    ],
    "output_masked": "generated_output : list = add_n(reverse(drop(input,1)),-4)"
  },
  {
    "input": "input : list = [3, -5, 3]\noutput : list = [3, 3, -5]",
    "output": "generated_output : list = take(sort_des([3, -5, 3]),4)",
    "io_inp": [
      3,
      -5,
      3
    ],
    "io_out": [
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(input),4)"
  },
  {
    "input": "input : list = [5, -1, 1, 3, 2]\noutput : list = [-2, 0, 1, 2, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n([5, -1, 1, 3, 2],-1))))",
    "io_inp": [
      5,
      -1,
      1,
      3,
      2
    ],
    "io_out": [
      -2,
      0,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(input,-1))))"
  },
  {
    "input": "input : list = [2, -2, 5, 5, 2]\noutput : list = [1, 1, -2, -2, -6]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des([2, -2, 5, 5, 2]),4)))",
    "io_inp": [
      2,
      -2,
      5,
      5,
      2
    ],
    "io_out": [
      1,
      1,
      -2,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(input),4)))"
  },
  {
    "input": "input : list = [1, 4, 5, -1, -5, -2]\noutput : list = [5, 4, 1, -1, -2, -5]",
    "output": "generated_output : list = sort_des(reverse(reverse([1, 4, 5, -1, -5, -2])))",
    "io_inp": [
      1,
      4,
      5,
      -1,
      -5,
      -2
    ],
    "io_out": [
      5,
      4,
      1,
      -1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [2, -3, -5]\noutput : list = [20, 12, -8]",
    "output": "generated_output : list = mul_n(reverse(sort_des(take(sort_des([2, -3, -5]),10))),-4)",
    "io_inp": [
      2,
      -3,
      -5
    ],
    "io_out": [
      20,
      12,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(take(sort_des(input),10))),-4)"
  },
  {
    "input": "input : list = [-5, 2, 5, -3, 4]\noutput : list = [5, 7, 12, 14, 15]",
    "output": "generated_output : list = sort_asc(add_n(sub_n(sort_des(sub_n([-5, 2, 5, -3, 4],-3)),-2),5))",
    "io_inp": [
      -5,
      2,
      5,
      -3,
      4
    ],
    "io_out": [
      5,
      7,
      12,
      14,
      15
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sub_n(sort_des(sub_n(input,-3)),-2),5))"
  },
  {
    "input": "input : list = [-3, -1, 1, 4, 0]\noutput : list = [-8, -6, -5, -4, -1]",
    "output": "generated_output : list = add_n(take(reverse(reverse(sort_asc([-3, -1, 1, 4, 0]))),31),-5)",
    "io_inp": [
      -3,
      -1,
      1,
      4,
      0
    ],
    "io_out": [
      -8,
      -6,
      -5,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(reverse(sort_asc(input))),31),-5)"
  },
  {
    "input": "input : list = [-3, -5, 1, -5, 3, -5]\noutput : list = [-7, -9, -3, -9, -1, -9]",
    "output": "generated_output : list = add_n([-3, -5, 1, -5, 3, -5],-4)",
    "io_inp": [
      -3,
      -5,
      1,
      -5,
      3,
      -5
    ],
    "io_out": [
      -7,
      -9,
      -3,
      -9,
      -1,
      -9
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 0, -1, -3, 4]\noutput : list = [-5, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(add_n(drop([-3, 0, -1, -3, 4],3),-2))))",
    "io_inp": [
      -3,
      0,
      -1,
      -3,
      4
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(add_n(drop(input,3),-2))))"
  },
  {
    "input": "input : list = [4, 3, -5, 1, 3]\noutput : list = [-50, -40, -40, -20, 40]",
    "output": "generated_output : list = take(mul_n(mul_n(sub_n(sort_des([4, 3, -5, 1, 3]),-1),-2),5),45)",
    "io_inp": [
      4,
      3,
      -5,
      1,
      3
    ],
    "io_out": [
      -50,
      -40,
      -40,
      -20,
      40
    ],
    "output_masked": "generated_output : list = take(mul_n(mul_n(sub_n(sort_des(input),-1),-2),5),45)"
  },
  {
    "input": "input : list = [0, 3, 3, 1, 2]\noutput : list = [0, 3, 3]",
    "output": "generated_output : list = take([0, 3, 3, 1, 2],3)",
    "io_inp": [
      0,
      3,
      3,
      1,
      2
    ],
    "io_out": [
      0,
      3,
      3
    ],
    "output_masked": "generated_output : list = take(input,3)"
  },
  {
    "input": "input : list = [-2, -2, 2, -3, 4]\noutput : list = [-8, -8, 8]",
    "output": "generated_output : list = take(sort_asc(mul_n(sort_asc(take([-2, -2, 2, -3, 4],3)),4)),49)",
    "io_inp": [
      -2,
      -2,
      2,
      -3,
      4
    ],
    "io_out": [
      -8,
      -8,
      8
    ],
    "output_masked": "generated_output : list = take(sort_asc(mul_n(sort_asc(take(input,3)),4)),49)"
  },
  {
    "input": "input : list = [1, 0, -1, -4, 3, -1]\noutput : list = [80, 20, 20, 0, -20, -60]",
    "output": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_asc([1, 0, -1, -4, 3, -1]),-5),4),-1),1)",
    "io_inp": [
      1,
      0,
      -1,
      -4,
      3,
      -1
    ],
    "io_out": [
      80,
      20,
      20,
      0,
      -20,
      -60
    ],
    "output_masked": "generated_output : list = add_n(add_n(mul_n(mul_n(sort_asc(input),-5),4),-1),1)"
  },
  {
    "input": "input : list = [0, -4, 4, 4]\noutput : list = [-7, -3]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(take([0, -4, 4, 4],2)))),-3)",
    "io_inp": [
      0,
      -4,
      4,
      4
    ],
    "io_out": [
      -7,
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(take(input,2)))),-3)"
  },
  {
    "input": "input : list = [-4, 1, -1, -3, 3, 4]\noutput : list = [6, -4]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(take(take([-4, 1, -1, -3, 3, 4],2),9),-1),1),-2)",
    "io_inp": [
      -4,
      1,
      -1,
      -3,
      3,
      4
    ],
    "io_out": [
      6,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(take(take(input,2),9),-1),1),-2)"
  },
  {
    "input": "input : list = [3, 3, 0, -2, 0]\noutput : list = [-4, 0, 0, 6, 6]",
    "output": "generated_output : list = reverse(sort_des(take(mul_n(sort_des([3, 3, 0, -2, 0]),2),27)))",
    "io_inp": [
      3,
      3,
      0,
      -2,
      0
    ],
    "io_out": [
      -4,
      0,
      0,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(mul_n(sort_des(input),2),27)))"
  },
  {
    "input": "input : list = [2, -3, -1, 5]\noutput : list = [2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(take([2, -3, -1, 5],1),12))))",
    "io_inp": [
      2,
      -3,
      -1,
      5
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(take(input,1),12))))"
  },
  {
    "input": "input : list = [-3, 4, -1]\noutput : list = [-8]",
    "output": "generated_output : list = sub_n(add_n(add_n(add_n(take([-3, 4, -1],1),3),-4),1),5)",
    "io_inp": [
      -3,
      4,
      -1
    ],
    "io_out": [
      -8
    ],
    "output_masked": "generated_output : list = sub_n(add_n(add_n(add_n(take(input,1),3),-4),1),5)"
  },
  {
    "input": "input : list = [-2, 2, 3, -1, -1]\noutput : list = [0, 1, 1, 4, 5]",
    "output": "generated_output : list = sort_asc(take(take(sub_n(add_n([-2, 2, 3, -1, -1],-2),-4),9),9))",
    "io_inp": [
      -2,
      2,
      3,
      -1,
      -1
    ],
    "io_out": [
      0,
      1,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(sub_n(add_n(input,-2),-4),9),9))"
  },
  {
    "input": "input : list = [-3, -2, 3, 0]\noutput : list = [0, 4, 10]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(drop([-3, -2, 3, 0],1)),-1),2),-2)",
    "io_inp": [
      -3,
      -2,
      3,
      0
    ],
    "io_out": [
      0,
      4,
      10
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(drop(input,1)),-1),2),-2)"
  },
  {
    "input": "input : list = [-1, 5, -2, 5, 1]\noutput : list = [15, 15, 3, -3, -6]",
    "output": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse([-1, 5, -2, 5, 1])))),3)",
    "io_inp": [
      -1,
      5,
      -2,
      5,
      1
    ],
    "io_out": [
      15,
      15,
      3,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_asc(sort_des(reverse(input)))),3)"
  },
  {
    "input": "input : list = [-2, -5]\noutput : list = [-9, -12]",
    "output": "generated_output : list = sub_n(add_n([-2, -5],-5),2)",
    "io_inp": [
      -2,
      -5
    ],
    "io_out": [
      -9,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,-5),2)"
  },
  {
    "input": "input : list = [2, 3, 3, -3, -5, -1]\noutput : list = [5, -5, -15, -30, -35, -35]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(add_n([2, 3, 3, -3, -5, -1],4))),-5)",
    "io_inp": [
      2,
      3,
      3,
      -3,
      -5,
      -1
    ],
    "io_out": [
      5,
      -5,
      -15,
      -30,
      -35,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(add_n(input,4))),-5)"
  },
  {
    "input": "input : list = [0, -4, 2, -3, -1, 0]\noutput : list = [9, -3, -3, -9, -21, -27]",
    "output": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_asc([0, -4, 2, -3, -1, 0]),2),3)),3)",
    "io_inp": [
      0,
      -4,
      2,
      -3,
      -1,
      0
    ],
    "io_out": [
      9,
      -3,
      -3,
      -9,
      -21,
      -27
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(mul_n(sort_asc(input),2),3)),3)"
  },
  {
    "input": "input : list = [1, -5, 2, -5]\noutput : list = [-4, -4, 2, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sub_n([1, -5, 2, -5],-2),4)),3),2)",
    "io_inp": [
      1,
      -5,
      2,
      -5
    ],
    "io_out": [
      -4,
      -4,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(add_n(sub_n(input,-2),4)),3),2)"
  },
  {
    "input": "input : list = [2, 5, -3, 1, 5]\noutput : list = [24, 24, 12, 8, -8]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse(mul_n([2, 5, -3, 1, 5],4)),-4)),24)",
    "io_inp": [
      2,
      5,
      -3,
      1,
      5
    ],
    "io_out": [
      24,
      24,
      12,
      8,
      -8
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(mul_n(input,4)),-4)),24)"
  },
  {
    "input": "input : list = [-1, 5, 0, 5, 2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_asc(drop([-1, 5, 0, 5, 2],3)),1),5),1)",
    "io_inp": [
      -1,
      5,
      0,
      5,
      2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_asc(drop(input,3)),1),5),1)"
  },
  {
    "input": "input : list = [-2, 0, 4, -4, -1, 5]\noutput : list = [-2, 0, 4, -4, -1, 5]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(sub_n([-2, 0, 4, -4, -1, 5],2),21),-1),-4),1)",
    "io_inp": [
      -2,
      0,
      4,
      -4,
      -1,
      5
    ],
    "io_out": [
      -2,
      0,
      4,
      -4,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(sub_n(input,2),21),-1),-4),1)"
  },
  {
    "input": "input : list = [3, 5, -5]\noutput : list = [3, -5, -7]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(sort_des(mul_n([3, 5, -5],-1)))),-2)",
    "io_inp": [
      3,
      5,
      -5
    ],
    "io_out": [
      3,
      -5,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(sort_des(mul_n(input,-1)))),-2)"
  },
  {
    "input": "input : list = [3, 5, -3]\noutput : list = [5, 3, -3]",
    "output": "generated_output : list = take(reverse(take(sort_asc(sort_asc([3, 5, -3])),8)),27)",
    "io_inp": [
      3,
      5,
      -3
    ],
    "io_out": [
      5,
      3,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(take(sort_asc(sort_asc(input)),8)),27)"
  },
  {
    "input": "input : list = [0, 0]\noutput : list = [5, 5]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([0, 0]),-5))",
    "io_inp": [
      0,
      0
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),-5))"
  },
  {
    "input": "input : list = [-1, 2, 3, 3]\noutput : list = [-12, -12, -8, 4]",
    "output": "generated_output : list = sub_n(reverse(sort_des(add_n(mul_n([-1, 2, 3, 3],-4),-2))),-2)",
    "io_inp": [
      -1,
      2,
      3,
      3
    ],
    "io_out": [
      -12,
      -12,
      -8,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(add_n(mul_n(input,-4),-2))),-2)"
  },
  {
    "input": "input : list = [0, -3, 2, -1]\noutput : list = [-20, -35, -10, -25]",
    "output": "generated_output : list = take(mul_n(add_n(sub_n(reverse([0, -3, 2, -1]),-3),2),-5),24)",
    "io_inp": [
      0,
      -3,
      2,
      -1
    ],
    "io_out": [
      -20,
      -35,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = take(mul_n(add_n(sub_n(reverse(input),-3),2),-5),24)"
  },
  {
    "input": "input : list = [-4, -3, -2, 2, -2, 4]\noutput : list = [-4]",
    "output": "generated_output : list = sort_des(drop(sort_des(sort_des(sort_des([-4, -3, -2, 2, -2, 4]))),5))",
    "io_inp": [
      -4,
      -3,
      -2,
      2,
      -2,
      4
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = sort_des(drop(sort_des(sort_des(sort_des(input))),5))"
  },
  {
    "input": "input : list = [-2, 1, -3, 5, 5]\noutput : list = [16, 16, 4, -5]",
    "output": "generated_output : list = add_n(mul_n(sort_des(take(sort_des([-2, 1, -3, 5, 5]),4)),3),1)",
    "io_inp": [
      -2,
      1,
      -3,
      5,
      5
    ],
    "io_out": [
      16,
      16,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sort_des(take(sort_des(input),4)),3),1)"
  },
  {
    "input": "input : list = [4, 0, -3]\noutput : list = [-30]",
    "output": "generated_output : list = mul_n(take(reverse(reverse(add_n([4, 0, -3],2))),1),-5)",
    "io_inp": [
      4,
      0,
      -3
    ],
    "io_out": [
      -30
    ],
    "output_masked": "generated_output : list = mul_n(take(reverse(reverse(add_n(input,2))),1),-5)"
  },
  {
    "input": "input : list = [1, 1, -1]\noutput : list = [0, -6, -6]",
    "output": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_asc([1, 1, -1])),-1),22),-3)",
    "io_inp": [
      1,
      1,
      -1
    ],
    "io_out": [
      0,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(sort_asc(sort_asc(input)),-1),22),-3)"
  },
  {
    "input": "input : list = [3, -1, 5]\noutput : list = [1, -3, 3]",
    "output": "generated_output : list = sub_n([3, -1, 5],2)",
    "io_inp": [
      3,
      -1,
      5
    ],
    "io_out": [
      1,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [2, 1, -1]\noutput : list = [2, -2]",
    "output": "generated_output : list = sort_des(mul_n(take(take(drop([2, 1, -1],1),3),6),2))",
    "io_inp": [
      2,
      1,
      -1
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(take(drop(input,1),3),6),2))"
  },
  {
    "input": "input : list = [2, -5, 2]\noutput : list = [-3, -10, -3]",
    "output": "generated_output : list = sub_n([2, -5, 2],5)",
    "io_inp": [
      2,
      -5,
      2
    ],
    "io_out": [
      -3,
      -10,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [7, 2]",
    "output": "generated_output : list = sort_des(add_n(take(sort_des(reverse([5, 0])),10),2))",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      7,
      2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(sort_des(reverse(input)),10),2))"
  },
  {
    "input": "input : list = [1, 2, -3, 5, -4, -4]\noutput : list = [2, -3, 5, -4, -4]",
    "output": "generated_output : list = drop([1, 2, -3, 5, -4, -4],1)",
    "io_inp": [
      1,
      2,
      -3,
      5,
      -4,
      -4
    ],
    "io_out": [
      2,
      -3,
      5,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, 3, -3, 0]\noutput : list = [3, -3, 0]",
    "output": "generated_output : list = drop([2, 3, -3, 0],1)",
    "io_inp": [
      2,
      3,
      -3,
      0
    ],
    "io_out": [
      3,
      -3,
      0
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, -2, -5, -5]\noutput : list = [4, -2, -5, -5]",
    "output": "generated_output : list = reverse(reverse([4, -2, -5, -5]))",
    "io_inp": [
      4,
      -2,
      -5,
      -5
    ],
    "io_out": [
      4,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [2, -4, -5, -4, -5]\noutput : list = [-4, -4, -3, -3, 3]",
    "output": "generated_output : list = sort_asc(sub_n([2, -4, -5, -4, -5],-1))",
    "io_inp": [
      2,
      -4,
      -5,
      -4,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -3,
      -3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,-1))"
  },
  {
    "input": "input : list = [-4, 5, -5, -3]\noutput : list = [-20, 25, -25, -15]",
    "output": "generated_output : list = mul_n([-4, 5, -5, -3],5)",
    "io_inp": [
      -4,
      5,
      -5,
      -3
    ],
    "io_out": [
      -20,
      25,
      -25,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, 1, 2, 1]\noutput : list = [-8, -6]",
    "output": "generated_output : list = add_n(add_n(sort_asc(sort_asc(take([-1, 1, 2, 1],2))),-5),-2)",
    "io_inp": [
      -1,
      1,
      2,
      1
    ],
    "io_out": [
      -8,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(sort_asc(take(input,2))),-5),-2)"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-27, -2]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(mul_n([0, 5],-5),-2)),1),3)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -27,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(mul_n(input,-5),-2)),1),3)"
  },
  {
    "input": "input : list = [4, -2, -2]\noutput : list = [-2, -2, 4]",
    "output": "generated_output : list = add_n(add_n(reverse([4, -2, -2]),-5),5)",
    "io_inp": [
      4,
      -2,
      -2
    ],
    "io_out": [
      -2,
      -2,
      4
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(input),-5),5)"
  },
  {
    "input": "input : list = [0, 5, 5, -5, -3, 5]\noutput : list = [31, 7, 1, 31, 31, 16]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sub_n(reverse([0, 5, 5, -5, -3, 5]),-2),-2),3),-4)",
    "io_inp": [
      0,
      5,
      5,
      -5,
      -3,
      5
    ],
    "io_out": [
      31,
      7,
      1,
      31,
      31,
      16
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sub_n(reverse(input),-2),-2),3),-4)"
  },
  {
    "input": "input : list = [-1, -5, 1]\noutput : list = [-4, 0, 2]",
    "output": "generated_output : list = reverse(reverse(take(sort_asc(add_n([-1, -5, 1],1)),21)))",
    "io_inp": [
      -1,
      -5,
      1
    ],
    "io_out": [
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(sort_asc(add_n(input,1)),21)))"
  },
  {
    "input": "input : list = [-2, -4, 3, 5, 4]\noutput : list = [10, 8, 6, -4, -8]",
    "output": "generated_output : list = sort_des(take(sort_des(sort_asc(mul_n([-2, -4, 3, 5, 4],2))),42))",
    "io_inp": [
      -2,
      -4,
      3,
      5,
      4
    ],
    "io_out": [
      10,
      8,
      6,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(sort_asc(mul_n(input,2))),42))"
  },
  {
    "input": "input : list = [0, -1, -1, 3, -2, -3]\noutput : list = [-1, 0, 1, 1, 2, 5]",
    "output": "generated_output : list = add_n(reverse(add_n(sort_des(sub_n([0, -1, -1, 3, -2, -3],-4)),-5)),3)",
    "io_inp": [
      0,
      -1,
      -1,
      3,
      -2,
      -3
    ],
    "io_out": [
      -1,
      0,
      1,
      1,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(sort_des(sub_n(input,-4)),-5)),3)"
  },
  {
    "input": "input : list = [-2, -3, -1]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(drop([-2, -3, -1],1)),-1)))",
    "io_inp": [
      -2,
      -3,
      -1
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sub_n(sort_des(drop(input,1)),-1)))"
  },
  {
    "input": "input : list = [5, -4, 3, -3]\noutput : list = [1, -8, -1, -7]",
    "output": "generated_output : list = sub_n([5, -4, 3, -3],4)",
    "io_inp": [
      5,
      -4,
      3,
      -3
    ],
    "io_out": [
      1,
      -8,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-2, -4]",
    "output": "generated_output : list = reverse(sub_n(sort_asc([-2, 0]),2))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -2,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(input),2))"
  },
  {
    "input": "input : list = [3, -2, 0, 0, -4, -2]\noutput : list = [-23, -15, -15, -7, -7, 5]",
    "output": "generated_output : list = add_n(sort_asc(sub_n(mul_n(mul_n([3, -2, 0, 0, -4, -2],-2),-2),3)),-4)",
    "io_inp": [
      3,
      -2,
      0,
      0,
      -4,
      -2
    ],
    "io_out": [
      -23,
      -15,
      -15,
      -7,
      -7,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(sub_n(mul_n(mul_n(input,-2),-2),3)),-4)"
  },
  {
    "input": "input : list = [5, -4, 0, -4]\noutput : list = [-6, -6, -2, 3]",
    "output": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(sort_des([5, -4, 0, -4]))),1),1)",
    "io_inp": [
      5,
      -4,
      0,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_asc(sort_asc(sort_des(input))),1),1)"
  },
  {
    "input": "input : list = [1, -3, 0, -1]\noutput : list = [-1, 0, -3, 1]",
    "output": "generated_output : list = reverse([1, -3, 0, -1])",
    "io_inp": [
      1,
      -3,
      0,
      -1
    ],
    "io_out": [
      -1,
      0,
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -2, 5, -4, -3, -1]\noutput : list = [-200, -600, -800, 1000, -400, -600]",
    "output": "generated_output : list = mul_n(mul_n(reverse(mul_n(mul_n([-3, -2, 5, -4, -3, -1],4),-2)),-5),5)",
    "io_inp": [
      -3,
      -2,
      5,
      -4,
      -3,
      -1
    ],
    "io_out": [
      -200,
      -600,
      -800,
      1000,
      -400,
      -600
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(mul_n(mul_n(input,4),-2)),-5),5)"
  },
  {
    "input": "input : list = [3, -4, -5, 0, 3, -2]\noutput : list = [-5, 0, 3, -2]",
    "output": "generated_output : list = drop([3, -4, -5, 0, 3, -2],2)",
    "io_inp": [
      3,
      -4,
      -5,
      0,
      3,
      -2
    ],
    "io_out": [
      -5,
      0,
      3,
      -2
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [-4, 0, -3]\noutput : list = [8, 20, 24]",
    "output": "generated_output : list = mul_n(take(sort_des(sort_asc(sub_n([-4, 0, -3],2))),4),-4)",
    "io_inp": [
      -4,
      0,
      -3
    ],
    "io_out": [
      8,
      20,
      24
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_des(sort_asc(sub_n(input,2))),4),-4)"
  },
  {
    "input": "input : list = [-5, -2, 1, -1, 0, -5]\noutput : list = [7, 2, -3, -8, -23, -23]",
    "output": "generated_output : list = take(sort_des(sort_des(add_n(mul_n([-5, -2, 1, -1, 0, -5],5),2))),48)",
    "io_inp": [
      -5,
      -2,
      1,
      -1,
      0,
      -5
    ],
    "io_out": [
      7,
      2,
      -3,
      -8,
      -23,
      -23
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_des(add_n(mul_n(input,5),2))),48)"
  },
  {
    "input": "input : list = [3, -3, 5, 0, 0, -2]\noutput : list = [-92, 100, -156, 4, 4]",
    "output": "generated_output : list = take(add_n(mul_n(mul_n(mul_n([3, -3, 5, 0, 0, -2],4),4),-2),4),5)",
    "io_inp": [
      3,
      -3,
      5,
      0,
      0,
      -2
    ],
    "io_out": [
      -92,
      100,
      -156,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(mul_n(mul_n(input,4),4),-2),4),5)"
  },
  {
    "input": "input : list = [2, 2, -3, 4]\noutput : list = [-7, -2, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(take(add_n(sort_asc([2, 2, -3, 4]),-4),15)))",
    "io_inp": [
      2,
      2,
      -3,
      4
    ],
    "io_out": [
      -7,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(add_n(sort_asc(input),-4),15)))"
  },
  {
    "input": "input : list = [5, -4, -2, -2, -1, 3]\noutput : list = [-5, -3, -3, -2, 2, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sub_n([5, -4, -2, -2, -1, 3],-5)),1),5))",
    "io_inp": [
      5,
      -4,
      -2,
      -2,
      -1,
      3
    ],
    "io_out": [
      -5,
      -3,
      -3,
      -2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(sort_asc(sub_n(input,-5)),1),5))"
  },
  {
    "input": "input : list = [-3, -4, -1, 5]\noutput : list = [-3]",
    "output": "generated_output : list = mul_n(sub_n(reverse(drop(take([-3, -4, -1, 5],2),1)),-3),3)",
    "io_inp": [
      -3,
      -4,
      -1,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(drop(take(input,2),1)),-3),3)"
  },
  {
    "input": "input : list = [-1, 0, 0, -4, 4, -3]\noutput : list = [10, 17]",
    "output": "generated_output : list = add_n(add_n(sub_n(reverse(drop([-1, 0, 0, -4, 4, -3],4)),-4),5),4)",
    "io_inp": [
      -1,
      0,
      0,
      -4,
      4,
      -3
    ],
    "io_out": [
      10,
      17
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(reverse(drop(input,4)),-4),5),4)"
  },
  {
    "input": "input : list = [5, -1, -4, 4]\noutput : list = [18, -12]",
    "output": "generated_output : list = add_n(mul_n(take(sub_n(mul_n([5, -1, -4, 4],-5),-2),2),-1),-5)",
    "io_inp": [
      5,
      -1,
      -4,
      4
    ],
    "io_out": [
      18,
      -12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(take(sub_n(mul_n(input,-5),-2),2),-1),-5)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [0, 4, 5]",
    "output": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des([4, 0, -1]),-1),21)),4)",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      0,
      4,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(mul_n(sort_des(input),-1),21)),4)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [8, 12]",
    "output": "generated_output : list = take(sub_n(sort_asc(sort_des(sub_n([5, 1],-4))),-3),26)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      8,
      12
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_asc(sort_des(sub_n(input,-4))),-3),26)"
  },
  {
    "input": "input : list = [-4, 4, -5, -1, -5, 5]\noutput : list = [5, -5, -1, -5, 4, -4]",
    "output": "generated_output : list = take(reverse([-4, 4, -5, -1, -5, 5]),20)",
    "io_inp": [
      -4,
      4,
      -5,
      -1,
      -5,
      5
    ],
    "io_out": [
      5,
      -5,
      -1,
      -5,
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(input),20)"
  },
  {
    "input": "input : list = [0, 3, 3]\noutput : list = [3, 3, 0]",
    "output": "generated_output : list = sort_des(reverse(reverse([0, 3, 3])))",
    "io_inp": [
      0,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [-4, -2, 2, 3]\noutput : list = [-20, -10, 10, 15]",
    "output": "generated_output : list = mul_n([-4, -2, 2, 3],5)",
    "io_inp": [
      -4,
      -2,
      2,
      3
    ],
    "io_out": [
      -20,
      -10,
      10,
      15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-1, -2, -3, 0]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take(sub_n(sub_n(take([-1, -2, -3, 0],1),-3),-1),26))",
    "io_inp": [
      -1,
      -2,
      -3,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(sub_n(take(input,1),-3),-1),26))"
  },
  {
    "input": "input : list = [2, 3, 2, 2, -1, 5]\noutput : list = [-12, -27, -27, -27, -32, -42]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n([2, 3, 2, 2, -1, 5],-2),-5),-4)),-3)",
    "io_inp": [
      2,
      3,
      2,
      2,
      -1,
      5
    ],
    "io_out": [
      -12,
      -27,
      -27,
      -27,
      -32,
      -42
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sub_n(input,-2),-5),-4)),-3)"
  },
  {
    "input": "input : list = [-3, 5, 3, -1]\noutput : list = [-2, 2, 10, 14]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(take(add_n([-3, 5, 3, -1],-1),6),3)),2)",
    "io_inp": [
      -3,
      5,
      3,
      -1
    ],
    "io_out": [
      -2,
      2,
      10,
      14
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(take(add_n(input,-1),6),3)),2)"
  },
  {
    "input": "input : list = [-2, -1, 4]\noutput : list = [-12, 3]",
    "output": "generated_output : list = sort_asc(take(reverse(mul_n(drop([-2, -1, 4],1),-3)),10))",
    "io_inp": [
      -2,
      -1,
      4
    ],
    "io_out": [
      -12,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(mul_n(drop(input,1),-3)),10))"
  },
  {
    "input": "input : list = [-2, -5, -3]\noutput : list = [-15, -5, 0]",
    "output": "generated_output : list = mul_n(add_n(sort_asc(sub_n([-2, -5, -3],3)),5),5)",
    "io_inp": [
      -2,
      -5,
      -3
    ],
    "io_out": [
      -15,
      -5,
      0
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_asc(sub_n(input,3)),5),5)"
  },
  {
    "input": "input : list = [-3, 5, -1, 4]\noutput : list = [-6, -1]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(sort_des(drop([-3, 5, -1, 4],2)),5)))",
    "io_inp": [
      -3,
      5,
      -1,
      4
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(sort_des(drop(input,2)),5)))"
  },
  {
    "input": "input : list = [-2, 1, -1, -5]\noutput : list = [-3, -5, -6, -9]",
    "output": "generated_output : list = sort_des(take(sub_n([-2, 1, -1, -5],4),22))",
    "io_inp": [
      -2,
      1,
      -1,
      -5
    ],
    "io_out": [
      -3,
      -5,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(input,4),22))"
  },
  {
    "input": "input : list = [-2, 2, -3, -2]\noutput : list = [-3, -2, -2, 2]",
    "output": "generated_output : list = sort_asc(sort_des([-2, 2, -3, -2]))",
    "io_inp": [
      -2,
      2,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-4, -3, 0]\noutput : list = [-4, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_des(add_n([-4, -3, 0],-4)))))",
    "io_inp": [
      -4,
      -3,
      0
    ],
    "io_out": [
      -4,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_des(add_n(input,-4)))))"
  },
  {
    "input": "input : list = [5, 5, -1, -5]\noutput : list = [2, 6, 12, 12]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(sort_des([5, 5, -1, -5]))),5),-2)",
    "io_inp": [
      5,
      5,
      -1,
      -5
    ],
    "io_out": [
      2,
      6,
      12,
      12
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(sort_asc(sort_des(input))),5),-2)"
  },
  {
    "input": "input : list = [-3, -5, 0, 4]\noutput : list = [-12, -20, 0, 16]",
    "output": "generated_output : list = mul_n([-3, -5, 0, 4],4)",
    "io_inp": [
      -3,
      -5,
      0,
      4
    ],
    "io_out": [
      -12,
      -20,
      0,
      16
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [0, 5, 0, 3, 0, 5]\noutput : list = [30, 0, 18, 0]",
    "output": "generated_output : list = reverse(mul_n(mul_n(mul_n(drop([0, 5, 0, 3, 0, 5],2),-2),1),-3))",
    "io_inp": [
      0,
      5,
      0,
      3,
      0,
      5
    ],
    "io_out": [
      30,
      0,
      18,
      0
    ],
    "output_masked": "generated_output : list = reverse(mul_n(mul_n(mul_n(drop(input,2),-2),1),-3))"
  },
  {
    "input": "input : list = [5, 3, 5, 1]\noutput : list = [0, 0, 10, 20]",
    "output": "generated_output : list = mul_n(add_n(sort_des([5, 3, 5, 1]),-5),-5)",
    "io_inp": [
      5,
      3,
      5,
      1
    ],
    "io_out": [
      0,
      0,
      10,
      20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),-5),-5)"
  },
  {
    "input": "input : list = [1, -2, 5, 3, 3]\noutput : list = [-21, -15, -15, -9, 0]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(add_n(mul_n([1, -2, 5, 3, 3],1),2),-3)))",
    "io_inp": [
      1,
      -2,
      5,
      3,
      3
    ],
    "io_out": [
      -21,
      -15,
      -15,
      -9,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(add_n(mul_n(input,1),2),-3)))"
  },
  {
    "input": "input : list = [4, 0, -4, 5]\noutput : list = [8, 4, 0, 9]",
    "output": "generated_output : list = sub_n([4, 0, -4, 5],-4)",
    "io_inp": [
      4,
      0,
      -4,
      5
    ],
    "io_out": [
      8,
      4,
      0,
      9
    ],
    "output_masked": "generated_output : list = sub_n(input,-4)"
  },
  {
    "input": "input : list = [3, 3, 3, -2, 3]\noutput : list = [-5, 0, 0, 0, 0]",
    "output": "generated_output : list = take(sort_asc(add_n([3, 3, 3, -2, 3],-3)),30)",
    "io_inp": [
      3,
      3,
      3,
      -2,
      3
    ],
    "io_out": [
      -5,
      0,
      0,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(input,-3)),30)"
  },
  {
    "input": "input : list = [-4, -4, 4]\noutput : list = [-7, -7, 1]",
    "output": "generated_output : list = sub_n(add_n(take(sort_asc(sub_n([-4, -4, 4],5)),11),5),3)",
    "io_inp": [
      -4,
      -4,
      4
    ],
    "io_out": [
      -7,
      -7,
      1
    ],
    "output_masked": "generated_output : list = sub_n(add_n(take(sort_asc(sub_n(input,5)),11),5),3)"
  },
  {
    "input": "input : list = [0, 3, -3, -3, 4, -5]\noutput : list = [0, 3, -3, -3, 4, -5]",
    "output": "generated_output : list = add_n(sub_n([0, 3, -3, -3, 4, -5],3),3)",
    "io_inp": [
      0,
      3,
      -3,
      -3,
      4,
      -5
    ],
    "io_out": [
      0,
      3,
      -3,
      -3,
      4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,3),3)"
  },
  {
    "input": "input : list = [-1, -2, 2]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_asc(take([-1, -2, 2],1)),4)))",
    "io_inp": [
      -1,
      -2,
      2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_asc(take(input,1)),4)))"
  },
  {
    "input": "input : list = [0, 5, 0]\noutput : list = [-8, -13, -13]",
    "output": "generated_output : list = add_n(sub_n(sort_des(sort_des(sub_n([0, 5, 0],5))),3),-5)",
    "io_inp": [
      0,
      5,
      0
    ],
    "io_out": [
      -8,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(sort_des(sub_n(input,5))),3),-5)"
  },
  {
    "input": "input : list = [-1, -3, 2, 0]\noutput : list = [2, 0, -1, -3]",
    "output": "generated_output : list = sort_des([-1, -3, 2, 0])",
    "io_inp": [
      -1,
      -3,
      2,
      0
    ],
    "io_out": [
      2,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -1, -1, -4, 4]\noutput : list = [-15, -12, 0, 0, 9]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sub_n(mul_n([3, -1, -1, -4, 4],-3),3)),10))",
    "io_inp": [
      3,
      -1,
      -1,
      -4,
      4
    ],
    "io_out": [
      -15,
      -12,
      0,
      0,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sub_n(mul_n(input,-3),3)),10))"
  },
  {
    "input": "input : list = [-3, 4, 0, 5, -4]\noutput : list = [-16, 20, 0, 16, -12]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(reverse(sub_n([-3, 4, 0, 5, -4],-2)),4),-2),4)",
    "io_inp": [
      -3,
      4,
      0,
      5,
      -4
    ],
    "io_out": [
      -16,
      20,
      0,
      16,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(reverse(sub_n(input,-2)),4),-2),4)"
  },
  {
    "input": "input : list = [3, 4, -3, -3]\noutput : list = [21, 21]",
    "output": "generated_output : list = add_n(mul_n(add_n(sort_asc(drop([3, 4, -3, -3],2)),-1),-5),1)",
    "io_inp": [
      3,
      4,
      -3,
      -3
    ],
    "io_out": [
      21,
      21
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(sort_asc(drop(input,2)),-1),-5),1)"
  },
  {
    "input": "input : list = [4, -1, -2]\noutput : list = [-6, -1, 0]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(reverse([4, -1, -2]),-2),-1)),1)",
    "io_inp": [
      4,
      -1,
      -2
    ],
    "io_out": [
      -6,
      -1,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(reverse(input),-2),-1)),1)"
  },
  {
    "input": "input : list = [2, -1, -5, -4, -3, 1]\noutput : list = [8, 10]",
    "output": "generated_output : list = take(take(drop(mul_n(sort_des([2, -1, -5, -4, -3, 1]),-2),4),17),39)",
    "io_inp": [
      2,
      -1,
      -5,
      -4,
      -3,
      1
    ],
    "io_out": [
      8,
      10
    ],
    "output_masked": "generated_output : list = take(take(drop(mul_n(sort_des(input),-2),4),17),39)"
  },
  {
    "input": "input : list = [-2, 1, 5]\noutput : list = [-2, -6, -9]",
    "output": "generated_output : list = add_n(sub_n(take(mul_n(sort_des([-2, 1, 5]),1),5),4),-3)",
    "io_inp": [
      -2,
      1,
      5
    ],
    "io_out": [
      -2,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = add_n(sub_n(take(mul_n(sort_des(input),1),5),4),-3)"
  },
  {
    "input": "input : list = [-1, -3, 3, -3]\noutput : list = [-4, -6, 0, -6]",
    "output": "generated_output : list = add_n([-1, -3, 3, -3],-3)",
    "io_inp": [
      -1,
      -3,
      3,
      -3
    ],
    "io_out": [
      -4,
      -6,
      0,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-3)"
  },
  {
    "input": "input : list = [-2, -1, 4, 0, 0, 3]\noutput : list = [9, 5, -7, -7, -11, -15]",
    "output": "generated_output : list = reverse(sub_n(sub_n(sort_asc(mul_n([-2, -1, 4, 0, 0, 3],4)),2),5))",
    "io_inp": [
      -2,
      -1,
      4,
      0,
      0,
      3
    ],
    "io_out": [
      9,
      5,
      -7,
      -7,
      -11,
      -15
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sub_n(sort_asc(mul_n(input,4)),2),5))"
  },
  {
    "input": "input : list = [-5, 5, -2, 2]\noutput : list = [-9, -6, -2, 1]",
    "output": "generated_output : list = take(add_n(take(sort_asc([-5, 5, -2, 2]),14),-4),27)",
    "io_inp": [
      -5,
      5,
      -2,
      2
    ],
    "io_out": [
      -9,
      -6,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(add_n(take(sort_asc(input),14),-4),27)"
  },
  {
    "input": "input : list = [-4, -3]\noutput : list = [6, 5]",
    "output": "generated_output : list = add_n(sort_des(sub_n(sort_des(reverse([-4, -3])),-4)),5)",
    "io_inp": [
      -4,
      -3
    ],
    "io_out": [
      6,
      5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sub_n(sort_des(reverse(input)),-4)),5)"
  },
  {
    "input": "input : list = [-4, -3, 2, 0]\noutput : list = [17, 14, -1, 5]",
    "output": "generated_output : list = sub_n(mul_n([-4, -3, 2, 0],-3),-5)",
    "io_inp": [
      -4,
      -3,
      2,
      0
    ],
    "io_out": [
      17,
      14,
      -1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,-3),-5)"
  },
  {
    "input": "input : list = [5, 3, -1, -1, 3]\noutput : list = [8, 4, -4, -4, 4]",
    "output": "generated_output : list = mul_n(add_n([5, 3, -1, -1, 3],-1),2)",
    "io_inp": [
      5,
      3,
      -1,
      -1,
      3
    ],
    "io_out": [
      8,
      4,
      -4,
      -4,
      4
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-1),2)"
  },
  {
    "input": "input : list = [0, 1, 5, -5, -3, -4]\noutput : list = [2, -2, -3, -6, -7, -8]",
    "output": "generated_output : list = reverse(sort_asc(add_n(reverse(sort_des([0, 1, 5, -5, -3, -4])),-3)))",
    "io_inp": [
      0,
      1,
      5,
      -5,
      -3,
      -4
    ],
    "io_out": [
      2,
      -2,
      -3,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(reverse(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [8, -4]",
    "output": "generated_output : list = take(mul_n([4, -2],2),8)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      8,
      -4
    ],
    "output_masked": "generated_output : list = take(mul_n(input,2),8)"
  },
  {
    "input": "input : list = [-3, 0, -4, -2]\noutput : list = [-4, -3, -2, 0]",
    "output": "generated_output : list = sort_asc([-3, 0, -4, -2])",
    "io_inp": [
      -3,
      0,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-5, -3, 5, -4]\noutput : list = [-4, 5, -3, -5]",
    "output": "generated_output : list = reverse([-5, -3, 5, -4])",
    "io_inp": [
      -5,
      -3,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 4, -4, 1]\noutput : list = [2, 0, -8, -14]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(add_n([-3, 4, -4, 1],3))),-2))",
    "io_inp": [
      -3,
      4,
      -4,
      1
    ],
    "io_out": [
      2,
      0,
      -8,
      -14
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(sort_asc(add_n(input,3))),-2))"
  },
  {
    "input": "input : list = [4, 0, -1, 0]\noutput : list = [1, -3, -3, -4]",
    "output": "generated_output : list = take(reverse(sort_asc(add_n(sort_asc([4, 0, -1, 0]),-3))),21)",
    "io_inp": [
      4,
      0,
      -1,
      0
    ],
    "io_out": [
      1,
      -3,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(reverse(sort_asc(add_n(sort_asc(input),-3))),21)"
  },
  {
    "input": "input : list = [-2, 5, -5, -1]\noutput : list = [-28, 12, -16]",
    "output": "generated_output : list = mul_n(mul_n(sub_n(drop(reverse([-2, 5, -5, -1]),1),2),4),1)",
    "io_inp": [
      -2,
      5,
      -5,
      -1
    ],
    "io_out": [
      -28,
      12,
      -16
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sub_n(drop(reverse(input),1),2),4),1)"
  },
  {
    "input": "input : list = [0, -5, -3, 4, -3, -5]\noutput : list = [0, 5, 3, -4, 3, 5]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(reverse([0, -5, -3, 4, -3, -5]),-1))))",
    "io_inp": [
      0,
      -5,
      -3,
      4,
      -3,
      -5
    ],
    "io_out": [
      0,
      5,
      3,
      -4,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(reverse(input),-1))))"
  },
  {
    "input": "input : list = [2, -2, -4, -1, 4, 5]\noutput : list = [3, 0, -1, -3]",
    "output": "generated_output : list = reverse(sort_asc(add_n(sort_des(take([2, -2, -4, -1, 4, 5],4)),1)))",
    "io_inp": [
      2,
      -2,
      -4,
      -1,
      4,
      5
    ],
    "io_out": [
      3,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(sort_des(take(input,4)),1)))"
  },
  {
    "input": "input : list = [-1, 3, 2]\noutput : list = [2]",
    "output": "generated_output : list = reverse(take(drop(sort_des(drop([-1, 3, 2],1)),1),32))",
    "io_inp": [
      -1,
      3,
      2
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = reverse(take(drop(sort_des(drop(input,1)),1),32))"
  },
  {
    "input": "input : list = [4, -4, 4, 5]\noutput : list = [5, 4, 4, -4]",
    "output": "generated_output : list = sort_des([4, -4, 4, 5])",
    "io_inp": [
      4,
      -4,
      4,
      5
    ],
    "io_out": [
      5,
      4,
      4,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -3, 4, -5, -1, 5]\noutput : list = [5, -1]",
    "output": "generated_output : list = sort_des(take(reverse([1, -3, 4, -5, -1, 5]),2))",
    "io_inp": [
      1,
      -3,
      4,
      -5,
      -1,
      5
    ],
    "io_out": [
      5,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(input),2))"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [1, -1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sub_n(add_n([2, 0],-3),-2))))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sub_n(add_n(input,-3),-2))))"
  },
  {
    "input": "input : list = [2, 1, -5, -4, -4]\noutput : list = [7, 3, -17, -17, -21]",
    "output": "generated_output : list = take(add_n(mul_n(reverse(sort_asc([2, 1, -5, -4, -4])),4),-1),46)",
    "io_inp": [
      2,
      1,
      -5,
      -4,
      -4
    ],
    "io_out": [
      7,
      3,
      -17,
      -17,
      -21
    ],
    "output_masked": "generated_output : list = take(add_n(mul_n(reverse(sort_asc(input)),4),-1),46)"
  },
  {
    "input": "input : list = [-2, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sort_des(reverse([-2, 5]))",
    "io_inp": [
      -2,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [3, 5, -2, -3, -4]\noutput : list = [-24, -14, 11, 16, 21]",
    "output": "generated_output : list = add_n(add_n(reverse(sort_des(mul_n([3, 5, -2, -3, -4],-5))),-2),3)",
    "io_inp": [
      3,
      5,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -24,
      -14,
      11,
      16,
      21
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(sort_des(mul_n(input,-5))),-2),3)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [-6, -9]",
    "output": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n([-2, -3],3))),1))",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_asc(reverse(mul_n(input,3))),1))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [4, -3]",
    "output": "generated_output : list = sort_des(sort_des([4, -3]))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      4,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(input))"
  },
  {
    "input": "input : list = [-4, 3, -4, 2, 5, 1]\noutput : list = [-4, -4, 1, 2, 3, 5]",
    "output": "generated_output : list = reverse(take(reverse(sort_asc(sort_des([-4, 3, -4, 2, 5, 1]))),29))",
    "io_inp": [
      -4,
      3,
      -4,
      2,
      5,
      1
    ],
    "io_out": [
      -4,
      -4,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sort_asc(sort_des(input))),29))"
  },
  {
    "input": "input : list = [-5, 4]\noutput : list = [4, 13]",
    "output": "generated_output : list = sub_n(take(add_n(add_n(add_n([-5, 4],5),2),-1),7),-3)",
    "io_inp": [
      -5,
      4
    ],
    "io_out": [
      4,
      13
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(add_n(add_n(input,5),2),-1),7),-3)"
  },
  {
    "input": "input : list = [4, 0, -1]\noutput : list = [-12, -9]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(add_n(drop([4, 0, -1],1),-3),3)))",
    "io_inp": [
      4,
      0,
      -1
    ],
    "io_out": [
      -12,
      -9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(add_n(drop(input,1),-3),3)))"
  },
  {
    "input": "input : list = [0, 0, 5, -5, 1, -3]\noutput : list = [-7, -7, 83, -97, 11, -61]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(mul_n([0, 0, 5, -5, 1, -3],-3),-1),-3),2),1)",
    "io_inp": [
      0,
      0,
      5,
      -5,
      1,
      -3
    ],
    "io_out": [
      -7,
      -7,
      83,
      -97,
      11,
      -61
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(mul_n(input,-3),-1),-3),2),1)"
  },
  {
    "input": "input : list = [-4, 0, 1, 4, 3, 2]\noutput : list = [-6, -2, -1, 0, 1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sort_asc([-4, 0, 1, 4, 3, 2])),-2)))",
    "io_inp": [
      -4,
      0,
      1,
      4,
      3,
      2
    ],
    "io_out": [
      -6,
      -2,
      -1,
      0,
      1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(sort_asc(sort_asc(input)),-2)))"
  },
  {
    "input": "input : list = [-3, 0, 2, 2, 4]\noutput : list = [24, 0, -36]",
    "output": "generated_output : list = mul_n(mul_n(sort_des(take(take([-3, 0, 2, 2, 4],3),22)),-4),-3)",
    "io_inp": [
      -3,
      0,
      2,
      2,
      4
    ],
    "io_out": [
      24,
      0,
      -36
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_des(take(take(input,3),22)),-4),-3)"
  },
  {
    "input": "input : list = [2, -5, -1, 3, 1, 3]\noutput : list = [-4, 10, 2, -6, -2, -6]",
    "output": "generated_output : list = mul_n([2, -5, -1, 3, 1, 3],-2)",
    "io_inp": [
      2,
      -5,
      -1,
      3,
      1,
      3
    ],
    "io_out": [
      -4,
      10,
      2,
      -6,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [4, -3, 4]\noutput : list = [-3, 4, 4]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_asc([4, -3, 4])))),48)",
    "io_inp": [
      4,
      -3,
      4
    ],
    "io_out": [
      -3,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(sort_asc(input)))),48)"
  },
  {
    "input": "input : list = [5, -5, 2, -4, -2]\noutput : list = [5, 2, -2, -4, -5]",
    "output": "generated_output : list = sort_des([5, -5, 2, -4, -2])",
    "io_inp": [
      5,
      -5,
      2,
      -4,
      -2
    ],
    "io_out": [
      5,
      2,
      -2,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [1, -2, -5, -2, 4, -3]\noutput : list = [4, -2, -2, -3, -5]",
    "output": "generated_output : list = sort_des(take(reverse(take(reverse([1, -2, -5, -2, 4, -3]),5)),17))",
    "io_inp": [
      1,
      -2,
      -5,
      -2,
      4,
      -3
    ],
    "io_out": [
      4,
      -2,
      -2,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(take(reverse(input),5)),17))"
  },
  {
    "input": "input : list = [5, -2, 3, -2, 2, -3]\noutput : list = [-3, -2, 2]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(drop([5, -2, 3, -2, 2, -3],3)))))",
    "io_inp": [
      5,
      -2,
      3,
      -2,
      2,
      -3
    ],
    "io_out": [
      -3,
      -2,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(drop(input,3)))))"
  },
  {
    "input": "input : list = [5, -1, 5, 0, 0, 5]\noutput : list = [-5, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(take([5, -1, 5, 0, 0, 5],2)),-1)))",
    "io_inp": [
      5,
      -1,
      5,
      0,
      0,
      5
    ],
    "io_out": [
      -5,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(reverse(take(input,2)),-1)))"
  },
  {
    "input": "input : list = [4, -1, -1]\noutput : list = [16, -4, -4]",
    "output": "generated_output : list = mul_n([4, -1, -1],4)",
    "io_inp": [
      4,
      -1,
      -1
    ],
    "io_out": [
      16,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [5, -2, -4, 0]\noutput : list = [38, 22, 6, -34]",
    "output": "generated_output : list = sort_des(add_n(add_n(mul_n(mul_n([5, -2, -4, 0],-2),4),2),4))",
    "io_inp": [
      5,
      -2,
      -4,
      0
    ],
    "io_out": [
      38,
      22,
      6,
      -34
    ],
    "output_masked": "generated_output : list = sort_des(add_n(add_n(mul_n(mul_n(input,-2),4),2),4))"
  },
  {
    "input": "input : list = [5, -5]\noutput : list = [15, -25]",
    "output": "generated_output : list = sub_n(reverse(sub_n(take(mul_n([5, -5],-4),2),1)),4)",
    "io_inp": [
      5,
      -5
    ],
    "io_out": [
      15,
      -25
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sub_n(take(mul_n(input,-4),2),1)),4)"
  },
  {
    "input": "input : list = [-3, -5, 2, 3, -5]\noutput : list = [8, 7, 2, 0, 0]",
    "output": "generated_output : list = sort_des(add_n([-3, -5, 2, 3, -5],5))",
    "io_inp": [
      -3,
      -5,
      2,
      3,
      -5
    ],
    "io_out": [
      8,
      7,
      2,
      0,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,5))"
  },
  {
    "input": "input : list = [4, 5, -5, 0, 4]\noutput : list = [8, 10]",
    "output": "generated_output : list = take(take(mul_n(mul_n(take([4, 5, -5, 0, 4],2),2),1),36),14)",
    "io_inp": [
      4,
      5,
      -5,
      0,
      4
    ],
    "io_out": [
      8,
      10
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(take(input,2),2),1),36),14)"
  },
  {
    "input": "input : list = [-2, -5, 4]\noutput : list = [-32, 16, 40]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(mul_n([-2, -5, 4],4),-2))))",
    "io_inp": [
      -2,
      -5,
      4
    ],
    "io_out": [
      -32,
      16,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(mul_n(input,4),-2))))"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [5, 6]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_des([3, 4])))),2)",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      5,
      6
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_asc(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [3, -2, 1, 4]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = add_n(take(reverse(mul_n(sort_asc([3, -2, 1, 4]),2)),3),-5)",
    "io_inp": [
      3,
      -2,
      1,
      4
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(mul_n(sort_asc(input),2)),3),-5)"
  },
  {
    "input": "input : list = [4, -1]\noutput : list = [-8, 2]",
    "output": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_asc([4, -1]),-2)),1))",
    "io_inp": [
      4,
      -1
    ],
    "io_out": [
      -8,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(mul_n(sort_asc(input),-2)),1))"
  },
  {
    "input": "input : list = [-2, 1, 0]\noutput : list = [19, -1, -11]",
    "output": "generated_output : list = sort_des(add_n(mul_n(take(mul_n([-2, 1, 0],2),7),-5),-1))",
    "io_inp": [
      -2,
      1,
      0
    ],
    "io_out": [
      19,
      -1,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(take(mul_n(input,2),7),-5),-1))"
  },
  {
    "input": "input : list = [-1, 4, -1]\noutput : list = [-1, 4, -1]",
    "output": "generated_output : list = add_n(reverse(sub_n([-1, 4, -1],2)),2)",
    "io_inp": [
      -1,
      4,
      -1
    ],
    "io_out": [
      -1,
      4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(input,2)),2)"
  },
  {
    "input": "input : list = [0, -2, -4, 1]\noutput : list = [-1, -2, -4, -6]",
    "output": "generated_output : list = add_n(take(reverse(take(sort_asc([0, -2, -4, 1]),22)),20),-2)",
    "io_inp": [
      0,
      -2,
      -4,
      1
    ],
    "io_out": [
      -1,
      -2,
      -4,
      -6
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(take(sort_asc(input),22)),20),-2)"
  },
  {
    "input": "input : list = [-1, -2]\noutput : list = [3, 4]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([-1, -2]),-5))",
    "io_inp": [
      -1,
      -2
    ],
    "io_out": [
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),-5))"
  },
  {
    "input": "input : list = [-2, -5, 2]\noutput : list = [2, -5, -2]",
    "output": "generated_output : list = reverse([-2, -5, 2])",
    "io_inp": [
      -2,
      -5,
      2
    ],
    "io_out": [
      2,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [4, -1, -4]\noutput : list = [2]",
    "output": "generated_output : list = sub_n(sort_des(sub_n(sub_n(take([4, -1, -4],1),-1),1)),2)",
    "io_inp": [
      4,
      -1,
      -4
    ],
    "io_out": [
      2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sub_n(sub_n(take(input,1),-1),1)),2)"
  },
  {
    "input": "input : list = [4, 5, 2, 5]\noutput : list = [-8, -10, -4, -10]",
    "output": "generated_output : list = take(reverse(take(reverse(mul_n([4, 5, 2, 5],-2)),21)),5)",
    "io_inp": [
      4,
      5,
      2,
      5
    ],
    "io_out": [
      -8,
      -10,
      -4,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(take(reverse(mul_n(input,-2)),21)),5)"
  },
  {
    "input": "input : list = [2, 5]\noutput : list = [5, 2]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(reverse(sort_asc([2, 5])))))",
    "io_inp": [
      2,
      5
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [5, -3, 1, -5, 4]\noutput : list = [-5, -3, 1, 4, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_asc(reverse([5, -3, 1, -5, 4])))))",
    "io_inp": [
      5,
      -3,
      1,
      -5,
      4
    ],
    "io_out": [
      -5,
      -3,
      1,
      4,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_asc(reverse(input)))))"
  },
  {
    "input": "input : list = [0, 1, -2, -1]\noutput : list = [1, 0, -1, -2]",
    "output": "generated_output : list = sort_des([0, 1, -2, -1])",
    "io_inp": [
      0,
      1,
      -2,
      -1
    ],
    "io_out": [
      1,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [5, 5]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc([5, 5]))))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      5,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(input))))"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [0, 1]",
    "output": "generated_output : list = reverse([1, 0])",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      0,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [0, 8]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_des(add_n([3, 1],-5)),-2)),-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      0,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_des(add_n(input,-5)),-2)),-4)"
  },
  {
    "input": "input : list = [2, 1, 4, -4, 5]\noutput : list = [16, 7, 15, 12, 13]",
    "output": "generated_output : list = reverse(take(add_n(sub_n(add_n([2, 1, 4, -4, 5],5),-5),1),8))",
    "io_inp": [
      2,
      1,
      4,
      -4,
      5
    ],
    "io_out": [
      16,
      7,
      15,
      12,
      13
    ],
    "output_masked": "generated_output : list = reverse(take(add_n(sub_n(add_n(input,5),-5),1),8))"
  },
  {
    "input": "input : list = [4, -4, -5]\noutput : list = [5, -3, -4]",
    "output": "generated_output : list = take(sub_n(sort_des(sub_n(reverse([4, -4, -5]),4)),-5),24)",
    "io_inp": [
      4,
      -4,
      -5
    ],
    "io_out": [
      5,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = take(sub_n(sort_des(sub_n(reverse(input),4)),-5),24)"
  },
  {
    "input": "input : list = [2, 3, -5, -3, 5]\noutput : list = [3, 4, -4, -2, 6]",
    "output": "generated_output : list = add_n([2, 3, -5, -3, 5],1)",
    "io_inp": [
      2,
      3,
      -5,
      -3,
      5
    ],
    "io_out": [
      3,
      4,
      -4,
      -2,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -3]\noutput : list = [8, 12]",
    "output": "generated_output : list = mul_n([-2, -3],-4)",
    "io_inp": [
      -2,
      -3
    ],
    "io_out": [
      8,
      12
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [0, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = drop([0, -1, -5],1)",
    "io_inp": [
      0,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [4, 3, -4, 5]\noutput : list = [-7, -6]",
    "output": "generated_output : list = take(sub_n(mul_n(add_n(take([4, 3, -4, 5],2),5),-1),-2),44)",
    "io_inp": [
      4,
      3,
      -4,
      5
    ],
    "io_out": [
      -7,
      -6
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(add_n(take(input,2),5),-1),-2),44)"
  },
  {
    "input": "input : list = [-1, -2, -5, -4, 5, 1]\noutput : list = [12, 8, 6, 5, 3, 2]",
    "output": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_des([-1, -2, -5, -4, 5, 1]))),2),-5)",
    "io_inp": [
      -1,
      -2,
      -5,
      -4,
      5,
      1
    ],
    "io_out": [
      12,
      8,
      6,
      5,
      3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(reverse(sort_asc(sort_des(input))),2),-5)"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des([-1, -3])",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, -2]\noutput : list = [-6, -8]",
    "output": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_des([-3, -2])),-1),-1),-2)",
    "io_inp": [
      -3,
      -2
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(add_n(sort_des(sort_des(input)),-1),-1),-2)"
  },
  {
    "input": "input : list = [4, -4, 4, 4, 0, -5]\noutput : list = [18, 14, -2, -18, -18, -18]",
    "output": "generated_output : list = add_n(reverse(add_n(mul_n(sort_des([4, -4, 4, 4, 0, -5]),-4),-3)),1)",
    "io_inp": [
      4,
      -4,
      4,
      4,
      0,
      -5
    ],
    "io_out": [
      18,
      14,
      -2,
      -18,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(mul_n(sort_des(input),-4),-3)),1)"
  },
  {
    "input": "input : list = [5, -5, 3, 3, -1]\noutput : list = [-26, -16, -16, 4, 24]",
    "output": "generated_output : list = take(sort_asc(sort_asc(sub_n(mul_n([5, -5, 3, 3, -1],-5),1))),24)",
    "io_inp": [
      5,
      -5,
      3,
      3,
      -1
    ],
    "io_out": [
      -26,
      -16,
      -16,
      4,
      24
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(sub_n(mul_n(input,-5),1))),24)"
  },
  {
    "input": "input : list = [2, 2, -3, 1]\noutput : list = [7, 7, 2, 6]",
    "output": "generated_output : list = add_n([2, 2, -3, 1],5)",
    "io_inp": [
      2,
      2,
      -3,
      1
    ],
    "io_out": [
      7,
      7,
      2,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [1, -5, -2, -3]\noutput : list = [8, -16]",
    "output": "generated_output : list = add_n(reverse(reverse(mul_n(take([1, -5, -2, -3],2),4))),4)",
    "io_inp": [
      1,
      -5,
      -2,
      -3
    ],
    "io_out": [
      8,
      -16
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(mul_n(take(input,2),4))),4)"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [9, 3, -15]",
    "output": "generated_output : list = mul_n(sort_asc([-3, -1, 5]),-3)",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      9,
      3,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-5, 5, -3]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(add_n(add_n(take([-5, 5, -3],1),-4),1),5)",
    "io_inp": [
      -5,
      5,
      -3
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(take(input,1),-4),1),5)"
  },
  {
    "input": "input : list = [5, 0, 1]\noutput : list = [3, 2, 7]",
    "output": "generated_output : list = sub_n(reverse([5, 0, 1]),-2)",
    "io_inp": [
      5,
      0,
      1
    ],
    "io_out": [
      3,
      2,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [5, -5, 1, -3, -3, -3]\noutput : list = [-5, -5, -5, -1, -7, 3]",
    "output": "generated_output : list = reverse(add_n([5, -5, 1, -3, -3, -3],-2))",
    "io_inp": [
      5,
      -5,
      1,
      -3,
      -3,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -1,
      -7,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,-2))"
  },
  {
    "input": "input : list = [-2, 1, 1, -1, -5, 2]\noutput : list = [4, 3, 3, 1, 0, -3]",
    "output": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des([-2, 1, 1, -1, -5, 2]),3),-5),37))",
    "io_inp": [
      -2,
      1,
      1,
      -1,
      -5,
      2
    ],
    "io_out": [
      4,
      3,
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(sub_n(sort_des(input),3),-5),37))"
  },
  {
    "input": "input : list = [1, -2, 3, 5]\noutput : list = [-3, 6]",
    "output": "generated_output : list = mul_n(take([1, -2, 3, 5],2),-3)",
    "io_inp": [
      1,
      -2,
      3,
      5
    ],
    "io_out": [
      -3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(take(input,2),-3)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-9, -7]",
    "output": "generated_output : list = sort_asc(take(add_n([-2, -4],-5),10))",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -9,
      -7
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(input,-5),10))"
  },
  {
    "input": "input : list = [1, -5, 4, -2, -1, 3]\noutput : list = [-4, -1, 0, 2, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(sub_n([1, -5, 4, -2, -1, 3],-1),16))))",
    "io_inp": [
      1,
      -5,
      4,
      -2,
      -1,
      3
    ],
    "io_out": [
      -4,
      -1,
      0,
      2,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(sub_n(input,-1),16))))"
  },
  {
    "input": "input : list = [3, -5, 3, 0, -5]\noutput : list = [3, 3, -5]",
    "output": "generated_output : list = sort_des(mul_n(take([3, -5, 3, 0, -5],3),1))",
    "io_inp": [
      3,
      -5,
      3,
      0,
      -5
    ],
    "io_out": [
      3,
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,3),1))"
  },
  {
    "input": "input : list = [-5, -3, -4, -5, -2, 1]\noutput : list = [25, 25, 22, 19, 16, 7]",
    "output": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_asc([-5, -3, -4, -5, -2, 1]),-3),-5),5))",
    "io_inp": [
      -5,
      -3,
      -4,
      -5,
      -2,
      1
    ],
    "io_out": [
      25,
      25,
      22,
      19,
      16,
      7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sub_n(mul_n(sort_asc(input),-3),-5),5))"
  },
  {
    "input": "input : list = [-4, 0, -3, 1, 1]\noutput : list = [6, 7, 10, 11, 11]",
    "output": "generated_output : list = add_n(add_n(sort_asc([-4, 0, -3, 1, 1]),5),5)",
    "io_inp": [
      -4,
      0,
      -3,
      1,
      1
    ],
    "io_out": [
      6,
      7,
      10,
      11,
      11
    ],
    "output_masked": "generated_output : list = add_n(add_n(sort_asc(input),5),5)"
  },
  {
    "input": "input : list = [0, -4]\noutput : list = [6, 26]",
    "output": "generated_output : list = reverse(sub_n(add_n(mul_n(reverse([0, -4]),-5),5),-1))",
    "io_inp": [
      0,
      -4
    ],
    "io_out": [
      6,
      26
    ],
    "output_masked": "generated_output : list = reverse(sub_n(add_n(mul_n(reverse(input),-5),5),-1))"
  },
  {
    "input": "input : list = [2, 4, 0, -5]\noutput : list = [-9, -14]",
    "output": "generated_output : list = add_n(add_n(add_n(drop(drop([2, 4, 0, -5],1),1),-5),-1),-3)",
    "io_inp": [
      2,
      4,
      0,
      -5
    ],
    "io_out": [
      -9,
      -14
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(drop(drop(input,1),1),-5),-1),-3)"
  },
  {
    "input": "input : list = [1, 5, 4]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sort_asc(take([1, 5, 4],1)))",
    "io_inp": [
      1,
      5,
      4
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(input,1)))"
  },
  {
    "input": "input : list = [-1, -1, 3, -4, -4]\noutput : list = [-3, -3, 0, 0, 4]",
    "output": "generated_output : list = sub_n(reverse(take(sort_des(reverse([-1, -1, 3, -4, -4])),11)),-1)",
    "io_inp": [
      -1,
      -1,
      3,
      -4,
      -4
    ],
    "io_out": [
      -3,
      -3,
      0,
      0,
      4
    ],
    "output_masked": "generated_output : list = sub_n(reverse(take(sort_des(reverse(input)),11)),-1)"
  },
  {
    "input": "input : list = [-1, 1, 4]\noutput : list = [2, 4, 7]",
    "output": "generated_output : list = sub_n([-1, 1, 4],-3)",
    "io_inp": [
      -1,
      1,
      4
    ],
    "io_out": [
      2,
      4,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, 0, 1, 3]\noutput : list = [0, -1, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(take(add_n([2, 0, 1, 3],-2),3))))",
    "io_inp": [
      2,
      0,
      1,
      3
    ],
    "io_out": [
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(take(add_n(input,-2),3))))"
  },
  {
    "input": "input : list = [-5, 5, 1]\noutput : list = [2, -2, -8]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n([-5, 5, 1],-3))))",
    "io_inp": [
      -5,
      5,
      1
    ],
    "io_out": [
      2,
      -2,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(input,-3))))"
  },
  {
    "input": "input : list = [4, -4, -2, 5, 2, -2]\noutput : list = [95, 75, 35, -45, -45, -85]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_asc(mul_n([4, -4, -2, 5, 2, -2],4)),5)),-5)",
    "io_inp": [
      4,
      -4,
      -2,
      5,
      2,
      -2
    ],
    "io_out": [
      95,
      75,
      35,
      -45,
      -45,
      -85
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_asc(mul_n(input,4)),5)),-5)"
  },
  {
    "input": "input : list = [-4, -4, 0, 4, 3]\noutput : list = [-9, -9, -5, -1, -2]",
    "output": "generated_output : list = add_n([-4, -4, 0, 4, 3],-5)",
    "io_inp": [
      -4,
      -4,
      0,
      4,
      3
    ],
    "io_out": [
      -9,
      -9,
      -5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-1, 3, -4, -4, 4, -5]\noutput : list = [-5, -4, -4, -1, 3, 4]",
    "output": "generated_output : list = take(sort_asc([-1, 3, -4, -4, 4, -5]),28)",
    "io_inp": [
      -1,
      3,
      -4,
      -4,
      4,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -1,
      3,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(input),28)"
  },
  {
    "input": "input : list = [-4, 4, -4, 0, 5, 1]\noutput : list = [1, 5]",
    "output": "generated_output : list = sort_asc(drop([-4, 4, -4, 0, 5, 1],4))",
    "io_inp": [
      -4,
      4,
      -4,
      0,
      5,
      1
    ],
    "io_out": [
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,4))"
  },
  {
    "input": "input : list = [2, -5, -1, -1, -3]\noutput : list = [-20, -10, 0, 0, 15]",
    "output": "generated_output : list = mul_n(take(sort_asc(reverse(sub_n([2, -5, -1, -1, -3],-1))),24),5)",
    "io_inp": [
      2,
      -5,
      -1,
      -1,
      -3
    ],
    "io_out": [
      -20,
      -10,
      0,
      0,
      15
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(reverse(sub_n(input,-1))),24),5)"
  },
  {
    "input": "input : list = [-2, 0, 4, -2]\noutput : list = [-7, -5, -1, -7]",
    "output": "generated_output : list = add_n([-2, 0, 4, -2],-5)",
    "io_inp": [
      -2,
      0,
      4,
      -2
    ],
    "io_out": [
      -7,
      -5,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -3, -4, -3, -2, 4]\noutput : list = [-13, -10, -10, -10, -7, 11]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc([-3, -3, -4, -3, -2, 4]),3),1)",
    "io_inp": [
      -3,
      -3,
      -4,
      -3,
      -2,
      4
    ],
    "io_out": [
      -13,
      -10,
      -10,
      -10,
      -7,
      11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(input),3),1)"
  },
  {
    "input": "input : list = [0, -3, -2, -4, -5, -4]\noutput : list = [-5, -4, -4, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(take(reverse([0, -3, -2, -4, -5, -4]),21))))",
    "io_inp": [
      0,
      -3,
      -2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(take(reverse(input),21))))"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(drop([-2, 4, 4],1),5)),-2),-1)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(drop(input,1),5)),-2),-1)"
  },
  {
    "input": "input : list = [5, -1, -1, 4, -5, 4]\noutput : list = [13, 7, 7, 12, 3, 12]",
    "output": "generated_output : list = reverse(mul_n(reverse(add_n(add_n([5, -1, -1, 4, -5, 4],4),4)),1))",
    "io_inp": [
      5,
      -1,
      -1,
      4,
      -5,
      4
    ],
    "io_out": [
      13,
      7,
      7,
      12,
      3,
      12
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(add_n(add_n(input,4),4)),1))"
  },
  {
    "input": "input : list = [5, -4, -4]\noutput : list = [-4, -4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_asc(take(sort_asc([5, -4, -4]),19))))",
    "io_inp": [
      5,
      -4,
      -4
    ],
    "io_out": [
      -4,
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_asc(take(sort_asc(input),19))))"
  },
  {
    "input": "input : list = [1, 4, 1, -5, -1]\noutput : list = [-1, -5, 1, 4, 1]",
    "output": "generated_output : list = reverse([1, 4, 1, -5, -1])",
    "io_inp": [
      1,
      4,
      1,
      -5,
      -1
    ],
    "io_out": [
      -1,
      -5,
      1,
      4,
      1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-1, 3]\noutput : list = [2, -2]",
    "output": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_asc([-1, 3]),-5)),-2),2)",
    "io_inp": [
      -1,
      3
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sort_des(add_n(sort_asc(input),-5)),-2),2)"
  },
  {
    "input": "input : list = [4, 3, 2, 5, -4]\noutput : list = [8, 7, 6, 5, -1]",
    "output": "generated_output : list = add_n(sort_des(take(reverse(sub_n([4, 3, 2, 5, -4],2)),18)),5)",
    "io_inp": [
      4,
      3,
      2,
      5,
      -4
    ],
    "io_out": [
      8,
      7,
      6,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(reverse(sub_n(input,2)),18)),5)"
  },
  {
    "input": "input : list = [-4, 1, -3, -5, 4]\noutput : list = [-6, 3, 1, -3, 2]",
    "output": "generated_output : list = sub_n(reverse(mul_n(reverse(reverse([-4, 1, -3, -5, 4])),-1)),2)",
    "io_inp": [
      -4,
      1,
      -3,
      -5,
      4
    ],
    "io_out": [
      -6,
      3,
      1,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(reverse(reverse(input)),-1)),2)"
  },
  {
    "input": "input : list = [-5, 5, -5]\noutput : list = [10, 0]",
    "output": "generated_output : list = sort_des(add_n(reverse(reverse(drop([-5, 5, -5],1))),5))",
    "io_inp": [
      -5,
      5,
      -5
    ],
    "io_out": [
      10,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(reverse(reverse(drop(input,1))),5))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [-14, -4]",
    "output": "generated_output : list = reverse(sort_des(mul_n(add_n(reverse([0, -5]),-2),2)))",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      -14,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(mul_n(add_n(reverse(input),-2),2)))"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [5, 4, 0]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(sort_asc([-3, 1, 2]),5))),3)",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      5,
      4,
      0
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(sort_asc(input),5))),3)"
  },
  {
    "input": "input : list = [5, 3, 3, -4, -1]\noutput : list = [5, 3, 3, -1, -4]",
    "output": "generated_output : list = sort_des([5, 3, 3, -4, -1])",
    "io_inp": [
      5,
      3,
      3,
      -4,
      -1
    ],
    "io_out": [
      5,
      3,
      3,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [3, -4, 3, -1, 5]\noutput : list = [-7, -4, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sub_n([3, -4, 3, -1, 5],3),16)))",
    "io_inp": [
      3,
      -4,
      3,
      -1,
      5
    ],
    "io_out": [
      -7,
      -4,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sub_n(input,3),16)))"
  },
  {
    "input": "input : list = [-1, -1, -1, 1, 1]\noutput : list = [-10, -10, -10, -8, -8]",
    "output": "generated_output : list = sort_asc(sub_n(reverse(sub_n(reverse([-1, -1, -1, 1, 1]),4)),5))",
    "io_inp": [
      -1,
      -1,
      -1,
      1,
      1
    ],
    "io_out": [
      -10,
      -10,
      -10,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(reverse(sub_n(reverse(input),4)),5))"
  },
  {
    "input": "input : list = [-2, -2]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n([-2, -2],-3))))",
    "io_inp": [
      -2,
      -2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(input,-3))))"
  },
  {
    "input": "input : list = [-1, 4, 0, 1, 3]\noutput : list = [-1]",
    "output": "generated_output : list = reverse(sort_des(take(reverse(take([-1, 4, 0, 1, 3],1)),5)))",
    "io_inp": [
      -1,
      4,
      0,
      1,
      3
    ],
    "io_out": [
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(reverse(take(input,1)),5)))"
  },
  {
    "input": "input : list = [-2, -4, 1]\noutput : list = [-40, -80]",
    "output": "generated_output : list = mul_n(take(mul_n([-2, -4, 1],4),2),5)",
    "io_inp": [
      -2,
      -4,
      1
    ],
    "io_out": [
      -40,
      -80
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(input,4),2),5)"
  },
  {
    "input": "input : list = [5, -1, 4]\noutput : list = [-3, -8, -2]",
    "output": "generated_output : list = add_n(take(sub_n(take(reverse([5, -1, 4]),17),5),10),-2)",
    "io_inp": [
      5,
      -1,
      4
    ],
    "io_out": [
      -3,
      -8,
      -2
    ],
    "output_masked": "generated_output : list = add_n(take(sub_n(take(reverse(input),17),5),10),-2)"
  },
  {
    "input": "input : list = [-4, -2, -4, 3, 5, 1]\noutput : list = [-18, -12, 3, 9, 9]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(take(sub_n([-4, -2, -4, 3, 5, 1],-1),5),-3)))",
    "io_inp": [
      -4,
      -2,
      -4,
      3,
      5,
      1
    ],
    "io_out": [
      -18,
      -12,
      3,
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(take(sub_n(input,-1),5),-3)))"
  },
  {
    "input": "input : list = [-2, 2, -4, 0]\noutput : list = [1, -1, -3, -5]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(sort_asc([-2, 2, -4, 0]),12)),5),4)",
    "io_inp": [
      -2,
      2,
      -4,
      0
    ],
    "io_out": [
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(sort_asc(input),12)),5),4)"
  },
  {
    "input": "input : list = [4, -4, 3, 4, 5, -5]\noutput : list = [9, 1, 8, 9, 10, 0]",
    "output": "generated_output : list = sub_n(take(sub_n(sub_n(add_n([4, -4, 3, 4, 5, -5],-1),-3),-4),17),1)",
    "io_inp": [
      4,
      -4,
      3,
      4,
      5,
      -5
    ],
    "io_out": [
      9,
      1,
      8,
      9,
      10,
      0
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sub_n(add_n(input,-1),-3),-4),17),1)"
  },
  {
    "input": "input : list = [-1, 3, 0, 1]\noutput : list = [-1, 0]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(drop([-1, 3, 0, 1],2)),4),1),-3)",
    "io_inp": [
      -1,
      3,
      0,
      1
    ],
    "io_out": [
      -1,
      0
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(sort_asc(drop(input,2)),4),1),-3)"
  },
  {
    "input": "input : list = [-5, -4, -4, -1, 3]\noutput : list = [3, -1, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -4, -4, -1, 3])",
    "io_inp": [
      -5,
      -4,
      -4,
      -1,
      3
    ],
    "io_out": [
      3,
      -1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 1, -4, -2, 0, -2]\noutput : list = [-8, -4, -4, 0, 2, 4]",
    "output": "generated_output : list = sort_asc(mul_n([2, 1, -4, -2, 0, -2],2))",
    "io_inp": [
      2,
      1,
      -4,
      -2,
      0,
      -2
    ],
    "io_out": [
      -8,
      -4,
      -4,
      0,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,2))"
  },
  {
    "input": "input : list = [-3, 3, 5]\noutput : list = [-36, -12, -4]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(reverse(add_n([-3, 3, 5],-5)),4),4))",
    "io_inp": [
      -3,
      3,
      5
    ],
    "io_out": [
      -36,
      -12,
      -4
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(reverse(add_n(input,-5)),4),4))"
  },
  {
    "input": "input : list = [2, 0, 4]\noutput : list = [8, 6, 4]",
    "output": "generated_output : list = sort_des(take(sort_des(add_n(reverse([2, 0, 4]),4)),8))",
    "io_inp": [
      2,
      0,
      4
    ],
    "io_out": [
      8,
      6,
      4
    ],
    "output_masked": "generated_output : list = sort_des(take(sort_des(add_n(reverse(input),4)),8))"
  },
  {
    "input": "input : list = [2, -3, -1, -1, -4]\noutput : list = [-5, -4, -2, -2, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(add_n(take(sub_n([2, -3, -1, -1, -4],3),18),2)))",
    "io_inp": [
      2,
      -3,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -5,
      -4,
      -2,
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(add_n(take(sub_n(input,3),18),2)))"
  },
  {
    "input": "input : list = [4, 1, 1, 3]\noutput : list = [4, 3, 1, 1]",
    "output": "generated_output : list = sort_des(sort_asc([4, 1, 1, 3]))",
    "io_inp": [
      4,
      1,
      1,
      3
    ],
    "io_out": [
      4,
      3,
      1,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [-4, -5, 2, 0]\noutput : list = [-3, -5, -9, -10]",
    "output": "generated_output : list = sort_des(add_n([-4, -5, 2, 0],-5))",
    "io_inp": [
      -4,
      -5,
      2,
      0
    ],
    "io_out": [
      -3,
      -5,
      -9,
      -10
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [-3, -4, 2]\noutput : list = [2, -4, -3]",
    "output": "generated_output : list = reverse([-3, -4, 2])",
    "io_inp": [
      -3,
      -4,
      2
    ],
    "io_out": [
      2,
      -4,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -3]\noutput : list = [6, -2]",
    "output": "generated_output : list = take(sort_des(add_n(sort_asc([5, -3]),1)),32)",
    "io_inp": [
      5,
      -3
    ],
    "io_out": [
      6,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(sort_asc(input),1)),32)"
  },
  {
    "input": "input : list = [5, 4, 4, 2]\noutput : list = [5, 4]",
    "output": "generated_output : list = take([5, 4, 4, 2],2)",
    "io_inp": [
      5,
      4,
      4,
      2
    ],
    "io_out": [
      5,
      4
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-3, 1, 3]\noutput : list = [3, 1, -3]",
    "output": "generated_output : list = sort_des([-3, 1, 3])",
    "io_inp": [
      -3,
      1,
      3
    ],
    "io_out": [
      3,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 0]\noutput : list = [0]",
    "output": "generated_output : list = sort_asc(take(sort_des(drop(sort_des([2, 0]),1)),24))",
    "io_inp": [
      2,
      0
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(drop(sort_des(input),1)),24))"
  },
  {
    "input": "input : list = [1, 3, -3, -1]\noutput : list = [3, 1, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc([1, 3, -3, -1]))))",
    "io_inp": [
      1,
      3,
      -3,
      -1
    ],
    "io_out": [
      3,
      1,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(sort_asc(input))))"
  },
  {
    "input": "input : list = [5, -2]\noutput : list = [0, -7]",
    "output": "generated_output : list = sort_des(add_n([5, -2],-5))",
    "io_inp": [
      5,
      -2
    ],
    "io_out": [
      0,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [5, 0, 5, -4, 2, -4]\noutput : list = [-3, -3, 1, 3, 6, 6]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(sub_n([5, 0, 5, -4, 2, -4],1),2)),40))",
    "io_inp": [
      5,
      0,
      5,
      -4,
      2,
      -4
    ],
    "io_out": [
      -3,
      -3,
      1,
      3,
      6,
      6
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(sub_n(input,1),2)),40))"
  },
  {
    "input": "input : list = [1, 3, 1]\noutput : list = [2, 4, 2]",
    "output": "generated_output : list = sub_n([1, 3, 1],-1)",
    "io_inp": [
      1,
      3,
      1
    ],
    "io_out": [
      2,
      4,
      2
    ],
    "output_masked": "generated_output : list = sub_n(input,-1)"
  },
  {
    "input": "input : list = [0, 3, 3, 0, 4]\noutput : list = [-5, -5, -2, -2, -1]",
    "output": "generated_output : list = sort_asc(sub_n(sub_n(take(sort_asc([0, 3, 3, 0, 4]),21),4),1))",
    "io_inp": [
      0,
      3,
      3,
      0,
      4
    ],
    "io_out": [
      -5,
      -5,
      -2,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sub_n(take(sort_asc(input),21),4),1))"
  },
  {
    "input": "input : list = [-5, 5, -1]\noutput : list = [6, 0, -4]",
    "output": "generated_output : list = sort_des(add_n([-5, 5, -1],1))",
    "io_inp": [
      -5,
      5,
      -1
    ],
    "io_out": [
      6,
      0,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [-3, -3, -3, -4, 0]\noutput : list = [-12, -12, -12, -16, 0]",
    "output": "generated_output : list = mul_n(mul_n([-3, -3, -3, -4, 0],4),1)",
    "io_inp": [
      -3,
      -3,
      -3,
      -4,
      0
    ],
    "io_out": [
      -12,
      -12,
      -12,
      -16,
      0
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,4),1)"
  },
  {
    "input": "input : list = [3, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = reverse([3, -1])",
    "io_inp": [
      3,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [-80, -5]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(mul_n([0, 3],5),-1)),-5))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      -80,
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(mul_n(input,5),-1)),-5))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-4, 8]",
    "output": "generated_output : list = mul_n([-2, 4],2)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -4,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [-4, 5, 3, -3]\noutput : list = [7, 5, -1, -2]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(sub_n([-4, 5, 3, -3],-1)))),1)",
    "io_inp": [
      -4,
      5,
      3,
      -3
    ],
    "io_out": [
      7,
      5,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(sub_n(input,-1)))),1)"
  },
  {
    "input": "input : list = [2, -1]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des(sort_des(add_n(mul_n(reverse([2, -1]),-1),2)))",
    "io_inp": [
      2,
      -1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(mul_n(reverse(input),-1),2)))"
  },
  {
    "input": "input : list = [1, -1, 2, 0, -1, -4]\noutput : list = [-7, -6, -5, -4, -4, -1]",
    "output": "generated_output : list = mul_n(add_n(sort_des([1, -1, 2, 0, -1, -4]),5),-1)",
    "io_inp": [
      1,
      -1,
      2,
      0,
      -1,
      -4
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = mul_n(add_n(sort_des(input),5),-1)"
  },
  {
    "input": "input : list = [5, 3, -5, 5, 1]\noutput : list = [-8, 16, 24, 32, 32]",
    "output": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n([5, 3, -5, 5, 1],3),2)),17),2)",
    "io_inp": [
      5,
      3,
      -5,
      5,
      1
    ],
    "io_out": [
      -8,
      16,
      24,
      32,
      32
    ],
    "output_masked": "generated_output : list = mul_n(take(sort_asc(mul_n(add_n(input,3),2)),17),2)"
  },
  {
    "input": "input : list = [-1, -1, 4, -5, 3]\noutput : list = [20, 30, 70, 70, 110]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sub_n([-1, -1, 4, -5, 3],5),1),5),-2))",
    "io_inp": [
      -1,
      -1,
      4,
      -5,
      3
    ],
    "io_out": [
      20,
      30,
      70,
      70,
      110
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(sub_n(sub_n(input,5),1),5),-2))"
  },
  {
    "input": "input : list = [2, -2]\noutput : list = [2, -2]",
    "output": "generated_output : list = reverse(sort_asc([2, -2]))",
    "io_inp": [
      2,
      -2
    ],
    "io_out": [
      2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(input))"
  },
  {
    "input": "input : list = [-1, 0, 4, -1]\noutput : list = [0, 4, -1]",
    "output": "generated_output : list = drop([-1, 0, 4, -1],1)",
    "io_inp": [
      -1,
      0,
      4,
      -1
    ],
    "io_out": [
      0,
      4,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [5, 2, 5, 4, 1, 3]\noutput : list = [7, 4, 7, 6, 3, 5]",
    "output": "generated_output : list = add_n([5, 2, 5, 4, 1, 3],2)",
    "io_inp": [
      5,
      2,
      5,
      4,
      1,
      3
    ],
    "io_out": [
      7,
      4,
      7,
      6,
      3,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-4, -2, -5, -5, -2]\noutput : list = [-3, -1, -4, -4, -1]",
    "output": "generated_output : list = add_n([-4, -2, -5, -5, -2],1)",
    "io_inp": [
      -4,
      -2,
      -5,
      -5,
      -2
    ],
    "io_out": [
      -3,
      -1,
      -4,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [-2, -5, -5, 1, -3, 3]\noutput : list = [-10, -10, -8, -7, -4, -2]",
    "output": "generated_output : list = take(sort_asc(take(add_n(reverse([-2, -5, -5, 1, -3, 3]),-5),32)),11)",
    "io_inp": [
      -2,
      -5,
      -5,
      1,
      -3,
      3
    ],
    "io_out": [
      -10,
      -10,
      -8,
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(add_n(reverse(input),-5),32)),11)"
  },
  {
    "input": "input : list = [0, -3, 1, 0, 2, -5]\noutput : list = [10, 0, -4]",
    "output": "generated_output : list = mul_n(sort_asc(drop([0, -3, 1, 0, 2, -5],3)),-2)",
    "io_inp": [
      0,
      -3,
      1,
      0,
      2,
      -5
    ],
    "io_out": [
      10,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(drop(input,3)),-2)"
  },
  {
    "input": "input : list = [1, 0, -2, -1, 1, 0]\noutput : list = [3, 2, 0, 1, 3, 2]",
    "output": "generated_output : list = add_n([1, 0, -2, -1, 1, 0],2)",
    "io_inp": [
      1,
      0,
      -2,
      -1,
      1,
      0
    ],
    "io_out": [
      3,
      2,
      0,
      1,
      3,
      2
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [-1, -4, 2]\noutput : list = [-3, -12, 6]",
    "output": "generated_output : list = mul_n(sub_n(add_n([-1, -4, 2],3),3),3)",
    "io_inp": [
      -1,
      -4,
      2
    ],
    "io_out": [
      -3,
      -12,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(input,3),3),3)"
  },
  {
    "input": "input : list = [0, -2, -1, -4]\noutput : list = [-1, 1, 2, 3]",
    "output": "generated_output : list = sub_n(sort_asc(take(reverse(sort_asc([0, -2, -1, -4])),5)),-3)",
    "io_inp": [
      0,
      -2,
      -1,
      -4
    ],
    "io_out": [
      -1,
      1,
      2,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(take(reverse(sort_asc(input)),5)),-3)"
  },
  {
    "input": "input : list = [-5, 1]\noutput : list = [-80, 16]",
    "output": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(mul_n([-5, 1],-4),-4))))",
    "io_inp": [
      -5,
      1
    ],
    "io_out": [
      -80,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_des(mul_n(mul_n(input,-4),-4))))"
  },
  {
    "input": "input : list = [3, 4, 2, -5, -4, -2]\noutput : list = [1, -1, -2, 5, 7, 6]",
    "output": "generated_output : list = sub_n(reverse(add_n([3, 4, 2, -5, -4, -2],4)),1)",
    "io_inp": [
      3,
      4,
      2,
      -5,
      -4,
      -2
    ],
    "io_out": [
      1,
      -1,
      -2,
      5,
      7,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(add_n(input,4)),1)"
  },
  {
    "input": "input : list = [4, -1, 3]\noutput : list = [-5]",
    "output": "generated_output : list = mul_n(take(add_n(take([4, -1, 3],1),1),21),-1)",
    "io_inp": [
      4,
      -1,
      3
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = mul_n(take(add_n(take(input,1),1),21),-1)"
  },
  {
    "input": "input : list = [4, -3, 5]\noutput : list = [5]",
    "output": "generated_output : list = add_n(take([4, -3, 5],1),1)",
    "io_inp": [
      4,
      -3,
      5
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = add_n(take(input,1),1)"
  },
  {
    "input": "input : list = [4, -4, 0, -2, -5, -5]\noutput : list = [16, -16, 0, -8, -20, -20]",
    "output": "generated_output : list = mul_n([4, -4, 0, -2, -5, -5],4)",
    "io_inp": [
      4,
      -4,
      0,
      -2,
      -5,
      -5
    ],
    "io_out": [
      16,
      -16,
      0,
      -8,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [4, -2, 3]\noutput : list = [-2, 3, 4]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sort_asc([4, -2, 3])))))",
    "io_inp": [
      4,
      -2,
      3
    ],
    "io_out": [
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [3, -5, -5, 2, 4, -4]\noutput : list = [-8, -8, -7, -1, 0, 1]",
    "output": "generated_output : list = sub_n(sort_asc(reverse(sub_n(add_n([3, -5, -5, 2, 4, -4],5),3))),5)",
    "io_inp": [
      3,
      -5,
      -5,
      2,
      4,
      -4
    ],
    "io_out": [
      -8,
      -8,
      -7,
      -1,
      0,
      1
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(reverse(sub_n(add_n(input,5),3))),5)"
  },
  {
    "input": "input : list = [2, -2, -3]\noutput : list = [-2, 2, 3]",
    "output": "generated_output : list = reverse(reverse(mul_n(add_n(add_n([2, -2, -3],-3),3),-1)))",
    "io_inp": [
      2,
      -2,
      -3
    ],
    "io_out": [
      -2,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(add_n(add_n(input,-3),3),-1)))"
  },
  {
    "input": "input : list = [-2, -2, -5, 2]\noutput : list = [-2, 1, 1, 5]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc(take(reverse([-2, -2, -5, 2]),12))),-3)",
    "io_inp": [
      -2,
      -2,
      -5,
      2
    ],
    "io_out": [
      -2,
      1,
      1,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(take(reverse(input),12))),-3)"
  },
  {
    "input": "input : list = [1, 0, 3, 3, -3]\noutput : list = [3, 2, 5, 5, -1]",
    "output": "generated_output : list = sub_n([1, 0, 3, 3, -3],-2)",
    "io_inp": [
      1,
      0,
      3,
      3,
      -3
    ],
    "io_out": [
      3,
      2,
      5,
      5,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [-5, -5, -5, -3]\noutput : list = [-5, -5, -5, -3]",
    "output": "generated_output : list = sub_n(take(sort_asc(sort_asc(add_n([-5, -5, -5, -3],-1))),26),-1)",
    "io_inp": [
      -5,
      -5,
      -5,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(sort_asc(add_n(input,-1))),26),-1)"
  },
  {
    "input": "input : list = [5, 4, 0, -4]\noutput : list = [10, 9, 5, 1]",
    "output": "generated_output : list = add_n([5, 4, 0, -4],5)",
    "io_inp": [
      5,
      4,
      0,
      -4
    ],
    "io_out": [
      10,
      9,
      5,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sub_n(sort_asc([-4, 4]),1)",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),1)"
  },
  {
    "input": "input : list = [-3, 0, -5]\noutput : list = [0, -6, -10]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(sort_des([-3, 0, -5])))),2)",
    "io_inp": [
      -3,
      0,
      -5
    ],
    "io_out": [
      0,
      -6,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(sort_asc(sort_des(input)))),2)"
  },
  {
    "input": "input : list = [1, 3, 5, 1]\noutput : list = [-9, -3, 3, -9]",
    "output": "generated_output : list = mul_n(add_n([1, 3, 5, 1],-4),3)",
    "io_inp": [
      1,
      3,
      5,
      1
    ],
    "io_out": [
      -9,
      -3,
      3,
      -9
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,-4),3)"
  },
  {
    "input": "input : list = [-3, 3]\noutput : list = [9, -9]",
    "output": "generated_output : list = take(take(mul_n(mul_n(sort_des([-3, 3]),-1),-3),18),40)",
    "io_inp": [
      -3,
      3
    ],
    "io_out": [
      9,
      -9
    ],
    "output_masked": "generated_output : list = take(take(mul_n(mul_n(sort_des(input),-1),-3),18),40)"
  },
  {
    "input": "input : list = [0, -3, -3, 4, 4, 3]\noutput : list = [2, 2, 1, -2, -5, -5]",
    "output": "generated_output : list = take(sort_des(sub_n(reverse([0, -3, -3, 4, 4, 3]),2)),30)",
    "io_inp": [
      0,
      -3,
      -3,
      4,
      4,
      3
    ],
    "io_out": [
      2,
      2,
      1,
      -2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sub_n(reverse(input),2)),30)"
  },
  {
    "input": "input : list = [1, 1]\noutput : list = [-19, -19]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n([1, 1],1),-1),-5)),-4)",
    "io_inp": [
      1,
      1
    ],
    "io_out": [
      -19,
      -19
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(add_n(input,1),-1),-5)),-4)"
  },
  {
    "input": "input : list = [4, 2, -1, 4]\noutput : list = [-19, -19]",
    "output": "generated_output : list = take(take(sub_n(mul_n(sort_des([4, 2, -1, 4]),-4),3),6),2)",
    "io_inp": [
      4,
      2,
      -1,
      4
    ],
    "io_out": [
      -19,
      -19
    ],
    "output_masked": "generated_output : list = take(take(sub_n(mul_n(sort_des(input),-4),3),6),2)"
  },
  {
    "input": "input : list = [-4, -2, 5, -2, 2, 3]\noutput : list = [12, 6, 3, -9, -9, -15]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(reverse(mul_n([-4, -2, 5, -2, 2, 3],3))),3))",
    "io_inp": [
      -4,
      -2,
      5,
      -2,
      2,
      3
    ],
    "io_out": [
      12,
      6,
      3,
      -9,
      -9,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(reverse(mul_n(input,3))),3))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-6, -8]",
    "output": "generated_output : list = reverse(reverse(take(add_n(add_n([-1, -3],-4),-1),24)))",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -6,
      -8
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(add_n(add_n(input,-4),-1),24)))"
  },
  {
    "input": "input : list = [3, 5]\noutput : list = [5, 3]",
    "output": "generated_output : list = reverse([3, 5])",
    "io_inp": [
      3,
      5
    ],
    "io_out": [
      5,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-5, 0, 5, 0]\noutput : list = [10, 5, 5, 0]",
    "output": "generated_output : list = add_n(reverse(reverse(sort_des(sort_des([-5, 0, 5, 0])))),5)",
    "io_inp": [
      -5,
      0,
      5,
      0
    ],
    "io_out": [
      10,
      5,
      5,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(reverse(sort_des(sort_des(input)))),5)"
  },
  {
    "input": "input : list = [-2, 0, 4, 5, -5, 1]\noutput : list = [5, 7, 11, 12, 2]",
    "output": "generated_output : list = sub_n(take(take(take(sub_n([-2, 0, 4, 5, -5, 1],-3),5),29),11),-4)",
    "io_inp": [
      -2,
      0,
      4,
      5,
      -5,
      1
    ],
    "io_out": [
      5,
      7,
      11,
      12,
      2
    ],
    "output_masked": "generated_output : list = sub_n(take(take(take(sub_n(input,-3),5),29),11),-4)"
  },
  {
    "input": "input : list = [2, 4, 4, -3, -1, 3]\noutput : list = [-25, -5, 5]",
    "output": "generated_output : list = mul_n(sort_des(sort_asc(add_n(drop([2, 4, 4, -3, -1, 3],3),2))),-5)",
    "io_inp": [
      2,
      4,
      4,
      -3,
      -1,
      3
    ],
    "io_out": [
      -25,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_asc(add_n(drop(input,3),2))),-5)"
  },
  {
    "input": "input : list = [2, -5, -2, 1]\noutput : list = [-5, -2, 1]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_asc(drop([2, -5, -2, 1],1)))),22)",
    "io_inp": [
      2,
      -5,
      -2,
      1
    ],
    "io_out": [
      -5,
      -2,
      1
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_asc(drop(input,1)))),22)"
  },
  {
    "input": "input : list = [1, 4, -3]\noutput : list = [4, 1, -3]",
    "output": "generated_output : list = take(sort_des(sort_asc([1, 4, -3])),5)",
    "io_inp": [
      1,
      4,
      -3
    ],
    "io_out": [
      4,
      1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(input)),5)"
  },
  {
    "input": "input : list = [3, 2, 2, -5, 1]\noutput : list = [-9, -4, -4, 31, 1]",
    "output": "generated_output : list = add_n(mul_n(add_n(take(add_n([3, 2, 2, -5, 1],-1),16),-1),-5),-4)",
    "io_inp": [
      3,
      2,
      2,
      -5,
      1
    ],
    "io_out": [
      -9,
      -4,
      -4,
      31,
      1
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(take(add_n(input,-1),16),-1),-5),-4)"
  },
  {
    "input": "input : list = [-2, 0, 2, 4, 5]\noutput : list = [-2, 0]",
    "output": "generated_output : list = take([-2, 0, 2, 4, 5],2)",
    "io_inp": [
      -2,
      0,
      2,
      4,
      5
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [3, 5, -5, 5]\noutput : list = [-36, -4, 4, 4]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(add_n([3, 5, -5, 5],-4),4)))",
    "io_inp": [
      3,
      5,
      -5,
      5
    ],
    "io_out": [
      -36,
      -4,
      4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(add_n(input,-4),4)))"
  },
  {
    "input": "input : list = [0, -3, 5, 0, -5]\noutput : list = [-200, 0, 200, -120, 0]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(mul_n([0, -3, 5, 0, -5],5),2),10)),4)",
    "io_inp": [
      0,
      -3,
      5,
      0,
      -5
    ],
    "io_out": [
      -200,
      0,
      200,
      -120,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(mul_n(input,5),2),10)),4)"
  },
  {
    "input": "input : list = [2, 2, 3, -3, 3, -4]\noutput : list = [-4, -3, 2, 2, 3, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sort_des([2, 2, 3, -3, 3, -4])))))",
    "io_inp": [
      2,
      2,
      3,
      -3,
      3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      2,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_asc(sort_asc(sort_des(input)))))"
  },
  {
    "input": "input : list = [-2, 3, -3, -2]\noutput : list = [1, -4, -4, -5]",
    "output": "generated_output : list = add_n(sort_des(sort_asc(take(add_n([-2, 3, -3, -2],-5),10))),3)",
    "io_inp": [
      -2,
      3,
      -3,
      -2
    ],
    "io_out": [
      1,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(sort_asc(take(add_n(input,-5),10))),3)"
  },
  {
    "input": "input : list = [2, 4, -4, 2]\noutput : list = [4, 6, -2, 4]",
    "output": "generated_output : list = sub_n([2, 4, -4, 2],-2)",
    "io_inp": [
      2,
      4,
      -4,
      2
    ],
    "io_out": [
      4,
      6,
      -2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, 1, 4]\noutput : list = [6, 2, 5]",
    "output": "generated_output : list = add_n([5, 1, 4],1)",
    "io_inp": [
      5,
      1,
      4
    ],
    "io_out": [
      6,
      2,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,1)"
  },
  {
    "input": "input : list = [0, 1, -4, 5, 2]\noutput : list = [1, 5, 6, 7, 10]",
    "output": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sort_des([0, 1, -4, 5, 2])),4),-1))",
    "io_inp": [
      0,
      1,
      -4,
      5,
      2
    ],
    "io_out": [
      1,
      5,
      6,
      7,
      10
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(add_n(sort_des(sort_des(input)),4),-1))"
  },
  {
    "input": "input : list = [-2, 4, -3, 5, -4]\noutput : list = [4, -8, 6, -10, 8]",
    "output": "generated_output : list = mul_n([-2, 4, -3, 5, -4],-2)",
    "io_inp": [
      -2,
      4,
      -3,
      5,
      -4
    ],
    "io_out": [
      4,
      -8,
      6,
      -10,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [-2, -1, 2, -2]\noutput : list = [-2]",
    "output": "generated_output : list = take([-2, -1, 2, -2],1)",
    "io_inp": [
      -2,
      -1,
      2,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [-4, 3, 4, -4]\noutput : list = [13]",
    "output": "generated_output : list = drop(add_n(add_n(sort_asc(drop([-4, 3, 4, -4],1)),4),5),2)",
    "io_inp": [
      -4,
      3,
      4,
      -4
    ],
    "io_out": [
      13
    ],
    "output_masked": "generated_output : list = drop(add_n(add_n(sort_asc(drop(input,1)),4),5),2)"
  },
  {
    "input": "input : list = [5, -2, 2]\noutput : list = [9, 6, 2]",
    "output": "generated_output : list = reverse(sort_asc(reverse(add_n(add_n([5, -2, 2],-1),5))))",
    "io_inp": [
      5,
      -2,
      2
    ],
    "io_out": [
      9,
      6,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(add_n(add_n(input,-1),5))))"
  },
  {
    "input": "input : list = [-1, 4, -2, 3, -3]\noutput : list = [-3, 3, -2, 4, -1]",
    "output": "generated_output : list = reverse([-1, 4, -2, 3, -3])",
    "io_inp": [
      -1,
      4,
      -2,
      3,
      -3
    ],
    "io_out": [
      -3,
      3,
      -2,
      4,
      -1
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 4, 5, -5, 3]\noutput : list = [-14, 1, 10, 13, 16]",
    "output": "generated_output : list = sort_asc(add_n(reverse(reverse(mul_n([0, 4, 5, -5, 3],3))),1))",
    "io_inp": [
      0,
      4,
      5,
      -5,
      3
    ],
    "io_out": [
      -14,
      1,
      10,
      13,
      16
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(reverse(mul_n(input,3))),1))"
  },
  {
    "input": "input : list = [-2, 1, -5, -5]\noutput : list = [1, 4, 7, 7]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(add_n([-2, 1, -5, -5],2),4),-1)))",
    "io_inp": [
      -2,
      1,
      -5,
      -5
    ],
    "io_out": [
      1,
      4,
      7,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(add_n(input,2),4),-1)))"
  },
  {
    "input": "input : list = [-5, -5, 0, 2, -4]\noutput : list = [-5, -5, -4, 0, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, -5, 0, 2, -4]))",
    "io_inp": [
      -5,
      -5,
      0,
      2,
      -4
    ],
    "io_out": [
      -5,
      -5,
      -4,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 1, -4]\noutput : list = [-200, -100, 50]",
    "output": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(mul_n([-2, 1, -4],-5),-2),5)))",
    "io_inp": [
      -2,
      1,
      -4
    ],
    "io_out": [
      -200,
      -100,
      50
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(mul_n(mul_n(mul_n(input,-5),-2),5)))"
  },
  {
    "input": "input : list = [1, -3, -3]\noutput : list = [-7, -7, -3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_asc([1, -3, -3])),4)",
    "io_inp": [
      1,
      -3,
      -3
    ],
    "io_out": [
      -7,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_asc(input)),4)"
  },
  {
    "input": "input : list = [-5, 5, -4]\noutput : list = [-40, 10, -35]",
    "output": "generated_output : list = mul_n(reverse(sub_n(reverse(sub_n([-5, 5, -4],2)),1)),5)",
    "io_inp": [
      -5,
      5,
      -4
    ],
    "io_out": [
      -40,
      10,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(reverse(sub_n(input,2)),1)),5)"
  },
  {
    "input": "input : list = [3, -3, -2]\noutput : list = [-4, -5, 1]",
    "output": "generated_output : list = add_n(reverse([3, -3, -2]),-2)",
    "io_inp": [
      3,
      -3,
      -2
    ],
    "io_out": [
      -4,
      -5,
      1
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [5, -4, 5, -3, 4, 2]\noutput : list = [24, 16, -24, -40, -48, -48]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sort_asc([5, -4, 5, -3, 4, 2]),1)),2),-4)",
    "io_inp": [
      5,
      -4,
      5,
      -3,
      4,
      2
    ],
    "io_out": [
      24,
      16,
      -24,
      -40,
      -48,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(add_n(sort_asc(input),1)),2),-4)"
  },
  {
    "input": "input : list = [5, 3, -5, 1]\noutput : list = [-15, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(drop([5, 3, -5, 1],2),3))))",
    "io_inp": [
      5,
      3,
      -5,
      1
    ],
    "io_out": [
      -15,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(drop(input,2),3))))"
  },
  {
    "input": "input : list = [3, 3, 5, -2, 5]\noutput : list = [5, 5, 7, 0, 7]",
    "output": "generated_output : list = sub_n([3, 3, 5, -2, 5],-2)",
    "io_inp": [
      3,
      3,
      5,
      -2,
      5
    ],
    "io_out": [
      5,
      5,
      7,
      0,
      7
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [5, 4, 0, 0]\noutput : list = [18, 16, 8, 8]",
    "output": "generated_output : list = mul_n(take(sub_n([5, 4, 0, 0],-4),9),2)",
    "io_inp": [
      5,
      4,
      0,
      0
    ],
    "io_out": [
      18,
      16,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-4),9),2)"
  },
  {
    "input": "input : list = [1, -2, 4, -2, 1, -4]\noutput : list = [4, 1, 1, -2, -2, -4]",
    "output": "generated_output : list = sort_des(sort_asc([1, -2, 4, -2, 1, -4]))",
    "io_inp": [
      1,
      -2,
      4,
      -2,
      1,
      -4
    ],
    "io_out": [
      4,
      1,
      1,
      -2,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 1, 1, -5, -4, 1]\noutput : list = [-19, -19, -19, 1, 81, 101]",
    "output": "generated_output : list = sub_n(mul_n(sort_asc(take(mul_n([0, 1, 1, -5, -4, 1],-5),20)),4),-1)",
    "io_inp": [
      0,
      1,
      1,
      -5,
      -4,
      1
    ],
    "io_out": [
      -19,
      -19,
      -19,
      1,
      81,
      101
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_asc(take(mul_n(input,-5),20)),4),-1)"
  },
  {
    "input": "input : list = [3, 4, 0, 0, -5]\noutput : list = [9, 4, 4, 1, 0]",
    "output": "generated_output : list = sort_des(add_n(mul_n(reverse(mul_n([3, 4, 0, 0, -5],-1)),1),4))",
    "io_inp": [
      3,
      4,
      0,
      0,
      -5
    ],
    "io_out": [
      9,
      4,
      4,
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(reverse(mul_n(input,-1)),1),4))"
  },
  {
    "input": "input : list = [5, -5, 0]\noutput : list = [3]",
    "output": "generated_output : list = take(sort_asc(add_n(add_n(take([5, -5, 0],1),3),-5)),19)",
    "io_inp": [
      5,
      -5,
      0
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = take(sort_asc(add_n(add_n(take(input,1),3),-5)),19)"
  },
  {
    "input": "input : list = [-4, -4, -5, -5]\noutput : list = [-4, -4, -5, -5]",
    "output": "generated_output : list = sort_des([-4, -4, -5, -5])",
    "io_inp": [
      -4,
      -4,
      -5,
      -5
    ],
    "io_out": [
      -4,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, 4, 2, 2, -5, 1]\noutput : list = [4]",
    "output": "generated_output : list = take(sort_des(reverse([-5, 4, 2, 2, -5, 1])),1)",
    "io_inp": [
      -5,
      4,
      2,
      2,
      -5,
      1
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(input)),1)"
  },
  {
    "input": "input : list = [1, 4, 5, -5]\noutput : list = [8, 2]",
    "output": "generated_output : list = mul_n(sub_n(add_n(sort_des(take([1, 4, 5, -5],2)),-1),-1),2)",
    "io_inp": [
      1,
      4,
      5,
      -5
    ],
    "io_out": [
      8,
      2
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(sort_des(take(input,2)),-1),-1),2)"
  },
  {
    "input": "input : list = [4, -1, 1, -3, -1, -5]\noutput : list = [-6, -4, -2, -2, 0, 3]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc([4, -1, 1, -3, -1, -5]))),1)",
    "io_inp": [
      4,
      -1,
      1,
      -3,
      -1,
      -5
    ],
    "io_out": [
      -6,
      -4,
      -2,
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(sort_asc(input))),1)"
  },
  {
    "input": "input : list = [-4, -2, -1, -3, -3]\noutput : list = [-20, -10, -5, -15, -15]",
    "output": "generated_output : list = mul_n([-4, -2, -1, -3, -3],5)",
    "io_inp": [
      -4,
      -2,
      -1,
      -3,
      -3
    ],
    "io_out": [
      -20,
      -10,
      -5,
      -15,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [-4, 0, 5]\noutput : list = [-2, 2, 7]",
    "output": "generated_output : list = add_n([-4, 0, 5],2)",
    "io_inp": [
      -4,
      0,
      5
    ],
    "io_out": [
      -2,
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(input,2)"
  },
  {
    "input": "input : list = [4, 5, 1]\noutput : list = [8, 32, 40]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_asc([4, 5, 1]),-2),-4)))",
    "io_inp": [
      4,
      5,
      1
    ],
    "io_out": [
      8,
      32,
      40
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_asc(input),-2),-4)))"
  },
  {
    "input": "input : list = [-5, 4, 4, -3, -1, 1]\noutput : list = [4, 4, 1, -1, -3, -5]",
    "output": "generated_output : list = reverse(take(sort_asc([-5, 4, 4, -3, -1, 1]),26))",
    "io_inp": [
      -5,
      4,
      4,
      -3,
      -1,
      1
    ],
    "io_out": [
      4,
      4,
      1,
      -1,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = reverse(take(sort_asc(input),26))"
  },
  {
    "input": "input : list = [-5, 2, 2, -5]\noutput : list = [2, 2, -5]",
    "output": "generated_output : list = sort_des(drop([-5, 2, 2, -5],1))",
    "io_inp": [
      -5,
      2,
      2,
      -5
    ],
    "io_out": [
      2,
      2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,1))"
  },
  {
    "input": "input : list = [2, 4]\noutput : list = [11, 13]",
    "output": "generated_output : list = add_n(add_n(sub_n([2, 4],1),5),5)",
    "io_inp": [
      2,
      4
    ],
    "io_out": [
      11,
      13
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(input,1),5),5)"
  },
  {
    "input": "input : list = [0, 1, 0, -2]\noutput : list = [-1, 0, 0, 2]",
    "output": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_des([0, 1, 0, -2]))),-1))",
    "io_inp": [
      0,
      1,
      0,
      -2
    ],
    "io_out": [
      -1,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_asc(sort_des(sort_des(input))),-1))"
  },
  {
    "input": "input : list = [3, 5, 2, -4, -4]\noutput : list = [2, 4, 1, -5, -5]",
    "output": "generated_output : list = add_n([3, 5, 2, -4, -4],-1)",
    "io_inp": [
      3,
      5,
      2,
      -4,
      -4
    ],
    "io_out": [
      2,
      4,
      1,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [5, -3, 1]\noutput : list = [6]",
    "output": "generated_output : list = take(add_n(take([5, -3, 1],1),1),8)",
    "io_inp": [
      5,
      -3,
      1
    ],
    "io_out": [
      6
    ],
    "output_masked": "generated_output : list = take(add_n(take(input,1),1),8)"
  },
  {
    "input": "input : list = [-3, -2, -3, 2, -3]\noutput : list = [-8, -8, -8, -7, -3]",
    "output": "generated_output : list = take(reverse(sort_des(sort_des(add_n([-3, -2, -3, 2, -3],-5)))),13)",
    "io_inp": [
      -3,
      -2,
      -3,
      2,
      -3
    ],
    "io_out": [
      -8,
      -8,
      -8,
      -7,
      -3
    ],
    "output_masked": "generated_output : list = take(reverse(sort_des(sort_des(add_n(input,-5)))),13)"
  },
  {
    "input": "input : list = [3, 5, -2, 1]\noutput : list = [-96, -144, 24, -48]",
    "output": "generated_output : list = mul_n(add_n(add_n(mul_n(mul_n([3, 5, -2, 1],-4),-2),4),4),-3)",
    "io_inp": [
      3,
      5,
      -2,
      1
    ],
    "io_out": [
      -96,
      -144,
      24,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(mul_n(mul_n(input,-4),-2),4),4),-3)"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = sort_des([0, 3])",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-3, 3, 2]\noutput : list = [-35, 25, 37]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sort_asc([-3, 3, 2]),4),1),3),-1)",
    "io_inp": [
      -3,
      3,
      2
    ],
    "io_out": [
      -35,
      25,
      37
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(mul_n(sort_asc(input),4),1),3),-1)"
  },
  {
    "input": "input : list = [4, -3, 3, -2, 1]\noutput : list = [-5, -4, -1, 1]",
    "output": "generated_output : list = add_n(sort_asc(take(sort_asc(drop([4, -3, 3, -2, 1],1)),28)),-2)",
    "io_inp": [
      4,
      -3,
      3,
      -2,
      1
    ],
    "io_out": [
      -5,
      -4,
      -1,
      1
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(take(sort_asc(drop(input,1)),28)),-2)"
  },
  {
    "input": "input : list = [-5, 5]\noutput : list = [-55, 45]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(mul_n([-5, 5],-2),5),5),7))",
    "io_inp": [
      -5,
      5
    ],
    "io_out": [
      -55,
      45
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(mul_n(input,-2),5),5),7))"
  },
  {
    "input": "input : list = [1, 4, 2, 0, -4]\noutput : list = [0, 3, 1, -1, -5]",
    "output": "generated_output : list = sub_n([1, 4, 2, 0, -4],1)",
    "io_inp": [
      1,
      4,
      2,
      0,
      -4
    ],
    "io_out": [
      0,
      3,
      1,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [-5, -4, -5, -2, -2, 3]\noutput : list = [20, -5, -5, -15, -20, -20]",
    "output": "generated_output : list = reverse(reverse(sort_des(add_n(mul_n([-5, -4, -5, -2, -2, 3],5),5))))",
    "io_inp": [
      -5,
      -4,
      -5,
      -2,
      -2,
      3
    ],
    "io_out": [
      20,
      -5,
      -5,
      -15,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(add_n(mul_n(input,5),5))))"
  },
  {
    "input": "input : list = [0, 5, 4, -1, 2, -1]\noutput : list = [-10, 15, 10]",
    "output": "generated_output : list = mul_n(sub_n(take([0, 5, 4, -1, 2, -1],3),2),5)",
    "io_inp": [
      0,
      5,
      4,
      -1,
      2,
      -1
    ],
    "io_out": [
      -10,
      15,
      10
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(input,3),2),5)"
  },
  {
    "input": "input : list = [2, -4, 3, 0]\noutput : list = [5, 8, 1, 7]",
    "output": "generated_output : list = sub_n(reverse([2, -4, 3, 0]),-5)",
    "io_inp": [
      2,
      -4,
      3,
      0
    ],
    "io_out": [
      5,
      8,
      1,
      7
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-5)"
  },
  {
    "input": "input : list = [5, 3, -3, -2]\noutput : list = [-3, -2, 3, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des([5, 3, -3, -2]))))",
    "io_inp": [
      5,
      3,
      -3,
      -2
    ],
    "io_out": [
      -3,
      -2,
      3,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [-5, -1]\noutput : list = [-100, -20]",
    "output": "generated_output : list = mul_n(mul_n([-5, -1],5),4)",
    "io_inp": [
      -5,
      -1
    ],
    "io_out": [
      -100,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,5),4)"
  },
  {
    "input": "input : list = [2, -1, 5, -4]\noutput : list = [-4, 5, -1, 2]",
    "output": "generated_output : list = reverse([2, -1, 5, -4])",
    "io_inp": [
      2,
      -1,
      5,
      -4
    ],
    "io_out": [
      -4,
      5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, 0, -4, -2]\noutput : list = [-4, -3, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse([-3, 0, -4, -2])))",
    "io_inp": [
      -3,
      0,
      -4,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-2, -5, 4, 1, 2, 1]\noutput : list = [4, 1, 10, 7, 8, 7]",
    "output": "generated_output : list = add_n(sub_n([-2, -5, 4, 1, 2, 1],-4),2)",
    "io_inp": [
      -2,
      -5,
      4,
      1,
      2,
      1
    ],
    "io_out": [
      4,
      1,
      10,
      7,
      8,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(input,-4),2)"
  },
  {
    "input": "input : list = [3, 3, 5]\noutput : list = [2, 2, 4]",
    "output": "generated_output : list = sub_n([3, 3, 5],1)",
    "io_inp": [
      3,
      3,
      5
    ],
    "io_out": [
      2,
      2,
      4
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [3, 2, -5, -1, -3, 5]\noutput : list = [-3, -1, 1, 4, 7]",
    "output": "generated_output : list = sort_asc(add_n(reverse(sort_des(drop([3, 2, -5, -1, -3, 5],1))),2))",
    "io_inp": [
      3,
      2,
      -5,
      -1,
      -3,
      5
    ],
    "io_out": [
      -3,
      -1,
      1,
      4,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(sort_des(drop(input,1))),2))"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [8]",
    "output": "generated_output : list = sub_n(mul_n(drop(sort_asc([-4, -2]),1),-3),-2)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      8
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(drop(sort_asc(input),1),-3),-2)"
  },
  {
    "input": "input : list = [-3, 1, -5, 4, 2, 2]\noutput : list = [8, 6, 6, 5, 1, -1]",
    "output": "generated_output : list = add_n(sort_des([-3, 1, -5, 4, 2, 2]),4)",
    "io_inp": [
      -3,
      1,
      -5,
      4,
      2,
      2
    ],
    "io_out": [
      8,
      6,
      6,
      5,
      1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [-5, -4, -1]\noutput : list = [-10, -9, -6]",
    "output": "generated_output : list = sub_n([-5, -4, -1],5)",
    "io_inp": [
      -5,
      -4,
      -1
    ],
    "io_out": [
      -10,
      -9,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, -2]\noutput : list = [-1, -4]",
    "output": "generated_output : list = reverse(add_n(reverse(sort_des(mul_n([1, -2],1))),-2))",
    "io_inp": [
      1,
      -2
    ],
    "io_out": [
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(sort_des(mul_n(input,1))),-2))"
  },
  {
    "input": "input : list = [2, -1, -4, -3, 4]\noutput : list = [-7, -3, 5, 17, 25]",
    "output": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sub_n([2, -1, -4, -3, 4],-1),4),-5)))",
    "io_inp": [
      2,
      -1,
      -4,
      -3,
      4
    ],
    "io_out": [
      -7,
      -3,
      5,
      17,
      25
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sub_n(mul_n(sub_n(input,-1),4),-5)))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [-10, -2]",
    "output": "generated_output : list = mul_n(sort_des([1, 5]),-2)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      -10,
      -2
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(input),-2)"
  },
  {
    "input": "input : list = [0, -2, 3, -1, 2, 5]\noutput : list = [3, 0, -3]",
    "output": "generated_output : list = sort_des(add_n(take(take(drop([0, -2, 3, -1, 2, 5],3),9),21),-2))",
    "io_inp": [
      0,
      -2,
      3,
      -1,
      2,
      5
    ],
    "io_out": [
      3,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(drop(input,3),9),21),-2))"
  },
  {
    "input": "input : list = [-5, 0, -5, -5, 0]\noutput : list = [4, 9, 4, 4, 9]",
    "output": "generated_output : list = sub_n(sub_n(add_n([-5, 0, -5, -5, 0],5),1),-5)",
    "io_inp": [
      -5,
      0,
      -5,
      -5,
      0
    ],
    "io_out": [
      4,
      9,
      4,
      4,
      9
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,5),1),-5)"
  },
  {
    "input": "input : list = [4, 4, 1]\noutput : list = [-16, -16, -4]",
    "output": "generated_output : list = mul_n([4, 4, 1],-4)",
    "io_inp": [
      4,
      4,
      1
    ],
    "io_out": [
      -16,
      -16,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [-3, 4, -2, -3]\noutput : list = [14, 14]",
    "output": "generated_output : list = drop(take(sort_asc(sub_n(mul_n([-3, 4, -2, -3],-4),-2)),14),2)",
    "io_inp": [
      -3,
      4,
      -2,
      -3
    ],
    "io_out": [
      14,
      14
    ],
    "output_masked": "generated_output : list = drop(take(sort_asc(sub_n(mul_n(input,-4),-2)),14),2)"
  },
  {
    "input": "input : list = [-3, -1, -2, -4]\noutput : list = [-1, -2, -3, -4]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sub_n([-3, -1, -2, -4],2),2))))",
    "io_inp": [
      -3,
      -1,
      -2,
      -4
    ],
    "io_out": [
      -1,
      -2,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(add_n(sub_n(input,2),2))))"
  },
  {
    "input": "input : list = [1, -2, -2, 3]\noutput : list = [-2]",
    "output": "generated_output : list = mul_n(take(mul_n(add_n(take([1, -2, -2, 3],1),-2),1),29),2)",
    "io_inp": [
      1,
      -2,
      -2,
      3
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = mul_n(take(mul_n(add_n(take(input,1),-2),1),29),2)"
  },
  {
    "input": "input : list = [-3, -5, 5]\noutput : list = [-3]",
    "output": "generated_output : list = take(sort_des(take(sort_des(take([-3, -5, 5],1)),13)),18)",
    "io_inp": [
      -3,
      -5,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(take(sort_des(take(input,1)),13)),18)"
  },
  {
    "input": "input : list = [5, 2, 5, 2]\noutput : list = [2, 2, 5, 5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(mul_n([5, 2, 5, 2],1)),15))",
    "io_inp": [
      5,
      2,
      5,
      2
    ],
    "io_out": [
      2,
      2,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(mul_n(input,1)),15))"
  },
  {
    "input": "input : list = [-1, 2, 4, 0, 0, -5]\noutput : list = [-5, 0, 0]",
    "output": "generated_output : list = take(take(reverse(take(drop([-1, 2, 4, 0, 0, -5],3),11)),36),18)",
    "io_inp": [
      -1,
      2,
      4,
      0,
      0,
      -5
    ],
    "io_out": [
      -5,
      0,
      0
    ],
    "output_masked": "generated_output : list = take(take(reverse(take(drop(input,3),11)),36),18)"
  },
  {
    "input": "input : list = [-4, -4, 1, 0, -3, -3]\noutput : list = [-80]",
    "output": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(take([-4, -4, 1, 0, -3, -3],1),4),5)))",
    "io_inp": [
      -4,
      -4,
      1,
      0,
      -3,
      -3
    ],
    "io_out": [
      -80
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(mul_n(mul_n(take(input,1),4),5)))"
  },
  {
    "input": "input : list = [0, 5, 5, 5]\noutput : list = [-5]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(take([0, 5, 5, 5],1)),1),-5))",
    "io_inp": [
      0,
      5,
      5,
      5
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(take(input,1)),1),-5))"
  },
  {
    "input": "input : list = [3, -1, -2, 2, 3]\noutput : list = [-2, -1, 2, 3, 3]",
    "output": "generated_output : list = sort_asc([3, -1, -2, 2, 3])",
    "io_inp": [
      3,
      -1,
      -2,
      2,
      3
    ],
    "io_out": [
      -2,
      -1,
      2,
      3,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 4, -2, 3]\noutput : list = [9, 13, 14, 15]",
    "output": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_asc([2, 4, -2, 3])),5),2),4)",
    "io_inp": [
      2,
      4,
      -2,
      3
    ],
    "io_out": [
      9,
      13,
      14,
      15
    ],
    "output_masked": "generated_output : list = add_n(add_n(add_n(sort_asc(sort_asc(input)),5),2),4)"
  },
  {
    "input": "input : list = [-5, -1, -5]\noutput : list = [-25, -5, -25]",
    "output": "generated_output : list = reverse(mul_n(reverse([-5, -1, -5]),5))",
    "io_inp": [
      -5,
      -1,
      -5
    ],
    "io_out": [
      -25,
      -5,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [5, 3, 1]\noutput : list = [4, 2, 0]",
    "output": "generated_output : list = take(take(add_n(take(add_n([5, 3, 1],-5),17),4),24),18)",
    "io_inp": [
      5,
      3,
      1
    ],
    "io_out": [
      4,
      2,
      0
    ],
    "output_masked": "generated_output : list = take(take(add_n(take(add_n(input,-5),17),4),24),18)"
  },
  {
    "input": "input : list = [-4, -5, -2, 5]\noutput : list = [-5, 2]",
    "output": "generated_output : list = sort_asc(mul_n(drop([-4, -5, -2, 5],2),-1))",
    "io_inp": [
      -4,
      -5,
      -2,
      5
    ],
    "io_out": [
      -5,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(drop(input,2),-1))"
  },
  {
    "input": "input : list = [5, -3, 2, -4, -2]\noutput : list = [5]",
    "output": "generated_output : list = take(take(sort_asc(sort_des(take([5, -3, 2, -4, -2],1))),18),36)",
    "io_inp": [
      5,
      -3,
      2,
      -4,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(sort_des(take(input,1))),18),36)"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-20, 0]",
    "output": "generated_output : list = mul_n([5, 0],-4)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -20,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,-4)"
  },
  {
    "input": "input : list = [5, -3, -1, 1, 2, -5]\noutput : list = [3, 1, -1, 7]",
    "output": "generated_output : list = drop(reverse(take(sub_n(add_n([5, -3, -1, 1, 2, -5],-2),-4),9)),2)",
    "io_inp": [
      5,
      -3,
      -1,
      1,
      2,
      -5
    ],
    "io_out": [
      3,
      1,
      -1,
      7
    ],
    "output_masked": "generated_output : list = drop(reverse(take(sub_n(add_n(input,-2),-4),9)),2)"
  },
  {
    "input": "input : list = [-5, 2, 0, 3, 5, 0]\noutput : list = [-40, -5, -15, 0, 10, -15]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-5, 2, 0, 3, 5, 0],-1),3),-5)",
    "io_inp": [
      -5,
      2,
      0,
      3,
      5,
      0
    ],
    "io_out": [
      -40,
      -5,
      -15,
      0,
      10,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,-1),3),-5)"
  },
  {
    "input": "input : list = [5, 5, -1]\noutput : list = [10, 10, 4]",
    "output": "generated_output : list = sort_des(sub_n([5, 5, -1],-5))",
    "io_inp": [
      5,
      5,
      -1
    ],
    "io_out": [
      10,
      10,
      4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-5))"
  },
  {
    "input": "input : list = [0, -5]\noutput : list = [2, 7]",
    "output": "generated_output : list = add_n(mul_n(sub_n(take(sub_n([0, -5],1),6),-1),-1),2)",
    "io_inp": [
      0,
      -5
    ],
    "io_out": [
      2,
      7
    ],
    "output_masked": "generated_output : list = add_n(mul_n(sub_n(take(sub_n(input,1),6),-1),-1),2)"
  },
  {
    "input": "input : list = [-2, 3, 4, 0, -1, -3]\noutput : list = [4, 3, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(take([-2, 3, 4, 0, -1, -3],3)))))",
    "io_inp": [
      -2,
      3,
      4,
      0,
      -1,
      -3
    ],
    "io_out": [
      4,
      3,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_asc(sort_des(take(input,3)))))"
  },
  {
    "input": "input : list = [0, -2, 0, 4, 3, 1]\noutput : list = [4, 6, 7, 3, 1, 3]",
    "output": "generated_output : list = sub_n(reverse([0, -2, 0, 4, 3, 1]),-3)",
    "io_inp": [
      0,
      -2,
      0,
      4,
      3,
      1
    ],
    "io_out": [
      4,
      6,
      7,
      3,
      1,
      3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [4, -3, 0, -1, -3]\noutput : list = [4]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(drop(sort_asc([4, -3, 0, -1, -3]),4))),1)",
    "io_inp": [
      4,
      -3,
      0,
      -1,
      -3
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(drop(sort_asc(input),4))),1)"
  },
  {
    "input": "input : list = [0, -4, 4, -4, 0]\noutput : list = [-19, -7, -7, 5, 5]",
    "output": "generated_output : list = sort_asc(sort_des(add_n(sub_n(mul_n([0, -4, 4, -4, 0],-3),4),-3)))",
    "io_inp": [
      0,
      -4,
      4,
      -4,
      0
    ],
    "io_out": [
      -19,
      -7,
      -7,
      5,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(add_n(sub_n(mul_n(input,-3),4),-3)))"
  },
  {
    "input": "input : list = [2, -1, 4, 2, 4]\noutput : list = [-8, -8, -4, 2]",
    "output": "generated_output : list = add_n(sort_asc(drop(mul_n(add_n([2, -1, 4, 2, 4],2),-2),1)),4)",
    "io_inp": [
      2,
      -1,
      4,
      2,
      4
    ],
    "io_out": [
      -8,
      -8,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(drop(mul_n(add_n(input,2),-2),1)),4)"
  },
  {
    "input": "input : list = [-3, -3, -2]\noutput : list = [6, 8, 8]",
    "output": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(sort_asc([-3, -3, -2])),1)),-2)",
    "io_inp": [
      -3,
      -3,
      -2
    ],
    "io_out": [
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sub_n(sort_asc(sort_asc(input)),1)),-2)"
  },
  {
    "input": "input : list = [2, 1, 4, 2]\noutput : list = [0, 2, -1, 0]",
    "output": "generated_output : list = take(reverse(sub_n([2, 1, 4, 2],2)),25)",
    "io_inp": [
      2,
      1,
      4,
      2
    ],
    "io_out": [
      0,
      2,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(input,2)),25)"
  },
  {
    "input": "input : list = [-2, 1, 2, -2]\noutput : list = [13, 13, 1, -3]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n([-2, 1, 2, -2],-4))),-5)",
    "io_inp": [
      -2,
      1,
      2,
      -2
    ],
    "io_out": [
      13,
      13,
      1,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(input,-4))),-5)"
  },
  {
    "input": "input : list = [-4, 3, 3, -2, 3, 0]\noutput : list = [3, 3, 3, 0, -2, -4]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(sort_asc([-4, 3, 3, -2, 3, 0])))))",
    "io_inp": [
      -4,
      3,
      3,
      -2,
      3,
      0
    ],
    "io_out": [
      3,
      3,
      3,
      0,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-5, -4, 5, -5]\noutput : list = [-13, -15]",
    "output": "generated_output : list = reverse(add_n(take(take(mul_n([-5, -4, 5, -5],2),2),14),-5))",
    "io_inp": [
      -5,
      -4,
      5,
      -5
    ],
    "io_out": [
      -13,
      -15
    ],
    "output_masked": "generated_output : list = reverse(add_n(take(take(mul_n(input,2),2),14),-5))"
  },
  {
    "input": "input : list = [3, 4, -5, 1, 3, -5]\noutput : list = [-22, -22, 8, 18, 18, 23]",
    "output": "generated_output : list = sort_asc(add_n(sort_des(take(mul_n([3, 4, -5, 1, 3, -5],5),20)),3))",
    "io_inp": [
      3,
      4,
      -5,
      1,
      3,
      -5
    ],
    "io_out": [
      -22,
      -22,
      8,
      18,
      18,
      23
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_des(take(mul_n(input,5),20)),3))"
  },
  {
    "input": "input : list = [3, -2, 4]\noutput : list = [3]",
    "output": "generated_output : list = sort_des(drop(reverse(sub_n(sort_des([3, -2, 4]),1)),2))",
    "io_inp": [
      3,
      -2,
      4
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_des(drop(reverse(sub_n(sort_des(input),1)),2))"
  },
  {
    "input": "input : list = [-4, 4, -3, 1]\noutput : list = [4, 1, -3, -4]",
    "output": "generated_output : list = sort_des([-4, 4, -3, 1])",
    "io_inp": [
      -4,
      4,
      -3,
      1
    ],
    "io_out": [
      4,
      1,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 4, -2, 4, -3]\noutput : list = [15, 12, 9, -6, -6]",
    "output": "generated_output : list = sub_n(reverse(sort_asc(mul_n(add_n([-1, 4, -2, 4, -3],-1),-3))),-3)",
    "io_inp": [
      -1,
      4,
      -2,
      4,
      -3
    ],
    "io_out": [
      15,
      12,
      9,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_asc(mul_n(add_n(input,-1),-3))),-3)"
  },
  {
    "input": "input : list = [-3, -1, -2, 4, 4]\noutput : list = [0, 0, -5, -6, -7]",
    "output": "generated_output : list = sort_des(sub_n(sort_des([-3, -1, -2, 4, 4]),4))",
    "io_inp": [
      -3,
      -1,
      -2,
      4,
      4
    ],
    "io_out": [
      0,
      0,
      -5,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(input),4))"
  },
  {
    "input": "input : list = [-2, -3, 0, -1]\noutput : list = [16, 12]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(drop([-2, -3, 0, -1],2)),3),-4))",
    "io_inp": [
      -2,
      -3,
      0,
      -1
    ],
    "io_out": [
      16,
      12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(drop(input,2)),3),-4))"
  },
  {
    "input": "input : list = [-3, -2, 2, -3, 3]\noutput : list = [3, -3, 2, -2, -3]",
    "output": "generated_output : list = reverse([-3, -2, 2, -3, 3])",
    "io_inp": [
      -3,
      -2,
      2,
      -3,
      3
    ],
    "io_out": [
      3,
      -3,
      2,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [5, -2, 2, -4, 2, -5]\noutput : list = [24, 19, 9, -11, -11, -26]",
    "output": "generated_output : list = reverse(sort_asc(add_n(mul_n([5, -2, 2, -4, 2, -5],-5),-1)))",
    "io_inp": [
      5,
      -2,
      2,
      -4,
      2,
      -5
    ],
    "io_out": [
      24,
      19,
      9,
      -11,
      -11,
      -26
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(mul_n(input,-5),-1)))"
  },
  {
    "input": "input : list = [5, 4, 0, -1]\noutput : list = [2, 3, 7, 8]",
    "output": "generated_output : list = sort_asc(sub_n(sort_des(reverse([5, 4, 0, -1])),-3))",
    "io_inp": [
      5,
      4,
      0,
      -1
    ],
    "io_out": [
      2,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_des(reverse(input)),-3))"
  },
  {
    "input": "input : list = [-3, 5, -3, -3]\noutput : list = [49, -47, -47, -47]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sub_n(mul_n([-3, 5, -3, -3],3),4),4)),5)",
    "io_inp": [
      -3,
      5,
      -3,
      -3
    ],
    "io_out": [
      49,
      -47,
      -47,
      -47
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sub_n(mul_n(input,3),4),4)),5)"
  },
  {
    "input": "input : list = [-2, 4, -1, 5, -1]\noutput : list = [24, 21, 6, 6, 3]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(add_n([-2, 4, -1, 5, -1],3),3),10)))",
    "io_inp": [
      -2,
      4,
      -1,
      5,
      -1
    ],
    "io_out": [
      24,
      21,
      6,
      6,
      3
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(add_n(input,3),3),10)))"
  },
  {
    "input": "input : list = [0, 1, 1, -5, 4]\noutput : list = [2, 3, 3, -3, 6]",
    "output": "generated_output : list = sub_n([0, 1, 1, -5, 4],-2)",
    "io_inp": [
      0,
      1,
      1,
      -5,
      4
    ],
    "io_out": [
      2,
      3,
      3,
      -3,
      6
    ],
    "output_masked": "generated_output : list = sub_n(input,-2)"
  },
  {
    "input": "input : list = [2, -1, -3, 1, 5]\noutput : list = [-8, 4, 12, -4, -20]",
    "output": "generated_output : list = mul_n(mul_n([2, -1, -3, 1, 5],2),-2)",
    "io_inp": [
      2,
      -1,
      -3,
      1,
      5
    ],
    "io_out": [
      -8,
      4,
      12,
      -4,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,2),-2)"
  },
  {
    "input": "input : list = [5, 4, 0]\noutput : list = [-2, -18, -22]",
    "output": "generated_output : list = sub_n(reverse(mul_n(add_n(mul_n([5, 4, 0],4),-3),-1)),5)",
    "io_inp": [
      5,
      4,
      0
    ],
    "io_out": [
      -2,
      -18,
      -22
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(add_n(mul_n(input,4),-3),-1)),5)"
  },
  {
    "input": "input : list = [0, -1, 4, 5, -3, 0]\noutput : list = [5, 4, 0, -1, -3]",
    "output": "generated_output : list = sort_des(sort_des(reverse(take(drop([0, -1, 4, 5, -3, 0],1),11))))",
    "io_inp": [
      0,
      -1,
      4,
      5,
      -3,
      0
    ],
    "io_out": [
      5,
      4,
      0,
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(reverse(take(drop(input,1),11))))"
  },
  {
    "input": "input : list = [0, 4, 3, -2, -4, -4]\noutput : list = [0, -8, -6, 4, 8, 8]",
    "output": "generated_output : list = mul_n([0, 4, 3, -2, -4, -4],-2)",
    "io_inp": [
      0,
      4,
      3,
      -2,
      -4,
      -4
    ],
    "io_out": [
      0,
      -8,
      -6,
      4,
      8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [2, 1, 1, 1, -3]\noutput : list = [-3, 1]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(drop([2, 1, 1, 1, -3],3)))))",
    "io_inp": [
      2,
      1,
      1,
      1,
      -3
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(sort_asc(drop(input,3)))))"
  },
  {
    "input": "input : list = [5, -1]\noutput : list = [-1, -25]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(reverse([5, -1]),-4)),9),-5)",
    "io_inp": [
      5,
      -1
    ],
    "io_out": [
      -1,
      -25
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(reverse(input),-4)),9),-5)"
  },
  {
    "input": "input : list = [-4, 3, 5, 4, 2]\noutput : list = [15, 12, 9, 6, -12]",
    "output": "generated_output : list = sort_des(take(mul_n(reverse([-4, 3, 5, 4, 2]),3),19))",
    "io_inp": [
      -4,
      3,
      5,
      4,
      2
    ],
    "io_out": [
      15,
      12,
      9,
      6,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(reverse(input),3),19))"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [-6, -6]",
    "output": "generated_output : list = take(add_n([-1, -1],-5),6)",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      -6,
      -6
    ],
    "output_masked": "generated_output : list = take(add_n(input,-5),6)"
  },
  {
    "input": "input : list = [3, 2, 3, -3]\noutput : list = [5, 5, 10, 35]",
    "output": "generated_output : list = reverse(reverse(sort_asc(mul_n(add_n([3, 2, 3, -3],-4),-5))))",
    "io_inp": [
      3,
      2,
      3,
      -3
    ],
    "io_out": [
      5,
      5,
      10,
      35
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(mul_n(add_n(input,-4),-5))))"
  },
  {
    "input": "input : list = [-3, 3, 2, -1]\noutput : list = [6, 4, -2, -6]",
    "output": "generated_output : list = take(sort_des(reverse(mul_n([-3, 3, 2, -1],2))),8)",
    "io_inp": [
      -3,
      3,
      2,
      -1
    ],
    "io_out": [
      6,
      4,
      -2,
      -6
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(mul_n(input,2))),8)"
  },
  {
    "input": "input : list = [-5, -1, 3]\noutput : list = [-14, -10, -6]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(sort_asc([-5, -1, 3]))),5),4)",
    "io_inp": [
      -5,
      -1,
      3
    ],
    "io_out": [
      -14,
      -10,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(sort_asc(input))),5),4)"
  },
  {
    "input": "input : list = [4, -4, -3, 5, 0]\noutput : list = [3, -4, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(take([4, -4, -3, 5, 0],3),-1))))",
    "io_inp": [
      4,
      -4,
      -3,
      5,
      0
    ],
    "io_out": [
      3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(take(input,3),-1))))"
  },
  {
    "input": "input : list = [2, 3, 3]\noutput : list = [-5, -5, -3]",
    "output": "generated_output : list = reverse(sort_des(sub_n(mul_n(add_n([2, 3, 3],-3),-2),5)))",
    "io_inp": [
      2,
      3,
      3
    ],
    "io_out": [
      -5,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(mul_n(add_n(input,-3),-2),5)))"
  },
  {
    "input": "input : list = [-2, 0, -2, 3, -2]\noutput : list = [3]",
    "output": "generated_output : list = reverse(reverse(sort_des(drop(sort_asc([-2, 0, -2, 3, -2]),4))))",
    "io_inp": [
      -2,
      0,
      -2,
      3,
      -2
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_des(drop(sort_asc(input),4))))"
  },
  {
    "input": "input : list = [2, 3]\noutput : list = [16, 14]",
    "output": "generated_output : list = reverse(mul_n(add_n([2, 3],5),2))",
    "io_inp": [
      2,
      3
    ],
    "io_out": [
      16,
      14
    ],
    "output_masked": "generated_output : list = reverse(mul_n(add_n(input,5),2))"
  },
  {
    "input": "input : list = [1, 4, -5, -1, -3]\noutput : list = [13, 10, 19, 15, 17]",
    "output": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sub_n([1, 4, -5, -1, -3],3),-1),-3),-5),-3)",
    "io_inp": [
      1,
      4,
      -5,
      -1,
      -3
    ],
    "io_out": [
      13,
      10,
      19,
      15,
      17
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sub_n(mul_n(sub_n(input,3),-1),-3),-5),-3)"
  },
  {
    "input": "input : list = [-2, -5, -2, 0, -2]\noutput : list = [-12, -24, -12, 6, -12]",
    "output": "generated_output : list = mul_n(mul_n(reverse(sub_n([-2, -5, -2, 0, -2],-4)),3),-2)",
    "io_inp": [
      -2,
      -5,
      -2,
      0,
      -2
    ],
    "io_out": [
      -12,
      -24,
      -12,
      6,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(sub_n(input,-4)),3),-2)"
  },
  {
    "input": "input : list = [5, 4, -3, -4, 3, -2]\noutput : list = [-4, -3, -2, 3, 4, 5]",
    "output": "generated_output : list = take(sort_asc(sort_asc([5, 4, -3, -4, 3, -2])),27)",
    "io_inp": [
      5,
      4,
      -3,
      -4,
      3,
      -2
    ],
    "io_out": [
      -4,
      -3,
      -2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(input)),27)"
  },
  {
    "input": "input : list = [1, 4, 0, -1, 2, 5]\noutput : list = [-1, 0, 2, 3, 4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(sort_des([1, 4, 0, -1, 2, 5])),-1),-4))",
    "io_inp": [
      1,
      4,
      0,
      -1,
      2,
      5
    ],
    "io_out": [
      -1,
      0,
      2,
      3,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(sort_asc(sort_des(input)),-1),-4))"
  },
  {
    "input": "input : list = [-4, 5, 1]\noutput : list = [-9]",
    "output": "generated_output : list = add_n(reverse(sort_asc(add_n(take([-4, 5, 1],1),-2))),-3)",
    "io_inp": [
      -4,
      5,
      1
    ],
    "io_out": [
      -9
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(add_n(take(input,1),-2))),-3)"
  },
  {
    "input": "input : list = [-4, -1, -5]\noutput : list = [-1, -5]",
    "output": "generated_output : list = sort_des(take(drop([-4, -1, -5],1),11))",
    "io_inp": [
      -4,
      -1,
      -5
    ],
    "io_out": [
      -1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(drop(input,1),11))"
  },
  {
    "input": "input : list = [5, 5, 4, -2]\noutput : list = [-4, 8, 10]",
    "output": "generated_output : list = reverse(take(mul_n(sort_des(drop([5, 5, 4, -2],1)),2),15))",
    "io_inp": [
      5,
      5,
      4,
      -2
    ],
    "io_out": [
      -4,
      8,
      10
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_des(drop(input,1)),2),15))"
  },
  {
    "input": "input : list = [5, -1, 1, -3, 5]\noutput : list = [0, -6, -4, -8, 0]",
    "output": "generated_output : list = add_n([5, -1, 1, -3, 5],-5)",
    "io_inp": [
      5,
      -1,
      1,
      -3,
      5
    ],
    "io_out": [
      0,
      -6,
      -4,
      -8,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-2, -5, 0, -3, -5]\noutput : list = [-1, -1, 1, 2, 4]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sub_n(sort_asc([-2, -5, 0, -3, -5]),-4),-3),1),-2)",
    "io_inp": [
      -2,
      -5,
      0,
      -3,
      -5
    ],
    "io_out": [
      -1,
      -1,
      1,
      2,
      4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sub_n(sort_asc(input),-4),-3),1),-2)"
  },
  {
    "input": "input : list = [2, 4, 3, 2, 2, -2]\noutput : list = [-2, 2]",
    "output": "generated_output : list = take(sort_asc(sort_des(sort_asc(drop([2, 4, 3, 2, 2, -2],4)))),22)",
    "io_inp": [
      2,
      4,
      3,
      2,
      2,
      -2
    ],
    "io_out": [
      -2,
      2
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sort_asc(drop(input,4)))),22)"
  },
  {
    "input": "input : list = [-2, -1, -5, 0, -3, -1]\noutput : list = [-5, -3, -1, -1, 0]",
    "output": "generated_output : list = sort_asc(drop([-2, -1, -5, 0, -3, -1],1))",
    "io_inp": [
      -2,
      -1,
      -5,
      0,
      -3,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [1, -4, -3, -1]\noutput : list = [1, 3, 5, 6]",
    "output": "generated_output : list = sub_n(reverse(mul_n(sort_asc(add_n([1, -4, -3, -1],2)),-1)),-4)",
    "io_inp": [
      1,
      -4,
      -3,
      -1
    ],
    "io_out": [
      1,
      3,
      5,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(mul_n(sort_asc(add_n(input,2)),-1)),-4)"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [-4, 20, -8]",
    "output": "generated_output : list = mul_n([-1, 5, -2],4)",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      -4,
      20,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,4)"
  },
  {
    "input": "input : list = [-2, -4, 3, 0]\noutput : list = [11, 17, -4, 5]",
    "output": "generated_output : list = mul_n(sub_n(mul_n([-2, -4, 3, 0],3),5),-1)",
    "io_inp": [
      -2,
      -4,
      3,
      0
    ],
    "io_out": [
      11,
      17,
      -4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(input,3),5),-1)"
  },
  {
    "input": "input : list = [0, 5, -1, 1, 2, 2]\noutput : list = [3, 0, 0, -1, -2, -3]",
    "output": "generated_output : list = add_n(sort_des(reverse([0, 5, -1, 1, 2, 2])),-2)",
    "io_inp": [
      0,
      5,
      -1,
      1,
      2,
      2
    ],
    "io_out": [
      3,
      0,
      0,
      -1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(input)),-2)"
  },
  {
    "input": "input : list = [5, 2, -3]\noutput : list = [44, 24]",
    "output": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop([5, 2, -3],1),-5)),-4),4)",
    "io_inp": [
      5,
      2,
      -3
    ],
    "io_out": [
      44,
      24
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sort_des(sub_n(drop(input,1),-5)),-4),4)"
  },
  {
    "input": "input : list = [4, 1, -1, -5, 4]\noutput : list = [-5, -1, 1, 4, 4]",
    "output": "generated_output : list = take(take(sort_asc(reverse(mul_n([4, 1, -1, -5, 4],1))),9),42)",
    "io_inp": [
      4,
      1,
      -1,
      -5,
      4
    ],
    "io_out": [
      -5,
      -1,
      1,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(reverse(mul_n(input,1))),9),42)"
  },
  {
    "input": "input : list = [-4, 0, -4, -5, -3]\noutput : list = [-8, -4, -8]",
    "output": "generated_output : list = add_n(add_n(take([-4, 0, -4, -5, -3],3),1),-5)",
    "io_inp": [
      -4,
      0,
      -4,
      -5,
      -3
    ],
    "io_out": [
      -8,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(input,3),1),-5)"
  },
  {
    "input": "input : list = [1, -3, 1, -1, -5, 5]\noutput : list = [-36, -12, -12, 0, 12, 24]",
    "output": "generated_output : list = mul_n(mul_n(take(sub_n(sort_des([1, -3, 1, -1, -5, 5]),-1),22),3),-2)",
    "io_inp": [
      1,
      -3,
      1,
      -1,
      -5,
      5
    ],
    "io_out": [
      -36,
      -12,
      -12,
      0,
      12,
      24
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(sub_n(sort_des(input),-1),22),3),-2)"
  },
  {
    "input": "input : list = [4, 1, -2, 2, -5]\noutput : list = [12, 6, 3, -6, -15]",
    "output": "generated_output : list = sort_des(reverse(take(mul_n(sort_des([4, 1, -2, 2, -5]),3),28)))",
    "io_inp": [
      4,
      1,
      -2,
      2,
      -5
    ],
    "io_out": [
      12,
      6,
      3,
      -6,
      -15
    ],
    "output_masked": "generated_output : list = sort_des(reverse(take(mul_n(sort_des(input),3),28)))"
  },
  {
    "input": "input : list = [4, -3, 2, 3]\noutput : list = [8, 7, 2, 9]",
    "output": "generated_output : list = take(reverse(add_n(reverse(reverse([4, -3, 2, 3])),5)),11)",
    "io_inp": [
      4,
      -3,
      2,
      3
    ],
    "io_out": [
      8,
      7,
      2,
      9
    ],
    "output_masked": "generated_output : list = take(reverse(add_n(reverse(reverse(input)),5)),11)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-2, 5]",
    "output": "generated_output : list = sub_n(sub_n(reverse(reverse(sort_asc([3, -4]))),-3),1)",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -2,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(reverse(sort_asc(input))),-3),1)"
  },
  {
    "input": "input : list = [5, 5, 1, 1]\noutput : list = [5]",
    "output": "generated_output : list = sort_des(sort_des(sort_asc(reverse(take([5, 5, 1, 1],1)))))",
    "io_inp": [
      5,
      5,
      1,
      1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_asc(reverse(take(input,1)))))"
  },
  {
    "input": "input : list = [2, -2, 3, 5, -2]\noutput : list = [16, 12, 10, 2, 2]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(reverse([2, -2, 3, 5, -2]),4),-1),2))",
    "io_inp": [
      2,
      -2,
      3,
      5,
      -2
    ],
    "io_out": [
      16,
      12,
      10,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(reverse(input),4),-1),2))"
  },
  {
    "input": "input : list = [-3, 4, 3]\noutput : list = [-9, 9, 12]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_asc([-3, 4, 3])),3)))",
    "io_inp": [
      -3,
      4,
      3
    ],
    "io_out": [
      -9,
      9,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sort_asc(sort_asc(input)),3)))"
  },
  {
    "input": "input : list = [-3, 1, 2]\noutput : list = [-3, 1, 2]",
    "output": "generated_output : list = reverse(reverse([-3, 1, 2]))",
    "io_inp": [
      -3,
      1,
      2
    ],
    "io_out": [
      -3,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(input))"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [-25, -75]",
    "output": "generated_output : list = reverse(sort_asc(mul_n(mul_n(reverse([1, 3]),5),-5)))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      -25,
      -75
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(mul_n(mul_n(reverse(input),5),-5)))"
  },
  {
    "input": "input : list = [2, 0, 1, 3, 2]\noutput : list = [3, 2, 2, 1, 0]",
    "output": "generated_output : list = take(take(sort_des(reverse(reverse([2, 0, 1, 3, 2]))),11),44)",
    "io_inp": [
      2,
      0,
      1,
      3,
      2
    ],
    "io_out": [
      3,
      2,
      2,
      1,
      0
    ],
    "output_masked": "generated_output : list = take(take(sort_des(reverse(reverse(input))),11),44)"
  },
  {
    "input": "input : list = [-2, 2, -1, 4]\noutput : list = [-4, -2, 1, 2]",
    "output": "generated_output : list = reverse(take(mul_n(sort_asc(sort_asc([-2, 2, -1, 4])),-1),30))",
    "io_inp": [
      -2,
      2,
      -1,
      4
    ],
    "io_out": [
      -4,
      -2,
      1,
      2
    ],
    "output_masked": "generated_output : list = reverse(take(mul_n(sort_asc(sort_asc(input)),-1),30))"
  },
  {
    "input": "input : list = [-5, -5, 0, 2, -4]\noutput : list = [2, 0, -4, -5, -5]",
    "output": "generated_output : list = sort_des(reverse([-5, -5, 0, 2, -4]))",
    "io_inp": [
      -5,
      -5,
      0,
      2,
      -4
    ],
    "io_out": [
      2,
      0,
      -4,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(reverse(input))"
  },
  {
    "input": "input : list = [-5, -5, 1]\noutput : list = [2, -4]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(drop([-5, -5, 1],1),1)),2))",
    "io_inp": [
      -5,
      -5,
      1
    ],
    "io_out": [
      2,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(drop(input,1),1)),2))"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [2, 2]",
    "output": "generated_output : list = reverse([2, 2])",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      2,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4, -4, 5]\noutput : list = [3, -4, -5, -6]",
    "output": "generated_output : list = mul_n(sub_n(reverse(add_n(sort_des([3, 4, -4, 5]),-4)),-5),-1)",
    "io_inp": [
      3,
      4,
      -4,
      5
    ],
    "io_out": [
      3,
      -4,
      -5,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(add_n(sort_des(input),-4)),-5),-1)"
  },
  {
    "input": "input : list = [-4, -4, -3, 5, -5]\noutput : list = [-53, -53, -43, 37, -63]",
    "output": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sub_n([-4, -4, -3, 5, -5],-1),-2),-5),-5),-2)",
    "io_inp": [
      -4,
      -4,
      -3,
      5,
      -5
    ],
    "io_out": [
      -53,
      -53,
      -43,
      37,
      -63
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sub_n(mul_n(sub_n(input,-1),-2),-5),-5),-2)"
  },
  {
    "input": "input : list = [4, 0, 2, -3, 3, -1]\noutput : list = [16, 8, 4, -4, -8, -12]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_des([4, 0, 2, -3, 3, -1]),1)),-4)",
    "io_inp": [
      4,
      0,
      2,
      -3,
      3,
      -1
    ],
    "io_out": [
      16,
      8,
      4,
      -4,
      -8,
      -12
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_des(input),1)),-4)"
  },
  {
    "input": "input : list = [5, 0, 3, 5, 0, -4]\noutput : list = [1, -4, -1, 1, -4, -8]",
    "output": "generated_output : list = sub_n([5, 0, 3, 5, 0, -4],4)",
    "io_inp": [
      5,
      0,
      3,
      5,
      0,
      -4
    ],
    "io_out": [
      1,
      -4,
      -1,
      1,
      -4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,4)"
  },
  {
    "input": "input : list = [1, 0]\noutput : list = [-15, -20]",
    "output": "generated_output : list = mul_n(add_n(take(take(sort_des([1, 0]),7),5),-4),5)",
    "io_inp": [
      1,
      0
    ],
    "io_out": [
      -15,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(take(sort_des(input),7),5),-4),5)"
  },
  {
    "input": "input : list = [2, 1, -2, -3, 3, 0]\noutput : list = [19, 14, 9, 4, -6, -11]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take(sort_asc([2, 1, -2, -3, 3, 0]),27)),5),-4)",
    "io_inp": [
      2,
      1,
      -2,
      -3,
      3,
      0
    ],
    "io_out": [
      19,
      14,
      9,
      4,
      -6,
      -11
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(sort_asc(input),27)),5),-4)"
  },
  {
    "input": "input : list = [-1, 0, 2]\noutput : list = [-30, 0, 60]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_asc([-1, 0, 2])),-2),3),-5)",
    "io_inp": [
      -1,
      0,
      2
    ],
    "io_out": [
      -30,
      0,
      60
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(sort_asc(input)),-2),3),-5)"
  },
  {
    "input": "input : list = [3, -2, -1, 5]\noutput : list = [-4, 6, 4, -8]",
    "output": "generated_output : list = sub_n(sub_n(mul_n([3, -2, -1, 5],-2),-4),2)",
    "io_inp": [
      3,
      -2,
      -1,
      5
    ],
    "io_out": [
      -4,
      6,
      4,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(mul_n(input,-2),-4),2)"
  },
  {
    "input": "input : list = [0, -5, -3, -1]\noutput : list = [0, 5, 15, 25]",
    "output": "generated_output : list = take(mul_n(sort_des([0, -5, -3, -1]),-5),30)",
    "io_inp": [
      0,
      -5,
      -3,
      -1
    ],
    "io_out": [
      0,
      5,
      15,
      25
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_des(input),-5),30)"
  },
  {
    "input": "input : list = [-2, 5, 0]\noutput : list = [13, 8, 6]",
    "output": "generated_output : list = take(sort_des(sort_asc(sub_n(sub_n([-2, 5, 0],-3),-5))),11)",
    "io_inp": [
      -2,
      5,
      0
    ],
    "io_out": [
      13,
      8,
      6
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sub_n(sub_n(input,-3),-5))),11)"
  },
  {
    "input": "input : list = [5, -5, -2]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take([5, -5, -2],1))",
    "io_inp": [
      5,
      -5,
      -2
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [4, 5, -3, -5]\noutput : list = [8, 7, 0, -2]",
    "output": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(add_n([4, 5, -3, -5],3)))))",
    "io_inp": [
      4,
      5,
      -3,
      -5
    ],
    "io_out": [
      8,
      7,
      0,
      -2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sort_des(sort_asc(add_n(input,3)))))"
  },
  {
    "input": "input : list = [1, -1, 1, -2, 3, 0]\noutput : list = [0, 1, 2, 3, 3, 5]",
    "output": "generated_output : list = reverse(sort_des(reverse(sub_n(reverse([1, -1, 1, -2, 3, 0]),-2))))",
    "io_inp": [
      1,
      -1,
      1,
      -2,
      3,
      0
    ],
    "io_out": [
      0,
      1,
      2,
      3,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sub_n(reverse(input),-2))))"
  },
  {
    "input": "input : list = [3, 1, 0, -2]\noutput : list = [5, 3, 2, 0]",
    "output": "generated_output : list = sub_n(reverse(reverse(take(sort_des([3, 1, 0, -2]),12))),-2)",
    "io_inp": [
      3,
      1,
      0,
      -2
    ],
    "io_out": [
      5,
      3,
      2,
      0
    ],
    "output_masked": "generated_output : list = sub_n(reverse(reverse(take(sort_des(input),12))),-2)"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [5, 9]",
    "output": "generated_output : list = add_n([1, 5],4)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      5,
      9
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-3, -2, 5, -2, 2]\noutput : list = [-3, -2, 5, -2, 2]",
    "output": "generated_output : list = mul_n([-3, -2, 5, -2, 2],1)",
    "io_inp": [
      -3,
      -2,
      5,
      -2,
      2
    ],
    "io_out": [
      -3,
      -2,
      5,
      -2,
      2
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [-2, 4, -5, 1, 1, 0]\noutput : list = [-2, -3, -3, 3, -6, 0]",
    "output": "generated_output : list = mul_n(reverse(add_n([-2, 4, -5, 1, 1, 0],2)),-1)",
    "io_inp": [
      -2,
      4,
      -5,
      1,
      1,
      0
    ],
    "io_out": [
      -2,
      -3,
      -3,
      3,
      -6,
      0
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(input,2)),-1)"
  },
  {
    "input": "input : list = [-1, -1, -3]\noutput : list = [-3, -1, -1]",
    "output": "generated_output : list = reverse(sort_des(take(add_n(add_n([-1, -1, -3],2),-2),27)))",
    "io_inp": [
      -1,
      -1,
      -3
    ],
    "io_out": [
      -3,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(add_n(add_n(input,2),-2),27)))"
  },
  {
    "input": "input : list = [-4, 4, -1]\noutput : list = [-1, -6, -9]",
    "output": "generated_output : list = sort_des(reverse(add_n(reverse(reverse([-4, 4, -1])),-5)))",
    "io_inp": [
      -4,
      4,
      -1
    ],
    "io_out": [
      -1,
      -6,
      -9
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(reverse(reverse(input)),-5)))"
  },
  {
    "input": "input : list = [3, 3, -5, 1]\noutput : list = [2, 2, 10, 4]",
    "output": "generated_output : list = add_n(mul_n([3, 3, -5, 1],-1),5)",
    "io_inp": [
      3,
      3,
      -5,
      1
    ],
    "io_out": [
      2,
      2,
      10,
      4
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,-1),5)"
  },
  {
    "input": "input : list = [-4, -5]\noutput : list = [-64, -80]",
    "output": "generated_output : list = reverse(mul_n(sort_des(take(mul_n([-4, -5],-4),14)),-4))",
    "io_inp": [
      -4,
      -5
    ],
    "io_out": [
      -64,
      -80
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_des(take(mul_n(input,-4),14)),-4))"
  },
  {
    "input": "input : list = [5, 2, 2, -4, -5, 0]\noutput : list = [-63, -18, -18, 72, 87, 12]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(mul_n([5, 2, 2, -4, -5, 0],5),4),-3)))",
    "io_inp": [
      5,
      2,
      2,
      -4,
      -5,
      0
    ],
    "io_out": [
      -63,
      -18,
      -18,
      72,
      87,
      12
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(mul_n(input,5),4),-3)))"
  },
  {
    "input": "input : list = [-2, 5, -2]\noutput : list = [1]",
    "output": "generated_output : list = reverse(sort_des(add_n(sub_n(take([-2, 5, -2],1),2),5)))",
    "io_inp": [
      -2,
      5,
      -2
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(add_n(sub_n(take(input,1),2),5)))"
  },
  {
    "input": "input : list = [-1, -1, 1, 0]\noutput : list = [1, 0]",
    "output": "generated_output : list = sort_des(drop([-1, -1, 1, 0],2))",
    "io_inp": [
      -1,
      -1,
      1,
      0
    ],
    "io_out": [
      1,
      0
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [0, 3]\noutput : list = [15, 0]",
    "output": "generated_output : list = sort_des(mul_n(reverse([0, 3]),5))",
    "io_inp": [
      0,
      3
    ],
    "io_out": [
      15,
      0
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(reverse(input),5))"
  },
  {
    "input": "input : list = [4, -4, -5, 1]\noutput : list = [-10]",
    "output": "generated_output : list = add_n(sort_des(reverse(drop(mul_n([4, -4, -5, 1],-5),3))),-5)",
    "io_inp": [
      4,
      -4,
      -5,
      1
    ],
    "io_out": [
      -10
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(drop(mul_n(input,-5),3))),-5)"
  },
  {
    "input": "input : list = [-2, 4, 0, 4, -3]\noutput : list = [-7, -1, -5, -1, -8]",
    "output": "generated_output : list = sub_n([-2, 4, 0, 4, -3],5)",
    "io_inp": [
      -2,
      4,
      0,
      4,
      -3
    ],
    "io_out": [
      -7,
      -1,
      -5,
      -1,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,5)"
  },
  {
    "input": "input : list = [1, 1, 4, -5, -3, 5]\noutput : list = [6, 6, 3, 12, 10, 2]",
    "output": "generated_output : list = sub_n(mul_n(add_n(mul_n(sub_n([1, 1, 4, -5, -3, 5],3),1),-3),-1),-1)",
    "io_inp": [
      1,
      1,
      4,
      -5,
      -3,
      5
    ],
    "io_out": [
      6,
      6,
      3,
      12,
      10,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(add_n(mul_n(sub_n(input,3),1),-3),-1),-1)"
  },
  {
    "input": "input : list = [2, 4, 5, -3]\noutput : list = [-9, -1, -2, -4]",
    "output": "generated_output : list = add_n(sub_n(add_n(reverse(add_n([2, 4, 5, -3],-4)),2),5),1)",
    "io_inp": [
      2,
      4,
      5,
      -3
    ],
    "io_out": [
      -9,
      -1,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sub_n(add_n(reverse(add_n(input,-4)),2),5),1)"
  },
  {
    "input": "input : list = [1, 2, -4]\noutput : list = [-3]",
    "output": "generated_output : list = sub_n(sub_n(take(add_n(take([1, 2, -4],1),-4),25),1),-1)",
    "io_inp": [
      1,
      2,
      -4
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(add_n(take(input,1),-4),25),1),-1)"
  },
  {
    "input": "input : list = [-1, 3, 1, 5, -5]\noutput : list = [-10, -2, 2, 6, 10]",
    "output": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_des([-1, 3, 1, 5, -5]),2))),51)",
    "io_inp": [
      -1,
      3,
      1,
      5,
      -5
    ],
    "io_out": [
      -10,
      -2,
      2,
      6,
      10
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_asc(mul_n(sort_des(input),2))),51)"
  },
  {
    "input": "input : list = [0, -2, 0, -4, 1]\noutput : list = [-5, -3, -1, -1, 0]",
    "output": "generated_output : list = sort_asc(take(take(add_n(add_n([0, -2, 0, -4, 1],-3),2),22),39))",
    "io_inp": [
      0,
      -2,
      0,
      -4,
      1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(add_n(add_n(input,-3),2),22),39))"
  },
  {
    "input": "input : list = [-4, 5, 0, -2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = add_n(sort_asc(add_n(sub_n(drop([-4, 5, 0, -2],2),1),-4)),3)",
    "io_inp": [
      -4,
      5,
      0,
      -2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(add_n(sub_n(drop(input,2),1),-4)),3)"
  },
  {
    "input": "input : list = [0, 5, -2, -5, 1]\noutput : list = [-2, -10]",
    "output": "generated_output : list = mul_n(reverse(sort_des(drop(sort_asc([0, 5, -2, -5, 1]),3))),-2)",
    "io_inp": [
      0,
      5,
      -2,
      -5,
      1
    ],
    "io_out": [
      -2,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sort_des(drop(sort_asc(input),3))),-2)"
  },
  {
    "input": "input : list = [1, 4, 2, -1, 0]\noutput : list = [0, -5, 10, 20, 5]",
    "output": "generated_output : list = mul_n(reverse([1, 4, 2, -1, 0]),5)",
    "io_inp": [
      1,
      4,
      2,
      -1,
      0
    ],
    "io_out": [
      0,
      -5,
      10,
      20,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),5)"
  },
  {
    "input": "input : list = [4, -5, 0]\noutput : list = [4]",
    "output": "generated_output : list = reverse(take([4, -5, 0],1))",
    "io_inp": [
      4,
      -5,
      0
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = reverse(take(input,1))"
  },
  {
    "input": "input : list = [-3, -2, -2]\noutput : list = [4, 4, 5]",
    "output": "generated_output : list = mul_n(reverse(sub_n(sort_asc(reverse([-3, -2, -2])),2)),-1)",
    "io_inp": [
      -3,
      -2,
      -2
    ],
    "io_out": [
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(sort_asc(reverse(input)),2)),-1)"
  },
  {
    "input": "input : list = [-2, -3, 0, -5, 5, 5]\noutput : list = [0]",
    "output": "generated_output : list = add_n(take(add_n(take(take([-2, -3, 0, -5, 5, 5],1),16),1),22),1)",
    "io_inp": [
      -2,
      -3,
      0,
      -5,
      5,
      5
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(take(take(input,1),16),1),22),1)"
  },
  {
    "input": "input : list = [-4, -1]\noutput : list = [-4, -1]",
    "output": "generated_output : list = sort_asc(sort_des([-4, -1]))",
    "io_inp": [
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(input))"
  },
  {
    "input": "input : list = [-1, -1, -3, -2, 0]\noutput : list = [8, 8, 40, 24, -8]",
    "output": "generated_output : list = mul_n(sub_n(mul_n(sub_n(add_n([-1, -1, -3, -2, 0],3),3),4),-2),-4)",
    "io_inp": [
      -1,
      -1,
      -3,
      -2,
      0
    ],
    "io_out": [
      8,
      8,
      40,
      24,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(mul_n(sub_n(add_n(input,3),3),4),-2),-4)"
  },
  {
    "input": "input : list = [3, -4, 0, 5]\noutput : list = [5, -2]",
    "output": "generated_output : list = sub_n(take([3, -4, 0, 5],2),-2)",
    "io_inp": [
      3,
      -4,
      0,
      5
    ],
    "io_out": [
      5,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(input,2),-2)"
  },
  {
    "input": "input : list = [2, 2, 2]\noutput : list = [-4, -4, -4]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sub_n(add_n([2, 2, 2],-3),4)),1),-2)",
    "io_inp": [
      2,
      2,
      2
    ],
    "io_out": [
      -4,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sub_n(add_n(input,-3),4)),1),-2)"
  },
  {
    "input": "input : list = [-2, 2, 4]\noutput : list = [10]",
    "output": "generated_output : list = mul_n(add_n(take([-2, 2, 4],1),4),5)",
    "io_inp": [
      -2,
      2,
      4
    ],
    "io_out": [
      10
    ],
    "output_masked": "generated_output : list = mul_n(add_n(take(input,1),4),5)"
  },
  {
    "input": "input : list = [-5, -2, 5, -1, 1, -4]\noutput : list = [3, -1, -3, -6]",
    "output": "generated_output : list = add_n(sort_des(drop([-5, -2, 5, -1, 1, -4],2)),-2)",
    "io_inp": [
      -5,
      -2,
      5,
      -1,
      1,
      -4
    ],
    "io_out": [
      3,
      -1,
      -3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(input,2)),-2)"
  },
  {
    "input": "input : list = [0, 3, 3, -4]\noutput : list = [-6, -6, -9, -13]",
    "output": "generated_output : list = reverse(sort_asc(sub_n(add_n(reverse([0, 3, 3, -4]),-4),5)))",
    "io_inp": [
      0,
      3,
      3,
      -4
    ],
    "io_out": [
      -6,
      -6,
      -9,
      -13
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(sub_n(add_n(reverse(input),-4),5)))"
  },
  {
    "input": "input : list = [-1, 0, -4, -1]\noutput : list = [-4, -1, 0]",
    "output": "generated_output : list = sort_asc(sort_des(reverse(take(drop([-1, 0, -4, -1],1),6))))",
    "io_inp": [
      -1,
      0,
      -4,
      -1
    ],
    "io_out": [
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(reverse(take(drop(input,1),6))))"
  },
  {
    "input": "input : list = [-2, -2, 4]\noutput : list = [4, -2]",
    "output": "generated_output : list = reverse(drop([-2, -2, 4],1))",
    "io_inp": [
      -2,
      -2,
      4
    ],
    "io_out": [
      4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-2, 0, 2, 1, -3]\noutput : list = [-20, -12, -10, -14, -18]",
    "output": "generated_output : list = take(mul_n(reverse(sub_n(add_n([-2, 0, 2, 1, -3],-5),2)),2),21)",
    "io_inp": [
      -2,
      0,
      2,
      1,
      -3
    ],
    "io_out": [
      -20,
      -12,
      -10,
      -14,
      -18
    ],
    "output_masked": "generated_output : list = take(mul_n(reverse(sub_n(add_n(input,-5),2)),2),21)"
  },
  {
    "input": "input : list = [-4, -5, -3, 4]\noutput : list = [7, 0, -1, -2]",
    "output": "generated_output : list = sort_des(sub_n([-4, -5, -3, 4],-3))",
    "io_inp": [
      -4,
      -5,
      -3,
      4
    ],
    "io_out": [
      7,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(input,-3))"
  },
  {
    "input": "input : list = [-3, 0, 0, 5]\noutput : list = [-7]",
    "output": "generated_output : list = take(add_n([-3, 0, 0, 5],-4),1)",
    "io_inp": [
      -3,
      0,
      0,
      5
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = take(add_n(input,-4),1)"
  },
  {
    "input": "input : list = [-4, 2, -5, 5, 1]\noutput : list = [5, 25, -25, 10, -20]",
    "output": "generated_output : list = mul_n(add_n(reverse(take(sub_n([-4, 2, -5, 5, 1],-5),23)),-5),5)",
    "io_inp": [
      -4,
      2,
      -5,
      5,
      1
    ],
    "io_out": [
      5,
      25,
      -25,
      10,
      -20
    ],
    "output_masked": "generated_output : list = mul_n(add_n(reverse(take(sub_n(input,-5),23)),-5),5)"
  },
  {
    "input": "input : list = [-5, -5]\noutput : list = [-26, -26]",
    "output": "generated_output : list = add_n(take(sort_des(mul_n(sort_asc([-5, -5]),5)),14),-1)",
    "io_inp": [
      -5,
      -5
    ],
    "io_out": [
      -26,
      -26
    ],
    "output_masked": "generated_output : list = add_n(take(sort_des(mul_n(sort_asc(input),5)),14),-1)"
  },
  {
    "input": "input : list = [2, -5, 3]\noutput : list = [-14, -12, 2]",
    "output": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sub_n([2, -5, 3],-4),1)),-2))",
    "io_inp": [
      2,
      -5,
      3
    ],
    "io_out": [
      -14,
      -12,
      2
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sort_asc(mul_n(sub_n(input,-4),1)),-2))"
  },
  {
    "input": "input : list = [-5, 3, 4, -4, -4]\noutput : list = [4, 3, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, 3, 4, -4, -4])",
    "io_inp": [
      -5,
      3,
      4,
      -4,
      -4
    ],
    "io_out": [
      4,
      3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-1, 2, -5, -4, 3]\noutput : list = [-4]",
    "output": "generated_output : list = take(drop(reverse(take(drop([-1, 2, -5, -4, 3],3),22)),1),41)",
    "io_inp": [
      -1,
      2,
      -5,
      -4,
      3
    ],
    "io_out": [
      -4
    ],
    "output_masked": "generated_output : list = take(drop(reverse(take(drop(input,3),22)),1),41)"
  },
  {
    "input": "input : list = [3, -4, 1, 1]\noutput : list = [6, 6, -9, 12]",
    "output": "generated_output : list = reverse(take(sub_n(mul_n([3, -4, 1, 1],3),-3),24))",
    "io_inp": [
      3,
      -4,
      1,
      1
    ],
    "io_out": [
      6,
      6,
      -9,
      12
    ],
    "output_masked": "generated_output : list = reverse(take(sub_n(mul_n(input,3),-3),24))"
  },
  {
    "input": "input : list = [2, 4, -3, -2, 0, 2]\noutput : list = [-4, -8, 6, 4, 0, -4]",
    "output": "generated_output : list = mul_n([2, 4, -3, -2, 0, 2],-2)",
    "io_inp": [
      2,
      4,
      -3,
      -2,
      0,
      2
    ],
    "io_out": [
      -4,
      -8,
      6,
      4,
      0,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(input,-2)"
  },
  {
    "input": "input : list = [0, 0, -4]\noutput : list = [-1, -1, -13]",
    "output": "generated_output : list = sub_n(mul_n([0, 0, -4],3),1)",
    "io_inp": [
      0,
      0,
      -4
    ],
    "io_out": [
      -1,
      -1,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(input,3),1)"
  },
  {
    "input": "input : list = [2, -4, -1, -5, 3, 3]\noutput : list = [3, 3, 2, -1, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(take(sort_asc([2, -4, -1, -5, 3, 3]),11)))",
    "io_inp": [
      2,
      -4,
      -1,
      -5,
      3,
      3
    ],
    "io_out": [
      3,
      3,
      2,
      -1,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(take(sort_asc(input),11)))"
  },
  {
    "input": "input : list = [0, 5]\noutput : list = [-1, 4]",
    "output": "generated_output : list = take(sort_asc(reverse(add_n([0, 5],-1))),30)",
    "io_inp": [
      0,
      5
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(add_n(input,-1))),30)"
  },
  {
    "input": "input : list = [1, 5, -4, -2]\noutput : list = [-6, -4, -1, 3]",
    "output": "generated_output : list = sort_asc(sub_n([1, 5, -4, -2],2))",
    "io_inp": [
      1,
      5,
      -4,
      -2
    ],
    "io_out": [
      -6,
      -4,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,2))"
  },
  {
    "input": "input : list = [-4, 5]\noutput : list = [10, -35]",
    "output": "generated_output : list = mul_n(add_n([-4, 5],2),-5)",
    "io_inp": [
      -4,
      5
    ],
    "io_out": [
      10,
      -35
    ],
    "output_masked": "generated_output : list = mul_n(add_n(input,2),-5)"
  },
  {
    "input": "input : list = [2, 2]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(add_n(sort_des(reverse(reverse([2, 2]))),2),-2)",
    "io_inp": [
      2,
      2
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_des(reverse(reverse(input))),2),-2)"
  },
  {
    "input": "input : list = [2, 0, 5, -5, -1, 2]\noutput : list = [-1, -3, 2, -8, -4, -1]",
    "output": "generated_output : list = sub_n([2, 0, 5, -5, -1, 2],3)",
    "io_inp": [
      2,
      0,
      5,
      -5,
      -1,
      2
    ],
    "io_out": [
      -1,
      -3,
      2,
      -8,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-2, -1, 5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_asc(add_n(reverse(add_n(drop([-2, -1, 5, 5],2),3)),-2))",
    "io_inp": [
      -2,
      -1,
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(reverse(add_n(drop(input,2),3)),-2))"
  },
  {
    "input": "input : list = [-3, -5, -4, 2]\noutput : list = [-1, 0, 1, 6]",
    "output": "generated_output : list = take(sort_asc(sort_des(sub_n(reverse([-3, -5, -4, 2]),-4))),14)",
    "io_inp": [
      -3,
      -5,
      -4,
      2
    ],
    "io_out": [
      -1,
      0,
      1,
      6
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(sub_n(reverse(input),-4))),14)"
  },
  {
    "input": "input : list = [3, -2, -2, -1]\noutput : list = [6, 3]",
    "output": "generated_output : list = mul_n(drop([3, -2, -2, -1],2),-3)",
    "io_inp": [
      3,
      -2,
      -2,
      -1
    ],
    "io_out": [
      6,
      3
    ],
    "output_masked": "generated_output : list = mul_n(drop(input,2),-3)"
  },
  {
    "input": "input : list = [0, 2, -3]\noutput : list = [2, -3]",
    "output": "generated_output : list = reverse(reverse(drop([0, 2, -3],1)))",
    "io_inp": [
      0,
      2,
      -3
    ],
    "io_out": [
      2,
      -3
    ],
    "output_masked": "generated_output : list = reverse(reverse(drop(input,1)))"
  },
  {
    "input": "input : list = [-1, -3]\noutput : list = [-7, -5]",
    "output": "generated_output : list = sub_n(reverse(sort_des(reverse(sort_asc([-1, -3])))),4)",
    "io_inp": [
      -1,
      -3
    ],
    "io_out": [
      -7,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(reverse(sort_des(reverse(sort_asc(input)))),4)"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [-4, 5]",
    "output": "generated_output : list = sort_asc(reverse(sort_des(reverse([5, -4]))))",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      -4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(sort_des(reverse(input))))"
  },
  {
    "input": "input : list = [-4, 1, -5, 4]\noutput : list = [-5]",
    "output": "generated_output : list = add_n(sort_des(drop(take(sub_n([-4, 1, -5, 4],5),4),3)),-4)",
    "io_inp": [
      -4,
      1,
      -5,
      4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = add_n(sort_des(drop(take(sub_n(input,5),4),3)),-4)"
  },
  {
    "input": "input : list = [-4, 1]\noutput : list = [-14, -4]",
    "output": "generated_output : list = reverse(sub_n(take(mul_n(sub_n([-4, 1],-5),-2),24),2))",
    "io_inp": [
      -4,
      1
    ],
    "io_out": [
      -14,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sub_n(take(mul_n(sub_n(input,-5),-2),24),2))"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = add_n([3, 2],-1)",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = add_n(input,-1)"
  },
  {
    "input": "input : list = [0, -3, 4, -4, 4]\noutput : list = [4, 4, 0, -3, -4]",
    "output": "generated_output : list = sort_des([0, -3, 4, -4, 4])",
    "io_inp": [
      0,
      -3,
      4,
      -4,
      4
    ],
    "io_out": [
      4,
      4,
      0,
      -3,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -2]\noutput : list = [-2]",
    "output": "generated_output : list = reverse(take(sort_des(take(sort_des([-5, -2]),11)),1))",
    "io_inp": [
      -5,
      -2
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(take(sort_des(input),11)),1))"
  },
  {
    "input": "input : list = [4, 0, 3, 5, -5, 1]\noutput : list = [15, 0, -3, -9, -12, -15]",
    "output": "generated_output : list = mul_n(sort_asc([4, 0, 3, 5, -5, 1]),-3)",
    "io_inp": [
      4,
      0,
      3,
      5,
      -5,
      1
    ],
    "io_out": [
      15,
      0,
      -3,
      -9,
      -12,
      -15
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),-3)"
  },
  {
    "input": "input : list = [-5, -3]\noutput : list = [-8, -10]",
    "output": "generated_output : list = take(reverse(take(sub_n([-5, -3],5),3)),24)",
    "io_inp": [
      -5,
      -3
    ],
    "io_out": [
      -8,
      -10
    ],
    "output_masked": "generated_output : list = take(reverse(take(sub_n(input,5),3)),24)"
  },
  {
    "input": "input : list = [4, -5]\noutput : list = [-5, 4]",
    "output": "generated_output : list = take(reverse([4, -5]),11)",
    "io_inp": [
      4,
      -5
    ],
    "io_out": [
      -5,
      4
    ],
    "output_masked": "generated_output : list = take(reverse(input),11)"
  },
  {
    "input": "input : list = [-4, -3, -1, -1, -4]\noutput : list = [-4, -6, -7]",
    "output": "generated_output : list = sort_des(take(add_n(reverse(reverse([-4, -3, -1, -1, -4])),-3),3))",
    "io_inp": [
      -4,
      -3,
      -1,
      -1,
      -4
    ],
    "io_out": [
      -4,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(reverse(reverse(input)),-3),3))"
  },
  {
    "input": "input : list = [5, 0, 5, -3, 2, 4]\noutput : list = [7, 2, 0, -1]",
    "output": "generated_output : list = sort_des(mul_n(take(add_n(reverse([5, 0, 5, -3, 2, 4]),-4),4),-1))",
    "io_inp": [
      5,
      0,
      5,
      -3,
      2,
      4
    ],
    "io_out": [
      7,
      2,
      0,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(add_n(reverse(input),-4),4),-1))"
  },
  {
    "input": "input : list = [4, -2]\noutput : list = [-7, -1]",
    "output": "generated_output : list = sub_n(take(mul_n(take(sort_des([4, -2]),7),-1),31),3)",
    "io_inp": [
      4,
      -2
    ],
    "io_out": [
      -7,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(take(mul_n(take(sort_des(input),7),-1),31),3)"
  },
  {
    "input": "input : list = [-4, 5, 4, 5, 5]\noutput : list = [-2, 6, 7, 7, 7]",
    "output": "generated_output : list = reverse(sort_des(reverse(add_n(sort_asc([-4, 5, 4, 5, 5]),2))))",
    "io_inp": [
      -4,
      5,
      4,
      5,
      5
    ],
    "io_out": [
      -2,
      6,
      7,
      7,
      7
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(add_n(sort_asc(input),2))))"
  },
  {
    "input": "input : list = [5, 2, -1]\noutput : list = [1, -2, -5]",
    "output": "generated_output : list = sub_n(sort_des([5, 2, -1]),4)",
    "io_inp": [
      5,
      2,
      -1
    ],
    "io_out": [
      1,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [4, 4, 5, -4, -2]\noutput : list = [8, 8, 9, 0, 2]",
    "output": "generated_output : list = add_n(take(add_n(sub_n([4, 4, 5, -4, -2],-2),3),17),-1)",
    "io_inp": [
      4,
      4,
      5,
      -4,
      -2
    ],
    "io_out": [
      8,
      8,
      9,
      0,
      2
    ],
    "output_masked": "generated_output : list = add_n(take(add_n(sub_n(input,-2),3),17),-1)"
  },
  {
    "input": "input : list = [0, 5, 2, 4]\noutput : list = [14, 11, 5, -1]",
    "output": "generated_output : list = add_n(sort_des(take(mul_n(sort_asc([0, 5, 2, 4]),3),22)),-1)",
    "io_inp": [
      0,
      5,
      2,
      4
    ],
    "io_out": [
      14,
      11,
      5,
      -1
    ],
    "output_masked": "generated_output : list = add_n(sort_des(take(mul_n(sort_asc(input),3),22)),-1)"
  },
  {
    "input": "input : list = [-4, -5, 3]\noutput : list = [20, 25, -15]",
    "output": "generated_output : list = reverse(reverse(mul_n([-4, -5, 3],-5)))",
    "io_inp": [
      -4,
      -5,
      3
    ],
    "io_out": [
      20,
      25,
      -15
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(input,-5)))"
  },
  {
    "input": "input : list = [-1, 1, -2, 2, -1]\noutput : list = [4, 6, 6, 10, 12]",
    "output": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse([-1, 1, -2, 2, -1])),4)),2)",
    "io_inp": [
      -1,
      1,
      -2,
      2,
      -1
    ],
    "io_out": [
      4,
      6,
      6,
      10,
      12
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(add_n(reverse(reverse(input)),4)),2)"
  },
  {
    "input": "input : list = [3, 5, 4, -5, 1, -1]\noutput : list = [-19, -16, -13, -7, -1, 11]",
    "output": "generated_output : list = take(sort_asc(sub_n(sort_asc(mul_n([3, 5, 4, -5, 1, -1],-3)),4)),45)",
    "io_inp": [
      3,
      5,
      4,
      -5,
      1,
      -1
    ],
    "io_out": [
      -19,
      -16,
      -13,
      -7,
      -1,
      11
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sort_asc(mul_n(input,-3)),4)),45)"
  },
  {
    "input": "input : list = [3, -4]\noutput : list = [-4, 3]",
    "output": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sort_asc([3, -4])))))",
    "io_inp": [
      3,
      -4
    ],
    "io_out": [
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(reverse(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [4, 1, 0, -4, -1]\noutput : list = [-31]",
    "output": "generated_output : list = reverse(sub_n(mul_n(add_n(take([4, 1, 0, -4, -1],1),3),-5),-4))",
    "io_inp": [
      4,
      1,
      0,
      -4,
      -1
    ],
    "io_out": [
      -31
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(add_n(take(input,1),3),-5),-4))"
  },
  {
    "input": "input : list = [-4, 2, 1]\noutput : list = [16]",
    "output": "generated_output : list = sort_des(mul_n(take([-4, 2, 1],1),-4))",
    "io_inp": [
      -4,
      2,
      1
    ],
    "io_out": [
      16
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(take(input,1),-4))"
  },
  {
    "input": "input : list = [-4, -2, 5, -2, 3, 2]\noutput : list = [-12, -10, -10, -6, -5, -3]",
    "output": "generated_output : list = add_n(take(sort_asc(sort_asc(sub_n([-4, -2, 5, -2, 3, 2],3))),8),-5)",
    "io_inp": [
      -4,
      -2,
      5,
      -2,
      3,
      2
    ],
    "io_out": [
      -12,
      -10,
      -10,
      -6,
      -5,
      -3
    ],
    "output_masked": "generated_output : list = add_n(take(sort_asc(sort_asc(sub_n(input,3))),8),-5)"
  },
  {
    "input": "input : list = [-3, -3, -5, 4, -2, 2]\noutput : list = [8, 4, 10, 1, 3, 3]",
    "output": "generated_output : list = reverse(sub_n(reverse(reverse(sub_n([-3, -3, -5, 4, -2, 2],-3))),-3))",
    "io_inp": [
      -3,
      -3,
      -5,
      4,
      -2,
      2
    ],
    "io_out": [
      8,
      4,
      10,
      1,
      3,
      3
    ],
    "output_masked": "generated_output : list = reverse(sub_n(reverse(reverse(sub_n(input,-3))),-3))"
  },
  {
    "input": "input : list = [-2, 4]\noutput : list = [-47, 13]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sub_n(reverse([-2, 4]),-1),-2),5),-3)",
    "io_inp": [
      -2,
      4
    ],
    "io_out": [
      -47,
      13
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sub_n(reverse(input),-1),-2),5),-3)"
  },
  {
    "input": "input : list = [2, 1]\noutput : list = [-6, -3]",
    "output": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n([2, 1],-3))))",
    "io_inp": [
      2,
      1
    ],
    "io_out": [
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(sort_asc(mul_n(input,-3))))"
  },
  {
    "input": "input : list = [-4, 5, 3, 3, -2, -4]\noutput : list = [-3, -3, -1, 4, 4, 6]",
    "output": "generated_output : list = reverse(sort_des(sub_n([-4, 5, 3, 3, -2, -4],-1)))",
    "io_inp": [
      -4,
      5,
      3,
      3,
      -2,
      -4
    ],
    "io_out": [
      -3,
      -3,
      -1,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(input,-1)))"
  },
  {
    "input": "input : list = [-1, 2, 2, 3, 0]\noutput : list = [2, 1, 1]",
    "output": "generated_output : list = take(reverse(take(add_n(sort_asc([-1, 2, 2, 3, 0]),-1),34)),3)",
    "io_inp": [
      -1,
      2,
      2,
      3,
      0
    ],
    "io_out": [
      2,
      1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(take(add_n(sort_asc(input),-1),34)),3)"
  },
  {
    "input": "input : list = [-2, 0, -4, 1]\noutput : list = [3, 5, 7, 8]",
    "output": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sub_n([-2, 0, -4, 1],-2)))),-5)",
    "io_inp": [
      -2,
      0,
      -4,
      1
    ],
    "io_out": [
      3,
      5,
      7,
      8
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sort_des(reverse(sub_n(input,-2)))),-5)"
  },
  {
    "input": "input : list = [1, 3, -3]\noutput : list = [-6, 6]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop([1, 3, -3],1)))),-2)",
    "io_inp": [
      1,
      3,
      -3
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sort_des(drop(input,1)))),-2)"
  },
  {
    "input": "input : list = [-5, 0, -1, -5]\noutput : list = [0, 4, 20]",
    "output": "generated_output : list = take(mul_n(take(take(drop([-5, 0, -1, -5],1),12),7),-4),8)",
    "io_inp": [
      -5,
      0,
      -1,
      -5
    ],
    "io_out": [
      0,
      4,
      20
    ],
    "output_masked": "generated_output : list = take(mul_n(take(take(drop(input,1),12),7),-4),8)"
  },
  {
    "input": "input : list = [-3, -4, 2, -5, 3]\noutput : list = [3, 2, -3, -4, -5]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_des(reverse([-3, -4, 2, -5, 3])))))",
    "io_inp": [
      -3,
      -4,
      2,
      -5,
      3
    ],
    "io_out": [
      3,
      2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_des(reverse(input)))))"
  },
  {
    "input": "input : list = [-1, 5, -2]\noutput : list = [23, -5, 19]",
    "output": "generated_output : list = take(sub_n(mul_n(sub_n(reverse([-1, 5, -2]),5),-4),5),29)",
    "io_inp": [
      -1,
      5,
      -2
    ],
    "io_out": [
      23,
      -5,
      19
    ],
    "output_masked": "generated_output : list = take(sub_n(mul_n(sub_n(reverse(input),5),-4),5),29)"
  },
  {
    "input": "input : list = [1, -1, -4, 5]\noutput : list = [-16, -4, 4, 20]",
    "output": "generated_output : list = mul_n(sort_asc([1, -1, -4, 5]),4)",
    "io_inp": [
      1,
      -1,
      -4,
      5
    ],
    "io_out": [
      -16,
      -4,
      4,
      20
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(input),4)"
  },
  {
    "input": "input : list = [-4, 2, -2, 5]\noutput : list = [-6, 0, -4, 3]",
    "output": "generated_output : list = reverse(add_n(reverse(add_n(add_n([-4, 2, -2, 5],-3),2)),-1))",
    "io_inp": [
      -4,
      2,
      -2,
      5
    ],
    "io_out": [
      -6,
      0,
      -4,
      3
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(add_n(add_n(input,-3),2)),-1))"
  },
  {
    "input": "input : list = [-4, 1, 2, -2, 1, 4]\noutput : list = [-4, 1, 2, -2, 1, 4]",
    "output": "generated_output : list = sub_n(sub_n(add_n(take(sub_n([-4, 1, 2, -2, 1, 4],5),21),5),1),-1)",
    "io_inp": [
      -4,
      1,
      2,
      -2,
      1,
      4
    ],
    "io_out": [
      -4,
      1,
      2,
      -2,
      1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(take(sub_n(input,5),21),5),1),-1)"
  },
  {
    "input": "input : list = [3, -1, 0, 5, -1]\noutput : list = [2, 2, 3, 6, 8]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse(sort_des([3, -1, 0, 5, -1])),-3)))",
    "io_inp": [
      3,
      -1,
      0,
      5,
      -1
    ],
    "io_out": [
      2,
      2,
      3,
      6,
      8
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(sort_des(input)),-3)))"
  },
  {
    "input": "input : list = [-4, 0]\noutput : list = [-8, 8]",
    "output": "generated_output : list = mul_n(reverse(sub_n([-4, 0],-2)),-4)",
    "io_inp": [
      -4,
      0
    ],
    "io_out": [
      -8,
      8
    ],
    "output_masked": "generated_output : list = mul_n(reverse(sub_n(input,-2)),-4)"
  },
  {
    "input": "input : list = [1, -3, 2]\noutput : list = [-2, -6, -7]",
    "output": "generated_output : list = sort_des(mul_n(sub_n(sort_asc([1, -3, 2]),-5),-1))",
    "io_inp": [
      1,
      -3,
      2
    ],
    "io_out": [
      -2,
      -6,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sub_n(sort_asc(input),-5),-1))"
  },
  {
    "input": "input : list = [-2, 0]\noutput : list = [-2, 0]",
    "output": "generated_output : list = sort_asc(reverse(reverse([-2, 0])))",
    "io_inp": [
      -2,
      0
    ],
    "io_out": [
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(input)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [24, -12]",
    "output": "generated_output : list = sub_n(sub_n(take(reverse(mul_n([5, -4],-4)),8),-5),-3)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      24,
      -12
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(reverse(mul_n(input,-4)),8),-5),-3)"
  },
  {
    "input": "input : list = [2, -3, 0]\noutput : list = [1, -4, -1]",
    "output": "generated_output : list = sub_n([2, -3, 0],1)",
    "io_inp": [
      2,
      -3,
      0
    ],
    "io_out": [
      1,
      -4,
      -1
    ],
    "output_masked": "generated_output : list = sub_n(input,1)"
  },
  {
    "input": "input : list = [2, 3, 1]\noutput : list = [4, 8]",
    "output": "generated_output : list = reverse(mul_n(drop(sort_des(mul_n([2, 3, 1],4)),1),1))",
    "io_inp": [
      2,
      3,
      1
    ],
    "io_out": [
      4,
      8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(drop(sort_des(mul_n(input,4)),1),1))"
  },
  {
    "input": "input : list = [5, 0]\noutput : list = [-6, -1]",
    "output": "generated_output : list = take(sort_asc(sub_n(sub_n(reverse([5, 0]),2),4)),40)",
    "io_inp": [
      5,
      0
    ],
    "io_out": [
      -6,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_asc(sub_n(sub_n(reverse(input),2),4)),40)"
  },
  {
    "input": "input : list = [1, -2, -3, 5, 1, -3]\noutput : list = [20, 8, -1, -4]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(take([1, -2, -3, 5, 1, -3],4),3)),-5))",
    "io_inp": [
      1,
      -2,
      -3,
      5,
      1,
      -3
    ],
    "io_out": [
      20,
      8,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(take(input,4),3)),-5))"
  },
  {
    "input": "input : list = [-3, 5, 0, 5]\noutput : list = [4, -4]",
    "output": "generated_output : list = take(sort_des(add_n(reverse(take([-3, 5, 0, 5],2)),-1)),43)",
    "io_inp": [
      -3,
      5,
      0,
      5
    ],
    "io_out": [
      4,
      -4
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(reverse(take(input,2)),-1)),43)"
  },
  {
    "input": "input : list = [-2, 0, -3, -2, -2]\noutput : list = [-3, -2, -2, -2, 0]",
    "output": "generated_output : list = sort_asc(sort_asc([-2, 0, -3, -2, -2]))",
    "io_inp": [
      -2,
      0,
      -3,
      -2,
      -2
    ],
    "io_out": [
      -3,
      -2,
      -2,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [0, 5, -4, 4]\noutput : list = [190, -210, 240, -10]",
    "output": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n([0, 5, -4, 4],-5),1)),-2),5)",
    "io_inp": [
      0,
      5,
      -4,
      4
    ],
    "io_out": [
      190,
      -210,
      240,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(reverse(add_n(mul_n(input,-5),1)),-2),5)"
  },
  {
    "input": "input : list = [-3, 0, 2, 4, 0, -1]\noutput : list = [4, 5]",
    "output": "generated_output : list = sort_asc(sub_n(drop([-3, 0, 2, 4, 0, -1],4),-5))",
    "io_inp": [
      -3,
      0,
      2,
      4,
      0,
      -1
    ],
    "io_out": [
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(drop(input,4),-5))"
  },
  {
    "input": "input : list = [3, 1, 1, -5]\noutput : list = [-5, 1, 1, 3]",
    "output": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_des([3, 1, 1, -5])))))",
    "io_inp": [
      3,
      1,
      1,
      -5
    ],
    "io_out": [
      -5,
      1,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(reverse(sort_des(sort_des(input)))))"
  },
  {
    "input": "input : list = [5, 5, -4, 0, 2, 5]\noutput : list = [-3, 1]",
    "output": "generated_output : list = reverse(reverse(add_n(take(drop([5, 5, -4, 0, 2, 5],2),2),1)))",
    "io_inp": [
      5,
      5,
      -4,
      0,
      2,
      5
    ],
    "io_out": [
      -3,
      1
    ],
    "output_masked": "generated_output : list = reverse(reverse(add_n(take(drop(input,2),2),1)))"
  },
  {
    "input": "input : list = [-4, 3, -4, 5]\noutput : list = [4, 2, -5, -5]",
    "output": "generated_output : list = take(sort_des(sort_asc(sort_des(sub_n([-4, 3, -4, 5],1)))),34)",
    "io_inp": [
      -4,
      3,
      -4,
      5
    ],
    "io_out": [
      4,
      2,
      -5,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(sort_asc(sort_des(sub_n(input,1)))),34)"
  },
  {
    "input": "input : list = [-4, -2]\noutput : list = [-6, -4]",
    "output": "generated_output : list = add_n([-4, -2],-2)",
    "io_inp": [
      -4,
      -2
    ],
    "io_out": [
      -6,
      -4
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 2, 3, 1]\noutput : list = [7, 9, 10, 11]",
    "output": "generated_output : list = sort_asc(add_n(take(add_n(reverse([-1, 2, 3, 1]),4),26),4))",
    "io_inp": [
      -1,
      2,
      3,
      1
    ],
    "io_out": [
      7,
      9,
      10,
      11
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(take(add_n(reverse(input),4),26),4))"
  },
  {
    "input": "input : list = [-5, -4, 1, 3, -2, -5]\noutput : list = [15, 6, -9, -3, 12, 15]",
    "output": "generated_output : list = mul_n(reverse([-5, -4, 1, 3, -2, -5]),-3)",
    "io_inp": [
      -5,
      -4,
      1,
      3,
      -2,
      -5
    ],
    "io_out": [
      15,
      6,
      -9,
      -3,
      12,
      15
    ],
    "output_masked": "generated_output : list = mul_n(reverse(input),-3)"
  },
  {
    "input": "input : list = [5, -1, -3, 4, 3, -3]\noutput : list = [5, 4, 3, -1, -3, -3]",
    "output": "generated_output : list = sort_des(sort_asc([5, -1, -3, 4, 3, -3]))",
    "io_inp": [
      5,
      -1,
      -3,
      4,
      3,
      -3
    ],
    "io_out": [
      5,
      4,
      3,
      -1,
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(input))"
  },
  {
    "input": "input : list = [0, -2, -3, 4, 5, 1]\noutput : list = [0, 2]",
    "output": "generated_output : list = sub_n(sub_n(reverse(sort_des(take([0, -2, -3, 4, 5, 1],2))),1),-3)",
    "io_inp": [
      0,
      -2,
      -3,
      4,
      5,
      1
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(sort_des(take(input,2))),1),-3)"
  },
  {
    "input": "input : list = [0, -3, -2, -5, 3]\noutput : list = [0, 2, 3, 5, 8]",
    "output": "generated_output : list = take(take(sort_asc(add_n(reverse([0, -3, -2, -5, 3]),5)),43),27)",
    "io_inp": [
      0,
      -3,
      -2,
      -5,
      3
    ],
    "io_out": [
      0,
      2,
      3,
      5,
      8
    ],
    "output_masked": "generated_output : list = take(take(sort_asc(add_n(reverse(input),5)),43),27)"
  },
  {
    "input": "input : list = [2, 0, -3, -3, -4]\noutput : list = [4, -4, -16, -16, -20]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n(sort_des([2, 0, -3, -3, -4]),-5),4),4))",
    "io_inp": [
      2,
      0,
      -3,
      -3,
      -4
    ],
    "io_out": [
      4,
      -4,
      -16,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(sort_des(input),-5),4),4))"
  },
  {
    "input": "input : list = [-5, -4, -1, 2, -2]\noutput : list = [-10, 10, -5, -20, -25]",
    "output": "generated_output : list = reverse(mul_n([-5, -4, -1, 2, -2],5))",
    "io_inp": [
      -5,
      -4,
      -1,
      2,
      -2
    ],
    "io_out": [
      -10,
      10,
      -5,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,5))"
  },
  {
    "input": "input : list = [1, -4, -1, 1, 3]\noutput : list = [2, 0, 0, -2, -5]",
    "output": "generated_output : list = sort_des(sort_des(sort_des(sub_n(reverse([1, -4, -1, 1, 3]),1))))",
    "io_inp": [
      1,
      -4,
      -1,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      0,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sort_des(sub_n(reverse(input),1))))"
  },
  {
    "input": "input : list = [-3, -3, -5]\noutput : list = [30, 20, 20]",
    "output": "generated_output : list = add_n(sort_des(reverse(sort_des(mul_n([-3, -3, -5],-5)))),5)",
    "io_inp": [
      -3,
      -3,
      -5
    ],
    "io_out": [
      30,
      20,
      20
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(sort_des(mul_n(input,-5)))),5)"
  },
  {
    "input": "input : list = [-5, -5, -4, -5, 4]\noutput : list = [-5, -5, -5, -4, 4]",
    "output": "generated_output : list = sort_asc([-5, -5, -4, -5, 4])",
    "io_inp": [
      -5,
      -5,
      -4,
      -5,
      4
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -4,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [5, -3, 3]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(add_n(drop([5, -3, 3],1),2))))",
    "io_inp": [
      5,
      -3,
      3
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(add_n(drop(input,1),2))))"
  },
  {
    "input": "input : list = [-5, 4, 1, -2, 0, -5]\noutput : list = [2, 2, -4, -8, -10, -16]",
    "output": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_asc([-5, 4, 1, -2, 0, -5]),-4),-2)))",
    "io_inp": [
      -5,
      4,
      1,
      -2,
      0,
      -5
    ],
    "io_out": [
      2,
      2,
      -4,
      -8,
      -10,
      -16
    ],
    "output_masked": "generated_output : list = reverse(reverse(mul_n(sub_n(sort_asc(input),-4),-2)))"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [3, 0]",
    "output": "generated_output : list = add_n(take(reverse(sub_n(reverse([4, 1]),-3)),10),-4)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sub_n(reverse(input),-3)),10),-4)"
  },
  {
    "input": "input : list = [-5, 0, 3, -1, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take([-5, 0, 3, -1, -4],1))",
    "io_inp": [
      -5,
      0,
      3,
      -1,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(input,1))"
  },
  {
    "input": "input : list = [2, -1, -4, -2, 4]\noutput : list = [-12, -6, 3, 6, 12]",
    "output": "generated_output : list = sort_asc(take(sort_asc(take(mul_n([2, -1, -4, -2, 4],-3),26)),25))",
    "io_inp": [
      2,
      -1,
      -4,
      -2,
      4
    ],
    "io_out": [
      -12,
      -6,
      3,
      6,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(take(mul_n(input,-3),26)),25))"
  },
  {
    "input": "input : list = [-3, 2, -5]\noutput : list = [0, 5, -2]",
    "output": "generated_output : list = add_n([-3, 2, -5],3)",
    "io_inp": [
      -3,
      2,
      -5
    ],
    "io_out": [
      0,
      5,
      -2
    ],
    "output_masked": "generated_output : list = add_n(input,3)"
  },
  {
    "input": "input : list = [-1, -4, -3, -3, 3]\noutput : list = [-2, -5, -4, -4, 2]",
    "output": "generated_output : list = add_n(add_n([-1, -4, -3, -3, 3],2),-3)",
    "io_inp": [
      -1,
      -4,
      -3,
      -3,
      3
    ],
    "io_out": [
      -2,
      -5,
      -4,
      -4,
      2
    ],
    "output_masked": "generated_output : list = add_n(add_n(input,2),-3)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-3, 2]",
    "output": "generated_output : list = reverse(sort_des(sort_des(sort_des([2, -3]))))",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -3,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(sort_des(input))))"
  },
  {
    "input": "input : list = [-5, 1, -5, -5]\noutput : list = [-1, 5, -1, -1]",
    "output": "generated_output : list = add_n([-5, 1, -5, -5],4)",
    "io_inp": [
      -5,
      1,
      -5,
      -5
    ],
    "io_out": [
      -1,
      5,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [-2, -2, 2, -2]\noutput : list = [2, -6, -6, -6]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(reverse([-2, -2, 2, -2])),2),-2))",
    "io_inp": [
      -2,
      -2,
      2,
      -2
    ],
    "io_out": [
      2,
      -6,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(reverse(input)),2),-2))"
  },
  {
    "input": "input : list = [-3, 3, 1, -4, 0]\noutput : list = [25, 20, 5, 0, -10]",
    "output": "generated_output : list = mul_n(reverse(add_n(sort_des([-3, 3, 1, -4, 0]),-1)),-5)",
    "io_inp": [
      -3,
      3,
      1,
      -4,
      0
    ],
    "io_out": [
      25,
      20,
      5,
      0,
      -10
    ],
    "output_masked": "generated_output : list = mul_n(reverse(add_n(sort_des(input),-1)),-5)"
  },
  {
    "input": "input : list = [2, -4, -1]\noutput : list = [-7]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(take([2, -4, -1],1)),4)),5)",
    "io_inp": [
      2,
      -4,
      -1
    ],
    "io_out": [
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(sort_asc(take(input,1)),4)),5)"
  },
  {
    "input": "input : list = [5, 1, -3, -3, -1]\noutput : list = [8, 0, -8]",
    "output": "generated_output : list = reverse(mul_n(sub_n(sub_n(take([5, 1, -3, -3, -1],3),-3),4),-2))",
    "io_inp": [
      5,
      1,
      -3,
      -3,
      -1
    ],
    "io_out": [
      8,
      0,
      -8
    ],
    "output_masked": "generated_output : list = reverse(mul_n(sub_n(sub_n(take(input,3),-3),4),-2))"
  },
  {
    "input": "input : list = [-3, 3, 2, 5]\noutput : list = [52, 44, 40, 20]",
    "output": "generated_output : list = sort_des(mul_n(add_n(add_n([-3, 3, 2, 5],3),5),4))",
    "io_inp": [
      -3,
      3,
      2,
      5
    ],
    "io_out": [
      52,
      44,
      40,
      20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(add_n(input,3),5),4))"
  },
  {
    "input": "input : list = [-2, -3, -1, -3]\noutput : list = [-6, -7, -8, -8]",
    "output": "generated_output : list = sort_des(sort_des(sub_n([-2, -3, -1, -3],5)))",
    "io_inp": [
      -2,
      -3,
      -1,
      -3
    ],
    "io_out": [
      -6,
      -7,
      -8,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(input,5)))"
  },
  {
    "input": "input : list = [4, 3, 2, -3, 2]\noutput : list = [2, 2, -8]",
    "output": "generated_output : list = mul_n(sort_des(sort_des(sub_n(drop([4, 3, 2, -3, 2],2),1))),2)",
    "io_inp": [
      4,
      3,
      2,
      -3,
      2
    ],
    "io_out": [
      2,
      2,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(sort_des(sub_n(drop(input,2),1))),2)"
  },
  {
    "input": "input : list = [3, 1, -4, -3, -4]\noutput : list = [-4, -3, -4, 1, 3]",
    "output": "generated_output : list = reverse([3, 1, -4, -3, -4])",
    "io_inp": [
      3,
      1,
      -4,
      -3,
      -4
    ],
    "io_out": [
      -4,
      -3,
      -4,
      1,
      3
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, 4]\noutput : list = [7, 6]",
    "output": "generated_output : list = sort_des(take(add_n(sub_n(sort_des([3, 4]),-1),2),33))",
    "io_inp": [
      3,
      4
    ],
    "io_out": [
      7,
      6
    ],
    "output_masked": "generated_output : list = sort_des(take(add_n(sub_n(sort_des(input),-1),2),33))"
  },
  {
    "input": "input : list = [4, -2, 3, 0, 4, -1]\noutput : list = [4, 4, 3, 0, -1, -2]",
    "output": "generated_output : list = sort_des(reverse(reverse(sort_des([4, -2, 3, 0, 4, -1]))))",
    "io_inp": [
      4,
      -2,
      3,
      0,
      4,
      -1
    ],
    "io_out": [
      4,
      4,
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(reverse(reverse(sort_des(input))))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [0, 0]",
    "output": "generated_output : list = add_n([5, 5],-5)",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      0,
      0
    ],
    "output_masked": "generated_output : list = add_n(input,-5)"
  },
  {
    "input": "input : list = [-3, -4, -3, 1]\noutput : list = [240, 180, 180, -60]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(reverse(mul_n([-3, -4, -3, 1],3)),-4)),5)",
    "io_inp": [
      -3,
      -4,
      -3,
      1
    ],
    "io_out": [
      240,
      180,
      180,
      -60
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(reverse(mul_n(input,3)),-4)),5)"
  },
  {
    "input": "input : list = [0, -4, -3, -5, -1]\noutput : list = [-200, -175, -150, -100, -75]",
    "output": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(add_n([0, -4, -3, -5, -1],-3)),-5)),-5)",
    "io_inp": [
      0,
      -4,
      -3,
      -5,
      -1
    ],
    "io_out": [
      -200,
      -175,
      -150,
      -100,
      -75
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(mul_n(sort_asc(add_n(input,-3)),-5)),-5)"
  },
  {
    "input": "input : list = [-3, 4, 4, 0]\noutput : list = [7, -2, -14, -14]",
    "output": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_asc([-3, 4, 4, 0]),-3)),5),-3)",
    "io_inp": [
      -3,
      4,
      4,
      0
    ],
    "io_out": [
      7,
      -2,
      -14,
      -14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(sort_des(mul_n(sort_asc(input),-3)),5),-3)"
  },
  {
    "input": "input : list = [3, -2, 2, 4]\noutput : list = [4, 2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(drop([3, -2, 2, 4],1)))))",
    "io_inp": [
      3,
      -2,
      2,
      4
    ],
    "io_out": [
      4,
      2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [4, -2, -4]\noutput : list = [4, 6, 12]",
    "output": "generated_output : list = sub_n(sort_asc(sub_n(add_n(sort_asc([4, -2, -4]),4),-1)),-3)",
    "io_inp": [
      4,
      -2,
      -4
    ],
    "io_out": [
      4,
      6,
      12
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(sub_n(add_n(sort_asc(input),4),-1)),-3)"
  },
  {
    "input": "input : list = [-1, 5, -4, -1, 1, 5]\noutput : list = [11, 11, 3, -1, -1, -7]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des([-1, 5, -4, -1, 1, 5]),2)),2),3)",
    "io_inp": [
      -1,
      5,
      -4,
      -1,
      1,
      5
    ],
    "io_out": [
      11,
      11,
      3,
      -1,
      -1,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(add_n(sort_des(input),2)),2),3)"
  },
  {
    "input": "input : list = [-5, -2, -3, 4, 2, -1]\noutput : list = [-1, 2]",
    "output": "generated_output : list = take(take(take(take(reverse([-5, -2, -3, 4, 2, -1]),21),9),31),2)",
    "io_inp": [
      -5,
      -2,
      -3,
      4,
      2,
      -1
    ],
    "io_out": [
      -1,
      2
    ],
    "output_masked": "generated_output : list = take(take(take(take(reverse(input),21),9),31),2)"
  },
  {
    "input": "input : list = [-4, 3, -4]\noutput : list = [-3, -3, 4]",
    "output": "generated_output : list = add_n(sort_asc(reverse(take(sort_des([-4, 3, -4]),17))),1)",
    "io_inp": [
      -4,
      3,
      -4
    ],
    "io_out": [
      -3,
      -3,
      4
    ],
    "output_masked": "generated_output : list = add_n(sort_asc(reverse(take(sort_des(input),17))),1)"
  },
  {
    "input": "input : list = [-3, -5, 3]\noutput : list = [0]",
    "output": "generated_output : list = mul_n(take(drop(sub_n([-3, -5, 3],3),2),26),3)",
    "io_inp": [
      -3,
      -5,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = mul_n(take(drop(sub_n(input,3),2),26),3)"
  },
  {
    "input": "input : list = [-2, 5, 0, 1, -2, -4]\noutput : list = [7, 1, 1, -5, -8, -20]",
    "output": "generated_output : list = sort_des(sub_n(sort_asc(mul_n([-2, 5, 0, 1, -2, -4],-3)),5))",
    "io_inp": [
      -2,
      5,
      0,
      1,
      -2,
      -4
    ],
    "io_out": [
      7,
      1,
      1,
      -5,
      -8,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_asc(mul_n(input,-3)),5))"
  },
  {
    "input": "input : list = [0, 0, 3, 0, 1, -5]\noutput : list = [-2, -2]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(take([0, 0, 3, 0, 1, -5],2),2),9)),43)",
    "io_inp": [
      0,
      0,
      3,
      0,
      1,
      -5
    ],
    "io_out": [
      -2,
      -2
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(take(input,2),2),9)),43)"
  },
  {
    "input": "input : list = [1, -5, 3, 0, 0, 2]\noutput : list = [5, -1, 7, 4, 4, 6]",
    "output": "generated_output : list = add_n([1, -5, 3, 0, 0, 2],4)",
    "io_inp": [
      1,
      -5,
      3,
      0,
      0,
      2
    ],
    "io_out": [
      5,
      -1,
      7,
      4,
      4,
      6
    ],
    "output_masked": "generated_output : list = add_n(input,4)"
  },
  {
    "input": "input : list = [2, 5, 0, -4, -1]\noutput : list = [2, 5, 0]",
    "output": "generated_output : list = take(take(take([2, 5, 0, -4, -1],3),6),31)",
    "io_inp": [
      2,
      5,
      0,
      -4,
      -1
    ],
    "io_out": [
      2,
      5,
      0
    ],
    "output_masked": "generated_output : list = take(take(take(input,3),6),31)"
  },
  {
    "input": "input : list = [-2, 1, -4, -5]\noutput : list = [-8, -7, -5, -2]",
    "output": "generated_output : list = sort_asc(sub_n([-2, 1, -4, -5],3))",
    "io_inp": [
      -2,
      1,
      -4,
      -5
    ],
    "io_out": [
      -8,
      -7,
      -5,
      -2
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(input,3))"
  },
  {
    "input": "input : list = [5, 5]\noutput : list = [9, 9]",
    "output": "generated_output : list = sort_asc(reverse(reverse(sub_n(sort_asc([5, 5]),-4))))",
    "io_inp": [
      5,
      5
    ],
    "io_out": [
      9,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(reverse(sub_n(sort_asc(input),-4))))"
  },
  {
    "input": "input : list = [-4, 4]\noutput : list = [-19, 21]",
    "output": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse([-4, 4]),-5),-1),25))",
    "io_inp": [
      -4,
      4
    ],
    "io_out": [
      -19,
      21
    ],
    "output_masked": "generated_output : list = sort_asc(take(sub_n(mul_n(reverse(input),-5),-1),25))"
  },
  {
    "input": "input : list = [-2, 2, 0, 4]\noutput : list = [7, 1, -5, -11]",
    "output": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc([-2, 2, 0, 4]),3),-3)),-2)",
    "io_inp": [
      -2,
      2,
      0,
      4
    ],
    "io_out": [
      7,
      1,
      -5,
      -11
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(mul_n(sort_asc(input),3),-3)),-2)"
  },
  {
    "input": "input : list = [-2, 5, -4, 0, 2]\noutput : list = [2, 0, -4, 5, -2]",
    "output": "generated_output : list = reverse([-2, 5, -4, 0, 2])",
    "io_inp": [
      -2,
      5,
      -4,
      0,
      2
    ],
    "io_out": [
      2,
      0,
      -4,
      5,
      -2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [-3, -4, -5, 1, 4, 5]\noutput : list = [-7, -6, -5, -1, 2, 3]",
    "output": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_asc([-3, -4, -5, 1, 4, 5]),-4),-2)))",
    "io_inp": [
      -3,
      -4,
      -5,
      1,
      4,
      5
    ],
    "io_out": [
      -7,
      -6,
      -5,
      -1,
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sub_n(add_n(sort_asc(input),-4),-2)))"
  },
  {
    "input": "input : list = [2, 4, 0, 1, -1, 4]\noutput : list = [2, 4, 0, 1, -1, 4]",
    "output": "generated_output : list = mul_n(reverse(mul_n(reverse([2, 4, 0, 1, -1, 4]),-1)),-1)",
    "io_inp": [
      2,
      4,
      0,
      1,
      -1,
      4
    ],
    "io_out": [
      2,
      4,
      0,
      1,
      -1,
      4
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(reverse(input),-1)),-1)"
  },
  {
    "input": "input : list = [-5, 0, 3]\noutput : list = [3]",
    "output": "generated_output : list = sort_asc(take(take(take(sort_des([-5, 0, 3]),5),1),27))",
    "io_inp": [
      -5,
      0,
      3
    ],
    "io_out": [
      3
    ],
    "output_masked": "generated_output : list = sort_asc(take(take(take(sort_des(input),5),1),27))"
  },
  {
    "input": "input : list = [5, 4, 3, -5, 4, 1]\noutput : list = [5, 4, 4, 3, 1, -5]",
    "output": "generated_output : list = sort_des([5, 4, 3, -5, 4, 1])",
    "io_inp": [
      5,
      4,
      3,
      -5,
      4,
      1
    ],
    "io_out": [
      5,
      4,
      4,
      3,
      1,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [0, -1, -4, -5, -5, -5]\noutput : list = [-5, -5, -5, -4, -1, 0]",
    "output": "generated_output : list = take(sort_asc(reverse(sort_des(sort_asc([0, -1, -4, -5, -5, -5])))),8)",
    "io_inp": [
      0,
      -1,
      -4,
      -5,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      -5,
      -4,
      -1,
      0
    ],
    "output_masked": "generated_output : list = take(sort_asc(reverse(sort_des(sort_asc(input)))),8)"
  },
  {
    "input": "input : list = [3, 4, 4, -4, -3, -5]\noutput : list = [-5, -4, -3, 3, 4, 4]",
    "output": "generated_output : list = reverse(sort_des(sort_des([3, 4, 4, -4, -3, -5])))",
    "io_inp": [
      3,
      4,
      4,
      -4,
      -3,
      -5
    ],
    "io_out": [
      -5,
      -4,
      -3,
      3,
      4,
      4
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [2, 5, 2, -1]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(sub_n(mul_n(take(take([2, 5, 2, -1],1),17),-3),-1))",
    "io_inp": [
      2,
      5,
      2,
      -1
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(mul_n(take(take(input,1),17),-3),-1))"
  },
  {
    "input": "input : list = [1, -1, 2, 2, -4, -1]\noutput : list = [-45, -180, 90, 90, -45, 45]",
    "output": "generated_output : list = mul_n(reverse(take(mul_n(mul_n([1, -1, 2, 2, -4, -1],3),-3),27)),-5)",
    "io_inp": [
      1,
      -1,
      2,
      2,
      -4,
      -1
    ],
    "io_out": [
      -45,
      -180,
      90,
      90,
      -45,
      45
    ],
    "output_masked": "generated_output : list = mul_n(reverse(take(mul_n(mul_n(input,3),-3),27)),-5)"
  },
  {
    "input": "input : list = [-4, 4, 1, -2, -1]\noutput : list = [-4, -2, -1, 1, 4]",
    "output": "generated_output : list = sort_asc(sort_des(take(sort_asc(sort_des([-4, 4, 1, -2, -1])),14)))",
    "io_inp": [
      -4,
      4,
      1,
      -2,
      -1
    ],
    "io_out": [
      -4,
      -2,
      -1,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(sort_asc(sort_des(input)),14)))"
  },
  {
    "input": "input : list = [5, -2, 3, 0, 0]\noutput : list = [5]",
    "output": "generated_output : list = take([5, -2, 3, 0, 0],1)",
    "io_inp": [
      5,
      -2,
      3,
      0,
      0
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = take(input,1)"
  },
  {
    "input": "input : list = [1, -3, -4, 4]\noutput : list = [-4, -3, 1, 4]",
    "output": "generated_output : list = sort_asc([1, -3, -4, 4])",
    "io_inp": [
      1,
      -3,
      -4,
      4
    ],
    "io_out": [
      -4,
      -3,
      1,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [2, 3, 4]\noutput : list = [4, 3, 2]",
    "output": "generated_output : list = take(take(sort_des(sort_asc(sort_des([2, 3, 4]))),19),33)",
    "io_inp": [
      2,
      3,
      4
    ],
    "io_out": [
      4,
      3,
      2
    ],
    "output_masked": "generated_output : list = take(take(sort_des(sort_asc(sort_des(input))),19),33)"
  },
  {
    "input": "input : list = [2, 5, 5]\noutput : list = [6, 6]",
    "output": "generated_output : list = sub_n(drop([2, 5, 5],1),-1)",
    "io_inp": [
      2,
      5,
      5
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sub_n(drop(input,1),-1)"
  },
  {
    "input": "input : list = [-2, -1, 3, 3, 1, 0]\noutput : list = [3, 4, 5, 6, 8, 8]",
    "output": "generated_output : list = sort_asc(add_n([-2, -1, 3, 3, 1, 0],5))",
    "io_inp": [
      -2,
      -1,
      3,
      3,
      1,
      0
    ],
    "io_out": [
      3,
      4,
      5,
      6,
      8,
      8
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(input,5))"
  },
  {
    "input": "input : list = [4, 3, 3, 1]\noutput : list = [10, 18, 18, 22]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(mul_n([4, 3, 3, 1],4),5)),-2),4)",
    "io_inp": [
      4,
      3,
      3,
      1
    ],
    "io_out": [
      10,
      18,
      18,
      22
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(mul_n(input,4),5)),-2),4)"
  },
  {
    "input": "input : list = [-5, -4, 2, -4]\noutput : list = [-32, -24, 24, -24]",
    "output": "generated_output : list = mul_n(add_n(mul_n([-5, -4, 2, -4],-4),-4),-2)",
    "io_inp": [
      -5,
      -4,
      2,
      -4
    ],
    "io_out": [
      -32,
      -24,
      24,
      -24
    ],
    "output_masked": "generated_output : list = mul_n(add_n(mul_n(input,-4),-4),-2)"
  },
  {
    "input": "input : list = [4, 3, 0, -1, 4, 5]\noutput : list = [3, 0, -1, 4, 5]",
    "output": "generated_output : list = drop([4, 3, 0, -1, 4, 5],1)",
    "io_inp": [
      4,
      3,
      0,
      -1,
      4,
      5
    ],
    "io_out": [
      3,
      0,
      -1,
      4,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-2, 3, -5, -3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = take(sort_des(drop([-2, 3, -5, -3, -1],3)),35)",
    "io_inp": [
      -2,
      3,
      -5,
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = take(sort_des(drop(input,3)),35)"
  },
  {
    "input": "input : list = [-5, 4, 3, -5, -2, -3]\noutput : list = [-5, -5, -3, -2, 3, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, 4, 3, -5, -2, -3]))",
    "io_inp": [
      -5,
      4,
      3,
      -5,
      -2,
      -3
    ],
    "io_out": [
      -5,
      -5,
      -3,
      -2,
      3,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [2, 4, -3, 2, -2]\noutput : list = [9, 10, 14, 14, 16]",
    "output": "generated_output : list = sub_n(take(sub_n(sort_asc(add_n([2, 4, -3, 2, -2],4)),-5),16),-3)",
    "io_inp": [
      2,
      4,
      -3,
      2,
      -2
    ],
    "io_out": [
      9,
      10,
      14,
      14,
      16
    ],
    "output_masked": "generated_output : list = sub_n(take(sub_n(sort_asc(add_n(input,4)),-5),16),-3)"
  },
  {
    "input": "input : list = [1, 2]\noutput : list = [6, 7]",
    "output": "generated_output : list = sub_n(sub_n(add_n([1, 2],2),-5),2)",
    "io_inp": [
      1,
      2
    ],
    "io_out": [
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(add_n(input,2),-5),2)"
  },
  {
    "input": "input : list = [2, -2, 0]\noutput : list = [2, 0, -2]",
    "output": "generated_output : list = sort_des([2, -2, 0])",
    "io_inp": [
      2,
      -2,
      0
    ],
    "io_out": [
      2,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -4, -5, -2, -1]\noutput : list = [3, 4, 6, 6, 7]",
    "output": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_asc([-4, -4, -5, -2, -1]),-1)),-4),2)",
    "io_inp": [
      -4,
      -4,
      -5,
      -2,
      -1
    ],
    "io_out": [
      3,
      4,
      6,
      6,
      7
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(mul_n(sort_asc(input),-1)),-4),2)"
  },
  {
    "input": "input : list = [-5, 1, 5, 0, 2]\noutput : list = [0, -15, -18, -21, -30]",
    "output": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sub_n([-5, 1, 5, 0, 2],-5)))),-3)",
    "io_inp": [
      -5,
      1,
      5,
      0,
      2
    ],
    "io_out": [
      0,
      -15,
      -18,
      -21,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_des(reverse(sub_n(input,-5)))),-3)"
  },
  {
    "input": "input : list = [-2, -2, 3, -3, -2]\noutput : list = [-2, -7, -7, -7, -8]",
    "output": "generated_output : list = sort_des(add_n([-2, -2, 3, -3, -2],-5))",
    "io_inp": [
      -2,
      -2,
      3,
      -3,
      -2
    ],
    "io_out": [
      -2,
      -7,
      -7,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,-5))"
  },
  {
    "input": "input : list = [-5, 1, 2, 0]\noutput : list = [-4, 20, 24, 16]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sub_n([-5, 1, 2, 0],-3),-3),-3),5),4)",
    "io_inp": [
      -5,
      1,
      2,
      0
    ],
    "io_out": [
      -4,
      20,
      24,
      16
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sub_n(input,-3),-3),-3),5),4)"
  },
  {
    "input": "input : list = [-4, 1, 3, -1]\noutput : list = [3, 1, -1, -4]",
    "output": "generated_output : list = sort_des([-4, 1, 3, -1])",
    "io_inp": [
      -4,
      1,
      3,
      -1
    ],
    "io_out": [
      3,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [5, 1]\noutput : list = [-4, 0]",
    "output": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sub_n([5, 1],5)))),1)",
    "io_inp": [
      5,
      1
    ],
    "io_out": [
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(sort_asc(sort_des(sub_n(input,5)))),1)"
  },
  {
    "input": "input : list = [4, -3, 4, 5, -3, 3]\noutput : list = [-3, -3, 3, 4, 4, 5]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(reverse([4, -3, 4, 5, -3, 3])),24)))",
    "io_inp": [
      4,
      -3,
      4,
      5,
      -3,
      3
    ],
    "io_out": [
      -3,
      -3,
      3,
      4,
      4,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(reverse(input)),24)))"
  },
  {
    "input": "input : list = [-5, -3, 2, -1, 2, -1]\noutput : list = [-5, -3, -1, -1, 2, 2]",
    "output": "generated_output : list = sort_asc(sort_asc([-5, -3, 2, -1, 2, -1]))",
    "io_inp": [
      -5,
      -3,
      2,
      -1,
      2,
      -1
    ],
    "io_out": [
      -5,
      -3,
      -1,
      -1,
      2,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-2, 3, -2, 5, -2]\noutput : list = [-2, 3]",
    "output": "generated_output : list = take([-2, 3, -2, 5, -2],2)",
    "io_inp": [
      -2,
      3,
      -2,
      5,
      -2
    ],
    "io_out": [
      -2,
      3
    ],
    "output_masked": "generated_output : list = take(input,2)"
  },
  {
    "input": "input : list = [-4, -1, 2, -5, -4, -2]\noutput : list = [-7, -6, -6, -4, -3, 0]",
    "output": "generated_output : list = add_n(reverse(sub_n(sort_des([-4, -1, 2, -5, -4, -2]),3)),1)",
    "io_inp": [
      -4,
      -1,
      2,
      -5,
      -4,
      -2
    ],
    "io_out": [
      -7,
      -6,
      -6,
      -4,
      -3,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(sort_des(input),3)),1)"
  },
  {
    "input": "input : list = [1, -5, 5, -2, -2, 1]\noutput : list = [-3, -6, -6, 1, -9, -3]",
    "output": "generated_output : list = sub_n(reverse([1, -5, 5, -2, -2, 1]),4)",
    "io_inp": [
      1,
      -5,
      5,
      -2,
      -2,
      1
    ],
    "io_out": [
      -3,
      -6,
      -6,
      1,
      -9,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),4)"
  },
  {
    "input": "input : list = [3, 1]\noutput : list = [3, 7]",
    "output": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sort_asc([3, 1]),2)),-3),-4)",
    "io_inp": [
      3,
      1
    ],
    "io_out": [
      3,
      7
    ],
    "output_masked": "generated_output : list = sub_n(add_n(sort_asc(mul_n(sort_asc(input),2)),-3),-4)"
  },
  {
    "input": "input : list = [1, -3, 3, 1, -2]\noutput : list = [-8, -7, -4, -2]",
    "output": "generated_output : list = reverse(take(sort_des(add_n(drop([1, -3, 3, 1, -2],1),-5)),17))",
    "io_inp": [
      1,
      -3,
      3,
      1,
      -2
    ],
    "io_out": [
      -8,
      -7,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(add_n(drop(input,1),-5)),17))"
  },
  {
    "input": "input : list = [-2, -5, -5]\noutput : list = [9, -6, -6]",
    "output": "generated_output : list = add_n(mul_n(add_n([-2, -5, -5],4),5),-1)",
    "io_inp": [
      -2,
      -5,
      -5
    ],
    "io_out": [
      9,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,4),5),-1)"
  },
  {
    "input": "input : list = [0, 3, -2, 5]\noutput : list = [9, 7, 4, 2]",
    "output": "generated_output : list = add_n(sort_des([0, 3, -2, 5]),4)",
    "io_inp": [
      0,
      3,
      -2,
      5
    ],
    "io_out": [
      9,
      7,
      4,
      2
    ],
    "output_masked": "generated_output : list = add_n(sort_des(input),4)"
  },
  {
    "input": "input : list = [4, 3, -1, 5]\noutput : list = [3, -1, 5]",
    "output": "generated_output : list = drop([4, 3, -1, 5],1)",
    "io_inp": [
      4,
      3,
      -1,
      5
    ],
    "io_out": [
      3,
      -1,
      5
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [2, -2, -2, 2]\noutput : list = [-2, -2, -6, -6]",
    "output": "generated_output : list = add_n(add_n(reverse(add_n(sort_asc([2, -2, -2, 2]),3)),-5),-2)",
    "io_inp": [
      2,
      -2,
      -2,
      2
    ],
    "io_out": [
      -2,
      -2,
      -6,
      -6
    ],
    "output_masked": "generated_output : list = add_n(add_n(reverse(add_n(sort_asc(input),3)),-5),-2)"
  },
  {
    "input": "input : list = [-2, 3, 0]\noutput : list = [-2, 0, 3]",
    "output": "generated_output : list = reverse(sort_des(sort_des([-2, 3, 0])))",
    "io_inp": [
      -2,
      3,
      0
    ],
    "io_out": [
      -2,
      0,
      3
    ],
    "output_masked": "generated_output : list = reverse(sort_des(sort_des(input)))"
  },
  {
    "input": "input : list = [3, 4, 4, 5, -4]\noutput : list = [1, 2, 2, 3, -6]",
    "output": "generated_output : list = sub_n([3, 4, 4, 5, -4],2)",
    "io_inp": [
      3,
      4,
      4,
      5,
      -4
    ],
    "io_out": [
      1,
      2,
      2,
      3,
      -6
    ],
    "output_masked": "generated_output : list = sub_n(input,2)"
  },
  {
    "input": "input : list = [-2, -5, -2, -4, -4]\noutput : list = [-5, -2, -4, -4]",
    "output": "generated_output : list = drop([-2, -5, -2, -4, -4],1)",
    "io_inp": [
      -2,
      -5,
      -2,
      -4,
      -4
    ],
    "io_out": [
      -5,
      -2,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 1, 5, 5]\noutput : list = [1]",
    "output": "generated_output : list = take(take([1, 1, 5, 5],1),9)",
    "io_inp": [
      1,
      1,
      5,
      5
    ],
    "io_out": [
      1
    ],
    "output_masked": "generated_output : list = take(take(input,1),9)"
  },
  {
    "input": "input : list = [-2, 0, -5, 2]\noutput : list = [-4, -2]",
    "output": "generated_output : list = sub_n(take(sort_asc(drop(sort_asc([-2, 0, -5, 2]),2)),28),4)",
    "io_inp": [
      -2,
      0,
      -5,
      2
    ],
    "io_out": [
      -4,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_asc(drop(sort_asc(input),2)),28),4)"
  },
  {
    "input": "input : list = [2, 0, 3, -4]\noutput : list = [-6, -3, -10]",
    "output": "generated_output : list = add_n(add_n(take(sub_n(drop([2, 0, 3, -4],1),-1),11),-5),-2)",
    "io_inp": [
      2,
      0,
      3,
      -4
    ],
    "io_out": [
      -6,
      -3,
      -10
    ],
    "output_masked": "generated_output : list = add_n(add_n(take(sub_n(drop(input,1),-1),11),-5),-2)"
  },
  {
    "input": "input : list = [4, -4]\noutput : list = [-2, 6]",
    "output": "generated_output : list = sub_n(reverse([4, -4]),-2)",
    "io_inp": [
      4,
      -4
    ],
    "io_out": [
      -2,
      6
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [1, -2, -2, 4, 4]\noutput : list = [-64, -64, -16, 32, 32]",
    "output": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_asc([1, -2, -2, 4, 4]),-4),4)))",
    "io_inp": [
      1,
      -2,
      -2,
      4,
      4
    ],
    "io_out": [
      -64,
      -64,
      -16,
      32,
      32
    ],
    "output_masked": "generated_output : list = sort_asc(reverse(mul_n(mul_n(sort_asc(input),-4),4)))"
  },
  {
    "input": "input : list = [-1, 3, 5]\noutput : list = [5, 3, -1]",
    "output": "generated_output : list = sort_des(take(take(sort_des(sort_des([-1, 3, 5])),22),24))",
    "io_inp": [
      -1,
      3,
      5
    ],
    "io_out": [
      5,
      3,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(take(take(sort_des(sort_des(input)),22),24))"
  },
  {
    "input": "input : list = [0, -5, 0]\noutput : list = [-2, -2, -12]",
    "output": "generated_output : list = sort_des(add_n(mul_n([0, -5, 0],2),-2))",
    "io_inp": [
      0,
      -5,
      0
    ],
    "io_out": [
      -2,
      -2,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(mul_n(input,2),-2))"
  },
  {
    "input": "input : list = [1, 1, -2, -3]\noutput : list = [-2, -3]",
    "output": "generated_output : list = drop([1, 1, -2, -3],2)",
    "io_inp": [
      1,
      1,
      -2,
      -3
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,2)"
  },
  {
    "input": "input : list = [3, 4, -4, -2]\noutput : list = [-3, -1]",
    "output": "generated_output : list = add_n(take(drop([3, 4, -4, -2],2),19),1)",
    "io_inp": [
      3,
      4,
      -4,
      -2
    ],
    "io_out": [
      -3,
      -1
    ],
    "output_masked": "generated_output : list = add_n(take(drop(input,2),19),1)"
  },
  {
    "input": "input : list = [-3, 3, 4, -3, 0]\noutput : list = [-6, 0, 1, -6, -3]",
    "output": "generated_output : list = sub_n(add_n([-3, 3, 4, -3, 0],2),5)",
    "io_inp": [
      -3,
      3,
      4,
      -3,
      0
    ],
    "io_out": [
      -6,
      0,
      1,
      -6,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),5)"
  },
  {
    "input": "input : list = [2, 3, 0]\noutput : list = [5, -1, 1]",
    "output": "generated_output : list = reverse(add_n(mul_n([2, 3, 0],-2),5))",
    "io_inp": [
      2,
      3,
      0
    ],
    "io_out": [
      5,
      -1,
      1
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(input,-2),5))"
  },
  {
    "input": "input : list = [0, 1, -2, 3]\noutput : list = [0]",
    "output": "generated_output : list = reverse(take(reverse(reverse(take([0, 1, -2, 3],1))),10))",
    "io_inp": [
      0,
      1,
      -2,
      3
    ],
    "io_out": [
      0
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(reverse(take(input,1))),10))"
  },
  {
    "input": "input : list = [-3, -2, 2, -4, -5]\noutput : list = [2, -2, -3, -4, -5]",
    "output": "generated_output : list = sort_des(take(reverse(reverse(sort_asc([-3, -2, 2, -4, -5]))),29))",
    "io_inp": [
      -3,
      -2,
      2,
      -4,
      -5
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(reverse(reverse(sort_asc(input))),29))"
  },
  {
    "input": "input : list = [0, -2, 0]\noutput : list = [12, 8, 12]",
    "output": "generated_output : list = add_n(mul_n(add_n([0, -2, 0],4),2),4)",
    "io_inp": [
      0,
      -2,
      0
    ],
    "io_out": [
      12,
      8,
      12
    ],
    "output_masked": "generated_output : list = add_n(mul_n(add_n(input,4),2),4)"
  },
  {
    "input": "input : list = [-1, 3, -2, -1]\noutput : list = [-1, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(take(sort_asc(take([-1, 3, -2, -1],2)),5)))",
    "io_inp": [
      -1,
      3,
      -2,
      -1
    ],
    "io_out": [
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(take(sort_asc(take(input,2)),5)))"
  },
  {
    "input": "input : list = [-4, -4, 3]\noutput : list = [8, -20, -20]",
    "output": "generated_output : list = sort_des(mul_n(add_n([-4, -4, 3],-1),4))",
    "io_inp": [
      -4,
      -4,
      3
    ],
    "io_out": [
      8,
      -20,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(input,-1),4))"
  },
  {
    "input": "input : list = [-2, -4, 2]\noutput : list = [-6, 12, 6]",
    "output": "generated_output : list = reverse(mul_n([-2, -4, 2],-3))",
    "io_inp": [
      -2,
      -4,
      2
    ],
    "io_out": [
      -6,
      12,
      6
    ],
    "output_masked": "generated_output : list = reverse(mul_n(input,-3))"
  },
  {
    "input": "input : list = [-3, 4, 1, 3]\noutput : list = [-4, -3, -1, 3]",
    "output": "generated_output : list = sort_asc(mul_n([-3, 4, 1, 3],-1))",
    "io_inp": [
      -3,
      4,
      1,
      3
    ],
    "io_out": [
      -4,
      -3,
      -1,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(input,-1))"
  },
  {
    "input": "input : list = [-4, 0, -5, -3]\noutput : list = [-18, -36, 9, -27]",
    "output": "generated_output : list = mul_n(reverse(mul_n(sub_n(sub_n([-4, 0, -5, -3],-3),2),3)),3)",
    "io_inp": [
      -4,
      0,
      -5,
      -3
    ],
    "io_out": [
      -18,
      -36,
      9,
      -27
    ],
    "output_masked": "generated_output : list = mul_n(reverse(mul_n(sub_n(sub_n(input,-3),2),3)),3)"
  },
  {
    "input": "input : list = [0, -3, -2, 2, 0, -5]\noutput : list = [-5, -3, -2, 0, 0, 2]",
    "output": "generated_output : list = sort_asc([0, -3, -2, 2, 0, -5])",
    "io_inp": [
      0,
      -3,
      -2,
      2,
      0,
      -5
    ],
    "io_out": [
      -5,
      -3,
      -2,
      0,
      0,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [4, -1, 1, 0, 2, -3]\noutput : list = [-2, 0, 1, 2, 3, 5]",
    "output": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_des([4, -1, 1, 0, 2, -3])),-1),2))",
    "io_inp": [
      4,
      -1,
      1,
      0,
      2,
      -3
    ],
    "io_out": [
      -2,
      0,
      1,
      2,
      3,
      5
    ],
    "output_masked": "generated_output : list = reverse(add_n(mul_n(sort_asc(sort_des(input)),-1),2))"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [-15]",
    "output": "generated_output : list = sort_des(mul_n(sort_des(drop(sort_des([4, -3]),1)),5))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      -15
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(sort_des(drop(sort_des(input),1)),5))"
  },
  {
    "input": "input : list = [-3, -3, -5, 3, -2]\noutput : list = [-3, 2, -6, -4, -4]",
    "output": "generated_output : list = reverse(reverse(sub_n(reverse([-3, -3, -5, 3, -2]),1)))",
    "io_inp": [
      -3,
      -3,
      -5,
      3,
      -2
    ],
    "io_out": [
      -3,
      2,
      -6,
      -4,
      -4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(reverse(input),1)))"
  },
  {
    "input": "input : list = [3, -5, 1, 1, -4, 3]\noutput : list = [3, -5]",
    "output": "generated_output : list = sort_des(take([3, -5, 1, 1, -4, 3],2))",
    "io_inp": [
      3,
      -5,
      1,
      1,
      -4,
      3
    ],
    "io_out": [
      3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(input,2))"
  },
  {
    "input": "input : list = [2, 5, -2, 1, 3]\noutput : list = [0, 15, -20, -5, 5]",
    "output": "generated_output : list = mul_n(take(sub_n(take(add_n([2, 5, -2, 1, 3],-4),12),-2),19),5)",
    "io_inp": [
      2,
      5,
      -2,
      1,
      3
    ],
    "io_out": [
      0,
      15,
      -20,
      -5,
      5
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(take(add_n(input,-4),12),-2),19),5)"
  },
  {
    "input": "input : list = [4, -3]\noutput : list = [0, 7]",
    "output": "generated_output : list = reverse(reverse(take(reverse(sub_n([4, -3],-3)),5)))",
    "io_inp": [
      4,
      -3
    ],
    "io_out": [
      0,
      7
    ],
    "output_masked": "generated_output : list = reverse(reverse(take(reverse(sub_n(input,-3)),5)))"
  },
  {
    "input": "input : list = [-1, -5, 3, 3, -3]\noutput : list = [60, 60, -20, -60, -100]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n([-1, -5, 3, 3, -3],-5)),-4)",
    "io_inp": [
      -1,
      -5,
      3,
      3,
      -3
    ],
    "io_out": [
      60,
      60,
      -20,
      -60,
      -100
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(input,-5)),-4)"
  },
  {
    "input": "input : list = [-5, 4, -4, 2, 4]\noutput : list = [-33, -33, -17, 31]",
    "output": "generated_output : list = sub_n(mul_n(mul_n(sort_des(drop([-5, 4, -4, 2, 4],1)),-2),4),1)",
    "io_inp": [
      -5,
      4,
      -4,
      2,
      4
    ],
    "io_out": [
      -33,
      -33,
      -17,
      31
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(mul_n(sort_des(drop(input,1)),-2),4),1)"
  },
  {
    "input": "input : list = [-1, 2, -1, -4]\noutput : list = [2, -1, -1, -4]",
    "output": "generated_output : list = reverse(sort_asc(reverse([-1, 2, -1, -4])))",
    "io_inp": [
      -1,
      2,
      -1,
      -4
    ],
    "io_out": [
      2,
      -1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(input)))"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-12, -21]",
    "output": "generated_output : list = mul_n(sub_n(reverse([-3, 0]),4),3)",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -12,
      -21
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(reverse(input),4),3)"
  },
  {
    "input": "input : list = [5, -5, 1, -3, 0, 5]\noutput : list = [13, 8, 5, 9, 3, 13]",
    "output": "generated_output : list = add_n(sub_n(reverse(take(sub_n([5, -5, 1, -3, 0, 5],-2),23)),-2),4)",
    "io_inp": [
      5,
      -5,
      1,
      -3,
      0,
      5
    ],
    "io_out": [
      13,
      8,
      5,
      9,
      3,
      13
    ],
    "output_masked": "generated_output : list = add_n(sub_n(reverse(take(sub_n(input,-2),23)),-2),4)"
  },
  {
    "input": "input : list = [1, -5]\noutput : list = [6, 0]",
    "output": "generated_output : list = add_n(reverse(add_n(reverse(add_n([1, -5],-1)),4)),2)",
    "io_inp": [
      1,
      -5
    ],
    "io_out": [
      6,
      0
    ],
    "output_masked": "generated_output : list = add_n(reverse(add_n(reverse(add_n(input,-1)),4)),2)"
  },
  {
    "input": "input : list = [-4, -2, -1, 5]\noutput : list = [-4, -2, -1, 5]",
    "output": "generated_output : list = mul_n([-4, -2, -1, 5],1)",
    "io_inp": [
      -4,
      -2,
      -1,
      5
    ],
    "io_out": [
      -4,
      -2,
      -1,
      5
    ],
    "output_masked": "generated_output : list = mul_n(input,1)"
  },
  {
    "input": "input : list = [4, -3, -1, -4, 0, 5]\noutput : list = [20, -15, -5, -20, 0, 25]",
    "output": "generated_output : list = mul_n([4, -3, -1, -4, 0, 5],5)",
    "io_inp": [
      4,
      -3,
      -1,
      -4,
      0,
      5
    ],
    "io_out": [
      20,
      -15,
      -5,
      -20,
      0,
      25
    ],
    "output_masked": "generated_output : list = mul_n(input,5)"
  },
  {
    "input": "input : list = [2, -4, -5, -4]\noutput : list = [75, 60, 60, -30]",
    "output": "generated_output : list = mul_n(mul_n(sort_asc([2, -4, -5, -4]),5),-3)",
    "io_inp": [
      2,
      -4,
      -5,
      -4
    ],
    "io_out": [
      75,
      60,
      60,
      -30
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(sort_asc(input),5),-3)"
  },
  {
    "input": "input : list = [-2, 1, 2, 4, -4]\noutput : list = [-5, 3, 1, 0, -3]",
    "output": "generated_output : list = sub_n(reverse([-2, 1, 2, 4, -4]),1)",
    "io_inp": [
      -2,
      1,
      2,
      4,
      -4
    ],
    "io_out": [
      -5,
      3,
      1,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(reverse(input),1)"
  },
  {
    "input": "input : list = [3, 5, -3, -2]\noutput : list = [-8, -7, -2, 0]",
    "output": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sort_asc([3, 5, -3, -2]))),-5))",
    "io_inp": [
      3,
      5,
      -3,
      -2
    ],
    "io_out": [
      -8,
      -7,
      -2,
      0
    ],
    "output_masked": "generated_output : list = sort_asc(add_n(sort_asc(sort_des(sort_asc(input))),-5))"
  },
  {
    "input": "input : list = [-3, 2, 1, 3]\noutput : list = [-9, -7, -5, 3]",
    "output": "generated_output : list = take(sub_n(reverse(sort_des(mul_n([-3, 2, 1, 3],-2))),3),7)",
    "io_inp": [
      -3,
      2,
      1,
      3
    ],
    "io_out": [
      -9,
      -7,
      -5,
      3
    ],
    "output_masked": "generated_output : list = take(sub_n(reverse(sort_des(mul_n(input,-2))),3),7)"
  },
  {
    "input": "input : list = [-3, 2, -5, 4, 3]\noutput : list = [5, 4, 3, -4]",
    "output": "generated_output : list = add_n(sort_des(reverse(reverse(drop([-3, 2, -5, 4, 3],1)))),1)",
    "io_inp": [
      -3,
      2,
      -5,
      4,
      3
    ],
    "io_out": [
      5,
      4,
      3,
      -4
    ],
    "output_masked": "generated_output : list = add_n(sort_des(reverse(reverse(drop(input,1)))),1)"
  },
  {
    "input": "input : list = [1, -3, -1, 0, 0, 1]\noutput : list = [2, 2, 1, 1, 0, -2]",
    "output": "generated_output : list = sort_des(add_n([1, -3, -1, 0, 0, 1],1))",
    "io_inp": [
      1,
      -3,
      -1,
      0,
      0,
      1
    ],
    "io_out": [
      2,
      2,
      1,
      1,
      0,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(add_n(input,1))"
  },
  {
    "input": "input : list = [-4, 2, 1, 2, 5, 0]\noutput : list = [1, 7, 6, 7, 10, 5]",
    "output": "generated_output : list = add_n([-4, 2, 1, 2, 5, 0],5)",
    "io_inp": [
      -4,
      2,
      1,
      2,
      5,
      0
    ],
    "io_out": [
      1,
      7,
      6,
      7,
      10,
      5
    ],
    "output_masked": "generated_output : list = add_n(input,5)"
  },
  {
    "input": "input : list = [1, 5, -4]\noutput : list = [-1, 3, -6]",
    "output": "generated_output : list = add_n([1, 5, -4],-2)",
    "io_inp": [
      1,
      5,
      -4
    ],
    "io_out": [
      -1,
      3,
      -6
    ],
    "output_masked": "generated_output : list = add_n(input,-2)"
  },
  {
    "input": "input : list = [-1, 0, 3, 3, -4, -1]\noutput : list = [9, -3, -12]",
    "output": "generated_output : list = sort_des(mul_n(drop([-1, 0, 3, 3, -4, -1],3),3))",
    "io_inp": [
      -1,
      0,
      3,
      3,
      -4,
      -1
    ],
    "io_out": [
      9,
      -3,
      -12
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(drop(input,3),3))"
  },
  {
    "input": "input : list = [1, 5]\noutput : list = [95, 15]",
    "output": "generated_output : list = take(mul_n(sort_asc(add_n(mul_n([1, 5],-4),1)),-5),5)",
    "io_inp": [
      1,
      5
    ],
    "io_out": [
      95,
      15
    ],
    "output_masked": "generated_output : list = take(mul_n(sort_asc(add_n(mul_n(input,-4),1)),-5),5)"
  },
  {
    "input": "input : list = [-5, -1, 4, 3, 4]\noutput : list = [-2]",
    "output": "generated_output : list = sub_n(mul_n(reverse(take([-5, -1, 4, 3, 4],1)),1),-3)",
    "io_inp": [
      -5,
      -1,
      4,
      3,
      4
    ],
    "io_out": [
      -2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(reverse(take(input,1)),1),-3)"
  },
  {
    "input": "input : list = [-3, 1, -3, -5]\noutput : list = [-1, 7, -1, -5]",
    "output": "generated_output : list = add_n(mul_n([-3, 1, -3, -5],2),5)",
    "io_inp": [
      -3,
      1,
      -3,
      -5
    ],
    "io_out": [
      -1,
      7,
      -1,
      -5
    ],
    "output_masked": "generated_output : list = add_n(mul_n(input,2),5)"
  },
  {
    "input": "input : list = [-3, 0]\noutput : list = [-2, -5]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(add_n(add_n([-3, 0],2),-4))))",
    "io_inp": [
      -3,
      0
    ],
    "io_out": [
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(add_n(add_n(input,2),-4))))"
  },
  {
    "input": "input : list = [-1, 2, 3]\noutput : list = [-6, 3, 6]",
    "output": "generated_output : list = mul_n(sub_n(add_n(take(sort_asc([-1, 2, 3]),3),4),5),3)",
    "io_inp": [
      -1,
      2,
      3
    ],
    "io_out": [
      -6,
      3,
      6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(add_n(take(sort_asc(input),3),4),5),3)"
  },
  {
    "input": "input : list = [-3, -1]\noutput : list = [-1, -3]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sort_asc([-3, -1])))))",
    "io_inp": [
      -3,
      -1
    ],
    "io_out": [
      -1,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(sort_asc(sort_asc(input)))))"
  },
  {
    "input": "input : list = [-2, -1, 1, -4, -2]\noutput : list = [-2, -3]",
    "output": "generated_output : list = sort_des(sub_n(sort_des(take(take([-2, -1, 1, -4, -2],2),11)),1))",
    "io_inp": [
      -2,
      -1,
      1,
      -4,
      -2
    ],
    "io_out": [
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(sub_n(sort_des(take(take(input,2),11)),1))"
  },
  {
    "input": "input : list = [-3, -4, 3]\noutput : list = [1, -6, -5]",
    "output": "generated_output : list = add_n(reverse([-3, -4, 3]),-2)",
    "io_inp": [
      -3,
      -4,
      3
    ],
    "io_out": [
      1,
      -6,
      -5
    ],
    "output_masked": "generated_output : list = add_n(reverse(input),-2)"
  },
  {
    "input": "input : list = [-1, 4]\noutput : list = [4, -1]",
    "output": "generated_output : list = take(sort_des(reverse(reverse(reverse([-1, 4])))),27)",
    "io_inp": [
      -1,
      4
    ],
    "io_out": [
      4,
      -1
    ],
    "output_masked": "generated_output : list = take(sort_des(reverse(reverse(reverse(input)))),27)"
  },
  {
    "input": "input : list = [-3, -4, 2, 5, -2]\noutput : list = [-4, -3, 2]",
    "output": "generated_output : list = sort_asc(take(sort_des(take([-3, -4, 2, 5, -2],3)),22))",
    "io_inp": [
      -3,
      -4,
      2,
      5,
      -2
    ],
    "io_out": [
      -4,
      -3,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_des(take(input,3)),22))"
  },
  {
    "input": "input : list = [0, 0, 3, -3]\noutput : list = [1, -2, -2, -5]",
    "output": "generated_output : list = sort_des(take(sub_n(add_n(sort_asc([0, 0, 3, -3]),1),3),25))",
    "io_inp": [
      0,
      0,
      3,
      -3
    ],
    "io_out": [
      1,
      -2,
      -2,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(take(sub_n(add_n(sort_asc(input),1),3),25))"
  },
  {
    "input": "input : list = [5, -3, 3, 4]\noutput : list = [120, -200]",
    "output": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(take([5, -3, 3, 4],2)),4),-2),5)",
    "io_inp": [
      5,
      -3,
      3,
      4
    ],
    "io_out": [
      120,
      -200
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(mul_n(sort_asc(take(input,2)),4),-2),5)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [0, 2]",
    "output": "generated_output : list = sub_n(mul_n(sort_des(reverse(reverse([-3, -5]))),-1),3)",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      0,
      2
    ],
    "output_masked": "generated_output : list = sub_n(mul_n(sort_des(reverse(reverse(input))),-1),3)"
  },
  {
    "input": "input : list = [2, 4, -5, -5]\noutput : list = [-5, -5, 4, 2]",
    "output": "generated_output : list = reverse([2, 4, -5, -5])",
    "io_inp": [
      2,
      4,
      -5,
      -5
    ],
    "io_out": [
      -5,
      -5,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [3, -2, -2, 2, 5, -2]\noutput : list = [3, 3, 7, 10]",
    "output": "generated_output : list = add_n(reverse(sort_des(sort_des(drop([3, -2, -2, 2, 5, -2],2)))),5)",
    "io_inp": [
      3,
      -2,
      -2,
      2,
      5,
      -2
    ],
    "io_out": [
      3,
      3,
      7,
      10
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_des(sort_des(drop(input,2)))),5)"
  },
  {
    "input": "input : list = [0, -1, -1, -5, -4, -4]\noutput : list = [0, 5, 5, 20, 20, 25]",
    "output": "generated_output : list = take(sort_asc(take(take(mul_n([0, -1, -1, -5, -4, -4],-5),10),32)),57)",
    "io_inp": [
      0,
      -1,
      -1,
      -5,
      -4,
      -4
    ],
    "io_out": [
      0,
      5,
      5,
      20,
      20,
      25
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(take(mul_n(input,-5),10),32)),57)"
  },
  {
    "input": "input : list = [4, 3, -2, 2, -5]\noutput : list = [4]",
    "output": "generated_output : list = sort_asc(sort_des(take([4, 3, -2, 2, -5],1)))",
    "io_inp": [
      4,
      3,
      -2,
      2,
      -5
    ],
    "io_out": [
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(take(input,1)))"
  },
  {
    "input": "input : list = [-2, 3, 2, 3]\noutput : list = [7, 11, 12, 12]",
    "output": "generated_output : list = reverse(add_n(sub_n(sub_n(sort_des([-2, 3, 2, 3]),-4),-4),1))",
    "io_inp": [
      -2,
      3,
      2,
      3
    ],
    "io_out": [
      7,
      11,
      12,
      12
    ],
    "output_masked": "generated_output : list = reverse(add_n(sub_n(sub_n(sort_des(input),-4),-4),1))"
  },
  {
    "input": "input : list = [2, 2, 1, 2]\noutput : list = [2, 4, 4]",
    "output": "generated_output : list = take(sort_asc(take(mul_n(drop([2, 2, 1, 2],1),2),24)),29)",
    "io_inp": [
      2,
      2,
      1,
      2
    ],
    "io_out": [
      2,
      4,
      4
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(mul_n(drop(input,1),2),24)),29)"
  },
  {
    "input": "input : list = [-3, -5]\noutput : list = [-3, -5]",
    "output": "generated_output : list = sort_des([-3, -5])",
    "io_inp": [
      -3,
      -5
    ],
    "io_out": [
      -3,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [2, 4, 0, 2]\noutput : list = [-1, -3, -3, -5]",
    "output": "generated_output : list = take(sort_des(add_n(take(add_n([2, 4, 0, 2],-4),6),-1)),19)",
    "io_inp": [
      2,
      4,
      0,
      2
    ],
    "io_out": [
      -1,
      -3,
      -3,
      -5
    ],
    "output_masked": "generated_output : list = take(sort_des(add_n(take(add_n(input,-4),6),-1)),19)"
  },
  {
    "input": "input : list = [0, 1, 5, -1, -4, 4]\noutput : list = [3, 4, 8, 2, -1, 7]",
    "output": "generated_output : list = add_n(sub_n(mul_n([0, 1, 5, -1, -4, 4],1),2),5)",
    "io_inp": [
      0,
      1,
      5,
      -1,
      -4,
      4
    ],
    "io_out": [
      3,
      4,
      8,
      2,
      -1,
      7
    ],
    "output_masked": "generated_output : list = add_n(sub_n(mul_n(input,1),2),5)"
  },
  {
    "input": "input : list = [-5, 5, -3, 4, -3]\noutput : list = [5, -3, 4, -3]",
    "output": "generated_output : list = drop([-5, 5, -3, 4, -3],1)",
    "io_inp": [
      -5,
      5,
      -3,
      4,
      -3
    ],
    "io_out": [
      5,
      -3,
      4,
      -3
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [1, 3, -5, 0, -4, -1]\noutput : list = [1, 3, -5, 0]",
    "output": "generated_output : list = take([1, 3, -5, 0, -4, -1],4)",
    "io_inp": [
      1,
      3,
      -5,
      0,
      -4,
      -1
    ],
    "io_out": [
      1,
      3,
      -5,
      0
    ],
    "output_masked": "generated_output : list = take(input,4)"
  },
  {
    "input": "input : list = [1, -3, -5, 3, 2]\noutput : list = [0, 2, 6, 7, 8]",
    "output": "generated_output : list = add_n(sub_n(sub_n(sort_asc(reverse([1, -3, -5, 3, 2])),-3),-4),-2)",
    "io_inp": [
      1,
      -3,
      -5,
      3,
      2
    ],
    "io_out": [
      0,
      2,
      6,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(sub_n(sub_n(sort_asc(reverse(input)),-3),-4),-2)"
  },
  {
    "input": "input : list = [1, -2, 4, 0]\noutput : list = [-92, -62, -52, -32]",
    "output": "generated_output : list = sort_asc(mul_n(add_n(mul_n(sub_n([1, -2, 4, 0],-5),-5),-1),2))",
    "io_inp": [
      1,
      -2,
      4,
      0
    ],
    "io_out": [
      -92,
      -62,
      -52,
      -32
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(add_n(mul_n(sub_n(input,-5),-5),-1),2))"
  },
  {
    "input": "input : list = [4, 5, -2, -1, -5, -2]\noutput : list = [7, 6, 1, 0, 0, -3]",
    "output": "generated_output : list = sub_n(sort_des(reverse(mul_n(reverse([4, 5, -2, -1, -5, -2]),1))),-2)",
    "io_inp": [
      4,
      5,
      -2,
      -1,
      -5,
      -2
    ],
    "io_out": [
      7,
      6,
      1,
      0,
      0,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(reverse(mul_n(reverse(input),1))),-2)"
  },
  {
    "input": "input : list = [0, 3, 5]\noutput : list = [-16, -12, -6]",
    "output": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sort_des([0, 3, 5]),-2),-4),3),-2)",
    "io_inp": [
      0,
      3,
      5
    ],
    "io_out": [
      -16,
      -12,
      -6
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(sub_n(sub_n(sort_des(input),-2),-4),3),-2)"
  },
  {
    "input": "input : list = [-5, -3, -4, -2, 2, -4]\noutput : list = [2, -2, -3, -4, -4, -5]",
    "output": "generated_output : list = sort_des([-5, -3, -4, -2, 2, -4])",
    "io_inp": [
      -5,
      -3,
      -4,
      -2,
      2,
      -4
    ],
    "io_out": [
      2,
      -2,
      -3,
      -4,
      -4,
      -5
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [18, 9]",
    "output": "generated_output : list = mul_n(take(sub_n([4, 1],-2),14),3)",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      18,
      9
    ],
    "output_masked": "generated_output : list = mul_n(take(sub_n(input,-2),14),3)"
  },
  {
    "input": "input : list = [-3, 5]\noutput : list = [7, -1]",
    "output": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sort_des([-3, 5]))),-2))",
    "io_inp": [
      -3,
      5
    ],
    "io_out": [
      7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(sort_asc(sort_asc(sort_des(input))),-2))"
  },
  {
    "input": "input : list = [-3, -1, 5, 2, 3]\noutput : list = [12, 10, 9, 6, 4]",
    "output": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n([-3, -1, 5, 2, 3],3)),-4)))",
    "io_inp": [
      -3,
      -1,
      5,
      2,
      3
    ],
    "io_out": [
      12,
      10,
      9,
      6,
      4
    ],
    "output_masked": "generated_output : list = reverse(reverse(sub_n(sort_des(add_n(input,3)),-4)))"
  },
  {
    "input": "input : list = [-1, 2, -3]\noutput : list = [-3, -1, 2]",
    "output": "generated_output : list = sort_asc(sort_asc(sort_des(take(reverse([-1, 2, -3]),13))))",
    "io_inp": [
      -1,
      2,
      -3
    ],
    "io_out": [
      -3,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(sort_des(take(reverse(input),13))))"
  },
  {
    "input": "input : list = [5, 1, -5, 1]\noutput : list = [27, -27, -27, -63]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(sub_n([5, 1, -5, 1],-2)),3),-3))",
    "io_inp": [
      5,
      1,
      -5,
      1
    ],
    "io_out": [
      27,
      -27,
      -27,
      -63
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sort_asc(sub_n(input,-2)),3),-3))"
  },
  {
    "input": "input : list = [-3, -1, 5]\noutput : list = [-6, 6]",
    "output": "generated_output : list = sort_asc(mul_n(sort_des(add_n(drop([-3, -1, 5],1),-2)),2))",
    "io_inp": [
      -3,
      -1,
      5
    ],
    "io_out": [
      -6,
      6
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sort_des(add_n(drop(input,1),-2)),2))"
  },
  {
    "input": "input : list = [-1, 0, -3]\noutput : list = [-35, -20, -25]",
    "output": "generated_output : list = take(reverse(take(mul_n(add_n([-1, 0, -3],-4),5),5)),45)",
    "io_inp": [
      -1,
      0,
      -3
    ],
    "io_out": [
      -35,
      -20,
      -25
    ],
    "output_masked": "generated_output : list = take(reverse(take(mul_n(add_n(input,-4),5),5)),45)"
  },
  {
    "input": "input : list = [5, -5, 2, 5, 1]\noutput : list = [-18, 0, 3, 12, 12]",
    "output": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc([5, -5, 2, 5, 1])),1),3))",
    "io_inp": [
      5,
      -5,
      2,
      5,
      1
    ],
    "io_out": [
      -18,
      0,
      3,
      12,
      12
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(sub_n(sort_des(sort_asc(input)),1),3))"
  },
  {
    "input": "input : list = [-5, 2, -4]\noutput : list = [200, -160, -220]",
    "output": "generated_output : list = sort_des(mul_n(mul_n(sub_n(mul_n([-5, 2, -4],3),-4),-5),-4))",
    "io_inp": [
      -5,
      2,
      -4
    ],
    "io_out": [
      200,
      -160,
      -220
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(mul_n(sub_n(mul_n(input,3),-4),-5),-4))"
  },
  {
    "input": "input : list = [-4, 2, -5]\noutput : list = [4, 11, 5]",
    "output": "generated_output : list = sub_n(sub_n(take(take(reverse([-4, 2, -5]),16),11),-4),-5)",
    "io_inp": [
      -4,
      2,
      -5
    ],
    "io_out": [
      4,
      11,
      5
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(take(reverse(input),16),11),-4),-5)"
  },
  {
    "input": "input : list = [-5, -4, 5, 4]\noutput : list = [-3, -2, 6, 7]",
    "output": "generated_output : list = add_n(take(take(sort_asc(add_n([-5, -4, 5, 4],-2)),12),31),4)",
    "io_inp": [
      -5,
      -4,
      5,
      4
    ],
    "io_out": [
      -3,
      -2,
      6,
      7
    ],
    "output_masked": "generated_output : list = add_n(take(take(sort_asc(add_n(input,-2)),12),31),4)"
  },
  {
    "input": "input : list = [1, -4, 1, 2]\noutput : list = [2, 1]",
    "output": "generated_output : list = reverse(sort_asc(reverse(sort_asc(drop([1, -4, 1, 2],2)))))",
    "io_inp": [
      1,
      -4,
      1,
      2
    ],
    "io_out": [
      2,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(reverse(sort_asc(drop(input,2)))))"
  },
  {
    "input": "input : list = [4, -3, 2, 0, 2, 3]\noutput : list = [3, 2, 1, 1, -1, -4]",
    "output": "generated_output : list = sort_des(sort_des(sub_n(take(sub_n([4, -3, 2, 0, 2, 3],2),14),-1)))",
    "io_inp": [
      4,
      -3,
      2,
      0,
      2,
      3
    ],
    "io_out": [
      3,
      2,
      1,
      1,
      -1,
      -4
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(sub_n(take(sub_n(input,2),14),-1)))"
  },
  {
    "input": "input : list = [-1, 5, -5, 2, 4, -5]\noutput : list = [3, 2, 0, -7, -7]",
    "output": "generated_output : list = sort_des(sort_des(add_n(sort_des(drop([-1, 5, -5, 2, 4, -5],1)),-2)))",
    "io_inp": [
      -1,
      5,
      -5,
      2,
      4,
      -5
    ],
    "io_out": [
      3,
      2,
      0,
      -7,
      -7
    ],
    "output_masked": "generated_output : list = sort_des(sort_des(add_n(sort_des(drop(input,1)),-2)))"
  },
  {
    "input": "input : list = [4, 0, -2, 0, 0, -3]\noutput : list = [4, 0, 0, 0, -2, -3]",
    "output": "generated_output : list = sort_des([4, 0, -2, 0, 0, -3])",
    "io_inp": [
      4,
      0,
      -2,
      0,
      0,
      -3
    ],
    "io_out": [
      4,
      0,
      0,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-5, -1, 2]\noutput : list = [-5, -1, 2]",
    "output": "generated_output : list = sort_asc([-5, -1, 2])",
    "io_inp": [
      -5,
      -1,
      2
    ],
    "io_out": [
      -5,
      -1,
      2
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 3, 2, -5, -5, -1]\noutput : list = [5, 5, 3, -3, -11, -11]",
    "output": "generated_output : list = sort_des(reverse(add_n(mul_n(sort_asc([3, 3, 2, -5, -5, -1]),2),-1)))",
    "io_inp": [
      3,
      3,
      2,
      -5,
      -5,
      -1
    ],
    "io_out": [
      5,
      5,
      3,
      -3,
      -11,
      -11
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(mul_n(sort_asc(input),2),-1)))"
  },
  {
    "input": "input : list = [-5, -5, 2]\noutput : list = [5, -2, -2]",
    "output": "generated_output : list = reverse(add_n([-5, -5, 2],3))",
    "io_inp": [
      -5,
      -5,
      2
    ],
    "io_out": [
      5,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = reverse(add_n(input,3))"
  },
  {
    "input": "input : list = [1, -4]\noutput : list = [-2, -7]",
    "output": "generated_output : list = sub_n(sort_des([1, -4]),3)",
    "io_inp": [
      1,
      -4
    ],
    "io_out": [
      -2,
      -7
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(input),3)"
  },
  {
    "input": "input : list = [1, 3]\noutput : list = [3, 1]",
    "output": "generated_output : list = sort_des(sort_asc(sort_asc(take(sort_des([1, 3]),8))))",
    "io_inp": [
      1,
      3
    ],
    "io_out": [
      3,
      1
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sort_asc(take(sort_des(input),8))))"
  },
  {
    "input": "input : list = [5, 1, 5, -2]\noutput : list = [-4, 10, 2]",
    "output": "generated_output : list = reverse(reverse(reverse(mul_n(drop([5, 1, 5, -2],1),2))))",
    "io_inp": [
      5,
      1,
      5,
      -2
    ],
    "io_out": [
      -4,
      10,
      2
    ],
    "output_masked": "generated_output : list = reverse(reverse(reverse(mul_n(drop(input,1),2))))"
  },
  {
    "input": "input : list = [2, -3, 2, -5, 0, 0]\noutput : list = [4, -6, 4, -10, 0, 0]",
    "output": "generated_output : list = mul_n([2, -3, 2, -5, 0, 0],2)",
    "io_inp": [
      2,
      -3,
      2,
      -5,
      0,
      0
    ],
    "io_out": [
      4,
      -6,
      4,
      -10,
      0,
      0
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [5, -1, -1, -1]\noutput : list = [-1, -1, -1]",
    "output": "generated_output : list = drop([5, -1, -1, -1],1)",
    "io_inp": [
      5,
      -1,
      -1,
      -1
    ],
    "io_out": [
      -1,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = drop(input,1)"
  },
  {
    "input": "input : list = [-4, -4, -1, 4, 2]\noutput : list = [-4, -4, -1, 2, 4]",
    "output": "generated_output : list = sort_asc(sort_asc([-4, -4, -1, 4, 2]))",
    "io_inp": [
      -4,
      -4,
      -1,
      4,
      2
    ],
    "io_out": [
      -4,
      -4,
      -1,
      2,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(input))"
  },
  {
    "input": "input : list = [-5, 4, -4, 1, 2, -2]\noutput : list = [-2, 2, 1, -4, 4, -5]",
    "output": "generated_output : list = reverse([-5, 4, -4, 1, 2, -2])",
    "io_inp": [
      -5,
      4,
      -4,
      1,
      2,
      -2
    ],
    "io_out": [
      -2,
      2,
      1,
      -4,
      4,
      -5
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [2, 4, 4, -5, -2, -5]\noutput : list = [-5, -2, -5, 4, 4, 2]",
    "output": "generated_output : list = reverse([2, 4, 4, -5, -2, -5])",
    "io_inp": [
      2,
      4,
      4,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -5,
      -2,
      -5,
      4,
      4,
      2
    ],
    "output_masked": "generated_output : list = reverse(input)"
  },
  {
    "input": "input : list = [0, 2, -4, -5, 3]\noutput : list = [0, -8, 16]",
    "output": "generated_output : list = mul_n(take(take([0, 2, -4, -5, 3],3),9),-4)",
    "io_inp": [
      0,
      2,
      -4,
      -5,
      3
    ],
    "io_out": [
      0,
      -8,
      16
    ],
    "output_masked": "generated_output : list = mul_n(take(take(input,3),9),-4)"
  },
  {
    "input": "input : list = [1, -2, -1]\noutput : list = [5]",
    "output": "generated_output : list = reverse(take(take(sub_n(mul_n([1, -2, -1],2),-3),4),1))",
    "io_inp": [
      1,
      -2,
      -1
    ],
    "io_out": [
      5
    ],
    "output_masked": "generated_output : list = reverse(take(take(sub_n(mul_n(input,2),-3),4),1))"
  },
  {
    "input": "input : list = [-5, 2, -5, -2, -5]\noutput : list = [-12]",
    "output": "generated_output : list = sort_des(add_n(take(take(mul_n([-5, 2, -5, -2, -5],3),1),20),3))",
    "io_inp": [
      -5,
      2,
      -5,
      -2,
      -5
    ],
    "io_out": [
      -12
    ],
    "output_masked": "generated_output : list = sort_des(add_n(take(take(mul_n(input,3),1),20),3))"
  },
  {
    "input": "input : list = [3, -4, 1]\noutput : list = [-4, 1]",
    "output": "generated_output : list = sort_asc(drop([3, -4, 1],1))",
    "io_inp": [
      3,
      -4,
      1
    ],
    "io_out": [
      -4,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(drop(input,1))"
  },
  {
    "input": "input : list = [-4, 5, 0, -1, 3]\noutput : list = [5, -4]",
    "output": "generated_output : list = reverse(take([-4, 5, 0, -1, 3],2))",
    "io_inp": [
      -4,
      5,
      0,
      -1,
      3
    ],
    "io_out": [
      5,
      -4
    ],
    "output_masked": "generated_output : list = reverse(take(input,2))"
  },
  {
    "input": "input : list = [0, 5, -4, 4]\noutput : list = [-1, 3, 7, 8]",
    "output": "generated_output : list = add_n(take(reverse(sort_des(sort_asc([0, 5, -4, 4]))),8),3)",
    "io_inp": [
      0,
      5,
      -4,
      4
    ],
    "io_out": [
      -1,
      3,
      7,
      8
    ],
    "output_masked": "generated_output : list = add_n(take(reverse(sort_des(sort_asc(input))),8),3)"
  },
  {
    "input": "input : list = [-4, 5, -5, 1, 1]\noutput : list = [-40, -24, -24, -4, 0]",
    "output": "generated_output : list = mul_n(sort_des(take(add_n(sort_des([-4, 5, -5, 1, 1]),5),26)),-4)",
    "io_inp": [
      -4,
      5,
      -5,
      1,
      1
    ],
    "io_out": [
      -40,
      -24,
      -24,
      -4,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sort_des(take(add_n(sort_des(input),5),26)),-4)"
  },
  {
    "input": "input : list = [-1, 4, 2]\noutput : list = [-6, 3, 9]",
    "output": "generated_output : list = sort_asc(sort_des(mul_n(sub_n([-1, 4, 2],1),3)))",
    "io_inp": [
      -1,
      4,
      2
    ],
    "io_out": [
      -6,
      3,
      9
    ],
    "output_masked": "generated_output : list = sort_asc(sort_des(mul_n(sub_n(input,1),3)))"
  },
  {
    "input": "input : list = [-2, 1, -5]\noutput : list = [5, -10, -25]",
    "output": "generated_output : list = sort_des(take(mul_n([-2, 1, -5],5),9))",
    "io_inp": [
      -2,
      1,
      -5
    ],
    "io_out": [
      5,
      -10,
      -25
    ],
    "output_masked": "generated_output : list = sort_des(take(mul_n(input,5),9))"
  },
  {
    "input": "input : list = [-3, -5, -2, 3]\noutput : list = [4, -1, -4, -2]",
    "output": "generated_output : list = add_n(reverse(sub_n(add_n(add_n([-3, -5, -2, 3],-2),2),-3)),-2)",
    "io_inp": [
      -3,
      -5,
      -2,
      3
    ],
    "io_out": [
      4,
      -1,
      -4,
      -2
    ],
    "output_masked": "generated_output : list = add_n(reverse(sub_n(add_n(add_n(input,-2),2),-3)),-2)"
  },
  {
    "input": "input : list = [1, 5, 5, 5, 1, -5]\noutput : list = [6, 10, 10, 10, 6, 0]",
    "output": "generated_output : list = sub_n([1, 5, 5, 5, 1, -5],-5)",
    "io_inp": [
      1,
      5,
      5,
      5,
      1,
      -5
    ],
    "io_out": [
      6,
      10,
      10,
      10,
      6,
      0
    ],
    "output_masked": "generated_output : list = sub_n(input,-5)"
  },
  {
    "input": "input : list = [3, -2, -5]\noutput : list = [0, -5, -8]",
    "output": "generated_output : list = sub_n([3, -2, -5],3)",
    "io_inp": [
      3,
      -2,
      -5
    ],
    "io_out": [
      0,
      -5,
      -8
    ],
    "output_masked": "generated_output : list = sub_n(input,3)"
  },
  {
    "input": "input : list = [-3, -5, 3, -2, -3, -4]\noutput : list = [-7, -9, -1, -6, -7, -8]",
    "output": "generated_output : list = add_n([-3, -5, 3, -2, -3, -4],-4)",
    "io_inp": [
      -3,
      -5,
      3,
      -2,
      -3,
      -4
    ],
    "io_out": [
      -7,
      -9,
      -1,
      -6,
      -7,
      -8
    ],
    "output_masked": "generated_output : list = add_n(input,-4)"
  },
  {
    "input": "input : list = [0, 3, 4, -3, -3, -1]\noutput : list = [-6, -7, -10, -11, -13, -13]",
    "output": "generated_output : list = sub_n(take(sort_des(reverse(sub_n([0, 3, 4, -3, -3, -1],5))),33),5)",
    "io_inp": [
      0,
      3,
      4,
      -3,
      -3,
      -1
    ],
    "io_out": [
      -6,
      -7,
      -10,
      -11,
      -13,
      -13
    ],
    "output_masked": "generated_output : list = sub_n(take(sort_des(reverse(sub_n(input,5))),33),5)"
  },
  {
    "input": "input : list = [5, 4, 0, 0, -3]\noutput : list = [-17, -15, -7, -7, -1]",
    "output": "generated_output : list = reverse(sub_n(mul_n(sort_asc(sub_n([5, 4, 0, 0, -3],-3)),-2),1))",
    "io_inp": [
      5,
      4,
      0,
      0,
      -3
    ],
    "io_out": [
      -17,
      -15,
      -7,
      -7,
      -1
    ],
    "output_masked": "generated_output : list = reverse(sub_n(mul_n(sort_asc(sub_n(input,-3)),-2),1))"
  },
  {
    "input": "input : list = [0, 4, -5, -5, -4]\noutput : list = [8, 4, 0, -1, -1]",
    "output": "generated_output : list = sort_des(reverse(add_n([0, 4, -5, -5, -4],4)))",
    "io_inp": [
      0,
      4,
      -5,
      -5,
      -4
    ],
    "io_out": [
      8,
      4,
      0,
      -1,
      -1
    ],
    "output_masked": "generated_output : list = sort_des(reverse(add_n(input,4)))"
  },
  {
    "input": "input : list = [-4, 2, -5]\noutput : list = [-6, -5, 1]",
    "output": "generated_output : list = reverse(sort_des(take(sort_des(sub_n([-4, 2, -5],1)),21)))",
    "io_inp": [
      -4,
      2,
      -5
    ],
    "io_out": [
      -6,
      -5,
      1
    ],
    "output_masked": "generated_output : list = reverse(sort_des(take(sort_des(sub_n(input,1)),21)))"
  },
  {
    "input": "input : list = [5, -4]\noutput : list = [11, 2]",
    "output": "generated_output : list = sub_n(add_n([5, -4],2),-4)",
    "io_inp": [
      5,
      -4
    ],
    "io_out": [
      11,
      2
    ],
    "output_masked": "generated_output : list = sub_n(add_n(input,2),-4)"
  },
  {
    "input": "input : list = [1, -4, 5, 0]\noutput : list = [-4, 0, 5]",
    "output": "generated_output : list = take(sort_asc(sort_des(reverse(drop([1, -4, 5, 0],1)))),48)",
    "io_inp": [
      1,
      -4,
      5,
      0
    ],
    "io_out": [
      -4,
      0,
      5
    ],
    "output_masked": "generated_output : list = take(sort_asc(sort_des(reverse(drop(input,1)))),48)"
  },
  {
    "input": "input : list = [-2, -4, -5, 4, 4]\noutput : list = [-3, -9, -12, 15, 15]",
    "output": "generated_output : list = mul_n(add_n(add_n([-2, -4, -5, 4, 4],-2),3),3)",
    "io_inp": [
      -2,
      -4,
      -5,
      4,
      4
    ],
    "io_out": [
      -3,
      -9,
      -12,
      15,
      15
    ],
    "output_masked": "generated_output : list = mul_n(add_n(add_n(input,-2),3),3)"
  },
  {
    "input": "input : list = [0, -5, -2, 3]\noutput : list = [-9, -14, -11, -6]",
    "output": "generated_output : list = reverse(add_n(reverse(take(sub_n([0, -5, -2, 3],5),6)),-4))",
    "io_inp": [
      0,
      -5,
      -2,
      3
    ],
    "io_out": [
      -9,
      -14,
      -11,
      -6
    ],
    "output_masked": "generated_output : list = reverse(add_n(reverse(take(sub_n(input,5),6)),-4))"
  },
  {
    "input": "input : list = [2, 3, 0, -3, -2]\noutput : list = [-12, -14, -8, -2, -4]",
    "output": "generated_output : list = mul_n(sub_n([2, 3, 0, -3, -2],-4),-2)",
    "io_inp": [
      2,
      3,
      0,
      -3,
      -2
    ],
    "io_out": [
      -12,
      -14,
      -8,
      -2,
      -4
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(input,-4),-2)"
  },
  {
    "input": "input : list = [5, 1, 5]\noutput : list = [25, 25, 5]",
    "output": "generated_output : list = take(sort_des(mul_n([5, 1, 5],5)),14)",
    "io_inp": [
      5,
      1,
      5
    ],
    "io_out": [
      25,
      25,
      5
    ],
    "output_masked": "generated_output : list = take(sort_des(mul_n(input,5)),14)"
  },
  {
    "input": "input : list = [2, -1, 5]\noutput : list = [-3]",
    "output": "generated_output : list = add_n(reverse(sort_asc(sort_asc(take([2, -1, 5],1)))),-5)",
    "io_inp": [
      2,
      -1,
      5
    ],
    "io_out": [
      -3
    ],
    "output_masked": "generated_output : list = add_n(reverse(sort_asc(sort_asc(take(input,1)))),-5)"
  },
  {
    "input": "input : list = [2, -3, 4, -5, -4]\noutput : list = [-5]",
    "output": "generated_output : list = sort_asc(take(sort_asc(sort_des([2, -3, 4, -5, -4])),1))",
    "io_inp": [
      2,
      -3,
      4,
      -5,
      -4
    ],
    "io_out": [
      -5
    ],
    "output_masked": "generated_output : list = sort_asc(take(sort_asc(sort_des(input)),1))"
  },
  {
    "input": "input : list = [4, -2, 5, -2, -4, 0]\noutput : list = [-2, 5, -2, -4, 0]",
    "output": "generated_output : list = take(drop([4, -2, 5, -2, -4, 0],1),25)",
    "io_inp": [
      4,
      -2,
      5,
      -2,
      -4,
      0
    ],
    "io_out": [
      -2,
      5,
      -2,
      -4,
      0
    ],
    "output_masked": "generated_output : list = take(drop(input,1),25)"
  },
  {
    "input": "input : list = [0, 3, 1, 3]\noutput : list = [3, 0]",
    "output": "generated_output : list = take(reverse(take([0, 3, 1, 3],2)),5)",
    "io_inp": [
      0,
      3,
      1,
      3
    ],
    "io_out": [
      3,
      0
    ],
    "output_masked": "generated_output : list = take(reverse(take(input,2)),5)"
  },
  {
    "input": "input : list = [-3, -4, 1, 3, -2]\noutput : list = [5, 3, 0, -1, -2]",
    "output": "generated_output : list = reverse(take(reverse(sub_n(sort_des([-3, -4, 1, 3, -2]),-2)),7))",
    "io_inp": [
      -3,
      -4,
      1,
      3,
      -2
    ],
    "io_out": [
      5,
      3,
      0,
      -1,
      -2
    ],
    "output_masked": "generated_output : list = reverse(take(reverse(sub_n(sort_des(input),-2)),7))"
  },
  {
    "input": "input : list = [0, -2, -5]\noutput : list = [1, 11, 26]",
    "output": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des([0, -2, -5]),-5),-5),-5),1)",
    "io_inp": [
      0,
      -2,
      -5
    ],
    "io_out": [
      1,
      11,
      26
    ],
    "output_masked": "generated_output : list = add_n(add_n(sub_n(mul_n(sort_des(input),-5),-5),-5),1)"
  },
  {
    "input": "input : list = [3, 2]\noutput : list = [2, 3]",
    "output": "generated_output : list = reverse(take(sort_des(reverse(sort_des([3, 2]))),13))",
    "io_inp": [
      3,
      2
    ],
    "io_out": [
      2,
      3
    ],
    "output_masked": "generated_output : list = reverse(take(sort_des(reverse(sort_des(input))),13))"
  },
  {
    "input": "input : list = [1, -3, 5]\noutput : list = [-3, 1, 5]",
    "output": "generated_output : list = sort_asc([1, -3, 5])",
    "io_inp": [
      1,
      -3,
      5
    ],
    "io_out": [
      -3,
      1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [-3, -3, 1, 4, 5]\noutput : list = [-6, -18, -18]",
    "output": "generated_output : list = sort_des(mul_n(add_n(take([-3, -3, 1, 4, 5],3),-3),3))",
    "io_inp": [
      -3,
      -3,
      1,
      4,
      5
    ],
    "io_out": [
      -6,
      -18,
      -18
    ],
    "output_masked": "generated_output : list = sort_des(mul_n(add_n(take(input,3),-3),3))"
  },
  {
    "input": "input : list = [4, -2, 0, -1, 2, 5]\noutput : list = [2, 3, 4, 6, 8, 9]",
    "output": "generated_output : list = take(sort_asc(take(sub_n(add_n([4, -2, 0, -1, 2, 5],1),-3),36)),17)",
    "io_inp": [
      4,
      -2,
      0,
      -1,
      2,
      5
    ],
    "io_out": [
      2,
      3,
      4,
      6,
      8,
      9
    ],
    "output_masked": "generated_output : list = take(sort_asc(take(sub_n(add_n(input,1),-3),36)),17)"
  },
  {
    "input": "input : list = [5, -2, 4, 2, 1, 3]\noutput : list = [2, 0, -1, 1]",
    "output": "generated_output : list = take(reverse(sub_n(reverse(drop([5, -2, 4, 2, 1, 3],2)),2)),23)",
    "io_inp": [
      5,
      -2,
      4,
      2,
      1,
      3
    ],
    "io_out": [
      2,
      0,
      -1,
      1
    ],
    "output_masked": "generated_output : list = take(reverse(sub_n(reverse(drop(input,2)),2)),23)"
  },
  {
    "input": "input : list = [5, 0, 5, -1]\noutput : list = [-40, 0, -40, 8]",
    "output": "generated_output : list = mul_n(mul_n([5, 0, 5, -1],-4),2)",
    "io_inp": [
      5,
      0,
      5,
      -1
    ],
    "io_out": [
      -40,
      0,
      -40,
      8
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(input,-4),2)"
  },
  {
    "input": "input : list = [-3, -3, 3, -2]\noutput : list = [3, -2]",
    "output": "generated_output : list = sort_des(drop([-3, -3, 3, -2],2))",
    "io_inp": [
      -3,
      -3,
      3,
      -2
    ],
    "io_out": [
      3,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(drop(input,2))"
  },
  {
    "input": "input : list = [1, -5, 1]\noutput : list = [-8, -8, 4]",
    "output": "generated_output : list = sort_asc(mul_n(reverse(sub_n(reverse([1, -5, 1]),-3)),-2))",
    "io_inp": [
      1,
      -5,
      1
    ],
    "io_out": [
      -8,
      -8,
      4
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(reverse(sub_n(reverse(input),-3)),-2))"
  },
  {
    "input": "input : list = [-3, -1, -2, 5, 1]\noutput : list = [1, 5, -2, -1]",
    "output": "generated_output : list = reverse(drop([-3, -1, -2, 5, 1],1))",
    "io_inp": [
      -3,
      -1,
      -2,
      5,
      1
    ],
    "io_out": [
      1,
      5,
      -2,
      -1
    ],
    "output_masked": "generated_output : list = reverse(drop(input,1))"
  },
  {
    "input": "input : list = [-1, -1, 1, 0, -3, 5]\noutput : list = [0, -2, -2]",
    "output": "generated_output : list = sort_des(sort_asc(sub_n(take([-1, -1, 1, 0, -3, 5],3),1)))",
    "io_inp": [
      -1,
      -1,
      1,
      0,
      -3,
      5
    ],
    "io_out": [
      0,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(sub_n(take(input,3),1)))"
  },
  {
    "input": "input : list = [5, 0, -1, 2, -3]\noutput : list = [-3, -1, 0, 2, 5]",
    "output": "generated_output : list = sort_asc([5, 0, -1, 2, -3])",
    "io_inp": [
      5,
      0,
      -1,
      2,
      -3
    ],
    "io_out": [
      -3,
      -1,
      0,
      2,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(input)"
  },
  {
    "input": "input : list = [3, 5, 5]\noutput : list = [-3, -3]",
    "output": "generated_output : list = sub_n(take(add_n(drop([3, 5, 5],1),-5),24),3)",
    "io_inp": [
      3,
      5,
      5
    ],
    "io_out": [
      -3,
      -3
    ],
    "output_masked": "generated_output : list = sub_n(take(add_n(drop(input,1),-5),24),3)"
  },
  {
    "input": "input : list = [5, -3, 1, -3]\noutput : list = [75, 15, -45, -45]",
    "output": "generated_output : list = sort_des(sort_asc(reverse(mul_n(mul_n([5, -3, 1, -3],3),5))))",
    "io_inp": [
      5,
      -3,
      1,
      -3
    ],
    "io_out": [
      75,
      15,
      -45,
      -45
    ],
    "output_masked": "generated_output : list = sort_des(sort_asc(reverse(mul_n(mul_n(input,3),5))))"
  },
  {
    "input": "input : list = [0, 5, 2]\noutput : list = [-2, 1]",
    "output": "generated_output : list = sort_asc(take(add_n(reverse(drop([0, 5, 2],1)),-4),21))",
    "io_inp": [
      0,
      5,
      2
    ],
    "io_out": [
      -2,
      1
    ],
    "output_masked": "generated_output : list = sort_asc(take(add_n(reverse(drop(input,1)),-4),21))"
  },
  {
    "input": "input : list = [-4, -5, 3, -2, 5, 1]\noutput : list = [7, 5, 3, 0, -2, -3]",
    "output": "generated_output : list = take(add_n(sort_des(reverse(reverse([-4, -5, 3, -2, 5, 1]))),2),24)",
    "io_inp": [
      -4,
      -5,
      3,
      -2,
      5,
      1
    ],
    "io_out": [
      7,
      5,
      3,
      0,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(reverse(reverse(input))),2),24)"
  },
  {
    "input": "input : list = [-2, -4]\noutput : list = [-24, -48]",
    "output": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(reverse([-2, -4])),-4)),-3)",
    "io_inp": [
      -2,
      -4
    ],
    "io_out": [
      -24,
      -48
    ],
    "output_masked": "generated_output : list = mul_n(sort_asc(mul_n(sort_asc(reverse(input)),-4)),-3)"
  },
  {
    "input": "input : list = [-4, -5, 5]\noutput : list = [23, -4, -7]",
    "output": "generated_output : list = add_n(sort_des(mul_n(sort_des(sub_n([-4, -5, 5],-4)),3)),-4)",
    "io_inp": [
      -4,
      -5,
      5
    ],
    "io_out": [
      23,
      -4,
      -7
    ],
    "output_masked": "generated_output : list = add_n(sort_des(mul_n(sort_des(sub_n(input,-4)),3)),-4)"
  },
  {
    "input": "input : list = [-3, 5, -3, -2]\noutput : list = [6, -1, -2, -2]",
    "output": "generated_output : list = sub_n(sort_des(sort_des(reverse(add_n([-3, 5, -3, -2],3)))),2)",
    "io_inp": [
      -3,
      5,
      -3,
      -2
    ],
    "io_out": [
      6,
      -1,
      -2,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(sort_des(sort_des(reverse(add_n(input,3)))),2)"
  },
  {
    "input": "input : list = [2, -3]\noutput : list = [-1, 4]",
    "output": "generated_output : list = sub_n(sort_asc([2, -3]),-2)",
    "io_inp": [
      2,
      -3
    ],
    "io_out": [
      -1,
      4
    ],
    "output_masked": "generated_output : list = sub_n(sort_asc(input),-2)"
  },
  {
    "input": "input : list = [-1, 5]\noutput : list = [-1, 5]",
    "output": "generated_output : list = sort_asc(take(reverse([-1, 5]),4))",
    "io_inp": [
      -1,
      5
    ],
    "io_out": [
      -1,
      5
    ],
    "output_masked": "generated_output : list = sort_asc(take(reverse(input),4))"
  },
  {
    "input": "input : list = [1, -2, 3, 5, -5]\noutput : list = [-4, -7, -2, 0, -10]",
    "output": "generated_output : list = sub_n(sub_n(take(sub_n([1, -2, 3, 5, -5],3),11),-1),3)",
    "io_inp": [
      1,
      -2,
      3,
      5,
      -5
    ],
    "io_out": [
      -4,
      -7,
      -2,
      0,
      -10
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(take(sub_n(input,3),11),-1),3)"
  },
  {
    "input": "input : list = [4, 5, -5]\noutput : list = [-80, -64, 80]",
    "output": "generated_output : list = sort_asc(mul_n(mul_n([4, 5, -5],4),-4))",
    "io_inp": [
      4,
      5,
      -5
    ],
    "io_out": [
      -80,
      -64,
      80
    ],
    "output_masked": "generated_output : list = sort_asc(mul_n(mul_n(input,4),-4))"
  },
  {
    "input": "input : list = [2, -3, -1, 0, -5]\noutput : list = [5, 0, 2, 3, -2]",
    "output": "generated_output : list = sub_n([2, -3, -1, 0, -5],-3)",
    "io_inp": [
      2,
      -3,
      -1,
      0,
      -5
    ],
    "io_out": [
      5,
      0,
      2,
      3,
      -2
    ],
    "output_masked": "generated_output : list = sub_n(input,-3)"
  },
  {
    "input": "input : list = [2, -1, -3, -1, 2, -3]\noutput : list = [-48, -48, -36, -36, -28, -28]",
    "output": "generated_output : list = mul_n(sub_n(take(sort_des(add_n([2, -1, -3, -1, 2, -3],5)),29),-5),-4)",
    "io_inp": [
      2,
      -1,
      -3,
      -1,
      2,
      -3
    ],
    "io_out": [
      -48,
      -48,
      -36,
      -36,
      -28,
      -28
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(sort_des(add_n(input,5)),29),-5),-4)"
  },
  {
    "input": "input : list = [-1, -1]\noutput : list = [6, 6]",
    "output": "generated_output : list = sort_des(add_n(sort_des(sub_n(add_n([-1, -1],4),-4)),-1))",
    "io_inp": [
      -1,
      -1
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = sort_des(add_n(sort_des(sub_n(add_n(input,4),-4)),-1))"
  },
  {
    "input": "input : list = [4, 4, -4, -3, 0]\noutput : list = [16, 8, 2, 0]",
    "output": "generated_output : list = mul_n(drop(add_n(take(sort_des([4, 4, -4, -3, 0]),10),4),1),2)",
    "io_inp": [
      4,
      4,
      -4,
      -3,
      0
    ],
    "io_out": [
      16,
      8,
      2,
      0
    ],
    "output_masked": "generated_output : list = mul_n(drop(add_n(take(sort_des(input),10),4),1),2)"
  },
  {
    "input": "input : list = [0, -1, -4, 2, 1]\noutput : list = [10, 9]",
    "output": "generated_output : list = take(add_n(sort_des(sub_n(drop([0, -1, -4, 2, 1],3),-5)),3),46)",
    "io_inp": [
      0,
      -1,
      -4,
      2,
      1
    ],
    "io_out": [
      10,
      9
    ],
    "output_masked": "generated_output : list = take(add_n(sort_des(sub_n(drop(input,3),-5)),3),46)"
  },
  {
    "input": "input : list = [5, 4, -2, 5]\noutput : list = [-50, -50, -40, 20]",
    "output": "generated_output : list = mul_n(mul_n(take(reverse(sort_asc([5, 4, -2, 5])),25),-5),2)",
    "io_inp": [
      5,
      4,
      -2,
      5
    ],
    "io_out": [
      -50,
      -50,
      -40,
      20
    ],
    "output_masked": "generated_output : list = mul_n(mul_n(take(reverse(sort_asc(input)),25),-5),2)"
  },
  {
    "input": "input : list = [-4, 0, 5, 4]\noutput : list = [16, 0, -16, -20]",
    "output": "generated_output : list = sort_des(reverse(sort_des(take(mul_n([-4, 0, 5, 4],-4),13))))",
    "io_inp": [
      -4,
      0,
      5,
      4
    ],
    "io_out": [
      16,
      0,
      -16,
      -20
    ],
    "output_masked": "generated_output : list = sort_des(reverse(sort_des(take(mul_n(input,-4),13))))"
  },
  {
    "input": "input : list = [-5, -5, 3]\noutput : list = [-5, 3]",
    "output": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(drop([-5, -5, 3],1)))))",
    "io_inp": [
      -5,
      -5,
      3
    ],
    "io_out": [
      -5,
      3
    ],
    "output_masked": "generated_output : list = sort_asc(sort_asc(reverse(sort_des(drop(input,1)))))"
  },
  {
    "input": "input : list = [-2, 1, -3]\noutput : list = [1, -2, -3]",
    "output": "generated_output : list = sort_des([-2, 1, -3])",
    "io_inp": [
      -2,
      1,
      -3
    ],
    "io_out": [
      1,
      -2,
      -3
    ],
    "output_masked": "generated_output : list = sort_des(input)"
  },
  {
    "input": "input : list = [-4, -1, -1]\noutput : list = [-3, -3, 33]",
    "output": "generated_output : list = sort_asc(take(mul_n(sub_n(mul_n([-4, -1, -1],-4),5),3),35))",
    "io_inp": [
      -4,
      -1,
      -1
    ],
    "io_out": [
      -3,
      -3,
      33
    ],
    "output_masked": "generated_output : list = sort_asc(take(mul_n(sub_n(mul_n(input,-4),5),3),35))"
  },
  {
    "input": "input : list = [0, -1, 5, 2, -3, 0]\noutput : list = [1, -2]",
    "output": "generated_output : list = take(add_n(take(drop([0, -1, 5, 2, -3, 0],2),26),-4),2)",
    "io_inp": [
      0,
      -1,
      5,
      2,
      -3,
      0
    ],
    "io_out": [
      1,
      -2
    ],
    "output_masked": "generated_output : list = take(add_n(take(drop(input,2),26),-4),2)"
  },
  {
    "input": "input : list = [4, 1]\noutput : list = [5, 2]",
    "output": "generated_output : list = reverse(sort_asc(add_n([4, 1],1)))",
    "io_inp": [
      4,
      1
    ],
    "io_out": [
      5,
      2
    ],
    "output_masked": "generated_output : list = reverse(sort_asc(add_n(input,1)))"
  },
  {
    "input": "input : list = [-1, 4, 5, -5]\noutput : list = [-3, 1, 6, 7]",
    "output": "generated_output : list = sort_asc(sub_n(sort_asc([-1, 4, 5, -5]),-2))",
    "io_inp": [
      -1,
      4,
      5,
      -5
    ],
    "io_out": [
      -3,
      1,
      6,
      7
    ],
    "output_masked": "generated_output : list = sort_asc(sub_n(sort_asc(input),-2))"
  },
  {
    "input": "input : list = [-2, 4, 4]\noutput : list = [6, 6]",
    "output": "generated_output : list = add_n(sort_des(add_n(add_n(drop([-2, 4, 4],1),1),3)),-2)",
    "io_inp": [
      -2,
      4,
      4
    ],
    "io_out": [
      6,
      6
    ],
    "output_masked": "generated_output : list = add_n(sort_des(add_n(add_n(drop(input,1),1),3)),-2)"
  },
  {
    "input": "input : list = [-1, 3, -4]\noutput : list = [-2, 6, -8]",
    "output": "generated_output : list = mul_n([-1, 3, -4],2)",
    "io_inp": [
      -1,
      3,
      -4
    ],
    "io_out": [
      -2,
      6,
      -8
    ],
    "output_masked": "generated_output : list = mul_n(input,2)"
  },
  {
    "input": "input : list = [3, 0, -1]\noutput : list = [6, 8, 14]",
    "output": "generated_output : list = sub_n(sub_n(reverse(take(mul_n([3, 0, -1],2),4)),-5),-3)",
    "io_inp": [
      3,
      0,
      -1
    ],
    "io_out": [
      6,
      8,
      14
    ],
    "output_masked": "generated_output : list = sub_n(sub_n(reverse(take(mul_n(input,2),4)),-5),-3)"
  },
  {
    "input": "input : list = [1, 4]\noutput : list = [-15, 0]",
    "output": "generated_output : list = mul_n(sub_n(take(mul_n(sort_des([1, 4]),5),22),5),-1)",
    "io_inp": [
      1,
      4
    ],
    "io_out": [
      -15,
      0
    ],
    "output_masked": "generated_output : list = mul_n(sub_n(take(mul_n(sort_des(input),5),22),5),-1)"
  }
]